diff --git a/app/lib/seeder.rb b/app/lib/seeder.rb index 811c1e50..06edf946 100644 --- a/app/lib/seeder.rb +++ b/app/lib/seeder.rb @@ -122,16 +122,14 @@ class Seeder def seed_enrollment(csv_file) EnrollmentLoader.load_data(filepath: csv_file) - missing_enrollment_for_current_year = Respondent.where(academic_year: AcademicYear.order(:range).last).count.zero? - EnrollmentLoader.clone_previous_year_data if missing_enrollment_for_current_year + EnrollmentLoader.clone_previous_year_data end def seed_staffing(csv_file) StaffingLoader.load_data(filepath: csv_file) - missing_staffing_for_current_year = Respondent.where(academic_year: AcademicYear.order(:range).last).group(:total_teachers).having("total_teachers > 0").count.count.zero? - StaffingLoader.clone_previous_year_data if missing_staffing_for_current_year + StaffingLoader.clone_previous_year_data end private diff --git a/app/models/academic_year.rb b/app/models/academic_year.rb index 30ee7097..8e7d1f24 100644 --- a/app/models/academic_year.rb +++ b/app/models/academic_year.rb @@ -1,40 +1,60 @@ # frozen_string_literal: true +require "date" + class AcademicYear < ActiveRecord::Base - def self.find_by_date(date) + scope :by_range, -> { all.map { |academic_year| [academic_year.range, academic_year] }.to_h } + scope :of_year, ->(range) { all.select { |ay| ay.range.start_with?(range) } } + + def self.range_from_date(date, ranges) year = parse_year_range(date:) - range = "#{year.start}-#{year.end.to_s[2, 3]}" - academic_years[range] + range = ranges.find { |item| item.downcase == "#{year.start}-#{year.end.to_s[2, 3]} #{year.season.downcase}" } + range ||= ranges.find { |item| item.downcase == "#{year.start}-#{year.end.to_s[2, 3]}" } + range end def formatted_range - years = range.split('-') - "#{years.first} – 20#{years.second}" + years = range.split("-").map(&:split).flatten + "#{years.first} – 20#{years.second} #{years[2]}".chomp + end + + def range_without_season + range.scan(/[\d-]/).join end private def self.parse_year_range(date:) year = date.year - if date.month > 6 - AcademicYearRange.new(year, year + 1) - else - AcademicYearRange.new(year - 1, year) - end + ayr = if date.month > 6 + AcademicYearRange.new(year, year + 1) + else + AcademicYearRange.new(year - 1, year) + end + + ayr.season = if in_fall?(date, ayr) + "Fall" + else + "Spring" + end + ayr end - # This may cause problems if academic years get loaded from csv instead of the current method that requires a code change to the seeder script. This is because a change in code will trigger a complete reload of the application whereas loading from csv does not. This means if we change academic year to load from csv, the set of academic years will be stale when new years are added. - def self.academic_years - @@academic_years ||= AcademicYear.all.map { |academic_year| [academic_year.range, academic_year] }.to_h + def self.in_fall?(date, ayr) + date.between?(Date.parse("#{ayr.start}-7-1"), last_sunday(2, ayr.end) - 1) end - # Needed to reset the academic years when testing with specs that create the same academic year in a before :each block - def self.reset_academic_years - @@academic_years = nil + # returns a Date object being the last sunday of the given month/year + # month: integer between 1 and 12 + def self.last_sunday(month, year) + # get the last day of the month + date = Date.new year, month, -1 + # subtract number of days we are ahead of sunday + date -= date.wday end - private_class_method :academic_years + private_class_method :in_fall? private_class_method :parse_year_range end -AcademicYearRange = Struct.new(:start, :end) +AcademicYearRange = Struct.new(:start, :end, :season) diff --git a/app/models/school.rb b/app/models/school.rb index 72b5a82c..6f9309cf 100644 --- a/app/models/school.rb +++ b/app/models/school.rb @@ -8,7 +8,7 @@ class School < ApplicationRecord validates :name, presence: true scope :alphabetic, -> { order(name: :asc) } - scope :school_by_dese_id, -> { all.map { |school| [school.dese_id, school] }.to_h } + scope :by_dese_id, -> { all.map { |school| [school.dese_id, school] }.to_h } include FriendlyId friendly_id :name, use: [:slugged] @@ -16,7 +16,7 @@ class School < ApplicationRecord def self.find_by_district_code_and_school_code(district_code, school_code) School .joins(:district) - .where(districts: {qualtrics_code: district_code}) + .where(districts: { qualtrics_code: district_code }) .find_by_qualtrics_code(school_code) end diff --git a/app/presenters/response_rate_presenter.rb b/app/presenters/response_rate_presenter.rb index 3028e1bb..947cce4d 100644 --- a/app/presenters/response_rate_presenter.rb +++ b/app/presenters/response_rate_presenter.rb @@ -19,7 +19,7 @@ class ResponseRatePresenter end def percentage - return 0 if respondents_count.zero? + return 0 if respondents_count.nil? || respondents_count.zero? cap_at_100(actual_count.to_f / respondents_count.to_f * 100).round end diff --git a/app/services/cleaner.rb b/app/services/cleaner.rb index dba39c05..57083ad1 100644 --- a/app/services/cleaner.rb +++ b/app/services/cleaner.rb @@ -48,7 +48,7 @@ class Cleaner output << school_name if schools.length == 1 output << survey_type.to_s output << "Part-" + part unless part.nil? - output << range + output << range.parameterize output << "csv" output.join(".") end @@ -77,7 +77,7 @@ class Cleaner file.lazy.each_slice(1000) do |lines| CSV.parse(lines.join, headers:).map do |row| values = SurveyItemValues.new(row:, headers:, - survey_items: all_survey_items, schools:) + survey_items: all_survey_items, schools:, academic_years:) next unless values.valid_school? data << values @@ -89,6 +89,10 @@ class Cleaner private + def academic_years + @academic_years ||= AcademicYear.all + end + def include_all_headers(headers:) alternates = headers.filter(&:present?) .filter { |header| header.match?(/^[st]-\w*-\w*-1$/i) } @@ -120,7 +124,7 @@ class Cleaner end def schools - @schools ||= School.school_by_dese_id + @schools ||= School.by_dese_id end def genders diff --git a/app/services/dese/loader.rb b/app/services/dese/loader.rb index 9b2dd387..d6c5822a 100644 --- a/app/services/dese/loader.rb +++ b/app/services/dese/loader.rb @@ -1,15 +1,16 @@ module Dese class Loader - @memo = Hash.new + @memo = {} def self.load_data(filepath:) admin_data_values = [] - @memo = Hash.new - schools = School.school_by_dese_id + @memo = {} + schools = School.by_dese_id CSV.parse(File.read(filepath), headers: true) do |row| score = likert_score(row:) next unless valid_likert_score(likert_score: score) - admin_data_values << create_admin_data_value(row:, score:, schools:) + values = create_admin_data_value(row:, score:, schools:) + admin_data_values.concat(values) if values end AdminDataValue.import(admin_data_values.flatten.compact, batch_size: 1_000, on_duplicate_key_update: :all) @@ -38,40 +39,47 @@ module Dese row["Admin Data Item"] || row["Item ID"] || row["Item Id"] || row["Item ID"] end - # these three methods do the memoization + # these two methods do the memoization def self.find_admin_data_item(admin_data_item_id:) return @memo["admin" + admin_data_item_id] if @memo.key?("admin" + admin_data_item_id) + @memo["admin" + admin_data_item_id] ||= AdminDataItem.find_by_admin_data_item_id(admin_data_item_id) end - def self.find_ay(ay:) + def self.find_ays(ay:) return @memo["year" + ay] if @memo.key?("year" + ay) - @memo["year" + ay] ||= AcademicYear.find_by_range(ay) + + @memo["year" + ay] ||= AcademicYear.of_year(ay) end def self.create_admin_data_value(row:, score:, schools:) school = schools[dese_id(row:).to_i] admin_data_item_id = admin_data_item(row:) admin_data_item = find_admin_data_item(admin_data_item_id:) - academic_year = find_ay(ay: ay(row:)) + academic_years = find_ays(ay: ay(row:)) return if school.nil? return if admin_data_item_id.nil? || admin_data_item_id.blank? + return unless academic_years.size.positive? + + out = [] + academic_years.each do |academic_year| + admin_data_value = AdminDataValue.find_by(academic_year:, school:, admin_data_item:) - admin_data_value = AdminDataValue.find_by(academic_year:, school:, admin_data_item:) - - if admin_data_value.present? - admin_data_value.likert_score = score - admin_data_value.save - nil - else - AdminDataValue.new( - likert_score: score, - academic_year:, - school:, - admin_data_item: - ) + if admin_data_value.present? + admin_data_value.likert_score = score + admin_data_value.save + [] + else + out << AdminDataValue.new( + likert_score: score, + academic_year:, + school:, + admin_data_item: + ) + end end + out end private_class_method :valid_likert_score diff --git a/app/services/dese/scraper.rb b/app/services/dese/scraper.rb index e3c05779..ef39a4f1 100644 --- a/app/services/dese/scraper.rb +++ b/app/services/dese/scraper.rb @@ -2,7 +2,7 @@ module Dese module Scraper DELAY = 20 # The dese site will block you if you hit it too many times in a short period of time - Prerequisites = Struct.new('Prerequisites', :filepath, :url, :selectors, :submit_id, :admin_data_item_id, + Prerequisites = Struct.new("Prerequisites", :filepath, :url, :selectors, :submit_id, :admin_data_item_id, :calculation) def reverse_score(likert_score:) return nil unless likert_score.present? @@ -14,6 +14,9 @@ module Dese def run academic_years = AcademicYear.all.order(range: :DESC) + .map(&:range_without_season) + .uniq + .map { |range| AcademicYear.new(range:) } academic_years.each do |academic_year| prerequisites = yield academic_year @@ -21,7 +24,7 @@ module Dese selectors: prerequisites.selectors, submit_id: prerequisites.submit_id) unless document.nil? - write_csv(document:, filepath: prerequisites.filepath, range: academic_year.range, id: prerequisites.admin_data_item_id, + write_csv(document:, filepath: prerequisites.filepath, range: academic_year.range_without_season, id: prerequisites.admin_data_item_id, calculation: prerequisites.calculation) end end @@ -46,26 +49,26 @@ module Dese end def write_headers(filepath:, headers:) - CSV.open(filepath, 'w') do |csv| + CSV.open(filepath, "w") do |csv| csv << headers end end def write_csv(document:, filepath:, range:, id:, calculation:) - table = document.css('tr') - headers = document.css('.sorting') + table = document.css("tr") + headers = document.css(".sorting") header_hash = headers.each_with_index.map { |header, index| [header.text, index] }.to_h - CSV.open(filepath, 'a') do |csv| + CSV.open(filepath, "a") do |csv| table.each do |row| - items = row.css('td').map(&:text) + items = row.css("td").map(&:text) dese_id = items[1].to_i next if dese_id.nil? || dese_id.zero? raw_likert_score = calculation.call(header_hash, items) - raw_likert_score ||= 'NA' + raw_likert_score ||= "NA" likert_score = raw_likert_score - if likert_score != 'NA' + if likert_score != "NA" likert_score = 5 if likert_score > 5 likert_score = 1 if likert_score < 1 likert_score = likert_score.round(2) diff --git a/app/services/enrollment_loader.rb b/app/services/enrollment_loader.rb index a57dd13e..17ddc406 100644 --- a/app/services/enrollment_loader.rb +++ b/app/services/enrollment_loader.rb @@ -7,46 +7,23 @@ class EnrollmentLoader enrollments = [] CSV.parse(File.read(filepath), headers: true) do |row| row = EnrollmentRowValues.new(row:) - next unless row.school.present? && row.academic_year.present? + next unless row.school.present? && row.academic_years.size.positive? enrollments << create_enrollment_entry(row:) end - # It's possible that instead of updating all columns on duplicate key, we could just update the student columns and leave total_teachers alone. Right now enrollment data loads before staffing data so it works correctly. - Respondent.import enrollments, batch_size: 1000, - on_duplicate_key_update: %i[pk k one two three four five six seven eight nine ten eleven twelve total_students] - end - - private - - def self.create_enrollment_entry(row:) - respondent = Respondent.find_or_initialize_by(school: row.school, academic_year: row.academic_year) - respondent.pk = row.pk - respondent.k = row.k - respondent.one = row.one - respondent.two = row.two - respondent.three = row.three - respondent.four = row.four - respondent.five = row.five - respondent.six = row.six - respondent.seven = row.seven - respondent.eight = row.eight - respondent.nine = row.nine - respondent.ten = row.ten - respondent.eleven = row.eleven - respondent.twelve = row.twelve - respondent.total_students = row.total_students - respondent + Respondent.import enrollments.flatten, batch_size: 1000, + on_duplicate_key_update: %i[pk k one two three four five six seven eight nine ten eleven twelve total_students] end def self.clone_previous_year_data - years = AcademicYear.order(:range).last(2) - previous_year = years.first - current_year = years.last respondents = [] School.all.each do |school| - Respondent.where(school:, academic_year: previous_year).each do |respondent| - current_respondent = Respondent.find_or_initialize_by(school:, academic_year: current_year) + academic_years_without_data(school:).each do |academic_year| + respondent = Respondent.where(school:, academic_year: last_academic_year_with_data(school:)).first + next if respondent.nil? + + current_respondent = Respondent.find_or_initialize_by(school:, academic_year:) current_respondent.pk = respondent.pk current_respondent.k = respondent.k current_respondent.one = respondent.one @@ -65,10 +42,54 @@ class EnrollmentLoader respondents << current_respondent end end - Respondent.import respondents, batch_size: 1000, on_duplicate_key_update: [:total_teachers] + + Respondent.import respondents, + batch_size: 1000, on_duplicate_key_ignore: true + end + + private + + def self.create_enrollment_entry(row:) + row.academic_years.map do |academic_year| + respondent = Respondent.find_or_initialize_by(school: row.school, academic_year:) + respondent.pk = row.pk + respondent.k = row.k + respondent.one = row.one + respondent.two = row.two + respondent.three = row.three + respondent.four = row.four + respondent.five = row.five + respondent.six = row.six + respondent.seven = row.seven + respondent.eight = row.eight + respondent.nine = row.nine + respondent.ten = row.ten + respondent.eleven = row.eleven + respondent.twelve = row.twelve + respondent.total_students = row.total_students + respondent + end + end + + def self.last_academic_year_with_data(school:) + AcademicYear.all.order(range: :DESC).find do |academic_year| + Respondent.where(school:, academic_year:).any? do |respondent| + respondent.total_students.positive? + end + end + end + + def self.academic_years_without_data(school:) + AcademicYear.all.order(range: :DESC).reject do |academic_year| + Respondent.where(school:, academic_year:).any? do |respondent| + respondent.total_students.positive? + end + end end private_class_method :create_enrollment_entry + private_class_method :last_academic_year_with_data + private_class_method :academic_years_without_data end class EnrollmentRowValues @@ -85,10 +106,10 @@ class EnrollmentRowValues end end - def academic_year - @academic_year ||= begin + def academic_years + @academic_years ||= begin year = row["Academic Year"] - AcademicYear.find_by_range(year) + AcademicYear.of_year(year) end end diff --git a/app/services/staffing_loader.rb b/app/services/staffing_loader.rb index 29d692f5..c7694123 100644 --- a/app/services/staffing_loader.rb +++ b/app/services/staffing_loader.rb @@ -7,24 +7,26 @@ class StaffingLoader respondents = [] CSV.parse(File.read(filepath), headers: true) do |row| row = StaffingRowValues.new(row:) - next unless row.school.present? && row.academic_year.present? + next unless row.school.present? && row.academic_years.size.positive? - respondents << create_staffing_entry(row:) + respondents.concat(create_staffing_entry(row:)) end Respondent.import respondents, batch_size: 1000, on_duplicate_key_update: [:total_teachers] end - # Clones staffing and enrollment data from previous year def self.clone_previous_year_data - years = AcademicYear.order(:range).last(2) - previous_year = years.first - current_year = years.last respondents = [] School.all.each do |school| - Respondent.where(school:, academic_year: previous_year).each do |respondent| - current_respondent = Respondent.find_or_initialize_by(school:, academic_year: current_year) - current_respondent.total_teachers = respondent.total_teachers + academic_years_without_data(school:).each do |academic_year| + year_with_data = last_academic_year_with_data(school:) + respondent = Respondent.where(school:, academic_year: year_with_data).first + next if respondent.nil? + + current_respondent = Respondent.find_or_initialize_by(school:, academic_year:) + if current_respondent.total_teachers.nil? || current_respondent.total_teachers.zero? + current_respondent.total_teachers = respondent.total_teachers + end respondents << current_respondent end end @@ -34,11 +36,29 @@ class StaffingLoader private def self.create_staffing_entry(row:) - respondent = Respondent.find_or_initialize_by(school: row.school, academic_year: row.academic_year) - respondent.total_teachers = row.fte_count - respondent + row.academic_years.map do |academic_year| + respondent = Respondent.find_or_initialize_by(school: row.school, academic_year:) + respondent.total_teachers = row.fte_count + respondent + end + end + + def self.last_academic_year_with_data(school:) + AcademicYear.all.order(range: :DESC).find do |academic_year| + respondents = Respondent.find_by(school:, academic_year:) + respondents&.total_teachers&.positive? + end + end + + def self.academic_years_without_data(school:) + AcademicYear.all.order(range: :DESC).select do |academic_year| + respondents = Respondent.find_by(school:, academic_year:) + respondents.nil? || respondents.total_teachers.nil? || respondents.total_teachers.zero? + end end + private_class_method :last_academic_year_with_data + private_class_method :academic_years_without_data private_class_method :create_staffing_entry end @@ -56,10 +76,10 @@ class StaffingRowValues end end - def academic_year + def academic_years @academic_year ||= begin year = row["Academic Year"] - AcademicYear.find_by_range(year) + AcademicYear.of_year(year) end end diff --git a/app/services/survey_item_values.rb b/app/services/survey_item_values.rb index f63783aa..f95d0997 100644 --- a/app/services/survey_item_values.rb +++ b/app/services/survey_item_values.rb @@ -1,13 +1,14 @@ class SurveyItemValues - attr_reader :row, :headers, :survey_items, :schools + attr_reader :row, :headers, :survey_items, :schools, :academic_years - def initialize(row:, headers:, survey_items:, schools:) + def initialize(row:, headers:, survey_items:, schools:, academic_years: AcademicYear.all) @row = row # Remove any newlines in headers headers = headers.map { |item| item.delete("\n") if item.present? } @headers = include_all_headers(headers:) @survey_items = survey_items @schools = schools + @academic_years = academic_years copy_likert_scores_from_variant_survey_items row["Income"] = income @@ -59,7 +60,10 @@ class SurveyItemValues end def academic_year - @academic_year ||= AcademicYear.find_by_date recorded_date + @academic_year ||= begin + range = AcademicYear.range_from_date(recorded_date, academic_years.map(&:range)) + academic_years.find { |item| item.range == range } + end end def survey_item_response(survey_item:) diff --git a/app/services/survey_responses_data_loader.rb b/app/services/survey_responses_data_loader.rb index 0b0d0acc..5675a2ce 100644 --- a/app/services/survey_responses_data_loader.rb +++ b/app/services/survey_responses_data_loader.rb @@ -9,7 +9,8 @@ class SurveyResponsesDataLoader file.lazy.each_slice(500) do |lines| survey_item_responses = CSV.parse(lines.join, headers:).map do |row| - process_row(row: SurveyItemValues.new(row:, headers: headers_array, survey_items: all_survey_items, schools:)) + process_row(row: SurveyItemValues.new(row:, headers: headers_array, survey_items: all_survey_items, schools:, + academic_years:)) end SurveyItemResponse.import( @@ -33,8 +34,8 @@ class SurveyResponsesDataLoader next unless line.present? CSV.parse(line, headers:).map do |row| - survey_item_responses << - process_row(row: SurveyItemValues.new(row:, headers: headers_array, survey_items: all_survey_items, schools:)) + survey_item_responses << process_row(row: SurveyItemValues.new(row:, headers: headers_array, + survey_items: all_survey_items, schools:, academic_years:)) end row_count += 1 @@ -51,7 +52,7 @@ class SurveyResponsesDataLoader private def schools - @schools = School.school_by_dese_id + @schools = School.by_dese_id end def genders @@ -74,6 +75,10 @@ class SurveyResponsesDataLoader @speds ||= Sped.by_designation end + def academic_years + @academic_years ||= AcademicYear.all + end + def process_row(row:) return unless row.dese_id? return unless row.school.present? @@ -84,10 +89,7 @@ class SurveyResponsesDataLoader def process_survey_items(row:) student = Student.find_or_create_by(response_id: row.response_id, lasid: row.lasid) student.races.delete_all - tmp_races = row.races.map do |race| - races[race] - end - + tmp_races = row.races.map { |race| races[race] } student.races += tmp_races row diff --git a/data/admin_data/dese/1A_1_teacher_data.csv b/data/admin_data/dese/1A_1_teacher_data.csv index a23a16bb..667d8657 100644 --- a/data/admin_data/dese/1A_1_teacher_data.csv +++ b/data/admin_data/dese/1A_1_teacher_data.csv @@ -1,4 +1,7398 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Total # of Teachers(FTE),Percent of Teachers Licensed,Student/Teacher Ratio,Percent of Experienced Teachers,Percent of Teachers without Waiver or Provisional License,Percent Teaching in-field +NA,NA,a-exp-i1,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 106.6, 95.3, 590, 99.2, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Abington High,00010505, 39.3, 100.0, 192, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Beaver Brook Elementary School,00010003, 37.7, 100.0, 239, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Center Elementary School,00010002, 10.3, 100.0, 72, 100.0, 19.7 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Frolio Middle School,00010405, 25.1, 100.0, 131, 92.4, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 98, 100.0, 19.2 to 1 +NA,NA,a-exp-i1,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 44.3, 78.2, 115, 90.4, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 125.9, 100.0, 535, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 27.5, 100.0, 116, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 28.0, 100.0, 122, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 26, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Luther Conant School,06000030, 28.1, 100.0, 122, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 29.5, 100.0, 128, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 140, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.5, 100.0, 110, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.8, 100.0, 303, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Acushnet - Acushnet Elementary School,00030025, 38.6, 100.0, 171, 97.1, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Acushnet - Albert F Ford Middle School,00030305, 32.4, 100.0, 225, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 15.1, 100.0, 116, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 46.1, 100.0, 312, 97.1, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 23.7, 100.0, 153, 100.0, 19.0 to 1 +NA,NA,a-exp-i1,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 78.4, 88.9, 371, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Agawam Early Childhood Center,00050003, 10.0, 100.0, 24, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Agawam High,00050505, 95.7, 100.0, 415, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Agawam Junior High,00050405, 59.7, 100.0, 373, 100.0, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Benjamin J Phelps,00050020, 28.5, 100.0, 188, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Clifford M Granger,00050010, 21.6, 100.0, 117, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - James Clark School,00050030, 27.4, 100.0, 178, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Roberta G. Doering School,00050303, 46.5, 100.0, 325, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Agawam - Robinson Park,00050025, 31.0, 100.0, 193, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 33.2, 60.7, 82, 51.2, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury Elementary,00070005, 29.5, 100.0, 140, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury High,00070505, 43.9, 99.4, 279, 95.7, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury Innovation High School,00070515, 6.0, 100.0, 24, 41.7, 5.2 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Amesbury Middle,00070013, 56.6, 100.0, 249, 93.6, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 33.3, 100.0, 159, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Amherst - Crocker Farm Elementary,00080009, 42.6, 100.0, 160, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Amherst - Fort River Elementary,00080020, 37.8, 100.0, 128, 96.1, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Amherst - Wildwood Elementary,00080050, 43.0, 97.7, 163, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 71.7, 98.6, 485, 97.9, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 44.4, 97.3, 168, 86.9, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Andover High,00090505, 117.6, 100.0, 844, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Andover West Middle,00090310, 45.9, 100.0, 211, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Bancroft Elementary,00090003, 46.5, 100.0, 164, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Doherty Middle,00090305, 49.0, 100.0, 216, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Henry C Sanborn Elementary,00090010, 27.3, 100.0, 107, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Andover - High Plain Elementary,00090004, 42.1, 100.0, 133, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Shawsheen School,00090005, 6.0, 100.0, 29, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Andover - South Elementary,00090020, 37.1, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Andover - West Elementary,00090025, 47.6, 100.0, 166, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Andover - Wood Hill Middle School,00090350, 37.9, 100.0, 163, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 26.0, 73.1, 72, 86.1, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Arlington High,00100505, 100.4, 99.0, 495, 98.6, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Brackett,00100010, 30.5, 100.0, 162, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Cyrus E Dallin,00100025, 31.9, 100.0, 162, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Hardy,00100030, 29.8, 100.0, 126, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - John A Bishop,00100005, 24.6, 99.2, 108, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - M Norcross Stratton,00100055, 30.0, 100.0, 150, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 30, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Ottoson Middle,00100410, 94.5, 98.9, 512, 97.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Peirce,00100045, 18.6, 100.0, 72, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Arlington - Thompson,00100050, 31.9, 100.0, 126, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 35.5, 100.0, 193, 94.8, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 57, 93.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 45.2, 100.0, 251, 99.6, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 36.9, 100.0, 317, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 21.6, 100.0, 121, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - Ashland High,00140505, 52.0, 100.0, 260, 96.5, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - Ashland Middle,00140405, 46.3, 100.0, 242, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - David Mindess,00140015, 39.6, 100.0, 178, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - Henry E Warren Elementary,00140010, 41.5, 100.0, 229, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 30, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 107.5, 99.1, 344, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 36.1, 100.0, 189, 99.5, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Athol High,06150505, 28.9, 100.0, 158, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.2, 100.0, 167, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Athol-Royalston - Royalston Community School,06150050, 10.9, 100.0, 68, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 82.2, 83.9, 359, 98.9, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 31.1, 100.0, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Attleboro Community Academy,00160515, 2.8, 100.0, 37, 83.8, 22.7 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Attleboro High,00160505, 103.7, 100.0, 667, 99.9, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 31.5, 100.0, 208, 99.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Early Learning Center,00160008, 8.1, 100.0, 18, 100.0, 23.1 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 25.1, 100.0, 114, 100.0, 18.6 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 26.8, 100.0, 113, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 31.3, 100.0, 164, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 38.4, 100.0, 170, 97.6, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 27.3, 100.0, 118, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Attleboro - Wamsutta Middle School,00160320, 33.1, 100.0, 150, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Auburn Middle,00170305, 43.8, 100.0, 200, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Auburn Senior High,00170505, 62.7, 100.0, 534, 99.8, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Bryn Mawr,00170010, 18.2, 100.0, 84, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Pakachoag School,00170025, 16.6, 100.0, 84, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 178, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Avon - Avon Middle High School,00180510, 34.8, 100.0, 176, 99.4, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Avon - Ralph D Butler,00180010, 31.0, 100.0, 125, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 37.1, 94.6, 171, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 34.3, 100.0, 124, 96.8, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.6, 100.0, 138, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.5, 100.0, 122, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Barnstable High,00200505, 140.7, 99.6, 536, 99.3, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Barnstable Intermediate School,00200315, 61.2, 100.0, 236, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Barnstable United Elementary School,00200050, 60.2, 99.6, 288, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Centerville Elementary,00200010, 22.5, 99.2, 83, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 17, 100.0, 21.0 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 138, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - West Barnstable Elementary,00200005, 18.7, 100.0, 90, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable - West Villages Elementary School,00200045, 30.4, 96.7, 122, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 22.0, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 36.2, 70.0, 211, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - Bedford High,00230505, 78.4, 97.3, 434, 99.8, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - John Glenn Middle,00230305, 54.7, 100.0, 250, 98.8, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - Lt Elezer Davis,00230010, 45.0, 100.0, 181, 98.9, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Bedford - Lt Job Lane School,00230012, 44.0, 100.0, 213, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Belchertown High,00240505, 48.4, 99.2, 275, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Chestnut Hill Community School,00240006, 39.2, 100.0, 249, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Cold Spring,00240005, 12.7, 100.0, 66, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Jabish Middle School,00240025, 32.7, 96.9, 168, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Belchertown - Swift River Elementary,00240018, 36.2, 100.0, 198, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 5.0, 100.0, 20, 100.0, 19.2 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Bellingham High School,00250505, 51.5, 100.0, 303, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Bellingham Memorial School,00250315, 47.6, 100.0, 254, 98.4, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Keough Memorial Academy,00250510, 7.0, 100.0, 27, 100.0, 4.8 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - South Elementary,00250020, 25.7, 100.0, 121, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Bellingham - Stall Brook,00250025, 27.6, 100.0, 128, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Belmont High,00260505, 74.9, 98.7, 348, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Daniel Butler,00260015, 24.1, 100.0, 114, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Mary Lee Burbank,00260010, 21.1, 100.0, 108, 100.0, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Roger E Wellington,00260035, 37.5, 100.0, 176, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Winn Brook,00260005, 27.1, 100.0, 122, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 83.9, 100.0, 442, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 95.0, 109, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 28.2, 79.8, 159, 59.7, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 32.3, 100.0, 117, 100.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Berkley - Berkley Community School,00270010, 37.0, 100.0, 176, 99.4, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Berkley - Berkley Middle School,00270305, 27.0, 100.0, 119, 95.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 32.9, 52.7, 155, 92.3, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 45.7, 96.7, 234, 98.3, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 33.8, 100.0, 178, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 34.5, 100.0, 164, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Berlin - Berlin Memorial,00280005, 16.3, 100.0, 104, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 45.7, 98.7, 255, 99.2, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Ayers/Ryal Side School,00300055, 36.6, 99.5, 125, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Beverly High,00300505, 91.5, 95.9, 388, 98.5, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Briscoe Middle,00300305, 71.8, 100.0, 279, 99.6, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Centerville Elementary,00300010, 25.0, 99.2, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Cove Elementary,00300015, 29.3, 99.3, 107, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - Hannah Elementary,00300033, 27.7, 99.3, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - McKeown School,00300002, 8.0, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Beverly - North Beverly Elementary,00300040, 27.9, 99.3, 99, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Billerica Memorial High School,00310505, 99.3, 100.0, 416, 94.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Eugene C Vining,00310030, 16.1, 100.0, 88, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Frederick J Dutile,00310007, 23.7, 100.0, 99, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Hajjar Elementary,00310026, 33.5, 100.0, 146, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - John F Kennedy,00310012, 23.2, 100.0, 105, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Locke Middle,00310310, 45.7, 100.0, 243, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Marshall Middle School,00310305, 54.7, 100.0, 217, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Parker,00310015, 35.5, 100.0, 140, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Billerica - Thomas Ditson,00310005, 40.7, 100.0, 183, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 94.3, 96.8, 337, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - A F Maloney,06220015, 20.8, 100.0, 97, 96.9, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.4, 97.4, 154, 87.7, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.7, 100.0, 128, 96.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 24.0, 100.0, 98, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Blackstone-Millville - Millville Elementary,06220010, 20.2, 100.0, 100, 97.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.5, 97.5, 213, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Another Course To College,00350541, 20.1, 86.8, 101, 78.2, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Baldwin Early Learning Center,00350003, 11.0, 100.0, 52, 82.7, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Beethoven,00350021, 22.2, 100.0, 131, 96.2, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Blackstone,00350390, 45.4, 96.1, 307, 80.8, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Adult Academy,00350548, 19.1, 84.3, 97, 78.4, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Arts Academy,00350546, 49.7, 82.0, 256, 53.9, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Collaborative High School,00350755, .9, 100.0, 71, 18.3, 205.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Community Leadership Academy,00350558, 36.8, 92.5, 117, 81.2, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston International High School,00350507, 45.1, 93.3, 262, 76.7, 8.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Latin,00350560, 118.8, 100.0, 693, 95.8, 20.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Latin Academy,00350545, 90.4, 96.9, 406, 96.8, 18.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Boston Teachers Union School,00350012, 22.5, 93.4, 128, 93.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Brighton High,00350505, 66.5, 90.9, 218, 71.6, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Carter Developmental Center,00350036, 1.0, 0.0, 2, 0.0, 29.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Charles H Taylor,00350054, 36.7, 94.5, 301, 79.4, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Charles Sumner,00350052, 37.4, 100.0, 263, 81.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Charlestown High,00350515, 86.1, 89.0, 426, 73.2, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Clarence R Edwards Middle,00350430, 32.1, 93.8, 156, 73.1, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Community Academy,00350518, 9.9, 89.9, 57, 75.4, 4.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Community Academy of Science and Health,00350581, 36.0, 91.7, 137, 67.9, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Curley K-8 School,00350020, 70.0, 97.1, 353, 87.5, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Curtis Guild,00350062, 23.0, 95.9, 167, 85.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dante Alighieri Montessori School,00350066, 8.2, 100.0, 84, 92.9, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - David A Ellis,00350072, 29.7, 100.0, 152, 88.8, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dearborn,00350074, 30.9, 96.8, 121, 72.7, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dennis C Haley,00350077, 31.9, 100.0, 160, 86.3, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Donald Mckay,00350080, 44.2, 100.0, 216, 93.1, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dorchester Academy,00350651, 12.8, 100.0, 122, 94.3, 7.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 12.9, 100.0, 66, 68.2, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dr. William Henderson Lower,00350266, 10.4, 100.0, 52, 61.5, 20.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Dr. William Henderson Upper,00350426, 47.6, 92.8, 214, 77.1, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - ELC - West Zone,00350006, 8.0, 100.0, 35, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - East Boston Early Childhood Center,00350009, 13.6, 100.0, 69, 78.3, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - East Boston High,00350530, 108.6, 93.0, 388, 91.2, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Edison K-8,00350375, 53.3, 96.2, 334, 82.3, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Edward Everett,00350088, 19.9, 100.0, 86, 88.4, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Eliot Elementary,00350096, 41.7, 100.0, 265, 84.5, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Ellis Mendell,00350100, 17.2, 100.0, 81, 86.4, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Excel High School,00350522, 43.2, 93.6, 159, 88.7, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Fenway High School,00350540, 29.0, 88.5, 102, 72.5, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Franklin D Roosevelt,00350116, 25.0, 100.0, 135, 81.5, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Gardner Pilot Academy,00350326, 28.1, 92.6, 129, 99.2, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - George H Conley,00350122, 17.0, 100.0, 128, 85.2, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Greater Egleston Community High School,00350543, 10.0, 100.0, 45, 57.8, 22.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Harvard-Kent,00350200, 34.5, 100.0, 216, 92.6, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Haynes Early Education Center,00350010, 16.8, 88.4, 79, 73.4, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Henry Grew,00350135, 17.1, 100.0, 76, 76.3, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Higginson,00350015, 10.9, 90.9, 76, 88.2, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Higginson/Lewis K-8,00350377, 26.5, 98.1, 133, 86.5, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Horace Mann School for the Deaf,00350750, 33.9, 100.0, 91, 30.8, 2.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Hugh Roe O'Donnell,00350141, 15.4, 100.0, 63, 96.8, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Jackson Mann,00350013, 56.6, 96.5, 366, 86.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James Condon Elementary,00350146, 55.8, 100.0, 422, 81.5, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James J Chittick,00350154, 18.0, 94.4, 151, 78.1, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James Otis,00350156, 26.6, 100.0, 164, 97.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James P Timilty Middle,00350485, 30.7, 94.7, 135, 78.5, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - James W Hennigan,00350153, 45.3, 97.8, 305, 89.8, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Jeremiah E Burke High,00350525, 34.5, 94.2, 118, 85.6, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John D Philbrick,00350172, 12.1, 100.0, 60, 88.3, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John F Kennedy,00350166, 18.9, 100.0, 140, 70.7, 20.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John W McCormack,00350179, 40.7, 96.3, 183, 81.4, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - John Winthrop,00350180, 19.9, 100.0, 144, 93.1, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph J Hurley,00350182, 20.0, 97.5, 113, 98.2, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph Lee,00350183, 48.2, 95.8, 194, 94.3, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph P Manning,00350184, 12.4, 96.0, 83, 83.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joseph P Tynan,00350181, 23.0, 100.0, 185, 86.5, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Josiah Quincy,00350286, 58.1, 100.0, 447, 91.7, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Joyce Kilmer,00350190, 25.6, 100.0, 179, 86.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - King K-8,00350376, 33.5, 96.9, 210, 87.6, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lee Academy,00350001, 15.1, 96.7, 85, 52.9, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 34.7, 97.1, 214, 61.7, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lyndon,00350262, 36.7, 97.3, 220, 93.6, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lyon K-8,00350004, 14.5, 100.0, 74, 95.9, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Lyon Upper 9-12,00350655, 14.2, 100.0, 46, 84.8, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Madison Park High,00350537, 97.0, 87.1, 254, 74.4, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Manassah E Bradley,00350215, 17.7, 94.6, 79, 84.8, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Margarita Muniz Academy,00350549, 24.7, 95.9, 106, 89.6, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mario Umana Academy,00350656, 61.7, 99.2, 355, 86.5, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mather,00350227, 36.9, 97.5, 233, 76.8, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mattahunt,00350226, 44.4, 97.7, 273, 86.8, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Maurice J Tobin,00350229, 34.4, 94.2, 186, 84.9, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Michael J Perkins,00350231, 12.9, 100.0, 70, 88.6, 18.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mildred Avenue K-8,00350378, 37.0, 100.0, 216, 82.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mission Hill School,00350382, 17.0, 100.0, 115, 82.6, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Mozart,00350237, 13.7, 92.8, 78, 85.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Nathan Hale,00350243, 10.3, 100.0, 70, 88.6, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - New Mission High School,00350542, 24.7, 80.6, 100, 73.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - O W Holmes,00350138, 24.0, 87.5, 123, 98.4, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - O'Bryant School Math/Science,00350575, 88.0, 93.9, 328, 92.4, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Oliver Hazard Perry,00350255, 19.0, 100.0, 87, 83.9, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Orchard Gardens,00350257, 58.4, 91.3, 377, 76.7, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Patrick J Kennedy,00350264, 18.9, 100.0, 92, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Paul A Dever,00350268, 28.8, 93.4, 237, 70.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 14.4, 87.5, 68, 75.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Phineas Bates,00350278, 22.8, 100.0, 102, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Quincy Upper School,00350565, 42.9, 81.4, 185, 67.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Rafael Hernandez,00350691, 23.8, 91.6, 161, 81.4, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Richard J Murphy,00350240, 57.3, 100.0, 341, 88.3, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Roger Clap,00350298, 9.9, 100.0, 49, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Samuel Adams,00350302, 21.0, 100.0, 110, 85.5, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Samuel W Mason,00350304, 16.9, 100.0, 79, 78.5, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Sarah Greenwood,00350308, 29.7, 100.0, 212, 84.4, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Snowden International School at Copley,00350690, 32.0, 93.8, 131, 77.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - TechBoston Academy,00350657, 85.9, 94.1, 337, 84.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston - The English High,00350535, 48.7, 85.7, 199, 64.3, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Thomas J Kenny,00350328, 22.0, 95.5, 117, 88.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Boston - UP Academy Holland,00350167, 48.4, 75.3, 200, 71.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Urban Science Academy,00350579, 44.1, 89.1, 202, 60.4, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Warren-Prescott,00350346, 36.0, 100.0, 239, 82.4, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Washington Irving Middle,00350445, 24.8, 100.0, 144, 81.9, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - West Roxbury Academy,00350658, 43.6, 90.8, 195, 64.6, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William E Russell,00350366, 23.4, 100.0, 142, 88.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William Ellery Channing,00350360, 14.3, 96.5, 73, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William H Ohrenberger,00350258, 40.9, 100.0, 261, 90.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William McKinley,00350363, 48.6, 98.0, 460, 34.8, 6.9 to 1 +NA,NA,a-exp-i1,2016-17,Boston - William Monroe Trotter,00350370, 30.6, 96.7, 143, 79.7, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Winship Elementary,00350374, 18.7, 100.0, 107, 88.8, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Boston - Young Achievers,00350380, 36.9, 91.8, 182, 58.2, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 65.7, 72.6, 213, 85.9, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.0, 96.7, 262, 98.5, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 51.6, 80.5, 260, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 37.2, 67.7, 53, 58.5, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 75.6, 76.8, 344, 75.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Bourne High School,00360505, 34.0, 97.5, 190, 97.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Bourne Middle School,00360325, 52.9, 100.0, 281, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Bournedale Elementary School,00360005, 32.5, 100.0, 187, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Bourne - Peebles Elementary School,00360010, 24.8, 100.0, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Boxford - Harry Lee Cole,00380005, 25.6, 100.0, 114, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Boxford - Spofford Pond,00380013, 36.9, 100.0, 132, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Boylston - Boylston Elementary,00390005, 20.1, 97.0, 128, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Archie T Morrison,00400033, 32.2, 100.0, 194, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Braintree High,00400505, 117.3, 98.3, 566, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Donald Ross,00400050, 21.8, 100.0, 139, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - East Middle School,00400305, 59.9, 98.3, 320, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Highlands,00400015, 26.3, 100.0, 184, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Hollis,00400005, 31.1, 96.8, 254, 97.2, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Liberty,00400025, 26.5, 100.0, 183, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Mary E Flaherty School,00400020, 25.6, 100.0, 170, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 14.5, 100.0, 90, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Braintree - South Middle School,00400310, 48.5, 97.9, 250, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brewster - Eddy Elementary,00410010, 22.1, 100.0, 80, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Brewster - Stony Brook Elementary,00410005, 23.0, 100.0, 82, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 26.1, 73.9, 100, 73.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.5, 100.0, 134, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 92.0, 98.9, 473, 98.9, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.0, 100.0, 134, 100.0, 19.2 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.1, 100.0, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.8, 100.0, 293, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 47.5, 100.0, 199, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.5, 100.0, 25, 100.0, 4.4 to 1 +NA,NA,a-exp-i1,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 230, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Brimfield - Brimfield Elementary,00430005, 26.4, 100.0, 106, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 32.8, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 94.1, 100.0, 626, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Ashfield Middle School,00440421, 41.2, 100.0, 164, 97.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Barrett Russell School,00440007, 16.3, 100.0, 78, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Brockton Champion High School,00440515, 14.4, 100.0, 82, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Brockton High,00440505, 252.9, 99.2," 1,120", 94.8, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Brookfield,00440010, 35.8, 99.7, 189, 97.9, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Downey,00440110, 42.1, 99.7, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Dr W Arnone Community School,00440001, 51.2, 99.8, 238, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - East Middle School,00440405, 39.3, 100.0, 176, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Edgar B Davis,00440023, 58.3, 99.5, 292, 98.3, 17.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Edison Academy,00440520, 5.3, 100.0, 135, 77.0, 29.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Frederick Douglass Academy,00440080, 5.7, 100.0, 110, 78.2, 6.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 21.0, 99.5, 62, 95.2, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Goddard Alternative School,00440400, 13.4, 90.3, 84, 100.0, 3.6 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Hancock,00440045, 35.6, 100.0, 164, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Huntington,00440055, 30.0, 100.0, 148, 100.0, 18.4 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - John F Kennedy,00440017, 35.3, 100.0, 182, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 48.2, 99.4, 293, 78.5, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Louis F Angelo Elementary,00440065, 51.5, 100.0, 290, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Manthala George Jr. School,00440003, 52.7, 99.8, 273, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Mary E. Baker School,00440002, 43.0, 100.0, 259, 100.0, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - North Middle School,00440410, 43.1, 99.7, 218, 99.5, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - Oscar F Raymond,00440078, 44.0, 100.0, 214, 100.0, 19.7 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - South Middle School,00440415, 41.6, 100.0, 163, 97.5, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Brockton - West Middle School,00440420, 45.8, 97.8, 225, 99.6, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 110.3, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Brookfield - Brookfield Elementary,00450005, 24.2, 100.0, 93, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 4.2, 100.0, 13, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 8.3, 100.0, 18, 100.0, 7.7 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Brookline High,00460505, 167.6, 99.4, 818, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Edith C Baker,00460005, 59.9, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Edward Devotion,00460015, 68.9, 98.5, 447, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Heath,00460025, 41.4, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - John D Runkle,00460045, 49.8, 100.0, 284, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Lawrence,00460030, 51.8, 100.0, 357, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Michael Driscoll,00460020, 43.3, 100.0, 290, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - Pierce,00460040, 56.3, 100.0, 425, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - The Lynch Center,00460060, 5.4, 100.0, 10, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Brookline - William H Lincoln,00460035, 53.4, 100.0, 321, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Burlington High,00480505, 90.5, 100.0, 432, 99.5, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Fox Hill,00480007, 31.7, 100.0, 147, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Francis Wyman Elementary,00480035, 48.5, 100.0, 225, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Marshall Simonds Middle,00480303, 73.4, 98.6, 335, 95.8, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Memorial,00480015, 36.1, 100.0, 160, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Burlington - Pine Glen Elementary,00480020, 28.5, 100.0, 142, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Amigos School,00490006, 32.7, 100.0, 164, 89.6, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 178.4, 99.2, 717, 92.5, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Cambridge Street Upper School,00490305, 29.7, 100.0, 112, 97.3, 8.8 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Cambridgeport,00490007, 22.8, 100.0, 111, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 29.9, 100.0, 201, 96.5, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Graham and Parks,00490080, 30.2, 100.0, 159, 96.2, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Haggerty,00490020, 25.1, 100.0, 109, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - John M Tobin,00490065, 21.9, 100.0, 175, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Kennedy-Longfellow,00490040, 28.5, 97.2, 122, 95.9, 9.3 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - King Open,00490035, 35.5, 100.0, 200, 99.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Maria L. Baldwin,00490005, 30.3, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Martin Luther King Jr.,00490030, 26.9, 90.1, 158, 88.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Morse,00490045, 31.5, 100.0, 160, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Peabody,00490050, 26.2, 100.0, 102, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 30.4, 94.0, 104, 91.3, 8.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 28.6, 100.0, 105, 96.2, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Cambridge - Vassal Lane Upper School,00490320, 32.8, 100.0, 106, 94.3, 8.2 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Canton High,00500505, 69.9, 100.0, 344, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Dean S Luce,00500020, 34.7, 100.0, 264, 98.5, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Canton - John F Kennedy,00500017, 35.6, 100.0, 234, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 243, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Rodman Early Childhood Center,00500010, 6.6, 100.0, 14, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Canton - Wm H Galvin Middle,00500305, 59.8, 100.0, 369, 95.7, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.5, 86.0, 48, 87.5, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 67.2, 94.0, 191, 93.7, 9.3 to 1 +NA,NA,a-exp-i1,2016-17,Carlisle - Carlisle School,00510025, 54.7, 100.0, 238, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Carver - Carver Elementary School,00520015, 59.8, 100.0, 385, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Carver - Carver Middle/High School,00520405, 71.3, 98.6, 315, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Becket Washington School,06350005, 10.0, 100.0, 50, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Craneville,06350025, 29.7, 96.6, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Kittredge,06350035, 11.4, 100.0, 55, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 34.1, 100.0, 168, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Central Berkshire - Wahconah Regional High,06350505, 43.2, 100.0, 213, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Byam School,00560030, 32.2, 100.0, 142, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Center Elementary School,00560005, 27.8, 100.0, 136, 99.3, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Charles D Harrington,00560025, 28.0, 100.0, 143, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Chelmsford High,00560505, 112.2, 100.0, 546, 99.8, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Col Moses Parker School,00560305, 61.3, 100.0, 286, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 84, 83.3, 19.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - McCarthy Middle School,00560310, 69.1, 100.0, 283, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelmsford - South Row,00560015, 28.0, 100.0, 136, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Chelsea High,00570505, 112.6, 99.6, 581, 99.3, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Clark Avenue School,00570050, 38.0, 100.0, 187, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 36.7, 100.0, 104, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.1, 100.0, 140, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 36.0, 100.0, 104, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - George F. Kelly Elementary,00570035, 35.5, 100.0, 109, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Joseph A. Browne School,00570055, 43.2, 100.0, 166, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 52.0, 100.0, 189, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 120, 95.8, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.8, 100.0, 65, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Barry,00610003, 28.5, 100.0, 114, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Belcher,00610010, 19.6, 100.0, 49, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Bellamy Middle,00610305, 61.4, 98.4, 220, 99.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Bowe,00610015, 32.7, 100.0, 121, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Bowie,00610020, 24.0, 100.0, 156, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Chicopee Academy,00610021, 17.3, 100.0, 98, 93.9, 6.1 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 90.0, 99.3, 454, 96.7, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Chicopee High,00610505, 74.1, 97.3, 349, 98.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Dupont Middle,00610310, 52.5, 98.1, 192, 93.2, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Fairview Elementary,00610050, 34.5, 100.0, 183, 87.4, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Gen John J Stefanik,00610090, 31.0, 100.0, 149, 96.6, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Lambert-Lavoie,00610040, 21.0, 100.0, 119, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Litwin,00610022, 31.3, 100.0, 149, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Streiber Memorial School,00610065, 21.0, 100.0, 130, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 29, 100.0, 20.1 to 1 +NA,NA,a-exp-i1,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 35.1, 68.4, 119, 84.9, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 25.1, 80.9, 80, 91.3, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 25.3, 71.1, 87, 87.4, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 13.3, 80.2, 51, 51.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Clarksburg - Clarksburg Elementary,00630010, 15.4, 97.4, 74, 87.8, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Clinton - Clinton Elementary,00640050, 51.5, 100.0, 253, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Clinton - Clinton Middle School,00640305, 52.3, 98.1, 277, 98.2, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Clinton - Clinton Senior High,00640505, 40.5, 100.0, 177, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 35.9, 60.5, 97, 67.0, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Cohasset - Cohasset Middle/High School,00650505, 70.7, 98.6, 380, 98.9, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Cohasset - Deer Hill,00650005, 28.4, 100.0, 138, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Cohasset - Joseph Osgood,00650010, 21.8, 100.0, 109, 95.4, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 33.0, 84.8, 162, 98.1, 19.6 to 1 +NA,NA,a-exp-i1,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.4, 69.8, 261, 95.4, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 27.5, 73.6, 82, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.0, 84.4, 102, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 30.5, 75.4, 82, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Alcott,00670005, 35.1, 100.0, 176, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Concord Middle,00670305, 56.7, 100.0, 377, 99.7, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Thoreau,00670020, 34.2, 100.0, 177, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Concord - Willard,00670030, 37.0, 100.0, 175, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 98.0, 100.0, 436, 98.9, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 22.0, 68.2, 83, 81.9, 20.5 to 1 +NA,NA,a-exp-i1,2016-17,Conway - Conway Grammar,00680005, 12.6, 99.2, 78, 98.7, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Danvers High,00710505, 78.2, 97.4, 365, 98.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Great Oak,00710015, 26.4, 100.0, 128, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Highlands,00710010, 29.5, 100.0, 128, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Holten Richmond Middle School,00710305, 64.3, 98.4, 372, 98.7, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Ivan G Smith,00710032, 19.6, 100.0, 93, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Riverside,00710030, 27.1, 100.0, 124, 96.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Danvers - Willis E Thorpe,00710045, 24.7, 100.0, 131, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 9.5, 100.0, 53, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Dartmouth High,00720505, 78.4, 99.1, 326, 99.1, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Dartmouth Middle,00720050, 77.4, 100.0, 314, 98.7, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - George H Potter,00720030, 27.8, 100.0, 133, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - James M. Quinn School,00720040, 45.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Dartmouth - Joseph Demello,00720015, 24.2, 100.0, 140, 99.3, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Avery,00730010, 26.5, 100.0, 112, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Dedham High,00730505, 65.0, 100.0, 268, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Dedham Middle School,00730305, 59.8, 100.0, 375, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Early Childhood Center,00730005, 17.0, 100.0, 105, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Greenlodge,00730025, 23.4, 100.0, 105, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Oakdale,00730030, 22.8, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Dedham - Riverdale,00730045, 18.1, 100.0, 76, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Deerfield - Deerfield Elementary,00740015, 37.5, 95.4, 218, 99.5, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.4, 100.0, 489, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 44.4, 100.0, 138, 100.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 27.5, 100.0, 97, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 47.6, 100.0, 223, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 47.0, 100.0, 169, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 39.8, 97.5, 154, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 35.6, 100.0, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 28.5, 100.0, 126, 96.8, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 84.5, 100.0, 397, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.9, 100.0, 177, 99.4, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Dighton-Rehoboth - Palmer River,06500010, 46.3, 100.0, 240, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas Elementary School,00770015, 20.7, 100.0, 99, 100.0, 19.5 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas High School,00770505, 35.5, 91.5, 158, 91.8, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas Middle School,00770305, 20.0, 100.0, 93, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Douglas - Douglas Primary School,00770005, 12.4, 100.0, 43, 100.0, 18.5 to 1 +NA,NA,a-exp-i1,2016-17,Dover - Chickering,00780005, 40.3, 98.3, 217, 97.2, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.2, 100.0, 330, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 51.3, 98.9, 227, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Brookside Elementary,00790035, 25.7, 100.0, 135, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Dracut Senior High,00790505, 60.7, 98.4, 246, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - George H. Englesby Elementary School,00790045, 28.5, 100.0, 151, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Greenmont Avenue,00790030, 17.2, 100.0, 93, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 30.7, 100.0, 190, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 53.8, 98.1, 335, 97.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 21.0, 95.3, 94, 85.1, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.6, 100.0, 112, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 52.7, 100.0, 283, 98.2, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.8, 100.0, 139, 96.4, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 36.4, 100.0, 223, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 32.3, 100.0, 145, 95.9, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 17.1, 100.0, 84, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 69.3, 100.0, 360, 91.9, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Alden School,00820004, 52.4, 98.1, 231, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Chandler Elementary,00820006, 43.8, 100.0, 204, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Duxbury High,00820505, 80.0, 99.5, 395, 99.7, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Duxbury - Duxbury Middle,00820305, 60.4, 96.7, 267, 95.9, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,East Bridgewater - Central,00830005, 36.0, 100.0, 180, 99.4, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 52.2, 96.6, 376, 92.3, 20.1 to 1 +NA,NA,a-exp-i1,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 42.0, 100.0, 220, 98.2, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Birchland Park,00870305, 52.5, 100.0, 215, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - East Longmeadow High,00870505, 61.9, 100.0, 217, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Mapleshade,00870010, 23.0, 100.0, 126, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Meadow Brook,00870013, 37.5, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,East Longmeadow - Mountain View,00870015, 22.6, 100.0, 105, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Eastham - Eastham Elementary,00850005, 22.9, 100.0, 84, 100.0, 7.9 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Center School,00860005, 14.7, 100.0, 64, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Easthampton High,00860505, 31.6, 96.8, 154, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Maple,00860010, 17.7, 100.0, 78, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - Neil A Pepin,00860020, 13.7, 100.0, 58, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Easthampton - White Brook Middle School,00860305, 35.9, 97.2, 167, 97.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Center School,00880003, 19.7, 100.0, 80, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Easton Middle School,00880405, 64.5, 100.0, 312, 99.7, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Moreau Hall,00880020, 13.8, 100.0, 67, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Oliver Ames High,00880505, 81.4, 98.8, 318, 99.7, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Parkview Elementary,00880015, 21.8, 100.0, 102, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Easton - Richardson Olmsted School,00880025, 56.0, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Edgartown - Edgartown Elementary,00890005, 39.9, 99.6, 139, 90.6, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 28.7, 91.6, 85, 96.5, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Erving - Erving Elementary,00910030, 18.1, 97.2, 76, 100.0, 7.5 to 1 +NA,NA,a-exp-i1,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 113.2, 95.5, 335, 97.3, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Adams School,00930003, 9.0, 100.0, 64, 100.0, 23.2 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Devens School,00930030, 11.6, 100.0, 160, 100.0, 5.6 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Everett High,00930505, 145.3, 100.0, 615, 99.7, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Everett - George Keverian School,00930028, 60.7, 100.0, 289, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Lafayette School,00930038, 66.5, 100.0, 296, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Madeline English School,00930018, 65.8, 100.0, 246, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Parlin School,00930058, 53.9, 100.0, 227, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Sumner G. Whittier School,00930010, 48.8, 100.0, 187, 99.5, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Everett - Webster School,00930015, 39.1, 100.0, 206, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 86.0, 56.9, 231, 79.2, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - East Fairhaven,00940010, 28.0, 100.0, 146, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - Fairhaven High,00940505, 50.2, 100.0, 302, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - Hastings Middle,00940305, 34.7, 100.0, 151, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Fairhaven - Leroy Wood,00940030, 31.4, 100.0, 192, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - B M C Durfee High,00950505, 174.4, 91.1, 680, 90.3, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 44.4, 91.0, 248, 85.5, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Fall River - Henry Lord Community School,00950017, 43.3, 86.2, 225, 85.8, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - James Tansey,00950140, 15.4, 93.5, 79, 89.9, 19.0 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - John J Doran,00950045, 36.2, 86.2, 161, 83.9, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Letourneau Elementary School,00950013, 39.1, 90.5, 168, 92.9, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 47.3, 93.7, 188, 77.7, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Matthew J Kuss Middle,00950320, 58.3, 94.9, 288, 93.8, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Morton Middle,00950315, 51.4, 100.0, 240, 80.8, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - North End Elementary,00950005, 45.0, 95.6, 256, 82.8, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Resiliency Middle School,00950335, 4.2, 76.2, 20, 50.0, 6.4 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Resiliency Preparatory School,00950325, 13.9, 92.8, 64, 92.2, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Samuel Watson,00950145, 18.9, 94.7, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Spencer Borden,00950130, 37.6, 92.0, 214, 94.4, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Stone Day School,00950340, 12.2, 81.9, 80, 91.3, 2.6 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - Talbot Innovation School,00950305, 49.8, 90.0, 234, 91.9, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Fall River - William S Greene,00950065, 48.2, 87.5, 244, 86.1, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - East Falmouth Elementary,00960005, 33.2, 100.0, 119, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Falmouth High,00960505, 73.0, 96.7, 516, 97.3, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Lawrence,00960405, 50.6, 100.0, 239, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Morse Pond School,00960305, 46.2, 100.0, 162, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Mullen-Hall,00960020, 37.8, 100.0, 171, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - North Falmouth Elementary,00960030, 26.8, 100.0, 119, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Falmouth - Teaticket,00960015, 29.4, 100.0, 134, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 12.5, 92.2, 56, 100.0, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 47.0, 100.0, 246, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Crocker Elementary,00970016, 40.0, 100.0, 145, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Fitchburg High,00970505, 87.3, 100.0, 407, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Goodrich Academy,00970510, 8.6, 100.0, 123, 100.0, 20.0 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - McKay Arts Academy,00970340, 52.0, 100.0, 232, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Memorial Intermediate,00970048, 50.2, 100.0, 212, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - Reingold Elementary,00970043, 40.9, 100.0, 198, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Fitchburg - South Street Elementary,00970060, 47.0, 100.0, 214, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Florida - Abbott Memorial,00980005, 11.6, 95.7, 61, 80.3, 7.0 to 1 +NA,NA,a-exp-i1,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 22.0, 57.8, 131, 96.9, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Charles Taylor Elementary,00990050, 20.4, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Foxborough High,00990505, 64.5, 100.0, 319, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - John J Ahern,00990405, 64.2, 100.0, 380, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Mabelle M Burrell,00990015, 22.4, 100.0, 107, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 33.8, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 92.2, 81.8, 429, 96.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Barbieri Elementary,01000035, 52.2, 96.2, 249, 88.8, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Brophy,01000006, 42.5, 100.0, 189, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Cameron Middle School,01000302, 54.1, 100.0, 220, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Charlotte A Dunning,01000007, 36.7, 100.0, 199, 93.5, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Framingham High School,01000515, 177.1, 97.2, 692, 92.2, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Fuller Middle,01000305, 53.1, 100.0, 239, 94.1, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Hemenway,01000015, 40.6, 100.0, 177, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Juniper Hill School,01000001, 17.6, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - King Elementary School,01000005, 17.9, 95.6, 95, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 36.6, 100.0, 142, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Miriam F McCarthy School,01000050, 50.1, 100.0, 213, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Potter Road,01000039, 37.3, 100.0, 149, 99.3, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Walsh Middle,01000310, 71.5, 99.7, 324, 99.1, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Framingham - Woodrow Wilson,01000055, 50.1, 100.0, 207, 98.1, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 45.7, 61.0, 200, 100.0, 8.6 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Annie Sullivan Middle School,01010040, 40.8, 100.0, 150, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Davis Thayer,01010035, 20.6, 100.0, 78, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 6.0, 100.0, 30, 100.0, 21.8 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Franklin High,01010505, 125.6, 99.9, 749, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Helen Keller Elementary,01010012, 29.7, 100.0, 120, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Horace Mann,01010405, 40.0, 97.5, 149, 97.3, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - J F Kennedy Memorial,01010013, 26.2, 100.0, 105, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Jefferson Elementary,01010010, 23.4, 100.0, 101, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Oak Street Elementary,01010030, 27.4, 100.0, 119, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Parmenter,01010032, 27.4, 96.3, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Franklin - Remington Middle,01010310, 43.4, 100.0, 148, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 51.8, 96.1, 136, 97.8, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 60.5, 100.0, 256, 98.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 28.0, 100.0, 147, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 148, 98.6, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 48.1, 100.0, 243, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.1, 100.0, 144, 86.1, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Frontier - Frontier Regional,06700505, 51.9, 96.5, 315, 97.8, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Elm Street School,01030001, 39.5, 100.0, 182, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 8.0, 100.0, 46, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Gardner High,01030505, 57.9, 100.0, 220, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Gardner Middle School,01030405, 38.0, 100.0, 156, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Gardner - Waterford Street,01030020, 26.9, 100.0, 132, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Chester Elementary,06720059, 12.5, 100.0, 44, 100.0, 9.3 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Gateway Regional High,06720505, 23.1, 97.8, 127, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Gateway Regional Middle School,06720405, 19.8, 97.5, 82, 97.6, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Gateway - Littleville Elementary School,06720143, 22.5, 100.0, 103, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Georgetown High School,01050505, 36.7, 100.0, 188, 99.5, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Georgetown Middle School,01050305, 21.5, 100.0, 103, 93.2, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Penn Brook,01050010, 43.9, 95.4, 236, 86.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 26, 100.0, 27.0 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Gill Elementary,06740005, 9.2, 100.0, 40, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Great Falls Middle,06740310, 21.2, 95.3, 131, 92.4, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 12.7, 100.0, 42, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 24.3, 95.9, 88, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Gill-Montague - Turners Fall High,06740505, 23.8, 100.0, 108, 98.1, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 40.8, 89.0, 233, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Beeman Memorial,01070010, 30.5, 100.0, 126, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - East Gloucester Elementary,01070020, 19.7, 100.0, 84, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Gloucester High,01070505, 79.9, 97.5, 294, 97.3, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 23, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Plum Cove School,01070042, 16.8, 100.0, 84, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 53.8, 98.1, 280, 97.9, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - Veterans Memorial,01070045, 25.7, 100.0, 89, 100.0, 8.6 to 1 +NA,NA,a-exp-i1,2016-17,Gloucester - West Parish,01070050, 27.5, 100.0, 135, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 8, 100.0, 1.8 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - Grafton High School,01100505, 63.8, 100.0, 313, 99.7, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - Grafton Middle,01100305, 33.7, 100.0, 179, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - Millbury Street Elementary School,01100200, 52.4, 98.1, 260, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - North Grafton Elementary,01100025, 19.5, 100.0, 108, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - North Street Elementary School,01100030, 42.1, 100.0, 236, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Grafton - South Grafton Elementary,01100005, 20.7, 100.0, 112, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Granby - East Meadow,01110004, 12.6, 100.0, 105, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Granby - Granby Jr Sr High School,01110505, 30.7, 100.0, 235, 96.2, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Granby - West Street,01110010, 14.6, 93.1, 73, 86.3, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 133.2, 98.5, 500, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 135.2, 99.3, 313, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 175.1, 99.4, 454, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 204.1, 98.5, 501, 98.6, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Discovery School at Four Corners,01140025, 21.3, 90.6, 117, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Federal Street School,01140010, 21.7, 100.0, 110, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Green River,01140030, .5, 100.0, 12, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Greenfield High,01140505, 40.2, 100.0, 201, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Greenfield Middle,01140305, 43.3, 99.5, 198, 98.5, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - Newton School,01140035, 22.1, 100.0, 112, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.0, 100.0, 29, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Boutwell School,06730001, 3.0, 100.0, 15, 100.0, 21.4 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Florence Roche School,06730010, 33.2, 100.0, 162, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.9, 100.0, 319, 99.4, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 59.4, 100.0, 273, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 22.8, 100.0, 108, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Hadley - Hadley Elementary,01170015, 24.9, 100.0, 263, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Hadley - Hopkins Academy,01170505, 23.3, 100.0, 142, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Halifax - Halifax Elementary,01180005, 38.8, 100.0, 195, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 17.4, 100.0, 68, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Cutler School,06750010, 20.4, 100.0, 84, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 50.7, 100.0, 238, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 40.2, 97.5, 153, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Hamilton-Wenham - Winthrop School,06750015, 22.0, 100.0, 92, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 37.7, 74.5, 245, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 18.2, 100.0, 95, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 20.5, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.8, 100.0, 315, 99.4, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Soule Road,06800030, 21.9, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 15.2, 100.0, 76, 90.8, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 35.1, 100.0, 163, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Hampshire - Hampshire Regional High,06830505, 71.7, 96.2, 371, 86.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Hancock - Hancock Elementary,01210005, 5.8, 100.0, 25, 36.0, 6.2 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Cedar Elementary,01220004, 31.9, 100.0, 130, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Center Elementary,01220005, 21.0, 100.0, 94, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Hanover High,01220505, 60.9, 100.0, 259, 94.2, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Hanover Middle,01220305, 63.7, 100.0, 427, 99.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Hanover - Sylvester,01220015, 17.1, 100.0, 72, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Harvard - Bromfield,01250505, 57.3, 99.5, 266, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Harvard - Hildreth Elementary School,01250005, 35.0, 100.0, 141, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 81, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Hatfield - Smith Academy,01270505, 22.4, 100.0, 125, 100.0, 8.8 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 9.0, 100.0, 77, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Bradford Elementary,01280008, 45.0, 100.0, 240, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 24.9, 100.0, 146, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Consentino Middle School,01280100, 61.8, 96.8, 332, 95.8, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Crowell,01280020, 9.7, 100.0, 91, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Dr Paul Nettle,01280050, 38.2, 100.0, 174, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Golden Hill,01280026, 39.0, 100.0, 250, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Greenleaf,01280027, 16.5, 100.0, 116, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Haverhill Alternative School,01280033, 7.0, 100.0, 36, 100.0, 6.6 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Haverhill High,01280505, 126.8, 94.7, 624, 94.7, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - John G Whittier,01280085, 27.3, 100.0, 144, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Moody,01280045, 13.0, 100.0, 216, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 43.5, 100.0, 356, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - TEACH,01280073, 7.0, 85.7, 130, 86.2, 7.3 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Tilton,01280075, 39.0, 100.0, 188, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Haverhill - Walnut Square,01280080, 8.0, 94.6, 69, 100.0, 19.0 to 1 +NA,NA,a-exp-i1,2016-17,Hawlemont - Hawlemont Regional,06850005, 10.4, 83.6, 50, 90.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 17.0, 64.7, 74, 81.1, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 20.1, 77.8, 97, 84.5, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.8, 91.6, 55, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - East Elementary School,01310005, 35.1, 100.0, 159, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Hingham High,01310505, 86.0, 100.0, 451, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Hingham Middle School,01310410, 70.1, 100.0, 380, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Plymouth River,01310019, 32.8, 100.0, 163, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - South Elementary,01310020, 36.0, 100.0, 167, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Hingham - Wm L Foster Elementary,01310010, 33.7, 100.0, 160, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 37.8, 97.4, 192, 95.8, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Holbrook - John F Kennedy,01330018, 30.9, 100.0, 141, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Holbrook - South,01330025, 20.9, 100.0, 91, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Holland - Holland Elementary,01350005, 19.6, 100.0, 82, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Holliston High,01360505, 63.4, 98.4, 346, 98.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Miller School,01360007, 47.9, 100.0, 250, 99.6, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Placentino Elementary,01360010, 47.3, 97.9, 271, 99.3, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Holliston - Robert H. Adams Middle School,01360305, 50.2, 100.0, 253, 98.8, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - E N White Elementary,01370045, 38.3, 97.7, 138, 80.4, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - H.B. Lawrence School,01370070, 21.0, 92.0, 97, 73.2, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Holyoke High,01370505, 78.2, 94.7, 396, 91.2, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Joseph Metcalf School,01370003, 14.8, 98.5, 56, 55.4, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Kelly Elementary,01370040, 41.0, 91.8, 179, 91.1, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 46.8, 84.9, 190, 47.4, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 28.6, 96.5, 106, 87.7, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 38.4, 87.1, 155, 73.5, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Morgan Full Service Community School,01370025, 33.3, 91.0, 91, 81.3, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - William R. Peck School,01370030, 33.3, 90.4, 154, 74.7, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 33.9, 71.5, 49, 85.7, 7.4 to 1 +NA,NA,a-exp-i1,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.5, 72.2, 143, 92.3, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 43.2, 100.0, 213, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Hopedale - Memorial,01380010, 42.8, 100.0, 178, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Hopedale - Park Street School,01380003, 3.5, 88.6, 4, 100.0, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Center,01390005, 32.7, 100.0, 149, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Elmwood,01390010, 35.7, 100.0, 147, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkins Elementary School,01390015, 37.6, 100.0, 166, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkinton High,01390505, 81.9, 100.0, 654, 97.2, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkinton Middle School,01390305, 66.8, 100.0, 310, 97.7, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 4.5, 100.0, 9, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - C A Farley,01410030, 41.2, 100.0, 156, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - David J. Quinn Middle School,01410410, 56.8, 100.0, 277, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - Forest Avenue Elementary,01410015, 27.5, 100.0, 97, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - Hudson High,01410505, 87.1, 97.7, 431, 96.5, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Hudson - Mulready Elementary,01410007, 23.8, 100.0, 86, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Hull - Hull High,01420505, 28.6, 100.0, 138, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Hull - Lillian M Jacobs,01420015, 33.0, 100.0, 139, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Hull - Memorial Middle,01420305, 20.1, 100.0, 81, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 73.3, 85.0, 360, 96.1, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Ipswich High,01440505, 50.1, 98.0, 330, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Ipswich Middle School,01440305, 43.3, 100.0, 156, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 33.7, 100.0, 176, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Ipswich - Winthrop,01440015, 36.1, 100.0, 183, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 47.0, 44.7, 73, 69.9, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 99.7, 56.2, 305, 72.5, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,King Philip - King Philip Middle School,06900510, 47.0, 100.0, 285, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,King Philip - King Philip Regional High,06900505, 83.5, 98.7, 358, 98.6, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Kingston - Kingston Elementary,01450005, 32.2, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Kingston - Kingston Intermediate,01450020, 37.7, 100.0, 177, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Lanesborough - Lanesborough Elementary,01480005, 19.0, 100.0, 86, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Alexander B Bruce,01490015, 41.1, 100.0, 158, 74.1, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 221, 94.1, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Community Day Arlington,01490009, 56.5, 89.4, 168, 85.7, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Edward F. Parthum,01490053, 41.0, 95.1, 239, 86.2, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Emily G Wetherbee,01490080, 44.4, 97.7, 234, 74.8, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Francis M Leahy,01490040, 35.3, 100.0, 158, 80.4, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Frost Middle School,01490525, 31.0, 96.8, 183, 66.1, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Gerard A. Guilmette,01490022, 45.4, 89.0, 201, 72.1, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Guilmette Middle School,01490025, 43.4, 93.1, 247, 87.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - High School Learning Center,01490536, 17.8, 100.0, 120, 91.7, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - James F Hennessey,01490020, 27.0, 92.6, 88, 85.2, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - John Breen School,01490003, 18.0, 100.0, 50, 100.0, 18.2 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - John K Tarbox,01490075, 21.0, 95.2, 110, 81.8, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 10.0, 100.0, 37, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 16.0, 100.0, 80, 93.8, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Lawrence High School,01490515, 225.8, 90.6," 1,025", 89.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Oliver Partnership School,01490048, 33.0, 100.0, 160, 75.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Parthum Middle School,01490027, 39.0, 94.9, 171, 59.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 12.0, 75.0, 177, 69.5, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Robert Frost,01490018, 38.0, 100.0, 200, 85.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 59, 91.5, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - School for Exceptional Studies,01490537, 31.9, 78.3, 199, 64.8, 5.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 47.4, 100.0, 237, 70.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - Spark Academy,01490085, 33.3, 91.0, 112, 81.3, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 27.0, 88.9, 84, 76.2, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 30.0, 86.7, 64, 96.9, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 59.5, 88.2, 273, 71.4, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Lee - Lee Elementary,01500025, 27.0, 100.0, 129, 92.2, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Lee - Lee Middle/High School,01500505, 35.5, 97.2, 170, 100.0, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester High,01510505, 33.8, 100.0, 162, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester Memorial Elementary,01510005, 23.2, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester Middle,01510015, 28.1, 100.0, 137, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Leicester - Leicester Primary School,01510010, 24.3, 100.0, 131, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Lenox - Lenox Memorial High,01520505, 52.1, 98.1, 351, 100.0, 8.7 to 1 +NA,NA,a-exp-i1,2016-17,Lenox - Morris,01520015, 28.5, 100.0, 117, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Bennett,01530003, 5.0, 100.0, 16, 100.0, 21.0 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Center For Technical Education Innovation,01530605, 37.7, 90.4, 52, 100.0, 18.5 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Fall Brook,01530007, 46.6, 100.0, 254, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Frances Drake School,01530010, 45.4, 95.6, 251, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Johnny Appleseed,01530025, 48.5, 100.0, 264, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Leominster Center for Excellence,01530515, 3.5, 100.0, 24, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Leominster High School,01530505, 98.2, 99.0, 536, 99.8, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Lincoln School,01530005, 5.0, 100.0, 25, 100.0, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Northwest,01530030, 48.1, 100.0, 274, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Priest Street,01530040, 10.3, 92.2, 56, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Samoset School,01530045, 39.1, 97.4, 295, 98.3, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Leominster - Sky View Middle School,01530320, 57.6, 100.0, 380, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Leverett - Leverett Elementary,01540005, 13.8, 100.0, 55, 87.3, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Bowman,01550008, 49.0, 100.0, 91, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Bridge,01550006, 43.0, 100.0, 89, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Fiske,01550015, 39.0, 100.0, 79, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Harrington,01550030, 33.0, 100.0, 77, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Jonas Clarke Middle,01550305, 80.5, 100.0, 314, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Joseph Estabrook,01550010, 40.2, 100.0, 86, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Lexington Children's Place,01550001, 6.8, 100.0, 26, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Lexington High,01550505, 173.0, 99.7, 738, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Maria Hastings,01550035, 37.6, 100.0, 73, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Lexington - Wm Diamond Middle,01550310, 75.7, 100.0, 317, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln - Hanscom Middle,01570305, 25.6, 100.0, 152, 96.7, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln - Hanscom Primary,01570006, 27.9, 100.0, 124, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln - Lincoln School,01570025, 63.3, 100.0, 304, 100.0, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.8, 100.0, 828, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Littleton High School,01580505, 32.9, 99.4, 141, 99.3, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Littleton Middle School,01580305, 25.9, 100.0, 125, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Russell St Elementary,01580015, 23.1, 100.0, 170, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Littleton - Shaker Lane Elementary,01580005, 28.2, 100.0, 140, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 159, 97.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Center,01590010, 31.9, 100.0, 160, 95.6, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Glenbrook Middle,01590017, 28.4, 100.0, 125, 93.6, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Longmeadow High,01590505, 75.8, 100.0, 296, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Williams Middle,01590305, 31.0, 100.0, 142, 98.6, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Longmeadow - Wolf Swamp Road,01590025, 32.5, 100.0, 140, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Abraham Lincoln,01600020, 37.0, 100.0, 269, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - B.F. Butler Middle School,01600310, 42.9, 100.0, 277, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Bartlett Community Partnership,01600090, 36.1, 100.0, 233, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Charles W Morey,01600030, 34.0, 100.0, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 36.0, 100.0, 208, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Dr An Wang School,01600345, 48.4, 100.0, 275, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Dr Gertrude Bailey,01600002, 32.9, 100.0, 262, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Greenhalge,01600015, 35.0, 100.0, 216, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Henry J Robinson Middle,01600330, 52.9, 100.0, 197, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - James S Daley Middle School,01600315, 47.6, 100.0, 246, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - James Sullivan Middle School,01600340, 50.1, 100.0, 248, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - John J Shaughnessy,01600050, 34.9, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Joseph McAvinnue,01600010, 36.0, 100.0, 254, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 49.8, 100.0, 304, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 6.6, 100.0, 78, 100.0, 2.7 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 7.2, 100.0, 105, 100.0, 4.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Lowell High,01600505, 213.0, 97.7," 1,534", 98.8, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Moody Elementary,01600027, 20.0, 100.0, 118, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Pawtucketville Memorial,01600036, 34.9, 100.0, 272, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Peter W Reilly,01600040, 40.5, 100.0, 306, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Pyne Arts,01600018, 36.1, 100.0, 297, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Rogers STEM Academy,01600005, 36.9, 100.0, 307, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 34.0, 100.0, 270, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - The Career Academy,01600515, 9.7, 100.0, 68, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lowell - Washington,01600055, 19.5, 100.0, 170, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 61.0, 98.4, 238, 97.9, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 57.1, 96, 97.9, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Chapin Street Elementary School,01610020, 29.4, 100.0, 148, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - East Street Elementary School,01610010, 32.3, 100.0, 158, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Ludlow Senior High,01610505, 79.7, 98.7, 360, 95.3, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Paul R Baird Middle,01610305, 59.3, 99.2, 239, 98.7, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Ludlow - Veterans Park Elementary,01610023, 27.5, 100.0, 203, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Lunenburg High,01620505, 35.7, 97.2, 151, 99.3, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Lunenburg Middle School,01620305, 25.9, 100.0, 158, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Lunenburg Primary School,01620010, 23.5, 100.0, 127, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 27.0, 100.0, 155, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - A Drewicz Elementary,01630016, 33.6, 97.0, 149, 96.6, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Aborn,01630011, 16.7, 100.0, 86, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Breed Middle School,01630405, 84.7, 94.1, 353, 94.1, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Brickett Elementary,01630020, 20.8, 100.0, 93, 94.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Capt William G Shoemaker,01630090, 30.9, 100.0, 142, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Classical High,01630505, 96.6, 99.0, 436, 95.4, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Cobbet Elementary,01630035, 41.7, 100.0, 186, 97.3, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - E J Harrington,01630045, 44.8, 100.0, 204, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Early Childhood Center,01630004, 21.8, 100.0, 121, 95.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Edward A Sisson,01630095, 30.1, 100.0, 142, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 37.0, 89.2, 139, 91.4, 8.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Hood,01630055, 31.7, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Ingalls,01630060, 44.4, 100.0, 198, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Julia F Callahan,01630030, 30.0, 100.0, 166, 94.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 81, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lynn English High,01630510, 105.2, 96.2, 539, 90.7, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 81.5, 96.3, 228, 95.6, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Lynn Woods,01630075, 11.3, 100.0, 59, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Pickering Middle,01630420, 51.9, 100.0, 195, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Robert L Ford,01630050, 32.7, 100.0, 146, 96.6, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Sewell-Anderson,01630085, 23.2, 100.0, 114, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Thurgood Marshall Mid,01630305, 80.1, 96.3, 306, 88.9, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Tracy,01630100, 31.3, 100.0, 135, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Washington Elementary School,01630005, 30.6, 100.0, 142, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - William R Fallon,01630080, 9.8, 100.0, 42, 100.0, 4.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynn - Wm P Connery,01630040, 38.5, 100.0, 175, 97.1, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Huckleberry Hill,01640010, 28.4, 100.0, 143, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Lynnfield High,01640505, 52.8, 100.0, 223, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Lynnfield Middle School,01640405, 51.2, 100.0, 229, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Lynnfield Preschool,01640005, 2.6, 100.0, 8, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Lynnfield - Summer Street,01640020, 28.9, 100.0, 149, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 84.7, 66.4, 274, 77.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.9, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Beebe,01650003, 61.5, 100.0, 262, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Ferryway,01650013, 57.5, 100.0, 247, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Forestdale,01650027, 47.5, 100.0, 249, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Linden,01650047, 68.8, 100.0, 362, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 91, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Malden High,01650505, 114.2, 99.1, 542, 98.3, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Malden - Salemwood,01650057, 85.0, 100.0, 554, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 20.4, 100.0, 95, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 202, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 37.0, 95.7, 136, 91.2, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 31.7, 98.7, 143, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Everett W Robinson,01670007, 49.0, 100.0, 249, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Harold L Qualters Middle,01670035, 87.0, 100.0, 327, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 59.9, 100.0, 319, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Mansfield High,01670505, 99.4, 100.0, 537, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Mansfield - Roland Green School,01670003, 6.0, 100.0, 30, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Elbridge Gerry,01680015, 10.1, 100.0, 48, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Glover,01680020, 27.8, 100.0, 116, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - L H Coffin,01680010, 13.9, 94.2, 52, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Malcolm L Bell,01680005, 24.0, 100.0, 90, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Marblehead High,01680505, 89.7, 97.8, 387, 98.2, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 42.0, 100.0, 188, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead - Village School,01680016, 56.4, 99.9, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 21.9, 79.0, 78, 89.7, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Marion - Sippican,01690005, 33.6, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 114.5, 100.0, 494, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Charles Jaworek School,01700030, 56.2, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 26, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Francis J Kane,01700008, 49.0, 100.0, 174, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Marlborough High,01700505, 99.3, 100.0, 438, 99.5, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Marlborough - Richer,01700025, 45.0, 100.0, 150, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Daniel Webster,01710015, 24.9, 100.0, 109, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Eames Way School,01710005, 19.0, 100.0, 91, 94.5, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Furnace Brook Middle,01710310, 75.7, 100.0, 402, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Gov Edward Winslow,01710020, 31.8, 100.0, 146, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Marshfield High,01710505, 109.4, 99.1, 395, 98.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - Martinson Elementary,01710025, 37.0, 97.3, 145, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Marshfield - South River,01710010, 26.5, 100.0, 122, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 73.5, 99.3, 592, 94.9, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 18.9, 81.7, 70, 95.7, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 37.8, 81.4, 101, 63.4, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Masconomet - Masconomet Regional High School,07050505, 84.4, 100.0, 416, 99.8, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 47.2, 100.0, 232, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Kenneth Coombs School,01720005, 32.3, 100.0, 166, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Mashpee High,01720505, 42.6, 100.0, 236, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Mashpee Middle School,01720020, 21.2, 100.0, 112, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Mashpee - Quashnet School,01720035, 43.8, 100.0, 259, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,"","","","","" +NA,NA,a-exp-i1,2016-17,Mattapoisett - Center,01730005, 22.5, 100.0, 89, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Mattapoisett - Old Hammondtown,01730010, 17.8, 100.0, 75, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Maynard - Fowler School,01740305, 35.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Maynard - Green Meadow,01740010, 34.2, 100.0, 130, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Maynard - Maynard High,01740505, 40.4, 97.5, 190, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Dale Street,01750005, 29.1, 97.8, 191, 95.3, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Medfield Senior High,01750505, 67.5, 100.0, 297, 99.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Memorial School,01750003, 24.1, 100.0, 140, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Ralph Wheelock School,01750007, 25.0, 100.0, 142, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Medfield - Thomas Blake Middle,01750305, 51.7, 100.0, 381, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Medford - Brooks School,01760130,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Christopher Columbus,01760140,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Curtis-Tufts,01760510,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - John J McGlynn Elementary School,01760068,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - John J. McGlynn Middle School,01760320,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Madeleine Dugger Andrews,01760315,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Medford High,01760505,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Medford Vocational Technical High,01760605,"","","","","" +NA,NA,a-exp-i1,2016-17,Medford - Milton Fuller Roberts,01760150,"","","","","" +NA,NA,a-exp-i1,2016-17,Medway - Burke/Memorial Elementary School,01770015, 30.8, 100.0, 152, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Medway - John D Mc Govern Elementary,01770013, 19.2, 100.0, 94, 94.7, 17.9 to 1 +NA,NA,a-exp-i1,2016-17,Medway - Medway High,01770505, 51.7, 98.1, 289, 91.3, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Medway - Medway Middle,01770305, 55.3, 100.0, 240, 98.3, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Early Childhood Center,01780003, 13.5, 100.0, 45, 100.0, 21.4 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Herbert Clark Hoover,01780017, 18.5, 100.0, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Horace Mann,01780025, 16.5, 100.0, 73, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Lincoln,01780020, 29.0, 100.0, 122, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Melrose High,01780505, 69.8, 100.0, 289, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Melrose Middle,01780305, 60.2, 98.3, 299, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Roosevelt,01780035, 31.0, 100.0, 120, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Melrose - Winthrop,01780050, 23.8, 100.0, 109, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Henry P Clough,07100179, 29.3, 100.0, 146, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Memorial School,07100001, 30.6, 96.7, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 57.1, 100.0, 242, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 47.4, 96.6, 335, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Comprehensive Grammar School,01810050, 78.0, 98.7, 374, 99.5, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Donald P Timony Grammar,01810060, 93.2, 100.0, 402, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Marsh Grammar School,01810030, 84.5, 100.0, 421, 96.2, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Methuen High,01810505, 143.7, 98.5, 658, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Methuen - Tenney Grammar School,01810055, 91.5, 100.0, 396, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 46.6, 100.0, 270, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - John T. Nichols Middle,01820305, 53.4, 100.0, 256, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 47.5, 100.0, 240, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 20.0, 100.0, 90, 100.0, 6.5 to 1 +NA,NA,a-exp-i1,2016-17,Middleborough - Middleborough High,01820505, 62.8, 100.0, 333, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Middleton - Fuller Meadow,01840003, 23.4, 100.0, 89, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Middleton - Howe-Manning,01840005, 38.7, 100.0, 154, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Brookside,01850065, 42.1, 100.0, 162, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Memorial,01850010, 37.1, 100.0, 154, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Milford High,01850505, 85.6, 100.0, 350, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 25, 100.0, 20.5 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Stacy Middle,01850305, 78.1, 100.0, 360, 98.6, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Milford - Woodland,01850090, 79.0, 98.7, 350, 97.7, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Millbury - Elmwood Street,01860017, 37.5, 100.0, 126, 97.6, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Millbury - Millbury Junior/Senior High,01860505, 61.7, 100.0, 296, 99.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 27.6, 100.0, 145, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Millis - Clyde F Brown,01870005, 37.1, 100.0, 184, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Millis - Millis High School,01870505, 26.3, 100.0, 139, 99.3, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Millis - Millis Middle,01870020, 31.1, 95.8, 158, 94.3, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Charles S Pierce Middle,01890410, 68.1, 100.0, 364, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Collicot,01890005, 39.1, 100.0, 208, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Cunningham School,01890007, 21.6, 100.0, 151, 100.0, 23.4 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Glover,01890010, 26.1, 100.0, 183, 97.3, 22.6 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Milton High,01890505, 66.9, 100.0, 372, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Milton - Tucker,01890020, 25.4, 100.0, 137, 96.4, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 72.5, 98.6, 231, 99.1, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 16.4, 99.4, 87, 94.3, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Colrain Central,07170010, 11.1, 100.0, 53, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Heath Elementary,07170015, 6.5, 93.8, 29, 100.0, 4.5 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 28.4, 85.9, 274, 90.1, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Mohawk Trail - Sanderson Academy,07170020, 9.4, 100.0, 46, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 22.7, 96.3, 131, 82.4, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 46.5, 100.0, 244, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.3, 96.6, 283, 97.5, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 43.9, 100.0, 215, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Monson - Granite Valley Middle,01910310, 29.0, 100.0, 120, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Monson - Monson High School,01910505, 26.0, 88.4, 98, 83.7, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Monson - Quarry Hill Community School,01910025, 31.0, 100.0, 121, 94.2, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 112.0, 100.0, 322, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 44.6, 100.0, 210, 98.6, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 103.1, 66.0, 612, 89.2, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Nahant - Johnson,01960010, 11.0, 100.0, 50, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Nantucket - Cyrus Peirce,01970010, 31.9, 92.5, 165, 86.7, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Nantucket - Nantucket Elementary,01970005, 61.5, 96.7, 332, 88.9, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Nantucket - Nantucket High,01970505, 44.5, 86.8, 246, 80.1, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Baldwinville Elementary,07200005, 15.9, 100.0, 80, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Narragansett Middle,07200305, 26.3, 100.0, 108, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Narragansett Regional High,07200505, 27.2, 96.3, 139, 97.8, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Phillipston Memorial,07200003, 11.0, 90.9, 42, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Narragansett - Templeton Center,07200020, 10.9, 100.0, 56, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Center School,07250020, 40.9, 100.0, 210, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Florence Sawyer School,07250025, 58.6, 100.0, 248, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Hale,07250310, 23.3, 95.7, 97, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Luther Burbank Middle School,07250305, 23.9, 100.0, 87, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 35.7, 100.0, 152, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba - Nashoba Regional,07250505, 79.5, 99.4, 457, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 63.1, 98.4, 207, 97.1, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Bennett-Hemenway,01980005, 39.2, 100.0, 209, 97.6, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Brown,01980010, 34.1, 100.0, 176, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Natick - J F Kennedy Middle School,01980305, 51.0, 100.0, 237, 99.2, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Johnson,01980031, 20.0, 98.0, 77, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Lilja Elementary,01980035, 26.5, 100.0, 140, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Memorial,01980043, 25.5, 97.6, 147, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Natick High,01980505, 117.0, 99.1," 1,009", 97.9, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Natick - Wilson Middle,01980310, 73.8, 98.6, 282, 97.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Nauset - Nauset Regional High,06600505, 81.7, 99.0, 408, 99.3, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Nauset - Nauset Regional Middle,06600305, 55.6, 100.0, 209, 100.0, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Broadmeadow,01990005, 34.0, 100.0, 175, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Needham - High Rock School,01990410, 37.8, 97.9, 170, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Hillside Elementary,01990035, 31.7, 100.0, 156, 96.8, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Needham - John Eliot,01990020, 23.7, 100.0, 112, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Needham High,01990505, 121.6, 99.5, 505, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Newman Elementary,01990050, 50.8, 98.0, 218, 97.7, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Needham - Pollard Middle,01990405, 71.7, 98.6, 367, 98.9, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Needham - William Mitchell,01990040, 30.5, 100.0, 164, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 50.1, 61.3, 93, 100.0, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Abraham Lincoln,02010095, 37.2, 100.0, 222, 92.8, 21.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Alfred J Gomes,02010063, 39.9, 89.9, 176, 92.6, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Betsey B Winslow,02010140, 16.9, 98.6, 80, 100.0, 17.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Carlos Pacheco,02010105, 27.0, 100.0, 106, 96.2, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Casimir Pulaski,02010123, 48.0, 95.8, 289, 91.7, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Charles S Ashley,02010010, 20.9, 100.0, 102, 96.1, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 18.1, 97.1, 78, 97.4, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Ellen R Hathaway,02010075, 19.9, 88.4, 107, 81.3, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Elwyn G Campbell,02010020, 21.4, 100.0, 102, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Hayden/McFadden,02010078, 51.2, 82.3, 288, 71.5, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - James B Congdon,02010040, 25.2, 97.2, 108, 96.3, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Jireh Swift,02010130, 14.0, 100.0, 55, 70.9, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - John Avery Parker,02010115, 21.1, 95.2, 82, 80.5, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - John B Devalles,02010050, 22.4, 92.0, 138, 97.1, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - John Hannigan,02010070, 23.0, 97.7, 86, 97.7, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Keith Middle School,02010405, 67.6, 88.1, 248, 76.2, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - New Bedford High,02010505, 165.7, 90.9, 750, 91.9, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Normandin Middle School,02010410, 82.9, 97.6, 376, 87.2, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 19.8, 94.9, 82, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Roosevelt Middle School,02010415, 65.1, 92.3, 274, 84.3, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 50.3, 87.7, 294, 90.8, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Thomas R Rodman,02010125, 13.9, 96.5, 66, 93.9, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Trinity Day Academy,02010510, 9.9, 70.7, 63, 69.8, 6.4 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 15.5, 70.9, 123, 64.2, 7.1 to 1 +NA,NA,a-exp-i1,2016-17,New Bedford - William H Taylor,02010135, 16.9, 97.2, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 22.1, 69.2, 81, 18.5, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,New Salem-Wendell - Swift River,07280015, 11.9, 100.0, 23, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 26.8, 100.0, 101, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 52.4, 100.0, 257, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Newburyport High,02040505, 64.1, 100.0, 531, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Newburyport - Rupert A Nock Middle,02040305, 41.6, 100.0, 233, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Newton - A E Angier,02070005, 35.5, 100.0, 134, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Bigelow Middle,02070305, 50.2, 99.0, 230, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Bowen,02070015, 35.4, 100.0, 124, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Newton - C C Burr,02070020, 31.0, 96.8, 122, 84.4, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Cabot,02070025, 32.4, 96.9, 128, 96.9, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Charles E Brown Middle,02070310, 67.8, 99.7, 272, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Countryside,02070040, 40.4, 97.5, 140, 97.1, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Newton - F A Day Middle,02070315, 83.1, 97.6, 353, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Franklin,02070055, 40.2, 92.5, 139, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Horace Mann,02070075, 34.1, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Newton - John Ward,02070120, 22.5, 100.0, 94, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Lincoln-Eliot,02070070, 32.9, 100.0, 114, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Mason-Rice,02070080, 32.8, 100.0, 140, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Memorial Spaulding,02070105, 35.2, 100.0, 134, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Newton Early Childhood Center,02070108, 16.4, 100.0, 46, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Newton North High,02070505, 183.1, 98.6, 741, 97.4, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Newton South High,02070510, 150.0, 99.8, 881, 99.8, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Oak Hill Middle,02070320, 55.7, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Peirce,02070100, 22.5, 100.0, 96, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Underwood,02070115, 26.3, 100.0, 96, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Williams,02070125, 22.1, 100.0, 90, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Newton - Zervas,02070130, 26.8, 100.0, 108, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Norfolk - Freeman-Kennedy School,02080005, 36.3, 100.0, 155, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Norfolk - H Olive Day,02080015, 32.6, 100.0, 145, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 52.2, 98.5, 130, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Brayton,02090035, 29.2, 100.0, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Colegrove Park Elementary,02090008, 24.4, 100.0, 108, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Drury High,02090505, 39.8, 98.5, 150, 98.7, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,North Adams - Greylock,02090015, 25.6, 100.0, 112, 96.4, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Annie L Sargent School,02110018, 34.2, 100.0, 155, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Atkinson,02110001, 34.8, 97.1, 156, 98.7, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Franklin,02110010, 29.7, 100.0, 141, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Kittredge,02110015, 16.7, 100.0, 80, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - North Andover High,02110505, 87.3, 100.0, 862, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - North Andover Middle,02110305, 74.3, 100.0, 502, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,North Andover - Thomson,02110020, 22.0, 100.0, 99, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Amvet Boulevard,02120007, 24.3, 100.0, 135, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Community,02120030, 29.7, 100.0, 129, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Falls,02120010, 18.7, 100.0, 100, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 37.4, 100.0, 185, 97.3, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - North Attleboro High,02120505, 78.4, 100.0, 416, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 17, 100.0, 19.4 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - North Attleborough Middle,02120305, 73.7, 100.0, 385, 99.5, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,North Attleborough - Roosevelt Avenue,02120015, 17.2, 100.0, 88, 100.0, 18.2 to 1 +NA,NA,a-exp-i1,2016-17,North Brookfield - North Brookfield Elementary,02150015, 20.8, 100.0, 99, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,North Brookfield - North Brookfield High,02150505, 21.4, 100.0, 109, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Ashby Elementary,07350010, 20.6, 100.0, 70, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Hawthorne Brook,07350030, 43.0, 100.0, 194, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Nissitissit Middle School,07350310, 46.9, 100.0, 178, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - North Middlesex Regional,07350505, 56.9, 100.0, 312, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, .1, 100.0, 0, 0.0, 80.0 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Spaulding Memorial,07350005, 34.9, 98.9, 140, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 4.5, 100.0, 13, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,North Middlesex - Varnum Brook,07350035, 44.6, 100.0, 202, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - E Ethel Little School,02170003, 23.1, 100.0, 174, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - J Turner Hood,02170010, 25.5, 100.0, 210, 96.2, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - L D Batchelder,02170005, 30.3, 100.0, 180, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - North Reading High,02170505, 70.6, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,North Reading - North Reading Middle,02170305, 47.0, 100.0, 170, 97.1, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Bridge Street,02100005, 26.9, 100.0, 79, 100.0, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Jackson Street,02100020, 28.7, 100.0, 99, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - John F Kennedy Middle School,02100410, 62.7, 100.0, 299, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Leeds,02100025, 26.7, 100.0, 99, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - Northampton High,02100505, 56.8, 99.1, 277, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 21.8, 100.0, 70, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 50.1, 92.0, 133, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 107.4, 100.0, 521, 99.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Fannie E Proctor,02130015, 22.6, 100.0, 92, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Lincoln Street,02130003, 21.0, 100.0, 92, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Marguerite E Peaslee,02130014, 21.0, 100.0, 103, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Marion E Zeh,02130020, 21.2, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Northborough - Robert E. Melican Middle School,02130305, 55.8, 100.0, 273, 98.2, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - Northbridge Elementary,02140005, 28.0, 100.0, 132, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - Northbridge High,02140505, 48.6, 100.0, 264, 99.6, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - Northbridge Middle,02140305, 49.9, 100.0, 286, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 104, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 111.9, 97.9, 243, 99.6, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.7, 93.6, 130, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 128, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Norton - J C Solmonese,02180015, 33.2, 100.0, 148, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Norton - L G Nourse Elementary,02180010, 22.2, 100.0, 95, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Norton - Norton High,02180505, 47.1, 100.0, 231, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Norton - Norton Middle,02180305, 46.7, 100.0, 295, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - Grace Farrar Cole,02190005, 34.8, 100.0, 170, 97.1, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - Norwell High,02190505, 49.9, 100.0, 247, 99.6, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - Norwell Middle School,02190405, 44.0, 100.0, 264, 96.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Norwell - William G Vinal,02190020, 34.8, 100.0, 170, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Balch,02200005, 26.9, 100.0, 112, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Charles J Prescott,02200025, 20.6, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Cornelius M Callahan,02200010, 19.1, 100.0, 73, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 65.3, 100.0, 253, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - F A Cleveland,02200015, 27.0, 100.0, 121, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - George F. Willett,02200075, 23.5, 100.0, 93, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - John P Oldham,02200020, 20.5, 100.0, 84, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Norwood - Norwood High,02200505, 72.0, 100.0, 423, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 45.4, 99.6, 184, 99.5, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 54.1, 96.3, 104, 89.4, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Old Rochester - Old Rochester Regional High,07400505, 54.6, 100.0, 262, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 165, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Orange - Dexter Park,02230010, 26.2, 100.0, 109, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Orange - Fisher Hill,02230015, 20.7, 95.2, 116, 86.2, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Orleans - Orleans Elementary,02240005, 22.5, 100.0, 91, 87.9, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Alfred M Chaffee,02260010, 22.1, 100.0, 103, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Clara Barton,02260005, 23.4, 100.0, 127, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Oxford High,02260505, 43.1, 99.8, 191, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Oxford Middle,02260405, 30.1, 100.0, 116, 95.7, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 7.1, 100.0, 25, 100.0, 3.5 to 1 +NA,NA,a-exp-i1,2016-17,Palmer - Converse Middle,02270305, 19.0, 100.0, 95, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Palmer - Old Mill Pond,02270008, 55.1, 100.0, 401, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Palmer - Palmer High,02270505, 42.3, 99.5, 236, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 76.8, 97.4, 207, 99.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.5, 52.6, 108, 91.7, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Captain Samuel Brown,02290005, 33.4, 100.0, 151, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Center,02290015, 28.7, 100.0, 123, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - J Henry Higgins Middle,02290305, 94.0, 100.0, 606, 96.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - John E Burke,02290007, 20.2, 100.0, 93, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - John E. McCarthy,02290016, 24.5, 100.0, 111, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 127.1, 97.6, 600, 99.3, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - South Memorial,02290035, 27.4, 96.4, 126, 96.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - Thomas Carroll,02290010, 42.5, 100.0, 186, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - West Memorial,02290045, 20.0, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Peabody - William A Welch Sr,02290027, 24.6, 100.0, 102, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Pelham - Pelham Elementary,02300005, 11.7, 100.0, 57, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Bryantville Elementary,02310003, 34.6, 100.0, 166, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Hobomock Elementary,02310010, 31.6, 100.0, 111, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - North Pembroke Elementary,02310015, 38.5, 100.0, 175, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Pembroke Community Middle School,02310305, 33.6, 100.0, 205, 99.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Pembroke - Pembroke High School,02310505, 66.5, 97.0, 328, 99.7, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 15.1, 100.0, 52, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Dr John C Page School,07450015, 27.3, 100.0, 116, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Elmer S Bagnall,07450005, 40.5, 100.0, 174, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Helen R Donaghue School,07450010, 21.8, 100.0, 81, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Pentucket Regional Middle,07450405, 40.1, 100.0, 164, 99.4, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 58.6, 100.0, 342, 99.7, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Petersham - Petersham Center,02340005, 11.5, 91.3, 47, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 11.9, 50.4, 72, 33.3, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 14.2, 42.3, 59, 45.8, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 50.6, 71.7, 166, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 32.2, 59.9, 116, 100.0, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 15.1, 100.0, 61, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Northfield Elementary,07500008, 16.9, 100.0, 73, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 5.5, 100.0, 27, 100.0, 7.1 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 42.2, 100.0, 250, 99.2, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley - Warwick Community School,07500009, 5.7, 100.0, 23, 100.0, 10.0 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 60.7, 69.9, 188, 100.0, 7.8 to 1 +NA,NA,a-exp-i1,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 40.6, 74.7, 311, 88.7, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Allendale,02360010, 22.0, 95.4, 163, 96.9, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Crosby,02360065, 33.0, 93.9, 181, 97.2, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Egremont,02360035, 29.0, 100.0, 197, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - John T Reid Middle,02360305, 54.4, 100.0, 304, 97.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Morningside Community School,02360055, 33.0, 96.9, 209, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Pittsfield High,02360505, 84.7, 94.5, 379, 86.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 15.0, 100.0, 98, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Silvio O Conte Community,02360105, 30.0, 96.7, 169, 97.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Stearns,02360090, 15.6, 93.6, 104, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Taconic High,02360510, 75.0, 98.7, 385, 82.1, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 53.5, 100.0, 292, 88.7, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Pittsfield - Williams,02360100, 21.4, 100.0, 145, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Plainville - Anna Ware Jackson,02380010, 25.3, 98.9, 170, 88.2, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 18.8, 98.9, 120, 87.5, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Cold Spring,02390005, 21.7, 100.0, 121, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Federal Furnace School,02390011, 36.8, 100.0, 298, 93.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Hedge,02390010, 20.6, 97.1, 110, 89.1, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Indian Brook,02390012, 43.1, 99.1, 248, 96.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Manomet Elementary,02390015, 26.3, 96.2, 145, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 44.2, 100.0, 245, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 81.1, 100.0, 369, 95.1, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 31, 90.3, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth North High,02390505, 103.4, 100.0, 565, 93.3, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth South High,02390515, 108.1, 99.0, 419, 92.6, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - Plymouth South Middle,02390305, 67.0, 100.0, 346, 91.9, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - South Elementary,02390046, 43.5, 97.7, 274, 94.2, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Plymouth - West Elementary,02390047, 33.8, 100.0, 281, 82.6, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Plympton - Dennett Elementary,02400010, 17.4, 100.0, 84, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 109.3, 77.4, 367, 96.7, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Provincetown - Provincetown Schools,02420020, 18.6, 100.0, 81, 88.9, 6.9 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Hardwick Elementary,07530005, 12.2, 100.0, 67, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Hubbardston Center,07530010, 16.9, 100.0, 94, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - IB School of Quabbin,07530515, .8, 100.0, 9, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - New Braintree Grade,07530020, 5.6, 100.0, 29, 100.0, 19.3 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Oakham Center,07530025, 9.7, 100.0, 48, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Quabbin Regional High School,07530505, 46.5, 95.7, 366, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 24.6, 100.0, 207, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Quabbin - Ruggles Lane,07530030, 23.2, 100.0, 117, 95.7, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 30.1, 95.8, 130, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 16.6, 100.0, 92, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - Warren Elementary,07780005, 34.5, 84.1, 161, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 18.0, 94.5, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 12.0, 100.0, 32, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Atherton Hough,02430040, 22.5, 100.0, 146, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Atlantic Middle,02430305, 33.3, 100.0, 178, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 24.1, 100.0, 151, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Broad Meadows Middle,02430310, 28.3, 100.0, 159, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Central Middle,02430315, 42.5, 100.0, 235, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 22.5, 100.0, 141, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 44.4, 100.0, 232, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Francis W Parker,02430075, 25.2, 100.0, 144, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 37.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Merrymount,02430060, 23.0, 100.0, 148, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Montclair,02430065, 28.8, 100.0, 176, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - North Quincy High,02430510, 89.4, 97.8, 400, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Point Webster Middle,02430325, 29.3, 100.0, 169, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Quincy High,02430505, 115.6, 99.6, 534, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Reay E Sterling Middle,02430320, 29.9, 100.0, 152, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Snug Harbor Community School,02430090, 33.2, 100.0, 239, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Squantum,02430095, 25.4, 100.0, 202, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Quincy - Wollaston School,02430110, 24.6, 100.0, 143, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 58.5, 98.3, 456, 93.6, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Ralph C Mahar - The Gateway to College,07550525, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 25.1, 100.0, 78, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - J F Kennedy Elementary,02440018, 43.5, 100.0, 174, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Margaret L Donovan,02440015, 33.2, 100.0, 108, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Martin E Young Elementary,02440040, 28.6, 100.0, 88, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Randolph Community Middle,02440410, 57.7, 100.0, 248, 100.0, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Randolph - Randolph High,02440505, 57.4, 98.3, 263, 98.5, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Alice M Barrows,02460002, 22.5, 100.0, 113, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Arthur W Coolidge Middle,02460305, 38.0, 100.0, 145, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Birch Meadow,02460005, 31.5, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Reading - J Warren Killam,02460017, 27.5, 100.0, 135, 100.0, 15.4 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Joshua Eaton,02460010, 29.0, 100.0, 139, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Reading - RISE PreSchool,02460001, 7.8, 100.0, 40, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Reading Memorial High,02460505, 85.3, 100.0, 387, 99.7, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Walter S Parker Middle,02460310, 46.8, 100.0, 182, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Reading - Wood End Elementary School,02460020, 22.2, 100.0, 103, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Revere - A. C. Whelan Elementary School,02480003, 51.0, 100.0, 403, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 404, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 29.0, 96.6, 258, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Garfield Elementary School,02480056, 56.5, 100.0, 468, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Garfield Middle School,02480057, 43.5, 100.0, 223, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Paul Revere,02480050, 35.0, 100.0, 297, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Revere High,02480505, 124.1, 98.4, 651, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Rumney Marsh Academy,02480014, 47.5, 100.0, 183, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Seacoast School,02480520, 13.2, 100.0, 102, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 43.1, 100.0, 432, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Revere - Susan B. Anthony Middle School,02480305, 45.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Richmond - Richmond Consolidated,02490005, 18.8, 98.4, 93, 92.5, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 52.1, 65.5, 271, 99.6, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 18.4, 94.4, 112, 99.1, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Rochester - Rochester Memorial,02500005, 34.8, 100.0, 150, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - Jefferson Elementary School,02510060, 19.5, 100.0, 95, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - John W Rogers Middle,02510305, 48.7, 100.0, 273, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - Memorial Park,02510020, 16.3, 100.0, 92, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - R Stewart Esten,02510025, 17.4, 100.0, 99, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Rockland - Rockland Senior High,02510505, 51.3, 100.0, 223, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Rockport - Rockport Elementary,02520005, 29.7, 100.0, 114, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Rockport - Rockport High,02520510, 30.7, 100.0, 148, 98.0, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Rockport - Rockport Middle,02520305, 24.8, 100.0, 131, 96.9, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Rowe - Rowe Elementary,02530005, 7.0, 100.0, 31, 74.2, 8.4 to 1 +NA,NA,a-exp-i1,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 111.2, 46.0, 277, 87.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 65.8, 90.7, 416, 99.3, 24.0 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Bates,02580003, 25.0, 100.0, 126, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Carlton,02580015, 24.7, 100.0, 95, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Collins Middle,02580305, 53.4, 100.0, 211, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Horace Mann Laboratory,02580030, 26.2, 100.0, 111, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Nathaniel Bowditch,02580025, 48.6, 91.8, 213, 81.2, 9.1 to 1 +NA,NA,a-exp-i1,2016-17,Salem - New Liberty Innovation School,02580510, 4.6, 100.0, 11, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Salem Early Childhood,02580001, 8.0, 100.0, 31, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Salem High,02580505, 104.9, 95.4, 339, 97.1, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Salem Prep High School,02580515, 5.4, 100.0, 137, 94.2, 2.4 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Saltonstall School,02580050, 34.9, 97.1, 231, 98.3, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Salem - Witchcraft Heights,02580070, 38.0, 100.0, 174, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 43.1, 75.1, 147, 100.0, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Forestdale School,02610002, 55.7, 99.5, 238, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Oak Ridge,02610025, 63.4, 100.0, 381, 95.5, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Sandwich High,02610505, 61.3, 97.3, 250, 98.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Sandwich - Sandwich STEM Academy,02610305, 34.6, 99.0, 173, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Ballard School,02620001, 5.5, 100.0, 48, 100.0, 20.1 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Belmonte Saugus Middle,02620305, 57.1, 100.0, 276, 99.6, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Douglas Waybright,02620067, 15.8, 100.0, 81, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Lynnhurst,02620040, 18.6, 100.0, 95, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Oaklandvale,02620050, 15.2, 100.0, 84, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Saugus High,02620505, 53.7, 100.0, 262, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Saugus - Veterans Memorial,02620065, 41.1, 100.0, 266, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Savoy - Emma L Miller Elementary School,02630010, 4.7, 100.0, 23, 100.0, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Cushing Elementary,02640007, 32.2, 100.0, 138, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Gates Intermediate School,02640305, 47.8, 100.0, 191, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Hatherly Elementary,02640010, 29.1, 100.0, 119, 93.3, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Jenkins Elementary School,02640015, 36.7, 100.0, 166, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Scituate High School,02640505, 65.1, 99.4, 289, 97.2, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Scituate - Wampatuck Elementary,02640020, 34.0, 100.0, 155, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 41.7, 100.0, 165, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - George R Martin,02650007, 33.5, 100.0, 139, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - Mildred Aitken School,02650015, 29.0, 100.0, 116, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Seekonk - Seekonk High,02650505, 46.3, 99.6, 190, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 49.6, 99.5, 173, 94.8, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Sharon - Cottage Street,02660005,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - East Elementary,02660010,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - Heights Elementary,02660015,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - Sharon High,02660505,"","","","","" +NA,NA,a-exp-i1,2016-17,Sharon - Sharon Middle,02660305,"","","","","" +NA,NA,a-exp-i1,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.2, 100.0, 314, 99.4, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Sherborn - Pine Hill,02690010, 31.8, 99.8, 174, 98.3, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Beal School,02710005, 17.0, 94.1, 84, 100.0, 18.7 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Calvin Coolidge,02710015, 22.1, 100.0, 135, 100.0, 18.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Floral Street School,02710020, 35.2, 100.0, 236, 100.0, 20.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Oak Middle School,02710030, 62.6, 100.0, 313, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Parker Road Preschool,02710040, 9.3, 100.0, 24, 100.0, 25.0 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Sherwood Middle School,02710305, 66.7, 97.2, 408, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 113.1, 99.9, 599, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Spring Street,02710035, 19.1, 100.0, 121, 100.0, 19.5 to 1 +NA,NA,a-exp-i1,2016-17,Shrewsbury - Walter J Paton,02710025, 19.5, 94.9, 123, 100.0, 18.8 to 1 +NA,NA,a-exp-i1,2016-17,Shutesbury - Shutesbury Elementary,02720005, 15.7, 100.0, 45, 100.0, 7.7 to 1 +NA,NA,a-exp-i1,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 34.8, 100.0, 181, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Silver Lake - Silver Lake Regional High,07600505, 89.3, 98.9, 344, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 42.9, 100.0, 255, 97.6, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.1, 93.8, 261, 91.6, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - Chace Street,02730005, 26.0, 100.0, 131, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - North Elementary,02730008, 30.3, 100.0, 191, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - Somerset Middle School,02730305, 48.6, 100.0, 227, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Somerset - South,02730015, 18.2, 100.0, 94, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 83.5, 100.0, 419, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.4, 100.0, 217, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Arthur D Healey,02740075, 41.8, 100.0, 200, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Benjamin G Brown,02740015, 15.9, 100.0, 88, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Capuano Early Childhood Center,02740005, 26.9, 100.0, 133, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - E Somerville Community,02740111, 54.8, 100.0, 249, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Full Circle High School,02740510, 12.3, 100.0, 8, 100.0, 4.9 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - John F Kennedy,02740083, 39.0, 100.0, 198, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Next Wave Junior High,02740410, 6.4, 100.0, 3, 100.0, 2.5 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Somerville High,02740505, 123.5, 98.4, 487, 99.6, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - West Somerville Neighborhood,02740115, 24.9, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Somerville - Winter Hill Community,02740120, 40.5, 100.0, 160, 96.9, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 44.6, 100.0, 207, 98.1, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - Mosier,02780020, 25.3, 95.9, 141, 85.1, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - Plains Elementary,02780015, 19.0, 100.0, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i1,2016-17,South Hadley - South Hadley High,02780505, 45.5, 98.1, 213, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 75.0, 98.7, 208, 98.1, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 64.6, 90.5, 298, 95.6, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 61.4, 96.7, 144, 99.3, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Southampton - William E Norris,02750005, 35.5, 100.0, 155, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 21.2, 100.0, 97, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - Margaret A Neary,02760020, 24.6, 100.0, 109, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - Mary E Finn School,02760008, 25.9, 100.0, 124, 100.0, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Southborough - P Brent Trottier,02760305, 40.4, 100.0, 219, 99.1, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Charlton Street,02770005, 35.0, 97.1, 154, 98.1, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Eastford Road,02770010, 18.0, 100.0, 97, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Southbridge High School,02770515, 44.0, 95.5, 192, 80.2, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - Southbridge Middle School,02770315, 45.0, 97.8, 202, 93.6, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Southbridge - West Street,02770020, 33.5, 100.0, 168, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 116.0, 96.9, 379, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 36.3, 100.0, 174, 100.0, 8.0 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - New Marlborough Central,07650018, 6.8, 100.0, 69, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - South Egremont,07650030, 2.3, 100.0, 19, 100.0, 5.6 to 1 +NA,NA,a-exp-i1,2016-17,Southern Berkshire - Undermountain,07650035, 29.7, 100.0, 170, 98.2, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 109.9, 100.0, 326, 100.0, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 5.2, 100.0, 45, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 25.2, 100.0, 149, 100.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 57.3, 98.3, 328, 93.3, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 13.0, 100.0, 131, 100.0, 26.0 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 33.2, 100.0, 181, 98.9, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 16.9, 100.0, 86, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 31.4, 100.0, 221, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 168, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.4, 96.8, 171, 96.5, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Alice B Beal Elementary,02810175, 19.6, 100.0, 157, 98.7, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Arthur T Talmadge,02810165, 22.7, 95.7, 135, 77.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Balliet Middle School,02810360, 11.4, 91.3, 41, 85.4, 4.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Brightwood,02810025, 25.9, 96.0, 156, 93.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 23.3, 84.7, 125, 67.2, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 23.8, 71.7, 132, 47.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 20.5, 74.9, 165, 55.2, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Conservatory of the Arts,02810475, 28.3, 94.6, 167, 70.1, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Daniel B Brunton,02810035, 38.2, 97.4, 212, 99.5, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Early Childhood Education Center,02810001, 15.0, 86.7, 23, 91.3, 9.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Edward P. Boland School,02810010, 56.0, 98.2, 309, 88.7, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Elias Brookings,02810030, 30.5, 93.2, 162, 86.4, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Forest Park Middle,02810325, 55.0, 96.3, 336, 83.3, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Frank H Freedman,02810075, 20.1, 100.0, 140, 90.0, 15.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Frederick Harris,02810080, 51.1, 96.1, 275, 93.5, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0, 2, 0.0, 900.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0, 2, 0.0,###### to 1 +NA,NA,a-exp-i1,2016-17,Springfield - German Gerena Community School,02810195, 55.3, 98.2, 404, 89.6, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Glenwood,02810065, 23.1, 100.0, 146, 95.2, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Glickman Elementary,02810068, 29.1, 89.8, 191, 88.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - High School Of Commerce,02810510, 94.4, 86.2, 497, 79.9, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Hiram L Dorman,02810050, 25.4, 100.0, 145, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Homer Street,02810085, 33.2, 97.0, 190, 95.3, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Indian Orchard Elementary,02810100, 51.8, 88.5, 287, 91.6, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - John F Kennedy Middle,02810328, 39.0, 76.7, 87, 58.6, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - John J Duggan Middle,02810320, 57.5, 92.7, 505, 73.7, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Kensington International School,02810110, 28.5, 100.0, 168, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Liberty,02810115, 25.2, 92.2, 124, 91.1, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Liberty Preparatory Academy,02810560, 3.4, 100.0, 12, 83.3, 3.8 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Lincoln,02810120, 33.0, 94.0, 168, 92.3, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - M Marcus Kiley Middle,02810330, 55.4, 85.6, 428, 83.4, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Margaret C Ells,02810060, 19.2, 84.4, 71, 94.4, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 24.4, 100.0, 116, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 123, 91.1, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary M Walsh,02810155, 25.9, 96.1, 146, 92.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Mary O Pottenger,02810145, 33.2, 100.0, 179, 94.4, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Milton Bradley School,02810023, 43.1, 100.0, 263, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Rebecca M Johnson,02810055, 58.2, 89.8, 348, 82.8, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 138.3, 93.5, 749, 76.4, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - STEM Middle Academy,02810350, 18.4, 83.1, 96, 68.8, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Samuel Bowles,02810020, 29.1, 93.1, 168, 94.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - South End Middle School,02810355, 20.0, 92.8, 80, 82.5, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Central High,02810500, 145.8, 94.5, 736, 91.2, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield High School,02810570, 11.5, 91.1, 124, 73.4, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 86.4, 581, 72.8, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 11.1, 71.8, 121, 65.3, 4.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Public Day High School,02810550, 22.3, 68.3, 101, 64.4, 5.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Springfield Public Day Middle School,02810345, 14.4, 86.2, 82, 90.2, 3.9 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Sumner Avenue,02810160, 42.4, 97.5, 285, 87.4, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 97.7, 252, 93.7, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Thomas M Balliet,02810015, 22.2, 100.0, 128, 91.4, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Van Sickle Academy,02810480, 25.2, 63.8, 114, 43.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 25.2, 87.9, 233, 75.5, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Warner,02810180, 23.2, 91.8, 142, 88.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - Washington,02810185, 40.4, 95.1, 195, 94.4, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - White Street,02810190, 27.6, 100.0, 168, 89.9, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield - William N. DeBerry,02810045, 26.3, 88.5, 128, 79.7, 11.3 to 1 +NA,NA,a-exp-i1,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 13.0, 61.5, 31, 51.6, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Colonial Park,02840005, 19.8, 100.0, 82, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Robin Hood,02840025, 24.2, 100.0, 102, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - South,02840030, 22.1, 100.0, 96, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Stoneham Central Middle School,02840405, 63.4, 100.0, 308, 99.7, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoneham - Stoneham High,02840505, 56.2, 100.0, 289, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 13, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Helen Hansen Elementary,02850010, 22.3, 100.0, 123, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Joseph H Gibbons,02850025, 27.6, 100.0, 142, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 27.4, 100.0, 153, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - O'Donnell Middle School,02850405, 68.8, 100.0, 341, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - South Elementary,02850015, 20.8, 100.0, 93, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - Stoughton High,02850505, 92.7, 100.0, 459, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Stoughton - West Elementary,02850020, 33.1, 100.0, 123, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Sturbridge - Burgess Elementary,02870005, 67.1, 100.0, 278, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 89.2, 42.6, 411, 100.0, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 77.5, 100.0, 303, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - General John Nixon Elementary,02880025, 26.1, 100.0, 140, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Israel Loring School,02880015, 33.9, 100.0, 182, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 148, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Sudbury - Peter Noyes,02880030, 40.3, 100.0, 196, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Sunderland - Sunderland Elementary,02890005, 21.3, 99.1, 126, 99.2, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton Early Learning,02900003, 20.0, 100.0, 58, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton Elementary,02900005, 21.7, 100.0, 82, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton High School,02900510, 32.7, 100.0, 153, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Sutton - Sutton Middle School,02900305, 23.8, 95.4, 121, 98.3, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Clarke,02910005, 18.9, 100.0, 84, 100.0, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Hadley,02910010, 24.7, 100.0, 124, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Stanley,02910020, 23.4, 100.0, 90, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Swampscott High,02910505, 62.0, 98.4, 275, 96.7, 10.9 to 1 +NA,NA,a-exp-i1,2016-17,Swampscott - Swampscott Middle,02910305, 64.3, 98.4, 402, 98.8, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Elizabeth S Brown,02920006, 21.2, 100.0, 203, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Gardner,02920015, 16.9, 100.0, 88, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Joseph Case High,02920505, 48.8, 100.0, 192, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Joseph Case Jr High,02920305, 40.1, 100.0, 211, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Joseph G Luther,02920020, 14.6, 100.0, 195, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 16.2, 100.0, 109, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 37.0, 100.0, 424, 97.9, 30.2 to 1 +NA,NA,a-exp-i1,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 45.1, 100.0, 199, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 77.4, 100.0, 663, 100.0, 9.8 to 1 +NA,NA,a-exp-i1,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 11.8, 100.0, 1, 100.0, 42.2 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Benjamin Friedman Middle,02930315, 48.5, 100.0, 278, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - East Taunton Elementary,02930010, 43.2, 100.0, 224, 100.0, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Edmund Hatch Bennett,02930007, 23.1, 100.0, 102, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 11.0, 100.0, 33, 100.0, 29.9 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 218, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - H H Galligan,02930057, 25.4, 100.0, 88, 100.0, 9.7 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Hopewell,02930035, 24.6, 100.0, 102, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - John F Parker Middle,02930305, 34.6, 100.0, 125, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Joseph C Chamberlain,02930008, 35.0, 100.0, 201, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Joseph H Martin,02930042, 40.1, 100.0, 248, 100.0, 18.0 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Mulcahey Elementary School,02930015, 32.9, 100.0, 149, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Taunton Alternative High School,02930525, 6.2, 100.0, 124, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Taunton - Taunton High,02930505, 80.1, 99.0, 715, 99.2, 31.2 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - Heath-Brook,02950010, 22.5, 100.0, 110, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - John F. Ryan,02950023, 46.8, 100.0, 194, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - John W. Wynn Middle,02950305, 49.4, 98.7, 194, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - L F Dewing,02950001, 35.3, 100.0, 181, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - Louise Davy Trahan,02950025, 18.2, 100.0, 96, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - North Street,02950020, 19.1, 100.0, 104, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 67.2, 100.0, 270, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Tisbury - Tisbury Elementary,02960005, 35.5, 100.0, 150, 100.0, 9.0 to 1 +NA,NA,a-exp-i1,2016-17,Topsfield - Proctor Elementary,02980005, 21.3, 100.0, 104, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Topsfield - Steward Elementary,02980010, 30.4, 100.0, 161, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 85.9, 96.5, 237, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Newbury Elementary,07730020, 35.2, 100.0, 136, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Pine Grove,07730025, 34.3, 100.0, 139, 97.1, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Salisbury Elementary,07730015, 42.6, 100.0, 165, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Triton Regional High School,07730505, 61.3, 96.7, 281, 99.6, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Triton - Triton Regional Middle School,07730405, 31.1, 100.0, 169, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Truro - Truro Central,03000005, 15.9, 100.0, 73, 100.0, 7.3 to 1 +NA,NA,a-exp-i1,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 56.2, 100.0, 318, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Tyngsborough - Tyngsborough High School,03010505, 37.6, 100.0, 337, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 34.0, 100.0, 193, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 38.6, 79.2, 100, 79.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 62.8, 85.7, 158, 81.6, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 5.6, 100.0, 16, 75.0, 7.8 to 1 +NA,NA,a-exp-i1,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 39.1, 99.5, 152, 98.7, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 68.9, 97.1, 121, 97.5, 10.3 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Gateway to College,03040515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i1,2016-17,Uxbridge - McCloskey Middle School,03040015, 31.8, 100.0, 133, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Taft Early Learning Center,03040005, 33.9, 100.0, 134, 98.5, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Uxbridge High,03040505, 37.9, 100.0, 188, 97.3, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Uxbridge - Whitin Elementary School,03040020, 27.3, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 27.5, 54.5, 72, 65.3, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Central Tree Middle,07750310, 27.9, 100.0, 176, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Chocksett Middle School,07750315, 28.4, 100.0, 170, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Davis Hill Elementary,07750018, 27.9, 100.0, 132, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Dawson,07750020, 30.9, 100.0, 168, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 40, 100.0, 18.8 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Glenwood Elementary School,07750060, 26.9, 100.0, 113, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Houghton Elementary,07750027, 27.5, 100.0, 122, 100.0, 14.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Leroy E.Mayo,07750032, 28.9, 100.0, 148, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Mountview Middle,07750305, 45.3, 100.0, 274, 100.0, 17.9 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 92, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Paxton Center,07750040, 32.6, 100.0, 186, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Thomas Prince,07750045, 23.0, 100.0, 139, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Wachusett - Wachusett Regional High,07750505, 145.1, 100.0, 678, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Dolbeare,03050005, 32.8, 100.0, 147, 96.6, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 45, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Galvin Middle School,03050310, 83.1, 100.0, 322, 98.8, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Greenwood,03050020, 15.0, 100.0, 70, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Wakefield Memorial High,03050505, 79.2, 100.0, 335, 99.7, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Walton,03050040, 12.0, 100.0, 63, 92.1, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Wakefield - Woodville School,03050015, 34.4, 100.0, 143, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Wales - Wales Elementary,03060005, 10.4, 100.0, 46, 100.0, 15.8 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Bird Middle,03070305, 37.1, 100.0, 138, 100.0, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Boyden,03070010, 28.9, 100.0, 136, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 19, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 34.0, 100.0, 150, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Elm Street School,03070005, 31.2, 100.0, 142, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Fisher,03070015, 36.4, 100.0, 153, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Old Post Road,03070018, 32.5, 100.0, 142, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Walpole - Walpole High,03070505, 78.3, 100.0, 345, 100.0, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 36.3, 100.0, 185, 100.0, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 36.7, 100.0, 200, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 38.9, 100.0, 195, 100.0, 11.5 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - John F Kennedy Middle,03080404, 56.7, 100.0, 297, 100.0, 8.9 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - John W. McDevitt Middle School,03080415, 56.2, 100.0, 240, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Northeast Elementary School,03080040, 44.0, 100.0, 248, 98.4, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 32.8, 100.0, 188, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 2.4, 100.0, 14, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - Waltham Sr High,03080505, 127.8, 100.0, 514, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Waltham - William F. Stanley Elementary School,03080005, 46.3, 100.0, 223, 100.0, 9.9 to 1 +NA,NA,a-exp-i1,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 28.4, 100.0, 132, 97.7, 14.6 to 1 +NA,NA,a-exp-i1,2016-17,Ware - Ware Junior/Senior High School,03090505, 37.8, 97.4, 164, 91.5, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Ware - Ware Middle School,03090305, 23.4, 100.0, 103, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - John William Decas,03100003, 45.6, 100.0, 210, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Minot Forest,03100017, 33.6, 100.0, 150, 98.7, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 2.3, 78.5, 35, 60.0, 26.2 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Wareham Middle,03100305, 52.7, 100.0, 255, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Wareham - Wareham Senior High,03100505, 54.5, 99.1, 302, 97.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Cunniff,03140015, 27.6, 100.0, 109, 100.0, 10.7 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Hosmer,03140020, 51.9, 100.0, 220, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - James Russell Lowell,03140025, 36.8, 100.0, 145, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Watertown High,03140505, 64.9, 98.5, 250, 100.0, 10.2 to 1 +NA,NA,a-exp-i1,2016-17,Watertown - Watertown Middle,03140305, 50.9, 100.0, 245, 100.0, 11.2 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Claypit Hill School,03150005, 38.6, 100.0, 178, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Happy Hollow School,03150015, 27.9, 100.0, 133, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Loker School,03150020, 18.0, 100.0, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Wayland High School,03150505, 69.4, 96.6, 344, 98.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Wayland - Wayland Middle School,03150305, 53.0, 100.0, 327, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Webster - Bartlett High School,03160505, 39.8, 97.5, 165, 97.6, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,Webster - Park Avenue Elementary,03160015, 46.5, 100.0, 268, 100.0, 18.2 to 1 +NA,NA,a-exp-i1,2016-17,Webster - Webster Middle School,03160315, 46.0, 97.8, 151, 98.7, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Ernest F Upham,03170050, 16.6, 100.0, 74, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Hunnewell,03170025, 16.2, 100.0, 90, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - John D Hardy,03170020, 23.1, 100.0, 118, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Joseph E Fiske,03170015, 32.1, 100.0, 157, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Katharine Lee Bates,03170005, 25.1, 100.0, 131, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Schofield,03170045, 23.4, 100.0, 135, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Sprague Elementary School,03170048, 24.2, 100.0, 138, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Wellesley Middle,03170305, 97.6, 100.0, 540, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellesley - Wellesley Sr High,03170505, 118.9, 99.8, 546, 99.6, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Wellfleet - Wellfleet Elementary,03180005, 17.0, 100.0, 52, 100.0, 6.6 to 1 +NA,NA,a-exp-i1,2016-17,West Boylston - Major Edwards Elementary,03220005, 33.4, 100.0, 148, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 32.1, 100.0, 232, 100.0, 16.0 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - Howard School,03230305, 20.2, 100.0, 115, 89.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - Rose L Macdonald,03230003, 15.7, 100.0, 124, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - Spring Street School,03230005, 7.2, 100.0, 33, 75.8, 19.5 to 1 +NA,NA,a-exp-i1,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 45.5, 100.0, 254, 96.1, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - 21st Century Skills Academy,03320515, 3.9, 100.0, 18, 100.0, 3.6 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 18, 100.0, 20.0 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - John Ashley,03320005, 16.4, 100.0, 84, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - John R Fausey,03320010, 34.6, 100.0, 177, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Memorial,03320025, 17.3, 100.0, 80, 100.0, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Mittineague,03320030, 15.2, 100.0, 55, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Philip G Coburn,03320007, 46.5, 100.0, 183, 100.0, 11.1 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - Tatham,03320040, 16.3, 100.0, 74, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - West Springfield High,03320505, 92.9, 100.0, 548, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,West Springfield - West Springfield Middle,03320305, 71.6, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Annie E Fales,03210010, 24.9, 100.0, 90, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 36.0, 100.0, 113, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - J Harding Armstrong,03210005, 30.3, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Mill Pond School,03210045, 58.2, 98.3, 235, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 54.6, 100.0, 285, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Westborough - Westborough High,03210505, 79.9, 100.0, 464, 100.0, 13.2 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 70, 100.0, 14.5 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 8.0, 100.0, 22, 100.0, 21.9 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Franklin Ave,03250015, 17.0, 100.0, 84, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Highland,03250025, 32.3, 100.0, 153, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Munger Hill,03250033, 28.1, 100.0, 138, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - North Middle School,03250305, 52.0, 100.0, 231, 74.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Paper Mill,03250036, 28.5, 100.0, 147, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Russell Elementary School,03250055, 14.0, 100.0, 70, 100.0, 13.1 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - South Middle School,03250310, 49.5, 100.0, 174, 84.5, 11.9 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Southampton Road,03250040, 30.4, 100.0, 164, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Westfield High,03250505, 90.9, 100.0, 400, 92.8, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westfield - Westfield Technical Academy,03250605, 56.6, 96.5, 137, 71.5, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Abbot Elementary,03260004, 25.4, 100.0, 124, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Blanchard Middle,03260310, 49.1, 100.0, 235, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Col John Robinson,03260025, 17.3, 100.0, 76, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Day Elementary,03260007, 25.9, 100.0, 124, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 25.0, 100.0, 125, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Millennium Elementary,03260013, 6.5, 100.0, 16, 100.0, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Nabnasset,03260015, 21.9, 100.0, 127, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Rita E. Miller Elementary School,03260055, 22.7, 100.0, 100, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Stony Brook School,03260330, 51.2, 100.0, 250, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Westford - Westford Academy,03260505, 118.9, 100.0, 560, 99.8, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Westhampton - Westhampton Elementary School,03270005, 12.4, 91.9, 43, 74.4, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Country,03300010, 23.7, 100.0, 122, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Field Elementary School,03300012, 24.8, 100.0, 129, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Weston High,03300505, 69.9, 99.6, 293, 97.3, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Weston Middle,03300305, 48.6, 99.5, 247, 97.2, 10.6 to 1 +NA,NA,a-exp-i1,2016-17,Weston - Woodland,03300015, 22.3, 97.4, 127, 85.8, 13.6 to 1 +NA,NA,a-exp-i1,2016-17,Westport - Alice A Macomber,03310015, 24.4, 100.0, 104, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Westport - Westport Elementary,03310030, 35.8, 98.0, 188, 98.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Westport - Westport Junior/Senior High School,03310515, 34.9, 100.0, 290, 100.0, 16.5 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Deerfield School,03350010, 15.9, 100.0, 78, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Downey,03350012, 19.9, 100.0, 81, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - E W Thurston Middle,03350305, 59.0, 100.0, 280, 100.0, 13.5 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Martha Jones,03350017, 19.1, 100.0, 86, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Paul Hanlon,03350015, 14.3, 100.0, 64, 100.0, 15.5 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Westwood High,03350505, 78.5, 98.8, 403, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Westwood - William E Sheehan,03350025, 25.1, 100.0, 112, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Abigail Adams Middle School,03360310, 67.7, 100.0, 383, 96.9, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Academy Avenue,03360005, 18.7, 100.0, 96, 100.0, 17.0 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Frederick C Murphy,03360050, 13.9, 100.0, 75, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 11.9, 100.0, 49, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Lawrence W Pingree,03360065, 13.7, 100.0, 67, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 72.2, 100.0, 436, 95.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Ralph Talbot,03360085, 16.0, 100.0, 83, 100.0, 17.7 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Thomas V Nash,03360060, 10.3, 100.0, 51, 100.0, 22.5 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 21.2, 100.0, 106, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Wessagusset,03360110, 17.2, 100.0, 96, 100.0, 17.1 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - Weymouth High School,03360505, 139.5, 100.0, 661, 96.1, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Weymouth - William Seach,03360080, 20.1, 100.0, 86, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Whately - Whately Elementary,03370005, 11.3, 99.1, 75, 98.7, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 29.3, 100.0, 119, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Indian Head,07800035, 25.1, 100.0, 92, 100.0, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - John H Duval,07800030, 27.9, 100.0, 134, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Louise A Conley,07800010, 33.5, 100.0, 152, 100.0, 16.7 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 27.1, 100.0, 103, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.8, 98.6, 298, 97.3, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Whitman-Hanson - Whitman Middle,07800310, 38.2, 100.0, 151, 100.0, 15.7 to 1 +NA,NA,a-exp-i1,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.2, 97.4, 461, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 15.7, 100.0, 68, 79.4, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Williamstown - Williamstown Elementary,03410010, 38.2, 97.4, 175, 97.1, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Boutwell,03420005, 9.7, 100.0, 58, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - North Intermediate,03420060, 20.2, 100.0, 89, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Shawsheen Elementary,03420025, 31.0, 100.0, 125, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - West Intermediate,03420080, 21.1, 100.0, 91, 100.0, 12.1 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Wildwood,03420015, 14.0, 100.0, 68, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Wilmington High,03420505, 72.7, 100.0, 346, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Wilmington Middle School,03420330, 72.2, 97.2, 282, 100.0, 12.0 to 1 +NA,NA,a-exp-i1,2016-17,Wilmington - Woburn Street,03420020, 33.0, 100.0, 139, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Memorial,03430040, 20.0, 100.0, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Murdock Academy for Success,03430405, .7, 100.0, 4, 100.0, 40.1 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Murdock High School,03430515, 27.5, 100.0, 116, 99.1, 10.5 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Murdock Middle School,03430315, 25.6, 100.0, 108, 100.0, 11.6 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Toy Town Elementary,03430050, 21.0, 100.0, 102, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 7, 100.0, 27.7 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Ambrose Elementary,03440045, 37.3, 97.3, 236, 100.0, 11.8 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Lincoln Elementary,03440005, 31.6, 100.0, 225, 100.0, 13.0 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Lynch Elementary,03440020, 44.3, 100.0, 293, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - McCall Middle,03440305, 82.7, 98.1, 335, 97.9, 13.7 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Muraco Elementary,03440040, 32.4, 100.0, 210, 100.0, 12.5 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 223, 100.0, 12.6 to 1 +NA,NA,a-exp-i1,2016-17,Winchester - Winchester High School,03440505, 90.2, 100.0, 472, 98.5, 14.1 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 30.6, 100.0, 133, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 40.4, 100.0, 161, 100.0, 11.7 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - Winthrop High School,03460505, 45.3, 100.0, 161, 98.1, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Winthrop - Winthrop Middle School,03460305, 34.8, 100.0, 274, 99.6, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Clyde Reeves,03470040, 30.0, 100.0, 185, 97.3, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 54.0, 100.0, 302, 100.0, 9.2 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Daniel P Hurld,03470020, 15.0, 100.0, 84, 100.0, 13.9 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Goodyear Elementary School,03470005, 25.1, 100.0, 126, 100.0, 12.8 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - John F Kennedy Middle School,03470405, 50.2, 100.0, 257, 98.1, 10.1 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Linscott-Rumford,03470025, 13.3, 100.0, 84, 100.0, 16.8 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Malcolm White,03470055, 23.4, 100.0, 119, 100.0, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Mary D Altavesta,03470065, 21.6, 100.0, 87, 100.0, 11.4 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Shamrock,03470043, 30.0, 100.0, 152, 100.0, 11.0 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Woburn High,03470505, 99.2, 100.0, 446, 100.0, 13.4 to 1 +NA,NA,a-exp-i1,2016-17,Woburn - Wyman,03470060, 13.6, 100.0, 77, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Belmont Street Community,03480020, 34.7, 100.0, 146, 100.0, 16.1 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Burncoat Middle School,03480405, 45.4, 97.8, 245, 100.0, 12.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Burncoat Senior High,03480503, 70.9, 99.3, 412, 98.1, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Burncoat Street,03480035, 20.3, 100.0, 108, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Canterbury,03480045, 26.2, 96.2, 123, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Chandler Elementary Community,03480050, 31.5, 100.0, 130, 100.0, 16.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Chandler Magnet,03480052, 44.5, 100.0, 228, 100.0, 10.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - City View,03480053, 34.6, 100.0, 165, 100.0, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Claremont Academy,03480350, 38.4, 99.2, 211, 99.1, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Clark St Community,03480055, 21.4, 100.0, 91, 100.0, 9.5 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Columbus Park,03480060, 28.7, 100.0, 162, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Doherty Memorial High,03480512, 90.7, 99.3, 496, 100.0, 17.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Elm Park Community,03480095, 33.5, 100.0, 159, 100.0, 14.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Flagg Street,03480090, 20.0, 100.0, 97, 100.0, 20.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Forest Grove Middle,03480415, 65.5, 100.0, 330, 100.0, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Francis J McGrath Elementary,03480177, 18.4, 100.0, 81, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Gates Lane,03480110, 43.3, 92.8, 223, 83.9, 13.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Goddard School/Science Technical,03480100, 34.3, 100.0, 156, 100.0, 15.1 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Grafton Street,03480115, 25.3, 98.7, 114, 94.7, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Head Start,03480002, 43.4, 45.2, 192, 46.9, 12.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Heard Street,03480136, 15.4, 100.0, 72, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 27.8, 100.0, 114, 100.0, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Lake View,03480145, 17.7, 100.0, 72, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Lincoln Street,03480160, 19.0, 100.0, 84, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - May Street,03480175, 19.4, 100.0, 142, 100.0, 17.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Midland Street,03480185, 16.1, 100.0, 68, 100.0, 15.0 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Nelson Place,03480200, 32.5, 100.0, 192, 100.0, 14.0 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Norrback Avenue,03480202, 38.5, 100.0, 229, 100.0, 14.7 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - North High,03480515, 90.5, 98.2, 501, 99.4, 14.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Quinsigamond,03480210, 44.1, 100.0, 216, 100.0, 18.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Rice Square,03480215, 26.9, 100.0, 115, 100.0, 15.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Roosevelt,03480220, 43.1, 97.7, 240, 97.5, 15.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - South High Community,03480520, 89.6, 95.3, 465, 96.3, 15.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Sullivan Middle,03480423, 70.1, 100.0, 330, 100.0, 12.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Tatnuck,03480230, 23.2, 100.0, 122, 100.0, 16.6 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Thorndyke Road,03480235, 21.4, 100.0, 84, 100.0, 17.5 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Union Hill School,03480240, 32.1, 100.0, 217, 100.0, 16.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - University Pk Campus School,03480285, 20.8, 100.0, 104, 100.0, 12.2 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Vernon Hill School,03480280, 31.5, 100.0, 162, 100.0, 17.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Wawecus Road School,03480026, 11.6, 100.0, 66, 100.0, 12.7 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - West Tatnuck,03480260, 19.7, 100.0, 126, 100.0, 17.3 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Woodland Academy,03480030, 37.1, 100.0, 151, 100.0, 16.9 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Worcester Arts Magnet School,03480225, 24.7, 98.7, 101, 100.0, 16.4 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Worcester East Middle,03480420, 55.0, 98.2, 307, 100.0, 14.8 to 1 +NA,NA,a-exp-i1,2016-17,Worcester - Worcester Technical High,03480605, 129.2, 98.5, 252, 100.0, 10.8 to 1 +NA,NA,a-exp-i1,2016-17,Worthington - R. H. Conwell,03490010, 6.4, 96.9, 47, 70.2, 9.4 to 1 +NA,NA,a-exp-i1,2016-17,Wrentham - Charles E Roderick,03500010, 33.1, 100.0, 115, 100.0, 13.3 to 1 +NA,NA,a-exp-i1,2016-17,Wrentham - Delaney,03500003, 44.1, 100.0, 151, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 106.6, 95.3, 590, 99.2, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Abington High,00010505, 39.3, 100.0, 192, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Beaver Brook Elementary School,00010003, 37.7, 100.0, 239, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Center Elementary School,00010002, 10.3, 100.0, 72, 100.0, 19.7 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Frolio Middle School,00010405, 25.1, 100.0, 131, 92.4, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 98, 100.0, 19.2 to 1 +NA,NA,a-exp-i3,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 44.3, 78.2, 115, 90.4, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 125.9, 100.0, 535, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 27.5, 100.0, 116, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 28.0, 100.0, 122, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 26, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Luther Conant School,06000030, 28.1, 100.0, 122, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 29.5, 100.0, 128, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 140, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.5, 100.0, 110, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.8, 100.0, 303, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Acushnet - Acushnet Elementary School,00030025, 38.6, 100.0, 171, 97.1, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Acushnet - Albert F Ford Middle School,00030305, 32.4, 100.0, 225, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 15.1, 100.0, 116, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 46.1, 100.0, 312, 97.1, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 23.7, 100.0, 153, 100.0, 19.0 to 1 +NA,NA,a-exp-i3,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 78.4, 88.9, 371, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Agawam Early Childhood Center,00050003, 10.0, 100.0, 24, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Agawam High,00050505, 95.7, 100.0, 415, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Agawam Junior High,00050405, 59.7, 100.0, 373, 100.0, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Benjamin J Phelps,00050020, 28.5, 100.0, 188, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Clifford M Granger,00050010, 21.6, 100.0, 117, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - James Clark School,00050030, 27.4, 100.0, 178, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Roberta G. Doering School,00050303, 46.5, 100.0, 325, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Agawam - Robinson Park,00050025, 31.0, 100.0, 193, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 33.2, 60.7, 82, 51.2, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury Elementary,00070005, 29.5, 100.0, 140, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury High,00070505, 43.9, 99.4, 279, 95.7, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury Innovation High School,00070515, 6.0, 100.0, 24, 41.7, 5.2 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Amesbury Middle,00070013, 56.6, 100.0, 249, 93.6, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 33.3, 100.0, 159, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Amherst - Crocker Farm Elementary,00080009, 42.6, 100.0, 160, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Amherst - Fort River Elementary,00080020, 37.8, 100.0, 128, 96.1, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Amherst - Wildwood Elementary,00080050, 43.0, 97.7, 163, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 71.7, 98.6, 485, 97.9, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 44.4, 97.3, 168, 86.9, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Andover High,00090505, 117.6, 100.0, 844, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Andover West Middle,00090310, 45.9, 100.0, 211, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Bancroft Elementary,00090003, 46.5, 100.0, 164, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Doherty Middle,00090305, 49.0, 100.0, 216, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Henry C Sanborn Elementary,00090010, 27.3, 100.0, 107, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Andover - High Plain Elementary,00090004, 42.1, 100.0, 133, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Shawsheen School,00090005, 6.0, 100.0, 29, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Andover - South Elementary,00090020, 37.1, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Andover - West Elementary,00090025, 47.6, 100.0, 166, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Andover - Wood Hill Middle School,00090350, 37.9, 100.0, 163, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 26.0, 73.1, 72, 86.1, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Arlington High,00100505, 100.4, 99.0, 495, 98.6, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Brackett,00100010, 30.5, 100.0, 162, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Cyrus E Dallin,00100025, 31.9, 100.0, 162, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Hardy,00100030, 29.8, 100.0, 126, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - John A Bishop,00100005, 24.6, 99.2, 108, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - M Norcross Stratton,00100055, 30.0, 100.0, 150, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 30, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Ottoson Middle,00100410, 94.5, 98.9, 512, 97.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Peirce,00100045, 18.6, 100.0, 72, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Arlington - Thompson,00100050, 31.9, 100.0, 126, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 35.5, 100.0, 193, 94.8, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 57, 93.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 45.2, 100.0, 251, 99.6, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 36.9, 100.0, 317, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 21.6, 100.0, 121, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - Ashland High,00140505, 52.0, 100.0, 260, 96.5, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - Ashland Middle,00140405, 46.3, 100.0, 242, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - David Mindess,00140015, 39.6, 100.0, 178, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - Henry E Warren Elementary,00140010, 41.5, 100.0, 229, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 30, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 107.5, 99.1, 344, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 36.1, 100.0, 189, 99.5, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Athol High,06150505, 28.9, 100.0, 158, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.2, 100.0, 167, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Athol-Royalston - Royalston Community School,06150050, 10.9, 100.0, 68, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 82.2, 83.9, 359, 98.9, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 31.1, 100.0, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Attleboro Community Academy,00160515, 2.8, 100.0, 37, 83.8, 22.7 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Attleboro High,00160505, 103.7, 100.0, 667, 99.9, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 31.5, 100.0, 208, 99.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Early Learning Center,00160008, 8.1, 100.0, 18, 100.0, 23.1 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 25.1, 100.0, 114, 100.0, 18.6 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 26.8, 100.0, 113, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 31.3, 100.0, 164, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 38.4, 100.0, 170, 97.6, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 27.3, 100.0, 118, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Attleboro - Wamsutta Middle School,00160320, 33.1, 100.0, 150, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Auburn Middle,00170305, 43.8, 100.0, 200, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Auburn Senior High,00170505, 62.7, 100.0, 534, 99.8, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Bryn Mawr,00170010, 18.2, 100.0, 84, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Pakachoag School,00170025, 16.6, 100.0, 84, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 178, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Avon - Avon Middle High School,00180510, 34.8, 100.0, 176, 99.4, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Avon - Ralph D Butler,00180010, 31.0, 100.0, 125, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 37.1, 94.6, 171, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 34.3, 100.0, 124, 96.8, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.6, 100.0, 138, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.5, 100.0, 122, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Barnstable High,00200505, 140.7, 99.6, 536, 99.3, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Barnstable Intermediate School,00200315, 61.2, 100.0, 236, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Barnstable United Elementary School,00200050, 60.2, 99.6, 288, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Centerville Elementary,00200010, 22.5, 99.2, 83, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 17, 100.0, 21.0 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 138, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - West Barnstable Elementary,00200005, 18.7, 100.0, 90, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable - West Villages Elementary School,00200045, 30.4, 96.7, 122, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 22.0, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 36.2, 70.0, 211, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - Bedford High,00230505, 78.4, 97.3, 434, 99.8, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - John Glenn Middle,00230305, 54.7, 100.0, 250, 98.8, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - Lt Elezer Davis,00230010, 45.0, 100.0, 181, 98.9, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Bedford - Lt Job Lane School,00230012, 44.0, 100.0, 213, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Belchertown High,00240505, 48.4, 99.2, 275, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Chestnut Hill Community School,00240006, 39.2, 100.0, 249, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Cold Spring,00240005, 12.7, 100.0, 66, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Jabish Middle School,00240025, 32.7, 96.9, 168, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Belchertown - Swift River Elementary,00240018, 36.2, 100.0, 198, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 5.0, 100.0, 20, 100.0, 19.2 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Bellingham High School,00250505, 51.5, 100.0, 303, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Bellingham Memorial School,00250315, 47.6, 100.0, 254, 98.4, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Keough Memorial Academy,00250510, 7.0, 100.0, 27, 100.0, 4.8 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - South Elementary,00250020, 25.7, 100.0, 121, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Bellingham - Stall Brook,00250025, 27.6, 100.0, 128, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Belmont High,00260505, 74.9, 98.7, 348, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Daniel Butler,00260015, 24.1, 100.0, 114, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Mary Lee Burbank,00260010, 21.1, 100.0, 108, 100.0, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Roger E Wellington,00260035, 37.5, 100.0, 176, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Winn Brook,00260005, 27.1, 100.0, 122, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 83.9, 100.0, 442, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 95.0, 109, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 28.2, 79.8, 159, 59.7, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 32.3, 100.0, 117, 100.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Berkley - Berkley Community School,00270010, 37.0, 100.0, 176, 99.4, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Berkley - Berkley Middle School,00270305, 27.0, 100.0, 119, 95.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 32.9, 52.7, 155, 92.3, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 45.7, 96.7, 234, 98.3, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 33.8, 100.0, 178, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 34.5, 100.0, 164, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Berlin - Berlin Memorial,00280005, 16.3, 100.0, 104, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 45.7, 98.7, 255, 99.2, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Ayers/Ryal Side School,00300055, 36.6, 99.5, 125, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Beverly High,00300505, 91.5, 95.9, 388, 98.5, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Briscoe Middle,00300305, 71.8, 100.0, 279, 99.6, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Centerville Elementary,00300010, 25.0, 99.2, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Cove Elementary,00300015, 29.3, 99.3, 107, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - Hannah Elementary,00300033, 27.7, 99.3, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - McKeown School,00300002, 8.0, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Beverly - North Beverly Elementary,00300040, 27.9, 99.3, 99, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Billerica Memorial High School,00310505, 99.3, 100.0, 416, 94.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Eugene C Vining,00310030, 16.1, 100.0, 88, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Frederick J Dutile,00310007, 23.7, 100.0, 99, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Hajjar Elementary,00310026, 33.5, 100.0, 146, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - John F Kennedy,00310012, 23.2, 100.0, 105, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Locke Middle,00310310, 45.7, 100.0, 243, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Marshall Middle School,00310305, 54.7, 100.0, 217, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Parker,00310015, 35.5, 100.0, 140, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Billerica - Thomas Ditson,00310005, 40.7, 100.0, 183, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 94.3, 96.8, 337, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - A F Maloney,06220015, 20.8, 100.0, 97, 96.9, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.4, 97.4, 154, 87.7, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.7, 100.0, 128, 96.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 24.0, 100.0, 98, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Blackstone-Millville - Millville Elementary,06220010, 20.2, 100.0, 100, 97.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.5, 97.5, 213, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Another Course To College,00350541, 20.1, 86.8, 101, 78.2, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Baldwin Early Learning Center,00350003, 11.0, 100.0, 52, 82.7, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Beethoven,00350021, 22.2, 100.0, 131, 96.2, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Blackstone,00350390, 45.4, 96.1, 307, 80.8, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Adult Academy,00350548, 19.1, 84.3, 97, 78.4, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Arts Academy,00350546, 49.7, 82.0, 256, 53.9, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Collaborative High School,00350755, .9, 100.0, 71, 18.3, 205.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Community Leadership Academy,00350558, 36.8, 92.5, 117, 81.2, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston International High School,00350507, 45.1, 93.3, 262, 76.7, 8.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Latin,00350560, 118.8, 100.0, 693, 95.8, 20.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Latin Academy,00350545, 90.4, 96.9, 406, 96.8, 18.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Boston Teachers Union School,00350012, 22.5, 93.4, 128, 93.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Brighton High,00350505, 66.5, 90.9, 218, 71.6, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Carter Developmental Center,00350036, 1.0, 0.0, 2, 0.0, 29.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Charles H Taylor,00350054, 36.7, 94.5, 301, 79.4, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Charles Sumner,00350052, 37.4, 100.0, 263, 81.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Charlestown High,00350515, 86.1, 89.0, 426, 73.2, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Clarence R Edwards Middle,00350430, 32.1, 93.8, 156, 73.1, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Community Academy,00350518, 9.9, 89.9, 57, 75.4, 4.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Community Academy of Science and Health,00350581, 36.0, 91.7, 137, 67.9, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Curley K-8 School,00350020, 70.0, 97.1, 353, 87.5, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Curtis Guild,00350062, 23.0, 95.9, 167, 85.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dante Alighieri Montessori School,00350066, 8.2, 100.0, 84, 92.9, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - David A Ellis,00350072, 29.7, 100.0, 152, 88.8, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dearborn,00350074, 30.9, 96.8, 121, 72.7, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dennis C Haley,00350077, 31.9, 100.0, 160, 86.3, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Donald Mckay,00350080, 44.2, 100.0, 216, 93.1, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dorchester Academy,00350651, 12.8, 100.0, 122, 94.3, 7.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 12.9, 100.0, 66, 68.2, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dr. William Henderson Lower,00350266, 10.4, 100.0, 52, 61.5, 20.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Dr. William Henderson Upper,00350426, 47.6, 92.8, 214, 77.1, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - ELC - West Zone,00350006, 8.0, 100.0, 35, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - East Boston Early Childhood Center,00350009, 13.6, 100.0, 69, 78.3, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - East Boston High,00350530, 108.6, 93.0, 388, 91.2, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Edison K-8,00350375, 53.3, 96.2, 334, 82.3, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Edward Everett,00350088, 19.9, 100.0, 86, 88.4, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Eliot Elementary,00350096, 41.7, 100.0, 265, 84.5, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Ellis Mendell,00350100, 17.2, 100.0, 81, 86.4, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Excel High School,00350522, 43.2, 93.6, 159, 88.7, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Fenway High School,00350540, 29.0, 88.5, 102, 72.5, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Franklin D Roosevelt,00350116, 25.0, 100.0, 135, 81.5, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Gardner Pilot Academy,00350326, 28.1, 92.6, 129, 99.2, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - George H Conley,00350122, 17.0, 100.0, 128, 85.2, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Greater Egleston Community High School,00350543, 10.0, 100.0, 45, 57.8, 22.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Harvard-Kent,00350200, 34.5, 100.0, 216, 92.6, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Haynes Early Education Center,00350010, 16.8, 88.4, 79, 73.4, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Henry Grew,00350135, 17.1, 100.0, 76, 76.3, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Higginson,00350015, 10.9, 90.9, 76, 88.2, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Higginson/Lewis K-8,00350377, 26.5, 98.1, 133, 86.5, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Horace Mann School for the Deaf,00350750, 33.9, 100.0, 91, 30.8, 2.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Hugh Roe O'Donnell,00350141, 15.4, 100.0, 63, 96.8, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Jackson Mann,00350013, 56.6, 96.5, 366, 86.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James Condon Elementary,00350146, 55.8, 100.0, 422, 81.5, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James J Chittick,00350154, 18.0, 94.4, 151, 78.1, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James Otis,00350156, 26.6, 100.0, 164, 97.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James P Timilty Middle,00350485, 30.7, 94.7, 135, 78.5, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - James W Hennigan,00350153, 45.3, 97.8, 305, 89.8, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Jeremiah E Burke High,00350525, 34.5, 94.2, 118, 85.6, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John D Philbrick,00350172, 12.1, 100.0, 60, 88.3, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John F Kennedy,00350166, 18.9, 100.0, 140, 70.7, 20.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John W McCormack,00350179, 40.7, 96.3, 183, 81.4, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - John Winthrop,00350180, 19.9, 100.0, 144, 93.1, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph J Hurley,00350182, 20.0, 97.5, 113, 98.2, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph Lee,00350183, 48.2, 95.8, 194, 94.3, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph P Manning,00350184, 12.4, 96.0, 83, 83.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joseph P Tynan,00350181, 23.0, 100.0, 185, 86.5, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Josiah Quincy,00350286, 58.1, 100.0, 447, 91.7, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Joyce Kilmer,00350190, 25.6, 100.0, 179, 86.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - King K-8,00350376, 33.5, 96.9, 210, 87.6, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lee Academy,00350001, 15.1, 96.7, 85, 52.9, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 34.7, 97.1, 214, 61.7, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lyndon,00350262, 36.7, 97.3, 220, 93.6, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lyon K-8,00350004, 14.5, 100.0, 74, 95.9, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Lyon Upper 9-12,00350655, 14.2, 100.0, 46, 84.8, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Madison Park High,00350537, 97.0, 87.1, 254, 74.4, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Manassah E Bradley,00350215, 17.7, 94.6, 79, 84.8, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Margarita Muniz Academy,00350549, 24.7, 95.9, 106, 89.6, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mario Umana Academy,00350656, 61.7, 99.2, 355, 86.5, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mather,00350227, 36.9, 97.5, 233, 76.8, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mattahunt,00350226, 44.4, 97.7, 273, 86.8, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Maurice J Tobin,00350229, 34.4, 94.2, 186, 84.9, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Michael J Perkins,00350231, 12.9, 100.0, 70, 88.6, 18.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mildred Avenue K-8,00350378, 37.0, 100.0, 216, 82.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mission Hill School,00350382, 17.0, 100.0, 115, 82.6, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Mozart,00350237, 13.7, 92.8, 78, 85.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Nathan Hale,00350243, 10.3, 100.0, 70, 88.6, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - New Mission High School,00350542, 24.7, 80.6, 100, 73.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - O W Holmes,00350138, 24.0, 87.5, 123, 98.4, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - O'Bryant School Math/Science,00350575, 88.0, 93.9, 328, 92.4, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Oliver Hazard Perry,00350255, 19.0, 100.0, 87, 83.9, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Orchard Gardens,00350257, 58.4, 91.3, 377, 76.7, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Patrick J Kennedy,00350264, 18.9, 100.0, 92, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Paul A Dever,00350268, 28.8, 93.4, 237, 70.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 14.4, 87.5, 68, 75.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Phineas Bates,00350278, 22.8, 100.0, 102, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Quincy Upper School,00350565, 42.9, 81.4, 185, 67.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Rafael Hernandez,00350691, 23.8, 91.6, 161, 81.4, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Richard J Murphy,00350240, 57.3, 100.0, 341, 88.3, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Roger Clap,00350298, 9.9, 100.0, 49, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Samuel Adams,00350302, 21.0, 100.0, 110, 85.5, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Samuel W Mason,00350304, 16.9, 100.0, 79, 78.5, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Sarah Greenwood,00350308, 29.7, 100.0, 212, 84.4, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Snowden International School at Copley,00350690, 32.0, 93.8, 131, 77.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - TechBoston Academy,00350657, 85.9, 94.1, 337, 84.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston - The English High,00350535, 48.7, 85.7, 199, 64.3, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Thomas J Kenny,00350328, 22.0, 95.5, 117, 88.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Boston - UP Academy Holland,00350167, 48.4, 75.3, 200, 71.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Urban Science Academy,00350579, 44.1, 89.1, 202, 60.4, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Warren-Prescott,00350346, 36.0, 100.0, 239, 82.4, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Washington Irving Middle,00350445, 24.8, 100.0, 144, 81.9, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - West Roxbury Academy,00350658, 43.6, 90.8, 195, 64.6, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William E Russell,00350366, 23.4, 100.0, 142, 88.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William Ellery Channing,00350360, 14.3, 96.5, 73, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William H Ohrenberger,00350258, 40.9, 100.0, 261, 90.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William McKinley,00350363, 48.6, 98.0, 460, 34.8, 6.9 to 1 +NA,NA,a-exp-i3,2016-17,Boston - William Monroe Trotter,00350370, 30.6, 96.7, 143, 79.7, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Winship Elementary,00350374, 18.7, 100.0, 107, 88.8, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Boston - Young Achievers,00350380, 36.9, 91.8, 182, 58.2, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 65.7, 72.6, 213, 85.9, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.0, 96.7, 262, 98.5, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 51.6, 80.5, 260, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 37.2, 67.7, 53, 58.5, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 75.6, 76.8, 344, 75.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Bourne High School,00360505, 34.0, 97.5, 190, 97.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Bourne Middle School,00360325, 52.9, 100.0, 281, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Bournedale Elementary School,00360005, 32.5, 100.0, 187, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Bourne - Peebles Elementary School,00360010, 24.8, 100.0, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Boxford - Harry Lee Cole,00380005, 25.6, 100.0, 114, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Boxford - Spofford Pond,00380013, 36.9, 100.0, 132, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Boylston - Boylston Elementary,00390005, 20.1, 97.0, 128, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Archie T Morrison,00400033, 32.2, 100.0, 194, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Braintree High,00400505, 117.3, 98.3, 566, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Donald Ross,00400050, 21.8, 100.0, 139, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - East Middle School,00400305, 59.9, 98.3, 320, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Highlands,00400015, 26.3, 100.0, 184, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Hollis,00400005, 31.1, 96.8, 254, 97.2, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Liberty,00400025, 26.5, 100.0, 183, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Mary E Flaherty School,00400020, 25.6, 100.0, 170, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 14.5, 100.0, 90, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Braintree - South Middle School,00400310, 48.5, 97.9, 250, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brewster - Eddy Elementary,00410010, 22.1, 100.0, 80, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Brewster - Stony Brook Elementary,00410005, 23.0, 100.0, 82, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 26.1, 73.9, 100, 73.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.5, 100.0, 134, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 92.0, 98.9, 473, 98.9, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.0, 100.0, 134, 100.0, 19.2 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.1, 100.0, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.8, 100.0, 293, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 47.5, 100.0, 199, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.5, 100.0, 25, 100.0, 4.4 to 1 +NA,NA,a-exp-i3,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 230, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Brimfield - Brimfield Elementary,00430005, 26.4, 100.0, 106, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 32.8, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 94.1, 100.0, 626, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Ashfield Middle School,00440421, 41.2, 100.0, 164, 97.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Barrett Russell School,00440007, 16.3, 100.0, 78, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Brockton Champion High School,00440515, 14.4, 100.0, 82, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Brockton High,00440505, 252.9, 99.2," 1,120", 94.8, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Brookfield,00440010, 35.8, 99.7, 189, 97.9, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Downey,00440110, 42.1, 99.7, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Dr W Arnone Community School,00440001, 51.2, 99.8, 238, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - East Middle School,00440405, 39.3, 100.0, 176, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Edgar B Davis,00440023, 58.3, 99.5, 292, 98.3, 17.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Edison Academy,00440520, 5.3, 100.0, 135, 77.0, 29.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Frederick Douglass Academy,00440080, 5.7, 100.0, 110, 78.2, 6.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 21.0, 99.5, 62, 95.2, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Goddard Alternative School,00440400, 13.4, 90.3, 84, 100.0, 3.6 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Hancock,00440045, 35.6, 100.0, 164, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Huntington,00440055, 30.0, 100.0, 148, 100.0, 18.4 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - John F Kennedy,00440017, 35.3, 100.0, 182, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 48.2, 99.4, 293, 78.5, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Louis F Angelo Elementary,00440065, 51.5, 100.0, 290, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Manthala George Jr. School,00440003, 52.7, 99.8, 273, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Mary E. Baker School,00440002, 43.0, 100.0, 259, 100.0, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - North Middle School,00440410, 43.1, 99.7, 218, 99.5, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - Oscar F Raymond,00440078, 44.0, 100.0, 214, 100.0, 19.7 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - South Middle School,00440415, 41.6, 100.0, 163, 97.5, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Brockton - West Middle School,00440420, 45.8, 97.8, 225, 99.6, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 110.3, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Brookfield - Brookfield Elementary,00450005, 24.2, 100.0, 93, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 4.2, 100.0, 13, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 8.3, 100.0, 18, 100.0, 7.7 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Brookline High,00460505, 167.6, 99.4, 818, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Edith C Baker,00460005, 59.9, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Edward Devotion,00460015, 68.9, 98.5, 447, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Heath,00460025, 41.4, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - John D Runkle,00460045, 49.8, 100.0, 284, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Lawrence,00460030, 51.8, 100.0, 357, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Michael Driscoll,00460020, 43.3, 100.0, 290, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - Pierce,00460040, 56.3, 100.0, 425, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - The Lynch Center,00460060, 5.4, 100.0, 10, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Brookline - William H Lincoln,00460035, 53.4, 100.0, 321, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Burlington High,00480505, 90.5, 100.0, 432, 99.5, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Fox Hill,00480007, 31.7, 100.0, 147, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Francis Wyman Elementary,00480035, 48.5, 100.0, 225, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Marshall Simonds Middle,00480303, 73.4, 98.6, 335, 95.8, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Memorial,00480015, 36.1, 100.0, 160, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Burlington - Pine Glen Elementary,00480020, 28.5, 100.0, 142, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Amigos School,00490006, 32.7, 100.0, 164, 89.6, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 178.4, 99.2, 717, 92.5, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Cambridge Street Upper School,00490305, 29.7, 100.0, 112, 97.3, 8.8 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Cambridgeport,00490007, 22.8, 100.0, 111, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 29.9, 100.0, 201, 96.5, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Graham and Parks,00490080, 30.2, 100.0, 159, 96.2, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Haggerty,00490020, 25.1, 100.0, 109, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - John M Tobin,00490065, 21.9, 100.0, 175, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Kennedy-Longfellow,00490040, 28.5, 97.2, 122, 95.9, 9.3 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - King Open,00490035, 35.5, 100.0, 200, 99.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Maria L. Baldwin,00490005, 30.3, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Martin Luther King Jr.,00490030, 26.9, 90.1, 158, 88.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Morse,00490045, 31.5, 100.0, 160, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Peabody,00490050, 26.2, 100.0, 102, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 30.4, 94.0, 104, 91.3, 8.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 28.6, 100.0, 105, 96.2, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Cambridge - Vassal Lane Upper School,00490320, 32.8, 100.0, 106, 94.3, 8.2 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Canton High,00500505, 69.9, 100.0, 344, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Dean S Luce,00500020, 34.7, 100.0, 264, 98.5, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Canton - John F Kennedy,00500017, 35.6, 100.0, 234, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 243, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Rodman Early Childhood Center,00500010, 6.6, 100.0, 14, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Canton - Wm H Galvin Middle,00500305, 59.8, 100.0, 369, 95.7, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.5, 86.0, 48, 87.5, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 67.2, 94.0, 191, 93.7, 9.3 to 1 +NA,NA,a-exp-i3,2016-17,Carlisle - Carlisle School,00510025, 54.7, 100.0, 238, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Carver - Carver Elementary School,00520015, 59.8, 100.0, 385, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Carver - Carver Middle/High School,00520405, 71.3, 98.6, 315, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Becket Washington School,06350005, 10.0, 100.0, 50, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Craneville,06350025, 29.7, 96.6, 147, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Kittredge,06350035, 11.4, 100.0, 55, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 34.1, 100.0, 168, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Central Berkshire - Wahconah Regional High,06350505, 43.2, 100.0, 213, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Byam School,00560030, 32.2, 100.0, 142, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Center Elementary School,00560005, 27.8, 100.0, 136, 99.3, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Charles D Harrington,00560025, 28.0, 100.0, 143, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Chelmsford High,00560505, 112.2, 100.0, 546, 99.8, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Col Moses Parker School,00560305, 61.3, 100.0, 286, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 84, 83.3, 19.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - McCarthy Middle School,00560310, 69.1, 100.0, 283, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelmsford - South Row,00560015, 28.0, 100.0, 136, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Chelsea High,00570505, 112.6, 99.6, 581, 99.3, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Clark Avenue School,00570050, 38.0, 100.0, 187, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 36.7, 100.0, 104, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.1, 100.0, 140, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 36.0, 100.0, 104, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - George F. Kelly Elementary,00570035, 35.5, 100.0, 109, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Joseph A. Browne School,00570055, 43.2, 100.0, 166, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 52.0, 100.0, 189, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 120, 95.8, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.8, 100.0, 65, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Barry,00610003, 28.5, 100.0, 114, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Belcher,00610010, 19.6, 100.0, 49, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Bellamy Middle,00610305, 61.4, 98.4, 220, 99.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Bowe,00610015, 32.7, 100.0, 121, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Bowie,00610020, 24.0, 100.0, 156, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Chicopee Academy,00610021, 17.3, 100.0, 98, 93.9, 6.1 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 90.0, 99.3, 454, 96.7, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Chicopee High,00610505, 74.1, 97.3, 349, 98.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Dupont Middle,00610310, 52.5, 98.1, 192, 93.2, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Fairview Elementary,00610050, 34.5, 100.0, 183, 87.4, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Gen John J Stefanik,00610090, 31.0, 100.0, 149, 96.6, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Lambert-Lavoie,00610040, 21.0, 100.0, 119, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Litwin,00610022, 31.3, 100.0, 149, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Streiber Memorial School,00610065, 21.0, 100.0, 130, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 29, 100.0, 20.1 to 1 +NA,NA,a-exp-i3,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 35.1, 68.4, 119, 84.9, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 25.1, 80.9, 80, 91.3, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 25.3, 71.1, 87, 87.4, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 13.3, 80.2, 51, 51.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Clarksburg - Clarksburg Elementary,00630010, 15.4, 97.4, 74, 87.8, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Clinton - Clinton Elementary,00640050, 51.5, 100.0, 253, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Clinton - Clinton Middle School,00640305, 52.3, 98.1, 277, 98.2, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Clinton - Clinton Senior High,00640505, 40.5, 100.0, 177, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 35.9, 60.5, 97, 67.0, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Cohasset - Cohasset Middle/High School,00650505, 70.7, 98.6, 380, 98.9, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Cohasset - Deer Hill,00650005, 28.4, 100.0, 138, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Cohasset - Joseph Osgood,00650010, 21.8, 100.0, 109, 95.4, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 33.0, 84.8, 162, 98.1, 19.6 to 1 +NA,NA,a-exp-i3,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.4, 69.8, 261, 95.4, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 27.5, 73.6, 82, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.0, 84.4, 102, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 30.5, 75.4, 82, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Alcott,00670005, 35.1, 100.0, 176, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Concord Middle,00670305, 56.7, 100.0, 377, 99.7, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Thoreau,00670020, 34.2, 100.0, 177, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Concord - Willard,00670030, 37.0, 100.0, 175, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 98.0, 100.0, 436, 98.9, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 22.0, 68.2, 83, 81.9, 20.5 to 1 +NA,NA,a-exp-i3,2016-17,Conway - Conway Grammar,00680005, 12.6, 99.2, 78, 98.7, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Danvers High,00710505, 78.2, 97.4, 365, 98.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Great Oak,00710015, 26.4, 100.0, 128, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Highlands,00710010, 29.5, 100.0, 128, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Holten Richmond Middle School,00710305, 64.3, 98.4, 372, 98.7, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Ivan G Smith,00710032, 19.6, 100.0, 93, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Riverside,00710030, 27.1, 100.0, 124, 96.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Danvers - Willis E Thorpe,00710045, 24.7, 100.0, 131, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 9.5, 100.0, 53, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Dartmouth High,00720505, 78.4, 99.1, 326, 99.1, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Dartmouth Middle,00720050, 77.4, 100.0, 314, 98.7, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - George H Potter,00720030, 27.8, 100.0, 133, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - James M. Quinn School,00720040, 45.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Dartmouth - Joseph Demello,00720015, 24.2, 100.0, 140, 99.3, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Avery,00730010, 26.5, 100.0, 112, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Dedham High,00730505, 65.0, 100.0, 268, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Dedham Middle School,00730305, 59.8, 100.0, 375, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Early Childhood Center,00730005, 17.0, 100.0, 105, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Greenlodge,00730025, 23.4, 100.0, 105, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Oakdale,00730030, 22.8, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Dedham - Riverdale,00730045, 18.1, 100.0, 76, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Deerfield - Deerfield Elementary,00740015, 37.5, 95.4, 218, 99.5, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.4, 100.0, 489, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 44.4, 100.0, 138, 100.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 27.5, 100.0, 97, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 47.6, 100.0, 223, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 47.0, 100.0, 169, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 39.8, 97.5, 154, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 35.6, 100.0, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 28.5, 100.0, 126, 96.8, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 84.5, 100.0, 397, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.9, 100.0, 177, 99.4, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Dighton-Rehoboth - Palmer River,06500010, 46.3, 100.0, 240, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas Elementary School,00770015, 20.7, 100.0, 99, 100.0, 19.5 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas High School,00770505, 35.5, 91.5, 158, 91.8, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas Middle School,00770305, 20.0, 100.0, 93, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Douglas - Douglas Primary School,00770005, 12.4, 100.0, 43, 100.0, 18.5 to 1 +NA,NA,a-exp-i3,2016-17,Dover - Chickering,00780005, 40.3, 98.3, 217, 97.2, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.2, 100.0, 330, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 51.3, 98.9, 227, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Brookside Elementary,00790035, 25.7, 100.0, 135, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Dracut Senior High,00790505, 60.7, 98.4, 246, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - George H. Englesby Elementary School,00790045, 28.5, 100.0, 151, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Greenmont Avenue,00790030, 17.2, 100.0, 93, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 30.7, 100.0, 190, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 53.8, 98.1, 335, 97.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 21.0, 95.3, 94, 85.1, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.6, 100.0, 112, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 52.7, 100.0, 283, 98.2, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.8, 100.0, 139, 96.4, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 36.4, 100.0, 223, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 32.3, 100.0, 145, 95.9, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 17.1, 100.0, 84, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 69.3, 100.0, 360, 91.9, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Alden School,00820004, 52.4, 98.1, 231, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Chandler Elementary,00820006, 43.8, 100.0, 204, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Duxbury High,00820505, 80.0, 99.5, 395, 99.7, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Duxbury - Duxbury Middle,00820305, 60.4, 96.7, 267, 95.9, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,East Bridgewater - Central,00830005, 36.0, 100.0, 180, 99.4, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 52.2, 96.6, 376, 92.3, 20.1 to 1 +NA,NA,a-exp-i3,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 42.0, 100.0, 220, 98.2, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Birchland Park,00870305, 52.5, 100.0, 215, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - East Longmeadow High,00870505, 61.9, 100.0, 217, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Mapleshade,00870010, 23.0, 100.0, 126, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Meadow Brook,00870013, 37.5, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,East Longmeadow - Mountain View,00870015, 22.6, 100.0, 105, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Eastham - Eastham Elementary,00850005, 22.9, 100.0, 84, 100.0, 7.9 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Center School,00860005, 14.7, 100.0, 64, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Easthampton High,00860505, 31.6, 96.8, 154, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Maple,00860010, 17.7, 100.0, 78, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - Neil A Pepin,00860020, 13.7, 100.0, 58, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Easthampton - White Brook Middle School,00860305, 35.9, 97.2, 167, 97.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Center School,00880003, 19.7, 100.0, 80, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Easton Middle School,00880405, 64.5, 100.0, 312, 99.7, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Moreau Hall,00880020, 13.8, 100.0, 67, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Oliver Ames High,00880505, 81.4, 98.8, 318, 99.7, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Parkview Elementary,00880015, 21.8, 100.0, 102, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Easton - Richardson Olmsted School,00880025, 56.0, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Edgartown - Edgartown Elementary,00890005, 39.9, 99.6, 139, 90.6, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 28.7, 91.6, 85, 96.5, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Erving - Erving Elementary,00910030, 18.1, 97.2, 76, 100.0, 7.5 to 1 +NA,NA,a-exp-i3,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 113.2, 95.5, 335, 97.3, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Adams School,00930003, 9.0, 100.0, 64, 100.0, 23.2 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Devens School,00930030, 11.6, 100.0, 160, 100.0, 5.6 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Everett High,00930505, 145.3, 100.0, 615, 99.7, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Everett - George Keverian School,00930028, 60.7, 100.0, 289, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Lafayette School,00930038, 66.5, 100.0, 296, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Madeline English School,00930018, 65.8, 100.0, 246, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Parlin School,00930058, 53.9, 100.0, 227, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Sumner G. Whittier School,00930010, 48.8, 100.0, 187, 99.5, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Everett - Webster School,00930015, 39.1, 100.0, 206, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 86.0, 56.9, 231, 79.2, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - East Fairhaven,00940010, 28.0, 100.0, 146, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - Fairhaven High,00940505, 50.2, 100.0, 302, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - Hastings Middle,00940305, 34.7, 100.0, 151, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Fairhaven - Leroy Wood,00940030, 31.4, 100.0, 192, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - B M C Durfee High,00950505, 174.4, 91.1, 680, 90.3, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 44.4, 91.0, 248, 85.5, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Fall River - Henry Lord Community School,00950017, 43.3, 86.2, 225, 85.8, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - James Tansey,00950140, 15.4, 93.5, 79, 89.9, 19.0 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - John J Doran,00950045, 36.2, 86.2, 161, 83.9, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Letourneau Elementary School,00950013, 39.1, 90.5, 168, 92.9, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 47.3, 93.7, 188, 77.7, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Matthew J Kuss Middle,00950320, 58.3, 94.9, 288, 93.8, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Morton Middle,00950315, 51.4, 100.0, 240, 80.8, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - North End Elementary,00950005, 45.0, 95.6, 256, 82.8, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Resiliency Middle School,00950335, 4.2, 76.2, 20, 50.0, 6.4 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Resiliency Preparatory School,00950325, 13.9, 92.8, 64, 92.2, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Samuel Watson,00950145, 18.9, 94.7, 92, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Spencer Borden,00950130, 37.6, 92.0, 214, 94.4, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Stone Day School,00950340, 12.2, 81.9, 80, 91.3, 2.6 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - Talbot Innovation School,00950305, 49.8, 90.0, 234, 91.9, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Fall River - William S Greene,00950065, 48.2, 87.5, 244, 86.1, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - East Falmouth Elementary,00960005, 33.2, 100.0, 119, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Falmouth High,00960505, 73.0, 96.7, 516, 97.3, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Lawrence,00960405, 50.6, 100.0, 239, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Morse Pond School,00960305, 46.2, 100.0, 162, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Mullen-Hall,00960020, 37.8, 100.0, 171, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - North Falmouth Elementary,00960030, 26.8, 100.0, 119, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Falmouth - Teaticket,00960015, 29.4, 100.0, 134, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 12.5, 92.2, 56, 100.0, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 47.0, 100.0, 246, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Crocker Elementary,00970016, 40.0, 100.0, 145, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Fitchburg High,00970505, 87.3, 100.0, 407, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Goodrich Academy,00970510, 8.6, 100.0, 123, 100.0, 20.0 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - McKay Arts Academy,00970340, 52.0, 100.0, 232, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Memorial Intermediate,00970048, 50.2, 100.0, 212, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - Reingold Elementary,00970043, 40.9, 100.0, 198, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Fitchburg - South Street Elementary,00970060, 47.0, 100.0, 214, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Florida - Abbott Memorial,00980005, 11.6, 95.7, 61, 80.3, 7.0 to 1 +NA,NA,a-exp-i3,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 22.0, 57.8, 131, 96.9, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Charles Taylor Elementary,00990050, 20.4, 100.0, 109, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Foxborough High,00990505, 64.5, 100.0, 319, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - John J Ahern,00990405, 64.2, 100.0, 380, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Mabelle M Burrell,00990015, 22.4, 100.0, 107, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 33.8, 100.0, 164, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 92.2, 81.8, 429, 96.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Barbieri Elementary,01000035, 52.2, 96.2, 249, 88.8, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Brophy,01000006, 42.5, 100.0, 189, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Cameron Middle School,01000302, 54.1, 100.0, 220, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Charlotte A Dunning,01000007, 36.7, 100.0, 199, 93.5, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Framingham High School,01000515, 177.1, 97.2, 692, 92.2, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Fuller Middle,01000305, 53.1, 100.0, 239, 94.1, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Hemenway,01000015, 40.6, 100.0, 177, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Juniper Hill School,01000001, 17.6, 100.0, 140, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - King Elementary School,01000005, 17.9, 95.6, 95, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 36.6, 100.0, 142, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Miriam F McCarthy School,01000050, 50.1, 100.0, 213, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Potter Road,01000039, 37.3, 100.0, 149, 99.3, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Walsh Middle,01000310, 71.5, 99.7, 324, 99.1, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Framingham - Woodrow Wilson,01000055, 50.1, 100.0, 207, 98.1, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 45.7, 61.0, 200, 100.0, 8.6 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Annie Sullivan Middle School,01010040, 40.8, 100.0, 150, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Davis Thayer,01010035, 20.6, 100.0, 78, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 6.0, 100.0, 30, 100.0, 21.8 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Franklin High,01010505, 125.6, 99.9, 749, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Helen Keller Elementary,01010012, 29.7, 100.0, 120, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Horace Mann,01010405, 40.0, 97.5, 149, 97.3, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - J F Kennedy Memorial,01010013, 26.2, 100.0, 105, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Jefferson Elementary,01010010, 23.4, 100.0, 101, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Oak Street Elementary,01010030, 27.4, 100.0, 119, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Parmenter,01010032, 27.4, 96.3, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Franklin - Remington Middle,01010310, 43.4, 100.0, 148, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 51.8, 96.1, 136, 97.8, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 60.5, 100.0, 256, 98.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 28.0, 100.0, 147, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 148, 98.6, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 48.1, 100.0, 243, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.1, 100.0, 144, 86.1, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Frontier - Frontier Regional,06700505, 51.9, 96.5, 315, 97.8, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Elm Street School,01030001, 39.5, 100.0, 182, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 8.0, 100.0, 46, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Gardner High,01030505, 57.9, 100.0, 220, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Gardner Middle School,01030405, 38.0, 100.0, 156, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Gardner - Waterford Street,01030020, 26.9, 100.0, 132, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Chester Elementary,06720059, 12.5, 100.0, 44, 100.0, 9.3 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Gateway Regional High,06720505, 23.1, 97.8, 127, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Gateway Regional Middle School,06720405, 19.8, 97.5, 82, 97.6, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Gateway - Littleville Elementary School,06720143, 22.5, 100.0, 103, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Georgetown High School,01050505, 36.7, 100.0, 188, 99.5, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Georgetown Middle School,01050305, 21.5, 100.0, 103, 93.2, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Penn Brook,01050010, 43.9, 95.4, 236, 86.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 26, 100.0, 27.0 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Gill Elementary,06740005, 9.2, 100.0, 40, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Great Falls Middle,06740310, 21.2, 95.3, 131, 92.4, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 12.7, 100.0, 42, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 24.3, 95.9, 88, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Gill-Montague - Turners Fall High,06740505, 23.8, 100.0, 108, 98.1, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 40.8, 89.0, 233, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Beeman Memorial,01070010, 30.5, 100.0, 126, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - East Gloucester Elementary,01070020, 19.7, 100.0, 84, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Gloucester High,01070505, 79.9, 97.5, 294, 97.3, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 23, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Plum Cove School,01070042, 16.8, 100.0, 84, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 53.8, 98.1, 280, 97.9, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - Veterans Memorial,01070045, 25.7, 100.0, 89, 100.0, 8.6 to 1 +NA,NA,a-exp-i3,2016-17,Gloucester - West Parish,01070050, 27.5, 100.0, 135, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 8, 100.0, 1.8 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - Grafton High School,01100505, 63.8, 100.0, 313, 99.7, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - Grafton Middle,01100305, 33.7, 100.0, 179, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - Millbury Street Elementary School,01100200, 52.4, 98.1, 260, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - North Grafton Elementary,01100025, 19.5, 100.0, 108, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - North Street Elementary School,01100030, 42.1, 100.0, 236, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Grafton - South Grafton Elementary,01100005, 20.7, 100.0, 112, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Granby - East Meadow,01110004, 12.6, 100.0, 105, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Granby - Granby Jr Sr High School,01110505, 30.7, 100.0, 235, 96.2, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Granby - West Street,01110010, 14.6, 93.1, 73, 86.3, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 133.2, 98.5, 500, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 135.2, 99.3, 313, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 175.1, 99.4, 454, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 204.1, 98.5, 501, 98.6, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Discovery School at Four Corners,01140025, 21.3, 90.6, 117, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Federal Street School,01140010, 21.7, 100.0, 110, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Green River,01140030, .5, 100.0, 12, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Greenfield High,01140505, 40.2, 100.0, 201, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Greenfield Middle,01140305, 43.3, 99.5, 198, 98.5, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - Newton School,01140035, 22.1, 100.0, 112, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.0, 100.0, 29, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Boutwell School,06730001, 3.0, 100.0, 15, 100.0, 21.4 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Florence Roche School,06730010, 33.2, 100.0, 162, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.9, 100.0, 319, 99.4, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 59.4, 100.0, 273, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 22.8, 100.0, 108, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Hadley - Hadley Elementary,01170015, 24.9, 100.0, 263, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Hadley - Hopkins Academy,01170505, 23.3, 100.0, 142, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Halifax - Halifax Elementary,01180005, 38.8, 100.0, 195, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 17.4, 100.0, 68, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Cutler School,06750010, 20.4, 100.0, 84, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 50.7, 100.0, 238, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 40.2, 97.5, 153, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Hamilton-Wenham - Winthrop School,06750015, 22.0, 100.0, 92, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 37.7, 74.5, 245, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 18.2, 100.0, 95, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 20.5, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.8, 100.0, 315, 99.4, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Soule Road,06800030, 21.9, 100.0, 103, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 15.2, 100.0, 76, 90.8, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 35.1, 100.0, 163, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Hampshire - Hampshire Regional High,06830505, 71.7, 96.2, 371, 86.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Hancock - Hancock Elementary,01210005, 5.8, 100.0, 25, 36.0, 6.2 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Cedar Elementary,01220004, 31.9, 100.0, 130, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Center Elementary,01220005, 21.0, 100.0, 94, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Hanover High,01220505, 60.9, 100.0, 259, 94.2, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Hanover Middle,01220305, 63.7, 100.0, 427, 99.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Hanover - Sylvester,01220015, 17.1, 100.0, 72, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Harvard - Bromfield,01250505, 57.3, 99.5, 266, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Harvard - Hildreth Elementary School,01250005, 35.0, 100.0, 141, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 81, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Hatfield - Smith Academy,01270505, 22.4, 100.0, 125, 100.0, 8.8 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 9.0, 100.0, 77, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Bradford Elementary,01280008, 45.0, 100.0, 240, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 24.9, 100.0, 146, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Consentino Middle School,01280100, 61.8, 96.8, 332, 95.8, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Crowell,01280020, 9.7, 100.0, 91, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Dr Paul Nettle,01280050, 38.2, 100.0, 174, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Golden Hill,01280026, 39.0, 100.0, 250, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Greenleaf,01280027, 16.5, 100.0, 116, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Haverhill Alternative School,01280033, 7.0, 100.0, 36, 100.0, 6.6 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Haverhill High,01280505, 126.8, 94.7, 624, 94.7, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - John G Whittier,01280085, 27.3, 100.0, 144, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Moody,01280045, 13.0, 100.0, 216, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 43.5, 100.0, 356, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - TEACH,01280073, 7.0, 85.7, 130, 86.2, 7.3 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Tilton,01280075, 39.0, 100.0, 188, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Haverhill - Walnut Square,01280080, 8.0, 94.6, 69, 100.0, 19.0 to 1 +NA,NA,a-exp-i3,2016-17,Hawlemont - Hawlemont Regional,06850005, 10.4, 83.6, 50, 90.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 17.0, 64.7, 74, 81.1, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 20.1, 77.8, 97, 84.5, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.8, 91.6, 55, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - East Elementary School,01310005, 35.1, 100.0, 159, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Hingham High,01310505, 86.0, 100.0, 451, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Hingham Middle School,01310410, 70.1, 100.0, 380, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Plymouth River,01310019, 32.8, 100.0, 163, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - South Elementary,01310020, 36.0, 100.0, 167, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Hingham - Wm L Foster Elementary,01310010, 33.7, 100.0, 160, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 37.8, 97.4, 192, 95.8, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Holbrook - John F Kennedy,01330018, 30.9, 100.0, 141, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Holbrook - South,01330025, 20.9, 100.0, 91, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Holland - Holland Elementary,01350005, 19.6, 100.0, 82, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Holliston High,01360505, 63.4, 98.4, 346, 98.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Miller School,01360007, 47.9, 100.0, 250, 99.6, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Placentino Elementary,01360010, 47.3, 97.9, 271, 99.3, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Holliston - Robert H. Adams Middle School,01360305, 50.2, 100.0, 253, 98.8, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - E N White Elementary,01370045, 38.3, 97.7, 138, 80.4, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - H.B. Lawrence School,01370070, 21.0, 92.0, 97, 73.2, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Holyoke High,01370505, 78.2, 94.7, 396, 91.2, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Joseph Metcalf School,01370003, 14.8, 98.5, 56, 55.4, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Kelly Elementary,01370040, 41.0, 91.8, 179, 91.1, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 46.8, 84.9, 190, 47.4, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 28.6, 96.5, 106, 87.7, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 38.4, 87.1, 155, 73.5, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Morgan Full Service Community School,01370025, 33.3, 91.0, 91, 81.3, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - William R. Peck School,01370030, 33.3, 90.4, 154, 74.7, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 33.9, 71.5, 49, 85.7, 7.4 to 1 +NA,NA,a-exp-i3,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.5, 72.2, 143, 92.3, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 43.2, 100.0, 213, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Hopedale - Memorial,01380010, 42.8, 100.0, 178, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Hopedale - Park Street School,01380003, 3.5, 88.6, 4, 100.0, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Center,01390005, 32.7, 100.0, 149, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Elmwood,01390010, 35.7, 100.0, 147, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkins Elementary School,01390015, 37.6, 100.0, 166, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkinton High,01390505, 81.9, 100.0, 654, 97.2, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkinton Middle School,01390305, 66.8, 100.0, 310, 97.7, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 4.5, 100.0, 9, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - C A Farley,01410030, 41.2, 100.0, 156, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - David J. Quinn Middle School,01410410, 56.8, 100.0, 277, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - Forest Avenue Elementary,01410015, 27.5, 100.0, 97, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - Hudson High,01410505, 87.1, 97.7, 431, 96.5, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Hudson - Mulready Elementary,01410007, 23.8, 100.0, 86, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Hull - Hull High,01420505, 28.6, 100.0, 138, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Hull - Lillian M Jacobs,01420015, 33.0, 100.0, 139, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Hull - Memorial Middle,01420305, 20.1, 100.0, 81, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 73.3, 85.0, 360, 96.1, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Ipswich High,01440505, 50.1, 98.0, 330, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Ipswich Middle School,01440305, 43.3, 100.0, 156, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 33.7, 100.0, 176, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Ipswich - Winthrop,01440015, 36.1, 100.0, 183, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 47.0, 44.7, 73, 69.9, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 99.7, 56.2, 305, 72.5, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,King Philip - King Philip Middle School,06900510, 47.0, 100.0, 285, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,King Philip - King Philip Regional High,06900505, 83.5, 98.7, 358, 98.6, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Kingston - Kingston Elementary,01450005, 32.2, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Kingston - Kingston Intermediate,01450020, 37.7, 100.0, 177, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Lanesborough - Lanesborough Elementary,01480005, 19.0, 100.0, 86, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Alexander B Bruce,01490015, 41.1, 100.0, 158, 74.1, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 221, 94.1, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Community Day Arlington,01490009, 56.5, 89.4, 168, 85.7, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Edward F. Parthum,01490053, 41.0, 95.1, 239, 86.2, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Emily G Wetherbee,01490080, 44.4, 97.7, 234, 74.8, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Francis M Leahy,01490040, 35.3, 100.0, 158, 80.4, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Frost Middle School,01490525, 31.0, 96.8, 183, 66.1, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Gerard A. Guilmette,01490022, 45.4, 89.0, 201, 72.1, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Guilmette Middle School,01490025, 43.4, 93.1, 247, 87.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - High School Learning Center,01490536, 17.8, 100.0, 120, 91.7, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - James F Hennessey,01490020, 27.0, 92.6, 88, 85.2, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - John Breen School,01490003, 18.0, 100.0, 50, 100.0, 18.2 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - John K Tarbox,01490075, 21.0, 95.2, 110, 81.8, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 10.0, 100.0, 37, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 16.0, 100.0, 80, 93.8, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Lawrence High School,01490515, 225.8, 90.6," 1,025", 89.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Oliver Partnership School,01490048, 33.0, 100.0, 160, 75.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Parthum Middle School,01490027, 39.0, 94.9, 171, 59.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 12.0, 75.0, 177, 69.5, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Robert Frost,01490018, 38.0, 100.0, 200, 85.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 59, 91.5, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - School for Exceptional Studies,01490537, 31.9, 78.3, 199, 64.8, 5.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 47.4, 100.0, 237, 70.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - Spark Academy,01490085, 33.3, 91.0, 112, 81.3, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 27.0, 88.9, 84, 76.2, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 30.0, 86.7, 64, 96.9, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 59.5, 88.2, 273, 71.4, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Lee - Lee Elementary,01500025, 27.0, 100.0, 129, 92.2, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Lee - Lee Middle/High School,01500505, 35.5, 97.2, 170, 100.0, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester High,01510505, 33.8, 100.0, 162, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester Memorial Elementary,01510005, 23.2, 100.0, 104, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester Middle,01510015, 28.1, 100.0, 137, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Leicester - Leicester Primary School,01510010, 24.3, 100.0, 131, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Lenox - Lenox Memorial High,01520505, 52.1, 98.1, 351, 100.0, 8.7 to 1 +NA,NA,a-exp-i3,2016-17,Lenox - Morris,01520015, 28.5, 100.0, 117, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Bennett,01530003, 5.0, 100.0, 16, 100.0, 21.0 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Center For Technical Education Innovation,01530605, 37.7, 90.4, 52, 100.0, 18.5 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Fall Brook,01530007, 46.6, 100.0, 254, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Frances Drake School,01530010, 45.4, 95.6, 251, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Johnny Appleseed,01530025, 48.5, 100.0, 264, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Leominster Center for Excellence,01530515, 3.5, 100.0, 24, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Leominster High School,01530505, 98.2, 99.0, 536, 99.8, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Lincoln School,01530005, 5.0, 100.0, 25, 100.0, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Northwest,01530030, 48.1, 100.0, 274, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Priest Street,01530040, 10.3, 92.2, 56, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Samoset School,01530045, 39.1, 97.4, 295, 98.3, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Leominster - Sky View Middle School,01530320, 57.6, 100.0, 380, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Leverett - Leverett Elementary,01540005, 13.8, 100.0, 55, 87.3, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Bowman,01550008, 49.0, 100.0, 91, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Bridge,01550006, 43.0, 100.0, 89, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Fiske,01550015, 39.0, 100.0, 79, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Harrington,01550030, 33.0, 100.0, 77, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Jonas Clarke Middle,01550305, 80.5, 100.0, 314, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Joseph Estabrook,01550010, 40.2, 100.0, 86, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Lexington Children's Place,01550001, 6.8, 100.0, 26, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Lexington High,01550505, 173.0, 99.7, 738, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Maria Hastings,01550035, 37.6, 100.0, 73, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Lexington - Wm Diamond Middle,01550310, 75.7, 100.0, 317, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln - Hanscom Middle,01570305, 25.6, 100.0, 152, 96.7, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln - Hanscom Primary,01570006, 27.9, 100.0, 124, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln - Lincoln School,01570025, 63.3, 100.0, 304, 100.0, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.8, 100.0, 828, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Littleton High School,01580505, 32.9, 99.4, 141, 99.3, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Littleton Middle School,01580305, 25.9, 100.0, 125, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Russell St Elementary,01580015, 23.1, 100.0, 170, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Littleton - Shaker Lane Elementary,01580005, 28.2, 100.0, 140, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 159, 97.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Center,01590010, 31.9, 100.0, 160, 95.6, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Glenbrook Middle,01590017, 28.4, 100.0, 125, 93.6, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Longmeadow High,01590505, 75.8, 100.0, 296, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Williams Middle,01590305, 31.0, 100.0, 142, 98.6, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Longmeadow - Wolf Swamp Road,01590025, 32.5, 100.0, 140, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Abraham Lincoln,01600020, 37.0, 100.0, 269, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - B.F. Butler Middle School,01600310, 42.9, 100.0, 277, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Bartlett Community Partnership,01600090, 36.1, 100.0, 233, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Charles W Morey,01600030, 34.0, 100.0, 262, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 36.0, 100.0, 208, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Dr An Wang School,01600345, 48.4, 100.0, 275, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Dr Gertrude Bailey,01600002, 32.9, 100.0, 262, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Greenhalge,01600015, 35.0, 100.0, 216, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Henry J Robinson Middle,01600330, 52.9, 100.0, 197, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - James S Daley Middle School,01600315, 47.6, 100.0, 246, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - James Sullivan Middle School,01600340, 50.1, 100.0, 248, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - John J Shaughnessy,01600050, 34.9, 100.0, 272, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Joseph McAvinnue,01600010, 36.0, 100.0, 254, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 49.8, 100.0, 304, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 6.6, 100.0, 78, 100.0, 2.7 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 7.2, 100.0, 105, 100.0, 4.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Lowell High,01600505, 213.0, 97.7," 1,534", 98.8, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Moody Elementary,01600027, 20.0, 100.0, 118, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Pawtucketville Memorial,01600036, 34.9, 100.0, 272, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Peter W Reilly,01600040, 40.5, 100.0, 306, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Pyne Arts,01600018, 36.1, 100.0, 297, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Rogers STEM Academy,01600005, 36.9, 100.0, 307, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 34.0, 100.0, 270, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - The Career Academy,01600515, 9.7, 100.0, 68, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lowell - Washington,01600055, 19.5, 100.0, 170, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 61.0, 98.4, 238, 97.9, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 57.1, 96, 97.9, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Chapin Street Elementary School,01610020, 29.4, 100.0, 148, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - East Street Elementary School,01610010, 32.3, 100.0, 158, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Ludlow Senior High,01610505, 79.7, 98.7, 360, 95.3, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Paul R Baird Middle,01610305, 59.3, 99.2, 239, 98.7, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Ludlow - Veterans Park Elementary,01610023, 27.5, 100.0, 203, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Lunenburg High,01620505, 35.7, 97.2, 151, 99.3, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Lunenburg Middle School,01620305, 25.9, 100.0, 158, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Lunenburg Primary School,01620010, 23.5, 100.0, 127, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 27.0, 100.0, 155, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - A Drewicz Elementary,01630016, 33.6, 97.0, 149, 96.6, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Aborn,01630011, 16.7, 100.0, 86, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Breed Middle School,01630405, 84.7, 94.1, 353, 94.1, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Brickett Elementary,01630020, 20.8, 100.0, 93, 94.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Capt William G Shoemaker,01630090, 30.9, 100.0, 142, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Classical High,01630505, 96.6, 99.0, 436, 95.4, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Cobbet Elementary,01630035, 41.7, 100.0, 186, 97.3, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - E J Harrington,01630045, 44.8, 100.0, 204, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Early Childhood Center,01630004, 21.8, 100.0, 121, 95.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Edward A Sisson,01630095, 30.1, 100.0, 142, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 37.0, 89.2, 139, 91.4, 8.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Hood,01630055, 31.7, 100.0, 156, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Ingalls,01630060, 44.4, 100.0, 198, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Julia F Callahan,01630030, 30.0, 100.0, 166, 94.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 81, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lynn English High,01630510, 105.2, 96.2, 539, 90.7, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 81.5, 96.3, 228, 95.6, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Lynn Woods,01630075, 11.3, 100.0, 59, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Pickering Middle,01630420, 51.9, 100.0, 195, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Robert L Ford,01630050, 32.7, 100.0, 146, 96.6, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Sewell-Anderson,01630085, 23.2, 100.0, 114, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Thurgood Marshall Mid,01630305, 80.1, 96.3, 306, 88.9, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Tracy,01630100, 31.3, 100.0, 135, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Washington Elementary School,01630005, 30.6, 100.0, 142, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - William R Fallon,01630080, 9.8, 100.0, 42, 100.0, 4.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynn - Wm P Connery,01630040, 38.5, 100.0, 175, 97.1, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Huckleberry Hill,01640010, 28.4, 100.0, 143, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Lynnfield High,01640505, 52.8, 100.0, 223, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Lynnfield Middle School,01640405, 51.2, 100.0, 229, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Lynnfield Preschool,01640005, 2.6, 100.0, 8, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Lynnfield - Summer Street,01640020, 28.9, 100.0, 149, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 84.7, 66.4, 274, 77.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.9, 100.0, 24, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Beebe,01650003, 61.5, 100.0, 262, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Ferryway,01650013, 57.5, 100.0, 247, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Forestdale,01650027, 47.5, 100.0, 249, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Linden,01650047, 68.8, 100.0, 362, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 91, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Malden High,01650505, 114.2, 99.1, 542, 98.3, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Malden - Salemwood,01650057, 85.0, 100.0, 554, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 20.4, 100.0, 95, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 202, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 37.0, 95.7, 136, 91.2, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 31.7, 98.7, 143, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Everett W Robinson,01670007, 49.0, 100.0, 249, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Harold L Qualters Middle,01670035, 87.0, 100.0, 327, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 59.9, 100.0, 319, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Mansfield High,01670505, 99.4, 100.0, 537, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Mansfield - Roland Green School,01670003, 6.0, 100.0, 30, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Elbridge Gerry,01680015, 10.1, 100.0, 48, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Glover,01680020, 27.8, 100.0, 116, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - L H Coffin,01680010, 13.9, 94.2, 52, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Malcolm L Bell,01680005, 24.0, 100.0, 90, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Marblehead High,01680505, 89.7, 97.8, 387, 98.2, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 42.0, 100.0, 188, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead - Village School,01680016, 56.4, 99.9, 165, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 21.9, 79.0, 78, 89.7, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Marion - Sippican,01690005, 33.6, 100.0, 139, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 114.5, 100.0, 494, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Charles Jaworek School,01700030, 56.2, 100.0, 216, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 26, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Francis J Kane,01700008, 49.0, 100.0, 174, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Marlborough High,01700505, 99.3, 100.0, 438, 99.5, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Marlborough - Richer,01700025, 45.0, 100.0, 150, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Daniel Webster,01710015, 24.9, 100.0, 109, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Eames Way School,01710005, 19.0, 100.0, 91, 94.5, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Furnace Brook Middle,01710310, 75.7, 100.0, 402, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Gov Edward Winslow,01710020, 31.8, 100.0, 146, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Marshfield High,01710505, 109.4, 99.1, 395, 98.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - Martinson Elementary,01710025, 37.0, 97.3, 145, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Marshfield - South River,01710010, 26.5, 100.0, 122, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 73.5, 99.3, 592, 94.9, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 18.9, 81.7, 70, 95.7, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 37.8, 81.4, 101, 63.4, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Masconomet - Masconomet Regional High School,07050505, 84.4, 100.0, 416, 99.8, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 47.2, 100.0, 232, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Kenneth Coombs School,01720005, 32.3, 100.0, 166, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Mashpee High,01720505, 42.6, 100.0, 236, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Mashpee Middle School,01720020, 21.2, 100.0, 112, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Mashpee - Quashnet School,01720035, 43.8, 100.0, 259, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,"","","","","" +NA,NA,a-exp-i3,2016-17,Mattapoisett - Center,01730005, 22.5, 100.0, 89, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Mattapoisett - Old Hammondtown,01730010, 17.8, 100.0, 75, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Maynard - Fowler School,01740305, 35.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Maynard - Green Meadow,01740010, 34.2, 100.0, 130, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Maynard - Maynard High,01740505, 40.4, 97.5, 190, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Dale Street,01750005, 29.1, 97.8, 191, 95.3, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Medfield Senior High,01750505, 67.5, 100.0, 297, 99.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Memorial School,01750003, 24.1, 100.0, 140, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Ralph Wheelock School,01750007, 25.0, 100.0, 142, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Medfield - Thomas Blake Middle,01750305, 51.7, 100.0, 381, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Medford - Brooks School,01760130,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Christopher Columbus,01760140,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Curtis-Tufts,01760510,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - John J McGlynn Elementary School,01760068,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - John J. McGlynn Middle School,01760320,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Madeleine Dugger Andrews,01760315,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Medford High,01760505,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Medford Vocational Technical High,01760605,"","","","","" +NA,NA,a-exp-i3,2016-17,Medford - Milton Fuller Roberts,01760150,"","","","","" +NA,NA,a-exp-i3,2016-17,Medway - Burke/Memorial Elementary School,01770015, 30.8, 100.0, 152, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Medway - John D Mc Govern Elementary,01770013, 19.2, 100.0, 94, 94.7, 17.9 to 1 +NA,NA,a-exp-i3,2016-17,Medway - Medway High,01770505, 51.7, 98.1, 289, 91.3, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Medway - Medway Middle,01770305, 55.3, 100.0, 240, 98.3, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Early Childhood Center,01780003, 13.5, 100.0, 45, 100.0, 21.4 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Herbert Clark Hoover,01780017, 18.5, 100.0, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Horace Mann,01780025, 16.5, 100.0, 73, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Lincoln,01780020, 29.0, 100.0, 122, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Melrose High,01780505, 69.8, 100.0, 289, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Melrose Middle,01780305, 60.2, 98.3, 299, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Roosevelt,01780035, 31.0, 100.0, 120, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Melrose - Winthrop,01780050, 23.8, 100.0, 109, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Henry P Clough,07100179, 29.3, 100.0, 146, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Memorial School,07100001, 30.6, 96.7, 142, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 57.1, 100.0, 242, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 47.4, 96.6, 335, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Comprehensive Grammar School,01810050, 78.0, 98.7, 374, 99.5, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Donald P Timony Grammar,01810060, 93.2, 100.0, 402, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Marsh Grammar School,01810030, 84.5, 100.0, 421, 96.2, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Methuen High,01810505, 143.7, 98.5, 658, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Methuen - Tenney Grammar School,01810055, 91.5, 100.0, 396, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 46.6, 100.0, 270, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - John T. Nichols Middle,01820305, 53.4, 100.0, 256, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 47.5, 100.0, 240, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 20.0, 100.0, 90, 100.0, 6.5 to 1 +NA,NA,a-exp-i3,2016-17,Middleborough - Middleborough High,01820505, 62.8, 100.0, 333, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Middleton - Fuller Meadow,01840003, 23.4, 100.0, 89, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Middleton - Howe-Manning,01840005, 38.7, 100.0, 154, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Brookside,01850065, 42.1, 100.0, 162, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Memorial,01850010, 37.1, 100.0, 154, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Milford High,01850505, 85.6, 100.0, 350, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 25, 100.0, 20.5 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Stacy Middle,01850305, 78.1, 100.0, 360, 98.6, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Milford - Woodland,01850090, 79.0, 98.7, 350, 97.7, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Millbury - Elmwood Street,01860017, 37.5, 100.0, 126, 97.6, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Millbury - Millbury Junior/Senior High,01860505, 61.7, 100.0, 296, 99.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 27.6, 100.0, 145, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Millis - Clyde F Brown,01870005, 37.1, 100.0, 184, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Millis - Millis High School,01870505, 26.3, 100.0, 139, 99.3, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Millis - Millis Middle,01870020, 31.1, 95.8, 158, 94.3, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Charles S Pierce Middle,01890410, 68.1, 100.0, 364, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Collicot,01890005, 39.1, 100.0, 208, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Cunningham School,01890007, 21.6, 100.0, 151, 100.0, 23.4 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Glover,01890010, 26.1, 100.0, 183, 97.3, 22.6 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Milton High,01890505, 66.9, 100.0, 372, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Milton - Tucker,01890020, 25.4, 100.0, 137, 96.4, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 72.5, 98.6, 231, 99.1, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 16.4, 99.4, 87, 94.3, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Colrain Central,07170010, 11.1, 100.0, 53, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Heath Elementary,07170015, 6.5, 93.8, 29, 100.0, 4.5 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 28.4, 85.9, 274, 90.1, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Mohawk Trail - Sanderson Academy,07170020, 9.4, 100.0, 46, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 22.7, 96.3, 131, 82.4, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 46.5, 100.0, 244, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.3, 96.6, 283, 97.5, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 43.9, 100.0, 215, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Monson - Granite Valley Middle,01910310, 29.0, 100.0, 120, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Monson - Monson High School,01910505, 26.0, 88.4, 98, 83.7, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Monson - Quarry Hill Community School,01910025, 31.0, 100.0, 121, 94.2, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 112.0, 100.0, 322, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 44.6, 100.0, 210, 98.6, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 103.1, 66.0, 612, 89.2, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Nahant - Johnson,01960010, 11.0, 100.0, 50, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Nantucket - Cyrus Peirce,01970010, 31.9, 92.5, 165, 86.7, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Nantucket - Nantucket Elementary,01970005, 61.5, 96.7, 332, 88.9, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Nantucket - Nantucket High,01970505, 44.5, 86.8, 246, 80.1, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Baldwinville Elementary,07200005, 15.9, 100.0, 80, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Narragansett Middle,07200305, 26.3, 100.0, 108, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Narragansett Regional High,07200505, 27.2, 96.3, 139, 97.8, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Phillipston Memorial,07200003, 11.0, 90.9, 42, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Narragansett - Templeton Center,07200020, 10.9, 100.0, 56, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Center School,07250020, 40.9, 100.0, 210, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Florence Sawyer School,07250025, 58.6, 100.0, 248, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Hale,07250310, 23.3, 95.7, 97, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Luther Burbank Middle School,07250305, 23.9, 100.0, 87, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 35.7, 100.0, 152, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba - Nashoba Regional,07250505, 79.5, 99.4, 457, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 63.1, 98.4, 207, 97.1, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Bennett-Hemenway,01980005, 39.2, 100.0, 209, 97.6, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Brown,01980010, 34.1, 100.0, 176, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Natick - J F Kennedy Middle School,01980305, 51.0, 100.0, 237, 99.2, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Johnson,01980031, 20.0, 98.0, 77, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Lilja Elementary,01980035, 26.5, 100.0, 140, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Memorial,01980043, 25.5, 97.6, 147, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Natick High,01980505, 117.0, 99.1," 1,009", 97.9, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Natick - Wilson Middle,01980310, 73.8, 98.6, 282, 97.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Nauset - Nauset Regional High,06600505, 81.7, 99.0, 408, 99.3, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Nauset - Nauset Regional Middle,06600305, 55.6, 100.0, 209, 100.0, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Broadmeadow,01990005, 34.0, 100.0, 175, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Needham - High Rock School,01990410, 37.8, 97.9, 170, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Hillside Elementary,01990035, 31.7, 100.0, 156, 96.8, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Needham - John Eliot,01990020, 23.7, 100.0, 112, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Needham High,01990505, 121.6, 99.5, 505, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Newman Elementary,01990050, 50.8, 98.0, 218, 97.7, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Needham - Pollard Middle,01990405, 71.7, 98.6, 367, 98.9, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Needham - William Mitchell,01990040, 30.5, 100.0, 164, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 50.1, 61.3, 93, 100.0, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Abraham Lincoln,02010095, 37.2, 100.0, 222, 92.8, 21.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Alfred J Gomes,02010063, 39.9, 89.9, 176, 92.6, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Betsey B Winslow,02010140, 16.9, 98.6, 80, 100.0, 17.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Carlos Pacheco,02010105, 27.0, 100.0, 106, 96.2, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Casimir Pulaski,02010123, 48.0, 95.8, 289, 91.7, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Charles S Ashley,02010010, 20.9, 100.0, 102, 96.1, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 18.1, 97.1, 78, 97.4, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Ellen R Hathaway,02010075, 19.9, 88.4, 107, 81.3, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Elwyn G Campbell,02010020, 21.4, 100.0, 102, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Hayden/McFadden,02010078, 51.2, 82.3, 288, 71.5, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - James B Congdon,02010040, 25.2, 97.2, 108, 96.3, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Jireh Swift,02010130, 14.0, 100.0, 55, 70.9, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - John Avery Parker,02010115, 21.1, 95.2, 82, 80.5, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - John B Devalles,02010050, 22.4, 92.0, 138, 97.1, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - John Hannigan,02010070, 23.0, 97.7, 86, 97.7, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Keith Middle School,02010405, 67.6, 88.1, 248, 76.2, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - New Bedford High,02010505, 165.7, 90.9, 750, 91.9, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Normandin Middle School,02010410, 82.9, 97.6, 376, 87.2, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 19.8, 94.9, 82, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Roosevelt Middle School,02010415, 65.1, 92.3, 274, 84.3, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 50.3, 87.7, 294, 90.8, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Thomas R Rodman,02010125, 13.9, 96.5, 66, 93.9, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Trinity Day Academy,02010510, 9.9, 70.7, 63, 69.8, 6.4 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 15.5, 70.9, 123, 64.2, 7.1 to 1 +NA,NA,a-exp-i3,2016-17,New Bedford - William H Taylor,02010135, 16.9, 97.2, 73, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 22.1, 69.2, 81, 18.5, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,New Salem-Wendell - Swift River,07280015, 11.9, 100.0, 23, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 26.8, 100.0, 101, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 52.4, 100.0, 257, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Newburyport High,02040505, 64.1, 100.0, 531, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Newburyport - Rupert A Nock Middle,02040305, 41.6, 100.0, 233, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Newton - A E Angier,02070005, 35.5, 100.0, 134, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Bigelow Middle,02070305, 50.2, 99.0, 230, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Bowen,02070015, 35.4, 100.0, 124, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Newton - C C Burr,02070020, 31.0, 96.8, 122, 84.4, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Cabot,02070025, 32.4, 96.9, 128, 96.9, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Charles E Brown Middle,02070310, 67.8, 99.7, 272, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Countryside,02070040, 40.4, 97.5, 140, 97.1, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Newton - F A Day Middle,02070315, 83.1, 97.6, 353, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Franklin,02070055, 40.2, 92.5, 139, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Horace Mann,02070075, 34.1, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Newton - John Ward,02070120, 22.5, 100.0, 94, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Lincoln-Eliot,02070070, 32.9, 100.0, 114, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Mason-Rice,02070080, 32.8, 100.0, 140, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Memorial Spaulding,02070105, 35.2, 100.0, 134, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Newton Early Childhood Center,02070108, 16.4, 100.0, 46, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Newton North High,02070505, 183.1, 98.6, 741, 97.4, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Newton South High,02070510, 150.0, 99.8, 881, 99.8, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Oak Hill Middle,02070320, 55.7, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Peirce,02070100, 22.5, 100.0, 96, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Underwood,02070115, 26.3, 100.0, 96, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Williams,02070125, 22.1, 100.0, 90, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Newton - Zervas,02070130, 26.8, 100.0, 108, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Norfolk - Freeman-Kennedy School,02080005, 36.3, 100.0, 155, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Norfolk - H Olive Day,02080015, 32.6, 100.0, 145, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 52.2, 98.5, 130, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Brayton,02090035, 29.2, 100.0, 114, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Colegrove Park Elementary,02090008, 24.4, 100.0, 108, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Drury High,02090505, 39.8, 98.5, 150, 98.7, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,North Adams - Greylock,02090015, 25.6, 100.0, 112, 96.4, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Annie L Sargent School,02110018, 34.2, 100.0, 155, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Atkinson,02110001, 34.8, 97.1, 156, 98.7, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Franklin,02110010, 29.7, 100.0, 141, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Kittredge,02110015, 16.7, 100.0, 80, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - North Andover High,02110505, 87.3, 100.0, 862, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - North Andover Middle,02110305, 74.3, 100.0, 502, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,North Andover - Thomson,02110020, 22.0, 100.0, 99, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Amvet Boulevard,02120007, 24.3, 100.0, 135, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Community,02120030, 29.7, 100.0, 129, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Falls,02120010, 18.7, 100.0, 100, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 37.4, 100.0, 185, 97.3, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - North Attleboro High,02120505, 78.4, 100.0, 416, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 17, 100.0, 19.4 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - North Attleborough Middle,02120305, 73.7, 100.0, 385, 99.5, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,North Attleborough - Roosevelt Avenue,02120015, 17.2, 100.0, 88, 100.0, 18.2 to 1 +NA,NA,a-exp-i3,2016-17,North Brookfield - North Brookfield Elementary,02150015, 20.8, 100.0, 99, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,North Brookfield - North Brookfield High,02150505, 21.4, 100.0, 109, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Ashby Elementary,07350010, 20.6, 100.0, 70, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Hawthorne Brook,07350030, 43.0, 100.0, 194, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Nissitissit Middle School,07350310, 46.9, 100.0, 178, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - North Middlesex Regional,07350505, 56.9, 100.0, 312, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, .1, 100.0, 0, 0.0, 80.0 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Spaulding Memorial,07350005, 34.9, 98.9, 140, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 4.5, 100.0, 13, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,North Middlesex - Varnum Brook,07350035, 44.6, 100.0, 202, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - E Ethel Little School,02170003, 23.1, 100.0, 174, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - J Turner Hood,02170010, 25.5, 100.0, 210, 96.2, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - L D Batchelder,02170005, 30.3, 100.0, 180, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - North Reading High,02170505, 70.6, 100.0, 241, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,North Reading - North Reading Middle,02170305, 47.0, 100.0, 170, 97.1, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Bridge Street,02100005, 26.9, 100.0, 79, 100.0, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Jackson Street,02100020, 28.7, 100.0, 99, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - John F Kennedy Middle School,02100410, 62.7, 100.0, 299, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Leeds,02100025, 26.7, 100.0, 99, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - Northampton High,02100505, 56.8, 99.1, 277, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 21.8, 100.0, 70, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 50.1, 92.0, 133, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 107.4, 100.0, 521, 99.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Fannie E Proctor,02130015, 22.6, 100.0, 92, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Lincoln Street,02130003, 21.0, 100.0, 92, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Marguerite E Peaslee,02130014, 21.0, 100.0, 103, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Marion E Zeh,02130020, 21.2, 100.0, 102, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Northborough - Robert E. Melican Middle School,02130305, 55.8, 100.0, 273, 98.2, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - Northbridge Elementary,02140005, 28.0, 100.0, 132, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - Northbridge High,02140505, 48.6, 100.0, 264, 99.6, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - Northbridge Middle,02140305, 49.9, 100.0, 286, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 104, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 111.9, 97.9, 243, 99.6, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.7, 93.6, 130, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 128, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Norton - J C Solmonese,02180015, 33.2, 100.0, 148, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Norton - L G Nourse Elementary,02180010, 22.2, 100.0, 95, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Norton - Norton High,02180505, 47.1, 100.0, 231, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Norton - Norton Middle,02180305, 46.7, 100.0, 295, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - Grace Farrar Cole,02190005, 34.8, 100.0, 170, 97.1, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - Norwell High,02190505, 49.9, 100.0, 247, 99.6, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - Norwell Middle School,02190405, 44.0, 100.0, 264, 96.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Norwell - William G Vinal,02190020, 34.8, 100.0, 170, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Balch,02200005, 26.9, 100.0, 112, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Charles J Prescott,02200025, 20.6, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Cornelius M Callahan,02200010, 19.1, 100.0, 73, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 65.3, 100.0, 253, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - F A Cleveland,02200015, 27.0, 100.0, 121, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - George F. Willett,02200075, 23.5, 100.0, 93, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - John P Oldham,02200020, 20.5, 100.0, 84, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Norwood - Norwood High,02200505, 72.0, 100.0, 423, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 45.4, 99.6, 184, 99.5, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 54.1, 96.3, 104, 89.4, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Old Rochester - Old Rochester Regional High,07400505, 54.6, 100.0, 262, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 165, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Orange - Dexter Park,02230010, 26.2, 100.0, 109, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Orange - Fisher Hill,02230015, 20.7, 95.2, 116, 86.2, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Orleans - Orleans Elementary,02240005, 22.5, 100.0, 91, 87.9, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Alfred M Chaffee,02260010, 22.1, 100.0, 103, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Clara Barton,02260005, 23.4, 100.0, 127, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Oxford High,02260505, 43.1, 99.8, 191, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Oxford Middle,02260405, 30.1, 100.0, 116, 95.7, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 7.1, 100.0, 25, 100.0, 3.5 to 1 +NA,NA,a-exp-i3,2016-17,Palmer - Converse Middle,02270305, 19.0, 100.0, 95, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Palmer - Old Mill Pond,02270008, 55.1, 100.0, 401, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Palmer - Palmer High,02270505, 42.3, 99.5, 236, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 76.8, 97.4, 207, 99.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.5, 52.6, 108, 91.7, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Captain Samuel Brown,02290005, 33.4, 100.0, 151, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Center,02290015, 28.7, 100.0, 123, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - J Henry Higgins Middle,02290305, 94.0, 100.0, 606, 96.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - John E Burke,02290007, 20.2, 100.0, 93, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - John E. McCarthy,02290016, 24.5, 100.0, 111, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 127.1, 97.6, 600, 99.3, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - South Memorial,02290035, 27.4, 96.4, 126, 96.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - Thomas Carroll,02290010, 42.5, 100.0, 186, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - West Memorial,02290045, 20.0, 100.0, 92, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Peabody - William A Welch Sr,02290027, 24.6, 100.0, 102, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Pelham - Pelham Elementary,02300005, 11.7, 100.0, 57, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Bryantville Elementary,02310003, 34.6, 100.0, 166, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Hobomock Elementary,02310010, 31.6, 100.0, 111, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - North Pembroke Elementary,02310015, 38.5, 100.0, 175, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Pembroke Community Middle School,02310305, 33.6, 100.0, 205, 99.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Pembroke - Pembroke High School,02310505, 66.5, 97.0, 328, 99.7, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 15.1, 100.0, 52, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Dr John C Page School,07450015, 27.3, 100.0, 116, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Elmer S Bagnall,07450005, 40.5, 100.0, 174, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Helen R Donaghue School,07450010, 21.8, 100.0, 81, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Pentucket Regional Middle,07450405, 40.1, 100.0, 164, 99.4, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 58.6, 100.0, 342, 99.7, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Petersham - Petersham Center,02340005, 11.5, 91.3, 47, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 11.9, 50.4, 72, 33.3, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 14.2, 42.3, 59, 45.8, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 50.6, 71.7, 166, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 32.2, 59.9, 116, 100.0, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 15.1, 100.0, 61, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Northfield Elementary,07500008, 16.9, 100.0, 73, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 5.5, 100.0, 27, 100.0, 7.1 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 42.2, 100.0, 250, 99.2, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley - Warwick Community School,07500009, 5.7, 100.0, 23, 100.0, 10.0 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 60.7, 69.9, 188, 100.0, 7.8 to 1 +NA,NA,a-exp-i3,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 40.6, 74.7, 311, 88.7, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Allendale,02360010, 22.0, 95.4, 163, 96.9, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Crosby,02360065, 33.0, 93.9, 181, 97.2, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Egremont,02360035, 29.0, 100.0, 197, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - John T Reid Middle,02360305, 54.4, 100.0, 304, 97.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Morningside Community School,02360055, 33.0, 96.9, 209, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Pittsfield High,02360505, 84.7, 94.5, 379, 86.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 15.0, 100.0, 98, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Silvio O Conte Community,02360105, 30.0, 96.7, 169, 97.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Stearns,02360090, 15.6, 93.6, 104, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Taconic High,02360510, 75.0, 98.7, 385, 82.1, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 53.5, 100.0, 292, 88.7, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Pittsfield - Williams,02360100, 21.4, 100.0, 145, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Plainville - Anna Ware Jackson,02380010, 25.3, 98.9, 170, 88.2, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 18.8, 98.9, 120, 87.5, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Cold Spring,02390005, 21.7, 100.0, 121, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Federal Furnace School,02390011, 36.8, 100.0, 298, 93.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Hedge,02390010, 20.6, 97.1, 110, 89.1, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Indian Brook,02390012, 43.1, 99.1, 248, 96.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Manomet Elementary,02390015, 26.3, 96.2, 145, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 44.2, 100.0, 245, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 81.1, 100.0, 369, 95.1, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 31, 90.3, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth North High,02390505, 103.4, 100.0, 565, 93.3, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth South High,02390515, 108.1, 99.0, 419, 92.6, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - Plymouth South Middle,02390305, 67.0, 100.0, 346, 91.9, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - South Elementary,02390046, 43.5, 97.7, 274, 94.2, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Plymouth - West Elementary,02390047, 33.8, 100.0, 281, 82.6, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Plympton - Dennett Elementary,02400010, 17.4, 100.0, 84, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 109.3, 77.4, 367, 96.7, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Provincetown - Provincetown Schools,02420020, 18.6, 100.0, 81, 88.9, 6.9 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Hardwick Elementary,07530005, 12.2, 100.0, 67, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Hubbardston Center,07530010, 16.9, 100.0, 94, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - IB School of Quabbin,07530515, .8, 100.0, 9, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - New Braintree Grade,07530020, 5.6, 100.0, 29, 100.0, 19.3 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Oakham Center,07530025, 9.7, 100.0, 48, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Quabbin Regional High School,07530505, 46.5, 95.7, 366, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 24.6, 100.0, 207, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Quabbin - Ruggles Lane,07530030, 23.2, 100.0, 117, 95.7, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 30.1, 95.8, 130, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 16.6, 100.0, 92, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - Warren Elementary,07780005, 34.5, 84.1, 161, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 18.0, 94.5, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 12.0, 100.0, 32, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Atherton Hough,02430040, 22.5, 100.0, 146, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Atlantic Middle,02430305, 33.3, 100.0, 178, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 24.1, 100.0, 151, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Broad Meadows Middle,02430310, 28.3, 100.0, 159, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Central Middle,02430315, 42.5, 100.0, 235, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 22.5, 100.0, 141, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 44.4, 100.0, 232, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Francis W Parker,02430075, 25.2, 100.0, 144, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 37.9, 100.0, 193, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Merrymount,02430060, 23.0, 100.0, 148, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Montclair,02430065, 28.8, 100.0, 176, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - North Quincy High,02430510, 89.4, 97.8, 400, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Point Webster Middle,02430325, 29.3, 100.0, 169, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Quincy High,02430505, 115.6, 99.6, 534, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Reay E Sterling Middle,02430320, 29.9, 100.0, 152, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Snug Harbor Community School,02430090, 33.2, 100.0, 239, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Squantum,02430095, 25.4, 100.0, 202, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Quincy - Wollaston School,02430110, 24.6, 100.0, 143, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 58.5, 98.3, 456, 93.6, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Ralph C Mahar - The Gateway to College,07550525, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 25.1, 100.0, 78, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - J F Kennedy Elementary,02440018, 43.5, 100.0, 174, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Margaret L Donovan,02440015, 33.2, 100.0, 108, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Martin E Young Elementary,02440040, 28.6, 100.0, 88, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Randolph Community Middle,02440410, 57.7, 100.0, 248, 100.0, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Randolph - Randolph High,02440505, 57.4, 98.3, 263, 98.5, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Alice M Barrows,02460002, 22.5, 100.0, 113, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Arthur W Coolidge Middle,02460305, 38.0, 100.0, 145, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Birch Meadow,02460005, 31.5, 100.0, 120, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Reading - J Warren Killam,02460017, 27.5, 100.0, 135, 100.0, 15.4 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Joshua Eaton,02460010, 29.0, 100.0, 139, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Reading - RISE PreSchool,02460001, 7.8, 100.0, 40, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Reading Memorial High,02460505, 85.3, 100.0, 387, 99.7, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Walter S Parker Middle,02460310, 46.8, 100.0, 182, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Reading - Wood End Elementary School,02460020, 22.2, 100.0, 103, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Revere - A. C. Whelan Elementary School,02480003, 51.0, 100.0, 403, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 404, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 29.0, 96.6, 258, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Garfield Elementary School,02480056, 56.5, 100.0, 468, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Garfield Middle School,02480057, 43.5, 100.0, 223, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Paul Revere,02480050, 35.0, 100.0, 297, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Revere High,02480505, 124.1, 98.4, 651, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Rumney Marsh Academy,02480014, 47.5, 100.0, 183, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Seacoast School,02480520, 13.2, 100.0, 102, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 43.1, 100.0, 432, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Revere - Susan B. Anthony Middle School,02480305, 45.0, 100.0, 137, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Richmond - Richmond Consolidated,02490005, 18.8, 98.4, 93, 92.5, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 52.1, 65.5, 271, 99.6, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 18.4, 94.4, 112, 99.1, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Rochester - Rochester Memorial,02500005, 34.8, 100.0, 150, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - Jefferson Elementary School,02510060, 19.5, 100.0, 95, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - John W Rogers Middle,02510305, 48.7, 100.0, 273, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - Memorial Park,02510020, 16.3, 100.0, 92, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - R Stewart Esten,02510025, 17.4, 100.0, 99, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Rockland - Rockland Senior High,02510505, 51.3, 100.0, 223, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Rockport - Rockport Elementary,02520005, 29.7, 100.0, 114, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Rockport - Rockport High,02520510, 30.7, 100.0, 148, 98.0, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Rockport - Rockport Middle,02520305, 24.8, 100.0, 131, 96.9, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Rowe - Rowe Elementary,02530005, 7.0, 100.0, 31, 74.2, 8.4 to 1 +NA,NA,a-exp-i3,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 111.2, 46.0, 277, 87.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 65.8, 90.7, 416, 99.3, 24.0 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Bates,02580003, 25.0, 100.0, 126, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Carlton,02580015, 24.7, 100.0, 95, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Collins Middle,02580305, 53.4, 100.0, 211, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Horace Mann Laboratory,02580030, 26.2, 100.0, 111, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Nathaniel Bowditch,02580025, 48.6, 91.8, 213, 81.2, 9.1 to 1 +NA,NA,a-exp-i3,2016-17,Salem - New Liberty Innovation School,02580510, 4.6, 100.0, 11, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Salem Early Childhood,02580001, 8.0, 100.0, 31, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Salem High,02580505, 104.9, 95.4, 339, 97.1, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Salem Prep High School,02580515, 5.4, 100.0, 137, 94.2, 2.4 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Saltonstall School,02580050, 34.9, 97.1, 231, 98.3, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Salem - Witchcraft Heights,02580070, 38.0, 100.0, 174, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 43.1, 75.1, 147, 100.0, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Forestdale School,02610002, 55.7, 99.5, 238, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Oak Ridge,02610025, 63.4, 100.0, 381, 95.5, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Sandwich High,02610505, 61.3, 97.3, 250, 98.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Sandwich - Sandwich STEM Academy,02610305, 34.6, 99.0, 173, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Ballard School,02620001, 5.5, 100.0, 48, 100.0, 20.1 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Belmonte Saugus Middle,02620305, 57.1, 100.0, 276, 99.6, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Douglas Waybright,02620067, 15.8, 100.0, 81, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Lynnhurst,02620040, 18.6, 100.0, 95, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Oaklandvale,02620050, 15.2, 100.0, 84, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Saugus High,02620505, 53.7, 100.0, 262, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Saugus - Veterans Memorial,02620065, 41.1, 100.0, 266, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Savoy - Emma L Miller Elementary School,02630010, 4.7, 100.0, 23, 100.0, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Cushing Elementary,02640007, 32.2, 100.0, 138, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Gates Intermediate School,02640305, 47.8, 100.0, 191, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Hatherly Elementary,02640010, 29.1, 100.0, 119, 93.3, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Jenkins Elementary School,02640015, 36.7, 100.0, 166, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Scituate High School,02640505, 65.1, 99.4, 289, 97.2, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Scituate - Wampatuck Elementary,02640020, 34.0, 100.0, 155, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 41.7, 100.0, 165, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - George R Martin,02650007, 33.5, 100.0, 139, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - Mildred Aitken School,02650015, 29.0, 100.0, 116, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Seekonk - Seekonk High,02650505, 46.3, 99.6, 190, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 49.6, 99.5, 173, 94.8, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Sharon - Cottage Street,02660005,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - East Elementary,02660010,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - Heights Elementary,02660015,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - Sharon High,02660505,"","","","","" +NA,NA,a-exp-i3,2016-17,Sharon - Sharon Middle,02660305,"","","","","" +NA,NA,a-exp-i3,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.2, 100.0, 314, 99.4, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Sherborn - Pine Hill,02690010, 31.8, 99.8, 174, 98.3, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Beal School,02710005, 17.0, 94.1, 84, 100.0, 18.7 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Calvin Coolidge,02710015, 22.1, 100.0, 135, 100.0, 18.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Floral Street School,02710020, 35.2, 100.0, 236, 100.0, 20.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Oak Middle School,02710030, 62.6, 100.0, 313, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Parker Road Preschool,02710040, 9.3, 100.0, 24, 100.0, 25.0 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Sherwood Middle School,02710305, 66.7, 97.2, 408, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 113.1, 99.9, 599, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Spring Street,02710035, 19.1, 100.0, 121, 100.0, 19.5 to 1 +NA,NA,a-exp-i3,2016-17,Shrewsbury - Walter J Paton,02710025, 19.5, 94.9, 123, 100.0, 18.8 to 1 +NA,NA,a-exp-i3,2016-17,Shutesbury - Shutesbury Elementary,02720005, 15.7, 100.0, 45, 100.0, 7.7 to 1 +NA,NA,a-exp-i3,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 34.8, 100.0, 181, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Silver Lake - Silver Lake Regional High,07600505, 89.3, 98.9, 344, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 42.9, 100.0, 255, 97.6, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.1, 93.8, 261, 91.6, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - Chace Street,02730005, 26.0, 100.0, 131, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - North Elementary,02730008, 30.3, 100.0, 191, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - Somerset Middle School,02730305, 48.6, 100.0, 227, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Somerset - South,02730015, 18.2, 100.0, 94, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 83.5, 100.0, 419, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.4, 100.0, 217, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Arthur D Healey,02740075, 41.8, 100.0, 200, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Benjamin G Brown,02740015, 15.9, 100.0, 88, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Capuano Early Childhood Center,02740005, 26.9, 100.0, 133, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - E Somerville Community,02740111, 54.8, 100.0, 249, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Full Circle High School,02740510, 12.3, 100.0, 8, 100.0, 4.9 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - John F Kennedy,02740083, 39.0, 100.0, 198, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Next Wave Junior High,02740410, 6.4, 100.0, 3, 100.0, 2.5 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Somerville High,02740505, 123.5, 98.4, 487, 99.6, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - West Somerville Neighborhood,02740115, 24.9, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Somerville - Winter Hill Community,02740120, 40.5, 100.0, 160, 96.9, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 44.6, 100.0, 207, 98.1, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - Mosier,02780020, 25.3, 95.9, 141, 85.1, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - Plains Elementary,02780015, 19.0, 100.0, 85, 100.0, 18.1 to 1 +NA,NA,a-exp-i3,2016-17,South Hadley - South Hadley High,02780505, 45.5, 98.1, 213, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 75.0, 98.7, 208, 98.1, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 64.6, 90.5, 298, 95.6, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 61.4, 96.7, 144, 99.3, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Southampton - William E Norris,02750005, 35.5, 100.0, 155, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 21.2, 100.0, 97, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - Margaret A Neary,02760020, 24.6, 100.0, 109, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - Mary E Finn School,02760008, 25.9, 100.0, 124, 100.0, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Southborough - P Brent Trottier,02760305, 40.4, 100.0, 219, 99.1, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Charlton Street,02770005, 35.0, 97.1, 154, 98.1, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Eastford Road,02770010, 18.0, 100.0, 97, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Southbridge High School,02770515, 44.0, 95.5, 192, 80.2, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - Southbridge Middle School,02770315, 45.0, 97.8, 202, 93.6, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Southbridge - West Street,02770020, 33.5, 100.0, 168, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 116.0, 96.9, 379, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 36.3, 100.0, 174, 100.0, 8.0 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - New Marlborough Central,07650018, 6.8, 100.0, 69, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - South Egremont,07650030, 2.3, 100.0, 19, 100.0, 5.6 to 1 +NA,NA,a-exp-i3,2016-17,Southern Berkshire - Undermountain,07650035, 29.7, 100.0, 170, 98.2, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 109.9, 100.0, 326, 100.0, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 5.2, 100.0, 45, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 25.2, 100.0, 149, 100.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 57.3, 98.3, 328, 93.3, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 13.0, 100.0, 131, 100.0, 26.0 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 33.2, 100.0, 181, 98.9, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 16.9, 100.0, 86, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 31.4, 100.0, 221, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 168, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.4, 96.8, 171, 96.5, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Alice B Beal Elementary,02810175, 19.6, 100.0, 157, 98.7, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Arthur T Talmadge,02810165, 22.7, 95.7, 135, 77.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Balliet Middle School,02810360, 11.4, 91.3, 41, 85.4, 4.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Brightwood,02810025, 25.9, 96.0, 156, 93.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 23.3, 84.7, 125, 67.2, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 23.8, 71.7, 132, 47.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 20.5, 74.9, 165, 55.2, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Conservatory of the Arts,02810475, 28.3, 94.6, 167, 70.1, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Daniel B Brunton,02810035, 38.2, 97.4, 212, 99.5, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Early Childhood Education Center,02810001, 15.0, 86.7, 23, 91.3, 9.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Edward P. Boland School,02810010, 56.0, 98.2, 309, 88.7, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Elias Brookings,02810030, 30.5, 93.2, 162, 86.4, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Forest Park Middle,02810325, 55.0, 96.3, 336, 83.3, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Frank H Freedman,02810075, 20.1, 100.0, 140, 90.0, 15.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Frederick Harris,02810080, 51.1, 96.1, 275, 93.5, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0, 2, 0.0, 900.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0, 2, 0.0,###### to 1 +NA,NA,a-exp-i3,2016-17,Springfield - German Gerena Community School,02810195, 55.3, 98.2, 404, 89.6, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Glenwood,02810065, 23.1, 100.0, 146, 95.2, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Glickman Elementary,02810068, 29.1, 89.8, 191, 88.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - High School Of Commerce,02810510, 94.4, 86.2, 497, 79.9, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Hiram L Dorman,02810050, 25.4, 100.0, 145, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Homer Street,02810085, 33.2, 97.0, 190, 95.3, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Indian Orchard Elementary,02810100, 51.8, 88.5, 287, 91.6, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - John F Kennedy Middle,02810328, 39.0, 76.7, 87, 58.6, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - John J Duggan Middle,02810320, 57.5, 92.7, 505, 73.7, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Kensington International School,02810110, 28.5, 100.0, 168, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Liberty,02810115, 25.2, 92.2, 124, 91.1, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Liberty Preparatory Academy,02810560, 3.4, 100.0, 12, 83.3, 3.8 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Lincoln,02810120, 33.0, 94.0, 168, 92.3, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - M Marcus Kiley Middle,02810330, 55.4, 85.6, 428, 83.4, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Margaret C Ells,02810060, 19.2, 84.4, 71, 94.4, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 24.4, 100.0, 116, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 123, 91.1, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary M Walsh,02810155, 25.9, 96.1, 146, 92.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Mary O Pottenger,02810145, 33.2, 100.0, 179, 94.4, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Milton Bradley School,02810023, 43.1, 100.0, 263, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Rebecca M Johnson,02810055, 58.2, 89.8, 348, 82.8, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 138.3, 93.5, 749, 76.4, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - STEM Middle Academy,02810350, 18.4, 83.1, 96, 68.8, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Samuel Bowles,02810020, 29.1, 93.1, 168, 94.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - South End Middle School,02810355, 20.0, 92.8, 80, 82.5, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Central High,02810500, 145.8, 94.5, 736, 91.2, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield High School,02810570, 11.5, 91.1, 124, 73.4, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 86.4, 581, 72.8, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 11.1, 71.8, 121, 65.3, 4.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Public Day High School,02810550, 22.3, 68.3, 101, 64.4, 5.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Springfield Public Day Middle School,02810345, 14.4, 86.2, 82, 90.2, 3.9 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Sumner Avenue,02810160, 42.4, 97.5, 285, 87.4, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 97.7, 252, 93.7, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Thomas M Balliet,02810015, 22.2, 100.0, 128, 91.4, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Van Sickle Academy,02810480, 25.2, 63.8, 114, 43.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 25.2, 87.9, 233, 75.5, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Warner,02810180, 23.2, 91.8, 142, 88.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - Washington,02810185, 40.4, 95.1, 195, 94.4, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - White Street,02810190, 27.6, 100.0, 168, 89.9, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield - William N. DeBerry,02810045, 26.3, 88.5, 128, 79.7, 11.3 to 1 +NA,NA,a-exp-i3,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 13.0, 61.5, 31, 51.6, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Colonial Park,02840005, 19.8, 100.0, 82, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Robin Hood,02840025, 24.2, 100.0, 102, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - South,02840030, 22.1, 100.0, 96, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Stoneham Central Middle School,02840405, 63.4, 100.0, 308, 99.7, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoneham - Stoneham High,02840505, 56.2, 100.0, 289, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 13, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Helen Hansen Elementary,02850010, 22.3, 100.0, 123, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Joseph H Gibbons,02850025, 27.6, 100.0, 142, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 27.4, 100.0, 153, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - O'Donnell Middle School,02850405, 68.8, 100.0, 341, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - South Elementary,02850015, 20.8, 100.0, 93, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - Stoughton High,02850505, 92.7, 100.0, 459, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Stoughton - West Elementary,02850020, 33.1, 100.0, 123, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Sturbridge - Burgess Elementary,02870005, 67.1, 100.0, 278, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 89.2, 42.6, 411, 100.0, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 77.5, 100.0, 303, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - General John Nixon Elementary,02880025, 26.1, 100.0, 140, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Israel Loring School,02880015, 33.9, 100.0, 182, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 148, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Sudbury - Peter Noyes,02880030, 40.3, 100.0, 196, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Sunderland - Sunderland Elementary,02890005, 21.3, 99.1, 126, 99.2, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton Early Learning,02900003, 20.0, 100.0, 58, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton Elementary,02900005, 21.7, 100.0, 82, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton High School,02900510, 32.7, 100.0, 153, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Sutton - Sutton Middle School,02900305, 23.8, 95.4, 121, 98.3, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Clarke,02910005, 18.9, 100.0, 84, 100.0, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Hadley,02910010, 24.7, 100.0, 124, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Stanley,02910020, 23.4, 100.0, 90, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Swampscott High,02910505, 62.0, 98.4, 275, 96.7, 10.9 to 1 +NA,NA,a-exp-i3,2016-17,Swampscott - Swampscott Middle,02910305, 64.3, 98.4, 402, 98.8, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Elizabeth S Brown,02920006, 21.2, 100.0, 203, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Gardner,02920015, 16.9, 100.0, 88, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Joseph Case High,02920505, 48.8, 100.0, 192, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Joseph Case Jr High,02920305, 40.1, 100.0, 211, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Joseph G Luther,02920020, 14.6, 100.0, 195, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 16.2, 100.0, 109, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 37.0, 100.0, 424, 97.9, 30.2 to 1 +NA,NA,a-exp-i3,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 45.1, 100.0, 199, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 77.4, 100.0, 663, 100.0, 9.8 to 1 +NA,NA,a-exp-i3,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 11.8, 100.0, 1, 100.0, 42.2 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Benjamin Friedman Middle,02930315, 48.5, 100.0, 278, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - East Taunton Elementary,02930010, 43.2, 100.0, 224, 100.0, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Edmund Hatch Bennett,02930007, 23.1, 100.0, 102, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 11.0, 100.0, 33, 100.0, 29.9 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 218, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - H H Galligan,02930057, 25.4, 100.0, 88, 100.0, 9.7 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Hopewell,02930035, 24.6, 100.0, 102, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - John F Parker Middle,02930305, 34.6, 100.0, 125, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Joseph C Chamberlain,02930008, 35.0, 100.0, 201, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Joseph H Martin,02930042, 40.1, 100.0, 248, 100.0, 18.0 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Mulcahey Elementary School,02930015, 32.9, 100.0, 149, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Taunton Alternative High School,02930525, 6.2, 100.0, 124, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Taunton - Taunton High,02930505, 80.1, 99.0, 715, 99.2, 31.2 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - Heath-Brook,02950010, 22.5, 100.0, 110, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - John F. Ryan,02950023, 46.8, 100.0, 194, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - John W. Wynn Middle,02950305, 49.4, 98.7, 194, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - L F Dewing,02950001, 35.3, 100.0, 181, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - Louise Davy Trahan,02950025, 18.2, 100.0, 96, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - North Street,02950020, 19.1, 100.0, 104, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 67.2, 100.0, 270, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Tisbury - Tisbury Elementary,02960005, 35.5, 100.0, 150, 100.0, 9.0 to 1 +NA,NA,a-exp-i3,2016-17,Topsfield - Proctor Elementary,02980005, 21.3, 100.0, 104, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Topsfield - Steward Elementary,02980010, 30.4, 100.0, 161, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 85.9, 96.5, 237, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Newbury Elementary,07730020, 35.2, 100.0, 136, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Pine Grove,07730025, 34.3, 100.0, 139, 97.1, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Salisbury Elementary,07730015, 42.6, 100.0, 165, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Triton Regional High School,07730505, 61.3, 96.7, 281, 99.6, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Triton - Triton Regional Middle School,07730405, 31.1, 100.0, 169, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Truro - Truro Central,03000005, 15.9, 100.0, 73, 100.0, 7.3 to 1 +NA,NA,a-exp-i3,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 56.2, 100.0, 318, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Tyngsborough - Tyngsborough High School,03010505, 37.6, 100.0, 337, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 34.0, 100.0, 193, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 38.6, 79.2, 100, 79.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 62.8, 85.7, 158, 81.6, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 5.6, 100.0, 16, 75.0, 7.8 to 1 +NA,NA,a-exp-i3,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 39.1, 99.5, 152, 98.7, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 68.9, 97.1, 121, 97.5, 10.3 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Gateway to College,03040515, .0, 0.0, 0, 0.0,N/A +NA,NA,a-exp-i3,2016-17,Uxbridge - McCloskey Middle School,03040015, 31.8, 100.0, 133, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Taft Early Learning Center,03040005, 33.9, 100.0, 134, 98.5, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Uxbridge High,03040505, 37.9, 100.0, 188, 97.3, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Uxbridge - Whitin Elementary School,03040020, 27.3, 100.0, 126, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 27.5, 54.5, 72, 65.3, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Central Tree Middle,07750310, 27.9, 100.0, 176, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Chocksett Middle School,07750315, 28.4, 100.0, 170, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Davis Hill Elementary,07750018, 27.9, 100.0, 132, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Dawson,07750020, 30.9, 100.0, 168, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 40, 100.0, 18.8 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Glenwood Elementary School,07750060, 26.9, 100.0, 113, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Houghton Elementary,07750027, 27.5, 100.0, 122, 100.0, 14.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Leroy E.Mayo,07750032, 28.9, 100.0, 148, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Mountview Middle,07750305, 45.3, 100.0, 274, 100.0, 17.9 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 92, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Paxton Center,07750040, 32.6, 100.0, 186, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Thomas Prince,07750045, 23.0, 100.0, 139, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Wachusett - Wachusett Regional High,07750505, 145.1, 100.0, 678, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Dolbeare,03050005, 32.8, 100.0, 147, 96.6, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 45, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Galvin Middle School,03050310, 83.1, 100.0, 322, 98.8, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Greenwood,03050020, 15.0, 100.0, 70, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Wakefield Memorial High,03050505, 79.2, 100.0, 335, 99.7, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Walton,03050040, 12.0, 100.0, 63, 92.1, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Wakefield - Woodville School,03050015, 34.4, 100.0, 143, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Wales - Wales Elementary,03060005, 10.4, 100.0, 46, 100.0, 15.8 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Bird Middle,03070305, 37.1, 100.0, 138, 100.0, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Boyden,03070010, 28.9, 100.0, 136, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 19, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 34.0, 100.0, 150, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Elm Street School,03070005, 31.2, 100.0, 142, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Fisher,03070015, 36.4, 100.0, 153, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Old Post Road,03070018, 32.5, 100.0, 142, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Walpole - Walpole High,03070505, 78.3, 100.0, 345, 100.0, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 36.3, 100.0, 185, 100.0, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 36.7, 100.0, 200, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 38.9, 100.0, 195, 100.0, 11.5 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - John F Kennedy Middle,03080404, 56.7, 100.0, 297, 100.0, 8.9 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - John W. McDevitt Middle School,03080415, 56.2, 100.0, 240, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Northeast Elementary School,03080040, 44.0, 100.0, 248, 98.4, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 32.8, 100.0, 188, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 2.4, 100.0, 14, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - Waltham Sr High,03080505, 127.8, 100.0, 514, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Waltham - William F. Stanley Elementary School,03080005, 46.3, 100.0, 223, 100.0, 9.9 to 1 +NA,NA,a-exp-i3,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 28.4, 100.0, 132, 97.7, 14.6 to 1 +NA,NA,a-exp-i3,2016-17,Ware - Ware Junior/Senior High School,03090505, 37.8, 97.4, 164, 91.5, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Ware - Ware Middle School,03090305, 23.4, 100.0, 103, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - John William Decas,03100003, 45.6, 100.0, 210, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Minot Forest,03100017, 33.6, 100.0, 150, 98.7, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 2.3, 78.5, 35, 60.0, 26.2 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Wareham Middle,03100305, 52.7, 100.0, 255, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Wareham - Wareham Senior High,03100505, 54.5, 99.1, 302, 97.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Cunniff,03140015, 27.6, 100.0, 109, 100.0, 10.7 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Hosmer,03140020, 51.9, 100.0, 220, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - James Russell Lowell,03140025, 36.8, 100.0, 145, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Watertown High,03140505, 64.9, 98.5, 250, 100.0, 10.2 to 1 +NA,NA,a-exp-i3,2016-17,Watertown - Watertown Middle,03140305, 50.9, 100.0, 245, 100.0, 11.2 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Claypit Hill School,03150005, 38.6, 100.0, 178, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Happy Hollow School,03150015, 27.9, 100.0, 133, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Loker School,03150020, 18.0, 100.0, 83, 100.0, 14.3 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Wayland High School,03150505, 69.4, 96.6, 344, 98.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Wayland - Wayland Middle School,03150305, 53.0, 100.0, 327, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Webster - Bartlett High School,03160505, 39.8, 97.5, 165, 97.6, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,Webster - Park Avenue Elementary,03160015, 46.5, 100.0, 268, 100.0, 18.2 to 1 +NA,NA,a-exp-i3,2016-17,Webster - Webster Middle School,03160315, 46.0, 97.8, 151, 98.7, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Ernest F Upham,03170050, 16.6, 100.0, 74, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Hunnewell,03170025, 16.2, 100.0, 90, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - John D Hardy,03170020, 23.1, 100.0, 118, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Joseph E Fiske,03170015, 32.1, 100.0, 157, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Katharine Lee Bates,03170005, 25.1, 100.0, 131, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Schofield,03170045, 23.4, 100.0, 135, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Sprague Elementary School,03170048, 24.2, 100.0, 138, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Wellesley Middle,03170305, 97.6, 100.0, 540, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellesley - Wellesley Sr High,03170505, 118.9, 99.8, 546, 99.6, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Wellfleet - Wellfleet Elementary,03180005, 17.0, 100.0, 52, 100.0, 6.6 to 1 +NA,NA,a-exp-i3,2016-17,West Boylston - Major Edwards Elementary,03220005, 33.4, 100.0, 148, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 32.1, 100.0, 232, 100.0, 16.0 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - Howard School,03230305, 20.2, 100.0, 115, 89.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - Rose L Macdonald,03230003, 15.7, 100.0, 124, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - Spring Street School,03230005, 7.2, 100.0, 33, 75.8, 19.5 to 1 +NA,NA,a-exp-i3,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 45.5, 100.0, 254, 96.1, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - 21st Century Skills Academy,03320515, 3.9, 100.0, 18, 100.0, 3.6 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 18, 100.0, 20.0 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - John Ashley,03320005, 16.4, 100.0, 84, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - John R Fausey,03320010, 34.6, 100.0, 177, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Memorial,03320025, 17.3, 100.0, 80, 100.0, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Mittineague,03320030, 15.2, 100.0, 55, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Philip G Coburn,03320007, 46.5, 100.0, 183, 100.0, 11.1 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - Tatham,03320040, 16.3, 100.0, 74, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - West Springfield High,03320505, 92.9, 100.0, 548, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,West Springfield - West Springfield Middle,03320305, 71.6, 100.0, 401, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Annie E Fales,03210010, 24.9, 100.0, 90, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 36.0, 100.0, 113, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - J Harding Armstrong,03210005, 30.3, 100.0, 107, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Mill Pond School,03210045, 58.2, 98.3, 235, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 54.6, 100.0, 285, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Westborough - Westborough High,03210505, 79.9, 100.0, 464, 100.0, 13.2 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 70, 100.0, 14.5 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 8.0, 100.0, 22, 100.0, 21.9 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Franklin Ave,03250015, 17.0, 100.0, 84, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Highland,03250025, 32.3, 100.0, 153, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Munger Hill,03250033, 28.1, 100.0, 138, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - North Middle School,03250305, 52.0, 100.0, 231, 74.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Paper Mill,03250036, 28.5, 100.0, 147, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Russell Elementary School,03250055, 14.0, 100.0, 70, 100.0, 13.1 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - South Middle School,03250310, 49.5, 100.0, 174, 84.5, 11.9 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Southampton Road,03250040, 30.4, 100.0, 164, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Westfield High,03250505, 90.9, 100.0, 400, 92.8, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westfield - Westfield Technical Academy,03250605, 56.6, 96.5, 137, 71.5, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Abbot Elementary,03260004, 25.4, 100.0, 124, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Blanchard Middle,03260310, 49.1, 100.0, 235, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Col John Robinson,03260025, 17.3, 100.0, 76, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Day Elementary,03260007, 25.9, 100.0, 124, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 25.0, 100.0, 125, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Millennium Elementary,03260013, 6.5, 100.0, 16, 100.0, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Nabnasset,03260015, 21.9, 100.0, 127, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Rita E. Miller Elementary School,03260055, 22.7, 100.0, 100, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Stony Brook School,03260330, 51.2, 100.0, 250, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Westford - Westford Academy,03260505, 118.9, 100.0, 560, 99.8, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Westhampton - Westhampton Elementary School,03270005, 12.4, 91.9, 43, 74.4, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Country,03300010, 23.7, 100.0, 122, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Field Elementary School,03300012, 24.8, 100.0, 129, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Weston High,03300505, 69.9, 99.6, 293, 97.3, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Weston Middle,03300305, 48.6, 99.5, 247, 97.2, 10.6 to 1 +NA,NA,a-exp-i3,2016-17,Weston - Woodland,03300015, 22.3, 97.4, 127, 85.8, 13.6 to 1 +NA,NA,a-exp-i3,2016-17,Westport - Alice A Macomber,03310015, 24.4, 100.0, 104, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Westport - Westport Elementary,03310030, 35.8, 98.0, 188, 98.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Westport - Westport Junior/Senior High School,03310515, 34.9, 100.0, 290, 100.0, 16.5 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Deerfield School,03350010, 15.9, 100.0, 78, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Downey,03350012, 19.9, 100.0, 81, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - E W Thurston Middle,03350305, 59.0, 100.0, 280, 100.0, 13.5 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Martha Jones,03350017, 19.1, 100.0, 86, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Paul Hanlon,03350015, 14.3, 100.0, 64, 100.0, 15.5 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Westwood High,03350505, 78.5, 98.8, 403, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Westwood - William E Sheehan,03350025, 25.1, 100.0, 112, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Abigail Adams Middle School,03360310, 67.7, 100.0, 383, 96.9, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Academy Avenue,03360005, 18.7, 100.0, 96, 100.0, 17.0 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Frederick C Murphy,03360050, 13.9, 100.0, 75, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 11.9, 100.0, 49, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Lawrence W Pingree,03360065, 13.7, 100.0, 67, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 72.2, 100.0, 436, 95.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Ralph Talbot,03360085, 16.0, 100.0, 83, 100.0, 17.7 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Thomas V Nash,03360060, 10.3, 100.0, 51, 100.0, 22.5 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 21.2, 100.0, 106, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Wessagusset,03360110, 17.2, 100.0, 96, 100.0, 17.1 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - Weymouth High School,03360505, 139.5, 100.0, 661, 96.1, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Weymouth - William Seach,03360080, 20.1, 100.0, 86, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Whately - Whately Elementary,03370005, 11.3, 99.1, 75, 98.7, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 29.3, 100.0, 119, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Indian Head,07800035, 25.1, 100.0, 92, 100.0, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - John H Duval,07800030, 27.9, 100.0, 134, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Louise A Conley,07800010, 33.5, 100.0, 152, 100.0, 16.7 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 27.1, 100.0, 103, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.8, 98.6, 298, 97.3, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Whitman-Hanson - Whitman Middle,07800310, 38.2, 100.0, 151, 100.0, 15.7 to 1 +NA,NA,a-exp-i3,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.2, 97.4, 461, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 15.7, 100.0, 68, 79.4, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Williamstown - Williamstown Elementary,03410010, 38.2, 97.4, 175, 97.1, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Boutwell,03420005, 9.7, 100.0, 58, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - North Intermediate,03420060, 20.2, 100.0, 89, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Shawsheen Elementary,03420025, 31.0, 100.0, 125, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - West Intermediate,03420080, 21.1, 100.0, 91, 100.0, 12.1 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Wildwood,03420015, 14.0, 100.0, 68, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Wilmington High,03420505, 72.7, 100.0, 346, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Wilmington Middle School,03420330, 72.2, 97.2, 282, 100.0, 12.0 to 1 +NA,NA,a-exp-i3,2016-17,Wilmington - Woburn Street,03420020, 33.0, 100.0, 139, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Memorial,03430040, 20.0, 100.0, 99, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Murdock Academy for Success,03430405, .7, 100.0, 4, 100.0, 40.1 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Murdock High School,03430515, 27.5, 100.0, 116, 99.1, 10.5 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Murdock Middle School,03430315, 25.6, 100.0, 108, 100.0, 11.6 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Toy Town Elementary,03430050, 21.0, 100.0, 102, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 7, 100.0, 27.7 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Ambrose Elementary,03440045, 37.3, 97.3, 236, 100.0, 11.8 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Lincoln Elementary,03440005, 31.6, 100.0, 225, 100.0, 13.0 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Lynch Elementary,03440020, 44.3, 100.0, 293, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - McCall Middle,03440305, 82.7, 98.1, 335, 97.9, 13.7 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Muraco Elementary,03440040, 32.4, 100.0, 210, 100.0, 12.5 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 223, 100.0, 12.6 to 1 +NA,NA,a-exp-i3,2016-17,Winchester - Winchester High School,03440505, 90.2, 100.0, 472, 98.5, 14.1 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 30.6, 100.0, 133, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 40.4, 100.0, 161, 100.0, 11.7 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - Winthrop High School,03460505, 45.3, 100.0, 161, 98.1, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Winthrop - Winthrop Middle School,03460305, 34.8, 100.0, 274, 99.6, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Clyde Reeves,03470040, 30.0, 100.0, 185, 97.3, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 54.0, 100.0, 302, 100.0, 9.2 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Daniel P Hurld,03470020, 15.0, 100.0, 84, 100.0, 13.9 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Goodyear Elementary School,03470005, 25.1, 100.0, 126, 100.0, 12.8 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - John F Kennedy Middle School,03470405, 50.2, 100.0, 257, 98.1, 10.1 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Linscott-Rumford,03470025, 13.3, 100.0, 84, 100.0, 16.8 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Malcolm White,03470055, 23.4, 100.0, 119, 100.0, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Mary D Altavesta,03470065, 21.6, 100.0, 87, 100.0, 11.4 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Shamrock,03470043, 30.0, 100.0, 152, 100.0, 11.0 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Woburn High,03470505, 99.2, 100.0, 446, 100.0, 13.4 to 1 +NA,NA,a-exp-i3,2016-17,Woburn - Wyman,03470060, 13.6, 100.0, 77, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Belmont Street Community,03480020, 34.7, 100.0, 146, 100.0, 16.1 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Burncoat Middle School,03480405, 45.4, 97.8, 245, 100.0, 12.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Burncoat Senior High,03480503, 70.9, 99.3, 412, 98.1, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Burncoat Street,03480035, 20.3, 100.0, 108, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Canterbury,03480045, 26.2, 96.2, 123, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Chandler Elementary Community,03480050, 31.5, 100.0, 130, 100.0, 16.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Chandler Magnet,03480052, 44.5, 100.0, 228, 100.0, 10.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - City View,03480053, 34.6, 100.0, 165, 100.0, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Claremont Academy,03480350, 38.4, 99.2, 211, 99.1, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Clark St Community,03480055, 21.4, 100.0, 91, 100.0, 9.5 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Columbus Park,03480060, 28.7, 100.0, 162, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Doherty Memorial High,03480512, 90.7, 99.3, 496, 100.0, 17.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Elm Park Community,03480095, 33.5, 100.0, 159, 100.0, 14.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Flagg Street,03480090, 20.0, 100.0, 97, 100.0, 20.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Forest Grove Middle,03480415, 65.5, 100.0, 330, 100.0, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Francis J McGrath Elementary,03480177, 18.4, 100.0, 81, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Gates Lane,03480110, 43.3, 92.8, 223, 83.9, 13.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Goddard School/Science Technical,03480100, 34.3, 100.0, 156, 100.0, 15.1 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Grafton Street,03480115, 25.3, 98.7, 114, 94.7, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Head Start,03480002, 43.4, 45.2, 192, 46.9, 12.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Heard Street,03480136, 15.4, 100.0, 72, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 27.8, 100.0, 114, 100.0, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Lake View,03480145, 17.7, 100.0, 72, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Lincoln Street,03480160, 19.0, 100.0, 84, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - May Street,03480175, 19.4, 100.0, 142, 100.0, 17.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Midland Street,03480185, 16.1, 100.0, 68, 100.0, 15.0 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Nelson Place,03480200, 32.5, 100.0, 192, 100.0, 14.0 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Norrback Avenue,03480202, 38.5, 100.0, 229, 100.0, 14.7 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - North High,03480515, 90.5, 98.2, 501, 99.4, 14.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Quinsigamond,03480210, 44.1, 100.0, 216, 100.0, 18.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Rice Square,03480215, 26.9, 100.0, 115, 100.0, 15.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Roosevelt,03480220, 43.1, 97.7, 240, 97.5, 15.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - South High Community,03480520, 89.6, 95.3, 465, 96.3, 15.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Sullivan Middle,03480423, 70.1, 100.0, 330, 100.0, 12.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Tatnuck,03480230, 23.2, 100.0, 122, 100.0, 16.6 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Thorndyke Road,03480235, 21.4, 100.0, 84, 100.0, 17.5 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Union Hill School,03480240, 32.1, 100.0, 217, 100.0, 16.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - University Pk Campus School,03480285, 20.8, 100.0, 104, 100.0, 12.2 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Vernon Hill School,03480280, 31.5, 100.0, 162, 100.0, 17.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Wawecus Road School,03480026, 11.6, 100.0, 66, 100.0, 12.7 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - West Tatnuck,03480260, 19.7, 100.0, 126, 100.0, 17.3 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Woodland Academy,03480030, 37.1, 100.0, 151, 100.0, 16.9 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Worcester Arts Magnet School,03480225, 24.7, 98.7, 101, 100.0, 16.4 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Worcester East Middle,03480420, 55.0, 98.2, 307, 100.0, 14.8 to 1 +NA,NA,a-exp-i3,2016-17,Worcester - Worcester Technical High,03480605, 129.2, 98.5, 252, 100.0, 10.8 to 1 +NA,NA,a-exp-i3,2016-17,Worthington - R. H. Conwell,03490010, 6.4, 96.9, 47, 70.2, 9.4 to 1 +NA,NA,a-exp-i3,2016-17,Wrentham - Charles E Roderick,03500010, 33.1, 100.0, 115, 100.0, 13.3 to 1 +NA,NA,a-exp-i3,2016-17,Wrentham - Delaney,03500003, 44.1, 100.0, 151, 100.0, 13.4 to 1 +4.055,4.06,a-exp-i1,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 109.0, 97.8, 13.1 to 1, 81.1, 83.7 +5.0,5.0,a-exp-i1,2017-18,Abington - Abington Early Education Program,00010001, 3.0, 100.0, 28.0 to 1, 100.0, 100.0 +4.14,4.14,a-exp-i1,2017-18,Abington - Abington High,00010505, 38.7, 100.0, 13.4 to 1, 82.8, 87.1 +3.565,3.57,a-exp-i1,2017-18,Abington - Abington Middle School,00010405, 40.8, 100.0, 16.8 to 1, 71.3, 92.9 +4.34,4.34,a-exp-i1,2017-18,Abington - Beaver Brook Elementary,00010020, 22.7, 100.0, 18.7 to 1, 86.8, 100.0 +4.455,4.46,a-exp-i1,2017-18,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 17.4 to 1, 89.1, 100.0 +1.985,1.99,a-exp-i1,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 48.1, 70.5, 10.9 to 1, 39.7, 79.7 +4.445,4.45,a-exp-i1,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.8, 100.0, 14.8 to 1, 88.9, 95.7 +4.17,4.17,a-exp-i1,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 30.2, 100.0, 14.8 to 1, 83.4, 100.0 +4.7,4.7,a-exp-i1,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 26.6, 100.0, 16.1 to 1, 94.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 15.9 to 1, 100.0, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Acton-Boxborough - Luther Conant School,06000030, 29.2, 100.0, 15.1 to 1, 85.6, 100.0 +3.905,3.91,a-exp-i1,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 30.2, 100.0, 16.1 to 1, 78.1, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Acton-Boxborough - Merriam School,06000010, 31.6, 100.0, 15.8 to 1, 85.4, 93.7 +4.8100000000000005,4.81,a-exp-i1,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.6, 100.0, 15.1 to 1, 96.2, 100.0 +4.654999999999999,4.65,a-exp-i1,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.6, 100.0, 14.5 to 1, 93.1, 97.0 +4.35,4.35,a-exp-i1,2017-18,Acushnet - Acushnet Elementary School,00030025, 36.5, 100.0, 15.1 to 1, 87.0, 100.0 +4.825,4.83,a-exp-i1,2017-18,Acushnet - Albert F Ford Middle School,00030305, 29.0, 100.0, 14.3 to 1, 96.5, 96.5 +4.725,4.73,a-exp-i1,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 22.0, 100.0, 18.3 to 1, 94.5, 100.0 +3.845,3.85,a-exp-i1,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 30.1, 96.7, 13.9 to 1, 76.9, 90.4 +3.8649999999999998,3.87,a-exp-i1,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 28.2, 100.0, 14.2 to 1, 77.3, 96.4 +3.1350000000000002,3.14,a-exp-i1,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 82.0, 86.0, 12.1 to 1, 62.7, 70.2 +4.475,4.48,a-exp-i1,2017-18,Agawam - Agawam Early Childhood Center,00050003, 9.5, 100.0, 17.2 to 1, 89.5, 89.5 +4.535,4.54,a-exp-i1,2017-18,Agawam - Agawam High,00050505, 97.0, 100.0, 12.1 to 1, 90.7, 95.9 +4.595000000000001,4.6,a-exp-i1,2017-18,Agawam - Agawam Junior High,00050405, 60.7, 100.0, 9.4 to 1, 91.9, 95.2 +4.58,4.58,a-exp-i1,2017-18,Agawam - Benjamin J Phelps,00050020, 29.8, 100.0, 13.0 to 1, 91.6, 95.0 +4.68,4.68,a-exp-i1,2017-18,Agawam - Clifford M Granger,00050010, 20.3, 100.0, 13.8 to 1, 93.6, 100.0 +4.715,4.72,a-exp-i1,2017-18,Agawam - James Clark School,00050030, 28.1, 100.0, 12.1 to 1, 94.3, 96.4 +4.68,4.68,a-exp-i1,2017-18,Agawam - Roberta G. Doering School,00050303, 47.1, 100.0, 12.1 to 1, 93.6, 96.8 +4.595000000000001,4.6,a-exp-i1,2017-18,Agawam - Robinson Park,00050025, 30.8, 100.0, 12.1 to 1, 91.9, 98.4 +2.715,2.72,a-exp-i1,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 35.0, 62.9, 11.8 to 1, 54.3, 97.1 +4.505,4.51,a-exp-i1,2017-18,Amesbury - Amesbury Elementary,00070005, 28.4, 100.0, 13.9 to 1, 90.1, 100.0 +4.475,4.48,a-exp-i1,2017-18,Amesbury - Amesbury High,00070505, 20.6, 100.0, 28.7 to 1, 89.5, 94.3 +3.8899999999999997,3.89,a-exp-i1,2017-18,Amesbury - Amesbury Innovation High School,00070515, 3.7, 100.0, 10.7 to 1, 77.8, 51.1 +4.115,4.12,a-exp-i1,2017-18,Amesbury - Amesbury Middle,00070013, 57.0, 100.0, 11.9 to 1, 82.3, 91.2 +4.7299999999999995,4.73,a-exp-i1,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 33.4, 100.0, 13.3 to 1, 94.6, 97.0 +4.6,4.6,a-exp-i1,2017-18,Amherst - Crocker Farm Elementary,00080009, 40.9, 100.0, 10.0 to 1, 92.0, 99.4 +3.54,3.54,a-exp-i1,2017-18,Amherst - Fort River Elementary,00080020, 38.6, 100.0, 8.7 to 1, 70.8, 91.6 +4.5,4.5,a-exp-i1,2017-18,Amherst - Wildwood Elementary,00080050, 42.6, 95.3, 9.5 to 1, 90.0, 99.4 +4.11,4.11,a-exp-i1,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 66.4, 98.5, 14.0 to 1, 82.2, 96.8 +4.385,4.39,a-exp-i1,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 42.6, 99.1, 9.6 to 1, 87.7, 93.0 +4.465,4.47,a-exp-i1,2017-18,Andover - Andover High,00090505, 124.6, 100.0, 14.3 to 1, 89.3, 93.7 +4.285,4.29,a-exp-i1,2017-18,Andover - Andover West Middle,00090310, 46.5, 100.0, 11.3 to 1, 85.7, 95.7 +4.62,4.62,a-exp-i1,2017-18,Andover - Bancroft Elementary,00090003, 46.0, 100.0, 12.6 to 1, 92.4, 100.0 +4.1049999999999995,4.1,a-exp-i1,2017-18,Andover - Doherty Middle,00090305, 46.1, 100.0, 12.1 to 1, 82.1, 100.0 +4.5600000000000005,4.56,a-exp-i1,2017-18,Andover - Henry C Sanborn Elementary,00090010, 31.9, 100.0, 12.2 to 1, 91.2, 100.0 +4.58,4.58,a-exp-i1,2017-18,Andover - High Plain Elementary,00090004, 43.4, 100.0, 11.5 to 1, 91.6, 100.0 +5.0,5.0,a-exp-i1,2017-18,Andover - Shawsheen School,00090005, 7.0, 100.0, 12.1 to 1, 100.0, 100.0 +4.67,4.67,a-exp-i1,2017-18,Andover - South Elementary,00090020, 38.1, 100.0, 12.9 to 1, 93.4, 100.0 +4.285,4.29,a-exp-i1,2017-18,Andover - West Elementary,00090025, 47.1, 100.0, 12.9 to 1, 85.7, 100.0 +4.265,4.27,a-exp-i1,2017-18,Andover - Wood Hill Middle School,00090350, 39.1, 100.0, 10.5 to 1, 85.3, 95.3 +1.2349999999999999,1.23,a-exp-i1,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 37.2, 67.2, 10.7 to 1, 24.7, 81.2 +4.08,4.08,a-exp-i1,2017-18,Arlington - Arlington High,00100505, 99.8, 100.0, 13.3 to 1, 81.6, 87.3 +4.2299999999999995,4.23,a-exp-i1,2017-18,Arlington - Brackett,00100010, 30.3, 100.0, 16.1 to 1, 84.6, 100.0 +3.975,3.98,a-exp-i1,2017-18,Arlington - Cyrus E Dallin,00100025, 33.3, 100.0, 14.4 to 1, 79.5, 96.0 +3.5799999999999996,3.58,a-exp-i1,2017-18,Arlington - Hardy,00100030, 31.8, 96.9, 14.4 to 1, 71.6, 96.7 +4.635,4.64,a-exp-i1,2017-18,Arlington - John A Bishop,00100005, 23.5, 100.0, 17.9 to 1, 92.7, 95.7 +4.095000000000001,4.1,a-exp-i1,2017-18,Arlington - M Norcross Stratton,00100055, 28.1, 100.0, 14.3 to 1, 81.9, 100.0 +4.165,4.17,a-exp-i1,2017-18,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 14.2 to 1, 83.3, 100.0 +4.17,4.17,a-exp-i1,2017-18,Arlington - Ottoson Middle,00100410, 94.2, 98.9, 13.4 to 1, 83.4, 88.1 +4.5600000000000005,4.56,a-exp-i1,2017-18,Arlington - Peirce,00100045, 17.6, 100.0, 17.3 to 1, 91.2, 88.4 +3.2399999999999998,3.24,a-exp-i1,2017-18,Arlington - Thompson,00100050, 35.1, 100.0, 13.9 to 1, 64.8, 96.7 +4.225,4.23,a-exp-i1,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 38.8, 100.0, 14.3 to 1, 84.5, 92.3 +4.225,4.23,a-exp-i1,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 15.2 to 1, 84.5, 96.9 +4.220000000000001,4.22,a-exp-i1,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 50.5, 100.0, 14.2 to 1, 84.4, 94.7 +4.13,4.13,a-exp-i1,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 37.9, 100.0, 15.1 to 1, 82.6, 94.7 +3.9,3.9,a-exp-i1,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 22.1, 100.0, 17.1 to 1, 78.0, 94.7 +4.07,4.07,a-exp-i1,2017-18,Ashland - Ashland High,00140505, 56.0, 100.0, 13.7 to 1, 81.4, 91.4 +4.635,4.64,a-exp-i1,2017-18,Ashland - Ashland Middle,00140405, 45.2, 100.0, 13.3 to 1, 92.7, 95.0 +4.245,4.25,a-exp-i1,2017-18,Ashland - David Mindess,00140015, 46.3, 100.0, 14.0 to 1, 84.9, 97.8 +4.01,4.01,a-exp-i1,2017-18,Ashland - Henry E Warren Elementary,00140010, 44.4, 100.0, 13.8 to 1, 80.2, 96.4 +2.5,2.5,a-exp-i1,2017-18,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 15.9 to 1, 50.0, 100.0 +4.205,4.21,a-exp-i1,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 110.0, 95.5, 10.1 to 1, 84.1, 86.4 +3.525,3.53,a-exp-i1,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 37.3, 100.0, 16.2 to 1, 70.5, 86.6 +4.175,4.18,a-exp-i1,2017-18,Athol-Royalston - Athol High,06150505, 30.3, 100.0, 12.1 to 1, 83.5, 80.2 +4.17,4.17,a-exp-i1,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.1, 100.0, 13.0 to 1, 83.4, 86.7 +4.15,4.15,a-exp-i1,2017-18,Athol-Royalston - Royalston Community School,06150050, 11.8, 100.0, 11.8 to 1, 83.0, 100.0 +2.4050000000000002,2.41,a-exp-i1,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 88.6, 82.5, 13.7 to 1, 48.1, 75.2 +4.84,4.84,a-exp-i1,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 30.5, 100.0, 12.6 to 1, 96.8, 100.0 +4.13,4.13,a-exp-i1,2017-18,Attleboro - Attleboro Community Academy,00160515, 3.4, 94.2, 17.7 to 1, 82.6, 84.2 +4.35,4.35,a-exp-i1,2017-18,Attleboro - Attleboro High,00160505, 107.8, 98.1, 15.8 to 1, 87.0, 89.0 +4.555,4.56,a-exp-i1,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 33.8, 100.0, 17.2 to 1, 91.1, 97.0 +3.81,3.81,a-exp-i1,2017-18,Attleboro - Early Learning Center,00160008, 8.4, 100.0, 21.9 to 1, 76.2, 100.0 +3.2600000000000002,3.26,a-exp-i1,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 27.7, 100.0, 16.6 to 1, 65.2, 89.1 +4.64,4.64,a-exp-i1,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 28.0, 100.0, 17.2 to 1, 92.8, 96.4 +4.654999999999999,4.65,a-exp-i1,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 34.5, 100.0, 12.2 to 1, 93.1, 100.0 +4.475,4.48,a-exp-i1,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 38.0, 100.0, 17.5 to 1, 89.5, 100.0 +4.825,4.83,a-exp-i1,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 28.5, 100.0, 15.2 to 1, 96.5, 100.0 +4.7,4.7,a-exp-i1,2017-18,Attleboro - Wamsutta Middle School,00160320, 33.2, 100.0, 17.4 to 1, 94.0, 97.0 +4.505,4.51,a-exp-i1,2017-18,Auburn - Auburn Middle,00170305, 45.3, 100.0, 13.9 to 1, 90.1, 97.8 +4.595000000000001,4.6,a-exp-i1,2017-18,Auburn - Auburn Senior High,00170505, 61.6, 100.0, 13.0 to 1, 91.9, 90.3 +3.85,3.85,a-exp-i1,2017-18,Auburn - Bryn Mawr,00170010, 17.8, 100.0, 16.8 to 1, 77.0, 93.9 +4.165,4.17,a-exp-i1,2017-18,Auburn - Pakachoag School,00170025, 17.9, 100.0, 16.8 to 1, 83.3, 100.0 +4.595000000000001,4.6,a-exp-i1,2017-18,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 15.9 to 1, 91.9, 97.4 +3.7600000000000002,3.76,a-exp-i1,2017-18,Avon - Avon Middle High School,00180510, 35.1, 100.0, 8.9 to 1, 75.2, 82.9 +4.18,4.18,a-exp-i1,2017-18,Avon - Ralph D Butler,00180010, 32.3, 100.0, 12.8 to 1, 83.6, 100.0 +3.8600000000000003,3.86,a-exp-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 36.3, 99.6, 11.3 to 1, 77.2, 77.6 +4.525,4.53,a-exp-i1,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 31.5, 100.0, 11.7 to 1, 90.5, 87.3 +3.94,3.94,a-exp-i1,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.8, 97.3, 13.4 to 1, 78.8, 93.9 +3.845,3.85,a-exp-i1,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.0, 100.0, 13.5 to 1, 76.9, 92.3 +4.5,4.5,a-exp-i1,2017-18,Barnstable - Barnstable High,00200505, 144.9, 99.3, 12.8 to 1, 90.0, 92.4 +4.1,4.1,a-exp-i1,2017-18,Barnstable - Barnstable Intermediate School,00200315, 58.4, 100.0, 12.6 to 1, 82.0, 91.4 +3.775,3.78,a-exp-i1,2017-18,Barnstable - Barnstable United Elementary School,00200050, 59.6, 100.0, 14.4 to 1, 75.5, 95.6 +4.345000000000001,4.35,a-exp-i1,2017-18,Barnstable - Centerville Elementary,00200010, 21.3, 100.0, 12.2 to 1, 86.9, 96.2 +2.5,2.5,a-exp-i1,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 22.5 to 1, 50.0, 83.3 +3.925,3.93,a-exp-i1,2017-18,Barnstable - Hyannis West Elementary,00200025, 31.6, 100.0, 10.6 to 1, 78.5, 88.0 +4.025,4.03,a-exp-i1,2017-18,Barnstable - West Barnstable Elementary,00200005, 16.4, 100.0, 15.8 to 1, 80.5, 92.7 +4.3100000000000005,4.31,a-exp-i1,2017-18,Barnstable - West Villages Elementary School,00200045, 29.0, 96.6, 14.9 to 1, 86.2, 100.0 +3.96,3.96,a-exp-i1,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 24.0, 100.0, 12.8 to 1, 79.2, 100.0 +1.27,1.27,a-exp-i1,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 51.2, 64.5, 8.7 to 1, 25.4, 76.6 +4.32,4.32,a-exp-i1,2017-18,Bedford - Bedford High,00230505, 82.4, 97.5, 10.4 to 1, 86.4, 94.3 +4.375,4.38,a-exp-i1,2017-18,Bedford - John Glenn Middle,00230305, 56.0, 100.0, 10.4 to 1, 87.5, 89.3 +4.66,4.66,a-exp-i1,2017-18,Bedford - Lt Elezer Davis,00230010, 44.0, 100.0, 13.6 to 1, 93.2, 100.0 +3.7350000000000003,3.74,a-exp-i1,2017-18,Bedford - Lt Job Lane School,00230012, 47.4, 100.0, 12.8 to 1, 74.7, 91.6 +4.7700000000000005,4.77,a-exp-i1,2017-18,Belchertown - Belchertown High,00240505, 47.0, 100.0, 15.1 to 1, 95.4, 97.9 +5.0,5.0,a-exp-i1,2017-18,Belchertown - Chestnut Hill Community School,00240006, 37.2, 100.0, 14.9 to 1, 100.0, 100.0 +4.205,4.21,a-exp-i1,2017-18,Belchertown - Cold Spring,00240005, 12.6, 100.0, 15.3 to 1, 84.1, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Belchertown - Jabish Middle School,00240025, 31.5, 100.0, 12.6 to 1, 87.1, 93.6 +4.86,4.86,a-exp-i1,2017-18,Belchertown - Swift River Elementary,00240018, 35.2, 100.0, 13.3 to 1, 97.2, 100.0 +5.0,5.0,a-exp-i1,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 5.5, 100.0, 20.0 to 1, 100.0, 100.0 +4.545,4.55,a-exp-i1,2017-18,Bellingham - Bellingham High School,00250505, 55.4, 100.0, 13.8 to 1, 90.9, 92.8 +3.8200000000000003,3.82,a-exp-i1,2017-18,Bellingham - Bellingham Memorial School,00250315, 51.8, 100.0, 13.9 to 1, 76.4, 90.6 +3.175,3.18,a-exp-i1,2017-18,Bellingham - Keough Memorial Academy,00250510, 7.8, 87.2, 4.3 to 1, 63.5, 87.2 +4.205,4.21,a-exp-i1,2017-18,Bellingham - South Elementary,00250020, 24.8, 100.0, 13.5 to 1, 84.1, 100.0 +4.2299999999999995,4.23,a-exp-i1,2017-18,Bellingham - Stall Brook,00250025, 25.9, 100.0, 12.4 to 1, 84.6, 96.1 +4.11,4.11,a-exp-i1,2017-18,Belmont - Belmont High,00260505, 70.0, 100.0, 18.5 to 1, 82.2, 93.7 +4.595000000000001,4.6,a-exp-i1,2017-18,Belmont - Daniel Butler,00260015, 24.6, 100.0, 15.8 to 1, 91.9, 95.9 +4.085,4.09,a-exp-i1,2017-18,Belmont - Mary Lee Burbank,00260010, 21.9, 100.0, 17.1 to 1, 81.7, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Belmont - Roger E Wellington,00260035, 39.2, 100.0, 15.9 to 1, 81.9, 94.9 +3.8200000000000003,3.82,a-exp-i1,2017-18,Belmont - Winn Brook,00260005, 28.9, 100.0, 17.0 to 1, 76.4, 93.1 +4.215,4.22,a-exp-i1,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 88.6, 100.0, 16.0 to 1, 84.3, 95.5 +3.8899999999999997,3.89,a-exp-i1,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 18.0, 94.4, 19.7 to 1, 77.8, 95.1 +4.09,4.09,a-exp-i1,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 33.0, 81.8, 13.4 to 1, 81.8, 87.9 +1.4949999999999999,1.5,a-exp-i1,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 24.4, 95.5, 12.1 to 1, 29.9, 71.3 +4.555,4.56,a-exp-i1,2017-18,Berkley - Berkley Community School,00270010, 33.8, 100.0, 15.7 to 1, 91.1, 100.0 +4.79,4.79,a-exp-i1,2017-18,Berkley - Berkley Middle School,00270305, 24.0, 100.0, 16.3 to 1, 95.8, 87.5 +2.4850000000000003,2.49,a-exp-i1,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 34.0, 63.7, 10.4 to 1, 49.7, 87.5 +4.475,4.48,a-exp-i1,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 42.8, 100.0, 12.2 to 1, 89.5, 94.2 +4.235,4.24,a-exp-i1,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 32.3, 100.0, 11.6 to 1, 84.7, 90.7 +4.025,4.03,a-exp-i1,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 36.2, 100.0, 9.6 to 1, 80.5, 91.7 +4.0649999999999995,4.06,a-exp-i1,2017-18,Berlin - Berlin Memorial,00280005, 18.0, 100.0, 10.2 to 1, 81.3, 93.5 +4.6450000000000005,4.65,a-exp-i1,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 45.5, 99.1, 13.0 to 1, 92.9, 91.6 +4.36,4.36,a-exp-i1,2017-18,Beverly - Ayers/Ryal Side School,00300055, 32.9, 100.0, 15.2 to 1, 87.2, 97.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Beverly - Beverly High,00300505, 90.6, 98.0, 13.7 to 1, 89.4, 89.4 +4.555,4.56,a-exp-i1,2017-18,Beverly - Briscoe Middle,00300305, 73.4, 100.0, 13.6 to 1, 91.1, 89.1 +4.32,4.32,a-exp-i1,2017-18,Beverly - Centerville Elementary,00300010, 27.3, 100.0, 13.3 to 1, 86.4, 100.0 +3.87,3.87,a-exp-i1,2017-18,Beverly - Cove Elementary,00300015, 34.1, 100.0, 14.4 to 1, 77.4, 94.1 +4.265,4.27,a-exp-i1,2017-18,Beverly - Hannah Elementary,00300033, 28.6, 100.0, 13.7 to 1, 85.3, 100.0 +4.445,4.45,a-exp-i1,2017-18,Beverly - McKeown School,00300002, 9.0, 100.0, 12.7 to 1, 88.9, 100.0 +4.295,4.3,a-exp-i1,2017-18,Beverly - North Beverly Elementary,00300040, 29.8, 100.0, 13.4 to 1, 85.9, 96.6 +4.34,4.34,a-exp-i1,2017-18,Billerica - Billerica Memorial High School,00310505, 101.6, 98.0, 13.2 to 1, 86.8, 91.9 +4.01,4.01,a-exp-i1,2017-18,Billerica - Eugene C Vining,00310030, 17.7, 100.0, 11.0 to 1, 80.2, 87.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Billerica - Frederick J Dutile,00310007, 22.7, 100.0, 12.0 to 1, 88.7, 100.0 +4.404999999999999,4.4,a-exp-i1,2017-18,Billerica - Hajjar Elementary,00310026, 32.3, 100.0, 14.3 to 1, 88.1, 90.6 +4.74,4.74,a-exp-i1,2017-18,Billerica - John F Kennedy,00310012, 22.7, 100.0, 13.8 to 1, 94.8, 96.7 +4.535,4.54,a-exp-i1,2017-18,Billerica - Locke Middle,00310310, 45.9, 100.0, 11.0 to 1, 90.7, 86.9 +4.71,4.71,a-exp-i1,2017-18,Billerica - Marshall Middle School,00310305, 56.1, 100.0, 11.6 to 1, 94.2, 91.1 +4.12,4.12,a-exp-i1,2017-18,Billerica - Parker,00310015, 36.6, 97.3, 13.7 to 1, 82.4, 96.1 +4.3100000000000005,4.31,a-exp-i1,2017-18,Billerica - Thomas Ditson,00310005, 39.9, 100.0, 13.4 to 1, 86.2, 93.7 +4.225,4.23,a-exp-i1,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 98.4, 96.6, 12.4 to 1, 84.5, 77.3 +4.43,4.43,a-exp-i1,2017-18,Blackstone-Millville - A F Maloney,06220015, 20.6, 100.0, 14.5 to 1, 88.6, 97.1 +4.08,4.08,a-exp-i1,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.0, 100.0, 10.7 to 1, 81.6, 84.2 +4.245,4.25,a-exp-i1,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.1, 100.0, 12.9 to 1, 84.9, 97.0 +4.7,4.7,a-exp-i1,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 22.6, 100.0, 13.1 to 1, 94.0, 100.0 +4.175,4.18,a-exp-i1,2017-18,Blackstone-Millville - Millville Elementary,06220010, 20.0, 100.0, 14.3 to 1, 83.5, 100.0 +4.025,4.03,a-exp-i1,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 82.0, 95.1, 10.4 to 1, 80.5, 87.8 +3.53,3.53,a-exp-i1,2017-18,Boston - Another Course To College,00350541, 22.1, 83.5, 10.1 to 1, 70.6, 88.7 +4.6450000000000005,4.65,a-exp-i1,2017-18,Boston - Baldwin Early Learning Center,00350003, 14.0, 100.0, 12.4 to 1, 92.9, 100.0 +4.7700000000000005,4.77,a-exp-i1,2017-18,Boston - Beethoven,00350021, 22.4, 100.0, 14.5 to 1, 95.4, 100.0 +3.35,3.35,a-exp-i1,2017-18,Boston - Blackstone,00350390, 47.9, 98.0, 12.0 to 1, 67.0, 93.7 +3.4899999999999998,3.49,a-exp-i1,2017-18,Boston - Boston Adult Academy,00350548, 21.4, 84.1, 7.2 to 1, 69.8, 90.5 +3.63,3.63,a-exp-i1,2017-18,Boston - Boston Arts Academy,00350546, 47.8, 85.4, 9.8 to 1, 72.6, 89.4 +3.54,3.54,a-exp-i1,2017-18,Boston - Boston Collaborative High School,00350755, 7.0, 100.0, 26.0 to 1, 70.8, 85.1 +4.265,4.27,a-exp-i1,2017-18,Boston - Boston Community Leadership Academy,00350558, 38.6, 88.9, 12.3 to 1, 85.3, 94.8 +3.91,3.91,a-exp-i1,2017-18,Boston - Boston International High School,00350507, 49.5, 95.7, 7.4 to 1, 78.2, 90.8 +4.64,4.64,a-exp-i1,2017-18,Boston - Boston Latin,00350560, 117.2, 100.0, 20.9 to 1, 92.8, 91.5 +4.470000000000001,4.47,a-exp-i1,2017-18,Boston - Boston Latin Academy,00350545, 87.9, 96.7, 20.3 to 1, 89.4, 96.5 +4.66,4.66,a-exp-i1,2017-18,Boston - Boston Teachers Union School,00350012, 22.2, 93.4, 12.9 to 1, 93.2, 100.0 +2.975,2.98,a-exp-i1,2017-18,Boston - Brighton High,00350505, 57.2, 93.0, 11.9 to 1, 59.5, 75.3 +0.0,1,a-exp-i1,2017-18,Boston - Carter Developmental Center,00350036, .7, 0.0, 43.9 to 1, 0.0, 100.0 +3.715,3.72,a-exp-i1,2017-18,Boston - Charles H Taylor,00350054, 41.1, 98.4, 12.8 to 1, 74.3, 90.3 +4.61,4.61,a-exp-i1,2017-18,Boston - Charles Sumner,00350052, 38.5, 100.0, 15.1 to 1, 92.2, 94.7 +3.7399999999999998,3.74,a-exp-i1,2017-18,Boston - Charlestown High,00350515, 88.6, 90.0, 10.4 to 1, 74.8, 90.3 +4.545,4.55,a-exp-i1,2017-18,Boston - Clarence R Edwards Middle,00350430, 32.9, 100.0, 9.3 to 1, 90.9, 93.8 +3.675,3.68,a-exp-i1,2017-18,Boston - Community Academy,00350518, 12.1, 87.6, 6.5 to 1, 73.5, 76.0 +4.735,4.74,a-exp-i1,2017-18,Boston - Community Academy of Science and Health,00350581, 37.4, 92.4, 10.4 to 1, 94.7, 89.7 +4.115,4.12,a-exp-i1,2017-18,Boston - Curley K-8 School,00350020, 80.0, 98.7, 11.8 to 1, 82.3, 93.6 +3.81,3.81,a-exp-i1,2017-18,Boston - Curtis Guild,00350062, 25.3, 91.7, 11.6 to 1, 76.2, 98.0 +4.33,4.33,a-exp-i1,2017-18,Boston - Dante Alighieri Montessori School,00350066, 9.8, 100.0, 9.4 to 1, 86.6, 81.3 +3.925,3.93,a-exp-i1,2017-18,Boston - David A Ellis,00350072, 33.0, 100.0, 13.8 to 1, 78.5, 81.8 +3.04,3.04,a-exp-i1,2017-18,Boston - Dearborn,00350074, 35.7, 95.0, 9.9 to 1, 60.8, 76.2 +4.445,4.45,a-exp-i1,2017-18,Boston - Dennis C Haley,00350077, 45.3, 100.0, 9.9 to 1, 88.9, 97.8 +3.9450000000000003,3.95,a-exp-i1,2017-18,Boston - Donald Mckay,00350080, 52.4, 100.0, 14.8 to 1, 78.9, 96.2 +3.3049999999999997,3.31,a-exp-i1,2017-18,Boston - Dorchester Academy,00350651, 7.5, 73.3, 5.6 to 1, 66.1, 73.2 +4.07,4.07,a-exp-i1,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 16.1, 100.0, 11.7 to 1, 81.4, 87.3 +2.555,2.56,a-exp-i1,2017-18,Boston - Dr. William Henderson Lower,00350266, 22.5, 82.1, 9.4 to 1, 51.1, 91.1 +3.405,3.41,a-exp-i1,2017-18,Boston - Dr. William Henderson Upper,00350426, 69.2, 94.3, 8.8 to 1, 68.1, 78.3 +5.0,5.0,a-exp-i1,2017-18,Boston - ELC - West Zone,00350006, 11.3, 100.0, 10.2 to 1, 100.0, 100.0 +4.3950000000000005,4.4,a-exp-i1,2017-18,Boston - East Boston Early Childhood Center,00350009, 13.7, 92.7, 14.4 to 1, 87.9, 92.7 +4.029999999999999,4.03,a-exp-i1,2017-18,Boston - East Boston High,00350530, 99.9, 95.6, 13.4 to 1, 80.6, 85.1 +3.88,3.88,a-exp-i1,2017-18,Boston - Edison K-8,00350375, 54.3, 94.3, 11.7 to 1, 77.6, 96.1 +3.9850000000000003,3.99,a-exp-i1,2017-18,Boston - Edward Everett,00350088, 19.5, 100.0, 13.9 to 1, 79.7, 95.1 +3.745,3.75,a-exp-i1,2017-18,Boston - Eliot Elementary,00350096, 43.5, 100.0, 14.6 to 1, 74.9, 88.6 +3.84,3.84,a-exp-i1,2017-18,Boston - Ellis Mendell,00350100, 18.6, 100.0, 14.3 to 1, 76.8, 91.1 +3.055,3.06,a-exp-i1,2017-18,Boston - Excel High School,00350522, 42.9, 95.6, 11.4 to 1, 61.1, 81.6 +4.135,4.14,a-exp-i1,2017-18,Boston - Fenway High School,00350540, 31.3, 88.5, 11.6 to 1, 82.7, 95.3 +5.0,5.0,a-exp-i1,2017-18,Boston - Franklin D Roosevelt,00350116, 34.2, 100.0, 13.3 to 1, 100.0, 97.1 +4.235,4.24,a-exp-i1,2017-18,Boston - Gardner Pilot Academy,00350326, 34.6, 97.4, 11.6 to 1, 84.7, 94.2 +4.715,4.72,a-exp-i1,2017-18,Boston - George H Conley,00350122, 18.5, 100.0, 11.5 to 1, 94.3, 96.8 +3.31,3.31,a-exp-i1,2017-18,Boston - Greater Egleston Community High School,00350543, 13.6, 89.0, 7.7 to 1, 66.2, 77.2 +4.465,4.47,a-exp-i1,2017-18,Boston - Harvard-Kent,00350200, 42.0, 98.8, 11.3 to 1, 89.3, 97.6 +3.0300000000000002,3.03,a-exp-i1,2017-18,Boston - Haynes Early Education Center,00350010, 17.5, 77.9, 12.1 to 1, 60.6, 94.1 +3.88,3.88,a-exp-i1,2017-18,Boston - Henry Grew,00350135, 15.4, 100.0, 16.5 to 1, 77.6, 90.9 +3.6399999999999997,3.64,a-exp-i1,2017-18,Boston - Higginson,00350015, 13.8, 92.6, 12.4 to 1, 72.8, 80.4 +3.7950000000000004,3.8,a-exp-i1,2017-18,Boston - Higginson/Lewis K-8,00350377, 29.0, 96.5, 10.6 to 1, 75.9, 86.2 +4.36,4.36,a-exp-i1,2017-18,Boston - Horace Mann School for the Deaf,00350750, 35.0, 95.7, 2.4 to 1, 87.2, 97.2 +4.455,4.46,a-exp-i1,2017-18,Boston - Hugh Roe O'Donnell,00350141, 18.5, 100.0, 13.4 to 1, 89.1, 86.6 +4.035,4.04,a-exp-i1,2017-18,Boston - Jackson Mann,00350013, 57.2, 98.3, 11.5 to 1, 80.7, 91.5 +4.505,4.51,a-exp-i1,2017-18,Boston - James Condon Elementary,00350146, 61.0, 100.0, 14.8 to 1, 90.1, 93.3 +4.79,4.79,a-exp-i1,2017-18,Boston - James J Chittick,00350154, 24.1, 100.0, 12.7 to 1, 95.8, 87.5 +4.49,4.49,a-exp-i1,2017-18,Boston - James Otis,00350156, 29.5, 100.0, 13.7 to 1, 89.8, 93.2 +3.995,4.0,a-exp-i1,2017-18,Boston - James P Timilty Middle,00350485, 29.7, 93.3, 11.2 to 1, 79.9, 86.7 +4.575,4.58,a-exp-i1,2017-18,Boston - James W Hennigan,00350153, 47.5, 97.9, 12.2 to 1, 91.5, 97.9 +3.4850000000000003,3.49,a-exp-i1,2017-18,Boston - Jeremiah E Burke High,00350525, 31.9, 88.4, 14.8 to 1, 69.7, 75.7 +3.16,3.16,a-exp-i1,2017-18,Boston - John D Philbrick,00350172, 9.7, 89.3, 16.7 to 1, 63.2, 89.5 +3.6950000000000003,3.7,a-exp-i1,2017-18,Boston - John F Kennedy,00350166, 26.7, 100.0, 14.7 to 1, 73.9, 88.6 +4.055,4.06,a-exp-i1,2017-18,Boston - John W McCormack,00350179, 35.4, 95.3, 10.5 to 1, 81.1, 82.9 +4.465,4.47,a-exp-i1,2017-18,Boston - John Winthrop,00350180, 23.9, 100.0, 13.7 to 1, 89.3, 100.0 +4.58,4.58,a-exp-i1,2017-18,Boston - Joseph J Hurley,00350182, 24.0, 100.0, 15.0 to 1, 91.6, 87.5 +4.205,4.21,a-exp-i1,2017-18,Boston - Joseph Lee,00350183, 53.3, 98.8, 12.4 to 1, 84.1, 93.9 +4.36,4.36,a-exp-i1,2017-18,Boston - Joseph P Manning,00350184, 12.9, 95.3, 11.8 to 1, 87.2, 91.1 +4.205,4.21,a-exp-i1,2017-18,Boston - Joseph P Tynan,00350181, 25.1, 100.0, 9.3 to 1, 84.1, 83.8 +3.9,3.9,a-exp-i1,2017-18,Boston - Josiah Quincy,00350286, 59.0, 96.6, 14.1 to 1, 78.0, 98.3 +4.835,4.84,a-exp-i1,2017-18,Boston - Joyce Kilmer,00350190, 29.9, 100.0, 15.6 to 1, 96.7, 96.7 +4.16,4.16,a-exp-i1,2017-18,Boston - King K-8,00350376, 35.6, 94.4, 13.7 to 1, 83.2, 80.5 +3.525,3.53,a-exp-i1,2017-18,Boston - Lee Academy,00350001, 17.9, 97.2, 12.5 to 1, 70.5, 89.0 +3.54,3.54,a-exp-i1,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 48.0, 95.9, 10.3 to 1, 70.8, 89.4 +4.25,4.25,a-exp-i1,2017-18,Boston - Lyndon,00350262, 40.1, 98.8, 14.5 to 1, 85.0, 95.0 +3.995,4.0,a-exp-i1,2017-18,Boston - Lyon K-8,00350004, 18.9, 100.0, 6.9 to 1, 79.9, 89.1 +3.1100000000000003,3.11,a-exp-i1,2017-18,Boston - Lyon Upper 9-12,00350655, 17.3, 91.3, 7.2 to 1, 62.2, 79.4 +2.9699999999999998,2.97,a-exp-i1,2017-18,Boston - Madison Park High,00350537, 100.3, 90.9, 8.6 to 1, 59.4, 72.4 +4.25,4.25,a-exp-i1,2017-18,Boston - Manassah E Bradley,00350215, 21.8, 95.6, 13.5 to 1, 85.0, 100.0 +3.5700000000000003,3.57,a-exp-i1,2017-18,Boston - Margarita Muniz Academy,00350549, 27.9, 92.9, 10.7 to 1, 71.4, 78.5 +3.8850000000000002,3.89,a-exp-i1,2017-18,Boston - Mario Umana Academy,00350656, 74.4, 97.7, 13.5 to 1, 77.7, 89.9 +4.495,4.5,a-exp-i1,2017-18,Boston - Mather,00350227, 40.8, 97.7, 14.9 to 1, 89.9, 89.7 +2.415,2.42,a-exp-i1,2017-18,Boston - Mattapan Early Elementary School,00350016, 24.6, 96.0, 11.8 to 1, 48.3, 75.7 +3.5200000000000005,3.52,a-exp-i1,2017-18,Boston - Maurice J Tobin,00350229, 33.3, 91.3, 12.9 to 1, 70.4, 73.5 +4.665,4.67,a-exp-i1,2017-18,Boston - Michael J Perkins,00350231, 15.1, 100.0, 14.4 to 1, 93.3, 79.8 +4.1850000000000005,4.19,a-exp-i1,2017-18,Boston - Mildred Avenue K-8,00350378, 42.9, 100.0, 12.8 to 1, 83.7, 81.5 +3.9200000000000004,3.92,a-exp-i1,2017-18,Boston - Mission Hill School,00350382, 18.5, 100.0, 13.1 to 1, 78.4, 89.4 +4.0600000000000005,4.06,a-exp-i1,2017-18,Boston - Mozart,00350237, 16.0, 93.8, 11.2 to 1, 81.2, 100.0 +4.515,4.52,a-exp-i1,2017-18,Boston - Nathan Hale,00350243, 10.3, 100.0, 15.4 to 1, 90.3, 98.2 +3.6450000000000005,3.65,a-exp-i1,2017-18,Boston - New Mission High School,00350542, 33.4, 90.5, 11.7 to 1, 72.9, 97.3 +2.55,2.55,a-exp-i1,2017-18,Boston - O W Holmes,00350138, 27.5, 92.7, 12.6 to 1, 51.0, 84.2 +3.9200000000000004,3.92,a-exp-i1,2017-18,Boston - O'Bryant School Math/Science,00350575, 96.1, 93.0, 16.3 to 1, 78.4, 88.3 +4.76,4.76,a-exp-i1,2017-18,Boston - Oliver Hazard Perry,00350255, 21.1, 100.0, 10.4 to 1, 95.2, 85.7 +4.005,4.01,a-exp-i1,2017-18,Boston - Orchard Gardens,00350257, 68.2, 91.2, 13.3 to 1, 80.1, 91.1 +4.025,4.03,a-exp-i1,2017-18,Boston - Patrick J Kennedy,00350264, 22.3, 100.0, 13.7 to 1, 80.5, 86.6 +1.6149999999999998,1.61,a-exp-i1,2017-18,Boston - Paul A Dever,00350268, 34.3, 76.6, 10.4 to 1, 32.3, 73.4 +2.775,2.78,a-exp-i1,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 17.9, 88.8, 14.3 to 1, 55.5, 77.8 +4.529999999999999,4.53,a-exp-i1,2017-18,Boston - Phineas Bates,00350278, 22.7, 100.0, 11.5 to 1, 90.6, 96.5 +3.78,3.78,a-exp-i1,2017-18,Boston - Quincy Upper School,00350565, 45.9, 86.6, 11.1 to 1, 75.6, 82.6 +3.9850000000000003,3.99,a-exp-i1,2017-18,Boston - Rafael Hernandez,00350691, 24.5, 95.9, 15.9 to 1, 79.7, 91.8 +4.68,4.68,a-exp-i1,2017-18,Boston - Richard J Murphy,00350240, 60.9, 100.0, 15.5 to 1, 93.6, 96.7 +4.57,4.57,a-exp-i1,2017-18,Boston - Roger Clap,00350298, 12.1, 100.0, 13.0 to 1, 91.4, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Boston - Samuel Adams,00350302, 24.4, 100.0, 11.9 to 1, 81.9, 87.6 +3.62,3.62,a-exp-i1,2017-18,Boston - Samuel W Mason,00350304, 18.0, 94.7, 13.5 to 1, 72.4, 77.8 +3.5,3.5,a-exp-i1,2017-18,Boston - Sarah Greenwood,00350308, 30.2, 79.9, 13.3 to 1, 70.0, 86.5 +4.7299999999999995,4.73,a-exp-i1,2017-18,Boston - Snowden International School at Copley,00350690, 35.1, 94.7, 12.7 to 1, 94.6, 88.3 +3.9799999999999995,3.98,a-exp-i1,2017-18,Boston - TechBoston Academy,00350657, 93.6, 93.3, 9.8 to 1, 79.6, 93.6 +3.2950000000000004,3.3,a-exp-i1,2017-18,Boston - The English High,00350535, 49.9, 83.3, 10.8 to 1, 65.9, 85.9 +4.8149999999999995,4.81,a-exp-i1,2017-18,Boston - Thomas J Kenny,00350328, 27.0, 100.0, 12.0 to 1, 96.3, 96.0 +1.77,1.77,a-exp-i1,2017-18,Boston - UP Academy Holland,00350167, 48.0, 83.4, 15.9 to 1, 35.4, 74.9 +4.485,4.49,a-exp-i1,2017-18,Boston - Urban Science Academy,00350579, 40.1, 85.4, 9.8 to 1, 89.7, 94.6 +4.735,4.74,a-exp-i1,2017-18,Boston - Warren-Prescott,00350346, 37.8, 100.0, 15.9 to 1, 94.7, 100.0 +4.035,4.04,a-exp-i1,2017-18,Boston - Washington Irving Middle,00350445, 30.9, 95.1, 10.4 to 1, 80.7, 88.7 +4.3149999999999995,4.31,a-exp-i1,2017-18,Boston - West Roxbury Academy,00350658, 39.3, 95.1, 12.1 to 1, 86.3, 97.4 +3.675,3.68,a-exp-i1,2017-18,Boston - William E Russell,00350366, 28.5, 94.7, 14.3 to 1, 73.5, 89.5 +4.404999999999999,4.4,a-exp-i1,2017-18,Boston - William Ellery Channing,00350360, 17.0, 100.0, 12.7 to 1, 88.1, 94.1 +4.695,4.7,a-exp-i1,2017-18,Boston - William H Ohrenberger,00350258, 48.1, 95.9, 13.5 to 1, 93.9, 97.6 +4.5649999999999995,4.56,a-exp-i1,2017-18,Boston - William McKinley,00350363, 51.2, 98.1, 6.9 to 1, 91.3, 92.1 +4.57,4.57,a-exp-i1,2017-18,Boston - William Monroe Trotter,00350370, 34.5, 100.0, 15.2 to 1, 91.4, 90.3 +4.545,4.55,a-exp-i1,2017-18,Boston - Winship Elementary,00350374, 21.6, 100.0, 10.2 to 1, 90.9, 90.7 +3.495,3.5,a-exp-i1,2017-18,Boston - Young Achievers,00350380, 40.1, 87.5, 14.1 to 1, 69.9, 87.7 +2.52,2.52,a-exp-i1,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 63.5, 80.3, 11.0 to 1, 50.4, 66.3 +3.905,3.91,a-exp-i1,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.1, 95.4, 17.5 to 1, 78.1, 100.0 +3.325,3.33,a-exp-i1,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 40.6, 88.9, 11.6 to 1, 66.5, 90.4 +1.4849999999999999,1.49,a-exp-i1,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 44.1, 77.3, 10.5 to 1, 29.7, 87.1 +2.805,2.81,a-exp-i1,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.0, 80.5, 11.4 to 1, 56.1, 92.7 +4.485,4.49,a-exp-i1,2017-18,Bourne - Bourne High School,00360505, 37.6, 97.3, 12.8 to 1, 89.7, 92.0 +3.87,3.87,a-exp-i1,2017-18,Bourne - Bourne Middle School,00360325, 57.6, 91.3, 11.9 to 1, 77.4, 89.6 +4.465,4.47,a-exp-i1,2017-18,Bourne - Bournedale Elementary School,00360005, 27.9, 100.0, 16.1 to 1, 89.3, 93.3 +4.6,4.6,a-exp-i1,2017-18,Bourne - Peebles Elementary School,00360010, 25.0, 100.0, 13.6 to 1, 92.0, 100.0 +4.695,4.7,a-exp-i1,2017-18,Boxford - Harry Lee Cole,00380005, 26.3, 100.0, 12.6 to 1, 93.9, 96.2 +4.84,4.84,a-exp-i1,2017-18,Boxford - Spofford Pond,00380013, 31.6, 100.0, 12.3 to 1, 96.8, 100.0 +3.8200000000000003,3.82,a-exp-i1,2017-18,Boylston - Boylston Elementary,00390005, 19.6, 100.0, 15.3 to 1, 76.4, 94.7 +4.36,4.36,a-exp-i1,2017-18,Braintree - Archie T Morrison,00400033, 35.9, 100.0, 11.7 to 1, 87.2, 92.0 +3.85,3.85,a-exp-i1,2017-18,Braintree - Braintree High,00400505, 116.2, 98.3, 15.5 to 1, 77.0, 89.9 +4.235,4.24,a-exp-i1,2017-18,Braintree - Donald Ross,00400050, 26.1, 100.0, 10.9 to 1, 84.7, 100.0 +4.404999999999999,4.4,a-exp-i1,2017-18,Braintree - East Middle School,00400305, 59.0, 100.0, 12.1 to 1, 88.1, 97.3 +4.285,4.29,a-exp-i1,2017-18,Braintree - Highlands,00400015, 30.9, 100.0, 13.7 to 1, 85.7, 98.6 +4.7,4.7,a-exp-i1,2017-18,Braintree - Hollis,00400005, 33.5, 100.0, 12.9 to 1, 94.0, 100.0 +4.21,4.21,a-exp-i1,2017-18,Braintree - Liberty,00400025, 29.2, 100.0, 15.8 to 1, 84.2, 96.6 +4.295,4.3,a-exp-i1,2017-18,Braintree - Mary E Flaherty School,00400020, 28.3, 100.0, 13.3 to 1, 85.9, 96.5 +4.38,4.38,a-exp-i1,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 16.2, 100.0, 15.5 to 1, 87.6, 87.6 +4.135,4.14,a-exp-i1,2017-18,Braintree - South Middle School,00400310, 48.4, 100.0, 13.8 to 1, 82.7, 93.8 +4.125,4.13,a-exp-i1,2017-18,Brewster - Eddy Elementary,00410010, 22.6, 100.0, 10.7 to 1, 82.5, 87.8 +4.225,4.23,a-exp-i1,2017-18,Brewster - Stony Brook Elementary,00410005, 20.7, 100.0, 11.3 to 1, 84.5, 95.2 +2.05,2.05,a-exp-i1,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 29.0, 75.4, 10.6 to 1, 41.0, 96.6 +4.535,4.54,a-exp-i1,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.3, 100.0, 15.8 to 1, 90.7, 92.6 +4.725,4.73,a-exp-i1,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 86.9, 100.0, 16.8 to 1, 94.5, 94.5 +4.220000000000001,4.22,a-exp-i1,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.4, 100.0, 18.6 to 1, 84.4, 100.0 +4.725,4.73,a-exp-i1,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 18.2, 100.0, 17.1 to 1, 94.5, 97.5 +4.63,4.63,a-exp-i1,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.3, 98.4, 16.9 to 1, 92.6, 97.3 +4.365,4.37,a-exp-i1,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 47.1, 100.0, 14.1 to 1, 87.3, 91.5 +5.0,5.0,a-exp-i1,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.9, 100.0, 5.5 to 1, 100.0, 100.0 +4.545,4.55,a-exp-i1,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 15.8 to 1, 90.9, 98.0 +4.715,4.72,a-exp-i1,2017-18,Brimfield - Brimfield Elementary,00430005, 26.3, 100.0, 10.9 to 1, 94.3, 100.0 +4.58,4.58,a-exp-i1,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 35.6, 100.0, 12.8 to 1, 91.6, 80.3 +4.6049999999999995,4.6,a-exp-i1,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 95.5, 100.0, 13.4 to 1, 92.1, 90.1 +4.725,4.73,a-exp-i1,2017-18,Brockton - Ashfield Middle School,00440421, 37.6, 99.7, 13.4 to 1, 94.5, 94.7 +4.975,4.98,a-exp-i1,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 14.4, 99.3, 16.5 to 1, 99.5, 100.0 +4.265,4.27,a-exp-i1,2017-18,Brockton - Brockton Champion High School,00440515, 16.8, 99.4, 10.4 to 1, 85.3, 97.6 +4.485,4.49,a-exp-i1,2017-18,Brockton - Brockton High,00440505, 243.2, 98.7, 17.0 to 1, 89.7, 92.6 +5.0,5.0,a-exp-i1,2017-18,Brockton - Brookfield,00440010, 36.3, 99.7, 17.8 to 1, 100.0, 98.9 +4.925,4.93,a-exp-i1,2017-18,Brockton - Downey,00440110, 38.7, 99.7, 16.3 to 1, 98.5, 96.1 +4.765,4.77,a-exp-i1,2017-18,Brockton - Dr W Arnone Community School,00440001, 44.3, 99.8, 16.6 to 1, 95.3, 92.8 +4.965,4.97,a-exp-i1,2017-18,Brockton - East Middle School,00440405, 38.3, 100.0, 12.5 to 1, 99.3, 92.7 +4.865,4.87,a-exp-i1,2017-18,Brockton - Edgar B Davis,00440023, 55.3, 98.2, 18.5 to 1, 97.3, 98.2 +4.46,4.46,a-exp-i1,2017-18,Brockton - Edison Academy,00440520, 7.5, 93.4, 26.0 to 1, 89.2, 97.3 +4.765,4.77,a-exp-i1,2017-18,Brockton - Frederick Douglass Academy,00440080, 5.3, 100.0, 6.4 to 1, 95.3, 57.7 +4.83,4.83,a-exp-i1,2017-18,Brockton - Gilmore Elementary School,00440055, 29.2, 100.0, 19.1 to 1, 96.6, 98.6 +5.0,5.0,a-exp-i1,2017-18,Brockton - Hancock,00440045, 32.9, 100.0, 20.0 to 1, 100.0, 100.0 +3.845,3.85,a-exp-i1,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 12.7, 89.7, 4.6 to 1, 76.9, 80.9 +4.83,4.83,a-exp-i1,2017-18,Brockton - John F Kennedy,00440017, 31.5, 100.0, 18.6 to 1, 96.6, 100.0 +4.64,4.64,a-exp-i1,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 41.4, 99.8, 16.6 to 1, 92.8, 100.0 +4.63,4.63,a-exp-i1,2017-18,Brockton - Louis F Angelo Elementary,00440065, 46.4, 100.0, 19.7 to 1, 92.6, 99.2 +4.795,4.8,a-exp-i1,2017-18,Brockton - Manthala George Jr. School,00440003, 50.0, 99.8, 18.4 to 1, 95.9, 98.0 +4.755,4.76,a-exp-i1,2017-18,Brockton - Mary E. Baker School,00440002, 42.1, 100.0, 19.3 to 1, 95.1, 96.5 +4.865,4.87,a-exp-i1,2017-18,Brockton - North Middle School,00440410, 40.1, 100.0, 15.7 to 1, 97.3, 97.5 +4.75,4.75,a-exp-i1,2017-18,Brockton - Oscar F Raymond,00440078, 41.7, 100.0, 21.9 to 1, 95.0, 97.6 +4.58,4.58,a-exp-i1,2017-18,Brockton - South Middle School,00440415, 36.7, 100.0, 13.3 to 1, 91.6, 94.6 +4.7700000000000005,4.77,a-exp-i1,2017-18,Brockton - West Middle School,00440420, 43.1, 99.8, 14.8 to 1, 95.4, 97.7 +2.305,2.31,a-exp-i1,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 139.4, 71.1, 12.5 to 1, 46.1, 79.2 +4.58,4.58,a-exp-i1,2017-18,Brookfield - Brookfield Elementary,00450005, 23.8, 100.0, 13.1 to 1, 91.6, 95.8 +2.715,2.72,a-exp-i1,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 3.0, 100.0, 19.7 to 1, 54.3, 100.0 +4.18,4.18,a-exp-i1,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 7.2, 100.0, 8.4 to 1, 83.6, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Brookline - Brookline High,00460505, 181.2, 98.9, 11.5 to 1, 87.1, 93.2 +3.995,4.0,a-exp-i1,2017-18,Brookline - Edith C Baker,00460005, 59.2, 99.6, 12.9 to 1, 79.9, 96.9 +4.1,4.1,a-exp-i1,2017-18,Brookline - Edward Devotion,00460015, 71.4, 99.7, 11.2 to 1, 82.0, 92.5 +4.49,4.49,a-exp-i1,2017-18,Brookline - Heath,00460025, 41.7, 100.0, 13.5 to 1, 89.8, 95.7 +4.235,4.24,a-exp-i1,2017-18,Brookline - John D Runkle,00460045, 48.0, 100.0, 13.1 to 1, 84.7, 97.9 +4.255,4.26,a-exp-i1,2017-18,Brookline - Lawrence,00460030, 54.6, 98.2, 13.2 to 1, 85.1, 96.8 +3.285,3.29,a-exp-i1,2017-18,Brookline - Michael Driscoll,00460020, 44.1, 95.8, 14.2 to 1, 65.7, 91.5 +3.9549999999999996,3.95,a-exp-i1,2017-18,Brookline - Pierce,00460040, 60.9, 99.0, 14.1 to 1, 79.1, 91.6 +5.0,5.0,a-exp-i1,2017-18,Brookline - The Lynch Center,00460060, 5.2, 100.0, 11.2 to 1, 100.0, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Brookline - William H Lincoln,00460035, 49.5, 100.0, 11.7 to 1, 85.4, 93.9 +4.365,4.37,a-exp-i1,2017-18,Burlington - Burlington High,00480505, 94.6, 99.4, 11.2 to 1, 87.3, 94.7 +3.745,3.75,a-exp-i1,2017-18,Burlington - Fox Hill,00480007, 36.9, 100.0, 10.8 to 1, 74.9, 93.9 +4.265,4.27,a-exp-i1,2017-18,Burlington - Francis Wyman Elementary,00480035, 50.8, 100.0, 10.6 to 1, 85.3, 95.2 +4.535,4.54,a-exp-i1,2017-18,Burlington - Marshall Simonds Middle,00480303, 73.1, 100.0, 11.0 to 1, 90.7, 94.8 +4.555,4.56,a-exp-i1,2017-18,Burlington - Memorial,00480015, 36.7, 100.0, 11.1 to 1, 91.1, 96.6 +4.38,4.38,a-exp-i1,2017-18,Burlington - Pine Glen Elementary,00480020, 30.2, 100.0, 10.3 to 1, 87.6, 99.2 +3.475,3.48,a-exp-i1,2017-18,Cambridge - Amigos School,00490006, 35.1, 97.2, 11.3 to 1, 69.5, 76.2 +4.08,4.08,a-exp-i1,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 190.2, 97.5, 10.3 to 1, 81.6, 84.5 +4.0,4.0,a-exp-i1,2017-18,Cambridge - Cambridge Street Upper School,00490305, 33.8, 100.0, 7.3 to 1, 80.0, 91.1 +4.125,4.13,a-exp-i1,2017-18,Cambridge - Cambridgeport,00490007, 25.0, 100.0, 13.7 to 1, 82.5, 87.3 +4.495,4.5,a-exp-i1,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 30.0, 100.0, 9.9 to 1, 89.9, 96.7 +4.05,4.05,a-exp-i1,2017-18,Cambridge - Graham and Parks,00490080, 31.5, 96.8, 11.5 to 1, 81.0, 93.7 +4.6450000000000005,4.65,a-exp-i1,2017-18,Cambridge - Haggerty,00490020, 24.9, 100.0, 10.3 to 1, 92.9, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Cambridge - John M Tobin,00490065, 21.8, 100.0, 13.5 to 1, 87.1, 100.0 +4.46,4.46,a-exp-i1,2017-18,Cambridge - Kennedy-Longfellow,00490040, 27.7, 100.0, 10.6 to 1, 89.2, 92.8 +3.85,3.85,a-exp-i1,2017-18,Cambridge - King Open,00490035, 34.9, 97.1, 9.4 to 1, 77.0, 94.3 +4.0200000000000005,4.02,a-exp-i1,2017-18,Cambridge - Maria L. Baldwin,00490005, 30.6, 100.0, 11.9 to 1, 80.4, 96.7 +4.32,4.32,a-exp-i1,2017-18,Cambridge - Martin Luther King Jr.,00490030, 29.5, 100.0, 11.1 to 1, 86.4, 79.7 +4.7700000000000005,4.77,a-exp-i1,2017-18,Cambridge - Morse,00490045, 32.5, 100.0, 9.4 to 1, 95.4, 93.3 +4.5649999999999995,4.56,a-exp-i1,2017-18,Cambridge - Peabody,00490050, 26.3, 100.0, 12.3 to 1, 91.3, 96.2 +3.94,3.94,a-exp-i1,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 33.1, 97.0, 7.9 to 1, 78.8, 80.1 +3.755,3.76,a-exp-i1,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 30.2, 100.0, 8.9 to 1, 75.1, 96.7 +3.665,3.67,a-exp-i1,2017-18,Cambridge - Vassal Lane Upper School,00490320, 33.7, 100.0, 8.3 to 1, 73.3, 91.1 +3.91,3.91,a-exp-i1,2017-18,Canton - Canton High,00500505, 69.8, 100.0, 14.1 to 1, 78.2, 88.2 +4.14,4.14,a-exp-i1,2017-18,Canton - Dean S Luce,00500020, 36.1, 100.0, 13.8 to 1, 82.8, 99.5 +4.33,4.33,a-exp-i1,2017-18,Canton - John F Kennedy,00500017, 38.5, 100.0, 13.8 to 1, 86.6, 94.4 +4.455,4.46,a-exp-i1,2017-18,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 12.8 to 1, 89.1, 99.9 +4.0,4.0,a-exp-i1,2017-18,Canton - Rodman Early Childhood Center,00500010, 5.0, 100.0, 17.6 to 1, 80.0, 100.0 +4.375,4.38,a-exp-i1,2017-18,Canton - Wm H Galvin Middle,00500305, 60.4, 100.0, 12.2 to 1, 87.5, 92.7 +4.555,4.56,a-exp-i1,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 22.0, 82.2, 11.0 to 1, 91.1, 78.2 +3.72,3.72,a-exp-i1,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 65.8, 87.9, 9.0 to 1, 74.4, 80.7 +4.65,4.65,a-exp-i1,2017-18,Carlisle - Carlisle School,00510025, 56.8, 100.0, 10.7 to 1, 93.0, 100.0 +4.01,4.01,a-exp-i1,2017-18,Carver - Carver Elementary School,00520015, 50.6, 100.0, 15.5 to 1, 80.2, 98.0 +4.1850000000000005,4.19,a-exp-i1,2017-18,Carver - Carver Middle/High School,00520405, 67.3, 98.5, 11.8 to 1, 83.7, 91.1 +5.0,5.0,a-exp-i1,2017-18,Central Berkshire - Becket Washington School,06350005, 10.1, 100.0, 12.4 to 1, 100.0, 96.0 +4.82,4.82,a-exp-i1,2017-18,Central Berkshire - Craneville,06350025, 28.0, 100.0, 14.7 to 1, 96.4, 99.3 +5.0,5.0,a-exp-i1,2017-18,Central Berkshire - Kittredge,06350035, 12.5, 100.0, 12.0 to 1, 100.0, 88.8 +4.95,4.95,a-exp-i1,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 30.0, 100.0, 12.7 to 1, 99.0, 96.7 +4.885,4.89,a-exp-i1,2017-18,Central Berkshire - Wahconah Regional High,06350505, 44.3, 100.0, 12.1 to 1, 97.7, 100.0 +4.21,4.21,a-exp-i1,2017-18,Chelmsford - Byam School,00560030, 38.0, 100.0, 13.3 to 1, 84.2, 97.4 +4.029999999999999,4.03,a-exp-i1,2017-18,Chelmsford - Center Elementary School,00560005, 31.0, 100.0, 14.5 to 1, 80.6, 96.8 +4.675,4.68,a-exp-i1,2017-18,Chelmsford - Charles D Harrington,00560025, 31.0, 100.0, 15.9 to 1, 93.5, 100.0 +4.495,4.5,a-exp-i1,2017-18,Chelmsford - Chelmsford High,00560505, 109.5, 100.0, 13.5 to 1, 89.9, 97.3 +4.24,4.24,a-exp-i1,2017-18,Chelmsford - Col Moses Parker School,00560305, 62.3, 100.0, 11.5 to 1, 84.8, 93.6 +5.0,5.0,a-exp-i1,2017-18,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 18.9 to 1, 100.0, 85.7 +4.265,4.27,a-exp-i1,2017-18,Chelmsford - McCarthy Middle School,00560310, 67.8, 100.0, 12.0 to 1, 85.3, 91.2 +4.8100000000000005,4.81,a-exp-i1,2017-18,Chelmsford - South Row,00560015, 26.0, 100.0, 15.4 to 1, 96.2, 100.0 +2.66,2.66,a-exp-i1,2017-18,Chelsea - Chelsea High,00570505, 112.8, 99.3, 13.6 to 1, 53.2, 71.6 +3.28,3.28,a-exp-i1,2017-18,Chelsea - Clark Avenue School,00570050, 32.0, 96.9, 17.3 to 1, 65.6, 75.0 +3.8,3.8,a-exp-i1,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 37.5, 100.0, 15.7 to 1, 76.0, 89.3 +3.6100000000000003,3.61,a-exp-i1,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.3, 100.0, 16.5 to 1, 72.2, 84.5 +3.16,3.16,a-exp-i1,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 38.0, 94.7, 14.9 to 1, 63.2, 100.0 +3.8,3.8,a-exp-i1,2017-18,Chelsea - George F. Kelly Elementary,00570035, 37.5, 100.0, 14.6 to 1, 76.0, 100.0 +2.17,2.17,a-exp-i1,2017-18,Chelsea - Joseph A. Browne School,00570055, 40.7, 100.0, 15.1 to 1, 43.4, 70.5 +4.215,4.22,a-exp-i1,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 51.0, 98.0, 17.0 to 1, 84.3, 94.1 +3.125,3.13,a-exp-i1,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 32.0, 96.9, 15.9 to 1, 62.5, 90.6 +4.665,4.67,a-exp-i1,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.9, 100.0, 9.1 to 1, 93.3, 100.0 +4.465,4.47,a-exp-i1,2017-18,Chicopee - Barry,00610003, 28.0, 100.0, 14.3 to 1, 89.3, 92.9 +4.875,4.88,a-exp-i1,2017-18,Chicopee - Belcher,00610010, 19.9, 100.0, 13.6 to 1, 97.5, 95.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Chicopee - Bellamy Middle,00610305, 77.7, 98.7, 10.3 to 1, 87.1, 89.7 +4.375,4.38,a-exp-i1,2017-18,Chicopee - Bowe,00610015, 32.1, 100.0, 14.9 to 1, 87.5, 96.9 +4.93,4.93,a-exp-i1,2017-18,Chicopee - Bowie,00610020, 23.6, 100.0, 14.1 to 1, 98.6, 100.0 +4.7,4.7,a-exp-i1,2017-18,Chicopee - Chicopee Academy,00610021, 16.6, 100.0, 4.9 to 1, 94.0, 81.9 +4.6049999999999995,4.6,a-exp-i1,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 114.8, 99.1, 11.9 to 1, 92.1, 89.5 +4.515,4.52,a-exp-i1,2017-18,Chicopee - Chicopee High,00610505, 87.5, 97.7, 10.9 to 1, 90.3, 94.3 +4.42,4.42,a-exp-i1,2017-18,Chicopee - Dupont Middle,00610310, 60.5, 96.7, 12.4 to 1, 88.4, 85.1 +4.24,4.24,a-exp-i1,2017-18,Chicopee - Fairview Elementary,00610050, 33.7, 100.0, 13.7 to 1, 84.8, 94.1 +4.404999999999999,4.4,a-exp-i1,2017-18,Chicopee - Gen John J Stefanik,00610090, 28.9, 100.0, 13.9 to 1, 88.1, 100.0 +4.07,4.07,a-exp-i1,2017-18,Chicopee - Lambert-Lavoie,00610040, 24.0, 100.0, 13.2 to 1, 81.4, 95.8 +3.7950000000000004,3.8,a-exp-i1,2017-18,Chicopee - Litwin,00610022, 29.0, 100.0, 14.4 to 1, 75.9, 96.6 +4.8,4.8,a-exp-i1,2017-18,Chicopee - Streiber Memorial School,00610065, 18.0, 100.0, 15.5 to 1, 96.0, 100.0 +4.285,4.29,a-exp-i1,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 17.2 to 1, 85.7, 92.9 +3.965,3.97,a-exp-i1,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 41.0, 71.3, 9.6 to 1, 79.3, 88.4 +1.2550000000000001,1.26,a-exp-i1,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 26.7, 64.8, 10.6 to 1, 25.1, 77.5 +0.93,1,a-exp-i1,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 24.7, 72.1, 11.0 to 1, 18.6, 70.0 +0.8150000000000001,1,a-exp-i1,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 16.0, 80.0, 14.8 to 1, 16.3, 67.5 +4.92,4.92,a-exp-i1,2017-18,Clarksburg - Clarksburg Elementary,00630010, 15.5, 97.4, 12.5 to 1, 98.4, 100.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,Clinton - Clinton Elementary,00640050, 53.7, 100.0, 12.7 to 1, 88.8, 92.6 +3.145,3.15,a-exp-i1,2017-18,Clinton - Clinton Middle School,00640305, 57.2, 98.3, 13.0 to 1, 62.9, 98.3 +4.154999999999999,4.15,a-exp-i1,2017-18,Clinton - Clinton Senior High,00640505, 40.4, 100.0, 11.3 to 1, 83.1, 87.6 +1.215,1.22,a-exp-i1,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 37.0, 39.8, 9.3 to 1, 24.3, 85.9 +4.115,4.12,a-exp-i1,2017-18,Cohasset - Cohasset Middle/High School,00650505, 71.7, 100.0, 11.8 to 1, 82.3, 94.4 +4.55,4.55,a-exp-i1,2017-18,Cohasset - Deer Hill,00650005, 22.2, 100.0, 17.6 to 1, 91.0, 100.0 +3.925,3.93,a-exp-i1,2017-18,Cohasset - Joseph Osgood,00650010, 18.6, 100.0, 18.6 to 1, 78.5, 100.0 +1.625,1.63,a-exp-i1,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 40.0, 87.5, 19.0 to 1, 32.5, 80.0 +2.43,2.43,a-exp-i1,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 35.4, 80.3, 10.3 to 1, 48.6, 81.7 +2.045,2.05,a-exp-i1,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 33.0, 62.1, 9.7 to 1, 40.9, 97.0 +1.9100000000000001,1.91,a-exp-i1,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.3, 77.9, 8.8 to 1, 38.2, 85.9 +1.4949999999999999,1.5,a-exp-i1,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 33.5, 89.6, 9.6 to 1, 29.9, 91.0 +4.33,4.33,a-exp-i1,2017-18,Concord - Alcott,00670005, 38.8, 100.0, 12.6 to 1, 86.6, 100.0 +4.74,4.74,a-exp-i1,2017-18,Concord - Concord Middle,00670305, 55.7, 100.0, 13.0 to 1, 94.8, 89.2 +4.025,4.03,a-exp-i1,2017-18,Concord - Thoreau,00670020, 37.9, 100.0, 12.1 to 1, 80.5, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Concord - Willard,00670030, 36.9, 100.0, 11.9 to 1, 85.4, 100.0 +4.63,4.63,a-exp-i1,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 102.6, 100.0, 12.4 to 1, 92.6, 93.2 +0.79,1,a-exp-i1,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 25.3, 81.2, 17.8 to 1, 15.8, 84.2 +4.585,4.59,a-exp-i1,2017-18,Conway - Conway Grammar,00680005, 13.4, 100.0, 10.3 to 1, 91.7, 100.0 +4.265,4.27,a-exp-i1,2017-18,Danvers - Danvers High,00710505, 77.4, 98.7, 12.2 to 1, 85.3, 89.8 +4.41,4.41,a-exp-i1,2017-18,Danvers - Great Oak,00710015, 25.5, 100.0, 14.9 to 1, 88.2, 100.0 +4.63,4.63,a-exp-i1,2017-18,Danvers - Highlands,00710010, 27.0, 100.0, 13.8 to 1, 92.6, 90.7 +4.3100000000000005,4.31,a-exp-i1,2017-18,Danvers - Holten Richmond Middle School,00710305, 65.3, 98.5, 12.6 to 1, 86.2, 89.3 +4.725,4.73,a-exp-i1,2017-18,Danvers - Ivan G Smith,00710032, 18.0, 100.0, 15.7 to 1, 94.5, 97.2 +4.445,4.45,a-exp-i1,2017-18,Danvers - Riverside,00710030, 27.0, 100.0, 13.1 to 1, 88.9, 96.3 +4.195,4.2,a-exp-i1,2017-18,Danvers - Willis E Thorpe,00710045, 24.8, 100.0, 12.5 to 1, 83.9, 100.0 +5.0,5.0,a-exp-i1,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 10.7, 100.0, 13.1 to 1, 100.0, 81.3 +4.66,4.66,a-exp-i1,2017-18,Dartmouth - Dartmouth High,00720505, 79.2, 98.3, 13.5 to 1, 93.2, 96.3 +4.33,4.33,a-exp-i1,2017-18,Dartmouth - Dartmouth Middle,00720050, 78.0, 98.8, 12.4 to 1, 86.6, 96.3 +4.8100000000000005,4.81,a-exp-i1,2017-18,Dartmouth - George H Potter,00720030, 26.4, 100.0, 16.3 to 1, 96.2, 98.0 +4.5600000000000005,4.56,a-exp-i1,2017-18,Dartmouth - James M. Quinn School,00720040, 45.5, 100.0, 13.9 to 1, 91.2, 100.0 +4.125,4.13,a-exp-i1,2017-18,Dartmouth - Joseph Demello,00720015, 28.6, 100.0, 15.1 to 1, 82.5, 98.5 +4.3,4.3,a-exp-i1,2017-18,Dedham - Avery,00730010, 28.5, 100.0, 11.2 to 1, 86.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2017-18,Dedham - Dedham High,00730505, 65.0, 100.0, 11.3 to 1, 86.2, 92.3 +4.13,4.13,a-exp-i1,2017-18,Dedham - Dedham Middle School,00730305, 69.0, 95.7, 8.7 to 1, 82.6, 98.6 +4.7299999999999995,4.73,a-exp-i1,2017-18,Dedham - Early Childhood Center,00730005, 18.5, 100.0, 14.6 to 1, 94.6, 100.0 +4.54,4.54,a-exp-i1,2017-18,Dedham - Greenlodge,00730025, 21.8, 100.0, 12.2 to 1, 90.8, 100.0 +4.7700000000000005,4.77,a-exp-i1,2017-18,Dedham - Oakdale,00730030, 21.7, 100.0, 13.2 to 1, 95.4, 100.0 +4.4799999999999995,4.48,a-exp-i1,2017-18,Dedham - Riverdale,00730045, 19.2, 100.0, 9.3 to 1, 89.6, 94.8 +4.275,4.28,a-exp-i1,2017-18,Deerfield - Deerfield Elementary,00740015, 37.4, 97.3, 10.7 to 1, 85.5, 92.5 +4.205,4.21,a-exp-i1,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.7, 98.8, 12.1 to 1, 84.1, 89.0 +4.65,4.65,a-exp-i1,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 43.1, 100.0, 8.1 to 1, 93.0, 97.7 +4.485,4.49,a-exp-i1,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 29.0, 100.0, 9.4 to 1, 89.7, 100.0 +4.55,4.55,a-exp-i1,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 44.3, 100.0, 10.1 to 1, 91.0, 86.4 +4.695,4.7,a-exp-i1,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 49.0, 100.0, 11.0 to 1, 93.9, 98.0 +4.720000000000001,4.72,a-exp-i1,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 35.7, 100.0, 11.7 to 1, 94.4, 100.0 +4.7,4.7,a-exp-i1,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 33.1, 100.0, 14.0 to 1, 94.0, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 29.2, 100.0, 13.4 to 1, 96.2, 100.0 +4.365,4.37,a-exp-i1,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 78.7, 100.0, 11.6 to 1, 87.3, 90.0 +4.775,4.78,a-exp-i1,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 44.2, 100.0, 13.2 to 1, 95.5, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Dighton-Rehoboth - Palmer River,06500010, 41.3, 100.0, 13.4 to 1, 90.4, 100.0 +3.825,3.83,a-exp-i1,2017-18,Douglas - Douglas Elementary School,00770015, 23.5, 100.0, 16.0 to 1, 76.5, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Douglas - Douglas High School,00770505, 34.3, 97.7, 11.1 to 1, 81.9, 81.9 +3.965,3.97,a-exp-i1,2017-18,Douglas - Douglas Middle School,00770305, 21.4, 100.0, 16.2 to 1, 79.3, 93.0 +4.025,4.03,a-exp-i1,2017-18,Douglas - Douglas Primary School,00770005, 13.1, 100.0, 17.1 to 1, 80.5, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Dover - Chickering,00780005, 41.8, 100.0, 11.8 to 1, 85.6, 97.6 +4.49,4.49,a-exp-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.8, 100.0, 11.5 to 1, 89.8, 95.8 +4.8549999999999995,4.85,a-exp-i1,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 48.7, 100.0, 10.8 to 1, 97.1, 99.1 +4.095000000000001,4.1,a-exp-i1,2017-18,Dracut - Brookside Elementary,00790035, 22.1, 100.0, 20.7 to 1, 81.9, 92.3 +3.9,3.9,a-exp-i1,2017-18,Dracut - Dracut Senior High,00790505, 61.0, 95.1, 13.7 to 1, 78.0, 86.9 +3.15,3.15,a-exp-i1,2017-18,Dracut - George H. Englesby Elementary School,00790045, 27.0, 100.0, 19.1 to 1, 63.0, 92.6 +4.42,4.42,a-exp-i1,2017-18,Dracut - Greenmont Avenue,00790030, 17.3, 100.0, 17.0 to 1, 88.4, 98.3 +4.63,4.63,a-exp-i1,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 27.1, 100.0, 21.1 to 1, 92.6, 96.3 +3.8,3.8,a-exp-i1,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 55.1, 100.0, 15.9 to 1, 76.0, 81.1 +3.685,3.69,a-exp-i1,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.0, 100.0, 14.9 to 1, 73.7, 89.5 +4.49,4.49,a-exp-i1,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.5, 100.0, 14.1 to 1, 89.8, 100.0 +4.9,4.9,a-exp-i1,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 50.0, 100.0, 13.8 to 1, 98.0, 100.0 +4.195,4.2,a-exp-i1,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 28.0, 100.0, 14.0 to 1, 83.9, 96.4 +4.665,4.67,a-exp-i1,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 46.1, 100.0, 12.5 to 1, 93.3, 95.7 +4.515,4.52,a-exp-i1,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 31.0, 100.0, 15.5 to 1, 90.3, 96.8 +4.715,4.72,a-exp-i1,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 17.5, 100.0, 15.8 to 1, 94.3, 100.0 +4.385,4.39,a-exp-i1,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 73.0, 100.0, 16.0 to 1, 87.7, 89.0 +4.26,4.26,a-exp-i1,2017-18,Duxbury - Alden School,00820004, 47.1, 97.9, 14.3 to 1, 85.2, 93.6 +4.785,4.79,a-exp-i1,2017-18,Duxbury - Chandler Elementary,00820006, 46.4, 100.0, 13.5 to 1, 95.7, 100.0 +4.71,4.71,a-exp-i1,2017-18,Duxbury - Duxbury High,00820505, 80.0, 99.6, 13.2 to 1, 94.2, 96.3 +4.16,4.16,a-exp-i1,2017-18,Duxbury - Duxbury Middle,00820305, 55.3, 97.0, 13.4 to 1, 83.2, 90.6 +3.815,3.82,a-exp-i1,2017-18,East Bridgewater - Central,00830005, 39.3, 100.0, 15.3 to 1, 76.3, 97.5 +4.0649999999999995,4.06,a-exp-i1,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 71.3, 98.6, 14.5 to 1, 81.3, 87.4 +3.72,3.72,a-exp-i1,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 43.0, 100.0, 15.4 to 1, 74.4, 93.0 +4.720000000000001,4.72,a-exp-i1,2017-18,East Longmeadow - Birchland Park,00870305, 53.5, 100.0, 12.4 to 1, 94.4, 96.3 +4.68,4.68,a-exp-i1,2017-18,East Longmeadow - East Longmeadow High,00870505, 62.5, 100.0, 13.4 to 1, 93.6, 98.4 +4.8950000000000005,4.9,a-exp-i1,2017-18,East Longmeadow - Mapleshade,00870010, 23.9, 100.0, 11.8 to 1, 97.9, 100.0 +5.0,5.0,a-exp-i1,2017-18,East Longmeadow - Meadow Brook,00870013, 41.8, 100.0, 13.9 to 1, 100.0, 100.0 +4.695,4.7,a-exp-i1,2017-18,East Longmeadow - Mountain View,00870015, 24.4, 100.0, 12.0 to 1, 93.9, 100.0 +4.529999999999999,4.53,a-exp-i1,2017-18,Eastham - Eastham Elementary,00850005, 23.3, 100.0, 7.4 to 1, 90.6, 100.0 +4.35,4.35,a-exp-i1,2017-18,Easthampton - Center School,00860005, 14.4, 100.0, 13.7 to 1, 87.0, 97.6 +4.505,4.51,a-exp-i1,2017-18,Easthampton - Easthampton High,00860505, 32.2, 100.0, 14.5 to 1, 90.1, 92.2 +4.09,4.09,a-exp-i1,2017-18,Easthampton - Maple,00860010, 18.3, 100.0, 13.5 to 1, 81.8, 98.1 +3.7600000000000002,3.76,a-exp-i1,2017-18,Easthampton - Neil A Pepin,00860020, 15.2, 100.0, 11.8 to 1, 75.2, 98.0 +3.685,3.69,a-exp-i1,2017-18,Easthampton - White Brook Middle School,00860305, 35.4, 97.2, 12.7 to 1, 73.7, 88.7 +4.62,4.62,a-exp-i1,2017-18,Easton - Center School,00880003, 18.7, 100.0, 14.2 to 1, 92.4, 97.4 +4.285,4.29,a-exp-i1,2017-18,Easton - Easton Middle School,00880405, 67.7, 100.0, 13.1 to 1, 85.7, 100.0 +4.835,4.84,a-exp-i1,2017-18,Easton - Moreau Hall,00880020, 15.2, 100.0, 14.9 to 1, 96.7, 100.0 +4.595000000000001,4.6,a-exp-i1,2017-18,Easton - Oliver Ames High,00880505, 81.3, 100.0, 14.6 to 1, 91.9, 94.6 +4.985,4.99,a-exp-i1,2017-18,Easton - Parkview Elementary,00880015, 24.1, 100.0, 13.3 to 1, 99.7, 97.9 +4.455,4.46,a-exp-i1,2017-18,Easton - Richardson Olmsted School,00880025, 58.0, 100.0, 14.4 to 1, 89.1, 99.1 +4.195,4.2,a-exp-i1,2017-18,Edgartown - Edgartown Elementary,00890005, 38.5, 98.8, 8.9 to 1, 83.9, 91.6 +3.215,3.22,a-exp-i1,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 35.3, 92.6, 10.8 to 1, 64.3, 83.0 +4.475,4.48,a-exp-i1,2017-18,Erving - Erving Elementary,00910030, 18.1, 97.2, 7.8 to 1, 89.5, 100.0 +3.8850000000000002,3.89,a-exp-i1,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 122.7, 95.6, 11.3 to 1, 77.7, 73.9 +3.8899999999999997,3.89,a-exp-i1,2017-18,Everett - Adams School,00930003, 9.0, 100.0, 22.3 to 1, 77.8, 100.0 +4.535,4.54,a-exp-i1,2017-18,Everett - Devens School,00930030, 10.8, 100.0, 5.2 to 1, 90.7, 78.1 +3.6450000000000005,3.65,a-exp-i1,2017-18,Everett - Everett High,00930505, 149.7, 98.0, 13.2 to 1, 72.9, 79.3 +4.125,4.13,a-exp-i1,2017-18,Everett - George Keverian School,00930028, 63.9, 96.9, 13.5 to 1, 82.5, 89.0 +3.9899999999999998,3.99,a-exp-i1,2017-18,Everett - Lafayette School,00930038, 61.8, 98.4, 15.3 to 1, 79.8, 87.8 +3.7600000000000002,3.76,a-exp-i1,2017-18,Everett - Madeline English School,00930018, 68.1, 100.0, 12.2 to 1, 75.2, 89.7 +3.7299999999999995,3.73,a-exp-i1,2017-18,Everett - Parlin School,00930058, 60.9, 100.0, 13.7 to 1, 74.6, 81.4 +4.14,4.14,a-exp-i1,2017-18,Everett - Sumner G. Whittier School,00930010, 53.4, 100.0, 11.6 to 1, 82.8, 94.4 +3.905,3.91,a-exp-i1,2017-18,Everett - Webster School,00930015, 51.0, 100.0, 14.5 to 1, 78.1, 90.9 +1.365,1.37,a-exp-i1,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 98.4, 60.0, 11.4 to 1, 27.3, 83.7 +4.18,4.18,a-exp-i1,2017-18,Fairhaven - East Fairhaven,00940010, 27.5, 100.0, 15.2 to 1, 83.6, 100.0 +4.41,4.41,a-exp-i1,2017-18,Fairhaven - Fairhaven High,00940505, 49.0, 97.5, 13.4 to 1, 88.2, 93.9 +4.095000000000001,4.1,a-exp-i1,2017-18,Fairhaven - Hastings Middle,00940305, 34.5, 99.3, 13.6 to 1, 81.9, 94.2 +4.595000000000001,4.6,a-exp-i1,2017-18,Fairhaven - Leroy Wood,00940030, 31.0, 100.0, 16.5 to 1, 91.9, 100.0 +3.475,3.48,a-exp-i1,2017-18,Fall River - B M C Durfee High,00950505, 182.0, 92.4, 11.6 to 1, 69.5, 72.9 +2.965,2.97,a-exp-i1,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 54.0, 90.8, 13.7 to 1, 59.3, 75.9 +0.0,1,a-exp-i1,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0,N/A,"","" +2.445,2.45,a-exp-i1,2017-18,Fall River - Henry Lord Community School,00950017, 55.2, 87.3, 11.8 to 1, 48.9, 72.8 +4.029999999999999,4.03,a-exp-i1,2017-18,Fall River - James Tansey,00950140, 18.4, 89.1, 17.1 to 1, 80.6, 94.6 +3.2950000000000004,3.3,a-exp-i1,2017-18,Fall River - John J Doran,00950045, 41.0, 85.4, 12.8 to 1, 65.9, 65.9 +2.7399999999999998,2.74,a-exp-i1,2017-18,Fall River - Letourneau Elementary School,00950013, 39.8, 95.0, 15.5 to 1, 54.8, 73.1 +1.72,1.72,a-exp-i1,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 51.8, 88.4, 13.7 to 1, 34.4, 78.8 +3.9299999999999997,3.93,a-exp-i1,2017-18,Fall River - Matthew J Kuss Middle,00950320, 56.1, 96.4, 13.4 to 1, 78.6, 75.0 +3.255,3.26,a-exp-i1,2017-18,Fall River - Morton Middle,00950315, 57.4, 93.0, 10.2 to 1, 65.1, 65.1 +3.66,3.66,a-exp-i1,2017-18,Fall River - North End Elementary,00950005, 48.4, 93.8, 15.9 to 1, 73.2, 93.8 +2.92,2.92,a-exp-i1,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 19.2, 83.7, 9.5 to 1, 58.4, 73.9 +4.04,4.04,a-exp-i1,2017-18,Fall River - Samuel Watson,00950145, 18.3, 100.0, 15.9 to 1, 80.8, 78.2 +3.905,3.91,a-exp-i1,2017-18,Fall River - Spencer Borden,00950130, 39.7, 98.2, 14.7 to 1, 78.1, 89.9 +3.285,3.29,a-exp-i1,2017-18,Fall River - Stone PK-12 School,00950340, 11.7, 79.4, 3.3 to 1, 65.7, 76.0 +3.7049999999999996,3.7,a-exp-i1,2017-18,Fall River - Talbot Innovation School,00950305, 49.9, 98.0, 10.1 to 1, 74.1, 70.5 +3.665,3.67,a-exp-i1,2017-18,Fall River - William S Greene,00950065, 56.2, 92.9, 13.3 to 1, 73.3, 87.6 +4.01,4.01,a-exp-i1,2017-18,Falmouth - East Falmouth Elementary,00960005, 29.2, 100.0, 9.0 to 1, 80.2, 100.0 +4.1850000000000005,4.19,a-exp-i1,2017-18,Falmouth - Falmouth High,00960505, 67.6, 97.9, 12.5 to 1, 83.7, 85.2 +4.6,4.6,a-exp-i1,2017-18,Falmouth - Lawrence,00960405, 51.6, 100.0, 11.6 to 1, 92.0, 92.2 +3.9299999999999997,3.93,a-exp-i1,2017-18,Falmouth - Morse Pond School,00960305, 45.7, 97.8, 12.1 to 1, 78.6, 93.4 +4.255,4.26,a-exp-i1,2017-18,Falmouth - Mullen-Hall,00960020, 38.8, 100.0, 11.2 to 1, 85.1, 93.3 +4.495,4.5,a-exp-i1,2017-18,Falmouth - North Falmouth Elementary,00960030, 27.8, 100.0, 11.5 to 1, 89.9, 96.4 +3.9,3.9,a-exp-i1,2017-18,Falmouth - Teaticket,00960015, 30.9, 100.0, 11.8 to 1, 78.0, 97.4 +3.9899999999999998,3.99,a-exp-i1,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 13.5, 100.0, 8.9 to 1, 79.8, 95.6 +3.8200000000000003,3.82,a-exp-i1,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 46.6, 97.9, 12.7 to 1, 76.4, 85.0 +4.745,4.75,a-exp-i1,2017-18,Fitchburg - Crocker Elementary,00970016, 39.0, 100.0, 17.1 to 1, 94.9, 97.4 +4.66,4.66,a-exp-i1,2017-18,Fitchburg - Fitchburg High,00970505, 89.1, 98.9, 13.5 to 1, 93.2, 91.0 +4.45,4.45,a-exp-i1,2017-18,Fitchburg - Goodrich Academy,00970510, 9.1, 100.0, 18.6 to 1, 89.0, 100.0 +4.0,4.0,a-exp-i1,2017-18,Fitchburg - McKay Arts Academy,00970340, 45.0, 100.0, 15.1 to 1, 80.0, 91.1 +4.095000000000001,4.1,a-exp-i1,2017-18,Fitchburg - Memorial Intermediate,00970048, 49.8, 100.0, 14.2 to 1, 81.9, 94.0 +3.69,3.69,a-exp-i1,2017-18,Fitchburg - Reingold Elementary,00970043, 42.0, 100.0, 15.9 to 1, 73.8, 92.9 +4.0200000000000005,4.02,a-exp-i1,2017-18,Fitchburg - South Street Elementary,00970060, 46.0, 100.0, 14.5 to 1, 80.4, 100.0 +5.0,5.0,a-exp-i1,2017-18,Florida - Abbott Memorial,00980005, 11.8, 91.5, 6.8 to 1, 100.0, 96.6 +3.935,3.94,a-exp-i1,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.7, 57.9, 10.7 to 1, 78.7, 92.2 +4.555,4.56,a-exp-i1,2017-18,Foxborough - Charles Taylor Elementary,00990050, 19.3, 100.0, 12.3 to 1, 91.1, 100.0 +4.495,4.5,a-exp-i1,2017-18,Foxborough - Foxborough High,00990505, 64.1, 100.0, 12.6 to 1, 89.9, 93.8 +4.470000000000001,4.47,a-exp-i1,2017-18,Foxborough - John J Ahern,00990405, 66.1, 100.0, 12.7 to 1, 89.4, 98.5 +4.765,4.77,a-exp-i1,2017-18,Foxborough - Mabelle M Burrell,00990015, 21.4, 100.0, 14.8 to 1, 95.3, 100.0 +4.325,4.33,a-exp-i1,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 31.8, 100.0, 12.4 to 1, 86.5, 100.0 +3.12,3.12,a-exp-i1,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 111.7, 78.4, 13.2 to 1, 62.4, 89.3 +3.29,3.29,a-exp-i1,2017-18,Framingham - Barbieri Elementary,01000035, 52.6, 96.2, 12.9 to 1, 65.8, 86.7 +3.78,3.78,a-exp-i1,2017-18,Framingham - Brophy,01000006, 41.3, 100.0, 11.5 to 1, 75.6, 96.4 +4.35,4.35,a-exp-i1,2017-18,Framingham - Cameron Middle School,01000302, 51.1, 100.0, 10.5 to 1, 87.0, 91.2 +4.475,4.48,a-exp-i1,2017-18,Framingham - Charlotte A Dunning,01000007, 36.1, 100.0, 13.1 to 1, 89.5, 100.0 +3.5450000000000004,3.55,a-exp-i1,2017-18,Framingham - Framingham High School,01000515, 133.2, 97.7, 16.3 to 1, 70.9, 89.6 +3.6799999999999997,3.68,a-exp-i1,2017-18,Framingham - Fuller Middle,01000305, 39.7, 100.0, 12.6 to 1, 73.6, 89.9 +3.3299999999999996,3.33,a-exp-i1,2017-18,Framingham - Hemenway,01000015, 42.2, 100.0, 13.5 to 1, 66.6, 95.0 +4.43,4.43,a-exp-i1,2017-18,Framingham - Juniper Hill School,01000001, 17.5, 100.0, 15.6 to 1, 88.6, 100.0 +2.56,2.56,a-exp-i1,2017-18,Framingham - King Elementary School,01000005, 20.9, 100.0, 13.5 to 1, 51.2, 83.7 +3.7399999999999998,3.74,a-exp-i1,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 35.3, 100.0, 10.5 to 1, 74.8, 95.7 +4.455,4.46,a-exp-i1,2017-18,Framingham - Miriam F McCarthy School,01000050, 50.5, 100.0, 11.2 to 1, 89.1, 100.0 +4.5,4.5,a-exp-i1,2017-18,Framingham - Potter Road,01000039, 35.2, 100.0, 14.6 to 1, 90.0, 97.2 +4.0200000000000005,4.02,a-exp-i1,2017-18,Framingham - Walsh Middle,01000310, 60.1, 97.0, 12.7 to 1, 80.4, 87.5 +3.37,3.37,a-exp-i1,2017-18,Framingham - Woodrow Wilson,01000055, 46.3, 97.8, 12.2 to 1, 67.4, 92.4 +3.055,3.06,a-exp-i1,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.3, 60.2, 8.6 to 1, 61.1, 95.7 +4.33,4.33,a-exp-i1,2017-18,Franklin - Annie Sullivan Middle School,01010040, 39.8, 100.0, 11.2 to 1, 86.6, 95.0 +4.325,4.33,a-exp-i1,2017-18,Franklin - Davis Thayer,01010035, 20.1, 100.0, 11.5 to 1, 86.5, 100.0 +3.75,3.75,a-exp-i1,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 8.0, 100.0, 13.0 to 1, 75.0, 100.0 +3.915,3.92,a-exp-i1,2017-18,Franklin - Franklin High,01010505, 124.8, 98.6, 14.3 to 1, 78.3, 88.6 +4.475,4.48,a-exp-i1,2017-18,Franklin - Helen Keller Elementary,01010012, 28.7, 100.0, 14.0 to 1, 89.5, 100.0 +3.8299999999999996,3.83,a-exp-i1,2017-18,Franklin - Horace Mann,01010405, 42.1, 98.8, 11.0 to 1, 76.6, 92.9 +4.945,4.95,a-exp-i1,2017-18,Franklin - J F Kennedy Memorial,01010013, 23.5, 100.0, 15.6 to 1, 98.9, 100.0 +4.5649999999999995,4.56,a-exp-i1,2017-18,Franklin - Jefferson Elementary,01010010, 24.4, 100.0, 13.8 to 1, 91.3, 95.9 +4.035,4.04,a-exp-i1,2017-18,Franklin - Oak Street Elementary,01010030, 25.3, 100.0, 15.4 to 1, 80.7, 100.0 +4.365,4.37,a-exp-i1,2017-18,Franklin - Parmenter,01010032, 23.6, 100.0, 13.7 to 1, 87.3, 100.0 +4.205,4.21,a-exp-i1,2017-18,Franklin - Remington Middle,01010310, 41.1, 100.0, 10.7 to 1, 84.1, 92.2 +4.43,4.43,a-exp-i1,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 50.0, 95.1, 9.7 to 1, 88.6, 82.8 +3.925,3.93,a-exp-i1,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 60.8, 100.0, 12.8 to 1, 78.5, 86.8 +4.25,4.25,a-exp-i1,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 27.1, 100.0, 16.0 to 1, 85.0, 96.3 +4.285,4.29,a-exp-i1,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 14.7 to 1, 85.7, 100.0 +4.675,4.68,a-exp-i1,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 47.1, 100.0, 16.0 to 1, 93.5, 89.4 +4.82,4.82,a-exp-i1,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 29.1, 100.0, 15.1 to 1, 96.4, 100.0 +4.3,4.3,a-exp-i1,2017-18,Frontier - Frontier Regional,06700505, 51.5, 99.6, 12.1 to 1, 86.0, 94.2 +4.335,4.34,a-exp-i1,2017-18,Gardner - Elm Street School,01030001, 37.5, 100.0, 14.7 to 1, 86.7, 94.7 +3.3600000000000003,3.36,a-exp-i1,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 6.9, 100.0, 10.7 to 1, 67.2, 70.8 +4.135,4.14,a-exp-i1,2017-18,Gardner - Gardner High,01030505, 57.6, 100.0, 12.0 to 1, 82.7, 81.3 +3.9200000000000004,3.92,a-exp-i1,2017-18,Gardner - Gardner Middle School,01030405, 41.7, 100.0, 13.0 to 1, 78.4, 92.8 +4.135,4.14,a-exp-i1,2017-18,Gardner - Waterford Street,01030020, 28.9, 100.0, 16.2 to 1, 82.7, 96.5 +4.09,4.09,a-exp-i1,2017-18,Gateway - Chester Elementary,06720059, 11.0, 90.9, 10.8 to 1, 81.8, 100.0 +3.845,3.85,a-exp-i1,2017-18,Gateway - Gateway Regional High,06720505, 23.8, 97.9, 9.0 to 1, 76.9, 91.6 +4.6049999999999995,4.6,a-exp-i1,2017-18,Gateway - Gateway Regional Middle School,06720405, 18.5, 97.3, 10.7 to 1, 92.1, 100.0 +4.79,4.79,a-exp-i1,2017-18,Gateway - Littleville Elementary School,06720143, 24.0, 100.0, 12.5 to 1, 95.8, 100.0 +4.43,4.43,a-exp-i1,2017-18,Georgetown - Georgetown High School,01050505, 40.8, 100.0, 9.8 to 1, 88.6, 89.9 +4.545,4.55,a-exp-i1,2017-18,Georgetown - Georgetown Middle School,01050305, 12.1, 100.0, 19.0 to 1, 90.9, 99.5 +4.404999999999999,4.4,a-exp-i1,2017-18,Georgetown - Penn Brook,01050010, 38.7, 99.9, 17.9 to 1, 88.1, 100.0 +5.0,5.0,a-exp-i1,2017-18,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 30.3 to 1, 100.0, 100.0 +3.28,3.28,a-exp-i1,2017-18,Gill-Montague - Gill Elementary,06740005, 9.3, 100.0, 14.4 to 1, 65.6, 100.0 +4.26,4.26,a-exp-i1,2017-18,Gill-Montague - Great Falls Middle,06740310, 21.6, 95.4, 11.3 to 1, 85.2, 94.5 +4.555,4.56,a-exp-i1,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 14.6, 100.0, 11.1 to 1, 91.1, 100.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 22.2, 100.0, 9.7 to 1, 88.8, 100.0 +4.635,4.64,a-exp-i1,2017-18,Gill-Montague - Turners Fall High,06740505, 24.5, 95.9, 8.9 to 1, 92.7, 92.7 +2.4850000000000003,2.49,a-exp-i1,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 42.9, 93.0, 11.9 to 1, 49.7, 65.5 +4.37,4.37,a-exp-i1,2017-18,Gloucester - Beeman Memorial,01070010, 28.6, 100.0, 11.9 to 1, 87.4, 96.5 +4.6,4.6,a-exp-i1,2017-18,Gloucester - East Gloucester Elementary,01070020, 18.7, 100.0, 11.5 to 1, 92.0, 100.0 +4.505,4.51,a-exp-i1,2017-18,Gloucester - Gloucester High,01070505, 81.2, 96.3, 9.8 to 1, 90.1, 85.2 +4.285,4.29,a-exp-i1,2017-18,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 15.3 to 1, 85.7, 100.0 +3.72,3.72,a-exp-i1,2017-18,Gloucester - Plum Cove School,01070042, 15.6, 100.0, 13.6 to 1, 74.4, 96.2 +3.96,3.96,a-exp-i1,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 53.0, 100.0, 12.6 to 1, 79.2, 92.5 +4.01,4.01,a-exp-i1,2017-18,Gloucester - Veterans Memorial,01070045, 25.2, 100.0, 8.2 to 1, 80.2, 100.0 +4.0,4.0,a-exp-i1,2017-18,Gloucester - West Parish,01070050, 27.5, 100.0, 12.9 to 1, 80.0, 96.4 +0.0,1,a-exp-i1,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 1.8 to 1, 0.0, 100.0 +4.08,4.08,a-exp-i1,2017-18,Grafton - Grafton High School,01100505, 65.2, 100.0, 12.8 to 1, 81.6, 92.3 +3.9299999999999997,3.93,a-exp-i1,2017-18,Grafton - Grafton Middle,01100305, 38.4, 100.0, 13.6 to 1, 78.6, 97.4 +4.33,4.33,a-exp-i1,2017-18,Grafton - Millbury Street Elementary School,01100200, 51.8, 100.0, 12.7 to 1, 86.6, 96.0 +3.775,3.78,a-exp-i1,2017-18,Grafton - North Grafton Elementary,01100025, 20.4, 100.0, 12.4 to 1, 75.5, 97.6 +4.09,4.09,a-exp-i1,2017-18,Grafton - North Street Elementary School,01100030, 44.0, 100.0, 13.3 to 1, 81.8, 100.0 +4.654999999999999,4.65,a-exp-i1,2017-18,Grafton - South Grafton Elementary,01100005, 21.7, 100.0, 13.9 to 1, 93.1, 93.1 +5.0,5.0,a-exp-i1,2017-18,Granby - East Meadow,01110004, 11.0, 100.0, 13.5 to 1, 100.0, 100.0 +4.82,4.82,a-exp-i1,2017-18,Granby - Granby Jr Sr High School,01110505, 28.0, 100.0, 12.2 to 1, 96.4, 96.4 +4.835,4.84,a-exp-i1,2017-18,Granby - West Street,01110010, 18.0, 100.0, 11.8 to 1, 96.7, 100.0 +4.2700000000000005,4.27,a-exp-i1,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 130.5, 98.5, 10.7 to 1, 85.4, 82.8 +4.0649999999999995,4.06,a-exp-i1,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 144.1, 96.7, 10.5 to 1, 81.3, 77.8 +4.505,4.51,a-exp-i1,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 182.0, 99.5, 12.5 to 1, 90.1, 84.1 +4.5200000000000005,4.52,a-exp-i1,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 198.5, 98.5, 10.8 to 1, 90.4, 87.9 +4.3149999999999995,4.31,a-exp-i1,2017-18,Greenfield - Discovery School at Four Corners,01140025, 21.9, 100.0, 11.5 to 1, 86.3, 95.4 +3.745,3.75,a-exp-i1,2017-18,Greenfield - Federal Street School,01140010, 22.7, 95.6, 10.9 to 1, 74.9, 84.6 +3.97,3.97,a-exp-i1,2017-18,Greenfield - Greenfield High,01140505, 42.7, 93.4, 10.8 to 1, 79.4, 83.6 +4.045,4.05,a-exp-i1,2017-18,Greenfield - Greenfield Middle,01140305, 41.8, 100.0, 9.1 to 1, 80.9, 80.4 +3.835,3.84,a-exp-i1,2017-18,Greenfield - Newton School,01140035, 22.3, 100.0, 10.9 to 1, 76.7, 95.5 +4.175,4.18,a-exp-i1,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.9, 100.0, 14.8 to 1, 83.5, 68.4 +3.75,3.75,a-exp-i1,2017-18,Groton-Dunstable - Boutwell School,06730001, 4.0, 100.0, 15.8 to 1, 75.0, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Groton-Dunstable - Florence Roche School,06730010, 34.8, 100.0, 14.7 to 1, 85.6, 97.1 +4.279999999999999,4.28,a-exp-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.2, 100.0, 14.0 to 1, 85.6, 92.1 +4.14,4.14,a-exp-i1,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 58.1, 100.0, 13.2 to 1, 82.8, 94.8 +4.37,4.37,a-exp-i1,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 23.8, 100.0, 12.2 to 1, 87.4, 91.6 +4.15,4.15,a-exp-i1,2017-18,Hadley - Hadley Elementary,01170015, 23.5, 100.0, 12.2 to 1, 83.0, 91.5 +3.7299999999999995,3.73,a-exp-i1,2017-18,Hadley - Hopkins Academy,01170505, 24.8, 100.0, 9.8 to 1, 74.6, 87.9 +4.485,4.49,a-exp-i1,2017-18,Halifax - Halifax Elementary,01180005, 39.0, 100.0, 15.3 to 1, 89.7, 100.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 16.0, 100.0, 16.1 to 1, 89.4, 96.9 +3.9200000000000004,3.92,a-exp-i1,2017-18,Hamilton-Wenham - Cutler School,06750010, 21.8, 100.0, 13.3 to 1, 78.4, 99.1 +4.58,4.58,a-exp-i1,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 47.7, 97.9, 11.7 to 1, 91.6, 95.8 +4.43,4.43,a-exp-i1,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 36.8, 100.0, 10.4 to 1, 88.6, 90.2 +4.79,4.79,a-exp-i1,2017-18,Hamilton-Wenham - Winthrop School,06750015, 23.6, 100.0, 12.3 to 1, 95.8, 95.8 +1.855,1.86,a-exp-i1,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 45.2, 73.4, 10.9 to 1, 37.1, 72.6 +4.275,4.28,a-exp-i1,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 20.6, 100.0, 12.1 to 1, 85.5, 100.0 +4.555,4.56,a-exp-i1,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 22.5, 100.0, 15.4 to 1, 91.1, 100.0 +4.805,4.81,a-exp-i1,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.4, 100.0, 15.1 to 1, 96.1, 94.6 +4.7700000000000005,4.77,a-exp-i1,2017-18,Hampden-Wilbraham - Soule Road,06800030, 21.7, 100.0, 15.9 to 1, 95.4, 95.4 +5.0,5.0,a-exp-i1,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 15.2 to 1, 100.0, 100.0 +4.245,4.25,a-exp-i1,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 10.6, 100.0, 9.9 to 1, 84.9, 90.6 +4.595000000000001,4.6,a-exp-i1,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 37.1, 100.0, 16.4 to 1, 91.9, 97.3 +4.26,4.26,a-exp-i1,2017-18,Hampshire - Hampshire Regional High,06830505, 73.1, 97.3, 9.6 to 1, 85.2, 94.3 +2.5,2.5,a-exp-i1,2017-18,Hancock - Hancock Elementary,01210005, 6.8, 97.1, 6.2 to 1, 50.0, 91.2 +4.6899999999999995,4.69,a-exp-i1,2017-18,Hanover - Cedar Elementary,01220004, 32.0, 100.0, 12.9 to 1, 93.8, 100.0 +4.415,4.42,a-exp-i1,2017-18,Hanover - Center Elementary,01220005, 21.4, 97.7, 15.7 to 1, 88.3, 100.0 +4.5600000000000005,4.56,a-exp-i1,2017-18,Hanover - Hanover High,01220505, 61.7, 98.4, 13.0 to 1, 91.2, 91.9 +4.4399999999999995,4.44,a-exp-i1,2017-18,Hanover - Hanover Middle,01220305, 72.1, 97.2, 11.5 to 1, 88.8, 97.2 +4.125,4.13,a-exp-i1,2017-18,Hanover - Sylvester,01220015, 17.1, 100.0, 13.4 to 1, 82.5, 100.0 +4.3,4.3,a-exp-i1,2017-18,Harvard - Bromfield,01250505, 57.3, 100.0, 11.4 to 1, 86.0, 94.8 +4.525,4.53,a-exp-i1,2017-18,Harvard - Hildreth Elementary School,01250005, 31.5, 100.0, 14.0 to 1, 90.5, 93.7 +4.525,4.53,a-exp-i1,2017-18,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 12.4 to 1, 90.5, 95.0 +4.1049999999999995,4.1,a-exp-i1,2017-18,Hatfield - Smith Academy,01270505, 22.4, 98.2, 8.4 to 1, 82.1, 95.5 +4.345000000000001,4.35,a-exp-i1,2017-18,Haverhill - Bradford Elementary,01280008, 30.5, 96.7, 10.4 to 1, 86.9, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 62.5, 100.0, 16.4 to 1, 85.6, 96.8 +3.775,3.78,a-exp-i1,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 8.2, 100.0, 13.1 to 1, 75.5, 87.8 +4.13,4.13,a-exp-i1,2017-18,Haverhill - Consentino Middle School,01280100, 63.3, 98.4, 15.4 to 1, 82.6, 92.1 +3.37,3.37,a-exp-i1,2017-18,Haverhill - Crowell,01280020, 8.9, 100.0, 10.9 to 1, 67.4, 83.1 +4.154999999999999,4.15,a-exp-i1,2017-18,Haverhill - Dr Paul Nettle,01280050, 36.7, 100.0, 13.6 to 1, 83.1, 88.3 +4.04,4.04,a-exp-i1,2017-18,Haverhill - Golden Hill,01280026, 39.6, 97.5, 12.6 to 1, 80.8, 94.9 +4.45,4.45,a-exp-i1,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 9.1, 100.0, 11.9 to 1, 89.0, 100.0 +3.75,3.75,a-exp-i1,2017-18,Haverhill - Haverhill Alternative School,01280033, 8.0, 100.0, 5.8 to 1, 75.0, 75.0 +3.8950000000000005,3.9,a-exp-i1,2017-18,Haverhill - Haverhill High,01280505, 136.7, 95.6, 13.4 to 1, 77.9, 89.0 +4.49,4.49,a-exp-i1,2017-18,Haverhill - John G Whittier,01280085, 29.5, 100.0, 18.4 to 1, 89.8, 91.5 +3.6,3.6,a-exp-i1,2017-18,Haverhill - Moody,01280045, 13.5, 100.0, 16.3 to 1, 72.0, 77.9 +3.66,3.66,a-exp-i1,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 41.1, 100.0, 12.3 to 1, 73.2, 100.0 +2.855,2.86,a-exp-i1,2017-18,Haverhill - TEACH,01280073, 7.0, 100.0, 7.1 to 1, 57.1, 85.7 +4.415,4.42,a-exp-i1,2017-18,Haverhill - Tilton,01280075, 42.8, 100.0, 12.6 to 1, 88.3, 93.0 +5.0,5.0,a-exp-i1,2017-18,Haverhill - Walnut Square,01280080, 8.5, 100.0, 16.5 to 1, 100.0, 100.0 +3.2350000000000003,3.24,a-exp-i1,2017-18,Hawlemont - Hawlemont Regional,06850005, 11.6, 86.6, 14.1 to 1, 64.7, 91.4 +2.1100000000000003,2.11,a-exp-i1,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 13.9, 63.9, 15.4 to 1, 42.2, 78.3 +2.8,2.8,a-exp-i1,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 25.0, 80.0, 12.1 to 1, 56.0, 84.0 +3.9450000000000003,3.95,a-exp-i1,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.9, 86.5, 10.9 to 1, 78.9, 100.0 +4.37,4.37,a-exp-i1,2017-18,Hingham - East Elementary School,01310005, 35.8, 100.0, 14.7 to 1, 87.4, 100.0 +4.6450000000000005,4.65,a-exp-i1,2017-18,Hingham - Hingham High,01310505, 86.0, 100.0, 14.6 to 1, 92.9, 91.4 +4.68,4.68,a-exp-i1,2017-18,Hingham - Hingham Middle School,01310410, 68.4, 100.0, 15.7 to 1, 93.6, 95.6 +4.5,4.5,a-exp-i1,2017-18,Hingham - Plymouth River,01310019, 29.9, 100.0, 15.7 to 1, 90.0, 96.7 +4.2299999999999995,4.23,a-exp-i1,2017-18,Hingham - South Elementary,01310020, 35.7, 100.0, 14.8 to 1, 84.6, 97.2 +5.0,5.0,a-exp-i1,2017-18,Hingham - Wm L Foster Elementary,01310010, 31.1, 100.0, 14.3 to 1, 100.0, 96.8 +4.195,4.2,a-exp-i1,2017-18,Holbrook - Holbrook Middle High School,01330505, 39.5, 100.0, 14.9 to 1, 83.9, 89.9 +4.35,4.35,a-exp-i1,2017-18,Holbrook - John F Kennedy,01330018, 46.2, 100.0, 13.5 to 1, 87.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Holland - Holland Elementary,01350005, 18.3, 100.0, 12.7 to 1, 100.0, 100.0 +4.59,4.59,a-exp-i1,2017-18,Holliston - Holliston High,01360505, 64.9, 99.5, 12.3 to 1, 91.8, 96.3 +3.9799999999999995,3.98,a-exp-i1,2017-18,Holliston - Miller School,01360007, 49.2, 98.0, 13.9 to 1, 79.6, 93.7 +4.525,4.53,a-exp-i1,2017-18,Holliston - Placentino Elementary,01360010, 48.2, 97.9, 15.5 to 1, 90.5, 93.0 +4.3100000000000005,4.31,a-exp-i1,2017-18,Holliston - Robert H. Adams Middle School,01360305, 52.2, 100.0, 13.0 to 1, 86.2, 84.3 +3.1100000000000003,3.11,a-exp-i1,2017-18,Holyoke - E N White Elementary,01370045, 36.7, 89.1, 13.7 to 1, 62.2, 80.9 +2.33,2.33,a-exp-i1,2017-18,Holyoke - H.B. Lawrence School,01370070, 20.6, 80.6, 13.5 to 1, 46.6, 63.6 +3.8200000000000003,3.82,a-exp-i1,2017-18,Holyoke - Holyoke High,01370505, 87.2, 97.7, 15.3 to 1, 76.4, 84.4 +3.9200000000000004,3.92,a-exp-i1,2017-18,Holyoke - Joseph Metcalf School,01370003, 13.9, 92.8, 18.6 to 1, 78.4, 92.8 +2.82,2.82,a-exp-i1,2017-18,Holyoke - Kelly Elementary,01370040, 36.7, 89.1, 15.3 to 1, 56.4, 67.3 +3.5549999999999997,3.56,a-exp-i1,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 42.6, 85.9, 12.7 to 1, 71.1, 83.6 +3.665,3.67,a-exp-i1,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.0, 100.0, 14.0 to 1, 73.3, 86.7 +3.4200000000000004,3.42,a-exp-i1,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 38.0, 86.8, 12.2 to 1, 68.4, 73.7 +2.9050000000000002,2.91,a-exp-i1,2017-18,Holyoke - Morgan Full Service Community School,01370025, 31.0, 90.3, 13.4 to 1, 58.1, 77.4 +2.5,2.5,a-exp-i1,2017-18,Holyoke - William R. Peck School,01370030, 34.0, 88.2, 10.0 to 1, 50.0, 67.7 +3.125,3.13,a-exp-i1,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 28.0, 82.1, 6.5 to 1, 62.5, 44.6 +2.705,2.71,a-exp-i1,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.1, 69.4, 13.5 to 1, 54.1, 84.6 +4.255,4.26,a-exp-i1,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 43.7, 100.0, 11.6 to 1, 85.1, 94.3 +4.51,4.51,a-exp-i1,2017-18,Hopedale - Memorial,01380010, 41.9, 100.0, 13.0 to 1, 90.2, 92.6 +5.0,5.0,a-exp-i1,2017-18,Hopedale - Park Street School,01380003, 2.6, 84.6, 31.9 to 1, 100.0, 100.0 +4.785,4.79,a-exp-i1,2017-18,Hopkinton - Center,01390005, 32.9, 100.0, 13.9 to 1, 95.7, 100.0 +4.275,4.28,a-exp-i1,2017-18,Hopkinton - Elmwood,01390010, 34.4, 100.0, 14.6 to 1, 85.5, 100.0 +4.715,4.72,a-exp-i1,2017-18,Hopkinton - Hopkins Elementary School,01390015, 38.0, 100.0, 14.2 to 1, 94.3, 97.4 +4.67,4.67,a-exp-i1,2017-18,Hopkinton - Hopkinton High,01390505, 81.4, 100.0, 14.2 to 1, 93.4, 96.1 +4.585,4.59,a-exp-i1,2017-18,Hopkinton - Hopkinton Middle School,01390305, 65.6, 100.0, 12.3 to 1, 91.7, 97.3 +5.0,5.0,a-exp-i1,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 4.0, 100.0, 14.8 to 1, 100.0, 100.0 +4.62,4.62,a-exp-i1,2017-18,Hudson - C A Farley,01410030, 39.6, 100.0, 11.6 to 1, 92.4, 97.2 +4.2,4.2,a-exp-i1,2017-18,Hudson - David J. Quinn Middle School,01410410, 57.4, 98.3, 11.3 to 1, 84.0, 90.6 +4.4799999999999995,4.48,a-exp-i1,2017-18,Hudson - Forest Avenue Elementary,01410015, 28.8, 100.0, 12.3 to 1, 89.6, 99.3 +4.465,4.47,a-exp-i1,2017-18,Hudson - Hudson High,01410505, 84.0, 98.8, 11.1 to 1, 89.3, 88.1 +4.465,4.47,a-exp-i1,2017-18,Hudson - Mulready Elementary,01410007, 24.2, 100.0, 9.8 to 1, 89.3, 91.3 +3.8950000000000005,3.9,a-exp-i1,2017-18,Hull - Hull High,01420505, 29.8, 100.0, 9.9 to 1, 77.9, 84.6 +4.5600000000000005,4.56,a-exp-i1,2017-18,Hull - Lillian M Jacobs,01420015, 34.0, 100.0, 12.1 to 1, 91.2, 97.1 +3.7399999999999998,3.74,a-exp-i1,2017-18,Hull - Memorial Middle,01420305, 19.9, 100.0, 9.5 to 1, 74.8, 74.8 +3.3049999999999997,3.31,a-exp-i1,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 75.4, 88.4, 10.6 to 1, 66.1, 81.9 +3.9850000000000003,3.99,a-exp-i1,2017-18,Ipswich - Ipswich High,01440505, 47.4, 99.2, 10.9 to 1, 79.7, 90.7 +4.365,4.37,a-exp-i1,2017-18,Ipswich - Ipswich Middle School,01440305, 41.9, 100.0, 10.5 to 1, 87.3, 92.8 +4.3100000000000005,4.31,a-exp-i1,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 32.9, 100.0, 12.2 to 1, 86.2, 97.0 +3.8950000000000005,3.9,a-exp-i1,2017-18,Ipswich - Winthrop,01440015, 33.7, 100.0, 11.2 to 1, 77.9, 100.0 +1.09,1.09,a-exp-i1,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 55.0, 49.1, 10.1 to 1, 21.8, 78.2 +0.89,1,a-exp-i1,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 109.6, 56.3, 12.2 to 1, 17.8, 84.4 +4.2299999999999995,4.23,a-exp-i1,2017-18,King Philip - King Philip Middle School,06900510, 45.4, 100.0, 16.3 to 1, 84.6, 93.4 +3.8,3.8,a-exp-i1,2017-18,King Philip - King Philip Regional High,06900505, 81.7, 100.0, 15.9 to 1, 76.0, 83.7 +3.6399999999999997,3.64,a-exp-i1,2017-18,Kingston - Kingston Elementary,01450005, 30.2, 100.0, 14.9 to 1, 72.8, 100.0 +4.585,4.59,a-exp-i1,2017-18,Kingston - Kingston Intermediate,01450020, 36.0, 100.0, 15.9 to 1, 91.7, 100.0 +3.325,3.33,a-exp-i1,2017-18,Lanesborough - Lanesborough Elementary,01480005, 19.7, 100.0, 10.7 to 1, 66.5, 86.8 +3.315,3.32,a-exp-i1,2017-18,Lawrence - Alexander B Bruce,01490015, 41.6, 100.0, 12.4 to 1, 66.3, 78.4 +3.72,3.72,a-exp-i1,2017-18,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 15.0 to 1, 74.4, 74.4 +1.47,1.47,a-exp-i1,2017-18,Lawrence - Community Day Arlington,01490009, 59.5, 91.6, 9.9 to 1, 29.4, 74.8 +3.6049999999999995,3.6,a-exp-i1,2017-18,Lawrence - Edward F. Parthum,01490053, 39.4, 94.9, 15.8 to 1, 72.1, 84.7 +3.8299999999999996,3.83,a-exp-i1,2017-18,Lawrence - Emily G Wetherbee,01490080, 47.0, 97.9, 14.9 to 1, 76.6, 78.7 +3.8600000000000003,3.86,a-exp-i1,2017-18,Lawrence - Francis M Leahy,01490040, 35.0, 97.1, 14.8 to 1, 77.2, 94.3 +4.535,4.54,a-exp-i1,2017-18,Lawrence - Frost Middle School,01490525, 32.1, 100.0, 15.8 to 1, 90.7, 87.5 +2.445,2.45,a-exp-i1,2017-18,Lawrence - Gerard A. Guilmette,01490022, 41.1, 95.1, 12.5 to 1, 48.9, 90.3 +3.0,3.0,a-exp-i1,2017-18,Lawrence - Guilmette Middle School,01490025, 45.0, 100.0, 10.8 to 1, 60.0, 69.1 +4.2700000000000005,4.27,a-exp-i1,2017-18,Lawrence - High School Learning Center,01490536, 17.8, 96.6, 10.5 to 1, 85.4, 79.8 +3.66,3.66,a-exp-i1,2017-18,Lawrence - James F Hennessey,01490020, 26.1, 96.2, 13.3 to 1, 73.2, 92.4 +3.95,3.95,a-exp-i1,2017-18,Lawrence - John Breen School,01490003, 19.1, 100.0, 17.5 to 1, 79.0, 100.0 +4.08,4.08,a-exp-i1,2017-18,Lawrence - John K Tarbox,01490075, 21.8, 95.4, 15.0 to 1, 81.6, 90.8 +4.585,4.59,a-exp-i1,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 12.0, 91.7, 13.6 to 1, 91.7, 83.3 +4.415,4.42,a-exp-i1,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 17.1, 100.0, 12.4 to 1, 88.3, 88.3 +3.055,3.06,a-exp-i1,2017-18,Lawrence - Lawrence High School,01490515, 252.9, 91.1, 13.1 to 1, 61.1, 76.8 +3.5700000000000003,3.57,a-exp-i1,2017-18,Lawrence - Oliver Partnership School,01490048, 35.0, 91.4, 12.8 to 1, 71.4, 88.6 +3.46,3.46,a-exp-i1,2017-18,Lawrence - Parthum Middle School,01490027, 39.0, 97.4, 14.9 to 1, 69.2, 76.9 +1.08,1.08,a-exp-i1,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 8.3, 59.9, 15.0 to 1, 21.6, 49.1 +3.5,3.5,a-exp-i1,2017-18,Lawrence - Robert Frost,01490018, 40.0, 90.0, 14.8 to 1, 70.0, 80.0 +3.0100000000000002,3.01,a-exp-i1,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 15.1, 100.0, 12.6 to 1, 60.2, 93.4 +2.085,2.09,a-exp-i1,2017-18,Lawrence - School for Exceptional Studies,01490537, 32.6, 78.5, 4.6 to 1, 41.7, 61.6 +3.0,3.0,a-exp-i1,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 49.9, 90.0, 15.0 to 1, 60.0, 82.0 +1.47,1.47,a-exp-i1,2017-18,Lawrence - Spark Academy,01490085, 41.1, 65.9, 11.2 to 1, 29.4, 58.6 +2.69,2.69,a-exp-i1,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 26.0, 88.5, 11.4 to 1, 53.8, 30.8 +1.1099999999999999,1.11,a-exp-i1,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 27.0, 81.5, 12.7 to 1, 22.2, 63.0 +2.98,2.98,a-exp-i1,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 60.9, 95.8, 12.1 to 1, 59.6, 91.7 +4.275,4.28,a-exp-i1,2017-18,Lee - Lee Elementary,01500025, 34.4, 100.0, 10.0 to 1, 85.5, 97.1 +4.4350000000000005,4.44,a-exp-i1,2017-18,Lee - Lee Middle/High School,01500505, 35.4, 97.2, 9.8 to 1, 88.7, 88.7 +4.0600000000000005,4.06,a-exp-i1,2017-18,Leicester - Leicester High,01510505, 35.5, 97.2, 13.0 to 1, 81.2, 92.9 +4.415,4.42,a-exp-i1,2017-18,Leicester - Leicester Memorial Elementary,01510005, 21.5, 100.0, 15.5 to 1, 88.3, 100.0 +4.335,4.34,a-exp-i1,2017-18,Leicester - Leicester Middle,01510015, 30.0, 100.0, 13.7 to 1, 86.7, 93.3 +4.085,4.09,a-exp-i1,2017-18,Leicester - Leicester Primary School,01510010, 24.5, 100.0, 14.8 to 1, 81.7, 100.0 +4.63,4.63,a-exp-i1,2017-18,Lenox - Lenox Memorial High,01520505, 50.9, 100.0, 8.7 to 1, 92.6, 87.8 +4.654999999999999,4.65,a-exp-i1,2017-18,Lenox - Morris,01520015, 29.0, 100.0, 10.7 to 1, 93.1, 100.0 +2.5,2.5,a-exp-i1,2017-18,Leominster - Bennett,01530003, 6.0, 83.3, 14.3 to 1, 50.0, 100.0 +4.675,4.68,a-exp-i1,2017-18,Leominster - Center For Technical Education Innovation,01530605, 32.1, 93.5, 22.3 to 1, 93.5, 81.0 +4.64,4.64,a-exp-i1,2017-18,Leominster - Fall Brook,01530007, 41.5, 100.0, 15.8 to 1, 92.8, 100.0 +4.39,4.39,a-exp-i1,2017-18,Leominster - Frances Drake School,01530010, 41.1, 97.6, 13.2 to 1, 87.8, 99.8 +4.6450000000000005,4.65,a-exp-i1,2017-18,Leominster - Johnny Appleseed,01530025, 42.5, 100.0, 15.3 to 1, 92.9, 97.6 +4.0,4.0,a-exp-i1,2017-18,Leominster - Leominster Center for Excellence,01530515, 5.0, 100.0, 10.0 to 1, 80.0, 40.0 +4.3950000000000005,4.4,a-exp-i1,2017-18,Leominster - Leominster High School,01530505, 99.8, 97.0, 10.6 to 1, 87.9, 90.8 +4.0,4.0,a-exp-i1,2017-18,Leominster - Lincoln School,01530005, 5.0, 100.0, 9.6 to 1, 80.0, 80.0 +4.545,4.55,a-exp-i1,2017-18,Leominster - Northwest,01530030, 44.0, 97.7, 15.6 to 1, 90.9, 100.0 +5.0,5.0,a-exp-i1,2017-18,Leominster - Priest Street,01530040, 8.0, 100.0, 15.6 to 1, 100.0, 100.0 +4.1899999999999995,4.19,a-exp-i1,2017-18,Leominster - Samoset School,01530045, 37.0, 100.0, 13.3 to 1, 83.8, 86.5 +4.375,4.38,a-exp-i1,2017-18,Leominster - Sky View Middle School,01530320, 56.0, 98.2, 16.0 to 1, 87.5, 91.1 +3.8899999999999997,3.89,a-exp-i1,2017-18,Leverett - Leverett Elementary,01540005, 18.0, 100.0, 6.9 to 1, 77.8, 94.4 +3.845,3.85,a-exp-i1,2017-18,Lexington - Bowman,01550008, 47.6, 100.0, 11.8 to 1, 76.9, 100.0 +3.9850000000000003,3.99,a-exp-i1,2017-18,Lexington - Bridge,01550006, 45.2, 100.0, 12.7 to 1, 79.7, 91.1 +4.585,4.59,a-exp-i1,2017-18,Lexington - Fiske,01550015, 37.2, 100.0, 13.5 to 1, 91.7, 97.3 +3.565,3.57,a-exp-i1,2017-18,Lexington - Harrington,01550030, 35.8, 100.0, 13.4 to 1, 71.3, 97.2 +4.18,4.18,a-exp-i1,2017-18,Lexington - Jonas Clarke Middle,01550305, 86.5, 100.0, 10.7 to 1, 83.6, 96.3 +3.7700000000000005,3.77,a-exp-i1,2017-18,Lexington - Joseph Estabrook,01550010, 42.3, 100.0, 13.5 to 1, 75.4, 99.5 +5.0,5.0,a-exp-i1,2017-18,Lexington - Lexington Children's Place,01550001, 6.9, 100.0, 10.4 to 1, 100.0, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Lexington - Lexington High,01550505, 170.9, 99.6, 12.9 to 1, 81.9, 91.7 +3.935,3.94,a-exp-i1,2017-18,Lexington - Maria Hastings,01550035, 37.8, 100.0, 12.3 to 1, 78.7, 94.7 +4.175,4.18,a-exp-i1,2017-18,Lexington - Wm Diamond Middle,01550310, 79.3, 100.0, 11.2 to 1, 83.5, 92.4 +1.1800000000000002,1.18,a-exp-i1,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 7.2, 76.4, 12.5 to 1, 23.6, 44.4 +4.375,4.38,a-exp-i1,2017-18,Lincoln - Hanscom Middle,01570305, 25.8, 100.0, 10.5 to 1, 87.5, 98.6 +4.195,4.2,a-exp-i1,2017-18,Lincoln - Hanscom Primary,01570006, 28.9, 100.0, 11.5 to 1, 83.9, 97.5 +4.54,4.54,a-exp-i1,2017-18,Lincoln - Lincoln School,01570025, 63.2, 100.0, 9.3 to 1, 90.8, 99.2 +4.61,4.61,a-exp-i1,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.2, 100.0, 12.0 to 1, 92.2, 96.7 +4.305,4.31,a-exp-i1,2017-18,Littleton - Littleton High School,01580505, 36.6, 99.5, 12.6 to 1, 86.1, 97.3 +4.26,4.26,a-exp-i1,2017-18,Littleton - Littleton Middle School,01580305, 26.9, 100.0, 13.5 to 1, 85.2, 85.6 +3.55,3.55,a-exp-i1,2017-18,Littleton - Russell St Elementary,01580015, 25.9, 100.0, 14.9 to 1, 71.0, 98.1 +4.335,4.34,a-exp-i1,2017-18,Littleton - Shaker Lane Elementary,01580005, 30.1, 100.0, 14.9 to 1, 86.7, 91.7 +4.720000000000001,4.72,a-exp-i1,2017-18,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 12.3 to 1, 94.4, 97.2 +4.085,4.09,a-exp-i1,2017-18,Longmeadow - Center,01590010, 34.5, 100.0, 11.7 to 1, 81.7, 94.8 +4.3950000000000005,4.4,a-exp-i1,2017-18,Longmeadow - Glenbrook Middle,01590017, 27.7, 98.7, 12.4 to 1, 87.9, 96.4 +4.805,4.81,a-exp-i1,2017-18,Longmeadow - Longmeadow High,01590505, 76.3, 100.0, 12.6 to 1, 96.1, 97.4 +4.49,4.49,a-exp-i1,2017-18,Longmeadow - Williams Middle,01590305, 27.7, 97.7, 11.9 to 1, 89.8, 96.4 +4.7,4.7,a-exp-i1,2017-18,Longmeadow - Wolf Swamp Road,01590025, 33.3, 100.0, 12.1 to 1, 94.0, 97.0 +4.1450000000000005,4.15,a-exp-i1,2017-18,Lowell - Abraham Lincoln,01600020, 35.0, 100.0, 13.9 to 1, 82.9, 97.1 +3.825,3.83,a-exp-i1,2017-18,Lowell - B.F. Butler Middle School,01600310, 43.4, 100.0, 12.3 to 1, 76.5, 76.1 +4.165,4.17,a-exp-i1,2017-18,Lowell - Bartlett Community Partnership,01600090, 39.8, 100.0, 13.1 to 1, 83.3, 81.6 +4.86,4.86,a-exp-i1,2017-18,Lowell - Charles W Morey,01600030, 35.9, 97.2, 14.3 to 1, 97.2, 100.0 +4.205,4.21,a-exp-i1,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 37.8, 100.0, 13.3 to 1, 84.1, 97.4 +4.375,4.38,a-exp-i1,2017-18,Lowell - Dr An Wang School,01600345, 49.5, 98.0, 14.0 to 1, 87.5, 87.5 +4.7,4.7,a-exp-i1,2017-18,Lowell - Dr Gertrude Bailey,01600002, 33.0, 97.0, 14.8 to 1, 94.0, 100.0 +3.5100000000000002,3.51,a-exp-i1,2017-18,Lowell - Greenhalge,01600015, 37.0, 97.3, 13.6 to 1, 70.2, 100.0 +4.0200000000000005,4.02,a-exp-i1,2017-18,Lowell - Henry J Robinson Middle,01600330, 50.8, 99.8, 13.1 to 1, 80.4, 80.3 +4.465,4.47,a-exp-i1,2017-18,Lowell - James S Daley Middle School,01600315, 46.6, 100.0, 15.0 to 1, 89.3, 97.9 +4.3549999999999995,4.35,a-exp-i1,2017-18,Lowell - James Sullivan Middle School,01600340, 46.5, 100.0, 13.8 to 1, 87.1, 89.2 +4.115,4.12,a-exp-i1,2017-18,Lowell - John J Shaughnessy,01600050, 34.0, 97.1, 13.6 to 1, 82.3, 94.1 +4.41,4.41,a-exp-i1,2017-18,Lowell - Joseph McAvinnue,01600010, 34.0, 100.0, 14.3 to 1, 88.2, 94.1 +4.54,4.54,a-exp-i1,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 48.9, 100.0, 14.0 to 1, 90.8, 86.7 +3.2600000000000002,3.26,a-exp-i1,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 7.1, 100.0, 3.2 to 1, 65.2, 65.2 +4.215,4.22,a-exp-i1,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 7.1, 85.9, 5.1 to 1, 84.3, 84.3 +1.8800000000000001,1.88,a-exp-i1,2017-18,Lowell - Lowell Day School on Broadway,01600605, 8.0, 75.0, 3.3 to 1, 37.6, 50.0 +4.220000000000001,4.22,a-exp-i1,2017-18,Lowell - Lowell High,01600505, 213.9, 95.3, 14.7 to 1, 84.4, 90.6 +4.61,4.61,a-exp-i1,2017-18,Lowell - Moody Elementary,01600027, 19.3, 94.8, 12.6 to 1, 92.2, 94.8 +4.025,4.03,a-exp-i1,2017-18,Lowell - Pawtucketville Memorial,01600036, 36.0, 100.0, 14.2 to 1, 80.5, 88.8 +4.75,4.75,a-exp-i1,2017-18,Lowell - Peter W Reilly,01600040, 40.2, 100.0, 13.5 to 1, 95.0, 97.5 +3.8600000000000003,3.86,a-exp-i1,2017-18,Lowell - Pyne Arts,01600018, 36.0, 97.2, 13.6 to 1, 77.2, 85.5 +4.11,4.11,a-exp-i1,2017-18,Lowell - Rogers STEM Academy,01600005, 44.9, 100.0, 15.2 to 1, 82.2, 93.4 +4.58,4.58,a-exp-i1,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 35.7, 100.0, 13.5 to 1, 91.6, 97.2 +5.0,5.0,a-exp-i1,2017-18,Lowell - The Career Academy,01600515, 9.4, 100.0, 12.1 to 1, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2017-18,Lowell - Washington,01600055, 20.5, 95.1, 12.1 to 1, 82.9, 100.0 +2.32,2.32,a-exp-i1,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.5, 95.3, 12.8 to 1, 46.4, 89.0 +3.335,3.34,a-exp-i1,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 52.4, 8.7 to 1, 66.7, 71.4 +4.9,4.9,a-exp-i1,2017-18,Ludlow - Chapin Street Elementary School,01610020, 25.5, 100.0, 12.6 to 1, 98.0, 100.0 +4.845000000000001,4.85,a-exp-i1,2017-18,Ludlow - East Street Elementary School,01610010, 32.5, 100.0, 12.3 to 1, 96.9, 96.9 +4.745,4.75,a-exp-i1,2017-18,Ludlow - Ludlow Senior High,01610505, 79.9, 99.9, 11.2 to 1, 94.9, 90.0 +4.8950000000000005,4.9,a-exp-i1,2017-18,Ludlow - Paul R Baird Middle,01610305, 56.8, 100.0, 11.2 to 1, 97.9, 96.5 +4.04,4.04,a-exp-i1,2017-18,Ludlow - Veterans Park Elementary,01610023, 28.7, 100.0, 13.7 to 1, 80.8, 100.0 +2.535,2.54,a-exp-i1,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 2.0, 100.0, 4.4 to 1, 50.7, 100.0 +4.71,4.71,a-exp-i1,2017-18,Lunenburg - Lunenburg High,01620505, 34.6, 100.0, 12.8 to 1, 94.2, 94.2 +4.115,4.12,a-exp-i1,2017-18,Lunenburg - Lunenburg Middle School,01620305, 28.9, 100.0, 14.7 to 1, 82.3, 86.1 +4.495,4.5,a-exp-i1,2017-18,Lunenburg - Lunenburg Primary School,01620010, 25.0, 100.0, 15.7 to 1, 89.9, 100.0 +3.88,3.88,a-exp-i1,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 24.5, 100.0, 15.2 to 1, 77.6, 98.0 +2.85,2.85,a-exp-i1,2017-18,Lynn - A Drewicz Elementary,01630016, 34.6, 100.0, 14.2 to 1, 57.0, 91.0 +4.87,4.87,a-exp-i1,2017-18,Lynn - Aborn,01630011, 16.9, 100.0, 15.0 to 1, 97.4, 100.0 +3.3950000000000005,3.4,a-exp-i1,2017-18,Lynn - Breed Middle School,01630405, 88.0, 93.2, 15.1 to 1, 67.9, 79.3 +4.4,4.4,a-exp-i1,2017-18,Lynn - Brickett Elementary,01630020, 21.3, 100.0, 14.2 to 1, 88.0, 97.6 +4.654999999999999,4.65,a-exp-i1,2017-18,Lynn - Capt William G Shoemaker,01630090, 30.5, 100.0, 10.8 to 1, 93.1, 99.3 +4.345000000000001,4.35,a-exp-i1,2017-18,Lynn - Classical High,01630505, 101.3, 95.1, 16.4 to 1, 86.9, 84.0 +3.7350000000000003,3.74,a-exp-i1,2017-18,Lynn - Cobbet Elementary,01630035, 43.5, 100.0, 14.7 to 1, 74.7, 93.1 +3.8049999999999997,3.81,a-exp-i1,2017-18,Lynn - E J Harrington,01630045, 46.4, 97.8, 13.6 to 1, 76.1, 99.8 +3.69,3.69,a-exp-i1,2017-18,Lynn - Early Childhood Center,01630004, 23.0, 100.0, 13.0 to 1, 73.8, 85.8 +4.9799999999999995,4.98,a-exp-i1,2017-18,Lynn - Edward A Sisson,01630095, 27.7, 100.0, 15.6 to 1, 99.6, 99.6 +4.425,4.43,a-exp-i1,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 26.2, 96.2, 4.1 to 1, 88.5, 77.1 +2.93,2.93,a-exp-i1,2017-18,Lynn - Hood,01630055, 30.9, 100.0, 15.8 to 1, 58.6, 94.2 +3.8200000000000003,3.82,a-exp-i1,2017-18,Lynn - Ingalls,01630060, 42.3, 100.0, 15.4 to 1, 76.4, 88.2 +3.04,3.04,a-exp-i1,2017-18,Lynn - Julia F Callahan,01630030, 31.6, 100.0, 14.5 to 1, 60.8, 82.0 +4.88,4.88,a-exp-i1,2017-18,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 12.2 to 1, 97.6, 97.6 +4.285,4.29,a-exp-i1,2017-18,Lynn - Lynn English High,01630510, 105.9, 97.2, 16.3 to 1, 85.7, 84.8 +3.8850000000000002,3.89,a-exp-i1,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 81.8, 91.4, 12.3 to 1, 77.7, 80.0 +4.83,4.83,a-exp-i1,2017-18,Lynn - Lynn Woods,01630075, 10.4, 100.0, 15.7 to 1, 96.6, 96.6 +4.46,4.46,a-exp-i1,2017-18,Lynn - Pickering Middle,01630420, 47.4, 100.0, 13.0 to 1, 89.2, 91.3 +2.695,2.7,a-exp-i1,2017-18,Lynn - Robert L Ford,01630050, 32.1, 96.9, 15.3 to 1, 53.9, 85.0 +4.785,4.79,a-exp-i1,2017-18,Lynn - Sewell-Anderson,01630085, 22.2, 100.0, 14.0 to 1, 95.7, 97.5 +3.69,3.69,a-exp-i1,2017-18,Lynn - Thurgood Marshall Mid,01630305, 85.0, 96.5, 15.2 to 1, 73.8, 71.8 +4.33,4.33,a-exp-i1,2017-18,Lynn - Tracy,01630100, 31.7, 100.0, 13.7 to 1, 86.6, 97.5 +3.62,3.62,a-exp-i1,2017-18,Lynn - Washington Elementary School,01630005, 32.3, 100.0, 14.5 to 1, 72.4, 82.2 +4.4799999999999995,4.48,a-exp-i1,2017-18,Lynn - William R Fallon,01630080, 9.6, 100.0, 5.2 to 1, 89.6, 100.0 +3.9299999999999997,3.93,a-exp-i1,2017-18,Lynn - Wm P Connery,01630040, 41.7, 97.6, 15.4 to 1, 78.6, 86.9 +4.45,4.45,a-exp-i1,2017-18,Lynnfield - Huckleberry Hill,01640010, 29.0, 100.0, 14.7 to 1, 89.0, 100.0 +4.635,4.64,a-exp-i1,2017-18,Lynnfield - Lynnfield High,01640505, 53.2, 100.0, 12.2 to 1, 92.7, 98.1 +4.404999999999999,4.4,a-exp-i1,2017-18,Lynnfield - Lynnfield Middle School,01640405, 52.3, 100.0, 12.9 to 1, 88.1, 97.6 +1.875,1.88,a-exp-i1,2017-18,Lynnfield - Lynnfield Preschool,01640005, 1.6, 100.0, 23.8 to 1, 37.5, 100.0 +4.04,4.04,a-exp-i1,2017-18,Lynnfield - Summer Street,01640020, 29.1, 100.0, 14.8 to 1, 80.8, 100.0 +1.6199999999999999,1.62,a-exp-i1,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 102.9, 61.5, 11.9 to 1, 32.4, 90.3 +4.165,4.17,a-exp-i1,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.0 to 1, 83.3, 83.3 +4.6850000000000005,4.69,a-exp-i1,2017-18,Malden - Beebe,01650003, 63.5, 100.0, 14.1 to 1, 93.7, 96.9 +4.085,4.09,a-exp-i1,2017-18,Malden - Ferryway,01650013, 60.2, 100.0, 14.5 to 1, 81.7, 98.3 +3.7350000000000003,3.74,a-exp-i1,2017-18,Malden - Forestdale,01650027, 47.5, 100.0, 11.5 to 1, 74.7, 95.8 +3.87,3.87,a-exp-i1,2017-18,Malden - Linden,01650047, 66.5, 100.0, 13.1 to 1, 77.4, 95.5 +3.6350000000000002,3.64,a-exp-i1,2017-18,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 14.3 to 1, 72.7, 100.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Malden - Malden High,01650505, 115.0, 99.1, 15.8 to 1, 88.7, 94.8 +3.7350000000000003,3.74,a-exp-i1,2017-18,Malden - Salemwood,01650057, 83.0, 100.0, 14.7 to 1, 74.7, 86.8 +4.715,4.72,a-exp-i1,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 15.7, 100.0, 14.5 to 1, 94.3, 94.3 +4.525,4.53,a-exp-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 42.6, 97.7, 10.4 to 1, 90.5, 90.6 +3.88,3.88,a-exp-i1,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 33.3, 100.0, 11.2 to 1, 77.6, 98.8 +4.785,4.79,a-exp-i1,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 23.2, 100.0, 14.8 to 1, 95.7, 95.7 +4.61,4.61,a-exp-i1,2017-18,Mansfield - Everett W Robinson,01670007, 51.0, 100.0, 14.0 to 1, 92.2, 98.0 +4.82,4.82,a-exp-i1,2017-18,Mansfield - Harold L Qualters Middle,01670035, 82.4, 100.0, 11.4 to 1, 96.4, 94.6 +4.625,4.63,a-exp-i1,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 58.4, 100.0, 13.5 to 1, 92.5, 95.9 +4.75,4.75,a-exp-i1,2017-18,Mansfield - Mansfield High,01670505, 101.2, 100.0, 13.0 to 1, 95.0, 92.1 +4.165,4.17,a-exp-i1,2017-18,Mansfield - Roland Green School,01670003, 6.0, 100.0, 16.2 to 1, 83.3, 100.0 +4.32,4.32,a-exp-i1,2017-18,Marblehead - Elbridge Gerry,01680015, 7.4, 100.0, 18.7 to 1, 86.4, 100.0 +4.025,4.03,a-exp-i1,2017-18,Marblehead - Glover,01680020, 28.7, 100.0, 12.9 to 1, 80.5, 93.7 +4.425,4.43,a-exp-i1,2017-18,Marblehead - L H Coffin,01680010, 13.0, 92.3, 11.7 to 1, 88.5, 100.0 +4.495,4.5,a-exp-i1,2017-18,Marblehead - Malcolm L Bell,01680005, 25.7, 100.0, 10.6 to 1, 89.9, 97.7 +4.05,4.05,a-exp-i1,2017-18,Marblehead - Marblehead High,01680505, 88.0, 100.0, 11.8 to 1, 81.0, 90.9 +4.37,4.37,a-exp-i1,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 40.5, 100.0, 12.1 to 1, 87.4, 92.6 +4.045,4.05,a-exp-i1,2017-18,Marblehead - Village School,01680016, 57.7, 100.0, 11.0 to 1, 80.9, 100.0 +2.56,2.56,a-exp-i1,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 20.5, 87.3, 11.2 to 1, 51.2, 65.9 +4.025,4.03,a-exp-i1,2017-18,Marion - Sippican,01690005, 34.8, 100.0, 13.0 to 1, 80.5, 97.7 +4.16,4.16,a-exp-i1,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 118.8, 99.2, 11.0 to 1, 83.2, 94.9 +3.5450000000000004,3.55,a-exp-i1,2017-18,Marlborough - Charles Jaworek School,01700030, 62.3, 100.0, 12.2 to 1, 70.9, 93.6 +4.5,4.5,a-exp-i1,2017-18,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 17.4 to 1, 90.0, 100.0 +4.18,4.18,a-exp-i1,2017-18,Marlborough - Francis J Kane,01700008, 48.9, 100.0, 12.6 to 1, 83.6, 100.0 +4.165,4.17,a-exp-i1,2017-18,Marlborough - Marlborough High,01700505, 98.2, 100.0, 11.3 to 1, 83.3, 90.4 +3.78,3.78,a-exp-i1,2017-18,Marlborough - Richer,01700025, 48.8, 100.0, 12.4 to 1, 75.6, 98.0 +4.445,4.45,a-exp-i1,2017-18,Marshfield - Daniel Webster,01710015, 27.0, 100.0, 14.9 to 1, 88.9, 100.0 +4.545,4.55,a-exp-i1,2017-18,Marshfield - Eames Way School,01710005, 18.5, 100.0, 13.1 to 1, 90.9, 100.0 +4.345000000000001,4.35,a-exp-i1,2017-18,Marshfield - Furnace Brook Middle,01710310, 76.2, 100.0, 12.7 to 1, 86.9, 93.4 +4.375,4.38,a-exp-i1,2017-18,Marshfield - Gov Edward Winslow,01710020, 32.1, 100.0, 12.9 to 1, 87.5, 93.8 +4.3950000000000005,4.4,a-exp-i1,2017-18,Marshfield - Marshfield High,01710505, 108.3, 99.1, 12.4 to 1, 87.9, 91.7 +4.41,4.41,a-exp-i1,2017-18,Marshfield - Martinson Elementary,01710025, 36.6, 100.0, 11.7 to 1, 88.2, 97.3 +4.615,4.62,a-exp-i1,2017-18,Marshfield - South River,01710010, 26.1, 100.0, 14.3 to 1, 92.3, 100.0 +4.335,4.34,a-exp-i1,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 71.2, 97.3, 8.9 to 1, 86.7, 85.3 +3.8,3.8,a-exp-i1,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 16.6, 93.1, 11.1 to 1, 76.0, 57.4 +3.47,3.47,a-exp-i1,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 34.9, 75.4, 10.4 to 1, 69.4, 88.5 +4.665,4.67,a-exp-i1,2017-18,Masconomet - Masconomet Regional High School,07050505, 80.8, 100.0, 14.2 to 1, 93.3, 96.0 +4.545,4.55,a-exp-i1,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 48.1, 99.2, 13.6 to 1, 90.9, 95.8 +4.4,4.4,a-exp-i1,2017-18,Mashpee - Kenneth Coombs School,01720005, 33.4, 100.0, 12.5 to 1, 88.0, 94.0 +4.3950000000000005,4.4,a-exp-i1,2017-18,Mashpee - Mashpee High,01720505, 42.1, 100.0, 10.7 to 1, 87.9, 95.5 +4.425,4.43,a-exp-i1,2017-18,Mashpee - Mashpee Middle School,01720020, 21.6, 100.0, 12.5 to 1, 88.5, 90.3 +3.725,3.73,a-exp-i1,2017-18,Mashpee - Quashnet School,01720035, 43.1, 100.0, 11.3 to 1, 74.5, 95.4 +3.065,3.07,a-exp-i1,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 32.6, 100.0, 18.0 to 1, 61.3, 87.7 +4.715,4.72,a-exp-i1,2017-18,Mattapoisett - Center,01730005, 20.2, 100.0, 11.8 to 1, 94.3, 94.3 +4.25,4.25,a-exp-i1,2017-18,Mattapoisett - Old Hammondtown,01730010, 17.6, 100.0, 11.7 to 1, 85.0, 99.2 +4.485,4.49,a-exp-i1,2017-18,Maynard - Fowler School,01740305, 39.0, 100.0, 13.4 to 1, 89.7, 92.3 +4.404999999999999,4.4,a-exp-i1,2017-18,Maynard - Green Meadow,01740010, 29.5, 96.6, 16.5 to 1, 88.1, 96.6 +4.525,4.53,a-exp-i1,2017-18,Maynard - Maynard High,01740505, 30.0, 99.3, 13.0 to 1, 90.5, 90.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Medfield - Dale Street,01750005, 28.9, 100.0, 12.6 to 1, 88.7, 92.1 +3.9799999999999995,3.98,a-exp-i1,2017-18,Medfield - Medfield Senior High,01750505, 66.1, 98.5, 12.5 to 1, 79.6, 89.7 +4.1899999999999995,4.19,a-exp-i1,2017-18,Medfield - Memorial School,01750003, 25.6, 100.0, 17.0 to 1, 83.8, 96.1 +4.654999999999999,4.65,a-exp-i1,2017-18,Medfield - Ralph Wheelock School,01750007, 25.7, 100.0, 14.7 to 1, 93.1, 98.3 +4.705,4.71,a-exp-i1,2017-18,Medfield - Thomas Blake Middle,01750305, 55.6, 100.0, 11.2 to 1, 94.1, 100.0 +4.05,4.05,a-exp-i1,2017-18,Medford - Brooks School,01760130, 42.0, 100.0, 12.0 to 1, 81.0, 100.0 +3.905,3.91,a-exp-i1,2017-18,Medford - Christopher Columbus,01760140, 36.5, 100.0, 10.3 to 1, 78.1, 100.0 +2.895,2.9,a-exp-i1,2017-18,Medford - Curtis-Tufts,01760510, 5.4, 100.0, 2.4 to 1, 57.9, 98.1 +3.835,3.84,a-exp-i1,2017-18,Medford - John J McGlynn Elementary School,01760068, 38.6, 100.0, 13.6 to 1, 76.7, 97.5 +3.4899999999999998,3.49,a-exp-i1,2017-18,Medford - John J. McGlynn Middle School,01760320, 51.4, 100.0, 9.0 to 1, 69.8, 97.1 +3.8299999999999996,3.83,a-exp-i1,2017-18,Medford - Madeleine Dugger Andrews,01760315, 47.0, 100.0, 10.6 to 1, 76.6, 90.4 +3.7399999999999998,3.74,a-exp-i1,2017-18,Medford - Medford High,01760505, 139.3, 97.1, 10.1 to 1, 74.8, 83.9 +3.6450000000000005,3.65,a-exp-i1,2017-18,Medford - Milton Fuller Roberts,01760150, 44.3, 100.0, 12.2 to 1, 72.9, 97.7 +4.37,4.37,a-exp-i1,2017-18,Medway - Burke/Memorial Elementary School,01770015, 31.9, 100.0, 15.8 to 1, 87.4, 93.7 +3.6149999999999998,3.62,a-exp-i1,2017-18,Medway - John D Mc Govern Elementary,01770013, 20.5, 100.0, 16.4 to 1, 72.3, 100.0 +4.17,4.17,a-exp-i1,2017-18,Medway - Medway High,01770505, 46.5, 97.9, 15.6 to 1, 83.4, 94.6 +4.6049999999999995,4.6,a-exp-i1,2017-18,Medway - Medway Middle,01770305, 56.8, 100.0, 12.4 to 1, 92.1, 94.7 +4.29,4.29,a-exp-i1,2017-18,Melrose - Early Childhood Center,01780003, 14.6, 93.2, 21.7 to 1, 85.8, 95.5 +3.5549999999999997,3.56,a-exp-i1,2017-18,Melrose - Herbert Clark Hoover,01780017, 20.8, 100.0, 13.0 to 1, 71.1, 97.6 +4.0600000000000005,4.06,a-exp-i1,2017-18,Melrose - Horace Mann,01780025, 17.3, 100.0, 16.3 to 1, 81.2, 94.2 +3.8649999999999998,3.87,a-exp-i1,2017-18,Melrose - Lincoln,01780020, 30.8, 100.0, 13.6 to 1, 77.3, 100.0 +4.154999999999999,4.15,a-exp-i1,2017-18,Melrose - Melrose High,01780505, 70.0, 100.0, 14.3 to 1, 83.1, 92.0 +4.035,4.04,a-exp-i1,2017-18,Melrose - Melrose Middle,01780305, 57.9, 100.0, 13.4 to 1, 80.7, 81.9 +3.6,3.6,a-exp-i1,2017-18,Melrose - Roosevelt,01780035, 29.5, 96.6, 14.8 to 1, 72.0, 96.6 +3.38,3.38,a-exp-i1,2017-18,Melrose - Winthrop,01780050, 26.3, 100.0, 15.4 to 1, 67.6, 94.3 +4.61,4.61,a-exp-i1,2017-18,Mendon-Upton - Henry P Clough,07100179, 25.5, 100.0, 14.6 to 1, 92.2, 100.0 +4.195,4.2,a-exp-i1,2017-18,Mendon-Upton - Memorial School,07100001, 31.0, 96.8, 15.4 to 1, 83.9, 93.5 +4.865,4.87,a-exp-i1,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 54.6, 100.0, 14.3 to 1, 97.3, 95.4 +4.1,4.1,a-exp-i1,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 47.7, 98.7, 13.3 to 1, 82.0, 87.4 +4.09,4.09,a-exp-i1,2017-18,Methuen - Comprehensive Grammar School,01810050, 77.0, 98.7, 14.0 to 1, 81.8, 97.4 +4.24,4.24,a-exp-i1,2017-18,Methuen - Donald P Timony Grammar,01810060, 93.5, 100.0, 14.5 to 1, 84.8, 94.7 +4.46,4.46,a-exp-i1,2017-18,Methuen - Marsh Grammar School,01810030, 84.0, 99.0, 14.3 to 1, 89.2, 96.1 +4.25,4.25,a-exp-i1,2017-18,Methuen - Methuen High,01810505, 143.7, 97.2, 13.6 to 1, 85.0, 85.1 +4.715,4.72,a-exp-i1,2017-18,Methuen - Tenney Grammar School,01810055, 91.4, 100.0, 14.8 to 1, 94.3, 97.8 +3.69,3.69,a-exp-i1,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 42.0, 100.0, 13.4 to 1, 73.8, 95.2 +4.71,4.71,a-exp-i1,2017-18,Middleborough - John T. Nichols Middle,01820305, 51.8, 100.0, 15.1 to 1, 94.2, 96.2 +4.1850000000000005,4.19,a-exp-i1,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 13.8 to 1, 83.7, 100.0 +4.735,4.74,a-exp-i1,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 19.0, 100.0, 15.3 to 1, 94.7, 100.0 +4.63,4.63,a-exp-i1,2017-18,Middleborough - Middleborough High,01820505, 67.2, 98.5, 10.7 to 1, 92.6, 94.0 +4.215,4.22,a-exp-i1,2017-18,Middleton - Fuller Meadow,01840003, 20.7, 100.0, 11.0 to 1, 84.3, 100.0 +4.6899999999999995,4.69,a-exp-i1,2017-18,Middleton - Howe-Manning,01840005, 36.0, 100.0, 12.8 to 1, 93.8, 97.2 +4.535,4.54,a-exp-i1,2017-18,Milford - Brookside,01850065, 40.6, 100.0, 11.7 to 1, 90.7, 97.5 +4.3950000000000005,4.4,a-exp-i1,2017-18,Milford - Memorial,01850010, 38.7, 100.0, 12.1 to 1, 87.9, 94.8 +4.5200000000000005,4.52,a-exp-i1,2017-18,Milford - Milford High,01850505, 87.1, 99.9, 13.2 to 1, 90.4, 88.1 +1.9449999999999998,1.94,a-exp-i1,2017-18,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 22.0 to 1, 38.9, 84.7 +4.475,4.48,a-exp-i1,2017-18,Milford - Stacy Middle,01850305, 77.8, 100.0, 12.6 to 1, 89.5, 88.4 +4.4350000000000005,4.44,a-exp-i1,2017-18,Milford - Woodland,01850090, 79.9, 100.0, 12.1 to 1, 88.7, 100.0 +4.08,4.08,a-exp-i1,2017-18,Millbury - Elmwood Street,01860017, 38.0, 100.0, 15.3 to 1, 81.6, 97.4 +4.09,4.09,a-exp-i1,2017-18,Millbury - Millbury Junior/Senior High,01860505, 60.6, 100.0, 11.8 to 1, 81.8, 82.5 +3.6049999999999995,3.6,a-exp-i1,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 28.7, 100.0, 15.2 to 1, 72.1, 96.5 +4.785,4.79,a-exp-i1,2017-18,Millis - Clyde F Brown,01870005, 34.9, 100.0, 14.4 to 1, 95.7, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Millis - Millis High School,01870505, 26.5, 100.0, 14.8 to 1, 96.2, 96.2 +4.515,4.52,a-exp-i1,2017-18,Millis - Millis Middle,01870020, 30.9, 96.8, 13.2 to 1, 90.3, 98.7 +3.975,3.98,a-exp-i1,2017-18,Milton - Charles S Pierce Middle,01890410, 76.7, 96.1, 11.9 to 1, 79.5, 88.5 +3.915,3.92,a-exp-i1,2017-18,Milton - Collicot,01890005, 41.5, 99.3, 17.2 to 1, 78.3, 98.3 +3.8200000000000003,3.82,a-exp-i1,2017-18,Milton - Cunningham School,01890007, 35.1, 100.0, 15.1 to 1, 76.4, 90.6 +3.7600000000000002,3.76,a-exp-i1,2017-18,Milton - Glover,01890010, 38.3, 97.4, 15.3 to 1, 75.2, 90.9 +4.165,4.17,a-exp-i1,2017-18,Milton - Milton High,01890505, 77.7, 100.0, 13.2 to 1, 83.3, 87.4 +4.16,4.16,a-exp-i1,2017-18,Milton - Tucker,01890020, 29.7, 100.0, 14.8 to 1, 83.2, 88.2 +4.465,4.47,a-exp-i1,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 73.7, 97.3, 7.3 to 1, 89.3, 86.4 +3.9,3.9,a-exp-i1,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 18.2, 100.0, 15.0 to 1, 78.0, 83.5 +4.775,4.78,a-exp-i1,2017-18,Mohawk Trail - Colrain Central,07170010, 8.9, 95.5, 11.9 to 1, 95.5, 100.0 +4.325,4.33,a-exp-i1,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 36.9, 100.0, 10.5 to 1, 86.5, 94.6 +3.88,3.88,a-exp-i1,2017-18,Mohawk Trail - Sanderson Academy,07170020, 13.4, 100.0, 11.9 to 1, 77.6, 92.5 +3.675,3.68,a-exp-i1,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 24.5, 91.8, 9.9 to 1, 73.5, 100.0 +4.33,4.33,a-exp-i1,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 48.5, 97.9, 11.3 to 1, 86.6, 99.0 +4.12,4.12,a-exp-i1,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.9, 98.3, 10.5 to 1, 82.4, 84.5 +3.81,3.81,a-exp-i1,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 44.9, 100.0, 10.1 to 1, 76.2, 89.7 +3.775,3.78,a-exp-i1,2017-18,Monson - Granite Valley Middle,01910310, 26.5, 98.1, 10.5 to 1, 75.5, 93.4 +3.96,3.96,a-exp-i1,2017-18,Monson - Monson High School,01910505, 26.5, 98.1, 9.7 to 1, 79.2, 88.7 +4.51,4.51,a-exp-i1,2017-18,Monson - Quarry Hill Community School,01910025, 30.5, 100.0, 12.9 to 1, 90.2, 99.2 +4.275,4.28,a-exp-i1,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 113.5, 99.1, 12.5 to 1, 85.5, 82.4 +4.67,4.67,a-exp-i1,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 45.5, 100.0, 11.8 to 1, 93.4, 95.6 +2.09,2.09,a-exp-i1,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 100.5, 53.2, 15.6 to 1, 41.8, 76.6 +4.555,4.56,a-exp-i1,2017-18,Nahant - Johnson,01960010, 9.5, 97.9, 15.5 to 1, 91.1, 97.9 +3.4850000000000003,3.49,a-exp-i1,2017-18,Nantucket - Cyrus Peirce,01970010, 33.0, 93.9, 10.5 to 1, 69.7, 87.9 +3.63,3.63,a-exp-i1,2017-18,Nantucket - Nantucket Elementary,01970005, 32.9, 97.0, 11.0 to 1, 72.6, 84.8 +3.53,3.53,a-exp-i1,2017-18,Nantucket - Nantucket High,01970505, 47.0, 96.6, 11.3 to 1, 70.6, 65.9 +4.154999999999999,4.15,a-exp-i1,2017-18,Nantucket - Nantucket Intermediate School,01970020, 29.5, 96.6, 12.7 to 1, 83.1, 93.2 +3.835,3.84,a-exp-i1,2017-18,Narragansett - Baldwinville Elementary,07200005, 17.2, 100.0, 16.8 to 1, 76.7, 73.9 +4.66,4.66,a-exp-i1,2017-18,Narragansett - Narragansett Middle,07200305, 29.3, 100.0, 15.6 to 1, 93.2, 88.0 +3.88,3.88,a-exp-i1,2017-18,Narragansett - Narragansett Regional High,07200505, 31.3, 93.6, 11.0 to 1, 77.6, 85.6 +5.0,5.0,a-exp-i1,2017-18,Narragansett - Phillipston Memorial,07200003, 9.0, 88.9, 18.8 to 1, 100.0, 97.8 +5.0,5.0,a-exp-i1,2017-18,Narragansett - Templeton Center,07200020, 10.8, 100.0, 15.7 to 1, 100.0, 97.0 +3.97,3.97,a-exp-i1,2017-18,Nashoba - Center School,07250020, 41.7, 100.0, 13.6 to 1, 79.4, 98.6 +4.13,4.13,a-exp-i1,2017-18,Nashoba - Florence Sawyer School,07250025, 60.6, 100.0, 12.6 to 1, 82.6, 98.4 +3.95,3.95,a-exp-i1,2017-18,Nashoba - Hale,07250310, 23.4, 100.0, 12.9 to 1, 79.0, 95.7 +4.39,4.39,a-exp-i1,2017-18,Nashoba - Luther Burbank Middle School,07250305, 23.2, 100.0, 10.7 to 1, 87.8, 91.4 +4.35,4.35,a-exp-i1,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 36.3, 100.0, 13.0 to 1, 87.0, 94.5 +4.24,4.24,a-exp-i1,2017-18,Nashoba - Nashoba Regional,07250505, 75.2, 98.7, 13.1 to 1, 84.8, 93.6 +3.6700000000000004,3.67,a-exp-i1,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.0, 98.4, 10.9 to 1, 73.4, 68.8 +4.485,4.49,a-exp-i1,2017-18,Natick - Bennett-Hemenway,01980005, 38.7, 100.0, 15.3 to 1, 89.7, 100.0 +3.2350000000000003,3.24,a-exp-i1,2017-18,Natick - Brown,01980010, 37.4, 100.0, 14.0 to 1, 64.7, 86.1 +4.529999999999999,4.53,a-exp-i1,2017-18,Natick - J F Kennedy Middle School,01980305, 53.0, 100.0, 12.1 to 1, 90.6, 91.5 +3.8850000000000002,3.89,a-exp-i1,2017-18,Natick - Johnson,01980031, 20.4, 98.0, 11.2 to 1, 77.7, 100.0 +4.1049999999999995,4.1,a-exp-i1,2017-18,Natick - Lilja Elementary,01980035, 27.9, 100.0, 15.4 to 1, 82.1, 89.2 +4.175,4.18,a-exp-i1,2017-18,Natick - Memorial,01980043, 27.8, 100.0, 14.9 to 1, 83.5, 96.4 +4.1450000000000005,4.15,a-exp-i1,2017-18,Natick - Natick High,01980505, 120.8, 100.0, 14.3 to 1, 82.9, 89.2 +3.415,3.42,a-exp-i1,2017-18,Natick - Wilson Middle,01980310, 77.9, 99.9, 12.1 to 1, 68.3, 87.8 +4.2,4.2,a-exp-i1,2017-18,Nauset - Nauset Regional High,06600505, 81.6, 97.7, 11.2 to 1, 84.0, 89.2 +4.09,4.09,a-exp-i1,2017-18,Nauset - Nauset Regional Middle,06600305, 55.1, 97.7, 10.0 to 1, 81.8, 96.0 +4.535,4.54,a-exp-i1,2017-18,Needham - Broadmeadow,01990005, 32.4, 100.0, 16.8 to 1, 90.7, 90.7 +4.8,4.8,a-exp-i1,2017-18,Needham - High Rock School,01990410, 37.8, 100.0, 11.9 to 1, 96.0, 97.4 +4.3950000000000005,4.4,a-exp-i1,2017-18,Needham - Hillside Elementary,01990035, 33.1, 100.0, 14.7 to 1, 87.9, 92.7 +4.38,4.38,a-exp-i1,2017-18,Needham - John Eliot,01990020, 24.2, 100.0, 16.2 to 1, 87.6, 100.0 +4.21,4.21,a-exp-i1,2017-18,Needham - Needham High,01990505, 124.6, 99.2, 13.5 to 1, 84.2, 93.6 +4.18,4.18,a-exp-i1,2017-18,Needham - Newman Elementary,01990050, 51.5, 97.2, 14.7 to 1, 83.6, 99.1 +3.9200000000000004,3.92,a-exp-i1,2017-18,Needham - Pollard Middle,01990405, 74.0, 100.0, 11.5 to 1, 78.4, 87.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Needham - William Mitchell,01990040, 30.6, 99.8, 16.3 to 1, 89.4, 99.8 +1.3800000000000001,1.38,a-exp-i1,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 57.8, 60.7, 9.2 to 1, 27.6, 84.4 +4.305,4.31,a-exp-i1,2017-18,New Bedford - Abraham Lincoln,02010095, 43.1, 100.0, 16.6 to 1, 86.1, 97.7 +3.335,3.34,a-exp-i1,2017-18,New Bedford - Alfred J Gomes,02010063, 39.0, 97.4, 14.2 to 1, 66.7, 92.4 +3.595,3.6,a-exp-i1,2017-18,New Bedford - Betsey B Winslow,02010140, 17.9, 98.6, 17.3 to 1, 71.9, 90.1 +2.52,2.52,a-exp-i1,2017-18,New Bedford - Carlos Pacheco,02010105, 27.8, 96.4, 12.9 to 1, 50.4, 92.7 +4.38,4.38,a-exp-i1,2017-18,New Bedford - Casimir Pulaski,02010123, 48.5, 95.9, 15.0 to 1, 87.6, 100.0 +4.07,4.07,a-exp-i1,2017-18,New Bedford - Charles S Ashley,02010010, 18.2, 97.4, 15.5 to 1, 81.4, 94.5 +4.5649999999999995,4.56,a-exp-i1,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 16.6, 91.3, 18.0 to 1, 91.3, 100.0 +2.215,2.22,a-exp-i1,2017-18,New Bedford - Ellen R Hathaway,02010075, 22.6, 97.7, 13.4 to 1, 44.3, 82.3 +4.3100000000000005,4.31,a-exp-i1,2017-18,New Bedford - Elwyn G Campbell,02010020, 18.3, 94.5, 15.0 to 1, 86.2, 91.8 +1.67,1.67,a-exp-i1,2017-18,New Bedford - Hayden/McFadden,02010078, 54.1, 92.6, 12.5 to 1, 33.4, 90.7 +3.22,3.22,a-exp-i1,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 23.2, 97.0, 14.9 to 1, 64.4, 89.1 +4.08,4.08,a-exp-i1,2017-18,New Bedford - James B Congdon,02010040, 24.2, 100.0, 13.9 to 1, 81.6, 90.9 +4.83,4.83,a-exp-i1,2017-18,New Bedford - Jireh Swift,02010130, 13.4, 100.0, 16.1 to 1, 96.6, 96.3 +2.075,2.08,a-exp-i1,2017-18,New Bedford - John Avery Parker,02010115, 20.5, 90.3, 13.9 to 1, 41.5, 85.3 +3.3200000000000003,3.32,a-exp-i1,2017-18,New Bedford - John B Devalles,02010050, 25.2, 97.1, 15.4 to 1, 66.4, 88.1 +2.85,2.85,a-exp-i1,2017-18,New Bedford - Keith Middle School,02010405, 72.0, 88.2, 12.4 to 1, 57.0, 84.7 +3.585,3.59,a-exp-i1,2017-18,New Bedford - New Bedford High,02010505, 162.1, 94.3, 12.1 to 1, 71.7, 78.3 +4.015,4.02,a-exp-i1,2017-18,New Bedford - Normandin Middle School,02010410, 78.6, 96.2, 16.0 to 1, 80.3, 78.3 +2.4699999999999998,2.47,a-exp-i1,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 20.3, 95.1, 11.0 to 1, 49.4, 95.1 +3.94,3.94,a-exp-i1,2017-18,New Bedford - Roosevelt Middle School,02010415, 66.0, 97.0, 12.2 to 1, 78.8, 83.3 +3.3,3.3,a-exp-i1,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 50.0, 86.0, 15.6 to 1, 66.0, 96.0 +4.445,4.45,a-exp-i1,2017-18,New Bedford - Thomas R Rodman,02010125, 12.3, 92.9, 15.9 to 1, 88.9, 100.0 +2.93,2.93,a-exp-i1,2017-18,New Bedford - Trinity Day Academy,02010510, 9.7, 74.1, 8.2 to 1, 58.6, 89.6 +3.09,3.09,a-exp-i1,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 15.7, 93.6, 6.4 to 1, 61.8, 55.4 +4.32,4.32,a-exp-i1,2017-18,New Bedford - William H Taylor,02010135, 17.8, 100.0, 14.7 to 1, 86.4, 97.3 +0.95,1,a-exp-i1,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 31.5, 68.3, 13.4 to 1, 19.0, 71.4 +3.2649999999999997,3.26,a-exp-i1,2017-18,New Salem-Wendell - Swift River,07280015, 14.3, 100.0, 10.6 to 1, 65.3, 86.0 +4.465,4.47,a-exp-i1,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 27.0, 100.0, 11.9 to 1, 89.3, 98.5 +4.39,4.39,a-exp-i1,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 53.3, 100.0, 11.5 to 1, 87.8, 100.0 +4.485,4.49,a-exp-i1,2017-18,Newburyport - Newburyport High,02040505, 63.2, 100.0, 12.2 to 1, 89.7, 96.8 +4.635,4.64,a-exp-i1,2017-18,Newburyport - Rupert A Nock Middle,02040305, 42.6, 100.0, 13.1 to 1, 92.7, 96.2 +4.36,4.36,a-exp-i1,2017-18,Newton - A E Angier,02070005, 39.9, 97.5, 11.7 to 1, 87.2, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Newton - Bigelow Middle,02070305, 52.1, 98.1, 10.0 to 1, 90.4, 98.1 +3.785,3.79,a-exp-i1,2017-18,Newton - Bowen,02070015, 32.9, 100.0, 12.8 to 1, 75.7, 100.0 +3.3549999999999995,3.35,a-exp-i1,2017-18,Newton - C C Burr,02070020, 29.7, 100.0, 13.0 to 1, 67.1, 93.3 +3.535,3.54,a-exp-i1,2017-18,Newton - Cabot,02070025, 30.7, 95.1, 12.7 to 1, 70.7, 96.7 +4.76,4.76,a-exp-i1,2017-18,Newton - Charles E Brown Middle,02070310, 66.9, 100.0, 11.3 to 1, 95.2, 90.7 +4.455,4.46,a-exp-i1,2017-18,Newton - Countryside,02070040, 36.9, 97.3, 11.1 to 1, 89.1, 97.3 +4.1899999999999995,4.19,a-exp-i1,2017-18,Newton - F A Day Middle,02070315, 86.5, 98.8, 11.3 to 1, 83.8, 93.1 +3.4850000000000003,3.49,a-exp-i1,2017-18,Newton - Franklin,02070055, 36.0, 93.1, 12.1 to 1, 69.7, 93.9 +4.0,4.0,a-exp-i1,2017-18,Newton - Horace Mann,02070075, 31.1, 94.8, 13.0 to 1, 80.0, 97.1 +4.165,4.17,a-exp-i1,2017-18,Newton - John Ward,02070120, 24.0, 100.0, 12.9 to 1, 83.3, 95.0 +4.16,4.16,a-exp-i1,2017-18,Newton - Lincoln-Eliot,02070070, 32.6, 98.5, 11.5 to 1, 83.2, 100.0 +4.25,4.25,a-exp-i1,2017-18,Newton - Mason-Rice,02070080, 32.0, 98.4, 16.0 to 1, 85.0, 100.0 +4.285,4.29,a-exp-i1,2017-18,Newton - Memorial Spaulding,02070105, 39.2, 100.0, 11.6 to 1, 85.7, 97.4 +4.1,4.1,a-exp-i1,2017-18,Newton - Newton Early Childhood Center,02070108, 15.3, 100.0, 12.9 to 1, 82.0, 100.0 +4.335,4.34,a-exp-i1,2017-18,Newton - Newton North High,02070505, 186.4, 98.6, 11.5 to 1, 86.7, 94.3 +4.36,4.36,a-exp-i1,2017-18,Newton - Newton South High,02070510, 156.6, 99.7, 12.1 to 1, 87.2, 94.5 +4.0,4.0,a-exp-i1,2017-18,Newton - Oak Hill Middle,02070320, 57.3, 99.1, 10.7 to 1, 80.0, 93.3 +4.65,4.65,a-exp-i1,2017-18,Newton - Peirce,02070100, 21.3, 100.0, 12.9 to 1, 93.0, 100.0 +4.35,4.35,a-exp-i1,2017-18,Newton - Underwood,02070115, 23.0, 100.0, 12.3 to 1, 87.0, 91.3 +3.685,3.69,a-exp-i1,2017-18,Newton - Williams,02070125, 22.8, 97.8, 13.0 to 1, 73.7, 100.0 +4.075,4.08,a-exp-i1,2017-18,Newton - Zervas,02070130, 32.4, 96.9, 12.6 to 1, 81.5, 96.9 +4.49,4.49,a-exp-i1,2017-18,Norfolk - Freeman-Kennedy School,02080005, 39.2, 97.4, 12.5 to 1, 89.8, 100.0 +4.18,4.18,a-exp-i1,2017-18,Norfolk - H Olive Day,02080015, 36.6, 100.0, 12.6 to 1, 83.6, 95.9 +3.835,3.84,a-exp-i1,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 55.9, 98.2, 9.8 to 1, 76.7, 78.5 +4.82,4.82,a-exp-i1,2017-18,North Adams - Brayton,02090035, 27.7, 96.4, 9.4 to 1, 96.4, 92.8 +3.535,3.54,a-exp-i1,2017-18,North Adams - Colegrove Park Elementary,02090008, 26.5, 96.2, 13.6 to 1, 70.7, 78.3 +4.07,4.07,a-exp-i1,2017-18,North Adams - Drury High,02090505, 45.8, 93.4, 11.4 to 1, 81.4, 82.0 +4.365,4.37,a-exp-i1,2017-18,North Adams - Greylock,02090015, 23.7, 100.0, 12.5 to 1, 87.3, 93.7 +4.725,4.73,a-exp-i1,2017-18,North Andover - Annie L Sargent School,02110018, 31.5, 100.0, 17.8 to 1, 94.5, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,North Andover - Atkinson,02110001, 34.6, 97.1, 16.4 to 1, 85.6, 98.4 +4.1450000000000005,4.15,a-exp-i1,2017-18,North Andover - Franklin,02110010, 29.2, 100.0, 15.5 to 1, 82.9, 100.0 +4.425,4.43,a-exp-i1,2017-18,North Andover - Kittredge,02110015, 17.4, 100.0, 16.6 to 1, 88.5, 97.5 +4.1450000000000005,4.15,a-exp-i1,2017-18,North Andover - North Andover High,02110505, 90.7, 96.9, 16.4 to 1, 82.9, 91.8 +4.39,4.39,a-exp-i1,2017-18,North Andover - North Andover Middle,02110305, 73.6, 100.0, 15.0 to 1, 87.8, 90.5 +4.5200000000000005,4.52,a-exp-i1,2017-18,North Andover - Thomson,02110020, 23.9, 100.0, 14.4 to 1, 90.4, 95.8 +4.785,4.79,a-exp-i1,2017-18,North Attleborough - Amvet Boulevard,02120007, 23.3, 100.0, 17.1 to 1, 95.7, 100.0 +4.1850000000000005,4.19,a-exp-i1,2017-18,North Attleborough - Community,02120030, 30.7, 100.0, 10.4 to 1, 83.7, 93.5 +5.0,5.0,a-exp-i1,2017-18,North Attleborough - Falls,02120010, 17.4, 100.0, 15.8 to 1, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 36.0, 100.0, 17.7 to 1, 86.2, 94.4 +4.43,4.43,a-exp-i1,2017-18,North Attleborough - North Attleboro High,02120505, 80.7, 100.0, 14.3 to 1, 88.6, 95.1 +2.8600000000000003,2.86,a-exp-i1,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 18.0 to 1, 57.2, 100.0 +3.9799999999999995,3.98,a-exp-i1,2017-18,North Attleborough - North Attleborough Middle,02120305, 73.4, 100.0, 14.8 to 1, 79.6, 93.2 +4.775,4.78,a-exp-i1,2017-18,North Attleborough - Roosevelt Avenue,02120015, 17.3, 100.0, 16.3 to 1, 95.5, 95.5 +2.935,2.94,a-exp-i1,2017-18,North Brookfield - North Brookfield Elementary,02150015, 23.0, 95.7, 14.3 to 1, 58.7, 95.7 +4.08,4.08,a-exp-i1,2017-18,North Brookfield - North Brookfield High,02150505, 21.7, 95.4, 10.5 to 1, 81.6, 86.2 +4.38,4.38,a-exp-i1,2017-18,North Middlesex - Ashby Elementary,07350010, 18.5, 100.0, 9.9 to 1, 87.6, 93.0 +3.9299999999999997,3.93,a-exp-i1,2017-18,North Middlesex - Hawthorne Brook,07350030, 42.0, 100.0, 12.0 to 1, 78.6, 95.2 +4.275,4.28,a-exp-i1,2017-18,North Middlesex - Nissitissit Middle School,07350310, 48.4, 97.9, 10.8 to 1, 85.5, 89.7 +3.745,3.75,a-exp-i1,2017-18,North Middlesex - North Middlesex Regional,07350505, 60.0, 98.3, 13.3 to 1, 74.9, 95.0 +5.0,5.0,a-exp-i1,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 1.0, 100.0, 18.0 to 1, 100.0, 100.0 +4.220000000000001,4.22,a-exp-i1,2017-18,North Middlesex - Spaulding Memorial,07350005, 32.0, 100.0, 13.2 to 1, 84.4, 96.9 +3.935,3.94,a-exp-i1,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 4.7, 100.0, 19.1 to 1, 78.7, 100.0 +4.825,4.83,a-exp-i1,2017-18,North Middlesex - Varnum Brook,07350035, 42.3, 100.0, 12.7 to 1, 96.5, 100.0 +4.8950000000000005,4.9,a-exp-i1,2017-18,North Reading - E Ethel Little School,02170003, 23.7, 100.0, 13.9 to 1, 97.9, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,North Reading - J Turner Hood,02170010, 28.2, 100.0, 11.9 to 1, 90.4, 100.0 +4.455,4.46,a-exp-i1,2017-18,North Reading - L D Batchelder,02170005, 31.1, 96.8, 14.9 to 1, 89.1, 100.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,North Reading - North Reading High,02170505, 69.8, 100.0, 11.6 to 1, 88.7, 92.2 +4.779999999999999,4.78,a-exp-i1,2017-18,North Reading - North Reading Middle,02170305, 45.2, 100.0, 12.1 to 1, 95.6, 97.8 +4.195,4.2,a-exp-i1,2017-18,Northampton - Bridge Street,02100005, 29.9, 100.0, 9.2 to 1, 83.9, 90.6 +4.165,4.17,a-exp-i1,2017-18,Northampton - Jackson Street,02100020, 31.2, 100.0, 11.5 to 1, 83.3, 96.2 +4.14,4.14,a-exp-i1,2017-18,Northampton - John F Kennedy Middle School,02100410, 60.6, 100.0, 10.1 to 1, 82.8, 91.1 +3.7700000000000005,3.77,a-exp-i1,2017-18,Northampton - Leeds,02100025, 28.5, 100.0, 11.3 to 1, 75.4, 100.0 +4.65,4.65,a-exp-i1,2017-18,Northampton - Northampton High,02100505, 56.8, 99.1, 15.3 to 1, 93.0, 94.7 +4.59,4.59,a-exp-i1,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 24.5, 100.0, 9.0 to 1, 91.8, 95.9 +3.84,3.84,a-exp-i1,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 56.0, 94.6, 8.9 to 1, 76.8, 73.2 +4.43,4.43,a-exp-i1,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 114.8, 99.3, 12.8 to 1, 88.6, 94.9 +4.455,4.46,a-exp-i1,2017-18,Northborough - Fannie E Proctor,02130015, 18.4, 100.0, 13.5 to 1, 89.1, 100.0 +5.0,5.0,a-exp-i1,2017-18,Northborough - Lincoln Street,02130003, 14.7, 100.0, 17.3 to 1, 100.0, 100.0 +4.6899999999999995,4.69,a-exp-i1,2017-18,Northborough - Marguerite E Peaslee,02130014, 16.0, 100.0, 17.2 to 1, 93.8, 100.0 +5.0,5.0,a-exp-i1,2017-18,Northborough - Marion E Zeh,02130020, 12.9, 100.0, 18.9 to 1, 100.0, 100.0 +4.154999999999999,4.15,a-exp-i1,2017-18,Northborough - Robert E. Melican Middle School,02130305, 51.5, 100.0, 12.1 to 1, 83.1, 90.6 +5.0,5.0,a-exp-i1,2017-18,Northbridge - Northbridge Elementary,02140005, 27.7, 100.0, 13.7 to 1, 100.0, 100.0 +4.46,4.46,a-exp-i1,2017-18,Northbridge - Northbridge High,02140505, 49.9, 100.0, 11.4 to 1, 89.2, 92.0 +4.49,4.49,a-exp-i1,2017-18,Northbridge - Northbridge Middle,02140305, 49.0, 100.0, 14.8 to 1, 89.8, 93.9 +4.265,4.27,a-exp-i1,2017-18,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 13.5 to 1, 85.3, 100.0 +4.3149999999999995,4.31,a-exp-i1,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 115.3, 97.0, 10.8 to 1, 86.3, 85.9 +4.63,4.63,a-exp-i1,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.4, 94.6, 10.5 to 1, 92.6, 93.5 +4.1049999999999995,4.1,a-exp-i1,2017-18,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 13.8 to 1, 82.1, 96.5 +4.45,4.45,a-exp-i1,2017-18,Norton - J C Solmonese,02180015, 36.5, 100.0, 12.7 to 1, 89.0, 100.0 +3.6149999999999998,3.62,a-exp-i1,2017-18,Norton - L G Nourse Elementary,02180010, 21.8, 100.0, 13.1 to 1, 72.3, 100.0 +4.01,4.01,a-exp-i1,2017-18,Norton - Norton High,02180505, 56.2, 96.4, 13.2 to 1, 80.2, 83.1 +4.3549999999999995,4.35,a-exp-i1,2017-18,Norton - Norton Middle,02180305, 51.6, 100.0, 11.4 to 1, 87.1, 94.2 +4.295,4.3,a-exp-i1,2017-18,Norwell - Grace Farrar Cole,02190005, 33.8, 100.0, 14.1 to 1, 85.9, 97.0 +4.71,4.71,a-exp-i1,2017-18,Norwell - Norwell High,02190505, 51.9, 100.0, 13.4 to 1, 94.2, 96.1 +4.885,4.89,a-exp-i1,2017-18,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.7 to 1, 97.7, 95.4 +4.11,4.11,a-exp-i1,2017-18,Norwell - William G Vinal,02190020, 33.7, 100.0, 15.4 to 1, 82.2, 97.0 +4.6899999999999995,4.69,a-exp-i1,2017-18,Norwood - Balch,02200005, 24.2, 100.0, 12.2 to 1, 93.8, 100.0 +5.0,5.0,a-exp-i1,2017-18,Norwood - Charles J Prescott,02200025, 20.1, 100.0, 12.4 to 1, 100.0, 100.0 +4.015,4.02,a-exp-i1,2017-18,Norwood - Cornelius M Callahan,02200010, 20.3, 100.0, 10.8 to 1, 80.3, 95.1 +4.33,4.33,a-exp-i1,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 62.9, 100.0, 11.7 to 1, 86.6, 93.0 +4.8149999999999995,4.81,a-exp-i1,2017-18,Norwood - F A Cleveland,02200015, 27.0, 100.0, 12.1 to 1, 96.3, 100.0 +4.6,4.6,a-exp-i1,2017-18,Norwood - George F. Willett,02200075, 24.9, 100.0, 15.6 to 1, 92.0, 100.0 +4.54,4.54,a-exp-i1,2017-18,Norwood - John P Oldham,02200020, 21.7, 100.0, 10.5 to 1, 90.8, 100.0 +4.55,4.55,a-exp-i1,2017-18,Norwood - Norwood High,02200505, 69.7, 100.0, 13.7 to 1, 91.0, 93.0 +4.035,4.04,a-exp-i1,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 46.5, 98.8, 9.2 to 1, 80.7, 88.6 +4.029999999999999,4.03,a-exp-i1,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 57.0, 96.5, 9.4 to 1, 80.6, 80.2 +4.55,4.55,a-exp-i1,2017-18,Old Rochester - Old Rochester Regional High,07400505, 53.7, 100.0, 14.5 to 1, 91.0, 96.3 +4.46,4.46,a-exp-i1,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 12.9 to 1, 89.2, 97.3 +0.7849999999999999,1,a-exp-i1,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 14.2, 100.0, 11.2 to 1, 15.7, 78.9 +3.905,3.91,a-exp-i1,2017-18,Orange - Dexter Park,02230010, 23.1, 100.0, 13.6 to 1, 78.1, 89.1 +3.4200000000000004,3.42,a-exp-i1,2017-18,Orange - Fisher Hill,02230015, 21.9, 100.0, 12.8 to 1, 68.4, 88.8 +4.6049999999999995,4.6,a-exp-i1,2017-18,Orleans - Orleans Elementary,02240005, 21.6, 100.0, 10.3 to 1, 92.1, 97.7 +4.39,4.39,a-exp-i1,2017-18,Oxford - Alfred M Chaffee,02260010, 20.0, 100.0, 14.5 to 1, 87.8, 97.8 +4.475,4.48,a-exp-i1,2017-18,Oxford - Clara Barton,02260005, 24.5, 100.0, 15.6 to 1, 89.5, 93.6 +4.325,4.33,a-exp-i1,2017-18,Oxford - Oxford High,02260505, 40.8, 100.0, 13.3 to 1, 86.5, 83.8 +4.7700000000000005,4.77,a-exp-i1,2017-18,Oxford - Oxford Middle,02260405, 30.7, 100.0, 14.4 to 1, 95.4, 93.5 +4.8950000000000005,4.9,a-exp-i1,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 7.2, 100.0, 3.8 to 1, 97.9, 58.0 +4.21,4.21,a-exp-i1,2017-18,Palmer - Old Mill Pond,02270008, 57.0, 100.0, 12.1 to 1, 84.2, 98.2 +4.470000000000001,4.47,a-exp-i1,2017-18,Palmer - Palmer High,02270505, 62.0, 100.0, 11.5 to 1, 89.4, 93.5 +4.12,4.12,a-exp-i1,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 73.7, 91.9, 8.3 to 1, 82.4, 85.8 +2.04,2.04,a-exp-i1,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.0, 57.9, 7.7 to 1, 40.8, 74.3 +4.805,4.81,a-exp-i1,2017-18,Peabody - Captain Samuel Brown,02290005, 29.3, 99.5, 12.2 to 1, 96.1, 99.3 +4.2700000000000005,4.27,a-exp-i1,2017-18,Peabody - Center,02290015, 26.1, 99.5, 15.1 to 1, 85.4, 94.3 +4.39,4.39,a-exp-i1,2017-18,Peabody - J Henry Higgins Middle,02290305, 94.0, 98.4, 14.5 to 1, 87.8, 92.0 +3.96,3.96,a-exp-i1,2017-18,Peabody - John E Burke,02290007, 23.4, 99.5, 11.2 to 1, 79.2, 96.9 +4.55,4.55,a-exp-i1,2017-18,Peabody - John E. McCarthy,02290016, 25.9, 100.0, 13.7 to 1, 91.0, 98.5 +4.365,4.37,a-exp-i1,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 126.2, 96.0, 11.7 to 1, 87.3, 91.1 +4.32,4.32,a-exp-i1,2017-18,Peabody - South Memorial,02290035, 28.8, 96.1, 16.2 to 1, 86.4, 96.5 +3.9200000000000004,3.92,a-exp-i1,2017-18,Peabody - Thomas Carroll,02290010, 41.6, 100.0, 15.0 to 1, 78.4, 99.5 +4.11,4.11,a-exp-i1,2017-18,Peabody - West Memorial,02290045, 20.1, 98.8, 12.3 to 1, 82.2, 93.4 +4.485,4.49,a-exp-i1,2017-18,Peabody - William A Welch Sr,02290027, 24.2, 100.0, 14.9 to 1, 89.7, 89.7 +3.35,3.35,a-exp-i1,2017-18,Pelham - Pelham Elementary,02300005, 11.5, 98.3, 11.0 to 1, 67.0, 91.3 +4.375,4.38,a-exp-i1,2017-18,Pembroke - Bryantville Elementary,02310003, 31.9, 100.0, 15.7 to 1, 87.5, 98.2 +4.37,4.37,a-exp-i1,2017-18,Pembroke - Hobomock Elementary,02310010, 29.7, 100.0, 14.3 to 1, 87.4, 91.3 +4.625,4.63,a-exp-i1,2017-18,Pembroke - North Pembroke Elementary,02310015, 39.9, 100.0, 13.8 to 1, 92.5, 97.3 +4.76,4.76,a-exp-i1,2017-18,Pembroke - Pembroke Community Middle School,02310305, 31.1, 100.0, 16.0 to 1, 95.2, 99.7 +4.25,4.25,a-exp-i1,2017-18,Pembroke - Pembroke High School,02310505, 65.8, 98.5, 14.0 to 1, 85.0, 88.0 +3.7299999999999995,3.73,a-exp-i1,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 16.4, 100.0, 13.3 to 1, 74.6, 96.2 +4.58,4.58,a-exp-i1,2017-18,Pentucket - Dr John C Page School,07450015, 27.7, 100.0, 12.3 to 1, 91.6, 95.2 +4.24,4.24,a-exp-i1,2017-18,Pentucket - Elmer S Bagnall,07450005, 38.4, 100.0, 13.2 to 1, 84.8, 95.3 +4.2,4.2,a-exp-i1,2017-18,Pentucket - Helen R Donaghue School,07450010, 22.3, 100.0, 10.8 to 1, 84.0, 96.2 +4.7299999999999995,4.73,a-exp-i1,2017-18,Pentucket - Pentucket Regional Middle,07450405, 31.5, 100.0, 13.4 to 1, 94.6, 91.7 +4.375,4.38,a-exp-i1,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 58.1, 100.0, 12.8 to 1, 87.5, 89.8 +3.97,3.97,a-exp-i1,2017-18,Petersham - Petersham Center,02340005, 11.3, 82.5, 10.3 to 1, 79.4, 96.9 +0.0,1,a-exp-i1,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 13.3, 63.9, 15.3 to 1, 0.0, 62.4 +1.565,1.57,a-exp-i1,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 16.0, 43.8, 12.3 to 1, 31.3, 68.8 +0.97,1,a-exp-i1,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 66.5, 71.0, 10.0 to 1, 19.4, 87.9 +0.8150000000000001,1,a-exp-i1,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 30.7, 65.8, 11.6 to 1, 16.3, 71.5 +4.635,4.64,a-exp-i1,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 13.7, 100.0, 11.5 to 1, 92.7, 100.0 +4.41,4.41,a-exp-i1,2017-18,Pioneer Valley - Northfield Elementary,07500008, 17.5, 96.8, 10.6 to 1, 88.2, 97.1 +3.4899999999999998,3.49,a-exp-i1,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 6.6, 100.0, 5.0 to 1, 69.8, 100.0 +4.485,4.49,a-exp-i1,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 29.2, 96.6, 12.3 to 1, 89.7, 93.2 +5.0,5.0,a-exp-i1,2017-18,Pioneer Valley - Warwick Community School,07500009, 6.9, 100.0, 8.6 to 1, 100.0, 100.0 +2.5149999999999997,2.51,a-exp-i1,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.6, 72.2, 7.8 to 1, 50.3, 78.3 +4.0649999999999995,4.06,a-exp-i1,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 44.1, 67.3, 9.1 to 1, 81.3, 72.8 +4.295,4.3,a-exp-i1,2017-18,Pittsfield - Allendale,02360010, 21.3, 100.0, 13.5 to 1, 85.9, 100.0 +3.5799999999999996,3.58,a-exp-i1,2017-18,Pittsfield - Crosby,02360065, 35.2, 94.3, 12.7 to 1, 71.6, 85.8 +3.965,3.97,a-exp-i1,2017-18,Pittsfield - Egremont,02360035, 29.0, 96.6, 14.6 to 1, 79.3, 93.1 +4.665,4.67,a-exp-i1,2017-18,Pittsfield - John T Reid Middle,02360305, 52.6, 100.0, 10.5 to 1, 93.3, 91.2 +3.63,3.63,a-exp-i1,2017-18,Pittsfield - Morningside Community School,02360055, 36.5, 94.5, 10.6 to 1, 72.6, 91.8 +4.26,4.26,a-exp-i1,2017-18,Pittsfield - Pittsfield High,02360505, 80.5, 100.0, 10.6 to 1, 85.2, 82.1 +4.87,4.87,a-exp-i1,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 16.0, 100.0, 13.5 to 1, 97.4, 98.8 +3.815,3.82,a-exp-i1,2017-18,Pittsfield - Silvio O Conte Community,02360105, 30.8, 100.0, 11.7 to 1, 76.3, 87.9 +3.595,3.6,a-exp-i1,2017-18,Pittsfield - Stearns,02360090, 15.7, 100.0, 15.6 to 1, 71.9, 87.2 +4.675,4.68,a-exp-i1,2017-18,Pittsfield - Taconic High,02360510, 73.1, 98.6, 10.0 to 1, 93.5, 90.3 +4.265,4.27,a-exp-i1,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 50.7, 100.0, 12.7 to 1, 85.3, 79.7 +4.18,4.18,a-exp-i1,2017-18,Pittsfield - Williams,02360100, 21.9, 95.4, 14.6 to 1, 83.6, 100.0 +4.0649999999999995,4.06,a-exp-i1,2017-18,Plainville - Anna Ware Jackson,02380010, 27.3, 97.8, 14.8 to 1, 81.3, 97.8 +4.045,4.05,a-exp-i1,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 21.0, 98.1, 14.4 to 1, 80.9, 96.2 +3.755,3.76,a-exp-i1,2017-18,Plymouth - Cold Spring,02390005, 21.7, 97.2, 11.7 to 1, 75.1, 91.6 +3.9850000000000003,3.99,a-exp-i1,2017-18,Plymouth - Federal Furnace School,02390011, 36.9, 97.3, 10.5 to 1, 79.7, 96.9 +3.54,3.54,a-exp-i1,2017-18,Plymouth - Hedge,02390010, 21.7, 100.0, 7.1 to 1, 70.8, 96.6 +4.025,4.03,a-exp-i1,2017-18,Plymouth - Indian Brook,02390012, 41.7, 100.0, 13.6 to 1, 80.5, 99.2 +3.7350000000000003,3.74,a-exp-i1,2017-18,Plymouth - Manomet Elementary,02390015, 22.6, 95.6, 12.7 to 1, 74.7, 97.3 +4.49,4.49,a-exp-i1,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 44.5, 97.8, 12.3 to 1, 89.8, 96.6 +4.385,4.39,a-exp-i1,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 84.6, 100.0, 12.1 to 1, 87.7, 95.3 +3.8899999999999997,3.89,a-exp-i1,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 15.6 to 1, 77.8, 100.0 +3.85,3.85,a-exp-i1,2017-18,Plymouth - Plymouth North High,02390505, 104.2, 98.7, 12.3 to 1, 77.0, 83.7 +4.36,4.36,a-exp-i1,2017-18,Plymouth - Plymouth South High,02390515, 105.5, 96.0, 10.4 to 1, 87.2, 90.4 +4.755,4.76,a-exp-i1,2017-18,Plymouth - Plymouth South Middle,02390305, 57.2, 100.0, 12.7 to 1, 95.1, 98.3 +3.66,3.66,a-exp-i1,2017-18,Plymouth - South Elementary,02390046, 50.1, 99.2, 13.0 to 1, 73.2, 95.6 +4.154999999999999,4.15,a-exp-i1,2017-18,Plymouth - West Elementary,02390047, 33.9, 100.0, 11.6 to 1, 83.1, 98.5 +4.425,4.43,a-exp-i1,2017-18,Plympton - Dennett Elementary,02400010, 18.3, 100.0, 11.3 to 1, 88.5, 100.0 +2.495,2.5,a-exp-i1,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 111.1, 81.6, 10.2 to 1, 49.9, 88.8 +4.029999999999999,4.03,a-exp-i1,2017-18,Provincetown - Provincetown Schools,02420020, 19.1, 100.0, 6.3 to 1, 80.6, 85.9 +3.79,3.79,a-exp-i1,2017-18,Quabbin - Hardwick Elementary,07530005, 13.2, 100.0, 14.7 to 1, 75.8, 100.0 +3.655,3.66,a-exp-i1,2017-18,Quabbin - Hubbardston Center,07530010, 19.3, 100.0, 16.5 to 1, 73.1, 94.8 +5.0,5.0,a-exp-i1,2017-18,Quabbin - IB School of Quabbin,07530515, 1.3, 100.0, 9.7 to 1, 100.0, 100.0 +4.75,4.75,a-exp-i1,2017-18,Quabbin - New Braintree Grade,07530020, 4.0, 100.0, 13.5 to 1, 95.0, 100.0 +4.8549999999999995,4.85,a-exp-i1,2017-18,Quabbin - Oakham Center,07530025, 6.8, 100.0, 19.0 to 1, 97.1, 100.0 +4.335,4.34,a-exp-i1,2017-18,Quabbin - Quabbin Regional High School,07530505, 45.1, 100.0, 14.6 to 1, 86.7, 95.6 +4.82,4.82,a-exp-i1,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 27.5, 96.4, 14.4 to 1, 96.4, 96.4 +4.14,4.14,a-exp-i1,2017-18,Quabbin - Ruggles Lane,07530030, 30.3, 100.0, 15.3 to 1, 82.8, 96.7 +4.295,4.3,a-exp-i1,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 31.2, 96.8, 11.8 to 1, 85.9, 85.7 +3.9799999999999995,3.98,a-exp-i1,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 17.7, 100.0, 13.4 to 1, 79.6, 85.7 +4.26,4.26,a-exp-i1,2017-18,Quaboag Regional - Warren Elementary,07780005, 36.4, 80.8, 12.2 to 1, 85.2, 94.5 +4.21,4.21,a-exp-i1,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 19.0, 94.7, 16.0 to 1, 84.2, 94.7 +4.2299999999999995,4.23,a-exp-i1,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 13.0, 100.0, 14.8 to 1, 84.6, 92.3 +4.14,4.14,a-exp-i1,2017-18,Quincy - Atherton Hough,02430040, 24.4, 95.9, 10.3 to 1, 82.8, 99.2 +5.0,5.0,a-exp-i1,2017-18,Quincy - Atlantic Middle,02430305, 33.4, 100.0, 14.9 to 1, 100.0, 97.0 +4.08,4.08,a-exp-i1,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 25.5, 100.0, 13.8 to 1, 81.6, 100.0 +3.9899999999999998,3.99,a-exp-i1,2017-18,Quincy - Broad Meadows Middle,02430310, 29.5, 96.6, 13.0 to 1, 79.8, 83.2 +4.765,4.77,a-exp-i1,2017-18,Quincy - Central Middle,02430315, 42.4, 100.0, 15.0 to 1, 95.3, 95.3 +4.779999999999999,4.78,a-exp-i1,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 23.0, 100.0, 14.4 to 1, 95.6, 95.6 +4.79,4.79,a-exp-i1,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 43.2, 100.0, 13.1 to 1, 95.8, 95.8 +4.415,4.42,a-exp-i1,2017-18,Quincy - Francis W Parker,02430075, 27.3, 100.0, 11.5 to 1, 88.3, 95.6 +4.055,4.06,a-exp-i1,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 39.2, 97.4, 13.2 to 1, 81.1, 99.0 +5.0,5.0,a-exp-i1,2017-18,Quincy - Merrymount,02430060, 22.9, 100.0, 15.2 to 1, 100.0, 100.0 +4.58,4.58,a-exp-i1,2017-18,Quincy - Montclair,02430065, 27.7, 100.0, 14.9 to 1, 91.6, 97.1 +4.585,4.59,a-exp-i1,2017-18,Quincy - North Quincy High,02430510, 88.4, 97.7, 13.8 to 1, 91.7, 94.3 +3.625,3.63,a-exp-i1,2017-18,Quincy - Point Webster Middle,02430325, 28.0, 100.0, 12.7 to 1, 72.5, 84.1 +4.425,4.43,a-exp-i1,2017-18,Quincy - Quincy High,02430505, 119.5, 99.2, 12.9 to 1, 88.5, 88.3 +4.279999999999999,4.28,a-exp-i1,2017-18,Quincy - Reay E Sterling Middle,02430320, 29.5, 100.0, 12.3 to 1, 85.6, 80.7 +4.225,4.23,a-exp-i1,2017-18,Quincy - Snug Harbor Community School,02430090, 34.8, 97.1, 13.3 to 1, 84.5, 84.5 +4.805,4.81,a-exp-i1,2017-18,Quincy - Squantum,02430095, 25.9, 100.0, 13.3 to 1, 96.1, 100.0 +4.6850000000000005,4.69,a-exp-i1,2017-18,Quincy - Wollaston School,02430110, 23.7, 100.0, 14.0 to 1, 93.7, 91.6 +0.0,1,a-exp-i1,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 100.0,###### to 1, 0.0, 100.0 +4.665,4.67,a-exp-i1,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 59.6, 98.3, 10.8 to 1, 93.3, 95.0 +0.0,1,a-exp-i1,2017-18,Ralph C Mahar - The Gateway to College,07550525, .0, 100.0,###### to 1, 0.0, 100.0 +4.235,4.24,a-exp-i1,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 21.3, 100.0, 14.0 to 1, 84.7, 100.0 +4.375,4.38,a-exp-i1,2017-18,Randolph - J F Kennedy Elementary,02440018, 39.9, 100.0, 11.7 to 1, 87.5, 92.5 +3.965,3.97,a-exp-i1,2017-18,Randolph - Margaret L Donovan,02440015, 29.0, 100.0, 15.2 to 1, 79.3, 100.0 +4.46,4.46,a-exp-i1,2017-18,Randolph - Martin E Young Elementary,02440040, 27.8, 100.0, 11.1 to 1, 89.2, 100.0 +3.905,3.91,a-exp-i1,2017-18,Randolph - Randolph Community Middle,02440410, 58.5, 100.0, 10.3 to 1, 78.1, 79.5 +4.175,4.18,a-exp-i1,2017-18,Randolph - Randolph High,02440505, 60.7, 100.0, 11.7 to 1, 83.5, 91.8 +4.05,4.05,a-exp-i1,2017-18,Reading - Alice M Barrows,02460002, 24.2, 100.0, 15.6 to 1, 81.0, 91.7 +4.2700000000000005,4.27,a-exp-i1,2017-18,Reading - Arthur W Coolidge Middle,02460305, 37.6, 100.0, 12.7 to 1, 85.4, 89.4 +3.8549999999999995,3.85,a-exp-i1,2017-18,Reading - Birch Meadow,02460005, 30.6, 100.0, 12.1 to 1, 77.1, 96.7 +4.335,4.34,a-exp-i1,2017-18,Reading - J Warren Killam,02460017, 29.0, 100.0, 14.5 to 1, 86.7, 96.5 +4.2299999999999995,4.23,a-exp-i1,2017-18,Reading - Joshua Eaton,02460010, 28.5, 100.0, 13.6 to 1, 84.6, 93.0 +4.59,4.59,a-exp-i1,2017-18,Reading - RISE PreSchool,02460001, 7.3, 100.0, 12.9 to 1, 91.8, 100.0 +4.495,4.5,a-exp-i1,2017-18,Reading - Reading Memorial High,02460505, 81.9, 100.0, 15.1 to 1, 89.9, 96.8 +4.57,4.57,a-exp-i1,2017-18,Reading - Walter S Parker Middle,02460310, 46.3, 100.0, 12.2 to 1, 91.4, 93.5 +4.63,4.63,a-exp-i1,2017-18,Reading - Wood End Elementary School,02460020, 20.3, 100.0, 14.3 to 1, 92.6, 100.0 +4.1,4.1,a-exp-i1,2017-18,Revere - A. C. Whelan Elementary School,02480003, 50.0, 100.0, 15.1 to 1, 82.0, 94.0 +3.69,3.69,a-exp-i1,2017-18,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 16.5 to 1, 73.8, 92.9 +4.205,4.21,a-exp-i1,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 31.1, 100.0, 12.0 to 1, 84.1, 95.7 +4.34,4.34,a-exp-i1,2017-18,Revere - Garfield Elementary School,02480056, 53.2, 100.0, 14.4 to 1, 86.8, 97.2 +3.54,3.54,a-exp-i1,2017-18,Revere - Garfield Middle School,02480057, 44.5, 100.0, 12.1 to 1, 70.8, 74.2 +4.029999999999999,4.03,a-exp-i1,2017-18,Revere - Paul Revere,02480050, 36.0, 100.0, 13.1 to 1, 80.6, 97.2 +4.095000000000001,4.1,a-exp-i1,2017-18,Revere - Revere High,02480505, 129.2, 97.7, 15.4 to 1, 81.9, 94.6 +3.65,3.65,a-exp-i1,2017-18,Revere - Rumney Marsh Academy,02480014, 48.2, 100.0, 12.4 to 1, 73.0, 85.5 +2.625,2.63,a-exp-i1,2017-18,Revere - Seacoast School,02480520, 13.0, 100.0, 6.3 to 1, 52.5, 79.5 +4.45,4.45,a-exp-i1,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 45.5, 100.0, 15.6 to 1, 89.0, 93.4 +4.0200000000000005,4.02,a-exp-i1,2017-18,Revere - Susan B. Anthony Middle School,02480305, 46.0, 100.0, 12.4 to 1, 80.4, 91.3 +4.95,4.95,a-exp-i1,2017-18,Richmond - Richmond Consolidated,02490005, 19.2, 97.9, 9.3 to 1, 99.0, 90.6 +2.645,2.65,a-exp-i1,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 61.0, 68.4, 10.8 to 1, 52.9, 82.0 +3.79,3.79,a-exp-i1,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 20.8, 91.3, 13.9 to 1, 75.8, 75.9 +4.5649999999999995,4.56,a-exp-i1,2017-18,Rochester - Rochester Memorial,02500005, 38.1, 100.0, 13.1 to 1, 91.3, 99.2 +3.4899999999999998,3.49,a-exp-i1,2017-18,Rockland - Jefferson Elementary School,02510060, 24.2, 97.9, 12.6 to 1, 69.8, 93.8 +3.925,3.93,a-exp-i1,2017-18,Rockland - John W Rogers Middle,02510305, 50.2, 100.0, 12.9 to 1, 78.5, 94.0 +3.5450000000000004,3.55,a-exp-i1,2017-18,Rockland - Memorial Park,02510020, 26.1, 98.1, 10.8 to 1, 70.9, 98.1 +3.72,3.72,a-exp-i1,2017-18,Rockland - R Stewart Esten,02510025, 26.3, 100.0, 11.8 to 1, 74.4, 88.6 +4.15,4.15,a-exp-i1,2017-18,Rockland - Rockland Senior High,02510505, 47.0, 100.0, 13.7 to 1, 83.0, 89.8 +4.46,4.46,a-exp-i1,2017-18,Rockport - Rockport Elementary,02520005, 27.9, 100.0, 14.1 to 1, 89.2, 100.0 +3.95,3.95,a-exp-i1,2017-18,Rockport - Rockport High,02520510, 30.9, 99.1, 9.3 to 1, 79.0, 74.8 +3.84,3.84,a-exp-i1,2017-18,Rockport - Rockport Middle,02520305, 29.8, 96.0, 7.6 to 1, 76.8, 97.5 +5.0,5.0,a-exp-i1,2017-18,Rowe - Rowe Elementary,02530005, 8.0, 100.0, 8.9 to 1, 100.0, 100.0 +1.1400000000000001,1.14,a-exp-i1,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 117.9, 55.7, 12.1 to 1, 22.8, 85.1 +3.785,3.79,a-exp-i1,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 66.0, 91.7, 23.8 to 1, 75.7, 77.1 +3.95,3.95,a-exp-i1,2017-18,Salem - Bates,02580003, 26.9, 99.4, 12.7 to 1, 79.0, 88.9 +2.8,2.8,a-exp-i1,2017-18,Salem - Carlton,02580015, 23.0, 99.6, 11.0 to 1, 56.0, 95.6 +3.78,3.78,a-exp-i1,2017-18,Salem - Collins Middle,02580305, 55.2, 100.0, 9.7 to 1, 75.6, 83.7 +4.385,4.39,a-exp-i1,2017-18,Salem - Horace Mann Laboratory,02580030, 25.2, 99.6, 10.8 to 1, 87.7, 98.0 +2.375,2.38,a-exp-i1,2017-18,Salem - Nathaniel Bowditch,02580025, 39.2, 96.9, 9.6 to 1, 47.5, 77.1 +1.1099999999999999,1.11,a-exp-i1,2017-18,Salem - New Liberty Innovation School,02580510, 4.5, 100.0, 10.0 to 1, 22.2, 88.9 +4.285,4.29,a-exp-i1,2017-18,Salem - Salem Early Childhood,02580001, 7.0, 100.0, 13.3 to 1, 85.7, 100.0 +4.175,4.18,a-exp-i1,2017-18,Salem - Salem High,02580505, 97.8, 93.4, 9.4 to 1, 83.5, 92.8 +4.465,4.47,a-exp-i1,2017-18,Salem - Salem Prep High School,02580515, 5.6, 100.0, 4.6 to 1, 89.3, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Salem - Saltonstall School,02580050, 31.4, 99.4, 11.9 to 1, 96.2, 92.0 +3.79,3.79,a-exp-i1,2017-18,Salem - Witchcraft Heights,02580070, 41.5, 99.6, 11.0 to 1, 75.8, 100.0 +2.7199999999999998,2.72,a-exp-i1,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 46.1, 75.6, 10.3 to 1, 54.4, 66.7 +3.9899999999999998,3.99,a-exp-i1,2017-18,Sandwich - Forestdale School,02610002, 50.4, 98.0, 12.5 to 1, 79.8, 94.1 +4.015,4.02,a-exp-i1,2017-18,Sandwich - Oak Ridge,02610025, 57.5, 100.0, 14.3 to 1, 80.3, 94.8 +4.205,4.21,a-exp-i1,2017-18,Sandwich - Sandwich High,02610505, 53.9, 100.0, 12.4 to 1, 84.1, 86.4 +4.18,4.18,a-exp-i1,2017-18,Sandwich - Sandwich STEM Academy,02610305, 38.1, 100.0, 12.1 to 1, 83.6, 87.3 +4.085,4.09,a-exp-i1,2017-18,Saugus - Belmonte Saugus Middle,02620305, 54.8, 98.2, 11.9 to 1, 81.7, 87.2 +4.89,4.89,a-exp-i1,2017-18,Saugus - Douglas Waybright,02620067, 15.2, 100.0, 15.2 to 1, 97.8, 100.0 +4.915,4.92,a-exp-i1,2017-18,Saugus - Lynnhurst,02620040, 19.2, 100.0, 14.1 to 1, 98.3, 100.0 +4.255,4.26,a-exp-i1,2017-18,Saugus - Oaklandvale,02620050, 15.6, 100.0, 15.4 to 1, 85.1, 100.0 +4.675,4.68,a-exp-i1,2017-18,Saugus - Saugus High,02620505, 54.4, 100.0, 12.1 to 1, 93.5, 92.6 +3.935,3.94,a-exp-i1,2017-18,Saugus - Veterans Memorial,02620065, 42.3, 100.0, 12.8 to 1, 78.7, 95.3 +3.415,3.42,a-exp-i1,2017-18,Savoy - Emma L Miller Elementary School,02630010, 4.9, 100.0, 12.2 to 1, 68.3, 100.0 +5.0,5.0,a-exp-i1,2017-18,Scituate - Cushing Elementary,02640007, 27.5, 100.0, 11.3 to 1, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2017-18,Scituate - Gates Middle School,02640305, 58.2, 100.0, 12.4 to 1, 86.3, 94.8 +3.975,3.98,a-exp-i1,2017-18,Scituate - Hatherly Elementary,02640010, 29.3, 100.0, 9.2 to 1, 79.5, 95.9 +4.49,4.49,a-exp-i1,2017-18,Scituate - Jenkins Elementary School,02640015, 32.2, 100.0, 11.2 to 1, 89.8, 93.2 +4.29,4.29,a-exp-i1,2017-18,Scituate - Scituate High School,02640505, 65.0, 99.4, 14.2 to 1, 85.8, 94.8 +4.255,4.26,a-exp-i1,2017-18,Scituate - Wampatuck Elementary,02640020, 32.3, 100.0, 12.4 to 1, 85.1, 99.7 +4.39,4.39,a-exp-i1,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.1, 100.0, 11.4 to 1, 87.8, 93.2 +4.720000000000001,4.72,a-exp-i1,2017-18,Seekonk - George R Martin,02650007, 35.7, 100.0, 13.4 to 1, 94.4, 100.0 +4.6850000000000005,4.69,a-exp-i1,2017-18,Seekonk - Mildred Aitken School,02650015, 31.7, 100.0, 13.5 to 1, 93.7, 100.0 +4.755,4.76,a-exp-i1,2017-18,Seekonk - Seekonk High,02650505, 45.2, 99.6, 13.2 to 1, 95.1, 95.6 +1.735,1.74,a-exp-i1,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 37.4, 86.6, 17.8 to 1, 34.7, 76.0 +4.4350000000000005,4.44,a-exp-i1,2017-18,Sharon - Cottage Street,02660005, 26.6, 100.0, 19.5 to 1, 88.7, 98.8 +4.265,4.27,a-exp-i1,2017-18,Sharon - East Elementary,02660010, 27.2, 100.0, 18.1 to 1, 85.3, 98.8 +4.470000000000001,4.47,a-exp-i1,2017-18,Sharon - Heights Elementary,02660015, 28.2, 100.0, 18.6 to 1, 89.4, 95.3 +5.0,5.0,a-exp-i1,2017-18,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 12.5 to 1, 100.0, 100.0 +4.11,4.11,a-exp-i1,2017-18,Sharon - Sharon High,02660505, 94.9, 96.8, 11.4 to 1, 82.2, 94.9 +4.37,4.37,a-exp-i1,2017-18,Sharon - Sharon Middle,02660305, 67.6, 100.0, 12.9 to 1, 87.4, 91.1 +4.470000000000001,4.47,a-exp-i1,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 126.1, 98.4, 10.5 to 1, 89.4, 86.5 +4.465,4.47,a-exp-i1,2017-18,Sherborn - Pine Hill,02690010, 32.7, 100.0, 12.9 to 1, 89.3, 99.7 +4.18,4.18,a-exp-i1,2017-18,Shrewsbury - Beal School,02710005, 22.1, 94.9, 14.0 to 1, 83.6, 94.9 +4.055,4.06,a-exp-i1,2017-18,Shrewsbury - Calvin Coolidge,02710015, 29.6, 96.3, 14.0 to 1, 81.1, 97.0 +4.475,4.48,a-exp-i1,2017-18,Shrewsbury - Floral Street School,02710020, 42.7, 98.9, 17.6 to 1, 89.5, 100.0 +4.275,4.28,a-exp-i1,2017-18,Shrewsbury - Oak Middle School,02710030, 64.0, 98.5, 15.8 to 1, 85.5, 96.9 +3.5,3.5,a-exp-i1,2017-18,Shrewsbury - Parker Road Preschool,02710040, 10.0, 100.0, 23.5 to 1, 70.0, 90.0 +4.07,4.07,a-exp-i1,2017-18,Shrewsbury - Sherwood Middle School,02710305, 69.2, 95.2, 14.0 to 1, 81.4, 92.9 +4.39,4.39,a-exp-i1,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 116.0, 100.0, 15.8 to 1, 87.8, 92.8 +4.115,4.12,a-exp-i1,2017-18,Shrewsbury - Spring Street,02710035, 23.9, 99.4, 15.0 to 1, 82.3, 100.0 +3.6399999999999997,3.64,a-exp-i1,2017-18,Shrewsbury - Walter J Paton,02710025, 21.1, 99.1, 16.2 to 1, 72.8, 90.5 +4.04,4.04,a-exp-i1,2017-18,Shutesbury - Shutesbury Elementary,02720005, 13.7, 95.4, 8.9 to 1, 80.8, 97.1 +4.545,4.55,a-exp-i1,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 35.2, 100.0, 15.9 to 1, 90.9, 94.3 +4.720000000000001,4.72,a-exp-i1,2017-18,Silver Lake - Silver Lake Regional High,07600505, 90.7, 98.9, 14.4 to 1, 94.4, 90.1 +4.445,4.45,a-exp-i1,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 45.0, 100.0, 12.0 to 1, 88.9, 93.3 +3.7299999999999995,3.73,a-exp-i1,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 34.8, 88.4, 10.3 to 1, 74.6, 82.7 +3.7600000000000002,3.76,a-exp-i1,2017-18,Somerset - Chace Street,02730005, 29.8, 100.0, 14.1 to 1, 75.2, 97.0 +4.115,4.12,a-exp-i1,2017-18,Somerset - North Elementary,02730008, 34.4, 100.0, 14.2 to 1, 82.3, 96.8 +4.4799999999999995,4.48,a-exp-i1,2017-18,Somerset - Somerset Middle School,02730305, 48.0, 100.0, 12.6 to 1, 89.6, 95.8 +5.0,5.0,a-exp-i1,2017-18,Somerset - South,02730015, 18.6, 100.0, 14.8 to 1, 100.0, 100.0 +4.535,4.54,a-exp-i1,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 80.9, 100.0, 12.4 to 1, 90.7, 95.1 +4.175,4.18,a-exp-i1,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.2, 100.0, 13.2 to 1, 83.5, 94.7 +3.785,3.79,a-exp-i1,2017-18,Somerville - Arthur D Healey,02740075, 44.1, 97.7, 10.2 to 1, 75.7, 97.7 +4.07,4.07,a-exp-i1,2017-18,Somerville - Benjamin G Brown,02740015, 16.2, 100.0, 14.3 to 1, 81.4, 100.0 +4.445,4.45,a-exp-i1,2017-18,Somerville - Capuano Early Childhood Center,02740005, 21.8, 95.4, 14.4 to 1, 88.9, 95.4 +3.925,3.93,a-exp-i1,2017-18,Somerville - E Somerville Community,02740111, 54.3, 98.2, 13.2 to 1, 78.5, 84.8 +3.0100000000000002,3.01,a-exp-i1,2017-18,Somerville - Full Circle High School,02740510, 10.8, 100.0, 4.8 to 1, 60.2, 69.8 +3.8600000000000003,3.86,a-exp-i1,2017-18,Somerville - John F Kennedy,02740083, 36.8, 100.0, 12.4 to 1, 77.2, 91.5 +4.275,4.28,a-exp-i1,2017-18,Somerville - Next Wave Junior High,02740410, 5.3, 100.0, 2.8 to 1, 85.5, 93.0 +3.96,3.96,a-exp-i1,2017-18,Somerville - Somerville High,02740505, 124.7, 98.0, 9.7 to 1, 79.2, 85.9 +4.08,4.08,a-exp-i1,2017-18,Somerville - West Somerville Neighborhood,02740115, 26.4, 100.0, 14.1 to 1, 81.6, 97.1 +4.2299999999999995,4.23,a-exp-i1,2017-18,Somerville - Winter Hill Community,02740120, 43.0, 98.5, 10.7 to 1, 84.6, 97.7 +3.91,3.91,a-exp-i1,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 48.4, 100.0, 11.8 to 1, 78.2, 88.6 +3.7049999999999996,3.7,a-exp-i1,2017-18,South Hadley - Mosier,02780020, 27.0, 100.0, 15.6 to 1, 74.1, 92.6 +4.525,4.53,a-exp-i1,2017-18,South Hadley - Plains Elementary,02780015, 21.0, 100.0, 16.2 to 1, 90.5, 95.2 +4.43,4.43,a-exp-i1,2017-18,South Hadley - South Hadley High,02780505, 45.7, 100.0, 12.1 to 1, 88.6, 91.7 +4.32,4.32,a-exp-i1,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 81.0, 100.0, 9.0 to 1, 86.4, 84.0 +3.16,3.16,a-exp-i1,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 76.2, 85.5, 12.2 to 1, 63.2, 83.0 +3.8649999999999998,3.87,a-exp-i1,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 63.7, 92.3, 10.2 to 1, 77.3, 76.6 +4.465,4.47,a-exp-i1,2017-18,Southampton - William E Norris,02750005, 37.5, 100.0, 13.7 to 1, 89.3, 97.3 +4.42,4.42,a-exp-i1,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 17.2, 100.0, 15.5 to 1, 88.4, 100.0 +4.715,4.72,a-exp-i1,2017-18,Southborough - Margaret A Neary,02760020, 17.6, 100.0, 14.7 to 1, 94.3, 100.0 +4.63,4.63,a-exp-i1,2017-18,Southborough - Mary E Finn School,02760008, 21.5, 100.0, 15.6 to 1, 92.6, 100.0 +4.7,4.7,a-exp-i1,2017-18,Southborough - P Brent Trottier,02760305, 36.7, 100.0, 12.5 to 1, 94.0, 94.5 +2.95,2.95,a-exp-i1,2017-18,Southbridge - Charlton Street,02770005, 32.2, 83.8, 9.6 to 1, 59.0, 100.0 +3.215,3.22,a-exp-i1,2017-18,Southbridge - Eastford Road,02770010, 28.0, 89.3, 14.0 to 1, 64.3, 89.3 +3.22,3.22,a-exp-i1,2017-18,Southbridge - Southbridge High School,02770515, 47.3, 93.3, 10.6 to 1, 64.4, 70.6 +2.035,2.04,a-exp-i1,2017-18,Southbridge - Southbridge Middle School,02770315, 48.1, 88.5, 10.0 to 1, 40.7, 67.5 +3.59,3.59,a-exp-i1,2017-18,Southbridge - West Street,02770020, 32.0, 100.0, 9.9 to 1, 71.8, 87.5 +3.78,3.78,a-exp-i1,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 117.0, 95.7, 12.2 to 1, 75.6, 82.9 +4.8100000000000005,4.81,a-exp-i1,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 37.0, 99.5, 8.2 to 1, 96.2, 97.3 +3.4200000000000004,3.42,a-exp-i1,2017-18,Southern Berkshire - New Marlborough Central,07650018, 7.6, 100.0, 11.4 to 1, 68.4, 81.6 +4.41,4.41,a-exp-i1,2017-18,Southern Berkshire - Undermountain,07650035, 28.8, 100.0, 10.1 to 1, 88.2, 98.6 +3.8850000000000002,3.89,a-exp-i1,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 112.0, 95.5, 10.0 to 1, 77.7, 80.4 +4.575,4.58,a-exp-i1,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 35.4, 97.2, 12.5 to 1, 91.5, 98.6 +4.62,4.62,a-exp-i1,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 66.0, 100.0, 10.9 to 1, 92.4, 92.4 +3.665,3.67,a-exp-i1,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.9, 100.0, 11.2 to 1, 73.3, 98.5 +4.5,4.5,a-exp-i1,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 28.0, 100.0, 10.5 to 1, 90.0, 92.8 +4.745,4.75,a-exp-i1,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 19.5, 100.0, 11.8 to 1, 94.9, 94.9 +4.08,4.08,a-exp-i1,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 30.0, 100.0, 13.9 to 1, 81.6, 90.0 +4.13,4.13,a-exp-i1,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 12.3 to 1, 82.6, 97.1 +4.465,4.47,a-exp-i1,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 28.0, 96.4, 15.5 to 1, 89.3, 89.3 +4.5,4.5,a-exp-i1,2017-18,Springfield - Alice B Beal Elementary,02810175, 20.1, 100.0, 13.0 to 1, 90.0, 100.0 +3.725,3.73,a-exp-i1,2017-18,Springfield - Arthur T Talmadge,02810165, 19.6, 94.9, 12.9 to 1, 74.5, 100.0 +3.065,3.07,a-exp-i1,2017-18,Springfield - Balliet Middle School,02810360, 10.4, 100.0, 4.9 to 1, 61.3, 61.3 +4.165,4.17,a-exp-i1,2017-18,Springfield - Brightwood,02810025, 24.0, 95.8, 13.2 to 1, 83.3, 91.7 +3.4799999999999995,3.48,a-exp-i1,2017-18,Springfield - Chestnut Academy,02810365, 36.8, 81.9, 11.4 to 1, 69.6, 84.3 +1.9949999999999999,2.0,a-exp-i1,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 24.1, 83.4, 13.1 to 1, 39.9, 60.6 +3.96,3.96,a-exp-i1,2017-18,Springfield - Conservatory of the Arts,02810475, 28.9, 95.3, 12.7 to 1, 79.2, 77.5 +4.5600000000000005,4.56,a-exp-i1,2017-18,Springfield - Daniel B Brunton,02810035, 34.0, 100.0, 13.7 to 1, 91.2, 91.2 +3.075,3.08,a-exp-i1,2017-18,Springfield - Early Childhood Education Center,02810001, 13.0, 92.3, 13.1 to 1, 61.5, 92.3 +4.09,4.09,a-exp-i1,2017-18,Springfield - Edward P. Boland School,02810010, 54.9, 94.5, 14.3 to 1, 81.8, 90.9 +3.925,3.93,a-exp-i1,2017-18,Springfield - Elias Brookings,02810030, 27.9, 96.4, 12.3 to 1, 78.5, 89.3 +4.425,4.43,a-exp-i1,2017-18,Springfield - Forest Park Middle,02810325, 51.9, 96.1, 13.7 to 1, 88.5, 88.4 +4.75,4.75,a-exp-i1,2017-18,Springfield - Frank H Freedman,02810075, 20.0, 95.0, 17.6 to 1, 95.0, 100.0 +4.755,4.76,a-exp-i1,2017-18,Springfield - Frederick Harris,02810080, 41.0, 95.1, 15.5 to 1, 95.1, 100.0 +5.0,5.0,a-exp-i1,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0,###### to 1, 100.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0,###### to 1, 100.0, 100.0 +3.965,3.97,a-exp-i1,2017-18,Springfield - German Gerena Community School,02810195, 55.5, 95.5, 13.0 to 1, 79.3, 91.0 +3.8649999999999998,3.87,a-exp-i1,2017-18,Springfield - Glenwood,02810065, 22.0, 100.0, 13.5 to 1, 77.3, 95.5 +3.96,3.96,a-exp-i1,2017-18,Springfield - Glickman Elementary,02810068, 24.0, 87.5, 13.9 to 1, 79.2, 91.7 +3.21,3.21,a-exp-i1,2017-18,Springfield - High School Of Commerce,02810510, 92.5, 86.7, 11.7 to 1, 64.2, 76.9 +3.81,3.81,a-exp-i1,2017-18,Springfield - Hiram L Dorman,02810050, 21.0, 100.0, 14.6 to 1, 76.2, 100.0 +3.7049999999999996,3.7,a-exp-i1,2017-18,Springfield - Homer Street,02810085, 27.0, 100.0, 16.4 to 1, 74.1, 88.9 +2.165,2.17,a-exp-i1,2017-18,Springfield - Impact Prep at Chestnut,02810366, 17.5, 68.7, 13.1 to 1, 43.3, 64.7 +2.6100000000000003,2.61,a-exp-i1,2017-18,Springfield - Indian Orchard Elementary,02810100, 46.0, 97.8, 13.9 to 1, 52.2, 89.1 +0.625,1,a-exp-i1,2017-18,Springfield - John F Kennedy Middle,02810328, 32.1, 75.0, 14.0 to 1, 12.5, 31.4 +3.3200000000000003,3.32,a-exp-i1,2017-18,Springfield - John J Duggan Middle,02810320, 65.4, 88.5, 11.7 to 1, 66.4, 70.2 +4.5,4.5,a-exp-i1,2017-18,Springfield - Kensington International School,02810110, 20.0, 100.0, 15.5 to 1, 90.0, 95.0 +4.525,4.53,a-exp-i1,2017-18,Springfield - Liberty,02810115, 21.0, 100.0, 13.5 to 1, 90.5, 95.2 +5.0,5.0,a-exp-i1,2017-18,Springfield - Liberty Preparatory Academy,02810560, 3.2, 100.0, 3.8 to 1, 100.0, 68.5 +2.8850000000000002,2.89,a-exp-i1,2017-18,Springfield - Lincoln,02810120, 26.0, 100.0, 15.5 to 1, 57.7, 88.5 +3.8899999999999997,3.89,a-exp-i1,2017-18,Springfield - M Marcus Kiley Middle,02810330, 45.0, 86.7, 14.7 to 1, 77.8, 75.5 +4.335,4.34,a-exp-i1,2017-18,Springfield - Margaret C Ells,02810060, 15.0, 93.3, 16.0 to 1, 86.7, 73.3 +4.545,4.55,a-exp-i1,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 22.0, 100.0, 16.9 to 1, 90.9, 100.0 +3.685,3.69,a-exp-i1,2017-18,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 14.0 to 1, 73.7, 89.5 +3.44,3.44,a-exp-i1,2017-18,Springfield - Mary M Walsh,02810155, 22.5, 100.0, 13.1 to 1, 68.8, 91.1 +4.445,4.45,a-exp-i1,2017-18,Springfield - Mary O Pottenger,02810145, 27.0, 100.0, 15.7 to 1, 88.9, 96.3 +2.95,2.95,a-exp-i1,2017-18,Springfield - Milton Bradley School,02810023, 39.0, 100.0, 14.0 to 1, 59.0, 89.7 +4.4799999999999995,4.48,a-exp-i1,2017-18,Springfield - Rebecca M Johnson,02810055, 48.5, 93.7, 15.4 to 1, 89.6, 91.8 +0.335,1,a-exp-i1,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 15.0, 86.7, 14.3 to 1, 6.7, 46.7 +4.1850000000000005,4.19,a-exp-i1,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 132.0, 95.4, 10.9 to 1, 83.7, 77.3 +3.75,3.75,a-exp-i1,2017-18,Springfield - STEM Middle Academy,02810350, 20.0, 100.0, 14.7 to 1, 75.0, 70.0 +4.0,4.0,a-exp-i1,2017-18,Springfield - Samuel Bowles,02810020, 20.0, 95.0, 16.9 to 1, 80.0, 95.0 +4.720000000000001,4.72,a-exp-i1,2017-18,Springfield - South End Middle School,02810355, 18.0, 99.2, 13.3 to 1, 94.4, 88.9 +4.4799999999999995,4.48,a-exp-i1,2017-18,Springfield - Springfield Central High,02810500, 143.9, 97.9, 14.2 to 1, 89.6, 87.5 +3.465,3.47,a-exp-i1,2017-18,Springfield - Springfield High School,02810570, 16.3, 93.8, 13.0 to 1, 69.3, 84.7 +3.495,3.5,a-exp-i1,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 88.2, 82.9, 14.8 to 1, 69.9, 77.5 +3.53,3.53,a-exp-i1,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 10.2, 70.1, 7.2 to 1, 70.6, 80.4 +3.4850000000000003,3.49,a-exp-i1,2017-18,Springfield - Springfield Public Day High School,02810550, 16.5, 81.9, 5.9 to 1, 69.7, 63.6 +1.7449999999999999,1.75,a-exp-i1,2017-18,Springfield - Springfield Public Day Middle School,02810345, 12.2, 100.0, 4.1 to 1, 34.9, 75.6 +3.4899999999999998,3.49,a-exp-i1,2017-18,Springfield - Springfield Vocational Academy,02810675, 3.0, 69.8, 31.2 to 1, 69.8, 100.0 +3.81,3.81,a-exp-i1,2017-18,Springfield - Sumner Avenue,02810160, 42.0, 92.9, 14.0 to 1, 76.2, 80.9 +3.62,3.62,a-exp-i1,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 93.9, 14.2 to 1, 72.4, 89.8 +3.0,3.0,a-exp-i1,2017-18,Springfield - Thomas M Balliet,02810015, 20.0, 100.0, 15.9 to 1, 60.0, 85.0 +3.595,3.6,a-exp-i1,2017-18,Springfield - Van Sickle Academy,02810485, 32.0, 87.5, 12.6 to 1, 71.9, 68.8 +3.63,3.63,a-exp-i1,2017-18,Springfield - Warner,02810180, 22.0, 95.5, 13.2 to 1, 72.6, 81.7 +3.7049999999999996,3.7,a-exp-i1,2017-18,Springfield - Washington,02810185, 27.0, 100.0, 15.4 to 1, 74.1, 100.0 +3.75,3.75,a-exp-i1,2017-18,Springfield - White Street,02810190, 28.0, 96.4, 16.3 to 1, 75.0, 85.7 +3.8649999999999998,3.87,a-exp-i1,2017-18,Springfield - William N. DeBerry,02810045, 22.0, 95.5, 11.9 to 1, 77.3, 90.9 +0.52,1,a-exp-i1,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 19.3, 59.6, 11.1 to 1, 10.4, 80.8 +2.77,2.77,a-exp-i1,2017-18,Stoneham - Colonial Park,02840005, 19.5, 100.0, 14.3 to 1, 55.4, 98.5 +4.5,4.5,a-exp-i1,2017-18,Stoneham - Robin Hood,02840025, 25.1, 100.0, 15.2 to 1, 90.0, 97.6 +4.545,4.55,a-exp-i1,2017-18,Stoneham - South,02840030, 22.5, 100.0, 14.2 to 1, 90.9, 95.3 +3.935,3.94,a-exp-i1,2017-18,Stoneham - Stoneham Central Middle School,02840405, 65.1, 98.5, 10.5 to 1, 78.7, 87.4 +4.385,4.39,a-exp-i1,2017-18,Stoneham - Stoneham High,02840505, 57.4, 100.0, 11.8 to 1, 87.7, 94.4 +3.0,3.0,a-exp-i1,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 20.6 to 1, 60.0, 80.0 +3.38,3.38,a-exp-i1,2017-18,Stoughton - Helen Hansen Elementary,02850010, 22.7, 100.0, 10.2 to 1, 67.6, 88.7 +4.1,4.1,a-exp-i1,2017-18,Stoughton - Joseph H Gibbons,02850025, 27.8, 100.0, 12.8 to 1, 82.0, 97.2 +4.279999999999999,4.28,a-exp-i1,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 28.5, 100.0, 12.5 to 1, 85.6, 100.0 +4.115,4.12,a-exp-i1,2017-18,Stoughton - O'Donnell Middle School,02850405, 70.9, 100.0, 11.6 to 1, 82.3, 95.8 +3.835,3.84,a-exp-i1,2017-18,Stoughton - South Elementary,02850015, 19.5, 100.0, 12.7 to 1, 76.7, 95.8 +3.87,3.87,a-exp-i1,2017-18,Stoughton - Stoughton High,02850505, 98.9, 99.0, 11.1 to 1, 77.4, 91.4 +3.315,3.32,a-exp-i1,2017-18,Stoughton - West Elementary,02850020, 32.5, 100.0, 11.5 to 1, 66.3, 98.8 +4.705,4.71,a-exp-i1,2017-18,Sturbridge - Burgess Elementary,02870005, 67.6, 100.0, 13.3 to 1, 94.1, 98.5 +3.145,3.15,a-exp-i1,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 86.6, 46.8, 9.4 to 1, 62.9, 83.3 +4.7299999999999995,4.73,a-exp-i1,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 74.5, 100.0, 12.6 to 1, 94.6, 94.6 +4.29,4.29,a-exp-i1,2017-18,Sudbury - General John Nixon Elementary,02880025, 28.1, 100.0, 12.1 to 1, 85.8, 100.0 +3.85,3.85,a-exp-i1,2017-18,Sudbury - Israel Loring School,02880015, 34.8, 100.0, 13.4 to 1, 77.0, 91.7 +4.62,4.62,a-exp-i1,2017-18,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 13.1 to 1, 92.4, 96.6 +4.71,4.71,a-exp-i1,2017-18,Sudbury - Peter Noyes,02880030, 41.5, 100.0, 13.7 to 1, 94.2, 100.0 +3.8649999999999998,3.87,a-exp-i1,2017-18,Sunderland - Sunderland Elementary,02890005, 23.0, 100.0, 10.4 to 1, 77.3, 86.9 +4.61,4.61,a-exp-i1,2017-18,Sutton - Sutton Early Learning,02900003, 19.3, 100.0, 17.0 to 1, 92.2, 100.0 +4.779999999999999,4.78,a-exp-i1,2017-18,Sutton - Sutton Elementary,02900005, 22.9, 100.0, 14.3 to 1, 95.6, 100.0 +4.62,4.62,a-exp-i1,2017-18,Sutton - Sutton High School,02900510, 32.8, 100.0, 12.2 to 1, 92.4, 90.9 +4.4799999999999995,4.48,a-exp-i1,2017-18,Sutton - Sutton Middle School,02900305, 24.0, 99.2, 15.2 to 1, 89.6, 100.0 +4.3,4.3,a-exp-i1,2017-18,Swampscott - Clarke,02910005, 19.6, 100.0, 10.1 to 1, 86.0, 95.4 +4.0,4.0,a-exp-i1,2017-18,Swampscott - Hadley,02910010, 22.5, 100.0, 12.7 to 1, 80.0, 97.8 +3.94,3.94,a-exp-i1,2017-18,Swampscott - Stanley,02910020, 22.5, 100.0, 13.2 to 1, 78.8, 97.3 +4.0649999999999995,4.06,a-exp-i1,2017-18,Swampscott - Swampscott High,02910505, 60.5, 98.1, 11.2 to 1, 81.3, 85.1 +4.4399999999999995,4.44,a-exp-i1,2017-18,Swampscott - Swampscott Middle,02910305, 64.6, 100.0, 11.7 to 1, 88.8, 92.3 +4.475,4.48,a-exp-i1,2017-18,Swansea - Elizabeth S Brown,02920006, 19.0, 100.0, 14.4 to 1, 89.5, 94.7 +4.84,4.84,a-exp-i1,2017-18,Swansea - Gardner,02920015, 15.6, 100.0, 16.7 to 1, 96.8, 96.8 +4.5,4.5,a-exp-i1,2017-18,Swansea - Joseph Case High,02920505, 50.2, 100.0, 10.7 to 1, 90.0, 92.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Swansea - Joseph Case Jr High,02920305, 41.5, 97.6, 12.6 to 1, 90.4, 95.2 +3.87,3.87,a-exp-i1,2017-18,Swansea - Joseph G Luther,02920020, 15.5, 100.0, 14.7 to 1, 77.4, 93.5 +4.585,4.59,a-exp-i1,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 18.2, 100.0, 14.0 to 1, 91.7, 97.2 +2.965,2.97,a-exp-i1,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 57.4, 98.3, 26.8 to 1, 59.3, 71.7 +4.63,4.63,a-exp-i1,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 45.2, 100.0, 13.1 to 1, 92.6, 97.3 +4.63,4.63,a-exp-i1,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 77.1, 100.0, 9.4 to 1, 92.6, 98.9 +3.62,3.62,a-exp-i1,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 92.5, 35.3 to 1, 72.4, 67.5 +3.71,3.71,a-exp-i1,2017-18,Taunton - Benjamin Friedman Middle,02930315, 51.3, 100.0, 14.9 to 1, 74.2, 94.1 +4.33,4.33,a-exp-i1,2017-18,Taunton - East Taunton Elementary,02930010, 41.9, 100.0, 14.7 to 1, 86.6, 97.8 +4.1850000000000005,4.19,a-exp-i1,2017-18,Taunton - Edmund Hatch Bennett,02930007, 23.5, 100.0, 14.1 to 1, 83.7, 100.0 +4.585,4.59,a-exp-i1,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 12.0, 100.0, 28.2 to 1, 91.7, 91.7 +4.4799999999999995,4.48,a-exp-i1,2017-18,Taunton - Elizabeth Pole,02930027, 41.6, 100.0, 15.0 to 1, 89.6, 97.4 +4.425,4.43,a-exp-i1,2017-18,Taunton - H H Galligan,02930057, 23.8, 100.0, 10.1 to 1, 88.5, 96.7 +4.1850000000000005,4.19,a-exp-i1,2017-18,Taunton - Hopewell,02930035, 23.5, 100.0, 11.6 to 1, 83.7, 99.8 +3.06,3.06,a-exp-i1,2017-18,Taunton - John F Parker Middle,02930305, 33.5, 100.0, 14.8 to 1, 61.2, 79.7 +4.785,4.79,a-exp-i1,2017-18,Taunton - Joseph C Chamberlain,02930008, 35.6, 100.0, 14.5 to 1, 95.7, 92.7 +4.075,4.08,a-exp-i1,2017-18,Taunton - Joseph H Martin,02930042, 43.3, 100.0, 15.6 to 1, 81.5, 95.4 +4.075,4.08,a-exp-i1,2017-18,Taunton - Mulcahey Elementary School,02930015, 35.1, 100.0, 13.9 to 1, 81.5, 99.9 +4.79,4.79,a-exp-i1,2017-18,Taunton - Taunton Alternative High School,02930525, 6.0, 100.0, 15.8 to 1, 95.8, 100.0 +4.17,4.17,a-exp-i1,2017-18,Taunton - Taunton High,02930505, 160.7, 98.8, 16.4 to 1, 83.4, 86.6 +4.545,4.55,a-exp-i1,2017-18,Tewksbury - Heath-Brook,02950010, 23.5, 100.0, 14.9 to 1, 90.9, 100.0 +4.220000000000001,4.22,a-exp-i1,2017-18,Tewksbury - John F. Ryan,02950023, 45.8, 100.0, 11.2 to 1, 84.4, 89.1 +4.029999999999999,4.03,a-exp-i1,2017-18,Tewksbury - John W. Wynn Middle,02950305, 50.4, 100.0, 11.5 to 1, 80.6, 90.7 +4.3100000000000005,4.31,a-exp-i1,2017-18,Tewksbury - L F Dewing,02950001, 37.2, 97.3, 16.3 to 1, 86.2, 100.0 +3.16,3.16,a-exp-i1,2017-18,Tewksbury - Louise Davy Trahan,02950025, 17.4, 100.0, 13.4 to 1, 63.2, 100.0 +4.18,4.18,a-exp-i1,2017-18,Tewksbury - North Street,02950020, 19.9, 100.0, 13.9 to 1, 83.6, 100.0 +3.7950000000000004,3.8,a-exp-i1,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 65.9, 100.0, 13.9 to 1, 75.9, 90.9 +4.154999999999999,4.15,a-exp-i1,2017-18,Tisbury - Tisbury Elementary,02960005, 36.7, 100.0, 8.3 to 1, 83.1, 81.7 +4.74,4.74,a-exp-i1,2017-18,Topsfield - Proctor Elementary,02980005, 19.3, 100.0, 13.2 to 1, 94.8, 100.0 +4.1450000000000005,4.15,a-exp-i1,2017-18,Topsfield - Steward Elementary,02980010, 29.2, 100.0, 13.0 to 1, 82.9, 100.0 +4.34,4.34,a-exp-i1,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 90.7, 98.9, 10.9 to 1, 86.8, 86.0 +4.12,4.12,a-exp-i1,2017-18,Triton - Newbury Elementary,07730020, 36.9, 100.0, 12.2 to 1, 82.4, 94.6 +4.85,4.85,a-exp-i1,2017-18,Triton - Pine Grove,07730025, 33.2, 100.0, 13.6 to 1, 97.0, 100.0 +4.65,4.65,a-exp-i1,2017-18,Triton - Salisbury Elementary,07730015, 42.8, 100.0, 12.3 to 1, 93.0, 97.7 +4.3549999999999995,4.35,a-exp-i1,2017-18,Triton - Triton Regional High School,07730505, 58.1, 100.0, 12.4 to 1, 87.1, 89.7 +3.8899999999999997,3.89,a-exp-i1,2017-18,Triton - Triton Regional Middle School,07730405, 29.2, 96.6, 14.2 to 1, 77.8, 81.2 +4.07,4.07,a-exp-i1,2017-18,Truro - Truro Central,03000005, 16.2, 100.0, 6.4 to 1, 81.4, 100.0 +4.4,4.4,a-exp-i1,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 56.4, 100.0, 12.9 to 1, 88.0, 98.2 +4.335,4.34,a-exp-i1,2017-18,Tyngsborough - Tyngsborough High School,03010505, 34.7, 100.0, 13.7 to 1, 86.7, 84.3 +4.64,4.64,a-exp-i1,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 34.7, 100.0, 11.8 to 1, 92.8, 83.1 +2.175,2.18,a-exp-i1,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 42.5, 92.9, 11.8 to 1, 43.5, 60.0 +1.815,1.82,a-exp-i1,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 56.4, 84.2, 13.1 to 1, 36.3, 49.6 +3.35,3.35,a-exp-i1,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 4.6, 100.0, 11.4 to 1, 67.0, 95.6 +4.165,4.17,a-exp-i1,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 39.9, 98.8, 8.8 to 1, 83.3, 90.0 +3.8200000000000003,3.82,a-exp-i1,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 72.1, 97.2, 9.9 to 1, 76.4, 82.0 +0.0,1,a-exp-i1,2017-18,Uxbridge - Gateway to College,03040515, .0, 0.0,N/A,"","" +4.9,4.9,a-exp-i1,2017-18,Uxbridge - McCloskey Middle School,03040015, 25.5, 100.0, 15.8 to 1, 98.0, 96.1 +5.0,5.0,a-exp-i1,2017-18,Uxbridge - Taft Early Learning Center,03040005, 22.2, 100.0, 20.3 to 1, 100.0, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Uxbridge - Uxbridge High,03040505, 38.8, 100.0, 12.4 to 1, 81.9, 81.7 +5.0,5.0,a-exp-i1,2017-18,Uxbridge - Whitin Elementary School,03040020, 21.5, 100.0, 17.8 to 1, 100.0, 100.0 +0.805,1,a-exp-i1,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 31.0, 51.6, 10.4 to 1, 16.1, 77.4 +4.635,4.64,a-exp-i1,2017-18,Wachusett - Central Tree Middle,07750310, 27.4, 100.0, 13.6 to 1, 92.7, 95.1 +4.525,4.53,a-exp-i1,2017-18,Wachusett - Chocksett Middle School,07750315, 26.3, 100.0, 13.9 to 1, 90.5, 100.0 +4.8100000000000005,4.81,a-exp-i1,2017-18,Wachusett - Davis Hill Elementary,07750018, 26.5, 100.0, 17.0 to 1, 96.2, 92.4 +4.5,4.5,a-exp-i1,2017-18,Wachusett - Dawson,07750020, 29.9, 100.0, 15.4 to 1, 90.0, 96.7 +3.75,3.75,a-exp-i1,2017-18,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 20.3 to 1, 75.0, 87.5 +4.58,4.58,a-exp-i1,2017-18,Wachusett - Glenwood Elementary School,07750060, 23.9, 100.0, 14.3 to 1, 91.6, 98.6 +4.6850000000000005,4.69,a-exp-i1,2017-18,Wachusett - Houghton Elementary,07750027, 23.8, 100.0, 15.8 to 1, 93.7, 100.0 +4.83,4.83,a-exp-i1,2017-18,Wachusett - Leroy E.Mayo,07750032, 29.0, 100.0, 16.4 to 1, 96.6, 100.0 +4.46,4.46,a-exp-i1,2017-18,Wachusett - Mountview Middle,07750305, 46.1, 100.0, 17.4 to 1, 89.2, 97.8 +4.529999999999999,4.53,a-exp-i1,2017-18,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 16.1 to 1, 90.6, 93.7 +3.745,3.75,a-exp-i1,2017-18,Wachusett - Paxton Center,07750040, 31.7, 100.0, 14.8 to 1, 74.9, 90.5 +3.255,3.26,a-exp-i1,2017-18,Wachusett - Thomas Prince,07750045, 24.6, 100.0, 16.3 to 1, 65.1, 84.7 +4.34,4.34,a-exp-i1,2017-18,Wachusett - Wachusett Regional High,07750505, 144.0, 100.0, 14.8 to 1, 86.8, 90.3 +4.675,4.68,a-exp-i1,2017-18,Wakefield - Dolbeare,03050005, 30.6, 100.0, 14.6 to 1, 93.5, 100.0 +3.37,3.37,a-exp-i1,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 13.7 to 1, 67.4, 89.1 +4.42,4.42,a-exp-i1,2017-18,Wakefield - Galvin Middle School,03050310, 82.7, 100.0, 12.6 to 1, 88.4, 91.5 +5.0,5.0,a-exp-i1,2017-18,Wakefield - Greenwood,03050020, 12.3, 100.0, 18.0 to 1, 100.0, 100.0 +4.695,4.7,a-exp-i1,2017-18,Wakefield - Wakefield Memorial High,03050505, 82.4, 100.0, 12.5 to 1, 93.9, 93.9 +4.91,4.91,a-exp-i1,2017-18,Wakefield - Walton,03050040, 11.3, 100.0, 18.2 to 1, 98.2, 100.0 +4.505,4.51,a-exp-i1,2017-18,Wakefield - Woodville School,03050015, 28.4, 100.0, 15.2 to 1, 90.1, 100.0 +4.904999999999999,4.9,a-exp-i1,2017-18,Wales - Wales Elementary,03060005, 10.4, 100.0, 15.4 to 1, 98.1, 100.0 +4.404999999999999,4.4,a-exp-i1,2017-18,Walpole - Bird Middle,03070305, 35.2, 100.0, 13.9 to 1, 88.1, 96.9 +4.83,4.83,a-exp-i1,2017-18,Walpole - Boyden,03070010, 29.4, 100.0, 12.1 to 1, 96.6, 100.0 +5.0,5.0,a-exp-i1,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 14.6 to 1, 100.0, 100.0 +4.470000000000001,4.47,a-exp-i1,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 34.9, 98.3, 12.8 to 1, 89.4, 100.0 +4.529999999999999,4.53,a-exp-i1,2017-18,Walpole - Elm Street School,03070005, 28.7, 100.0, 15.0 to 1, 90.6, 97.6 +4.865,4.87,a-exp-i1,2017-18,Walpole - Fisher,03070015, 36.9, 100.0, 12.3 to 1, 97.3, 100.0 +4.835,4.84,a-exp-i1,2017-18,Walpole - Old Post Road,03070018, 30.0, 100.0, 14.0 to 1, 96.7, 100.0 +4.375,4.38,a-exp-i1,2017-18,Walpole - Walpole High,03070505, 84.6, 99.3, 13.4 to 1, 87.5, 95.3 +4.45,4.45,a-exp-i1,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 36.7, 100.0, 12.0 to 1, 89.0, 97.3 +4.5600000000000005,4.56,a-exp-i1,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 40.0, 100.0, 10.8 to 1, 91.2, 94.4 +4.15,4.15,a-exp-i1,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 37.1, 99.1, 11.8 to 1, 83.0, 97.2 +4.295,4.3,a-exp-i1,2017-18,Waltham - John F Kennedy Middle,03080404, 54.2, 100.0, 9.4 to 1, 85.9, 91.4 +3.8600000000000003,3.86,a-exp-i1,2017-18,Waltham - John W. McDevitt Middle School,03080415, 61.3, 100.0, 10.3 to 1, 77.2, 90.2 +4.029999999999999,4.03,a-exp-i1,2017-18,Waltham - Northeast Elementary School,03080040, 43.1, 100.0, 13.8 to 1, 80.6, 97.1 +3.4299999999999997,3.43,a-exp-i1,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 39.5, 97.3, 10.7 to 1, 68.6, 95.6 +1.4949999999999999,1.5,a-exp-i1,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.9, 100.0, 16.3 to 1, 29.9, 95.9 +3.7049999999999996,3.7,a-exp-i1,2017-18,Waltham - Waltham Sr High,03080505, 141.9, 100.0, 11.4 to 1, 74.1, 89.6 +4.25,4.25,a-exp-i1,2017-18,Waltham - William F. Stanley Elementary School,03080005, 43.6, 100.0, 9.9 to 1, 85.0, 98.5 +4.3,4.3,a-exp-i1,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 28.6, 100.0, 14.4 to 1, 86.0, 100.0 +4.385,4.39,a-exp-i1,2017-18,Ware - Ware Junior/Senior High School,03090505, 38.8, 99.6, 12.0 to 1, 87.7, 85.6 +4.279999999999999,4.28,a-exp-i1,2017-18,Ware - Ware Middle School,03090305, 23.6, 100.0, 14.2 to 1, 85.6, 94.1 +4.285,4.29,a-exp-i1,2017-18,Wareham - John William Decas,03100003, 45.6, 100.0, 12.7 to 1, 85.7, 98.9 +3.505,3.51,a-exp-i1,2017-18,Wareham - Minot Forest,03100017, 33.4, 97.0, 14.7 to 1, 70.1, 97.0 +2.205,2.21,a-exp-i1,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 3.1, 92.0, 20.1 to 1, 44.1, 84.0 +4.0649999999999995,4.06,a-exp-i1,2017-18,Wareham - Wareham Middle,03100305, 53.6, 100.0, 13.5 to 1, 81.3, 90.7 +4.115,4.12,a-exp-i1,2017-18,Wareham - Wareham Senior High,03100505, 53.7, 99.1, 8.5 to 1, 82.3, 85.4 +3.405,3.41,a-exp-i1,2017-18,Watertown - Cunniff,03140015, 31.3, 100.0, 9.8 to 1, 68.1, 94.9 +3.71,3.71,a-exp-i1,2017-18,Watertown - Hosmer,03140020, 59.1, 100.0, 11.5 to 1, 74.2, 93.2 +4.325,4.33,a-exp-i1,2017-18,Watertown - James Russell Lowell,03140025, 38.4, 100.0, 10.8 to 1, 86.5, 100.0 +4.035,4.04,a-exp-i1,2017-18,Watertown - Watertown High,03140505, 66.4, 99.4, 10.1 to 1, 80.7, 93.1 +4.335,4.34,a-exp-i1,2017-18,Watertown - Watertown Middle,03140305, 52.0, 100.0, 10.1 to 1, 86.7, 96.2 +4.29,4.29,a-exp-i1,2017-18,Wayland - Claypit Hill School,03150005, 43.1, 100.0, 12.6 to 1, 85.8, 97.7 +4.63,4.63,a-exp-i1,2017-18,Wayland - Happy Hollow School,03150015, 27.2, 100.0, 14.2 to 1, 92.6, 97.8 +4.49,4.49,a-exp-i1,2017-18,Wayland - Loker School,03150020, 20.6, 100.0, 13.6 to 1, 89.8, 96.1 +4.43,4.43,a-exp-i1,2017-18,Wayland - Wayland High School,03150505, 72.0, 99.6, 11.9 to 1, 88.6, 96.7 +4.76,4.76,a-exp-i1,2017-18,Wayland - Wayland Middle School,03150305, 54.9, 100.0, 11.6 to 1, 95.2, 94.2 +4.470000000000001,4.47,a-exp-i1,2017-18,Webster - Bartlett High School,03160505, 42.5, 98.8, 10.3 to 1, 89.4, 85.9 +3.6799999999999997,3.68,a-exp-i1,2017-18,Webster - Park Avenue Elementary,03160015, 53.0, 100.0, 15.6 to 1, 73.6, 88.7 +3.8200000000000003,3.82,a-exp-i1,2017-18,Webster - Webster Middle School,03160315, 42.4, 100.0, 13.9 to 1, 76.4, 83.5 +3.94,3.94,a-exp-i1,2017-18,Wellesley - Ernest F Upham,03170050, 19.7, 100.0, 12.0 to 1, 78.8, 85.8 +4.029999999999999,4.03,a-exp-i1,2017-18,Wellesley - Hunnewell,03170025, 17.4, 100.0, 14.3 to 1, 80.6, 90.0 +4.295,4.3,a-exp-i1,2017-18,Wellesley - John D Hardy,03170020, 22.7, 100.0, 13.0 to 1, 85.9, 99.1 +4.24,4.24,a-exp-i1,2017-18,Wellesley - Joseph E Fiske,03170015, 33.0, 100.0, 12.1 to 1, 84.8, 97.0 +4.76,4.76,a-exp-i1,2017-18,Wellesley - Katharine Lee Bates,03170005, 21.0, 100.0, 17.7 to 1, 95.2, 100.0 +4.8,4.8,a-exp-i1,2017-18,Wellesley - Schofield,03170045, 25.0, 100.0, 15.1 to 1, 96.0, 96.0 +4.6,4.6,a-exp-i1,2017-18,Wellesley - Sprague Elementary School,03170048, 28.3, 100.0, 13.5 to 1, 92.0, 99.0 +4.495,4.5,a-exp-i1,2017-18,Wellesley - Wellesley Middle,03170305, 104.6, 100.0, 10.8 to 1, 89.9, 95.3 +4.525,4.53,a-exp-i1,2017-18,Wellesley - Wellesley Sr High,03170505, 119.7, 99.6, 13.1 to 1, 90.5, 92.9 +4.595000000000001,4.6,a-exp-i1,2017-18,Wellfleet - Wellfleet Elementary,03180005, 14.8, 100.0, 7.6 to 1, 91.9, 93.2 +4.29,4.29,a-exp-i1,2017-18,West Boylston - Major Edwards Elementary,03220005, 35.3, 100.0, 11.9 to 1, 85.8, 100.0 +4.325,4.33,a-exp-i1,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 48.0, 100.0, 10.1 to 1, 86.5, 94.1 +4.8100000000000005,4.81,a-exp-i1,2017-18,West Bridgewater - Howard School,03230305, 18.5, 100.0, 15.6 to 1, 96.2, 97.3 +4.01,4.01,a-exp-i1,2017-18,West Bridgewater - Rose L Macdonald,03230003, 15.2, 100.0, 16.3 to 1, 80.2, 100.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,West Bridgewater - Spring Street School,03230005, 8.9, 100.0, 15.9 to 1, 88.8, 100.0 +4.39,4.39,a-exp-i1,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 51.5, 100.0, 12.2 to 1, 87.8, 94.2 +4.86,4.86,a-exp-i1,2017-18,West Springfield - 21st Century Skills Academy,03320515, 6.2, 97.2, 1.3 to 1, 97.2, 100.0 +4.165,4.17,a-exp-i1,2017-18,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 20.3 to 1, 83.3, 100.0 +4.904999999999999,4.9,a-exp-i1,2017-18,West Springfield - John Ashley,03320005, 17.5, 100.0, 13.4 to 1, 98.1, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,West Springfield - John R Fausey,03320010, 34.7, 100.0, 13.3 to 1, 85.6, 97.1 +4.0200000000000005,4.02,a-exp-i1,2017-18,West Springfield - Memorial,03320025, 19.0, 100.0, 12.6 to 1, 80.4, 100.0 +4.445,4.45,a-exp-i1,2017-18,West Springfield - Mittineague,03320030, 14.7, 100.0, 11.0 to 1, 88.9, 95.7 +4.705,4.71,a-exp-i1,2017-18,West Springfield - Philip G Coburn,03320007, 45.2, 100.0, 11.5 to 1, 94.1, 96.9 +4.0600000000000005,4.06,a-exp-i1,2017-18,West Springfield - Tatham,03320040, 19.0, 100.0, 12.6 to 1, 81.2, 94.7 +4.84,4.84,a-exp-i1,2017-18,West Springfield - West Springfield High,03320505, 94.2, 100.0, 13.1 to 1, 96.8, 94.7 +4.745,4.75,a-exp-i1,2017-18,West Springfield - West Springfield Middle,03320305, 72.5, 98.6, 12.4 to 1, 94.9, 100.0 +4.135,4.14,a-exp-i1,2017-18,Westborough - Annie E Fales,03210010, 28.9, 100.0, 11.7 to 1, 82.7, 89.6 +3.685,3.69,a-exp-i1,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 43.1, 100.0, 11.6 to 1, 73.7, 95.4 +3.9899999999999998,3.99,a-exp-i1,2017-18,Westborough - J Harding Armstrong,03210005, 34.6, 100.0, 12.2 to 1, 79.8, 97.1 +4.3549999999999995,4.35,a-exp-i1,2017-18,Westborough - Mill Pond School,03210045, 70.3, 100.0, 13.3 to 1, 87.1, 96.0 +4.18,4.18,a-exp-i1,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 54.9, 100.0, 10.9 to 1, 83.6, 90.9 +4.135,4.14,a-exp-i1,2017-18,Westborough - Westborough High,03210505, 89.5, 99.0, 12.6 to 1, 82.7, 93.3 +4.779999999999999,4.78,a-exp-i1,2017-18,Westfield - Abner Gibbs,03250020, 15.4, 100.0, 14.5 to 1, 95.6, 98.1 +5.0,5.0,a-exp-i1,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 24.3 to 1, 100.0, 100.0 +4.1899999999999995,4.19,a-exp-i1,2017-18,Westfield - Franklin Ave,03250015, 16.8, 100.0, 14.7 to 1, 83.8, 95.8 +4.695,4.7,a-exp-i1,2017-18,Westfield - Highland,03250025, 33.1, 100.0, 11.3 to 1, 93.9, 94.9 +4.705,4.71,a-exp-i1,2017-18,Westfield - Munger Hill,03250033, 27.9, 100.0, 13.6 to 1, 94.1, 95.2 +4.3149999999999995,4.31,a-exp-i1,2017-18,Westfield - North Middle School,03250305, 51.4, 100.0, 13.1 to 1, 86.3, 92.1 +3.9850000000000003,3.99,a-exp-i1,2017-18,Westfield - Paper Mill,03250036, 30.8, 100.0, 13.4 to 1, 79.7, 100.0 +4.585,4.59,a-exp-i1,2017-18,Westfield - Russell Elementary School,03250055, 12.2, 100.0, 13.2 to 1, 91.7, 100.0 +4.6,4.6,a-exp-i1,2017-18,Westfield - South Middle School,03250310, 50.3, 100.0, 11.7 to 1, 92.0, 94.0 +4.535,4.54,a-exp-i1,2017-18,Westfield - Southampton Road,03250040, 30.5, 100.0, 13.9 to 1, 90.7, 96.7 +4.3,4.3,a-exp-i1,2017-18,Westfield - Westfield High,03250505, 91.7, 98.9, 13.7 to 1, 86.0, 93.8 +4.385,4.39,a-exp-i1,2017-18,Westfield - Westfield Technical Academy,03250605, 55.0, 89.9, 9.8 to 1, 87.7, 84.6 +4.13,4.13,a-exp-i1,2017-18,Westford - Abbot Elementary,03260004, 21.8, 100.0, 16.8 to 1, 82.6, 100.0 +4.465,4.47,a-exp-i1,2017-18,Westford - Blanchard Middle,03260310, 46.7, 100.0, 12.6 to 1, 89.3, 93.6 +4.54,4.54,a-exp-i1,2017-18,Westford - Col John Robinson,03260025, 16.3, 100.0, 17.9 to 1, 90.8, 93.9 +4.885,4.89,a-exp-i1,2017-18,Westford - Day Elementary,03260007, 22.0, 100.0, 16.2 to 1, 97.7, 100.0 +4.71,4.71,a-exp-i1,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 20.6, 100.0, 16.7 to 1, 94.2, 100.0 +4.9350000000000005,4.94,a-exp-i1,2017-18,Westford - Millennium Elementary,03260013, 7.8, 100.0, 14.1 to 1, 98.7, 100.0 +4.575,4.58,a-exp-i1,2017-18,Westford - Nabnasset,03260015, 18.8, 100.0, 17.5 to 1, 91.5, 100.0 +4.6,4.6,a-exp-i1,2017-18,Westford - Rita E. Miller Elementary School,03260055, 18.8, 100.0, 17.3 to 1, 92.0, 92.0 +4.61,4.61,a-exp-i1,2017-18,Westford - Stony Brook School,03260330, 51.0, 100.0, 12.7 to 1, 92.2, 96.1 +4.45,4.45,a-exp-i1,2017-18,Westford - Westford Academy,03260505, 119.1, 99.7, 14.4 to 1, 89.0, 95.8 +4.654999999999999,4.65,a-exp-i1,2017-18,Westhampton - Westhampton Elementary School,03270005, 14.4, 100.0, 8.5 to 1, 93.1, 100.0 +4.220000000000001,4.22,a-exp-i1,2017-18,Weston - Country,03300010, 21.2, 98.6, 14.3 to 1, 84.4, 95.3 +4.045,4.05,a-exp-i1,2017-18,Weston - Field Elementary School,03300012, 24.4, 100.0, 13.3 to 1, 80.9, 92.8 +4.2700000000000005,4.27,a-exp-i1,2017-18,Weston - Weston High,03300505, 63.8, 99.7, 10.9 to 1, 85.4, 98.4 +4.45,4.45,a-exp-i1,2017-18,Weston - Weston Middle,03300305, 39.9, 99.5, 12.1 to 1, 89.0, 90.5 +4.245,4.25,a-exp-i1,2017-18,Weston - Woodland,03300015, 18.1, 100.0, 16.5 to 1, 84.9, 94.5 +4.4,4.4,a-exp-i1,2017-18,Westport - Alice A Macomber,03310015, 25.0, 100.0, 14.9 to 1, 88.0, 100.0 +4.35,4.35,a-exp-i1,2017-18,Westport - Westport Elementary,03310030, 38.5, 100.0, 13.2 to 1, 87.0, 89.6 +4.195,4.2,a-exp-i1,2017-18,Westport - Westport Junior/Senior High School,03310515, 54.2, 100.0, 10.1 to 1, 83.9, 93.5 +4.6,4.6,a-exp-i1,2017-18,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.7 to 1, 92.0, 100.0 +4.57,4.57,a-exp-i1,2017-18,Westwood - Downey,03350012, 18.6, 100.0, 13.5 to 1, 91.4, 86.0 +4.38,4.38,a-exp-i1,2017-18,Westwood - E W Thurston Middle,03350305, 59.7, 100.0, 13.3 to 1, 87.6, 96.7 +4.41,4.41,a-exp-i1,2017-18,Westwood - Martha Jones,03350017, 19.5, 100.0, 15.1 to 1, 88.2, 94.9 +4.235,4.24,a-exp-i1,2017-18,Westwood - Paul Hanlon,03350015, 15.9, 100.0, 13.8 to 1, 84.7, 95.0 +3.66,3.66,a-exp-i1,2017-18,Westwood - Westwood High,03350505, 78.6, 100.0, 12.7 to 1, 73.2, 93.6 +3.335,3.34,a-exp-i1,2017-18,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15.3 to 1, 66.7, 100.0 +4.775,4.78,a-exp-i1,2017-18,Westwood - William E Sheehan,03350025, 22.1, 100.0, 14.4 to 1, 95.5, 100.0 +4.32,4.32,a-exp-i1,2017-18,Weymouth - Abigail Adams Middle School,03360310, 71.4, 98.0, 12.7 to 1, 86.4, 91.2 +4.14,4.14,a-exp-i1,2017-18,Weymouth - Academy Avenue,03360005, 19.7, 100.0, 15.6 to 1, 82.8, 100.0 +3.995,4.0,a-exp-i1,2017-18,Weymouth - Frederick C Murphy,03360050, 16.3, 100.0, 15.1 to 1, 79.9, 100.0 +3.63,3.63,a-exp-i1,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 15.6 to 1, 72.6, 100.0 +4.245,4.25,a-exp-i1,2017-18,Weymouth - Lawrence W Pingree,03360065, 13.2, 100.0, 14.6 to 1, 84.9, 100.0 +3.9899999999999998,3.99,a-exp-i1,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 74.0, 100.0, 11.9 to 1, 79.8, 85.1 +4.35,4.35,a-exp-i1,2017-18,Weymouth - Ralph Talbot,03360085, 18.0, 100.0, 13.8 to 1, 87.0, 100.0 +4.265,4.27,a-exp-i1,2017-18,Weymouth - Thomas V Nash,03360060, 13.6, 100.0, 14.9 to 1, 85.3, 100.0 +4.64,4.64,a-exp-i1,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 20.8, 100.0, 16.9 to 1, 92.8, 100.0 +4.16,4.16,a-exp-i1,2017-18,Weymouth - Wessagusset,03360110, 18.7, 100.0, 14.9 to 1, 83.2, 96.9 +4.165,4.17,a-exp-i1,2017-18,Weymouth - Weymouth High School,03360505, 136.7, 99.3, 13.9 to 1, 83.3, 88.9 +4.15,4.15,a-exp-i1,2017-18,Weymouth - William Seach,03360080, 16.8, 100.0, 18.9 to 1, 83.0, 91.5 +3.62,3.62,a-exp-i1,2017-18,Whately - Whately Elementary,03370005, 12.7, 100.0, 11.1 to 1, 72.4, 100.0 +4.29,4.29,a-exp-i1,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 28.2, 100.0, 13.9 to 1, 85.8, 92.9 +4.32,4.32,a-exp-i1,2017-18,Whitman-Hanson - Indian Head,07800035, 22.0, 100.0, 14.7 to 1, 86.4, 100.0 +5.0,5.0,a-exp-i1,2017-18,Whitman-Hanson - John H Duval,07800030, 27.1, 100.0, 16.4 to 1, 100.0, 100.0 +3.9799999999999995,3.98,a-exp-i1,2017-18,Whitman-Hanson - Louise A Conley,07800010, 34.3, 100.0, 16.4 to 1, 79.6, 94.2 +4.585,4.59,a-exp-i1,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 24.2, 100.0, 18.0 to 1, 91.7, 95.9 +4.035,4.04,a-exp-i1,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 72.6, 100.0, 16.1 to 1, 80.7, 84.5 +4.74,4.74,a-exp-i1,2017-18,Whitman-Hanson - Whitman Middle,07800310, 36.2, 100.0, 15.9 to 1, 94.8, 89.3 +4.404999999999999,4.4,a-exp-i1,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.9, 97.4, 11.0 to 1, 88.1, 82.4 +4.71,4.71,a-exp-i1,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 17.2, 100.0, 9.5 to 1, 94.2, 100.0 +4.125,4.13,a-exp-i1,2017-18,Williamstown - Williamstown Elementary,03410010, 38.8, 100.0, 11.8 to 1, 82.5, 100.0 +3.3950000000000005,3.4,a-exp-i1,2017-18,Wilmington - Boutwell,03420005, 12.5, 100.0, 12.9 to 1, 67.9, 100.0 +4.7700000000000005,4.77,a-exp-i1,2017-18,Wilmington - North Intermediate,03420060, 21.5, 100.0, 14.1 to 1, 95.4, 100.0 +4.42,4.42,a-exp-i1,2017-18,Wilmington - Shawsheen Elementary,03420025, 30.0, 100.0, 11.5 to 1, 88.4, 96.7 +4.205,4.21,a-exp-i1,2017-18,Wilmington - West Intermediate,03420080, 22.0, 100.0, 11.2 to 1, 84.1, 95.4 +4.595000000000001,4.6,a-exp-i1,2017-18,Wilmington - Wildwood,03420015, 12.4, 100.0, 15.7 to 1, 91.9, 100.0 +4.61,4.61,a-exp-i1,2017-18,Wilmington - Wilmington High,03420505, 71.8, 100.0, 12.0 to 1, 92.2, 95.0 +4.25,4.25,a-exp-i1,2017-18,Wilmington - Wilmington Middle School,03420330, 74.2, 100.0, 11.3 to 1, 85.0, 93.6 +4.84,4.84,a-exp-i1,2017-18,Wilmington - Woburn Street,03420020, 31.0, 100.0, 12.4 to 1, 96.8, 100.0 +4.695,4.7,a-exp-i1,2017-18,Winchendon - Memorial,03430040, 16.5, 100.0, 18.6 to 1, 93.9, 93.9 +3.8950000000000005,3.9,a-exp-i1,2017-18,Winchendon - Murdock Academy for Success,03430405, 1.5, 100.0, 19.5 to 1, 77.9, 100.0 +3.44,3.44,a-exp-i1,2017-18,Winchendon - Murdock High School,03430515, 25.4, 100.0, 12.0 to 1, 68.8, 90.6 +4.445,4.45,a-exp-i1,2017-18,Winchendon - Murdock Middle School,03430315, 20.3, 100.0, 13.5 to 1, 88.9, 88.9 +5.0,5.0,a-exp-i1,2017-18,Winchendon - Toy Town Elementary,03430050, 20.5, 100.0, 14.3 to 1, 100.0, 100.0 +5.0,5.0,a-exp-i1,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 26.3 to 1, 100.0, 100.0 +4.12,4.12,a-exp-i1,2017-18,Winchester - Ambrose Elementary,03440045, 36.6, 100.0, 11.5 to 1, 82.4, 97.3 +3.6149999999999998,3.62,a-exp-i1,2017-18,Winchester - Lincoln Elementary,03440005, 32.5, 100.0, 12.4 to 1, 72.3, 100.0 +4.17,4.17,a-exp-i1,2017-18,Winchester - Lynch Elementary,03440020, 47.6, 100.0, 11.3 to 1, 83.4, 97.9 +3.935,3.94,a-exp-i1,2017-18,Winchester - McCall Middle,03440305, 83.5, 100.0, 13.3 to 1, 78.7, 90.7 +4.275,4.28,a-exp-i1,2017-18,Winchester - Muraco Elementary,03440040, 34.4, 100.0, 11.1 to 1, 85.5, 100.0 +4.18,4.18,a-exp-i1,2017-18,Winchester - Vinson-Owen Elementary,03440025, 35.1, 100.0, 13.0 to 1, 83.6, 94.3 +4.515,4.52,a-exp-i1,2017-18,Winchester - Winchester High School,03440505, 90.6, 100.0, 14.9 to 1, 90.3, 95.2 +3.72,3.72,a-exp-i1,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 23.5, 100.0, 19.4 to 1, 74.4, 95.7 +3.22,3.22,a-exp-i1,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 29.5, 100.0, 16.0 to 1, 64.4, 93.2 +3.87,3.87,a-exp-i1,2017-18,Winthrop - Winthrop High School,03460505, 44.2, 97.7, 13.9 to 1, 77.4, 61.5 +3.7350000000000003,3.74,a-exp-i1,2017-18,Winthrop - Winthrop Middle School,03460305, 34.5, 100.0, 14.0 to 1, 74.7, 76.8 +5.0,5.0,a-exp-i1,2017-18,Woburn - Clyde Reeves,03470040, 29.0, 100.0, 14.8 to 1, 100.0, 100.0 +4.625,4.63,a-exp-i1,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 53.5, 100.0, 9.8 to 1, 92.5, 94.4 +4.225,4.23,a-exp-i1,2017-18,Woburn - Daniel P Hurld,03470020, 14.2, 100.0, 15.2 to 1, 84.5, 100.0 +4.1899999999999995,4.19,a-exp-i1,2017-18,Woburn - Goodyear Elementary School,03470005, 24.8, 96.0, 12.4 to 1, 83.8, 100.0 +4.279999999999999,4.28,a-exp-i1,2017-18,Woburn - John F Kennedy Middle School,03470405, 48.5, 100.0, 10.0 to 1, 85.6, 85.6 +4.9350000000000005,4.94,a-exp-i1,2017-18,Woburn - Linscott-Rumford,03470025, 16.2, 100.0, 12.8 to 1, 98.7, 100.0 +4.5200000000000005,4.52,a-exp-i1,2017-18,Woburn - Malcolm White,03470055, 23.0, 100.0, 14.1 to 1, 90.4, 100.0 +4.3549999999999995,4.35,a-exp-i1,2017-18,Woburn - Mary D Altavesta,03470065, 17.1, 100.0, 14.5 to 1, 87.1, 100.0 +4.18,4.18,a-exp-i1,2017-18,Woburn - Shamrock,03470043, 30.5, 100.0, 11.9 to 1, 83.6, 96.7 +4.64,4.64,a-exp-i1,2017-18,Woburn - Woburn High,03470505, 104.6, 100.0, 12.6 to 1, 92.8, 94.3 +4.925,4.93,a-exp-i1,2017-18,Woburn - Wyman,03470060, 13.3, 100.0, 13.7 to 1, 98.5, 100.0 +3.6799999999999997,3.68,a-exp-i1,2017-18,Worcester - Belmont Street Community,03480020, 31.5, 100.0, 18.4 to 1, 73.6, 100.0 +4.045,4.05,a-exp-i1,2017-18,Worcester - Burncoat Middle School,03480405, 50.4, 98.0, 12.4 to 1, 80.9, 84.6 +4.470000000000001,4.47,a-exp-i1,2017-18,Worcester - Burncoat Senior High,03480503, 79.6, 97.5, 13.0 to 1, 89.4, 92.2 +3.8,3.8,a-exp-i1,2017-18,Worcester - Burncoat Street,03480035, 18.9, 100.0, 15.5 to 1, 76.0, 94.2 +3.4799999999999995,3.48,a-exp-i1,2017-18,Worcester - Canterbury,03480045, 25.2, 100.0, 14.9 to 1, 69.6, 91.0 +4.235,4.24,a-exp-i1,2017-18,Worcester - Chandler Elementary Community,03480050, 26.6, 92.5, 18.8 to 1, 84.7, 96.2 +3.905,3.91,a-exp-i1,2017-18,Worcester - Chandler Magnet,03480052, 38.3, 100.0, 11.3 to 1, 78.1, 91.7 +4.785,4.79,a-exp-i1,2017-18,Worcester - City View,03480053, 31.6, 100.0, 15.0 to 1, 95.7, 96.9 +4.38,4.38,a-exp-i1,2017-18,Worcester - Claremont Academy,03480350, 40.2, 97.5, 13.7 to 1, 87.6, 85.1 +4.17,4.17,a-exp-i1,2017-18,Worcester - Clark St Community,03480055, 17.6, 100.0, 14.8 to 1, 83.4, 99.2 +4.59,4.59,a-exp-i1,2017-18,Worcester - Columbus Park,03480060, 26.8, 100.0, 18.9 to 1, 91.8, 97.0 +4.36,4.36,a-exp-i1,2017-18,Worcester - Doherty Memorial High,03480512, 101.4, 97.0, 15.4 to 1, 87.2, 89.1 +3.4,3.4,a-exp-i1,2017-18,Worcester - Elm Park Community,03480095, 28.2, 96.7, 16.9 to 1, 68.0, 100.0 +4.7,4.7,a-exp-i1,2017-18,Worcester - Flagg Street,03480090, 22.5, 100.0, 18.1 to 1, 94.0, 98.7 +4.635,4.64,a-exp-i1,2017-18,Worcester - Forest Grove Middle,03480415, 68.8, 100.0, 14.2 to 1, 92.7, 92.4 +4.975,4.98,a-exp-i1,2017-18,Worcester - Francis J McGrath Elementary,03480177, 15.4, 100.0, 15.4 to 1, 99.5, 100.0 +4.095000000000001,4.1,a-exp-i1,2017-18,Worcester - Gates Lane,03480110, 39.9, 97.5, 14.3 to 1, 81.9, 87.4 +3.2950000000000004,3.3,a-exp-i1,2017-18,Worcester - Goddard School/Science Technical,03480100, 32.9, 100.0, 14.1 to 1, 65.9, 93.9 +3.53,3.53,a-exp-i1,2017-18,Worcester - Grafton Street,03480115, 23.0, 95.7, 16.8 to 1, 70.6, 100.0 +2.25,2.25,a-exp-i1,2017-18,Worcester - Head Start,03480002, 31.2, 26.1, 17.0 to 1, 45.0, 100.0 +4.6850000000000005,4.69,a-exp-i1,2017-18,Worcester - Heard Street,03480136, 17.3, 100.0, 17.1 to 1, 93.7, 100.0 +4.779999999999999,4.78,a-exp-i1,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 26.3, 100.0, 15.3 to 1, 95.6, 95.8 +5.0,5.0,a-exp-i1,2017-18,Worcester - Lake View,03480145, 16.5, 100.0, 17.3 to 1, 100.0, 100.0 +3.085,3.09,a-exp-i1,2017-18,Worcester - Lincoln Street,03480160, 18.3, 100.0, 14.8 to 1, 61.7, 100.0 +4.705,4.71,a-exp-i1,2017-18,Worcester - May Street,03480175, 18.4, 100.0, 18.4 to 1, 94.1, 100.0 +4.64,4.64,a-exp-i1,2017-18,Worcester - Midland Street,03480185, 16.3, 100.0, 14.1 to 1, 92.8, 99.4 +4.515,4.52,a-exp-i1,2017-18,Worcester - Nelson Place,03480200, 33.8, 100.0, 15.4 to 1, 90.3, 99.7 +3.925,3.93,a-exp-i1,2017-18,Worcester - Norrback Avenue,03480202, 37.0, 100.0, 15.2 to 1, 78.5, 91.9 +3.8200000000000003,3.82,a-exp-i1,2017-18,Worcester - North High,03480515, 97.1, 95.9, 13.3 to 1, 76.4, 80.4 +3.62,3.62,a-exp-i1,2017-18,Worcester - Quinsigamond,03480210, 40.8, 100.0, 18.3 to 1, 72.4, 92.1 +3.7299999999999995,3.73,a-exp-i1,2017-18,Worcester - Rice Square,03480215, 26.3, 100.0, 16.2 to 1, 74.6, 95.4 +4.154999999999999,4.15,a-exp-i1,2017-18,Worcester - Roosevelt,03480220, 41.4, 97.8, 16.2 to 1, 83.1, 95.1 +3.97,3.97,a-exp-i1,2017-18,Worcester - South High Community,03480520, 96.6, 93.8, 14.6 to 1, 79.4, 92.0 +3.8299999999999996,3.83,a-exp-i1,2017-18,Worcester - Sullivan Middle,03480423, 72.7, 98.6, 11.9 to 1, 76.6, 87.6 +3.69,3.69,a-exp-i1,2017-18,Worcester - Tatnuck,03480230, 23.2, 100.0, 16.9 to 1, 73.8, 100.0 +4.01,4.01,a-exp-i1,2017-18,Worcester - Thorndyke Road,03480235, 20.4, 100.0, 18.7 to 1, 80.2, 99.0 +4.4,4.4,a-exp-i1,2017-18,Worcester - Union Hill School,03480240, 25.7, 96.1, 17.7 to 1, 88.0, 88.3 +4.45,4.45,a-exp-i1,2017-18,Worcester - University Pk Campus School,03480285, 18.2, 100.0, 13.1 to 1, 89.0, 94.5 +4.05,4.05,a-exp-i1,2017-18,Worcester - Vernon Hill School,03480280, 31.6, 100.0, 17.0 to 1, 81.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2017-18,Worcester - Wawecus Road School,03480026, 11.8, 100.0, 12.9 to 1, 78.9, 92.1 +4.3950000000000005,4.4,a-exp-i1,2017-18,Worcester - West Tatnuck,03480260, 21.4, 100.0, 17.3 to 1, 87.9, 95.3 +3.0949999999999998,3.1,a-exp-i1,2017-18,Worcester - Woodland Academy,03480030, 31.8, 100.0, 19.0 to 1, 61.9, 93.5 +4.32,4.32,a-exp-i1,2017-18,Worcester - Worcester Arts Magnet School,03480225, 23.4, 100.0, 17.3 to 1, 86.4, 99.6 +3.75,3.75,a-exp-i1,2017-18,Worcester - Worcester East Middle,03480420, 64.0, 100.0, 12.8 to 1, 75.0, 78.1 +4.13,4.13,a-exp-i1,2017-18,Worcester - Worcester Technical High,03480605, 138.3, 97.8, 10.0 to 1, 82.6, 84.8 +2.575,2.58,a-exp-i1,2017-18,Worthington - R. H. Conwell,03490010, 6.6, 93.9, 9.4 to 1, 51.5, 97.0 +4.4399999999999995,4.44,a-exp-i1,2017-18,Wrentham - Charles E Roderick,03500010, 33.4, 100.0, 13.9 to 1, 88.8, 100.0 +4.665,4.67,a-exp-i1,2017-18,Wrentham - Delaney,03500003, 42.0, 100.0, 13.8 to 1, 93.3, 100.0 +NA,NA,a-exp-i3,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 109.0, 97.8, 13.1 to 1, 81.1, 83.7 +NA,NA,a-exp-i3,2017-18,Abington - Abington Early Education Program,00010001, 3.0, 100.0, 28.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Abington - Abington High,00010505, 38.7, 100.0, 13.4 to 1, 82.8, 87.1 +NA,NA,a-exp-i3,2017-18,Abington - Abington Middle School,00010405, 40.8, 100.0, 16.8 to 1, 71.3, 92.9 +NA,NA,a-exp-i3,2017-18,Abington - Beaver Brook Elementary,00010020, 22.7, 100.0, 18.7 to 1, 86.8, 100.0 +NA,NA,a-exp-i3,2017-18,Abington - Woodsdale Elementary School,00010015, 18.4, 100.0, 17.4 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 48.1, 70.5, 10.9 to 1, 39.7, 79.7 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.8, 100.0, 14.8 to 1, 88.9, 95.7 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 30.2, 100.0, 14.8 to 1, 83.4, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 26.6, 100.0, 16.1 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 7.0, 100.0, 15.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Luther Conant School,06000030, 29.2, 100.0, 15.1 to 1, 85.6, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 30.2, 100.0, 16.1 to 1, 78.1, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Merriam School,06000010, 31.6, 100.0, 15.8 to 1, 85.4, 93.7 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 26.6, 100.0, 15.1 to 1, 96.2, 100.0 +NA,NA,a-exp-i3,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 66.6, 100.0, 14.5 to 1, 93.1, 97.0 +NA,NA,a-exp-i3,2017-18,Acushnet - Acushnet Elementary School,00030025, 36.5, 100.0, 15.1 to 1, 87.0, 100.0 +NA,NA,a-exp-i3,2017-18,Acushnet - Albert F Ford Middle School,00030305, 29.0, 100.0, 14.3 to 1, 96.5, 96.5 +NA,NA,a-exp-i3,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 22.0, 100.0, 18.3 to 1, 94.5, 100.0 +NA,NA,a-exp-i3,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 30.1, 96.7, 13.9 to 1, 76.9, 90.4 +NA,NA,a-exp-i3,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 28.2, 100.0, 14.2 to 1, 77.3, 96.4 +NA,NA,a-exp-i3,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 82.0, 86.0, 12.1 to 1, 62.7, 70.2 +NA,NA,a-exp-i3,2017-18,Agawam - Agawam Early Childhood Center,00050003, 9.5, 100.0, 17.2 to 1, 89.5, 89.5 +NA,NA,a-exp-i3,2017-18,Agawam - Agawam High,00050505, 97.0, 100.0, 12.1 to 1, 90.7, 95.9 +NA,NA,a-exp-i3,2017-18,Agawam - Agawam Junior High,00050405, 60.7, 100.0, 9.4 to 1, 91.9, 95.2 +NA,NA,a-exp-i3,2017-18,Agawam - Benjamin J Phelps,00050020, 29.8, 100.0, 13.0 to 1, 91.6, 95.0 +NA,NA,a-exp-i3,2017-18,Agawam - Clifford M Granger,00050010, 20.3, 100.0, 13.8 to 1, 93.6, 100.0 +NA,NA,a-exp-i3,2017-18,Agawam - James Clark School,00050030, 28.1, 100.0, 12.1 to 1, 94.3, 96.4 +NA,NA,a-exp-i3,2017-18,Agawam - Roberta G. Doering School,00050303, 47.1, 100.0, 12.1 to 1, 93.6, 96.8 +NA,NA,a-exp-i3,2017-18,Agawam - Robinson Park,00050025, 30.8, 100.0, 12.1 to 1, 91.9, 98.4 +NA,NA,a-exp-i3,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 35.0, 62.9, 11.8 to 1, 54.3, 97.1 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury Elementary,00070005, 28.4, 100.0, 13.9 to 1, 90.1, 100.0 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury High,00070505, 20.6, 100.0, 28.7 to 1, 89.5, 94.3 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury Innovation High School,00070515, 3.7, 100.0, 10.7 to 1, 77.8, 51.1 +NA,NA,a-exp-i3,2017-18,Amesbury - Amesbury Middle,00070013, 57.0, 100.0, 11.9 to 1, 82.3, 91.2 +NA,NA,a-exp-i3,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 33.4, 100.0, 13.3 to 1, 94.6, 97.0 +NA,NA,a-exp-i3,2017-18,Amherst - Crocker Farm Elementary,00080009, 40.9, 100.0, 10.0 to 1, 92.0, 99.4 +NA,NA,a-exp-i3,2017-18,Amherst - Fort River Elementary,00080020, 38.6, 100.0, 8.7 to 1, 70.8, 91.6 +NA,NA,a-exp-i3,2017-18,Amherst - Wildwood Elementary,00080050, 42.6, 95.3, 9.5 to 1, 90.0, 99.4 +NA,NA,a-exp-i3,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 66.4, 98.5, 14.0 to 1, 82.2, 96.8 +NA,NA,a-exp-i3,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 42.6, 99.1, 9.6 to 1, 87.7, 93.0 +NA,NA,a-exp-i3,2017-18,Andover - Andover High,00090505, 124.6, 100.0, 14.3 to 1, 89.3, 93.7 +NA,NA,a-exp-i3,2017-18,Andover - Andover West Middle,00090310, 46.5, 100.0, 11.3 to 1, 85.7, 95.7 +NA,NA,a-exp-i3,2017-18,Andover - Bancroft Elementary,00090003, 46.0, 100.0, 12.6 to 1, 92.4, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Doherty Middle,00090305, 46.1, 100.0, 12.1 to 1, 82.1, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Henry C Sanborn Elementary,00090010, 31.9, 100.0, 12.2 to 1, 91.2, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - High Plain Elementary,00090004, 43.4, 100.0, 11.5 to 1, 91.6, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Shawsheen School,00090005, 7.0, 100.0, 12.1 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - South Elementary,00090020, 38.1, 100.0, 12.9 to 1, 93.4, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - West Elementary,00090025, 47.1, 100.0, 12.9 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Andover - Wood Hill Middle School,00090350, 39.1, 100.0, 10.5 to 1, 85.3, 95.3 +NA,NA,a-exp-i3,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 37.2, 67.2, 10.7 to 1, 24.7, 81.2 +NA,NA,a-exp-i3,2017-18,Arlington - Arlington High,00100505, 99.8, 100.0, 13.3 to 1, 81.6, 87.3 +NA,NA,a-exp-i3,2017-18,Arlington - Brackett,00100010, 30.3, 100.0, 16.1 to 1, 84.6, 100.0 +NA,NA,a-exp-i3,2017-18,Arlington - Cyrus E Dallin,00100025, 33.3, 100.0, 14.4 to 1, 79.5, 96.0 +NA,NA,a-exp-i3,2017-18,Arlington - Hardy,00100030, 31.8, 96.9, 14.4 to 1, 71.6, 96.7 +NA,NA,a-exp-i3,2017-18,Arlington - John A Bishop,00100005, 23.5, 100.0, 17.9 to 1, 92.7, 95.7 +NA,NA,a-exp-i3,2017-18,Arlington - M Norcross Stratton,00100055, 28.1, 100.0, 14.3 to 1, 81.9, 100.0 +NA,NA,a-exp-i3,2017-18,Arlington - Menotomy Preschool,00100038, 6.0, 100.0, 14.2 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,Arlington - Ottoson Middle,00100410, 94.2, 98.9, 13.4 to 1, 83.4, 88.1 +NA,NA,a-exp-i3,2017-18,Arlington - Peirce,00100045, 17.6, 100.0, 17.3 to 1, 91.2, 88.4 +NA,NA,a-exp-i3,2017-18,Arlington - Thompson,00100050, 35.1, 100.0, 13.9 to 1, 64.8, 96.7 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 38.8, 100.0, 14.3 to 1, 84.5, 92.3 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 10.7, 100.0, 15.2 to 1, 84.5, 96.9 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 50.5, 100.0, 14.2 to 1, 84.4, 94.7 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 37.9, 100.0, 15.1 to 1, 82.6, 94.7 +NA,NA,a-exp-i3,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 22.1, 100.0, 17.1 to 1, 78.0, 94.7 +NA,NA,a-exp-i3,2017-18,Ashland - Ashland High,00140505, 56.0, 100.0, 13.7 to 1, 81.4, 91.4 +NA,NA,a-exp-i3,2017-18,Ashland - Ashland Middle,00140405, 45.2, 100.0, 13.3 to 1, 92.7, 95.0 +NA,NA,a-exp-i3,2017-18,Ashland - David Mindess,00140015, 46.3, 100.0, 14.0 to 1, 84.9, 97.8 +NA,NA,a-exp-i3,2017-18,Ashland - Henry E Warren Elementary,00140010, 44.4, 100.0, 13.8 to 1, 80.2, 96.4 +NA,NA,a-exp-i3,2017-18,Ashland - William Pittaway Elementary,00140005, 8.0, 100.0, 15.9 to 1, 50.0, 100.0 +NA,NA,a-exp-i3,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 110.0, 95.5, 10.1 to 1, 84.1, 86.4 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 37.3, 100.0, 16.2 to 1, 70.5, 86.6 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Athol High,06150505, 30.3, 100.0, 12.1 to 1, 83.5, 80.2 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 30.1, 100.0, 13.0 to 1, 83.4, 86.7 +NA,NA,a-exp-i3,2017-18,Athol-Royalston - Royalston Community School,06150050, 11.8, 100.0, 11.8 to 1, 83.0, 100.0 +NA,NA,a-exp-i3,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 88.6, 82.5, 13.7 to 1, 48.1, 75.2 +NA,NA,a-exp-i3,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 30.5, 100.0, 12.6 to 1, 96.8, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Attleboro Community Academy,00160515, 3.4, 94.2, 17.7 to 1, 82.6, 84.2 +NA,NA,a-exp-i3,2017-18,Attleboro - Attleboro High,00160505, 107.8, 98.1, 15.8 to 1, 87.0, 89.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 33.8, 100.0, 17.2 to 1, 91.1, 97.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Early Learning Center,00160008, 8.4, 100.0, 21.9 to 1, 76.2, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 27.7, 100.0, 16.6 to 1, 65.2, 89.1 +NA,NA,a-exp-i3,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 28.0, 100.0, 17.2 to 1, 92.8, 96.4 +NA,NA,a-exp-i3,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 34.5, 100.0, 12.2 to 1, 93.1, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 38.0, 100.0, 17.5 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 28.5, 100.0, 15.2 to 1, 96.5, 100.0 +NA,NA,a-exp-i3,2017-18,Attleboro - Wamsutta Middle School,00160320, 33.2, 100.0, 17.4 to 1, 94.0, 97.0 +NA,NA,a-exp-i3,2017-18,Auburn - Auburn Middle,00170305, 45.3, 100.0, 13.9 to 1, 90.1, 97.8 +NA,NA,a-exp-i3,2017-18,Auburn - Auburn Senior High,00170505, 61.6, 100.0, 13.0 to 1, 91.9, 90.3 +NA,NA,a-exp-i3,2017-18,Auburn - Bryn Mawr,00170010, 17.8, 100.0, 16.8 to 1, 77.0, 93.9 +NA,NA,a-exp-i3,2017-18,Auburn - Pakachoag School,00170025, 17.9, 100.0, 16.8 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,Auburn - Swanson Road Intermediate School,00170030, 36.3, 100.0, 15.9 to 1, 91.9, 97.4 +NA,NA,a-exp-i3,2017-18,Avon - Avon Middle High School,00180510, 35.1, 100.0, 8.9 to 1, 75.2, 82.9 +NA,NA,a-exp-i3,2017-18,Avon - Ralph D Butler,00180010, 32.3, 100.0, 12.8 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 36.3, 99.6, 11.3 to 1, 77.2, 77.6 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 31.5, 100.0, 11.7 to 1, 90.5, 87.3 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 29.8, 97.3, 13.4 to 1, 78.8, 93.9 +NA,NA,a-exp-i3,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 39.0, 100.0, 13.5 to 1, 76.9, 92.3 +NA,NA,a-exp-i3,2017-18,Barnstable - Barnstable High,00200505, 144.9, 99.3, 12.8 to 1, 90.0, 92.4 +NA,NA,a-exp-i3,2017-18,Barnstable - Barnstable Intermediate School,00200315, 58.4, 100.0, 12.6 to 1, 82.0, 91.4 +NA,NA,a-exp-i3,2017-18,Barnstable - Barnstable United Elementary School,00200050, 59.6, 100.0, 14.4 to 1, 75.5, 95.6 +NA,NA,a-exp-i3,2017-18,Barnstable - Centerville Elementary,00200010, 21.3, 100.0, 12.2 to 1, 86.9, 96.2 +NA,NA,a-exp-i3,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 6.0, 100.0, 22.5 to 1, 50.0, 83.3 +NA,NA,a-exp-i3,2017-18,Barnstable - Hyannis West Elementary,00200025, 31.6, 100.0, 10.6 to 1, 78.5, 88.0 +NA,NA,a-exp-i3,2017-18,Barnstable - West Barnstable Elementary,00200005, 16.4, 100.0, 15.8 to 1, 80.5, 92.7 +NA,NA,a-exp-i3,2017-18,Barnstable - West Villages Elementary School,00200045, 29.0, 96.6, 14.9 to 1, 86.2, 100.0 +NA,NA,a-exp-i3,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 24.0, 100.0, 12.8 to 1, 79.2, 100.0 +NA,NA,a-exp-i3,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 51.2, 64.5, 8.7 to 1, 25.4, 76.6 +NA,NA,a-exp-i3,2017-18,Bedford - Bedford High,00230505, 82.4, 97.5, 10.4 to 1, 86.4, 94.3 +NA,NA,a-exp-i3,2017-18,Bedford - John Glenn Middle,00230305, 56.0, 100.0, 10.4 to 1, 87.5, 89.3 +NA,NA,a-exp-i3,2017-18,Bedford - Lt Elezer Davis,00230010, 44.0, 100.0, 13.6 to 1, 93.2, 100.0 +NA,NA,a-exp-i3,2017-18,Bedford - Lt Job Lane School,00230012, 47.4, 100.0, 12.8 to 1, 74.7, 91.6 +NA,NA,a-exp-i3,2017-18,Belchertown - Belchertown High,00240505, 47.0, 100.0, 15.1 to 1, 95.4, 97.9 +NA,NA,a-exp-i3,2017-18,Belchertown - Chestnut Hill Community School,00240006, 37.2, 100.0, 14.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Belchertown - Cold Spring,00240005, 12.6, 100.0, 15.3 to 1, 84.1, 100.0 +NA,NA,a-exp-i3,2017-18,Belchertown - Jabish Middle School,00240025, 31.5, 100.0, 12.6 to 1, 87.1, 93.6 +NA,NA,a-exp-i3,2017-18,Belchertown - Swift River Elementary,00240018, 35.2, 100.0, 13.3 to 1, 97.2, 100.0 +NA,NA,a-exp-i3,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 5.5, 100.0, 20.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Bellingham - Bellingham High School,00250505, 55.4, 100.0, 13.8 to 1, 90.9, 92.8 +NA,NA,a-exp-i3,2017-18,Bellingham - Bellingham Memorial School,00250315, 51.8, 100.0, 13.9 to 1, 76.4, 90.6 +NA,NA,a-exp-i3,2017-18,Bellingham - Keough Memorial Academy,00250510, 7.8, 87.2, 4.3 to 1, 63.5, 87.2 +NA,NA,a-exp-i3,2017-18,Bellingham - South Elementary,00250020, 24.8, 100.0, 13.5 to 1, 84.1, 100.0 +NA,NA,a-exp-i3,2017-18,Bellingham - Stall Brook,00250025, 25.9, 100.0, 12.4 to 1, 84.6, 96.1 +NA,NA,a-exp-i3,2017-18,Belmont - Belmont High,00260505, 70.0, 100.0, 18.5 to 1, 82.2, 93.7 +NA,NA,a-exp-i3,2017-18,Belmont - Daniel Butler,00260015, 24.6, 100.0, 15.8 to 1, 91.9, 95.9 +NA,NA,a-exp-i3,2017-18,Belmont - Mary Lee Burbank,00260010, 21.9, 100.0, 17.1 to 1, 81.7, 100.0 +NA,NA,a-exp-i3,2017-18,Belmont - Roger E Wellington,00260035, 39.2, 100.0, 15.9 to 1, 81.9, 94.9 +NA,NA,a-exp-i3,2017-18,Belmont - Winn Brook,00260005, 28.9, 100.0, 17.0 to 1, 76.4, 93.1 +NA,NA,a-exp-i3,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 88.6, 100.0, 16.0 to 1, 84.3, 95.5 +NA,NA,a-exp-i3,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 18.0, 94.4, 19.7 to 1, 77.8, 95.1 +NA,NA,a-exp-i3,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 33.0, 81.8, 13.4 to 1, 81.8, 87.9 +NA,NA,a-exp-i3,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 24.4, 95.5, 12.1 to 1, 29.9, 71.3 +NA,NA,a-exp-i3,2017-18,Berkley - Berkley Community School,00270010, 33.8, 100.0, 15.7 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Berkley - Berkley Middle School,00270305, 24.0, 100.0, 16.3 to 1, 95.8, 87.5 +NA,NA,a-exp-i3,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 34.0, 63.7, 10.4 to 1, 49.7, 87.5 +NA,NA,a-exp-i3,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 42.8, 100.0, 12.2 to 1, 89.5, 94.2 +NA,NA,a-exp-i3,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 32.3, 100.0, 11.6 to 1, 84.7, 90.7 +NA,NA,a-exp-i3,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 36.2, 100.0, 9.6 to 1, 80.5, 91.7 +NA,NA,a-exp-i3,2017-18,Berlin - Berlin Memorial,00280005, 18.0, 100.0, 10.2 to 1, 81.3, 93.5 +NA,NA,a-exp-i3,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 45.5, 99.1, 13.0 to 1, 92.9, 91.6 +NA,NA,a-exp-i3,2017-18,Beverly - Ayers/Ryal Side School,00300055, 32.9, 100.0, 15.2 to 1, 87.2, 97.0 +NA,NA,a-exp-i3,2017-18,Beverly - Beverly High,00300505, 90.6, 98.0, 13.7 to 1, 89.4, 89.4 +NA,NA,a-exp-i3,2017-18,Beverly - Briscoe Middle,00300305, 73.4, 100.0, 13.6 to 1, 91.1, 89.1 +NA,NA,a-exp-i3,2017-18,Beverly - Centerville Elementary,00300010, 27.3, 100.0, 13.3 to 1, 86.4, 100.0 +NA,NA,a-exp-i3,2017-18,Beverly - Cove Elementary,00300015, 34.1, 100.0, 14.4 to 1, 77.4, 94.1 +NA,NA,a-exp-i3,2017-18,Beverly - Hannah Elementary,00300033, 28.6, 100.0, 13.7 to 1, 85.3, 100.0 +NA,NA,a-exp-i3,2017-18,Beverly - McKeown School,00300002, 9.0, 100.0, 12.7 to 1, 88.9, 100.0 +NA,NA,a-exp-i3,2017-18,Beverly - North Beverly Elementary,00300040, 29.8, 100.0, 13.4 to 1, 85.9, 96.6 +NA,NA,a-exp-i3,2017-18,Billerica - Billerica Memorial High School,00310505, 101.6, 98.0, 13.2 to 1, 86.8, 91.9 +NA,NA,a-exp-i3,2017-18,Billerica - Eugene C Vining,00310030, 17.7, 100.0, 11.0 to 1, 80.2, 87.0 +NA,NA,a-exp-i3,2017-18,Billerica - Frederick J Dutile,00310007, 22.7, 100.0, 12.0 to 1, 88.7, 100.0 +NA,NA,a-exp-i3,2017-18,Billerica - Hajjar Elementary,00310026, 32.3, 100.0, 14.3 to 1, 88.1, 90.6 +NA,NA,a-exp-i3,2017-18,Billerica - John F Kennedy,00310012, 22.7, 100.0, 13.8 to 1, 94.8, 96.7 +NA,NA,a-exp-i3,2017-18,Billerica - Locke Middle,00310310, 45.9, 100.0, 11.0 to 1, 90.7, 86.9 +NA,NA,a-exp-i3,2017-18,Billerica - Marshall Middle School,00310305, 56.1, 100.0, 11.6 to 1, 94.2, 91.1 +NA,NA,a-exp-i3,2017-18,Billerica - Parker,00310015, 36.6, 97.3, 13.7 to 1, 82.4, 96.1 +NA,NA,a-exp-i3,2017-18,Billerica - Thomas Ditson,00310005, 39.9, 100.0, 13.4 to 1, 86.2, 93.7 +NA,NA,a-exp-i3,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 98.4, 96.6, 12.4 to 1, 84.5, 77.3 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - A F Maloney,06220015, 20.6, 100.0, 14.5 to 1, 88.6, 97.1 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.0, 100.0, 10.7 to 1, 81.6, 84.2 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 33.1, 100.0, 12.9 to 1, 84.9, 97.0 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 22.6, 100.0, 13.1 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Blackstone-Millville - Millville Elementary,06220010, 20.0, 100.0, 14.3 to 1, 83.5, 100.0 +NA,NA,a-exp-i3,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 82.0, 95.1, 10.4 to 1, 80.5, 87.8 +NA,NA,a-exp-i3,2017-18,Boston - Another Course To College,00350541, 22.1, 83.5, 10.1 to 1, 70.6, 88.7 +NA,NA,a-exp-i3,2017-18,Boston - Baldwin Early Learning Center,00350003, 14.0, 100.0, 12.4 to 1, 92.9, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Beethoven,00350021, 22.4, 100.0, 14.5 to 1, 95.4, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Blackstone,00350390, 47.9, 98.0, 12.0 to 1, 67.0, 93.7 +NA,NA,a-exp-i3,2017-18,Boston - Boston Adult Academy,00350548, 21.4, 84.1, 7.2 to 1, 69.8, 90.5 +NA,NA,a-exp-i3,2017-18,Boston - Boston Arts Academy,00350546, 47.8, 85.4, 9.8 to 1, 72.6, 89.4 +NA,NA,a-exp-i3,2017-18,Boston - Boston Collaborative High School,00350755, 7.0, 100.0, 26.0 to 1, 70.8, 85.1 +NA,NA,a-exp-i3,2017-18,Boston - Boston Community Leadership Academy,00350558, 38.6, 88.9, 12.3 to 1, 85.3, 94.8 +NA,NA,a-exp-i3,2017-18,Boston - Boston International High School,00350507, 49.5, 95.7, 7.4 to 1, 78.2, 90.8 +NA,NA,a-exp-i3,2017-18,Boston - Boston Latin,00350560, 117.2, 100.0, 20.9 to 1, 92.8, 91.5 +NA,NA,a-exp-i3,2017-18,Boston - Boston Latin Academy,00350545, 87.9, 96.7, 20.3 to 1, 89.4, 96.5 +NA,NA,a-exp-i3,2017-18,Boston - Boston Teachers Union School,00350012, 22.2, 93.4, 12.9 to 1, 93.2, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Brighton High,00350505, 57.2, 93.0, 11.9 to 1, 59.5, 75.3 +NA,NA,a-exp-i3,2017-18,Boston - Carter Developmental Center,00350036, .7, 0.0, 43.9 to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Charles H Taylor,00350054, 41.1, 98.4, 12.8 to 1, 74.3, 90.3 +NA,NA,a-exp-i3,2017-18,Boston - Charles Sumner,00350052, 38.5, 100.0, 15.1 to 1, 92.2, 94.7 +NA,NA,a-exp-i3,2017-18,Boston - Charlestown High,00350515, 88.6, 90.0, 10.4 to 1, 74.8, 90.3 +NA,NA,a-exp-i3,2017-18,Boston - Clarence R Edwards Middle,00350430, 32.9, 100.0, 9.3 to 1, 90.9, 93.8 +NA,NA,a-exp-i3,2017-18,Boston - Community Academy,00350518, 12.1, 87.6, 6.5 to 1, 73.5, 76.0 +NA,NA,a-exp-i3,2017-18,Boston - Community Academy of Science and Health,00350581, 37.4, 92.4, 10.4 to 1, 94.7, 89.7 +NA,NA,a-exp-i3,2017-18,Boston - Curley K-8 School,00350020, 80.0, 98.7, 11.8 to 1, 82.3, 93.6 +NA,NA,a-exp-i3,2017-18,Boston - Curtis Guild,00350062, 25.3, 91.7, 11.6 to 1, 76.2, 98.0 +NA,NA,a-exp-i3,2017-18,Boston - Dante Alighieri Montessori School,00350066, 9.8, 100.0, 9.4 to 1, 86.6, 81.3 +NA,NA,a-exp-i3,2017-18,Boston - David A Ellis,00350072, 33.0, 100.0, 13.8 to 1, 78.5, 81.8 +NA,NA,a-exp-i3,2017-18,Boston - Dearborn,00350074, 35.7, 95.0, 9.9 to 1, 60.8, 76.2 +NA,NA,a-exp-i3,2017-18,Boston - Dennis C Haley,00350077, 45.3, 100.0, 9.9 to 1, 88.9, 97.8 +NA,NA,a-exp-i3,2017-18,Boston - Donald Mckay,00350080, 52.4, 100.0, 14.8 to 1, 78.9, 96.2 +NA,NA,a-exp-i3,2017-18,Boston - Dorchester Academy,00350651, 7.5, 73.3, 5.6 to 1, 66.1, 73.2 +NA,NA,a-exp-i3,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 16.1, 100.0, 11.7 to 1, 81.4, 87.3 +NA,NA,a-exp-i3,2017-18,Boston - Dr. William Henderson Lower,00350266, 22.5, 82.1, 9.4 to 1, 51.1, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Dr. William Henderson Upper,00350426, 69.2, 94.3, 8.8 to 1, 68.1, 78.3 +NA,NA,a-exp-i3,2017-18,Boston - ELC - West Zone,00350006, 11.3, 100.0, 10.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - East Boston Early Childhood Center,00350009, 13.7, 92.7, 14.4 to 1, 87.9, 92.7 +NA,NA,a-exp-i3,2017-18,Boston - East Boston High,00350530, 99.9, 95.6, 13.4 to 1, 80.6, 85.1 +NA,NA,a-exp-i3,2017-18,Boston - Edison K-8,00350375, 54.3, 94.3, 11.7 to 1, 77.6, 96.1 +NA,NA,a-exp-i3,2017-18,Boston - Edward Everett,00350088, 19.5, 100.0, 13.9 to 1, 79.7, 95.1 +NA,NA,a-exp-i3,2017-18,Boston - Eliot Elementary,00350096, 43.5, 100.0, 14.6 to 1, 74.9, 88.6 +NA,NA,a-exp-i3,2017-18,Boston - Ellis Mendell,00350100, 18.6, 100.0, 14.3 to 1, 76.8, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Excel High School,00350522, 42.9, 95.6, 11.4 to 1, 61.1, 81.6 +NA,NA,a-exp-i3,2017-18,Boston - Fenway High School,00350540, 31.3, 88.5, 11.6 to 1, 82.7, 95.3 +NA,NA,a-exp-i3,2017-18,Boston - Franklin D Roosevelt,00350116, 34.2, 100.0, 13.3 to 1, 100.0, 97.1 +NA,NA,a-exp-i3,2017-18,Boston - Gardner Pilot Academy,00350326, 34.6, 97.4, 11.6 to 1, 84.7, 94.2 +NA,NA,a-exp-i3,2017-18,Boston - George H Conley,00350122, 18.5, 100.0, 11.5 to 1, 94.3, 96.8 +NA,NA,a-exp-i3,2017-18,Boston - Greater Egleston Community High School,00350543, 13.6, 89.0, 7.7 to 1, 66.2, 77.2 +NA,NA,a-exp-i3,2017-18,Boston - Harvard-Kent,00350200, 42.0, 98.8, 11.3 to 1, 89.3, 97.6 +NA,NA,a-exp-i3,2017-18,Boston - Haynes Early Education Center,00350010, 17.5, 77.9, 12.1 to 1, 60.6, 94.1 +NA,NA,a-exp-i3,2017-18,Boston - Henry Grew,00350135, 15.4, 100.0, 16.5 to 1, 77.6, 90.9 +NA,NA,a-exp-i3,2017-18,Boston - Higginson,00350015, 13.8, 92.6, 12.4 to 1, 72.8, 80.4 +NA,NA,a-exp-i3,2017-18,Boston - Higginson/Lewis K-8,00350377, 29.0, 96.5, 10.6 to 1, 75.9, 86.2 +NA,NA,a-exp-i3,2017-18,Boston - Horace Mann School for the Deaf,00350750, 35.0, 95.7, 2.4 to 1, 87.2, 97.2 +NA,NA,a-exp-i3,2017-18,Boston - Hugh Roe O'Donnell,00350141, 18.5, 100.0, 13.4 to 1, 89.1, 86.6 +NA,NA,a-exp-i3,2017-18,Boston - Jackson Mann,00350013, 57.2, 98.3, 11.5 to 1, 80.7, 91.5 +NA,NA,a-exp-i3,2017-18,Boston - James Condon Elementary,00350146, 61.0, 100.0, 14.8 to 1, 90.1, 93.3 +NA,NA,a-exp-i3,2017-18,Boston - James J Chittick,00350154, 24.1, 100.0, 12.7 to 1, 95.8, 87.5 +NA,NA,a-exp-i3,2017-18,Boston - James Otis,00350156, 29.5, 100.0, 13.7 to 1, 89.8, 93.2 +NA,NA,a-exp-i3,2017-18,Boston - James P Timilty Middle,00350485, 29.7, 93.3, 11.2 to 1, 79.9, 86.7 +NA,NA,a-exp-i3,2017-18,Boston - James W Hennigan,00350153, 47.5, 97.9, 12.2 to 1, 91.5, 97.9 +NA,NA,a-exp-i3,2017-18,Boston - Jeremiah E Burke High,00350525, 31.9, 88.4, 14.8 to 1, 69.7, 75.7 +NA,NA,a-exp-i3,2017-18,Boston - John D Philbrick,00350172, 9.7, 89.3, 16.7 to 1, 63.2, 89.5 +NA,NA,a-exp-i3,2017-18,Boston - John F Kennedy,00350166, 26.7, 100.0, 14.7 to 1, 73.9, 88.6 +NA,NA,a-exp-i3,2017-18,Boston - John W McCormack,00350179, 35.4, 95.3, 10.5 to 1, 81.1, 82.9 +NA,NA,a-exp-i3,2017-18,Boston - John Winthrop,00350180, 23.9, 100.0, 13.7 to 1, 89.3, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Joseph J Hurley,00350182, 24.0, 100.0, 15.0 to 1, 91.6, 87.5 +NA,NA,a-exp-i3,2017-18,Boston - Joseph Lee,00350183, 53.3, 98.8, 12.4 to 1, 84.1, 93.9 +NA,NA,a-exp-i3,2017-18,Boston - Joseph P Manning,00350184, 12.9, 95.3, 11.8 to 1, 87.2, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Joseph P Tynan,00350181, 25.1, 100.0, 9.3 to 1, 84.1, 83.8 +NA,NA,a-exp-i3,2017-18,Boston - Josiah Quincy,00350286, 59.0, 96.6, 14.1 to 1, 78.0, 98.3 +NA,NA,a-exp-i3,2017-18,Boston - Joyce Kilmer,00350190, 29.9, 100.0, 15.6 to 1, 96.7, 96.7 +NA,NA,a-exp-i3,2017-18,Boston - King K-8,00350376, 35.6, 94.4, 13.7 to 1, 83.2, 80.5 +NA,NA,a-exp-i3,2017-18,Boston - Lee Academy,00350001, 17.9, 97.2, 12.5 to 1, 70.5, 89.0 +NA,NA,a-exp-i3,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 48.0, 95.9, 10.3 to 1, 70.8, 89.4 +NA,NA,a-exp-i3,2017-18,Boston - Lyndon,00350262, 40.1, 98.8, 14.5 to 1, 85.0, 95.0 +NA,NA,a-exp-i3,2017-18,Boston - Lyon K-8,00350004, 18.9, 100.0, 6.9 to 1, 79.9, 89.1 +NA,NA,a-exp-i3,2017-18,Boston - Lyon Upper 9-12,00350655, 17.3, 91.3, 7.2 to 1, 62.2, 79.4 +NA,NA,a-exp-i3,2017-18,Boston - Madison Park High,00350537, 100.3, 90.9, 8.6 to 1, 59.4, 72.4 +NA,NA,a-exp-i3,2017-18,Boston - Manassah E Bradley,00350215, 21.8, 95.6, 13.5 to 1, 85.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Margarita Muniz Academy,00350549, 27.9, 92.9, 10.7 to 1, 71.4, 78.5 +NA,NA,a-exp-i3,2017-18,Boston - Mario Umana Academy,00350656, 74.4, 97.7, 13.5 to 1, 77.7, 89.9 +NA,NA,a-exp-i3,2017-18,Boston - Mather,00350227, 40.8, 97.7, 14.9 to 1, 89.9, 89.7 +NA,NA,a-exp-i3,2017-18,Boston - Mattapan Early Elementary School,00350016, 24.6, 96.0, 11.8 to 1, 48.3, 75.7 +NA,NA,a-exp-i3,2017-18,Boston - Maurice J Tobin,00350229, 33.3, 91.3, 12.9 to 1, 70.4, 73.5 +NA,NA,a-exp-i3,2017-18,Boston - Michael J Perkins,00350231, 15.1, 100.0, 14.4 to 1, 93.3, 79.8 +NA,NA,a-exp-i3,2017-18,Boston - Mildred Avenue K-8,00350378, 42.9, 100.0, 12.8 to 1, 83.7, 81.5 +NA,NA,a-exp-i3,2017-18,Boston - Mission Hill School,00350382, 18.5, 100.0, 13.1 to 1, 78.4, 89.4 +NA,NA,a-exp-i3,2017-18,Boston - Mozart,00350237, 16.0, 93.8, 11.2 to 1, 81.2, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Nathan Hale,00350243, 10.3, 100.0, 15.4 to 1, 90.3, 98.2 +NA,NA,a-exp-i3,2017-18,Boston - New Mission High School,00350542, 33.4, 90.5, 11.7 to 1, 72.9, 97.3 +NA,NA,a-exp-i3,2017-18,Boston - O W Holmes,00350138, 27.5, 92.7, 12.6 to 1, 51.0, 84.2 +NA,NA,a-exp-i3,2017-18,Boston - O'Bryant School Math/Science,00350575, 96.1, 93.0, 16.3 to 1, 78.4, 88.3 +NA,NA,a-exp-i3,2017-18,Boston - Oliver Hazard Perry,00350255, 21.1, 100.0, 10.4 to 1, 95.2, 85.7 +NA,NA,a-exp-i3,2017-18,Boston - Orchard Gardens,00350257, 68.2, 91.2, 13.3 to 1, 80.1, 91.1 +NA,NA,a-exp-i3,2017-18,Boston - Patrick J Kennedy,00350264, 22.3, 100.0, 13.7 to 1, 80.5, 86.6 +NA,NA,a-exp-i3,2017-18,Boston - Paul A Dever,00350268, 34.3, 76.6, 10.4 to 1, 32.3, 73.4 +NA,NA,a-exp-i3,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 17.9, 88.8, 14.3 to 1, 55.5, 77.8 +NA,NA,a-exp-i3,2017-18,Boston - Phineas Bates,00350278, 22.7, 100.0, 11.5 to 1, 90.6, 96.5 +NA,NA,a-exp-i3,2017-18,Boston - Quincy Upper School,00350565, 45.9, 86.6, 11.1 to 1, 75.6, 82.6 +NA,NA,a-exp-i3,2017-18,Boston - Rafael Hernandez,00350691, 24.5, 95.9, 15.9 to 1, 79.7, 91.8 +NA,NA,a-exp-i3,2017-18,Boston - Richard J Murphy,00350240, 60.9, 100.0, 15.5 to 1, 93.6, 96.7 +NA,NA,a-exp-i3,2017-18,Boston - Roger Clap,00350298, 12.1, 100.0, 13.0 to 1, 91.4, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Samuel Adams,00350302, 24.4, 100.0, 11.9 to 1, 81.9, 87.6 +NA,NA,a-exp-i3,2017-18,Boston - Samuel W Mason,00350304, 18.0, 94.7, 13.5 to 1, 72.4, 77.8 +NA,NA,a-exp-i3,2017-18,Boston - Sarah Greenwood,00350308, 30.2, 79.9, 13.3 to 1, 70.0, 86.5 +NA,NA,a-exp-i3,2017-18,Boston - Snowden International School at Copley,00350690, 35.1, 94.7, 12.7 to 1, 94.6, 88.3 +NA,NA,a-exp-i3,2017-18,Boston - TechBoston Academy,00350657, 93.6, 93.3, 9.8 to 1, 79.6, 93.6 +NA,NA,a-exp-i3,2017-18,Boston - The English High,00350535, 49.9, 83.3, 10.8 to 1, 65.9, 85.9 +NA,NA,a-exp-i3,2017-18,Boston - Thomas J Kenny,00350328, 27.0, 100.0, 12.0 to 1, 96.3, 96.0 +NA,NA,a-exp-i3,2017-18,Boston - UP Academy Holland,00350167, 48.0, 83.4, 15.9 to 1, 35.4, 74.9 +NA,NA,a-exp-i3,2017-18,Boston - Urban Science Academy,00350579, 40.1, 85.4, 9.8 to 1, 89.7, 94.6 +NA,NA,a-exp-i3,2017-18,Boston - Warren-Prescott,00350346, 37.8, 100.0, 15.9 to 1, 94.7, 100.0 +NA,NA,a-exp-i3,2017-18,Boston - Washington Irving Middle,00350445, 30.9, 95.1, 10.4 to 1, 80.7, 88.7 +NA,NA,a-exp-i3,2017-18,Boston - West Roxbury Academy,00350658, 39.3, 95.1, 12.1 to 1, 86.3, 97.4 +NA,NA,a-exp-i3,2017-18,Boston - William E Russell,00350366, 28.5, 94.7, 14.3 to 1, 73.5, 89.5 +NA,NA,a-exp-i3,2017-18,Boston - William Ellery Channing,00350360, 17.0, 100.0, 12.7 to 1, 88.1, 94.1 +NA,NA,a-exp-i3,2017-18,Boston - William H Ohrenberger,00350258, 48.1, 95.9, 13.5 to 1, 93.9, 97.6 +NA,NA,a-exp-i3,2017-18,Boston - William McKinley,00350363, 51.2, 98.1, 6.9 to 1, 91.3, 92.1 +NA,NA,a-exp-i3,2017-18,Boston - William Monroe Trotter,00350370, 34.5, 100.0, 15.2 to 1, 91.4, 90.3 +NA,NA,a-exp-i3,2017-18,Boston - Winship Elementary,00350374, 21.6, 100.0, 10.2 to 1, 90.9, 90.7 +NA,NA,a-exp-i3,2017-18,Boston - Young Achievers,00350380, 40.1, 87.5, 14.1 to 1, 69.9, 87.7 +NA,NA,a-exp-i3,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 63.5, 80.3, 11.0 to 1, 50.4, 66.3 +NA,NA,a-exp-i3,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 23.1, 95.4, 17.5 to 1, 78.1, 100.0 +NA,NA,a-exp-i3,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 40.6, 88.9, 11.6 to 1, 66.5, 90.4 +NA,NA,a-exp-i3,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 44.1, 77.3, 10.5 to 1, 29.7, 87.1 +NA,NA,a-exp-i3,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.0, 80.5, 11.4 to 1, 56.1, 92.7 +NA,NA,a-exp-i3,2017-18,Bourne - Bourne High School,00360505, 37.6, 97.3, 12.8 to 1, 89.7, 92.0 +NA,NA,a-exp-i3,2017-18,Bourne - Bourne Middle School,00360325, 57.6, 91.3, 11.9 to 1, 77.4, 89.6 +NA,NA,a-exp-i3,2017-18,Bourne - Bournedale Elementary School,00360005, 27.9, 100.0, 16.1 to 1, 89.3, 93.3 +NA,NA,a-exp-i3,2017-18,Bourne - Peebles Elementary School,00360010, 25.0, 100.0, 13.6 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Boxford - Harry Lee Cole,00380005, 26.3, 100.0, 12.6 to 1, 93.9, 96.2 +NA,NA,a-exp-i3,2017-18,Boxford - Spofford Pond,00380013, 31.6, 100.0, 12.3 to 1, 96.8, 100.0 +NA,NA,a-exp-i3,2017-18,Boylston - Boylston Elementary,00390005, 19.6, 100.0, 15.3 to 1, 76.4, 94.7 +NA,NA,a-exp-i3,2017-18,Braintree - Archie T Morrison,00400033, 35.9, 100.0, 11.7 to 1, 87.2, 92.0 +NA,NA,a-exp-i3,2017-18,Braintree - Braintree High,00400505, 116.2, 98.3, 15.5 to 1, 77.0, 89.9 +NA,NA,a-exp-i3,2017-18,Braintree - Donald Ross,00400050, 26.1, 100.0, 10.9 to 1, 84.7, 100.0 +NA,NA,a-exp-i3,2017-18,Braintree - East Middle School,00400305, 59.0, 100.0, 12.1 to 1, 88.1, 97.3 +NA,NA,a-exp-i3,2017-18,Braintree - Highlands,00400015, 30.9, 100.0, 13.7 to 1, 85.7, 98.6 +NA,NA,a-exp-i3,2017-18,Braintree - Hollis,00400005, 33.5, 100.0, 12.9 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Braintree - Liberty,00400025, 29.2, 100.0, 15.8 to 1, 84.2, 96.6 +NA,NA,a-exp-i3,2017-18,Braintree - Mary E Flaherty School,00400020, 28.3, 100.0, 13.3 to 1, 85.9, 96.5 +NA,NA,a-exp-i3,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 16.2, 100.0, 15.5 to 1, 87.6, 87.6 +NA,NA,a-exp-i3,2017-18,Braintree - South Middle School,00400310, 48.4, 100.0, 13.8 to 1, 82.7, 93.8 +NA,NA,a-exp-i3,2017-18,Brewster - Eddy Elementary,00410010, 22.6, 100.0, 10.7 to 1, 82.5, 87.8 +NA,NA,a-exp-i3,2017-18,Brewster - Stony Brook Elementary,00410005, 20.7, 100.0, 11.3 to 1, 84.5, 95.2 +NA,NA,a-exp-i3,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 29.0, 75.4, 10.6 to 1, 41.0, 96.6 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 32.3, 100.0, 15.8 to 1, 90.7, 92.6 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 86.9, 100.0, 16.8 to 1, 94.5, 94.5 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 26.4, 100.0, 18.6 to 1, 84.4, 100.0 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 18.2, 100.0, 17.1 to 1, 94.5, 97.5 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 61.3, 98.4, 16.9 to 1, 92.6, 97.3 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 47.1, 100.0, 14.1 to 1, 87.3, 91.5 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.9, 100.0, 5.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 50.8, 100.0, 15.8 to 1, 90.9, 98.0 +NA,NA,a-exp-i3,2017-18,Brimfield - Brimfield Elementary,00430005, 26.3, 100.0, 10.9 to 1, 94.3, 100.0 +NA,NA,a-exp-i3,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 35.6, 100.0, 12.8 to 1, 91.6, 80.3 +NA,NA,a-exp-i3,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 95.5, 100.0, 13.4 to 1, 92.1, 90.1 +NA,NA,a-exp-i3,2017-18,Brockton - Ashfield Middle School,00440421, 37.6, 99.7, 13.4 to 1, 94.5, 94.7 +NA,NA,a-exp-i3,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 14.4, 99.3, 16.5 to 1, 99.5, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Brockton Champion High School,00440515, 16.8, 99.4, 10.4 to 1, 85.3, 97.6 +NA,NA,a-exp-i3,2017-18,Brockton - Brockton High,00440505, 243.2, 98.7, 17.0 to 1, 89.7, 92.6 +NA,NA,a-exp-i3,2017-18,Brockton - Brookfield,00440010, 36.3, 99.7, 17.8 to 1, 100.0, 98.9 +NA,NA,a-exp-i3,2017-18,Brockton - Downey,00440110, 38.7, 99.7, 16.3 to 1, 98.5, 96.1 +NA,NA,a-exp-i3,2017-18,Brockton - Dr W Arnone Community School,00440001, 44.3, 99.8, 16.6 to 1, 95.3, 92.8 +NA,NA,a-exp-i3,2017-18,Brockton - East Middle School,00440405, 38.3, 100.0, 12.5 to 1, 99.3, 92.7 +NA,NA,a-exp-i3,2017-18,Brockton - Edgar B Davis,00440023, 55.3, 98.2, 18.5 to 1, 97.3, 98.2 +NA,NA,a-exp-i3,2017-18,Brockton - Edison Academy,00440520, 7.5, 93.4, 26.0 to 1, 89.2, 97.3 +NA,NA,a-exp-i3,2017-18,Brockton - Frederick Douglass Academy,00440080, 5.3, 100.0, 6.4 to 1, 95.3, 57.7 +NA,NA,a-exp-i3,2017-18,Brockton - Gilmore Elementary School,00440055, 29.2, 100.0, 19.1 to 1, 96.6, 98.6 +NA,NA,a-exp-i3,2017-18,Brockton - Hancock,00440045, 32.9, 100.0, 20.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 12.7, 89.7, 4.6 to 1, 76.9, 80.9 +NA,NA,a-exp-i3,2017-18,Brockton - John F Kennedy,00440017, 31.5, 100.0, 18.6 to 1, 96.6, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 41.4, 99.8, 16.6 to 1, 92.8, 100.0 +NA,NA,a-exp-i3,2017-18,Brockton - Louis F Angelo Elementary,00440065, 46.4, 100.0, 19.7 to 1, 92.6, 99.2 +NA,NA,a-exp-i3,2017-18,Brockton - Manthala George Jr. School,00440003, 50.0, 99.8, 18.4 to 1, 95.9, 98.0 +NA,NA,a-exp-i3,2017-18,Brockton - Mary E. Baker School,00440002, 42.1, 100.0, 19.3 to 1, 95.1, 96.5 +NA,NA,a-exp-i3,2017-18,Brockton - North Middle School,00440410, 40.1, 100.0, 15.7 to 1, 97.3, 97.5 +NA,NA,a-exp-i3,2017-18,Brockton - Oscar F Raymond,00440078, 41.7, 100.0, 21.9 to 1, 95.0, 97.6 +NA,NA,a-exp-i3,2017-18,Brockton - South Middle School,00440415, 36.7, 100.0, 13.3 to 1, 91.6, 94.6 +NA,NA,a-exp-i3,2017-18,Brockton - West Middle School,00440420, 43.1, 99.8, 14.8 to 1, 95.4, 97.7 +NA,NA,a-exp-i3,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 139.4, 71.1, 12.5 to 1, 46.1, 79.2 +NA,NA,a-exp-i3,2017-18,Brookfield - Brookfield Elementary,00450005, 23.8, 100.0, 13.1 to 1, 91.6, 95.8 +NA,NA,a-exp-i3,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 3.0, 100.0, 19.7 to 1, 54.3, 100.0 +NA,NA,a-exp-i3,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 7.2, 100.0, 8.4 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Brookline - Brookline High,00460505, 181.2, 98.9, 11.5 to 1, 87.1, 93.2 +NA,NA,a-exp-i3,2017-18,Brookline - Edith C Baker,00460005, 59.2, 99.6, 12.9 to 1, 79.9, 96.9 +NA,NA,a-exp-i3,2017-18,Brookline - Edward Devotion,00460015, 71.4, 99.7, 11.2 to 1, 82.0, 92.5 +NA,NA,a-exp-i3,2017-18,Brookline - Heath,00460025, 41.7, 100.0, 13.5 to 1, 89.8, 95.7 +NA,NA,a-exp-i3,2017-18,Brookline - John D Runkle,00460045, 48.0, 100.0, 13.1 to 1, 84.7, 97.9 +NA,NA,a-exp-i3,2017-18,Brookline - Lawrence,00460030, 54.6, 98.2, 13.2 to 1, 85.1, 96.8 +NA,NA,a-exp-i3,2017-18,Brookline - Michael Driscoll,00460020, 44.1, 95.8, 14.2 to 1, 65.7, 91.5 +NA,NA,a-exp-i3,2017-18,Brookline - Pierce,00460040, 60.9, 99.0, 14.1 to 1, 79.1, 91.6 +NA,NA,a-exp-i3,2017-18,Brookline - The Lynch Center,00460060, 5.2, 100.0, 11.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Brookline - William H Lincoln,00460035, 49.5, 100.0, 11.7 to 1, 85.4, 93.9 +NA,NA,a-exp-i3,2017-18,Burlington - Burlington High,00480505, 94.6, 99.4, 11.2 to 1, 87.3, 94.7 +NA,NA,a-exp-i3,2017-18,Burlington - Fox Hill,00480007, 36.9, 100.0, 10.8 to 1, 74.9, 93.9 +NA,NA,a-exp-i3,2017-18,Burlington - Francis Wyman Elementary,00480035, 50.8, 100.0, 10.6 to 1, 85.3, 95.2 +NA,NA,a-exp-i3,2017-18,Burlington - Marshall Simonds Middle,00480303, 73.1, 100.0, 11.0 to 1, 90.7, 94.8 +NA,NA,a-exp-i3,2017-18,Burlington - Memorial,00480015, 36.7, 100.0, 11.1 to 1, 91.1, 96.6 +NA,NA,a-exp-i3,2017-18,Burlington - Pine Glen Elementary,00480020, 30.2, 100.0, 10.3 to 1, 87.6, 99.2 +NA,NA,a-exp-i3,2017-18,Cambridge - Amigos School,00490006, 35.1, 97.2, 11.3 to 1, 69.5, 76.2 +NA,NA,a-exp-i3,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 190.2, 97.5, 10.3 to 1, 81.6, 84.5 +NA,NA,a-exp-i3,2017-18,Cambridge - Cambridge Street Upper School,00490305, 33.8, 100.0, 7.3 to 1, 80.0, 91.1 +NA,NA,a-exp-i3,2017-18,Cambridge - Cambridgeport,00490007, 25.0, 100.0, 13.7 to 1, 82.5, 87.3 +NA,NA,a-exp-i3,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 30.0, 100.0, 9.9 to 1, 89.9, 96.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Graham and Parks,00490080, 31.5, 96.8, 11.5 to 1, 81.0, 93.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Haggerty,00490020, 24.9, 100.0, 10.3 to 1, 92.9, 100.0 +NA,NA,a-exp-i3,2017-18,Cambridge - John M Tobin,00490065, 21.8, 100.0, 13.5 to 1, 87.1, 100.0 +NA,NA,a-exp-i3,2017-18,Cambridge - Kennedy-Longfellow,00490040, 27.7, 100.0, 10.6 to 1, 89.2, 92.8 +NA,NA,a-exp-i3,2017-18,Cambridge - King Open,00490035, 34.9, 97.1, 9.4 to 1, 77.0, 94.3 +NA,NA,a-exp-i3,2017-18,Cambridge - Maria L. Baldwin,00490005, 30.6, 100.0, 11.9 to 1, 80.4, 96.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Martin Luther King Jr.,00490030, 29.5, 100.0, 11.1 to 1, 86.4, 79.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Morse,00490045, 32.5, 100.0, 9.4 to 1, 95.4, 93.3 +NA,NA,a-exp-i3,2017-18,Cambridge - Peabody,00490050, 26.3, 100.0, 12.3 to 1, 91.3, 96.2 +NA,NA,a-exp-i3,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 33.1, 97.0, 7.9 to 1, 78.8, 80.1 +NA,NA,a-exp-i3,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 30.2, 100.0, 8.9 to 1, 75.1, 96.7 +NA,NA,a-exp-i3,2017-18,Cambridge - Vassal Lane Upper School,00490320, 33.7, 100.0, 8.3 to 1, 73.3, 91.1 +NA,NA,a-exp-i3,2017-18,Canton - Canton High,00500505, 69.8, 100.0, 14.1 to 1, 78.2, 88.2 +NA,NA,a-exp-i3,2017-18,Canton - Dean S Luce,00500020, 36.1, 100.0, 13.8 to 1, 82.8, 99.5 +NA,NA,a-exp-i3,2017-18,Canton - John F Kennedy,00500017, 38.5, 100.0, 13.8 to 1, 86.6, 94.4 +NA,NA,a-exp-i3,2017-18,Canton - Lt Peter M Hansen,00500012, 37.2, 100.0, 12.8 to 1, 89.1, 99.9 +NA,NA,a-exp-i3,2017-18,Canton - Rodman Early Childhood Center,00500010, 5.0, 100.0, 17.6 to 1, 80.0, 100.0 +NA,NA,a-exp-i3,2017-18,Canton - Wm H Galvin Middle,00500305, 60.4, 100.0, 12.2 to 1, 87.5, 92.7 +NA,NA,a-exp-i3,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 22.0, 82.2, 11.0 to 1, 91.1, 78.2 +NA,NA,a-exp-i3,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 65.8, 87.9, 9.0 to 1, 74.4, 80.7 +NA,NA,a-exp-i3,2017-18,Carlisle - Carlisle School,00510025, 56.8, 100.0, 10.7 to 1, 93.0, 100.0 +NA,NA,a-exp-i3,2017-18,Carver - Carver Elementary School,00520015, 50.6, 100.0, 15.5 to 1, 80.2, 98.0 +NA,NA,a-exp-i3,2017-18,Carver - Carver Middle/High School,00520405, 67.3, 98.5, 11.8 to 1, 83.7, 91.1 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Becket Washington School,06350005, 10.1, 100.0, 12.4 to 1, 100.0, 96.0 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Craneville,06350025, 28.0, 100.0, 14.7 to 1, 96.4, 99.3 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Kittredge,06350035, 12.5, 100.0, 12.0 to 1, 100.0, 88.8 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 30.0, 100.0, 12.7 to 1, 99.0, 96.7 +NA,NA,a-exp-i3,2017-18,Central Berkshire - Wahconah Regional High,06350505, 44.3, 100.0, 12.1 to 1, 97.7, 100.0 +NA,NA,a-exp-i3,2017-18,Chelmsford - Byam School,00560030, 38.0, 100.0, 13.3 to 1, 84.2, 97.4 +NA,NA,a-exp-i3,2017-18,Chelmsford - Center Elementary School,00560005, 31.0, 100.0, 14.5 to 1, 80.6, 96.8 +NA,NA,a-exp-i3,2017-18,Chelmsford - Charles D Harrington,00560025, 31.0, 100.0, 15.9 to 1, 93.5, 100.0 +NA,NA,a-exp-i3,2017-18,Chelmsford - Chelmsford High,00560505, 109.5, 100.0, 13.5 to 1, 89.9, 97.3 +NA,NA,a-exp-i3,2017-18,Chelmsford - Col Moses Parker School,00560305, 62.3, 100.0, 11.5 to 1, 84.8, 93.6 +NA,NA,a-exp-i3,2017-18,Chelmsford - Community Education Center,00560001, 7.0, 100.0, 18.9 to 1, 100.0, 85.7 +NA,NA,a-exp-i3,2017-18,Chelmsford - McCarthy Middle School,00560310, 67.8, 100.0, 12.0 to 1, 85.3, 91.2 +NA,NA,a-exp-i3,2017-18,Chelmsford - South Row,00560015, 26.0, 100.0, 15.4 to 1, 96.2, 100.0 +NA,NA,a-exp-i3,2017-18,Chelsea - Chelsea High,00570505, 112.8, 99.3, 13.6 to 1, 53.2, 71.6 +NA,NA,a-exp-i3,2017-18,Chelsea - Clark Avenue School,00570050, 32.0, 96.9, 17.3 to 1, 65.6, 75.0 +NA,NA,a-exp-i3,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 37.5, 100.0, 15.7 to 1, 76.0, 89.3 +NA,NA,a-exp-i3,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 32.3, 100.0, 16.5 to 1, 72.2, 84.5 +NA,NA,a-exp-i3,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 38.0, 94.7, 14.9 to 1, 63.2, 100.0 +NA,NA,a-exp-i3,2017-18,Chelsea - George F. Kelly Elementary,00570035, 37.5, 100.0, 14.6 to 1, 76.0, 100.0 +NA,NA,a-exp-i3,2017-18,Chelsea - Joseph A. Browne School,00570055, 40.7, 100.0, 15.1 to 1, 43.4, 70.5 +NA,NA,a-exp-i3,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 51.0, 98.0, 17.0 to 1, 84.3, 94.1 +NA,NA,a-exp-i3,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 32.0, 96.9, 15.9 to 1, 62.5, 90.6 +NA,NA,a-exp-i3,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14.9, 100.0, 9.1 to 1, 93.3, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Barry,00610003, 28.0, 100.0, 14.3 to 1, 89.3, 92.9 +NA,NA,a-exp-i3,2017-18,Chicopee - Belcher,00610010, 19.9, 100.0, 13.6 to 1, 97.5, 95.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Bellamy Middle,00610305, 77.7, 98.7, 10.3 to 1, 87.1, 89.7 +NA,NA,a-exp-i3,2017-18,Chicopee - Bowe,00610015, 32.1, 100.0, 14.9 to 1, 87.5, 96.9 +NA,NA,a-exp-i3,2017-18,Chicopee - Bowie,00610020, 23.6, 100.0, 14.1 to 1, 98.6, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Chicopee Academy,00610021, 16.6, 100.0, 4.9 to 1, 94.0, 81.9 +NA,NA,a-exp-i3,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 114.8, 99.1, 11.9 to 1, 92.1, 89.5 +NA,NA,a-exp-i3,2017-18,Chicopee - Chicopee High,00610505, 87.5, 97.7, 10.9 to 1, 90.3, 94.3 +NA,NA,a-exp-i3,2017-18,Chicopee - Dupont Middle,00610310, 60.5, 96.7, 12.4 to 1, 88.4, 85.1 +NA,NA,a-exp-i3,2017-18,Chicopee - Fairview Elementary,00610050, 33.7, 100.0, 13.7 to 1, 84.8, 94.1 +NA,NA,a-exp-i3,2017-18,Chicopee - Gen John J Stefanik,00610090, 28.9, 100.0, 13.9 to 1, 88.1, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Lambert-Lavoie,00610040, 24.0, 100.0, 13.2 to 1, 81.4, 95.8 +NA,NA,a-exp-i3,2017-18,Chicopee - Litwin,00610022, 29.0, 100.0, 14.4 to 1, 75.9, 96.6 +NA,NA,a-exp-i3,2017-18,Chicopee - Streiber Memorial School,00610065, 18.0, 100.0, 15.5 to 1, 96.0, 100.0 +NA,NA,a-exp-i3,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 14.0, 100.0, 17.2 to 1, 85.7, 92.9 +NA,NA,a-exp-i3,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 41.0, 71.3, 9.6 to 1, 79.3, 88.4 +NA,NA,a-exp-i3,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 26.7, 64.8, 10.6 to 1, 25.1, 77.5 +NA,NA,a-exp-i3,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 24.7, 72.1, 11.0 to 1, 18.6, 70.0 +NA,NA,a-exp-i3,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 16.0, 80.0, 14.8 to 1, 16.3, 67.5 +NA,NA,a-exp-i3,2017-18,Clarksburg - Clarksburg Elementary,00630010, 15.5, 97.4, 12.5 to 1, 98.4, 100.0 +NA,NA,a-exp-i3,2017-18,Clinton - Clinton Elementary,00640050, 53.7, 100.0, 12.7 to 1, 88.8, 92.6 +NA,NA,a-exp-i3,2017-18,Clinton - Clinton Middle School,00640305, 57.2, 98.3, 13.0 to 1, 62.9, 98.3 +NA,NA,a-exp-i3,2017-18,Clinton - Clinton Senior High,00640505, 40.4, 100.0, 11.3 to 1, 83.1, 87.6 +NA,NA,a-exp-i3,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 37.0, 39.8, 9.3 to 1, 24.3, 85.9 +NA,NA,a-exp-i3,2017-18,Cohasset - Cohasset Middle/High School,00650505, 71.7, 100.0, 11.8 to 1, 82.3, 94.4 +NA,NA,a-exp-i3,2017-18,Cohasset - Deer Hill,00650005, 22.2, 100.0, 17.6 to 1, 91.0, 100.0 +NA,NA,a-exp-i3,2017-18,Cohasset - Joseph Osgood,00650010, 18.6, 100.0, 18.6 to 1, 78.5, 100.0 +NA,NA,a-exp-i3,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 40.0, 87.5, 19.0 to 1, 32.5, 80.0 +NA,NA,a-exp-i3,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 35.4, 80.3, 10.3 to 1, 48.6, 81.7 +NA,NA,a-exp-i3,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 33.0, 62.1, 9.7 to 1, 40.9, 97.0 +NA,NA,a-exp-i3,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 45.3, 77.9, 8.8 to 1, 38.2, 85.9 +NA,NA,a-exp-i3,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 33.5, 89.6, 9.6 to 1, 29.9, 91.0 +NA,NA,a-exp-i3,2017-18,Concord - Alcott,00670005, 38.8, 100.0, 12.6 to 1, 86.6, 100.0 +NA,NA,a-exp-i3,2017-18,Concord - Concord Middle,00670305, 55.7, 100.0, 13.0 to 1, 94.8, 89.2 +NA,NA,a-exp-i3,2017-18,Concord - Thoreau,00670020, 37.9, 100.0, 12.1 to 1, 80.5, 100.0 +NA,NA,a-exp-i3,2017-18,Concord - Willard,00670030, 36.9, 100.0, 11.9 to 1, 85.4, 100.0 +NA,NA,a-exp-i3,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 102.6, 100.0, 12.4 to 1, 92.6, 93.2 +NA,NA,a-exp-i3,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 25.3, 81.2, 17.8 to 1, 15.8, 84.2 +NA,NA,a-exp-i3,2017-18,Conway - Conway Grammar,00680005, 13.4, 100.0, 10.3 to 1, 91.7, 100.0 +NA,NA,a-exp-i3,2017-18,Danvers - Danvers High,00710505, 77.4, 98.7, 12.2 to 1, 85.3, 89.8 +NA,NA,a-exp-i3,2017-18,Danvers - Great Oak,00710015, 25.5, 100.0, 14.9 to 1, 88.2, 100.0 +NA,NA,a-exp-i3,2017-18,Danvers - Highlands,00710010, 27.0, 100.0, 13.8 to 1, 92.6, 90.7 +NA,NA,a-exp-i3,2017-18,Danvers - Holten Richmond Middle School,00710305, 65.3, 98.5, 12.6 to 1, 86.2, 89.3 +NA,NA,a-exp-i3,2017-18,Danvers - Ivan G Smith,00710032, 18.0, 100.0, 15.7 to 1, 94.5, 97.2 +NA,NA,a-exp-i3,2017-18,Danvers - Riverside,00710030, 27.0, 100.0, 13.1 to 1, 88.9, 96.3 +NA,NA,a-exp-i3,2017-18,Danvers - Willis E Thorpe,00710045, 24.8, 100.0, 12.5 to 1, 83.9, 100.0 +NA,NA,a-exp-i3,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 10.7, 100.0, 13.1 to 1, 100.0, 81.3 +NA,NA,a-exp-i3,2017-18,Dartmouth - Dartmouth High,00720505, 79.2, 98.3, 13.5 to 1, 93.2, 96.3 +NA,NA,a-exp-i3,2017-18,Dartmouth - Dartmouth Middle,00720050, 78.0, 98.8, 12.4 to 1, 86.6, 96.3 +NA,NA,a-exp-i3,2017-18,Dartmouth - George H Potter,00720030, 26.4, 100.0, 16.3 to 1, 96.2, 98.0 +NA,NA,a-exp-i3,2017-18,Dartmouth - James M. Quinn School,00720040, 45.5, 100.0, 13.9 to 1, 91.2, 100.0 +NA,NA,a-exp-i3,2017-18,Dartmouth - Joseph Demello,00720015, 28.6, 100.0, 15.1 to 1, 82.5, 98.5 +NA,NA,a-exp-i3,2017-18,Dedham - Avery,00730010, 28.5, 100.0, 11.2 to 1, 86.0, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Dedham High,00730505, 65.0, 100.0, 11.3 to 1, 86.2, 92.3 +NA,NA,a-exp-i3,2017-18,Dedham - Dedham Middle School,00730305, 69.0, 95.7, 8.7 to 1, 82.6, 98.6 +NA,NA,a-exp-i3,2017-18,Dedham - Early Childhood Center,00730005, 18.5, 100.0, 14.6 to 1, 94.6, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Greenlodge,00730025, 21.8, 100.0, 12.2 to 1, 90.8, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Oakdale,00730030, 21.7, 100.0, 13.2 to 1, 95.4, 100.0 +NA,NA,a-exp-i3,2017-18,Dedham - Riverdale,00730045, 19.2, 100.0, 9.3 to 1, 89.6, 94.8 +NA,NA,a-exp-i3,2017-18,Deerfield - Deerfield Elementary,00740015, 37.4, 97.3, 10.7 to 1, 85.5, 92.5 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 84.7, 98.8, 12.1 to 1, 84.1, 89.0 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 43.1, 100.0, 8.1 to 1, 93.0, 97.7 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 29.0, 100.0, 9.4 to 1, 89.7, 100.0 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 44.3, 100.0, 10.1 to 1, 91.0, 86.4 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 49.0, 100.0, 11.0 to 1, 93.9, 98.0 +NA,NA,a-exp-i3,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 35.7, 100.0, 11.7 to 1, 94.4, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 33.1, 100.0, 14.0 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 29.2, 100.0, 13.4 to 1, 96.2, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 78.7, 100.0, 11.6 to 1, 87.3, 90.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 44.2, 100.0, 13.2 to 1, 95.5, 100.0 +NA,NA,a-exp-i3,2017-18,Dighton-Rehoboth - Palmer River,06500010, 41.3, 100.0, 13.4 to 1, 90.4, 100.0 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas Elementary School,00770015, 23.5, 100.0, 16.0 to 1, 76.5, 100.0 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas High School,00770505, 34.3, 97.7, 11.1 to 1, 81.9, 81.9 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas Middle School,00770305, 21.4, 100.0, 16.2 to 1, 79.3, 93.0 +NA,NA,a-exp-i3,2017-18,Douglas - Douglas Primary School,00770005, 13.1, 100.0, 17.1 to 1, 80.5, 100.0 +NA,NA,a-exp-i3,2017-18,Dover - Chickering,00780005, 41.8, 100.0, 11.8 to 1, 85.6, 97.6 +NA,NA,a-exp-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 57.8, 100.0, 11.5 to 1, 89.8, 95.8 +NA,NA,a-exp-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 48.7, 100.0, 10.8 to 1, 97.1, 99.1 +NA,NA,a-exp-i3,2017-18,Dracut - Brookside Elementary,00790035, 22.1, 100.0, 20.7 to 1, 81.9, 92.3 +NA,NA,a-exp-i3,2017-18,Dracut - Dracut Senior High,00790505, 61.0, 95.1, 13.7 to 1, 78.0, 86.9 +NA,NA,a-exp-i3,2017-18,Dracut - George H. Englesby Elementary School,00790045, 27.0, 100.0, 19.1 to 1, 63.0, 92.6 +NA,NA,a-exp-i3,2017-18,Dracut - Greenmont Avenue,00790030, 17.3, 100.0, 17.0 to 1, 88.4, 98.3 +NA,NA,a-exp-i3,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 27.1, 100.0, 21.1 to 1, 92.6, 96.3 +NA,NA,a-exp-i3,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 55.1, 100.0, 15.9 to 1, 76.0, 81.1 +NA,NA,a-exp-i3,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.0, 100.0, 14.9 to 1, 73.7, 89.5 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 24.5, 100.0, 14.1 to 1, 89.8, 100.0 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 50.0, 100.0, 13.8 to 1, 98.0, 100.0 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 28.0, 100.0, 14.0 to 1, 83.9, 96.4 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 46.1, 100.0, 12.5 to 1, 93.3, 95.7 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 31.0, 100.0, 15.5 to 1, 90.3, 96.8 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 17.5, 100.0, 15.8 to 1, 94.3, 100.0 +NA,NA,a-exp-i3,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 73.0, 100.0, 16.0 to 1, 87.7, 89.0 +NA,NA,a-exp-i3,2017-18,Duxbury - Alden School,00820004, 47.1, 97.9, 14.3 to 1, 85.2, 93.6 +NA,NA,a-exp-i3,2017-18,Duxbury - Chandler Elementary,00820006, 46.4, 100.0, 13.5 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,Duxbury - Duxbury High,00820505, 80.0, 99.6, 13.2 to 1, 94.2, 96.3 +NA,NA,a-exp-i3,2017-18,Duxbury - Duxbury Middle,00820305, 55.3, 97.0, 13.4 to 1, 83.2, 90.6 +NA,NA,a-exp-i3,2017-18,East Bridgewater - Central,00830005, 39.3, 100.0, 15.3 to 1, 76.3, 97.5 +NA,NA,a-exp-i3,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 71.3, 98.6, 14.5 to 1, 81.3, 87.4 +NA,NA,a-exp-i3,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 43.0, 100.0, 15.4 to 1, 74.4, 93.0 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Birchland Park,00870305, 53.5, 100.0, 12.4 to 1, 94.4, 96.3 +NA,NA,a-exp-i3,2017-18,East Longmeadow - East Longmeadow High,00870505, 62.5, 100.0, 13.4 to 1, 93.6, 98.4 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Mapleshade,00870010, 23.9, 100.0, 11.8 to 1, 97.9, 100.0 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Meadow Brook,00870013, 41.8, 100.0, 13.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,East Longmeadow - Mountain View,00870015, 24.4, 100.0, 12.0 to 1, 93.9, 100.0 +NA,NA,a-exp-i3,2017-18,Eastham - Eastham Elementary,00850005, 23.3, 100.0, 7.4 to 1, 90.6, 100.0 +NA,NA,a-exp-i3,2017-18,Easthampton - Center School,00860005, 14.4, 100.0, 13.7 to 1, 87.0, 97.6 +NA,NA,a-exp-i3,2017-18,Easthampton - Easthampton High,00860505, 32.2, 100.0, 14.5 to 1, 90.1, 92.2 +NA,NA,a-exp-i3,2017-18,Easthampton - Maple,00860010, 18.3, 100.0, 13.5 to 1, 81.8, 98.1 +NA,NA,a-exp-i3,2017-18,Easthampton - Neil A Pepin,00860020, 15.2, 100.0, 11.8 to 1, 75.2, 98.0 +NA,NA,a-exp-i3,2017-18,Easthampton - White Brook Middle School,00860305, 35.4, 97.2, 12.7 to 1, 73.7, 88.7 +NA,NA,a-exp-i3,2017-18,Easton - Center School,00880003, 18.7, 100.0, 14.2 to 1, 92.4, 97.4 +NA,NA,a-exp-i3,2017-18,Easton - Easton Middle School,00880405, 67.7, 100.0, 13.1 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Easton - Moreau Hall,00880020, 15.2, 100.0, 14.9 to 1, 96.7, 100.0 +NA,NA,a-exp-i3,2017-18,Easton - Oliver Ames High,00880505, 81.3, 100.0, 14.6 to 1, 91.9, 94.6 +NA,NA,a-exp-i3,2017-18,Easton - Parkview Elementary,00880015, 24.1, 100.0, 13.3 to 1, 99.7, 97.9 +NA,NA,a-exp-i3,2017-18,Easton - Richardson Olmsted School,00880025, 58.0, 100.0, 14.4 to 1, 89.1, 99.1 +NA,NA,a-exp-i3,2017-18,Edgartown - Edgartown Elementary,00890005, 38.5, 98.8, 8.9 to 1, 83.9, 91.6 +NA,NA,a-exp-i3,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 35.3, 92.6, 10.8 to 1, 64.3, 83.0 +NA,NA,a-exp-i3,2017-18,Erving - Erving Elementary,00910030, 18.1, 97.2, 7.8 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 122.7, 95.6, 11.3 to 1, 77.7, 73.9 +NA,NA,a-exp-i3,2017-18,Everett - Adams School,00930003, 9.0, 100.0, 22.3 to 1, 77.8, 100.0 +NA,NA,a-exp-i3,2017-18,Everett - Devens School,00930030, 10.8, 100.0, 5.2 to 1, 90.7, 78.1 +NA,NA,a-exp-i3,2017-18,Everett - Everett High,00930505, 149.7, 98.0, 13.2 to 1, 72.9, 79.3 +NA,NA,a-exp-i3,2017-18,Everett - George Keverian School,00930028, 63.9, 96.9, 13.5 to 1, 82.5, 89.0 +NA,NA,a-exp-i3,2017-18,Everett - Lafayette School,00930038, 61.8, 98.4, 15.3 to 1, 79.8, 87.8 +NA,NA,a-exp-i3,2017-18,Everett - Madeline English School,00930018, 68.1, 100.0, 12.2 to 1, 75.2, 89.7 +NA,NA,a-exp-i3,2017-18,Everett - Parlin School,00930058, 60.9, 100.0, 13.7 to 1, 74.6, 81.4 +NA,NA,a-exp-i3,2017-18,Everett - Sumner G. Whittier School,00930010, 53.4, 100.0, 11.6 to 1, 82.8, 94.4 +NA,NA,a-exp-i3,2017-18,Everett - Webster School,00930015, 51.0, 100.0, 14.5 to 1, 78.1, 90.9 +NA,NA,a-exp-i3,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 98.4, 60.0, 11.4 to 1, 27.3, 83.7 +NA,NA,a-exp-i3,2017-18,Fairhaven - East Fairhaven,00940010, 27.5, 100.0, 15.2 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Fairhaven - Fairhaven High,00940505, 49.0, 97.5, 13.4 to 1, 88.2, 93.9 +NA,NA,a-exp-i3,2017-18,Fairhaven - Hastings Middle,00940305, 34.5, 99.3, 13.6 to 1, 81.9, 94.2 +NA,NA,a-exp-i3,2017-18,Fairhaven - Leroy Wood,00940030, 31.0, 100.0, 16.5 to 1, 91.9, 100.0 +NA,NA,a-exp-i3,2017-18,Fall River - B M C Durfee High,00950505, 182.0, 92.4, 11.6 to 1, 69.5, 72.9 +NA,NA,a-exp-i3,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 54.0, 90.8, 13.7 to 1, 59.3, 75.9 +NA,NA,a-exp-i3,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, .0, 0.0,N/A,"","" +NA,NA,a-exp-i3,2017-18,Fall River - Henry Lord Community School,00950017, 55.2, 87.3, 11.8 to 1, 48.9, 72.8 +NA,NA,a-exp-i3,2017-18,Fall River - James Tansey,00950140, 18.4, 89.1, 17.1 to 1, 80.6, 94.6 +NA,NA,a-exp-i3,2017-18,Fall River - John J Doran,00950045, 41.0, 85.4, 12.8 to 1, 65.9, 65.9 +NA,NA,a-exp-i3,2017-18,Fall River - Letourneau Elementary School,00950013, 39.8, 95.0, 15.5 to 1, 54.8, 73.1 +NA,NA,a-exp-i3,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 51.8, 88.4, 13.7 to 1, 34.4, 78.8 +NA,NA,a-exp-i3,2017-18,Fall River - Matthew J Kuss Middle,00950320, 56.1, 96.4, 13.4 to 1, 78.6, 75.0 +NA,NA,a-exp-i3,2017-18,Fall River - Morton Middle,00950315, 57.4, 93.0, 10.2 to 1, 65.1, 65.1 +NA,NA,a-exp-i3,2017-18,Fall River - North End Elementary,00950005, 48.4, 93.8, 15.9 to 1, 73.2, 93.8 +NA,NA,a-exp-i3,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 19.2, 83.7, 9.5 to 1, 58.4, 73.9 +NA,NA,a-exp-i3,2017-18,Fall River - Samuel Watson,00950145, 18.3, 100.0, 15.9 to 1, 80.8, 78.2 +NA,NA,a-exp-i3,2017-18,Fall River - Spencer Borden,00950130, 39.7, 98.2, 14.7 to 1, 78.1, 89.9 +NA,NA,a-exp-i3,2017-18,Fall River - Stone PK-12 School,00950340, 11.7, 79.4, 3.3 to 1, 65.7, 76.0 +NA,NA,a-exp-i3,2017-18,Fall River - Talbot Innovation School,00950305, 49.9, 98.0, 10.1 to 1, 74.1, 70.5 +NA,NA,a-exp-i3,2017-18,Fall River - William S Greene,00950065, 56.2, 92.9, 13.3 to 1, 73.3, 87.6 +NA,NA,a-exp-i3,2017-18,Falmouth - East Falmouth Elementary,00960005, 29.2, 100.0, 9.0 to 1, 80.2, 100.0 +NA,NA,a-exp-i3,2017-18,Falmouth - Falmouth High,00960505, 67.6, 97.9, 12.5 to 1, 83.7, 85.2 +NA,NA,a-exp-i3,2017-18,Falmouth - Lawrence,00960405, 51.6, 100.0, 11.6 to 1, 92.0, 92.2 +NA,NA,a-exp-i3,2017-18,Falmouth - Morse Pond School,00960305, 45.7, 97.8, 12.1 to 1, 78.6, 93.4 +NA,NA,a-exp-i3,2017-18,Falmouth - Mullen-Hall,00960020, 38.8, 100.0, 11.2 to 1, 85.1, 93.3 +NA,NA,a-exp-i3,2017-18,Falmouth - North Falmouth Elementary,00960030, 27.8, 100.0, 11.5 to 1, 89.9, 96.4 +NA,NA,a-exp-i3,2017-18,Falmouth - Teaticket,00960015, 30.9, 100.0, 11.8 to 1, 78.0, 97.4 +NA,NA,a-exp-i3,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 13.5, 100.0, 8.9 to 1, 79.8, 95.6 +NA,NA,a-exp-i3,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 46.6, 97.9, 12.7 to 1, 76.4, 85.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - Crocker Elementary,00970016, 39.0, 100.0, 17.1 to 1, 94.9, 97.4 +NA,NA,a-exp-i3,2017-18,Fitchburg - Fitchburg High,00970505, 89.1, 98.9, 13.5 to 1, 93.2, 91.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - Goodrich Academy,00970510, 9.1, 100.0, 18.6 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - McKay Arts Academy,00970340, 45.0, 100.0, 15.1 to 1, 80.0, 91.1 +NA,NA,a-exp-i3,2017-18,Fitchburg - Memorial Intermediate,00970048, 49.8, 100.0, 14.2 to 1, 81.9, 94.0 +NA,NA,a-exp-i3,2017-18,Fitchburg - Reingold Elementary,00970043, 42.0, 100.0, 15.9 to 1, 73.8, 92.9 +NA,NA,a-exp-i3,2017-18,Fitchburg - South Street Elementary,00970060, 46.0, 100.0, 14.5 to 1, 80.4, 100.0 +NA,NA,a-exp-i3,2017-18,Florida - Abbott Memorial,00980005, 11.8, 91.5, 6.8 to 1, 100.0, 96.6 +NA,NA,a-exp-i3,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.7, 57.9, 10.7 to 1, 78.7, 92.2 +NA,NA,a-exp-i3,2017-18,Foxborough - Charles Taylor Elementary,00990050, 19.3, 100.0, 12.3 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Foxborough - Foxborough High,00990505, 64.1, 100.0, 12.6 to 1, 89.9, 93.8 +NA,NA,a-exp-i3,2017-18,Foxborough - John J Ahern,00990405, 66.1, 100.0, 12.7 to 1, 89.4, 98.5 +NA,NA,a-exp-i3,2017-18,Foxborough - Mabelle M Burrell,00990015, 21.4, 100.0, 14.8 to 1, 95.3, 100.0 +NA,NA,a-exp-i3,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 31.8, 100.0, 12.4 to 1, 86.5, 100.0 +NA,NA,a-exp-i3,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 111.7, 78.4, 13.2 to 1, 62.4, 89.3 +NA,NA,a-exp-i3,2017-18,Framingham - Barbieri Elementary,01000035, 52.6, 96.2, 12.9 to 1, 65.8, 86.7 +NA,NA,a-exp-i3,2017-18,Framingham - Brophy,01000006, 41.3, 100.0, 11.5 to 1, 75.6, 96.4 +NA,NA,a-exp-i3,2017-18,Framingham - Cameron Middle School,01000302, 51.1, 100.0, 10.5 to 1, 87.0, 91.2 +NA,NA,a-exp-i3,2017-18,Framingham - Charlotte A Dunning,01000007, 36.1, 100.0, 13.1 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Framingham - Framingham High School,01000515, 133.2, 97.7, 16.3 to 1, 70.9, 89.6 +NA,NA,a-exp-i3,2017-18,Framingham - Fuller Middle,01000305, 39.7, 100.0, 12.6 to 1, 73.6, 89.9 +NA,NA,a-exp-i3,2017-18,Framingham - Hemenway,01000015, 42.2, 100.0, 13.5 to 1, 66.6, 95.0 +NA,NA,a-exp-i3,2017-18,Framingham - Juniper Hill School,01000001, 17.5, 100.0, 15.6 to 1, 88.6, 100.0 +NA,NA,a-exp-i3,2017-18,Framingham - King Elementary School,01000005, 20.9, 100.0, 13.5 to 1, 51.2, 83.7 +NA,NA,a-exp-i3,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 35.3, 100.0, 10.5 to 1, 74.8, 95.7 +NA,NA,a-exp-i3,2017-18,Framingham - Miriam F McCarthy School,01000050, 50.5, 100.0, 11.2 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,Framingham - Potter Road,01000039, 35.2, 100.0, 14.6 to 1, 90.0, 97.2 +NA,NA,a-exp-i3,2017-18,Framingham - Walsh Middle,01000310, 60.1, 97.0, 12.7 to 1, 80.4, 87.5 +NA,NA,a-exp-i3,2017-18,Framingham - Woodrow Wilson,01000055, 46.3, 97.8, 12.2 to 1, 67.4, 92.4 +NA,NA,a-exp-i3,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.3, 60.2, 8.6 to 1, 61.1, 95.7 +NA,NA,a-exp-i3,2017-18,Franklin - Annie Sullivan Middle School,01010040, 39.8, 100.0, 11.2 to 1, 86.6, 95.0 +NA,NA,a-exp-i3,2017-18,Franklin - Davis Thayer,01010035, 20.1, 100.0, 11.5 to 1, 86.5, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 8.0, 100.0, 13.0 to 1, 75.0, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Franklin High,01010505, 124.8, 98.6, 14.3 to 1, 78.3, 88.6 +NA,NA,a-exp-i3,2017-18,Franklin - Helen Keller Elementary,01010012, 28.7, 100.0, 14.0 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Horace Mann,01010405, 42.1, 98.8, 11.0 to 1, 76.6, 92.9 +NA,NA,a-exp-i3,2017-18,Franklin - J F Kennedy Memorial,01010013, 23.5, 100.0, 15.6 to 1, 98.9, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Jefferson Elementary,01010010, 24.4, 100.0, 13.8 to 1, 91.3, 95.9 +NA,NA,a-exp-i3,2017-18,Franklin - Oak Street Elementary,01010030, 25.3, 100.0, 15.4 to 1, 80.7, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Parmenter,01010032, 23.6, 100.0, 13.7 to 1, 87.3, 100.0 +NA,NA,a-exp-i3,2017-18,Franklin - Remington Middle,01010310, 41.1, 100.0, 10.7 to 1, 84.1, 92.2 +NA,NA,a-exp-i3,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 50.0, 95.1, 9.7 to 1, 88.6, 82.8 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 60.8, 100.0, 12.8 to 1, 78.5, 86.8 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 27.1, 100.0, 16.0 to 1, 85.0, 96.3 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 28.0, 100.0, 14.7 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 47.1, 100.0, 16.0 to 1, 93.5, 89.4 +NA,NA,a-exp-i3,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 29.1, 100.0, 15.1 to 1, 96.4, 100.0 +NA,NA,a-exp-i3,2017-18,Frontier - Frontier Regional,06700505, 51.5, 99.6, 12.1 to 1, 86.0, 94.2 +NA,NA,a-exp-i3,2017-18,Gardner - Elm Street School,01030001, 37.5, 100.0, 14.7 to 1, 86.7, 94.7 +NA,NA,a-exp-i3,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 6.9, 100.0, 10.7 to 1, 67.2, 70.8 +NA,NA,a-exp-i3,2017-18,Gardner - Gardner High,01030505, 57.6, 100.0, 12.0 to 1, 82.7, 81.3 +NA,NA,a-exp-i3,2017-18,Gardner - Gardner Middle School,01030405, 41.7, 100.0, 13.0 to 1, 78.4, 92.8 +NA,NA,a-exp-i3,2017-18,Gardner - Waterford Street,01030020, 28.9, 100.0, 16.2 to 1, 82.7, 96.5 +NA,NA,a-exp-i3,2017-18,Gateway - Chester Elementary,06720059, 11.0, 90.9, 10.8 to 1, 81.8, 100.0 +NA,NA,a-exp-i3,2017-18,Gateway - Gateway Regional High,06720505, 23.8, 97.9, 9.0 to 1, 76.9, 91.6 +NA,NA,a-exp-i3,2017-18,Gateway - Gateway Regional Middle School,06720405, 18.5, 97.3, 10.7 to 1, 92.1, 100.0 +NA,NA,a-exp-i3,2017-18,Gateway - Littleville Elementary School,06720143, 24.0, 100.0, 12.5 to 1, 95.8, 100.0 +NA,NA,a-exp-i3,2017-18,Georgetown - Georgetown High School,01050505, 40.8, 100.0, 9.8 to 1, 88.6, 89.9 +NA,NA,a-exp-i3,2017-18,Georgetown - Georgetown Middle School,01050305, 12.1, 100.0, 19.0 to 1, 90.9, 99.5 +NA,NA,a-exp-i3,2017-18,Georgetown - Penn Brook,01050010, 38.7, 99.9, 17.9 to 1, 88.1, 100.0 +NA,NA,a-exp-i3,2017-18,Georgetown - Perley Elementary,01050005, 4.0, 100.0, 30.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Gill Elementary,06740005, 9.3, 100.0, 14.4 to 1, 65.6, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Great Falls Middle,06740310, 21.6, 95.4, 11.3 to 1, 85.2, 94.5 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 14.6, 100.0, 11.1 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 22.2, 100.0, 9.7 to 1, 88.8, 100.0 +NA,NA,a-exp-i3,2017-18,Gill-Montague - Turners Fall High,06740505, 24.5, 95.9, 8.9 to 1, 92.7, 92.7 +NA,NA,a-exp-i3,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 42.9, 93.0, 11.9 to 1, 49.7, 65.5 +NA,NA,a-exp-i3,2017-18,Gloucester - Beeman Memorial,01070010, 28.6, 100.0, 11.9 to 1, 87.4, 96.5 +NA,NA,a-exp-i3,2017-18,Gloucester - East Gloucester Elementary,01070020, 18.7, 100.0, 11.5 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Gloucester - Gloucester High,01070505, 81.2, 96.3, 9.8 to 1, 90.1, 85.2 +NA,NA,a-exp-i3,2017-18,Gloucester - Gloucester PreSchool,01070025, 7.0, 100.0, 15.3 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Gloucester - Plum Cove School,01070042, 15.6, 100.0, 13.6 to 1, 74.4, 96.2 +NA,NA,a-exp-i3,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 53.0, 100.0, 12.6 to 1, 79.2, 92.5 +NA,NA,a-exp-i3,2017-18,Gloucester - Veterans Memorial,01070045, 25.2, 100.0, 8.2 to 1, 80.2, 100.0 +NA,NA,a-exp-i3,2017-18,Gloucester - West Parish,01070050, 27.5, 100.0, 12.9 to 1, 80.0, 96.4 +NA,NA,a-exp-i3,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 1.1, 100.0, 1.8 to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Grafton - Grafton High School,01100505, 65.2, 100.0, 12.8 to 1, 81.6, 92.3 +NA,NA,a-exp-i3,2017-18,Grafton - Grafton Middle,01100305, 38.4, 100.0, 13.6 to 1, 78.6, 97.4 +NA,NA,a-exp-i3,2017-18,Grafton - Millbury Street Elementary School,01100200, 51.8, 100.0, 12.7 to 1, 86.6, 96.0 +NA,NA,a-exp-i3,2017-18,Grafton - North Grafton Elementary,01100025, 20.4, 100.0, 12.4 to 1, 75.5, 97.6 +NA,NA,a-exp-i3,2017-18,Grafton - North Street Elementary School,01100030, 44.0, 100.0, 13.3 to 1, 81.8, 100.0 +NA,NA,a-exp-i3,2017-18,Grafton - South Grafton Elementary,01100005, 21.7, 100.0, 13.9 to 1, 93.1, 93.1 +NA,NA,a-exp-i3,2017-18,Granby - East Meadow,01110004, 11.0, 100.0, 13.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Granby - Granby Jr Sr High School,01110505, 28.0, 100.0, 12.2 to 1, 96.4, 96.4 +NA,NA,a-exp-i3,2017-18,Granby - West Street,01110010, 18.0, 100.0, 11.8 to 1, 96.7, 100.0 +NA,NA,a-exp-i3,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 130.5, 98.5, 10.7 to 1, 85.4, 82.8 +NA,NA,a-exp-i3,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 144.1, 96.7, 10.5 to 1, 81.3, 77.8 +NA,NA,a-exp-i3,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 182.0, 99.5, 12.5 to 1, 90.1, 84.1 +NA,NA,a-exp-i3,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 198.5, 98.5, 10.8 to 1, 90.4, 87.9 +NA,NA,a-exp-i3,2017-18,Greenfield - Discovery School at Four Corners,01140025, 21.9, 100.0, 11.5 to 1, 86.3, 95.4 +NA,NA,a-exp-i3,2017-18,Greenfield - Federal Street School,01140010, 22.7, 95.6, 10.9 to 1, 74.9, 84.6 +NA,NA,a-exp-i3,2017-18,Greenfield - Greenfield High,01140505, 42.7, 93.4, 10.8 to 1, 79.4, 83.6 +NA,NA,a-exp-i3,2017-18,Greenfield - Greenfield Middle,01140305, 41.8, 100.0, 9.1 to 1, 80.9, 80.4 +NA,NA,a-exp-i3,2017-18,Greenfield - Newton School,01140035, 22.3, 100.0, 10.9 to 1, 76.7, 95.5 +NA,NA,a-exp-i3,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 7.9, 100.0, 14.8 to 1, 83.5, 68.4 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Boutwell School,06730001, 4.0, 100.0, 15.8 to 1, 75.0, 100.0 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Florence Roche School,06730010, 34.8, 100.0, 14.7 to 1, 85.6, 97.1 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 56.2, 100.0, 14.0 to 1, 85.6, 92.1 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 58.1, 100.0, 13.2 to 1, 82.8, 94.8 +NA,NA,a-exp-i3,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 23.8, 100.0, 12.2 to 1, 87.4, 91.6 +NA,NA,a-exp-i3,2017-18,Hadley - Hadley Elementary,01170015, 23.5, 100.0, 12.2 to 1, 83.0, 91.5 +NA,NA,a-exp-i3,2017-18,Hadley - Hopkins Academy,01170505, 24.8, 100.0, 9.8 to 1, 74.6, 87.9 +NA,NA,a-exp-i3,2017-18,Halifax - Halifax Elementary,01180005, 39.0, 100.0, 15.3 to 1, 89.7, 100.0 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 16.0, 100.0, 16.1 to 1, 89.4, 96.9 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Cutler School,06750010, 21.8, 100.0, 13.3 to 1, 78.4, 99.1 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 47.7, 97.9, 11.7 to 1, 91.6, 95.8 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 36.8, 100.0, 10.4 to 1, 88.6, 90.2 +NA,NA,a-exp-i3,2017-18,Hamilton-Wenham - Winthrop School,06750015, 23.6, 100.0, 12.3 to 1, 95.8, 95.8 +NA,NA,a-exp-i3,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 45.2, 73.4, 10.9 to 1, 37.1, 72.6 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 20.6, 100.0, 12.1 to 1, 85.5, 100.0 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 22.5, 100.0, 15.4 to 1, 91.1, 100.0 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 73.4, 100.0, 15.1 to 1, 96.1, 94.6 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Soule Road,06800030, 21.7, 100.0, 15.9 to 1, 95.4, 95.4 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 19.6, 100.0, 15.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 10.6, 100.0, 9.9 to 1, 84.9, 90.6 +NA,NA,a-exp-i3,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 37.1, 100.0, 16.4 to 1, 91.9, 97.3 +NA,NA,a-exp-i3,2017-18,Hampshire - Hampshire Regional High,06830505, 73.1, 97.3, 9.6 to 1, 85.2, 94.3 +NA,NA,a-exp-i3,2017-18,Hancock - Hancock Elementary,01210005, 6.8, 97.1, 6.2 to 1, 50.0, 91.2 +NA,NA,a-exp-i3,2017-18,Hanover - Cedar Elementary,01220004, 32.0, 100.0, 12.9 to 1, 93.8, 100.0 +NA,NA,a-exp-i3,2017-18,Hanover - Center Elementary,01220005, 21.4, 97.7, 15.7 to 1, 88.3, 100.0 +NA,NA,a-exp-i3,2017-18,Hanover - Hanover High,01220505, 61.7, 98.4, 13.0 to 1, 91.2, 91.9 +NA,NA,a-exp-i3,2017-18,Hanover - Hanover Middle,01220305, 72.1, 97.2, 11.5 to 1, 88.8, 97.2 +NA,NA,a-exp-i3,2017-18,Hanover - Sylvester,01220015, 17.1, 100.0, 13.4 to 1, 82.5, 100.0 +NA,NA,a-exp-i3,2017-18,Harvard - Bromfield,01250505, 57.3, 100.0, 11.4 to 1, 86.0, 94.8 +NA,NA,a-exp-i3,2017-18,Harvard - Hildreth Elementary School,01250005, 31.5, 100.0, 14.0 to 1, 90.5, 93.7 +NA,NA,a-exp-i3,2017-18,Hatfield - Hatfield Elementary,01270005, 19.9, 100.0, 12.4 to 1, 90.5, 95.0 +NA,NA,a-exp-i3,2017-18,Hatfield - Smith Academy,01270505, 22.4, 98.2, 8.4 to 1, 82.1, 95.5 +NA,NA,a-exp-i3,2017-18,Haverhill - Bradford Elementary,01280008, 30.5, 96.7, 10.4 to 1, 86.9, 100.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 62.5, 100.0, 16.4 to 1, 85.6, 96.8 +NA,NA,a-exp-i3,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 8.2, 100.0, 13.1 to 1, 75.5, 87.8 +NA,NA,a-exp-i3,2017-18,Haverhill - Consentino Middle School,01280100, 63.3, 98.4, 15.4 to 1, 82.6, 92.1 +NA,NA,a-exp-i3,2017-18,Haverhill - Crowell,01280020, 8.9, 100.0, 10.9 to 1, 67.4, 83.1 +NA,NA,a-exp-i3,2017-18,Haverhill - Dr Paul Nettle,01280050, 36.7, 100.0, 13.6 to 1, 83.1, 88.3 +NA,NA,a-exp-i3,2017-18,Haverhill - Golden Hill,01280026, 39.6, 97.5, 12.6 to 1, 80.8, 94.9 +NA,NA,a-exp-i3,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 9.1, 100.0, 11.9 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Haverhill Alternative School,01280033, 8.0, 100.0, 5.8 to 1, 75.0, 75.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Haverhill High,01280505, 136.7, 95.6, 13.4 to 1, 77.9, 89.0 +NA,NA,a-exp-i3,2017-18,Haverhill - John G Whittier,01280085, 29.5, 100.0, 18.4 to 1, 89.8, 91.5 +NA,NA,a-exp-i3,2017-18,Haverhill - Moody,01280045, 13.5, 100.0, 16.3 to 1, 72.0, 77.9 +NA,NA,a-exp-i3,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 41.1, 100.0, 12.3 to 1, 73.2, 100.0 +NA,NA,a-exp-i3,2017-18,Haverhill - TEACH,01280073, 7.0, 100.0, 7.1 to 1, 57.1, 85.7 +NA,NA,a-exp-i3,2017-18,Haverhill - Tilton,01280075, 42.8, 100.0, 12.6 to 1, 88.3, 93.0 +NA,NA,a-exp-i3,2017-18,Haverhill - Walnut Square,01280080, 8.5, 100.0, 16.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hawlemont - Hawlemont Regional,06850005, 11.6, 86.6, 14.1 to 1, 64.7, 91.4 +NA,NA,a-exp-i3,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 13.9, 63.9, 15.4 to 1, 42.2, 78.3 +NA,NA,a-exp-i3,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 25.0, 80.0, 12.1 to 1, 56.0, 84.0 +NA,NA,a-exp-i3,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 19.9, 86.5, 10.9 to 1, 78.9, 100.0 +NA,NA,a-exp-i3,2017-18,Hingham - East Elementary School,01310005, 35.8, 100.0, 14.7 to 1, 87.4, 100.0 +NA,NA,a-exp-i3,2017-18,Hingham - Hingham High,01310505, 86.0, 100.0, 14.6 to 1, 92.9, 91.4 +NA,NA,a-exp-i3,2017-18,Hingham - Hingham Middle School,01310410, 68.4, 100.0, 15.7 to 1, 93.6, 95.6 +NA,NA,a-exp-i3,2017-18,Hingham - Plymouth River,01310019, 29.9, 100.0, 15.7 to 1, 90.0, 96.7 +NA,NA,a-exp-i3,2017-18,Hingham - South Elementary,01310020, 35.7, 100.0, 14.8 to 1, 84.6, 97.2 +NA,NA,a-exp-i3,2017-18,Hingham - Wm L Foster Elementary,01310010, 31.1, 100.0, 14.3 to 1, 100.0, 96.8 +NA,NA,a-exp-i3,2017-18,Holbrook - Holbrook Middle High School,01330505, 39.5, 100.0, 14.9 to 1, 83.9, 89.9 +NA,NA,a-exp-i3,2017-18,Holbrook - John F Kennedy,01330018, 46.2, 100.0, 13.5 to 1, 87.0, 100.0 +NA,NA,a-exp-i3,2017-18,Holland - Holland Elementary,01350005, 18.3, 100.0, 12.7 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Holliston - Holliston High,01360505, 64.9, 99.5, 12.3 to 1, 91.8, 96.3 +NA,NA,a-exp-i3,2017-18,Holliston - Miller School,01360007, 49.2, 98.0, 13.9 to 1, 79.6, 93.7 +NA,NA,a-exp-i3,2017-18,Holliston - Placentino Elementary,01360010, 48.2, 97.9, 15.5 to 1, 90.5, 93.0 +NA,NA,a-exp-i3,2017-18,Holliston - Robert H. Adams Middle School,01360305, 52.2, 100.0, 13.0 to 1, 86.2, 84.3 +NA,NA,a-exp-i3,2017-18,Holyoke - E N White Elementary,01370045, 36.7, 89.1, 13.7 to 1, 62.2, 80.9 +NA,NA,a-exp-i3,2017-18,Holyoke - H.B. Lawrence School,01370070, 20.6, 80.6, 13.5 to 1, 46.6, 63.6 +NA,NA,a-exp-i3,2017-18,Holyoke - Holyoke High,01370505, 87.2, 97.7, 15.3 to 1, 76.4, 84.4 +NA,NA,a-exp-i3,2017-18,Holyoke - Joseph Metcalf School,01370003, 13.9, 92.8, 18.6 to 1, 78.4, 92.8 +NA,NA,a-exp-i3,2017-18,Holyoke - Kelly Elementary,01370040, 36.7, 89.1, 15.3 to 1, 56.4, 67.3 +NA,NA,a-exp-i3,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 42.6, 85.9, 12.7 to 1, 71.1, 83.6 +NA,NA,a-exp-i3,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.0, 100.0, 14.0 to 1, 73.3, 86.7 +NA,NA,a-exp-i3,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 38.0, 86.8, 12.2 to 1, 68.4, 73.7 +NA,NA,a-exp-i3,2017-18,Holyoke - Morgan Full Service Community School,01370025, 31.0, 90.3, 13.4 to 1, 58.1, 77.4 +NA,NA,a-exp-i3,2017-18,Holyoke - William R. Peck School,01370030, 34.0, 88.2, 10.0 to 1, 50.0, 67.7 +NA,NA,a-exp-i3,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 28.0, 82.1, 6.5 to 1, 62.5, 44.6 +NA,NA,a-exp-i3,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 52.1, 69.4, 13.5 to 1, 54.1, 84.6 +NA,NA,a-exp-i3,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 43.7, 100.0, 11.6 to 1, 85.1, 94.3 +NA,NA,a-exp-i3,2017-18,Hopedale - Memorial,01380010, 41.9, 100.0, 13.0 to 1, 90.2, 92.6 +NA,NA,a-exp-i3,2017-18,Hopedale - Park Street School,01380003, 2.6, 84.6, 31.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hopkinton - Center,01390005, 32.9, 100.0, 13.9 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,Hopkinton - Elmwood,01390010, 34.4, 100.0, 14.6 to 1, 85.5, 100.0 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkins Elementary School,01390015, 38.0, 100.0, 14.2 to 1, 94.3, 97.4 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkinton High,01390505, 81.4, 100.0, 14.2 to 1, 93.4, 96.1 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkinton Middle School,01390305, 65.6, 100.0, 12.3 to 1, 91.7, 97.3 +NA,NA,a-exp-i3,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 4.0, 100.0, 14.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Hudson - C A Farley,01410030, 39.6, 100.0, 11.6 to 1, 92.4, 97.2 +NA,NA,a-exp-i3,2017-18,Hudson - David J. Quinn Middle School,01410410, 57.4, 98.3, 11.3 to 1, 84.0, 90.6 +NA,NA,a-exp-i3,2017-18,Hudson - Forest Avenue Elementary,01410015, 28.8, 100.0, 12.3 to 1, 89.6, 99.3 +NA,NA,a-exp-i3,2017-18,Hudson - Hudson High,01410505, 84.0, 98.8, 11.1 to 1, 89.3, 88.1 +NA,NA,a-exp-i3,2017-18,Hudson - Mulready Elementary,01410007, 24.2, 100.0, 9.8 to 1, 89.3, 91.3 +NA,NA,a-exp-i3,2017-18,Hull - Hull High,01420505, 29.8, 100.0, 9.9 to 1, 77.9, 84.6 +NA,NA,a-exp-i3,2017-18,Hull - Lillian M Jacobs,01420015, 34.0, 100.0, 12.1 to 1, 91.2, 97.1 +NA,NA,a-exp-i3,2017-18,Hull - Memorial Middle,01420305, 19.9, 100.0, 9.5 to 1, 74.8, 74.8 +NA,NA,a-exp-i3,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 75.4, 88.4, 10.6 to 1, 66.1, 81.9 +NA,NA,a-exp-i3,2017-18,Ipswich - Ipswich High,01440505, 47.4, 99.2, 10.9 to 1, 79.7, 90.7 +NA,NA,a-exp-i3,2017-18,Ipswich - Ipswich Middle School,01440305, 41.9, 100.0, 10.5 to 1, 87.3, 92.8 +NA,NA,a-exp-i3,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 32.9, 100.0, 12.2 to 1, 86.2, 97.0 +NA,NA,a-exp-i3,2017-18,Ipswich - Winthrop,01440015, 33.7, 100.0, 11.2 to 1, 77.9, 100.0 +NA,NA,a-exp-i3,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 55.0, 49.1, 10.1 to 1, 21.8, 78.2 +NA,NA,a-exp-i3,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 109.6, 56.3, 12.2 to 1, 17.8, 84.4 +NA,NA,a-exp-i3,2017-18,King Philip - King Philip Middle School,06900510, 45.4, 100.0, 16.3 to 1, 84.6, 93.4 +NA,NA,a-exp-i3,2017-18,King Philip - King Philip Regional High,06900505, 81.7, 100.0, 15.9 to 1, 76.0, 83.7 +NA,NA,a-exp-i3,2017-18,Kingston - Kingston Elementary,01450005, 30.2, 100.0, 14.9 to 1, 72.8, 100.0 +NA,NA,a-exp-i3,2017-18,Kingston - Kingston Intermediate,01450020, 36.0, 100.0, 15.9 to 1, 91.7, 100.0 +NA,NA,a-exp-i3,2017-18,Lanesborough - Lanesborough Elementary,01480005, 19.7, 100.0, 10.7 to 1, 66.5, 86.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Alexander B Bruce,01490015, 41.6, 100.0, 12.4 to 1, 66.3, 78.4 +NA,NA,a-exp-i3,2017-18,Lawrence - Arlington Middle School,01490017, 39.0, 97.4, 15.0 to 1, 74.4, 74.4 +NA,NA,a-exp-i3,2017-18,Lawrence - Community Day Arlington,01490009, 59.5, 91.6, 9.9 to 1, 29.4, 74.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Edward F. Parthum,01490053, 39.4, 94.9, 15.8 to 1, 72.1, 84.7 +NA,NA,a-exp-i3,2017-18,Lawrence - Emily G Wetherbee,01490080, 47.0, 97.9, 14.9 to 1, 76.6, 78.7 +NA,NA,a-exp-i3,2017-18,Lawrence - Francis M Leahy,01490040, 35.0, 97.1, 14.8 to 1, 77.2, 94.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Frost Middle School,01490525, 32.1, 100.0, 15.8 to 1, 90.7, 87.5 +NA,NA,a-exp-i3,2017-18,Lawrence - Gerard A. Guilmette,01490022, 41.1, 95.1, 12.5 to 1, 48.9, 90.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Guilmette Middle School,01490025, 45.0, 100.0, 10.8 to 1, 60.0, 69.1 +NA,NA,a-exp-i3,2017-18,Lawrence - High School Learning Center,01490536, 17.8, 96.6, 10.5 to 1, 85.4, 79.8 +NA,NA,a-exp-i3,2017-18,Lawrence - James F Hennessey,01490020, 26.1, 96.2, 13.3 to 1, 73.2, 92.4 +NA,NA,a-exp-i3,2017-18,Lawrence - John Breen School,01490003, 19.1, 100.0, 17.5 to 1, 79.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lawrence - John K Tarbox,01490075, 21.8, 95.4, 15.0 to 1, 81.6, 90.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 12.0, 91.7, 13.6 to 1, 91.7, 83.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 17.1, 100.0, 12.4 to 1, 88.3, 88.3 +NA,NA,a-exp-i3,2017-18,Lawrence - Lawrence High School,01490515, 252.9, 91.1, 13.1 to 1, 61.1, 76.8 +NA,NA,a-exp-i3,2017-18,Lawrence - Oliver Partnership School,01490048, 35.0, 91.4, 12.8 to 1, 71.4, 88.6 +NA,NA,a-exp-i3,2017-18,Lawrence - Parthum Middle School,01490027, 39.0, 97.4, 14.9 to 1, 69.2, 76.9 +NA,NA,a-exp-i3,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 8.3, 59.9, 15.0 to 1, 21.6, 49.1 +NA,NA,a-exp-i3,2017-18,Lawrence - Robert Frost,01490018, 40.0, 90.0, 14.8 to 1, 70.0, 80.0 +NA,NA,a-exp-i3,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 15.1, 100.0, 12.6 to 1, 60.2, 93.4 +NA,NA,a-exp-i3,2017-18,Lawrence - School for Exceptional Studies,01490537, 32.6, 78.5, 4.6 to 1, 41.7, 61.6 +NA,NA,a-exp-i3,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 49.9, 90.0, 15.0 to 1, 60.0, 82.0 +NA,NA,a-exp-i3,2017-18,Lawrence - Spark Academy,01490085, 41.1, 65.9, 11.2 to 1, 29.4, 58.6 +NA,NA,a-exp-i3,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 26.0, 88.5, 11.4 to 1, 53.8, 30.8 +NA,NA,a-exp-i3,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 27.0, 81.5, 12.7 to 1, 22.2, 63.0 +NA,NA,a-exp-i3,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 60.9, 95.8, 12.1 to 1, 59.6, 91.7 +NA,NA,a-exp-i3,2017-18,Lee - Lee Elementary,01500025, 34.4, 100.0, 10.0 to 1, 85.5, 97.1 +NA,NA,a-exp-i3,2017-18,Lee - Lee Middle/High School,01500505, 35.4, 97.2, 9.8 to 1, 88.7, 88.7 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester High,01510505, 35.5, 97.2, 13.0 to 1, 81.2, 92.9 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester Memorial Elementary,01510005, 21.5, 100.0, 15.5 to 1, 88.3, 100.0 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester Middle,01510015, 30.0, 100.0, 13.7 to 1, 86.7, 93.3 +NA,NA,a-exp-i3,2017-18,Leicester - Leicester Primary School,01510010, 24.5, 100.0, 14.8 to 1, 81.7, 100.0 +NA,NA,a-exp-i3,2017-18,Lenox - Lenox Memorial High,01520505, 50.9, 100.0, 8.7 to 1, 92.6, 87.8 +NA,NA,a-exp-i3,2017-18,Lenox - Morris,01520015, 29.0, 100.0, 10.7 to 1, 93.1, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Bennett,01530003, 6.0, 83.3, 14.3 to 1, 50.0, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Center For Technical Education Innovation,01530605, 32.1, 93.5, 22.3 to 1, 93.5, 81.0 +NA,NA,a-exp-i3,2017-18,Leominster - Fall Brook,01530007, 41.5, 100.0, 15.8 to 1, 92.8, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Frances Drake School,01530010, 41.1, 97.6, 13.2 to 1, 87.8, 99.8 +NA,NA,a-exp-i3,2017-18,Leominster - Johnny Appleseed,01530025, 42.5, 100.0, 15.3 to 1, 92.9, 97.6 +NA,NA,a-exp-i3,2017-18,Leominster - Leominster Center for Excellence,01530515, 5.0, 100.0, 10.0 to 1, 80.0, 40.0 +NA,NA,a-exp-i3,2017-18,Leominster - Leominster High School,01530505, 99.8, 97.0, 10.6 to 1, 87.9, 90.8 +NA,NA,a-exp-i3,2017-18,Leominster - Lincoln School,01530005, 5.0, 100.0, 9.6 to 1, 80.0, 80.0 +NA,NA,a-exp-i3,2017-18,Leominster - Northwest,01530030, 44.0, 97.7, 15.6 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Priest Street,01530040, 8.0, 100.0, 15.6 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Leominster - Samoset School,01530045, 37.0, 100.0, 13.3 to 1, 83.8, 86.5 +NA,NA,a-exp-i3,2017-18,Leominster - Sky View Middle School,01530320, 56.0, 98.2, 16.0 to 1, 87.5, 91.1 +NA,NA,a-exp-i3,2017-18,Leverett - Leverett Elementary,01540005, 18.0, 100.0, 6.9 to 1, 77.8, 94.4 +NA,NA,a-exp-i3,2017-18,Lexington - Bowman,01550008, 47.6, 100.0, 11.8 to 1, 76.9, 100.0 +NA,NA,a-exp-i3,2017-18,Lexington - Bridge,01550006, 45.2, 100.0, 12.7 to 1, 79.7, 91.1 +NA,NA,a-exp-i3,2017-18,Lexington - Fiske,01550015, 37.2, 100.0, 13.5 to 1, 91.7, 97.3 +NA,NA,a-exp-i3,2017-18,Lexington - Harrington,01550030, 35.8, 100.0, 13.4 to 1, 71.3, 97.2 +NA,NA,a-exp-i3,2017-18,Lexington - Jonas Clarke Middle,01550305, 86.5, 100.0, 10.7 to 1, 83.6, 96.3 +NA,NA,a-exp-i3,2017-18,Lexington - Joseph Estabrook,01550010, 42.3, 100.0, 13.5 to 1, 75.4, 99.5 +NA,NA,a-exp-i3,2017-18,Lexington - Lexington Children's Place,01550001, 6.9, 100.0, 10.4 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lexington - Lexington High,01550505, 170.9, 99.6, 12.9 to 1, 81.9, 91.7 +NA,NA,a-exp-i3,2017-18,Lexington - Maria Hastings,01550035, 37.8, 100.0, 12.3 to 1, 78.7, 94.7 +NA,NA,a-exp-i3,2017-18,Lexington - Wm Diamond Middle,01550310, 79.3, 100.0, 11.2 to 1, 83.5, 92.4 +NA,NA,a-exp-i3,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 7.2, 76.4, 12.5 to 1, 23.6, 44.4 +NA,NA,a-exp-i3,2017-18,Lincoln - Hanscom Middle,01570305, 25.8, 100.0, 10.5 to 1, 87.5, 98.6 +NA,NA,a-exp-i3,2017-18,Lincoln - Hanscom Primary,01570006, 28.9, 100.0, 11.5 to 1, 83.9, 97.5 +NA,NA,a-exp-i3,2017-18,Lincoln - Lincoln School,01570025, 63.2, 100.0, 9.3 to 1, 90.8, 99.2 +NA,NA,a-exp-i3,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.2, 100.0, 12.0 to 1, 92.2, 96.7 +NA,NA,a-exp-i3,2017-18,Littleton - Littleton High School,01580505, 36.6, 99.5, 12.6 to 1, 86.1, 97.3 +NA,NA,a-exp-i3,2017-18,Littleton - Littleton Middle School,01580305, 26.9, 100.0, 13.5 to 1, 85.2, 85.6 +NA,NA,a-exp-i3,2017-18,Littleton - Russell St Elementary,01580015, 25.9, 100.0, 14.9 to 1, 71.0, 98.1 +NA,NA,a-exp-i3,2017-18,Littleton - Shaker Lane Elementary,01580005, 30.1, 100.0, 14.9 to 1, 86.7, 91.7 +NA,NA,a-exp-i3,2017-18,Longmeadow - Blueberry Hill,01590005, 35.8, 100.0, 12.3 to 1, 94.4, 97.2 +NA,NA,a-exp-i3,2017-18,Longmeadow - Center,01590010, 34.5, 100.0, 11.7 to 1, 81.7, 94.8 +NA,NA,a-exp-i3,2017-18,Longmeadow - Glenbrook Middle,01590017, 27.7, 98.7, 12.4 to 1, 87.9, 96.4 +NA,NA,a-exp-i3,2017-18,Longmeadow - Longmeadow High,01590505, 76.3, 100.0, 12.6 to 1, 96.1, 97.4 +NA,NA,a-exp-i3,2017-18,Longmeadow - Williams Middle,01590305, 27.7, 97.7, 11.9 to 1, 89.8, 96.4 +NA,NA,a-exp-i3,2017-18,Longmeadow - Wolf Swamp Road,01590025, 33.3, 100.0, 12.1 to 1, 94.0, 97.0 +NA,NA,a-exp-i3,2017-18,Lowell - Abraham Lincoln,01600020, 35.0, 100.0, 13.9 to 1, 82.9, 97.1 +NA,NA,a-exp-i3,2017-18,Lowell - B.F. Butler Middle School,01600310, 43.4, 100.0, 12.3 to 1, 76.5, 76.1 +NA,NA,a-exp-i3,2017-18,Lowell - Bartlett Community Partnership,01600090, 39.8, 100.0, 13.1 to 1, 83.3, 81.6 +NA,NA,a-exp-i3,2017-18,Lowell - Charles W Morey,01600030, 35.9, 97.2, 14.3 to 1, 97.2, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 37.8, 100.0, 13.3 to 1, 84.1, 97.4 +NA,NA,a-exp-i3,2017-18,Lowell - Dr An Wang School,01600345, 49.5, 98.0, 14.0 to 1, 87.5, 87.5 +NA,NA,a-exp-i3,2017-18,Lowell - Dr Gertrude Bailey,01600002, 33.0, 97.0, 14.8 to 1, 94.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Greenhalge,01600015, 37.0, 97.3, 13.6 to 1, 70.2, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Henry J Robinson Middle,01600330, 50.8, 99.8, 13.1 to 1, 80.4, 80.3 +NA,NA,a-exp-i3,2017-18,Lowell - James S Daley Middle School,01600315, 46.6, 100.0, 15.0 to 1, 89.3, 97.9 +NA,NA,a-exp-i3,2017-18,Lowell - James Sullivan Middle School,01600340, 46.5, 100.0, 13.8 to 1, 87.1, 89.2 +NA,NA,a-exp-i3,2017-18,Lowell - John J Shaughnessy,01600050, 34.0, 97.1, 13.6 to 1, 82.3, 94.1 +NA,NA,a-exp-i3,2017-18,Lowell - Joseph McAvinnue,01600010, 34.0, 100.0, 14.3 to 1, 88.2, 94.1 +NA,NA,a-exp-i3,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 48.9, 100.0, 14.0 to 1, 90.8, 86.7 +NA,NA,a-exp-i3,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 7.1, 100.0, 3.2 to 1, 65.2, 65.2 +NA,NA,a-exp-i3,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 7.1, 85.9, 5.1 to 1, 84.3, 84.3 +NA,NA,a-exp-i3,2017-18,Lowell - Lowell Day School on Broadway,01600605, 8.0, 75.0, 3.3 to 1, 37.6, 50.0 +NA,NA,a-exp-i3,2017-18,Lowell - Lowell High,01600505, 213.9, 95.3, 14.7 to 1, 84.4, 90.6 +NA,NA,a-exp-i3,2017-18,Lowell - Moody Elementary,01600027, 19.3, 94.8, 12.6 to 1, 92.2, 94.8 +NA,NA,a-exp-i3,2017-18,Lowell - Pawtucketville Memorial,01600036, 36.0, 100.0, 14.2 to 1, 80.5, 88.8 +NA,NA,a-exp-i3,2017-18,Lowell - Peter W Reilly,01600040, 40.2, 100.0, 13.5 to 1, 95.0, 97.5 +NA,NA,a-exp-i3,2017-18,Lowell - Pyne Arts,01600018, 36.0, 97.2, 13.6 to 1, 77.2, 85.5 +NA,NA,a-exp-i3,2017-18,Lowell - Rogers STEM Academy,01600005, 44.9, 100.0, 15.2 to 1, 82.2, 93.4 +NA,NA,a-exp-i3,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 35.7, 100.0, 13.5 to 1, 91.6, 97.2 +NA,NA,a-exp-i3,2017-18,Lowell - The Career Academy,01600515, 9.4, 100.0, 12.1 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell - Washington,01600055, 20.5, 95.1, 12.1 to 1, 82.9, 100.0 +NA,NA,a-exp-i3,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.5, 95.3, 12.8 to 1, 46.4, 89.0 +NA,NA,a-exp-i3,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 10.5, 52.4, 8.7 to 1, 66.7, 71.4 +NA,NA,a-exp-i3,2017-18,Ludlow - Chapin Street Elementary School,01610020, 25.5, 100.0, 12.6 to 1, 98.0, 100.0 +NA,NA,a-exp-i3,2017-18,Ludlow - East Street Elementary School,01610010, 32.5, 100.0, 12.3 to 1, 96.9, 96.9 +NA,NA,a-exp-i3,2017-18,Ludlow - Ludlow Senior High,01610505, 79.9, 99.9, 11.2 to 1, 94.9, 90.0 +NA,NA,a-exp-i3,2017-18,Ludlow - Paul R Baird Middle,01610305, 56.8, 100.0, 11.2 to 1, 97.9, 96.5 +NA,NA,a-exp-i3,2017-18,Ludlow - Veterans Park Elementary,01610023, 28.7, 100.0, 13.7 to 1, 80.8, 100.0 +NA,NA,a-exp-i3,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 2.0, 100.0, 4.4 to 1, 50.7, 100.0 +NA,NA,a-exp-i3,2017-18,Lunenburg - Lunenburg High,01620505, 34.6, 100.0, 12.8 to 1, 94.2, 94.2 +NA,NA,a-exp-i3,2017-18,Lunenburg - Lunenburg Middle School,01620305, 28.9, 100.0, 14.7 to 1, 82.3, 86.1 +NA,NA,a-exp-i3,2017-18,Lunenburg - Lunenburg Primary School,01620010, 25.0, 100.0, 15.7 to 1, 89.9, 100.0 +NA,NA,a-exp-i3,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 24.5, 100.0, 15.2 to 1, 77.6, 98.0 +NA,NA,a-exp-i3,2017-18,Lynn - A Drewicz Elementary,01630016, 34.6, 100.0, 14.2 to 1, 57.0, 91.0 +NA,NA,a-exp-i3,2017-18,Lynn - Aborn,01630011, 16.9, 100.0, 15.0 to 1, 97.4, 100.0 +NA,NA,a-exp-i3,2017-18,Lynn - Breed Middle School,01630405, 88.0, 93.2, 15.1 to 1, 67.9, 79.3 +NA,NA,a-exp-i3,2017-18,Lynn - Brickett Elementary,01630020, 21.3, 100.0, 14.2 to 1, 88.0, 97.6 +NA,NA,a-exp-i3,2017-18,Lynn - Capt William G Shoemaker,01630090, 30.5, 100.0, 10.8 to 1, 93.1, 99.3 +NA,NA,a-exp-i3,2017-18,Lynn - Classical High,01630505, 101.3, 95.1, 16.4 to 1, 86.9, 84.0 +NA,NA,a-exp-i3,2017-18,Lynn - Cobbet Elementary,01630035, 43.5, 100.0, 14.7 to 1, 74.7, 93.1 +NA,NA,a-exp-i3,2017-18,Lynn - E J Harrington,01630045, 46.4, 97.8, 13.6 to 1, 76.1, 99.8 +NA,NA,a-exp-i3,2017-18,Lynn - Early Childhood Center,01630004, 23.0, 100.0, 13.0 to 1, 73.8, 85.8 +NA,NA,a-exp-i3,2017-18,Lynn - Edward A Sisson,01630095, 27.7, 100.0, 15.6 to 1, 99.6, 99.6 +NA,NA,a-exp-i3,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 26.2, 96.2, 4.1 to 1, 88.5, 77.1 +NA,NA,a-exp-i3,2017-18,Lynn - Hood,01630055, 30.9, 100.0, 15.8 to 1, 58.6, 94.2 +NA,NA,a-exp-i3,2017-18,Lynn - Ingalls,01630060, 42.3, 100.0, 15.4 to 1, 76.4, 88.2 +NA,NA,a-exp-i3,2017-18,Lynn - Julia F Callahan,01630030, 31.6, 100.0, 14.5 to 1, 60.8, 82.0 +NA,NA,a-exp-i3,2017-18,Lynn - Lincoln-Thomson,01630070, 19.7, 100.0, 12.2 to 1, 97.6, 97.6 +NA,NA,a-exp-i3,2017-18,Lynn - Lynn English High,01630510, 105.9, 97.2, 16.3 to 1, 85.7, 84.8 +NA,NA,a-exp-i3,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 81.8, 91.4, 12.3 to 1, 77.7, 80.0 +NA,NA,a-exp-i3,2017-18,Lynn - Lynn Woods,01630075, 10.4, 100.0, 15.7 to 1, 96.6, 96.6 +NA,NA,a-exp-i3,2017-18,Lynn - Pickering Middle,01630420, 47.4, 100.0, 13.0 to 1, 89.2, 91.3 +NA,NA,a-exp-i3,2017-18,Lynn - Robert L Ford,01630050, 32.1, 96.9, 15.3 to 1, 53.9, 85.0 +NA,NA,a-exp-i3,2017-18,Lynn - Sewell-Anderson,01630085, 22.2, 100.0, 14.0 to 1, 95.7, 97.5 +NA,NA,a-exp-i3,2017-18,Lynn - Thurgood Marshall Mid,01630305, 85.0, 96.5, 15.2 to 1, 73.8, 71.8 +NA,NA,a-exp-i3,2017-18,Lynn - Tracy,01630100, 31.7, 100.0, 13.7 to 1, 86.6, 97.5 +NA,NA,a-exp-i3,2017-18,Lynn - Washington Elementary School,01630005, 32.3, 100.0, 14.5 to 1, 72.4, 82.2 +NA,NA,a-exp-i3,2017-18,Lynn - William R Fallon,01630080, 9.6, 100.0, 5.2 to 1, 89.6, 100.0 +NA,NA,a-exp-i3,2017-18,Lynn - Wm P Connery,01630040, 41.7, 97.6, 15.4 to 1, 78.6, 86.9 +NA,NA,a-exp-i3,2017-18,Lynnfield - Huckleberry Hill,01640010, 29.0, 100.0, 14.7 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Lynnfield - Lynnfield High,01640505, 53.2, 100.0, 12.2 to 1, 92.7, 98.1 +NA,NA,a-exp-i3,2017-18,Lynnfield - Lynnfield Middle School,01640405, 52.3, 100.0, 12.9 to 1, 88.1, 97.6 +NA,NA,a-exp-i3,2017-18,Lynnfield - Lynnfield Preschool,01640005, 1.6, 100.0, 23.8 to 1, 37.5, 100.0 +NA,NA,a-exp-i3,2017-18,Lynnfield - Summer Street,01640020, 29.1, 100.0, 14.8 to 1, 80.8, 100.0 +NA,NA,a-exp-i3,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 102.9, 61.5, 11.9 to 1, 32.4, 90.3 +NA,NA,a-exp-i3,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.0 to 1, 83.3, 83.3 +NA,NA,a-exp-i3,2017-18,Malden - Beebe,01650003, 63.5, 100.0, 14.1 to 1, 93.7, 96.9 +NA,NA,a-exp-i3,2017-18,Malden - Ferryway,01650013, 60.2, 100.0, 14.5 to 1, 81.7, 98.3 +NA,NA,a-exp-i3,2017-18,Malden - Forestdale,01650027, 47.5, 100.0, 11.5 to 1, 74.7, 95.8 +NA,NA,a-exp-i3,2017-18,Malden - Linden,01650047, 66.5, 100.0, 13.1 to 1, 77.4, 95.5 +NA,NA,a-exp-i3,2017-18,Malden - Malden Early Learning Center,01650049, 22.0, 100.0, 14.3 to 1, 72.7, 100.0 +NA,NA,a-exp-i3,2017-18,Malden - Malden High,01650505, 115.0, 99.1, 15.8 to 1, 88.7, 94.8 +NA,NA,a-exp-i3,2017-18,Malden - Salemwood,01650057, 83.0, 100.0, 14.7 to 1, 74.7, 86.8 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 15.7, 100.0, 14.5 to 1, 94.3, 94.3 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 42.6, 97.7, 10.4 to 1, 90.5, 90.6 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 33.3, 100.0, 11.2 to 1, 77.6, 98.8 +NA,NA,a-exp-i3,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 23.2, 100.0, 14.8 to 1, 95.7, 95.7 +NA,NA,a-exp-i3,2017-18,Mansfield - Everett W Robinson,01670007, 51.0, 100.0, 14.0 to 1, 92.2, 98.0 +NA,NA,a-exp-i3,2017-18,Mansfield - Harold L Qualters Middle,01670035, 82.4, 100.0, 11.4 to 1, 96.4, 94.6 +NA,NA,a-exp-i3,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 58.4, 100.0, 13.5 to 1, 92.5, 95.9 +NA,NA,a-exp-i3,2017-18,Mansfield - Mansfield High,01670505, 101.2, 100.0, 13.0 to 1, 95.0, 92.1 +NA,NA,a-exp-i3,2017-18,Mansfield - Roland Green School,01670003, 6.0, 100.0, 16.2 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead - Elbridge Gerry,01680015, 7.4, 100.0, 18.7 to 1, 86.4, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead - Glover,01680020, 28.7, 100.0, 12.9 to 1, 80.5, 93.7 +NA,NA,a-exp-i3,2017-18,Marblehead - L H Coffin,01680010, 13.0, 92.3, 11.7 to 1, 88.5, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead - Malcolm L Bell,01680005, 25.7, 100.0, 10.6 to 1, 89.9, 97.7 +NA,NA,a-exp-i3,2017-18,Marblehead - Marblehead High,01680505, 88.0, 100.0, 11.8 to 1, 81.0, 90.9 +NA,NA,a-exp-i3,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 40.5, 100.0, 12.1 to 1, 87.4, 92.6 +NA,NA,a-exp-i3,2017-18,Marblehead - Village School,01680016, 57.7, 100.0, 11.0 to 1, 80.9, 100.0 +NA,NA,a-exp-i3,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 20.5, 87.3, 11.2 to 1, 51.2, 65.9 +NA,NA,a-exp-i3,2017-18,Marion - Sippican,01690005, 34.8, 100.0, 13.0 to 1, 80.5, 97.7 +NA,NA,a-exp-i3,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 118.8, 99.2, 11.0 to 1, 83.2, 94.9 +NA,NA,a-exp-i3,2017-18,Marlborough - Charles Jaworek School,01700030, 62.3, 100.0, 12.2 to 1, 70.9, 93.6 +NA,NA,a-exp-i3,2017-18,Marlborough - Early Childhood Center,01700006, 10.0, 100.0, 17.4 to 1, 90.0, 100.0 +NA,NA,a-exp-i3,2017-18,Marlborough - Francis J Kane,01700008, 48.9, 100.0, 12.6 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Marlborough - Marlborough High,01700505, 98.2, 100.0, 11.3 to 1, 83.3, 90.4 +NA,NA,a-exp-i3,2017-18,Marlborough - Richer,01700025, 48.8, 100.0, 12.4 to 1, 75.6, 98.0 +NA,NA,a-exp-i3,2017-18,Marshfield - Daniel Webster,01710015, 27.0, 100.0, 14.9 to 1, 88.9, 100.0 +NA,NA,a-exp-i3,2017-18,Marshfield - Eames Way School,01710005, 18.5, 100.0, 13.1 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Marshfield - Furnace Brook Middle,01710310, 76.2, 100.0, 12.7 to 1, 86.9, 93.4 +NA,NA,a-exp-i3,2017-18,Marshfield - Gov Edward Winslow,01710020, 32.1, 100.0, 12.9 to 1, 87.5, 93.8 +NA,NA,a-exp-i3,2017-18,Marshfield - Marshfield High,01710505, 108.3, 99.1, 12.4 to 1, 87.9, 91.7 +NA,NA,a-exp-i3,2017-18,Marshfield - Martinson Elementary,01710025, 36.6, 100.0, 11.7 to 1, 88.2, 97.3 +NA,NA,a-exp-i3,2017-18,Marshfield - South River,01710010, 26.1, 100.0, 14.3 to 1, 92.3, 100.0 +NA,NA,a-exp-i3,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 71.2, 97.3, 8.9 to 1, 86.7, 85.3 +NA,NA,a-exp-i3,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 16.6, 93.1, 11.1 to 1, 76.0, 57.4 +NA,NA,a-exp-i3,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 34.9, 75.4, 10.4 to 1, 69.4, 88.5 +NA,NA,a-exp-i3,2017-18,Masconomet - Masconomet Regional High School,07050505, 80.8, 100.0, 14.2 to 1, 93.3, 96.0 +NA,NA,a-exp-i3,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 48.1, 99.2, 13.6 to 1, 90.9, 95.8 +NA,NA,a-exp-i3,2017-18,Mashpee - Kenneth Coombs School,01720005, 33.4, 100.0, 12.5 to 1, 88.0, 94.0 +NA,NA,a-exp-i3,2017-18,Mashpee - Mashpee High,01720505, 42.1, 100.0, 10.7 to 1, 87.9, 95.5 +NA,NA,a-exp-i3,2017-18,Mashpee - Mashpee Middle School,01720020, 21.6, 100.0, 12.5 to 1, 88.5, 90.3 +NA,NA,a-exp-i3,2017-18,Mashpee - Quashnet School,01720035, 43.1, 100.0, 11.3 to 1, 74.5, 95.4 +NA,NA,a-exp-i3,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 32.6, 100.0, 18.0 to 1, 61.3, 87.7 +NA,NA,a-exp-i3,2017-18,Mattapoisett - Center,01730005, 20.2, 100.0, 11.8 to 1, 94.3, 94.3 +NA,NA,a-exp-i3,2017-18,Mattapoisett - Old Hammondtown,01730010, 17.6, 100.0, 11.7 to 1, 85.0, 99.2 +NA,NA,a-exp-i3,2017-18,Maynard - Fowler School,01740305, 39.0, 100.0, 13.4 to 1, 89.7, 92.3 +NA,NA,a-exp-i3,2017-18,Maynard - Green Meadow,01740010, 29.5, 96.6, 16.5 to 1, 88.1, 96.6 +NA,NA,a-exp-i3,2017-18,Maynard - Maynard High,01740505, 30.0, 99.3, 13.0 to 1, 90.5, 90.0 +NA,NA,a-exp-i3,2017-18,Medfield - Dale Street,01750005, 28.9, 100.0, 12.6 to 1, 88.7, 92.1 +NA,NA,a-exp-i3,2017-18,Medfield - Medfield Senior High,01750505, 66.1, 98.5, 12.5 to 1, 79.6, 89.7 +NA,NA,a-exp-i3,2017-18,Medfield - Memorial School,01750003, 25.6, 100.0, 17.0 to 1, 83.8, 96.1 +NA,NA,a-exp-i3,2017-18,Medfield - Ralph Wheelock School,01750007, 25.7, 100.0, 14.7 to 1, 93.1, 98.3 +NA,NA,a-exp-i3,2017-18,Medfield - Thomas Blake Middle,01750305, 55.6, 100.0, 11.2 to 1, 94.1, 100.0 +NA,NA,a-exp-i3,2017-18,Medford - Brooks School,01760130, 42.0, 100.0, 12.0 to 1, 81.0, 100.0 +NA,NA,a-exp-i3,2017-18,Medford - Christopher Columbus,01760140, 36.5, 100.0, 10.3 to 1, 78.1, 100.0 +NA,NA,a-exp-i3,2017-18,Medford - Curtis-Tufts,01760510, 5.4, 100.0, 2.4 to 1, 57.9, 98.1 +NA,NA,a-exp-i3,2017-18,Medford - John J McGlynn Elementary School,01760068, 38.6, 100.0, 13.6 to 1, 76.7, 97.5 +NA,NA,a-exp-i3,2017-18,Medford - John J. McGlynn Middle School,01760320, 51.4, 100.0, 9.0 to 1, 69.8, 97.1 +NA,NA,a-exp-i3,2017-18,Medford - Madeleine Dugger Andrews,01760315, 47.0, 100.0, 10.6 to 1, 76.6, 90.4 +NA,NA,a-exp-i3,2017-18,Medford - Medford High,01760505, 139.3, 97.1, 10.1 to 1, 74.8, 83.9 +NA,NA,a-exp-i3,2017-18,Medford - Milton Fuller Roberts,01760150, 44.3, 100.0, 12.2 to 1, 72.9, 97.7 +NA,NA,a-exp-i3,2017-18,Medway - Burke/Memorial Elementary School,01770015, 31.9, 100.0, 15.8 to 1, 87.4, 93.7 +NA,NA,a-exp-i3,2017-18,Medway - John D Mc Govern Elementary,01770013, 20.5, 100.0, 16.4 to 1, 72.3, 100.0 +NA,NA,a-exp-i3,2017-18,Medway - Medway High,01770505, 46.5, 97.9, 15.6 to 1, 83.4, 94.6 +NA,NA,a-exp-i3,2017-18,Medway - Medway Middle,01770305, 56.8, 100.0, 12.4 to 1, 92.1, 94.7 +NA,NA,a-exp-i3,2017-18,Melrose - Early Childhood Center,01780003, 14.6, 93.2, 21.7 to 1, 85.8, 95.5 +NA,NA,a-exp-i3,2017-18,Melrose - Herbert Clark Hoover,01780017, 20.8, 100.0, 13.0 to 1, 71.1, 97.6 +NA,NA,a-exp-i3,2017-18,Melrose - Horace Mann,01780025, 17.3, 100.0, 16.3 to 1, 81.2, 94.2 +NA,NA,a-exp-i3,2017-18,Melrose - Lincoln,01780020, 30.8, 100.0, 13.6 to 1, 77.3, 100.0 +NA,NA,a-exp-i3,2017-18,Melrose - Melrose High,01780505, 70.0, 100.0, 14.3 to 1, 83.1, 92.0 +NA,NA,a-exp-i3,2017-18,Melrose - Melrose Middle,01780305, 57.9, 100.0, 13.4 to 1, 80.7, 81.9 +NA,NA,a-exp-i3,2017-18,Melrose - Roosevelt,01780035, 29.5, 96.6, 14.8 to 1, 72.0, 96.6 +NA,NA,a-exp-i3,2017-18,Melrose - Winthrop,01780050, 26.3, 100.0, 15.4 to 1, 67.6, 94.3 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Henry P Clough,07100179, 25.5, 100.0, 14.6 to 1, 92.2, 100.0 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Memorial School,07100001, 31.0, 96.8, 15.4 to 1, 83.9, 93.5 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 54.6, 100.0, 14.3 to 1, 97.3, 95.4 +NA,NA,a-exp-i3,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 47.7, 98.7, 13.3 to 1, 82.0, 87.4 +NA,NA,a-exp-i3,2017-18,Methuen - Comprehensive Grammar School,01810050, 77.0, 98.7, 14.0 to 1, 81.8, 97.4 +NA,NA,a-exp-i3,2017-18,Methuen - Donald P Timony Grammar,01810060, 93.5, 100.0, 14.5 to 1, 84.8, 94.7 +NA,NA,a-exp-i3,2017-18,Methuen - Marsh Grammar School,01810030, 84.0, 99.0, 14.3 to 1, 89.2, 96.1 +NA,NA,a-exp-i3,2017-18,Methuen - Methuen High,01810505, 143.7, 97.2, 13.6 to 1, 85.0, 85.1 +NA,NA,a-exp-i3,2017-18,Methuen - Tenney Grammar School,01810055, 91.4, 100.0, 14.8 to 1, 94.3, 97.8 +NA,NA,a-exp-i3,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 42.0, 100.0, 13.4 to 1, 73.8, 95.2 +NA,NA,a-exp-i3,2017-18,Middleborough - John T. Nichols Middle,01820305, 51.8, 100.0, 15.1 to 1, 94.2, 96.2 +NA,NA,a-exp-i3,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 13.8 to 1, 83.7, 100.0 +NA,NA,a-exp-i3,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 19.0, 100.0, 15.3 to 1, 94.7, 100.0 +NA,NA,a-exp-i3,2017-18,Middleborough - Middleborough High,01820505, 67.2, 98.5, 10.7 to 1, 92.6, 94.0 +NA,NA,a-exp-i3,2017-18,Middleton - Fuller Meadow,01840003, 20.7, 100.0, 11.0 to 1, 84.3, 100.0 +NA,NA,a-exp-i3,2017-18,Middleton - Howe-Manning,01840005, 36.0, 100.0, 12.8 to 1, 93.8, 97.2 +NA,NA,a-exp-i3,2017-18,Milford - Brookside,01850065, 40.6, 100.0, 11.7 to 1, 90.7, 97.5 +NA,NA,a-exp-i3,2017-18,Milford - Memorial,01850010, 38.7, 100.0, 12.1 to 1, 87.9, 94.8 +NA,NA,a-exp-i3,2017-18,Milford - Milford High,01850505, 87.1, 99.9, 13.2 to 1, 90.4, 88.1 +NA,NA,a-exp-i3,2017-18,Milford - Shining Star Early Childhood Center,01850075, 6.6, 100.0, 22.0 to 1, 38.9, 84.7 +NA,NA,a-exp-i3,2017-18,Milford - Stacy Middle,01850305, 77.8, 100.0, 12.6 to 1, 89.5, 88.4 +NA,NA,a-exp-i3,2017-18,Milford - Woodland,01850090, 79.9, 100.0, 12.1 to 1, 88.7, 100.0 +NA,NA,a-exp-i3,2017-18,Millbury - Elmwood Street,01860017, 38.0, 100.0, 15.3 to 1, 81.6, 97.4 +NA,NA,a-exp-i3,2017-18,Millbury - Millbury Junior/Senior High,01860505, 60.6, 100.0, 11.8 to 1, 81.8, 82.5 +NA,NA,a-exp-i3,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 28.7, 100.0, 15.2 to 1, 72.1, 96.5 +NA,NA,a-exp-i3,2017-18,Millis - Clyde F Brown,01870005, 34.9, 100.0, 14.4 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,Millis - Millis High School,01870505, 26.5, 100.0, 14.8 to 1, 96.2, 96.2 +NA,NA,a-exp-i3,2017-18,Millis - Millis Middle,01870020, 30.9, 96.8, 13.2 to 1, 90.3, 98.7 +NA,NA,a-exp-i3,2017-18,Milton - Charles S Pierce Middle,01890410, 76.7, 96.1, 11.9 to 1, 79.5, 88.5 +NA,NA,a-exp-i3,2017-18,Milton - Collicot,01890005, 41.5, 99.3, 17.2 to 1, 78.3, 98.3 +NA,NA,a-exp-i3,2017-18,Milton - Cunningham School,01890007, 35.1, 100.0, 15.1 to 1, 76.4, 90.6 +NA,NA,a-exp-i3,2017-18,Milton - Glover,01890010, 38.3, 97.4, 15.3 to 1, 75.2, 90.9 +NA,NA,a-exp-i3,2017-18,Milton - Milton High,01890505, 77.7, 100.0, 13.2 to 1, 83.3, 87.4 +NA,NA,a-exp-i3,2017-18,Milton - Tucker,01890020, 29.7, 100.0, 14.8 to 1, 83.2, 88.2 +NA,NA,a-exp-i3,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 73.7, 97.3, 7.3 to 1, 89.3, 86.4 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 18.2, 100.0, 15.0 to 1, 78.0, 83.5 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Colrain Central,07170010, 8.9, 95.5, 11.9 to 1, 95.5, 100.0 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 36.9, 100.0, 10.5 to 1, 86.5, 94.6 +NA,NA,a-exp-i3,2017-18,Mohawk Trail - Sanderson Academy,07170020, 13.4, 100.0, 11.9 to 1, 77.6, 92.5 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 24.5, 91.8, 9.9 to 1, 73.5, 100.0 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 48.5, 97.9, 11.3 to 1, 86.6, 99.0 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 58.9, 98.3, 10.5 to 1, 82.4, 84.5 +NA,NA,a-exp-i3,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 44.9, 100.0, 10.1 to 1, 76.2, 89.7 +NA,NA,a-exp-i3,2017-18,Monson - Granite Valley Middle,01910310, 26.5, 98.1, 10.5 to 1, 75.5, 93.4 +NA,NA,a-exp-i3,2017-18,Monson - Monson High School,01910505, 26.5, 98.1, 9.7 to 1, 79.2, 88.7 +NA,NA,a-exp-i3,2017-18,Monson - Quarry Hill Community School,01910025, 30.5, 100.0, 12.9 to 1, 90.2, 99.2 +NA,NA,a-exp-i3,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 113.5, 99.1, 12.5 to 1, 85.5, 82.4 +NA,NA,a-exp-i3,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 45.5, 100.0, 11.8 to 1, 93.4, 95.6 +NA,NA,a-exp-i3,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 100.5, 53.2, 15.6 to 1, 41.8, 76.6 +NA,NA,a-exp-i3,2017-18,Nahant - Johnson,01960010, 9.5, 97.9, 15.5 to 1, 91.1, 97.9 +NA,NA,a-exp-i3,2017-18,Nantucket - Cyrus Peirce,01970010, 33.0, 93.9, 10.5 to 1, 69.7, 87.9 +NA,NA,a-exp-i3,2017-18,Nantucket - Nantucket Elementary,01970005, 32.9, 97.0, 11.0 to 1, 72.6, 84.8 +NA,NA,a-exp-i3,2017-18,Nantucket - Nantucket High,01970505, 47.0, 96.6, 11.3 to 1, 70.6, 65.9 +NA,NA,a-exp-i3,2017-18,Nantucket - Nantucket Intermediate School,01970020, 29.5, 96.6, 12.7 to 1, 83.1, 93.2 +NA,NA,a-exp-i3,2017-18,Narragansett - Baldwinville Elementary,07200005, 17.2, 100.0, 16.8 to 1, 76.7, 73.9 +NA,NA,a-exp-i3,2017-18,Narragansett - Narragansett Middle,07200305, 29.3, 100.0, 15.6 to 1, 93.2, 88.0 +NA,NA,a-exp-i3,2017-18,Narragansett - Narragansett Regional High,07200505, 31.3, 93.6, 11.0 to 1, 77.6, 85.6 +NA,NA,a-exp-i3,2017-18,Narragansett - Phillipston Memorial,07200003, 9.0, 88.9, 18.8 to 1, 100.0, 97.8 +NA,NA,a-exp-i3,2017-18,Narragansett - Templeton Center,07200020, 10.8, 100.0, 15.7 to 1, 100.0, 97.0 +NA,NA,a-exp-i3,2017-18,Nashoba - Center School,07250020, 41.7, 100.0, 13.6 to 1, 79.4, 98.6 +NA,NA,a-exp-i3,2017-18,Nashoba - Florence Sawyer School,07250025, 60.6, 100.0, 12.6 to 1, 82.6, 98.4 +NA,NA,a-exp-i3,2017-18,Nashoba - Hale,07250310, 23.4, 100.0, 12.9 to 1, 79.0, 95.7 +NA,NA,a-exp-i3,2017-18,Nashoba - Luther Burbank Middle School,07250305, 23.2, 100.0, 10.7 to 1, 87.8, 91.4 +NA,NA,a-exp-i3,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 36.3, 100.0, 13.0 to 1, 87.0, 94.5 +NA,NA,a-exp-i3,2017-18,Nashoba - Nashoba Regional,07250505, 75.2, 98.7, 13.1 to 1, 84.8, 93.6 +NA,NA,a-exp-i3,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.0, 98.4, 10.9 to 1, 73.4, 68.8 +NA,NA,a-exp-i3,2017-18,Natick - Bennett-Hemenway,01980005, 38.7, 100.0, 15.3 to 1, 89.7, 100.0 +NA,NA,a-exp-i3,2017-18,Natick - Brown,01980010, 37.4, 100.0, 14.0 to 1, 64.7, 86.1 +NA,NA,a-exp-i3,2017-18,Natick - J F Kennedy Middle School,01980305, 53.0, 100.0, 12.1 to 1, 90.6, 91.5 +NA,NA,a-exp-i3,2017-18,Natick - Johnson,01980031, 20.4, 98.0, 11.2 to 1, 77.7, 100.0 +NA,NA,a-exp-i3,2017-18,Natick - Lilja Elementary,01980035, 27.9, 100.0, 15.4 to 1, 82.1, 89.2 +NA,NA,a-exp-i3,2017-18,Natick - Memorial,01980043, 27.8, 100.0, 14.9 to 1, 83.5, 96.4 +NA,NA,a-exp-i3,2017-18,Natick - Natick High,01980505, 120.8, 100.0, 14.3 to 1, 82.9, 89.2 +NA,NA,a-exp-i3,2017-18,Natick - Wilson Middle,01980310, 77.9, 99.9, 12.1 to 1, 68.3, 87.8 +NA,NA,a-exp-i3,2017-18,Nauset - Nauset Regional High,06600505, 81.6, 97.7, 11.2 to 1, 84.0, 89.2 +NA,NA,a-exp-i3,2017-18,Nauset - Nauset Regional Middle,06600305, 55.1, 97.7, 10.0 to 1, 81.8, 96.0 +NA,NA,a-exp-i3,2017-18,Needham - Broadmeadow,01990005, 32.4, 100.0, 16.8 to 1, 90.7, 90.7 +NA,NA,a-exp-i3,2017-18,Needham - High Rock School,01990410, 37.8, 100.0, 11.9 to 1, 96.0, 97.4 +NA,NA,a-exp-i3,2017-18,Needham - Hillside Elementary,01990035, 33.1, 100.0, 14.7 to 1, 87.9, 92.7 +NA,NA,a-exp-i3,2017-18,Needham - John Eliot,01990020, 24.2, 100.0, 16.2 to 1, 87.6, 100.0 +NA,NA,a-exp-i3,2017-18,Needham - Needham High,01990505, 124.6, 99.2, 13.5 to 1, 84.2, 93.6 +NA,NA,a-exp-i3,2017-18,Needham - Newman Elementary,01990050, 51.5, 97.2, 14.7 to 1, 83.6, 99.1 +NA,NA,a-exp-i3,2017-18,Needham - Pollard Middle,01990405, 74.0, 100.0, 11.5 to 1, 78.4, 87.0 +NA,NA,a-exp-i3,2017-18,Needham - William Mitchell,01990040, 30.6, 99.8, 16.3 to 1, 89.4, 99.8 +NA,NA,a-exp-i3,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 57.8, 60.7, 9.2 to 1, 27.6, 84.4 +NA,NA,a-exp-i3,2017-18,New Bedford - Abraham Lincoln,02010095, 43.1, 100.0, 16.6 to 1, 86.1, 97.7 +NA,NA,a-exp-i3,2017-18,New Bedford - Alfred J Gomes,02010063, 39.0, 97.4, 14.2 to 1, 66.7, 92.4 +NA,NA,a-exp-i3,2017-18,New Bedford - Betsey B Winslow,02010140, 17.9, 98.6, 17.3 to 1, 71.9, 90.1 +NA,NA,a-exp-i3,2017-18,New Bedford - Carlos Pacheco,02010105, 27.8, 96.4, 12.9 to 1, 50.4, 92.7 +NA,NA,a-exp-i3,2017-18,New Bedford - Casimir Pulaski,02010123, 48.5, 95.9, 15.0 to 1, 87.6, 100.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Charles S Ashley,02010010, 18.2, 97.4, 15.5 to 1, 81.4, 94.5 +NA,NA,a-exp-i3,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 16.6, 91.3, 18.0 to 1, 91.3, 100.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Ellen R Hathaway,02010075, 22.6, 97.7, 13.4 to 1, 44.3, 82.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Elwyn G Campbell,02010020, 18.3, 94.5, 15.0 to 1, 86.2, 91.8 +NA,NA,a-exp-i3,2017-18,New Bedford - Hayden/McFadden,02010078, 54.1, 92.6, 12.5 to 1, 33.4, 90.7 +NA,NA,a-exp-i3,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 23.2, 97.0, 14.9 to 1, 64.4, 89.1 +NA,NA,a-exp-i3,2017-18,New Bedford - James B Congdon,02010040, 24.2, 100.0, 13.9 to 1, 81.6, 90.9 +NA,NA,a-exp-i3,2017-18,New Bedford - Jireh Swift,02010130, 13.4, 100.0, 16.1 to 1, 96.6, 96.3 +NA,NA,a-exp-i3,2017-18,New Bedford - John Avery Parker,02010115, 20.5, 90.3, 13.9 to 1, 41.5, 85.3 +NA,NA,a-exp-i3,2017-18,New Bedford - John B Devalles,02010050, 25.2, 97.1, 15.4 to 1, 66.4, 88.1 +NA,NA,a-exp-i3,2017-18,New Bedford - Keith Middle School,02010405, 72.0, 88.2, 12.4 to 1, 57.0, 84.7 +NA,NA,a-exp-i3,2017-18,New Bedford - New Bedford High,02010505, 162.1, 94.3, 12.1 to 1, 71.7, 78.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Normandin Middle School,02010410, 78.6, 96.2, 16.0 to 1, 80.3, 78.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 20.3, 95.1, 11.0 to 1, 49.4, 95.1 +NA,NA,a-exp-i3,2017-18,New Bedford - Roosevelt Middle School,02010415, 66.0, 97.0, 12.2 to 1, 78.8, 83.3 +NA,NA,a-exp-i3,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 50.0, 86.0, 15.6 to 1, 66.0, 96.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Thomas R Rodman,02010125, 12.3, 92.9, 15.9 to 1, 88.9, 100.0 +NA,NA,a-exp-i3,2017-18,New Bedford - Trinity Day Academy,02010510, 9.7, 74.1, 8.2 to 1, 58.6, 89.6 +NA,NA,a-exp-i3,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 15.7, 93.6, 6.4 to 1, 61.8, 55.4 +NA,NA,a-exp-i3,2017-18,New Bedford - William H Taylor,02010135, 17.8, 100.0, 14.7 to 1, 86.4, 97.3 +NA,NA,a-exp-i3,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 31.5, 68.3, 13.4 to 1, 19.0, 71.4 +NA,NA,a-exp-i3,2017-18,New Salem-Wendell - Swift River,07280015, 14.3, 100.0, 10.6 to 1, 65.3, 86.0 +NA,NA,a-exp-i3,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 27.0, 100.0, 11.9 to 1, 89.3, 98.5 +NA,NA,a-exp-i3,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 53.3, 100.0, 11.5 to 1, 87.8, 100.0 +NA,NA,a-exp-i3,2017-18,Newburyport - Newburyport High,02040505, 63.2, 100.0, 12.2 to 1, 89.7, 96.8 +NA,NA,a-exp-i3,2017-18,Newburyport - Rupert A Nock Middle,02040305, 42.6, 100.0, 13.1 to 1, 92.7, 96.2 +NA,NA,a-exp-i3,2017-18,Newton - A E Angier,02070005, 39.9, 97.5, 11.7 to 1, 87.2, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Bigelow Middle,02070305, 52.1, 98.1, 10.0 to 1, 90.4, 98.1 +NA,NA,a-exp-i3,2017-18,Newton - Bowen,02070015, 32.9, 100.0, 12.8 to 1, 75.7, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - C C Burr,02070020, 29.7, 100.0, 13.0 to 1, 67.1, 93.3 +NA,NA,a-exp-i3,2017-18,Newton - Cabot,02070025, 30.7, 95.1, 12.7 to 1, 70.7, 96.7 +NA,NA,a-exp-i3,2017-18,Newton - Charles E Brown Middle,02070310, 66.9, 100.0, 11.3 to 1, 95.2, 90.7 +NA,NA,a-exp-i3,2017-18,Newton - Countryside,02070040, 36.9, 97.3, 11.1 to 1, 89.1, 97.3 +NA,NA,a-exp-i3,2017-18,Newton - F A Day Middle,02070315, 86.5, 98.8, 11.3 to 1, 83.8, 93.1 +NA,NA,a-exp-i3,2017-18,Newton - Franklin,02070055, 36.0, 93.1, 12.1 to 1, 69.7, 93.9 +NA,NA,a-exp-i3,2017-18,Newton - Horace Mann,02070075, 31.1, 94.8, 13.0 to 1, 80.0, 97.1 +NA,NA,a-exp-i3,2017-18,Newton - John Ward,02070120, 24.0, 100.0, 12.9 to 1, 83.3, 95.0 +NA,NA,a-exp-i3,2017-18,Newton - Lincoln-Eliot,02070070, 32.6, 98.5, 11.5 to 1, 83.2, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Mason-Rice,02070080, 32.0, 98.4, 16.0 to 1, 85.0, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Memorial Spaulding,02070105, 39.2, 100.0, 11.6 to 1, 85.7, 97.4 +NA,NA,a-exp-i3,2017-18,Newton - Newton Early Childhood Center,02070108, 15.3, 100.0, 12.9 to 1, 82.0, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Newton North High,02070505, 186.4, 98.6, 11.5 to 1, 86.7, 94.3 +NA,NA,a-exp-i3,2017-18,Newton - Newton South High,02070510, 156.6, 99.7, 12.1 to 1, 87.2, 94.5 +NA,NA,a-exp-i3,2017-18,Newton - Oak Hill Middle,02070320, 57.3, 99.1, 10.7 to 1, 80.0, 93.3 +NA,NA,a-exp-i3,2017-18,Newton - Peirce,02070100, 21.3, 100.0, 12.9 to 1, 93.0, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Underwood,02070115, 23.0, 100.0, 12.3 to 1, 87.0, 91.3 +NA,NA,a-exp-i3,2017-18,Newton - Williams,02070125, 22.8, 97.8, 13.0 to 1, 73.7, 100.0 +NA,NA,a-exp-i3,2017-18,Newton - Zervas,02070130, 32.4, 96.9, 12.6 to 1, 81.5, 96.9 +NA,NA,a-exp-i3,2017-18,Norfolk - Freeman-Kennedy School,02080005, 39.2, 97.4, 12.5 to 1, 89.8, 100.0 +NA,NA,a-exp-i3,2017-18,Norfolk - H Olive Day,02080015, 36.6, 100.0, 12.6 to 1, 83.6, 95.9 +NA,NA,a-exp-i3,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 55.9, 98.2, 9.8 to 1, 76.7, 78.5 +NA,NA,a-exp-i3,2017-18,North Adams - Brayton,02090035, 27.7, 96.4, 9.4 to 1, 96.4, 92.8 +NA,NA,a-exp-i3,2017-18,North Adams - Colegrove Park Elementary,02090008, 26.5, 96.2, 13.6 to 1, 70.7, 78.3 +NA,NA,a-exp-i3,2017-18,North Adams - Drury High,02090505, 45.8, 93.4, 11.4 to 1, 81.4, 82.0 +NA,NA,a-exp-i3,2017-18,North Adams - Greylock,02090015, 23.7, 100.0, 12.5 to 1, 87.3, 93.7 +NA,NA,a-exp-i3,2017-18,North Andover - Annie L Sargent School,02110018, 31.5, 100.0, 17.8 to 1, 94.5, 100.0 +NA,NA,a-exp-i3,2017-18,North Andover - Atkinson,02110001, 34.6, 97.1, 16.4 to 1, 85.6, 98.4 +NA,NA,a-exp-i3,2017-18,North Andover - Franklin,02110010, 29.2, 100.0, 15.5 to 1, 82.9, 100.0 +NA,NA,a-exp-i3,2017-18,North Andover - Kittredge,02110015, 17.4, 100.0, 16.6 to 1, 88.5, 97.5 +NA,NA,a-exp-i3,2017-18,North Andover - North Andover High,02110505, 90.7, 96.9, 16.4 to 1, 82.9, 91.8 +NA,NA,a-exp-i3,2017-18,North Andover - North Andover Middle,02110305, 73.6, 100.0, 15.0 to 1, 87.8, 90.5 +NA,NA,a-exp-i3,2017-18,North Andover - Thomson,02110020, 23.9, 100.0, 14.4 to 1, 90.4, 95.8 +NA,NA,a-exp-i3,2017-18,North Attleborough - Amvet Boulevard,02120007, 23.3, 100.0, 17.1 to 1, 95.7, 100.0 +NA,NA,a-exp-i3,2017-18,North Attleborough - Community,02120030, 30.7, 100.0, 10.4 to 1, 83.7, 93.5 +NA,NA,a-exp-i3,2017-18,North Attleborough - Falls,02120010, 17.4, 100.0, 15.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 36.0, 100.0, 17.7 to 1, 86.2, 94.4 +NA,NA,a-exp-i3,2017-18,North Attleborough - North Attleboro High,02120505, 80.7, 100.0, 14.3 to 1, 88.6, 95.1 +NA,NA,a-exp-i3,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 7.0, 100.0, 18.0 to 1, 57.2, 100.0 +NA,NA,a-exp-i3,2017-18,North Attleborough - North Attleborough Middle,02120305, 73.4, 100.0, 14.8 to 1, 79.6, 93.2 +NA,NA,a-exp-i3,2017-18,North Attleborough - Roosevelt Avenue,02120015, 17.3, 100.0, 16.3 to 1, 95.5, 95.5 +NA,NA,a-exp-i3,2017-18,North Brookfield - North Brookfield Elementary,02150015, 23.0, 95.7, 14.3 to 1, 58.7, 95.7 +NA,NA,a-exp-i3,2017-18,North Brookfield - North Brookfield High,02150505, 21.7, 95.4, 10.5 to 1, 81.6, 86.2 +NA,NA,a-exp-i3,2017-18,North Middlesex - Ashby Elementary,07350010, 18.5, 100.0, 9.9 to 1, 87.6, 93.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Hawthorne Brook,07350030, 42.0, 100.0, 12.0 to 1, 78.6, 95.2 +NA,NA,a-exp-i3,2017-18,North Middlesex - Nissitissit Middle School,07350310, 48.4, 97.9, 10.8 to 1, 85.5, 89.7 +NA,NA,a-exp-i3,2017-18,North Middlesex - North Middlesex Regional,07350505, 60.0, 98.3, 13.3 to 1, 74.9, 95.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 1.0, 100.0, 18.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Spaulding Memorial,07350005, 32.0, 100.0, 13.2 to 1, 84.4, 96.9 +NA,NA,a-exp-i3,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 4.7, 100.0, 19.1 to 1, 78.7, 100.0 +NA,NA,a-exp-i3,2017-18,North Middlesex - Varnum Brook,07350035, 42.3, 100.0, 12.7 to 1, 96.5, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - E Ethel Little School,02170003, 23.7, 100.0, 13.9 to 1, 97.9, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - J Turner Hood,02170010, 28.2, 100.0, 11.9 to 1, 90.4, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - L D Batchelder,02170005, 31.1, 96.8, 14.9 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,North Reading - North Reading High,02170505, 69.8, 100.0, 11.6 to 1, 88.7, 92.2 +NA,NA,a-exp-i3,2017-18,North Reading - North Reading Middle,02170305, 45.2, 100.0, 12.1 to 1, 95.6, 97.8 +NA,NA,a-exp-i3,2017-18,Northampton - Bridge Street,02100005, 29.9, 100.0, 9.2 to 1, 83.9, 90.6 +NA,NA,a-exp-i3,2017-18,Northampton - Jackson Street,02100020, 31.2, 100.0, 11.5 to 1, 83.3, 96.2 +NA,NA,a-exp-i3,2017-18,Northampton - John F Kennedy Middle School,02100410, 60.6, 100.0, 10.1 to 1, 82.8, 91.1 +NA,NA,a-exp-i3,2017-18,Northampton - Leeds,02100025, 28.5, 100.0, 11.3 to 1, 75.4, 100.0 +NA,NA,a-exp-i3,2017-18,Northampton - Northampton High,02100505, 56.8, 99.1, 15.3 to 1, 93.0, 94.7 +NA,NA,a-exp-i3,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 24.5, 100.0, 9.0 to 1, 91.8, 95.9 +NA,NA,a-exp-i3,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 56.0, 94.6, 8.9 to 1, 76.8, 73.2 +NA,NA,a-exp-i3,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 114.8, 99.3, 12.8 to 1, 88.6, 94.9 +NA,NA,a-exp-i3,2017-18,Northborough - Fannie E Proctor,02130015, 18.4, 100.0, 13.5 to 1, 89.1, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Lincoln Street,02130003, 14.7, 100.0, 17.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Marguerite E Peaslee,02130014, 16.0, 100.0, 17.2 to 1, 93.8, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Marion E Zeh,02130020, 12.9, 100.0, 18.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Northborough - Robert E. Melican Middle School,02130305, 51.5, 100.0, 12.1 to 1, 83.1, 90.6 +NA,NA,a-exp-i3,2017-18,Northbridge - Northbridge Elementary,02140005, 27.7, 100.0, 13.7 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Northbridge - Northbridge High,02140505, 49.9, 100.0, 11.4 to 1, 89.2, 92.0 +NA,NA,a-exp-i3,2017-18,Northbridge - Northbridge Middle,02140305, 49.0, 100.0, 14.8 to 1, 89.8, 93.9 +NA,NA,a-exp-i3,2017-18,Northbridge - W Edward Balmer,02140001, 37.5, 100.0, 13.5 to 1, 85.3, 100.0 +NA,NA,a-exp-i3,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 115.3, 97.0, 10.8 to 1, 86.3, 85.9 +NA,NA,a-exp-i3,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.4, 94.6, 10.5 to 1, 92.6, 93.5 +NA,NA,a-exp-i3,2017-18,Norton - Henri A. Yelle,02180060, 28.6, 100.0, 13.8 to 1, 82.1, 96.5 +NA,NA,a-exp-i3,2017-18,Norton - J C Solmonese,02180015, 36.5, 100.0, 12.7 to 1, 89.0, 100.0 +NA,NA,a-exp-i3,2017-18,Norton - L G Nourse Elementary,02180010, 21.8, 100.0, 13.1 to 1, 72.3, 100.0 +NA,NA,a-exp-i3,2017-18,Norton - Norton High,02180505, 56.2, 96.4, 13.2 to 1, 80.2, 83.1 +NA,NA,a-exp-i3,2017-18,Norton - Norton Middle,02180305, 51.6, 100.0, 11.4 to 1, 87.1, 94.2 +NA,NA,a-exp-i3,2017-18,Norwell - Grace Farrar Cole,02190005, 33.8, 100.0, 14.1 to 1, 85.9, 97.0 +NA,NA,a-exp-i3,2017-18,Norwell - Norwell High,02190505, 51.9, 100.0, 13.4 to 1, 94.2, 96.1 +NA,NA,a-exp-i3,2017-18,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.7 to 1, 97.7, 95.4 +NA,NA,a-exp-i3,2017-18,Norwell - William G Vinal,02190020, 33.7, 100.0, 15.4 to 1, 82.2, 97.0 +NA,NA,a-exp-i3,2017-18,Norwood - Balch,02200005, 24.2, 100.0, 12.2 to 1, 93.8, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - Charles J Prescott,02200025, 20.1, 100.0, 12.4 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - Cornelius M Callahan,02200010, 20.3, 100.0, 10.8 to 1, 80.3, 95.1 +NA,NA,a-exp-i3,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 62.9, 100.0, 11.7 to 1, 86.6, 93.0 +NA,NA,a-exp-i3,2017-18,Norwood - F A Cleveland,02200015, 27.0, 100.0, 12.1 to 1, 96.3, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - George F. Willett,02200075, 24.9, 100.0, 15.6 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - John P Oldham,02200020, 21.7, 100.0, 10.5 to 1, 90.8, 100.0 +NA,NA,a-exp-i3,2017-18,Norwood - Norwood High,02200505, 69.7, 100.0, 13.7 to 1, 91.0, 93.0 +NA,NA,a-exp-i3,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 46.5, 98.8, 9.2 to 1, 80.7, 88.6 +NA,NA,a-exp-i3,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 57.0, 96.5, 9.4 to 1, 80.6, 80.2 +NA,NA,a-exp-i3,2017-18,Old Rochester - Old Rochester Regional High,07400505, 53.7, 100.0, 14.5 to 1, 91.0, 96.3 +NA,NA,a-exp-i3,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 37.0, 100.0, 12.9 to 1, 89.2, 97.3 +NA,NA,a-exp-i3,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 14.2, 100.0, 11.2 to 1, 15.7, 78.9 +NA,NA,a-exp-i3,2017-18,Orange - Dexter Park,02230010, 23.1, 100.0, 13.6 to 1, 78.1, 89.1 +NA,NA,a-exp-i3,2017-18,Orange - Fisher Hill,02230015, 21.9, 100.0, 12.8 to 1, 68.4, 88.8 +NA,NA,a-exp-i3,2017-18,Orleans - Orleans Elementary,02240005, 21.6, 100.0, 10.3 to 1, 92.1, 97.7 +NA,NA,a-exp-i3,2017-18,Oxford - Alfred M Chaffee,02260010, 20.0, 100.0, 14.5 to 1, 87.8, 97.8 +NA,NA,a-exp-i3,2017-18,Oxford - Clara Barton,02260005, 24.5, 100.0, 15.6 to 1, 89.5, 93.6 +NA,NA,a-exp-i3,2017-18,Oxford - Oxford High,02260505, 40.8, 100.0, 13.3 to 1, 86.5, 83.8 +NA,NA,a-exp-i3,2017-18,Oxford - Oxford Middle,02260405, 30.7, 100.0, 14.4 to 1, 95.4, 93.5 +NA,NA,a-exp-i3,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 7.2, 100.0, 3.8 to 1, 97.9, 58.0 +NA,NA,a-exp-i3,2017-18,Palmer - Old Mill Pond,02270008, 57.0, 100.0, 12.1 to 1, 84.2, 98.2 +NA,NA,a-exp-i3,2017-18,Palmer - Palmer High,02270505, 62.0, 100.0, 11.5 to 1, 89.4, 93.5 +NA,NA,a-exp-i3,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 73.7, 91.9, 8.3 to 1, 82.4, 85.8 +NA,NA,a-exp-i3,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 35.0, 57.9, 7.7 to 1, 40.8, 74.3 +NA,NA,a-exp-i3,2017-18,Peabody - Captain Samuel Brown,02290005, 29.3, 99.5, 12.2 to 1, 96.1, 99.3 +NA,NA,a-exp-i3,2017-18,Peabody - Center,02290015, 26.1, 99.5, 15.1 to 1, 85.4, 94.3 +NA,NA,a-exp-i3,2017-18,Peabody - J Henry Higgins Middle,02290305, 94.0, 98.4, 14.5 to 1, 87.8, 92.0 +NA,NA,a-exp-i3,2017-18,Peabody - John E Burke,02290007, 23.4, 99.5, 11.2 to 1, 79.2, 96.9 +NA,NA,a-exp-i3,2017-18,Peabody - John E. McCarthy,02290016, 25.9, 100.0, 13.7 to 1, 91.0, 98.5 +NA,NA,a-exp-i3,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 126.2, 96.0, 11.7 to 1, 87.3, 91.1 +NA,NA,a-exp-i3,2017-18,Peabody - South Memorial,02290035, 28.8, 96.1, 16.2 to 1, 86.4, 96.5 +NA,NA,a-exp-i3,2017-18,Peabody - Thomas Carroll,02290010, 41.6, 100.0, 15.0 to 1, 78.4, 99.5 +NA,NA,a-exp-i3,2017-18,Peabody - West Memorial,02290045, 20.1, 98.8, 12.3 to 1, 82.2, 93.4 +NA,NA,a-exp-i3,2017-18,Peabody - William A Welch Sr,02290027, 24.2, 100.0, 14.9 to 1, 89.7, 89.7 +NA,NA,a-exp-i3,2017-18,Pelham - Pelham Elementary,02300005, 11.5, 98.3, 11.0 to 1, 67.0, 91.3 +NA,NA,a-exp-i3,2017-18,Pembroke - Bryantville Elementary,02310003, 31.9, 100.0, 15.7 to 1, 87.5, 98.2 +NA,NA,a-exp-i3,2017-18,Pembroke - Hobomock Elementary,02310010, 29.7, 100.0, 14.3 to 1, 87.4, 91.3 +NA,NA,a-exp-i3,2017-18,Pembroke - North Pembroke Elementary,02310015, 39.9, 100.0, 13.8 to 1, 92.5, 97.3 +NA,NA,a-exp-i3,2017-18,Pembroke - Pembroke Community Middle School,02310305, 31.1, 100.0, 16.0 to 1, 95.2, 99.7 +NA,NA,a-exp-i3,2017-18,Pembroke - Pembroke High School,02310505, 65.8, 98.5, 14.0 to 1, 85.0, 88.0 +NA,NA,a-exp-i3,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 16.4, 100.0, 13.3 to 1, 74.6, 96.2 +NA,NA,a-exp-i3,2017-18,Pentucket - Dr John C Page School,07450015, 27.7, 100.0, 12.3 to 1, 91.6, 95.2 +NA,NA,a-exp-i3,2017-18,Pentucket - Elmer S Bagnall,07450005, 38.4, 100.0, 13.2 to 1, 84.8, 95.3 +NA,NA,a-exp-i3,2017-18,Pentucket - Helen R Donaghue School,07450010, 22.3, 100.0, 10.8 to 1, 84.0, 96.2 +NA,NA,a-exp-i3,2017-18,Pentucket - Pentucket Regional Middle,07450405, 31.5, 100.0, 13.4 to 1, 94.6, 91.7 +NA,NA,a-exp-i3,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 58.1, 100.0, 12.8 to 1, 87.5, 89.8 +NA,NA,a-exp-i3,2017-18,Petersham - Petersham Center,02340005, 11.3, 82.5, 10.3 to 1, 79.4, 96.9 +NA,NA,a-exp-i3,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 13.3, 63.9, 15.3 to 1, 0.0, 62.4 +NA,NA,a-exp-i3,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 16.0, 43.8, 12.3 to 1, 31.3, 68.8 +NA,NA,a-exp-i3,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 66.5, 71.0, 10.0 to 1, 19.4, 87.9 +NA,NA,a-exp-i3,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 30.7, 65.8, 11.6 to 1, 16.3, 71.5 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 13.7, 100.0, 11.5 to 1, 92.7, 100.0 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Northfield Elementary,07500008, 17.5, 96.8, 10.6 to 1, 88.2, 97.1 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 6.6, 100.0, 5.0 to 1, 69.8, 100.0 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 29.2, 96.6, 12.3 to 1, 89.7, 93.2 +NA,NA,a-exp-i3,2017-18,Pioneer Valley - Warwick Community School,07500009, 6.9, 100.0, 8.6 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.6, 72.2, 7.8 to 1, 50.3, 78.3 +NA,NA,a-exp-i3,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 44.1, 67.3, 9.1 to 1, 81.3, 72.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Allendale,02360010, 21.3, 100.0, 13.5 to 1, 85.9, 100.0 +NA,NA,a-exp-i3,2017-18,Pittsfield - Crosby,02360065, 35.2, 94.3, 12.7 to 1, 71.6, 85.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Egremont,02360035, 29.0, 96.6, 14.6 to 1, 79.3, 93.1 +NA,NA,a-exp-i3,2017-18,Pittsfield - John T Reid Middle,02360305, 52.6, 100.0, 10.5 to 1, 93.3, 91.2 +NA,NA,a-exp-i3,2017-18,Pittsfield - Morningside Community School,02360055, 36.5, 94.5, 10.6 to 1, 72.6, 91.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Pittsfield High,02360505, 80.5, 100.0, 10.6 to 1, 85.2, 82.1 +NA,NA,a-exp-i3,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 16.0, 100.0, 13.5 to 1, 97.4, 98.8 +NA,NA,a-exp-i3,2017-18,Pittsfield - Silvio O Conte Community,02360105, 30.8, 100.0, 11.7 to 1, 76.3, 87.9 +NA,NA,a-exp-i3,2017-18,Pittsfield - Stearns,02360090, 15.7, 100.0, 15.6 to 1, 71.9, 87.2 +NA,NA,a-exp-i3,2017-18,Pittsfield - Taconic High,02360510, 73.1, 98.6, 10.0 to 1, 93.5, 90.3 +NA,NA,a-exp-i3,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 50.7, 100.0, 12.7 to 1, 85.3, 79.7 +NA,NA,a-exp-i3,2017-18,Pittsfield - Williams,02360100, 21.9, 95.4, 14.6 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Plainville - Anna Ware Jackson,02380010, 27.3, 97.8, 14.8 to 1, 81.3, 97.8 +NA,NA,a-exp-i3,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 21.0, 98.1, 14.4 to 1, 80.9, 96.2 +NA,NA,a-exp-i3,2017-18,Plymouth - Cold Spring,02390005, 21.7, 97.2, 11.7 to 1, 75.1, 91.6 +NA,NA,a-exp-i3,2017-18,Plymouth - Federal Furnace School,02390011, 36.9, 97.3, 10.5 to 1, 79.7, 96.9 +NA,NA,a-exp-i3,2017-18,Plymouth - Hedge,02390010, 21.7, 100.0, 7.1 to 1, 70.8, 96.6 +NA,NA,a-exp-i3,2017-18,Plymouth - Indian Brook,02390012, 41.7, 100.0, 13.6 to 1, 80.5, 99.2 +NA,NA,a-exp-i3,2017-18,Plymouth - Manomet Elementary,02390015, 22.6, 95.6, 12.7 to 1, 74.7, 97.3 +NA,NA,a-exp-i3,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 44.5, 97.8, 12.3 to 1, 89.8, 96.6 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 84.6, 100.0, 12.1 to 1, 87.7, 95.3 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 9.0, 100.0, 15.6 to 1, 77.8, 100.0 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth North High,02390505, 104.2, 98.7, 12.3 to 1, 77.0, 83.7 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth South High,02390515, 105.5, 96.0, 10.4 to 1, 87.2, 90.4 +NA,NA,a-exp-i3,2017-18,Plymouth - Plymouth South Middle,02390305, 57.2, 100.0, 12.7 to 1, 95.1, 98.3 +NA,NA,a-exp-i3,2017-18,Plymouth - South Elementary,02390046, 50.1, 99.2, 13.0 to 1, 73.2, 95.6 +NA,NA,a-exp-i3,2017-18,Plymouth - West Elementary,02390047, 33.9, 100.0, 11.6 to 1, 83.1, 98.5 +NA,NA,a-exp-i3,2017-18,Plympton - Dennett Elementary,02400010, 18.3, 100.0, 11.3 to 1, 88.5, 100.0 +NA,NA,a-exp-i3,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 111.1, 81.6, 10.2 to 1, 49.9, 88.8 +NA,NA,a-exp-i3,2017-18,Provincetown - Provincetown Schools,02420020, 19.1, 100.0, 6.3 to 1, 80.6, 85.9 +NA,NA,a-exp-i3,2017-18,Quabbin - Hardwick Elementary,07530005, 13.2, 100.0, 14.7 to 1, 75.8, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - Hubbardston Center,07530010, 19.3, 100.0, 16.5 to 1, 73.1, 94.8 +NA,NA,a-exp-i3,2017-18,Quabbin - IB School of Quabbin,07530515, 1.3, 100.0, 9.7 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - New Braintree Grade,07530020, 4.0, 100.0, 13.5 to 1, 95.0, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - Oakham Center,07530025, 6.8, 100.0, 19.0 to 1, 97.1, 100.0 +NA,NA,a-exp-i3,2017-18,Quabbin - Quabbin Regional High School,07530505, 45.1, 100.0, 14.6 to 1, 86.7, 95.6 +NA,NA,a-exp-i3,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 27.5, 96.4, 14.4 to 1, 96.4, 96.4 +NA,NA,a-exp-i3,2017-18,Quabbin - Ruggles Lane,07530030, 30.3, 100.0, 15.3 to 1, 82.8, 96.7 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 31.2, 96.8, 11.8 to 1, 85.9, 85.7 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 17.7, 100.0, 13.4 to 1, 79.6, 85.7 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - Warren Elementary,07780005, 36.4, 80.8, 12.2 to 1, 85.2, 94.5 +NA,NA,a-exp-i3,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 19.0, 94.7, 16.0 to 1, 84.2, 94.7 +NA,NA,a-exp-i3,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 13.0, 100.0, 14.8 to 1, 84.6, 92.3 +NA,NA,a-exp-i3,2017-18,Quincy - Atherton Hough,02430040, 24.4, 95.9, 10.3 to 1, 82.8, 99.2 +NA,NA,a-exp-i3,2017-18,Quincy - Atlantic Middle,02430305, 33.4, 100.0, 14.9 to 1, 100.0, 97.0 +NA,NA,a-exp-i3,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 25.5, 100.0, 13.8 to 1, 81.6, 100.0 +NA,NA,a-exp-i3,2017-18,Quincy - Broad Meadows Middle,02430310, 29.5, 96.6, 13.0 to 1, 79.8, 83.2 +NA,NA,a-exp-i3,2017-18,Quincy - Central Middle,02430315, 42.4, 100.0, 15.0 to 1, 95.3, 95.3 +NA,NA,a-exp-i3,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 23.0, 100.0, 14.4 to 1, 95.6, 95.6 +NA,NA,a-exp-i3,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 43.2, 100.0, 13.1 to 1, 95.8, 95.8 +NA,NA,a-exp-i3,2017-18,Quincy - Francis W Parker,02430075, 27.3, 100.0, 11.5 to 1, 88.3, 95.6 +NA,NA,a-exp-i3,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 39.2, 97.4, 13.2 to 1, 81.1, 99.0 +NA,NA,a-exp-i3,2017-18,Quincy - Merrymount,02430060, 22.9, 100.0, 15.2 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Quincy - Montclair,02430065, 27.7, 100.0, 14.9 to 1, 91.6, 97.1 +NA,NA,a-exp-i3,2017-18,Quincy - North Quincy High,02430510, 88.4, 97.7, 13.8 to 1, 91.7, 94.3 +NA,NA,a-exp-i3,2017-18,Quincy - Point Webster Middle,02430325, 28.0, 100.0, 12.7 to 1, 72.5, 84.1 +NA,NA,a-exp-i3,2017-18,Quincy - Quincy High,02430505, 119.5, 99.2, 12.9 to 1, 88.5, 88.3 +NA,NA,a-exp-i3,2017-18,Quincy - Reay E Sterling Middle,02430320, 29.5, 100.0, 12.3 to 1, 85.6, 80.7 +NA,NA,a-exp-i3,2017-18,Quincy - Snug Harbor Community School,02430090, 34.8, 97.1, 13.3 to 1, 84.5, 84.5 +NA,NA,a-exp-i3,2017-18,Quincy - Squantum,02430095, 25.9, 100.0, 13.3 to 1, 96.1, 100.0 +NA,NA,a-exp-i3,2017-18,Quincy - Wollaston School,02430110, 23.7, 100.0, 14.0 to 1, 93.7, 91.6 +NA,NA,a-exp-i3,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, .0, 100.0,###### to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 59.6, 98.3, 10.8 to 1, 93.3, 95.0 +NA,NA,a-exp-i3,2017-18,Ralph C Mahar - The Gateway to College,07550525, .0, 100.0,###### to 1, 0.0, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 21.3, 100.0, 14.0 to 1, 84.7, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - J F Kennedy Elementary,02440018, 39.9, 100.0, 11.7 to 1, 87.5, 92.5 +NA,NA,a-exp-i3,2017-18,Randolph - Margaret L Donovan,02440015, 29.0, 100.0, 15.2 to 1, 79.3, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - Martin E Young Elementary,02440040, 27.8, 100.0, 11.1 to 1, 89.2, 100.0 +NA,NA,a-exp-i3,2017-18,Randolph - Randolph Community Middle,02440410, 58.5, 100.0, 10.3 to 1, 78.1, 79.5 +NA,NA,a-exp-i3,2017-18,Randolph - Randolph High,02440505, 60.7, 100.0, 11.7 to 1, 83.5, 91.8 +NA,NA,a-exp-i3,2017-18,Reading - Alice M Barrows,02460002, 24.2, 100.0, 15.6 to 1, 81.0, 91.7 +NA,NA,a-exp-i3,2017-18,Reading - Arthur W Coolidge Middle,02460305, 37.6, 100.0, 12.7 to 1, 85.4, 89.4 +NA,NA,a-exp-i3,2017-18,Reading - Birch Meadow,02460005, 30.6, 100.0, 12.1 to 1, 77.1, 96.7 +NA,NA,a-exp-i3,2017-18,Reading - J Warren Killam,02460017, 29.0, 100.0, 14.5 to 1, 86.7, 96.5 +NA,NA,a-exp-i3,2017-18,Reading - Joshua Eaton,02460010, 28.5, 100.0, 13.6 to 1, 84.6, 93.0 +NA,NA,a-exp-i3,2017-18,Reading - RISE PreSchool,02460001, 7.3, 100.0, 12.9 to 1, 91.8, 100.0 +NA,NA,a-exp-i3,2017-18,Reading - Reading Memorial High,02460505, 81.9, 100.0, 15.1 to 1, 89.9, 96.8 +NA,NA,a-exp-i3,2017-18,Reading - Walter S Parker Middle,02460310, 46.3, 100.0, 12.2 to 1, 91.4, 93.5 +NA,NA,a-exp-i3,2017-18,Reading - Wood End Elementary School,02460020, 20.3, 100.0, 14.3 to 1, 92.6, 100.0 +NA,NA,a-exp-i3,2017-18,Revere - A. C. Whelan Elementary School,02480003, 50.0, 100.0, 15.1 to 1, 82.0, 94.0 +NA,NA,a-exp-i3,2017-18,Revere - Abraham Lincoln,02480025, 42.0, 100.0, 16.5 to 1, 73.8, 92.9 +NA,NA,a-exp-i3,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 31.1, 100.0, 12.0 to 1, 84.1, 95.7 +NA,NA,a-exp-i3,2017-18,Revere - Garfield Elementary School,02480056, 53.2, 100.0, 14.4 to 1, 86.8, 97.2 +NA,NA,a-exp-i3,2017-18,Revere - Garfield Middle School,02480057, 44.5, 100.0, 12.1 to 1, 70.8, 74.2 +NA,NA,a-exp-i3,2017-18,Revere - Paul Revere,02480050, 36.0, 100.0, 13.1 to 1, 80.6, 97.2 +NA,NA,a-exp-i3,2017-18,Revere - Revere High,02480505, 129.2, 97.7, 15.4 to 1, 81.9, 94.6 +NA,NA,a-exp-i3,2017-18,Revere - Rumney Marsh Academy,02480014, 48.2, 100.0, 12.4 to 1, 73.0, 85.5 +NA,NA,a-exp-i3,2017-18,Revere - Seacoast School,02480520, 13.0, 100.0, 6.3 to 1, 52.5, 79.5 +NA,NA,a-exp-i3,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 45.5, 100.0, 15.6 to 1, 89.0, 93.4 +NA,NA,a-exp-i3,2017-18,Revere - Susan B. Anthony Middle School,02480305, 46.0, 100.0, 12.4 to 1, 80.4, 91.3 +NA,NA,a-exp-i3,2017-18,Richmond - Richmond Consolidated,02490005, 19.2, 97.9, 9.3 to 1, 99.0, 90.6 +NA,NA,a-exp-i3,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 61.0, 68.4, 10.8 to 1, 52.9, 82.0 +NA,NA,a-exp-i3,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 20.8, 91.3, 13.9 to 1, 75.8, 75.9 +NA,NA,a-exp-i3,2017-18,Rochester - Rochester Memorial,02500005, 38.1, 100.0, 13.1 to 1, 91.3, 99.2 +NA,NA,a-exp-i3,2017-18,Rockland - Jefferson Elementary School,02510060, 24.2, 97.9, 12.6 to 1, 69.8, 93.8 +NA,NA,a-exp-i3,2017-18,Rockland - John W Rogers Middle,02510305, 50.2, 100.0, 12.9 to 1, 78.5, 94.0 +NA,NA,a-exp-i3,2017-18,Rockland - Memorial Park,02510020, 26.1, 98.1, 10.8 to 1, 70.9, 98.1 +NA,NA,a-exp-i3,2017-18,Rockland - R Stewart Esten,02510025, 26.3, 100.0, 11.8 to 1, 74.4, 88.6 +NA,NA,a-exp-i3,2017-18,Rockland - Rockland Senior High,02510505, 47.0, 100.0, 13.7 to 1, 83.0, 89.8 +NA,NA,a-exp-i3,2017-18,Rockport - Rockport Elementary,02520005, 27.9, 100.0, 14.1 to 1, 89.2, 100.0 +NA,NA,a-exp-i3,2017-18,Rockport - Rockport High,02520510, 30.9, 99.1, 9.3 to 1, 79.0, 74.8 +NA,NA,a-exp-i3,2017-18,Rockport - Rockport Middle,02520305, 29.8, 96.0, 7.6 to 1, 76.8, 97.5 +NA,NA,a-exp-i3,2017-18,Rowe - Rowe Elementary,02530005, 8.0, 100.0, 8.9 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 117.9, 55.7, 12.1 to 1, 22.8, 85.1 +NA,NA,a-exp-i3,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 66.0, 91.7, 23.8 to 1, 75.7, 77.1 +NA,NA,a-exp-i3,2017-18,Salem - Bates,02580003, 26.9, 99.4, 12.7 to 1, 79.0, 88.9 +NA,NA,a-exp-i3,2017-18,Salem - Carlton,02580015, 23.0, 99.6, 11.0 to 1, 56.0, 95.6 +NA,NA,a-exp-i3,2017-18,Salem - Collins Middle,02580305, 55.2, 100.0, 9.7 to 1, 75.6, 83.7 +NA,NA,a-exp-i3,2017-18,Salem - Horace Mann Laboratory,02580030, 25.2, 99.6, 10.8 to 1, 87.7, 98.0 +NA,NA,a-exp-i3,2017-18,Salem - Nathaniel Bowditch,02580025, 39.2, 96.9, 9.6 to 1, 47.5, 77.1 +NA,NA,a-exp-i3,2017-18,Salem - New Liberty Innovation School,02580510, 4.5, 100.0, 10.0 to 1, 22.2, 88.9 +NA,NA,a-exp-i3,2017-18,Salem - Salem Early Childhood,02580001, 7.0, 100.0, 13.3 to 1, 85.7, 100.0 +NA,NA,a-exp-i3,2017-18,Salem - Salem High,02580505, 97.8, 93.4, 9.4 to 1, 83.5, 92.8 +NA,NA,a-exp-i3,2017-18,Salem - Salem Prep High School,02580515, 5.6, 100.0, 4.6 to 1, 89.3, 100.0 +NA,NA,a-exp-i3,2017-18,Salem - Saltonstall School,02580050, 31.4, 99.4, 11.9 to 1, 96.2, 92.0 +NA,NA,a-exp-i3,2017-18,Salem - Witchcraft Heights,02580070, 41.5, 99.6, 11.0 to 1, 75.8, 100.0 +NA,NA,a-exp-i3,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 46.1, 75.6, 10.3 to 1, 54.4, 66.7 +NA,NA,a-exp-i3,2017-18,Sandwich - Forestdale School,02610002, 50.4, 98.0, 12.5 to 1, 79.8, 94.1 +NA,NA,a-exp-i3,2017-18,Sandwich - Oak Ridge,02610025, 57.5, 100.0, 14.3 to 1, 80.3, 94.8 +NA,NA,a-exp-i3,2017-18,Sandwich - Sandwich High,02610505, 53.9, 100.0, 12.4 to 1, 84.1, 86.4 +NA,NA,a-exp-i3,2017-18,Sandwich - Sandwich STEM Academy,02610305, 38.1, 100.0, 12.1 to 1, 83.6, 87.3 +NA,NA,a-exp-i3,2017-18,Saugus - Belmonte Saugus Middle,02620305, 54.8, 98.2, 11.9 to 1, 81.7, 87.2 +NA,NA,a-exp-i3,2017-18,Saugus - Douglas Waybright,02620067, 15.2, 100.0, 15.2 to 1, 97.8, 100.0 +NA,NA,a-exp-i3,2017-18,Saugus - Lynnhurst,02620040, 19.2, 100.0, 14.1 to 1, 98.3, 100.0 +NA,NA,a-exp-i3,2017-18,Saugus - Oaklandvale,02620050, 15.6, 100.0, 15.4 to 1, 85.1, 100.0 +NA,NA,a-exp-i3,2017-18,Saugus - Saugus High,02620505, 54.4, 100.0, 12.1 to 1, 93.5, 92.6 +NA,NA,a-exp-i3,2017-18,Saugus - Veterans Memorial,02620065, 42.3, 100.0, 12.8 to 1, 78.7, 95.3 +NA,NA,a-exp-i3,2017-18,Savoy - Emma L Miller Elementary School,02630010, 4.9, 100.0, 12.2 to 1, 68.3, 100.0 +NA,NA,a-exp-i3,2017-18,Scituate - Cushing Elementary,02640007, 27.5, 100.0, 11.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Scituate - Gates Middle School,02640305, 58.2, 100.0, 12.4 to 1, 86.3, 94.8 +NA,NA,a-exp-i3,2017-18,Scituate - Hatherly Elementary,02640010, 29.3, 100.0, 9.2 to 1, 79.5, 95.9 +NA,NA,a-exp-i3,2017-18,Scituate - Jenkins Elementary School,02640015, 32.2, 100.0, 11.2 to 1, 89.8, 93.2 +NA,NA,a-exp-i3,2017-18,Scituate - Scituate High School,02640505, 65.0, 99.4, 14.2 to 1, 85.8, 94.8 +NA,NA,a-exp-i3,2017-18,Scituate - Wampatuck Elementary,02640020, 32.3, 100.0, 12.4 to 1, 85.1, 99.7 +NA,NA,a-exp-i3,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.1, 100.0, 11.4 to 1, 87.8, 93.2 +NA,NA,a-exp-i3,2017-18,Seekonk - George R Martin,02650007, 35.7, 100.0, 13.4 to 1, 94.4, 100.0 +NA,NA,a-exp-i3,2017-18,Seekonk - Mildred Aitken School,02650015, 31.7, 100.0, 13.5 to 1, 93.7, 100.0 +NA,NA,a-exp-i3,2017-18,Seekonk - Seekonk High,02650505, 45.2, 99.6, 13.2 to 1, 95.1, 95.6 +NA,NA,a-exp-i3,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 37.4, 86.6, 17.8 to 1, 34.7, 76.0 +NA,NA,a-exp-i3,2017-18,Sharon - Cottage Street,02660005, 26.6, 100.0, 19.5 to 1, 88.7, 98.8 +NA,NA,a-exp-i3,2017-18,Sharon - East Elementary,02660010, 27.2, 100.0, 18.1 to 1, 85.3, 98.8 +NA,NA,a-exp-i3,2017-18,Sharon - Heights Elementary,02660015, 28.2, 100.0, 18.6 to 1, 89.4, 95.3 +NA,NA,a-exp-i3,2017-18,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 12.5 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Sharon - Sharon High,02660505, 94.9, 96.8, 11.4 to 1, 82.2, 94.9 +NA,NA,a-exp-i3,2017-18,Sharon - Sharon Middle,02660305, 67.6, 100.0, 12.9 to 1, 87.4, 91.1 +NA,NA,a-exp-i3,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 126.1, 98.4, 10.5 to 1, 89.4, 86.5 +NA,NA,a-exp-i3,2017-18,Sherborn - Pine Hill,02690010, 32.7, 100.0, 12.9 to 1, 89.3, 99.7 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Beal School,02710005, 22.1, 94.9, 14.0 to 1, 83.6, 94.9 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Calvin Coolidge,02710015, 29.6, 96.3, 14.0 to 1, 81.1, 97.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Floral Street School,02710020, 42.7, 98.9, 17.6 to 1, 89.5, 100.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Oak Middle School,02710030, 64.0, 98.5, 15.8 to 1, 85.5, 96.9 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Parker Road Preschool,02710040, 10.0, 100.0, 23.5 to 1, 70.0, 90.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Sherwood Middle School,02710305, 69.2, 95.2, 14.0 to 1, 81.4, 92.9 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 116.0, 100.0, 15.8 to 1, 87.8, 92.8 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Spring Street,02710035, 23.9, 99.4, 15.0 to 1, 82.3, 100.0 +NA,NA,a-exp-i3,2017-18,Shrewsbury - Walter J Paton,02710025, 21.1, 99.1, 16.2 to 1, 72.8, 90.5 +NA,NA,a-exp-i3,2017-18,Shutesbury - Shutesbury Elementary,02720005, 13.7, 95.4, 8.9 to 1, 80.8, 97.1 +NA,NA,a-exp-i3,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 35.2, 100.0, 15.9 to 1, 90.9, 94.3 +NA,NA,a-exp-i3,2017-18,Silver Lake - Silver Lake Regional High,07600505, 90.7, 98.9, 14.4 to 1, 94.4, 90.1 +NA,NA,a-exp-i3,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 45.0, 100.0, 12.0 to 1, 88.9, 93.3 +NA,NA,a-exp-i3,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 34.8, 88.4, 10.3 to 1, 74.6, 82.7 +NA,NA,a-exp-i3,2017-18,Somerset - Chace Street,02730005, 29.8, 100.0, 14.1 to 1, 75.2, 97.0 +NA,NA,a-exp-i3,2017-18,Somerset - North Elementary,02730008, 34.4, 100.0, 14.2 to 1, 82.3, 96.8 +NA,NA,a-exp-i3,2017-18,Somerset - Somerset Middle School,02730305, 48.0, 100.0, 12.6 to 1, 89.6, 95.8 +NA,NA,a-exp-i3,2017-18,Somerset - South,02730015, 18.6, 100.0, 14.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 80.9, 100.0, 12.4 to 1, 90.7, 95.1 +NA,NA,a-exp-i3,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 44.2, 100.0, 13.2 to 1, 83.5, 94.7 +NA,NA,a-exp-i3,2017-18,Somerville - Arthur D Healey,02740075, 44.1, 97.7, 10.2 to 1, 75.7, 97.7 +NA,NA,a-exp-i3,2017-18,Somerville - Benjamin G Brown,02740015, 16.2, 100.0, 14.3 to 1, 81.4, 100.0 +NA,NA,a-exp-i3,2017-18,Somerville - Capuano Early Childhood Center,02740005, 21.8, 95.4, 14.4 to 1, 88.9, 95.4 +NA,NA,a-exp-i3,2017-18,Somerville - E Somerville Community,02740111, 54.3, 98.2, 13.2 to 1, 78.5, 84.8 +NA,NA,a-exp-i3,2017-18,Somerville - Full Circle High School,02740510, 10.8, 100.0, 4.8 to 1, 60.2, 69.8 +NA,NA,a-exp-i3,2017-18,Somerville - John F Kennedy,02740083, 36.8, 100.0, 12.4 to 1, 77.2, 91.5 +NA,NA,a-exp-i3,2017-18,Somerville - Next Wave Junior High,02740410, 5.3, 100.0, 2.8 to 1, 85.5, 93.0 +NA,NA,a-exp-i3,2017-18,Somerville - Somerville High,02740505, 124.7, 98.0, 9.7 to 1, 79.2, 85.9 +NA,NA,a-exp-i3,2017-18,Somerville - West Somerville Neighborhood,02740115, 26.4, 100.0, 14.1 to 1, 81.6, 97.1 +NA,NA,a-exp-i3,2017-18,Somerville - Winter Hill Community,02740120, 43.0, 98.5, 10.7 to 1, 84.6, 97.7 +NA,NA,a-exp-i3,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 48.4, 100.0, 11.8 to 1, 78.2, 88.6 +NA,NA,a-exp-i3,2017-18,South Hadley - Mosier,02780020, 27.0, 100.0, 15.6 to 1, 74.1, 92.6 +NA,NA,a-exp-i3,2017-18,South Hadley - Plains Elementary,02780015, 21.0, 100.0, 16.2 to 1, 90.5, 95.2 +NA,NA,a-exp-i3,2017-18,South Hadley - South Hadley High,02780505, 45.7, 100.0, 12.1 to 1, 88.6, 91.7 +NA,NA,a-exp-i3,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 81.0, 100.0, 9.0 to 1, 86.4, 84.0 +NA,NA,a-exp-i3,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 76.2, 85.5, 12.2 to 1, 63.2, 83.0 +NA,NA,a-exp-i3,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 63.7, 92.3, 10.2 to 1, 77.3, 76.6 +NA,NA,a-exp-i3,2017-18,Southampton - William E Norris,02750005, 37.5, 100.0, 13.7 to 1, 89.3, 97.3 +NA,NA,a-exp-i3,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 17.2, 100.0, 15.5 to 1, 88.4, 100.0 +NA,NA,a-exp-i3,2017-18,Southborough - Margaret A Neary,02760020, 17.6, 100.0, 14.7 to 1, 94.3, 100.0 +NA,NA,a-exp-i3,2017-18,Southborough - Mary E Finn School,02760008, 21.5, 100.0, 15.6 to 1, 92.6, 100.0 +NA,NA,a-exp-i3,2017-18,Southborough - P Brent Trottier,02760305, 36.7, 100.0, 12.5 to 1, 94.0, 94.5 +NA,NA,a-exp-i3,2017-18,Southbridge - Charlton Street,02770005, 32.2, 83.8, 9.6 to 1, 59.0, 100.0 +NA,NA,a-exp-i3,2017-18,Southbridge - Eastford Road,02770010, 28.0, 89.3, 14.0 to 1, 64.3, 89.3 +NA,NA,a-exp-i3,2017-18,Southbridge - Southbridge High School,02770515, 47.3, 93.3, 10.6 to 1, 64.4, 70.6 +NA,NA,a-exp-i3,2017-18,Southbridge - Southbridge Middle School,02770315, 48.1, 88.5, 10.0 to 1, 40.7, 67.5 +NA,NA,a-exp-i3,2017-18,Southbridge - West Street,02770020, 32.0, 100.0, 9.9 to 1, 71.8, 87.5 +NA,NA,a-exp-i3,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 117.0, 95.7, 12.2 to 1, 75.6, 82.9 +NA,NA,a-exp-i3,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 37.0, 99.5, 8.2 to 1, 96.2, 97.3 +NA,NA,a-exp-i3,2017-18,Southern Berkshire - New Marlborough Central,07650018, 7.6, 100.0, 11.4 to 1, 68.4, 81.6 +NA,NA,a-exp-i3,2017-18,Southern Berkshire - Undermountain,07650035, 28.8, 100.0, 10.1 to 1, 88.2, 98.6 +NA,NA,a-exp-i3,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 112.0, 95.5, 10.0 to 1, 77.7, 80.4 +NA,NA,a-exp-i3,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 35.4, 97.2, 12.5 to 1, 91.5, 98.6 +NA,NA,a-exp-i3,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 66.0, 100.0, 10.9 to 1, 92.4, 92.4 +NA,NA,a-exp-i3,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.9, 100.0, 11.2 to 1, 73.3, 98.5 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 28.0, 100.0, 10.5 to 1, 90.0, 92.8 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 19.5, 100.0, 11.8 to 1, 94.9, 94.9 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 30.0, 100.0, 13.9 to 1, 81.6, 90.0 +NA,NA,a-exp-i3,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 34.5, 100.0, 12.3 to 1, 82.6, 97.1 +NA,NA,a-exp-i3,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 28.0, 96.4, 15.5 to 1, 89.3, 89.3 +NA,NA,a-exp-i3,2017-18,Springfield - Alice B Beal Elementary,02810175, 20.1, 100.0, 13.0 to 1, 90.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Arthur T Talmadge,02810165, 19.6, 94.9, 12.9 to 1, 74.5, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Balliet Middle School,02810360, 10.4, 100.0, 4.9 to 1, 61.3, 61.3 +NA,NA,a-exp-i3,2017-18,Springfield - Brightwood,02810025, 24.0, 95.8, 13.2 to 1, 83.3, 91.7 +NA,NA,a-exp-i3,2017-18,Springfield - Chestnut Academy,02810365, 36.8, 81.9, 11.4 to 1, 69.6, 84.3 +NA,NA,a-exp-i3,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 24.1, 83.4, 13.1 to 1, 39.9, 60.6 +NA,NA,a-exp-i3,2017-18,Springfield - Conservatory of the Arts,02810475, 28.9, 95.3, 12.7 to 1, 79.2, 77.5 +NA,NA,a-exp-i3,2017-18,Springfield - Daniel B Brunton,02810035, 34.0, 100.0, 13.7 to 1, 91.2, 91.2 +NA,NA,a-exp-i3,2017-18,Springfield - Early Childhood Education Center,02810001, 13.0, 92.3, 13.1 to 1, 61.5, 92.3 +NA,NA,a-exp-i3,2017-18,Springfield - Edward P. Boland School,02810010, 54.9, 94.5, 14.3 to 1, 81.8, 90.9 +NA,NA,a-exp-i3,2017-18,Springfield - Elias Brookings,02810030, 27.9, 96.4, 12.3 to 1, 78.5, 89.3 +NA,NA,a-exp-i3,2017-18,Springfield - Forest Park Middle,02810325, 51.9, 96.1, 13.7 to 1, 88.5, 88.4 +NA,NA,a-exp-i3,2017-18,Springfield - Frank H Freedman,02810075, 20.0, 95.0, 17.6 to 1, 95.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Frederick Harris,02810080, 41.0, 95.1, 15.5 to 1, 95.1, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, .0, 100.0,###### to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, .0, 100.0,###### to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - German Gerena Community School,02810195, 55.5, 95.5, 13.0 to 1, 79.3, 91.0 +NA,NA,a-exp-i3,2017-18,Springfield - Glenwood,02810065, 22.0, 100.0, 13.5 to 1, 77.3, 95.5 +NA,NA,a-exp-i3,2017-18,Springfield - Glickman Elementary,02810068, 24.0, 87.5, 13.9 to 1, 79.2, 91.7 +NA,NA,a-exp-i3,2017-18,Springfield - High School Of Commerce,02810510, 92.5, 86.7, 11.7 to 1, 64.2, 76.9 +NA,NA,a-exp-i3,2017-18,Springfield - Hiram L Dorman,02810050, 21.0, 100.0, 14.6 to 1, 76.2, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Homer Street,02810085, 27.0, 100.0, 16.4 to 1, 74.1, 88.9 +NA,NA,a-exp-i3,2017-18,Springfield - Impact Prep at Chestnut,02810366, 17.5, 68.7, 13.1 to 1, 43.3, 64.7 +NA,NA,a-exp-i3,2017-18,Springfield - Indian Orchard Elementary,02810100, 46.0, 97.8, 13.9 to 1, 52.2, 89.1 +NA,NA,a-exp-i3,2017-18,Springfield - John F Kennedy Middle,02810328, 32.1, 75.0, 14.0 to 1, 12.5, 31.4 +NA,NA,a-exp-i3,2017-18,Springfield - John J Duggan Middle,02810320, 65.4, 88.5, 11.7 to 1, 66.4, 70.2 +NA,NA,a-exp-i3,2017-18,Springfield - Kensington International School,02810110, 20.0, 100.0, 15.5 to 1, 90.0, 95.0 +NA,NA,a-exp-i3,2017-18,Springfield - Liberty,02810115, 21.0, 100.0, 13.5 to 1, 90.5, 95.2 +NA,NA,a-exp-i3,2017-18,Springfield - Liberty Preparatory Academy,02810560, 3.2, 100.0, 3.8 to 1, 100.0, 68.5 +NA,NA,a-exp-i3,2017-18,Springfield - Lincoln,02810120, 26.0, 100.0, 15.5 to 1, 57.7, 88.5 +NA,NA,a-exp-i3,2017-18,Springfield - M Marcus Kiley Middle,02810330, 45.0, 86.7, 14.7 to 1, 77.8, 75.5 +NA,NA,a-exp-i3,2017-18,Springfield - Margaret C Ells,02810060, 15.0, 93.3, 16.0 to 1, 86.7, 73.3 +NA,NA,a-exp-i3,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 22.0, 100.0, 16.9 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Mary M Lynch,02810140, 19.0, 100.0, 14.0 to 1, 73.7, 89.5 +NA,NA,a-exp-i3,2017-18,Springfield - Mary M Walsh,02810155, 22.5, 100.0, 13.1 to 1, 68.8, 91.1 +NA,NA,a-exp-i3,2017-18,Springfield - Mary O Pottenger,02810145, 27.0, 100.0, 15.7 to 1, 88.9, 96.3 +NA,NA,a-exp-i3,2017-18,Springfield - Milton Bradley School,02810023, 39.0, 100.0, 14.0 to 1, 59.0, 89.7 +NA,NA,a-exp-i3,2017-18,Springfield - Rebecca M Johnson,02810055, 48.5, 93.7, 15.4 to 1, 89.6, 91.8 +NA,NA,a-exp-i3,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 15.0, 86.7, 14.3 to 1, 6.7, 46.7 +NA,NA,a-exp-i3,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 132.0, 95.4, 10.9 to 1, 83.7, 77.3 +NA,NA,a-exp-i3,2017-18,Springfield - STEM Middle Academy,02810350, 20.0, 100.0, 14.7 to 1, 75.0, 70.0 +NA,NA,a-exp-i3,2017-18,Springfield - Samuel Bowles,02810020, 20.0, 95.0, 16.9 to 1, 80.0, 95.0 +NA,NA,a-exp-i3,2017-18,Springfield - South End Middle School,02810355, 18.0, 99.2, 13.3 to 1, 94.4, 88.9 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Central High,02810500, 143.9, 97.9, 14.2 to 1, 89.6, 87.5 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield High School,02810570, 16.3, 93.8, 13.0 to 1, 69.3, 84.7 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 88.2, 82.9, 14.8 to 1, 69.9, 77.5 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 10.2, 70.1, 7.2 to 1, 70.6, 80.4 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Public Day High School,02810550, 16.5, 81.9, 5.9 to 1, 69.7, 63.6 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Public Day Middle School,02810345, 12.2, 100.0, 4.1 to 1, 34.9, 75.6 +NA,NA,a-exp-i3,2017-18,Springfield - Springfield Vocational Academy,02810675, 3.0, 69.8, 31.2 to 1, 69.8, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - Sumner Avenue,02810160, 42.0, 92.9, 14.0 to 1, 76.2, 80.9 +NA,NA,a-exp-i3,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 49.0, 93.9, 14.2 to 1, 72.4, 89.8 +NA,NA,a-exp-i3,2017-18,Springfield - Thomas M Balliet,02810015, 20.0, 100.0, 15.9 to 1, 60.0, 85.0 +NA,NA,a-exp-i3,2017-18,Springfield - Van Sickle Academy,02810485, 32.0, 87.5, 12.6 to 1, 71.9, 68.8 +NA,NA,a-exp-i3,2017-18,Springfield - Warner,02810180, 22.0, 95.5, 13.2 to 1, 72.6, 81.7 +NA,NA,a-exp-i3,2017-18,Springfield - Washington,02810185, 27.0, 100.0, 15.4 to 1, 74.1, 100.0 +NA,NA,a-exp-i3,2017-18,Springfield - White Street,02810190, 28.0, 96.4, 16.3 to 1, 75.0, 85.7 +NA,NA,a-exp-i3,2017-18,Springfield - William N. DeBerry,02810045, 22.0, 95.5, 11.9 to 1, 77.3, 90.9 +NA,NA,a-exp-i3,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 19.3, 59.6, 11.1 to 1, 10.4, 80.8 +NA,NA,a-exp-i3,2017-18,Stoneham - Colonial Park,02840005, 19.5, 100.0, 14.3 to 1, 55.4, 98.5 +NA,NA,a-exp-i3,2017-18,Stoneham - Robin Hood,02840025, 25.1, 100.0, 15.2 to 1, 90.0, 97.6 +NA,NA,a-exp-i3,2017-18,Stoneham - South,02840030, 22.5, 100.0, 14.2 to 1, 90.9, 95.3 +NA,NA,a-exp-i3,2017-18,Stoneham - Stoneham Central Middle School,02840405, 65.1, 98.5, 10.5 to 1, 78.7, 87.4 +NA,NA,a-exp-i3,2017-18,Stoneham - Stoneham High,02840505, 57.4, 100.0, 11.8 to 1, 87.7, 94.4 +NA,NA,a-exp-i3,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 5.0, 100.0, 20.6 to 1, 60.0, 80.0 +NA,NA,a-exp-i3,2017-18,Stoughton - Helen Hansen Elementary,02850010, 22.7, 100.0, 10.2 to 1, 67.6, 88.7 +NA,NA,a-exp-i3,2017-18,Stoughton - Joseph H Gibbons,02850025, 27.8, 100.0, 12.8 to 1, 82.0, 97.2 +NA,NA,a-exp-i3,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 28.5, 100.0, 12.5 to 1, 85.6, 100.0 +NA,NA,a-exp-i3,2017-18,Stoughton - O'Donnell Middle School,02850405, 70.9, 100.0, 11.6 to 1, 82.3, 95.8 +NA,NA,a-exp-i3,2017-18,Stoughton - South Elementary,02850015, 19.5, 100.0, 12.7 to 1, 76.7, 95.8 +NA,NA,a-exp-i3,2017-18,Stoughton - Stoughton High,02850505, 98.9, 99.0, 11.1 to 1, 77.4, 91.4 +NA,NA,a-exp-i3,2017-18,Stoughton - West Elementary,02850020, 32.5, 100.0, 11.5 to 1, 66.3, 98.8 +NA,NA,a-exp-i3,2017-18,Sturbridge - Burgess Elementary,02870005, 67.6, 100.0, 13.3 to 1, 94.1, 98.5 +NA,NA,a-exp-i3,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 86.6, 46.8, 9.4 to 1, 62.9, 83.3 +NA,NA,a-exp-i3,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 74.5, 100.0, 12.6 to 1, 94.6, 94.6 +NA,NA,a-exp-i3,2017-18,Sudbury - General John Nixon Elementary,02880025, 28.1, 100.0, 12.1 to 1, 85.8, 100.0 +NA,NA,a-exp-i3,2017-18,Sudbury - Israel Loring School,02880015, 34.8, 100.0, 13.4 to 1, 77.0, 91.7 +NA,NA,a-exp-i3,2017-18,Sudbury - Josiah Haynes,02880010, 29.0, 100.0, 13.1 to 1, 92.4, 96.6 +NA,NA,a-exp-i3,2017-18,Sudbury - Peter Noyes,02880030, 41.5, 100.0, 13.7 to 1, 94.2, 100.0 +NA,NA,a-exp-i3,2017-18,Sunderland - Sunderland Elementary,02890005, 23.0, 100.0, 10.4 to 1, 77.3, 86.9 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton Early Learning,02900003, 19.3, 100.0, 17.0 to 1, 92.2, 100.0 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton Elementary,02900005, 22.9, 100.0, 14.3 to 1, 95.6, 100.0 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton High School,02900510, 32.8, 100.0, 12.2 to 1, 92.4, 90.9 +NA,NA,a-exp-i3,2017-18,Sutton - Sutton Middle School,02900305, 24.0, 99.2, 15.2 to 1, 89.6, 100.0 +NA,NA,a-exp-i3,2017-18,Swampscott - Clarke,02910005, 19.6, 100.0, 10.1 to 1, 86.0, 95.4 +NA,NA,a-exp-i3,2017-18,Swampscott - Hadley,02910010, 22.5, 100.0, 12.7 to 1, 80.0, 97.8 +NA,NA,a-exp-i3,2017-18,Swampscott - Stanley,02910020, 22.5, 100.0, 13.2 to 1, 78.8, 97.3 +NA,NA,a-exp-i3,2017-18,Swampscott - Swampscott High,02910505, 60.5, 98.1, 11.2 to 1, 81.3, 85.1 +NA,NA,a-exp-i3,2017-18,Swampscott - Swampscott Middle,02910305, 64.6, 100.0, 11.7 to 1, 88.8, 92.3 +NA,NA,a-exp-i3,2017-18,Swansea - Elizabeth S Brown,02920006, 19.0, 100.0, 14.4 to 1, 89.5, 94.7 +NA,NA,a-exp-i3,2017-18,Swansea - Gardner,02920015, 15.6, 100.0, 16.7 to 1, 96.8, 96.8 +NA,NA,a-exp-i3,2017-18,Swansea - Joseph Case High,02920505, 50.2, 100.0, 10.7 to 1, 90.0, 92.0 +NA,NA,a-exp-i3,2017-18,Swansea - Joseph Case Jr High,02920305, 41.5, 97.6, 12.6 to 1, 90.4, 95.2 +NA,NA,a-exp-i3,2017-18,Swansea - Joseph G Luther,02920020, 15.5, 100.0, 14.7 to 1, 77.4, 93.5 +NA,NA,a-exp-i3,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 18.2, 100.0, 14.0 to 1, 91.7, 97.2 +NA,NA,a-exp-i3,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 57.4, 98.3, 26.8 to 1, 59.3, 71.7 +NA,NA,a-exp-i3,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 45.2, 100.0, 13.1 to 1, 92.6, 97.3 +NA,NA,a-exp-i3,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 77.1, 100.0, 9.4 to 1, 92.6, 98.9 +NA,NA,a-exp-i3,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 92.5, 35.3 to 1, 72.4, 67.5 +NA,NA,a-exp-i3,2017-18,Taunton - Benjamin Friedman Middle,02930315, 51.3, 100.0, 14.9 to 1, 74.2, 94.1 +NA,NA,a-exp-i3,2017-18,Taunton - East Taunton Elementary,02930010, 41.9, 100.0, 14.7 to 1, 86.6, 97.8 +NA,NA,a-exp-i3,2017-18,Taunton - Edmund Hatch Bennett,02930007, 23.5, 100.0, 14.1 to 1, 83.7, 100.0 +NA,NA,a-exp-i3,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 12.0, 100.0, 28.2 to 1, 91.7, 91.7 +NA,NA,a-exp-i3,2017-18,Taunton - Elizabeth Pole,02930027, 41.6, 100.0, 15.0 to 1, 89.6, 97.4 +NA,NA,a-exp-i3,2017-18,Taunton - H H Galligan,02930057, 23.8, 100.0, 10.1 to 1, 88.5, 96.7 +NA,NA,a-exp-i3,2017-18,Taunton - Hopewell,02930035, 23.5, 100.0, 11.6 to 1, 83.7, 99.8 +NA,NA,a-exp-i3,2017-18,Taunton - John F Parker Middle,02930305, 33.5, 100.0, 14.8 to 1, 61.2, 79.7 +NA,NA,a-exp-i3,2017-18,Taunton - Joseph C Chamberlain,02930008, 35.6, 100.0, 14.5 to 1, 95.7, 92.7 +NA,NA,a-exp-i3,2017-18,Taunton - Joseph H Martin,02930042, 43.3, 100.0, 15.6 to 1, 81.5, 95.4 +NA,NA,a-exp-i3,2017-18,Taunton - Mulcahey Elementary School,02930015, 35.1, 100.0, 13.9 to 1, 81.5, 99.9 +NA,NA,a-exp-i3,2017-18,Taunton - Taunton Alternative High School,02930525, 6.0, 100.0, 15.8 to 1, 95.8, 100.0 +NA,NA,a-exp-i3,2017-18,Taunton - Taunton High,02930505, 160.7, 98.8, 16.4 to 1, 83.4, 86.6 +NA,NA,a-exp-i3,2017-18,Tewksbury - Heath-Brook,02950010, 23.5, 100.0, 14.9 to 1, 90.9, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - John F. Ryan,02950023, 45.8, 100.0, 11.2 to 1, 84.4, 89.1 +NA,NA,a-exp-i3,2017-18,Tewksbury - John W. Wynn Middle,02950305, 50.4, 100.0, 11.5 to 1, 80.6, 90.7 +NA,NA,a-exp-i3,2017-18,Tewksbury - L F Dewing,02950001, 37.2, 97.3, 16.3 to 1, 86.2, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - Louise Davy Trahan,02950025, 17.4, 100.0, 13.4 to 1, 63.2, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - North Street,02950020, 19.9, 100.0, 13.9 to 1, 83.6, 100.0 +NA,NA,a-exp-i3,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 65.9, 100.0, 13.9 to 1, 75.9, 90.9 +NA,NA,a-exp-i3,2017-18,Tisbury - Tisbury Elementary,02960005, 36.7, 100.0, 8.3 to 1, 83.1, 81.7 +NA,NA,a-exp-i3,2017-18,Topsfield - Proctor Elementary,02980005, 19.3, 100.0, 13.2 to 1, 94.8, 100.0 +NA,NA,a-exp-i3,2017-18,Topsfield - Steward Elementary,02980010, 29.2, 100.0, 13.0 to 1, 82.9, 100.0 +NA,NA,a-exp-i3,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 90.7, 98.9, 10.9 to 1, 86.8, 86.0 +NA,NA,a-exp-i3,2017-18,Triton - Newbury Elementary,07730020, 36.9, 100.0, 12.2 to 1, 82.4, 94.6 +NA,NA,a-exp-i3,2017-18,Triton - Pine Grove,07730025, 33.2, 100.0, 13.6 to 1, 97.0, 100.0 +NA,NA,a-exp-i3,2017-18,Triton - Salisbury Elementary,07730015, 42.8, 100.0, 12.3 to 1, 93.0, 97.7 +NA,NA,a-exp-i3,2017-18,Triton - Triton Regional High School,07730505, 58.1, 100.0, 12.4 to 1, 87.1, 89.7 +NA,NA,a-exp-i3,2017-18,Triton - Triton Regional Middle School,07730405, 29.2, 96.6, 14.2 to 1, 77.8, 81.2 +NA,NA,a-exp-i3,2017-18,Truro - Truro Central,03000005, 16.2, 100.0, 6.4 to 1, 81.4, 100.0 +NA,NA,a-exp-i3,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 56.4, 100.0, 12.9 to 1, 88.0, 98.2 +NA,NA,a-exp-i3,2017-18,Tyngsborough - Tyngsborough High School,03010505, 34.7, 100.0, 13.7 to 1, 86.7, 84.3 +NA,NA,a-exp-i3,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 34.7, 100.0, 11.8 to 1, 92.8, 83.1 +NA,NA,a-exp-i3,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 42.5, 92.9, 11.8 to 1, 43.5, 60.0 +NA,NA,a-exp-i3,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 56.4, 84.2, 13.1 to 1, 36.3, 49.6 +NA,NA,a-exp-i3,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 4.6, 100.0, 11.4 to 1, 67.0, 95.6 +NA,NA,a-exp-i3,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 39.9, 98.8, 8.8 to 1, 83.3, 90.0 +NA,NA,a-exp-i3,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 72.1, 97.2, 9.9 to 1, 76.4, 82.0 +NA,NA,a-exp-i3,2017-18,Uxbridge - Gateway to College,03040515, .0, 0.0,N/A,"","" +NA,NA,a-exp-i3,2017-18,Uxbridge - McCloskey Middle School,03040015, 25.5, 100.0, 15.8 to 1, 98.0, 96.1 +NA,NA,a-exp-i3,2017-18,Uxbridge - Taft Early Learning Center,03040005, 22.2, 100.0, 20.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Uxbridge - Uxbridge High,03040505, 38.8, 100.0, 12.4 to 1, 81.9, 81.7 +NA,NA,a-exp-i3,2017-18,Uxbridge - Whitin Elementary School,03040020, 21.5, 100.0, 17.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 31.0, 51.6, 10.4 to 1, 16.1, 77.4 +NA,NA,a-exp-i3,2017-18,Wachusett - Central Tree Middle,07750310, 27.4, 100.0, 13.6 to 1, 92.7, 95.1 +NA,NA,a-exp-i3,2017-18,Wachusett - Chocksett Middle School,07750315, 26.3, 100.0, 13.9 to 1, 90.5, 100.0 +NA,NA,a-exp-i3,2017-18,Wachusett - Davis Hill Elementary,07750018, 26.5, 100.0, 17.0 to 1, 96.2, 92.4 +NA,NA,a-exp-i3,2017-18,Wachusett - Dawson,07750020, 29.9, 100.0, 15.4 to 1, 90.0, 96.7 +NA,NA,a-exp-i3,2017-18,Wachusett - Early Childhood Center,07750001, 8.0, 100.0, 20.3 to 1, 75.0, 87.5 +NA,NA,a-exp-i3,2017-18,Wachusett - Glenwood Elementary School,07750060, 23.9, 100.0, 14.3 to 1, 91.6, 98.6 +NA,NA,a-exp-i3,2017-18,Wachusett - Houghton Elementary,07750027, 23.8, 100.0, 15.8 to 1, 93.7, 100.0 +NA,NA,a-exp-i3,2017-18,Wachusett - Leroy E.Mayo,07750032, 29.0, 100.0, 16.4 to 1, 96.6, 100.0 +NA,NA,a-exp-i3,2017-18,Wachusett - Mountview Middle,07750305, 46.1, 100.0, 17.4 to 1, 89.2, 97.8 +NA,NA,a-exp-i3,2017-18,Wachusett - Naquag Elementary School,07750005, 21.2, 100.0, 16.1 to 1, 90.6, 93.7 +NA,NA,a-exp-i3,2017-18,Wachusett - Paxton Center,07750040, 31.7, 100.0, 14.8 to 1, 74.9, 90.5 +NA,NA,a-exp-i3,2017-18,Wachusett - Thomas Prince,07750045, 24.6, 100.0, 16.3 to 1, 65.1, 84.7 +NA,NA,a-exp-i3,2017-18,Wachusett - Wachusett Regional High,07750505, 144.0, 100.0, 14.8 to 1, 86.8, 90.3 +NA,NA,a-exp-i3,2017-18,Wakefield - Dolbeare,03050005, 30.6, 100.0, 14.6 to 1, 93.5, 100.0 +NA,NA,a-exp-i3,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 9.2, 100.0, 13.7 to 1, 67.4, 89.1 +NA,NA,a-exp-i3,2017-18,Wakefield - Galvin Middle School,03050310, 82.7, 100.0, 12.6 to 1, 88.4, 91.5 +NA,NA,a-exp-i3,2017-18,Wakefield - Greenwood,03050020, 12.3, 100.0, 18.0 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Wakefield - Wakefield Memorial High,03050505, 82.4, 100.0, 12.5 to 1, 93.9, 93.9 +NA,NA,a-exp-i3,2017-18,Wakefield - Walton,03050040, 11.3, 100.0, 18.2 to 1, 98.2, 100.0 +NA,NA,a-exp-i3,2017-18,Wakefield - Woodville School,03050015, 28.4, 100.0, 15.2 to 1, 90.1, 100.0 +NA,NA,a-exp-i3,2017-18,Wales - Wales Elementary,03060005, 10.4, 100.0, 15.4 to 1, 98.1, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Bird Middle,03070305, 35.2, 100.0, 13.9 to 1, 88.1, 96.9 +NA,NA,a-exp-i3,2017-18,Walpole - Boyden,03070010, 29.4, 100.0, 12.1 to 1, 96.6, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 5.0, 100.0, 14.6 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 34.9, 98.3, 12.8 to 1, 89.4, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Elm Street School,03070005, 28.7, 100.0, 15.0 to 1, 90.6, 97.6 +NA,NA,a-exp-i3,2017-18,Walpole - Fisher,03070015, 36.9, 100.0, 12.3 to 1, 97.3, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Old Post Road,03070018, 30.0, 100.0, 14.0 to 1, 96.7, 100.0 +NA,NA,a-exp-i3,2017-18,Walpole - Walpole High,03070505, 84.6, 99.3, 13.4 to 1, 87.5, 95.3 +NA,NA,a-exp-i3,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 36.7, 100.0, 12.0 to 1, 89.0, 97.3 +NA,NA,a-exp-i3,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 40.0, 100.0, 10.8 to 1, 91.2, 94.4 +NA,NA,a-exp-i3,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 37.1, 99.1, 11.8 to 1, 83.0, 97.2 +NA,NA,a-exp-i3,2017-18,Waltham - John F Kennedy Middle,03080404, 54.2, 100.0, 9.4 to 1, 85.9, 91.4 +NA,NA,a-exp-i3,2017-18,Waltham - John W. McDevitt Middle School,03080415, 61.3, 100.0, 10.3 to 1, 77.2, 90.2 +NA,NA,a-exp-i3,2017-18,Waltham - Northeast Elementary School,03080040, 43.1, 100.0, 13.8 to 1, 80.6, 97.1 +NA,NA,a-exp-i3,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 39.5, 97.3, 10.7 to 1, 68.6, 95.6 +NA,NA,a-exp-i3,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 4.9, 100.0, 16.3 to 1, 29.9, 95.9 +NA,NA,a-exp-i3,2017-18,Waltham - Waltham Sr High,03080505, 141.9, 100.0, 11.4 to 1, 74.1, 89.6 +NA,NA,a-exp-i3,2017-18,Waltham - William F. Stanley Elementary School,03080005, 43.6, 100.0, 9.9 to 1, 85.0, 98.5 +NA,NA,a-exp-i3,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 28.6, 100.0, 14.4 to 1, 86.0, 100.0 +NA,NA,a-exp-i3,2017-18,Ware - Ware Junior/Senior High School,03090505, 38.8, 99.6, 12.0 to 1, 87.7, 85.6 +NA,NA,a-exp-i3,2017-18,Ware - Ware Middle School,03090305, 23.6, 100.0, 14.2 to 1, 85.6, 94.1 +NA,NA,a-exp-i3,2017-18,Wareham - John William Decas,03100003, 45.6, 100.0, 12.7 to 1, 85.7, 98.9 +NA,NA,a-exp-i3,2017-18,Wareham - Minot Forest,03100017, 33.4, 97.0, 14.7 to 1, 70.1, 97.0 +NA,NA,a-exp-i3,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 3.1, 92.0, 20.1 to 1, 44.1, 84.0 +NA,NA,a-exp-i3,2017-18,Wareham - Wareham Middle,03100305, 53.6, 100.0, 13.5 to 1, 81.3, 90.7 +NA,NA,a-exp-i3,2017-18,Wareham - Wareham Senior High,03100505, 53.7, 99.1, 8.5 to 1, 82.3, 85.4 +NA,NA,a-exp-i3,2017-18,Watertown - Cunniff,03140015, 31.3, 100.0, 9.8 to 1, 68.1, 94.9 +NA,NA,a-exp-i3,2017-18,Watertown - Hosmer,03140020, 59.1, 100.0, 11.5 to 1, 74.2, 93.2 +NA,NA,a-exp-i3,2017-18,Watertown - James Russell Lowell,03140025, 38.4, 100.0, 10.8 to 1, 86.5, 100.0 +NA,NA,a-exp-i3,2017-18,Watertown - Watertown High,03140505, 66.4, 99.4, 10.1 to 1, 80.7, 93.1 +NA,NA,a-exp-i3,2017-18,Watertown - Watertown Middle,03140305, 52.0, 100.0, 10.1 to 1, 86.7, 96.2 +NA,NA,a-exp-i3,2017-18,Wayland - Claypit Hill School,03150005, 43.1, 100.0, 12.6 to 1, 85.8, 97.7 +NA,NA,a-exp-i3,2017-18,Wayland - Happy Hollow School,03150015, 27.2, 100.0, 14.2 to 1, 92.6, 97.8 +NA,NA,a-exp-i3,2017-18,Wayland - Loker School,03150020, 20.6, 100.0, 13.6 to 1, 89.8, 96.1 +NA,NA,a-exp-i3,2017-18,Wayland - Wayland High School,03150505, 72.0, 99.6, 11.9 to 1, 88.6, 96.7 +NA,NA,a-exp-i3,2017-18,Wayland - Wayland Middle School,03150305, 54.9, 100.0, 11.6 to 1, 95.2, 94.2 +NA,NA,a-exp-i3,2017-18,Webster - Bartlett High School,03160505, 42.5, 98.8, 10.3 to 1, 89.4, 85.9 +NA,NA,a-exp-i3,2017-18,Webster - Park Avenue Elementary,03160015, 53.0, 100.0, 15.6 to 1, 73.6, 88.7 +NA,NA,a-exp-i3,2017-18,Webster - Webster Middle School,03160315, 42.4, 100.0, 13.9 to 1, 76.4, 83.5 +NA,NA,a-exp-i3,2017-18,Wellesley - Ernest F Upham,03170050, 19.7, 100.0, 12.0 to 1, 78.8, 85.8 +NA,NA,a-exp-i3,2017-18,Wellesley - Hunnewell,03170025, 17.4, 100.0, 14.3 to 1, 80.6, 90.0 +NA,NA,a-exp-i3,2017-18,Wellesley - John D Hardy,03170020, 22.7, 100.0, 13.0 to 1, 85.9, 99.1 +NA,NA,a-exp-i3,2017-18,Wellesley - Joseph E Fiske,03170015, 33.0, 100.0, 12.1 to 1, 84.8, 97.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Katharine Lee Bates,03170005, 21.0, 100.0, 17.7 to 1, 95.2, 100.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Schofield,03170045, 25.0, 100.0, 15.1 to 1, 96.0, 96.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Sprague Elementary School,03170048, 28.3, 100.0, 13.5 to 1, 92.0, 99.0 +NA,NA,a-exp-i3,2017-18,Wellesley - Wellesley Middle,03170305, 104.6, 100.0, 10.8 to 1, 89.9, 95.3 +NA,NA,a-exp-i3,2017-18,Wellesley - Wellesley Sr High,03170505, 119.7, 99.6, 13.1 to 1, 90.5, 92.9 +NA,NA,a-exp-i3,2017-18,Wellfleet - Wellfleet Elementary,03180005, 14.8, 100.0, 7.6 to 1, 91.9, 93.2 +NA,NA,a-exp-i3,2017-18,West Boylston - Major Edwards Elementary,03220005, 35.3, 100.0, 11.9 to 1, 85.8, 100.0 +NA,NA,a-exp-i3,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 48.0, 100.0, 10.1 to 1, 86.5, 94.1 +NA,NA,a-exp-i3,2017-18,West Bridgewater - Howard School,03230305, 18.5, 100.0, 15.6 to 1, 96.2, 97.3 +NA,NA,a-exp-i3,2017-18,West Bridgewater - Rose L Macdonald,03230003, 15.2, 100.0, 16.3 to 1, 80.2, 100.0 +NA,NA,a-exp-i3,2017-18,West Bridgewater - Spring Street School,03230005, 8.9, 100.0, 15.9 to 1, 88.8, 100.0 +NA,NA,a-exp-i3,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 51.5, 100.0, 12.2 to 1, 87.8, 94.2 +NA,NA,a-exp-i3,2017-18,West Springfield - 21st Century Skills Academy,03320515, 6.2, 97.2, 1.3 to 1, 97.2, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - Cowing Early Childhood,03320001, 6.0, 100.0, 20.3 to 1, 83.3, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - John Ashley,03320005, 17.5, 100.0, 13.4 to 1, 98.1, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - John R Fausey,03320010, 34.7, 100.0, 13.3 to 1, 85.6, 97.1 +NA,NA,a-exp-i3,2017-18,West Springfield - Memorial,03320025, 19.0, 100.0, 12.6 to 1, 80.4, 100.0 +NA,NA,a-exp-i3,2017-18,West Springfield - Mittineague,03320030, 14.7, 100.0, 11.0 to 1, 88.9, 95.7 +NA,NA,a-exp-i3,2017-18,West Springfield - Philip G Coburn,03320007, 45.2, 100.0, 11.5 to 1, 94.1, 96.9 +NA,NA,a-exp-i3,2017-18,West Springfield - Tatham,03320040, 19.0, 100.0, 12.6 to 1, 81.2, 94.7 +NA,NA,a-exp-i3,2017-18,West Springfield - West Springfield High,03320505, 94.2, 100.0, 13.1 to 1, 96.8, 94.7 +NA,NA,a-exp-i3,2017-18,West Springfield - West Springfield Middle,03320305, 72.5, 98.6, 12.4 to 1, 94.9, 100.0 +NA,NA,a-exp-i3,2017-18,Westborough - Annie E Fales,03210010, 28.9, 100.0, 11.7 to 1, 82.7, 89.6 +NA,NA,a-exp-i3,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 43.1, 100.0, 11.6 to 1, 73.7, 95.4 +NA,NA,a-exp-i3,2017-18,Westborough - J Harding Armstrong,03210005, 34.6, 100.0, 12.2 to 1, 79.8, 97.1 +NA,NA,a-exp-i3,2017-18,Westborough - Mill Pond School,03210045, 70.3, 100.0, 13.3 to 1, 87.1, 96.0 +NA,NA,a-exp-i3,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 54.9, 100.0, 10.9 to 1, 83.6, 90.9 +NA,NA,a-exp-i3,2017-18,Westborough - Westborough High,03210505, 89.5, 99.0, 12.6 to 1, 82.7, 93.3 +NA,NA,a-exp-i3,2017-18,Westfield - Abner Gibbs,03250020, 15.4, 100.0, 14.5 to 1, 95.6, 98.1 +NA,NA,a-exp-i3,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 24.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Westfield - Franklin Ave,03250015, 16.8, 100.0, 14.7 to 1, 83.8, 95.8 +NA,NA,a-exp-i3,2017-18,Westfield - Highland,03250025, 33.1, 100.0, 11.3 to 1, 93.9, 94.9 +NA,NA,a-exp-i3,2017-18,Westfield - Munger Hill,03250033, 27.9, 100.0, 13.6 to 1, 94.1, 95.2 +NA,NA,a-exp-i3,2017-18,Westfield - North Middle School,03250305, 51.4, 100.0, 13.1 to 1, 86.3, 92.1 +NA,NA,a-exp-i3,2017-18,Westfield - Paper Mill,03250036, 30.8, 100.0, 13.4 to 1, 79.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westfield - Russell Elementary School,03250055, 12.2, 100.0, 13.2 to 1, 91.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westfield - South Middle School,03250310, 50.3, 100.0, 11.7 to 1, 92.0, 94.0 +NA,NA,a-exp-i3,2017-18,Westfield - Southampton Road,03250040, 30.5, 100.0, 13.9 to 1, 90.7, 96.7 +NA,NA,a-exp-i3,2017-18,Westfield - Westfield High,03250505, 91.7, 98.9, 13.7 to 1, 86.0, 93.8 +NA,NA,a-exp-i3,2017-18,Westfield - Westfield Technical Academy,03250605, 55.0, 89.9, 9.8 to 1, 87.7, 84.6 +NA,NA,a-exp-i3,2017-18,Westford - Abbot Elementary,03260004, 21.8, 100.0, 16.8 to 1, 82.6, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Blanchard Middle,03260310, 46.7, 100.0, 12.6 to 1, 89.3, 93.6 +NA,NA,a-exp-i3,2017-18,Westford - Col John Robinson,03260025, 16.3, 100.0, 17.9 to 1, 90.8, 93.9 +NA,NA,a-exp-i3,2017-18,Westford - Day Elementary,03260007, 22.0, 100.0, 16.2 to 1, 97.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 20.6, 100.0, 16.7 to 1, 94.2, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Millennium Elementary,03260013, 7.8, 100.0, 14.1 to 1, 98.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Nabnasset,03260015, 18.8, 100.0, 17.5 to 1, 91.5, 100.0 +NA,NA,a-exp-i3,2017-18,Westford - Rita E. Miller Elementary School,03260055, 18.8, 100.0, 17.3 to 1, 92.0, 92.0 +NA,NA,a-exp-i3,2017-18,Westford - Stony Brook School,03260330, 51.0, 100.0, 12.7 to 1, 92.2, 96.1 +NA,NA,a-exp-i3,2017-18,Westford - Westford Academy,03260505, 119.1, 99.7, 14.4 to 1, 89.0, 95.8 +NA,NA,a-exp-i3,2017-18,Westhampton - Westhampton Elementary School,03270005, 14.4, 100.0, 8.5 to 1, 93.1, 100.0 +NA,NA,a-exp-i3,2017-18,Weston - Country,03300010, 21.2, 98.6, 14.3 to 1, 84.4, 95.3 +NA,NA,a-exp-i3,2017-18,Weston - Field Elementary School,03300012, 24.4, 100.0, 13.3 to 1, 80.9, 92.8 +NA,NA,a-exp-i3,2017-18,Weston - Weston High,03300505, 63.8, 99.7, 10.9 to 1, 85.4, 98.4 +NA,NA,a-exp-i3,2017-18,Weston - Weston Middle,03300305, 39.9, 99.5, 12.1 to 1, 89.0, 90.5 +NA,NA,a-exp-i3,2017-18,Weston - Woodland,03300015, 18.1, 100.0, 16.5 to 1, 84.9, 94.5 +NA,NA,a-exp-i3,2017-18,Westport - Alice A Macomber,03310015, 25.0, 100.0, 14.9 to 1, 88.0, 100.0 +NA,NA,a-exp-i3,2017-18,Westport - Westport Elementary,03310030, 38.5, 100.0, 13.2 to 1, 87.0, 89.6 +NA,NA,a-exp-i3,2017-18,Westport - Westport Junior/Senior High School,03310515, 54.2, 100.0, 10.1 to 1, 83.9, 93.5 +NA,NA,a-exp-i3,2017-18,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.7 to 1, 92.0, 100.0 +NA,NA,a-exp-i3,2017-18,Westwood - Downey,03350012, 18.6, 100.0, 13.5 to 1, 91.4, 86.0 +NA,NA,a-exp-i3,2017-18,Westwood - E W Thurston Middle,03350305, 59.7, 100.0, 13.3 to 1, 87.6, 96.7 +NA,NA,a-exp-i3,2017-18,Westwood - Martha Jones,03350017, 19.5, 100.0, 15.1 to 1, 88.2, 94.9 +NA,NA,a-exp-i3,2017-18,Westwood - Paul Hanlon,03350015, 15.9, 100.0, 13.8 to 1, 84.7, 95.0 +NA,NA,a-exp-i3,2017-18,Westwood - Westwood High,03350505, 78.6, 100.0, 12.7 to 1, 73.2, 93.6 +NA,NA,a-exp-i3,2017-18,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 15.3 to 1, 66.7, 100.0 +NA,NA,a-exp-i3,2017-18,Westwood - William E Sheehan,03350025, 22.1, 100.0, 14.4 to 1, 95.5, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Abigail Adams Middle School,03360310, 71.4, 98.0, 12.7 to 1, 86.4, 91.2 +NA,NA,a-exp-i3,2017-18,Weymouth - Academy Avenue,03360005, 19.7, 100.0, 15.6 to 1, 82.8, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Frederick C Murphy,03360050, 16.3, 100.0, 15.1 to 1, 79.9, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 15.6 to 1, 72.6, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Lawrence W Pingree,03360065, 13.2, 100.0, 14.6 to 1, 84.9, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 74.0, 100.0, 11.9 to 1, 79.8, 85.1 +NA,NA,a-exp-i3,2017-18,Weymouth - Ralph Talbot,03360085, 18.0, 100.0, 13.8 to 1, 87.0, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Thomas V Nash,03360060, 13.6, 100.0, 14.9 to 1, 85.3, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 20.8, 100.0, 16.9 to 1, 92.8, 100.0 +NA,NA,a-exp-i3,2017-18,Weymouth - Wessagusset,03360110, 18.7, 100.0, 14.9 to 1, 83.2, 96.9 +NA,NA,a-exp-i3,2017-18,Weymouth - Weymouth High School,03360505, 136.7, 99.3, 13.9 to 1, 83.3, 88.9 +NA,NA,a-exp-i3,2017-18,Weymouth - William Seach,03360080, 16.8, 100.0, 18.9 to 1, 83.0, 91.5 +NA,NA,a-exp-i3,2017-18,Whately - Whately Elementary,03370005, 12.7, 100.0, 11.1 to 1, 72.4, 100.0 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 28.2, 100.0, 13.9 to 1, 85.8, 92.9 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Indian Head,07800035, 22.0, 100.0, 14.7 to 1, 86.4, 100.0 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - John H Duval,07800030, 27.1, 100.0, 16.4 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Louise A Conley,07800010, 34.3, 100.0, 16.4 to 1, 79.6, 94.2 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 24.2, 100.0, 18.0 to 1, 91.7, 95.9 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 72.6, 100.0, 16.1 to 1, 80.7, 84.5 +NA,NA,a-exp-i3,2017-18,Whitman-Hanson - Whitman Middle,07800310, 36.2, 100.0, 15.9 to 1, 94.8, 89.3 +NA,NA,a-exp-i3,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 113.9, 97.4, 11.0 to 1, 88.1, 82.4 +NA,NA,a-exp-i3,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 17.2, 100.0, 9.5 to 1, 94.2, 100.0 +NA,NA,a-exp-i3,2017-18,Williamstown - Williamstown Elementary,03410010, 38.8, 100.0, 11.8 to 1, 82.5, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Boutwell,03420005, 12.5, 100.0, 12.9 to 1, 67.9, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - North Intermediate,03420060, 21.5, 100.0, 14.1 to 1, 95.4, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Shawsheen Elementary,03420025, 30.0, 100.0, 11.5 to 1, 88.4, 96.7 +NA,NA,a-exp-i3,2017-18,Wilmington - West Intermediate,03420080, 22.0, 100.0, 11.2 to 1, 84.1, 95.4 +NA,NA,a-exp-i3,2017-18,Wilmington - Wildwood,03420015, 12.4, 100.0, 15.7 to 1, 91.9, 100.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Wilmington High,03420505, 71.8, 100.0, 12.0 to 1, 92.2, 95.0 +NA,NA,a-exp-i3,2017-18,Wilmington - Wilmington Middle School,03420330, 74.2, 100.0, 11.3 to 1, 85.0, 93.6 +NA,NA,a-exp-i3,2017-18,Wilmington - Woburn Street,03420020, 31.0, 100.0, 12.4 to 1, 96.8, 100.0 +NA,NA,a-exp-i3,2017-18,Winchendon - Memorial,03430040, 16.5, 100.0, 18.6 to 1, 93.9, 93.9 +NA,NA,a-exp-i3,2017-18,Winchendon - Murdock Academy for Success,03430405, 1.5, 100.0, 19.5 to 1, 77.9, 100.0 +NA,NA,a-exp-i3,2017-18,Winchendon - Murdock High School,03430515, 25.4, 100.0, 12.0 to 1, 68.8, 90.6 +NA,NA,a-exp-i3,2017-18,Winchendon - Murdock Middle School,03430315, 20.3, 100.0, 13.5 to 1, 88.9, 88.9 +NA,NA,a-exp-i3,2017-18,Winchendon - Toy Town Elementary,03430050, 20.5, 100.0, 14.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 3.0, 100.0, 26.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Winchester - Ambrose Elementary,03440045, 36.6, 100.0, 11.5 to 1, 82.4, 97.3 +NA,NA,a-exp-i3,2017-18,Winchester - Lincoln Elementary,03440005, 32.5, 100.0, 12.4 to 1, 72.3, 100.0 +NA,NA,a-exp-i3,2017-18,Winchester - Lynch Elementary,03440020, 47.6, 100.0, 11.3 to 1, 83.4, 97.9 +NA,NA,a-exp-i3,2017-18,Winchester - McCall Middle,03440305, 83.5, 100.0, 13.3 to 1, 78.7, 90.7 +NA,NA,a-exp-i3,2017-18,Winchester - Muraco Elementary,03440040, 34.4, 100.0, 11.1 to 1, 85.5, 100.0 +NA,NA,a-exp-i3,2017-18,Winchester - Vinson-Owen Elementary,03440025, 35.1, 100.0, 13.0 to 1, 83.6, 94.3 +NA,NA,a-exp-i3,2017-18,Winchester - Winchester High School,03440505, 90.6, 100.0, 14.9 to 1, 90.3, 95.2 +NA,NA,a-exp-i3,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 23.5, 100.0, 19.4 to 1, 74.4, 95.7 +NA,NA,a-exp-i3,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 29.5, 100.0, 16.0 to 1, 64.4, 93.2 +NA,NA,a-exp-i3,2017-18,Winthrop - Winthrop High School,03460505, 44.2, 97.7, 13.9 to 1, 77.4, 61.5 +NA,NA,a-exp-i3,2017-18,Winthrop - Winthrop Middle School,03460305, 34.5, 100.0, 14.0 to 1, 74.7, 76.8 +NA,NA,a-exp-i3,2017-18,Woburn - Clyde Reeves,03470040, 29.0, 100.0, 14.8 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 53.5, 100.0, 9.8 to 1, 92.5, 94.4 +NA,NA,a-exp-i3,2017-18,Woburn - Daniel P Hurld,03470020, 14.2, 100.0, 15.2 to 1, 84.5, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Goodyear Elementary School,03470005, 24.8, 96.0, 12.4 to 1, 83.8, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - John F Kennedy Middle School,03470405, 48.5, 100.0, 10.0 to 1, 85.6, 85.6 +NA,NA,a-exp-i3,2017-18,Woburn - Linscott-Rumford,03470025, 16.2, 100.0, 12.8 to 1, 98.7, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Malcolm White,03470055, 23.0, 100.0, 14.1 to 1, 90.4, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Mary D Altavesta,03470065, 17.1, 100.0, 14.5 to 1, 87.1, 100.0 +NA,NA,a-exp-i3,2017-18,Woburn - Shamrock,03470043, 30.5, 100.0, 11.9 to 1, 83.6, 96.7 +NA,NA,a-exp-i3,2017-18,Woburn - Woburn High,03470505, 104.6, 100.0, 12.6 to 1, 92.8, 94.3 +NA,NA,a-exp-i3,2017-18,Woburn - Wyman,03470060, 13.3, 100.0, 13.7 to 1, 98.5, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Belmont Street Community,03480020, 31.5, 100.0, 18.4 to 1, 73.6, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Burncoat Middle School,03480405, 50.4, 98.0, 12.4 to 1, 80.9, 84.6 +NA,NA,a-exp-i3,2017-18,Worcester - Burncoat Senior High,03480503, 79.6, 97.5, 13.0 to 1, 89.4, 92.2 +NA,NA,a-exp-i3,2017-18,Worcester - Burncoat Street,03480035, 18.9, 100.0, 15.5 to 1, 76.0, 94.2 +NA,NA,a-exp-i3,2017-18,Worcester - Canterbury,03480045, 25.2, 100.0, 14.9 to 1, 69.6, 91.0 +NA,NA,a-exp-i3,2017-18,Worcester - Chandler Elementary Community,03480050, 26.6, 92.5, 18.8 to 1, 84.7, 96.2 +NA,NA,a-exp-i3,2017-18,Worcester - Chandler Magnet,03480052, 38.3, 100.0, 11.3 to 1, 78.1, 91.7 +NA,NA,a-exp-i3,2017-18,Worcester - City View,03480053, 31.6, 100.0, 15.0 to 1, 95.7, 96.9 +NA,NA,a-exp-i3,2017-18,Worcester - Claremont Academy,03480350, 40.2, 97.5, 13.7 to 1, 87.6, 85.1 +NA,NA,a-exp-i3,2017-18,Worcester - Clark St Community,03480055, 17.6, 100.0, 14.8 to 1, 83.4, 99.2 +NA,NA,a-exp-i3,2017-18,Worcester - Columbus Park,03480060, 26.8, 100.0, 18.9 to 1, 91.8, 97.0 +NA,NA,a-exp-i3,2017-18,Worcester - Doherty Memorial High,03480512, 101.4, 97.0, 15.4 to 1, 87.2, 89.1 +NA,NA,a-exp-i3,2017-18,Worcester - Elm Park Community,03480095, 28.2, 96.7, 16.9 to 1, 68.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Flagg Street,03480090, 22.5, 100.0, 18.1 to 1, 94.0, 98.7 +NA,NA,a-exp-i3,2017-18,Worcester - Forest Grove Middle,03480415, 68.8, 100.0, 14.2 to 1, 92.7, 92.4 +NA,NA,a-exp-i3,2017-18,Worcester - Francis J McGrath Elementary,03480177, 15.4, 100.0, 15.4 to 1, 99.5, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Gates Lane,03480110, 39.9, 97.5, 14.3 to 1, 81.9, 87.4 +NA,NA,a-exp-i3,2017-18,Worcester - Goddard School/Science Technical,03480100, 32.9, 100.0, 14.1 to 1, 65.9, 93.9 +NA,NA,a-exp-i3,2017-18,Worcester - Grafton Street,03480115, 23.0, 95.7, 16.8 to 1, 70.6, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Head Start,03480002, 31.2, 26.1, 17.0 to 1, 45.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Heard Street,03480136, 17.3, 100.0, 17.1 to 1, 93.7, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 26.3, 100.0, 15.3 to 1, 95.6, 95.8 +NA,NA,a-exp-i3,2017-18,Worcester - Lake View,03480145, 16.5, 100.0, 17.3 to 1, 100.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Lincoln Street,03480160, 18.3, 100.0, 14.8 to 1, 61.7, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - May Street,03480175, 18.4, 100.0, 18.4 to 1, 94.1, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Midland Street,03480185, 16.3, 100.0, 14.1 to 1, 92.8, 99.4 +NA,NA,a-exp-i3,2017-18,Worcester - Nelson Place,03480200, 33.8, 100.0, 15.4 to 1, 90.3, 99.7 +NA,NA,a-exp-i3,2017-18,Worcester - Norrback Avenue,03480202, 37.0, 100.0, 15.2 to 1, 78.5, 91.9 +NA,NA,a-exp-i3,2017-18,Worcester - North High,03480515, 97.1, 95.9, 13.3 to 1, 76.4, 80.4 +NA,NA,a-exp-i3,2017-18,Worcester - Quinsigamond,03480210, 40.8, 100.0, 18.3 to 1, 72.4, 92.1 +NA,NA,a-exp-i3,2017-18,Worcester - Rice Square,03480215, 26.3, 100.0, 16.2 to 1, 74.6, 95.4 +NA,NA,a-exp-i3,2017-18,Worcester - Roosevelt,03480220, 41.4, 97.8, 16.2 to 1, 83.1, 95.1 +NA,NA,a-exp-i3,2017-18,Worcester - South High Community,03480520, 96.6, 93.8, 14.6 to 1, 79.4, 92.0 +NA,NA,a-exp-i3,2017-18,Worcester - Sullivan Middle,03480423, 72.7, 98.6, 11.9 to 1, 76.6, 87.6 +NA,NA,a-exp-i3,2017-18,Worcester - Tatnuck,03480230, 23.2, 100.0, 16.9 to 1, 73.8, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Thorndyke Road,03480235, 20.4, 100.0, 18.7 to 1, 80.2, 99.0 +NA,NA,a-exp-i3,2017-18,Worcester - Union Hill School,03480240, 25.7, 96.1, 17.7 to 1, 88.0, 88.3 +NA,NA,a-exp-i3,2017-18,Worcester - University Pk Campus School,03480285, 18.2, 100.0, 13.1 to 1, 89.0, 94.5 +NA,NA,a-exp-i3,2017-18,Worcester - Vernon Hill School,03480280, 31.6, 100.0, 17.0 to 1, 81.0, 100.0 +NA,NA,a-exp-i3,2017-18,Worcester - Wawecus Road School,03480026, 11.8, 100.0, 12.9 to 1, 78.9, 92.1 +NA,NA,a-exp-i3,2017-18,Worcester - West Tatnuck,03480260, 21.4, 100.0, 17.3 to 1, 87.9, 95.3 +NA,NA,a-exp-i3,2017-18,Worcester - Woodland Academy,03480030, 31.8, 100.0, 19.0 to 1, 61.9, 93.5 +NA,NA,a-exp-i3,2017-18,Worcester - Worcester Arts Magnet School,03480225, 23.4, 100.0, 17.3 to 1, 86.4, 99.6 +NA,NA,a-exp-i3,2017-18,Worcester - Worcester East Middle,03480420, 64.0, 100.0, 12.8 to 1, 75.0, 78.1 +NA,NA,a-exp-i3,2017-18,Worcester - Worcester Technical High,03480605, 138.3, 97.8, 10.0 to 1, 82.6, 84.8 +NA,NA,a-exp-i3,2017-18,Worthington - R. H. Conwell,03490010, 6.6, 93.9, 9.4 to 1, 51.5, 97.0 +NA,NA,a-exp-i3,2017-18,Wrentham - Charles E Roderick,03500010, 33.4, 100.0, 13.9 to 1, 88.8, 100.0 +NA,NA,a-exp-i3,2017-18,Wrentham - Delaney,03500003, 42.0, 100.0, 13.8 to 1, 93.3, 100.0 3.8200000000000003,3.82,a-exp-i1,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 116.4, 94.5, 12.3 to 1, 76.4, 87.1, 85.1 5.0,5.0,a-exp-i1,2018-19,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 22.5 to 1, 100.0, 100.0, 100.0 4.63,4.63,a-exp-i1,2018-19,Abington - Abington High,00010505, 37.9, 100.0, 14.4 to 1, 92.6, 88.9, 83.3 @@ -14737,3671 +22131,3669 @@ NA,NA,a-exp-i3,2021-22,Whitman-Hanson - Whitman Middle,07800310, 37.3, 100. 4.2105263157894735,4.21,a-exp-i3,2021-22,Worthington - R. H. Conwell,03490010, 6.4, 100.0, 10.5 to 1, 68.8, 81.3, 100.0 4.2105263157894735,4.21,a-exp-i3,2021-22,Wrentham - Charles E Roderick,03500010, 35.4, 100.0, 10.7 to 1, 77.4, 97.2, 100.0 4.2105263157894735,4.21,a-exp-i3,2021-22,Wrentham - Delaney,03500003, 46.0, 100.0, 11.8 to 1, 92.6, 97.8, 100.0 -4.075,4.08,a-exp-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3,"" -5.0,5.0,a-exp-i1,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0,"" -3.905,3.91,a-exp-i1,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3,"" -4.46,4.46,a-exp-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4,"" -1.8649999999999998,1.86,a-exp-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6,"" -4.63,4.63,a-exp-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8,"" -4.325,4.33,a-exp-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5,"" -5.0,5.0,a-exp-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0,"" -4.335,4.34,a-exp-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0,"" -4.24,4.24,a-exp-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9,"" -4.04,4.04,a-exp-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9,"" -5.0,5.0,a-exp-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0,"" -4.63,4.63,a-exp-i1,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9,"" -4.58,4.58,a-exp-i1,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4,"" -4.715,4.72,a-exp-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0,"" -3.215,3.22,a-exp-i1,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8,"" -3.475,3.48,a-exp-i1,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9,"" -4.755,4.76,a-exp-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0,"" -1.5699999999999998,1.57,a-exp-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0,"" -4.29,4.29,a-exp-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0,"" -4.61,4.61,a-exp-i1,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3,"" -3.475,3.48,a-exp-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0,"" -4.54,4.54,a-exp-i1,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6,"" -4.385,4.39,a-exp-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2,"" -4.035,4.04,a-exp-i1,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2,"" -4.455,4.46,a-exp-i1,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3,"" -4.255,4.26,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1,"" -4.38,4.38,a-exp-i1,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8,"" -4.6,4.6,a-exp-i1,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9,"" -4.285,4.29,a-exp-i1,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0,"" -4.585,4.59,a-exp-i1,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0,"" -4.29,4.29,a-exp-i1,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2,"" -5.0,5.0,a-exp-i1,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0,"" -4.08,4.08,a-exp-i1,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0,"" -4.86,4.86,a-exp-i1,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3,"" -2.35,2.35,a-exp-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7,"" -4.135,4.14,a-exp-i1,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5,"" -4.165,4.17,a-exp-i1,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0,"" -3.965,3.97,a-exp-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8,"" -4.415,4.42,a-exp-i1,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8,"" -4.055,4.06,a-exp-i1,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5,"" -3.7649999999999997,3.76,a-exp-i1,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5,"" -3.685,3.69,a-exp-i1,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4,"" -3.47,3.47,a-exp-i1,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0,"" -3.725,3.73,a-exp-i1,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2,"" -3.28,3.28,a-exp-i1,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9,"" -4.41,4.41,a-exp-i1,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9,"" -5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6,"" -4.25,4.25,a-exp-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5,"" -4.46,4.46,a-exp-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0,"" -4.66,4.66,a-exp-i1,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3,"" -4.01,4.01,a-exp-i1,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2,"" -4.2,4.2,a-exp-i1,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0,"" -4.36,4.36,a-exp-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9,"" -4.285,4.29,a-exp-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0,"" -4.415,4.42,a-exp-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8,"" -3.54,3.54,a-exp-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6,"" -3.22,3.22,a-exp-i1,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8,"" -3.075,3.08,a-exp-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0,"" -2.87,2.87,a-exp-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1,"" -4.2,4.2,a-exp-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0,"" -2.805,2.81,a-exp-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3,"" -4.35,4.35,a-exp-i1,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1,"" -4.88,4.88,a-exp-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0,"" -4.17,4.17,a-exp-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6,"" -3.72,3.72,a-exp-i1,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0,"" -4.175,4.18,a-exp-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7,"" -4.205,4.21,a-exp-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0,"" -3.69,3.69,a-exp-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1,"" -4.175,4.18,a-exp-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0,"" -4.33,4.33,a-exp-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7,"" -4.545,4.55,a-exp-i1,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6,"" -4.505,4.51,a-exp-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4,"" -4.085,4.09,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5,"" -4.705,4.71,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0,"" -4.515,4.52,a-exp-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8,"" -4.265,4.27,a-exp-i1,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9,"" -3.7299999999999995,3.73,a-exp-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1,"" -4.37,4.37,a-exp-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0,"" -3.335,3.34,a-exp-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2,"" -4.275,4.28,a-exp-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0,"" -1.4,1.4,a-exp-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4,"" -4.26,4.26,a-exp-i1,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9,"" -4.37,4.37,a-exp-i1,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8,"" -4.385,4.39,a-exp-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9,"" -4.13,4.13,a-exp-i1,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0,"" -4.865,4.87,a-exp-i1,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0,"" -3.335,3.34,a-exp-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0,"" -4.495,4.5,a-exp-i1,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6,"" -4.545,4.55,a-exp-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0,"" -2.535,2.54,a-exp-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0,"" -4.8149999999999995,4.81,a-exp-i1,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9,"" -4.01,4.01,a-exp-i1,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2,"" -5.0,5.0,a-exp-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0,"" -3.665,3.67,a-exp-i1,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3,"" -4.375,4.38,a-exp-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9,"" -4.0,4.0,a-exp-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0,"" -3.825,3.83,a-exp-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2,"" -4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0,"" -4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5,"" -3.675,3.68,a-exp-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8,"" -4.235,4.24,a-exp-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3,"" -4.455,4.46,a-exp-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4,"" -4.16,4.16,a-exp-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7,"" -4.585,4.59,a-exp-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6,"" -4.18,4.18,a-exp-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7,"" -3.8600000000000003,3.86,a-exp-i1,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8,"" -4.15,4.15,a-exp-i1,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0,"" -4.485,4.49,a-exp-i1,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3,"" -4.07,4.07,a-exp-i1,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9,"" -3.4450000000000003,3.45,a-exp-i1,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5,"" -4.535,4.54,a-exp-i1,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0,"" -4.365,4.37,a-exp-i1,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2,"" -4.54,4.54,a-exp-i1,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2,"" -4.755,4.76,a-exp-i1,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6,"" -4.55,4.55,a-exp-i1,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9,"" -4.37,4.37,a-exp-i1,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2,"" -4.415,4.42,a-exp-i1,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0,"" -4.485,4.49,a-exp-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8,"" -2.245,2.25,a-exp-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2,"" -3.87,3.87,a-exp-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2,"" -2.825,2.83,a-exp-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6,"" -4.165,4.17,a-exp-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7,"" -2.875,2.88,a-exp-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3,"" -4.485,4.49,a-exp-i1,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6,"" -3.595,3.6,a-exp-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0,"" -3.71,3.71,a-exp-i1,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8,"" -4.33,4.33,a-exp-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0,"" -4.775,4.78,a-exp-i1,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5,"" -4.58,4.58,a-exp-i1,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8,"" -4.09,4.09,a-exp-i1,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9,"" -3.1100000000000003,3.11,a-exp-i1,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7,"" -4.045,4.05,a-exp-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7,"" -4.615,4.62,a-exp-i1,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8,"" -3.6950000000000003,3.7,a-exp-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7,"" -3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4,"" +4.075,4.08,a-exp-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3, 90.5 +5.0,5.0,a-exp-i1,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0, 100.0 +3.905,3.91,a-exp-i1,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0, 95.8 +3.8899999999999997,3.89,a-exp-i1,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3, 92.2 +4.46,4.46,a-exp-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9, 97.6 +3.9200000000000004,3.92,a-exp-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4, 100.0 +1.8649999999999998,1.86,a-exp-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6, 47.3 +4.63,4.63,a-exp-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8, 98.5 +4.325,4.33,a-exp-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5, 96.9 +5.0,5.0,a-exp-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0, 100.0 +4.335,4.34,a-exp-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0, 100.0 +3.7700000000000005,3.77,a-exp-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8, 100.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0, 100.0 +4.24,4.24,a-exp-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9, 97.3 +4.1850000000000005,4.19,a-exp-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3, 100.0 +3.6350000000000002,3.64,a-exp-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9, 87.9 +4.04,4.04,a-exp-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9, 82.8 +5.0,5.0,a-exp-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0, 90.0 +4.63,4.63,a-exp-i1,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9, 96.0 +4.58,4.58,a-exp-i1,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4, 92.4 +4.715,4.72,a-exp-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0, 100.0 +3.215,3.22,a-exp-i1,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8, 95.7 +3.475,3.48,a-exp-i1,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9, 100.0 +4.755,4.76,a-exp-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0, 100.0 +4.43,4.43,a-exp-i1,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0, 100.0 +1.5699999999999998,1.57,a-exp-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0, 28.6 +4.29,4.29,a-exp-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0, 100.0 +4.61,4.61,a-exp-i1,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3, 96.0 +3.475,3.48,a-exp-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0, 75.0 +4.54,4.54,a-exp-i1,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6, 100.0 +4.385,4.39,a-exp-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0, 100.0 +4.6,4.6,a-exp-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2, 97.7 +4.035,4.04,a-exp-i1,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2, 92.5 +4.455,4.46,a-exp-i1,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3, 97.5 +4.255,4.26,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6, 90.8 +3.7600000000000002,3.76,a-exp-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1, 75.0 +4.38,4.38,a-exp-i1,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8, 97.0 +4.6,4.6,a-exp-i1,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9, 100.0 +4.285,4.29,a-exp-i1,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0, 100.0 +4.585,4.59,a-exp-i1,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0, 100.0 +4.6450000000000005,4.65,a-exp-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0, 96.9 +4.29,4.29,a-exp-i1,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0, 100.0 +4.08,4.08,a-exp-i1,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0, 100.0 +4.86,4.86,a-exp-i1,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3, 100.0 +2.35,2.35,a-exp-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7, 53.1 +4.135,4.14,a-exp-i1,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5, 94.6 +4.165,4.17,a-exp-i1,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0, 97.4 +3.965,3.97,a-exp-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8, 97.6 +4.415,4.42,a-exp-i1,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8, 100.0 +4.055,4.06,a-exp-i1,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5, 95.1 +3.7649999999999997,3.76,a-exp-i1,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5, 97.5 +3.685,3.69,a-exp-i1,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4, 100.0 +3.47,3.47,a-exp-i1,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0, 100.0 +3.725,3.73,a-exp-i1,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2, 97.7 +3.28,3.28,a-exp-i1,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9, 93.9 +4.41,4.41,a-exp-i1,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9, 95.7 +5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0, 100.0 +4.43,4.43,a-exp-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6, 96.0 +4.25,4.25,a-exp-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5, 97.6 +4.46,4.46,a-exp-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0, 100.0 +4.66,4.66,a-exp-i1,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3, 96.7 +4.01,4.01,a-exp-i1,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2, 96.6 +4.2,4.2,a-exp-i1,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0, 96.1 +4.36,4.36,a-exp-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9, 97.9 +4.285,4.29,a-exp-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0, 100.0 +4.415,4.42,a-exp-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8, 93.8 +3.54,3.54,a-exp-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6, 97.7 +3.22,3.22,a-exp-i1,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0, 88.9 +4.029999999999999,4.03,a-exp-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8, 94.1 +3.075,3.08,a-exp-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0, 84.6 +2.87,2.87,a-exp-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1, 63.9 +4.2,4.2,a-exp-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0, 92.3 +2.805,2.81,a-exp-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3, 72.7 +4.35,4.35,a-exp-i1,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1, 91.1 +4.88,4.88,a-exp-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0, 62.5 +4.17,4.17,a-exp-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6, 100.0 +3.72,3.72,a-exp-i1,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0, 100.0 +4.175,4.18,a-exp-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7, 93.5 +4.205,4.21,a-exp-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0, 100.0 +3.69,3.69,a-exp-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1, 97.4 +4.175,4.18,a-exp-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0, 100.0 +3.8200000000000003,3.82,a-exp-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0, 100.0 +4.33,4.33,a-exp-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0, 100.0 +4.35,4.35,a-exp-i1,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7, 94.0 +4.545,4.55,a-exp-i1,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4, 90.3 +4.720000000000001,4.72,a-exp-i1,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2, 100.0 +3.8850000000000002,3.89,a-exp-i1,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6, 100.0 +4.505,4.51,a-exp-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0, 97.9 +3.8950000000000005,3.9,a-exp-i1,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7, 100.0 +3.8200000000000003,3.82,a-exp-i1,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4, 100.0 +4.085,4.09,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5, 89.7 +4.705,4.71,a-exp-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0, 94.6 +4.515,4.52,a-exp-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0, 97.0 +3.8549999999999995,3.85,a-exp-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7, 97.7 +4.095000000000001,4.1,a-exp-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8, 100.0 +4.265,4.27,a-exp-i1,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9, 94.6 +3.7299999999999995,3.73,a-exp-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1, 95.5 +4.37,4.37,a-exp-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5, 98.6 +4.3100000000000005,4.31,a-exp-i1,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0, 100.0 +3.335,3.34,a-exp-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0, 97.2 +4.345000000000001,4.35,a-exp-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2, 100.0 +4.275,4.28,a-exp-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0, 94.3 +1.4,1.4,a-exp-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4, 35.6 +4.26,4.26,a-exp-i1,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9, 96.7 +4.37,4.37,a-exp-i1,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8, 96.8 +4.385,4.39,a-exp-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9, 100.0 +4.13,4.13,a-exp-i1,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0, 86.0 +4.465,4.47,a-exp-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0, 92.3 +5.0,5.0,a-exp-i1,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0, 97.2 +4.865,4.87,a-exp-i1,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0, 100.0 +3.335,3.34,a-exp-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0, 100.0 +4.495,4.5,a-exp-i1,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6, 95.0 +4.545,4.55,a-exp-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0, 95.7 +4.4399999999999995,4.44,a-exp-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0, 100.0 +2.535,2.54,a-exp-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0, 87.5 +4.8149999999999995,4.81,a-exp-i1,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0, 100.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9, 96.7 +4.01,4.01,a-exp-i1,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0, 95.6 +3.665,3.67,a-exp-i1,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3, 100.0 +4.375,4.38,a-exp-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9, 98.9 +4.0,4.0,a-exp-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0, 80.0 +3.825,3.83,a-exp-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2, 83.9 +4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0, 97.4 +4.195,4.2,a-exp-i1,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5, 96.9 +3.675,3.68,a-exp-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8, 34.0 +4.235,4.24,a-exp-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3, 96.0 +4.455,4.46,a-exp-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4, 100.0 +4.16,4.16,a-exp-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0, 94.1 +4.720000000000001,4.72,a-exp-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4, 100.0 +3.6100000000000003,3.61,a-exp-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7, 100.0 +4.585,4.59,a-exp-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6, 95.9 +4.18,4.18,a-exp-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7, 100.0 +3.8600000000000003,3.86,a-exp-i1,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8, 91.8 +4.15,4.15,a-exp-i1,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0, 91.8 +4.485,4.49,a-exp-i1,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3, 94.6 +4.07,4.07,a-exp-i1,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0, 100.0 +4.09,4.09,a-exp-i1,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9, 100.0 +3.4450000000000003,3.45,a-exp-i1,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0, 96.8 +4.43,4.43,a-exp-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5, 93.0 +4.535,4.54,a-exp-i1,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0, 100.0 +4.365,4.37,a-exp-i1,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2, 100.0 +4.54,4.54,a-exp-i1,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2, 96.3 +4.755,4.76,a-exp-i1,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6, 98.1 +4.55,4.55,a-exp-i1,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9, 96.8 +4.37,4.37,a-exp-i1,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2, 97.3 +4.415,4.42,a-exp-i1,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0, 100.0 +4.485,4.49,a-exp-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8, 90.7 +2.245,2.25,a-exp-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2, 95.2 +3.87,3.87,a-exp-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2, 87.5 +2.825,2.83,a-exp-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6, 96.8 +4.165,4.17,a-exp-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7, 91.7 +2.875,2.88,a-exp-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0, 93.3 +4.68,4.68,a-exp-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3, 98.8 +4.485,4.49,a-exp-i1,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6, 96.6 +3.595,3.6,a-exp-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0, 80.0 +3.71,3.71,a-exp-i1,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8, 66.7 +4.33,4.33,a-exp-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0, 93.3 +4.68,4.68,a-exp-i1,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0, 96.8 +4.775,4.78,a-exp-i1,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5, 95.7 +4.58,4.58,a-exp-i1,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4, 92.2 +4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8, 82.6 +4.09,4.09,a-exp-i1,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9, 94.4 +3.1100000000000003,3.11,a-exp-i1,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7, 70.6 +4.045,4.05,a-exp-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7, 82.9 +4.470000000000001,4.47,a-exp-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7, 78.7 +4.615,4.62,a-exp-i1,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9, 98.9 +4.4799999999999995,4.48,a-exp-i1,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8, 91.9 +3.6950000000000003,3.7,a-exp-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0, 100.0 +3.8850000000000002,3.89,a-exp-i1,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8, 92.9 +3.7600000000000002,3.76,a-exp-i1,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7, 87.3 +3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4, 82.4 0.0,1,a-exp-i1,2022-23,Boston - Carter School,00350036, 0.0, 0.0,N/A,"","","" -3.81,3.81,a-exp-i1,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2,"" -3.29,3.29,a-exp-i1,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0,"" -4.245,4.25,a-exp-i1,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0,"" -2.9,2.9,a-exp-i1,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0,"" -3.7299999999999995,3.73,a-exp-i1,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5,"" -4.21,4.21,a-exp-i1,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7,"" -4.11,4.11,a-exp-i1,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9,"" -3.335,3.34,a-exp-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3,"" -3.6049999999999995,3.6,a-exp-i1,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7,"" -3.495,3.5,a-exp-i1,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2,"" -4.295,4.3,a-exp-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2,"" -3.41,3.41,a-exp-i1,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4,"" -4.21,4.21,a-exp-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6,"" -3.87,3.87,a-exp-i1,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5,"" -3.575,3.58,a-exp-i1,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5,"" -4.33,4.33,a-exp-i1,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7,"" -4.285,4.29,a-exp-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7,"" -3.75,3.75,a-exp-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7,"" -4.165,4.17,a-exp-i1,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0,"" -2.94,2.94,a-exp-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2,"" -3.66,3.66,a-exp-i1,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1,"" -4.21,4.21,a-exp-i1,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0,"" -4.62,4.62,a-exp-i1,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0,"" -3.785,3.79,a-exp-i1,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0,"" -3.415,3.42,a-exp-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0,"" -3.04,3.04,a-exp-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2,"" -4.15,4.15,a-exp-i1,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0,"" -3.6,3.6,a-exp-i1,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1,"" -4.115,4.12,a-exp-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0,"" -3.995,4.0,a-exp-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6,"" -3.71,3.71,a-exp-i1,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8,"" -4.54,4.54,a-exp-i1,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0,"" -3.18,3.18,a-exp-i1,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9,"" -4.11,4.11,a-exp-i1,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1,"" -3.785,3.79,a-exp-i1,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0,"" -3.815,3.82,a-exp-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6,"" -4.075,4.08,a-exp-i1,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8,"" -4.37,4.37,a-exp-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6,"" -3.44,3.44,a-exp-i1,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5,"" -4.970000000000001,4.97,a-exp-i1,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4,"" -3.815,3.82,a-exp-i1,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5,"" -3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3,"" -4.55,4.55,a-exp-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0,"" -4.25,4.25,a-exp-i1,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0,"" -4.785,4.79,a-exp-i1,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0,"" -4.045,4.05,a-exp-i1,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2,"" -4.17,4.17,a-exp-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2,"" -3.9850000000000003,3.99,a-exp-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9,"" -4.8950000000000005,4.9,a-exp-i1,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9,"" -3.2,3.2,a-exp-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6,"" -4.025,4.03,a-exp-i1,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0,"" -2.995,3.0,a-exp-i1,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3,"" -4.75,4.75,a-exp-i1,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4,"" -4.165,4.17,a-exp-i1,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9,"" -3.825,3.83,a-exp-i1,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6,"" -4.51,4.51,a-exp-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0,"" -3.685,3.69,a-exp-i1,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0,"" -4.425,4.43,a-exp-i1,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3,"" -4.34,4.34,a-exp-i1,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7,"" -4.58,4.58,a-exp-i1,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6,"" -3.65,3.65,a-exp-i1,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3,"" -4.025,4.03,a-exp-i1,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8,"" -4.015,4.02,a-exp-i1,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0,"" -3.28,3.28,a-exp-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5,"" -2.305,2.31,a-exp-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0,"" -4.49,4.49,a-exp-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2,"" -3.41,3.41,a-exp-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0,"" -1.5699999999999998,1.57,a-exp-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7,"" -3.425,3.43,a-exp-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4,"" -4.57,4.57,a-exp-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3,"" -4.255,4.26,a-exp-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9,"" -4.3,4.3,a-exp-i1,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6,"" -4.675,4.68,a-exp-i1,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0,"" -4.88,4.88,a-exp-i1,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1,"" -4.415,4.42,a-exp-i1,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2,"" -4.415,4.42,a-exp-i1,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5,"" -4.34,4.34,a-exp-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5,"" -4.66,4.66,a-exp-i1,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0,"" -4.515,4.52,a-exp-i1,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3,"" -4.0,4.0,a-exp-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0,"" -2.67,2.67,a-exp-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9,"" -4.45,4.45,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4,"" -4.09,4.09,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8,"" -4.75,4.75,a-exp-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0,"" -4.38,4.38,a-exp-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2,"" -4.285,4.29,a-exp-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4,"" -2.91,2.91,a-exp-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0,"" -4.475,4.48,a-exp-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3,"" -3.725,3.73,a-exp-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2,"" -4.335,4.34,a-exp-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6,"" -4.615,4.62,a-exp-i1,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8,"" -3.505,3.51,a-exp-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0,"" -4.135,4.14,a-exp-i1,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9,"" -4.24,4.24,a-exp-i1,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0,"" -3.0949999999999998,3.1,a-exp-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0,"" -4.17,4.17,a-exp-i1,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4,"" -4.24,4.24,a-exp-i1,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8,"" -4.285,4.29,a-exp-i1,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6,"" -4.275,4.28,a-exp-i1,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0,"" -3.75,3.75,a-exp-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9,"" -4.12,4.12,a-exp-i1,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8,"" -4.525,4.53,a-exp-i1,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6,"" -4.175,4.18,a-exp-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0,"" -4.0,4.0,a-exp-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1,"" -3.63,3.63,a-exp-i1,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2,"" -2.81,2.81,a-exp-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3,"" -4.04,4.04,a-exp-i1,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6,"" -3.835,3.84,a-exp-i1,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7,"" -2.54,2.54,a-exp-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0,"" -3.325,3.33,a-exp-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8,"" -3.97,3.97,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0,"" -1.625,1.63,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5,"" -4.42,4.42,a-exp-i1,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5,"" -4.725,4.73,a-exp-i1,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9,"" -4.61,4.61,a-exp-i1,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8,"" -3.975,3.98,a-exp-i1,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0,"" -4.235,4.24,a-exp-i1,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4,"" -4.125,4.13,a-exp-i1,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2,"" -3.935,3.94,a-exp-i1,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0,"" -4.785,4.79,a-exp-i1,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0,"" -4.58,4.58,a-exp-i1,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0,"" -4.385,4.39,a-exp-i1,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0,"" -3.435,3.44,a-exp-i1,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9,"" -4.46,4.46,a-exp-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2,"" -3.755,3.76,a-exp-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1,"" -3.87,3.87,a-exp-i1,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5,"" -4.125,4.13,a-exp-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2,"" -4.3,4.3,a-exp-i1,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5,"" -4.26,4.26,a-exp-i1,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1,"" -4.515,4.52,a-exp-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5,"" -3.5450000000000004,3.55,a-exp-i1,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4,"" -4.255,4.26,a-exp-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8,"" -4.295,4.3,a-exp-i1,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0,"" -4.54,4.54,a-exp-i1,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3,"" -2.9,2.9,a-exp-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6,"" -3.595,3.6,a-exp-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8,"" -4.4,4.4,a-exp-i1,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4,"" -4.08,4.08,a-exp-i1,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7,"" -4.465,4.47,a-exp-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0,"" -4.21,4.21,a-exp-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3,"" -3.66,3.66,a-exp-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5,"" -4.505,4.51,a-exp-i1,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0,"" -4.0600000000000005,4.06,a-exp-i1,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0,"" -4.365,4.37,a-exp-i1,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6,"" -4.74,4.74,a-exp-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8,"" -4.675,4.68,a-exp-i1,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0,"" -4.765,4.77,a-exp-i1,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3,"" -4.38,4.38,a-exp-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6,"" -4.88,4.88,a-exp-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6,"" -4.62,4.62,a-exp-i1,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5,"" -4.154999999999999,4.15,a-exp-i1,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2,"" -4.46,4.46,a-exp-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9,"" -4.705,4.71,a-exp-i1,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3,"" -4.37,4.37,a-exp-i1,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0,"" -4.235,4.24,a-exp-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0,"" -2.855,2.86,a-exp-i1,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2,"" -5.0,5.0,a-exp-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3,"" -4.0,4.0,a-exp-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2,"" -3.66,3.66,a-exp-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7,"" -3.8600000000000003,3.86,a-exp-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6,"" -3.535,3.54,a-exp-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1,"" -2.58,2.58,a-exp-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5,"" -2.7800000000000002,2.78,a-exp-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7,"" -3.56,3.56,a-exp-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1,"" -3.505,3.51,a-exp-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7,"" -4.45,4.45,a-exp-i1,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5,"" -4.41,4.41,a-exp-i1,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1,"" -4.12,4.12,a-exp-i1,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0,"" -4.25,4.25,a-exp-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0,"" -3.915,3.92,a-exp-i1,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0,"" -4.67,4.67,a-exp-i1,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7,"" -4.485,4.49,a-exp-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0,"" -3.125,3.13,a-exp-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5,"" -3.245,3.25,a-exp-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9,"" -1.6800000000000002,1.68,a-exp-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4,"" -4.1,4.1,a-exp-i1,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5,"" -4.305,4.31,a-exp-i1,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0,"" -2.85,2.85,a-exp-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9,"" -4.49,4.49,a-exp-i1,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8,"" -4.83,4.83,a-exp-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6,"" -4.425,4.43,a-exp-i1,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0,"" -1.09,1.09,a-exp-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2,"" -1.8,1.8,a-exp-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8,"" -2.195,2.2,a-exp-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6,"" -4.86,4.86,a-exp-i1,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7,"" -4.6850000000000005,4.69,a-exp-i1,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8,"" -4.285,4.29,a-exp-i1,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5,"" -4.725,4.73,a-exp-i1,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4,"" -4.555,4.56,a-exp-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3,"" -2.805,2.81,a-exp-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5,"" -3.97,3.97,a-exp-i1,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7,"" -4.805,4.81,a-exp-i1,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1,"" -4.235,4.24,a-exp-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3,"" -4.82,4.82,a-exp-i1,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0,"" -4.66,4.66,a-exp-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8,"" -4.71,4.71,a-exp-i1,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5,"" -4.36,4.36,a-exp-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0,"" -4.455,4.46,a-exp-i1,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0,"" -4.695,4.7,a-exp-i1,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3,"" -4.83,4.83,a-exp-i1,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8,"" -4.975,4.98,a-exp-i1,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0,"" -4.275,4.28,a-exp-i1,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0,"" -4.275,4.28,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9,"" -4.57,4.57,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6,"" -4.225,4.23,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8,"" -4.34,4.34,a-exp-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4,"" -3.79,3.79,a-exp-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0,"" -4.18,4.18,a-exp-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0,"" -4.725,4.73,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8,"" -4.825,4.83,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0,"" -4.16,4.16,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3,"" -4.42,4.42,a-exp-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0,"" -4.11,4.11,a-exp-i1,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8,"" -4.42,4.42,a-exp-i1,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1,"" -4.14,4.14,a-exp-i1,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4,"" -4.445,4.45,a-exp-i1,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0,"" -4.165,4.17,a-exp-i1,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3,"" -4.3,4.3,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9,"" -4.2,4.2,a-exp-i1,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0,"" -3.875,3.88,a-exp-i1,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7,"" -4.6850000000000005,4.69,a-exp-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9,"" -3.6049999999999995,3.6,a-exp-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3,"" -3.69,3.69,a-exp-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6,"" -3.72,3.72,a-exp-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0,"" -4.58,4.58,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0,"" -4.525,4.53,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9,"" -4.59,4.59,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4,"" -4.66,4.66,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6,"" -4.465,4.47,a-exp-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0,"" -4.675,4.68,a-exp-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2,"" -4.61,4.61,a-exp-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5,"" -4.845000000000001,4.85,a-exp-i1,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0,"" -3.925,3.93,a-exp-i1,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8,"" -3.7,3.7,a-exp-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0,"" -4.7,4.7,a-exp-i1,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0,"" -4.68,4.68,a-exp-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0,"" -4.41,4.41,a-exp-i1,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1,"" -3.925,3.93,a-exp-i1,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5,"" -4.35,4.35,a-exp-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3,"" -4.46,4.46,a-exp-i1,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4,"" -4.505,4.51,a-exp-i1,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4,"" -4.58,4.58,a-exp-i1,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0,"" -4.05,4.05,a-exp-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8,"" -4.515,4.52,a-exp-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5,"" -4.07,4.07,a-exp-i1,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1,"" -3.81,3.81,a-exp-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5,"" -4.445,4.45,a-exp-i1,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9,"" -3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1,"" -4.14,4.14,a-exp-i1,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9,"" -4.045,4.05,a-exp-i1,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3,"" -3.4,3.4,a-exp-i1,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1,"" -3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3,"" -4.285,4.29,a-exp-i1,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0,"" -4.1,4.1,a-exp-i1,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8,"" -2.4050000000000002,2.41,a-exp-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1,"" -4.64,4.64,a-exp-i1,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4,"" -4.58,4.58,a-exp-i1,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9,"" -3.405,3.41,a-exp-i1,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0,"" -4.925,4.93,a-exp-i1,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5,"" -3.6399999999999997,3.64,a-exp-i1,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8,"" -3.69,3.69,a-exp-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0,"" -0.0,1,a-exp-i1,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0,"" -2.105,2.11,a-exp-i1,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6,"" -4.55,4.55,a-exp-i1,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0,"" -3.4,3.4,a-exp-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2,"" -2.8600000000000003,2.86,a-exp-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2,"" -3.105,3.11,a-exp-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3,"" -3.025,3.03,a-exp-i1,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9,"" -3.1149999999999998,3.12,a-exp-i1,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9,"" -3.0949999999999998,3.1,a-exp-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2,"" -1.6,1.6,a-exp-i1,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9,"" -3.775,3.78,a-exp-i1,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9,"" -2.875,2.88,a-exp-i1,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3,"" -2.335,2.34,a-exp-i1,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1,"" -4.805,4.81,a-exp-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3,"" -4.11,4.11,a-exp-i1,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4,"" -4.535,4.54,a-exp-i1,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0,"" -4.33,4.33,a-exp-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6,"" -4.29,4.29,a-exp-i1,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0,"" -3.815,3.82,a-exp-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7,"" -4.7,4.7,a-exp-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1,"" -5.0,5.0,a-exp-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6,"" -3.725,3.73,a-exp-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2,"" -4.125,4.13,a-exp-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5,"" -3.845,3.85,a-exp-i1,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9,"" -4.585,4.59,a-exp-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0,"" -4.61,4.61,a-exp-i1,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0,"" -4.36,4.36,a-exp-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0,"" +3.81,3.81,a-exp-i1,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2, 95.0 +3.29,3.29,a-exp-i1,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0, 82.3 +4.245,4.25,a-exp-i1,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3, 96.7 +3.7950000000000004,3.8,a-exp-i1,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0, 100.0 +2.9,2.9,a-exp-i1,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0, 57.1 +4.2299999999999995,4.23,a-exp-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0, 73.7 +3.7299999999999995,3.73,a-exp-i1,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5, 89.6 +4.21,4.21,a-exp-i1,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7, 100.0 +4.11,4.11,a-exp-i1,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9, 92.8 +3.335,3.34,a-exp-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3, 83.6 +3.6049999999999995,3.6,a-exp-i1,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7, 88.6 +3.495,3.5,a-exp-i1,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9, 87.5 +3.8549999999999995,3.85,a-exp-i1,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8, 83.0 +4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2, 91.2 +4.295,4.3,a-exp-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2, 94.6 +3.41,3.41,a-exp-i1,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4, 86.8 +4.21,4.21,a-exp-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0, 94.7 +3.8299999999999996,3.83,a-exp-i1,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6, 74.2 +3.87,3.87,a-exp-i1,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5, 95.8 +3.575,3.58,a-exp-i1,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5, 76.1 +4.33,4.33,a-exp-i1,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7, 64.1 +4.285,4.29,a-exp-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7, 83.7 +3.75,3.75,a-exp-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7, 97.2 +4.165,4.17,a-exp-i1,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0, 64.3 +2.94,2.94,a-exp-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2, 91.2 +3.66,3.66,a-exp-i1,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1, 91.7 +4.21,4.21,a-exp-i1,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0, 100.0 +4.62,4.62,a-exp-i1,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0, 92.9 +4.654999999999999,4.65,a-exp-i1,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0, 93.5 +4.68,4.68,a-exp-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0, 97.5 +3.785,3.79,a-exp-i1,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9, 88.2 +4.5649999999999995,4.56,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7, 100.0 +3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4, 85.4 +3.8950000000000005,3.9,a-exp-i1,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1, 90.9 +3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0, 93.1 +3.415,3.42,a-exp-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0, 68.8 +3.04,3.04,a-exp-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2, 88.0 +4.15,4.15,a-exp-i1,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1, 89.5 +4.404999999999999,4.4,a-exp-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0, 78.9 +3.6,3.6,a-exp-i1,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1, 96.2 +4.115,4.12,a-exp-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0, 81.8 +3.995,4.0,a-exp-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6, 100.0 +3.71,3.71,a-exp-i1,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8, 100.0 +4.54,4.54,a-exp-i1,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0, 97.8 +3.18,3.18,a-exp-i1,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9, 89.8 +4.11,4.11,a-exp-i1,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1, 94.4 +3.785,3.79,a-exp-i1,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5, 95.2 +3.9450000000000003,3.95,a-exp-i1,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3, 89.4 +3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0, 70.0 +4.6,4.6,a-exp-i1,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0, 88.9 +3.815,3.82,a-exp-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6, 84.0 +4.075,4.08,a-exp-i1,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8, 88.2 +4.37,4.37,a-exp-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6, 68.8 +3.44,3.44,a-exp-i1,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6, 86.7 +3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5, 84.0 +4.970000000000001,4.97,a-exp-i1,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7, 93.3 +3.6350000000000002,3.64,a-exp-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4, 98.2 +4.279999999999999,4.28,a-exp-i1,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4, 92.4 +3.815,3.82,a-exp-i1,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5, 62.9 +3.3950000000000005,3.4,a-exp-i1,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3, 81.5 +4.55,4.55,a-exp-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0, 91.5 +4.25,4.25,a-exp-i1,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0, 95.7 +4.785,4.79,a-exp-i1,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0, 93.2 +4.045,4.05,a-exp-i1,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2, 85.9 +4.17,4.17,a-exp-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2, 89.7 +3.9850000000000003,3.99,a-exp-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9, 88.5 +4.8950000000000005,4.9,a-exp-i1,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9, 96.1 +3.2,3.2,a-exp-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6, 86.1 +4.025,4.03,a-exp-i1,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0, 85.7 +2.995,3.0,a-exp-i1,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3, 95.5 +4.75,4.75,a-exp-i1,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0, 90.9 +3.6149999999999998,3.62,a-exp-i1,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4, 76.5 +4.165,4.17,a-exp-i1,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9, 95.5 +3.825,3.83,a-exp-i1,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6, 81.1 +4.51,4.51,a-exp-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0, 97.4 +4.220000000000001,4.22,a-exp-i1,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0, 96.8 +3.685,3.69,a-exp-i1,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0, 89.5 +4.425,4.43,a-exp-i1,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3, 87.5 +4.34,4.34,a-exp-i1,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0, 96.2 +3.6100000000000003,3.61,a-exp-i1,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0, 87.5 +3.7399999999999998,3.74,a-exp-i1,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7, 80.7 +4.58,4.58,a-exp-i1,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4, 94.3 +3.9200000000000004,3.92,a-exp-i1,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6, 79.4 +3.65,3.65,a-exp-i1,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3, 92.3 +4.025,4.03,a-exp-i1,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8, 89.4 +4.345000000000001,4.35,a-exp-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8, 97.8 +3.8899999999999997,3.89,a-exp-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8, 71.4 +4.015,4.02,a-exp-i1,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0, 86.2 +4.76,4.76,a-exp-i1,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0, 92.3 +3.28,3.28,a-exp-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5, 93.8 +2.305,2.31,a-exp-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0, 53.3 +4.49,4.49,a-exp-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2, 64.9 +3.41,3.41,a-exp-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0, 80.0 +1.5699999999999998,1.57,a-exp-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7, 57.0 +3.425,3.43,a-exp-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3, 93.3 +3.8549999999999995,3.85,a-exp-i1,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4, 92.1 +4.57,4.57,a-exp-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1, 94.4 +4.220000000000001,4.22,a-exp-i1,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3, 93.8 +4.255,4.26,a-exp-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0, 97.1 +3.9549999999999996,3.95,a-exp-i1,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9, 100.0 +4.3,4.3,a-exp-i1,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0, 95.5 +4.5200000000000005,4.52,a-exp-i1,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6, 97.0 +4.675,4.68,a-exp-i1,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0, 96.7 +4.88,4.88,a-exp-i1,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0, 95.5 +4.68,4.68,a-exp-i1,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1, 100.0 +4.415,4.42,a-exp-i1,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2, 93.8 +4.415,4.42,a-exp-i1,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0, 90.9 +4.49,4.49,a-exp-i1,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5, 96.9 +4.34,4.34,a-exp-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0, 96.7 +5.0,5.0,a-exp-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5, 88.9 +4.66,4.66,a-exp-i1,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0, 97.8 +4.515,4.52,a-exp-i1,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3, 100.0 +4.0,4.0,a-exp-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0, 100.0 +2.67,2.67,a-exp-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9, 71.9 +4.45,4.45,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4, 98.2 +4.09,4.09,a-exp-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2, 98.9 +4.529999999999999,4.53,a-exp-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8, 97.0 +4.75,4.75,a-exp-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0, 100.0 +4.38,4.38,a-exp-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2, 100.0 +4.285,4.29,a-exp-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4, 100.0 +2.91,2.91,a-exp-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0, 100.0 +4.475,4.48,a-exp-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0, 100.0 +4.265,4.27,a-exp-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3, 96.4 +3.725,3.73,a-exp-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2, 85.7 +4.335,4.34,a-exp-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6, 96.1 +4.615,4.62,a-exp-i1,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8, 93.2 +3.505,3.51,a-exp-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0, 94.7 +4.135,4.14,a-exp-i1,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9, 89.3 +4.24,4.24,a-exp-i1,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0, 92.1 +3.0949999999999998,3.1,a-exp-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5, 87.5 +3.6100000000000003,3.61,a-exp-i1,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0, 97.6 +4.17,4.17,a-exp-i1,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0, 100.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4, 97.0 +4.24,4.24,a-exp-i1,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8, 88.7 +4.285,4.29,a-exp-i1,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6, 98.7 +4.275,4.28,a-exp-i1,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0, 86.7 +3.75,3.75,a-exp-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9, 100.0 +4.12,4.12,a-exp-i1,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5, 100.0 +3.4299999999999997,3.43,a-exp-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8, 77.8 +4.525,4.53,a-exp-i1,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6, 100.0 +4.175,4.18,a-exp-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0, 98.5 +4.0,4.0,a-exp-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1, 90.8 +3.8200000000000003,3.82,a-exp-i1,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1, 96.6 +3.63,3.63,a-exp-i1,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6, 92.9 +4.220000000000001,4.22,a-exp-i1,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2, 95.5 +2.81,2.81,a-exp-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3, 86.7 +4.04,4.04,a-exp-i1,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2, 96.3 +3.7600000000000002,3.76,a-exp-i1,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6, 85.9 +3.835,3.84,a-exp-i1,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7, 96.4 +2.54,2.54,a-exp-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0, 36.3 +3.325,3.33,a-exp-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8, 92.3 +3.97,3.97,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0, 100.0 +1.625,1.63,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0, 85.7 +5.0,5.0,a-exp-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5, 94.9 +4.42,4.42,a-exp-i1,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2, 98.5 +3.9549999999999996,3.95,a-exp-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5, 96.1 +4.725,4.73,a-exp-i1,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9, 95.5 +4.61,4.61,a-exp-i1,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8, 100.0 +3.975,3.98,a-exp-i1,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0, 98.3 +4.235,4.24,a-exp-i1,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4, 100.0 +4.125,4.13,a-exp-i1,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2, 98.4 +3.935,3.94,a-exp-i1,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0, 100.0 +4.785,4.79,a-exp-i1,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0, 100.0 +4.58,4.58,a-exp-i1,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0, 93.1 +4.385,4.39,a-exp-i1,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1, 96.3 +4.470000000000001,4.47,a-exp-i1,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0, 100.0 +4.6450000000000005,4.65,a-exp-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0, 100.0 +3.435,3.44,a-exp-i1,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9, 82.5 +4.46,4.46,a-exp-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2, 95.1 +3.755,3.76,a-exp-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1, 91.9 +3.87,3.87,a-exp-i1,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5, 100.0 +4.125,4.13,a-exp-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3, 97.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2, 97.5 +4.3,4.3,a-exp-i1,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5, 100.0 +4.26,4.26,a-exp-i1,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1, 97.3 +4.515,4.52,a-exp-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5, 97.1 +3.5450000000000004,3.55,a-exp-i1,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4, 93.3 +4.255,4.26,a-exp-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0, 97.5 +4.1450000000000005,4.15,a-exp-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8, 89.5 +4.295,4.3,a-exp-i1,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0, 100.0 +4.54,4.54,a-exp-i1,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3, 96.7 +2.9,2.9,a-exp-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6, 97.1 +3.595,3.6,a-exp-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8, 95.7 +4.4,4.4,a-exp-i1,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0, 91.1 +4.1850000000000005,4.19,a-exp-i1,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4, 100.0 +4.08,4.08,a-exp-i1,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7, 100.0 +4.465,4.47,a-exp-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0, 100.0 +3.5700000000000003,3.57,a-exp-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0, 100.0 +4.21,4.21,a-exp-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6, 95.6 +4.720000000000001,4.72,a-exp-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3, 58.8 +3.66,3.66,a-exp-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5, 88.7 +4.505,4.51,a-exp-i1,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0, 93.4 +4.0600000000000005,4.06,a-exp-i1,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0, 94.8 +4.365,4.37,a-exp-i1,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6, 90.4 +4.74,4.74,a-exp-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8, 100.0 +4.675,4.68,a-exp-i1,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0, 100.0 +4.765,4.77,a-exp-i1,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3, 100.0 +4.38,4.38,a-exp-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6, 92.3 +4.88,4.88,a-exp-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6, 95.7 +4.62,4.62,a-exp-i1,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5, 100.0 +4.154999999999999,4.15,a-exp-i1,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2, 100.0 +4.46,4.46,a-exp-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9, 97.1 +4.705,4.71,a-exp-i1,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0, 97.2 +4.095000000000001,4.1,a-exp-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3, 94.0 +4.37,4.37,a-exp-i1,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0, 92.3 +4.235,4.24,a-exp-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0, 95.5 +4.265,4.27,a-exp-i1,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0, 97.1 +2.855,2.86,a-exp-i1,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2, 92.9 +5.0,5.0,a-exp-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3, 100.0 +4.0,4.0,a-exp-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0, 87.5 +3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2, 92.2 +3.66,3.66,a-exp-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7, 95.1 +3.8600000000000003,3.86,a-exp-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6, 100.0 +3.535,3.54,a-exp-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1, 92.5 +2.58,2.58,a-exp-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5, 92.5 +2.7800000000000002,2.78,a-exp-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7, 88.9 +3.56,3.56,a-exp-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4, 93.1 +3.4299999999999997,3.43,a-exp-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1, 97.2 +3.505,3.51,a-exp-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8, 90.0 +3.7950000000000004,3.8,a-exp-i1,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7, 96.8 +4.45,4.45,a-exp-i1,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5, 90.0 +4.41,4.41,a-exp-i1,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1, 98.7 +4.12,4.12,a-exp-i1,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0, 97.1 +5.0,5.0,a-exp-i1,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0, 95.5 +5.0,5.0,a-exp-i1,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0, 100.0 +4.25,4.25,a-exp-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3, 93.0 +4.029999999999999,4.03,a-exp-i1,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0, 96.6 +3.915,3.92,a-exp-i1,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0, 98.6 +4.6899999999999995,4.69,a-exp-i1,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0, 96.0 +4.67,4.67,a-exp-i1,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7, 96.8 +4.485,4.49,a-exp-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0, 95.5 +3.125,3.13,a-exp-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5, 93.8 +3.245,3.25,a-exp-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9, 72.5 +1.6800000000000002,1.68,a-exp-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0, 48.6 +4.220000000000001,4.22,a-exp-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4, 94.1 +4.1,4.1,a-exp-i1,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5, 98.6 +4.305,4.31,a-exp-i1,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0, 96.2 +4.345000000000001,4.35,a-exp-i1,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0, 94.0 +2.85,2.85,a-exp-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9, 49.1 +4.49,4.49,a-exp-i1,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8, 100.0 +4.83,4.83,a-exp-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6, 94.4 +4.425,4.43,a-exp-i1,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0, 100.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0, 100.0 +1.09,1.09,a-exp-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2, 37.9 +1.8,1.8,a-exp-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8, 50.0 +2.195,2.2,a-exp-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6, 43.0 +4.86,4.86,a-exp-i1,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7, 100.0 +4.6850000000000005,4.69,a-exp-i1,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8, 97.1 +4.285,4.29,a-exp-i1,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5, 100.0 +4.725,4.73,a-exp-i1,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4, 100.0 +4.555,4.56,a-exp-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3, 94.2 +2.805,2.81,a-exp-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5, 48.4 +3.97,3.97,a-exp-i1,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1, 98.7 +4.1450000000000005,4.15,a-exp-i1,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7, 100.0 +4.805,4.81,a-exp-i1,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1, 100.0 +4.235,4.24,a-exp-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3, 93.0 +4.82,4.82,a-exp-i1,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0, 100.0 +4.09,4.09,a-exp-i1,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0, 100.0 +4.1049999999999995,4.1,a-exp-i1,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0, 100.0 +4.68,4.68,a-exp-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0, 92.0 +4.66,4.66,a-exp-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8, 95.2 +4.71,4.71,a-exp-i1,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5, 100.0 +4.36,4.36,a-exp-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0, 98.2 +4.455,4.46,a-exp-i1,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0, 100.0 +4.695,4.7,a-exp-i1,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0, 97.0 +4.2700000000000005,4.27,a-exp-i1,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3, 94.4 +4.83,4.83,a-exp-i1,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8, 98.3 +4.975,4.98,a-exp-i1,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0, 96.3 +4.4399999999999995,4.44,a-exp-i1,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0, 96.6 +4.275,4.28,a-exp-i1,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0, 100.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7, 91.3 +4.3950000000000005,4.4,a-exp-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0, 91.9 +4.275,4.28,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9, 98.0 +4.57,4.57,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6, 100.0 +4.225,4.23,a-exp-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8, 93.5 +4.34,4.34,a-exp-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4, 97.5 +3.79,3.79,a-exp-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0, 100.0 +4.18,4.18,a-exp-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0, 97.4 +4.725,4.73,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8, 100.0 +4.825,4.83,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0, 96.6 +4.16,4.16,a-exp-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4, 95.6 +3.9899999999999998,3.99,a-exp-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3, 93.2 +4.42,4.42,a-exp-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0, 100.0 +4.11,4.11,a-exp-i1,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8, 100.0 +4.42,4.42,a-exp-i1,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1, 92.3 +4.14,4.14,a-exp-i1,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4, 96.2 +4.445,4.45,a-exp-i1,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0, 94.7 +4.165,4.17,a-exp-i1,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0, 100.0 +4.720000000000001,4.72,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3, 92.8 +4.3,4.3,a-exp-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9, 98.1 +4.2,4.2,a-exp-i1,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0, 100.0 +3.875,3.88,a-exp-i1,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7, 97.1 +4.6850000000000005,4.69,a-exp-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0, 100.0 +3.7399999999999998,3.74,a-exp-i1,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9, 100.0 +3.6049999999999995,3.6,a-exp-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3, 100.0 +3.69,3.69,a-exp-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6, 95.6 +3.72,3.72,a-exp-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0, 84.2 +4.58,4.58,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0, 93.1 +4.525,4.53,a-exp-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9, 98.0 +4.59,4.59,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4, 96.6 +4.66,4.66,a-exp-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6, 97.8 +4.465,4.47,a-exp-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0, 94.9 +4.675,4.68,a-exp-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2, 100.0 +4.61,4.61,a-exp-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5, 94.5 +4.845000000000001,4.85,a-exp-i1,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0, 100.0 +4.779999999999999,4.78,a-exp-i1,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0, 100.0 +4.220000000000001,4.22,a-exp-i1,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4, 96.7 +4.7299999999999995,4.73,a-exp-i1,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0, 98.3 +3.925,3.93,a-exp-i1,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6, 100.0 +3.7700000000000005,3.77,a-exp-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8, 98.6 +3.7,3.7,a-exp-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0, 98.1 +4.7,4.7,a-exp-i1,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0, 93.0 +4.68,4.68,a-exp-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9, 97.0 +4.1850000000000005,4.19,a-exp-i1,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0, 100.0 +4.41,4.41,a-exp-i1,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1, 100.0 +3.925,3.93,a-exp-i1,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0, 100.0 +4.6049999999999995,4.6,a-exp-i1,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0, 94.4 +4.445,4.45,a-exp-i1,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5, 100.0 +4.35,4.35,a-exp-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3, 100.0 +4.46,4.46,a-exp-i1,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4, 98.5 +4.505,4.51,a-exp-i1,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4, 97.8 +4.58,4.58,a-exp-i1,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0, 100.0 +4.05,4.05,a-exp-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8, 93.1 +4.515,4.52,a-exp-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5, 85.0 +4.07,4.07,a-exp-i1,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1, 95.2 +3.81,3.81,a-exp-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5, 92.7 +4.445,4.45,a-exp-i1,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9, 100.0 +3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1, 100.0 +4.14,4.14,a-exp-i1,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7, 95.5 +4.1049999999999995,4.1,a-exp-i1,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9, 91.0 +4.045,4.05,a-exp-i1,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3, 95.5 +3.4,3.4,a-exp-i1,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3, 90.8 +4.220000000000001,4.22,a-exp-i1,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1, 90.3 +3.6450000000000005,3.65,a-exp-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3, 90.9 +4.285,4.29,a-exp-i1,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0, 100.0 +4.1,4.1,a-exp-i1,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8, 92.3 +2.4050000000000002,2.41,a-exp-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1, 51.4 +4.64,4.64,a-exp-i1,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4, 96.7 +4.58,4.58,a-exp-i1,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9, 87.9 +3.405,3.41,a-exp-i1,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0, 100.0 +4.925,4.93,a-exp-i1,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5, 100.0 +3.6399999999999997,3.64,a-exp-i1,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8, 85.0 +3.69,3.69,a-exp-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0, 80.8 +0.0,1,a-exp-i1,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0, 87.5 +2.105,2.11,a-exp-i1,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6, 73.6 +4.55,4.55,a-exp-i1,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1, 100.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0, 86.0 +3.4,3.4,a-exp-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2, 87.5 +2.8600000000000003,2.86,a-exp-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2, 86.0 +3.105,3.11,a-exp-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3, 83.8 +3.025,3.03,a-exp-i1,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9, 79.7 +3.1149999999999998,3.12,a-exp-i1,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9, 83.6 +3.0949999999999998,3.1,a-exp-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2, 51.7 +1.6,1.6,a-exp-i1,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9, 84.2 +3.775,3.78,a-exp-i1,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7, 93.9 +3.6100000000000003,3.61,a-exp-i1,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9, 82.4 +2.875,2.88,a-exp-i1,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3, 75.4 +2.335,2.34,a-exp-i1,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1, 92.2 +4.805,4.81,a-exp-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0, 100.0 +4.265,4.27,a-exp-i1,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3, 86.5 +4.11,4.11,a-exp-i1,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4, 100.0 +4.535,4.54,a-exp-i1,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8, 97.9 +4.6450000000000005,4.65,a-exp-i1,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0, 97.5 +4.33,4.33,a-exp-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6, 100.0 +4.29,4.29,a-exp-i1,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0, 100.0 +3.815,3.82,a-exp-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7, 90.3 +4.7,4.7,a-exp-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0, 96.1 +3.8549999999999995,3.85,a-exp-i1,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1, 92.1 +5.0,5.0,a-exp-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0, 90.9 +3.8649999999999998,3.87,a-exp-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9, 97.1 +4.4799999999999995,4.48,a-exp-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6, 91.8 +3.725,3.73,a-exp-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2, 98.3 +4.125,4.13,a-exp-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5, 100.0 +3.845,3.85,a-exp-i1,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9, 84.6 +4.585,4.59,a-exp-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1, 48.4 +4.779999999999999,4.78,a-exp-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0, 100.0 +4.61,4.61,a-exp-i1,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9, 97.2 +4.5649999999999995,4.56,a-exp-i1,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4, 97.1 +4.6049999999999995,4.6,a-exp-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0, 100.0 +4.36,4.36,a-exp-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0, 100.0 0.0,1,a-exp-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"","",Not Reported,"","","" -2.915,2.92,a-exp-i1,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0,"" -3.02,3.02,a-exp-i1,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0,"" -4.04,4.04,a-exp-i1,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0,"" -4.275,4.28,a-exp-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2,"" -3.85,3.85,a-exp-i1,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3,"" -3.4899999999999998,3.49,a-exp-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0,"" -3.3600000000000003,3.36,a-exp-i1,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1,"" -3.255,3.26,a-exp-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4,"" -3.875,3.88,a-exp-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5,"" -2.88,2.88,a-exp-i1,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5,"" -3.9299999999999997,3.93,a-exp-i1,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6,"" -3.05,3.05,a-exp-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5,"" -4.49,4.49,a-exp-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2,"" -4.8100000000000005,4.81,a-exp-i1,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5,"" -4.4,4.4,a-exp-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3,"" -4.07,4.07,a-exp-i1,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7,"" -4.415,4.42,a-exp-i1,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4,"" -3.815,3.82,a-exp-i1,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4,"" -4.46,4.46,a-exp-i1,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0,"" -3.87,3.87,a-exp-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3,"" -4.64,4.64,a-exp-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2,"" -4.285,4.29,a-exp-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3,"" -4.57,4.57,a-exp-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0,"" -4.235,4.24,a-exp-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4,"" -4.675,4.68,a-exp-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0,"" -4.36,4.36,a-exp-i1,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8,"" -5.0,5.0,a-exp-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7,"" -4.26,4.26,a-exp-i1,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3,"" -3.59,3.59,a-exp-i1,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9,"" -4.43,4.43,a-exp-i1,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8,"" -4.154999999999999,4.15,a-exp-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0,"" -4.35,4.35,a-exp-i1,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2,"" -4.625,4.63,a-exp-i1,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7,"" -4.17,4.17,a-exp-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6,"" -4.85,4.85,a-exp-i1,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3,"" -0.0,1,a-exp-i1,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0,"" -4.535,4.54,a-exp-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0,"" -4.635,4.64,a-exp-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4,"" -4.67,4.67,a-exp-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0,"" -4.515,4.52,a-exp-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1,"" -4.165,4.17,a-exp-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1,"" -3.22,3.22,a-exp-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7,"" -3.335,3.34,a-exp-i1,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1,"" -3.71,3.71,a-exp-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8,"" -4.33,4.33,a-exp-i1,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1,"" -5.0,5.0,a-exp-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0,"" -4.55,4.55,a-exp-i1,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0,"" -3.88,3.88,a-exp-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5,"" -4.21,4.21,a-exp-i1,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6,"" +2.915,2.92,a-exp-i1,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0, 79.3 +3.02,3.02,a-exp-i1,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0, 81.8 +4.04,4.04,a-exp-i1,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0, 88.3 +4.275,4.28,a-exp-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2, 100.0 +3.85,3.85,a-exp-i1,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9, 88.1 +3.6700000000000004,3.67,a-exp-i1,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3, 87.0 +3.4899999999999998,3.49,a-exp-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4, 89.6 +4.1049999999999995,4.1,a-exp-i1,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0, 97.9 +4.654999999999999,4.65,a-exp-i1,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0, 0.0 +3.3600000000000003,3.36,a-exp-i1,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1, 91.2 +3.255,3.26,a-exp-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4, 91.9 +3.875,3.88,a-exp-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5, 100.0 +2.88,2.88,a-exp-i1,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5, 95.5 +3.9299999999999997,3.93,a-exp-i1,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6, 85.7 +3.05,3.05,a-exp-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5, 61.1 +3.6700000000000004,3.67,a-exp-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5, 97.4 +4.49,4.49,a-exp-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0, 100.0 +4.09,4.09,a-exp-i1,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5, 95.4 +4.3100000000000005,4.31,a-exp-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2, 100.0 +4.8100000000000005,4.81,a-exp-i1,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5, 94.7 +4.4,4.4,a-exp-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3, 100.0 +4.07,4.07,a-exp-i1,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7, 100.0 +4.415,4.42,a-exp-i1,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4, 100.0 +3.815,3.82,a-exp-i1,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4, 100.0 +4.46,4.46,a-exp-i1,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0, 97.7 +3.87,3.87,a-exp-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3, 86.9 +4.64,4.64,a-exp-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2, 96.9 +4.285,4.29,a-exp-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3, 97.3 +4.57,4.57,a-exp-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0, 100.0 +4.235,4.24,a-exp-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4, 96.2 +4.675,4.68,a-exp-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0, 100.0 +4.36,4.36,a-exp-i1,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8, 78.1 +5.0,5.0,a-exp-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0, 71.4 +3.7399999999999998,3.74,a-exp-i1,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7, 97.5 +4.26,4.26,a-exp-i1,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6, 89.6 +3.7700000000000005,3.77,a-exp-i1,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3, 95.7 +3.59,3.59,a-exp-i1,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9, 100.0 +4.43,4.43,a-exp-i1,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8, 83.8 +4.154999999999999,4.15,a-exp-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0, 80.6 +4.35,4.35,a-exp-i1,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2, 94.1 +4.625,4.63,a-exp-i1,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7, 95.0 +4.17,4.17,a-exp-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6, 81.5 +4.85,4.85,a-exp-i1,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3, 98.1 +0.0,1,a-exp-i1,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0, 100.0 +4.535,4.54,a-exp-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0, 85.7 +4.635,4.64,a-exp-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4, 96.2 +4.67,4.67,a-exp-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0, 95.0 +4.515,4.52,a-exp-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1, 100.0 +4.165,4.17,a-exp-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1, 88.9 +3.22,3.22,a-exp-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7, 87.5 +3.335,3.34,a-exp-i1,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1, 100.0 +3.71,3.71,a-exp-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8, 100.0 +4.33,4.33,a-exp-i1,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1, 93.9 +5.0,5.0,a-exp-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0, 100.0 +4.55,4.55,a-exp-i1,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0, 100.0 +3.88,3.88,a-exp-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5, 100.0 +4.21,4.21,a-exp-i1,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1, 100.0 +3.7950000000000004,3.8,a-exp-i1,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6, 100.0 0.0,1,a-exp-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0,N/A,"","","" -4.6450000000000005,4.65,a-exp-i1,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7,"" -4.51,4.51,a-exp-i1,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5,"" -4.215,4.22,a-exp-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0,"" -4.225,4.23,a-exp-i1,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0,"" -4.375,4.38,a-exp-i1,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0,"" -4.675,4.68,a-exp-i1,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1,"" -4.305,4.31,a-exp-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2,"" -4.24,4.24,a-exp-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9,"" -4.17,4.17,a-exp-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2,"" -3.3600000000000003,3.36,a-exp-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0,"" -3.995,4.0,a-exp-i1,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4,"" -4.415,4.42,a-exp-i1,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6,"" -3.845,3.85,a-exp-i1,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1,"" -2.9850000000000003,2.99,a-exp-i1,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0,"" -1.875,1.88,a-exp-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8,"" -5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0,"" -3.5149999999999997,3.51,a-exp-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3,"" -4.75,4.75,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3,"" -5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1,"" -4.07,4.07,a-exp-i1,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6,"" -4.575,4.58,a-exp-i1,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2,"" -4.465,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0,"" -4.075,4.08,a-exp-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4,"" -4.635,4.64,a-exp-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0,"" -4.8100000000000005,4.81,a-exp-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0,"" -3.025,3.03,a-exp-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3,"" -3.075,3.08,a-exp-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0,"" -4.635,4.64,a-exp-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8,"" -4.59,4.59,a-exp-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0,"" -4.65,4.65,a-exp-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8,"" -4.54,4.54,a-exp-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0,"" -4.58,4.58,a-exp-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0,"" -4.425,4.43,a-exp-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6,"" -4.865,4.87,a-exp-i1,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5,"" -4.365,4.37,a-exp-i1,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0,"" -3.965,3.97,a-exp-i1,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7,"" -4.635,4.64,a-exp-i1,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6,"" -4.525,4.53,a-exp-i1,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3,"" -4.09,4.09,a-exp-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6,"" -4.005,4.01,a-exp-i1,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1,"" -2.5,2.5,a-exp-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3,"" -3.9,3.9,a-exp-i1,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4,"" -3.575,3.58,a-exp-i1,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3,"" -3.5,3.5,a-exp-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0,"" -2.7600000000000002,2.76,a-exp-i1,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0,"" -3.69,3.69,a-exp-i1,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2,"" -3.335,3.34,a-exp-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3,"" -4.14,4.14,a-exp-i1,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7,"" -3.825,3.83,a-exp-i1,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2,"" -3.75,3.75,a-exp-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5,"" -4.12,4.12,a-exp-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0,"" -4.1,4.1,a-exp-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0,"" -4.42,4.42,a-exp-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9,"" -4.07,4.07,a-exp-i1,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6,"" -4.04,4.04,a-exp-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7,"" -1.4949999999999999,1.5,a-exp-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1,"" -2.9050000000000002,2.91,a-exp-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9,"" -3.4,3.4,a-exp-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5,"" -4.64,4.64,a-exp-i1,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8,"" -4.585,4.59,a-exp-i1,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7,"" -3.94,3.94,a-exp-i1,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4,"" -4.71,4.71,a-exp-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0,"" -3.845,3.85,a-exp-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9,"" -4.5,4.5,a-exp-i1,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0,"" -4.415,4.42,a-exp-i1,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3,"" -4.035,4.04,a-exp-i1,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0,"" -4.14,4.14,a-exp-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4,"" -3.47,3.47,a-exp-i1,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7,"" -2.565,2.57,a-exp-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0,"" -3.17,3.17,a-exp-i1,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8,"" -1.8,1.8,a-exp-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0,"" -3.13,3.13,a-exp-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7,"" -1.8199999999999998,1.82,a-exp-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8,"" -1.85,1.85,a-exp-i1,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2,"" -2.705,2.71,a-exp-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9,"" -2.95,2.95,a-exp-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7,"" -2.8449999999999998,2.85,a-exp-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6,"" -3.16,3.16,a-exp-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7,"" -2.08,2.08,a-exp-i1,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2,"" -3.195,3.2,a-exp-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4,"" -3.34,3.34,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0,"" -3.935,3.94,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4,"" -2.8449999999999998,2.85,a-exp-i1,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8,"" -4.33,4.33,a-exp-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9,"" -4.475,4.48,a-exp-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5,"" -4.9,4.9,a-exp-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0,"" -4.555,4.56,a-exp-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8,"" -3.88,3.88,a-exp-i1,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3,"" -4.475,4.48,a-exp-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3,"" -3.84,3.84,a-exp-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7,"" -4.445,4.45,a-exp-i1,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3,"" -4.4,4.4,a-exp-i1,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0,"" -4.3,4.3,a-exp-i1,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1,"" -4.005,4.01,a-exp-i1,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1,"" -3.7,3.7,a-exp-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4,"" -4.4,4.4,a-exp-i1,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5,"" -2.035,2.04,a-exp-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5,"" -2.245,2.25,a-exp-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5,"" -4.41,4.41,a-exp-i1,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9,"" -4.7,4.7,a-exp-i1,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6,"" -4.295,4.3,a-exp-i1,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6,"" -3.185,3.19,a-exp-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7,"" -3.0149999999999997,3.01,a-exp-i1,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0,"" -2.965,2.97,a-exp-i1,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7,"" -3.6450000000000005,3.65,a-exp-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3,"" -2.5,2.5,a-exp-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1,"" -2.95,2.95,a-exp-i1,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8,"" -2.075,2.08,a-exp-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8,"" -3.665,3.67,a-exp-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5,"" -4.68,4.68,a-exp-i1,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1,"" -3.775,3.78,a-exp-i1,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9,"" -3.335,3.34,a-exp-i1,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8,"" -3.215,3.22,a-exp-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0,"" -2.895,2.9,a-exp-i1,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7,"" -2.0100000000000002,2.01,a-exp-i1,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4,"" -2.045,2.05,a-exp-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3,"" -2.415,2.42,a-exp-i1,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9,"" -2.275,2.28,a-exp-i1,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6,"" -3.335,3.34,a-exp-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0,"" -3.18,3.18,a-exp-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9,"" -3.5450000000000004,3.55,a-exp-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2,"" -3.0,3.0,a-exp-i1,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0,"" -2.075,2.08,a-exp-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1,"" -2.3600000000000003,2.36,a-exp-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0,"" -4.445,4.45,a-exp-i1,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5,"" -4.17,4.17,a-exp-i1,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0,"" -4.46,4.46,a-exp-i1,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0,"" -4.04,4.04,a-exp-i1,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8,"" -5.0,5.0,a-exp-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0,"" -4.515,4.52,a-exp-i1,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5,"" -4.63,4.63,a-exp-i1,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8,"" -4.385,4.39,a-exp-i1,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0,"" -3.575,3.58,a-exp-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7,"" -3.6,3.6,a-exp-i1,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3,"" -4.335,4.34,a-exp-i1,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1,"" -4.16,4.16,a-exp-i1,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1,"" -4.245,4.25,a-exp-i1,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5,"" -3.75,3.75,a-exp-i1,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0,"" -3.56,3.56,a-exp-i1,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1,"" -3.44,3.44,a-exp-i1,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0,"" -3.75,3.75,a-exp-i1,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4,"" -4.375,4.38,a-exp-i1,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0,"" -4.41,4.41,a-exp-i1,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4,"" -4.515,4.52,a-exp-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7,"" -4.035,4.04,a-exp-i1,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0,"" -4.205,4.21,a-exp-i1,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9,"" -3.91,3.91,a-exp-i1,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1,"" -4.125,4.13,a-exp-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2,"" +4.6450000000000005,4.65,a-exp-i1,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7, 88.0 +4.51,4.51,a-exp-i1,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5, 97.8 +4.215,4.22,a-exp-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0, 98.2 +4.4799999999999995,4.48,a-exp-i1,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0, 100.0 +4.225,4.23,a-exp-i1,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0, 97.9 +4.375,4.38,a-exp-i1,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0, 100.0 +4.675,4.68,a-exp-i1,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1, 97.2 +4.305,4.31,a-exp-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2, 93.8 +4.24,4.24,a-exp-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9, 91.5 +4.4399999999999995,4.44,a-exp-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9, 89.2 +4.17,4.17,a-exp-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1, 87.6 +4.1850000000000005,4.19,a-exp-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2, 95.3 +4.5649999999999995,4.56,a-exp-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2, 93.4 +3.3600000000000003,3.36,a-exp-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0, 95.7 +3.995,4.0,a-exp-i1,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4, 95.2 +4.415,4.42,a-exp-i1,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6, 87.5 +3.845,3.85,a-exp-i1,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1, 97.0 +2.9850000000000003,2.99,a-exp-i1,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0, 94.7 +1.875,1.88,a-exp-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8, 100.0 +5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0, 100.0 +3.5149999999999997,3.51,a-exp-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6, 95.2 +4.529999999999999,4.53,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3, 96.5 +4.75,4.75,a-exp-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3, 98.4 +5.0,5.0,a-exp-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1, 92.6 +4.07,4.07,a-exp-i1,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0, 100.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6, 86.2 +4.575,4.58,a-exp-i1,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2, 100.0 +4.465,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0, 100.0 +4.075,4.08,a-exp-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4, 100.0 +4.635,4.64,a-exp-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5, 94.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0, 97.7 +4.8100000000000005,4.81,a-exp-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0, 100.0 +3.025,3.03,a-exp-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3, 80.0 +3.075,3.08,a-exp-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0, 68.3 +4.635,4.64,a-exp-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8, 96.8 +4.59,4.59,a-exp-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0, 100.0 +4.65,4.65,a-exp-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8, 98.7 +4.54,4.54,a-exp-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0, 100.0 +4.779999999999999,4.78,a-exp-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0, 100.0 +4.58,4.58,a-exp-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0, 98.1 +4.425,4.43,a-exp-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6, 98.7 +4.865,4.87,a-exp-i1,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5, 90.0 +4.365,4.37,a-exp-i1,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0, 97.3 +3.965,3.97,a-exp-i1,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7, 97.9 +4.635,4.64,a-exp-i1,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6, 98.5 +4.525,4.53,a-exp-i1,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6, 98.6 +4.7299999999999995,4.73,a-exp-i1,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6, 91.4 +4.3149999999999995,4.31,a-exp-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3, 100.0 +4.09,4.09,a-exp-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6, 95.2 +4.005,4.01,a-exp-i1,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1, 91.3 +2.5,2.5,a-exp-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3, 85.7 +3.9,3.9,a-exp-i1,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6, 100.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4, 98.8 +3.575,3.58,a-exp-i1,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3, 98.4 +3.5,3.5,a-exp-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0, 98.1 +2.7600000000000002,2.76,a-exp-i1,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0, 91.7 +3.69,3.69,a-exp-i1,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2, 100.0 +3.335,3.34,a-exp-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3, 33.3 +4.14,4.14,a-exp-i1,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8, 94.8 +3.7700000000000005,3.77,a-exp-i1,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7, 100.0 +3.825,3.83,a-exp-i1,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2, 100.0 +3.75,3.75,a-exp-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5, 100.0 +4.12,4.12,a-exp-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0, 100.0 +4.1,4.1,a-exp-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0, 93.9 +4.42,4.42,a-exp-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9, 95.2 +4.07,4.07,a-exp-i1,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6, 100.0 +4.04,4.04,a-exp-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7, 100.0 +1.4949999999999999,1.5,a-exp-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1, 38.1 +2.9050000000000002,2.91,a-exp-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9, 45.8 +3.4,3.4,a-exp-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5, 68.0 +4.64,4.64,a-exp-i1,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0, 95.7 +4.535,4.54,a-exp-i1,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8, 98.0 +4.585,4.59,a-exp-i1,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7, 96.4 +4.0200000000000005,4.02,a-exp-i1,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7, 100.0 +3.94,3.94,a-exp-i1,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4, 100.0 +4.71,4.71,a-exp-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +3.845,3.85,a-exp-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9, 92.0 +4.5,4.5,a-exp-i1,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0, 100.0 +3.9200000000000004,3.92,a-exp-i1,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0, 100.0 +4.385,4.39,a-exp-i1,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0, 94.2 +4.415,4.42,a-exp-i1,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3, 100.0 +4.035,4.04,a-exp-i1,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0, 96.4 +4.14,4.14,a-exp-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4, 94.8 +3.47,3.47,a-exp-i1,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7, 83.8 +2.565,2.57,a-exp-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0, 87.0 +3.17,3.17,a-exp-i1,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8, 77.8 +1.8,1.8,a-exp-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0, 88.0 +3.13,3.13,a-exp-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7, 77.3 +1.8199999999999998,1.82,a-exp-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8, 50.0 +1.85,1.85,a-exp-i1,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2, 78.8 +2.705,2.71,a-exp-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9, 81.1 +2.95,2.95,a-exp-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7, 87.5 +2.8449999999999998,2.85,a-exp-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6, 59.5 +3.16,3.16,a-exp-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7, 89.5 +2.08,2.08,a-exp-i1,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2, 66.7 +3.195,3.2,a-exp-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4, 51.4 +3.34,3.34,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0, 94.1 +3.935,3.94,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1, 90.9 +4.095000000000001,4.1,a-exp-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3, 90.6 +4.1049999999999995,4.1,a-exp-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3, 95.7 +3.7700000000000005,3.77,a-exp-i1,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4, 94.0 +2.8449999999999998,2.85,a-exp-i1,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5, 100.0 +3.9899999999999998,3.99,a-exp-i1,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8, 100.0 +4.33,4.33,a-exp-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0, 100.0 +4.5649999999999995,4.56,a-exp-i1,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9, 92.4 +4.475,4.48,a-exp-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5, 100.0 +4.9,4.9,a-exp-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0, 100.0 +4.555,4.56,a-exp-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8, 100.0 +3.88,3.88,a-exp-i1,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3, 97.8 +4.475,4.48,a-exp-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3, 84.5 +3.84,3.84,a-exp-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7, 100.0 +4.445,4.45,a-exp-i1,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3, 90.6 +4.2299999999999995,4.23,a-exp-i1,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3, 100.0 +4.4,4.4,a-exp-i1,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0, 100.0 +4.3,4.3,a-exp-i1,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1, 100.0 +4.005,4.01,a-exp-i1,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1, 100.0 +3.7,3.7,a-exp-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4, 75.0 +4.4,4.4,a-exp-i1,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0, 91.2 +4.1899999999999995,4.19,a-exp-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9, 97.7 +3.6149999999999998,3.62,a-exp-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0, 97.4 +4.49,4.49,a-exp-i1,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5, 100.0 +2.035,2.04,a-exp-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5, 46.0 +2.245,2.25,a-exp-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4, 39.1 +3.9549999999999996,3.95,a-exp-i1,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5, 96.6 +4.41,4.41,a-exp-i1,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9, 95.5 +4.7,4.7,a-exp-i1,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6, 97.2 +4.295,4.3,a-exp-i1,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6, 100.0 +3.185,3.19,a-exp-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7, 70.4 +3.0149999999999997,3.01,a-exp-i1,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0, 100.0 +2.965,2.97,a-exp-i1,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7, 76.5 +3.6450000000000005,3.65,a-exp-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3, 94.0 +2.5,2.5,a-exp-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1, 84.4 +2.95,2.95,a-exp-i1,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3, 95.3 +3.8950000000000005,3.9,a-exp-i1,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8, 89.2 +2.075,2.08,a-exp-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8, 87.0 +3.665,3.67,a-exp-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5, 77.8 +4.68,4.68,a-exp-i1,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8, 89.5 +3.8850000000000002,3.89,a-exp-i1,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1, 91.7 +3.775,3.78,a-exp-i1,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9, 88.0 +3.335,3.34,a-exp-i1,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8, 85.7 +3.215,3.22,a-exp-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6, 92.9 +3.8899999999999997,3.89,a-exp-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0, 89.5 +2.895,2.9,a-exp-i1,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7, 74.4 +2.0100000000000002,2.01,a-exp-i1,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4, 73.1 +2.045,2.05,a-exp-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3, 68.8 +2.415,2.42,a-exp-i1,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1, 83.9 +3.8049999999999997,3.81,a-exp-i1,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9, 90.5 +2.275,2.28,a-exp-i1,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0, 71.4 +3.8299999999999996,3.83,a-exp-i1,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6, 100.0 +3.335,3.34,a-exp-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0, 100.0 +3.18,3.18,a-exp-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9, 76.3 +3.5450000000000004,3.55,a-exp-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2, 94.8 +3.0,3.0,a-exp-i1,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0, 82.9 +2.075,2.08,a-exp-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1, 86.3 +2.3600000000000003,2.36,a-exp-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0, 96.9 +4.445,4.45,a-exp-i1,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5, 100.0 +4.17,4.17,a-exp-i1,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0, 83.3 +4.46,4.46,a-exp-i1,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0, 100.0 +4.04,4.04,a-exp-i1,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8, 97.1 +5.0,5.0,a-exp-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.515,4.52,a-exp-i1,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5, 96.8 +4.63,4.63,a-exp-i1,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8, 94.2 +4.385,4.39,a-exp-i1,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0, 89.7 +4.35,4.35,a-exp-i1,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0, 100.0 +3.575,3.58,a-exp-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7, 79.1 +3.6,3.6,a-exp-i1,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3, 97.9 +4.335,4.34,a-exp-i1,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1, 97.6 +4.16,4.16,a-exp-i1,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0, 100.0 +3.9799999999999995,3.98,a-exp-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1, 60.0 +4.245,4.25,a-exp-i1,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5, 94.4 +3.75,3.75,a-exp-i1,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0, 100.0 +3.56,3.56,a-exp-i1,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1, 98.1 +3.44,3.44,a-exp-i1,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0, 90.0 +3.75,3.75,a-exp-i1,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0, 97.5 +4.095000000000001,4.1,a-exp-i1,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4, 96.7 +4.375,4.38,a-exp-i1,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7, 100.0 +4.720000000000001,4.72,a-exp-i1,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0, 100.0 +4.385,4.39,a-exp-i1,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5, 100.0 +4.4399999999999995,4.44,a-exp-i1,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0, 97.8 +4.41,4.41,a-exp-i1,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4, 97.8 +4.515,4.52,a-exp-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7, 98.9 +4.035,4.04,a-exp-i1,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0, 100.0 +4.445,4.45,a-exp-i1,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0, 100.0 +4.205,4.21,a-exp-i1,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9, 96.1 +3.91,3.91,a-exp-i1,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1, 98.4 +4.125,4.13,a-exp-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2, 95.0 1.2449999999999999,1.24,a-exp-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 45.2, 65.2, 9.1 to 1, 24.9, 93.4,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9,"" -4.5,4.5,a-exp-i1,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6,"" -4.675,4.68,a-exp-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1,"" -4.635,4.64,a-exp-i1,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0,"" -3.685,3.69,a-exp-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1,"" -4.285,4.29,a-exp-i1,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3,"" -4.665,4.67,a-exp-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9,"" -4.545,4.55,a-exp-i1,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8,"" -4.825,4.83,a-exp-i1,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0,"" -4.625,4.63,a-exp-i1,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0,"" -3.7,3.7,a-exp-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6,"" -3.905,3.91,a-exp-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2,"" -4.5,4.5,a-exp-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3,"" -4.615,4.62,a-exp-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6,"" -5.0,5.0,a-exp-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0,"" -3.46,3.46,a-exp-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9,"" -3.725,3.73,a-exp-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0,"" -4.08,4.08,a-exp-i1,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2,"" -3.125,3.13,a-exp-i1,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0,"" -3.845,3.85,a-exp-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7,"" -4.15,4.15,a-exp-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6,"" -4.075,4.08,a-exp-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7,"" -3.925,3.93,a-exp-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4,"" -4.76,4.76,a-exp-i1,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0,"" -4.245,4.25,a-exp-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9,"" -3.31,3.31,a-exp-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7,"" -4.785,4.79,a-exp-i1,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0,"" -3.2600000000000002,3.26,a-exp-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6,"" -4.86,4.86,a-exp-i1,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2,"" -4.75,4.75,a-exp-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0,"" -4.675,4.68,a-exp-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1,"" -4.795,4.8,a-exp-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3,"" -4.12,4.12,a-exp-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3,"" -4.43,4.43,a-exp-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1,"" -3.6799999999999997,3.68,a-exp-i1,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0,"" -3.775,3.78,a-exp-i1,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6,"" -3.94,3.94,a-exp-i1,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0,"" -3.71,3.71,a-exp-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8,"" -3.655,3.66,a-exp-i1,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6,"" -3.45,3.45,a-exp-i1,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3,"" -3.3200000000000003,3.32,a-exp-i1,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1,"" -4.37,4.37,a-exp-i1,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0,"" -4.805,4.81,a-exp-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9,"" -1.535,1.54,a-exp-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7,"" -2.6,2.6,a-exp-i1,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7,"" -4.165,4.17,a-exp-i1,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6,"" -4.255,4.26,a-exp-i1,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5,"" -4.515,4.52,a-exp-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0,"" -3.165,3.17,a-exp-i1,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8,"" -3.835,3.84,a-exp-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9,"" -4.41,4.41,a-exp-i1,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4,"" -3.575,3.58,a-exp-i1,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2,"" -3.59,3.59,a-exp-i1,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2,"" -3.07,3.07,a-exp-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8,"" -3.815,3.82,a-exp-i1,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1,"" -3.175,3.18,a-exp-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0,"" -3.215,3.22,a-exp-i1,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8,"" -3.715,3.72,a-exp-i1,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2,"" -1.7,1.7,a-exp-i1,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7,"" -4.165,4.17,a-exp-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7,"" -4.67,4.67,a-exp-i1,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0,"" -4.9,4.9,a-exp-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9,"" -5.0,5.0,a-exp-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0,"" -3.825,3.83,a-exp-i1,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2,"" -3.915,3.92,a-exp-i1,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0,"" -3.28,3.28,a-exp-i1,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4,"" -3.6950000000000003,3.7,a-exp-i1,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0,"" -4.045,4.05,a-exp-i1,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1,"" -4.6850000000000005,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6,"" -4.175,4.18,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4,"" -4.6,4.6,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4,"" -4.175,4.18,a-exp-i1,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2,"" -4.625,4.63,a-exp-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8,"" -4.425,4.43,a-exp-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0,"" -4.585,4.59,a-exp-i1,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8,"" -5.0,5.0,a-exp-i1,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -2.6350000000000002,2.64,a-exp-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4,"" -3.835,3.84,a-exp-i1,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0,"" -3.965,3.97,a-exp-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4,"" -4.24,4.24,a-exp-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1,"" -4.835,4.84,a-exp-i1,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0,"" -3.4549999999999996,3.45,a-exp-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3,"" -4.41,4.41,a-exp-i1,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0,"" -3.97,3.97,a-exp-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8,"" -4.615,4.62,a-exp-i1,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3,"" -4.3,4.3,a-exp-i1,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0,"" -4.13,4.13,a-exp-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8,"" -4.18,4.18,a-exp-i1,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6,"" -4.175,4.18,a-exp-i1,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3,"" -4.66,4.66,a-exp-i1,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2,"" -4.325,4.33,a-exp-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1,"" -4.175,4.18,a-exp-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4,"" -4.34,4.34,a-exp-i1,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5,"" -4.96,4.96,a-exp-i1,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2,"" -3.78,3.78,a-exp-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7,"" -2.38,2.38,a-exp-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8,"" -1.78,1.78,a-exp-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3,"" -4.62,4.62,a-exp-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4,"" -4.04,4.04,a-exp-i1,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5,"" -1.765,1.77,a-exp-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9,"" -5.0,5.0,a-exp-i1,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0,"" -4.015,4.02,a-exp-i1,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9,"" -4.49,4.49,a-exp-i1,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3,"" -4.555,4.56,a-exp-i1,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0,"" -4.83,4.83,a-exp-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6,"" -4.625,4.63,a-exp-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2,"" -3.825,3.83,a-exp-i1,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0,"" -4.38,4.38,a-exp-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0,"" -4.115,4.12,a-exp-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0,"" -3.44,3.44,a-exp-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9,"" -4.17,4.17,a-exp-i1,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7,"" -4.32,4.32,a-exp-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7,"" -4.015,4.02,a-exp-i1,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4,"" -4.635,4.64,a-exp-i1,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0,"" -3.2600000000000002,3.26,a-exp-i1,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9,"" -4.32,4.32,a-exp-i1,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6,"" -4.205,4.21,a-exp-i1,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0,"" -4.54,4.54,a-exp-i1,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1,"" -4.445,4.45,a-exp-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0,"" -3.285,3.29,a-exp-i1,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2,"" -4.485,4.49,a-exp-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9,"" -4.13,4.13,a-exp-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8,"" -4.12,4.12,a-exp-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1,"" -4.015,4.02,a-exp-i1,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8,"" -4.095000000000001,4.1,a-exp-i1,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2,"" -4.18,4.18,a-exp-i1,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0,"" -3.81,3.81,a-exp-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5,"" -4.0600000000000005,4.06,a-exp-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8,"" -4.42,4.42,a-exp-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0,"" -4.74,4.74,a-exp-i1,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0,"" -4.275,4.28,a-exp-i1,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0,"" -4.26,4.26,a-exp-i1,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7,"" -3.4,3.4,a-exp-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0,"" -4.045,4.05,a-exp-i1,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3,"" -4.6,4.6,a-exp-i1,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9,"" -4.26,4.26,a-exp-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0,"" -4.29,4.29,a-exp-i1,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7,"" -4.675,4.68,a-exp-i1,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7,"" -4.675,4.68,a-exp-i1,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0,"" -0.0,1,a-exp-i1,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2,"" -4.275,4.28,a-exp-i1,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6,"" -4.41,4.41,a-exp-i1,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0,"" -3.995,4.0,a-exp-i1,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8,"" -4.65,4.65,a-exp-i1,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2,"" -4.13,4.13,a-exp-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2,"" -3.81,3.81,a-exp-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8,"" -4.795,4.8,a-exp-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8,"" -3.4899999999999998,3.49,a-exp-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8,"" -4.525,4.53,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7,"" -4.18,4.18,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6,"" -3.37,3.37,a-exp-i1,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0,"" -4.035,4.04,a-exp-i1,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5,"" -1.775,1.78,a-exp-i1,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6,"" -4.335,4.34,a-exp-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2,"" -4.475,4.48,a-exp-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0,"" -4.015,4.02,a-exp-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4,"" -1.95,1.95,a-exp-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5,"" -1.81,1.81,a-exp-i1,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3,"" -3.675,3.68,a-exp-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4,"" -3.0100000000000002,3.01,a-exp-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6,"" -3.62,3.62,a-exp-i1,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5,"" -3.69,3.69,a-exp-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8,"" -4.4,4.4,a-exp-i1,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4,"" -4.36,4.36,a-exp-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2,"" -4.6,4.6,a-exp-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2,"" -3.655,3.66,a-exp-i1,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6,"" -4.17,4.17,a-exp-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4,"" -4.5,4.5,a-exp-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0,"" -4.485,4.49,a-exp-i1,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5,"" -4.15,4.15,a-exp-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6,"" -5.0,5.0,a-exp-i1,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -4.615,4.62,a-exp-i1,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4,"" -4.74,4.74,a-exp-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8,"" -4.085,4.09,a-exp-i1,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0,"" -4.25,4.25,a-exp-i1,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4,"" -4.14,4.14,a-exp-i1,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4,"" -4.715,4.72,a-exp-i1,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3,"" -4.25,4.25,a-exp-i1,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0,"" -4.46,4.46,a-exp-i1,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0,"" -3.8600000000000003,3.86,a-exp-i1,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1,"" -4.305,4.31,a-exp-i1,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1,"" -4.615,4.62,a-exp-i1,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5,"" -3.54,3.54,a-exp-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8,"" -3.7649999999999997,3.76,a-exp-i1,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0,"" -2.375,2.38,a-exp-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6,"" -4.11,4.11,a-exp-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8,"" -2.94,2.94,a-exp-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4,"" -3.5149999999999997,3.51,a-exp-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2,"" -2.42,2.42,a-exp-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5,"" -3.3549999999999995,3.35,a-exp-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1,"" -3.94,3.94,a-exp-i1,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7,"" -3.6,3.6,a-exp-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3,"" -2.435,2.44,a-exp-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6,"" -3.775,3.78,a-exp-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1,"" -3.965,3.97,a-exp-i1,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4,"" -3.94,3.94,a-exp-i1,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6,"" -2.5,2.5,a-exp-i1,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7,"" -3.17,3.17,a-exp-i1,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1,"" -3.2649999999999997,3.26,a-exp-i1,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7,"" -4.225,4.23,a-exp-i1,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1,"" -4.0,4.0,a-exp-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7,"" -3.94,3.94,a-exp-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8,"" -2.8600000000000003,2.86,a-exp-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2,"" -3.59,3.59,a-exp-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6,"" -3.66,3.66,a-exp-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0,"" -4.445,4.45,a-exp-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8,"" -3.505,3.51,a-exp-i1,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1,"" -2.85,2.85,a-exp-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0,"" -4.26,4.26,a-exp-i1,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6,"" -4.01,4.01,a-exp-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4,"" -4.33,4.33,a-exp-i1,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0,"" -4.09,4.09,a-exp-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1,"" -4.74,4.74,a-exp-i1,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9,"" -3.71,3.71,a-exp-i1,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8,"" -3.915,3.92,a-exp-i1,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5,"" -4.35,4.35,a-exp-i1,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9,"" -4.6899999999999995,4.69,a-exp-i1,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0,"" -4.055,4.06,a-exp-i1,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4,"" -4.2,4.2,a-exp-i1,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0,"" -4.3,4.3,a-exp-i1,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0,"" -4.08,4.08,a-exp-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0,"" -4.375,4.38,a-exp-i1,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9,"" -4.545,4.55,a-exp-i1,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0,"" -3.745,3.75,a-exp-i1,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0,"" -4.42,4.42,a-exp-i1,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1,"" -4.445,4.45,a-exp-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8,"" -4.33,4.33,a-exp-i1,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0,"" -4.465,4.47,a-exp-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0,"" -3.475,3.48,a-exp-i1,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2,"" -4.05,4.05,a-exp-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0,"" -4.325,4.33,a-exp-i1,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0,"" -4.055,4.06,a-exp-i1,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9,"" -4.275,4.28,a-exp-i1,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0,"" -4.575,4.58,a-exp-i1,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7,"" -4.8,4.8,a-exp-i1,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7,"" -4.12,4.12,a-exp-i1,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2,"" -5.0,5.0,a-exp-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0,"" -4.51,4.51,a-exp-i1,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7,"" -3.965,3.97,a-exp-i1,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7,"" -4.61,4.61,a-exp-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5,"" -4.49,4.49,a-exp-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8,"" -4.415,4.42,a-exp-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5,"" -3.2950000000000004,3.3,a-exp-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1,"" -4.14,4.14,a-exp-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0,"" -3.2,3.2,a-exp-i1,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6,"" -3.975,3.98,a-exp-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2,"" -4.14,4.14,a-exp-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7,"" -4.4,4.4,a-exp-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0,"" -3.225,3.23,a-exp-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0,"" -3.975,3.98,a-exp-i1,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8,"" -4.71,4.71,a-exp-i1,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0,"" -4.505,4.51,a-exp-i1,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8,"" -4.305,4.31,a-exp-i1,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0,"" -4.925,4.93,a-exp-i1,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2,"" -4.465,4.47,a-exp-i1,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0,"" -3.75,3.75,a-exp-i1,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3,"" -4.175,4.18,a-exp-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7,"" -4.835,4.84,a-exp-i1,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7,"" -4.195,4.2,a-exp-i1,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0,"" -4.615,4.62,a-exp-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0,"" -3.9299999999999997,3.93,a-exp-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8,"" -4.625,4.63,a-exp-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0,"" -4.8549999999999995,4.85,a-exp-i1,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1,"" -4.795,4.8,a-exp-i1,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0,"" -4.445,4.45,a-exp-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7,"" -4.7,4.7,a-exp-i1,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7,"" -4.779999999999999,4.78,a-exp-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1,"" -4.5,4.5,a-exp-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0,"" -4.14,4.14,a-exp-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4,"" -4.57,4.57,a-exp-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2,"" -4.16,4.16,a-exp-i1,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8,"" -4.43,4.43,a-exp-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2,"" -4.805,4.81,a-exp-i1,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0,"" -4.54,4.54,a-exp-i1,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4,"" -4.725,4.73,a-exp-i1,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2,"" -4.275,4.28,a-exp-i1,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8,"" -3.8,3.8,a-exp-i1,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0,"" -3.8549999999999995,3.85,a-exp-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0,"" -4.305,4.31,a-exp-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6,"" -4.46,4.46,a-exp-i1,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0,"" -4.16,4.16,a-exp-i1,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3,"" -4.425,4.43,a-exp-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2,"" -4.65,4.65,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0,"" -2.855,2.86,a-exp-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6,"" -4.235,4.24,a-exp-i1,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0,"" -3.2600000000000002,3.26,a-exp-i1,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1,"" -4.45,4.45,a-exp-i1,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0,"" -3.8200000000000003,3.82,a-exp-i1,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7,"" -4.42,4.42,a-exp-i1,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1,"" -3.6799999999999997,3.68,a-exp-i1,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2,"" -4.255,4.26,a-exp-i1,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7,"" -4.045,4.05,a-exp-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2,"" +4.6899999999999995,4.69,a-exp-i1,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9, 100.0 +4.5,4.5,a-exp-i1,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0, 94.3 +4.595000000000001,4.6,a-exp-i1,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6, 95.5 +4.675,4.68,a-exp-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1, 97.9 +4.635,4.64,a-exp-i1,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6, 91.1 +3.9200000000000004,3.92,a-exp-i1,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3, 96.6 +3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2, 100.0 +3.9899999999999998,3.99,a-exp-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0, 91.4 +3.685,3.69,a-exp-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1, 91.9 +4.285,4.29,a-exp-i1,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3, 97.6 +4.665,4.67,a-exp-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9, 97.1 +4.545,4.55,a-exp-i1,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8, 94.2 +4.825,4.83,a-exp-i1,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5, 100.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0, 95.2 +4.625,4.63,a-exp-i1,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0, 97.5 +3.7,3.7,a-exp-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6, 89.7 +3.905,3.91,a-exp-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2, 88.9 +4.5,4.5,a-exp-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3, 100.0 +4.615,4.62,a-exp-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9, 92.7 +3.8549999999999995,3.85,a-exp-i1,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6, 93.5 +5.0,5.0,a-exp-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0, 100.0 +3.46,3.46,a-exp-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9, 76.9 +4.2299999999999995,4.23,a-exp-i1,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9, 97.4 +3.725,3.73,a-exp-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0, 77.4 +4.08,4.08,a-exp-i1,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0, 89.6 +4.3549999999999995,4.35,a-exp-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2, 88.9 +3.125,3.13,a-exp-i1,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0, 100.0 +3.845,3.85,a-exp-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7, 94.6 +4.15,4.15,a-exp-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6, 85.7 +4.075,4.08,a-exp-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7, 100.0 +3.925,3.93,a-exp-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2, 75.0 +4.029999999999999,4.03,a-exp-i1,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4, 83.2 +4.76,4.76,a-exp-i1,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0, 95.5 +4.245,4.25,a-exp-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0, 92.5 +4.445,4.45,a-exp-i1,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7, 97.2 +4.1049999999999995,4.1,a-exp-i1,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9, 89.7 +3.31,3.31,a-exp-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7, 90.8 +4.7299999999999995,4.73,a-exp-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0, 94.6 +4.43,4.43,a-exp-i1,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7, 71.4 +4.785,4.79,a-exp-i1,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0, 100.0 +3.2600000000000002,3.26,a-exp-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5, 95.7 +3.6350000000000002,3.64,a-exp-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6, 60.0 +4.86,4.86,a-exp-i1,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2, 97.3 +4.75,4.75,a-exp-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0, 91.2 +4.675,4.68,a-exp-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1, 97.5 +4.795,4.8,a-exp-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0, 98.0 +5.0,5.0,a-exp-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0, 66.7 +4.265,4.27,a-exp-i1,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0, 88.4 +4.445,4.45,a-exp-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3, 88.9 +4.12,4.12,a-exp-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3, 86.7 +4.43,4.43,a-exp-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0, 83.3 +3.4299999999999997,3.43,a-exp-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1, 92.5 +3.6799999999999997,3.68,a-exp-i1,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0, 95.2 +3.775,3.78,a-exp-i1,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6, 92.2 +3.94,3.94,a-exp-i1,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0, 90.3 +3.71,3.71,a-exp-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8, 92.9 +3.655,3.66,a-exp-i1,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6, 90.8 +3.45,3.45,a-exp-i1,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3, 96.7 +3.3200000000000003,3.32,a-exp-i1,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1, 90.3 +4.37,4.37,a-exp-i1,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0, 100.0 +4.805,4.81,a-exp-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9, 90.2 +1.535,1.54,a-exp-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7, 71.4 +2.6,2.6,a-exp-i1,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7, 88.9 +4.165,4.17,a-exp-i1,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6, 98.4 +4.255,4.26,a-exp-i1,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5, 97.4 +4.515,4.52,a-exp-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0, 100.0 +3.165,3.17,a-exp-i1,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8, 88.4 +3.835,3.84,a-exp-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9, 83.9 +4.41,4.41,a-exp-i1,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4, 94.7 +3.575,3.58,a-exp-i1,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1, 85.0 +3.8649999999999998,3.87,a-exp-i1,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2, 97.6 +3.59,3.59,a-exp-i1,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2, 100.0 +3.07,3.07,a-exp-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8, 82.9 +3.815,3.82,a-exp-i1,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1, 97.1 +3.175,3.18,a-exp-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0, 100.0 +3.215,3.22,a-exp-i1,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8, 97.7 +3.715,3.72,a-exp-i1,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2, 36.4 +1.7,1.7,a-exp-i1,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7, 81.1 +4.165,4.17,a-exp-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7, 100.0 +4.67,4.67,a-exp-i1,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0, 98.3 +4.9,4.9,a-exp-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9, 96.4 +5.0,5.0,a-exp-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +4.0200000000000005,4.02,a-exp-i1,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0, 96.7 +5.0,5.0,a-exp-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3, 100.0 +3.8549999999999995,3.85,a-exp-i1,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0, 98.6 +3.825,3.83,a-exp-i1,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2, 97.2 +3.915,3.92,a-exp-i1,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0, 100.0 +3.28,3.28,a-exp-i1,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4, 92.1 +3.6950000000000003,3.7,a-exp-i1,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0, 95.7 +4.045,4.05,a-exp-i1,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4, 97.6 +3.8899999999999997,3.89,a-exp-i1,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1, 92.8 +4.6850000000000005,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9, 100.0 +4.6899999999999995,4.69,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6, 87.0 +4.175,4.18,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4, 100.0 +4.6,4.6,a-exp-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4, 100.0 +4.175,4.18,a-exp-i1,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2, 100.0 +4.625,4.63,a-exp-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8, 100.0 +4.425,4.43,a-exp-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0, 100.0 +4.585,4.59,a-exp-i1,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8, 98.1 +5.0,5.0,a-exp-i1,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +2.6350000000000002,2.64,a-exp-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4, 68.0 +3.835,3.84,a-exp-i1,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0, 100.0 +3.965,3.97,a-exp-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0, 100.0 +4.279999999999999,4.28,a-exp-i1,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4, 95.6 +4.24,4.24,a-exp-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1, 97.6 +4.835,4.84,a-exp-i1,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0, 100.0 +3.4549999999999996,3.45,a-exp-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3, 86.4 +4.41,4.41,a-exp-i1,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0, 99.0 +3.97,3.97,a-exp-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8, 100.0 +4.615,4.62,a-exp-i1,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3, 100.0 +4.3,4.3,a-exp-i1,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0, 100.0 +4.13,4.13,a-exp-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8, 100.0 +4.18,4.18,a-exp-i1,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8, 97.1 +4.345000000000001,4.35,a-exp-i1,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6, 100.0 +4.175,4.18,a-exp-i1,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3, 100.0 +4.66,4.66,a-exp-i1,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2, 100.0 +4.325,4.33,a-exp-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1, 96.2 +4.175,4.18,a-exp-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4, 100.0 +4.34,4.34,a-exp-i1,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1, 97.4 +4.345000000000001,4.35,a-exp-i1,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5, 100.0 +4.96,4.96,a-exp-i1,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2, 100.0 +3.78,3.78,a-exp-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7, 86.5 +2.38,2.38,a-exp-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8, 91.7 +1.78,1.78,a-exp-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0, 52.8 +4.6450000000000005,4.65,a-exp-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3, 98.9 +4.62,4.62,a-exp-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7, 96.2 +4.220000000000001,4.22,a-exp-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0, 100.0 +4.295,4.3,a-exp-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4, 89.3 +4.04,4.04,a-exp-i1,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5, 97.4 +1.765,1.77,a-exp-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9, 48.8 +5.0,5.0,a-exp-i1,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0, 100.0 +4.3950000000000005,4.4,a-exp-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0, 100.0 +4.015,4.02,a-exp-i1,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9, 91.7 +3.6700000000000004,3.67,a-exp-i1,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9, 92.5 +4.49,4.49,a-exp-i1,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1, 89.7 +4.7299999999999995,4.73,a-exp-i1,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3, 94.6 +4.555,4.56,a-exp-i1,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0, 100.0 +4.83,4.83,a-exp-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6, 100.0 +4.625,4.63,a-exp-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2, 88.6 +3.825,3.83,a-exp-i1,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0, 97.7 +3.8899999999999997,3.89,a-exp-i1,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0, 28.6 +4.38,4.38,a-exp-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0, 92.9 +4.115,4.12,a-exp-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0, 89.8 +3.44,3.44,a-exp-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9, 94.1 +4.17,4.17,a-exp-i1,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7, 89.1 +4.32,4.32,a-exp-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7, 97.8 +4.015,4.02,a-exp-i1,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5, 100.0 +3.7600000000000002,3.76,a-exp-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0, 100.0 +4.1049999999999995,4.1,a-exp-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1, 96.3 +4.1899999999999995,4.19,a-exp-i1,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4, 90.6 +4.635,4.64,a-exp-i1,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8, 90.5 +4.3100000000000005,4.31,a-exp-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1, 88.0 +4.9350000000000005,4.94,a-exp-i1,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0, 94.7 +3.2600000000000002,3.26,a-exp-i1,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0, 97.0 +4.385,4.39,a-exp-i1,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9, 94.0 +4.32,4.32,a-exp-i1,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6, 89.5 +4.205,4.21,a-exp-i1,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0, 96.6 +4.54,4.54,a-exp-i1,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1, 96.4 +4.445,4.45,a-exp-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0, 92.6 +3.285,3.29,a-exp-i1,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0, 80.0 +4.2299999999999995,4.23,a-exp-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2, 94.4 +4.485,4.49,a-exp-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9, 88.9 +4.13,4.13,a-exp-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8, 97.8 +4.12,4.12,a-exp-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1, 97.1 +4.015,4.02,a-exp-i1,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8, 96.0 +4.095000000000001,4.1,a-exp-i1,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2, 90.9 +4.18,4.18,a-exp-i1,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0, 95.1 +3.81,3.81,a-exp-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5, 97.4 +4.0600000000000005,4.06,a-exp-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8, 96.4 +4.42,4.42,a-exp-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0, 100.0 +4.720000000000001,4.72,a-exp-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0, 100.0 +4.74,4.74,a-exp-i1,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4, 95.8 +4.220000000000001,4.22,a-exp-i1,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0, 97.0 +4.275,4.28,a-exp-i1,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0, 97.9 +4.535,4.54,a-exp-i1,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0, 100.0 +4.26,4.26,a-exp-i1,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7, 94.8 +3.4,3.4,a-exp-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0, 100.0 +4.045,4.05,a-exp-i1,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3, 92.1 +4.6,4.6,a-exp-i1,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0, 97.7 +4.529999999999999,4.53,a-exp-i1,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9, 100.0 +4.26,4.26,a-exp-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7, 97.1 +4.4350000000000005,4.44,a-exp-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0, 100.0 +4.29,4.29,a-exp-i1,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7, 95.8 +4.675,4.68,a-exp-i1,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7, 93.9 +4.675,4.68,a-exp-i1,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0, 91.7 +0.0,1,a-exp-i1,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0, 0.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2, 93.9 +4.275,4.28,a-exp-i1,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6, 95.9 +4.41,4.41,a-exp-i1,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0, 98.2 +3.995,4.0,a-exp-i1,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8, 94.2 +4.65,4.65,a-exp-i1,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4, 95.6 +4.220000000000001,4.22,a-exp-i1,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2, 95.1 +4.13,4.13,a-exp-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2, 94.4 +3.81,3.81,a-exp-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1, 91.7 +4.4799999999999995,4.48,a-exp-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8, 87.8 +4.795,4.8,a-exp-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8, 91.7 +3.4899999999999998,3.49,a-exp-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0, 95.0 +4.535,4.54,a-exp-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8, 93.8 +4.525,4.53,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7, 95.5 +4.18,4.18,a-exp-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6, 100.0 +3.37,3.37,a-exp-i1,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0, 92.7 +4.035,4.04,a-exp-i1,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5, 93.2 +1.775,1.78,a-exp-i1,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6, 92.9 +4.335,4.34,a-exp-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2, 92.5 +4.475,4.48,a-exp-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0, 86.5 +4.015,4.02,a-exp-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4, 95.6 +1.95,1.95,a-exp-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5, 35.2 +1.81,1.81,a-exp-i1,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3, 93.3 +3.675,3.68,a-exp-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4, 94.1 +3.0100000000000002,3.01,a-exp-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6, 90.7 +3.62,3.62,a-exp-i1,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5, 89.1 +3.69,3.69,a-exp-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8, 94.7 +4.4,4.4,a-exp-i1,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0, 96.0 +4.1850000000000005,4.19,a-exp-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4, 92.3 +4.36,4.36,a-exp-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2, 97.7 +4.6,4.6,a-exp-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2, 96.8 +3.655,3.66,a-exp-i1,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6, 100.0 +4.17,4.17,a-exp-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4, 92.0 +4.5,4.5,a-exp-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0, 100.0 +4.485,4.49,a-exp-i1,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5, 95.9 +4.15,4.15,a-exp-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6, 92.4 +5.0,5.0,a-exp-i1,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0, 97.4 +4.615,4.62,a-exp-i1,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4, 100.0 +4.74,4.74,a-exp-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8, 97.6 +4.085,4.09,a-exp-i1,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2, 97.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0, 100.0 +4.25,4.25,a-exp-i1,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4, 90.8 +4.14,4.14,a-exp-i1,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4, 95.2 +4.715,4.72,a-exp-i1,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1, 97.6 +4.4799999999999995,4.48,a-exp-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3, 98.2 +4.25,4.25,a-exp-i1,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0, 100.0 +4.46,4.46,a-exp-i1,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0, 97.6 +3.8600000000000003,3.86,a-exp-i1,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1, 97.5 +4.5649999999999995,4.56,a-exp-i1,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1, 98.7 +4.305,4.31,a-exp-i1,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1, 100.0 +4.615,4.62,a-exp-i1,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5, 96.4 +3.54,3.54,a-exp-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8, 97.9 +3.7649999999999997,3.76,a-exp-i1,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0, 100.0 +2.375,2.38,a-exp-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6, 43.8 +4.11,4.11,a-exp-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8, 95.8 +2.94,2.94,a-exp-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4, 78.0 +3.5149999999999997,3.51,a-exp-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2, 100.0 +2.42,2.42,a-exp-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5, 90.3 +3.3549999999999995,3.35,a-exp-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1, 100.0 +3.94,3.94,a-exp-i1,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0, 100.0 +3.9450000000000003,3.95,a-exp-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7, 100.0 +3.6,3.6,a-exp-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0, 96.3 +3.9799999999999995,3.98,a-exp-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3, 96.8 +2.435,2.44,a-exp-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6, 92.3 +3.775,3.78,a-exp-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1, 100.0 +3.965,3.97,a-exp-i1,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4, 96.4 +3.94,3.94,a-exp-i1,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6, 100.0 +2.5,2.5,a-exp-i1,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7, 100.0 +3.17,3.17,a-exp-i1,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8, 100.0 +3.8049999999999997,3.81,a-exp-i1,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1, 96.8 +3.2649999999999997,3.26,a-exp-i1,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7, 90.4 +4.225,4.23,a-exp-i1,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1, 97.6 +4.0,4.0,a-exp-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7, 94.1 +3.94,3.94,a-exp-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8, 91.5 +2.8600000000000003,2.86,a-exp-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2, 86.2 +3.59,3.59,a-exp-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6, 100.0 +3.66,3.66,a-exp-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0, 82.4 +4.445,4.45,a-exp-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8, 90.0 +3.505,3.51,a-exp-i1,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1, 100.0 +2.85,2.85,a-exp-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0, 78.0 +4.26,4.26,a-exp-i1,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0, 100.0 +4.265,4.27,a-exp-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6, 97.6 +4.01,4.01,a-exp-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4, 98.4 +4.33,4.33,a-exp-i1,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0, 92.7 +4.09,4.09,a-exp-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1, 100.0 +4.74,4.74,a-exp-i1,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0, 97.6 +4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9, 100.0 +3.71,3.71,a-exp-i1,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8, 90.9 +3.915,3.92,a-exp-i1,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0, 94.4 +4.295,4.3,a-exp-i1,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5, 94.7 +4.35,4.35,a-exp-i1,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5, 96.2 +4.2700000000000005,4.27,a-exp-i1,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0, 91.7 +4.4350000000000005,4.44,a-exp-i1,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9, 96.6 +4.6899999999999995,4.69,a-exp-i1,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0, 97.2 +4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0, 85.3 +4.055,4.06,a-exp-i1,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0, 87.5 +4.4399999999999995,4.44,a-exp-i1,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4, 97.4 +4.2,4.2,a-exp-i1,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0, 93.9 +4.3,4.3,a-exp-i1,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0, 95.0 +4.08,4.08,a-exp-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0, 100.0 +4.375,4.38,a-exp-i1,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3, 95.3 +4.5649999999999995,4.56,a-exp-i1,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0, 94.4 +4.1450000000000005,4.15,a-exp-i1,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9, 94.7 +4.545,4.55,a-exp-i1,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0, 100.0 +3.745,3.75,a-exp-i1,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0, 95.7 +4.6,4.6,a-exp-i1,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0, 96.3 +4.42,4.42,a-exp-i1,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1, 97.3 +4.445,4.45,a-exp-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8, 100.0 +4.33,4.33,a-exp-i1,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0, 100.0 +4.465,4.47,a-exp-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0, 96.6 +3.475,3.48,a-exp-i1,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2, 90.6 +4.05,4.05,a-exp-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0, 96.8 +3.8049999999999997,3.81,a-exp-i1,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0, 76.5 +4.325,4.33,a-exp-i1,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0, 96.2 +4.345000000000001,4.35,a-exp-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0, 100.0 +4.055,4.06,a-exp-i1,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9, 100.0 +4.275,4.28,a-exp-i1,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1, 100.0 +3.7950000000000004,3.8,a-exp-i1,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0, 90.5 +4.575,4.58,a-exp-i1,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7, 92.5 +4.8,4.8,a-exp-i1,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7, 100.0 +4.12,4.12,a-exp-i1,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0, 100.0 +4.51,4.51,a-exp-i1,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7, 100.0 +3.965,3.97,a-exp-i1,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7, 100.0 +4.61,4.61,a-exp-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5, 95.2 +4.49,4.49,a-exp-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8, 100.0 +4.415,4.42,a-exp-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5, 97.5 +3.2950000000000004,3.3,a-exp-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1, 100.0 +4.14,4.14,a-exp-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0, 95.8 +3.2,3.2,a-exp-i1,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3, 95.0 +4.5600000000000005,4.56,a-exp-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2, 93.8 +4.5200000000000005,4.52,a-exp-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6, 100.0 +3.975,3.98,a-exp-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2, 96.3 +4.14,4.14,a-exp-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7, 94.9 +4.4,4.4,a-exp-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0, 97.1 +3.225,3.23,a-exp-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0, 70.0 +3.975,3.98,a-exp-i1,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8, 98.0 +4.71,4.71,a-exp-i1,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +4.505,4.51,a-exp-i1,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8, 100.0 +4.305,4.31,a-exp-i1,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0, 100.0 +4.925,4.93,a-exp-i1,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3, 98.6 +4.5200000000000005,4.52,a-exp-i1,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2, 100.0 +4.465,4.47,a-exp-i1,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0, 100.0 +3.75,3.75,a-exp-i1,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3, 96.8 +4.175,4.18,a-exp-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7, 98.5 +4.835,4.84,a-exp-i1,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7, 100.0 +4.195,4.2,a-exp-i1,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0, 96.9 +4.615,4.62,a-exp-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0, 96.3 +3.9299999999999997,3.93,a-exp-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8, 98.3 +4.625,4.63,a-exp-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0, 97.4 +4.8549999999999995,4.85,a-exp-i1,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1, 100.0 +4.795,4.8,a-exp-i1,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0, 100.0 +4.445,4.45,a-exp-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7, 100.0 +4.7,4.7,a-exp-i1,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7, 100.0 +4.779999999999999,4.78,a-exp-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1, 93.2 +4.5,4.5,a-exp-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0, 98.7 +4.029999999999999,4.03,a-exp-i1,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4, 95.6 +4.4799999999999995,4.48,a-exp-i1,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0, 100.0 +4.14,4.14,a-exp-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4, 88.6 +4.57,4.57,a-exp-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1, 93.8 +4.220000000000001,4.22,a-exp-i1,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0, 97.1 +3.8649999999999998,3.87,a-exp-i1,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4, 97.6 +4.3950000000000005,4.4,a-exp-i1,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0, 96.4 +4.3549999999999995,4.35,a-exp-i1,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2, 100.0 +4.16,4.16,a-exp-i1,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8, 100.0 +4.43,4.43,a-exp-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2, 100.0 +4.805,4.81,a-exp-i1,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0, 100.0 +4.54,4.54,a-exp-i1,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4, 100.0 +4.725,4.73,a-exp-i1,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2, 97.4 +4.275,4.28,a-exp-i1,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8, 100.0 +3.8,3.8,a-exp-i1,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0, 100.0 +3.8549999999999995,3.85,a-exp-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0, 100.0 +4.305,4.31,a-exp-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9, 96.1 +4.2299999999999995,4.23,a-exp-i1,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0, 100.0 +4.76,4.76,a-exp-i1,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6, 100.0 +4.46,4.46,a-exp-i1,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0, 100.0 +4.16,4.16,a-exp-i1,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4, 95.7 +4.029999999999999,4.03,a-exp-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3, 91.8 +4.425,4.43,a-exp-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2, 95.2 +4.65,4.65,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0, 96.4 +5.0,5.0,a-exp-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0, 97.3 +2.855,2.86,a-exp-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6, 83.3 +4.235,4.24,a-exp-i1,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0, 95.8 +3.2600000000000002,3.26,a-exp-i1,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4, 100.0 +4.279999999999999,4.28,a-exp-i1,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0, 96.2 +4.0200000000000005,4.02,a-exp-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1, 100.0 +4.45,4.45,a-exp-i1,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0, 100.0 +3.8200000000000003,3.82,a-exp-i1,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7, 79.2 +4.42,4.42,a-exp-i1,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1, 97.9 +3.6799999999999997,3.68,a-exp-i1,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2, 100.0 +4.255,4.26,a-exp-i1,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7, 98.4 +4.045,4.05,a-exp-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2, 93.6 0.0,1,a-exp-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"","",Not Reported,"","","" -4.43,4.43,a-exp-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3,"" -3.975,3.98,a-exp-i1,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9,"" -4.465,4.47,a-exp-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3,"" -4.165,4.17,a-exp-i1,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0,"" -3.335,3.34,a-exp-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1,"" -4.335,4.34,a-exp-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6,"" -4.515,4.52,a-exp-i1,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4,"" -3.13,3.13,a-exp-i1,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4,"" -4.66,4.66,a-exp-i1,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2,"" -3.745,3.75,a-exp-i1,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7,"" -4.575,4.58,a-exp-i1,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5,"" -4.84,4.84,a-exp-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0,"" -4.555,4.56,a-exp-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0,"" -4.49,4.49,a-exp-i1,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2,"" -4.215,4.22,a-exp-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5,"" -4.215,4.22,a-exp-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4,"" -4.1,4.1,a-exp-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1,"" -4.29,4.29,a-exp-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8,"" -4.37,4.37,a-exp-i1,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0,"" -0.9199999999999999,1,a-exp-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0,"" -1.25,1.25,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0,"" -1.1099999999999999,1.11,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6,"" -2.34,2.34,a-exp-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7,"" -2.995,3.0,a-exp-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2,"" -4.585,4.59,a-exp-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0,"" -3.7350000000000003,3.74,a-exp-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0,"" -3.35,3.35,a-exp-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5,"" -3.05,3.05,a-exp-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2,"" -2.675,2.68,a-exp-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4,"" -3.915,3.92,a-exp-i1,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7,"" -1.925,1.93,a-exp-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6,"" -2.145,2.15,a-exp-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9,"" -3.56,3.56,a-exp-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1,"" -2.69,2.69,a-exp-i1,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1,"" -4.465,4.47,a-exp-i1,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9,"" -5.0,5.0,a-exp-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0,"" -4.005,4.01,a-exp-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7,"" -3.17,3.17,a-exp-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1,"" -3.2399999999999998,3.24,a-exp-i1,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0,"" -3.525,3.53,a-exp-i1,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2,"" -3.585,3.59,a-exp-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3,"" -4.675,4.68,a-exp-i1,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0,"" -4.51,4.51,a-exp-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0,"" -4.285,4.29,a-exp-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0,"" -3.66,3.66,a-exp-i1,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0,"" -4.51,4.51,a-exp-i1,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7,"" -3.2399999999999998,3.24,a-exp-i1,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0,"" -4.485,4.49,a-exp-i1,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0,"" -4.92,4.92,a-exp-i1,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0,"" -4.59,4.59,a-exp-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3,"" -5.0,5.0,a-exp-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6,"" -4.13,4.13,a-exp-i1,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3,"" -4.8149999999999995,4.81,a-exp-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5,"" -3.995,4.0,a-exp-i1,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0,"" -4.41,4.41,a-exp-i1,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5,"" -4.154999999999999,4.15,a-exp-i1,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9,"" -2.35,2.35,a-exp-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0,"" -3.94,3.94,a-exp-i1,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0,"" -3.37,3.37,a-exp-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8,"" -4.6,4.6,a-exp-i1,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2,"" -5.0,5.0,a-exp-i1,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0,"" -3.475,3.48,a-exp-i1,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9,"" -4.375,4.38,a-exp-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7,"" -4.43,4.43,a-exp-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8,"" -4.3,4.3,a-exp-i1,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8,"" -3.775,3.78,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1,"" -4.665,4.67,a-exp-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2,"" -5.0,5.0,a-exp-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0,"" -4.135,4.14,a-exp-i1,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6,"" -4.41,4.41,a-exp-i1,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0,"" -4.885,4.89,a-exp-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6,"" -4.545,4.55,a-exp-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0,"" -4.285,4.29,a-exp-i1,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0,"" -4.66,4.66,a-exp-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0,"" -4.2,4.2,a-exp-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0,"" -3.925,3.93,a-exp-i1,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0,"" -3.7600000000000002,3.76,a-exp-i1,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4,"" -4.04,4.04,a-exp-i1,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8,"" -4.26,4.26,a-exp-i1,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5,"" -3.75,3.75,a-exp-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8,"" -3.4200000000000004,3.42,a-exp-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1,"" -4.035,4.04,a-exp-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7,"" -3.66,3.66,a-exp-i1,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0,"" -4.535,4.54,a-exp-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0,"" -3.275,3.28,a-exp-i1,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6,"" -3.965,3.97,a-exp-i1,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4,"" -4.255,4.26,a-exp-i1,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5,"" -4.525,4.53,a-exp-i1,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0,"" -4.635,4.64,a-exp-i1,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0,"" -4.175,4.18,a-exp-i1,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0,"" -4.93,4.93,a-exp-i1,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4,"" -4.41,4.41,a-exp-i1,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6,"" -4.005,4.01,a-exp-i1,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9,"" -4.325,4.33,a-exp-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1,"" -4.285,4.29,a-exp-i1,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6,"" -3.15,3.15,a-exp-i1,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4,"" -4.0,4.0,a-exp-i1,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9,"" -3.3649999999999998,3.37,a-exp-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1,"" -3.965,3.97,a-exp-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1,"" -3.175,3.18,a-exp-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1,"" -4.725,4.73,a-exp-i1,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2,"" -2.605,2.61,a-exp-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9,"" -3.975,3.98,a-exp-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7,"" -4.8950000000000005,4.9,a-exp-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9,"" -3.79,3.79,a-exp-i1,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4,"" -3.7,3.7,a-exp-i1,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0,"" -4.2,4.2,a-exp-i1,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0,"" -4.24,4.24,a-exp-i1,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3,"" -4.43,4.43,a-exp-i1,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8,"" -3.7950000000000004,3.8,a-exp-i1,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0,"" -1.19,1.19,a-exp-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3,"" -3.935,3.94,a-exp-i1,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1,"" -2.1149999999999998,2.11,a-exp-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3,"" -4.0,4.0,a-exp-i1,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0,"" -3.4,3.4,a-exp-i1,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1,"" -3.9450000000000003,3.95,a-exp-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5,"" -5.0,5.0,a-exp-i1,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8,"" -5.0,5.0,a-exp-i1,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0,"" -3.47,3.47,a-exp-i1,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1,"" -3.505,3.51,a-exp-i1,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0,"" -3.0949999999999998,3.1,a-exp-i1,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3,"" -4.205,4.21,a-exp-i1,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1,"" -2.225,2.23,a-exp-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7,"" -3.8649999999999998,3.87,a-exp-i1,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1,"" -4.21,4.21,a-exp-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1,"" -4.735,4.74,a-exp-i1,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6,"" -3.09,3.09,a-exp-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1,"" -4.385,4.39,a-exp-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7,"" -4.46,4.46,a-exp-i1,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4,"" -4.83,4.83,a-exp-i1,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6,"" -4.7700000000000005,4.77,a-exp-i1,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0,"" -4.26,4.26,a-exp-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0,"" -4.89,4.89,a-exp-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1,"" -4.5,4.5,a-exp-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0,"" -4.96,4.96,a-exp-i1,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1,"" -5.0,5.0,a-exp-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0,"" -3.9899999999999998,3.99,a-exp-i1,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4,"" -4.36,4.36,a-exp-i1,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0,"" -4.26,4.26,a-exp-i1,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -4.365,4.37,a-exp-i1,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2,"" -4.165,4.17,a-exp-i1,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8,"" -4.57,4.57,a-exp-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0,"" -3.915,3.92,a-exp-i1,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2,"" -4.285,4.29,a-exp-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0,"" -4.535,4.54,a-exp-i1,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7,"" -4.2,4.2,a-exp-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0,"" -4.18,4.18,a-exp-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2,"" -3.75,3.75,a-exp-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7,"" -4.245,4.25,a-exp-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5,"" -4.485,4.49,a-exp-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6,"" -4.615,4.62,a-exp-i1,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8,"" -4.32,4.32,a-exp-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2,"" -4.42,4.42,a-exp-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2,"" -4.465,4.47,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9,"" -4.885,4.89,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7,"" -3.53,3.53,a-exp-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0,"" -4.45,4.45,a-exp-i1,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5,"" -4.515,4.52,a-exp-i1,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3,"" -4.32,4.32,a-exp-i1,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7,"" -4.085,4.09,a-exp-i1,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2,"" -3.935,3.94,a-exp-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0,"" -3.9,3.9,a-exp-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4,"" -3.775,3.78,a-exp-i1,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6,"" -4.675,4.68,a-exp-i1,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2,"" -3.835,3.84,a-exp-i1,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0,"" -4.325,4.33,a-exp-i1,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8,"" -3.975,3.98,a-exp-i1,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9,"" -4.295,4.3,a-exp-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5,"" -4.13,4.13,a-exp-i1,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2,"" -4.32,4.32,a-exp-i1,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6,"" -4.529999999999999,4.53,a-exp-i1,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2,"" -4.36,4.36,a-exp-i1,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4,"" -3.8,3.8,a-exp-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2,"" -3.9,3.9,a-exp-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2,"" -4.17,4.17,a-exp-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4,"" -4.66,4.66,a-exp-i1,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4,"" -4.505,4.51,a-exp-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0,"" -4.76,4.76,a-exp-i1,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0,"" -4.0200000000000005,4.02,a-exp-i1,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6,"" -4.36,4.36,a-exp-i1,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3,"" -1.69,1.69,a-exp-i1,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2,"" -2.69,2.69,a-exp-i1,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5,"" -2.8649999999999998,2.87,a-exp-i1,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4,"" -2.41,2.41,a-exp-i1,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3,"" -2.805,2.81,a-exp-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3,"" -2.5,2.5,a-exp-i1,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3,"" -3.7700000000000005,3.77,a-exp-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1,"" -4.875,4.88,a-exp-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0,"" -4.255,4.26,a-exp-i1,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2,"" -4.82,4.82,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2,"" -4.675,4.68,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0,"" -3.915,3.92,a-exp-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2,"" -3.97,3.97,a-exp-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8,"" -4.325,4.33,a-exp-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7,"" -3.46,3.46,a-exp-i1,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0,"" -2.9699999999999998,2.97,a-exp-i1,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9,"" -2.96,2.96,a-exp-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9,"" -3.745,3.75,a-exp-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3,"" -3.19,3.19,a-exp-i1,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5,"" -3.585,3.59,a-exp-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0,"" -3.285,3.29,a-exp-i1,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0,"" -3.975,3.98,a-exp-i1,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6,"" -1.7149999999999999,1.72,a-exp-i1,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3,"" -3.38,3.38,a-exp-i1,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3,"" -4.12,4.12,a-exp-i1,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9,"" -3.7049999999999996,3.7,a-exp-i1,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3,"" -4.16,4.16,a-exp-i1,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7,"" -3.035,3.04,a-exp-i1,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9,"" -3.055,3.06,a-exp-i1,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9,"" -1.97,1.97,a-exp-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5,"" -3.475,3.48,a-exp-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7,"" -3.755,3.76,a-exp-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3,"" -4.04,4.04,a-exp-i1,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7,"" -3.535,3.54,a-exp-i1,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2,"" -2.3649999999999998,2.36,a-exp-i1,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8,"" -3.435,3.44,a-exp-i1,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7,"" -4.075,4.08,a-exp-i1,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0,"" -3.38,3.38,a-exp-i1,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9,"" -3.44,3.44,a-exp-i1,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8,"" -4.245,4.25,a-exp-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0,"" -3.6149999999999998,3.62,a-exp-i1,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7,"" -4.2,4.2,a-exp-i1,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8,"" -3.3850000000000002,3.39,a-exp-i1,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8,"" -3.37,3.37,a-exp-i1,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0,"" -4.0600000000000005,4.06,a-exp-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3,"" -2.375,2.38,a-exp-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6,"" -4.425,4.43,a-exp-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3,"" -3.41,3.41,a-exp-i1,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8,"" -3.0100000000000002,3.01,a-exp-i1,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4,"" -3.825,3.83,a-exp-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0,"" -4.91,4.91,a-exp-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3,"" -1.61,1.61,a-exp-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1,"" -2.575,2.58,a-exp-i1,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4,"" -4.125,4.13,a-exp-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0,"" -4.15,4.15,a-exp-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9,"" -4.36,4.36,a-exp-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4,"" -1.0050000000000001,1.01,a-exp-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3,"" -5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0,"" -3.25,3.25,a-exp-i1,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2,"" -3.905,3.91,a-exp-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0,"" -2.7649999999999997,2.76,a-exp-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4,"" -2.6100000000000003,2.61,a-exp-i1,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3,"" -3.13,3.13,a-exp-i1,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3,"" -3.75,3.75,a-exp-i1,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9,"" -2.525,2.53,a-exp-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4,"" -2.2800000000000002,2.28,a-exp-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9,"" -4.24,4.24,a-exp-i1,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0,"" -4.175,4.18,a-exp-i1,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8,"" -4.235,4.24,a-exp-i1,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1,"" -2.7800000000000002,2.78,a-exp-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0,"" -4.14,4.14,a-exp-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0,"" -4.825,4.83,a-exp-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0,"" -4.285,4.29,a-exp-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2,"" -4.285,4.29,a-exp-i1,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0,"" -4.195,4.2,a-exp-i1,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8,"" -4.39,4.39,a-exp-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9,"" -3.905,3.91,a-exp-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2,"" -4.625,4.63,a-exp-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7,"" -4.86,4.86,a-exp-i1,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0,"" -4.215,4.22,a-exp-i1,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1,"" -4.39,4.39,a-exp-i1,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0,"" -3.3549999999999995,3.35,a-exp-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8,"" -4.25,4.25,a-exp-i1,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0,"" -4.775,4.78,a-exp-i1,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5,"" -5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7,"" -5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6,"" -3.9799999999999995,3.98,a-exp-i1,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9,"" -3.995,4.0,a-exp-i1,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8,"" -3.94,3.94,a-exp-i1,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9,"" -4.765,4.77,a-exp-i1,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4,"" -4.7,4.7,a-exp-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8,"" -5.0,5.0,a-exp-i1,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0,"" -4.555,4.56,a-exp-i1,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9,"" -4.635,4.64,a-exp-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6,"" -4.335,4.34,a-exp-i1,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9,"" -4.725,4.73,a-exp-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0,"" -4.035,4.04,a-exp-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3,"" -4.385,4.39,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5,"" -4.705,4.71,a-exp-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1,"" -4.415,4.42,a-exp-i1,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7,"" -3.8299999999999996,3.83,a-exp-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7,"" -4.0,4.0,a-exp-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0,"" -4.2700000000000005,4.27,a-exp-i1,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4,"" -3.7299999999999995,3.73,a-exp-i1,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1,"" -4.115,4.12,a-exp-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0,"" -3.825,3.83,a-exp-i1,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1,"" -4.17,4.17,a-exp-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5,"" -4.125,4.13,a-exp-i1,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9,"" -4.07,4.07,a-exp-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9,"" -4.279999999999999,4.28,a-exp-i1,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0,"" -4.17,4.17,a-exp-i1,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3,"" -4.635,4.64,a-exp-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6,"" -4.115,4.12,a-exp-i1,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0,N/A, 98.7, 100.0,"" -4.9350000000000005,4.94,a-exp-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0,"" -4.715,4.72,a-exp-i1,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0,N/A, 94.3, 100.0,"" -4.715,4.72,a-exp-i1,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0,"" -4.525,4.53,a-exp-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3,"" -4.04,4.04,a-exp-i1,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0,"" -4.2,4.2,a-exp-i1,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0,"" -4.335,4.34,a-exp-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5,"" -4.245,4.25,a-exp-i1,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1,"" -3.8899999999999997,3.89,a-exp-i1,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3,"" -4.675,4.68,a-exp-i1,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7,"" -4.495,4.5,a-exp-i1,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5,"" -3.79,3.79,a-exp-i1,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0,"" -4.265,4.27,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6,"" -4.5200000000000005,4.52,a-exp-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6,"" -3.1100000000000003,3.11,a-exp-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2,"" -2.05,2.05,a-exp-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2,"" -4.54,4.54,a-exp-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9,"" -3.995,4.0,a-exp-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5,"" -3.595,3.6,a-exp-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1,"" +4.43,4.43,a-exp-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3, 100.0 +3.975,3.98,a-exp-i1,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9, 94.1 +4.465,4.47,a-exp-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7, 96.3 +3.9899999999999998,3.99,a-exp-i1,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3, 96.3 +4.165,4.17,a-exp-i1,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0, 100.0 +3.335,3.34,a-exp-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1, 90.9 +4.335,4.34,a-exp-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6, 95.1 +4.515,4.52,a-exp-i1,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4, 94.7 +3.13,3.13,a-exp-i1,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4, 97.7 +4.66,4.66,a-exp-i1,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2, 96.0 +3.745,3.75,a-exp-i1,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7, 95.8 +4.575,4.58,a-exp-i1,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5, 94.1 +4.84,4.84,a-exp-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0, 100.0 +4.555,4.56,a-exp-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0, 100.0 +4.7299999999999995,4.73,a-exp-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0, 100.0 +4.220000000000001,4.22,a-exp-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0, 91.4 +4.49,4.49,a-exp-i1,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2, 95.5 +4.215,4.22,a-exp-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0, 100.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5, 100.0 +4.215,4.22,a-exp-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4, 100.0 +4.1,4.1,a-exp-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0, 93.1 +4.3149999999999995,4.31,a-exp-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1, 87.8 +4.29,4.29,a-exp-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8, 86.3 +4.37,4.37,a-exp-i1,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0, 76.9 +0.9199999999999999,1,a-exp-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0, 42.9 +1.25,1.25,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0, 53.8 +1.1099999999999999,1.11,a-exp-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6, 30.8 +2.34,2.34,a-exp-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7, 71.3 +2.995,3.0,a-exp-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2, 61.7 +4.585,4.59,a-exp-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0, 100.0 +3.7350000000000003,3.74,a-exp-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0, 95.0 +3.35,3.35,a-exp-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5, 88.9 +3.05,3.05,a-exp-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2, 70.3 +2.675,2.68,a-exp-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4, 64.0 +3.915,3.92,a-exp-i1,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3, 100.0 +3.6700000000000004,3.67,a-exp-i1,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7, 91.2 +1.925,1.93,a-exp-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6, 88.9 +2.145,2.15,a-exp-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7, 87.5 +4.3100000000000005,4.31,a-exp-i1,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9, 100.0 +3.56,3.56,a-exp-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1, 81.7 +2.69,2.69,a-exp-i1,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1, 100.0 +4.465,4.47,a-exp-i1,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9, 89.2 +5.0,5.0,a-exp-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0, 93.3 +4.005,4.01,a-exp-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7, 100.0 +3.17,3.17,a-exp-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1, 92.3 +3.2399999999999998,3.24,a-exp-i1,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0, 92.1 +3.525,3.53,a-exp-i1,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2, 81.4 +3.585,3.59,a-exp-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3, 85.7 +4.675,4.68,a-exp-i1,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0, 96.8 +4.51,4.51,a-exp-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0, 100.0 +4.285,4.29,a-exp-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0, 100.0 +3.66,3.66,a-exp-i1,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0, 100.0 +4.51,4.51,a-exp-i1,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7, 95.7 +3.2399999999999998,3.24,a-exp-i1,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0, 96.6 +4.485,4.49,a-exp-i1,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0, 98.1 +4.92,4.92,a-exp-i1,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0, 95.8 +4.59,4.59,a-exp-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0, 94.1 +4.35,4.35,a-exp-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3, 98.9 +5.0,5.0,a-exp-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6, 99.1 +4.13,4.13,a-exp-i1,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3, 97.4 +4.8149999999999995,4.81,a-exp-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5, 94.7 +3.995,4.0,a-exp-i1,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0, 98.2 +4.41,4.41,a-exp-i1,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5, 100.0 +4.154999999999999,4.15,a-exp-i1,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9, 100.0 +2.35,2.35,a-exp-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0, 68.0 +3.94,3.94,a-exp-i1,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0, 84.6 +3.37,3.37,a-exp-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8, 94.1 +4.6,4.6,a-exp-i1,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2, 94.7 +5.0,5.0,a-exp-i1,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0, 50.0 +3.475,3.48,a-exp-i1,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9, 94.1 +4.375,4.38,a-exp-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7, 90.4 +4.43,4.43,a-exp-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8, 90.5 +4.3,4.3,a-exp-i1,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0, 93.1 +5.0,5.0,a-exp-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0, 100.0 +4.4399999999999995,4.44,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8, 82.0 +3.775,3.78,a-exp-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2, 86.2 +4.1049999999999995,4.1,a-exp-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1, 95.7 +4.665,4.67,a-exp-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2, 100.0 +5.0,5.0,a-exp-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0, 100.0 +4.135,4.14,a-exp-i1,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6, 100.0 +4.41,4.41,a-exp-i1,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0, 97.4 +4.885,4.89,a-exp-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6, 100.0 +4.545,4.55,a-exp-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0, 93.8 +4.285,4.29,a-exp-i1,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8, 100.0 +4.3549999999999995,4.35,a-exp-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0, 96.3 +4.66,4.66,a-exp-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0, 97.6 +3.7700000000000005,3.77,a-exp-i1,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0, 100.0 +4.2,4.2,a-exp-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0, 100.0 +3.925,3.93,a-exp-i1,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0, 92.9 +3.7600000000000002,3.76,a-exp-i1,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9, 97.1 +3.9450000000000003,3.95,a-exp-i1,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4, 98.1 +4.04,4.04,a-exp-i1,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8, 97.0 +4.26,4.26,a-exp-i1,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5, 96.9 +3.75,3.75,a-exp-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8, 100.0 +3.6100000000000003,3.61,a-exp-i1,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7, 92.1 +4.3149999999999995,4.31,a-exp-i1,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0, 96.4 +3.9799999999999995,3.98,a-exp-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8, 79.0 +3.4200000000000004,3.42,a-exp-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1, 100.0 +4.035,4.04,a-exp-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7, 94.0 +3.66,3.66,a-exp-i1,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0, 97.9 +4.535,4.54,a-exp-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0, 96.7 +3.275,3.28,a-exp-i1,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6, 88.5 +3.965,3.97,a-exp-i1,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4, 89.8 +4.255,4.26,a-exp-i1,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0, 100.0 +4.49,4.49,a-exp-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5, 88.6 +4.525,4.53,a-exp-i1,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0, 100.0 +4.635,4.64,a-exp-i1,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0, 100.0 +4.175,4.18,a-exp-i1,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0, 100.0 +4.93,4.93,a-exp-i1,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0, 92.9 +4.4350000000000005,4.44,a-exp-i1,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4, 94.9 +4.41,4.41,a-exp-i1,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6, 95.8 +4.005,4.01,a-exp-i1,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4, 100.0 +3.9200000000000004,3.92,a-exp-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0, 100.0 +3.5700000000000003,3.57,a-exp-i1,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9, 100.0 +4.325,4.33,a-exp-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3, 97.1 +4.6049999999999995,4.6,a-exp-i1,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1, 93.8 +4.285,4.29,a-exp-i1,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6, 96.9 +3.15,3.15,a-exp-i1,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4, 96.0 +4.0,4.0,a-exp-i1,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0, 100.0 +3.7399999999999998,3.74,a-exp-i1,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9, 92.6 +3.3649999999999998,3.37,a-exp-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1, 93.2 +3.965,3.97,a-exp-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1, 100.0 +3.175,3.18,a-exp-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1, 93.1 +4.725,4.73,a-exp-i1,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2, 81.8 +2.605,2.61,a-exp-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9, 78.5 +3.975,3.98,a-exp-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6, 68.0 +4.3950000000000005,4.4,a-exp-i1,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7, 100.0 +4.8950000000000005,4.9,a-exp-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9, 100.0 +3.79,3.79,a-exp-i1,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4, 92.9 +3.7,3.7,a-exp-i1,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0, 100.0 +4.2,4.2,a-exp-i1,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0, 100.0 +4.24,4.24,a-exp-i1,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3, 98.2 +4.43,4.43,a-exp-i1,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1, 97.2 +4.9350000000000005,4.94,a-exp-i1,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8, 83.3 +3.7950000000000004,3.8,a-exp-i1,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0, 93.3 +3.8850000000000002,3.89,a-exp-i1,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0, 88.9 +1.19,1.19,a-exp-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3, 41.3 +3.935,3.94,a-exp-i1,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1, 100.0 +2.1149999999999998,2.11,a-exp-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3, 94.1 +4.0,4.0,a-exp-i1,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0, 100.0 +3.4,3.4,a-exp-i1,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1, 84.1 +3.9450000000000003,3.95,a-exp-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5, 93.9 +5.0,5.0,a-exp-i1,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8, 87.5 +5.0,5.0,a-exp-i1,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0, 88.9 +3.47,3.47,a-exp-i1,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1, 83.1 +3.505,3.51,a-exp-i1,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0, 77.8 +3.0949999999999998,3.1,a-exp-i1,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3, 90.7 +4.205,4.21,a-exp-i1,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1, 96.0 +2.225,2.23,a-exp-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0, 52.6 +3.8299999999999996,3.83,a-exp-i1,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7, 89.3 +3.8649999999999998,3.87,a-exp-i1,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2, 96.6 +4.1450000000000005,4.15,a-exp-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1, 87.5 +4.21,4.21,a-exp-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1, 96.4 +4.735,4.74,a-exp-i1,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0, 93.0 +4.76,4.76,a-exp-i1,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6, 95.7 +3.09,3.09,a-exp-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1, 100.0 +4.385,4.39,a-exp-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7, 88.9 +4.46,4.46,a-exp-i1,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4, 100.0 +4.83,4.83,a-exp-i1,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6, 96.8 +4.7700000000000005,4.77,a-exp-i1,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0, 95.8 +4.26,4.26,a-exp-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0, 100.0 +4.89,4.89,a-exp-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0, 97.8 +4.5600000000000005,4.56,a-exp-i1,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1, 100.0 +4.5,4.5,a-exp-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0, 100.0 +4.96,4.96,a-exp-i1,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1, 91.1 +5.0,5.0,a-exp-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0, 100.0 +3.9899999999999998,3.99,a-exp-i1,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4, 100.0 +4.36,4.36,a-exp-i1,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0, 100.0 +4.26,4.26,a-exp-i1,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.365,4.37,a-exp-i1,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2, 97.2 +4.165,4.17,a-exp-i1,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8, 90.1 +4.57,4.57,a-exp-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0, 90.2 +3.915,3.92,a-exp-i1,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2, 100.0 +4.285,4.29,a-exp-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0, 100.0 +4.535,4.54,a-exp-i1,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7, 95.7 +4.2,4.2,a-exp-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0, 97.8 +4.18,4.18,a-exp-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2, 96.0 +3.75,3.75,a-exp-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7, 100.0 +4.245,4.25,a-exp-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5, 96.9 +4.485,4.49,a-exp-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6, 93.4 +4.615,4.62,a-exp-i1,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8, 100.0 +4.32,4.32,a-exp-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2, 88.5 +4.42,4.42,a-exp-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2, 94.7 +4.465,4.47,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9, 97.9 +4.885,4.89,a-exp-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7, 97.7 +3.53,3.53,a-exp-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0, 65.9 +4.45,4.45,a-exp-i1,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5, 97.1 +4.515,4.52,a-exp-i1,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3, 97.8 +4.32,4.32,a-exp-i1,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7, 100.0 +4.085,4.09,a-exp-i1,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6, 96.6 +4.654999999999999,4.65,a-exp-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2, 94.3 +3.935,3.94,a-exp-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9, 92.9 +4.029999999999999,4.03,a-exp-i1,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6, 93.5 +4.220000000000001,4.22,a-exp-i1,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0, 94.4 +3.9,3.9,a-exp-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4, 96.4 +3.775,3.78,a-exp-i1,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6, 90.0 +4.675,4.68,a-exp-i1,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2, 58.3 +3.835,3.84,a-exp-i1,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0, 95.0 +4.325,4.33,a-exp-i1,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8, 27.8 +3.975,3.98,a-exp-i1,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9, 93.8 +4.295,4.3,a-exp-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5, 93.8 +4.13,4.13,a-exp-i1,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4, 94.0 +4.5200000000000005,4.52,a-exp-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2, 95.5 +4.32,4.32,a-exp-i1,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2, 100.0 +4.36,4.36,a-exp-i1,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4, 86.4 +3.8,3.8,a-exp-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2, 95.6 +3.9,3.9,a-exp-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2, 72.8 +4.17,4.17,a-exp-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4, 91.3 +4.66,4.66,a-exp-i1,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4, 95.2 +4.505,4.51,a-exp-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0, 100.0 +4.76,4.76,a-exp-i1,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0, 95.2 +4.0200000000000005,4.02,a-exp-i1,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6, 96.9 +4.36,4.36,a-exp-i1,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3, 89.1 +1.69,1.69,a-exp-i1,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2, 83.3 +2.69,2.69,a-exp-i1,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5, 96.7 +2.8649999999999998,2.87,a-exp-i1,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4, 77.8 +2.41,2.41,a-exp-i1,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3, 74.4 +2.805,2.81,a-exp-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3, 82.5 +2.5,2.5,a-exp-i1,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3, 84.4 +3.8299999999999996,3.83,a-exp-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3, 93.7 +3.7700000000000005,3.77,a-exp-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1, 95.7 +4.875,4.88,a-exp-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0, 100.0 +4.255,4.26,a-exp-i1,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0, 99.1 +4.5649999999999995,4.56,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2, 97.1 +4.82,4.82,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2, 98.2 +4.675,4.68,a-exp-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0, 96.8 +3.6700000000000004,3.67,a-exp-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0, 82.4 +3.915,3.92,a-exp-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2, 100.0 +3.97,3.97,a-exp-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0, 97.1 +4.029999999999999,4.03,a-exp-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8, 100.0 +4.325,4.33,a-exp-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6, 96.0 +4.5649999999999995,4.56,a-exp-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7, 91.7 +3.46,3.46,a-exp-i1,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0, 80.0 +2.9699999999999998,2.97,a-exp-i1,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9, 84.2 +2.96,2.96,a-exp-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9, 60.0 +3.745,3.75,a-exp-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3, 76.5 +3.19,3.19,a-exp-i1,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5, 97.4 +3.585,3.59,a-exp-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0, 77.8 +3.285,3.29,a-exp-i1,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0, 86.4 +3.975,3.98,a-exp-i1,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6, 96.9 +1.7149999999999999,1.72,a-exp-i1,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3, 43.8 +3.38,3.38,a-exp-i1,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3, 79.4 +4.12,4.12,a-exp-i1,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0, 95.2 +4.1450000000000005,4.15,a-exp-i1,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5, 92.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0, 0.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0, 0.0 +4.279999999999999,4.28,a-exp-i1,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9, 86.0 +3.7049999999999996,3.7,a-exp-i1,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3, 88.9 +4.16,4.16,a-exp-i1,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7, 93.8 +3.035,3.04,a-exp-i1,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8, 76.6 +3.6350000000000002,3.64,a-exp-i1,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9, 87.5 +3.055,3.06,a-exp-i1,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9, 87.2 +1.97,1.97,a-exp-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5, 56.5 +3.475,3.48,a-exp-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7, 93.8 +3.755,3.76,a-exp-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3, 67.3 +4.04,4.04,a-exp-i1,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7, 73.1 +3.535,3.54,a-exp-i1,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2, 83.9 +2.3649999999999998,2.36,a-exp-i1,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8, 70.8 +3.435,3.44,a-exp-i1,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7, 76.7 +4.075,4.08,a-exp-i1,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6, 92.3 +5.0,5.0,a-exp-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0, 85.7 +3.38,3.38,a-exp-i1,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9, 94.6 +3.44,3.44,a-exp-i1,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8, 95.0 +4.245,4.25,a-exp-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0, 96.3 +3.6149999999999998,3.62,a-exp-i1,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7, 92.0 +4.2,4.2,a-exp-i1,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8, 90.9 +3.3850000000000002,3.39,a-exp-i1,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8, 93.3 +3.37,3.37,a-exp-i1,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0, 86.4 +4.0600000000000005,4.06,a-exp-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3, 88.1 +2.375,2.38,a-exp-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6, 60.5 +4.425,4.43,a-exp-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3, 88.5 +3.41,3.41,a-exp-i1,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9, 72.7 +4.0649999999999995,4.06,a-exp-i1,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5, 96.3 +3.6100000000000003,3.61,a-exp-i1,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3, 89.5 +4.220000000000001,4.22,a-exp-i1,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8, 85.1 +3.0100000000000002,3.01,a-exp-i1,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4, 73.9 +3.825,3.83,a-exp-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2, 87.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0, 75.0 +4.91,4.91,a-exp-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3, 90.9 +1.61,1.61,a-exp-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1, 56.4 +2.575,2.58,a-exp-i1,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4, 85.7 +4.125,4.13,a-exp-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0, 90.9 +4.15,4.15,a-exp-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9, 61.1 +4.36,4.36,a-exp-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4, 100.0 +1.0050000000000001,1.01,a-exp-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3, 40.0 +5.0,5.0,a-exp-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0, 75.0 +3.25,3.25,a-exp-i1,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2, 91.1 +3.905,3.91,a-exp-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0, 90.4 +2.7649999999999997,2.76,a-exp-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4, 85.7 +2.6100000000000003,2.61,a-exp-i1,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7, 83.3 +3.9200000000000004,3.92,a-exp-i1,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3, 92.9 +3.13,3.13,a-exp-i1,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2, 87.0 +3.8049999999999997,3.81,a-exp-i1,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5, 90.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3, 100.0 +3.75,3.75,a-exp-i1,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9, 92.9 +2.525,2.53,a-exp-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4, 58.4 +2.2800000000000002,2.28,a-exp-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9, 40.8 +4.24,4.24,a-exp-i1,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0, 96.0 +4.175,4.18,a-exp-i1,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1, 88.2 +4.1450000000000005,4.15,a-exp-i1,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2, 96.9 +3.8049999999999997,3.81,a-exp-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8, 97.1 +4.235,4.24,a-exp-i1,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1, 95.4 +2.7800000000000002,2.78,a-exp-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0, 88.9 +4.14,4.14,a-exp-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0, 96.3 +4.825,4.83,a-exp-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0, 100.0 +4.3100000000000005,4.31,a-exp-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0, 100.0 +4.285,4.29,a-exp-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5, 97.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2, 100.0 +4.285,4.29,a-exp-i1,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0, 96.6 +4.195,4.2,a-exp-i1,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8, 93.9 +4.39,4.39,a-exp-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9, 97.2 +3.905,3.91,a-exp-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2, 43.7 +4.5649999999999995,4.56,a-exp-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2, 95.3 +4.625,4.63,a-exp-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7, 100.0 +4.86,4.86,a-exp-i1,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0, 100.0 +4.215,4.22,a-exp-i1,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1, 100.0 +4.39,4.39,a-exp-i1,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0, 100.0 +3.3549999999999995,3.35,a-exp-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8, 92.6 +4.25,4.25,a-exp-i1,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0, 96.2 +4.775,4.78,a-exp-i1,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5, 100.0 +5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7, 97.2 +5.0,5.0,a-exp-i1,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6, 100.0 +3.9799999999999995,3.98,a-exp-i1,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9, 92.3 +3.995,4.0,a-exp-i1,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8, 97.4 +3.94,3.94,a-exp-i1,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0, 94.7 +4.49,4.49,a-exp-i1,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9, 96.8 +4.765,4.77,a-exp-i1,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4, 94.0 +4.7,4.7,a-exp-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8, 95.7 +5.0,5.0,a-exp-i1,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0, 95.5 +4.555,4.56,a-exp-i1,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9, 95.7 +4.635,4.64,a-exp-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6, 100.0 +4.335,4.34,a-exp-i1,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9, 95.2 +4.725,4.73,a-exp-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0, 100.0 +4.035,4.04,a-exp-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1, 94.2 +4.2700000000000005,4.27,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2, 93.9 +4.595000000000001,4.6,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3, 94.0 +4.385,4.39,a-exp-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5, 92.9 +4.705,4.71,a-exp-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1, 100.0 +4.415,4.42,a-exp-i1,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7, 100.0 +3.8299999999999996,3.83,a-exp-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7, 100.0 +4.0,4.0,a-exp-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0, 100.0 +4.2700000000000005,4.27,a-exp-i1,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4, 98.0 +3.7299999999999995,3.73,a-exp-i1,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1, 96.7 +4.115,4.12,a-exp-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0, 100.0 +3.825,3.83,a-exp-i1,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1, 97.4 +4.17,4.17,a-exp-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5, 100.0 +4.125,4.13,a-exp-i1,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9, 98.0 +4.07,4.07,a-exp-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0, 100.0 +4.1450000000000005,4.15,a-exp-i1,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9, 95.7 +4.279999999999999,4.28,a-exp-i1,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0, 100.0 +4.17,4.17,a-exp-i1,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3, 97.9 +4.635,4.64,a-exp-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6, 97.8 +4.115,4.12,a-exp-i1,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6, 97.9 +4.9350000000000005,4.94,a-exp-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0, 100.0 +4.715,4.72,a-exp-i1,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0, 100.0 +4.525,4.53,a-exp-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9, 94.4 +4.4350000000000005,4.44,a-exp-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3, 100.0 +4.04,4.04,a-exp-i1,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0, 96.8 +4.2,4.2,a-exp-i1,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0, 100.0 +4.335,4.34,a-exp-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5, 94.1 +4.245,4.25,a-exp-i1,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1, 97.7 +3.8899999999999997,3.89,a-exp-i1,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7, 97.5 +3.8049999999999997,3.81,a-exp-i1,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3, 97.9 +4.675,4.68,a-exp-i1,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7, 93.1 +4.495,4.5,a-exp-i1,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5, 93.9 +3.79,3.79,a-exp-i1,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0, 95.0 +4.265,4.27,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6, 98.4 +4.5200000000000005,4.52,a-exp-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7, 83.8 +4.3549999999999995,4.35,a-exp-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6, 92.5 +3.1100000000000003,3.11,a-exp-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2, 76.3 +2.05,2.05,a-exp-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2, 83.3 +4.54,4.54,a-exp-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9, 92.9 +3.995,4.0,a-exp-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5, 91.4 +3.595,3.6,a-exp-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1, 85.7 0.0,1,a-exp-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0,N/A,"","","" -3.91,3.91,a-exp-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0,"" -4.25,4.25,a-exp-i1,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5,"" -1.7899999999999998,1.79,a-exp-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4,"" -4.805,4.81,a-exp-i1,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0,"" -4.995,5.0,a-exp-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6,"" -4.385,4.39,a-exp-i1,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0,"" -4.470000000000001,4.47,a-exp-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8,"" -4.595000000000001,4.6,a-exp-i1,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0,"" -3.79,3.79,a-exp-i1,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8,"" -4.36,4.36,a-exp-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7,"" -4.75,4.75,a-exp-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0,"" -3.0,3.0,a-exp-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0,"" -4.38,4.38,a-exp-i1,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3,"" -4.63,4.63,a-exp-i1,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0,"" -4.62,4.62,a-exp-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9,"" -4.4399999999999995,4.44,a-exp-i1,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0,"" -3.655,3.66,a-exp-i1,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4,"" -2.8899999999999997,2.89,a-exp-i1,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0,"" -4.46,4.46,a-exp-i1,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3,"" -3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0,"" -4.34,4.34,a-exp-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4,"" -3.94,3.94,a-exp-i1,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0,"" -4.6049999999999995,4.6,a-exp-i1,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4,"" -4.695,4.7,a-exp-i1,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0,"" -4.6,4.6,a-exp-i1,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1,"" -4.5,4.5,a-exp-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6,"" -4.455,4.46,a-exp-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5,"" -4.535,4.54,a-exp-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3,"" -3.78,3.78,a-exp-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0,"" -4.18,4.18,a-exp-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1,"" -4.220000000000001,4.22,a-exp-i1,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8,"" -4.385,4.39,a-exp-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0,"" -2.665,2.67,a-exp-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1,"" -4.045,4.05,a-exp-i1,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3,"" -4.42,4.42,a-exp-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0,"" -4.21,4.21,a-exp-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2,"" -4.735,4.74,a-exp-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3,"" -3.6100000000000003,3.61,a-exp-i1,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1,"" -3.88,3.88,a-exp-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4,"" -4.265,4.27,a-exp-i1,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3,"" -4.14,4.14,a-exp-i1,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1,"" -3.825,3.83,a-exp-i1,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4,"" -3.85,3.85,a-exp-i1,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5,"" -4.25,4.25,a-exp-i1,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6,"" -4.035,4.04,a-exp-i1,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3,"" -4.425,4.43,a-exp-i1,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0,"" -4.485,4.49,a-exp-i1,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0,"" -4.82,4.82,a-exp-i1,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4,"" -2.0,2.0,a-exp-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0,"" -4.7299999999999995,4.73,a-exp-i1,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5,"" -5.0,5.0,a-exp-i1,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8,"" -4.485,4.49,a-exp-i1,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4,"" -4.255,4.26,a-exp-i1,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0,"" -3.8950000000000005,3.9,a-exp-i1,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9,"" -4.3549999999999995,4.35,a-exp-i1,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0,"" -4.45,4.45,a-exp-i1,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0,"" -4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0,"" -4.71,4.71,a-exp-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6,"" -4.1899999999999995,4.19,a-exp-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0,"" -4.49,4.49,a-exp-i1,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5,"" -4.5649999999999995,4.56,a-exp-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9,"" -3.59,3.59,a-exp-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2,"" -4.305,4.31,a-exp-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2,"" -4.085,4.09,a-exp-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7,"" -4.785,4.79,a-exp-i1,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0,"" -4.0,4.0,a-exp-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6,"" -3.5149999999999997,3.51,a-exp-i1,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0,"" -4.765,4.77,a-exp-i1,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8,"" -4.825,4.83,a-exp-i1,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1,"" -4.8549999999999995,4.85,a-exp-i1,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0,"" -5.0,5.0,a-exp-i1,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7,"" -4.275,4.28,a-exp-i1,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5,"" -4.3100000000000005,4.31,a-exp-i1,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0,"" -4.865,4.87,a-exp-i1,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7,"" -4.6,4.6,a-exp-i1,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3,"" -5.0,5.0,a-exp-i1,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1,"" -4.25,4.25,a-exp-i1,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0,"" -4.415,4.42,a-exp-i1,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6,"" -4.475,4.48,a-exp-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5,"" -4.720000000000001,4.72,a-exp-i1,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6,"" -4.24,4.24,a-exp-i1,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8,"" -4.38,4.38,a-exp-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0,"" -4.1850000000000005,4.19,a-exp-i1,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6,"" -4.235,4.24,a-exp-i1,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0,"" -3.5450000000000004,3.55,a-exp-i1,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0,"" -4.365,4.37,a-exp-i1,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0,"" -3.935,3.94,a-exp-i1,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1,"" -4.2299999999999995,4.23,a-exp-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4,"" -4.255,4.26,a-exp-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4,"" -2.7350000000000003,2.74,a-exp-i1,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9,"" -4.635,4.64,a-exp-i1,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0,"" -4.6450000000000005,4.65,a-exp-i1,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0,"" -4.385,4.39,a-exp-i1,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0,"" -4.245,4.25,a-exp-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0,"" -4.09,4.09,a-exp-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0,"" -4.8950000000000005,4.9,a-exp-i1,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9,"" -4.58,4.58,a-exp-i1,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8,"" -4.63,4.63,a-exp-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6,"" -4.1049999999999995,4.1,a-exp-i1,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0,"" -4.1,4.1,a-exp-i1,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9,"" -4.1450000000000005,4.15,a-exp-i1,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0,"" -4.585,4.59,a-exp-i1,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0,"" -4.07,4.07,a-exp-i1,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8,"" -4.505,4.51,a-exp-i1,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2,"" -4.01,4.01,a-exp-i1,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0,"" -4.43,4.43,a-exp-i1,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0,"" -4.11,4.11,a-exp-i1,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3,"" -5.0,5.0,a-exp-i1,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1,"" -3.675,3.68,a-exp-i1,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8,"" -3.8850000000000002,3.89,a-exp-i1,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2,"" -5.0,5.0,a-exp-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -4.67,4.67,a-exp-i1,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0,"" -4.35,4.35,a-exp-i1,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0,"" -3.9200000000000004,3.92,a-exp-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0,"" -3.79,3.79,a-exp-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0,"" -3.53,3.53,a-exp-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7,"" -4.755,4.76,a-exp-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4,"" -3.88,3.88,a-exp-i1,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0,"" -4.505,4.51,a-exp-i1,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1,"" -3.505,3.51,a-exp-i1,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0,"" -4.215,4.22,a-exp-i1,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0,"" -3.31,3.31,a-exp-i1,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0,"" -3.9850000000000003,3.99,a-exp-i1,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0,"" -4.085,4.09,a-exp-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8,"" -3.97,3.97,a-exp-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0,"" -3.875,3.88,a-exp-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0,"" -4.24,4.24,a-exp-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0,"" -3.715,3.72,a-exp-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3,"" -4.04,4.04,a-exp-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7,"" -4.35,4.35,a-exp-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6,"" -4.34,4.34,a-exp-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4,"" -2.755,2.76,a-exp-i1,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0,"" -4.61,4.61,a-exp-i1,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0,"" -3.71,3.71,a-exp-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0,"" -4.4350000000000005,4.44,a-exp-i1,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4,"" -4.0649999999999995,4.06,a-exp-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6,"" -4.75,4.75,a-exp-i1,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0,"" -3.94,3.94,a-exp-i1,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5,"" -5.0,5.0,a-exp-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0,"" -3.915,3.92,a-exp-i1,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0,"" -4.525,4.53,a-exp-i1,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5,"" -3.6,3.6,a-exp-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0,"" -5.0,5.0,a-exp-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0,"" -4.8,4.8,a-exp-i1,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0,"" -4.45,4.45,a-exp-i1,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0,"" -4.295,4.3,a-exp-i1,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0,"" -4.0,4.0,a-exp-i1,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1,"" -4.14,4.14,a-exp-i1,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7,"" -4.029999999999999,4.03,a-exp-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5,"" -4.5600000000000005,4.56,a-exp-i1,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7,"" -3.3600000000000003,3.36,a-exp-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0,"" -3.96,3.96,a-exp-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2,"" -4.15,4.15,a-exp-i1,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8,"" -3.3049999999999997,3.31,a-exp-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4,"" -4.13,4.13,a-exp-i1,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6,"" -4.14,4.14,a-exp-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1,"" -3.165,3.17,a-exp-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9,"" -4.795,4.8,a-exp-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0,"" -4.465,4.47,a-exp-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4,"" -4.4,4.4,a-exp-i1,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0,"" -4.015,4.02,a-exp-i1,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3,"" -4.3950000000000005,4.4,a-exp-i1,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0,"" -4.42,4.42,a-exp-i1,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0,"" -4.46,4.46,a-exp-i1,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6,"" -4.115,4.12,a-exp-i1,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6,"" -4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7,"" -4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4,"" -3.815,3.82,a-exp-i1,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8,"" -3.46,3.46,a-exp-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2,"" -3.88,3.88,a-exp-i1,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2,"" -3.4299999999999997,3.43,a-exp-i1,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5,"" -4.015,4.02,a-exp-i1,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3,"" -3.3899999999999997,3.39,a-exp-i1,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6,"" -4.545,4.55,a-exp-i1,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3,"" -4.36,4.36,a-exp-i1,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2,"" -2.8600000000000003,2.86,a-exp-i1,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0,"" -4.32,4.32,a-exp-i1,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3,"" -2.7649999999999997,2.76,a-exp-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0,"" -4.125,4.13,a-exp-i1,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7,"" -3.2350000000000003,3.24,a-exp-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2,"" -4.15,4.15,a-exp-i1,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0,"" -2.825,2.83,a-exp-i1,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0,"" -4.665,4.67,a-exp-i1,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0,"" -3.685,3.69,a-exp-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5,"" -2.295,2.3,a-exp-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1,"" -4.195,4.2,a-exp-i1,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5,"" -3.9,3.9,a-exp-i1,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2,"" -3.5799999999999996,3.58,a-exp-i1,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0,"" -4.025,4.03,a-exp-i1,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2,"" -4.33,4.33,a-exp-i1,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3,"" -3.725,3.73,a-exp-i1,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0,"" -3.56,3.56,a-exp-i1,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7,"" -4.345000000000001,4.35,a-exp-i1,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9,"" -4.654999999999999,4.65,a-exp-i1,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0,"" -3.9549999999999996,3.95,a-exp-i1,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1,"" -3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0,"" -3.845,3.85,a-exp-i1,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7,"" -3.2950000000000004,3.3,a-exp-i1,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4,"" -4.04,4.04,a-exp-i1,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0,"" -3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7,"" -4.165,4.17,a-exp-i1,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9,"" -3.2700000000000005,3.27,a-exp-i1,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7,"" -4.195,4.2,a-exp-i1,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5,"" -4.4799999999999995,4.48,a-exp-i1,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3,"" -2.77,2.77,a-exp-i1,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0,"" -3.8049999999999997,3.81,a-exp-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3,"" -3.6700000000000004,3.67,a-exp-i1,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7,"" -4.3149999999999995,4.31,a-exp-i1,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0,"" -3.4799999999999995,3.48,a-exp-i1,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0,"" -4.075,4.08,a-exp-i1,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0,"" -4.404999999999999,4.4,a-exp-i1,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3,"" -NA,NA,a-exp-i3,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0,"" -NA,NA,a-exp-i3,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3,"" -NA,NA,a-exp-i3,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9,"" -NA,NA,a-exp-i3,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4,"" -NA,NA,a-exp-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9,"" -NA,NA,a-exp-i3,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3,"" -NA,NA,a-exp-i3,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9,"" -NA,NA,a-exp-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9,"" -NA,NA,a-exp-i3,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9,"" -NA,NA,a-exp-i3,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4,"" -NA,NA,a-exp-i3,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9,"" -NA,NA,a-exp-i3,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6,"" -NA,NA,a-exp-i3,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2,"" -NA,NA,a-exp-i3,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2,"" -NA,NA,a-exp-i3,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3,"" -NA,NA,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6,"" -NA,NA,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1,"" -NA,NA,a-exp-i3,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8,"" -NA,NA,a-exp-i3,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9,"" -NA,NA,a-exp-i3,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2,"" -NA,NA,a-exp-i3,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0,"" -NA,NA,a-exp-i3,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3,"" -NA,NA,a-exp-i3,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7,"" -NA,NA,a-exp-i3,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5,"" -NA,NA,a-exp-i3,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8,"" -NA,NA,a-exp-i3,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5,"" -NA,NA,a-exp-i3,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5,"" -NA,NA,a-exp-i3,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4,"" -NA,NA,a-exp-i3,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2,"" -NA,NA,a-exp-i3,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9,"" -NA,NA,a-exp-i3,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5,"" -NA,NA,a-exp-i3,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3,"" -NA,NA,a-exp-i3,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2,"" -NA,NA,a-exp-i3,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0,"" -NA,NA,a-exp-i3,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9,"" -NA,NA,a-exp-i3,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1,"" -NA,NA,a-exp-i3,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7,"" -NA,NA,a-exp-i3,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4,"" -NA,NA,a-exp-i3,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2,"" -NA,NA,a-exp-i3,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0,"" -NA,NA,a-exp-i3,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7,"" -NA,NA,a-exp-i3,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2,"" -NA,NA,a-exp-i3,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0,"" -NA,NA,a-exp-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4,"" -NA,NA,a-exp-i3,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9,"" -NA,NA,a-exp-i3,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8,"" -NA,NA,a-exp-i3,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9,"" -NA,NA,a-exp-i3,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0,"" -NA,NA,a-exp-i3,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9,"" -NA,NA,a-exp-i3,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2,"" -NA,NA,a-exp-i3,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3,"" -NA,NA,a-exp-i3,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9,"" -NA,NA,a-exp-i3,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0,"" -NA,NA,a-exp-i3,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2,"" -NA,NA,a-exp-i3,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5,"" -NA,NA,a-exp-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8,"" -NA,NA,a-exp-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3,"" -NA,NA,a-exp-i3,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4,"" -NA,NA,a-exp-i3,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0,"" -NA,NA,a-exp-i3,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4,"" -NA,NA,a-exp-i3,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7,"" -NA,NA,a-exp-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6,"" -NA,NA,a-exp-i3,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7,"" -NA,NA,a-exp-i3,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8,"" -NA,NA,a-exp-i3,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0,"" -NA,NA,a-exp-i3,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9,"" -NA,NA,a-exp-i3,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5,"" -NA,NA,a-exp-i3,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2,"" -NA,NA,a-exp-i3,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2,"" -NA,NA,a-exp-i3,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6,"" -NA,NA,a-exp-i3,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9,"" -NA,NA,a-exp-i3,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2,"" -NA,NA,a-exp-i3,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0,"" -NA,NA,a-exp-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7,"" -NA,NA,a-exp-i3,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4,"" +3.91,3.91,a-exp-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0, 95.7 +4.25,4.25,a-exp-i1,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4, 96.4 +4.595000000000001,4.6,a-exp-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5, 97.5 +1.7899999999999998,1.79,a-exp-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4, 44.4 +4.805,4.81,a-exp-i1,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0, 100.0 +4.995,5.0,a-exp-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9, 100.0 +4.654999999999999,4.65,a-exp-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6, 96.8 +4.385,4.39,a-exp-i1,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0, 100.0 +4.470000000000001,4.47,a-exp-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8, 100.0 +4.595000000000001,4.6,a-exp-i1,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0, 92.3 +4.529999999999999,4.53,a-exp-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0, 100.0 +3.79,3.79,a-exp-i1,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8, 100.0 +4.36,4.36,a-exp-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0, 100.0 +4.385,4.39,a-exp-i1,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0, 97.1 +4.3149999999999995,4.31,a-exp-i1,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7, 100.0 +4.75,4.75,a-exp-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2, 97.9 +4.404999999999999,4.4,a-exp-i1,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0, 100.0 +3.0,3.0,a-exp-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0, 100.0 +4.38,4.38,a-exp-i1,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3, 96.8 +4.63,4.63,a-exp-i1,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0, 100.0 +4.62,4.62,a-exp-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9, 98.9 +4.4399999999999995,4.44,a-exp-i1,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0, 100.0 +3.655,3.66,a-exp-i1,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4, 97.6 +2.8899999999999997,2.89,a-exp-i1,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0, 92.3 +4.46,4.46,a-exp-i1,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0, 97.4 +3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3, 100.0 +3.5700000000000003,3.57,a-exp-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0, 100.0 +4.34,4.34,a-exp-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4, 97.5 +3.94,3.94,a-exp-i1,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0, 97.0 +4.6049999999999995,4.6,a-exp-i1,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4, 97.4 +4.695,4.7,a-exp-i1,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0, 97.0 +4.6,4.6,a-exp-i1,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1, 97.0 +4.5,4.5,a-exp-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6, 98.1 +4.455,4.46,a-exp-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5, 96.0 +4.535,4.54,a-exp-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3, 97.8 +3.78,3.78,a-exp-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0, 96.9 +4.18,4.18,a-exp-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1, 97.4 +4.220000000000001,4.22,a-exp-i1,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8, 94.8 +4.385,4.39,a-exp-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0, 97.7 +2.665,2.67,a-exp-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1, 95.8 +4.045,4.05,a-exp-i1,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3, 91.0 +4.42,4.42,a-exp-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0, 97.8 +4.21,4.21,a-exp-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2, 100.0 +4.735,4.74,a-exp-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3, 93.5 +3.6100000000000003,3.61,a-exp-i1,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1, 100.0 +3.88,3.88,a-exp-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4, 87.5 +4.265,4.27,a-exp-i1,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3, 97.4 +4.14,4.14,a-exp-i1,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1, 100.0 +3.825,3.83,a-exp-i1,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4, 90.5 +3.85,3.85,a-exp-i1,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5, 97.7 +4.25,4.25,a-exp-i1,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6, 98.8 +4.035,4.04,a-exp-i1,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0, 95.7 +4.465,4.47,a-exp-i1,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8, 88.6 +4.345000000000001,4.35,a-exp-i1,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3, 95.2 +4.425,4.43,a-exp-i1,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0, 96.1 +4.485,4.49,a-exp-i1,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0, 100.0 +4.82,4.82,a-exp-i1,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4, 100.0 +2.0,2.0,a-exp-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0, 100.0 +4.7299999999999995,4.73,a-exp-i1,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5, 95.5 +5.0,5.0,a-exp-i1,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8, 96.9 +4.485,4.49,a-exp-i1,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4, 95.2 +4.255,4.26,a-exp-i1,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0, 100.0 +3.8950000000000005,3.9,a-exp-i1,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8, 94.2 +4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9, 95.5 +4.3549999999999995,4.35,a-exp-i1,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0, 97.1 +4.45,4.45,a-exp-i1,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0, 100.0 +4.529999999999999,4.53,a-exp-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0, 100.0 +4.71,4.71,a-exp-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0, 100.0 +5.0,5.0,a-exp-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6, 100.0 +4.1899999999999995,4.19,a-exp-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0, 100.0 +4.49,4.49,a-exp-i1,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5, 96.3 +4.5649999999999995,4.56,a-exp-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9, 95.1 +3.59,3.59,a-exp-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2, 100.0 +4.305,4.31,a-exp-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2, 100.0 +4.085,4.09,a-exp-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7, 96.1 +4.785,4.79,a-exp-i1,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0, 100.0 +4.0,4.0,a-exp-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6, 100.0 +3.5149999999999997,3.51,a-exp-i1,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0, 94.4 +4.765,4.77,a-exp-i1,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8, 95.5 +4.825,4.83,a-exp-i1,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1, 97.6 +4.8549999999999995,4.85,a-exp-i1,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0, 96.6 +5.0,5.0,a-exp-i1,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7, 95.8 +4.275,4.28,a-exp-i1,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5, 98.5 +4.3100000000000005,4.31,a-exp-i1,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9, 96.4 +4.3950000000000005,4.4,a-exp-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0, 100.0 +4.865,4.87,a-exp-i1,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7, 95.2 +4.6,4.6,a-exp-i1,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3, 97.4 +5.0,5.0,a-exp-i1,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7, 100.0 +4.3149999999999995,4.31,a-exp-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1, 93.0 +4.25,4.25,a-exp-i1,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0, 97.4 +4.415,4.42,a-exp-i1,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6, 100.0 +4.475,4.48,a-exp-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5, 96.9 +4.720000000000001,4.72,a-exp-i1,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6, 95.4 +4.24,4.24,a-exp-i1,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8, 95.0 +4.38,4.38,a-exp-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0, 100.0 +4.1850000000000005,4.19,a-exp-i1,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6, 100.0 +4.235,4.24,a-exp-i1,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0, 100.0 +4.465,4.47,a-exp-i1,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0, 96.8 +3.5450000000000004,3.55,a-exp-i1,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0, 92.9 +4.365,4.37,a-exp-i1,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0, 100.0 +3.935,3.94,a-exp-i1,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1, 91.7 +4.2299999999999995,4.23,a-exp-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5, 90.0 +4.345000000000001,4.35,a-exp-i1,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4, 91.3 +4.255,4.26,a-exp-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4, 87.1 +2.7350000000000003,2.74,a-exp-i1,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9, 90.0 +4.635,4.64,a-exp-i1,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0, 92.3 +4.6450000000000005,4.65,a-exp-i1,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0, 89.8 +4.385,4.39,a-exp-i1,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0, 86.7 +4.5600000000000005,4.56,a-exp-i1,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0, 90.6 +4.245,4.25,a-exp-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0, 86.5 +4.35,4.35,a-exp-i1,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0, 90.9 +4.09,4.09,a-exp-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0, 93.5 +4.8950000000000005,4.9,a-exp-i1,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9, 96.0 +4.58,4.58,a-exp-i1,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8, 98.3 +4.63,4.63,a-exp-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6, 94.4 +4.1049999999999995,4.1,a-exp-i1,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0, 100.0 +4.295,4.3,a-exp-i1,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0, 95.8 +4.1,4.1,a-exp-i1,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9, 92.2 +4.1450000000000005,4.15,a-exp-i1,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2, 93.3 +4.0649999999999995,4.06,a-exp-i1,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0, 96.7 +4.585,4.59,a-exp-i1,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0, 91.7 +4.07,4.07,a-exp-i1,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8, 100.0 +4.505,4.51,a-exp-i1,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2, 91.8 +4.01,4.01,a-exp-i1,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0, 100.0 +4.43,4.43,a-exp-i1,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0, 100.0 +4.11,4.11,a-exp-i1,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3, 96.5 +5.0,5.0,a-exp-i1,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1, 100.0 +3.675,3.68,a-exp-i1,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8, 100.0 +3.8850000000000002,3.89,a-exp-i1,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2, 92.0 +5.0,5.0,a-exp-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.67,4.67,a-exp-i1,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0, 96.0 +4.35,4.35,a-exp-i1,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0, 96.2 +3.9200000000000004,3.92,a-exp-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0, 96.0 +3.79,3.79,a-exp-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0, 92.3 +3.53,3.53,a-exp-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7, 96.2 +4.755,4.76,a-exp-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4, 99.1 +3.88,3.88,a-exp-i1,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0, 95.5 +4.505,4.51,a-exp-i1,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5, 100.0 +4.4350000000000005,4.44,a-exp-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1, 96.7 +3.505,3.51,a-exp-i1,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0, 100.0 +4.215,4.22,a-exp-i1,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0, 98.7 +3.31,3.31,a-exp-i1,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0, 93.3 +3.9850000000000003,3.99,a-exp-i1,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0, 94.4 +4.085,4.09,a-exp-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8, 100.0 +3.97,3.97,a-exp-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0, 100.0 +3.875,3.88,a-exp-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0, 100.0 +4.24,4.24,a-exp-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0, 100.0 +3.715,3.72,a-exp-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3, 97.4 +4.04,4.04,a-exp-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7, 95.0 +4.35,4.35,a-exp-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6, 96.2 +4.34,4.34,a-exp-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4, 94.4 +2.755,2.76,a-exp-i1,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0, 85.7 +4.61,4.61,a-exp-i1,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0, 95.8 +3.71,3.71,a-exp-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0, 92.5 +4.345000000000001,4.35,a-exp-i1,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0, 94.1 +4.4350000000000005,4.44,a-exp-i1,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4, 95.0 +4.0649999999999995,4.06,a-exp-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6, 95.0 +4.75,4.75,a-exp-i1,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0, 95.2 +3.94,3.94,a-exp-i1,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5, 62.5 +5.0,5.0,a-exp-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0, 100.0 +3.915,3.92,a-exp-i1,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0, 96.2 +4.525,4.53,a-exp-i1,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5, 95.7 +3.6,3.6,a-exp-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0, 95.5 +5.0,5.0,a-exp-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0, 100.0 +4.8,4.8,a-exp-i1,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0, 100.0 +4.45,4.45,a-exp-i1,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0, 100.0 +4.295,4.3,a-exp-i1,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0, 100.0 +4.0,4.0,a-exp-i1,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1, 100.0 +4.14,4.14,a-exp-i1,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7, 100.0 +4.029999999999999,4.03,a-exp-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5, 100.0 +4.5600000000000005,4.56,a-exp-i1,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7, 94.5 +3.3600000000000003,3.36,a-exp-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0, 97.4 +3.96,3.96,a-exp-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2, 95.3 +4.15,4.15,a-exp-i1,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8, 97.7 +3.3049999999999997,3.31,a-exp-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4, 82.5 +4.13,4.13,a-exp-i1,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6, 97.4 +4.14,4.14,a-exp-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1, 96.4 +3.165,3.17,a-exp-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9, 100.0 +4.795,4.8,a-exp-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0, 100.0 +4.465,4.47,a-exp-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4, 91.8 +4.4,4.4,a-exp-i1,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0, 90.5 +4.015,4.02,a-exp-i1,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3, 96.9 +4.3950000000000005,4.4,a-exp-i1,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0, 86.4 +4.42,4.42,a-exp-i1,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0, 96.8 +4.46,4.46,a-exp-i1,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6, 96.5 +4.115,4.12,a-exp-i1,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6, 100.0 +4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3, 90.3 +3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7, 89.2 +4.05,4.05,a-exp-i1,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4, 100.0 +3.815,3.82,a-exp-i1,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8, 96.8 +3.46,3.46,a-exp-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2, 91.9 +3.88,3.88,a-exp-i1,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2, 90.0 +3.4299999999999997,3.43,a-exp-i1,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5, 97.5 +4.015,4.02,a-exp-i1,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3, 86.0 +3.3899999999999997,3.39,a-exp-i1,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6, 96.3 +4.545,4.55,a-exp-i1,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3, 97.1 +4.36,4.36,a-exp-i1,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2, 90.4 +2.8600000000000003,2.86,a-exp-i1,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0, 100.0 +4.32,4.32,a-exp-i1,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7, 100.0 +3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3, 94.0 +2.7649999999999997,2.76,a-exp-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0, 100.0 +4.125,4.13,a-exp-i1,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7, 93.6 +3.2350000000000003,3.24,a-exp-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2, 97.4 +4.15,4.15,a-exp-i1,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0, 89.7 +2.825,2.83,a-exp-i1,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0, 21.7 +4.665,4.67,a-exp-i1,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0, 95.7 +3.685,3.69,a-exp-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5, 100.0 +2.295,2.3,a-exp-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1, 87.0 +4.195,4.2,a-exp-i1,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5, 100.0 +3.9,3.9,a-exp-i1,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2, 100.0 +3.5799999999999996,3.58,a-exp-i1,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0, 96.2 +4.025,4.03,a-exp-i1,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2, 100.0 +4.33,4.33,a-exp-i1,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3, 95.7 +3.725,3.73,a-exp-i1,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0, 91.8 +3.56,3.56,a-exp-i1,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7, 91.7 +4.345000000000001,4.35,a-exp-i1,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9, 98.3 +4.654999999999999,4.65,a-exp-i1,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0, 97.0 +3.9549999999999996,3.95,a-exp-i1,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1, 93.3 +3.7399999999999998,3.74,a-exp-i1,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0, 87.4 +3.845,3.85,a-exp-i1,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7, 95.1 +3.2950000000000004,3.3,a-exp-i1,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4, 100.0 +4.04,4.04,a-exp-i1,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0, 96.2 +3.6350000000000002,3.64,a-exp-i1,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7, 96.9 +4.165,4.17,a-exp-i1,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9, 90.9 +3.2700000000000005,3.27,a-exp-i1,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7, 95.0 +4.195,4.2,a-exp-i1,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5, 100.0 +4.4799999999999995,4.48,a-exp-i1,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3, 96.4 +2.77,2.77,a-exp-i1,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0, 100.0 +3.8049999999999997,3.81,a-exp-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3, 96.2 +3.6700000000000004,3.67,a-exp-i1,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7, 91.8 +4.3149999999999995,4.31,a-exp-i1,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0, 92.8 +3.4799999999999995,3.48,a-exp-i1,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0, 100.0 +4.075,4.08,a-exp-i1,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0, 100.0 +4.404999999999999,4.4,a-exp-i1,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0, 100.0 +0.0,1,a-exp-i1,2022-23,Tewksbury - Center Elementary School,02950030, 0.0, 0.0,N/A,"","","" +3.8105263157894735,3.81,a-exp-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 119.6, 99.2, 11.9 to 1, 81.5, 88.3, 90.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Abington - Abington Early Education Program,00010001, 4.0, 100.0, 21.8 to 1, 100.0, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Abington - Abington High,00010505, 42.8, 95.3, 12.8 to 1, 78.1, 86.0, 95.8 +3.8821052631578947,3.88,a-exp-i3,2022-23,Abington - Abington Middle School,00010405, 46.8, 94.9, 13.8 to 1, 77.8, 89.3, 92.2 +4.109473684210526,4.11,a-exp-i3,2022-23,Abington - Beaver Brook Elementary,00010020, 37.1, 100.0, 14.0 to 1, 89.2, 91.9, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Abington - Woodsdale Elementary School,00010015, 23.2, 100.0, 14.4 to 1, 78.4, 91.4, 100.0 +1.991578947368421,1.99,a-exp-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 49.6, 65.6, 9.4 to 1, 37.3, 95.6, 47.3 +4.147368421052631,4.15,a-exp-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 123.4, 100.0, 13.6 to 1, 92.6, 96.8, 98.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 37.0, 100.0, 13.7 to 1, 86.5, 100.0, 100.0 +4.08,4.08,a-exp-i3,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 29.0, 100.0, 13.0 to 1, 86.2, 96.5, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 8.0, 100.0, 13.4 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Luther Conant School,06000030, 30.0, 100.0, 13.6 to 1, 86.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 34.5, 100.0, 12.9 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Merriam School,06000010, 32.5, 100.0, 13.3 to 1, 75.4, 93.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 28.4, 100.0, 12.3 to 1, 89.4, 100.0, 100.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 72.6, 100.0, 11.4 to 1, 84.8, 95.9, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Acushnet - Acushnet Elementary School,00030025, 43.0, 100.0, 12.9 to 1, 83.7, 95.3, 100.0 +3.7010526315789476,3.7,a-exp-i3,2022-23,Acushnet - Albert F Ford Middle School,00030305, 33.0, 100.0, 12.3 to 1, 72.7, 87.9, 87.9 +3.486315789473684,3.49,a-exp-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 80.5, 92.3, 12.0 to 1, 80.8, 78.9, 82.8 +3.789473684210526,3.79,a-exp-i3,2022-23,Agawam - Agawam Early Childhood Center,00050003, 8.0, 100.0, 18.5 to 1, 100.0, 100.0, 90.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Agawam - Agawam High,00050505, 95.1, 100.0, 11.1 to 1, 92.6, 97.9, 96.0 +3.890526315789474,3.89,a-exp-i3,2022-23,Agawam - Agawam Junior High,00050405, 60.5, 100.0, 8.6 to 1, 91.6, 93.4, 92.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - Benjamin J Phelps,00050020, 17.5, 100.0, 17.6 to 1, 94.3, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Agawam - Clifford M Granger,00050010, 19.6, 100.0, 17.1 to 1, 64.3, 89.8, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - James Clark School,00050030, 16.4, 100.0, 18.7 to 1, 69.5, 93.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - Roberta G. Doering School,00050303, 41.0, 100.0, 12.5 to 1, 95.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Agawam - Robinson Park,00050025, 17.5, 100.0, 15.8 to 1, 88.6, 100.0, 100.0 +1.2042105263157896,1.2,a-exp-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 79.5, 51.3, 13.1 to 1, 31.4, 95.0, 28.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Amesbury - Amesbury Elementary,00070005, 26.9, 100.0, 12.2 to 1, 85.8, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Amesbury - Amesbury High,00070505, 48.0, 100.0, 9.4 to 1, 92.2, 93.3, 96.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Amesbury - Amesbury Innovation High School,00070515, 6.6, 99.8, 6.8 to 1, 69.5, 81.0, 75.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Amesbury - Amesbury Middle,00070013, 54.3, 100.0, 10.8 to 1, 90.8, 93.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 32.7, 100.0, 11.3 to 1, 87.7, 100.0, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Amherst - Crocker Farm Elementary,00080009, 37.2, 100.0, 9.3 to 1, 92.0, 95.2, 97.7 +3.8947368421052633,3.89,a-exp-i3,2022-23,Amherst - Fort River Elementary,00080020, 36.4, 91.7, 10.4 to 1, 80.7, 97.2, 92.5 +4.105263157894737,4.11,a-exp-i3,2022-23,Amherst - Wildwood Elementary,00080050, 36.8, 97.3, 8.9 to 1, 89.1, 97.3, 97.5 +3.823157894736842,3.82,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 73.7, 93.0, 11.6 to 1, 85.1, 94.6, 90.8 +3.1578947368421053,3.16,a-exp-i3,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 46.4, 89.3, 8.0 to 1, 75.2, 93.1, 75.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Andover - Andover High,00090505, 128.8, 99.2, 13.2 to 1, 87.6, 93.8, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Andover West Middle,00090310, 47.9, 100.0, 10.8 to 1, 92.0, 97.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Bancroft Elementary,00090003, 44.8, 100.0, 12.1 to 1, 85.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Doherty Middle,00090305, 45.8, 100.0, 10.1 to 1, 91.7, 100.0, 100.0 +4.08,4.08,a-exp-i3,2022-23,Andover - Henry C Sanborn Elementary,00090010, 28.0, 100.0, 11.8 to 1, 92.9, 100.0, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - High Plain Elementary,00090004, 45.6, 100.0, 11.6 to 1, 85.8, 98.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Shawsheen School,00090005, 8.0, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - South Elementary,00090020, 34.6, 100.0, 13.1 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - West Elementary,00090025, 50.1, 100.0, 11.1 to 1, 81.6, 98.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Andover - Wood Hill Middle School,00090350, 37.5, 100.0, 9.0 to 1, 97.2, 97.3, 100.0 +2.2357894736842105,2.24,a-exp-i3,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 30.7, 68.9, 18.0 to 1, 47.0, 74.7, 53.1 +3.983157894736842,3.98,a-exp-i3,2022-23,Arlington - Arlington High,00100505, 115.9, 99.9, 13.2 to 1, 82.7, 93.5, 94.6 +4.1010526315789475,4.1,a-exp-i3,2022-23,Arlington - Brackett,00100010, 33.6, 99.0, 12.6 to 1, 83.3, 100.0, 97.4 +4.109473684210526,4.11,a-exp-i3,2022-23,Arlington - Cyrus E Dallin,00100025, 34.7, 100.0, 12.0 to 1, 79.3, 92.8, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Arlington - Gibbs School,00100305, 41.0, 100.0, 12.5 to 1, 88.3, 89.8, 100.0 +4.00421052631579,4.0,a-exp-i3,2022-23,Arlington - Hardy,00100030, 34.6, 99.0, 11.5 to 1, 81.1, 93.5, 95.1 +4.105263157894737,4.11,a-exp-i3,2022-23,Arlington - John A Bishop,00100005, 33.2, 100.0, 12.1 to 1, 75.3, 95.5, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Arlington - M Norcross Stratton,00100055, 36.8, 97.3, 11.8 to 1, 73.7, 98.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Arlington - Menotomy Preschool,00100038, 7.2, 100.0, 12.2 to 1, 69.4, 100.0, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Arlington - Ottoson Middle,00100410, 82.4, 98.8, 11.2 to 1, 74.5, 92.2, 97.7 +3.953684210526316,3.95,a-exp-i3,2022-23,Arlington - Peirce,00100045, 27.6, 98.8, 13.2 to 1, 65.6, 97.9, 93.9 +4.029473684210527,4.03,a-exp-i3,2022-23,Arlington - Thompson,00100050, 39.5, 97.5, 12.7 to 1, 88.2, 90.9, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 38.0, 100.0, 13.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 13.4, 100.0, 14.1 to 1, 100.0, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 44.6, 95.5, 14.7 to 1, 88.6, 89.6, 96.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 40.1, 100.0, 13.7 to 1, 85.0, 97.5, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 27.8, 100.0, 14.0 to 1, 89.2, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Ashland - Ashland High,00140505, 58.4, 100.0, 14.4 to 1, 93.2, 98.3, 96.7 +4.067368421052631,4.07,a-exp-i3,2022-23,Ashland - Ashland Middle,00140405, 55.6, 100.0, 12.3 to 1, 80.2, 98.2, 96.6 +4.046315789473684,4.05,a-exp-i3,2022-23,Ashland - David Mindess,00140015, 50.0, 100.0, 12.9 to 1, 84.0, 98.0, 96.1 +4.122105263157895,4.12,a-exp-i3,2022-23,Ashland - Henry E Warren Elementary,00140010, 46.9, 97.9, 13.7 to 1, 87.2, 97.9, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ashland - William Pittaway Elementary,00140005, 7.0, 100.0, 11.7 to 1, 85.7, 100.0, 100.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 111.2, 97.3, 10.1 to 1, 88.3, 92.8, 93.8 +4.113684210526316,4.11,a-exp-i3,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 41.1, 100.0, 13.9 to 1, 70.8, 97.6, 97.7 +3.7431578947368425,3.74,a-exp-i3,2022-23,Athol-Royalston - Athol High,06150505, 30.0, 100.0, 13.5 to 1, 64.4, 87.0, 88.9 +3.9621052631578944,3.96,a-exp-i3,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 31.0, 100.0, 13.8 to 1, 80.6, 96.8, 94.1 +3.5621052631578944,3.56,a-exp-i3,2022-23,Athol-Royalston - Royalston Community School,06150050, 13.0, 100.0, 12.2 to 1, 61.5, 100.0, 84.6 +2.6905263157894734,2.69,a-exp-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 105.8, 76.4, 12.1 to 1, 57.4, 85.1, 63.9 +3.886315789473684,3.89,a-exp-i3,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 25.0, 100.0, 14.0 to 1, 84.0, 100.0, 92.3 +3.0610526315789475,3.06,a-exp-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 3.0, 100.0, 18.9 to 1, 56.1, 49.3, 72.7 +3.83578947368421,3.84,a-exp-i3,2022-23,Attleboro - Attleboro High,00160505, 118.5, 99.2, 15.6 to 1, 87.0, 89.1, 91.1 +2.6315789473684212,2.63,a-exp-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 4.1, 100.0, 9.7 to 1, 97.6, 100.0, 62.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 42.1, 97.6, 14.8 to 1, 83.4, 97.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Early Learning Center,00160008, 7.8, 100.0, 24.4 to 1, 74.4, 100.0, 100.0 +3.9368421052631577,3.94,a-exp-i3,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 30.3, 100.0, 13.5 to 1, 83.5, 96.7, 93.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 25.2, 100.0, 17.9 to 1, 84.1, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 34.4, 97.1, 12.9 to 1, 73.8, 97.1, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 36.3, 100.0, 15.8 to 1, 83.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 25.4, 100.0, 14.6 to 1, 76.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Attleboro - Wamsutta Middle School,00160320, 37.3, 100.0, 15.4 to 1, 86.6, 100.0, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Auburn - Auburn Middle,00170305, 46.2, 97.8, 14.1 to 1, 87.0, 95.7, 94.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,Auburn - Auburn Senior High,00170505, 66.0, 100.0, 12.7 to 1, 90.9, 92.4, 90.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Auburn - Bryn Mawr,00170010, 16.6, 100.0, 16.2 to 1, 94.4, 97.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Auburn - Pakachoag School,00170025, 18.0, 100.0, 13.5 to 1, 77.7, 91.6, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Auburn - Swanson Road Intermediate School,00170030, 40.9, 100.0, 13.5 to 1, 90.1, 95.0, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Avon - Avon Middle High School,00180510, 36.2, 100.0, 9.3 to 1, 77.9, 91.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Avon - Ralph D Butler,00180010, 38.2, 100.0, 10.3 to 1, 76.4, 97.4, 100.0 +3.776842105263158,3.78,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 38.2, 97.4, 10.3 to 1, 81.7, 89.5, 89.7 +3.983157894736842,3.98,a-exp-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 33.8, 100.0, 10.9 to 1, 94.1, 97.0, 94.6 +4.08421052631579,4.08,a-exp-i3,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 31.0, 100.0, 11.1 to 1, 90.3, 100.0, 97.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 42.8, 100.0, 12.4 to 1, 77.1, 97.7, 97.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 27.6, 100.0, 10.5 to 1, 81.9, 92.8, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Barnstable - Barnstable High,00200505, 153.3, 98.4, 11.5 to 1, 85.3, 90.9, 94.6 +4.021052631578947,4.02,a-exp-i3,2022-23,Barnstable - Barnstable Intermediate School,00200315, 55.2, 100.0, 11.8 to 1, 74.6, 89.1, 95.5 +4.151578947368421,4.15,a-exp-i3,2022-23,Barnstable - Barnstable United Elementary School,00200050, 66.9, 100.0, 11.0 to 1, 87.4, 98.5, 98.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - Centerville Elementary,00200010, 25.3, 100.0, 9.8 to 1, 86.2, 96.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 9.0, 100.0, 17.4 to 1, 66.7, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Barnstable - Hyannis West Elementary,00200025, 33.9, 100.0, 9.7 to 1, 82.9, 100.0, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Barnstable - West Barnstable Elementary,00200005, 23.7, 100.0, 11.1 to 1, 86.9, 93.2, 100.0 +3.9705263157894737,3.97,a-exp-i3,2022-23,Barnstable - West Villages Elementary School,00200045, 33.1, 97.0, 12.1 to 1, 85.5, 97.0, 94.3 +1.4989473684210526,1.5,a-exp-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 56.1, 46.0, 7.2 to 1, 28.0, 80.4, 35.6 +4.071578947368421,4.07,a-exp-i3,2022-23,Bedford - Bedford High,00230505, 79.1, 98.7, 10.6 to 1, 85.2, 90.9, 96.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Bedford - John Glenn Middle,00230305, 55.4, 100.0, 10.8 to 1, 87.4, 92.8, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bedford - Lt Eleazer Davis,00230010, 48.7, 100.0, 10.6 to 1, 87.7, 97.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bedford - Lt Job Lane School,00230012, 47.8, 100.0, 12.3 to 1, 82.6, 100.0, 100.0 +3.6210526315789475,3.62,a-exp-i3,2022-23,Belchertown - Belchertown High,00240505, 50.4, 100.0, 12.6 to 1, 100.0, 100.0, 86.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belchertown - Chestnut Hill Community School,00240006, 37.3, 100.0, 12.9 to 1, 89.3, 100.0, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Belchertown - Cold Spring,00240005, 13.3, 100.0, 14.6 to 1, 100.0, 100.0, 92.3 +4.092631578947368,4.09,a-exp-i3,2022-23,Belchertown - Jabish Middle School,00240025, 34.0, 100.0, 10.0 to 1, 100.0, 100.0, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belchertown - Swift River Elementary,00240018, 37.3, 100.0, 12.7 to 1, 97.3, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 6.0, 100.0, 16.7 to 1, 66.7, 100.0, 100.0 +4.0,4.0,a-exp-i3,2022-23,Bellingham - Bellingham High School,00250505, 59.5, 100.0, 12.6 to 1, 89.9, 91.6, 95.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Bellingham - Bellingham Memorial School,00250315, 44.0, 100.0, 13.3 to 1, 90.9, 100.0, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 21.4, 100.0, 14.0 to 1, 88.8, 100.0, 100.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Bellingham - Keough Memorial Academy,00250510, 6.9, 100.0, 4.1 to 1, 50.7, 71.0, 87.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bellingham - Stall Brook,00250025, 21.8, 100.0, 11.2 to 1, 96.3, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Belmont - Belmont High,00260505, 84.2, 100.0, 16.2 to 1, 89.4, 98.9, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belmont - Daniel Butler,00260015, 25.7, 100.0, 13.0 to 1, 80.2, 92.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belmont - Mary Lee Burbank,00260010, 26.1, 100.0, 12.9 to 1, 100.0, 100.0, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Belmont - Roger E Wellington,00260035, 39.8, 100.0, 13.6 to 1, 94.2, 100.0, 95.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Belmont - Winn Brook,00260005, 27.0, 100.0, 16.1 to 1, 73.3, 96.3, 100.0 +4.16421052631579,4.16,a-exp-i3,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 87.9, 100.0, 15.6 to 1, 87.5, 98.9, 98.9 +3.3684210526315788,3.37,a-exp-i3,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20.0, 85.0, 16.6 to 1, 80.0, 95.0, 80.0 +3.5326315789473686,3.53,a-exp-i3,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 55.3, 92.8, 15.6 to 1, 76.5, 89.2, 83.9 +4.1010526315789475,4.1,a-exp-i3,2022-23,Berkley - Berkley Community School,00270010, 37.3, 100.0, 12.9 to 1, 83.9, 100.0, 97.4 +4.08,4.08,a-exp-i3,2022-23,Berkley - Berkley Middle School,00270305, 31.0, 100.0, 12.0 to 1, 83.9, 93.5, 96.9 +1.431578947368421,1.43,a-exp-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 42.2, 57.4, 7.5 to 1, 73.5, 85.8, 34.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 46.0, 98.0, 10.3 to 1, 84.7, 91.3, 96.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 38.1, 100.0, 9.8 to 1, 89.1, 97.4, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 33.2, 100.0, 9.8 to 1, 83.2, 88.0, 94.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 17.7, 100.0, 12.4 to 1, 94.4, 94.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 25.9, 100.0, 13.0 to 1, 72.2, 97.7, 100.0 +4.037894736842105,4.04,a-exp-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 46.9, 100.0, 11.0 to 1, 91.7, 90.6, 95.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - Ayers/Ryal Side School,00300055, 30.4, 100.0, 12.7 to 1, 83.6, 96.7, 100.0 +3.8652631578947365,3.87,a-exp-i3,2022-23,Beverly - Beverly High,00300505, 103.3, 97.1, 12.5 to 1, 77.2, 94.8, 91.8 +3.8652631578947365,3.87,a-exp-i3,2022-23,Beverly - Beverly Middle School,00300305, 110.3, 98.2, 12.4 to 1, 83.0, 93.0, 91.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - Centerville Elementary,00300010, 29.0, 100.0, 10.9 to 1, 89.7, 100.0, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Beverly - Cove Elementary,00300015, 35.0, 100.0, 12.0 to 1, 78.9, 94.3, 94.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - Hannah Elementary,00300033, 29.5, 100.0, 11.2 to 1, 81.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Beverly - McKeown School,00300002, 11.0, 100.0, 11.4 to 1, 81.8, 90.9, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Beverly - North Beverly Elementary,00300040, 30.5, 100.0, 11.3 to 1, 68.9, 100.0, 96.8 +3.9157894736842107,3.92,a-exp-i3,2022-23,Billerica - Billerica Memorial High School,00310505, 128.8, 100.0, 13.4 to 1, 88.6, 90.5, 93.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Billerica - Frederick J Dutile,00310007, 19.4, 100.0, 14.5 to 1, 90.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Billerica - Hajjar Elementary,00310026, 26.1, 100.0, 14.4 to 1, 87.3, 95.2, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Billerica - John F Kennedy,00310012, 21.7, 100.0, 14.0 to 1, 90.8, 94.2, 96.3 +4.130526315789473,4.13,a-exp-i3,2022-23,Billerica - Locke Middle,00310310, 45.8, 100.0, 12.0 to 1, 95.1, 95.6, 98.1 +4.07578947368421,4.08,a-exp-i3,2022-23,Billerica - Marshall Middle School,00310305, 49.1, 100.0, 12.3 to 1, 91.0, 95.9, 96.8 +4.096842105263158,4.1,a-exp-i3,2022-23,Billerica - Parker,00310015, 31.8, 100.0, 13.4 to 1, 87.4, 99.2, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Billerica - Thomas Ditson,00310005, 33.2, 100.0, 16.8 to 1, 88.3, 97.0, 100.0 +3.818947368421053,3.82,a-exp-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 107.0, 100.0, 11.5 to 1, 89.7, 88.8, 90.7 +4.008421052631579,4.01,a-exp-i3,2022-23,Blackstone-Millville - A F Maloney,06220015, 15.8, 100.0, 16.2 to 1, 44.9, 93.2, 95.2 +3.6842105263157894,3.68,a-exp-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 38.5, 97.4, 10.3 to 1, 77.4, 92.2, 87.5 +4.07578947368421,4.08,a-exp-i3,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 29.9, 100.0, 11.5 to 1, 56.5, 86.6, 96.8 +3.8610526315789473,3.86,a-exp-i3,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 7.3, 100.0, 14.9 to 1, 83.3, 99.7, 91.7 +3.928421052631579,3.93,a-exp-i3,2022-23,Blackstone-Millville - Millville Elementary,06220010, 28.3, 100.0, 12.9 to 1, 57.5, 100.0, 93.3 +4.16,4.16,a-exp-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 80.8, 100.0, 11.4 to 1, 93.6, 91.3, 98.8 +4.067368421052631,4.07,a-exp-i3,2022-23,Boston - Adams Elementary School,00350302, 28.9, 96.5, 8.6 to 1, 89.7, 96.6, 96.6 +3.3684210526315788,3.37,a-exp-i3,2022-23,Boston - Alighieri Dante Montessori School,00350066, 12.4, 92.0, 8.7 to 1, 71.9, 100.0, 80.0 +2.808421052631579,2.81,a-exp-i3,2022-23,Boston - Another Course To College,00350541, 24.3, 91.8, 9.5 to 1, 74.2, 91.8, 66.7 +3.928421052631579,3.93,a-exp-i3,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.9, 93.3, 11.6 to 1, 86.6, 100.0, 93.3 +4.07578947368421,4.08,a-exp-i3,2022-23,Boston - Bates Elementary School,00350278, 29.5, 99.3, 9.4 to 1, 93.6, 100.0, 96.8 +4.029473684210527,4.03,a-exp-i3,2022-23,Boston - Beethoven Elementary School,00350021, 22.1, 100.0, 11.9 to 1, 95.5, 95.5, 95.7 +3.8821052631578947,3.88,a-exp-i3,2022-23,Boston - Blackstone Elementary School,00350390, 59.9, 100.0, 9.0 to 1, 91.6, 93.4, 92.2 +3.477894736842105,3.48,a-exp-i3,2022-23,Boston - Boston Adult Tech Academy,00350548, 19.2, 94.3, 6.3 to 1, 89.6, 94.8, 82.6 +3.9747368421052633,3.97,a-exp-i3,2022-23,Boston - Boston Arts Academy,00350546, 49.6, 99.8, 10.0 to 1, 81.8, 83.9, 94.4 +2.972631578947368,2.97,a-exp-i3,2022-23,Boston - Boston Collaborative High School,00350755, 13.7, 99.9, 13.0 to 1, 62.2, 92.7, 70.6 +3.490526315789474,3.49,a-exp-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 63.0, 97.6, 9.5 to 1, 80.9, 89.7, 82.9 +3.313684210526316,3.31,a-exp-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 56.4, 92.9, 8.4 to 1, 89.4, 92.7, 78.7 +4.16421052631579,4.16,a-exp-i3,2022-23,Boston - Boston Latin Academy,00350545, 91.2, 100.0, 18.9 to 1, 92.3, 98.9, 98.9 +3.8694736842105266,3.87,a-exp-i3,2022-23,Boston - Boston Latin School,00350560, 124.7, 100.0, 19.4 to 1, 89.6, 96.8, 91.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 23.0, 100.0, 13.0 to 1, 73.9, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Boston - Bradley Elementary School,00350215, 26.8, 96.3, 10.8 to 1, 77.7, 88.8, 92.9 +3.6757894736842105,3.68,a-exp-i3,2022-23,Boston - Brighton High School,00350505, 58.5, 98.3, 9.1 to 1, 75.2, 95.7, 87.3 +3.4694736842105267,3.47,a-exp-i3,2022-23,Boston - Burke High School,00350525, 44.6, 93.4, 9.4 to 1, 67.9, 85.4, 82.4 NA,NA,a-exp-i3,2022-23,Boston - Carter School,00350036, 0.0, 0.0,N/A,"","","" -NA,NA,a-exp-i3,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7,"" -NA,NA,a-exp-i3,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9,"" -NA,NA,a-exp-i3,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2,"" -NA,NA,a-exp-i3,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1,"" -NA,NA,a-exp-i3,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4,"" -NA,NA,a-exp-i3,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4,"" -NA,NA,a-exp-i3,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5,"" -NA,NA,a-exp-i3,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2,"" -NA,NA,a-exp-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2,"" -NA,NA,a-exp-i3,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9,"" -NA,NA,a-exp-i3,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3,"" -NA,NA,a-exp-i3,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0,"" -NA,NA,a-exp-i3,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7,"" -NA,NA,a-exp-i3,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4,"" -NA,NA,a-exp-i3,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6,"" -NA,NA,a-exp-i3,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3,"" -NA,NA,a-exp-i3,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8,"" -NA,NA,a-exp-i3,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8,"" -NA,NA,a-exp-i3,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0,"" -NA,NA,a-exp-i3,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5,"" -NA,NA,a-exp-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0,"" -NA,NA,a-exp-i3,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0,"" -NA,NA,a-exp-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7,"" -NA,NA,a-exp-i3,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3,"" -NA,NA,a-exp-i3,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0,"" -NA,NA,a-exp-i3,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9,"" -NA,NA,a-exp-i3,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6,"" -NA,NA,a-exp-i3,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1,"" -NA,NA,a-exp-i3,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2,"" -NA,NA,a-exp-i3,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3,"" -NA,NA,a-exp-i3,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0,"" -NA,NA,a-exp-i3,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3,"" -NA,NA,a-exp-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2,"" -NA,NA,a-exp-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5,"" -NA,NA,a-exp-i3,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4,"" -NA,NA,a-exp-i3,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8,"" -NA,NA,a-exp-i3,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9,"" -NA,NA,a-exp-i3,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5,"" -NA,NA,a-exp-i3,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8,"" -NA,NA,a-exp-i3,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1,"" -NA,NA,a-exp-i3,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1,"" -NA,NA,a-exp-i3,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2,"" -NA,NA,a-exp-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3,"" -NA,NA,a-exp-i3,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2,"" -NA,NA,a-exp-i3,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6,"" -NA,NA,a-exp-i3,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7,"" -NA,NA,a-exp-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0,"" -NA,NA,a-exp-i3,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5,"" -NA,NA,a-exp-i3,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2,"" -NA,NA,a-exp-i3,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9,"" -NA,NA,a-exp-i3,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8,"" -NA,NA,a-exp-i3,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4,"" -NA,NA,a-exp-i3,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5,"" -NA,NA,a-exp-i3,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1,"" -NA,NA,a-exp-i3,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5,"" -NA,NA,a-exp-i3,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6,"" -NA,NA,a-exp-i3,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8,"" -NA,NA,a-exp-i3,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0,"" -NA,NA,a-exp-i3,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4,"" -NA,NA,a-exp-i3,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7,"" -NA,NA,a-exp-i3,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0,"" -NA,NA,a-exp-i3,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6,"" -NA,NA,a-exp-i3,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3,"" -NA,NA,a-exp-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5,"" -NA,NA,a-exp-i3,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6,"" -NA,NA,a-exp-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1,"" -NA,NA,a-exp-i3,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7,"" -NA,NA,a-exp-i3,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4,"" -NA,NA,a-exp-i3,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1,"" -NA,NA,a-exp-i3,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5,"" -NA,NA,a-exp-i3,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9,"" -NA,NA,a-exp-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0,"" -NA,NA,a-exp-i3,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4,"" -NA,NA,a-exp-i3,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5,"" -NA,NA,a-exp-i3,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0,"" -NA,NA,a-exp-i3,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0,"" -NA,NA,a-exp-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2,"" -NA,NA,a-exp-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8,"" -NA,NA,a-exp-i3,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6,"" -NA,NA,a-exp-i3,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7,"" -NA,NA,a-exp-i3,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8,"" -NA,NA,a-exp-i3,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5,"" -NA,NA,a-exp-i3,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4,"" -NA,NA,a-exp-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3,"" -NA,NA,a-exp-i3,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5,"" -NA,NA,a-exp-i3,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1,"" -NA,NA,a-exp-i3,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7,"" -NA,NA,a-exp-i3,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1,"" -NA,NA,a-exp-i3,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3,"" -NA,NA,a-exp-i3,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3,"" -NA,NA,a-exp-i3,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7,"" -NA,NA,a-exp-i3,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0,"" -NA,NA,a-exp-i3,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3,"" -NA,NA,a-exp-i3,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4,"" -NA,NA,a-exp-i3,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0,"" -NA,NA,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3,"" -NA,NA,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9,"" -NA,NA,a-exp-i3,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7,"" -NA,NA,a-exp-i3,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9,"" -NA,NA,a-exp-i3,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3,"" -NA,NA,a-exp-i3,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6,"" -NA,NA,a-exp-i3,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4,"" -NA,NA,a-exp-i3,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0,"" -NA,NA,a-exp-i3,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6,"" -NA,NA,a-exp-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8,"" -NA,NA,a-exp-i3,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1,"" -NA,NA,a-exp-i3,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5,"" -NA,NA,a-exp-i3,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3,"" -NA,NA,a-exp-i3,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4,"" -NA,NA,a-exp-i3,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4,"" -NA,NA,a-exp-i3,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8,"" -NA,NA,a-exp-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5,"" -NA,NA,a-exp-i3,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1,"" -NA,NA,a-exp-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5,"" -NA,NA,a-exp-i3,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9,"" -NA,NA,a-exp-i3,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1,"" -NA,NA,a-exp-i3,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7,"" -NA,NA,a-exp-i3,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9,"" -NA,NA,a-exp-i3,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3,"" -NA,NA,a-exp-i3,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1,"" -NA,NA,a-exp-i3,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8,"" -NA,NA,a-exp-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0,"" -NA,NA,a-exp-i3,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5,"" -NA,NA,a-exp-i3,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8,"" -NA,NA,a-exp-i3,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0,"" -NA,NA,a-exp-i3,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6,"" -NA,NA,a-exp-i3,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1,"" -NA,NA,a-exp-i3,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0,"" -NA,NA,a-exp-i3,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2,"" -NA,NA,a-exp-i3,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2,"" -NA,NA,a-exp-i3,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3,"" -NA,NA,a-exp-i3,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2,"" -NA,NA,a-exp-i3,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7,"" -NA,NA,a-exp-i3,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9,"" -NA,NA,a-exp-i3,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3,"" -NA,NA,a-exp-i3,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1,"" -NA,NA,a-exp-i3,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0,"" -NA,NA,a-exp-i3,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5,"" -NA,NA,a-exp-i3,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9,"" -NA,NA,a-exp-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9,"" -NA,NA,a-exp-i3,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0,"" -NA,NA,a-exp-i3,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0,"" +4.0,4.0,a-exp-i3,2022-23,Boston - Channing Elementary School,00350360, 21.0, 100.0, 9.0 to 1, 76.2, 95.2, 95.0 +3.4652631578947366,3.47,a-exp-i3,2022-23,Boston - Charlestown High School,00350515, 80.0, 93.6, 9.9 to 1, 65.8, 90.0, 82.3 +4.071578947368421,4.07,a-exp-i3,2022-23,Boston - Chittick Elementary School,00350154, 29.8, 100.0, 7.8 to 1, 84.9, 93.3, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Clap Elementary School,00350298, 14.5, 100.0, 7.6 to 1, 75.9, 100.0, 100.0 +2.4042105263157896,2.4,a-exp-i3,2022-23,Boston - Community Academy,00350518, 10.7, 76.6, 5.1 to 1, 58.0, 100.0, 57.1 +3.1031578947368423,3.1,a-exp-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 33.6, 90.6, 10.3 to 1, 84.6, 94.0, 73.7 +3.7726315789473683,3.77,a-exp-i3,2022-23,Boston - Condon K-8 School,00350146, 66.9, 97.0, 9.5 to 1, 74.6, 98.5, 89.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Conley Elementary School,00350122, 19.0, 100.0, 8.6 to 1, 84.2, 94.7, 100.0 +3.9073684210526314,3.91,a-exp-i3,2022-23,Boston - Curley K-8 School,00350020, 95.6, 96.9, 9.7 to 1, 82.2, 96.9, 92.8 +3.5199999999999996,3.52,a-exp-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 46.5, 97.8, 11.6 to 1, 66.7, 89.3, 83.6 +3.7305263157894735,3.73,a-exp-i3,2022-23,Boston - Dever Elementary School,00350268, 43.0, 100.0, 8.7 to 1, 72.1, 90.7, 88.6 +3.6842105263157894,3.68,a-exp-i3,2022-23,Boston - East Boston Early Education Center,00350009, 14.1, 100.0, 13.3 to 1, 69.9, 92.9, 87.5 +3.4947368421052634,3.49,a-exp-i3,2022-23,Boston - East Boston High School,00350530, 96.1, 95.3, 13.3 to 1, 77.1, 94.8, 83.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Boston - Edison K-8 School,00350375, 63.9, 99.7, 9.7 to 1, 84.4, 92.2, 91.2 +3.983157894736842,3.98,a-exp-i3,2022-23,Boston - Eliot K-8 Innovation School,00350096, 56.9, 100.0, 14.2 to 1, 85.9, 98.2, 94.6 +3.654736842105263,3.65,a-exp-i3,2022-23,Boston - Ellis Elementary School,00350072, 35.8, 99.2, 8.9 to 1, 68.2, 94.4, 86.8 +3.987368421052632,3.99,a-exp-i3,2022-23,Boston - Ellison-Parks Early Education School,00350008, 19.0, 100.0, 10.1 to 1, 84.2, 100.0, 94.7 +3.1242105263157898,3.12,a-exp-i3,2022-23,Boston - English High School,00350535, 60.4, 96.4, 10.8 to 1, 76.6, 91.6, 74.2 +4.0336842105263155,4.03,a-exp-i3,2022-23,Boston - Everett Elementary School,00350088, 22.1, 100.0, 12.2 to 1, 77.4, 95.5, 95.8 +3.2042105263157894,3.2,a-exp-i3,2022-23,Boston - Excel High School,00350522, 38.6, 97.1, 11.3 to 1, 71.5, 94.5, 76.1 +2.6989473684210523,2.7,a-exp-i3,2022-23,Boston - Fenway High School,00350540, 30.9, 96.0, 12.2 to 1, 86.6, 99.7, 64.1 +3.5242105263157897,3.52,a-exp-i3,2022-23,Boston - Frederick Pilot Middle School,00350383, 42.0, 97.6, 7.7 to 1, 85.7, 85.7, 83.7 +4.092631578947368,4.09,a-exp-i3,2022-23,Boston - Gardner Pilot Academy,00350326, 36.0, 97.2, 10.7 to 1, 75.0, 91.7, 97.2 +2.7073684210526316,2.71,a-exp-i3,2022-23,Boston - Greater Egleston High School,00350543, 9.0, 72.2, 10.0 to 1, 83.3, 100.0, 64.3 +3.8400000000000003,3.84,a-exp-i3,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 34.0, 97.1, 11.0 to 1, 58.8, 91.2, 91.2 +3.8610526315789473,3.86,a-exp-i3,2022-23,Boston - Grew Elementary School,00350135, 22.3, 100.0, 9.5 to 1, 73.2, 91.1, 91.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Guild Elementary School,00350062, 31.5, 100.0, 8.0 to 1, 84.2, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Boston - Hale Elementary School,00350243, 13.2, 100.0, 12.8 to 1, 92.4, 100.0, 92.9 +3.9368421052631577,3.94,a-exp-i3,2022-23,Boston - Haley Pilot School,00350077, 43.2, 100.0, 8.6 to 1, 93.1, 100.0, 93.5 +4.105263157894737,4.11,a-exp-i3,2022-23,Boston - Harvard-Kent Elementary School,00350200, 39.1, 100.0, 8.7 to 1, 93.6, 100.0, 97.5 +3.7136842105263157,3.71,a-exp-i3,2022-23,Boston - Haynes Early Education Center,00350010, 16.5, 93.9, 12.3 to 1, 75.7, 93.9, 88.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 23.0, 100.0, 8.1 to 1, 91.3, 95.7, 100.0 +3.595789473684211,3.6,a-exp-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 83.7, 96.4, 8.0 to 1, 77.9, 96.4, 85.4 +3.8273684210526318,3.83,a-exp-i3,2022-23,Boston - Hennigan K-8 School,00350153, 50.9, 95.6, 10.0 to 1, 77.9, 96.1, 90.9 +3.92,3.92,a-exp-i3,2022-23,Boston - Hernandez K-8 School,00350691, 27.9, 96.1, 15.3 to 1, 72.7, 91.0, 93.1 +2.8968421052631577,2.9,a-exp-i3,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 13.6, 83.1, 8.8 to 1, 68.3, 100.0, 68.8 +3.705263157894737,3.71,a-exp-i3,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 23.5, 95.7, 7.5 to 1, 60.8, 87.2, 88.0 +3.768421052631579,3.77,a-exp-i3,2022-23,Boston - Holmes Elementary School,00350138, 34.0, 95.9, 8.2 to 1, 83.0, 94.1, 89.5 +3.322105263157895,3.32,a-exp-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 34.1, 99.9, 2.1 to 1, 88.1, 100.0, 78.9 +4.050526315789474,4.05,a-exp-i3,2022-23,Boston - Hurley K-8 School,00350182, 25.7, 99.2, 13.7 to 1, 72.0, 96.1, 96.2 +3.444210526315789,3.44,a-exp-i3,2022-23,Boston - Kennedy John F Elementary School,00350166, 28.2, 92.9, 13.3 to 1, 82.3, 100.0, 81.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 25.9, 99.2, 10.2 to 1, 79.9, 84.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boston - Kenny Elementary School,00350328, 31.0, 100.0, 10.2 to 1, 74.2, 96.8, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Boston - Kilmer K-8 School,00350190, 43.6, 100.0, 9.1 to 1, 90.8, 100.0, 97.8 +3.781052631578947,3.78,a-exp-i3,2022-23,Boston - King Elementary School,00350376, 49.4, 90.9, 9.0 to 1, 63.6, 91.9, 89.8 +3.9747368421052633,3.97,a-exp-i3,2022-23,Boston - Lee Academy,00350001, 16.9, 94.1, 11.1 to 1, 82.2, 94.1, 94.4 +4.008421052631579,4.01,a-exp-i3,2022-23,Boston - Lee K-8 School,00350183, 57.6, 99.1, 9.4 to 1, 75.7, 96.5, 95.2 +3.76421052631579,3.76,a-exp-i3,2022-23,Boston - Lyndon K-8 School,00350262, 42.6, 97.6, 13.8 to 1, 78.9, 95.3, 89.4 +2.9473684210526314,2.95,a-exp-i3,2022-23,Boston - Lyon High School,00350655, 16.4, 93.9, 7.1 to 1, 72.7, 100.0, 70.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Boston - Lyon K-8 School,00350004, 21.2, 99.1, 5.9 to 1, 92.0, 100.0, 88.9 +3.536842105263158,3.54,a-exp-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 117.9, 90.9, 9.2 to 1, 76.3, 87.6, 84.0 +3.7136842105263157,3.71,a-exp-i3,2022-23,Boston - Manning Elementary School,00350184, 16.2, 93.8, 9.9 to 1, 81.5, 93.8, 88.2 +2.8968421052631577,2.9,a-exp-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 26.2, 99.6, 12.0 to 1, 87.4, 88.6, 68.8 +3.650526315789474,3.65,a-exp-i3,2022-23,Boston - Mario Umana Academy,00350656, 57.7, 100.0, 10.1 to 1, 68.8, 89.6, 86.7 +3.536842105263158,3.54,a-exp-i3,2022-23,Boston - Mason Elementary School,00350304, 23.5, 95.7, 8.0 to 1, 72.3, 91.5, 84.0 +3.928421052631579,3.93,a-exp-i3,2022-23,Boston - Mather Elementary School,00350227, 42.2, 100.0, 11.5 to 1, 99.4, 94.7, 93.3 +4.134736842105263,4.13,a-exp-i3,2022-23,Boston - Mattahunt Elementary School,00350016, 55.0, 100.0, 8.8 to 1, 72.7, 85.4, 98.2 +3.890526315789474,3.89,a-exp-i3,2022-23,Boston - McKay K-8 School,00350080, 62.5, 99.2, 10.9 to 1, 85.6, 98.4, 92.4 +2.648421052631579,2.65,a-exp-i3,2022-23,Boston - McKinley Schools,00350363, 52.3, 92.4, 3.0 to 1, 76.3, 90.5, 62.9 +3.431578947368421,3.43,a-exp-i3,2022-23,Boston - Mendell Elementary School,00350100, 26.2, 89.3, 11.9 to 1, 67.9, 94.3, 81.5 +3.8526315789473684,3.85,a-exp-i3,2022-23,Boston - Mildred Avenue K-8 School,00350378, 55.5, 98.2, 11.1 to 1, 91.0, 91.0, 91.5 +4.029473684210527,4.03,a-exp-i3,2022-23,Boston - Mozart Elementary School,00350237, 17.8, 100.0, 9.9 to 1, 85.0, 100.0, 95.7 +3.9242105263157896,3.92,a-exp-i3,2022-23,Boston - Murphy K-8 School,00350240, 70.2, 98.6, 11.9 to 1, 95.7, 100.0, 93.2 +3.6168421052631583,3.62,a-exp-i3,2022-23,Boston - New Mission High School,00350542, 56.2, 93.1, 10.9 to 1, 80.9, 90.2, 85.9 +3.776842105263158,3.78,a-exp-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575, 102.6, 95.0, 15.3 to 1, 83.4, 93.2, 89.7 +3.7263157894736842,3.73,a-exp-i3,2022-23,Boston - O'Donnell Elementary School,00350141, 24.6, 91.9, 11.4 to 1, 79.7, 95.9, 88.5 +4.046315789473684,4.05,a-exp-i3,2022-23,Boston - Ohrenberger School,00350258, 47.7, 97.9, 9.4 to 1, 97.9, 97.9, 96.1 +3.6252631578947367,3.63,a-exp-i3,2022-23,Boston - Orchard Gardens K-8 School,00350257, 70.9, 93.5, 10.2 to 1, 64.0, 87.6, 86.1 +3.608421052631579,3.61,a-exp-i3,2022-23,Boston - Otis Elementary School,00350156, 33.3, 95.2, 12.4 to 1, 80.5, 97.0, 85.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Boston - Perkins Elementary School,00350231, 21.2, 93.0, 7.5 to 1, 59.9, 95.3, 95.5 +3.8273684210526318,3.83,a-exp-i3,2022-23,Boston - Perry Elementary School,00350255, 20.0, 100.0, 9.1 to 1, 95.0, 100.0, 90.9 +3.221052631578947,3.22,a-exp-i3,2022-23,Boston - Philbrick Elementary School,00350172, 14.4, 86.1, 7.9 to 1, 72.3, 92.4, 76.5 +4.021052631578947,4.02,a-exp-i3,2022-23,Boston - Quincy Elementary School,00350286, 67.1, 97.6, 11.0 to 1, 83.3, 93.9, 95.5 +3.414736842105263,3.41,a-exp-i3,2022-23,Boston - Quincy Upper School,00350565, 47.1, 93.6, 11.3 to 1, 76.5, 93.6, 81.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Boston - Roosevelt K-8 School,00350116, 37.6, 100.0, 9.4 to 1, 90.2, 100.0, 97.4 +4.07578947368421,4.08,a-exp-i3,2022-23,Boston - Russell Elementary School,00350366, 32.0, 96.9, 11.3 to 1, 84.4, 100.0, 96.8 +3.768421052631579,3.77,a-exp-i3,2022-23,Boston - Shaw Elementary School,00350014, 19.0, 100.0, 9.8 to 1, 73.7, 100.0, 89.5 +3.6842105263157894,3.68,a-exp-i3,2022-23,Boston - Snowden International High School,00350690, 36.4, 100.0, 12.7 to 1, 88.5, 97.3, 87.5 +4.050526315789474,4.05,a-exp-i3,2022-23,Boston - Sumner Elementary School,00350052, 50.6, 98.0, 10.6 to 1, 86.8, 96.0, 96.2 +3.6842105263157894,3.68,a-exp-i3,2022-23,Boston - Taylor Elementary School,00350054, 39.6, 97.5, 9.0 to 1, 72.2, 95.0, 87.5 +3.3978947368421055,3.4,a-exp-i3,2022-23,Boston - TechBoston Academy,00350657, 75.5, 96.0, 11.5 to 1, 74.8, 90.7, 80.7 +3.9705263157894737,3.97,a-exp-i3,2022-23,Boston - Tobin K-8 School,00350229, 35.5, 100.0, 12.0 to 1, 91.6, 94.4, 94.3 +3.3431578947368426,3.34,a-exp-i3,2022-23,Boston - Trotter Elementary School,00350370, 32.3, 96.9, 9.2 to 1, 78.4, 87.6, 79.4 +3.886315789473684,3.89,a-exp-i3,2022-23,Boston - Tynan Elementary School,00350181, 25.9, 96.1, 7.6 to 1, 73.0, 92.3, 92.3 +3.76421052631579,3.76,a-exp-i3,2022-23,Boston - UP Academy Holland,00350167, 46.2, 97.8, 13.8 to 1, 80.5, 71.8, 89.4 +4.117894736842105,4.12,a-exp-i3,2022-23,Boston - Warren-Prescott K-8 School,00350346, 45.6, 100.0, 11.5 to 1, 86.9, 97.8, 97.8 +3.0063157894736845,3.01,a-exp-i3,2022-23,Boston - West Zone Early Learning Center,00350006, 13.5, 92.6, 8.2 to 1, 77.8, 77.8, 71.4 +3.6294736842105264,3.63,a-exp-i3,2022-23,Boston - Winship Elementary School,00350374, 26.4, 95.5, 12.8 to 1, 80.3, 100.0, 86.2 +3.886315789473684,3.89,a-exp-i3,2022-23,Boston - Winthrop Elementary School,00350180, 25.2, 99.2, 9.4 to 1, 95.2, 96.0, 92.3 +3.9494736842105262,3.95,a-exp-i3,2022-23,Boston - Young Achievers K-8 School,00350380, 45.4, 95.6, 10.6 to 1, 65.6, 83.5, 93.8 +2.2442105263157894,2.24,a-exp-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 75.6, 73.9, 9.2 to 1, 46.1, 84.0, 53.3 +2.7326315789473687,2.73,a-exp-i3,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 29.5, 88.2, 10.9 to 1, 89.8, 93.2, 64.9 +3.3684210526315788,3.37,a-exp-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 46.6, 93.3, 10.2 to 1, 68.2, 91.0, 80.0 +2.4,2.4,a-exp-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 71.6, 66.5, 9.7 to 1, 31.4, 81.7, 57.0 +3.928421052631579,3.93,a-exp-i3,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 82.5, 100.0, 11.2 to 1, 68.5, 90.3, 93.3 +3.877894736842105,3.88,a-exp-i3,2022-23,Bourne - Bourne High School,00360505, 35.0, 100.0, 10.0 to 1, 77.1, 91.4, 92.1 +3.9747368421052633,3.97,a-exp-i3,2022-23,Bourne - Bourne Intermediate School,00360030, 34.8, 100.0, 10.6 to 1, 91.4, 97.1, 94.4 +3.9494736842105262,3.95,a-exp-i3,2022-23,Bourne - Bourne Middle School,00360325, 45.0, 100.0, 9.6 to 1, 84.4, 93.3, 93.8 +4.0884210526315785,4.09,a-exp-i3,2022-23,Bourne - Bournedale Elementary School,00360005, 33.5, 100.0, 12.0 to 1, 85.1, 97.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Boxford - Harry Lee Cole,00380005, 28.7, 100.0, 12.1 to 1, 79.1, 97.9, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Boxford - Spofford Pond,00380013, 39.9, 100.0, 9.6 to 1, 86.0, 100.0, 95.5 +4.08421052631579,4.08,a-exp-i3,2022-23,Braintree - Archie T Morrison,00400033, 31.3, 100.0, 9.7 to 1, 90.4, 93.6, 97.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Braintree - Braintree High,00400505, 111.1, 100.0, 15.4 to 1, 93.5, 95.0, 96.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Braintree - Donald Ross,00400050, 19.1, 100.0, 10.8 to 1, 97.6, 100.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Braintree - East Middle School,00400305, 77.8, 100.0, 12.5 to 1, 93.6, 96.1, 100.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Braintree - Highlands,00400015, 29.2, 100.0, 14.0 to 1, 88.3, 96.2, 93.8 +3.8273684210526318,3.83,a-exp-i3,2022-23,Braintree - Hollis,00400005, 26.9, 100.0, 12.4 to 1, 88.3, 100.0, 90.9 +4.08,4.08,a-exp-i3,2022-23,Braintree - Liberty,00400025, 28.2, 100.0, 13.1 to 1, 89.8, 96.5, 96.9 +4.071578947368421,4.07,a-exp-i3,2022-23,Braintree - Mary E Flaherty School,00400020, 26.5, 100.0, 10.9 to 1, 86.8, 100.0, 96.7 +3.7431578947368425,3.74,a-exp-i3,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 14.3, 100.0, 14.0 to 1, 100.0, 96.5, 88.9 +4.117894736842105,4.12,a-exp-i3,2022-23,Braintree - South Middle School,00400310, 43.8, 100.0, 11.7 to 1, 93.2, 100.0, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brewster - Eddy Elementary,00410010, 20.6, 100.0, 9.8 to 1, 90.3, 90.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brewster - Stony Brook Elementary,00410005, 25.0, 100.0, 9.2 to 1, 80.0, 92.0, 100.0 +3.027368421052632,3.03,a-exp-i3,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31.9, 81.2, 10.5 to 1, 53.4, 87.9, 71.9 +4.134736842105263,4.13,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 54.6, 100.0, 13.6 to 1, 89.0, 95.4, 98.2 +4.16421052631579,4.16,a-exp-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 87.5, 100.0, 15.9 to 1, 81.8, 93.2, 98.9 +4.08421052631579,4.08,a-exp-i3,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 31.8, 100.0, 15.7 to 1, 90.6, 97.8, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 20.2, 100.0, 17.5 to 1, 95.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 56.4, 100.0, 17.0 to 1, 87.6, 98.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 48.8, 100.0, 14.9 to 1, 85.7, 98.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 2.3, 100.0, 6.2 to 1, 58.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 47.9, 100.0, 16.7 to 1, 89.5, 100.0, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Brimfield - Brimfield Elementary,00430005, 27.3, 100.0, 10.5 to 1, 85.3, 96.3, 96.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 46.8, 97.9, 11.7 to 1, 74.5, 87.2, 85.7 +4.046315789473684,4.05,a-exp-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 101.8, 100.0, 12.9 to 1, 86.7, 91.6, 96.1 +3.9242105263157896,3.92,a-exp-i3,2022-23,Brockton - Ashfield Middle School,00440421, 39.1, 99.7, 11.5 to 1, 92.3, 89.8, 93.2 +3.987368421052632,3.99,a-exp-i3,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 13.4, 99.3, 17.1 to 1, 70.1, 100.0, 94.7 +3.76,3.76,a-exp-i3,2022-23,Brockton - Brockton Champion High School,00440515, 21.4, 100.0, 6.4 to 1, 82.7, 93.9, 89.3 +3.877894736842105,3.88,a-exp-i3,2022-23,Brockton - Brockton High,00440505, 250.6, 98.2, 14.7 to 1, 84.8, 90.0, 92.1 +3.6842105263157894,3.68,a-exp-i3,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 24.1, 100.0, 7.2 to 1, 61.9, 87.5, 87.5 +4.109473684210526,4.11,a-exp-i3,2022-23,Brockton - Brookfield,00440010, 33.4, 99.7, 12.9 to 1, 72.2, 91.0, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - Downey,00440110, 42.1, 100.0, 14.1 to 1, 83.4, 100.0, 100.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Brockton - Dr W Arnone Community School,00440001, 53.5, 99.8, 13.9 to 1, 81.3, 94.4, 97.0 +3.734736842105263,3.73,a-exp-i3,2022-23,Brockton - East Middle School,00440405, 48.6, 97.9, 9.3 to 1, 84.8, 93.8, 88.7 +4.1557894736842105,4.16,a-exp-i3,2022-23,Brockton - Edgar B Davis,00440023, 62.8, 100.0, 14.8 to 1, 85.7, 91.6, 98.7 +3.650526315789474,3.65,a-exp-i3,2022-23,Brockton - Edison Academy,00440520, 4.8, 95.9, 50.0 to 1, 85.5, 100.0, 86.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - Gilmore Elementary School,00440055, 27.2, 100.0, 14.8 to 1, 75.0, 98.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - Hancock,00440045, 39.8, 97.5, 15.5 to 1, 82.4, 97.5, 100.0 +3.2757894736842106,3.28,a-exp-i3,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 7.8, 100.0, 6.3 to 1, 68.6, 71.8, 77.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brockton - John F Kennedy,00440017, 36.7, 100.0, 14.0 to 1, 90.5, 98.6, 100.0 +4.147368421052631,4.15,a-exp-i3,2022-23,Brockton - Louis F Angelo Elementary,00440065, 52.7, 99.8, 15.0 to 1, 83.5, 100.0, 98.5 +3.823157894736842,3.82,a-exp-i3,2022-23,Brockton - Manthala George Jr. School,00440003, 50.9, 98.0, 15.6 to 1, 80.0, 96.1, 90.8 +4.067368421052631,4.07,a-exp-i3,2022-23,Brockton - Mary E. Baker School,00440002, 50.8, 99.8, 13.2 to 1, 76.4, 96.1, 96.6 +3.9115789473684215,3.91,a-exp-i3,2022-23,Brockton - North Middle School,00440410, 36.5, 99.7, 12.3 to 1, 72.6, 83.6, 92.9 +4.021052631578947,4.02,a-exp-i3,2022-23,Brockton - Oscar F Raymond,00440078, 51.3, 99.8, 15.5 to 1, 84.4, 90.2, 95.5 +3.650526315789474,3.65,a-exp-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 6.5, 100.0, 5.9 to 1, 56.2, 92.3, 86.7 +4.054736842105263,4.05,a-exp-i3,2022-23,Brockton - Plouffe Middle School,00440422, 46.8, 97.9, 13.9 to 1, 80.8, 87.2, 96.3 +3.6168421052631583,3.62,a-exp-i3,2022-23,Brockton - South Middle School,00440415, 51.6, 100.0, 10.0 to 1, 75.2, 86.6, 85.9 +4.058947368421053,4.06,a-exp-i3,2022-23,Brockton - West Middle School,00440420, 43.7, 100.0, 12.7 to 1, 76.7, 94.7, 96.4 +1.528421052631579,1.53,a-exp-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 175.6, 57.9, 12.7 to 1, 50.8, 89.0, 36.3 +3.886315789473684,3.89,a-exp-i3,2022-23,Brookfield - Brookfield Elementary,00450005, 23.9, 100.0, 12.2 to 1, 66.5, 95.8, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 4.9, 100.0, 10.3 to 1, 79.4, 100.0, 100.0 +3.608421052631579,3.61,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 82.5, 11.2 to 1, 32.5, 100.0, 85.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 5.8, 100.0, 9.0 to 1, 100.0, 100.0, 100.0 +3.995789473684211,4.0,a-exp-i3,2022-23,Brookline - Brookline High,00460505, 195.2, 98.0, 10.7 to 1, 87.1, 96.5, 94.9 +4.147368421052631,4.15,a-exp-i3,2022-23,Brookline - Edith C Baker,00460005, 57.1, 100.0, 11.8 to 1, 88.4, 98.2, 98.5 +4.046315789473684,4.05,a-exp-i3,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 69.1, 97.9, 12.3 to 1, 79.1, 97.5, 96.1 +4.021052631578947,4.02,a-exp-i3,2022-23,Brookline - Heath,00460025, 36.4, 100.0, 12.6 to 1, 94.5, 95.9, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - John D Runkle,00460045, 42.6, 100.0, 11.9 to 1, 92.2, 98.8, 100.0 +4.138947368421053,4.14,a-exp-i3,2022-23,Brookline - Lawrence,00460030, 48.5, 100.0, 12.8 to 1, 79.5, 98.0, 98.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - Michael Driscoll,00460020, 39.1, 100.0, 11.6 to 1, 84.7, 95.4, 100.0 +4.143157894736842,4.14,a-exp-i3,2022-23,Brookline - Pierce,00460040, 54.9, 98.2, 12.9 to 1, 82.5, 98.2, 98.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - The Lynch Center,00460060, 4.7, 100.0, 10.6 to 1, 78.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Brookline - William H Lincoln,00460035, 46.5, 100.0, 10.4 to 1, 95.7, 100.0, 100.0 +3.92,3.92,a-exp-i3,2022-23,Burlington - Burlington High,00480505, 90.8, 98.9, 10.7 to 1, 91.6, 96.0, 93.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Fox Hill,00480007, 40.6, 100.0, 10.6 to 1, 87.7, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Francis Wyman Elementary,00480035, 49.0, 100.0, 10.1 to 1, 93.1, 100.0, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Burlington - Marshall Simonds Middle,00480303, 73.5, 98.6, 11.1 to 1, 86.3, 95.1, 96.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Memorial,00480015, 37.9, 100.0, 10.4 to 1, 89.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Burlington - Pine Glen Elementary,00480020, 30.9, 100.0, 10.0 to 1, 92.9, 100.0, 100.0 +3.473684210526316,3.47,a-exp-i3,2022-23,Cambridge - Amigos School,00490006, 38.4, 92.2, 10.6 to 1, 68.7, 84.9, 82.5 +4.00421052631579,4.0,a-exp-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 214.7, 99.1, 8.7 to 1, 89.2, 89.2, 95.1 +3.8694736842105266,3.87,a-exp-i3,2022-23,Cambridge - Cambridge Street Upper School,00490305, 34.2, 92.7, 8.6 to 1, 75.1, 97.1, 91.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Cambridgeport,00490007, 26.6, 100.0, 9.6 to 1, 77.4, 92.5, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 34.3, 97.1, 7.4 to 1, 82.5, 91.3, 97.4 +4.105263157894737,4.11,a-exp-i3,2022-23,Cambridge - Graham and Parks,00490080, 35.3, 100.0, 10.3 to 1, 88.7, 97.2, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Haggerty,00490020, 28.6, 100.0, 8.1 to 1, 86.0, 96.5, 100.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Cambridge - John M Tobin,00490065, 30.3, 100.0, 10.5 to 1, 85.2, 95.1, 97.3 +4.0884210526315785,4.09,a-exp-i3,2022-23,Cambridge - Kennedy-Longfellow,00490040, 31.0, 96.8, 5.9 to 1, 90.3, 93.5, 97.1 +3.928421052631579,3.93,a-exp-i3,2022-23,Cambridge - King Open,00490035, 39.5, 96.2, 9.4 to 1, 70.9, 92.4, 93.3 +4.105263157894737,4.11,a-exp-i3,2022-23,Cambridge - Maria L. Baldwin,00490005, 35.7, 100.0, 9.5 to 1, 85.1, 100.0, 97.5 +3.768421052631579,3.77,a-exp-i3,2022-23,Cambridge - Martin Luther King Jr.,00490030, 35.0, 97.1, 9.5 to 1, 82.9, 92.8, 89.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Morse,00490045, 37.0, 100.0, 7.9 to 1, 85.9, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Cambridge - Peabody,00490050, 27.1, 96.3, 11.7 to 1, 90.8, 96.3, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 36.9, 97.3, 6.8 to 1, 58.0, 86.4, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 31.8, 96.9, 8.6 to 1, 90.6, 90.6, 97.1 +4.029473684210527,4.03,a-exp-i3,2022-23,Cambridge - Vassal Lane Upper School,00490320, 42.7, 93.0, 6.4 to 1, 71.9, 87.8, 95.7 +3.83578947368421,3.84,a-exp-i3,2022-23,Canton - Canton High,00500505, 71.5, 100.0, 12.7 to 1, 88.0, 93.0, 91.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - Dean S Luce,00500020, 36.4, 100.0, 12.6 to 1, 83.7, 97.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - John F Kennedy,00500017, 37.9, 100.0, 12.4 to 1, 81.6, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - Lt Peter M Hansen,00500012, 40.4, 100.0, 13.5 to 1, 89.3, 95.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Canton - Rodman Early Childhood Center,00500010, 7.0, 100.0, 12.7 to 1, 71.4, 100.0, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Canton - Wm H Galvin Middle,00500305, 61.7, 100.0, 12.2 to 1, 84.2, 96.6, 95.6 +2.4757894736842103,2.48,a-exp-i3,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 21.4, 91.6, 11.7 to 1, 94.4, 74.3, 58.8 +3.734736842105263,3.73,a-exp-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 63.7, 91.4, 10.5 to 1, 73.2, 76.5, 88.7 +3.9326315789473685,3.93,a-exp-i3,2022-23,Carlisle - Carlisle School,00510025, 60.4, 100.0, 9.9 to 1, 90.1, 100.0, 93.4 +3.991578947368421,3.99,a-exp-i3,2022-23,Carver - Carver Elementary School,00520015, 58.4, 100.0, 13.2 to 1, 81.2, 100.0, 94.8 +3.8063157894736843,3.81,a-exp-i3,2022-23,Carver - Carver Middle/High School,00520405, 70.6, 98.6, 10.7 to 1, 87.3, 93.6, 90.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Central Berkshire - Becket Washington School,06350005, 9.7, 94.8, 10.3 to 1, 94.8, 94.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Central Berkshire - Craneville,06350025, 30.9, 100.0, 14.4 to 1, 93.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Central Berkshire - Kittredge,06350035, 10.6, 95.3, 15.2 to 1, 95.3, 95.3, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 24.2, 95.9, 14.3 to 1, 87.6, 87.6, 92.3 +4.029473684210527,4.03,a-exp-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 41.5, 100.0, 11.7 to 1, 97.6, 97.6, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelmsford - Byam School,00560030, 39.4, 100.0, 12.7 to 1, 92.4, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelmsford - Center Elementary School,00560005, 35.4, 100.0, 13.7 to 1, 83.1, 97.2, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Chelmsford - Charles D Harrington,00560025, 32.5, 98.5, 14.5 to 1, 89.2, 96.9, 97.1 +4.092631578947368,4.09,a-exp-i3,2022-23,Chelmsford - Chelmsford High,00560505, 100.9, 99.0, 13.6 to 1, 94.1, 97.0, 97.2 +3.957894736842105,3.96,a-exp-i3,2022-23,Chelmsford - Col Moses Parker School,00560305, 64.1, 100.0, 11.3 to 1, 81.9, 95.3, 94.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Chelmsford - Community Education Center,00560001, 9.5, 100.0, 21.2 to 1, 87.4, 100.0, 92.3 +4.021052631578947,4.02,a-exp-i3,2022-23,Chelmsford - McCarthy Middle School,00560310, 64.0, 100.0, 13.2 to 1, 84.7, 100.0, 95.5 +4.0884210526315785,4.09,a-exp-i3,2022-23,Chelmsford - South Row,00560015, 34.0, 97.1, 13.6 to 1, 85.3, 100.0, 97.1 +3.9115789473684215,3.91,a-exp-i3,2022-23,Chelsea - Chelsea High,00570505, 109.5, 97.3, 14.7 to 1, 57.1, 87.2, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 6.0, 100.0, 19.2 to 1, 100.0, 83.3, 100.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 7.5, 100.0, 6.3 to 1, 80.0, 100.0, 87.5 +3.8821052631578947,3.88,a-exp-i3,2022-23,Chelsea - Clark Avenue School,00570050, 51.0, 96.1, 13.2 to 1, 68.6, 88.2, 92.2 +4.00421052631579,4.0,a-exp-i3,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 41.0, 97.6, 12.1 to 1, 73.2, 92.7, 95.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 43.7, 97.7, 10.3 to 1, 77.2, 84.6, 100.0 +3.8947368421052633,3.89,a-exp-i3,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 41.0, 97.6, 12.1 to 1, 70.7, 95.1, 92.5 +3.8947368421052633,3.89,a-exp-i3,2022-23,Chelsea - George F. Kelly Elementary,00570035, 38.8, 92.3, 12.3 to 1, 51.6, 84.5, 92.5 +3.7431578947368425,3.74,a-exp-i3,2022-23,Chelsea - Joseph A. Browne School,00570055, 45.0, 95.6, 11.4 to 1, 55.6, 86.7, 88.9 +3.92,3.92,a-exp-i3,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 59.0, 96.6, 13.9 to 1, 71.2, 86.4, 93.1 +4.092631578947368,4.09,a-exp-i3,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 35.0, 100.0, 12.9 to 1, 68.6, 97.1, 97.2 +3.789473684210526,3.79,a-exp-i3,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 17.7, 91.5, 8.2 to 1, 70.1, 89.8, 90.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Chicopee - Barry,00610003, 29.0, 100.0, 11.9 to 1, 75.9, 89.7, 96.8 +3.789473684210526,3.79,a-exp-i3,2022-23,Chicopee - Belcher,00610010, 18.2, 100.0, 12.3 to 1, 89.0, 94.5, 90.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Chicopee - Bellamy Middle,00610305, 77.8, 100.0, 10.0 to 1, 88.2, 93.1, 98.7 +4.0884210526315785,4.09,a-exp-i3,2022-23,Chicopee - Bowe,00610015, 34.1, 100.0, 12.0 to 1, 82.4, 100.0, 97.1 +4.021052631578947,4.02,a-exp-i3,2022-23,Chicopee - Bowie,00610020, 18.4, 100.0, 14.9 to 1, 100.0, 100.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chicopee - Chicopee Academy,00610021, 14.2, 100.0, 6.1 to 1, 100.0, 100.0, 100.0 +3.9157894736842107,3.92,a-exp-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 106.8, 97.2, 11.3 to 1, 85.0, 95.3, 93.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Chicopee - Chicopee High,00610505, 83.6, 98.8, 10.9 to 1, 80.6, 94.0, 96.6 +4.151578947368421,4.15,a-exp-i3,2022-23,Chicopee - Dupont Middle,00610310, 69.1, 97.1, 10.1 to 1, 78.3, 87.0, 98.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chicopee - Fairview Elementary,00610050, 32.0, 100.0, 11.5 to 1, 93.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Chicopee - Gen John J Stefanik,00610090, 29.2, 100.0, 13.3 to 1, 82.9, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Chicopee - Lambert-Lavoie,00610040, 21.3, 100.0, 11.3 to 1, 100.0, 100.0, 96.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Chicopee - Litwin,00610022, 30.1, 100.0, 11.0 to 1, 93.4, 96.7, 96.8 +4.021052631578947,4.02,a-exp-i3,2022-23,Chicopee - Streiber Memorial School,00610065, 19.4, 100.0, 11.6 to 1, 89.7, 100.0, 95.5 +3.9494736842105262,3.95,a-exp-i3,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 16.0, 100.0, 13.9 to 1, 62.5, 87.5, 93.8 +3.0526315789473686,3.05,a-exp-i3,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 32.0, 94.7, 10.3 to 1, 64.9, 85.9, 72.5 +2.046315789473684,2.05,a-exp-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27.3, 68.4, 6.7 to 1, 33.6, 85.0, 48.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,Clarksburg - Clarksburg Elementary,00630010, 16.7, 100.0, 11.3 to 1, 84.4, 96.4, 94.1 +4.151578947368421,4.15,a-exp-i3,2022-23,Clinton - Clinton Elementary,00640050, 66.8, 100.0, 12.6 to 1, 82.0, 98.5, 98.6 +4.050526315789474,4.05,a-exp-i3,2022-23,Clinton - Clinton Middle School,00640305, 50.2, 98.0, 10.9 to 1, 86.1, 90.0, 96.2 +3.957894736842105,3.96,a-exp-i3,2022-23,Clinton - Clinton Senior High,00640505, 45.7, 100.0, 12.8 to 1, 86.9, 91.0, 94.0 +2.0673684210526315,2.07,a-exp-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 49.8, 62.4, 6.7 to 1, 57.0, 85.9, 49.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cohasset - Cohasset High School,00650505, 38.1, 100.0, 11.3 to 1, 89.8, 95.8, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Cohasset - Cohasset Middle School,00650305, 29.5, 96.6, 10.0 to 1, 96.6, 96.6, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cohasset - Deer Hill,00650005, 26.2, 100.0, 11.6 to 1, 88.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Cohasset - Joseph Osgood,00650010, 27.3, 100.0, 13.8 to 1, 81.3, 100.0, 100.0 +1.5957894736842104,1.6,a-exp-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 55.0, 65.5, 21.9 to 1, 21.8, 78.2, 37.9 +2.1052631578947367,2.11,a-exp-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 32.9, 72.0, 7.7 to 1, 36.0, 87.8, 50.0 +1.8105263157894738,1.81,a-exp-i3,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115.9, 67.2, 10.3 to 1, 43.9, 89.6, 43.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Concord - Alcott,00670005, 36.1, 100.0, 11.5 to 1, 97.2, 96.7, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Concord - Concord Middle,00670305, 63.9, 100.0, 10.2 to 1, 93.7, 92.8, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Concord - Thoreau,00670020, 42.1, 100.0, 10.3 to 1, 85.7, 99.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Concord - Willard,00670030, 36.1, 100.0, 12.4 to 1, 94.5, 99.4, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 107.0, 100.0, 12.2 to 1, 91.1, 95.3, 94.2 +2.037894736842105,2.04,a-exp-i3,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 71.9, 15.9 to 1, 56.1, 96.5, 48.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Conway - Conway Grammar,00680005, 14.6, 100.0, 8.4 to 1, 79.4, 100.0, 100.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Danvers - Danvers High,00710505, 74.1, 100.0, 10.5 to 1, 89.6, 98.1, 98.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Great Oak,00710015, 23.4, 100.0, 12.9 to 1, 82.9, 95.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Highlands,00710010, 25.4, 100.0, 15.2 to 1, 96.1, 96.1, 100.0 +3.9157894736842107,3.92,a-exp-i3,2022-23,Danvers - Holten Richmond Middle School,00710305, 67.1, 100.0, 11.5 to 1, 84.7, 96.3, 93.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Ivan G Smith,00710032, 27.4, 100.0, 12.4 to 1, 96.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Riverside,00710030, 27.4, 100.0, 12.1 to 1, 81.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Danvers - Willis E Thorpe,00710045, 22.4, 95.5, 14.7 to 1, 82.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 13.4, 100.0, 9.8 to 1, 93.6, 92.5, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Dartmouth - Dartmouth High,00720505, 74.6, 100.0, 13.1 to 1, 88.7, 92.0, 92.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Dartmouth - Dartmouth Middle,00720050, 76.9, 97.4, 10.5 to 1, 93.2, 95.8, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dartmouth - George H Potter,00720030, 28.4, 100.0, 14.1 to 1, 94.2, 96.5, 100.0 +4.134736842105263,4.13,a-exp-i3,2022-23,Dartmouth - James M. Quinn School,00720040, 54.9, 100.0, 12.8 to 1, 87.2, 100.0, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dartmouth - Joseph Demello,00720015, 27.5, 100.0, 12.8 to 1, 89.1, 100.0, 100.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Dedham - Avery,00730010, 27.9, 100.0, 10.6 to 1, 93.9, 100.0, 97.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Dedham - Dedham High,00730505, 63.6, 100.0, 11.2 to 1, 85.4, 95.3, 94.4 +4.138947368421053,4.14,a-exp-i3,2022-23,Dedham - Dedham Middle School,00730305, 58.0, 100.0, 9.3 to 1, 96.6, 94.8, 98.3 +4.054736842105263,4.05,a-exp-i3,2022-23,Dedham - Early Childhood Center,00730005, 23.6, 100.0, 13.0 to 1, 99.5, 100.0, 96.3 +4.067368421052631,4.07,a-exp-i3,2022-23,Dedham - Greenlodge,00730025, 23.7, 100.0, 11.7 to 1, 88.8, 100.0, 96.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dedham - Oakdale,00730030, 20.6, 100.0, 11.9 to 1, 85.5, 100.0, 100.0 +3.8442105263157895,3.84,a-exp-i3,2022-23,Dedham - Riverdale,00730045, 18.7, 94.7, 9.3 to 1, 81.3, 94.7, 91.3 +3.8694736842105266,3.87,a-exp-i3,2022-23,Deerfield - Deerfield Elementary,00740015, 33.0, 97.0, 9.4 to 1, 87.9, 97.0, 91.9 +4.126315789473685,4.13,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 48.2, 100.0, 9.4 to 1, 85.5, 97.9, 98.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 46.7, 100.0, 10.2 to 1, 91.4, 93.6, 100.0 +3.9368421052631577,3.94,a-exp-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 81.7, 100.0, 10.9 to 1, 84.5, 84.8, 93.5 +4.105263157894737,4.11,a-exp-i3,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 38.0, 100.0, 8.9 to 1, 86.8, 97.4, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 33.0, 100.0, 8.5 to 1, 75.8, 97.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 36.5, 97.3, 11.4 to 1, 83.6, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 36.6, 100.0, 11.8 to 1, 94.5, 97.8, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 28.7, 100.0, 12.7 to 1, 96.5, 100.0, 96.6 +4.025263157894736,4.03,a-exp-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 64.3, 99.7, 10.7 to 1, 83.2, 89.4, 95.6 +3.9242105263157896,3.92,a-exp-i3,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 42.6, 98.6, 10.5 to 1, 79.8, 95.3, 93.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dighton-Rehoboth - Palmer River,06500010, 46.5, 100.0, 11.8 to 1, 88.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Douglas - Douglas Elementary School,00770015, 28.1, 100.0, 12.2 to 1, 82.2, 85.8, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Douglas - Douglas High School,00770505, 33.6, 97.0, 9.6 to 1, 88.4, 94.1, 92.3 +4.050526315789474,4.05,a-exp-i3,2022-23,Douglas - Douglas Middle School,00770305, 23.3, 100.0, 12.8 to 1, 82.8, 91.4, 96.2 +3.987368421052632,3.99,a-exp-i3,2022-23,Douglas - Douglas Primary School,00770005, 13.5, 96.3, 16.3 to 1, 88.9, 100.0, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dover - Chickering,00780005, 44.9, 97.8, 11.2 to 1, 83.3, 92.0, 100.0 +3.9073684210526314,3.91,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 53.8, 100.0, 12.4 to 1, 94.4, 96.3, 92.8 +4.130526315789473,4.13,a-exp-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 47.2, 97.9, 10.2 to 1, 86.0, 97.9, 98.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - Brookside Elementary,00790035, 31.3, 100.0, 16.5 to 1, 84.0, 100.0, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Dracut - Dracut Senior High,00790505, 64.8, 100.0, 13.1 to 1, 77.5, 91.7, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - George H. Englesby Elementary School,00790045, 31.7, 100.0, 16.8 to 1, 93.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - Greenmont Avenue,00790030, 16.3, 100.0, 14.7 to 1, 74.8, 93.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 36.5, 100.0, 16.3 to 1, 72.1, 97.3, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 58.0, 98.3, 14.6 to 1, 73.8, 96.6, 95.6 +3.545263157894737,3.55,a-exp-i3,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 19.5, 89.7, 14.3 to 1, 74.4, 100.0, 84.2 +3.92,3.92,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 23.8, 100.0, 14.2 to 1, 91.6, 100.0, 93.1 +4.126315789473685,4.13,a-exp-i3,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 47.8, 100.0, 12.4 to 1, 90.5, 97.9, 98.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 25.5, 100.0, 13.4 to 1, 91.8, 92.4, 96.6 +4.117894736842105,4.12,a-exp-i3,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 43.2, 100.0, 12.7 to 1, 93.2, 95.6, 97.8 +3.995789473684211,4.0,a-exp-i3,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 34.2, 100.0, 13.3 to 1, 89.3, 100.0, 94.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 18.8, 100.0, 12.4 to 1, 93.5, 88.2, 100.0 +3.9789473684210526,3.98,a-exp-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 66.5, 99.7, 13.9 to 1, 92.2, 98.5, 94.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Duxbury - Alden School,00820004, 47.1, 100.0, 12.8 to 1, 96.9, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Duxbury - Chandler Elementary,00820006, 45.3, 100.0, 14.5 to 1, 95.6, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Duxbury - Duxbury High,00820505, 76.5, 99.7, 12.1 to 1, 84.4, 97.4, 96.7 +4.138947368421053,4.14,a-exp-i3,2022-23,Duxbury - Duxbury Middle,00820305, 49.7, 100.0, 12.5 to 1, 94.6, 96.0, 98.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Bridgewater - Central,00830005, 41.8, 100.0, 12.6 to 1, 78.5, 97.6, 100.0 +4.151578947368421,4.15,a-exp-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 69.2, 98.6, 13.1 to 1, 75.4, 92.8, 98.6 +4.130526315789473,4.13,a-exp-i3,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 50.0, 100.0, 12.7 to 1, 74.0, 100.0, 98.1 +3.9157894736842107,3.92,a-exp-i3,2022-23,East Longmeadow - Birchland Park,00870305, 52.9, 98.1, 11.3 to 1, 94.0, 100.0, 93.0 +4.08421052631579,4.08,a-exp-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 65.3, 100.0, 12.5 to 1, 93.6, 96.9, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Longmeadow - Mapleshade,00870010, 24.5, 100.0, 11.9 to 1, 83.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Longmeadow - Meadow Brook,00870013, 42.5, 100.0, 13.3 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,East Longmeadow - Mountain View,00870015, 25.5, 100.0, 10.5 to 1, 88.2, 96.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Eastham - Eastham Elementary,00850005, 18.6, 100.0, 10.0 to 1, 78.5, 100.0, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Easthampton - Easthampton High,00860505, 34.7, 100.0, 10.7 to 1, 92.1, 100.0, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Easthampton - Mountain View School,00860415, 81.3, 98.8, 12.8 to 1, 88.9, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 59.5, 100.0, 12.5 to 1, 87.0, 98.3, 100.0 +4.147368421052631,4.15,a-exp-i3,2022-23,Easton - Easton Middle School,00880405, 65.1, 100.0, 12.6 to 1, 89.2, 95.4, 98.5 +4.117894736842105,4.12,a-exp-i3,2022-23,Easton - Oliver Ames High,00880505, 87.2, 100.0, 12.4 to 1, 90.1, 95.4, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Easton - Richardson Olmsted School,00880025, 51.1, 100.0, 14.9 to 1, 91.6, 100.0, 100.0 +3.92,3.92,a-exp-i3,2022-23,Edgartown - Edgartown Elementary,00890005, 44.2, 96.9, 9.1 to 1, 81.0, 95.8, 93.1 +3.5789473684210527,3.58,a-exp-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 34.9, 100.0, 10.4 to 1, 90.3, 84.5, 85.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Erving - Erving Elementary,00910030, 18.3, 98.4, 7.0 to 1, 81.4, 89.1, 95.2 +3.903157894736842,3.9,a-exp-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 151.1, 98.3, 11.2 to 1, 76.2, 79.5, 92.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Everett - Adams School,00930003, 9.0, 100.0, 20.2 to 1, 88.9, 88.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Everett - Devens School,00930030, 14.6, 100.0, 3.2 to 1, 72.9, 93.1, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Everett - Everett High,00930505, 166.7, 98.8, 13.4 to 1, 82.8, 82.7, 95.5 +3.831578947368421,3.83,a-exp-i3,2022-23,Everett - George Keverian School,00930028, 73.7, 100.0, 12.2 to 1, 82.1, 91.9, 91.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Everett - Lafayette School,00930038, 85.0, 100.0, 12.0 to 1, 80.9, 95.3, 95.5 +3.823157894736842,3.82,a-exp-i3,2022-23,Everett - Madeline English School,00930018, 72.4, 98.6, 10.5 to 1, 68.0, 90.3, 90.8 +3.8021052631578947,3.8,a-exp-i3,2022-23,Everett - Parlin School,00930058, 67.9, 100.0, 14.9 to 1, 84.4, 94.1, 90.3 +3.8273684210526318,3.83,a-exp-i3,2022-23,Everett - Sumner G. Whittier School,00930010, 52.4, 100.0, 12.0 to 1, 72.9, 94.3, 90.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Everett - Webster Extension,00930001, 14.0, 100.0, 12.4 to 1, 85.7, 100.0, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Everett - Webster School,00930015, 47.9, 100.0, 6.9 to 1, 82.0, 95.8, 92.3 +2.1642105263157894,2.16,a-exp-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 125.9, 78.2, 10.8 to 1, 48.1, 82.1, 51.4 +4.071578947368421,4.07,a-exp-i3,2022-23,Fairhaven - East Fairhaven,00940010, 27.7, 96.4, 11.3 to 1, 92.8, 96.4, 96.7 +3.7010526315789476,3.7,a-exp-i3,2022-23,Fairhaven - Fairhaven High,00940505, 49.3, 100.0, 12.8 to 1, 91.6, 92.9, 87.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fairhaven - Hastings Middle,00940305, 37.6, 100.0, 11.6 to 1, 68.1, 87.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fairhaven - Leroy Wood,00940030, 32.3, 100.0, 13.7 to 1, 98.5, 98.5, 100.0 +3.5789473684210527,3.58,a-exp-i3,2022-23,Fall River - B M C Durfee High,00950505, 201.8, 94.7, 12.2 to 1, 72.8, 84.8, 85.0 +3.4021052631578947,3.4,a-exp-i3,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 49.9, 91.8, 13.9 to 1, 73.8, 84.0, 80.8 +3.6842105263157894,3.68,a-exp-i3,2022-23,Fall River - Early Learning Center,00950001, 5.0, 80.0, 11.2 to 1, 0.0, 100.0, 87.5 +3.0989473684210522,3.1,a-exp-i3,2022-23,Fall River - Henry Lord Community School,00950017, 62.7, 82.1, 13.0 to 1, 42.1, 85.6, 73.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fall River - James Tansey,00950140, 17.0, 100.0, 16.2 to 1, 91.0, 94.1, 100.0 +3.6210526315789475,3.62,a-exp-i3,2022-23,Fall River - John J Doran,00950045, 37.3, 97.3, 13.7 to 1, 83.8, 84.0, 86.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Fall River - Letourneau Elementary School,00950013, 34.7, 91.1, 17.2 to 1, 68.0, 94.2, 87.5 +3.6210526315789475,3.62,a-exp-i3,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 38.4, 86.5, 16.6 to 1, 57.2, 92.2, 86.0 +3.528421052631579,3.53,a-exp-i3,2022-23,Fall River - Matthew J Kuss Middle,00950320, 52.4, 92.4, 13.0 to 1, 62.1, 86.3, 83.8 +3.3557894736842107,3.36,a-exp-i3,2022-23,Fall River - Morton Middle,00950315, 49.2, 93.2, 14.0 to 1, 60.5, 75.9, 79.7 +3.5199999999999996,3.52,a-exp-i3,2022-23,Fall River - North End Elementary,00950005, 48.5, 97.5, 14.2 to 1, 62.3, 97.9, 83.6 +2.176842105263158,2.18,a-exp-i3,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 21.0, 76.7, 9.4 to 1, 61.9, 67.2, 51.7 +3.545263157894737,3.55,a-exp-i3,2022-23,Fall River - Samuel Watson,00950145, 14.1, 99.3, 17.2 to 1, 32.0, 92.9, 84.2 +3.953684210526316,3.95,a-exp-i3,2022-23,Fall River - Spencer Borden,00950130, 42.7, 97.7, 13.5 to 1, 75.5, 97.7, 93.9 +3.4694736842105267,3.47,a-exp-i3,2022-23,Fall River - Stone PK-12 School,00950340, 16.6, 100.0, 4.4 to 1, 72.2, 75.9, 82.4 +3.1747368421052635,3.17,a-exp-i3,2022-23,Fall River - Talbot Innovation School,00950305, 52.0, 93.3, 10.3 to 1, 57.5, 87.3, 75.4 +3.8821052631578947,3.88,a-exp-i3,2022-23,Fall River - William S Greene,00950065, 46.9, 97.9, 15.4 to 1, 46.7, 85.1, 92.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - East Falmouth Elementary,00960005, 25.8, 100.0, 10.9 to 1, 96.1, 100.0, 100.0 +3.642105263157895,3.64,a-exp-i3,2022-23,Falmouth - Falmouth High,00960505, 70.7, 99.0, 10.8 to 1, 85.3, 88.3, 86.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - Lawrence,00960405, 53.2, 100.0, 9.0 to 1, 82.2, 94.4, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Falmouth - Morse Pond School,00960305, 45.1, 99.6, 10.7 to 1, 90.7, 97.8, 97.9 +4.105263157894737,4.11,a-exp-i3,2022-23,Falmouth - Mullen-Hall,00960020, 39.3, 100.0, 9.7 to 1, 92.9, 98.0, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - North Falmouth Elementary,00960030, 29.8, 100.0, 10.6 to 1, 86.6, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Falmouth - Teaticket,00960015, 28.1, 100.0, 9.4 to 1, 85.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 14.2, 100.0, 8.5 to 1, 88.7, 100.0, 100.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 59.0, 98.3, 10.0 to 1, 76.3, 84.7, 90.3 +4.046315789473684,4.05,a-exp-i3,2022-23,Fitchburg - Crocker Elementary,00970016, 50.0, 100.0, 12.3 to 1, 94.0, 98.0, 96.1 +3.877894736842105,3.88,a-exp-i3,2022-23,Fitchburg - Fitchburg High,00970505, 96.2, 100.0, 13.0 to 1, 77.1, 89.1, 92.1 +3.8273684210526318,3.83,a-exp-i3,2022-23,Fitchburg - Goodrich Academy,00970510, 10.0, 100.0, 19.4 to 1, 100.0, 100.0, 90.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Fitchburg - McKay Elementary School,00970340, 66.0, 100.0, 11.0 to 1, 77.3, 93.9, 97.1 +3.8652631578947365,3.87,a-exp-i3,2022-23,Fitchburg - Memorial Middle School,00970048, 48.0, 100.0, 12.1 to 1, 89.6, 89.6, 91.8 +4.138947368421053,4.14,a-exp-i3,2022-23,Fitchburg - Reingold Elementary,00970043, 55.0, 100.0, 11.8 to 1, 74.5, 98.2, 98.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Fitchburg - South Street Early Learning Center,00970060, 40.0, 100.0, 14.1 to 1, 82.5, 97.5, 100.0 +3.5621052631578944,3.56,a-exp-i3,2022-23,Florida - Abbott Memorial,00980005, 13.0, 92.3, 7.1 to 1, 76.9, 76.9, 84.6 +2.037894736842105,2.04,a-exp-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 20.5, 73.3, 10.7 to 1, 91.7, 95.1, 48.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Foxborough - Charles Taylor Elementary,00990050, 22.6, 100.0, 11.2 to 1, 95.6, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Foxborough - Foxborough High,00990505, 64.4, 96.9, 12.1 to 1, 92.2, 96.9, 97.2 +4.0884210526315785,4.09,a-exp-i3,2022-23,Foxborough - John J Ahern,00990405, 64.1, 100.0, 11.4 to 1, 91.3, 98.4, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Foxborough - Mabelle M Burrell,00990015, 25.3, 100.0, 13.2 to 1, 92.1, 96.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 31.3, 96.8, 11.3 to 1, 87.2, 100.0, 100.0 NA,NA,a-exp-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550,"","",Not Reported,"","","" -NA,NA,a-exp-i3,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9,"" -NA,NA,a-exp-i3,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3,"" -NA,NA,a-exp-i3,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4,"" -NA,NA,a-exp-i3,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1,"" -NA,NA,a-exp-i3,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4,"" -NA,NA,a-exp-i3,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5,"" -NA,NA,a-exp-i3,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5,"" -NA,NA,a-exp-i3,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6,"" -NA,NA,a-exp-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2,"" -NA,NA,a-exp-i3,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5,"" -NA,NA,a-exp-i3,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3,"" -NA,NA,a-exp-i3,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7,"" -NA,NA,a-exp-i3,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4,"" -NA,NA,a-exp-i3,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4,"" -NA,NA,a-exp-i3,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4,"" -NA,NA,a-exp-i3,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6,"" -NA,NA,a-exp-i3,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3,"" -NA,NA,a-exp-i3,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9,"" -NA,NA,a-exp-i3,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8,"" -NA,NA,a-exp-i3,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0,"" -NA,NA,a-exp-i3,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3,"" -NA,NA,a-exp-i3,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1,"" -NA,NA,a-exp-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1,"" -NA,NA,a-exp-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1,"" -NA,NA,a-exp-i3,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5,"" -NA,NA,a-exp-i3,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1,"" -NA,NA,a-exp-i3,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6,"" +3.3389473684210524,3.34,a-exp-i3,2022-23,Framingham - Barbieri Elementary,01000035, 52.0, 78.5, 13.4 to 1, 58.3, 98.0, 79.3 +3.444210526315789,3.44,a-exp-i3,2022-23,Framingham - Brophy,01000006, 40.3, 82.7, 12.1 to 1, 60.4, 95.0, 81.8 +3.7178947368421054,3.72,a-exp-i3,2022-23,Framingham - Cameron Middle School,01000302, 57.2, 94.8, 9.7 to 1, 80.8, 93.0, 88.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Framingham - Charlotte A Dunning,01000007, 35.2, 100.0, 12.3 to 1, 85.5, 97.2, 100.0 +3.709473684210526,3.71,a-exp-i3,2022-23,Framingham - Framingham High School,01000515, 176.0, 98.8, 14.6 to 1, 77.0, 90.9, 88.1 +3.663157894736842,3.66,a-exp-i3,2022-23,Framingham - Fuller Middle,01000305, 65.9, 95.4, 9.3 to 1, 73.4, 91.3, 87.0 +3.7726315789473683,3.77,a-exp-i3,2022-23,Framingham - Harmony Grove Elementary,01000055, 43.2, 97.7, 11.5 to 1, 69.8, 88.4, 89.6 +4.122105263157895,4.12,a-exp-i3,2022-23,Framingham - Hemenway,01000015, 36.7, 100.0, 14.8 to 1, 82.1, 100.0, 97.9 +NA,NA,a-exp-i3,2022-23,Framingham - Juniper Hill School,01000001, 20.2, 95.1, 13.3 to 1, 93.1, 100.0, 0.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Framingham - King Elementary School,01000005, 29.5, 97.7, 13.3 to 1, 67.2, 97.1, 91.2 +3.8694736842105266,3.87,a-exp-i3,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 33.4, 97.0, 10.3 to 1, 65.1, 94.4, 91.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Framingham - Miriam F McCarthy School,01000050, 40.4, 100.0, 13.6 to 1, 77.5, 97.5, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Framingham - Potter Road,01000039, 40.1, 95.0, 13.5 to 1, 57.6, 97.5, 95.5 +3.608421052631579,3.61,a-exp-i3,2022-23,Framingham - Walsh Middle,01000310, 72.4, 95.9, 10.9 to 1, 78.6, 91.6, 85.7 +2.5726315789473686,2.57,a-exp-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 46.2, 69.1, 8.4 to 1, 61.0, 93.5, 61.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Franklin - Annie Sullivan Middle School,01010040, 35.1, 100.0, 9.1 to 1, 73.4, 91.5, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 9.8, 100.0, 15.2 to 1, 89.8, 100.0, 100.0 +4.016842105263158,4.02,a-exp-i3,2022-23,Franklin - Franklin High,01010505, 118.3, 100.0, 13.8 to 1, 81.8, 96.5, 95.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Helen Keller Elementary,01010012, 44.2, 100.0, 12.0 to 1, 86.2, 95.2, 100.0 +3.987368421052632,3.99,a-exp-i3,2022-23,Franklin - Horace Mann,01010405, 35.3, 100.0, 10.7 to 1, 96.2, 91.5, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - J F Kennedy Memorial,01010013, 26.7, 96.3, 12.7 to 1, 88.0, 99.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Jefferson Elementary,01010010, 27.9, 100.0, 12.5 to 1, 81.4, 95.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Oak Street Elementary,01010030, 28.2, 100.0, 12.9 to 1, 88.3, 95.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Franklin - Parmenter,01010032, 24.9, 100.0, 11.6 to 1, 76.3, 92.4, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Franklin - Remington Middle,01010310, 40.3, 100.0, 9.1 to 1, 89.2, 100.0, 97.7 +3.6589473684210527,3.66,a-exp-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 57.6, 94.8, 10.5 to 1, 77.4, 91.3, 86.9 +4.08,4.08,a-exp-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 58.5, 98.3, 12.5 to 1, 92.8, 93.2, 96.9 +4.096842105263158,4.1,a-exp-i3,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 35.0, 100.0, 14.1 to 1, 85.7, 94.3, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 35.0, 100.0, 12.2 to 1, 91.4, 100.0, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 52.2, 100.0, 12.9 to 1, 84.7, 90.4, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 31.0, 100.0, 14.6 to 1, 93.5, 100.0, 100.0 +3.2884210526315787,3.29,a-exp-i3,2022-23,Frontier - Frontier Regional,06700505, 55.3, 99.9, 11.0 to 1, 87.2, 92.8, 78.1 +3.0063157894736845,3.01,a-exp-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 4.8, 100.0, 22.6 to 1, 100.0, 100.0, 71.4 +4.105263157894737,4.11,a-exp-i3,2022-23,Gardner - Gardner Elementary School,01030001, 61.2, 99.3, 16.1 to 1, 74.8, 91.7, 97.5 +3.7726315789473683,3.77,a-exp-i3,2022-23,Gardner - Gardner High,01030505, 54.0, 98.5, 14.9 to 1, 85.2, 86.6, 89.6 +4.029473684210527,4.03,a-exp-i3,2022-23,Gardner - Gardner Middle School,01030405, 37.7, 100.0, 13.0 to 1, 75.4, 88.3, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gateway - Chester Elementary,06720059, 11.7, 100.0, 10.7 to 1, 71.8, 88.9, 100.0 +3.528421052631579,3.53,a-exp-i3,2022-23,Gateway - Gateway Regional High,06720505, 23.9, 95.0, 6.8 to 1, 88.6, 95.8, 83.8 +3.3936842105263154,3.39,a-exp-i3,2022-23,Gateway - Gateway Regional Middle School,06720405, 20.0, 86.0, 9.4 to 1, 83.1, 99.0, 80.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,Gateway - Littleville Elementary School,06720143, 28.1, 96.4, 10.6 to 1, 87.0, 98.2, 94.1 +4.0,4.0,a-exp-i3,2022-23,Georgetown - Georgetown High School,01050505, 30.1, 100.0, 9.9 to 1, 92.5, 88.7, 95.0 +3.431578947368421,3.43,a-exp-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 15.8, 100.0, 11.8 to 1, 83.4, 79.6, 81.5 +4.130526315789473,4.13,a-exp-i3,2022-23,Georgetown - Penn Brook,01050010, 43.1, 100.0, 16.3 to 1, 97.0, 99.3, 98.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Georgetown - Perley Elementary,01050005, 1.0, 100.0, 82.0 to 1, 0.0, 0.0, 100.0 +3.608421052631579,3.61,a-exp-i3,2022-23,Gill-Montague - Gill Elementary,06740005, 8.6, 100.0, 12.2 to 1, 90.7, 100.0, 85.7 +4.050526315789474,4.05,a-exp-i3,2022-23,Gill-Montague - Great Falls Middle,06740310, 21.6, 100.0, 9.6 to 1, 92.7, 88.4, 96.2 +4.0,4.0,a-exp-i3,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 15.2, 100.0, 9.6 to 1, 93.4, 100.0, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 20.5, 100.0, 10.3 to 1, 90.3, 95.1, 100.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 20.7, 99.8, 9.4 to 1, 83.3, 91.1, 88.9 +3.6842105263157894,3.68,a-exp-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43.2, 97.7, 11.5 to 1, 64.4, 85.7, 87.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Beeman Memorial,01070010, 31.5, 100.0, 9.5 to 1, 66.7, 92.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - East Gloucester Elementary,01070020, 19.4, 100.0, 9.3 to 1, 74.2, 94.8, 100.0 +3.953684210526316,3.95,a-exp-i3,2022-23,Gloucester - Gloucester High,01070505, 78.2, 98.7, 10.3 to 1, 86.6, 89.1, 93.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Gloucester PreSchool,01070025, 8.0, 100.0, 13.1 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Plum Cove School,01070042, 16.6, 100.0, 12.2 to 1, 91.0, 91.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 58.0, 100.0, 10.7 to 1, 77.6, 84.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - Veterans Memorial,01070045, 25.3, 100.0, 8.5 to 1, 84.2, 92.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Gloucester - West Parish,01070050, 29.0, 100.0, 12.9 to 1, 75.9, 96.6, 100.0 NA,NA,a-exp-i3,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0,N/A,"","","" -NA,NA,a-exp-i3,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7,"" -NA,NA,a-exp-i3,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5,"" -NA,NA,a-exp-i3,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1,"" -NA,NA,a-exp-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2,"" -NA,NA,a-exp-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9,"" -NA,NA,a-exp-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9,"" -NA,NA,a-exp-i3,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1,"" -NA,NA,a-exp-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2,"" -NA,NA,a-exp-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1,"" -NA,NA,a-exp-i3,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0,"" -NA,NA,a-exp-i3,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3,"" -NA,NA,a-exp-i3,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1,"" -NA,NA,a-exp-i3,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6,"" -NA,NA,a-exp-i3,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0,"" -NA,NA,a-exp-i3,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3,"" -NA,NA,a-exp-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6,"" -NA,NA,a-exp-i3,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5,"" -NA,NA,a-exp-i3,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7,"" -NA,NA,a-exp-i3,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6,"" -NA,NA,a-exp-i3,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6,"" -NA,NA,a-exp-i3,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6,"" -NA,NA,a-exp-i3,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3,"" -NA,NA,a-exp-i3,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6,"" -NA,NA,a-exp-i3,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8,"" -NA,NA,a-exp-i3,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9,"" -NA,NA,a-exp-i3,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6,"" -NA,NA,a-exp-i3,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7,"" -NA,NA,a-exp-i3,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1,"" -NA,NA,a-exp-i3,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9,"" -NA,NA,a-exp-i3,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5,"" -NA,NA,a-exp-i3,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8,"" -NA,NA,a-exp-i3,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7,"" -NA,NA,a-exp-i3,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9,"" -NA,NA,a-exp-i3,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0,"" -NA,NA,a-exp-i3,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3,"" -NA,NA,a-exp-i3,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0,"" -NA,NA,a-exp-i3,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4,"" -NA,NA,a-exp-i3,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6,"" -NA,NA,a-exp-i3,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7,"" -NA,NA,a-exp-i3,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2,"" -NA,NA,a-exp-i3,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4,"" -NA,NA,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1,"" -NA,NA,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3,"" -NA,NA,a-exp-i3,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4,"" -NA,NA,a-exp-i3,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8,"" -NA,NA,a-exp-i3,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3,"" -NA,NA,a-exp-i3,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3,"" -NA,NA,a-exp-i3,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7,"" -NA,NA,a-exp-i3,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3,"" -NA,NA,a-exp-i3,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3,"" -NA,NA,a-exp-i3,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0,"" -NA,NA,a-exp-i3,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1,"" -NA,NA,a-exp-i3,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1,"" -NA,NA,a-exp-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5,"" -NA,NA,a-exp-i3,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5,"" -NA,NA,a-exp-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4,"" -NA,NA,a-exp-i3,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5,"" -NA,NA,a-exp-i3,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9,"" -NA,NA,a-exp-i3,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6,"" -NA,NA,a-exp-i3,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5,"" -NA,NA,a-exp-i3,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1,"" -NA,NA,a-exp-i3,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9,"" -NA,NA,a-exp-i3,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9,"" -NA,NA,a-exp-i3,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9,"" -NA,NA,a-exp-i3,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2,"" -NA,NA,a-exp-i3,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0,"" -NA,NA,a-exp-i3,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1,"" -NA,NA,a-exp-i3,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0,"" -NA,NA,a-exp-i3,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5,"" -NA,NA,a-exp-i3,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5,"" -NA,NA,a-exp-i3,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8,"" -NA,NA,a-exp-i3,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7,"" -NA,NA,a-exp-i3,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3,"" -NA,NA,a-exp-i3,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1,"" -NA,NA,a-exp-i3,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1,"" -NA,NA,a-exp-i3,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0,"" -NA,NA,a-exp-i3,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4,"" -NA,NA,a-exp-i3,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7,"" -NA,NA,a-exp-i3,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5,"" -NA,NA,a-exp-i3,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4,"" -NA,NA,a-exp-i3,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7,"" -NA,NA,a-exp-i3,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9,"" -NA,NA,a-exp-i3,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2,"" +3.705263157894737,3.71,a-exp-i3,2022-23,Grafton - Grafton High School,01100505, 72.0, 98.6, 12.2 to 1, 92.9, 94.7, 88.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Grafton - Grafton Middle,01100305, 40.7, 100.0, 12.9 to 1, 90.2, 97.5, 97.8 +4.134736842105263,4.13,a-exp-i3,2022-23,Grafton - Millbury Street Elementary School,01100200, 50.8, 100.0, 11.7 to 1, 84.3, 100.0, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Grafton - North Grafton Elementary,01100025, 19.3, 100.0, 12.7 to 1, 89.6, 100.0, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Grafton - North Street Elementary School,01100030, 45.3, 97.8, 12.1 to 1, 84.5, 100.0, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Grafton - South Grafton Elementary,01100005, 20.0, 100.0, 14.7 to 1, 87.5, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Granby - East Meadow,01110004, 31.3, 99.6, 13.0 to 1, 93.5, 97.1, 97.2 +3.9494736842105262,3.95,a-exp-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 29.5, 100.0, 10.5 to 1, 86.1, 93.2, 93.8 +3.8526315789473684,3.85,a-exp-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 72.4, 97.2, 15.9 to 1, 84.8, 95.9, 91.5 +3.7557894736842106,3.76,a-exp-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 142.8, 95.8, 9.9 to 1, 88.8, 83.9, 89.2 +3.6884210526315786,3.69,a-exp-i3,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 151.0, 95.4, 11.2 to 1, 83.4, 78.1, 87.6 +4.012631578947368,4.01,a-exp-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 214.9, 100.0, 10.7 to 1, 83.7, 84.2, 95.3 +3.9326315789473685,3.93,a-exp-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 193.9, 99.5, 10.8 to 1, 91.3, 89.2, 93.4 +4.029473684210527,4.03,a-exp-i3,2022-23,Greenfield - Discovery School at Four Corners,01140025, 20.0, 95.0, 10.7 to 1, 67.2, 100.0, 95.7 +4.008421052631579,4.01,a-exp-i3,2022-23,Greenfield - Federal Street School,01140010, 17.2, 100.0, 11.2 to 1, 79.9, 88.4, 95.2 +3.6842105263157894,3.68,a-exp-i3,2022-23,Greenfield - Greenfield High,01140505, 42.8, 100.0, 10.6 to 1, 88.3, 83.6, 87.5 +4.08421052631579,4.08,a-exp-i3,2022-23,Greenfield - Greenfield Middle,01140305, 30.4, 96.7, 9.9 to 1, 76.9, 90.1, 97.0 +3.987368421052632,3.99,a-exp-i3,2022-23,Greenfield - Newton School,01140035, 19.8, 95.0, 10.2 to 1, 59.7, 95.0, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 5.3, 93.8, 15.4 to 1, 37.5, 93.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Groton-Dunstable - Boutwell School,06730001, 5.0, 100.0, 18.8 to 1, 100.0, 100.0, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Groton-Dunstable - Florence Roche School,06730010, 40.4, 100.0, 13.0 to 1, 70.3, 87.6, 95.2 +4.063157894736842,4.06,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 53.4, 100.0, 12.7 to 1, 90.6, 96.3, 96.5 +4.143157894736842,4.14,a-exp-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 60.2, 100.0, 12.0 to 1, 95.0, 98.3, 98.4 +3.8989473684210525,3.9,a-exp-i3,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 25.9, 100.0, 12.7 to 1, 100.0, 96.1, 92.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hadley - Hadley Elementary,01170015, 21.5, 100.0, 12.6 to 1, 81.4, 100.0, 100.0 +3.6294736842105264,3.63,a-exp-i3,2022-23,Hadley - Hopkins Academy,01170505, 30.6, 100.0, 7.3 to 1, 86.9, 88.6, 86.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Halifax - Halifax Elementary,01180005, 38.6, 100.0, 14.5 to 1, 91.5, 99.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 18.7, 100.0, 14.2 to 1, 89.3, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hamilton-Wenham - Cutler School,06750010, 21.6, 100.0, 11.8 to 1, 81.5, 95.4, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 41.1, 100.0, 10.9 to 1, 92.7, 96.5, 94.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 39.7, 100.0, 9.3 to 1, 89.4, 99.0, 97.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hamilton-Wenham - Winthrop School,06750015, 26.4, 100.0, 11.9 to 1, 96.2, 100.0, 100.0 +3.3684210526315788,3.37,a-exp-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 46.7, 80.3, 11.8 to 1, 60.5, 81.3, 80.0 +2.8757894736842102,2.88,a-exp-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 34.3, 91.3, 10.7 to 1, 61.5, 65.0, 68.3 +4.07578947368421,4.08,a-exp-i3,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27.5, 100.0, 11.2 to 1, 92.7, 97.8, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 24.3, 100.0, 14.5 to 1, 91.8, 100.0, 100.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 71.5, 100.0, 13.8 to 1, 93.0, 95.8, 98.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hampden-Wilbraham - Soule Road,06800030, 21.8, 100.0, 14.2 to 1, 90.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 22.6, 100.0, 13.4 to 1, 95.6, 100.0, 100.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 47.4, 100.0, 12.7 to 1, 91.6, 100.0, 98.1 +4.1557894736842105,4.16,a-exp-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 74.0, 100.0, 8.9 to 1, 88.5, 94.6, 98.7 +3.789473684210526,3.79,a-exp-i3,2022-23,Hancock - Hancock Elementary,01210005, 7.4, 97.3, 8.0 to 1, 97.3, 86.5, 90.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Hanover - Cedar Elementary,01220004, 31.6, 96.8, 14.9 to 1, 87.3, 100.0, 97.3 +4.122105263157895,4.12,a-exp-i3,2022-23,Hanover - Center Elementary,01220005, 43.5, 97.7, 14.7 to 1, 79.3, 97.7, 97.9 +4.147368421052631,4.15,a-exp-i3,2022-23,Hanover - Hanover High,01220505, 59.2, 100.0, 11.3 to 1, 92.7, 95.6, 98.5 +4.151578947368421,4.15,a-exp-i3,2022-23,Hanover - Hanover Middle,01220305, 64.0, 100.0, 12.5 to 1, 90.5, 96.6, 98.6 +3.848421052631579,3.85,a-exp-i3,2022-23,Harvard - Bromfield,01250505, 55.2, 100.0, 10.1 to 1, 94.6, 94.6, 91.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Harvard - Hildreth Elementary School,01250005, 36.5, 100.0, 12.6 to 1, 86.3, 97.3, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Hatfield - Hatfield Elementary,01270005, 19.2, 100.0, 11.0 to 1, 81.8, 89.6, 95.2 +3.8442105263157895,3.84,a-exp-i3,2022-23,Hatfield - Smith Academy,01270505, 20.1, 95.0, 6.6 to 1, 80.1, 85.1, 91.3 +3.608421052631579,3.61,a-exp-i3,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 6.0, 83.3, 5.8 to 1, 50.0, 83.3, 85.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Bradford Elementary,01280008, 45.5, 100.0, 11.2 to 1, 78.0, 95.6, 100.0 +4.16,4.16,a-exp-i3,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 84.0, 100.0, 12.7 to 1, 86.9, 96.4, 98.8 +4.143157894736842,4.14,a-exp-i3,2022-23,Haverhill - Consentino Middle School,01280100, 57.4, 98.3, 12.2 to 1, 71.5, 91.3, 98.4 +4.130526315789473,4.13,a-exp-i3,2022-23,Haverhill - Dr Paul Nettle,01280050, 50.0, 98.0, 11.4 to 1, 70.0, 84.0, 98.1 +3.8610526315789473,3.86,a-exp-i3,2022-23,Haverhill - Gateway Academy,01280515, 6.7, 100.0, 12.1 to 1, 55.2, 100.0, 91.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Golden Hill,01280026, 42.0, 100.0, 11.3 to 1, 73.8, 95.2, 100.0 +1.4021052631578945,1.4,a-exp-i3,2022-23,Haverhill - Greenleaf Academy,01280033, 6.0, 100.0, 5.3 to 1, 66.7, 83.3, 33.3 +3.991578947368421,3.99,a-exp-i3,2022-23,Haverhill - Haverhill High,01280505, 151.6, 98.0, 12.8 to 1, 82.8, 90.8, 94.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - John G Whittier,01280085, 37.6, 100.0, 12.9 to 1, 75.4, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Moody,01280045, 17.0, 100.0, 10.6 to 1, 76.5, 88.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Moody Preschool Extension,01280001, 8.0, 100.0, 12.8 to 1, 75.0, 87.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 45.4, 100.0, 11.5 to 1, 82.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Silver Hill Elementary School,01280067, 40.3, 100.0, 11.7 to 1, 82.0, 97.5, 100.0 +3.953684210526316,3.95,a-exp-i3,2022-23,Haverhill - Tilton,01280075, 31.0, 100.0, 9.5 to 1, 87.1, 100.0, 93.9 +4.008421052631579,4.01,a-exp-i3,2022-23,Haverhill - Tilton Upper Middle School,01280105, 16.9, 100.0, 10.1 to 1, 88.4, 92.9, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Haverhill - Walnut Square,01280080, 12.4, 100.0, 11.0 to 1, 81.4, 97.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hawlemont - Hawlemont Regional,06850005, 9.4, 100.0, 9.7 to 1, 80.8, 95.7, 100.0 +1.6042105263157895,1.6,a-exp-i3,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 16.8, 47.8, 6.8 to 1, 29.9, 88.1, 38.1 +1.9284210526315788,1.93,a-exp-i3,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 24.2, 53.7, 12.6 to 1, 58.1, 95.9, 45.8 +2.863157894736842,2.86,a-exp-i3,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 21.1, 91.6, 10.3 to 1, 68.0, 90.5, 68.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Hingham - East Elementary School,01310005, 41.8, 97.6, 12.0 to 1, 92.8, 100.0, 95.7 +4.126315789473685,4.13,a-exp-i3,2022-23,Hingham - Hingham High,01310505, 92.6, 100.0, 12.6 to 1, 90.7, 96.8, 98.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Hingham - Hingham Middle School,01310410, 75.5, 100.0, 11.2 to 1, 91.7, 98.7, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hingham - Plymouth River,01310019, 30.6, 100.0, 12.4 to 1, 80.4, 96.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hingham - South Elementary,01310020, 37.8, 100.0, 13.3 to 1, 78.8, 97.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hingham - Wm L Foster Elementary,01310010, 34.2, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 46.7, 97.9, 13.6 to 1, 76.9, 94.9, 92.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Holbrook - John F Kennedy,01330018, 50.0, 100.0, 13.5 to 1, 90.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Holland - Holland Elementary,01350005, 19.4, 100.0, 11.9 to 1, 78.4, 100.0, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,Holliston - Holliston High,01360505, 64.8, 98.1, 12.6 to 1, 87.7, 96.0, 94.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Holliston - Miller School,01360007, 42.3, 100.0, 14.3 to 1, 88.3, 97.3, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Holliston - Placentino Elementary,01360010, 47.5, 100.0, 14.8 to 1, 80.7, 95.0, 96.4 +3.991578947368421,3.99,a-exp-i3,2022-23,Holliston - Robert H. Adams Middle School,01360305, 52.3, 99.0, 12.5 to 1, 82.8, 90.4, 94.8 +3.528421052631579,3.53,a-exp-i3,2022-23,Holyoke - E N White Elementary,01370045, 36.0, 88.9, 11.5 to 1, 69.4, 91.7, 83.8 +3.663157894736842,3.66,a-exp-i3,2022-23,Holyoke - H.B. Lawrence School,01370070, 19.5, 100.0, 8.9 to 1, 51.3, 100.0, 87.0 +3.2757894736842106,3.28,a-exp-i3,2022-23,Holyoke - Holyoke High,01370505, 128.3, 88.3, 11.8 to 1, 63.4, 84.8, 77.8 +3.705263157894737,3.71,a-exp-i3,2022-23,Holyoke - Holyoke Middle School,01370325, 25.0, 88.0, 11.2 to 1, 36.0, 84.0, 88.0 +3.254736842105263,3.25,a-exp-i3,2022-23,Holyoke - Holyoke STEM Academy,01370320, 18.7, 89.3, 15.5 to 1, 62.6, 94.7, 77.3 +2.1052631578947367,2.11,a-exp-i3,2022-23,Holyoke - Joseph Metcalf School,01370003, 33.0, 59.1, 11.3 to 1, 36.4, 81.8, 50.0 +3.317894736842105,3.32,a-exp-i3,2022-23,Holyoke - Kelly Elementary,01370040, 29.8, 86.6, 10.9 to 1, 37.0, 83.2, 78.8 +3.414736842105263,3.41,a-exp-i3,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37.0, 94.6, 10.8 to 1, 54.1, 91.9, 81.1 +3.6842105263157894,3.68,a-exp-i3,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 30.5, 96.7, 11.0 to 1, 59.0, 96.7, 87.5 +2.5052631578947366,2.51,a-exp-i3,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 34.8, 91.4, 10.3 to 1, 56.9, 85.6, 59.5 +3.768421052631579,3.77,a-exp-i3,2022-23,Holyoke - Morgan Full Service Community School,01370025, 19.0, 100.0, 15.0 to 1, 63.2, 94.7, 89.5 +2.808421052631579,2.81,a-exp-i3,2022-23,Holyoke - William R. Peck School,01370030, 22.7, 76.9, 8.5 to 1, 41.6, 91.2, 66.7 +2.1642105263157894,2.16,a-exp-i3,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 41.5, 74.7, 16.5 to 1, 63.9, 90.4, 51.4 +3.9621052631578944,3.96,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 33.0, 96.9, 11.4 to 1, 66.8, 100.0, 94.1 +3.8273684210526318,3.83,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 31.0, 91.6, 10.4 to 1, 78.7, 87.1, 90.9 +3.8147368421052628,3.81,a-exp-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 29.9, 95.3, 9.6 to 1, 81.9, 93.3, 90.6 +4.029473684210527,4.03,a-exp-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 44.7, 100.0, 9.7 to 1, 82.1, 92.3, 95.7 +3.957894736842105,3.96,a-exp-i3,2022-23,Hopedale - Memorial,01380010, 47.1, 100.0, 11.8 to 1, 75.4, 92.4, 94.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopedale - Park Street School,01380003, 6.5, 100.0, 15.7 to 1, 56.9, 81.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Elmwood,01390010, 44.5, 100.0, 14.1 to 1, 79.8, 97.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Hopkins Elementary School,01390015, 42.1, 100.0, 15.2 to 1, 86.6, 99.0, 100.0 +3.890526315789474,3.89,a-exp-i3,2022-23,Hopkinton - Hopkinton High,01390505, 87.7, 100.0, 14.1 to 1, 91.3, 92.9, 92.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Hopkinton Middle School,01390305, 66.6, 100.0, 14.6 to 1, 89.5, 95.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 6.1, 100.0, 16.2 to 1, 98.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hopkinton - Marathon Elementary School,01390005, 41.6, 100.0, 14.2 to 1, 91.1, 99.8, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Hudson - C A Farley,01410030, 42.5, 97.6, 10.1 to 1, 77.6, 95.3, 97.8 +3.557894736842105,3.56,a-exp-i3,2022-23,Hudson - David J. Quinn Middle School,01410410, 57.3, 93.0, 9.7 to 1, 89.5, 98.3, 84.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hudson - Forest Avenue Elementary,01410015, 30.2, 100.0, 9.4 to 1, 76.8, 96.7, 100.0 +3.8147368421052628,3.81,a-exp-i3,2022-23,Hudson - Hudson High,01410505, 81.0, 93.2, 10.0 to 1, 88.9, 96.3, 90.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hudson - Mulready Elementary,01410007, 29.2, 100.0, 8.3 to 1, 84.6, 97.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hull - Hull High,01420505, 24.9, 100.0, 9.7 to 1, 88.0, 96.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hull - Lillian M Jacobs,01420015, 34.2, 100.0, 10.6 to 1, 86.0, 97.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Hull - Memorial Middle,01420305, 20.1, 100.0, 8.6 to 1, 80.1, 85.1, 100.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 70.5, 87.8, 11.3 to 1, 74.0, 83.4, 75.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Ipswich - Ipswich High,01440505, 49.8, 98.0, 10.1 to 1, 88.0, 100.0, 91.2 +4.113684210526316,4.11,a-exp-i3,2022-23,Ipswich - Ipswich Middle School,01440305, 39.4, 100.0, 9.2 to 1, 83.8, 94.9, 97.7 +4.1010526315789475,4.1,a-exp-i3,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 36.2, 100.0, 10.1 to 1, 72.3, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ipswich - Winthrop,01440015, 39.3, 100.0, 9.5 to 1, 89.8, 97.5, 100.0 +1.936842105263158,1.94,a-exp-i3,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 43.0, 82.6, 13.4 to 1, 40.7, 89.5, 46.0 +1.6463157894736842,1.65,a-exp-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 116.2, 68.6, 13.9 to 1, 44.9, 88.4, 39.1 +4.067368421052631,4.07,a-exp-i3,2022-23,King Philip - King Philip Middle School,06900510, 56.5, 98.2, 11.9 to 1, 79.1, 96.5, 96.6 +4.021052631578947,4.02,a-exp-i3,2022-23,King Philip - King Philip Regional High,06900505, 85.0, 100.0, 13.4 to 1, 88.2, 92.9, 95.5 +4.092631578947368,4.09,a-exp-i3,2022-23,Kingston - Kingston Elementary,01450005, 34.8, 100.0, 17.8 to 1, 94.0, 98.6, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Kingston - Kingston Intermediate,01450020, 42.5, 100.0, 14.0 to 1, 85.9, 97.6, 100.0 +2.9642105263157896,2.96,a-exp-i3,2022-23,Lawrence - Alexander B Bruce,01490015, 48.9, 91.8, 8.4 to 1, 63.7, 85.7, 70.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lawrence - Arlington Elementary,01490009, 63.0, 100.0, 9.2 to 1, 60.3, 100.0, 100.0 +3.221052631578947,3.22,a-exp-i3,2022-23,Lawrence - Arlington Middle School,01490017, 47.1, 100.0, 12.2 to 1, 59.3, 84.7, 76.5 +3.957894736842105,3.96,a-exp-i3,2022-23,Lawrence - Edward F. Parthum,01490053, 48.0, 93.7, 14.1 to 1, 72.9, 83.3, 94.0 +3.553684210526316,3.55,a-exp-i3,2022-23,Lawrence - Emily G Wetherbee,01490080, 64.0, 89.3, 7.7 to 1, 50.0, 89.1, 84.4 +4.012631578947368,4.01,a-exp-i3,2022-23,Lawrence - Francis M Leahy,01490040, 39.0, 97.4, 9.7 to 1, 59.0, 92.3, 95.3 +3.7557894736842106,3.76,a-exp-i3,2022-23,Lawrence - Frost Middle School,01490525, 36.6, 94.8, 14.1 to 1, 77.9, 85.8, 89.2 +3.663157894736842,3.66,a-exp-i3,2022-23,Lawrence - Gerard A. Guilmette,01490022, 53.0, 96.2, 9.1 to 1, 41.5, 86.8, 87.0 +3.2757894736842106,3.28,a-exp-i3,2022-23,Lawrence - Guilmette Middle School,01490025, 52.5, 92.4, 8.7 to 1, 73.3, 90.5, 77.8 +3.768421052631579,3.77,a-exp-i3,2022-23,Lawrence - High School Learning Center,01490536, 15.6, 96.8, 19.9 to 1, 93.6, 87.8, 89.5 +3.8610526315789473,3.86,a-exp-i3,2022-23,Lawrence - James F Hennessey,01490020, 34.8, 91.4, 9.1 to 1, 77.7, 97.1, 91.7 +3.705263157894737,3.71,a-exp-i3,2022-23,Lawrence - John Breen School,01490003, 24.5, 87.8, 10.5 to 1, 75.5, 95.9, 88.0 +3.608421052631579,3.61,a-exp-i3,2022-23,Lawrence - John K Tarbox,01490075, 24.0, 100.0, 11.5 to 1, 66.7, 95.8, 85.7 +3.9115789473684215,3.91,a-exp-i3,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 14.0, 92.9, 11.7 to 1, 64.3, 78.6, 92.9 +3.768421052631579,3.77,a-exp-i3,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 18.0, 88.9, 10.5 to 1, 77.8, 100.0, 89.5 +3.1326315789473687,3.13,a-exp-i3,2022-23,Lawrence - Lawrence High School,01490515, 234.1, 86.5, 13.2 to 1, 57.9, 82.7, 74.4 +3.0778947368421052,3.08,a-exp-i3,2022-23,Lawrence - Leonard Middle School,01490090, 21.8, 90.8, 15.0 to 1, 40.2, 72.4, 73.1 +2.8968421052631577,2.9,a-exp-i3,2022-23,Lawrence - Oliver Elementary School,01490048, 44.0, 78.4, 9.8 to 1, 40.9, 94.3, 68.8 +3.5326315789473686,3.53,a-exp-i3,2022-23,Lawrence - Oliver Middle School,01490049, 29.0, 93.1, 12.1 to 1, 48.3, 93.1, 83.9 +3.8105263157894735,3.81,a-exp-i3,2022-23,Lawrence - Parthum Middle School,01490027, 41.8, 92.8, 13.6 to 1, 76.1, 80.9, 90.5 +3.0063157894736845,3.01,a-exp-i3,2022-23,Lawrence - RISE Academy,01490615, 8.8, 47.7, 6.4 to 1, 45.5, 83.0, 71.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lawrence - Robert Frost,01490018, 47.0, 97.9, 12.2 to 1, 76.6, 93.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 15.0, 100.0, 13.5 to 1, 66.7, 100.0, 100.0 +3.2126315789473683,3.21,a-exp-i3,2022-23,Lawrence - School for Exceptional Studies,01490537, 33.0, 94.0, 3.1 to 1, 63.6, 90.9, 76.3 +3.991578947368421,3.99,a-exp-i3,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 51.6, 96.1, 12.7 to 1, 70.9, 94.2, 94.8 +3.490526315789474,3.49,a-exp-i3,2022-23,Lawrence - Spark Academy,01490085, 40.0, 90.0, 10.9 to 1, 60.0, 85.0, 82.9 +3.6336842105263156,3.63,a-exp-i3,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 42.1, 97.6, 20.3 to 1, 41.5, 88.1, 86.3 +4.08,4.08,a-exp-i3,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 31.8, 100.0, 21.0 to 1, 47.2, 66.0, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lee - Lee Elementary,01500025, 36.1, 100.0, 9.4 to 1, 88.9, 94.5, 100.0 +3.5073684210526315,3.51,a-exp-i3,2022-23,Lee - Lee Middle/High School,01500505, 36.2, 100.0, 9.0 to 1, 83.4, 89.0, 83.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leicester - Leicester Elementary,01510005, 36.9, 100.0, 13.4 to 1, 89.2, 100.0, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Leicester - Leicester High,01510505, 31.2, 100.0, 13.3 to 1, 80.8, 96.8, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leicester - Leicester Integrated Preschool,01510001, 3.1, 100.0, 12.3 to 1, 100.0, 100.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Leicester - Leicester Middle,01510015, 31.0, 96.8, 13.2 to 1, 90.3, 93.5, 96.8 +3.9663157894736845,3.97,a-exp-i3,2022-23,Lenox - Lenox Memorial High,01520505, 50.3, 100.0, 8.6 to 1, 92.6, 99.8, 94.2 +3.776842105263158,3.78,a-exp-i3,2022-23,Lenox - Morris,01520015, 24.2, 100.0, 14.0 to 1, 87.7, 100.0, 89.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leominster - Bennett,01530003, 5.8, 100.0, 16.3 to 1, 87.0, 100.0, 100.0 +3.3305263157894736,3.33,a-exp-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 32.3, 87.6, 24.8 to 1, 71.5, 90.7, 79.1 +4.122105263157895,4.12,a-exp-i3,2022-23,Leominster - Fall Brook,01530007, 44.8, 100.0, 13.7 to 1, 72.0, 93.3, 97.9 +4.109473684210526,4.11,a-exp-i3,2022-23,Leominster - Frances Drake School,01530010, 41.5, 100.0, 11.2 to 1, 86.7, 98.1, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leominster - Johnny Appleseed,01530025, 47.6, 100.0, 13.9 to 1, 83.2, 100.0, 100.0 +2.526315789473684,2.53,a-exp-i3,2022-23,Leominster - Leominster Center for Excellence,01530515, 3.3, 100.0, 15.3 to 1, 79.6, 54.1, 60.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Leominster - Leominster High School,01530505, 94.9, 98.0, 10.9 to 1, 84.9, 91.5, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leominster - Lincoln School,01530005, 4.0, 100.0, 7.5 to 1, 75.0, 100.0, 100.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Leominster - Northwest,01530030, 52.1, 98.1, 14.0 to 1, 71.2, 98.1, 98.1 +3.789473684210526,3.79,a-exp-i3,2022-23,Leominster - Priest Street,01530040, 9.6, 100.0, 14.0 to 1, 68.8, 100.0, 90.0 +4.105263157894737,4.11,a-exp-i3,2022-23,Leominster - Samoset School,01530045, 40.0, 100.0, 12.6 to 1, 75.0, 85.0, 97.5 +4.071578947368421,4.07,a-exp-i3,2022-23,Leominster - Sky View Middle School,01530320, 58.7, 98.8, 15.1 to 1, 81.9, 86.4, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Leverett - Leverett Elementary,01540005, 15.9, 100.0, 8.8 to 1, 87.5, 93.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Bowman,01550008, 37.7, 100.0, 12.0 to 1, 94.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Bridge,01550006, 36.1, 100.0, 10.4 to 1, 87.7, 94.5, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Lexington - Fiske,01550015, 38.1, 100.0, 9.0 to 1, 88.8, 100.0, 97.8 +4.117894736842105,4.12,a-exp-i3,2022-23,Lexington - Harrington,01550030, 38.5, 100.0, 10.3 to 1, 88.2, 97.4, 97.8 +4.16421052631579,4.16,a-exp-i3,2022-23,Lexington - Jonas Clarke Middle,01550305, 88.0, 100.0, 9.4 to 1, 90.3, 93.7, 98.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Joseph Estabrook,01550010, 43.6, 97.7, 12.4 to 1, 80.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lexington - Lexington Children's Place,01550001, 9.0, 100.0, 8.3 to 1, 88.9, 100.0, 100.0 +4.046315789473684,4.05,a-exp-i3,2022-23,Lexington - Lexington High,01550505, 188.1, 99.4, 12.2 to 1, 84.1, 93.9, 96.1 +4.143157894736842,4.14,a-exp-i3,2022-23,Lexington - Maria Hastings,01550035, 52.0, 98.1, 11.5 to 1, 78.2, 98.1, 98.4 +4.0,4.0,a-exp-i3,2022-23,Lexington - Wm Diamond Middle,01550310, 93.3, 98.9, 10.1 to 1, 82.5, 96.2, 95.0 NA,NA,a-exp-i3,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 45.2, 65.2, 9.1 to 1, 24.9, 93.4,"" -NA,NA,a-exp-i3,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9,"" -NA,NA,a-exp-i3,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6,"" -NA,NA,a-exp-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1,"" -NA,NA,a-exp-i3,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6,"" -NA,NA,a-exp-i3,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3,"" -NA,NA,a-exp-i3,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2,"" -NA,NA,a-exp-i3,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5,"" -NA,NA,a-exp-i3,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6,"" -NA,NA,a-exp-i3,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2,"" -NA,NA,a-exp-i3,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3,"" -NA,NA,a-exp-i3,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6,"" -NA,NA,a-exp-i3,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2,"" -NA,NA,a-exp-i3,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6,"" -NA,NA,a-exp-i3,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2,"" -NA,NA,a-exp-i3,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4,"" -NA,NA,a-exp-i3,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9,"" -NA,NA,a-exp-i3,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7,"" -NA,NA,a-exp-i3,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0,"" -NA,NA,a-exp-i3,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5,"" -NA,NA,a-exp-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6,"" -NA,NA,a-exp-i3,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2,"" -NA,NA,a-exp-i3,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1,"" -NA,NA,a-exp-i3,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3,"" -NA,NA,a-exp-i3,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6,"" -NA,NA,a-exp-i3,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6,"" -NA,NA,a-exp-i3,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3,"" -NA,NA,a-exp-i3,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9,"" -NA,NA,a-exp-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7,"" -NA,NA,a-exp-i3,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6,"" -NA,NA,a-exp-i3,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9,"" -NA,NA,a-exp-i3,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4,"" -NA,NA,a-exp-i3,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2,"" -NA,NA,a-exp-i3,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2,"" -NA,NA,a-exp-i3,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1,"" -NA,NA,a-exp-i3,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0,"" -NA,NA,a-exp-i3,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8,"" -NA,NA,a-exp-i3,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2,"" -NA,NA,a-exp-i3,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3,"" -NA,NA,a-exp-i3,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0,"" -NA,NA,a-exp-i3,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0,"" -NA,NA,a-exp-i3,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4,"" -NA,NA,a-exp-i3,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0,"" -NA,NA,a-exp-i3,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4,"" -NA,NA,a-exp-i3,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4,"" -NA,NA,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8,"" -NA,NA,a-exp-i3,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1,"" -NA,NA,a-exp-i3,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3,"" -NA,NA,a-exp-i3,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0,"" -NA,NA,a-exp-i3,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8,"" -NA,NA,a-exp-i3,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1,"" -NA,NA,a-exp-i3,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5,"" -NA,NA,a-exp-i3,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2,"" -NA,NA,a-exp-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7,"" -NA,NA,a-exp-i3,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8,"" -NA,NA,a-exp-i3,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0,"" -NA,NA,a-exp-i3,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3,"" -NA,NA,a-exp-i3,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7,"" -NA,NA,a-exp-i3,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4,"" -NA,NA,a-exp-i3,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5,"" -NA,NA,a-exp-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9,"" -NA,NA,a-exp-i3,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9,"" -NA,NA,a-exp-i3,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9,"" -NA,NA,a-exp-i3,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1,"" -NA,NA,a-exp-i3,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2,"" -NA,NA,a-exp-i3,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0,"" -NA,NA,a-exp-i3,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9,"" -NA,NA,a-exp-i3,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7,"" -NA,NA,a-exp-i3,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7,"" -NA,NA,a-exp-i3,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5,"" -NA,NA,a-exp-i3,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1,"" -NA,NA,a-exp-i3,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4,"" -NA,NA,a-exp-i3,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8,"" -NA,NA,a-exp-i3,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1,"" -NA,NA,a-exp-i3,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9,"" -NA,NA,a-exp-i3,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6,"" -NA,NA,a-exp-i3,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2,"" -NA,NA,a-exp-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9,"" -NA,NA,a-exp-i3,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8,"" -NA,NA,a-exp-i3,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8,"" -NA,NA,a-exp-i3,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2,"" -NA,NA,a-exp-i3,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5,"" -NA,NA,a-exp-i3,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4,"" -NA,NA,a-exp-i3,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7,"" -NA,NA,a-exp-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9,"" -NA,NA,a-exp-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7,"" -NA,NA,a-exp-i3,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7,"" -NA,NA,a-exp-i3,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7,"" -NA,NA,a-exp-i3,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2,"" -NA,NA,a-exp-i3,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6,"" -NA,NA,a-exp-i3,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8,"" -NA,NA,a-exp-i3,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4,"" -NA,NA,a-exp-i3,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8,"" -NA,NA,a-exp-i3,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7,"" -NA,NA,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6,"" -NA,NA,a-exp-i3,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0,"" -NA,NA,a-exp-i3,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5,"" -NA,NA,a-exp-i3,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6,"" -NA,NA,a-exp-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2,"" -NA,NA,a-exp-i3,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7,"" -NA,NA,a-exp-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0,"" -NA,NA,a-exp-i3,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4,"" -NA,NA,a-exp-i3,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5,"" -NA,NA,a-exp-i3,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5,"" -NA,NA,a-exp-i3,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8,"" -NA,NA,a-exp-i3,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0,"" -NA,NA,a-exp-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4,"" -NA,NA,a-exp-i3,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5,"" -NA,NA,a-exp-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6,"" -NA,NA,a-exp-i3,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4,"" -NA,NA,a-exp-i3,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8,"" -NA,NA,a-exp-i3,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2,"" -NA,NA,a-exp-i3,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4,"" -NA,NA,a-exp-i3,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1,"" -NA,NA,a-exp-i3,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3,"" -NA,NA,a-exp-i3,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0,"" -NA,NA,a-exp-i3,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1,"" -NA,NA,a-exp-i3,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1,"" -NA,NA,a-exp-i3,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5,"" -NA,NA,a-exp-i3,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8,"" -NA,NA,a-exp-i3,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0,"" -NA,NA,a-exp-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0,"" -NA,NA,a-exp-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8,"" -NA,NA,a-exp-i3,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1,"" -NA,NA,a-exp-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0,"" -NA,NA,a-exp-i3,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0,"" -NA,NA,a-exp-i3,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1,"" -NA,NA,a-exp-i3,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9,"" -NA,NA,a-exp-i3,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8,"" -NA,NA,a-exp-i3,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5,"" -NA,NA,a-exp-i3,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9,"" -NA,NA,a-exp-i3,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3,"" -NA,NA,a-exp-i3,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9,"" -NA,NA,a-exp-i3,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8,"" -NA,NA,a-exp-i3,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0,"" -NA,NA,a-exp-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0,"" -NA,NA,a-exp-i3,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2,"" -NA,NA,a-exp-i3,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0,"" -NA,NA,a-exp-i3,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9,"" -NA,NA,a-exp-i3,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1,"" -NA,NA,a-exp-i3,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7,"" -NA,NA,a-exp-i3,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7,"" -NA,NA,a-exp-i3,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5,"" -NA,NA,a-exp-i3,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1,"" -NA,NA,a-exp-i3,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8,"" -NA,NA,a-exp-i3,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8,"" -NA,NA,a-exp-i3,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3,"" -NA,NA,a-exp-i3,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2,"" -NA,NA,a-exp-i3,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3,"" -NA,NA,a-exp-i3,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7,"" -NA,NA,a-exp-i3,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7,"" -NA,NA,a-exp-i3,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0,"" -NA,NA,a-exp-i3,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8,"" -NA,NA,a-exp-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7,"" -NA,NA,a-exp-i3,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7,"" -NA,NA,a-exp-i3,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1,"" -NA,NA,a-exp-i3,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0,"" -NA,NA,a-exp-i3,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4,"" -NA,NA,a-exp-i3,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4,"" -NA,NA,a-exp-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1,"" -NA,NA,a-exp-i3,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4,"" -NA,NA,a-exp-i3,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0,"" -NA,NA,a-exp-i3,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2,"" -NA,NA,a-exp-i3,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8,"" -NA,NA,a-exp-i3,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2,"" -NA,NA,a-exp-i3,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0,"" -NA,NA,a-exp-i3,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4,"" -NA,NA,a-exp-i3,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8,"" -NA,NA,a-exp-i3,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9,"" -NA,NA,a-exp-i3,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6,"" -NA,NA,a-exp-i3,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4,"" -NA,NA,a-exp-i3,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3,"" -NA,NA,a-exp-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2,"" -NA,NA,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6,"" -NA,NA,a-exp-i3,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4,"" -NA,NA,a-exp-i3,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1,"" -NA,NA,a-exp-i3,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7,"" -NA,NA,a-exp-i3,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1,"" -NA,NA,a-exp-i3,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2,"" -NA,NA,a-exp-i3,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7,"" -NA,NA,a-exp-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2,"" +4.2105263157894735,4.21,a-exp-i3,2022-23,Lincoln - Hanscom Middle,01570305, 32.2, 100.0, 7.0 to 1, 93.8, 96.9, 100.0 +3.9705263157894737,3.97,a-exp-i3,2022-23,Lincoln - Hanscom Primary,01570006, 30.0, 100.0, 8.0 to 1, 90.0, 100.0, 94.3 +4.021052631578947,4.02,a-exp-i3,2022-23,Lincoln - Lincoln School,01570025, 59.3, 100.0, 9.2 to 1, 91.9, 93.6, 95.5 +4.122105263157895,4.12,a-exp-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 127.5, 100.0, 11.6 to 1, 93.5, 94.1, 97.9 +3.83578947368421,3.84,a-exp-i3,2022-23,Littleton - Littleton High School,01580505, 36.9, 100.0, 13.0 to 1, 92.7, 94.6, 91.1 +4.067368421052631,4.07,a-exp-i3,2022-23,Littleton - Littleton Middle School,01580305, 28.3, 100.0, 13.6 to 1, 78.4, 94.3, 96.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Littleton - Russell St Elementary,01580015, 26.3, 100.0, 14.8 to 1, 79.8, 91.2, 100.0 +3.848421052631579,3.85,a-exp-i3,2022-23,Littleton - Shaker Lane Elementary,01580005, 33.2, 97.0, 13.1 to 1, 79.8, 97.0, 91.4 +3.8694736842105266,3.87,a-exp-i3,2022-23,Longmeadow - Blueberry Hill,01590005, 34.2, 97.1, 11.5 to 1, 73.7, 97.1, 91.9 +4.109473684210526,4.11,a-exp-i3,2022-23,Longmeadow - Center,01590010, 35.1, 100.0, 12.1 to 1, 85.7, 94.3, 97.6 +4.0884210526315785,4.09,a-exp-i3,2022-23,Longmeadow - Glenbrook Middle,01590017, 29.8, 100.0, 11.2 to 1, 93.3, 89.9, 97.1 +3.9663157894736845,3.97,a-exp-i3,2022-23,Longmeadow - Longmeadow High,01590505, 81.2, 100.0, 11.1 to 1, 90.9, 98.8, 94.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Longmeadow - Williams Middle,01590305, 28.4, 100.0, 9.9 to 1, 96.5, 96.5, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Longmeadow - Wolf Swamp Road,01590025, 38.0, 100.0, 11.7 to 1, 86.9, 100.0, 95.2 +4.105263157894737,4.11,a-exp-i3,2022-23,Lowell - Abraham Lincoln,01600020, 40.0, 100.0, 12.3 to 1, 92.5, 95.0, 97.5 +3.776842105263158,3.78,a-exp-i3,2022-23,Lowell - B.F. Butler Middle School,01600310, 45.4, 97.8, 11.3 to 1, 74.0, 73.6, 89.7 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lowell - Bartlett Community Partnership,01600090, 45.5, 100.0, 10.8 to 1, 78.1, 91.2, 88.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 10.0, 100.0, 9.9 to 1, 90.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Charles W Morey,01600030, 39.0, 100.0, 12.3 to 1, 100.0, 92.3, 100.0 +3.903157894736842,3.9,a-exp-i3,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 38.9, 100.0, 11.2 to 1, 92.3, 94.9, 92.7 +3.9368421052631577,3.94,a-exp-i3,2022-23,Lowell - Dr An Wang School,01600345, 48.0, 97.9, 13.7 to 1, 77.1, 89.6, 93.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Dr Gertrude Bailey,01600002, 36.0, 100.0, 12.8 to 1, 100.0, 100.0, 100.0 +3.2378947368421054,3.24,a-exp-i3,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 13.0, 92.3, 4.2 to 1, 69.2, 76.9, 76.9 +4.1010526315789475,4.1,a-exp-i3,2022-23,Lowell - Greenhalge,01600015, 39.0, 100.0, 12.1 to 1, 84.6, 94.9, 97.4 +3.258947368421053,3.26,a-exp-i3,2022-23,Lowell - Henry J Robinson Middle,01600330, 55.0, 92.7, 11.0 to 1, 74.5, 80.0, 77.4 +3.7726315789473683,3.77,a-exp-i3,2022-23,Lowell - James S Daley Middle School,01600315, 49.0, 95.9, 13.8 to 1, 81.6, 98.0, 89.6 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lowell - James Sullivan Middle School,01600340, 54.3, 96.3, 10.9 to 1, 87.1, 92.2, 88.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - John J Shaughnessy,01600050, 40.0, 97.5, 12.0 to 1, 62.5, 95.0, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Lowell - Joseph McAvinnue,01600010, 39.0, 94.9, 11.0 to 1, 76.9, 89.7, 94.6 +3.608421052631579,3.61,a-exp-i3,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 53.0, 94.3, 11.9 to 1, 83.0, 90.6, 85.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 5.4, 81.5, 2.6 to 1, 81.5, 90.7, 100.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 9.3, 89.2, 3.5 to 1, 78.5, 89.2, 75.0 +3.5031578947368422,3.5,a-exp-i3,2022-23,Lowell - Lowell High,01600505, 231.3, 94.5, 13.7 to 1, 80.6, 91.4, 83.2 +4.021052631578947,4.02,a-exp-i3,2022-23,Lowell - Moody Elementary,01600027, 21.0, 100.0, 11.5 to 1, 95.2, 100.0, 95.5 +3.8947368421052633,3.89,a-exp-i3,2022-23,Lowell - Pawtucketville Memorial,01600036, 39.8, 97.5, 11.7 to 1, 84.9, 100.0, 92.5 +4.092631578947368,4.09,a-exp-i3,2022-23,Lowell - Peter W Reilly,01600040, 36.0, 100.0, 13.5 to 1, 88.9, 91.7, 97.2 +3.776842105263158,3.78,a-exp-i3,2022-23,Lowell - Pyne Arts,01600018, 39.2, 97.4, 12.8 to 1, 82.1, 94.9, 89.7 +3.823157894736842,3.82,a-exp-i3,2022-23,Lowell - Rogers STEM Academy,01600005, 68.0, 95.6, 12.3 to 1, 66.2, 89.7, 90.8 +3.983157894736842,3.98,a-exp-i3,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 37.1, 100.0, 12.9 to 1, 94.6, 100.0, 94.6 +3.0063157894736845,3.01,a-exp-i3,2022-23,Lowell - The Career Academy,01600515, 10.5, 98.1, 8.4 to 1, 88.6, 85.7, 71.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lowell - Washington,01600055, 23.0, 100.0, 10.6 to 1, 95.7, 87.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 63.3, 96.8, 12.9 to 1, 65.2, 90.5, 95.7 +2.526315789473684,2.53,a-exp-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 5.5, 72.7, 15.1 to 1, 72.7, 63.6, 60.0 +4.096842105263158,4.1,a-exp-i3,2022-23,Ludlow - East Street Elementary School,01610010, 35.4, 100.0, 9.0 to 1, 97.2, 97.2, 97.3 +3.8400000000000003,3.84,a-exp-i3,2022-23,Ludlow - Harris Brook Elementary School,01610665, 55.4, 100.0, 11.6 to 1, 95.0, 100.0, 91.2 +4.105263157894737,4.11,a-exp-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 77.1, 100.0, 10.3 to 1, 93.5, 96.1, 97.5 +4.126315789473685,4.13,a-exp-i3,2022-23,Ludlow - Paul R Baird Middle,01610305, 48.5, 100.0, 10.6 to 1, 95.9, 100.0, 98.0 +2.808421052631579,2.81,a-exp-i3,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1.0, 100.0, 5.0 to 1, 100.0, 100.0, 66.7 +3.722105263157895,3.72,a-exp-i3,2022-23,Lunenburg - Lunenburg High,01620505, 35.8, 94.4, 12.3 to 1, 85.3, 100.0, 88.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lunenburg - Lunenburg Middle School,01620305, 27.1, 96.3, 14.0 to 1, 88.9, 96.3, 88.9 +3.650526315789474,3.65,a-exp-i3,2022-23,Lunenburg - Lunenburg Primary School,01620010, 26.7, 100.0, 14.4 to 1, 82.4, 96.3, 86.7 +3.5073684210526315,3.51,a-exp-i3,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 22.0, 100.0, 16.0 to 1, 88.6, 100.0, 83.3 +3.8947368421052633,3.89,a-exp-i3,2022-23,Lynn - A Drewicz Elementary,01630016, 36.8, 95.8, 13.2 to 1, 68.6, 93.1, 92.5 +4.008421052631579,4.01,a-exp-i3,2022-23,Lynn - Aborn,01630011, 17.7, 94.3, 12.3 to 1, 73.6, 100.0, 95.2 +3.8821052631578947,3.88,a-exp-i3,2022-23,Lynn - Breed Middle School,01630405, 93.8, 96.8, 13.0 to 1, 75.5, 93.6, 92.2 +3.8021052631578947,3.8,a-exp-i3,2022-23,Lynn - Brickett Elementary,01630020, 24.5, 93.3, 12.4 to 1, 78.8, 100.0, 90.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Lynn - Capt William G Shoemaker,01630090, 39.4, 92.4, 7.5 to 1, 74.2, 89.8, 92.9 +3.823157894736842,3.82,a-exp-i3,2022-23,Lynn - Classical High,01630505, 118.9, 95.0, 15.3 to 1, 73.1, 87.6, 90.8 +4.071578947368421,4.07,a-exp-i3,2022-23,Lynn - Cobbet Elementary,01630035, 51.8, 98.1, 11.6 to 1, 69.0, 96.3, 96.7 +3.8021052631578947,3.8,a-exp-i3,2022-23,Lynn - E J Harrington,01630045, 51.9, 91.6, 11.4 to 1, 66.4, 96.1, 90.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Edward A Sisson,01630095, 33.0, 100.0, 12.5 to 1, 87.4, 97.0, 100.0 +3.7978947368421054,3.8,a-exp-i3,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 32.3, 100.0, 2.4 to 1, 96.1, 93.9, 90.2 +3.0063157894736845,3.01,a-exp-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.7, 74.0, 9.5 to 1, 30.7, 82.7, 71.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Lynn - Hood,01630055, 36.3, 89.0, 12.5 to 1, 52.0, 91.7, 88.9 +4.143157894736842,4.14,a-exp-i3,2022-23,Lynn - Ingalls,01630060, 55.1, 96.4, 12.2 to 1, 83.3, 94.6, 98.4 +4.1010526315789475,4.1,a-exp-i3,2022-23,Lynn - Julia F Callahan,01630030, 40.3, 97.5, 9.1 to 1, 85.1, 97.5, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Lincoln-Thomson,01630070, 22.1, 100.0, 8.5 to 1, 90.3, 100.0, 100.0 +3.722105263157895,3.72,a-exp-i3,2022-23,Lynn - Lynn English High,01630510, 137.8, 94.9, 15.8 to 1, 63.3, 77.8, 88.4 +3.5326315789473686,3.53,a-exp-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 122.4, 94.3, 12.4 to 1, 76.7, 83.9, 83.9 +3.987368421052632,3.99,a-exp-i3,2022-23,Lynn - Lynn Woods,01630075, 15.2, 97.1, 9.7 to 1, 88.2, 93.4, 94.7 +3.5789473684210527,3.58,a-exp-i3,2022-23,Lynn - Pickering Middle,01630420, 53.7, 100.0, 10.3 to 1, 71.5, 85.1, 85.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Lynn - Robert L Ford,01630050, 35.3, 100.0, 11.4 to 1, 77.3, 97.2, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Sewell-Anderson,01630085, 21.6, 97.4, 12.4 to 1, 71.8, 99.2, 100.0 +3.490526315789474,3.49,a-exp-i3,2022-23,Lynn - Thurgood Marshall Mid,01630305, 98.4, 92.9, 12.3 to 1, 61.4, 82.8, 82.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Lynn - Tracy,01630100, 32.2, 96.9, 11.3 to 1, 76.3, 88.1, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 3.9, 100.0, 8.1 to 1, 63.5, 90.0, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Lynn - Washington Elementary School,01630005, 39.2, 100.0, 10.6 to 1, 64.3, 89.8, 97.7 +1.5326315789473683,1.53,a-exp-i3,2022-23,Lynn - William R Fallon,01630080, 9.3, 89.2, 2.9 to 1, 74.3, 89.2, 36.4 +3.414736842105263,3.41,a-exp-i3,2022-23,Lynn - Wm P Connery,01630040, 44.1, 95.5, 12.1 to 1, 34.0, 88.7, 81.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynnfield - Huckleberry Hill,01640010, 30.6, 100.0, 14.9 to 1, 83.3, 96.7, 100.0 +4.138947368421053,4.14,a-exp-i3,2022-23,Lynnfield - Lynnfield High,01640505, 45.2, 100.0, 12.5 to 1, 93.4, 100.0, 98.3 +4.058947368421053,4.06,a-exp-i3,2022-23,Lynnfield - Lynnfield Middle School,01640405, 49.5, 100.0, 14.4 to 1, 98.0, 93.9, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Lynnfield - Lynnfield Preschool,01640005, 3.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Lynnfield - Summer Street,01640020, 29.0, 100.0, 14.5 to 1, 80.4, 100.0, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 6.0, 100.0, 16.7 to 1, 100.0, 83.3, 100.0 +4.151578947368421,4.15,a-exp-i3,2022-23,Malden - Beebe,01650003, 69.8, 100.0, 12.6 to 1, 77.1, 90.0, 98.6 +4.092631578947368,4.09,a-exp-i3,2022-23,Malden - Ferryway,01650013, 68.0, 98.5, 13.1 to 1, 76.5, 88.2, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Malden - Forestdale,01650027, 50.6, 100.0, 11.7 to 1, 78.3, 96.0, 100.0 +3.877894736842105,3.88,a-exp-i3,2022-23,Malden - Linden,01650047, 57.8, 98.3, 14.2 to 1, 65.6, 92.4, 92.1 +4.029473684210527,4.03,a-exp-i3,2022-23,Malden - Malden Early Learning Center,01650049, 23.0, 95.7, 10.4 to 1, 73.9, 87.0, 95.7 +4.109473684210526,4.11,a-exp-i3,2022-23,Malden - Malden High,01650505, 116.5, 98.7, 15.9 to 1, 80.9, 94.4, 97.6 +3.9073684210526314,3.91,a-exp-i3,2022-23,Malden - Salemwood,01650057, 78.3, 98.7, 13.1 to 1, 77.8, 91.1, 92.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 22.2, 100.0, 10.4 to 1, 93.7, 95.9, 100.0 +3.663157894736842,3.66,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 41.5, 100.0, 10.0 to 1, 93.8, 94.6, 87.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 26.8, 100.0, 10.5 to 1, 83.5, 89.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 32.3, 100.0, 9.0 to 1, 92.0, 97.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Everett W Robinson,01670007, 56.9, 100.0, 13.3 to 1, 83.5, 98.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Harold L Qualters Middle,01670035, 79.8, 100.0, 9.9 to 1, 92.5, 98.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 57.6, 100.0, 12.2 to 1, 88.5, 100.0, 100.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Mansfield - Mansfield High,01670505, 97.3, 100.0, 11.2 to 1, 91.7, 95.8, 98.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mansfield - Roland Green School,01670003, 7.0, 100.0, 13.0 to 1, 100.0, 100.0, 100.0 +2.863157894736842,2.86,a-exp-i3,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 24.8, 95.0, 10.1 to 1, 52.7, 71.4, 68.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marblehead - Glover,01680020, 30.0, 100.0, 10.9 to 1, 76.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 38.6, 94.8, 11.5 to 1, 79.3, 100.0, 100.0 +4.025263157894736,4.03,a-exp-i3,2022-23,Marblehead - Marblehead High,01680505, 82.4, 100.0, 10.7 to 1, 85.6, 90.4, 95.6 +4.109473684210526,4.11,a-exp-i3,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 40.7, 100.0, 10.3 to 1, 84.8, 95.1, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marblehead - Village School,01680016, 58.3, 100.0, 9.5 to 1, 96.7, 100.0, 100.0 +3.6378947368421053,3.64,a-exp-i3,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 22.6, 91.2, 9.9 to 1, 69.1, 82.3, 86.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marion - Sippican,01690005, 33.8, 100.0, 11.9 to 1, 88.2, 97.0, 100.0 +4.168421052631579,4.17,a-exp-i3,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 99.2, 100.0, 10.5 to 1, 78.9, 93.0, 99.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Charles Jaworek School,01700030, 52.0, 100.0, 12.6 to 1, 79.4, 94.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Early Childhood Center,01700006, 13.0, 100.0, 14.7 to 1, 92.3, 92.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Francis J Kane,01700008, 42.8, 100.0, 11.5 to 1, 86.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 57.5, 100.0, 13.6 to 1, 82.6, 94.8, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Marlborough - Marlborough High,01700505, 97.5, 99.0, 10.9 to 1, 83.6, 92.8, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marlborough - Richer,01700025, 45.7, 100.0, 11.7 to 1, 86.9, 95.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Daniel Webster,01710015, 29.1, 100.0, 12.7 to 1, 83.5, 99.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Eames Way School,01710005, 20.6, 100.0, 12.8 to 1, 93.2, 94.2, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Marshfield - Furnace Brook Middle,01710310, 78.6, 100.0, 11.0 to 1, 86.5, 91.1, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Gov Edward Winslow,01710020, 31.6, 100.0, 11.1 to 1, 83.5, 99.4, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Marshfield - Marshfield High,01710505, 101.4, 99.0, 11.7 to 1, 86.8, 96.1, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - Martinson Elementary,01710025, 39.6, 100.0, 11.6 to 1, 86.9, 99.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Marshfield - South River,01710010, 24.4, 100.0, 10.5 to 1, 99.2, 99.2, 100.0 +3.642105263157895,3.64,a-exp-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 82.9, 87.9, 9.1 to 1, 75.6, 84.7, 86.5 +3.8610526315789473,3.86,a-exp-i3,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 20.2, 82.6, 9.0 to 1, 47.6, 81.8, 91.7 +2.223157894736842,2.22,a-exp-i3,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 36.5, 76.7, 9.6 to 1, 35.6, 89.0, 52.8 +4.16421052631579,4.16,a-exp-i3,2022-23,Masconomet - Masconomet Regional High School,07050505, 82.8, 100.0, 12.0 to 1, 92.9, 95.3, 98.9 +4.050526315789474,4.05,a-exp-i3,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 49.1, 98.0, 11.4 to 1, 92.4, 93.7, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mashpee - Kenneth Coombs School,01720005, 32.0, 100.0, 12.2 to 1, 84.4, 100.0, 100.0 +3.76,3.76,a-exp-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 68.4, 99.1, 9.6 to 1, 85.9, 85.4, 89.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Mashpee - Quashnet School,01720035, 36.4, 100.0, 10.9 to 1, 80.8, 94.5, 97.4 +2.054736842105263,2.05,a-exp-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 125.1, 73.6, 9.5 to 1, 35.3, 85.9, 48.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mattapoisett - Center,01730005, 22.0, 100.0, 10.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mattapoisett - Old Hammondtown,01730010, 16.5, 100.0, 11.7 to 1, 87.9, 100.0, 100.0 +3.8610526315789473,3.86,a-exp-i3,2022-23,Maynard - Fowler School,01740305, 44.1, 93.2, 10.4 to 1, 80.3, 98.9, 91.7 +3.8947368421052633,3.89,a-exp-i3,2022-23,Maynard - Green Meadow,01740010, 39.5, 97.5, 10.6 to 1, 73.4, 94.9, 92.5 +3.776842105263158,3.78,a-exp-i3,2022-23,Maynard - Maynard High,01740505, 34.4, 100.0, 9.2 to 1, 89.8, 90.1, 89.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medfield - Dale Street,01750005, 33.4, 100.0, 11.7 to 1, 94.6, 100.0, 100.0 +3.983157894736842,3.98,a-exp-i3,2022-23,Medfield - Medfield Senior High,01750505, 61.6, 100.0, 12.0 to 1, 90.6, 90.3, 94.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medfield - Memorial School,01750003, 28.2, 100.0, 15.0 to 1, 91.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medfield - Ralph Wheelock School,01750007, 29.3, 100.0, 13.0 to 1, 96.6, 96.6, 100.0 +3.7305263157894735,3.73,a-exp-i3,2022-23,Medfield - Thomas Blake Middle,01750305, 55.7, 98.4, 10.5 to 1, 92.5, 98.2, 88.6 +4.113684210526316,4.11,a-exp-i3,2022-23,Medford - Brooks School,01760130, 42.5, 100.0, 12.9 to 1, 76.5, 100.0, 97.7 +1.2042105263157896,1.2,a-exp-i3,2022-23,Medford - Curtis-Tufts,01760510, 2.7, 100.0, 6.7 to 1, 77.8, 100.0, 28.6 +3.9115789473684215,3.91,a-exp-i3,2022-23,Medford - John J McGlynn Elementary School,01760068, 40.4, 100.0, 11.9 to 1, 87.6, 100.0, 92.9 +3.781052631578947,3.78,a-exp-i3,2022-23,Medford - John J. McGlynn Middle School,01760320, 49.2, 100.0, 9.4 to 1, 82.3, 98.0, 89.8 +3.9621052631578944,3.96,a-exp-i3,2022-23,Medford - Madeleine Dugger Andrews,01760315, 45.2, 100.0, 10.1 to 1, 68.8, 88.9, 94.1 +3.751578947368421,3.75,a-exp-i3,2022-23,Medford - Medford High,01760505, 129.7, 96.9, 9.7 to 1, 83.4, 87.7, 89.1 +4.117894736842105,4.12,a-exp-i3,2022-23,Medford - Milton Fuller Roberts,01760150, 44.0, 97.7, 12.5 to 1, 86.4, 97.7, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medford - Missituk Elementary School,01760140, 40.6, 100.0, 9.6 to 1, 80.3, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medway - Burke/Memorial Elementary School,01770015, 28.2, 100.0, 17.2 to 1, 75.2, 100.0, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Medway - John D Mc Govern Elementary,01770013, 25.7, 92.2, 13.9 to 1, 82.1, 96.1, 96.3 +3.8147368421052628,3.81,a-exp-i3,2022-23,Medway - Medway High,01770505, 46.4, 98.3, 13.2 to 1, 83.8, 91.4, 90.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Medway - Medway Middle,01770305, 55.0, 100.0, 11.9 to 1, 92.7, 100.0, 100.0 +3.8105263157894735,3.81,a-exp-i3,2022-23,Melrose - Early Childhood Center,01780003, 16.1, 98.8, 20.1 to 1, 86.3, 93.8, 90.5 +3.705263157894737,3.71,a-exp-i3,2022-23,Melrose - Herbert Clark Hoover,01780017, 20.4, 95.1, 14.9 to 1, 86.2, 95.1, 88.0 +3.987368421052632,3.99,a-exp-i3,2022-23,Melrose - Horace Mann,01780025, 15.7, 100.0, 15.5 to 1, 98.7, 100.0, 94.7 +4.08421052631579,4.08,a-exp-i3,2022-23,Melrose - Lincoln,01780020, 28.4, 100.0, 13.9 to 1, 65.2, 100.0, 97.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Melrose - Melrose High,01780505, 70.9, 100.0, 13.1 to 1, 87.7, 91.9, 94.0 +3.768421052631579,3.77,a-exp-i3,2022-23,Melrose - Melrose Middle,01780305, 59.8, 100.0, 14.5 to 1, 86.4, 95.6, 89.5 +4.067368421052631,4.07,a-exp-i3,2022-23,Melrose - Roosevelt,01780035, 26.4, 100.0, 15.5 to 1, 84.1, 100.0, 96.6 +4.058947368421053,4.06,a-exp-i3,2022-23,Melrose - Winthrop,01780050, 25.5, 100.0, 15.0 to 1, 90.8, 96.1, 96.4 +3.8989473684210525,3.9,a-exp-i3,2022-23,Mendon-Upton - Henry P Clough,07100179, 27.0, 96.3, 13.1 to 1, 88.9, 100.0, 92.6 +3.3684210526315788,3.37,a-exp-i3,2022-23,Mendon-Upton - Memorial School,07100001, 35.0, 80.0, 14.8 to 1, 65.7, 100.0, 80.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 52.0, 100.0, 12.2 to 1, 84.6, 96.2, 94.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 48.7, 97.9, 12.3 to 1, 89.7, 97.9, 88.9 +4.117894736842105,4.12,a-exp-i3,2022-23,Methuen - Comprehensive Grammar School,01810050, 92.2, 98.9, 10.4 to 1, 82.6, 97.8, 97.8 +4.0884210526315785,4.09,a-exp-i3,2022-23,Methuen - Donald P Timony Grammar,01810060, 102.0, 98.0, 12.4 to 1, 82.4, 97.1, 97.1 +4.042105263157895,4.04,a-exp-i3,2022-23,Methuen - Marsh Grammar School,01810030, 95.9, 100.0, 11.0 to 1, 80.3, 94.8, 96.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Methuen - Methuen High,01810505, 147.5, 97.9, 13.0 to 1, 81.9, 88.2, 90.9 +4.00421052631579,4.0,a-exp-i3,2022-23,Methuen - Tenney Grammar School,01810055, 100.3, 99.0, 12.5 to 1, 83.6, 95.0, 95.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 37.8, 100.0, 15.1 to 1, 76.2, 97.5, 97.4 +4.058947368421053,4.06,a-exp-i3,2022-23,Middleborough - John T. Nichols Middle,01820305, 53.2, 100.0, 13.3 to 1, 81.2, 86.8, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 43.0, 100.0, 14.6 to 1, 88.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 18.0, 100.0, 15.7 to 1, 94.4, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Middleborough - Middleborough High,01820505, 65.0, 100.0, 13.1 to 1, 94.8, 95.4, 95.8 +4.08421052631579,4.08,a-exp-i3,2022-23,Middleton - Fuller Meadow,01840003, 27.5, 100.0, 10.8 to 1, 84.4, 100.0, 97.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Middleton - Howe-Manning,01840005, 41.5, 97.6, 10.3 to 1, 85.5, 100.0, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Milford - Brookside,01850065, 43.4, 100.0, 12.5 to 1, 86.2, 100.0, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Milford - Memorial,01850010, 43.0, 100.0, 11.0 to 1, 90.7, 100.0, 100.0 +3.991578947368421,3.99,a-exp-i3,2022-23,Milford - Milford High,01850505, 109.5, 98.2, 12.1 to 1, 85.2, 91.7, 94.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 12.5, 100.0, 13.6 to 1, 68.0, 100.0, 100.0 +3.877894736842105,3.88,a-exp-i3,2022-23,Milford - Stacy Middle,01850305, 89.4, 100.0, 11.5 to 1, 80.9, 93.3, 92.1 +4.113684210526316,4.11,a-exp-i3,2022-23,Milford - Woodland,01850090, 85.3, 100.0, 11.1 to 1, 92.0, 100.0, 97.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Millbury - Elmwood Street,01860017, 31.8, 100.0, 13.2 to 1, 90.6, 96.9, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 62.0, 100.0, 11.9 to 1, 85.2, 88.7, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 35.5, 100.0, 12.9 to 1, 88.7, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Millis - Clyde F Brown,01870005, 44.4, 97.7, 13.9 to 1, 85.8, 93.7, 95.8 +3.953684210526316,3.95,a-exp-i3,2022-23,Millis - Millis High School,01870505, 30.6, 100.0, 10.2 to 1, 93.5, 96.7, 93.9 +3.8610526315789473,3.86,a-exp-i3,2022-23,Millis - Millis Middle,01870020, 27.8, 100.0, 9.7 to 1, 93.5, 100.0, 91.7 +NA,NA,a-exp-i3,2022-23,Millis - TIES,01870515, 1.0, 100.0, 6.0 to 1, 0.0, 100.0, 0.0 +3.953684210526316,3.95,a-exp-i3,2022-23,Milton - Charles S Pierce Middle,01890410, 79.6, 98.7, 12.0 to 1, 88.7, 91.2, 93.9 +4.037894736842105,4.04,a-exp-i3,2022-23,Milton - Collicot,01890005, 41.3, 96.4, 14.1 to 1, 85.5, 97.6, 95.9 +4.134736842105263,4.13,a-exp-i3,2022-23,Milton - Cunningham School,01890007, 49.2, 99.4, 12.7 to 1, 88.2, 100.0, 98.2 +3.9663157894736845,3.97,a-exp-i3,2022-23,Milton - Glover,01890010, 43.9, 99.5, 14.4 to 1, 79.9, 96.8, 94.2 +4.025263157894736,4.03,a-exp-i3,2022-23,Milton - Milton High,01890505, 82.5, 100.0, 12.9 to 1, 93.0, 95.4, 95.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Milton - Tucker,01890020, 34.0, 100.0, 13.5 to 1, 84.4, 97.1, 100.0 +4.00421052631579,4.0,a-exp-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 78.3, 98.7, 8.8 to 1, 87.1, 87.2, 95.1 +3.9747368421052633,3.97,a-exp-i3,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 17.2, 94.2, 15.9 to 1, 82.6, 94.2, 94.4 +3.8610526315789473,3.86,a-exp-i3,2022-23,Mohawk Trail - Colrain Central,07170010, 8.4, 100.0, 12.4 to 1, 76.2, 88.1, 91.7 +3.696842105263158,3.7,a-exp-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 38.6, 94.8, 7.0 to 1, 89.6, 92.8, 87.8 +3.8610526315789473,3.86,a-exp-i3,2022-23,Mohawk Trail - Sanderson Academy,07170020, 9.8, 100.0, 14.2 to 1, 95.9, 91.8, 91.7 +4.0,4.0,a-exp-i3,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 17.2, 100.0, 8.8 to 1, 69.8, 100.0, 95.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 45.0, 100.0, 10.6 to 1, 90.7, 97.8, 93.8 +4.021052631578947,4.02,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 60.3, 98.3, 11.6 to 1, 90.5, 93.7, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 42.6, 97.7, 10.3 to 1, 83.6, 90.6, 100.0 +3.903157894736842,3.9,a-exp-i3,2022-23,Monson - Granite Valley School,01910030, 39.9, 100.0, 9.9 to 1, 67.4, 95.0, 92.7 +3.9242105263157896,3.92,a-exp-i3,2022-23,Monson - Monson High School,01910505, 34.8, 97.1, 8.5 to 1, 80.7, 88.5, 93.2 +3.9115789473684215,3.91,a-exp-i3,2022-23,Monson - Quarry Hill Community School,01910010, 11.2, 91.1, 11.6 to 1, 35.5, 92.6, 92.9 +3.8947368421052633,3.89,a-exp-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 120.3, 99.2, 11.7 to 1, 86.7, 89.2, 92.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 24.8, 100.0, 9.3 to 1, 89.5, 88.7, 100.0 +3.642105263157895,3.64,a-exp-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 44.5, 97.3, 12.0 to 1, 89.6, 91.0, 86.5 +4.025263157894736,4.03,a-exp-i3,2022-23,Mount Greylock - Williamstown Elementary,07150010, 43.6, 99.1, 9.9 to 1, 80.3, 95.4, 95.6 +1.4821052631578948,1.48,a-exp-i3,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 96.7, 57.4, 16.6 to 1, 39.0, 84.5, 35.2 +3.928421052631579,3.93,a-exp-i3,2022-23,Nahant - Johnson,01960010, 10.7, 98.1, 14.5 to 1, 36.2, 81.3, 93.3 +3.9621052631578944,3.96,a-exp-i3,2022-23,Nantucket - Cyrus Peirce,01970010, 34.0, 100.0, 11.2 to 1, 73.5, 79.4, 94.1 +3.818947368421053,3.82,a-exp-i3,2022-23,Nantucket - Nantucket Elementary,01970005, 41.5, 92.8, 9.9 to 1, 60.2, 91.6, 90.7 +3.751578947368421,3.75,a-exp-i3,2022-23,Nantucket - Nantucket High,01970505, 49.2, 92.7, 11.9 to 1, 72.4, 83.5, 89.1 +3.987368421052632,3.99,a-exp-i3,2022-23,Nantucket - Nantucket Intermediate School,01970020, 36.6, 97.3, 9.3 to 1, 73.8, 91.8, 94.7 +4.042105263157895,4.04,a-exp-i3,2022-23,Narragansett - Narragansett Middle,07200305, 25.0, 100.0, 14.4 to 1, 88.0, 96.0, 96.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 36.7, 100.0, 12.8 to 1, 83.7, 80.4, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Narragansett - Templeton Elementary School,07200020, 39.0, 100.0, 16.5 to 1, 87.2, 94.9, 100.0 +4.113684210526316,4.11,a-exp-i3,2022-23,Nashoba - Center School,07250020, 43.3, 100.0, 11.5 to 1, 93.1, 98.2, 97.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Nashoba - Florence Sawyer School,07250025, 62.2, 100.0, 11.8 to 1, 92.0, 95.2, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Nashoba - Hale,07250310, 26.0, 100.0, 10.4 to 1, 73.1, 84.6, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Nashoba - Luther Burbank Middle School,07250305, 24.1, 100.0, 10.1 to 1, 83.4, 88.4, 92.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 39.9, 100.0, 11.9 to 1, 90.0, 100.0, 100.0 +4.037894736842105,4.04,a-exp-i3,2022-23,Nashoba - Nashoba Regional,07250505, 68.0, 97.1, 12.2 to 1, 89.7, 98.5, 95.9 +3.890526315789474,3.89,a-exp-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 64.5, 95.9, 11.6 to 1, 83.0, 72.6, 92.4 +4.1010526315789475,4.1,a-exp-i3,2022-23,Natick - Bennett-Hemenway,01980005, 37.0, 100.0, 13.0 to 1, 100.0, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Natick - Brown,01980010, 39.0, 100.0, 12.9 to 1, 92.3, 97.4, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Natick - J F Kennedy Middle School,01980305, 77.1, 100.0, 11.5 to 1, 94.8, 94.8, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Natick - Johnson,01980031, 12.6, 100.0, 10.8 to 1, 81.7, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Natick - Lilja Elementary,01980035, 35.2, 100.0, 11.5 to 1, 88.1, 97.2, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Natick - Memorial,01980043, 29.3, 100.0, 14.7 to 1, 88.7, 100.0, 100.0 +3.823157894736842,3.82,a-exp-i3,2022-23,Natick - Natick High,01980505, 141.0, 98.9, 12.2 to 1, 85.0, 91.4, 90.8 +4.008421052631579,4.01,a-exp-i3,2022-23,Natick - Wilson Middle,01980310, 76.5, 98.4, 10.2 to 1, 82.8, 97.4, 95.2 +4.109473684210526,4.11,a-exp-i3,2022-23,Nauset - Nauset Regional High,06600505, 80.3, 100.0, 9.7 to 1, 94.3, 94.1, 97.6 +4.134736842105263,4.13,a-exp-i3,2022-23,Nauset - Nauset Regional Middle,06600305, 54.6, 100.0, 9.7 to 1, 89.6, 96.3, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Needham - Broadmeadow,01990005, 36.9, 100.0, 13.8 to 1, 85.0, 99.0, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Needham - High Rock School,01990410, 36.9, 100.0, 12.1 to 1, 89.2, 100.0, 97.6 +4.105263157894737,4.11,a-exp-i3,2022-23,Needham - John Eliot,01990020, 34.8, 100.0, 12.2 to 1, 77.2, 99.1, 97.5 +4.1557894736842105,4.16,a-exp-i3,2022-23,Needham - Needham High,01990505, 131.6, 100.0, 12.5 to 1, 91.3, 97.1, 98.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Needham - Newman Elementary,01990050, 48.7, 97.7, 14.3 to 1, 86.1, 97.1, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Needham - Pollard Middle,01990405, 75.0, 100.0, 10.9 to 1, 92.3, 97.5, 96.4 +4.122105263157895,4.12,a-exp-i3,2022-23,Needham - Sunita L. Williams Elementary,01990035, 39.8, 98.5, 13.3 to 1, 70.8, 91.8, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Needham - William Mitchell,01990040, 32.9, 100.0, 13.7 to 1, 75.3, 97.0, 100.0 +1.8442105263157893,1.84,a-exp-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 76.9, 54.0, 10.0 to 1, 47.5, 89.6, 43.8 +4.0336842105263155,4.03,a-exp-i3,2022-23,New Bedford - Abraham Lincoln,02010095, 47.2, 97.9, 13.6 to 1, 82.2, 95.8, 95.8 +3.2842105263157895,3.28,a-exp-i3,2022-23,New Bedford - Alfred J Gomes,02010063, 48.3, 87.6, 10.3 to 1, 58.8, 83.4, 78.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Betsey B Winslow,02010140, 18.5, 100.0, 12.5 to 1, 70.3, 89.2, 100.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,New Bedford - Carlos Pacheco,02010105, 31.0, 93.5, 10.6 to 1, 48.4, 93.5, 90.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Casimir Pulaski,02010123, 51.8, 100.0, 10.5 to 1, 67.1, 98.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Charles S Ashley,02010010, 22.2, 100.0, 12.5 to 1, 78.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 23.7, 98.3, 11.6 to 1, 78.9, 93.7, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,New Bedford - Ellen R Hathaway,02010075, 25.0, 100.0, 9.4 to 1, 72.0, 92.0, 96.3 +4.07578947368421,4.08,a-exp-i3,2022-23,New Bedford - Elwyn G Campbell,02010020, 28.0, 100.0, 10.1 to 1, 79.6, 90.3, 96.8 +3.886315789473684,3.89,a-exp-i3,2022-23,New Bedford - Hayden/McFadden,02010078, 61.6, 91.9, 11.1 to 1, 48.7, 89.6, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 36.8, 97.3, 11.0 to 1, 75.5, 89.1, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,New Bedford - James B Congdon,02010040, 27.5, 100.0, 11.9 to 1, 79.3, 96.4, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Jireh Swift,02010130, 20.3, 100.0, 11.1 to 1, 78.8, 93.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - John Avery Parker,02010115, 24.0, 100.0, 10.7 to 1, 50.0, 91.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - John B Devalles,02010050, 26.8, 100.0, 11.3 to 1, 63.4, 85.8, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,New Bedford - Keith Middle School,02010405, 91.9, 98.9, 9.5 to 1, 76.1, 78.1, 96.8 +3.8063157894736843,3.81,a-exp-i3,2022-23,New Bedford - New Bedford High,02010505, 203.9, 97.0, 14.2 to 1, 65.3, 81.7, 90.4 +4.109473684210526,4.11,a-exp-i3,2022-23,New Bedford - Normandin Middle School,02010410, 83.9, 100.0, 12.5 to 1, 84.5, 88.1, 97.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 15.0, 100.0, 8.7 to 1, 80.0, 84.7, 94.1 +3.8526315789473684,3.85,a-exp-i3,2022-23,New Bedford - Roosevelt Middle School,02010415, 80.3, 95.0, 9.7 to 1, 78.8, 78.8, 91.5 +3.6294736842105264,3.63,a-exp-i3,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55.4, 89.2, 11.0 to 1, 57.2, 79.2, 86.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - Thomas R Rodman,02010125, 18.1, 96.7, 11.6 to 1, 71.8, 85.6, 100.0 +3.4694736842105267,3.47,a-exp-i3,2022-23,New Bedford - Trinity Day Academy,02010510, 14.6, 93.1, 5.7 to 1, 73.2, 87.0, 82.4 +3.789473684210526,3.79,a-exp-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 18.0, 100.0, 7.5 to 1, 88.9, 77.8, 90.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Bedford - William H Taylor,02010135, 20.1, 90.0, 12.1 to 1, 70.1, 80.1, 100.0 +3.2842105263157895,3.28,a-exp-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 54.2, 90.5, 13.7 to 1, 57.0, 76.0, 78.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,New Salem-Wendell - Swift River,07280015, 13.5, 100.0, 9.7 to 1, 85.2, 100.0, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 29.2, 100.0, 9.6 to 1, 85.3, 96.6, 97.6 +4.143157894736842,4.14,a-exp-i3,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 60.7, 100.0, 9.5 to 1, 80.2, 98.4, 98.4 +3.903157894736842,3.9,a-exp-i3,2022-23,Newburyport - Newburyport High,02040505, 70.2, 100.0, 11.7 to 1, 86.6, 92.0, 92.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newburyport - Rupert A Nock Middle,02040305, 50.6, 100.0, 9.5 to 1, 81.8, 90.1, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Newton - A E Angier,02070005, 38.2, 97.4, 9.8 to 1, 94.8, 100.0, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newton - Bigelow Middle,02070305, 44.6, 100.0, 9.8 to 1, 88.8, 96.9, 100.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Newton - Bowen,02070015, 31.0, 93.5, 11.6 to 1, 74.2, 96.8, 90.9 +3.9747368421052633,3.97,a-exp-i3,2022-23,Newton - C C Burr,02070020, 32.3, 96.9, 11.4 to 1, 78.3, 100.0, 94.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Newton - Cabot,02070025, 35.4, 94.6, 12.5 to 1, 85.9, 91.5, 94.7 +4.050526315789474,4.05,a-exp-i3,2022-23,Newton - Charles E Brown Middle,02070310, 71.4, 98.7, 10.5 to 1, 87.0, 97.5, 96.2 +3.8610526315789473,3.86,a-exp-i3,2022-23,Newton - Countryside,02070040, 34.3, 95.6, 10.8 to 1, 85.4, 100.0, 91.7 +4.067368421052631,4.07,a-exp-i3,2022-23,Newton - F A Day Middle,02070315, 84.2, 97.0, 10.9 to 1, 88.7, 92.9, 96.6 +4.092631578947368,4.09,a-exp-i3,2022-23,Newton - Franklin,02070055, 32.3, 100.0, 11.2 to 1, 93.8, 100.0, 97.2 +3.5915789473684208,3.59,a-exp-i3,2022-23,Newton - Horace Mann,02070075, 31.2, 88.5, 11.4 to 1, 91.3, 100.0, 85.3 +3.6842105263157894,3.68,a-exp-i3,2022-23,Newton - John Ward,02070120, 20.1, 86.1, 9.7 to 1, 81.1, 100.0, 87.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Newton - Lincoln-Eliot,02070070, 34.9, 97.1, 9.7 to 1, 88.8, 97.4, 97.4 +3.953684210526316,3.95,a-exp-i3,2022-23,Newton - Mason-Rice,02070080, 30.6, 96.7, 10.8 to 1, 84.0, 100.0, 93.9 +4.0,4.0,a-exp-i3,2022-23,Newton - Memorial Spaulding,02070105, 35.6, 97.2, 11.2 to 1, 86.0, 100.0, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newton - Newton Early Childhood Program,02070108, 16.9, 100.0, 11.0 to 1, 81.6, 100.0, 100.0 +4.012631578947368,4.01,a-exp-i3,2022-23,Newton - Newton North High,02070505, 192.0, 98.3, 10.9 to 1, 87.5, 97.3, 95.3 +3.9747368421052633,3.97,a-exp-i3,2022-23,Newton - Newton South High,02070510, 156.0, 96.4, 11.8 to 1, 91.3, 97.0, 94.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Newton - Oak Hill Middle,02070320, 67.6, 100.0, 9.7 to 1, 82.9, 95.9, 94.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Newton - Peirce,02070100, 22.0, 100.0, 11.0 to 1, 90.9, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Newton - Underwood,02070115, 19.9, 95.0, 11.1 to 1, 74.9, 100.0, 95.7 +4.054736842105263,4.05,a-exp-i3,2022-23,Newton - Williams,02070125, 20.2, 100.0, 11.4 to 1, 92.0, 100.0, 96.3 +4.096842105263158,4.1,a-exp-i3,2022-23,Newton - Zervas,02070130, 34.4, 97.1, 11.8 to 1, 88.4, 97.1, 97.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norfolk - Freeman-Kennedy School,02080005, 44.9, 100.0, 11.7 to 1, 88.9, 97.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norfolk - H Olive Day,02080015, 40.9, 100.0, 12.0 to 1, 86.6, 98.0, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 56.3, 98.2, 10.3 to 1, 89.3, 84.0, 96.6 +3.8147368421052628,3.81,a-exp-i3,2022-23,North Adams - Brayton,02090035, 26.3, 96.2, 8.7 to 1, 69.5, 96.2, 90.6 +4.07578947368421,4.08,a-exp-i3,2022-23,North Adams - Colegrove Park Elementary,02090008, 28.1, 100.0, 8.4 to 1, 81.0, 100.0, 96.8 +3.221052631578947,3.22,a-exp-i3,2022-23,North Adams - Drury High,02090505, 49.9, 100.0, 9.9 to 1, 76.1, 90.0, 76.5 +4.050526315789474,4.05,a-exp-i3,2022-23,North Adams - Greylock,02090015, 22.3, 100.0, 11.3 to 1, 86.5, 91.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 33.9, 100.0, 12.7 to 1, 86.9, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Annie L Sargent School,02110018, 31.8, 100.0, 14.7 to 1, 81.1, 96.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Atkinson,02110001, 27.7, 100.0, 9.9 to 1, 85.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Franklin,02110010, 28.9, 100.0, 13.2 to 1, 86.2, 93.1, 100.0 +3.8105263157894735,3.81,a-exp-i3,2022-23,North Andover - Kittredge,02110015, 19.1, 100.0, 11.8 to 1, 75.9, 100.0, 90.5 +3.8947368421052633,3.89,a-exp-i3,2022-23,North Andover - North Andover High,02110505, 97.1, 99.3, 13.8 to 1, 91.5, 92.7, 92.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - North Andover Middle,02110305, 74.9, 100.0, 13.8 to 1, 96.0, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Andover - Thomson,02110020, 26.1, 100.0, 11.5 to 1, 82.4, 96.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Amvet Boulevard,02120007, 25.5, 100.0, 15.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Community,02120030, 30.5, 100.0, 9.5 to 1, 90.2, 96.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Falls,02120010, 19.3, 100.0, 11.8 to 1, 79.3, 89.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 38.2, 100.0, 14.0 to 1, 92.2, 94.8, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,North Attleborough - North Attleboro High,02120505, 76.5, 98.7, 14.5 to 1, 86.3, 91.5, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 9.8, 100.0, 15.1 to 1, 89.8, 89.8, 100.0 +4.105263157894737,4.11,a-exp-i3,2022-23,North Attleborough - North Attleborough Middle,02120305, 72.9, 100.0, 13.1 to 1, 88.3, 91.5, 97.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Attleborough - Roosevelt Avenue,02120015, 20.5, 100.0, 12.1 to 1, 65.9, 95.1, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,North Brookfield - North Brookfield Elementary,02150015, 23.2, 100.0, 13.0 to 1, 82.8, 100.0, 95.8 +4.0,4.0,a-exp-i3,2022-23,North Brookfield - North Brookfield High,02150505, 17.5, 100.0, 7.8 to 1, 64.0, 94.3, 95.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,North Middlesex - Ashby Elementary,07350010, 11.4, 100.0, 12.4 to 1, 91.2, 91.2, 93.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Middlesex - Hawthorne Brook,07350030, 41.7, 100.0, 11.1 to 1, 90.4, 97.6, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,North Middlesex - Nissitissit Middle School,07350310, 51.1, 100.0, 9.4 to 1, 79.5, 97.2, 96.3 +3.995789473684211,4.0,a-exp-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 57.0, 100.0, 13.7 to 1, 82.8, 94.7, 94.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,North Middlesex - Spaulding Memorial,07350005, 33.4, 100.0, 12.5 to 1, 88.0, 97.0, 97.1 +2.9473684210526314,2.95,a-exp-i3,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 6.2, 98.4, 16.1 to 1, 64.5, 100.0, 70.0 +4.126315789473685,4.13,a-exp-i3,2022-23,North Middlesex - Varnum Brook,07350035, 48.4, 98.1, 13.1 to 1, 79.5, 93.8, 98.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - E Ethel Little School,02170003, 27.4, 100.0, 11.8 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - J Turner Hood,02170010, 31.2, 100.0, 12.3 to 1, 90.1, 96.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - L D Batchelder,02170005, 34.3, 100.0, 13.5 to 1, 86.1, 100.0, 100.0 +4.151578947368421,4.15,a-exp-i3,2022-23,North Reading - North Reading High,02170505, 67.2, 100.0, 9.6 to 1, 98.5, 93.3, 98.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,North Reading - North Reading Middle,02170305, 51.9, 100.0, 10.4 to 1, 90.4, 91.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northampton - Bridge Street,02100005, 28.2, 100.0, 9.3 to 1, 89.3, 100.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Northampton - Jackson Street,02100020, 28.0, 100.0, 10.4 to 1, 75.0, 89.3, 96.8 +4.147368421052631,4.15,a-exp-i3,2022-23,Northampton - John F Kennedy Middle School,02100410, 60.6, 98.4, 9.6 to 1, 83.5, 96.7, 98.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northampton - Leeds,02100025, 29.9, 100.0, 10.0 to 1, 96.7, 96.7, 100.0 +4.08,4.08,a-exp-i3,2022-23,Northampton - Northampton High,02100505, 62.3, 98.7, 14.5 to 1, 83.9, 92.0, 96.9 +4.054736842105263,4.05,a-exp-i3,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 25.9, 96.1, 9.1 to 1, 92.3, 100.0, 96.3 +4.138947368421053,4.14,a-exp-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 60.8, 100.0, 9.3 to 1, 78.6, 86.8, 98.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 112.7, 100.0, 10.8 to 1, 92.5, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Fannie E Proctor,02130015, 19.3, 100.0, 13.1 to 1, 97.1, 97.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Lincoln Street,02130003, 24.6, 100.0, 11.6 to 1, 95.9, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Marguerite E Peaslee,02130014, 23.3, 100.0, 10.8 to 1, 88.9, 95.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northborough - Marion E Zeh,02130020, 19.1, 100.0, 13.1 to 1, 94.0, 97.7, 100.0 +3.9242105263157896,3.92,a-exp-i3,2022-23,Northborough - Robert E. Melican Middle School,02130305, 52.6, 98.1, 10.2 to 1, 95.6, 98.1, 93.2 +4.1557894736842105,4.16,a-exp-i3,2022-23,Northbridge - Northbridge Elementary School,02140001, 80.3, 100.0, 11.9 to 1, 90.0, 95.0, 98.7 +4.025263157894736,4.03,a-exp-i3,2022-23,Northbridge - Northbridge High,02140505, 45.2, 97.8, 11.4 to 1, 80.6, 91.4, 95.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Northbridge - Northbridge Middle,02140305, 38.5, 100.0, 12.5 to 1, 89.6, 100.0, 100.0 +3.7305263157894735,3.73,a-exp-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 125.1, 91.6, 10.3 to 1, 82.8, 87.4, 88.6 +3.9494736842105262,3.95,a-exp-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 46.6, 95.7, 11.5 to 1, 91.4, 87.1, 93.8 +4.0884210526315785,4.09,a-exp-i3,2022-23,Norton - Henri A. Yelle,02180060, 32.0, 100.0, 10.4 to 1, 84.4, 100.0, 97.1 +4.109473684210526,4.11,a-exp-i3,2022-23,Norton - J C Solmonese,02180015, 37.8, 100.0, 13.6 to 1, 77.3, 97.4, 97.6 +4.058947368421053,4.06,a-exp-i3,2022-23,Norton - L G Nourse Elementary,02180010, 24.7, 100.0, 11.7 to 1, 87.9, 96.0, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norton - Norton High,02180505, 60.5, 100.0, 11.2 to 1, 87.1, 94.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norton - Norton Middle,02180305, 44.6, 100.0, 12.4 to 1, 83.2, 97.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwell - Grace Farrar Cole,02190005, 35.1, 100.0, 14.9 to 1, 88.6, 97.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwell - Norwell High,02190505, 50.9, 100.0, 11.8 to 1, 96.1, 98.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwell - Norwell Middle School,02190405, 43.3, 100.0, 11.5 to 1, 90.8, 95.4, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Norwell - William G Vinal,02190020, 36.1, 100.0, 14.7 to 1, 94.5, 97.2, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - Balch,02200005, 31.7, 100.0, 9.9 to 1, 85.5, 96.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - Charles J Prescott,02200025, 23.7, 100.0, 10.2 to 1, 76.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - Cornelius M Callahan,02200010, 22.7, 100.0, 9.9 to 1, 77.1, 100.0, 100.0 +4.046315789473684,4.05,a-exp-i3,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 70.7, 98.6, 11.0 to 1, 86.1, 92.9, 96.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - F A Cleveland,02200015, 30.0, 100.0, 10.4 to 1, 84.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - George F. Willett,02200075, 29.2, 100.0, 13.8 to 1, 95.2, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Norwood - John P Oldham,02200020, 24.8, 100.0, 11.1 to 1, 89.2, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Norwood - Norwood High,02200505, 83.4, 98.8, 11.3 to 1, 83.2, 90.4, 95.7 +3.8652631578947365,3.87,a-exp-i3,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 48.6, 98.6, 9.0 to 1, 80.6, 93.3, 91.8 +4.008421052631579,4.01,a-exp-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 61.0, 98.4, 9.2 to 1, 88.5, 90.2, 95.2 +4.058947368421053,4.06,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 54.4, 100.0, 11.5 to 1, 93.0, 100.0, 96.4 +4.096842105263158,4.1,a-exp-i3,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 36.1, 100.0, 11.7 to 1, 100.0, 100.0, 97.3 +3.5073684210526315,3.51,a-exp-i3,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 28.0, 96.4, 12.8 to 1, 57.1, 78.6, 83.3 +4.0336842105263155,4.03,a-exp-i3,2022-23,Orange - Dexter Park,02230010, 19.6, 94.9, 15.0 to 1, 84.7, 100.0, 95.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Orange - Fisher Hill,02230015, 17.3, 100.0, 13.3 to 1, 65.2, 88.4, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Orleans - Orleans Elementary,02240005, 20.9, 100.0, 6.9 to 1, 85.6, 100.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Oxford - Alfred M Chaffee,02260010, 25.9, 100.0, 11.1 to 1, 80.4, 96.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Oxford - Clara Barton,02260005, 26.4, 100.0, 9.9 to 1, 89.0, 100.0, 100.0 +3.334736842105263,3.33,a-exp-i3,2022-23,Oxford - Oxford High,02260505, 41.2, 92.7, 9.3 to 1, 76.4, 92.7, 79.2 +4.122105263157895,4.12,a-exp-i3,2022-23,Oxford - Oxford Middle,02260405, 43.3, 100.0, 11.7 to 1, 88.4, 93.1, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Palmer - Old Mill Pond,02270008, 53.0, 100.0, 11.3 to 1, 73.6, 96.2, 100.0 +4.143157894736842,4.14,a-exp-i3,2022-23,Palmer - Palmer High,02270505, 60.2, 100.0, 8.9 to 1, 85.1, 96.7, 98.4 +3.941052631578947,3.94,a-exp-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 68.6, 97.1, 9.3 to 1, 80.9, 88.2, 93.6 NA,NA,a-exp-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,"","",Not Reported,"","","" -NA,NA,a-exp-i3,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3,"" -NA,NA,a-exp-i3,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9,"" -NA,NA,a-exp-i3,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7,"" -NA,NA,a-exp-i3,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3,"" -NA,NA,a-exp-i3,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1,"" -NA,NA,a-exp-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6,"" -NA,NA,a-exp-i3,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4,"" -NA,NA,a-exp-i3,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4,"" -NA,NA,a-exp-i3,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2,"" -NA,NA,a-exp-i3,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7,"" -NA,NA,a-exp-i3,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0,"" -NA,NA,a-exp-i3,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1,"" -NA,NA,a-exp-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8,"" -NA,NA,a-exp-i3,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0,"" -NA,NA,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0,"" -NA,NA,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6,"" -NA,NA,a-exp-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7,"" -NA,NA,a-exp-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2,"" -NA,NA,a-exp-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3,"" -NA,NA,a-exp-i3,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3,"" -NA,NA,a-exp-i3,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5,"" -NA,NA,a-exp-i3,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5,"" -NA,NA,a-exp-i3,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9,"" -NA,NA,a-exp-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0,"" -NA,NA,a-exp-i3,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2,"" -NA,NA,a-exp-i3,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8,"" -NA,NA,a-exp-i3,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1,"" -NA,NA,a-exp-i3,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2,"" -NA,NA,a-exp-i3,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6,"" -NA,NA,a-exp-i3,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6,"" -NA,NA,a-exp-i3,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8,"" -NA,NA,a-exp-i3,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9,"" -NA,NA,a-exp-i3,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4,"" -NA,NA,a-exp-i3,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8,"" -NA,NA,a-exp-i3,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5,"" -NA,NA,a-exp-i3,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8,"" -NA,NA,a-exp-i3,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7,"" -NA,NA,a-exp-i3,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1,"" -NA,NA,a-exp-i3,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8,"" -NA,NA,a-exp-i3,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1,"" -NA,NA,a-exp-i3,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7,"" -NA,NA,a-exp-i3,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0,"" -NA,NA,a-exp-i3,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6,"" -NA,NA,a-exp-i3,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4,"" -NA,NA,a-exp-i3,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5,"" -NA,NA,a-exp-i3,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4,"" -NA,NA,a-exp-i3,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6,"" -NA,NA,a-exp-i3,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4,"" -NA,NA,a-exp-i3,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9,"" -NA,NA,a-exp-i3,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3,"" -NA,NA,a-exp-i3,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1,"" -NA,NA,a-exp-i3,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6,"" -NA,NA,a-exp-i3,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4,"" -NA,NA,a-exp-i3,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9,"" -NA,NA,a-exp-i3,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1,"" -NA,NA,a-exp-i3,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1,"" -NA,NA,a-exp-i3,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1,"" -NA,NA,a-exp-i3,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2,"" -NA,NA,a-exp-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9,"" -NA,NA,a-exp-i3,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6,"" -NA,NA,a-exp-i3,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7,"" -NA,NA,a-exp-i3,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9,"" -NA,NA,a-exp-i3,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4,"" -NA,NA,a-exp-i3,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0,"" -NA,NA,a-exp-i3,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3,"" -NA,NA,a-exp-i3,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1,"" -NA,NA,a-exp-i3,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8,"" -NA,NA,a-exp-i3,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3,"" -NA,NA,a-exp-i3,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1,"" -NA,NA,a-exp-i3,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3,"" -NA,NA,a-exp-i3,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1,"" -NA,NA,a-exp-i3,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5,"" -NA,NA,a-exp-i3,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8,"" -NA,NA,a-exp-i3,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1,"" -NA,NA,a-exp-i3,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3,"" -NA,NA,a-exp-i3,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1,"" -NA,NA,a-exp-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0,"" -NA,NA,a-exp-i3,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7,"" -NA,NA,a-exp-i3,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2,"" -NA,NA,a-exp-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1,"" -NA,NA,a-exp-i3,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1,"" -NA,NA,a-exp-i3,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6,"" -NA,NA,a-exp-i3,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1,"" -NA,NA,a-exp-i3,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7,"" -NA,NA,a-exp-i3,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4,"" -NA,NA,a-exp-i3,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0,"" -NA,NA,a-exp-i3,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1,"" -NA,NA,a-exp-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4,"" -NA,NA,a-exp-i3,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2,"" -NA,NA,a-exp-i3,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8,"" -NA,NA,a-exp-i3,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0,"" -NA,NA,a-exp-i3,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8,"" -NA,NA,a-exp-i3,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2,"" -NA,NA,a-exp-i3,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2,"" -NA,NA,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9,"" -NA,NA,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7,"" -NA,NA,a-exp-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0,"" -NA,NA,a-exp-i3,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3,"" -NA,NA,a-exp-i3,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7,"" -NA,NA,a-exp-i3,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6,"" -NA,NA,a-exp-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2,"" -NA,NA,a-exp-i3,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9,"" -NA,NA,a-exp-i3,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6,"" -NA,NA,a-exp-i3,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4,"" -NA,NA,a-exp-i3,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6,"" -NA,NA,a-exp-i3,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2,"" -NA,NA,a-exp-i3,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8,"" -NA,NA,a-exp-i3,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9,"" -NA,NA,a-exp-i3,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5,"" -NA,NA,a-exp-i3,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4,"" -NA,NA,a-exp-i3,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2,"" -NA,NA,a-exp-i3,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6,"" -NA,NA,a-exp-i3,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2,"" -NA,NA,a-exp-i3,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4,"" -NA,NA,a-exp-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2,"" -NA,NA,a-exp-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2,"" -NA,NA,a-exp-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4,"" -NA,NA,a-exp-i3,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4,"" -NA,NA,a-exp-i3,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6,"" -NA,NA,a-exp-i3,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3,"" -NA,NA,a-exp-i3,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3,"" -NA,NA,a-exp-i3,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3,"" -NA,NA,a-exp-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0,"" -NA,NA,a-exp-i3,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0,"" -NA,NA,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2,"" -NA,NA,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2,"" -NA,NA,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2,"" -NA,NA,a-exp-i3,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6,"" -NA,NA,a-exp-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0,"" -NA,NA,a-exp-i3,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4,"" -NA,NA,a-exp-i3,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7,"" -NA,NA,a-exp-i3,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2,"" -NA,NA,a-exp-i3,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5,"" -NA,NA,a-exp-i3,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3,"" -NA,NA,a-exp-i3,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9,"" -NA,NA,a-exp-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4,"" -NA,NA,a-exp-i3,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1,"" -NA,NA,a-exp-i3,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8,"" -NA,NA,a-exp-i3,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2,"" -NA,NA,a-exp-i3,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8,"" -NA,NA,a-exp-i3,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9,"" -NA,NA,a-exp-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2,"" -NA,NA,a-exp-i3,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1,"" -NA,NA,a-exp-i3,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7,"" -NA,NA,a-exp-i3,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9,"" -NA,NA,a-exp-i3,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4,"" -NA,NA,a-exp-i3,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8,"" -NA,NA,a-exp-i3,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0,"" -NA,NA,a-exp-i3,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9,"" -NA,NA,a-exp-i3,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6,"" -NA,NA,a-exp-i3,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9,"" -NA,NA,a-exp-i3,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1,"" -NA,NA,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2,"" -NA,NA,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5,"" -NA,NA,a-exp-i3,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1,"" -NA,NA,a-exp-i3,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7,"" -NA,NA,a-exp-i3,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7,"" -NA,NA,a-exp-i3,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4,"" -NA,NA,a-exp-i3,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1,"" -NA,NA,a-exp-i3,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1,"" -NA,NA,a-exp-i3,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5,"" -NA,NA,a-exp-i3,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9,"" -NA,NA,a-exp-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0,N/A, 98.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - North Street,02950020, 0.0, 0.0,N/A, 94.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9,"" -NA,NA,a-exp-i3,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3,"" -NA,NA,a-exp-i3,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5,"" -NA,NA,a-exp-i3,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1,"" -NA,NA,a-exp-i3,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7,"" -NA,NA,a-exp-i3,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3,"" -NA,NA,a-exp-i3,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7,"" -NA,NA,a-exp-i3,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5,"" -NA,NA,a-exp-i3,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6,"" -NA,NA,a-exp-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7,"" -NA,NA,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6,"" -NA,NA,a-exp-i3,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2,"" -NA,NA,a-exp-i3,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2,"" -NA,NA,a-exp-i3,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9,"" -NA,NA,a-exp-i3,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5,"" -NA,NA,a-exp-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1,"" +4.2105263157894735,4.21,a-exp-i3,2022-23,Peabody - Captain Samuel Brown,02290005, 36.9, 100.0, 10.2 to 1, 88.6, 97.3, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Peabody - Center,02290015, 31.3, 96.8, 14.2 to 1, 79.5, 94.9, 94.1 +4.054736842105263,4.05,a-exp-i3,2022-23,Peabody - J Henry Higgins Middle,02290305, 102.5, 100.0, 13.1 to 1, 89.3, 92.7, 96.3 +4.054736842105263,4.05,a-exp-i3,2022-23,Peabody - John E Burke,02290007, 22.3, 100.0, 11.3 to 1, 79.8, 93.3, 96.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Peabody - John E. McCarthy,02290016, 25.2, 100.0, 13.4 to 1, 83.3, 100.0, 100.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 7.8, 100.0, 12.1 to 1, 66.7, 82.1, 90.9 +4.00421052631579,4.0,a-exp-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 120.5, 98.3, 12.2 to 1, 86.7, 94.6, 95.1 +3.987368421052632,3.99,a-exp-i3,2022-23,Peabody - South Memorial,02290035, 30.8, 98.4, 15.3 to 1, 90.3, 98.4, 94.7 +4.113684210526316,4.11,a-exp-i3,2022-23,Peabody - Thomas Carroll,02290010, 38.8, 98.7, 15.1 to 1, 62.6, 97.4, 97.7 +4.042105263157895,4.04,a-exp-i3,2022-23,Peabody - West Memorial,02290045, 22.1, 95.5, 11.7 to 1, 93.2, 93.2, 96.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Peabody - William A Welch Sr,02290027, 21.9, 95.4, 10.5 to 1, 74.9, 97.7, 95.8 +3.9621052631578944,3.96,a-exp-i3,2022-23,Pelham - Pelham Elementary,02300005, 11.8, 100.0, 11.1 to 1, 91.5, 91.5, 94.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pembroke - Bryantville Elementary,02310003, 30.8, 100.0, 14.0 to 1, 96.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pembroke - Hobomock Elementary,02310010, 33.8, 100.0, 12.1 to 1, 91.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pembroke - North Pembroke Elementary,02310015, 36.9, 100.0, 14.0 to 1, 94.6, 100.0, 100.0 +3.848421052631579,3.85,a-exp-i3,2022-23,Pembroke - Pembroke Community Middle School,02310305, 30.1, 100.0, 13.4 to 1, 84.4, 93.0, 91.4 +4.021052631578947,4.02,a-exp-i3,2022-23,Pembroke - Pembroke High School,02310505, 58.8, 98.3, 12.5 to 1, 89.8, 93.2, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 18.4, 100.0, 12.3 to 1, 84.3, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pentucket - Dr John C Page School,07450015, 28.5, 96.5, 11.1 to 1, 83.8, 96.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pentucket - Elmer S Bagnall,07450005, 38.2, 100.0, 12.7 to 1, 84.3, 97.4, 100.0 +3.92,3.92,a-exp-i3,2022-23,Pentucket - Helen R Donaghue School,07450010, 22.2, 100.0, 11.3 to 1, 82.0, 91.0, 93.1 +3.696842105263158,3.7,a-exp-i3,2022-23,Pentucket - Pentucket Regional Middle,07450405, 26.5, 100.0, 13.5 to 1, 86.3, 93.1, 87.8 +3.6336842105263156,3.63,a-exp-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 51.8, 100.0, 11.4 to 1, 85.8, 95.8, 86.3 +3.2378947368421054,3.24,a-exp-i3,2022-23,Petersham - Petersham Center,02340005, 9.5, 97.9, 13.3 to 1, 87.4, 100.0, 76.9 +1.806315789473684,1.81,a-exp-i3,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 12.0, 66.5, 17.0 to 1, 18.4, 77.0, 42.9 +2.265263157894737,2.27,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12.0, 66.7, 10.4 to 1, 25.0, 50.0, 53.8 +1.296842105263158,1.3,a-exp-i3,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 13.5, 51.9, 12.3 to 1, 22.2, 92.6, 30.8 +3.002105263157895,3.0,a-exp-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 73.7, 79.4, 10.6 to 1, 46.8, 83.7, 71.3 +2.5978947368421053,2.6,a-exp-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 37.3, 79.1, 12.4 to 1, 59.9, 77.2, 61.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 18.0, 100.0, 11.3 to 1, 91.7, 100.0, 100.0 +4.0,4.0,a-exp-i3,2022-23,Pioneer Valley - Northfield Elementary,07500008, 16.8, 100.0, 11.9 to 1, 74.7, 100.0, 95.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 19.0, 100.0, 13.5 to 1, 67.0, 90.5, 88.9 +2.96,2.96,a-exp-i3,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.7, 88.2, 8.6 to 1, 61.0, 81.2, 70.3 +2.694736842105263,2.69,a-exp-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 43.4, 65.4, 9.0 to 1, 53.5, 81.4, 64.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Allendale,02360010, 26.8, 100.0, 10.2 to 1, 78.3, 90.3, 100.0 +3.8400000000000003,3.84,a-exp-i3,2022-23,Pittsfield - Crosby,02360065, 30.1, 96.7, 9.0 to 1, 73.4, 96.7, 91.2 +3.7431578947368425,3.74,a-exp-i3,2022-23,Pittsfield - Crosby Educational Academy,02360030, 6.5, 84.6, 2.6 to 1, 38.5, 84.6, 88.9 +3.6842105263157894,3.68,a-exp-i3,2022-23,Pittsfield - Eagle Education Academy,02360525, 7.0, 85.7, 3.3 to 1, 42.9, 85.7, 87.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Egremont,02360035, 32.6, 100.0, 11.7 to 1, 86.2, 93.9, 100.0 +3.44,3.44,a-exp-i3,2022-23,Pittsfield - John T Reid Middle,02360305, 52.6, 92.4, 8.6 to 1, 71.2, 98.1, 81.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Morningside Community School,02360055, 34.6, 88.4, 10.3 to 1, 53.8, 97.1, 100.0 +3.7557894736842106,3.76,a-exp-i3,2022-23,Pittsfield - Pittsfield High,02360505, 68.0, 95.2, 9.6 to 1, 89.3, 92.9, 89.2 +3.928421052631579,3.93,a-exp-i3,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 2.0, 100.0, 52.0 to 1, 100.0, 100.0, 93.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 17.2, 100.0, 10.5 to 1, 80.1, 97.7, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Pittsfield - Silvio O Conte Community,02360105, 34.9, 94.3, 10.2 to 1, 63.4, 97.1, 92.3 +3.877894736842105,3.88,a-exp-i3,2022-23,Pittsfield - Stearns,02360090, 29.5, 100.0, 7.9 to 1, 64.8, 100.0, 92.1 +3.427368421052632,3.43,a-exp-i3,2022-23,Pittsfield - Taconic High,02360510, 94.2, 84.1, 9.1 to 1, 70.5, 86.2, 81.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 52.2, 92.8, 9.5 to 1, 71.7, 86.3, 85.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Pittsfield - Williams,02360100, 24.2, 100.0, 10.6 to 1, 93.5, 100.0, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plainville - Anna Ware Jackson,02380010, 25.6, 100.0, 11.4 to 1, 90.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 24.5, 100.0, 14.5 to 1, 85.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plymouth - Cold Spring,02390005, 20.5, 100.0, 10.3 to 1, 73.2, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Plymouth - Federal Furnace School,02390011, 37.8, 100.0, 10.7 to 1, 90.2, 94.7, 95.7 +4.067368421052631,4.07,a-exp-i3,2022-23,Plymouth - Hedge,02390010, 22.7, 100.0, 9.2 to 1, 64.8, 100.0, 96.6 +4.130526315789473,4.13,a-exp-i3,2022-23,Plymouth - Indian Brook,02390012, 45.8, 100.0, 12.5 to 1, 89.7, 100.0, 98.1 +4.0336842105263155,4.03,a-exp-i3,2022-23,Plymouth - Manomet Elementary,02390015, 21.1, 100.0, 11.8 to 1, 98.4, 100.0, 95.8 +3.9621052631578944,3.96,a-exp-i3,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 44.6, 100.0, 11.5 to 1, 91.8, 100.0, 94.1 +4.16421052631579,4.16,a-exp-i3,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 84.8, 100.0, 10.4 to 1, 87.0, 95.3, 98.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 10.0, 100.0, 19.1 to 1, 100.0, 100.0, 100.0 +4.172631578947368,4.17,a-exp-i3,2022-23,Plymouth - Plymouth North High,02390505, 109.4, 100.0, 11.9 to 1, 86.3, 93.6, 99.1 +4.1010526315789475,4.1,a-exp-i3,2022-23,Plymouth - Plymouth South High,02390515, 104.2, 99.0, 9.9 to 1, 82.6, 93.3, 97.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Plymouth - Plymouth South Middle,02390305, 54.4, 100.0, 11.4 to 1, 96.3, 94.5, 94.7 +4.134736842105263,4.13,a-exp-i3,2022-23,Plymouth - South Elementary,02390046, 47.7, 100.0, 13.0 to 1, 79.9, 100.0, 98.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plymouth - West Elementary,02390047, 28.8, 100.0, 11.1 to 1, 88.2, 96.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Plympton - Dennett Elementary,02400010, 18.9, 100.0, 12.5 to 1, 83.1, 98.9, 100.0 +2.863157894736842,2.86,a-exp-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 106.4, 78.7, 9.4 to 1, 47.0, 88.0, 68.0 +3.5621052631578944,3.56,a-exp-i3,2022-23,Provincetown - Provincetown Schools,02420020, 22.5, 92.2, 6.3 to 1, 78.8, 100.0, 84.6 +3.9621052631578944,3.96,a-exp-i3,2022-23,Quabbin - Hardwick Elementary,07530005, 13.8, 100.0, 13.3 to 1, 67.4, 92.8, 94.1 +3.987368421052632,3.99,a-exp-i3,2022-23,Quabbin - Hubbardston Center,07530010, 16.3, 100.0, 18.7 to 1, 92.0, 98.2, 94.7 +2.1052631578947367,2.11,a-exp-i3,2022-23,Quabbin - New Braintree Grade,07530020, 2.0, 100.0, 19.0 to 1, 100.0, 100.0, 50.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Quabbin - Oakham Center,07530025, 14.1, 100.0, 12.3 to 1, 69.5, 97.9, 94.1 +3.8063157894736843,3.81,a-exp-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 44.9, 100.0, 12.6 to 1, 87.5, 94.7, 90.4 +3.8105263157894735,3.81,a-exp-i3,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 32.7, 98.3, 15.8 to 1, 88.6, 90.8, 90.5 +3.92,3.92,a-exp-i3,2022-23,Quabbin - Ruggles Lane,07530030, 25.0, 100.0, 15.5 to 1, 86.0, 100.0, 93.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 2.0, 100.0, 23.5 to 1, 100.0, 100.0, 100.0 +3.4526315789473685,3.45,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 33.5, 94.5, 10.6 to 1, 88.8, 95.8, 82.0 +3.6294736842105264,3.63,a-exp-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 14.3, 100.0, 14.2 to 1, 75.5, 81.2, 86.2 +4.029473684210527,4.03,a-exp-i3,2022-23,Quaboag Regional - Warren Elementary,07780005, 21.2, 96.2, 15.1 to 1, 82.1, 97.1, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 14.7, 100.0, 17.5 to 1, 93.3, 93.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 14.0, 100.0, 11.8 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Atherton Hough,02430040, 25.0, 100.0, 10.2 to 1, 82.7, 98.6, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Quincy - Atlantic Middle,02430305, 33.8, 100.0, 16.3 to 1, 88.2, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 23.3, 100.0, 14.1 to 1, 97.7, 98.6, 100.0 +3.9494736842105262,3.95,a-exp-i3,2022-23,Quincy - Broad Meadows Middle,02430310, 27.4, 100.0, 11.7 to 1, 90.9, 100.0, 93.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Central Middle,02430315, 42.0, 100.0, 15.4 to 1, 85.7, 94.8, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 23.2, 100.0, 14.7 to 1, 87.1, 100.0, 96.3 +4.109473684210526,4.11,a-exp-i3,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 39.5, 100.0, 13.0 to 1, 93.2, 100.0, 97.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Francis W Parker,02430075, 28.5, 100.0, 11.2 to 1, 75.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 43.7, 100.0, 12.4 to 1, 84.0, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Quincy - Merrymount,02430060, 23.3, 100.0, 14.0 to 1, 78.5, 100.0, 92.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Quincy - Montclair,02430065, 32.3, 100.0, 13.4 to 1, 75.2, 92.9, 97.1 +4.130526315789473,4.13,a-exp-i3,2022-23,Quincy - North Quincy High,02430510, 94.9, 98.9, 15.5 to 1, 78.9, 87.4, 98.1 +4.08421052631579,4.08,a-exp-i3,2022-23,Quincy - Point Webster Middle,02430325, 31.4, 100.0, 13.1 to 1, 80.8, 96.8, 97.0 +4.08,4.08,a-exp-i3,2022-23,Quincy - Quincy High,02430505, 115.2, 99.1, 13.0 to 1, 85.2, 90.5, 96.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Snug Harbor Community School,02430090, 37.3, 100.0, 10.7 to 1, 75.0, 97.8, 100.0 +3.877894736842105,3.88,a-exp-i3,2022-23,Quincy - South West Middle School,02430320, 36.0, 100.0, 12.2 to 1, 72.2, 89.7, 92.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Quincy - Squantum,02430095, 29.1, 100.0, 12.1 to 1, 86.3, 93.1, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Quincy - Wollaston School,02430110, 23.1, 100.0, 14.4 to 1, 93.1, 100.0, 96.4 +3.3263157894736843,3.33,a-exp-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 57.2, 93.0, 9.1 to 1, 79.6, 94.8, 79.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 27.6, 100.0, 10.3 to 1, 68.4, 89.1, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Randolph - J F Kennedy Elementary,02440018, 46.7, 97.9, 9.0 to 1, 80.7, 95.7, 94.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Randolph - Margaret L Donovan,02440015, 40.0, 100.0, 10.5 to 1, 73.2, 90.0, 97.9 +4.071578947368421,4.07,a-exp-i3,2022-23,Randolph - Martin E Young Elementary,02440040, 27.6, 100.0, 9.1 to 1, 90.7, 100.0, 96.7 +3.7263157894736842,3.73,a-exp-i3,2022-23,Randolph - Randolph Community Middle,02440410, 58.1, 98.3, 9.7 to 1, 65.5, 96.6, 88.5 +3.781052631578947,3.78,a-exp-i3,2022-23,Randolph - Randolph High,02440505, 53.2, 100.0, 11.6 to 1, 79.3, 91.4, 89.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Alice M Barrows,02460002, 26.8, 100.0, 13.3 to 1, 85.1, 100.0, 100.0 +3.7305263157894735,3.73,a-exp-i3,2022-23,Reading - Arthur W Coolidge Middle,02460305, 40.2, 97.5, 10.7 to 1, 89.8, 92.5, 88.6 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Birch Meadow,02460005, 34.7, 100.0, 10.3 to 1, 90.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - J Warren Killam,02460017, 27.3, 100.0, 14.9 to 1, 92.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Joshua Eaton,02460010, 25.9, 100.0, 15.0 to 1, 83.5, 100.0, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Reading - RISE PreSchool,02460001, 9.0, 100.0, 11.5 to 1, 98.6, 100.0, 92.9 +3.995789473684211,4.0,a-exp-i3,2022-23,Reading - Reading Memorial High,02460505, 90.0, 98.9, 12.2 to 1, 88.7, 94.4, 94.9 +4.0336842105263155,4.03,a-exp-i3,2022-23,Reading - Walter S Parker Middle,02460310, 44.2, 98.6, 10.5 to 1, 88.2, 98.6, 95.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Reading - Wood End Elementary School,02460020, 21.8, 100.0, 11.3 to 1, 80.1, 95.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - A. C. Whelan Elementary School,02480003, 58.0, 100.0, 12.5 to 1, 78.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - Abraham Lincoln,02480025, 49.0, 100.0, 12.3 to 1, 71.4, 93.9, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 29.6, 98.3, 11.4 to 1, 86.5, 98.3, 97.1 +3.9494736842105262,3.95,a-exp-i3,2022-23,Revere - CityLab Innovation High School,02480520, 12.7, 100.0, 7.5 to 1, 92.1, 92.1, 93.8 +4.08,4.08,a-exp-i3,2022-23,Revere - Garfield Elementary School,02480056, 62.8, 96.8, 10.9 to 1, 85.7, 93.6, 96.9 +4.042105263157895,4.04,a-exp-i3,2022-23,Revere - Garfield Middle School,02480057, 46.0, 100.0, 11.9 to 1, 63.0, 80.4, 96.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - Paul Revere,02480050, 40.0, 100.0, 11.4 to 1, 80.0, 100.0, 100.0 +3.8989473684210525,3.9,a-exp-i3,2022-23,Revere - Revere High,02480505, 148.3, 95.2, 14.1 to 1, 74.8, 92.9, 92.6 +3.9242105263157896,3.92,a-exp-i3,2022-23,Revere - Rumney Marsh Academy,02480014, 55.0, 100.0, 10.3 to 1, 67.3, 89.1, 93.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 55.5, 100.0, 11.6 to 1, 79.3, 90.1, 100.0 +3.92,3.92,a-exp-i3,2022-23,Revere - Susan B. Anthony Middle School,02480305, 53.4, 100.0, 10.4 to 1, 63.5, 84.1, 93.1 +3.444210526315789,3.44,a-exp-i3,2022-23,Richmond - Richmond Consolidated,02490005, 18.1, 98.9, 8.5 to 1, 94.5, 97.2, 81.8 +3.305263157894737,3.31,a-exp-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 60.6, 86.1, 10.5 to 1, 52.1, 78.9, 78.5 +2.863157894736842,2.86,a-exp-i3,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 23.4, 79.5, 12.3 to 1, 79.5, 78.6, 68.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rochester - Rochester Memorial,02500005, 41.3, 100.0, 11.9 to 1, 87.9, 92.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rockland - Jefferson Elementary School,02510060, 23.5, 100.0, 10.5 to 1, 97.9, 97.9, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Rockland - John W Rogers Middle,02510305, 53.7, 98.1, 13.3 to 1, 75.8, 94.4, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rockland - Memorial Park,02510020, 25.0, 92.0, 9.9 to 1, 74.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Rockland - R Stewart Esten,02510025, 25.0, 100.0, 12.5 to 1, 84.0, 98.0, 100.0 +4.134736842105263,4.13,a-exp-i3,2022-23,Rockland - Rockland Senior High,02510505, 52.1, 100.0, 12.3 to 1, 84.8, 92.3, 98.2 +4.092631578947368,4.09,a-exp-i3,2022-23,Rockport - Rockport Elementary,02520005, 35.0, 100.0, 8.7 to 1, 88.6, 97.1, 97.2 +3.5073684210526315,3.51,a-exp-i3,2022-23,Rockport - Rockport High,02520510, 30.0, 100.0, 7.7 to 1, 98.7, 92.8, 83.3 +3.928421052631579,3.93,a-exp-i3,2022-23,Rockport - Rockport Middle,02520305, 27.4, 100.0, 7.1 to 1, 75.9, 100.0, 93.3 +3.7431578947368425,3.74,a-exp-i3,2022-23,Rowe - Rowe Elementary,02530005, 9.0, 88.9, 7.3 to 1, 77.7, 100.0, 88.9 +1.7389473684210526,1.74,a-exp-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 113.7, 54.2, 11.4 to 1, 23.8, 85.3, 41.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Salem - Bates,02580003, 31.0, 97.9, 12.0 to 1, 78.7, 96.1, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Salem - Bentley Academy Innovation School,02580010, 24.0, 100.0, 11.4 to 1, 42.3, 88.3, 94.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Salem - Carlton,02580015, 26.5, 100.0, 9.3 to 1, 80.0, 100.0, 100.0 +3.541052631578947,3.54,a-exp-i3,2022-23,Salem - Collins Middle,02580305, 51.6, 96.0, 11.9 to 1, 68.0, 90.1, 84.1 +3.953684210526316,3.95,a-exp-i3,2022-23,Salem - Horace Mann Laboratory,02580030, 25.3, 96.5, 11.8 to 1, 78.9, 96.5, 93.9 +3.6842105263157894,3.68,a-exp-i3,2022-23,Salem - New Liberty Innovation School,02580510, 7.0, 100.0, 8.0 to 1, 100.0, 89.8, 87.5 +3.7431578947368425,3.74,a-exp-i3,2022-23,Salem - Salem Early Childhood,02580001, 9.0, 100.0, 10.7 to 1, 100.0, 100.0, 88.9 +3.4989473684210526,3.5,a-exp-i3,2022-23,Salem - Salem High,02580505, 104.4, 87.1, 8.5 to 1, 69.4, 85.1, 83.1 +3.2757894736842106,3.28,a-exp-i3,2022-23,Salem - Salem Prep High School,02580515, 1.4, 84.3, 10.0 to 1, 70.1, 100.0, 77.8 +3.818947368421053,3.82,a-exp-i3,2022-23,Salem - Saltonstall School,02580050, 32.8, 96.7, 12.1 to 1, 61.9, 93.3, 90.7 +4.042105263157895,4.04,a-exp-i3,2022-23,Salem - Witchcraft Heights,02580070, 38.8, 97.4, 11.7 to 1, 84.1, 99.1, 96.0 +2.214736842105263,2.21,a-exp-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 48.0, 82.9, 10.2 to 1, 44.5, 81.0, 52.6 +3.76,3.76,a-exp-i3,2022-23,Sandwich - Forestdale School,02610002, 53.5, 100.0, 10.1 to 1, 76.6, 86.7, 89.3 +4.067368421052631,4.07,a-exp-i3,2022-23,Sandwich - Oak Ridge,02610025, 56.4, 100.0, 11.9 to 1, 77.3, 98.2, 96.6 +3.6842105263157894,3.68,a-exp-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 100.6, 97.0, 9.2 to 1, 82.9, 85.1, 87.5 +4.058947368421053,4.06,a-exp-i3,2022-23,Saugus - Belmonte STEAM Academy,02620060, 53.7, 100.0, 14.5 to 1, 84.2, 98.1, 96.4 +3.9157894736842107,3.92,a-exp-i3,2022-23,Saugus - Saugus High,02620505, 47.0, 99.5, 15.2 to 1, 94.7, 100.0, 93.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Saugus - Saugus Middle School,02620305, 41.4, 100.0, 14.5 to 1, 95.2, 97.6, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Saugus - Veterans Early Learning Center,02620065, 34.0, 97.1, 10.9 to 1, 61.8, 97.1, 100.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Savoy - Emma L Miller Elementary School,02630010, 8.1, 100.0, 4.9 to 1, 87.7, 87.7, 88.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Cushing Elementary,02640007, 27.8, 100.0, 12.7 to 1, 89.2, 96.4, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Scituate - Gates Middle School,02640305, 58.5, 100.0, 10.3 to 1, 96.6, 96.6, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Hatherly Elementary,02640010, 21.8, 100.0, 11.7 to 1, 95.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Jenkins Elementary School,02640015, 30.0, 100.0, 11.0 to 1, 100.0, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Scituate - Scituate High School,02640505, 63.0, 100.0, 12.1 to 1, 88.1, 96.0, 95.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Scituate - Wampatuck Elementary,02640020, 33.8, 100.0, 13.4 to 1, 85.2, 100.0, 100.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 44.6, 100.0, 11.0 to 1, 97.8, 100.0, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Seekonk - George R Martin,02650007, 34.0, 100.0, 13.4 to 1, 91.2, 97.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Seekonk - Mildred Aitken School,02650015, 40.0, 100.0, 14.5 to 1, 90.0, 100.0, 100.0 +3.83578947368421,3.84,a-exp-i3,2022-23,Seekonk - Seekonk High,02650505, 51.0, 99.8, 10.5 to 1, 99.2, 94.1, 91.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 1.0, 100.0, 4.0 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - Cottage Street,02660005, 27.5, 100.0, 16.0 to 1, 79.8, 96.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - East Elementary,02660010, 28.1, 100.0, 17.4 to 1, 87.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - Heights Elementary,02660015, 30.7, 100.0, 18.5 to 1, 85.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Sharon - Sharon High,02660505, 100.7, 100.0, 11.4 to 1, 87.3, 97.2, 97.2 +3.7936842105263158,3.79,a-exp-i3,2022-23,Sharon - Sharon Middle,02660305, 77.7, 100.0, 10.9 to 1, 83.3, 94.8, 90.1 +3.7978947368421054,3.8,a-exp-i3,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 129.1, 97.7, 10.0 to 1, 91.4, 89.0, 90.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sherborn - Pine Hill,02690010, 33.4, 100.0, 12.0 to 1, 78.3, 97.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 22.3, 100.0, 11.1 to 1, 85.7, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Shrewsbury - Floral Street School,02710020, 42.9, 97.7, 12.1 to 1, 90.7, 97.7, 95.7 +4.117894736842105,4.12,a-exp-i3,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 43.1, 97.7, 14.1 to 1, 84.0, 100.0, 97.8 +4.042105263157895,4.04,a-exp-i3,2022-23,Shrewsbury - Oak Middle School,02710030, 74.6, 97.3, 12.7 to 1, 83.6, 92.2, 96.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Shrewsbury - Parker Road Preschool,02710040, 12.0, 100.0, 16.9 to 1, 75.0, 91.7, 100.0 +4.08,4.08,a-exp-i3,2022-23,Shrewsbury - Sherwood Middle School,02710305, 67.1, 97.0, 14.1 to 1, 84.9, 98.5, 96.9 +3.9326315789473685,3.93,a-exp-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505, 124.4, 98.9, 14.7 to 1, 89.7, 93.6, 93.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Shrewsbury - Spring Street School,02710035, 22.2, 96.8, 13.9 to 1, 92.3, 96.8, 100.0 +3.7263157894736842,3.73,a-exp-i3,2022-23,Shrewsbury - Walter J. Paton School,02710025, 25.1, 100.0, 11.6 to 1, 86.4, 97.2, 88.5 +3.987368421052632,3.99,a-exp-i3,2022-23,Shutesbury - Shutesbury Elementary,02720005, 17.2, 100.0, 7.2 to 1, 88.4, 94.2, 94.7 +4.122105263157895,4.12,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505, 84.1, 100.0, 12.4 to 1, 89.3, 92.9, 97.9 +4.113684210526316,4.11,a-exp-i3,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 42.6, 100.0, 12.4 to 1, 97.7, 97.7, 97.7 +2.7747368421052636,2.77,a-exp-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 35.7, 80.1, 9.6 to 1, 70.6, 86.0, 65.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Somerset - Chace Street,02730005, 28.7, 100.0, 11.3 to 1, 89.0, 96.5, 97.1 +4.117894736842105,4.12,a-exp-i3,2022-23,Somerset - North Elementary,02730008, 37.5, 100.0, 12.2 to 1, 90.3, 97.3, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Somerset - Somerset Middle School,02730305, 44.0, 100.0, 13.1 to 1, 86.4, 97.7, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Somerset - South,02730015, 23.7, 100.0, 10.9 to 1, 81.7, 91.6, 96.6 +3.9705263157894737,3.97,a-exp-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 77.0, 100.0, 13.0 to 1, 93.1, 92.2, 94.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 43.6, 100.0, 12.5 to 1, 78.7, 98.9, 92.9 +3.9368421052631577,3.94,a-exp-i3,2022-23,Somerville - Arthur D Healey,02740075, 38.1, 100.0, 13.3 to 1, 80.6, 94.6, 93.5 +3.9747368421052633,3.97,a-exp-i3,2022-23,Somerville - Benjamin G Brown,02740015, 13.2, 100.0, 16.0 to 1, 84.4, 100.0, 94.4 +4.058947368421053,4.06,a-exp-i3,2022-23,Somerville - Capuano Early Childhood Center,02740005, 21.7, 100.0, 9.8 to 1, 78.0, 95.4, 96.4 +3.789473684210526,3.79,a-exp-i3,2022-23,Somerville - E Somerville Community,02740111, 54.3, 100.0, 13.4 to 1, 75.5, 92.6, 90.0 +2.454736842105263,2.45,a-exp-i3,2022-23,Somerville - Full Circle High School,02740510, 13.1, 100.0, 4.1 to 1, 93.5, 96.2, 58.3 +4.0,4.0,a-exp-i3,2022-23,Somerville - John F Kennedy,02740083, 33.1, 100.0, 13.3 to 1, 76.7, 100.0, 95.0 +1.1705263157894736,1.17,a-exp-i3,2022-23,Somerville - Next Wave Junior High,02740410, 5.6, 100.0, 2.7 to 1, 86.5, 97.8, 27.8 +3.9494736842105262,3.95,a-exp-i3,2022-23,Somerville - Somerville High,02740505, 133.7, 97.5, 9.8 to 1, 79.5, 91.9, 93.8 +3.9494736842105262,3.95,a-exp-i3,2022-23,Somerville - West Somerville Neighborhood,02740115, 28.3, 96.5, 13.1 to 1, 85.9, 96.5, 93.8 +3.957894736842105,3.96,a-exp-i3,2022-23,Somerville - Winter Hill Community,02740120, 45.7, 100.0, 9.2 to 1, 82.6, 93.4, 94.0 +4.021052631578947,4.02,a-exp-i3,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 41.8, 100.0, 12.6 to 1, 90.4, 95.2, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,South Hadley - Mosier,02780020, 29.5, 100.0, 11.7 to 1, 86.4, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,South Hadley - Plains Elementary,02780015, 26.5, 100.0, 11.6 to 1, 90.6, 96.2, 100.0 +3.6378947368421053,3.64,a-exp-i3,2022-23,South Hadley - South Hadley High,02780505, 58.2, 94.8, 8.6 to 1, 87.2, 91.4, 86.4 +4.025263157894736,4.03,a-exp-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 86.8, 97.7, 9.7 to 1, 76.0, 79.2, 95.6 +3.0652631578947367,3.07,a-exp-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 92.3, 84.0, 11.4 to 1, 78.0, 84.2, 72.8 +3.8442105263157895,3.84,a-exp-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 66.2, 97.0, 9.9 to 1, 83.4, 86.4, 91.3 +4.008421052631579,4.01,a-exp-i3,2022-23,Southampton - William E Norris,02750005, 38.1, 98.4, 12.5 to 1, 93.2, 97.4, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 20.3, 100.0, 13.2 to 1, 90.1, 100.0, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Southborough - Margaret A Neary,02760020, 21.0, 95.2, 12.7 to 1, 95.2, 100.0, 95.2 +4.08,4.08,a-exp-i3,2022-23,Southborough - Mary E Finn School,02760008, 29.5, 100.0, 11.9 to 1, 80.4, 96.6, 96.9 +3.751578947368421,3.75,a-exp-i3,2022-23,Southborough - P Brent Trottier,02760305, 38.2, 100.0, 10.1 to 1, 87.2, 85.3, 89.1 +3.5073684210526315,3.51,a-exp-i3,2022-23,Southbridge - Charlton Street,02770005, 23.4, 80.8, 10.6 to 1, 33.8, 87.2, 83.3 +4.071578947368421,4.07,a-exp-i3,2022-23,Southbridge - Eastford Road,02770010, 26.0, 96.2, 12.7 to 1, 53.8, 88.5, 96.7 +3.2757894736842106,3.28,a-exp-i3,2022-23,Southbridge - Southbridge Academy,02770525, 8.2, 81.7, 4.0 to 1, 57.3, 85.4, 77.8 +3.1326315789473687,3.13,a-exp-i3,2022-23,Southbridge - Southbridge High School,02770515, 32.8, 87.8, 13.9 to 1, 48.2, 79.3, 74.4 +3.473684210526316,3.47,a-exp-i3,2022-23,Southbridge - Southbridge Middle School,02770315, 36.5, 89.0, 11.1 to 1, 56.1, 86.3, 82.5 +3.553684210526316,3.55,a-exp-i3,2022-23,Southbridge - West Street,02770020, 28.0, 100.0, 12.0 to 1, 50.0, 89.3, 84.4 +3.945263157894737,3.95,a-exp-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 124.0, 94.4, 12.6 to 1, 76.6, 90.3, 93.7 +4.029473684210527,4.03,a-exp-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 40.3, 100.0, 7.3 to 1, 75.4, 86.1, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southern Berkshire - New Marlborough Central,07650018, 8.1, 100.0, 8.1 to 1, 97.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southern Berkshire - South Egremont,07650030, 1.0, 100.0, 13.0 to 1, 100.0, 0.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Southern Berkshire - Undermountain,07650035, 26.8, 100.0, 9.0 to 1, 85.1, 100.0, 100.0 +4.172631578947368,4.17,a-exp-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 116.1, 99.1, 10.2 to 1, 86.2, 87.0, 99.1 +4.0884210526315785,4.09,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 34.6, 100.0, 11.1 to 1, 91.3, 94.2, 97.1 +4.134736842105263,4.13,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 55.6, 100.0, 11.2 to 1, 96.4, 98.2, 98.2 +4.07578947368421,4.08,a-exp-i3,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 31.0, 100.0, 10.1 to 1, 93.5, 100.0, 96.8 +3.4694736842105267,3.47,a-exp-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 30.0, 96.7, 11.9 to 1, 73.4, 80.0, 82.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 18.4, 100.0, 13.0 to 1, 78.3, 94.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 29.0, 100.0, 12.5 to 1, 86.2, 86.2, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 34.0, 97.1, 12.3 to 1, 79.4, 100.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 31.0, 100.0, 14.0 to 1, 80.6, 96.8, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Springfield - Alice B Beal Elementary,02810175, 22.6, 99.8, 13.3 to 1, 86.5, 95.6, 96.0 +3.8610526315789473,3.86,a-exp-i3,2022-23,Springfield - Arthur T Talmadge,02810165, 23.0, 100.0, 10.1 to 1, 91.3, 95.7, 91.7 +3.3684210526315788,3.37,a-exp-i3,2022-23,Springfield - Balliet Preschool,02810003, 13.0, 84.6, 11.5 to 1, 69.2, 100.0, 80.0 +3.545263157894737,3.55,a-exp-i3,2022-23,Springfield - Brightwood,02810025, 37.1, 99.9, 12.7 to 1, 59.4, 91.9, 84.2 +2.526315789473684,2.53,a-exp-i3,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 25.2, 95.6, 10.9 to 1, 59.2, 88.9, 60.0 +3.221052631578947,3.22,a-exp-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 28.5, 99.6, 11.3 to 1, 74.9, 89.3, 76.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Springfield - Daniel B Brunton,02810035, 36.1, 99.9, 9.9 to 1, 63.8, 94.5, 97.4 +3.2757894736842106,3.28,a-exp-i3,2022-23,Springfield - Early Childhood Education Center,02810001, 11.2, 98.7, 16.1 to 1, 71.7, 100.0, 77.8 +3.6378947368421053,3.64,a-exp-i3,2022-23,Springfield - Edward P. Boland School,02810010, 50.3, 95.5, 11.0 to 1, 65.7, 94.0, 86.4 +4.08,4.08,a-exp-i3,2022-23,Springfield - Elias Brookings,02810030, 29.2, 100.0, 9.2 to 1, 79.5, 96.6, 96.9 +1.8442105263157893,1.84,a-exp-i3,2022-23,Springfield - Emergence Academy,02810318, 12.3, 67.3, 9.3 to 1, 34.3, 83.3, 43.8 +3.3431578947368426,3.34,a-exp-i3,2022-23,Springfield - Forest Park Middle,02810325, 31.1, 99.8, 11.3 to 1, 67.6, 90.3, 79.4 +4.008421052631579,4.01,a-exp-i3,2022-23,Springfield - Frank H Freedman,02810075, 20.6, 100.0, 13.4 to 1, 82.4, 100.0, 95.2 +3.873684210526316,3.87,a-exp-i3,2022-23,Springfield - Frederick Harris,02810080, 47.3, 97.7, 12.3 to 1, 82.9, 91.5, 92.0 +NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.2, 100.0, 130.0 to 1, 100.0, 100.0, 0.0 +NA,NA,a-exp-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.2, 100.0, 150.0 to 1, 100.0, 100.0, 0.0 +3.6210526315789475,3.62,a-exp-i3,2022-23,Springfield - German Gerena Community School,02810195, 56.1, 96.3, 10.5 to 1, 85.6, 92.9, 86.0 +3.7431578947368425,3.74,a-exp-i3,2022-23,Springfield - Glenwood,02810065, 27.0, 96.3, 10.7 to 1, 74.1, 96.3, 88.9 +3.9494736842105262,3.95,a-exp-i3,2022-23,Springfield - Glickman Elementary,02810068, 30.1, 99.8, 10.4 to 1, 83.2, 96.7, 93.8 +3.2252631578947364,3.23,a-exp-i3,2022-23,Springfield - High School Of Commerce,02810510, 139.4, 94.3, 7.9 to 1, 60.7, 81.8, 76.6 +3.6842105263157894,3.68,a-exp-i3,2022-23,Springfield - Hiram L Dorman,02810050, 22.0, 95.5, 12.3 to 1, 72.7, 90.9, 87.5 +3.6715789473684213,3.67,a-exp-i3,2022-23,Springfield - Homer Street,02810085, 36.0, 91.7, 11.3 to 1, 61.1, 88.9, 87.2 +2.3789473684210525,2.38,a-exp-i3,2022-23,Springfield - Impact Prep at Chestnut,02810366, 15.9, 86.4, 13.0 to 1, 39.4, 73.5, 56.5 +3.9494736842105262,3.95,a-exp-i3,2022-23,Springfield - Indian Orchard Elementary,02810100, 46.1, 99.9, 11.8 to 1, 69.5, 95.7, 93.8 +2.833684210526316,2.83,a-exp-i3,2022-23,Springfield - John F Kennedy Middle,02810328, 41.4, 96.9, 9.4 to 1, 75.1, 90.3, 67.3 +3.0778947368421052,3.08,a-exp-i3,2022-23,Springfield - John J Duggan Academy,02810320, 69.6, 96.7, 11.7 to 1, 80.8, 82.7, 73.1 +3.5326315789473686,3.53,a-exp-i3,2022-23,Springfield - Kensington International School,02810110, 27.5, 96.2, 9.0 to 1, 70.7, 91.2, 83.9 +2.9810526315789474,2.98,a-exp-i3,2022-23,Springfield - Kiley Academy,02810316, 36.8, 93.6, 8.6 to 1, 47.3, 91.8, 70.8 +3.2294736842105265,3.23,a-exp-i3,2022-23,Springfield - Kiley Prep,02810315, 25.9, 95.7, 10.3 to 1, 68.7, 80.7, 76.7 +3.886315789473684,3.89,a-exp-i3,2022-23,Springfield - Liberty,02810115, 27.0, 96.3, 9.3 to 1, 81.5, 92.6, 92.3 +3.608421052631579,3.61,a-exp-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 3.3, 100.0, 2.4 to 1, 100.0, 100.0, 85.7 +3.983157894736842,3.98,a-exp-i3,2022-23,Springfield - Lincoln,02810120, 37.0, 100.0, 12.1 to 1, 67.6, 91.9, 94.6 +4.0,4.0,a-exp-i3,2022-23,Springfield - Margaret C Ells,02810060, 16.0, 100.0, 10.0 to 1, 68.8, 68.8, 95.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 26.5, 100.0, 11.2 to 1, 84.9, 100.0, 96.3 +3.873684210526316,3.87,a-exp-i3,2022-23,Springfield - Mary M Lynch,02810140, 23.5, 100.0, 9.3 to 1, 72.3, 95.7, 92.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Springfield - Mary M Walsh,02810155, 31.2, 100.0, 8.4 to 1, 84.0, 96.8, 90.9 +3.928421052631579,3.93,a-exp-i3,2022-23,Springfield - Mary O Pottenger,02810145, 31.0, 96.8, 12.7 to 1, 67.7, 96.8, 93.3 +3.6378947368421053,3.64,a-exp-i3,2022-23,Springfield - Milton Bradley School,02810023, 43.1, 97.6, 12.0 to 1, 67.4, 93.0, 86.4 +3.709473684210526,3.71,a-exp-i3,2022-23,Springfield - Rebecca M Johnson,02810055, 54.0, 96.0, 10.7 to 1, 81.2, 96.3, 88.1 +2.5473684210526315,2.55,a-exp-i3,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 23.6, 90.7, 10.2 to 1, 47.5, 80.6, 60.5 +3.7263157894736842,3.73,a-exp-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 122.4, 96.7, 11.1 to 1, 88.5, 85.3, 88.5 +3.0610526315789475,3.06,a-exp-i3,2022-23,Springfield - STEM Middle Academy,02810350, 22.0, 90.9, 13.5 to 1, 68.2, 90.9, 72.7 +4.054736842105263,4.05,a-exp-i3,2022-23,Springfield - Samuel Bowles,02810020, 27.1, 99.8, 8.3 to 1, 81.3, 81.5, 96.3 +3.768421052631579,3.77,a-exp-i3,2022-23,Springfield - South End Middle School,02810355, 18.0, 100.0, 10.4 to 1, 72.2, 83.3, 89.5 +3.583157894736842,3.58,a-exp-i3,2022-23,Springfield - Springfield Central High,02810500, 160.9, 95.0, 13.0 to 1, 84.4, 88.8, 85.1 +3.111578947368421,3.11,a-exp-i3,2022-23,Springfield - Springfield High School,02810570, 15.7, 87.2, 12.9 to 1, 60.2, 91.4, 73.9 +3.663157894736842,3.66,a-exp-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 89.7, 96.6, 12.1 to 1, 76.5, 88.2, 87.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 3.1, 100.0, 9.9 to 1, 100.0, 68.0, 75.0 +3.8273684210526318,3.83,a-exp-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.6, 99.6, 15.6 to 1, 98.2, 93.3, 90.9 +2.3747368421052633,2.37,a-exp-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 34.2, 67.5, 9.4 to 1, 32.2, 94.1, 56.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Springfield - Springfield Middle School,02810360, 5.2, 80.8, 3.8 to 1, 51.5, 78.4, 85.7 +3.8273684210526318,3.83,a-exp-i3,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 9.7, 100.0, 3.3 to 1, 82.5, 100.0, 90.9 +2.5726315789473686,2.57,a-exp-i3,2022-23,Springfield - Springfield Public Day High School,02810550, 14.1, 99.6, 4.3 to 1, 83.0, 92.9, 61.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Springfield - Springfield Public Day Middle School,02810345, 9.5, 100.0, 5.3 to 1, 87.2, 93.4, 100.0 +1.6842105263157894,1.68,a-exp-i3,2022-23,Springfield - Springfield Realization Academy,02810335, 15.2, 47.2, 8.8 to 1, 20.1, 73.3, 40.0 +3.1578947368421053,3.16,a-exp-i3,2022-23,Springfield - Springfield Transition Academy,02810675, 6.4, 100.0, 15.9 to 1, 100.0, 100.0, 75.0 +3.83578947368421,3.84,a-exp-i3,2022-23,Springfield - Sumner Avenue,02810160, 43.1, 97.6, 10.7 to 1, 65.0, 95.2, 91.1 +3.8063157894736843,3.81,a-exp-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 50.3, 100.0, 12.5 to 1, 78.1, 92.0, 90.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Springfield - The Springfield Virtual School,02810705, 41.2, 95.1, 10.4 to 1, 55.3, 85.4, 85.7 +3.5073684210526315,3.51,a-exp-i3,2022-23,Springfield - Thomas M Balliet,02810015, 23.0, 91.3, 12.0 to 1, 52.2, 95.7, 83.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Springfield - Van Sickle Academy,02810485, 28.1, 100.0, 9.1 to 1, 78.4, 71.3, 92.9 +3.663157894736842,3.66,a-exp-i3,2022-23,Springfield - Warner,02810180, 22.7, 95.6, 11.0 to 1, 62.6, 91.2, 87.0 +3.789473684210526,3.79,a-exp-i3,2022-23,Springfield - Washington,02810185, 40.2, 96.0, 10.4 to 1, 76.1, 93.5, 90.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Springfield - White Street,02810190, 37.0, 100.0, 11.3 to 1, 83.8, 97.3, 100.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Springfield - William N. DeBerry,02810045, 28.0, 100.0, 8.7 to 1, 75.0, 92.9, 92.9 +2.4589473684210525,2.46,a-exp-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 67.9, 77.0, 22.4 to 1, 50.5, 81.4, 58.4 +1.7178947368421051,1.72,a-exp-i3,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 45.0, 56.7, 10.8 to 1, 45.6, 98.9, 40.8 +4.042105263157895,4.04,a-exp-i3,2022-23,Stoneham - Colonial Park,02840005, 19.8, 100.0, 12.2 to 1, 84.8, 100.0, 96.0 +3.7136842105263157,3.71,a-exp-i3,2022-23,Stoneham - Robin Hood,02840025, 30.4, 100.0, 12.9 to 1, 83.5, 95.1, 88.2 +4.08,4.08,a-exp-i3,2022-23,Stoneham - South,02840030, 29.3, 100.0, 11.9 to 1, 82.9, 93.2, 96.9 +4.0884210526315785,4.09,a-exp-i3,2022-23,Stoneham - Stoneham Central Middle School,02840405, 64.3, 100.0, 10.5 to 1, 76.1, 92.8, 97.1 +4.016842105263158,4.02,a-exp-i3,2022-23,Stoneham - Stoneham High,02840505, 56.3, 100.0, 11.0 to 1, 84.7, 96.1, 95.4 +3.7431578947368425,3.74,a-exp-i3,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 9.0, 100.0, 11.6 to 1, 55.6, 100.0, 88.9 +4.054736842105263,4.05,a-exp-i3,2022-23,Stoughton - Helen Hansen Elementary,02850010, 21.0, 100.0, 12.6 to 1, 82.8, 100.0, 96.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Stoughton - Joseph H Gibbons,02850025, 28.9, 100.0, 12.1 to 1, 96.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 35.4, 100.0, 10.7 to 1, 86.2, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Stoughton - O'Donnell Middle School,02850405, 71.4, 100.0, 11.4 to 1, 85.7, 93.5, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 26.7, 100.0, 11.7 to 1, 88.7, 96.2, 100.0 +4.067368421052631,4.07,a-exp-i3,2022-23,Stoughton - South Elementary,02850015, 20.2, 100.0, 13.9 to 1, 85.7, 100.0, 96.6 +3.953684210526316,3.95,a-exp-i3,2022-23,Stoughton - Stoughton High,02850505, 102.5, 99.0, 10.5 to 1, 83.9, 91.8, 93.9 +4.092631578947368,4.09,a-exp-i3,2022-23,Sturbridge - Burgess Elementary,02870005, 73.5, 98.6, 11.9 to 1, 87.8, 95.9, 97.2 +1.84,1.84,a-exp-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 88.7, 60.8, 9.4 to 1, 78.1, 88.2, 43.7 +4.012631578947368,4.01,a-exp-i3,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 78.1, 100.0, 10.9 to 1, 91.3, 96.2, 95.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - General John Nixon Elementary,02880025, 26.5, 100.0, 12.3 to 1, 92.5, 97.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - Israel Loring School,02880015, 35.2, 100.0, 12.1 to 1, 97.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - Josiah Haynes,02880010, 25.5, 100.0, 14.5 to 1, 84.3, 96.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sudbury - Peter Noyes,02880030, 39.9, 100.0, 14.2 to 1, 87.8, 100.0, 100.0 +3.8989473684210525,3.9,a-exp-i3,2022-23,Sunderland - Sunderland Elementary,02890005, 23.7, 100.0, 7.5 to 1, 67.1, 95.8, 92.6 +4.050526315789474,4.05,a-exp-i3,2022-23,Sutton - Sutton Early Learning,02900003, 23.3, 100.0, 14.0 to 1, 85.0, 100.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sutton - Sutton Elementary,02900005, 22.3, 100.0, 13.7 to 1, 95.5, 95.5, 100.0 +4.092631578947368,4.09,a-exp-i3,2022-23,Sutton - Sutton High School,02900510, 30.7, 100.0, 12.0 to 1, 100.0, 96.7, 97.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Sutton - Sutton Middle School,02900305, 22.6, 100.0, 13.1 to 1, 100.0, 95.6, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Swampscott - Clarke,02910005, 21.1, 97.6, 9.7 to 1, 79.6, 92.9, 92.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Swampscott - Hadley,02910010, 31.0, 100.0, 11.3 to 1, 79.9, 96.8, 97.4 +3.987368421052632,3.99,a-exp-i3,2022-23,Swampscott - Stanley,02910020, 13.9, 100.0, 11.6 to 1, 78.8, 100.0, 94.7 +4.07578947368421,4.08,a-exp-i3,2022-23,Swampscott - Swampscott High,02910505, 59.8, 100.0, 10.7 to 1, 89.8, 91.9, 96.8 +3.957894736842105,3.96,a-exp-i3,2022-23,Swampscott - Swampscott Middle,02910305, 64.1, 100.0, 10.6 to 1, 95.3, 98.4, 94.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Swansea - Elizabeth S Brown,02920006, 16.7, 100.0, 17.3 to 1, 94.0, 98.8, 95.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Swansea - Gardner,02920015, 15.1, 100.0, 16.9 to 1, 100.0, 96.0, 95.5 +4.029473684210527,4.03,a-exp-i3,2022-23,Swansea - Joseph Case High,02920505, 45.1, 100.0, 11.9 to 1, 91.1, 88.9, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Swansea - Joseph Case Jr High,02920305, 41.0, 100.0, 12.1 to 1, 92.7, 97.6, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Swansea - Joseph G Luther,02920020, 15.1, 100.0, 11.8 to 1, 86.7, 98.9, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 18.3, 100.0, 12.7 to 1, 94.5, 100.0, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 119.3, 100.0, 24.6 to 1, 80.7, 94.1, 94.2 +3.953684210526316,3.95,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 47.8, 97.9, 11.5 to 1, 85.4, 91.2, 93.9 +3.957894736842105,3.96,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 72.5, 100.0, 9.3 to 1, 91.9, 94.3, 94.0 +3.9115789473684215,3.91,a-exp-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 13.3, 100.0, 39.4 to 1, 87.7, 92.5, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Benjamin Friedman Middle,02930315, 50.9, 100.0, 14.3 to 1, 94.1, 92.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - East Taunton Elementary,02930010, 42.7, 100.0, 12.5 to 1, 88.3, 97.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Edmund Hatch Bennett,02930007, 21.4, 100.0, 13.3 to 1, 76.6, 97.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 10.0, 100.0, 25.2 to 1, 80.0, 100.0, 100.0 +4.126315789473685,4.13,a-exp-i3,2022-23,Taunton - Elizabeth Pole,02930027, 44.6, 100.0, 12.9 to 1, 85.4, 94.4, 98.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Taunton - H H Galligan,02930057, 25.6, 100.0, 10.1 to 1, 74.6, 96.1, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 59.4, 100.0, 14.3 to 1, 82.3, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Taunton - John F Parker Middle,02930305, 34.0, 100.0, 14.5 to 1, 76.5, 83.1, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Joseph C Chamberlain,02930008, 33.1, 100.0, 13.7 to 1, 83.4, 98.5, 100.0 +4.126315789473685,4.13,a-exp-i3,2022-23,Taunton - Joseph H Martin,02930042, 48.5, 100.0, 13.2 to 1, 82.5, 95.9, 98.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 5.4, 100.0, 12.8 to 1, 81.4, 100.0, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Taunton - Taunton High,02930505, 171.1, 99.4, 16.1 to 1, 82.9, 89.9, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tewksbury - Heath-Brook,02950010, 24.3, 100.0, 13.7 to 1, 85.6, 100.0, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Tewksbury - John F. Ryan,02950023, 42.3, 100.0, 12.1 to 1, 83.4, 95.3, 97.9 +4.117894736842105,4.12,a-exp-i3,2022-23,Tewksbury - John W. Wynn Middle,02950305, 41.3, 100.0, 12.0 to 1, 92.7, 97.6, 97.8 +4.122105263157895,4.12,a-exp-i3,2022-23,Tewksbury - L F Dewing,02950001, 42.3, 100.0, 14.5 to 1, 82.3, 97.6, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 17.2, 100.0, 12.6 to 1, 98.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tewksbury - North Street,02950020, 22.4, 100.0, 12.6 to 1, 94.3, 100.0, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 65.6, 100.0, 11.5 to 1, 90.5, 93.9, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Tisbury - Tisbury Elementary,02960005, 38.5, 100.0, 7.1 to 1, 88.7, 94.3, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Topsfield - Proctor Elementary,02980005, 26.0, 100.0, 10.0 to 1, 80.8, 100.0, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Topsfield - Steward Elementary,02980010, 31.2, 100.0, 11.8 to 1, 84.0, 100.0, 100.0 +3.9621052631578944,3.96,a-exp-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 83.7, 95.2, 11.4 to 1, 86.7, 95.5, 94.1 +4.113684210526316,4.11,a-exp-i3,2022-23,Triton - Newbury Elementary,07730020, 38.6, 100.0, 10.7 to 1, 84.9, 96.1, 97.7 +4.105263157894737,4.11,a-exp-i3,2022-23,Triton - Pine Grove,07730025, 37.6, 100.0, 11.5 to 1, 77.8, 94.7, 97.5 +4.122105263157895,4.12,a-exp-i3,2022-23,Triton - Salisbury Elementary,07730015, 39.1, 100.0, 10.7 to 1, 76.1, 92.3, 97.9 +3.92,3.92,a-exp-i3,2022-23,Triton - Triton Regional High School,07730505, 58.2, 100.0, 11.1 to 1, 93.5, 89.7, 93.1 +3.953684210526316,3.95,a-exp-i3,2022-23,Triton - Triton Regional Middle School,07730405, 31.5, 99.4, 10.1 to 1, 89.9, 90.5, 93.9 +4.0,4.0,a-exp-i3,2022-23,Truro - Truro Central,03000005, 18.2, 100.0, 5.4 to 1, 75.8, 100.0, 95.0 +4.143157894736842,4.14,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59.2, 100.0, 12.7 to 1, 85.3, 98.6, 98.4 +3.528421052631579,3.53,a-exp-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 30.2, 100.0, 13.7 to 1, 90.4, 96.7, 83.8 +3.8947368421052633,3.89,a-exp-i3,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 37.1, 100.0, 10.8 to 1, 87.1, 94.6, 92.5 +3.2126315789473683,3.21,a-exp-i3,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 37.0, 83.8, 5.8 to 1, 62.2, 66.2, 76.3 +3.5073684210526315,3.51,a-exp-i3,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59.7, 84.6, 10.3 to 1, 41.0, 78.2, 83.3 +3.9115789473684215,3.91,a-exp-i3,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 5.7, 100.0, 12.4 to 1, 90.8, 92.9, 92.9 +3.848421052631579,3.85,a-exp-i3,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 43.7, 98.6, 7.8 to 1, 79.9, 83.5, 91.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 83.3, 86.8, 9.2 to 1, 71.9, 76.1, 85.7 NA,NA,a-exp-i3,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 0.0,N/A,"","","" -NA,NA,a-exp-i3,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4,"" -NA,NA,a-exp-i3,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5,"" -NA,NA,a-exp-i3,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7,"" -NA,NA,a-exp-i3,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4,"" -NA,NA,a-exp-i3,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3,"" -NA,NA,a-exp-i3,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4,"" -NA,NA,a-exp-i3,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4,"" -NA,NA,a-exp-i3,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1,"" -NA,NA,a-exp-i3,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6,"" -NA,NA,a-exp-i3,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3,"" -NA,NA,a-exp-i3,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0,"" -NA,NA,a-exp-i3,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1,"" -NA,NA,a-exp-i3,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8,"" -NA,NA,a-exp-i3,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1,"" -NA,NA,a-exp-i3,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3,"" -NA,NA,a-exp-i3,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2,"" -NA,NA,a-exp-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3,"" -NA,NA,a-exp-i3,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1,"" -NA,NA,a-exp-i3,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4,"" -NA,NA,a-exp-i3,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5,"" -NA,NA,a-exp-i3,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6,"" -NA,NA,a-exp-i3,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8,"" -NA,NA,a-exp-i3,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3,"" -NA,NA,a-exp-i3,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0,"" -NA,NA,a-exp-i3,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4,"" -NA,NA,a-exp-i3,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5,"" -NA,NA,a-exp-i3,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8,"" -NA,NA,a-exp-i3,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4,"" -NA,NA,a-exp-i3,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0,"" -NA,NA,a-exp-i3,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5,"" -NA,NA,a-exp-i3,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9,"" -NA,NA,a-exp-i3,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2,"" -NA,NA,a-exp-i3,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2,"" -NA,NA,a-exp-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8,"" -NA,NA,a-exp-i3,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5,"" -NA,NA,a-exp-i3,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9,"" -NA,NA,a-exp-i3,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7,"" -NA,NA,a-exp-i3,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3,"" -NA,NA,a-exp-i3,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7,"" -NA,NA,a-exp-i3,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1,"" -NA,NA,a-exp-i3,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6,"" -NA,NA,a-exp-i3,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5,"" -NA,NA,a-exp-i3,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6,"" -NA,NA,a-exp-i3,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8,"" -NA,NA,a-exp-i3,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6,"" -NA,NA,a-exp-i3,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4,"" -NA,NA,a-exp-i3,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9,"" -NA,NA,a-exp-i3,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0,"" -NA,NA,a-exp-i3,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9,"" -NA,NA,a-exp-i3,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8,"" -NA,NA,a-exp-i3,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6,"" -NA,NA,a-exp-i3,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9,"" -NA,NA,a-exp-i3,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2,"" -NA,NA,a-exp-i3,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8,"" -NA,NA,a-exp-i3,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2,"" -NA,NA,a-exp-i3,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3,"" -NA,NA,a-exp-i3,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1,"" -NA,NA,a-exp-i3,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8,"" -NA,NA,a-exp-i3,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2,"" -NA,NA,a-exp-i3,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0,"" -NA,NA,a-exp-i3,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0,"" -NA,NA,a-exp-i3,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3,"" -NA,NA,a-exp-i3,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7,"" -NA,NA,a-exp-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6,"" -NA,NA,a-exp-i3,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6,"" -NA,NA,a-exp-i3,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0,"" -NA,NA,a-exp-i3,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0,"" -NA,NA,a-exp-i3,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1,"" -NA,NA,a-exp-i3,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7,"" -NA,NA,a-exp-i3,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5,"" -NA,NA,a-exp-i3,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7,"" -NA,NA,a-exp-i3,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0,"" -NA,NA,a-exp-i3,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2,"" -NA,NA,a-exp-i3,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8,"" -NA,NA,a-exp-i3,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4,"" -NA,NA,a-exp-i3,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6,"" -NA,NA,a-exp-i3,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1,"" -NA,NA,a-exp-i3,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9,"" -NA,NA,a-exp-i3,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4,"" -NA,NA,a-exp-i3,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3,"" -NA,NA,a-exp-i3,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0,"" -NA,NA,a-exp-i3,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6,"" -NA,NA,a-exp-i3,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6,"" -NA,NA,a-exp-i3,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4,"" -NA,NA,a-exp-i3,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8,"" -NA,NA,a-exp-i3,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6,"" -NA,NA,a-exp-i3,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1,"" -NA,NA,a-exp-i3,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2,"" -NA,NA,a-exp-i3,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9,"" -NA,NA,a-exp-i3,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1,"" -NA,NA,a-exp-i3,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4,"" -NA,NA,a-exp-i3,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9,"" -NA,NA,a-exp-i3,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5,"" -NA,NA,a-exp-i3,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0,"" -NA,NA,a-exp-i3,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3,"" -NA,NA,a-exp-i3,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7,"" -NA,NA,a-exp-i3,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0,"" -NA,NA,a-exp-i3,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0,"" -NA,NA,a-exp-i3,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0,"" -NA,NA,a-exp-i3,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0,"" +4.029473684210527,4.03,a-exp-i3,2022-23,Uxbridge - Taft Early Learning Center,03040005, 42.3, 100.0, 12.3 to 1, 78.2, 100.0, 95.7 +4.058947368421053,4.06,a-exp-i3,2022-23,Uxbridge - Uxbridge High,03040505, 53.2, 100.0, 11.1 to 1, 85.0, 94.4, 96.4 +4.105263157894737,4.11,a-exp-i3,2022-23,Uxbridge - Whitin Intermediate,03040405, 37.0, 100.0, 13.4 to 1, 91.9, 86.5, 97.5 +1.8694736842105262,1.87,a-exp-i3,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 57.2, 60.3, 8.8 to 1, 35.8, 83.4, 44.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Central Tree Middle,07750310, 25.8, 100.0, 14.4 to 1, 96.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Chocksett Middle School,07750315, 23.6, 100.0, 11.8 to 1, 99.9, 99.9, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Wachusett - Davis Hill Elementary,07750018, 31.2, 96.3, 14.3 to 1, 93.1, 93.6, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Dawson,07750020, 32.5, 96.9, 15.4 to 1, 87.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Early Childhood Center,07750001, 9.0, 100.0, 14.4 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Glenwood Elementary School,07750060, 23.6, 95.8, 14.1 to 1, 89.4, 95.8, 100.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Wachusett - Houghton Elementary,07750027, 24.8, 96.0, 13.2 to 1, 91.9, 96.0, 92.3 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Leroy E.Mayo,07750032, 31.9, 100.0, 15.4 to 1, 90.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Mountview Middle,07750305, 58.0, 82.7, 13.3 to 1, 75.8, 94.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Naquag Elementary School,07750005, 23.5, 100.0, 15.4 to 1, 87.2, 100.0, 100.0 +4.0884210526315785,4.09,a-exp-i3,2022-23,Wachusett - Paxton Center,07750040, 32.4, 100.0, 14.0 to 1, 87.7, 100.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wachusett - Thomas Prince,07750045, 25.4, 100.0, 13.5 to 1, 86.3, 89.7, 100.0 +4.122105263157895,4.12,a-exp-i3,2022-23,Wachusett - Wachusett Regional High,07750505, 141.1, 99.3, 13.7 to 1, 95.0, 97.2, 97.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Dolbeare,03050005, 33.7, 100.0, 12.8 to 1, 88.1, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 10.0, 100.0, 12.1 to 1, 60.0, 90.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Wakefield - Galvin Middle School,03050310, 88.9, 98.9, 12.0 to 1, 87.6, 93.3, 96.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Greenwood,03050020, 15.6, 100.0, 14.1 to 1, 92.6, 100.0, 100.0 +4.16421052631579,4.16,a-exp-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 81.5, 100.0, 10.1 to 1, 92.4, 93.9, 98.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wakefield - Walton,03050040, 13.4, 100.0, 15.9 to 1, 88.8, 100.0, 100.0 +4.109473684210526,4.11,a-exp-i3,2022-23,Wakefield - Woodville School,03050015, 38.5, 100.0, 11.1 to 1, 73.1, 97.4, 97.6 +3.886315789473684,3.89,a-exp-i3,2022-23,Wales - Wales Elementary,03060005, 9.3, 89.2, 10.4 to 1, 57.8, 87.0, 92.3 +4.1010526315789475,4.1,a-exp-i3,2022-23,Walpole - Bird Middle,03070305, 37.1, 100.0, 10.2 to 1, 89.2, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Walpole - Boyden,03070010, 35.0, 100.0, 11.7 to 1, 71.4, 94.3, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 7.0, 100.0, 12.6 to 1, 71.4, 100.0, 100.0 +4.105263157894737,4.11,a-exp-i3,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 37.9, 100.0, 11.0 to 1, 86.8, 97.4, 97.5 +4.08421052631579,4.08,a-exp-i3,2022-23,Walpole - Elm Street School,03070005, 33.0, 100.0, 13.3 to 1, 78.8, 100.0, 97.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Walpole - Fisher,03070015, 38.0, 100.0, 12.5 to 1, 92.1, 97.4, 97.4 +4.08421052631579,4.08,a-exp-i3,2022-23,Walpole - Old Post Road,03070018, 33.0, 100.0, 13.8 to 1, 93.9, 100.0, 97.0 +4.08421052631579,4.08,a-exp-i3,2022-23,Walpole - Walpole High,03070505, 89.1, 100.0, 11.1 to 1, 92.0, 97.1, 97.0 +4.130526315789473,4.13,a-exp-i3,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 42.0, 100.0, 11.4 to 1, 90.0, 97.6, 98.1 +4.042105263157895,4.04,a-exp-i3,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 40.4, 100.0, 9.5 to 1, 89.1, 97.5, 96.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 37.6, 100.0, 10.1 to 1, 90.7, 97.3, 97.8 +4.08,4.08,a-exp-i3,2022-23,Waltham - John F Kennedy Middle,03080404, 60.2, 100.0, 10.0 to 1, 75.6, 95.0, 96.9 +4.1010526315789475,4.1,a-exp-i3,2022-23,Waltham - John W. McDevitt Middle School,03080415, 70.0, 99.9, 8.5 to 1, 83.6, 93.1, 97.4 +3.991578947368421,3.99,a-exp-i3,2022-23,Waltham - Northeast Elementary School,03080040, 48.7, 100.0, 10.4 to 1, 84.4, 93.8, 94.8 +4.113684210526316,4.11,a-exp-i3,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 32.5, 100.0, 10.9 to 1, 87.7, 100.0, 97.7 +4.0336842105263155,4.03,a-exp-i3,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 16.8, 100.0, 12.7 to 1, 53.3, 94.1, 95.8 +3.831578947368421,3.83,a-exp-i3,2022-23,Waltham - Waltham Sr High,03080505, 161.5, 100.0, 10.8 to 1, 80.9, 90.3, 91.0 +4.117894736842105,4.12,a-exp-i3,2022-23,Waltham - William F. Stanley Elementary School,03080005, 43.2, 100.0, 8.9 to 1, 88.4, 100.0, 97.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 29.2, 100.0, 13.0 to 1, 84.2, 93.2, 100.0 +3.9368421052631577,3.94,a-exp-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 41.1, 99.6, 12.1 to 1, 94.7, 90.3, 93.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Ware - Ware Middle School,03090305, 21.6, 100.0, 11.5 to 1, 72.2, 86.1, 100.0 +3.6842105263157894,3.68,a-exp-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 2.2, 100.0, 14.8 to 1, 77.6, 66.4, 87.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Wareham - Wareham Elementary School,03100017, 75.0, 100.0, 12.3 to 1, 85.3, 93.3, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wareham - Wareham Middle,03100305, 38.4, 100.0, 11.4 to 1, 82.8, 90.1, 100.0 +3.8105263157894735,3.81,a-exp-i3,2022-23,Wareham - Wareham Senior High,03100505, 62.8, 98.4, 10.0 to 1, 76.5, 95.4, 90.5 +4.113684210526316,4.11,a-exp-i3,2022-23,Watertown - Cunniff,03140015, 35.6, 100.0, 9.2 to 1, 77.0, 96.5, 97.7 +4.16,4.16,a-exp-i3,2022-23,Watertown - Hosmer,03140020, 69.5, 98.6, 10.3 to 1, 85.0, 99.6, 98.8 +4.029473684210527,4.03,a-exp-i3,2022-23,Watertown - James Russell Lowell,03140025, 41.8, 100.0, 8.5 to 1, 80.7, 100.0, 95.7 +3.7305263157894735,3.73,a-exp-i3,2022-23,Watertown - Watertown High,03140505, 72.3, 95.6, 10.1 to 1, 89.3, 95.8, 88.6 +4.008421052631579,4.01,a-exp-i3,2022-23,Watertown - Watertown Middle,03140305, 52.8, 100.0, 10.1 to 1, 86.9, 94.3, 95.2 +4.046315789473684,4.05,a-exp-i3,2022-23,Wayland - Claypit Hill School,03150005, 43.3, 100.0, 11.5 to 1, 88.5, 100.0, 96.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wayland - Happy Hollow School,03150015, 29.1, 100.0, 12.5 to 1, 89.7, 99.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wayland - Loker School,03150020, 27.6, 100.0, 14.0 to 1, 96.4, 96.4, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wayland - The Children's Way Preschool,03150025, 5.0, 100.0, 12.6 to 1, 40.0, 100.0, 100.0 +4.021052631578947,4.02,a-exp-i3,2022-23,Wayland - Wayland High School,03150505, 73.8, 98.8, 11.2 to 1, 94.6, 96.5, 95.5 +4.08,4.08,a-exp-i3,2022-23,Wayland - Wayland Middle School,03150305, 57.8, 100.0, 10.8 to 1, 100.0, 93.8, 96.9 +4.008421052631579,4.01,a-exp-i3,2022-23,Webster - Bartlett High School,03160505, 38.8, 100.0, 9.4 to 1, 89.7, 97.4, 95.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Webster - Park Avenue Elementary,03160015, 60.5, 100.0, 12.2 to 1, 85.1, 95.0, 100.0 +3.9663157894736845,3.97,a-exp-i3,2022-23,Webster - Webster Middle School,03160315, 45.3, 100.0, 13.0 to 1, 77.9, 97.8, 94.2 +4.021052631578947,4.02,a-exp-i3,2022-23,Wellesley - Ernest F Upham,03170050, 19.4, 100.0, 8.2 to 1, 90.6, 94.9, 95.5 +4.0884210526315785,4.09,a-exp-i3,2022-23,Wellesley - Hunnewell,03170025, 16.7, 100.0, 11.8 to 1, 87.1, 100.0, 97.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - John D Hardy,03170020, 18.1, 100.0, 11.4 to 1, 89.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Joseph E Fiske,03170015, 21.4, 100.0, 13.1 to 1, 90.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Katharine Lee Bates,03170005, 17.1, 100.0, 15.8 to 1, 94.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 9.0, 100.0, 9.9 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Schofield,03170045, 28.3, 100.0, 11.7 to 1, 89.6, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellesley - Sprague Elementary School,03170048, 24.7, 100.0, 11.6 to 1, 83.8, 100.0, 100.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Wellesley - Wellesley Middle,03170305, 104.8, 99.0, 8.8 to 1, 89.8, 96.5, 96.3 +4.00421052631579,4.0,a-exp-i3,2022-23,Wellesley - Wellesley Sr High,03170505, 116.6, 98.6, 12.1 to 1, 91.3, 93.9, 95.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wellfleet - Wellfleet Elementary,03180005, 10.6, 100.0, 9.2 to 1, 71.8, 81.2, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Boylston - Major Edwards Elementary,03220005, 34.5, 100.0, 12.5 to 1, 86.1, 94.2, 100.0 +4.046315789473684,4.05,a-exp-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 45.7, 97.8, 9.5 to 1, 81.7, 84.7, 96.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Bridgewater - Howard School,03230305, 19.5, 100.0, 16.0 to 1, 95.7, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Bridgewater - Rose L Macdonald,03230003, 19.3, 100.0, 16.2 to 1, 80.0, 89.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Bridgewater - Spring Street School,03230005, 9.8, 100.0, 15.9 to 1, 70.3, 100.0, 100.0 +3.9747368421052633,3.97,a-exp-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 50.4, 100.0, 12.4 to 1, 88.7, 100.0, 94.4 +4.021052631578947,4.02,a-exp-i3,2022-23,West Springfield - John Ashley,03320005, 15.2, 97.8, 11.5 to 1, 95.3, 97.8, 95.5 +4.109473684210526,4.11,a-exp-i3,2022-23,West Springfield - John R Fausey,03320010, 38.0, 99.1, 10.8 to 1, 96.5, 99.1, 97.6 +4.067368421052631,4.07,a-exp-i3,2022-23,West Springfield - Memorial,03320025, 21.0, 100.0, 9.4 to 1, 97.1, 100.0, 96.6 +4.0336842105263155,4.03,a-exp-i3,2022-23,West Springfield - Mittineague,03320030, 16.7, 100.0, 8.9 to 1, 100.0, 94.7, 95.8 +4.147368421052631,4.15,a-exp-i3,2022-23,West Springfield - Philip G Coburn,03320007, 60.0, 99.5, 8.9 to 1, 85.5, 99.5, 98.5 +4.058947368421053,4.06,a-exp-i3,2022-23,West Springfield - Tatham,03320040, 21.8, 100.0, 10.6 to 1, 86.2, 94.9, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,West Springfield - West Springfield Early Childhood,03320001, 8.3, 100.0, 10.8 to 1, 87.9, 100.0, 100.0 +4.008421052631579,4.01,a-exp-i3,2022-23,West Springfield - West Springfield High,03320505, 93.7, 99.5, 12.7 to 1, 97.3, 95.7, 95.2 +4.1010526315789475,4.1,a-exp-i3,2022-23,West Springfield - West Springfield Middle,03320305, 75.2, 100.0, 11.9 to 1, 92.0, 97.3, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westborough - Annie E Fales,03210010, 30.7, 100.0, 10.8 to 1, 100.0, 96.7, 100.0 +3.9157894736842107,3.92,a-exp-i3,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 51.8, 100.0, 9.2 to 1, 86.3, 96.1, 93.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Westborough - J Harding Armstrong,03210005, 33.3, 100.0, 11.7 to 1, 85.0, 100.0, 97.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westborough - Mill Pond School,03210045, 72.8, 100.0, 11.9 to 1, 88.3, 96.6, 100.0 +4.08,4.08,a-exp-i3,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 56.8, 100.0, 10.4 to 1, 89.5, 96.5, 96.9 +4.016842105263158,4.02,a-exp-i3,2022-23,Westborough - Westborough High,03210505, 90.9, 100.0, 13.0 to 1, 94.4, 90.6, 95.4 +4.0,4.0,a-exp-i3,2022-23,Westfield - Abner Gibbs,03250020, 15.0, 100.0, 10.2 to 1, 84.8, 96.8, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 8.1, 100.0, 16.5 to 1, 87.6, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Franklin Ave,03250015, 14.0, 100.0, 11.9 to 1, 83.7, 96.6, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Highland,03250025, 27.5, 100.0, 13.5 to 1, 84.7, 100.0, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Westfield - Munger Hill,03250033, 30.0, 96.7, 11.3 to 1, 89.3, 100.0, 96.8 +3.9115789473684215,3.91,a-exp-i3,2022-23,Westfield - Paper Mill,03250036, 25.0, 96.0, 13.6 to 1, 70.9, 92.0, 92.9 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westfield - Southampton Road,03250040, 23.6, 100.0, 13.8 to 1, 87.3, 100.0, 100.0 +3.8610526315789473,3.86,a-exp-i3,2022-23,Westfield - Westfield High,03250505, 84.7, 97.2, 12.1 to 1, 78.7, 94.1, 91.7 +3.789473684210526,3.79,a-exp-i3,2022-23,Westfield - Westfield Intermediate School,03250075, 64.9, 98.5, 10.3 to 1, 84.6, 98.5, 90.0 +3.8442105263157895,3.84,a-exp-i3,2022-23,Westfield - Westfield Middle School,03250310, 61.0, 96.7, 11.3 to 1, 86.9, 98.4, 91.3 +3.667368421052631,3.67,a-exp-i3,2022-23,Westfield - Westfield Technical Academy,03250605, 60.3, 88.4, 9.0 to 1, 85.1, 88.4, 87.1 +3.789473684210526,3.79,a-exp-i3,2022-23,Westfield - Westfield Virtual School,03250705, 12.1, 100.0, 6.5 to 1, 54.7, 80.9, 90.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Westford - Abbot Elementary,03260004, 31.6, 96.8, 11.4 to 1, 92.7, 100.0, 92.3 +3.781052631578947,3.78,a-exp-i3,2022-23,Westford - Blanchard Middle,03260310, 47.2, 95.2, 11.5 to 1, 92.9, 100.0, 89.8 +3.650526315789474,3.65,a-exp-i3,2022-23,Westford - Col John Robinson,03260025, 23.8, 94.5, 14.2 to 1, 87.7, 100.0, 86.7 +3.8147368421052628,3.81,a-exp-i3,2022-23,Westford - Day Elementary,03260007, 24.8, 96.0, 13.2 to 1, 91.2, 96.0, 90.6 +3.642105263157895,3.64,a-exp-i3,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 27.3, 100.0, 12.3 to 1, 84.9, 100.0, 86.5 +3.8273684210526318,3.83,a-exp-i3,2022-23,Westford - Nabnasset,03260015, 28.6, 94.1, 12.9 to 1, 87.0, 100.0, 90.9 +3.9368421052631577,3.94,a-exp-i3,2022-23,Westford - Rita E. Miller Elementary School,03260055, 27.5, 96.4, 10.9 to 1, 81.8, 100.0, 93.5 +4.042105263157895,4.04,a-exp-i3,2022-23,Westford - Stony Brook School,03260330, 48.6, 98.6, 12.6 to 1, 97.9, 95.9, 96.0 +4.138947368421053,4.14,a-exp-i3,2022-23,Westford - Westford Academy,03260505, 113.7, 99.1, 13.4 to 1, 91.6, 93.8, 98.3 +3.9747368421052633,3.97,a-exp-i3,2022-23,Westhampton - Westhampton Elementary School,03270005, 13.6, 100.0, 7.6 to 1, 92.6, 92.6, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Weston - Country,03300010, 22.3, 100.0, 14.9 to 1, 82.1, 100.0, 100.0 +4.0336842105263155,4.03,a-exp-i3,2022-23,Weston - Field Elementary School,03300012, 20.4, 100.0, 13.0 to 1, 85.9, 100.0, 95.8 +3.8821052631578947,3.88,a-exp-i3,2022-23,Weston - Weston High,03300505, 60.4, 98.3, 10.6 to 1, 82.0, 94.9, 92.2 +3.928421052631579,3.93,a-exp-i3,2022-23,Weston - Weston Middle,03300305, 43.2, 96.5, 10.3 to 1, 82.9, 90.2, 93.3 +4.071578947368421,4.07,a-exp-i3,2022-23,Weston - Woodland,03300015, 21.4, 100.0, 15.0 to 1, 81.3, 100.0, 96.7 +3.8610526315789473,3.86,a-exp-i3,2022-23,Westport - Alice A Macomber,03310015, 12.0, 100.0, 14.4 to 1, 91.7, 100.0, 91.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westport - Westport Elementary,03310030, 32.3, 100.0, 13.6 to 1, 81.4, 93.8, 100.0 +3.8652631578947365,3.87,a-exp-i3,2022-23,Westport - Westport Middle-High School,03310515, 70.9, 98.6, 11.7 to 1, 90.1, 92.2, 91.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Deerfield School,03350010, 17.2, 100.0, 11.4 to 1, 80.2, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Downey,03350012, 26.4, 100.0, 11.7 to 1, 88.6, 100.0, 100.0 +4.063157894736842,4.06,a-exp-i3,2022-23,Westwood - E W Thurston Middle,03350305, 56.2, 100.0, 11.8 to 1, 82.2, 89.3, 96.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Martha Jones,03350017, 20.3, 100.0, 13.0 to 1, 100.0, 95.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Paul Hanlon,03350015, 17.0, 100.0, 13.5 to 1, 73.5, 88.8, 100.0 +3.873684210526316,3.87,a-exp-i3,2022-23,Westwood - Westwood High,03350505, 76.3, 98.7, 11.8 to 1, 77.7, 91.2, 92.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3.0, 100.0, 14.0 to 1, 100.0, 100.0, 100.0 +4.042105263157895,4.04,a-exp-i3,2022-23,Westwood - William E Sheehan,03350025, 24.3, 100.0, 11.8 to 1, 93.4, 100.0, 96.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Weymouth - Academy Avenue,03360005, 23.1, 95.7, 14.9 to 1, 87.0, 100.0, 96.2 +4.042105263157895,4.04,a-exp-i3,2022-23,Weymouth - Frederick C Murphy,03360050, 23.1, 100.0, 12.1 to 1, 78.4, 100.0, 96.0 +3.886315789473684,3.89,a-exp-i3,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 12.4, 100.0, 14.4 to 1, 75.8, 100.0, 92.3 +4.050526315789474,4.05,a-exp-i3,2022-23,Weymouth - Lawrence W Pingree,03360065, 22.1, 95.5, 11.7 to 1, 70.6, 97.7, 96.2 +4.172631578947368,4.17,a-exp-i3,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 111.8, 100.0, 10.7 to 1, 95.1, 96.4, 99.1 +4.021052631578947,4.02,a-exp-i3,2022-23,Weymouth - Ralph Talbot,03360085, 20.1, 100.0, 12.9 to 1, 77.6, 100.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Weymouth - Thomas V Nash,03360060, 20.1, 100.0, 11.5 to 1, 90.1, 97.5, 100.0 +4.071578947368421,4.07,a-exp-i3,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 26.6, 100.0, 13.2 to 1, 88.7, 98.1, 96.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Weymouth - Wessagusset,03360110, 25.1, 100.0, 13.6 to 1, 70.1, 100.0, 100.0 +4.1557894736842105,4.16,a-exp-i3,2022-23,Weymouth - Weymouth High School,03360505, 143.6, 100.0, 12.6 to 1, 84.3, 90.0, 98.7 +3.928421052631579,3.93,a-exp-i3,2022-23,Weymouth - William Seach,03360080, 25.1, 100.0, 14.2 to 1, 66.2, 94.0, 93.3 +3.9747368421052633,3.97,a-exp-i3,2022-23,Whately - Whately Elementary,03370005, 14.8, 100.0, 8.6 to 1, 79.7, 100.0, 94.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 38.3, 100.0, 11.7 to 1, 81.7, 93.8, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - Indian Head,07800035, 34.0, 100.0, 14.3 to 1, 79.4, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - John H Duval,07800030, 35.5, 100.0, 12.0 to 1, 77.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - Louise A Conley,07800010, 33.0, 97.0, 14.6 to 1, 84.8, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 3.9, 100.0, 25.7 to 1, 74.3, 100.0, 100.0 +4.1010526315789475,4.1,a-exp-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 71.6, 100.0, 15.3 to 1, 88.1, 92.3, 97.4 +4.0,4.0,a-exp-i3,2022-23,Whitman-Hanson - Whitman Middle,07800310, 36.4, 100.0, 13.8 to 1, 80.8, 90.7, 95.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 122.9, 99.2, 10.4 to 1, 87.0, 84.6, 96.2 +3.9747368421052633,3.97,a-exp-i3,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 15.2, 100.0, 8.4 to 1, 86.8, 93.4, 94.4 +3.608421052631579,3.61,a-exp-i3,2022-23,Wilmington - Boutwell,03420005, 11.2, 91.0, 12.8 to 1, 55.1, 100.0, 85.7 +4.0336842105263155,4.03,a-exp-i3,2022-23,Wilmington - North Intermediate,03420060, 19.3, 100.0, 13.1 to 1, 92.2, 100.0, 95.8 +3.8947368421052633,3.89,a-exp-i3,2022-23,Wilmington - Shawsheen Elementary,03420025, 34.8, 100.0, 11.1 to 1, 74.2, 100.0, 92.5 +3.9621052631578944,3.96,a-exp-i3,2022-23,Wilmington - West Intermediate,03420080, 26.8, 100.0, 10.9 to 1, 86.9, 100.0, 94.1 +4.0,4.0,a-exp-i3,2022-23,Wilmington - Wilmington High,03420505, 70.7, 100.0, 9.3 to 1, 88.7, 92.4, 95.0 +4.0,4.0,a-exp-i3,2022-23,Wilmington - Wilmington Middle School,03420330, 74.8, 97.3, 8.4 to 1, 81.3, 94.6, 95.0 +4.008421052631579,4.01,a-exp-i3,2022-23,Wilmington - Woburn Street,03420020, 36.3, 97.8, 11.7 to 1, 95.0, 100.0, 95.2 +2.6315789473684212,2.63,a-exp-i3,2022-23,Winchendon - Memorial,03430040, 23.5, 100.0, 13.6 to 1, 78.8, 91.5, 62.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 1.0, 100.0, 22.0 to 1, 100.0, 100.0, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Winchendon - Murdock High School,03430515, 23.0, 100.0, 11.4 to 1, 78.3, 87.0, 96.2 +4.029473684210527,4.03,a-exp-i3,2022-23,Winchendon - Murdock Middle School,03430315, 21.0, 100.0, 12.8 to 1, 90.5, 90.5, 95.7 +4.021052631578947,4.02,a-exp-i3,2022-23,Winchendon - Toy Town Elementary,03430050, 21.5, 100.0, 13.7 to 1, 72.0, 86.0, 95.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 4.0, 100.0, 18.0 to 1, 100.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Ambrose Elementary,03440045, 31.3, 100.0, 11.0 to 1, 96.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Lincoln Elementary,03440005, 27.3, 100.0, 12.0 to 1, 89.0, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Lynch Elementary,03440020, 44.1, 100.0, 10.7 to 1, 85.9, 95.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - McCall Middle,03440305, 89.9, 100.0, 11.5 to 1, 80.0, 93.1, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Muraco Elementary,03440040, 33.7, 100.0, 9.7 to 1, 82.8, 94.7, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Winchester - Vinson-Owen Elementary,03440025, 33.4, 100.0, 13.2 to 1, 80.6, 98.5, 100.0 +3.9789473684210526,3.98,a-exp-i3,2022-23,Winchester - Winchester High School,03440505, 95.0, 99.8, 14.6 to 1, 91.2, 97.7, 94.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 33.5, 97.0, 12.9 to 1, 67.2, 97.0, 97.4 +4.012631578947368,4.01,a-exp-i3,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38.5, 100.0, 12.8 to 1, 79.2, 92.2, 95.3 +4.113684210526316,4.11,a-exp-i3,2022-23,Winthrop - Winthrop High School,03460505, 40.1, 100.0, 14.8 to 1, 83.0, 86.8, 97.7 +3.473684210526316,3.47,a-exp-i3,2022-23,Winthrop - Winthrop Middle School,03460305, 38.4, 94.8, 11.1 to 1, 66.1, 78.4, 82.5 +4.1010526315789475,4.1,a-exp-i3,2022-23,Woburn - Clyde Reeves,03470040, 29.4, 100.0, 14.4 to 1, 82.6, 99.6, 97.4 +4.058947368421053,4.06,a-exp-i3,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 52.4, 100.0, 8.5 to 1, 82.8, 98.1, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Woburn - Goodyear Elementary School,03470005, 24.5, 100.0, 13.1 to 1, 63.3, 95.9, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 24.5, 100.0, 15.9 to 1, 95.9, 100.0, 100.0 +3.8652631578947365,3.87,a-exp-i3,2022-23,Woburn - John F Kennedy Middle School,03470405, 46.6, 97.9, 11.0 to 1, 89.3, 91.4, 91.8 +3.8105263157894735,3.81,a-exp-i3,2022-23,Woburn - Linscott-Rumford,03470025, 16.7, 100.0, 11.9 to 1, 88.0, 100.0, 90.5 +4.08,4.08,a-exp-i3,2022-23,Woburn - Malcolm White,03470055, 27.3, 100.0, 11.6 to 1, 80.3, 91.3, 96.9 +3.6378947368421053,3.64,a-exp-i3,2022-23,Woburn - Mary D Altavesta,03470065, 16.6, 100.0, 12.2 to 1, 87.9, 100.0, 86.4 +4.07578947368421,4.08,a-exp-i3,2022-23,Woburn - Shamrock,03470043, 25.9, 100.0, 11.0 to 1, 88.4, 100.0, 96.8 +4.063157894736842,4.06,a-exp-i3,2022-23,Woburn - Woburn High,03470505, 110.8, 98.2, 10.6 to 1, 89.2, 94.6, 96.5 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Belmont Street Community,03480020, 34.9, 100.0, 16.7 to 1, 82.3, 96.6, 100.0 +3.8021052631578947,3.8,a-exp-i3,2022-23,Worcester - Burncoat Middle School,03480405, 49.3, 99.0, 14.5 to 1, 81.0, 85.3, 90.3 +3.7557894736842106,3.76,a-exp-i3,2022-23,Worcester - Burncoat Senior High,03480503, 67.9, 95.3, 17.4 to 1, 72.7, 79.7, 89.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Burncoat Street,03480035, 19.3, 100.0, 12.4 to 1, 81.0, 93.4, 100.0 +4.07578947368421,4.08,a-exp-i3,2022-23,Worcester - Canterbury,03480045, 26.6, 100.0, 11.0 to 1, 76.3, 98.8, 96.8 +3.8694736842105266,3.87,a-exp-i3,2022-23,Worcester - Chandler Elementary Community,03480050, 31.1, 97.4, 13.7 to 1, 69.2, 85.2, 91.9 +3.789473684210526,3.79,a-exp-i3,2022-23,Worcester - Chandler Magnet,03480052, 27.6, 95.6, 14.6 to 1, 77.6, 97.2, 90.0 +4.105263157894737,4.11,a-exp-i3,2022-23,Worcester - City View,03480053, 37.7, 100.0, 11.4 to 1, 68.6, 92.5, 97.5 +3.6210526315789475,3.62,a-exp-i3,2022-23,Worcester - Claremont Academy,03480350, 31.3, 100.0, 15.6 to 1, 80.3, 89.3, 86.0 +4.054736842105263,4.05,a-exp-i3,2022-23,Worcester - Clark St Community,03480055, 22.0, 100.0, 12.2 to 1, 67.8, 91.6, 96.3 +4.0884210526315785,4.09,a-exp-i3,2022-23,Worcester - Columbus Park,03480060, 28.7, 100.0, 13.5 to 1, 90.9, 91.3, 97.1 +3.8063157894736843,3.81,a-exp-i3,2022-23,Worcester - Doherty Memorial High,03480512, 86.9, 98.8, 15.5 to 1, 87.2, 85.2, 90.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Elm Park Community,03480095, 29.9, 100.0, 13.9 to 1, 57.2, 90.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Flagg Street,03480090, 22.6, 100.0, 15.9 to 1, 86.4, 92.7, 100.0 +3.957894736842105,3.96,a-exp-i3,2022-23,Worcester - Forest Grove Middle,03480415, 62.9, 97.7, 14.3 to 1, 74.8, 89.3, 94.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Francis J McGrath Elementary,03480177, 17.9, 100.0, 11.6 to 1, 55.3, 100.0, 100.0 +3.941052631578947,3.94,a-exp-i3,2022-23,Worcester - Gates Lane,03480110, 46.1, 95.7, 11.8 to 1, 82.5, 95.7, 93.6 +4.1010526315789475,4.1,a-exp-i3,2022-23,Worcester - Goddard School/Science Technical,03480100, 34.0, 97.8, 11.2 to 1, 64.7, 88.2, 97.4 +3.776842105263158,3.78,a-exp-i3,2022-23,Worcester - Grafton Street,03480115, 23.5, 100.0, 18.2 to 1, 83.0, 83.0, 89.7 +0.9136842105263158,1,a-exp-i3,2022-23,Worcester - Head Start,03480002, 23.0, 21.7, 17.7 to 1, 56.5, 100.0, 21.7 +4.029473684210527,4.03,a-exp-i3,2022-23,Worcester - Heard Street,03480136, 14.9, 100.0, 16.5 to 1, 93.3, 100.0, 95.7 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 24.3, 100.0, 15.3 to 1, 73.7, 99.5, 100.0 +3.663157894736842,3.66,a-exp-i3,2022-23,Worcester - La Familia Dual Language School,03480025, 12.3, 83.7, 14.0 to 1, 45.9, 86.1, 87.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Lake View,03480145, 20.1, 100.0, 15.4 to 1, 83.9, 97.5, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Lincoln Street,03480160, 17.2, 100.0, 14.1 to 1, 78.0, 94.2, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Worcester - May Street,03480175, 12.3, 100.0, 24.0 to 1, 71.6, 100.0, 96.2 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Midland Street,03480185, 12.6, 100.0, 16.4 to 1, 80.5, 95.2, 100.0 +4.029473684210527,4.03,a-exp-i3,2022-23,Worcester - Nelson Place,03480200, 42.5, 97.6, 13.5 to 1, 86.6, 91.3, 95.7 +3.8652631578947365,3.87,a-exp-i3,2022-23,Worcester - Norrback Avenue,03480202, 42.8, 97.9, 11.9 to 1, 74.5, 97.0, 91.8 +3.8610526315789473,3.86,a-exp-i3,2022-23,Worcester - North High,03480515, 85.3, 98.8, 16.1 to 1, 71.2, 75.7, 91.7 +4.138947368421053,4.14,a-exp-i3,2022-23,Worcester - Quinsigamond,03480210, 49.1, 100.0, 14.5 to 1, 86.9, 96.9, 98.3 +4.08421052631579,4.08,a-exp-i3,2022-23,Worcester - Rice Square,03480215, 29.0, 96.6, 15.8 to 1, 93.1, 100.0, 97.0 +3.928421052631579,3.93,a-exp-i3,2022-23,Worcester - Roosevelt,03480220, 40.0, 97.5, 14.1 to 1, 79.1, 99.1, 93.3 +3.68,3.68,a-exp-i3,2022-23,Worcester - South High Community,03480520, 100.4, 97.9, 16.6 to 1, 74.8, 91.0, 87.4 +4.00421052631579,4.0,a-exp-i3,2022-23,Worcester - Sullivan Middle,03480423, 69.2, 98.6, 12.0 to 1, 76.9, 89.7, 95.1 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Tatnuck,03480230, 23.1, 100.0, 16.7 to 1, 65.9, 84.4, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Worcester - Thorndyke Road,03480235, 12.8, 100.0, 28.4 to 1, 80.8, 100.0, 96.2 +4.08,4.08,a-exp-i3,2022-23,Worcester - Union Hill School,03480240, 20.9, 100.0, 18.6 to 1, 72.7, 90.7, 96.9 +3.8273684210526318,3.83,a-exp-i3,2022-23,Worcester - University Pk Campus School,03480285, 14.9, 100.0, 15.0 to 1, 83.3, 75.9, 90.9 +4.0,4.0,a-exp-i3,2022-23,Worcester - Vernon Hill School,03480280, 35.2, 94.3, 13.5 to 1, 65.4, 76.7, 95.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Wawecus Road School,03480026, 11.7, 100.0, 11.4 to 1, 83.9, 91.5, 100.0 +4.058947368421053,4.06,a-exp-i3,2022-23,Worcester - West Tatnuck,03480260, 19.2, 100.0, 19.0 to 1, 89.6, 95.3, 96.4 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worcester - Woodland Academy,03480030, 41.7, 100.0, 11.7 to 1, 55.4, 88.0, 100.0 +4.050526315789474,4.05,a-exp-i3,2022-23,Worcester - Worcester Arts Magnet School,03480225, 23.5, 100.0, 15.7 to 1, 76.1, 95.3, 96.2 +3.8652631578947365,3.87,a-exp-i3,2022-23,Worcester - Worcester East Middle,03480420, 53.7, 100.0, 13.8 to 1, 73.4, 84.7, 91.8 +3.9073684210526314,3.91,a-exp-i3,2022-23,Worcester - Worcester Technical High,03480605, 104.3, 99.0, 14.1 to 1, 86.3, 84.0, 92.8 +4.2105263157894735,4.21,a-exp-i3,2022-23,Worthington - R. H. Conwell,03490010, 9.2, 100.0, 8.3 to 1, 69.6, 87.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wrentham - Charles E Roderick,03500010, 34.1, 100.0, 10.8 to 1, 81.5, 100.0, 100.0 +4.2105263157894735,4.21,a-exp-i3,2022-23,Wrentham - Delaney,03500003, 45.2, 100.0, 12.9 to 1, 88.1, 100.0, 100.0 +NA,NA,a-exp-i3,2022-23,Tewksbury - Center Elementary School,02950030, 0.0, 0.0,N/A,"","","" diff --git a/data/admin_data/dese/1A_3_teachers_of_color.csv b/data/admin_data/dese/1A_3_teachers_of_color.csv index 0c0ba131..6d66782d 100644 --- a/data/admin_data/dese/1A_3_teachers_of_color.csv +++ b/data/admin_data/dese/1A_3_teachers_of_color.csv @@ -1,4 +1,1831 @@ -Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,African American (%),Asian (%),Hispanic (%),White (%),"Native Hawaiian, Pacific Islander (%)","Multi-Race,Non-Hispanic (%)",Females (%),Males (%),FTE Count +Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,African American (%),Asian (%),Hispanic (%),White (%),Native Amertican (%),"Native Hawaiian, Pacific Islander (%)","Multi-Race,Non-Hispanic (%)",Females (%),Males (%),FTE Count +7.468750000000002,5,a-pcom-i3,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 4.4, 1.7, 15.0, 76.1, 0.0, 0.6, 2.2, 76.1, 23.9, 180.0 +2.6874999999999982,2.69,a-pcom-i3,2023-24,Abington - Abington Early Education Program,00010001, 5.7, 0.0, 0.0, 91.4, 0.0, 0.0, 2.9, 100.0, 0.0, 17.5 +2.250000000000001,2.25,a-pcom-i3,2023-24,Abington - Abington High,00010505, 0.0, 0.0, 7.2, 92.8, 0.0, 0.0, 0.0, 75.5, 24.5, 69.7 +2.34375,2.34,a-pcom-i3,2023-24,Abington - Abington Middle School,00010405, 1.3, 1.3, 5.0, 92.5, 0.0, 0.0, 0.0, 78.6, 21.4, 79.8 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Abington - Beaver Brook Elementary,00010020, 1.4, 1.4, 1.4, 95.9, 0.0, 0.0, 0.0, 98.6, 1.4, 72.6 +1,1,a-pcom-i3,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, 0.3, 0.0, 97.1, 0.0, 0.0, 2.6, 94.1, 5.9, 38.5 +17.0,5,a-pcom-i3,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 38.1, 2.5, 12.8, 45.6, 0.0, 0.0, 1.0, 69.1, 30.9, 97.4 +2.5312499999999982,2.53,a-pcom-i3,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.5, 3.4, 2.4, 91.9, 0.5, 0.5, 0.7, 74.0, 26.0, 190.7 +3.374999999999999,3.37,a-pcom-i3,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 1.3, 7.3, 2.2, 89.2, 0.0, 0.0, 0.0, 89.2, 10.8, 79.0 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.6, 3.7, 95.7, 0.0, 0.0, 0.0, 93.6, 6.4, 54.1 +2.875000000000001,2.88,a-pcom-i3,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 9.2, 0.0, 90.8, 0.0, 0.0, 0.0, 96.5, 3.5, 28.6 +4.500000000000002,4.5,a-pcom-i3,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 11.6, 2.8, 85.6, 0.0, 0.0, 0.0, 94.2, 5.8, 63.8 +3.4375,3.44,a-pcom-i3,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 6.9, 4.1, 89.0, 0.0, 0.0, 0.0, 97.1, 2.9, 68.3 +1.875,1.88,a-pcom-i3,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 4.7, 1.3, 94.0, 0.0, 0.0, 0.0, 98.3, 1.7, 58.3 +2.437499999999999,2.44,a-pcom-i3,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 5.9, 1.9, 92.2, 0.0, 0.0, 0.0, 94.5, 5.5, 52.4 +2.9375000000000018,2.94,a-pcom-i3,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 4.3, 2.7, 90.6, 0.0, 0.9, 1.5, 79.1, 20.9, 110.9 +1,1,a-pcom-i3,2023-24,Acushnet - Acushnet Elementary School,00030025, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 95.4, 4.6, 65.6 +1,1,a-pcom-i3,2023-24,Acushnet - Albert F Ford Middle School,00030305, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 75.5, 24.5, 49.0 +3.656250000000001,3.66,a-pcom-i3,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.9, 7.4, 2.6, 88.3, 0.0, 0.0, 0.9, 56.9, 43.1, 116.6 +2.281249999999999,2.28,a-pcom-i3,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.4, 0.0, 6.9, 92.7, 0.0, 0.0, 0.0, 99.6, 0.4, 29.2 +1,1,a-pcom-i3,2023-24,Agawam - Agawam High,00050505, 0.8, 1.2, 0.0, 98.0, 0.0, 0.0, 0.0, 69.4, 30.6, 136.8 +1,1,a-pcom-i3,2023-24,Agawam - Agawam Junior High,00050405, 0.1, 0.0, 0.0, 99.9, 0.0, 0.0, 0.0, 68.6, 31.4, 89.5 +1,1,a-pcom-i3,2023-24,Agawam - Benjamin J Phelps,00050020, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 86.7, 13.3, 50.0 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Agawam - Clifford M Granger,00050010, 0.2, 0.0, 3.0, 96.8, 0.0, 0.0, 0.0, 95.3, 4.7, 65.9 +1,1,a-pcom-i3,2023-24,Agawam - James Clark School,00050030, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 93.6, 6.4, 64.1 +1,1,a-pcom-i3,2023-24,Agawam - Roberta G. Doering School,00050303, 0.2, 0.0, 1.3, 98.6, 0.0, 0.0, 0.0, 84.5, 15.5, 78.4 +1,1,a-pcom-i3,2023-24,Agawam - William P. Sapelli Elementary,00050025, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 97.1, 2.9, 55.9 +9.468749999999998,5,a-pcom-i3,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 9.6, 0.6, 16.2, 69.7, 0.0, 0.0, 4.0, 79.0, 21.0, 176.4 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Amesbury - Amesbury High,00070505, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 70.3, 29.7, 74.0 +1,1,a-pcom-i3,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 38.1, 61.9, 10.5 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Amesbury - Amesbury Middle,00070013, 2.6, 0.0, 1.3, 96.1, 0.0, 0.0, 0.0, 75.0, 25.0, 76.0 +1,1,a-pcom-i3,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 64.7 +1,1,a-pcom-i3,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 97.0, 3.0, 85.6 +8.093750000000002,5,a-pcom-i3,2023-24,Amherst - Crocker Farm Elementary,00080009, 5.2, 4.4, 15.2, 74.1, 1.1, 0.0, 0.0, 86.6, 13.4, 91.9 +9.6875,5,a-pcom-i3,2023-24,Amherst - Fort River Elementary,00080020, 2.9, 7.0, 18.7, 69.0, 0.0, 0.0, 2.3, 78.5, 21.5, 85.4 +11.9375,5,a-pcom-i3,2023-24,Amherst - Wildwood Elementary,00080050, 24.7, 2.2, 7.9, 61.8, 1.1, 0.0, 2.2, 82.8, 17.2, 88.9 +10.281250000000002,5,a-pcom-i3,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 15.0, 3.0, 12.1, 67.1, 0.6, 0.0, 2.3, 62.0, 38.0, 160.2 +10.9375,5,a-pcom-i3,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 17.9, 2.6, 11.9, 65.0, 1.1, 0.0, 1.5, 59.3, 40.7, 94.1 +3.031250000000001,3.03,a-pcom-i3,2023-24,Andover - Andover High,00090505, 0.5, 3.4, 4.8, 90.3, 0.0, 0.5, 0.5, 69.5, 30.5, 206.9 +2.34375,2.34,a-pcom-i3,2023-24,Andover - Andover West Middle,00090310, 0.0, 2.5, 3.7, 92.5, 0.0, 0.0, 1.2, 83.9, 16.1, 80.3 +1,1,a-pcom-i3,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 93.7, 6.3, 95.6 +4.093749999999998,4.09,a-pcom-i3,2023-24,Andover - Doherty Middle,00090305, 0.0, 5.2, 6.6, 86.9, 1.3, 0.0, 0.0, 78.7, 21.3, 76.3 +1.9062499999999982,1.91,a-pcom-i3,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.0, 2.0, 2.0, 93.9, 0.0, 0.0, 2.0, 89.6, 10.4, 48.9 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Andover - High Plain Elementary,00090004, 0.0, 2.8, 2.4, 94.9, 0.0, 0.0, 0.0, 93.5, 6.5, 86.8 +9.28125,5,a-pcom-i3,2023-24,Andover - Shawsheen School,00090005, 0.0, 24.0, 5.7, 70.3, 0.0, 0.0, 0.0, 94.7, 5.3, 49.6 +1,1,a-pcom-i3,2023-24,Andover - South Elementary,00090020, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 94.2, 5.8, 65.0 +3.4687499999999982,3.47,a-pcom-i3,2023-24,Andover - West Elementary,00090025, 0.0, 6.3, 4.0, 88.9, 0.0, 0.0, 0.9, 88.2, 11.8, 113.4 +1,1,a-pcom-i3,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 75.2, 24.8, 66.8 +6.906249999999998,5,a-pcom-i3,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 8.0, 2.2, 8.5, 77.9, 0.0, 0.0, 3.5, 58.7, 41.3, 82.6 +2.562500000000001,2.56,a-pcom-i3,2023-24,Arlington - Arlington High,00100505, 2.1, 2.7, 2.0, 91.8, 0.0, 0.0, 1.4, 60.6, 39.4, 187.6 +4.156249999999999,4.16,a-pcom-i3,2023-24,Arlington - Brackett,00100010, 1.6, 4.8, 3.8, 86.7, 1.6, 0.0, 1.6, 89.5, 10.5, 63.1 +3.4687499999999982,3.47,a-pcom-i3,2023-24,Arlington - Cyrus E Dallin,00100025, 3.7, 6.5, 0.0, 88.9, 0.0, 0.0, 1.0, 83.6, 16.4, 61.5 +2.6250000000000018,2.63,a-pcom-i3,2023-24,Arlington - Gibbs School,00100305, 1.5, 2.2, 3.2, 91.6, 0.0, 0.0, 1.5, 73.8, 26.2, 67.5 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Arlington - Hardy,00100030, 1.3, 1.5, 0.6, 96.7, 0.0, 0.0, 0.0, 90.5, 9.5, 67.3 +2.03125,2.03,a-pcom-i3,2023-24,Arlington - John A Bishop,00100005, 2.2, 0.0, 2.5, 93.5, 0.0, 0.0, 1.8, 85.5, 14.5, 56.0 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 2.6, 1.3, 93.6, 1.3, 0.0, 1.3, 88.0, 12.0, 78.3 +3.062499999999999,3.06,a-pcom-i3,2023-24,Arlington - Menotomy Preschool,00100038, 6.6, 0.0, 0.0, 90.2, 0.0, 0.0, 3.3, 96.7, 3.3, 30.5 +3.812500000000001,3.81,a-pcom-i3,2023-24,Arlington - Ottoson Middle,00100410, 1.6, 6.4, 3.4, 87.8, 0.8, 0.0, 0.0, 75.7, 24.3, 125.2 +4.874999999999998,4.87,a-pcom-i3,2023-24,Arlington - Peirce,00100045, 3.6, 5.8, 4.3, 84.4, 0.0, 0.0, 1.9, 86.3, 13.7, 51.9 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Arlington - Thompson,00100050, 1.4, 4.2, 0.2, 94.2, 0.0, 0.0, 0.0, 87.3, 12.7, 71.0 +1,1,a-pcom-i3,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.3, 97.1, 0.0, 0.0, 2.6, 87.9, 12.1, 76.1 +1,1,a-pcom-i3,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 98.7, 1.3, 25.6 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 2.7, 0.0, 1.6, 95.6, 0.0, 0.0, 0.0, 54.4, 45.6, 72.8 +1.6562499999999991,1.66,a-pcom-i3,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 69.9, 30.1, 60.6 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 92.5, 7.5, 54.1 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Ashland - Ashland High,00140505, 4.5, 0.0, 1.1, 94.4, 0.0, 0.0, 0.0, 63.2, 36.8, 89.7 +2.03125,2.03,a-pcom-i3,2023-24,Ashland - Ashland Middle,00140405, 1.3, 2.6, 1.3, 93.5, 0.0, 0.0, 1.3, 73.2, 26.8, 77.3 +1.09375,1.09,a-pcom-i3,2023-24,Ashland - David Mindess,00140015, 0.0, 1.2, 2.3, 96.5, 0.0, 0.0, 0.0, 92.6, 7.4, 86.4 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 2.5, 2.5, 93.8, 0.0, 0.0, 1.2, 97.9, 2.1, 81.1 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 4.4, 0.0, 95.6, 0.0, 0.0, 0.0, 98.7, 1.3, 22.5 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 1.2, 0.0, 3.1, 95.7, 0.0, 0.0, 0.0, 56.2, 43.8, 161.3 +1,1,a-pcom-i3,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 86.7, 13.3, 82.5 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 68.3, 31.7, 51.4 +1,1,a-pcom-i3,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.9, 36.1, 58.1 +1,1,a-pcom-i3,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.0, 1.0, 19.2 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.5, 1.5, 2.0, 94.9, 0.0, 0.0, 0.0, 82.6, 17.4, 196.8 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 98.1, 1.9, 52.1 +8.093750000000002,5,a-pcom-i3,2023-24,Attleboro - Attleboro Community Academy,00160515, 25.9, 0.0, 0.0, 74.1, 0.0, 0.0, 0.0, 44.8, 55.2, 11.6 +2.1875,2.19,a-pcom-i3,2023-24,Attleboro - Attleboro High,00160505, 2.3, 0.9, 3.3, 93.0, 0.0, 0.0, 0.5, 71.7, 28.3, 215.3 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 6.2, 93.8, 0.0, 0.0, 0.0, 50.7, 49.3, 3.2 +2.250000000000001,2.25,a-pcom-i3,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 3.9, 0.0, 2.6, 92.8, 0.0, 0.0, 0.7, 79.3, 20.7, 76.3 +2.3125000000000018,2.31,a-pcom-i3,2023-24,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 7.4, 92.6, 0.0, 0.0, 0.0, 98.4, 1.6, 37.6 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.7, 5.6, 3.7, 89.9, 0.0, 0.0, 0.0, 90.7, 9.3, 53.5 +3.125,3.13,a-pcom-i3,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 2.0, 0.0, 8.0, 90.0, 0.0, 0.0, 0.0, 91.2, 8.8, 50.1 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 1.3, 0.0, 1.3, 94.8, 0.0, 0.0, 2.6, 90.3, 9.7, 77.0 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 2.6, 0.0, 1.6, 95.8, 0.0, 0.0, 0.0, 82.0, 18.0, 62.6 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.1, 4.1, 93.8, 0.0, 0.0, 0.0, 96.1, 3.9, 48.2 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 1.7, 96.6, 1.7, 0.0, 0.0, 83.4, 16.6, 58.8 +1.25,1.25,a-pcom-i3,2023-24,Auburn - Auburn Middle,00170305, 1.3, 0.0, 2.7, 96.0, 0.0, 0.0, 0.0, 69.8, 30.2, 75.1 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Auburn - Auburn Senior High,00170505, 1.0, 0.4, 2.9, 94.8, 0.0, 0.0, 1.0, 71.5, 28.5, 104.6 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Auburn - Bryn Mawr,00170010, 0.0, 2.2, 1.1, 96.7, 0.0, 0.0, 0.0, 95.1, 4.9, 45.5 +1.71875,1.72,a-pcom-i3,2023-24,Auburn - Pakachoag School,00170025, 0.0, 1.7, 3.8, 94.5, 0.0, 0.0, 0.0, 99.4, 0.6, 39.5 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.4, 2.8, 95.8, 0.0, 0.0, 0.0, 92.0, 8.0, 71.8 +4.53125,4.53,a-pcom-i3,2023-24,Avon - Avon Middle High School,00180510, 9.5, 1.7, 3.3, 85.5, 0.0, 0.0, 0.0, 66.0, 34.0, 60.3 +2.906249999999999,2.91,a-pcom-i3,2023-24,Avon - Ralph D Butler,00180010, 9.3, 0.0, 0.0, 90.7, 0.0, 0.0, 0.0, 87.6, 12.4, 53.7 +2.437499999999999,2.44,a-pcom-i3,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 2.0, 5.9, 92.2, 0.0, 0.0, 0.0, 50.9, 49.1, 51.2 +2.8437499999999982,2.84,a-pcom-i3,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 5.5, 0.0, 1.8, 90.9, 0.0, 0.0, 1.8, 70.7, 29.3, 54.7 +1,1,a-pcom-i3,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 65.3 +2.1875,2.19,a-pcom-i3,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 1.3, 0.3, 93.0, 0.0, 0.0, 5.3, 94.7, 5.3, 74.8 +1,1,a-pcom-i3,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 47.6 +3.6249999999999982,3.62,a-pcom-i3,2023-24,Barnstable - Barnstable High,00200505, 3.1, 1.8, 5.9, 88.4, 0.4, 0.0, 0.4, 69.7, 30.3, 271.9 +2.8125,2.81,a-pcom-i3,2023-24,Barnstable - Barnstable Intermediate School,00200315, 2.7, 0.9, 3.6, 91.0, 0.9, 0.0, 0.9, 77.1, 22.9, 111.6 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.8, 0.0, 1.6, 95.1, 0.8, 0.0, 1.6, 90.0, 10.0, 123.5 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 3.3, 1.6, 95.1, 0.0, 0.0, 0.0, 93.4, 6.6, 60.6 +1,1,a-pcom-i3,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 100.0, 0.0, 43.0 +2.437499999999999,2.44,a-pcom-i3,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.0, 4.7, 3.1, 92.2, 0.0, 0.0, 0.0, 96.9, 3.1, 64.0 +1,1,a-pcom-i3,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 96.5, 3.5, 50.5 +1.4687500000000009,1.47,a-pcom-i3,2023-24,Barnstable - West Villages Elementary School,00200045, 1.6, 0.0, 1.6, 95.3, 0.0, 0.0, 1.6, 96.9, 3.1, 64.1 +20.375,5,a-pcom-i3,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 39.6, 1.4, 20.1, 34.8, 0.0, 2.7, 1.4, 64.4, 35.6, 73.9 +2.3749999999999982,2.37,a-pcom-i3,2023-24,Bedford - Bedford High,00230505, 0.9, 0.9, 5.0, 92.4, 0.9, 0.0, 0.0, 64.2, 35.8, 115.8 +2.250000000000001,2.25,a-pcom-i3,2023-24,Bedford - John Glenn Middle,00230305, 0.0, 2.3, 3.7, 92.8, 0.0, 0.0, 1.2, 78.3, 21.7, 86.6 +4.750000000000001,4.75,a-pcom-i3,2023-24,Bedford - Lt Eleazer Davis,00230010, 2.6, 7.4, 3.5, 84.8, 0.0, 0.0, 1.7, 97.4, 2.6, 115.8 +3.218749999999999,3.22,a-pcom-i3,2023-24,Bedford - Lt Job Lane School,00230012, 2.3, 4.6, 2.3, 89.7, 0.0, 0.0, 1.1, 88.8, 11.2, 87.4 +1.25,1.25,a-pcom-i3,2023-24,Belchertown - Belchertown High,00240505, 0.2, 0.0, 3.8, 96.0, 0.0, 0.0, 0.0, 71.5, 28.5, 79.2 +1,1,a-pcom-i3,2023-24,Belchertown - Chestnut Hill Community School,00240006, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 87.7, 12.3, 60.1 +1,1,a-pcom-i3,2023-24,Belchertown - Cold Spring,00240005, 0.4, 0.0, 0.0, 99.6, 0.0, 0.0, 0.0, 93.9, 6.1, 39.5 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Belchertown - Jabish Middle School,00240025, 0.3, 0.0, 5.9, 93.8, 0.0, 0.0, 0.0, 73.4, 26.6, 48.5 +1,1,a-pcom-i3,2023-24,Belchertown - Swift River Elementary,00240018, 0.2, 0.0, 1.6, 98.2, 0.0, 0.0, 0.0, 94.4, 5.6, 61.6 +1,1,a-pcom-i3,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 15.3 +1,1,a-pcom-i3,2023-24,Bellingham - Bellingham High School,00250505, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 70.2, 29.8, 103.3 +1,1,a-pcom-i3,2023-24,Bellingham - Bellingham Memorial School,00250315, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 75.6, 24.4, 87.1 +1,1,a-pcom-i3,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 58.7 +1.5625,1.56,a-pcom-i3,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 5.0, 0.0, 95.0, 0.0, 0.0, 0.0, 50.0, 50.0, 14.4 +1,1,a-pcom-i3,2023-24,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 49.1 +4.156249999999999,4.16,a-pcom-i3,2023-24,Belmont - Belmont High,00260505, 3.1, 3.3, 5.4, 86.7, 0.0, 0.0, 1.5, 69.2, 30.8, 122.8 +7.281249999999999,5,a-pcom-i3,2023-24,Belmont - Belmont Middle School,00260315, 7.0, 7.8, 2.8, 76.7, 0.0, 0.0, 5.7, 70.2, 29.8, 70.4 +4.312499999999999,4.31,a-pcom-i3,2023-24,Belmont - Daniel Butler,00260015, 0.0, 6.0, 2.3, 86.2, 0.0, 0.0, 5.6, 89.2, 10.8, 46.6 +3.343750000000001,3.34,a-pcom-i3,2023-24,Belmont - Mary Lee Burbank,00260010, 2.0, 4.1, 2.5, 89.3, 0.0, 0.0, 2.2, 92.1, 7.9, 46.1 +1.6562499999999991,1.66,a-pcom-i3,2023-24,Belmont - Roger E Wellington,00260035, 1.3, 0.0, 1.7, 94.7, 0.0, 0.0, 2.3, 89.4, 10.6, 81.3 +3.28125,3.28,a-pcom-i3,2023-24,Belmont - Winn Brook,00260005, 4.8, 2.0, 3.8, 89.5, 0.0, 0.0, 0.0, 90.1, 9.9, 51.2 +3.843749999999999,3.84,a-pcom-i3,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 2.5, 6.1, 2.5, 87.7, 0.0, 0.0, 1.2, 75.6, 24.4, 81.6 +19.875,5,a-pcom-i3,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 53.5, 6.1, 4.0, 36.4, 0.0, 0.0, 0.0, 87.9, 12.1, 49.5 +2.34375,2.34,a-pcom-i3,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.7, 3.7, 3.0, 92.5, 0.0, 0.0, 0.0, 86.7, 13.3, 133.4 +1,1,a-pcom-i3,2023-24,Berkley - Berkley Community School,00270010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 96.6, 3.4, 59.0 +1,1,a-pcom-i3,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.1, 18.9, 47.3 +3.75,3.75,a-pcom-i3,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 6.9, 0.0, 1.7, 88.0, 0.0, 0.0, 3.4, 73.3, 26.7, 58.4 +3.0937500000000018,3.09,a-pcom-i3,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 2.5, 1.2, 5.0, 90.1, 0.0, 0.0, 1.2, 69.2, 30.8, 80.8 +1,1,a-pcom-i3,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 1.4, 1.4, 97.2, 0.0, 0.0, 0.0, 84.1, 15.9, 72.5 +2.6874999999999982,2.69,a-pcom-i3,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 3.4, 1.7, 3.4, 91.4, 0.0, 0.0, 0.0, 65.5, 34.5, 58.0 +1,1,a-pcom-i3,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 92.8, 7.2, 38.1 +2.0624999999999982,2.06,a-pcom-i3,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 2.8, 1.9, 93.4, 0.0, 0.0, 1.9, 93.2, 6.8, 53.2 +1.8437500000000018,1.84,a-pcom-i3,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.4, 4.1, 94.1, 0.0, 0.0, 1.4, 72.7, 25.9, 73.3 +1,1,a-pcom-i3,2023-24,Beverly - Ayers/Ryal Side School,00300055, 2.0, 0.0, 0.3, 97.7, 0.0, 0.0, 0.0, 94.1, 5.9, 50.7 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Beverly - Beverly High,00300505, 1.4, 0.6, 1.3, 96.7, 0.0, 0.0, 0.0, 64.6, 35.4, 167.3 +1.7812500000000009,1.78,a-pcom-i3,2023-24,Beverly - Beverly Middle School,00300305, 1.1, 0.6, 2.9, 94.3, 0.0, 0.0, 1.1, 75.9, 24.1, 177.3 +1,1,a-pcom-i3,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 0.9, 0.3, 98.8, 0.0, 0.0, 0.0, 90.7, 9.3, 53.8 +1,1,a-pcom-i3,2023-24,Beverly - Cove Elementary,00300015, 0.0, 0.7, 0.2, 99.1, 0.0, 0.0, 0.0, 94.6, 5.4, 74.4 +1,1,a-pcom-i3,2023-24,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 89.6, 10.4, 48.3 +3.28125,3.28,a-pcom-i3,2023-24,Beverly - McKeown School,00300002, 0.0, 5.2, 5.2, 89.5, 0.0, 0.0, 0.0, 97.4, 2.6, 38.2 +2.03125,2.03,a-pcom-i3,2023-24,Beverly - North Beverly Elementary,00300040, 1.6, 3.1, 1.8, 93.5, 0.0, 0.0, 0.0, 96.9, 3.1, 64.0 +1.9062499999999982,1.91,a-pcom-i3,2023-24,Billerica - Billerica Memorial High School,00310505, 1.2, 2.7, 1.7, 93.9, 0.0, 0.4, 0.0, 76.7, 23.3, 240.8 +1,1,a-pcom-i3,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 43.2 +1,1,a-pcom-i3,2023-24,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 56.8 +1,1,a-pcom-i3,2023-24,Billerica - John F Kennedy,00310012, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 95.8, 4.2, 52.4 +1,1,a-pcom-i3,2023-24,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.3, 14.7, 71.6 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Billerica - Marshall Middle School,00310305, 2.2, 1.1, 1.1, 95.6, 0.0, 0.0, 0.0, 79.1, 20.9, 91.7 +1,1,a-pcom-i3,2023-24,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 92.5, 7.5, 80.5 +1,1,a-pcom-i3,2023-24,Billerica - Thomas Ditson,00310005, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 95.2, 4.8, 68.6 +1,1,a-pcom-i3,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 56.2, 43.8, 172.3 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 4.8, 0.0, 95.2, 0.0, 0.0, 0.0, 98.1, 1.9, 31.1 +2.9375000000000018,2.94,a-pcom-i3,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 9.4, 90.6, 0.0, 0.0, 0.0, 67.6, 32.4, 53.1 +2.65625,2.66,a-pcom-i3,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.8, 6.7, 91.5, 0.0, 0.0, 0.0, 78.2, 21.8, 44.9 +1,1,a-pcom-i3,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 92.2, 7.8, 16.6 +1,1,a-pcom-i3,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 92.8, 7.2, 52.9 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 2.7, 0.9, 0.9, 94.6, 0.0, 0.0, 0.9, 50.1, 49.9, 111.7 +10.874999999999998,5,a-pcom-i3,2023-24,Boston - Adams Elementary School,00350302, 13.2, 3.3, 14.9, 65.2, 1.7, 1.7, 0.0, 83.4, 16.6, 60.4 +12.34375,5,a-pcom-i3,2023-24,Boston - Alighieri Dante Montessori School,00350066, 4.7, 4.7, 30.2, 60.5, 0.0, 0.0, 0.0, 88.3, 11.7, 21.6 +18.062499999999996,5,a-pcom-i3,2023-24,Boston - Another Course To College,00350541, 35.6, 6.7, 13.3, 42.2, 0.0, 0.0, 2.2, 64.4, 35.6, 45.0 +18.75,5,a-pcom-i3,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 14.0, 24.0, 22.0, 40.0, 0.0, 0.0, 0.0, 94.0, 6.0, 50.0 +10.906250000000002,5,a-pcom-i3,2023-24,Boston - Bates Elementary School,00350278, 19.0, 6.3, 7.5, 65.1, 0.0, 2.1, 0.0, 85.1, 14.9, 47.8 +8.59375,5,a-pcom-i3,2023-24,Boston - Beethoven Elementary School,00350021, 19.1, 2.1, 6.4, 72.5, 0.0, 0.0, 0.0, 92.4, 7.6, 47.2 +16.40625,5,a-pcom-i3,2023-24,Boston - Blackstone Elementary School,00350390, 24.1, 1.0, 26.6, 47.5, 0.8, 0.0, 0.0, 81.7, 18.3, 120.4 +24.093749999999996,5,a-pcom-i3,2023-24,Boston - Boston Adult Tech Academy,00350548, 49.6, 14.9, 9.9, 22.9, 0.0, 2.7, 0.0, 57.3, 42.7, 40.3 +17.5,5,a-pcom-i3,2023-24,Boston - Boston Arts Academy,00350546, 32.9, 7.3, 15.8, 44.0, 0.0, 0.0, 0.0, 63.4, 36.6, 82.2 +16.09375,5,a-pcom-i3,2023-24,Boston - Boston Collaborative High School,00350755, 17.3, 3.4, 30.8, 48.5, 0.0, 0.0, 0.0, 69.2, 30.8, 29.0 +16.90625,5,a-pcom-i3,2023-24,Boston - Boston Community Leadership Academy,00350558, 36.9, 3.0, 14.2, 45.9, 0.0, 0.0, 0.0, 66.4, 33.6, 134.2 +16.59375,5,a-pcom-i3,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 20.3, 3.4, 29.4, 46.9, 0.0, 0.0, 0.0, 63.2, 36.8, 88.7 +16.15625,5,a-pcom-i3,2023-24,Boston - Boston Latin Academy,00350545, 25.2, 15.0, 9.5, 48.3, 0.7, 0.7, 0.7, 63.9, 36.1, 147.3 +10.499999999999998,5,a-pcom-i3,2023-24,Boston - Boston Latin School,00350560, 18.3, 8.3, 6.3, 66.4, 0.0, 0.6, 0.0, 56.2, 43.8, 180.0 +18.25,5,a-pcom-i3,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 42.7, 6.7, 9.0, 41.6, 0.0, 0.0, 0.0, 87.6, 12.4, 44.5 +4.718749999999998,4.72,a-pcom-i3,2023-24,Boston - Bradley Elementary School,00350215, 0.0, 4.3, 10.8, 84.9, 0.0, 0.0, 0.0, 84.9, 15.1, 46.5 +15.406249999999998,5,a-pcom-i3,2023-24,Boston - Brighton High School,00350505, 26.9, 4.4, 17.9, 50.7, 0.0, 0.0, 0.0, 64.5, 35.5, 115.0 +18.46875,5,a-pcom-i3,2023-24,Boston - Burke High School,00350525, 49.9, 4.6, 4.6, 40.9, 0.0, 0.0, 0.0, 56.2, 43.8, 87.2 +14.28125,5,a-pcom-i3,2023-24,Boston - Carter School,00350036, 37.0, 0.4, 8.2, 54.3, 0.0, 0.0, 0.0, 75.3, 24.7, 24.3 +17.21875,5,a-pcom-i3,2023-24,Boston - Channing Elementary School,00350360, 39.7, 2.2, 11.0, 44.9, 2.2, 0.0, 0.0, 78.0, 22.0, 45.5 +13.59375,5,a-pcom-i3,2023-24,Boston - Charlestown High School,00350515, 24.7, 9.9, 7.8, 56.5, 0.5, 0.5, 0.0, 68.3, 31.7, 192.0 +18.09375,5,a-pcom-i3,2023-24,Boston - Chittick Elementary School,00350154, 39.4, 4.8, 12.0, 42.1, 1.7, 0.0, 0.0, 86.3, 13.7, 58.5 +20.375,5,a-pcom-i3,2023-24,Boston - Clap Elementary School,00350298, 51.8, 3.1, 10.4, 34.8, 0.0, 0.0, 0.0, 84.8, 15.2, 32.9 +25.28125,5,a-pcom-i3,2023-24,Boston - Community Academy,00350518, 47.8, 7.3, 22.1, 19.1, 3.7, 0.0, 0.0, 66.9, 33.1, 27.3 +19.4375,5,a-pcom-i3,2023-24,Boston - Community Academy of Science and Health,00350581, 44.7, 2.9, 14.6, 37.8, 0.0, 0.0, 0.0, 56.2, 43.8, 68.8 +14.84375,5,a-pcom-i3,2023-24,Boston - Condon K-8 School,00350146, 33.0, 3.2, 10.6, 52.5, 0.8, 0.0, 0.0, 80.3, 19.7, 132.4 +13.8125,5,a-pcom-i3,2023-24,Boston - Conley Elementary School,00350122, 28.9, 5.1, 10.2, 55.8, 0.0, 0.0, 0.0, 84.7, 15.3, 39.1 +11.499999999999998,5,a-pcom-i3,2023-24,Boston - Curley K-8 School,00350020, 13.5, 2.2, 21.1, 63.2, 0.0, 0.0, 0.0, 81.6, 17.9, 184.6 +18.03125,5,a-pcom-i3,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 42.3, 3.2, 12.3, 42.3, 0.0, 0.0, 0.0, 64.0, 36.0, 94.6 +16.625,5,a-pcom-i3,2023-24,Boston - Dever Elementary School,00350268, 27.9, 5.1, 20.3, 46.8, 0.0, 0.0, 0.0, 83.6, 16.4, 79.0 +16.0,5,a-pcom-i3,2023-24,Boston - East Boston Early Education Center,00350009, 10.5, 4.7, 33.7, 48.8, 0.0, 2.3, 0.0, 97.7, 2.3, 43.0 +9.84375,5,a-pcom-i3,2023-24,Boston - East Boston High School,00350530, 7.1, 5.1, 19.3, 68.5, 0.0, 0.0, 0.0, 58.8, 41.2, 155.6 +16.0625,5,a-pcom-i3,2023-24,Boston - Edison K-8 School,00350375, 23.5, 8.2, 18.8, 48.6, 0.0, 0.0, 0.8, 82.7, 17.3, 127.4 +9.718749999999998,5,a-pcom-i3,2023-24,Boston - Eliot K-8 Innovation School,00350096, 14.6, 5.8, 9.7, 68.9, 0.0, 0.0, 1.0, 80.5, 19.5, 102.9 +22.062499999999996,5,a-pcom-i3,2023-24,Boston - Ellis Elementary School,00350072, 36.7, 7.2, 25.2, 29.4, 1.4, 0.0, 0.0, 77.3, 22.7, 69.4 +21.499999999999996,5,a-pcom-i3,2023-24,Boston - Ellison-Parks Early Education School,00350008, 54.1, 1.8, 11.0, 31.2, 0.0, 0.0, 1.8, 89.0, 11.0, 54.5 +16.125,5,a-pcom-i3,2023-24,Boston - English High School,00350535, 26.4, 3.3, 20.9, 48.4, 0.0, 0.8, 0.0, 64.0, 35.2, 120.0 +10.906250000000002,5,a-pcom-i3,2023-24,Boston - Everett Elementary School,00350088, 21.9, 7.8, 2.6, 65.1, 0.0, 2.6, 0.0, 85.9, 14.1, 38.4 +19.5,5,a-pcom-i3,2023-24,Boston - Excel High School,00350522, 43.7, 9.6, 7.9, 37.6, 1.2, 0.0, 0.0, 63.7, 36.3, 82.4 +18.96875,5,a-pcom-i3,2023-24,Boston - Fenway High School,00350540, 35.5, 1.5, 22.3, 39.3, 0.0, 1.5, 0.0, 67.5, 32.5, 67.5 +19.34375,5,a-pcom-i3,2023-24,Boston - Frederick Pilot Middle School,00350383, 42.5, 3.9, 15.5, 38.1, 0.0, 0.0, 0.0, 69.0, 31.0, 77.5 +15.96875,5,a-pcom-i3,2023-24,Boston - Gardner Pilot Academy,00350326, 25.9, 8.9, 16.3, 48.9, 0.0, 0.0, 0.0, 86.7, 13.3, 67.6 +15.625,5,a-pcom-i3,2023-24,Boston - Greater Egleston High School,00350543, 36.5, 0.0, 13.5, 50.0, 0.0, 0.0, 0.0, 69.1, 30.9, 17.8 +21.625,5,a-pcom-i3,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 9.0, 0.0, 60.3, 30.8, 0.0, 0.0, 0.0, 79.5, 20.5, 78.0 +21.6875,5,a-pcom-i3,2023-24,Boston - Grew Elementary School,00350135, 53.6, 6.3, 9.4, 30.6, 0.0, 0.0, 0.0, 84.2, 15.8, 31.8 +7.718750000000001,5,a-pcom-i3,2023-24,Boston - Guild Elementary School,00350062, 11.4, 3.8, 9.5, 75.3, 0.0, 0.0, 0.0, 84.8, 15.2, 52.6 +19.375,5,a-pcom-i3,2023-24,Boston - Hale Elementary School,00350243, 42.0, 0.0, 20.0, 38.0, 0.0, 0.0, 0.0, 86.0, 14.0, 25.0 +13.78125,5,a-pcom-i3,2023-24,Boston - Haley Pilot School,00350077, 28.6, 5.3, 10.1, 55.9, 0.0, 0.0, 0.0, 80.0, 20.0, 75.1 +9.468749999999998,5,a-pcom-i3,2023-24,Boston - Harvard-Kent Elementary School,00350200, 9.1, 16.7, 4.5, 69.7, 0.0, 0.0, 0.0, 83.3, 16.7, 66.1 +25.812499999999996,5,a-pcom-i3,2023-24,Boston - Haynes Early Education Center,00350010, 62.2, 2.0, 18.4, 17.4, 0.0, 0.0, 0.0, 83.7, 16.3, 49.0 +11.374999999999998,5,a-pcom-i3,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 30.3, 4.0, 2.0, 63.6, 0.0, 0.0, 0.0, 86.9, 13.1, 49.5 +12.281249999999998,5,a-pcom-i3,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 27.4, 4.8, 7.1, 60.7, 0.0, 0.0, 0.0, 70.6, 29.4, 126.0 +13.718749999999998,5,a-pcom-i3,2023-24,Boston - Hennigan K-8 School,00350153, 24.4, 1.5, 18.0, 56.1, 0.0, 0.0, 0.0, 83.9, 16.1, 86.2 +23.312499999999996,5,a-pcom-i3,2023-24,Boston - Hernandez K-8 School,00350691, 1.5, 0.0, 73.1, 25.4, 0.0, 0.0, 0.0, 86.2, 13.8, 65.0 +20.3125,5,a-pcom-i3,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 33.0, 2.5, 29.5, 35.0, 0.0, 0.0, 0.0, 85.2, 14.8, 40.6 +19.5625,5,a-pcom-i3,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 53.8, 1.8, 7.1, 37.4, 0.0, 0.0, 0.0, 66.5, 31.8, 56.7 +18.843749999999996,5,a-pcom-i3,2023-24,Boston - Holmes Elementary School,00350138, 47.6, 4.8, 7.9, 39.7, 0.0, 0.0, 0.0, 74.6, 25.4, 63.1 +9.125,5,a-pcom-i3,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 8.5, 8.5, 12.2, 70.8, 0.0, 0.0, 0.0, 84.1, 15.9, 82.1 +22.124999999999996,5,a-pcom-i3,2023-24,Boston - Hurley K-8 School,00350182, 8.3, 0.0, 62.5, 29.2, 0.0, 0.0, 0.0, 81.3, 18.7, 48.0 +14.09375,5,a-pcom-i3,2023-24,Boston - Kennedy John F Elementary School,00350166, 36.9, 0.0, 8.2, 54.9, 0.0, 0.0, 0.0, 79.5, 20.5, 48.9 +13.28125,5,a-pcom-i3,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 2.4, 7.1, 33.0, 57.5, 0.0, 0.0, 0.0, 92.9, 7.1, 42.4 +19.1875,5,a-pcom-i3,2023-24,Boston - Kenny Elementary School,00350328, 49.8, 3.3, 6.6, 38.6, 0.0, 0.0, 1.7, 81.8, 18.2, 60.3 +6.968749999999999,5,a-pcom-i3,2023-24,Boston - Kilmer K-8 School,00350190, 13.1, 1.3, 7.9, 77.7, 0.0, 0.0, 0.0, 80.9, 19.1, 76.1 +22.65625,5,a-pcom-i3,2023-24,Boston - King Elementary School,00350376, 52.4, 3.4, 16.7, 27.5, 0.0, 0.0, 0.0, 80.3, 19.7, 116.6 +19.468749999999996,5,a-pcom-i3,2023-24,Boston - Lee Academy,00350001, 45.3, 0.0, 17.0, 37.7, 0.0, 0.0, 0.0, 83.0, 17.0, 53.0 +14.031249999999998,5,a-pcom-i3,2023-24,Boston - Lee K-8 School,00350183, 35.1, 2.4, 6.7, 55.1, 0.7, 0.0, 0.0, 79.7, 19.6, 148.3 +8.562500000000002,5,a-pcom-i3,2023-24,Boston - Lyndon K-8 School,00350262, 14.4, 1.4, 10.1, 72.6, 1.4, 0.0, 0.0, 75.8, 24.2, 69.4 +13.8125,5,a-pcom-i3,2023-24,Boston - Lyon High School,00350655, 35.6, 0.0, 8.7, 55.8, 0.0, 0.0, 0.0, 62.8, 37.2, 40.5 +10.249999999999998,5,a-pcom-i3,2023-24,Boston - Lyon K-8 School,00350004, 23.5, 4.1, 3.1, 67.2, 0.0, 0.0, 2.0, 73.4, 24.5, 48.9 +18.25,5,a-pcom-i3,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 42.0, 2.2, 14.2, 41.6, 0.0, 0.0, 0.0, 49.1, 50.9, 226.1 +9.6875,5,a-pcom-i3,2023-24,Boston - Manning Elementary School,00350184, 24.1, 3.4, 3.4, 69.0, 0.0, 0.0, 0.0, 81.0, 19.0, 29.0 +19.34375,5,a-pcom-i3,2023-24,Boston - Margarita Muniz Academy,00350549, 2.4, 2.4, 57.1, 38.1, 0.0, 0.0, 0.0, 71.5, 28.5, 42.1 +18.218749999999996,5,a-pcom-i3,2023-24,Boston - Mario Umana Academy,00350656, 5.8, 0.8, 50.8, 41.7, 0.8, 0.0, 0.0, 81.7, 18.3, 120.1 +17.124999999999996,5,a-pcom-i3,2023-24,Boston - Mason Elementary School,00350304, 51.1, 0.0, 3.6, 45.2, 0.0, 0.0, 0.0, 84.2, 15.8, 44.2 +18.8125,5,a-pcom-i3,2023-24,Boston - Mather Elementary School,00350227, 35.4, 22.0, 2.8, 39.8, 0.0, 0.0, 0.0, 78.0, 22.0, 72.9 +19.0625,5,a-pcom-i3,2023-24,Boston - Mattahunt Elementary School,00350016, 47.6, 1.8, 11.7, 39.0, 0.0, 0.0, 0.0, 86.5, 13.5, 111.5 +9.75,5,a-pcom-i3,2023-24,Boston - McKay K-8 School,00350080, 6.2, 6.2, 17.7, 68.8, 0.0, 0.0, 1.0, 77.1, 22.9, 96.1 +15.874999999999998,5,a-pcom-i3,2023-24,Boston - Melvin H. King South End Academy,00350363, 37.9, 2.7, 9.3, 49.2, 0.0, 0.9, 0.0, 57.3, 42.7, 110.9 +18.687499999999996,5,a-pcom-i3,2023-24,Boston - Mendell Elementary School,00350100, 29.9, 10.0, 19.9, 40.2, 0.0, 0.0, 0.0, 82.1, 17.9, 50.2 +21.6875,5,a-pcom-i3,2023-24,Boston - Mildred Avenue K-8 School,00350378, 52.3, 3.1, 13.0, 30.6, 1.0, 0.0, 0.0, 74.6, 25.4, 96.5 +14.968749999999998,5,a-pcom-i3,2023-24,Boston - Mozart Elementary School,00350237, 32.4, 1.4, 14.1, 52.1, 0.0, 0.0, 0.0, 84.5, 15.5, 35.5 +13.718749999999998,5,a-pcom-i3,2023-24,Boston - Murphy K-8 School,00350240, 25.5, 9.5, 9.0, 56.1, 0.0, 0.0, 0.0, 76.0, 24.0, 121.7 +16.499999999999996,5,a-pcom-i3,2023-24,Boston - New Mission High School,00350542, 28.2, 4.1, 19.5, 47.2, 0.0, 0.0, 1.0, 62.6, 37.4, 97.7 +18.8125,5,a-pcom-i3,2023-24,Boston - O'Bryant School of Math & Science,00350575, 39.0, 8.0, 13.1, 39.8, 0.0, 0.0, 0.0, 58.7, 41.3, 137.2 +14.031249999999998,5,a-pcom-i3,2023-24,Boston - O'Donnell Elementary School,00350141, 10.0, 4.8, 30.1, 55.1, 0.0, 0.0, 0.0, 87.5, 12.5, 39.9 +10.593750000000002,5,a-pcom-i3,2023-24,Boston - Ohrenberger School,00350258, 25.3, 1.3, 7.3, 66.1, 0.0, 0.0, 0.0, 74.2, 25.8, 75.3 +15.281249999999998,5,a-pcom-i3,2023-24,Boston - Orchard Gardens K-8 School,00350257, 32.8, 0.0, 14.6, 51.1, 0.0, 0.0, 1.5, 75.2, 24.8, 137.2 +7.906249999999999,5,a-pcom-i3,2023-24,Boston - Otis Elementary School,00350156, 7.7, 2.1, 15.5, 74.7, 0.0, 0.0, 0.0, 88.4, 11.6, 51.8 +14.25,5,a-pcom-i3,2023-24,Boston - Perkins Elementary School,00350231, 32.4, 4.8, 6.0, 54.4, 0.0, 0.0, 2.4, 78.4, 21.6, 41.7 +7.843749999999998,5,a-pcom-i3,2023-24,Boston - Perry Elementary School,00350255, 10.7, 0.9, 13.4, 74.9, 0.0, 0.0, 0.0, 83.0, 17.0, 37.2 +14.812499999999998,5,a-pcom-i3,2023-24,Boston - Philbrick Elementary School,00350172, 40.4, 7.0, 0.0, 52.6, 0.0, 0.0, 0.0, 66.7, 33.3, 28.6 +21.375,5,a-pcom-i3,2023-24,Boston - Quincy Elementary School,00350286, 17.3, 46.4, 4.7, 31.6, 0.0, 0.0, 0.0, 82.7, 17.3, 127.2 +20.28125,5,a-pcom-i3,2023-24,Boston - Quincy Upper School,00350565, 24.9, 27.5, 12.5, 35.1, 0.0, 0.0, 0.0, 63.7, 36.3, 80.0 +15.437499999999998,5,a-pcom-i3,2023-24,Boston - Roosevelt K-8 School,00350116, 36.4, 5.2, 7.8, 50.6, 0.0, 0.0, 0.0, 87.9, 12.1, 57.7 +14.125,5,a-pcom-i3,2023-24,Boston - Russell Elementary School,00350366, 19.3, 4.3, 21.5, 54.8, 0.0, 0.0, 0.0, 82.8, 17.2, 46.5 +20.375,5,a-pcom-i3,2023-24,Boston - Shaw Elementary School,00350014, 54.2, 0.0, 7.3, 34.8, 3.7, 0.0, 0.0, 87.2, 12.8, 27.3 +15.84375,5,a-pcom-i3,2023-24,Boston - Snowden International High School,00350690, 26.1, 8.2, 16.4, 49.3, 0.0, 0.0, 0.0, 67.2, 32.8, 60.9 +13.5,5,a-pcom-i3,2023-24,Boston - Sumner Elementary School,00350052, 18.5, 1.2, 23.5, 56.8, 0.0, 0.0, 0.0, 86.4, 13.6, 81.0 +22.5625,5,a-pcom-i3,2023-24,Boston - Taylor Elementary School,00350054, 65.5, 3.6, 3.1, 27.8, 0.0, 0.0, 0.0, 90.1, 9.9, 64.2 +16.343749999999996,5,a-pcom-i3,2023-24,Boston - TechBoston Academy,00350657, 42.4, 2.4, 7.5, 47.7, 0.0, 0.0, 0.0, 54.4, 45.6, 124.9 +15.15625,5,a-pcom-i3,2023-24,Boston - Tobin K-8 School,00350229, 28.1, 1.7, 18.7, 51.5, 0.0, 0.0, 0.0, 78.6, 21.4, 58.4 +22.46875,5,a-pcom-i3,2023-24,Boston - Trotter Elementary School,00350370, 60.7, 3.2, 4.8, 28.1, 3.2, 0.0, 0.0, 84.0, 16.0, 62.5 +13.59375,5,a-pcom-i3,2023-24,Boston - Tynan Elementary School,00350181, 28.7, 1.3, 13.5, 56.5, 0.0, 0.0, 0.0, 83.1, 16.9, 59.3 +12.34375,5,a-pcom-i3,2023-24,Boston - UP Academy Holland,00350167, 28.5, 3.3, 7.8, 60.5, 0.0, 0.0, 0.0, 85.6, 14.4, 90.2 +7.03125,5,a-pcom-i3,2023-24,Boston - Warren-Prescott K-8 School,00350346, 11.2, 2.5, 8.7, 77.5, 0.0, 0.0, 0.0, 91.3, 8.7, 80.0 +21.499999999999996,5,a-pcom-i3,2023-24,Boston - West Zone Early Learning Center,00350006, 39.1, 3.0, 26.7, 31.2, 0.0, 0.0, 0.0, 89.6, 10.4, 33.7 +16.15625,5,a-pcom-i3,2023-24,Boston - Winship Elementary School,00350374, 28.0, 8.6, 15.1, 48.3, 0.0, 0.0, 0.0, 82.8, 17.2, 46.6 +13.062499999999998,5,a-pcom-i3,2023-24,Boston - Winthrop Elementary School,00350180, 33.0, 1.3, 7.6, 58.2, 0.0, 0.0, 0.0, 92.4, 7.6, 39.5 +21.187499999999996,5,a-pcom-i3,2023-24,Boston - Young Achievers K-8 School,00350380, 53.8, 0.0, 13.9, 32.2, 0.0, 0.0, 0.0, 78.5, 21.5, 93.3 +15.65625,5,a-pcom-i3,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 26.8, 2.8, 14.6, 49.9, 0.0, 0.0, 5.9, 61.9, 38.1, 119.5 +22.46875,5,a-pcom-i3,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 39.7, 9.4, 18.4, 28.1, 0.0, 0.0, 4.3, 66.4, 33.6, 59.3 +15.0,5,a-pcom-i3,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 25.1, 3.5, 19.4, 52.0, 0.0, 0.0, 0.0, 67.9, 32.1, 91.9 +17.15625,5,a-pcom-i3,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 30.5, 9.5, 13.2, 45.1, 0.0, 0.0, 1.8, 56.3, 43.7, 113.8 +10.343749999999998,5,a-pcom-i3,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 21.0, 5.6, 5.9, 66.9, 0.0, 0.0, 0.6, 83.3, 16.7, 161.8 +1,1,a-pcom-i3,2023-24,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.7, 33.3, 54.1 +1,1,a-pcom-i3,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 59.0 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Bourne - Bourne Middle School,00360325, 0.0, 1.5, 0.0, 95.6, 0.0, 1.5, 1.5, 85.3, 14.7, 68.9 +1,1,a-pcom-i3,2023-24,Bourne - Bournedale Elementary School,00360005, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 95.9, 4.1, 67.7 +1,1,a-pcom-i3,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 55.7 +1,1,a-pcom-i3,2023-24,Boxford - Spofford Pond,00380013, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 96.1, 3.9, 63.9 +1,1,a-pcom-i3,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 95.1, 3.9, 48.1 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Braintree - Braintree High,00400505, 2.5, 2.4, 0.5, 93.6, 0.0, 0.0, 1.0, 70.5, 29.5, 199.1 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Braintree - Donald Ross,00400050, 5.4, 0.0, 0.0, 94.6, 0.0, 0.0, 0.0, 97.9, 2.1, 37.2 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Braintree - East Middle School,00400305, 3.5, 0.0, 0.9, 95.7, 0.0, 0.0, 0.0, 77.5, 22.5, 115.5 +1,1,a-pcom-i3,2023-24,Braintree - Highlands,00400015, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 93.1, 6.9, 43.4 +1,1,a-pcom-i3,2023-24,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 98.6, 0.0, 1.4, 0.0, 95.6, 4.4, 45.5 +1,1,a-pcom-i3,2023-24,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 40.7 +1.71875,1.72,a-pcom-i3,2023-24,Braintree - Mary E Flaherty School,00400020, 0.0, 3.7, 0.0, 94.5, 0.0, 0.0, 1.8, 97.3, 1.8, 54.8 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 3.5, 0.0, 0.0, 92.9, 0.0, 3.5, 0.0, 98.2, 1.8, 28.2 +1,1,a-pcom-i3,2023-24,Braintree - South Middle School,00400310, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 73.7, 26.3, 82.0 +1,1,a-pcom-i3,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 42.9 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 96.4, 3.6, 55.7 +14.968749999999998,5,a-pcom-i3,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 27.4, 5.5, 12.3, 52.1, 0.0, 0.0, 2.7, 82.2, 17.8, 73.0 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 84.2, 15.8, 77.5 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 2.8, 0.0, 0.1, 97.1, 0.0, 0.0, 0.0, 67.7, 32.3, 139.6 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 87.9, 12.1, 54.4 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 2.3, 0.0, 0.3, 97.4, 0.0, 0.0, 0.0, 96.8, 3.2, 43.1 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.9, 0.9, 1.0, 97.3, 0.0, 0.0, 0.0, 96.2, 3.8, 116.9 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 87.2, 12.8, 70.2 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.7, 0.0, 1.6, 97.7, 0.0, 0.0, 0.0, 90.9, 9.1, 8.0 +1,1,a-pcom-i3,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.2, 98.5, 0.0, 0.0, 1.4, 88.7, 11.3, 73.8 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Brimfield - Brimfield Elementary,00430005, 0.0, 2.1, 2.1, 95.9, 0.0, 0.0, 0.0, 91.8, 8.2, 48.6 +1,1,a-pcom-i3,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 74.4, 25.6, 70.2 +1.40625,1.41,a-pcom-i3,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 1.9, 0.0, 1.3, 95.5, 1.3, 0.0, 0.0, 61.4, 38.6, 154.5 +4.968750000000002,4.97,a-pcom-i3,2023-24,Brockton - Ashfield Middle School,00440421, 14.4, 0.0, 1.5, 84.1, 0.0, 0.0, 0.0, 77.2, 22.8, 66.2 +5.3125,5,a-pcom-i3,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 13.3, 1.1, 0.4, 83.0, 0.0, 0.0, 2.2, 96.7, 3.3, 45.9 +10.656249999999998,5,a-pcom-i3,2023-24,Brockton - Brockton High,00440505, 24.3, 2.3, 5.2, 65.9, 0.3, 0.6, 1.4, 64.8, 35.2, 358.4 +6.656249999999999,5,a-pcom-i3,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 16.7, 0.0, 0.0, 78.7, 0.0, 0.0, 4.6, 85.7, 14.3, 21.6 +7.124999999999999,5,a-pcom-i3,2023-24,Brockton - Brookfield,00440010, 13.7, 1.5, 6.1, 77.2, 0.0, 0.0, 1.5, 95.3, 4.7, 68.6 +6.187499999999999,5,a-pcom-i3,2023-24,Brockton - Downey,00440110, 9.9, 1.1, 7.6, 80.2, 0.0, 0.0, 1.1, 88.8, 11.2, 91.6 +8.125,5,a-pcom-i3,2023-24,Brockton - Dr W Arnone Community School,00440001, 19.1, 0.0, 5.0, 74.0, 0.9, 0.0, 0.9, 87.8, 12.2, 106.2 +6.875,5,a-pcom-i3,2023-24,Brockton - East Middle School,00440405, 15.1, 3.1, 2.3, 78.0, 0.0, 0.0, 1.5, 75.0, 25.0, 65.1 +4.624999999999999,4.62,a-pcom-i3,2023-24,Brockton - Edgar B Davis,00440023, 9.3, 0.0, 3.3, 85.2, 0.0, 0.0, 2.2, 75.4, 24.6, 90.3 +6.187499999999999,5,a-pcom-i3,2023-24,Brockton - Edison Day Academy,00440535, 17.2, 0.0, 2.6, 80.2, 0.0, 0.0, 0.0, 68.7, 31.3, 30.8 +16.46875,5,a-pcom-i3,2023-24,Brockton - Edison Evening Academy,00440520, 50.2, 1.5, 0.7, 47.3, 0.0, 0.0, 0.4, 66.8, 33.2, 13.6 +10.78125,5,a-pcom-i3,2023-24,Brockton - Gilmore Elementary School,00440055, 27.5, 0.0, 4.5, 65.5, 0.0, 0.0, 2.5, 84.4, 15.6, 48.7 +7.781250000000002,5,a-pcom-i3,2023-24,Brockton - Hancock,00440045, 18.0, 0.0, 4.0, 75.1, 1.3, 0.0, 1.5, 86.3, 13.7, 74.2 +9.90625,5,a-pcom-i3,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 23.8, 0.0, 4.0, 68.3, 0.0, 0.0, 4.0, 64.6, 35.4, 25.2 +8.093750000000002,5,a-pcom-i3,2023-24,Brockton - John F Kennedy,00440017, 13.2, 3.9, 6.8, 74.1, 0.0, 0.0, 2.1, 92.6, 7.4, 58.4 +7.749999999999999,5,a-pcom-i3,2023-24,Brockton - Louis F Angelo Elementary,00440065, 14.4, 0.2, 6.5, 75.2, 0.0, 0.9, 2.8, 93.8, 6.2, 108.1 +12.40625,5,a-pcom-i3,2023-24,Brockton - Manthala George Jr. School,00440003, 14.7, 0.0, 23.7, 60.3, 0.0, 0.0, 1.3, 91.2, 8.8, 84.1 +7.062499999999998,5,a-pcom-i3,2023-24,Brockton - Mary E. Baker School,00440002, 15.5, 0.0, 5.0, 77.4, 0.9, 0.9, 0.2, 92.2, 7.8, 105.8 +5.78125,5,a-pcom-i3,2023-24,Brockton - North Middle School,00440410, 10.4, 4.8, 1.0, 81.5, 0.0, 0.0, 2.4, 63.9, 36.1, 42.1 +7.093750000000001,5,a-pcom-i3,2023-24,Brockton - Oscar F Raymond,00440078, 17.3, 0.0, 4.4, 77.3, 0.0, 0.0, 1.1, 92.1, 7.9, 91.6 +7.562500000000001,5,a-pcom-i3,2023-24,Brockton - PROMISE College and Career Academy,00440525, 10.2, 0.0, 6.4, 75.8, 0.0, 0.0, 7.6, 55.4, 44.6, 15.7 +10.750000000000002,5,a-pcom-i3,2023-24,Brockton - Plouffe Middle School,00440422, 24.9, 2.7, 6.8, 65.6, 0.0, 0.0, 0.0, 79.2, 20.8, 81.1 +12.281249999999998,5,a-pcom-i3,2023-24,Brockton - South Middle School,00440415, 29.2, 0.0, 7.0, 60.7, 0.0, 0.0, 3.1, 71.4, 28.6, 70.3 +10.718749999999998,5,a-pcom-i3,2023-24,Brockton - West Middle School,00440420, 30.9, 0.0, 3.3, 65.7, 0.0, 0.0, 0.0, 72.2, 27.8, 60.1 +18.40625,5,a-pcom-i3,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 25.7, 3.9, 24.4, 41.1, 0.6, 0.6, 3.7, 75.6, 24.4, 326.7 +1,1,a-pcom-i3,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 46.0 +5.750000000000002,5,a-pcom-i3,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 8.4, 10.0, 0.0, 81.6, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +4.0625,4.06,a-pcom-i3,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 5.7, 7.3, 0.0, 87.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.9 +6.687500000000002,5,a-pcom-i3,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 2.9, 9.2, 9.3, 78.6, 0.0, 0.0, 0.0, 100.0, 0.0, 28.5 +6.843750000000002,5,a-pcom-i3,2023-24,Brookline - Brookline High,00460505, 9.1, 5.4, 6.1, 78.1, 0.3, 0.0, 0.9, 64.1, 35.6, 317.7 +5.375000000000001,5,a-pcom-i3,2023-24,Brookline - Edith C Baker,00460005, 8.1, 5.5, 3.6, 82.8, 0.0, 0.0, 0.0, 81.7, 18.3, 98.7 +5.249999999999999,5,a-pcom-i3,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 10.4, 3.2, 3.3, 83.2, 0.0, 0.0, 0.0, 79.8, 20.2, 146.7 +4.093749999999998,4.09,a-pcom-i3,2023-24,Brookline - Heath,00460025, 4.0, 2.6, 6.5, 86.9, 0.0, 0.0, 0.0, 84.3, 15.7, 77.1 +5.187499999999998,5,a-pcom-i3,2023-24,Brookline - John D Runkle,00460045, 8.1, 3.5, 3.1, 83.4, 0.0, 0.9, 0.9, 86.2, 13.8, 109.0 +5.343749999999998,5,a-pcom-i3,2023-24,Brookline - Lawrence,00460030, 4.4, 10.7, 1.8, 82.9, 0.0, 0.0, 0.3, 87.3, 12.7, 99.6 +3.187500000000001,3.19,a-pcom-i3,2023-24,Brookline - Michael Driscoll,00460020, 3.6, 4.3, 2.3, 89.8, 0.0, 0.0, 0.0, 87.4, 12.6, 85.4 +6.187499999999999,5,a-pcom-i3,2023-24,Brookline - Pierce,00460040, 8.8, 7.9, 2.0, 80.2, 0.0, 0.0, 1.0, 79.2, 20.8, 98.7 +3.9374999999999982,3.94,a-pcom-i3,2023-24,Brookline - The Lynch Center,00460060, 0.0, 3.9, 8.7, 87.4, 0.0, 0.0, 0.0, 100.0, 0.0, 17.2 +5.3125,5,a-pcom-i3,2023-24,Brookline - William H Lincoln,00460035, 6.4, 3.4, 5.2, 83.0, 0.0, 0.0, 2.1, 80.7, 19.3, 88.6 +3.531249999999999,3.53,a-pcom-i3,2023-24,Burlington - Burlington High,00480505, 1.7, 3.2, 4.8, 88.7, 0.0, 0.0, 1.7, 76.9, 23.1, 156.6 +1,1,a-pcom-i3,2023-24,Burlington - Fox Hill,00480007, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 87.2, 12.8, 67.3 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Burlington - Francis Wyman Elementary,00480035, 0.0, 2.4, 0.0, 96.4, 0.0, 0.0, 1.2, 90.0, 8.8, 82.4 +3.031250000000001,3.03,a-pcom-i3,2023-24,Burlington - Marshall Simonds Middle,00480303, 1.7, 5.5, 0.8, 90.3, 0.0, 0.0, 1.7, 82.3, 17.7, 118.6 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Burlington - Memorial,00480015, 0.0, 3.3, 1.6, 95.1, 0.0, 0.0, 0.0, 90.9, 9.1, 61.4 +1,1,a-pcom-i3,2023-24,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 1.4, 97.2, 0.0, 0.0, 1.4, 90.9, 7.7, 72.0 +18.09375,5,a-pcom-i3,2023-24,Cambridge - Amigos School,00490006, 3.5, 0.0, 54.4, 42.1, 0.0, 0.0, 0.0, 73.3, 26.7, 65.6 +8.687499999999998,5,a-pcom-i3,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 12.1, 5.9, 7.2, 72.2, 0.0, 0.3, 2.3, 59.9, 39.8, 339.1 +10.3125,5,a-pcom-i3,2023-24,Cambridge - Cambridge Street Upper School,00490305, 16.7, 7.2, 7.2, 67.0, 0.0, 0.0, 1.8, 81.5, 18.5, 55.3 +9.75,5,a-pcom-i3,2023-24,Cambridge - Cambridgeport,00490007, 17.6, 6.4, 4.0, 68.8, 0.0, 0.0, 3.2, 84.4, 15.6, 62.6 +11.4375,5,a-pcom-i3,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 19.7, 9.0, 6.6, 63.4, 0.0, 1.2, 0.0, 77.6, 22.4, 83.0 +8.999999999999998,5,a-pcom-i3,2023-24,Cambridge - Graham and Parks,00490080, 16.4, 3.0, 4.5, 71.2, 0.0, 0.0, 5.0, 88.1, 11.9, 67.1 +10.125000000000002,5,a-pcom-i3,2023-24,Cambridge - Haggerty,00490020, 13.7, 5.9, 8.8, 67.6, 0.0, 0.0, 3.9, 90.2, 9.8, 51.0 +8.843749999999998,5,a-pcom-i3,2023-24,Cambridge - John M Tobin,00490065, 12.8, 5.8, 5.8, 71.7, 0.0, 0.0, 3.9, 83.5, 16.5, 86.0 +9.21875,5,a-pcom-i3,2023-24,Cambridge - Kennedy-Longfellow,00490040, 13.2, 9.3, 5.4, 70.5, 0.0, 0.0, 1.6, 94.6, 5.4, 64.3 +12.09375,5,a-pcom-i3,2023-24,Cambridge - King Open,00490035, 21.1, 5.0, 12.6, 61.3, 0.0, 0.0, 0.0, 87.1, 12.9, 79.5 +5.562499999999999,5,a-pcom-i3,2023-24,Cambridge - Maria L. Baldwin,00490005, 8.5, 4.6, 4.6, 82.2, 0.0, 0.0, 0.0, 84.9, 15.1, 64.6 +12.96875,5,a-pcom-i3,2023-24,Cambridge - Martin Luther King Jr.,00490030, 13.8, 22.5, 1.7, 58.5, 0.0, 0.0, 3.5, 94.8, 5.2, 57.8 +9.562499999999998,5,a-pcom-i3,2023-24,Cambridge - Morse,00490045, 8.9, 12.3, 6.2, 69.4, 0.0, 0.0, 3.2, 88.7, 11.3, 72.9 +6.218750000000002,5,a-pcom-i3,2023-24,Cambridge - Peabody,00490050, 9.9, 3.1, 6.9, 80.1, 0.0, 0.0, 0.0, 88.6, 11.4, 65.5 +10.187499999999998,5,a-pcom-i3,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 18.6, 6.5, 5.6, 67.4, 0.0, 0.0, 1.9, 74.1, 25.9, 53.7 +11.90625,5,a-pcom-i3,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 19.0, 8.0, 11.0, 61.9, 0.0, 0.0, 0.0, 64.2, 35.8, 49.8 +7.312500000000002,5,a-pcom-i3,2023-24,Cambridge - Vassal Lane Upper School,00490320, 10.2, 5.0, 4.9, 76.6, 0.0, 0.0, 3.3, 76.9, 23.1, 60.6 +2.8125,2.81,a-pcom-i3,2023-24,Canton - Canton High,00500505, 3.3, 1.6, 0.8, 91.0, 0.0, 0.0, 3.3, 68.8, 31.2, 122.2 +2.6250000000000018,2.63,a-pcom-i3,2023-24,Canton - Dean S Luce,00500020, 3.4, 3.4, 0.0, 91.6, 0.0, 0.0, 1.7, 95.4, 4.6, 59.3 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Canton - John F Kennedy,00500017, 7.2, 1.4, 1.4, 89.9, 0.0, 0.0, 0.0, 96.6, 3.4, 69.2 +3.6249999999999982,3.62,a-pcom-i3,2023-24,Canton - Lt Peter M Hansen,00500012, 7.0, 2.3, 2.3, 88.4, 0.0, 0.0, 0.0, 91.5, 8.5, 86.3 +2.906249999999999,2.91,a-pcom-i3,2023-24,Canton - Rodman Early Childhood Center,00500010, 9.3, 0.0, 0.0, 90.7, 0.0, 0.0, 0.0, 100.0, 0.0, 32.2 +3.7187500000000018,3.72,a-pcom-i3,2023-24,Canton - Wm H Galvin Middle,00500305, 5.6, 0.0, 3.6, 88.1, 0.0, 0.0, 2.7, 77.4, 22.6, 110.5 +1,1,a-pcom-i3,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.4, 28.6, 36.1 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 2.9, 0.0, 0.0, 95.6, 0.5, 0.0, 1.0, 56.1, 43.9, 102.2 +2.124999999999999,2.12,a-pcom-i3,2023-24,Carlisle - Carlisle School,00510025, 1.9, 4.0, 0.0, 93.2, 0.0, 0.0, 0.9, 83.2, 16.8, 107.2 +1,1,a-pcom-i3,2023-24,Carver - Carver Elementary School,00520015, 0.5, 0.0, 2.0, 97.6, 0.0, 0.0, 0.0, 96.1, 3.9, 102.5 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Carver - Carver Middle/High School,00520405, 2.8, 0.0, 0.9, 94.4, 0.0, 0.9, 0.9, 71.2, 28.8, 107.9 +1,1,a-pcom-i3,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 20.1 +1,1,a-pcom-i3,2023-24,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 58.7 +1,1,a-pcom-i3,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 30.1 +1,1,a-pcom-i3,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.8, 31.2, 50.1 +1,1,a-pcom-i3,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 60.5, 39.5, 66.6 +2.281249999999999,2.28,a-pcom-i3,2023-24,Chelmsford - Byam School,00560030, 0.0, 7.3, 0.0, 92.7, 0.0, 0.0, 0.0, 94.3, 5.7, 82.7 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Chelmsford - Center Elementary School,00560005, 0.0, 5.5, 0.0, 93.8, 0.0, 0.0, 0.7, 95.5, 4.5, 72.8 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Chelmsford - Charles D Harrington,00560025, 1.4, 2.7, 1.4, 94.6, 0.0, 0.0, 0.0, 88.2, 11.8, 73.5 +2.124999999999999,2.12,a-pcom-i3,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, 2.1, 4.7, 93.2, 0.0, 0.0, 0.0, 70.3, 29.7, 189.8 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.9, 8.3, 0.9, 89.9, 0.0, 0.0, 0.0, 89.2, 10.8, 108.9 +4.874999999999998,4.87,a-pcom-i3,2023-24,Chelmsford - Community Education Center,00560001, 2.8, 11.1, 1.7, 84.4, 0.0, 0.0, 0.0, 97.2, 2.8, 36.0 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.9, 2.8, 0.0, 96.3, 0.0, 0.0, 0.0, 81.2, 18.8, 108.2 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Chelmsford - South Row,00560015, 0.0, 1.5, 1.5, 95.6, 0.0, 0.0, 1.5, 95.3, 4.7, 68.7 +12.0625,5,a-pcom-i3,2023-24,Chelsea - Chelsea High,00570505, 5.5, 4.9, 27.7, 61.4, 0.0, 0.5, 0.0, 66.0, 34.0, 182.6 +11.968749999999998,5,a-pcom-i3,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 38.3, 61.7, 0.0, 0.0, 0.0, 64.5, 35.5, 14.4 +22.9375,5,a-pcom-i3,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 24.2, 0.0, 49.2, 26.6, 0.0, 0.0, 0.0, 90.7, 9.3, 12.4 +5.874999999999999,5,a-pcom-i3,2023-24,Chelsea - Clark Avenue School,00570050, 1.2, 7.0, 10.7, 81.2, 0.0, 0.0, 0.0, 70.9, 29.1, 86.1 +8.8125,5,a-pcom-i3,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 7.2, 1.4, 19.6, 71.8, 0.0, 0.0, 0.0, 85.2, 14.8, 69.6 +10.53125,5,a-pcom-i3,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 2.7, 2.7, 26.8, 66.3, 0.0, 0.0, 1.4, 84.8, 15.2, 73.0 +8.4375,5,a-pcom-i3,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 4.2, 4.2, 18.5, 73.0, 0.0, 0.0, 0.0, 91.1, 8.9, 70.8 +16.59375,5,a-pcom-i3,2023-24,Chelsea - George F. Kelly Elementary,00570035, 1.5, 1.5, 50.1, 46.9, 0.0, 0.0, 0.0, 89.1, 10.9, 67.1 +16.53125,5,a-pcom-i3,2023-24,Chelsea - Joseph A. Browne School,00570055, 12.7, 4.2, 36.0, 47.1, 0.0, 0.0, 0.0, 74.5, 25.5, 71.0 +14.09375,5,a-pcom-i3,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 1.3, 0.7, 43.1, 54.9, 0.0, 0.0, 0.0, 96.5, 3.5, 148.7 +8.875000000000002,5,a-pcom-i3,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 1.5, 0.6, 26.3, 71.6, 0.0, 0.0, 0.0, 82.6, 17.4, 65.1 +1,1,a-pcom-i3,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.9, 15.1, 25.0 +3.968750000000001,3.97,a-pcom-i3,2023-24,Chicopee - Barry,00610003, 4.5, 1.5, 5.2, 87.3, 0.0, 0.0, 1.5, 93.4, 6.6, 66.9 +1.40625,1.41,a-pcom-i3,2023-24,Chicopee - Belcher,00610010, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 93.1, 4.8, 46.6 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 2.4, 95.9, 0.0, 0.8, 0.8, 72.2, 27.8, 122.6 +1,1,a-pcom-i3,2023-24,Chicopee - Bowe,00610015, 0.0, 1.6, 0.2, 98.2, 0.0, 0.0, 0.0, 88.5, 11.5, 62.6 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Chicopee - Bowie,00610020, 2.7, 1.8, 0.4, 95.2, 0.0, 0.0, 0.0, 92.2, 7.8, 56.6 +3.9374999999999982,3.94,a-pcom-i3,2023-24,Chicopee - Chicopee Academy,00610021, 5.6, 1.4, 5.6, 87.4, 0.0, 0.0, 0.0, 60.7, 39.3, 35.8 +2.906249999999999,2.91,a-pcom-i3,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.7, 0.7, 7.3, 90.7, 0.0, 0.0, 0.7, 60.8, 39.2, 152.2 +4.187500000000002,4.19,a-pcom-i3,2023-24,Chicopee - Chicopee High,00610505, 1.9, 0.8, 10.0, 86.6, 0.0, 0.0, 0.8, 67.4, 32.6, 131.7 +5.78125,5,a-pcom-i3,2023-24,Chicopee - Dupont Middle,00610310, 4.0, 0.4, 13.3, 81.5, 0.0, 0.0, 0.8, 69.6, 30.4, 124.9 +5.3125,5,a-pcom-i3,2023-24,Chicopee - Fairview Elementary,00610050, 2.1, 0.0, 12.7, 83.0, 0.0, 0.0, 2.1, 89.0, 11.0, 94.2 +2.875000000000001,2.88,a-pcom-i3,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 7.7, 90.8, 0.0, 0.0, 1.5, 95.8, 4.2, 68.4 +1,1,a-pcom-i3,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 94.9, 5.1, 49.7 +2.7812500000000018,2.78,a-pcom-i3,2023-24,Chicopee - Litwin,00610022, 0.0, 3.5, 5.4, 91.1, 0.0, 0.0, 0.0, 94.5, 5.5, 57.6 +1.875,1.88,a-pcom-i3,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 96.1, 3.9, 53.6 +1.9687499999999991,1.97,a-pcom-i3,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 95.1, 4.9, 63.6 +5.874999999999999,5,a-pcom-i3,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 6.8, 3.4, 5.1, 81.2, 3.4, 0.0, 0.0, 63.4, 34.9, 58.5 +15.3125,5,a-pcom-i3,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 30.7, 1.2, 14.6, 51.0, 0.0, 0.0, 2.4, 54.3, 43.2, 41.0 +1,1,a-pcom-i3,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.1, 15.9, 25.2 +2.0624999999999982,2.06,a-pcom-i3,2023-24,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 5.2, 93.4, 0.0, 0.0, 1.5, 93.4, 6.6, 135.5 +3.4375,3.44,a-pcom-i3,2023-24,Clinton - Clinton Middle School,00640305, 1.2, 1.2, 7.4, 89.0, 0.0, 0.0, 1.2, 80.2, 19.8, 81.5 +2.8437499999999982,2.84,a-pcom-i3,2023-24,Clinton - Clinton Senior High,00640505, 1.5, 0.0, 6.9, 90.9, 0.0, 0.0, 0.7, 62.1, 37.9, 72.6 +17.3125,5,a-pcom-i3,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 43.3, 3.0, 3.5, 44.6, 0.0, 1.0, 4.6, 61.1, 38.9, 84.6 +1,1,a-pcom-i3,2023-24,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 54.7, 45.3, 59.2 +1,1,a-pcom-i3,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.9, 17.1, 46.8 +1,1,a-pcom-i3,2023-24,Cohasset - Deer Hill,00650005, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 93.8, 6.2, 48.7 +1.09375,1.09,a-pcom-i3,2023-24,Cohasset - Joseph Osgood,00650010, 3.5, 0.0, 0.0, 96.5, 0.0, 0.0, 0.0, 94.8, 5.2, 57.6 +11.343749999999998,5,a-pcom-i3,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 4.4, 7.6, 21.6, 63.7, 0.0, 0.0, 2.7, 66.3, 33.7, 146.3 +12.53125,5,a-pcom-i3,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 22.3, 2.9, 11.2, 59.9, 0.0, 0.0, 3.7, 66.0, 34.0, 69.5 +13.249999999999998,5,a-pcom-i3,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 2.3, 2.3, 25.9, 57.6, 0.0, 0.0, 12.0, 80.3, 19.7, 222.1 +5.249999999999999,5,a-pcom-i3,2023-24,Concord - Alcott,00670005, 6.3, 5.1, 5.4, 83.2, 0.0, 0.0, 0.0, 89.8, 10.2, 82.1 +3.8750000000000018,3.88,a-pcom-i3,2023-24,Concord - Concord Middle,00670305, 2.9, 4.6, 4.0, 87.6, 0.0, 0.9, 0.0, 75.5, 24.5, 109.5 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Concord - Thoreau,00670020, 0.2, 2.4, 1.5, 95.9, 0.0, 0.0, 0.0, 92.0, 8.0, 92.2 +2.562500000000001,2.56,a-pcom-i3,2023-24,Concord - Willard,00670030, 2.7, 2.5, 3.0, 91.8, 0.0, 0.0, 0.0, 89.8, 10.2, 80.2 +2.96875,2.97,a-pcom-i3,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 3.3, 3.1, 3.2, 90.5, 0.0, 0.0, 0.0, 64.7, 35.3, 190.0 +12.96875,5,a-pcom-i3,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.5, 1.3, 10.4, 58.5, 0.0, 0.0, 1.3, 73.1, 25.5, 75.8 +1,1,a-pcom-i3,2023-24,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.0, 13.0, 40.9 +1,1,a-pcom-i3,2023-24,Danvers - Danvers High,00710505, 0.9, 0.0, 0.9, 97.4, 0.0, 0.0, 0.9, 56.7, 43.3, 115.5 +1,1,a-pcom-i3,2023-24,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 39.7 +1,1,a-pcom-i3,2023-24,Danvers - Highlands,00710010, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 77.4, 22.6, 40.8 +1,1,a-pcom-i3,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.9, 0.0, 1.8, 97.3, 0.0, 0.0, 0.0, 81.9, 18.1, 110.3 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Danvers - Ivan G Smith,00710032, 0.0, 1.9, 1.5, 96.6, 0.0, 0.0, 0.0, 95.9, 4.1, 53.6 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Danvers - Riverside,00710030, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 93.3, 6.7, 62.3 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Danvers - Willis E Thorpe,00710045, 1.9, 0.0, 1.9, 96.1, 0.0, 0.0, 0.0, 89.9, 10.1, 51.3 +1,1,a-pcom-i3,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 25.8 +1,1,a-pcom-i3,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 61.3, 38.7, 102.1 +1,1,a-pcom-i3,2023-24,Dartmouth - Dartmouth Middle,00720050, 1.0, 0.0, 0.0, 98.1, 0.0, 0.0, 1.0, 60.7, 39.3, 103.1 +1,1,a-pcom-i3,2023-24,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 51.4 +1,1,a-pcom-i3,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 87.0 +1,1,a-pcom-i3,2023-24,Dartmouth - Joseph Demello,00720015, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 97.7, 2.3, 43.9 +1,1,a-pcom-i3,2023-24,Dedham - Avery,00730010, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 88.0, 12.0, 56.8 +1,1,a-pcom-i3,2023-24,Dedham - Dedham High,00730505, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 69.6, 30.4, 94.6 +2.124999999999999,2.12,a-pcom-i3,2023-24,Dedham - Dedham Middle School,00730305, 4.1, 0.0, 1.7, 93.2, 0.0, 0.0, 1.0, 70.9, 29.1, 96.9 +1,1,a-pcom-i3,2023-24,Dedham - Early Childhood Center,00730005, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 100.0, 0.0, 62.1 +1,1,a-pcom-i3,2023-24,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 49.6 +1,1,a-pcom-i3,2023-24,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 39.6 +1,1,a-pcom-i3,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 33.7 +1,1,a-pcom-i3,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.7, 9.3, 75.1 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 0.0, 3.1, 94.6, 0.0, 0.0, 2.3, 91.1, 8.9, 56.5 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 1.8, 1.2, 1.2, 94.4, 0.0, 0.0, 1.5, 73.7, 26.3, 68.5 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 3.0, 0.6, 2.8, 93.6, 0.0, 0.0, 0.0, 62.5, 37.5, 128.0 +1,1,a-pcom-i3,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 2.5, 97.1, 0.4, 0.0, 0.0, 96.4, 3.6, 71.5 +1,1,a-pcom-i3,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 93.5, 6.5, 58.5 +1,1,a-pcom-i3,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 89.3, 10.7, 53.1 +1,1,a-pcom-i3,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 90.5, 6.6, 68.2 +1,1,a-pcom-i3,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.4, 0.0, 0.0, 97.3, 0.0, 0.0, 2.2, 70.2, 29.8, 44.6 +1,1,a-pcom-i3,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.2, 0.0, 1.1, 97.5, 0.0, 0.0, 1.1, 69.6, 30.4, 88.6 +2.1875,2.19,a-pcom-i3,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 1.8, 0.0, 3.0, 93.0, 0.0, 0.0, 2.2, 78.5, 21.5, 67.4 +1,1,a-pcom-i3,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.3, 0.0, 0.0, 99.1, 0.0, 0.0, 0.6, 96.8, 3.2, 79.0 +1,1,a-pcom-i3,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 43.1 +1,1,a-pcom-i3,2023-24,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.4, 35.6, 53.4 +1,1,a-pcom-i3,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 36.3 +1,1,a-pcom-i3,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 25.7 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Dover - Chickering,00780005, 0.3, 0.0, 2.4, 96.1, 0.0, 0.0, 1.2, 87.3, 12.7, 83.7 +2.0624999999999982,2.06,a-pcom-i3,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.3, 2.5, 3.8, 93.4, 0.0, 0.0, 0.0, 65.2, 34.8, 92.2 +3.90625,3.91,a-pcom-i3,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 2.9, 1.3, 7.1, 87.5, 0.0, 0.0, 1.3, 81.8, 18.2, 77.8 +1,1,a-pcom-i3,2023-24,Dracut - Brookside Elementary,00790035, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 92.6, 7.4, 55.5 +1,1,a-pcom-i3,2023-24,Dracut - Dracut Senior High,00790505, 0.0, 1.6, 1.3, 97.1, 0.0, 0.0, 0.0, 73.6, 26.4, 93.4 +1,1,a-pcom-i3,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 95.1, 4.9, 55.6 +2.875000000000001,2.88,a-pcom-i3,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 3.7, 5.5, 90.8, 0.0, 0.0, 0.0, 92.6, 7.4, 27.1 +1,1,a-pcom-i3,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 96.5, 3.5, 75.3 +2.124999999999999,2.12,a-pcom-i3,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 1.1, 2.3, 3.4, 93.2, 0.0, 0.0, 0.0, 74.4, 24.5, 88.1 +20.625,5,a-pcom-i3,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 44.7, 0.0, 21.3, 34.0, 0.0, 0.0, 0.0, 89.4, 10.6, 23.5 +1,1,a-pcom-i3,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 98.2, 1.8, 56.1 +1,1,a-pcom-i3,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 75.8, 24.2, 72.2 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 1.4, 96.4, 2.3, 0.0, 0.0, 93.7, 6.3, 44.3 +1,1,a-pcom-i3,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 77.5, 22.5, 64.9 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.7, 96.7, 0.0, 0.0, 1.7, 93.3, 6.7, 59.8 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 1.2, 95.9, 2.9, 0.0, 0.0, 93.3, 6.7, 34.6 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 1.1, 0.0, 3.2, 95.8, 0.0, 0.0, 0.0, 55.2, 44.8, 95.0 +1,1,a-pcom-i3,2023-24,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 79.6 +1,1,a-pcom-i3,2023-24,Duxbury - Chandler Elementary,00820006, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 94.4, 5.6, 89.4 +1,1,a-pcom-i3,2023-24,Duxbury - Duxbury High,00820505, 0.0, 0.8, 0.8, 98.0, 0.0, 0.0, 0.3, 65.4, 34.6, 118.7 +1,1,a-pcom-i3,2023-24,Duxbury - Duxbury Middle,00820305, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 79.6, 20.4, 73.1 +1.09375,1.09,a-pcom-i3,2023-24,East Bridgewater - Central,00830005, 3.5, 0.0, 0.0, 96.5, 0.0, 0.0, 0.0, 93.8, 6.2, 80.8 +1,1,a-pcom-i3,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 65.1, 34.9, 107.5 +1,1,a-pcom-i3,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 89.9, 10.1, 99.0 +1.5312500000000018,1.53,a-pcom-i3,2023-24,East Longmeadow - Birchland Park,00870305, 2.5, 1.2, 1.2, 95.1, 0.0, 0.0, 0.0, 72.6, 27.4, 81.2 +2.3125000000000018,2.31,a-pcom-i3,2023-24,East Longmeadow - East Longmeadow High,00870505, 1.1, 1.1, 3.2, 92.6, 0.0, 1.1, 1.1, 64.5, 35.5, 95.2 +1,1,a-pcom-i3,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.3, 15.7, 44.6 +1,1,a-pcom-i3,2023-24,East Longmeadow - Meadow Brook,00870013, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 99.0, 1.0, 97.9 +1.3750000000000018,1.38,a-pcom-i3,2023-24,East Longmeadow - Mountain View,00870015, 2.2, 0.0, 2.2, 95.6, 0.0, 0.0, 0.0, 88.9, 11.1, 45.1 +1,1,a-pcom-i3,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 39.1 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Easthampton - Easthampton High,00860505, 0.0, 0.0, 7.1, 92.9, 0.0, 0.0, 0.0, 55.4, 44.6, 53.9 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Easthampton - Mountain View School,00860415, 1.2, 0.6, 3.1, 95.1, 0.0, 0.0, 0.0, 86.0, 14.0, 162.7 +1,1,a-pcom-i3,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.4, 99.2, 0.0, 0.0, 0.4, 95.4, 4.6, 116.7 +1,1,a-pcom-i3,2023-24,Easton - Easton Middle School,00880405, 0.0, 0.9, 1.9, 97.2, 0.0, 0.0, 0.0, 79.3, 20.7, 107.5 +2.906249999999999,2.91,a-pcom-i3,2023-24,Easton - Oliver Ames High,00880505, 0.7, 1.5, 4.9, 90.7, 0.0, 0.0, 2.2, 61.6, 38.4, 135.5 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Easton - Richardson Olmsted School,00880025, 0.0, 1.1, 1.6, 94.2, 0.0, 0.0, 3.2, 92.5, 7.5, 93.4 +3.7187500000000018,3.72,a-pcom-i3,2023-24,Edgartown - Edgartown Elementary,00890005, 4.1, 0.0, 7.7, 88.1, 0.0, 0.0, 0.0, 81.9, 18.1, 90.7 +18.3125,5,a-pcom-i3,2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 47.6, 1.6, 9.4, 41.4, 0.0, 0.0, 0.0, 62.1, 37.9, 63.7 +1,1,a-pcom-i3,2023-24,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 97.4, 0.0, 0.0, 2.6, 81.9, 18.1, 38.6 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.2, 1.0, 2.5, 96.3, 0.0, 0.0, 0.0, 60.9, 39.1, 229.2 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 100.0, 0.0, 21.0 +3.4375,3.44,a-pcom-i3,2023-24,Everett - Devens School,00930030, 5.5, 0.0, 5.5, 89.0, 0.0, 0.0, 0.0, 56.1, 43.9, 36.4 +4.656250000000002,4.66,a-pcom-i3,2023-24,Everett - Everett High,00930505, 5.9, 3.3, 4.9, 85.1, 0.0, 0.4, 0.4, 54.4, 45.6, 238.5 +3.374999999999999,3.37,a-pcom-i3,2023-24,Everett - George Keverian School,00930028, 3.2, 1.1, 5.4, 89.2, 0.0, 1.1, 0.0, 82.5, 17.5, 92.5 +2.9375000000000018,2.94,a-pcom-i3,2023-24,Everett - Lafayette School,00930038, 1.4, 3.7, 4.3, 90.6, 0.0, 0.0, 0.0, 81.3, 18.7, 126.9 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Everett - Madeline English School,00930018, 1.0, 3.0, 6.0, 89.9, 0.0, 0.0, 0.0, 92.1, 7.9, 99.4 +2.875000000000001,2.88,a-pcom-i3,2023-24,Everett - Parlin School,00930058, 4.2, 2.1, 2.9, 90.8, 0.0, 0.0, 0.0, 83.7, 16.3, 94.8 +2.406250000000001,2.41,a-pcom-i3,2023-24,Everett - Sumner G. Whittier School,00930010, 6.2, 0.0, 1.5, 92.3, 0.0, 0.0, 0.0, 85.4, 14.6, 64.6 +4.53125,4.53,a-pcom-i3,2023-24,Everett - Webster Extension,00930001, 0.0, 0.0, 10.9, 85.5, 0.0, 0.0, 3.6, 94.5, 5.5, 27.5 +3.59375,3.59,a-pcom-i3,2023-24,Everett - Webster School,00930015, 0.0, 4.3, 7.2, 88.5, 0.0, 0.0, 0.0, 91.8, 8.2, 69.6 +14.59375,5,a-pcom-i3,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 10.7, 4.6, 27.5, 53.3, 0.4, 0.0, 3.4, 73.2, 26.4, 237.4 +1,1,a-pcom-i3,2023-24,Fairhaven - East Fairhaven,00940010, 0.5, 0.0, 0.0, 99.5, 0.0, 0.0, 0.0, 95.0, 5.0, 53.8 +1,1,a-pcom-i3,2023-24,Fairhaven - Fairhaven High,00940505, 0.3, 0.0, 0.0, 98.3, 0.0, 0.0, 1.4, 58.6, 41.4, 72.6 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Fairhaven - Hastings Middle,00940305, 0.5, 0.0, 1.6, 95.8, 0.0, 0.0, 2.1, 72.4, 27.6, 48.6 +1,1,a-pcom-i3,2023-24,Fairhaven - Leroy Wood,00940030, 0.4, 0.0, 0.0, 99.6, 0.0, 0.0, 0.0, 91.6, 8.4, 56.3 +3.656250000000001,3.66,a-pcom-i3,2023-24,Fall River - B M C Durfee High,00950505, 6.1, 0.3, 3.6, 88.3, 0.3, 0.0, 1.5, 65.8, 34.2, 389.6 +4.906250000000001,4.91,a-pcom-i3,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 2.0, 0.0, 9.8, 84.3, 1.0, 0.0, 3.0, 89.9, 10.1, 100.7 +5.593750000000002,5,a-pcom-i3,2023-24,Fall River - Early Learning Center,00950001, 3.6, 0.0, 7.1, 82.1, 3.6, 0.0, 3.6, 100.0, 0.0, 28.0 +4.312499999999999,4.31,a-pcom-i3,2023-24,Fall River - FRPS Early Learning Center,00950002, 3.4, 0.0, 10.3, 86.2, 0.0, 0.0, 0.0, 100.0, 0.0, 29.0 +4.84375,4.84,a-pcom-i3,2023-24,Fall River - Henry Lord Community School,00950017, 6.9, 1.3, 5.5, 84.5, 0.6, 0.0, 1.3, 90.3, 9.7, 159.2 +3.843749999999999,3.84,a-pcom-i3,2023-24,Fall River - James Tansey,00950140, 4.9, 2.5, 4.9, 87.7, 0.0, 0.0, 0.0, 97.5, 2.5, 40.7 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Fall River - John J Doran,00950045, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 84.8, 15.2, 92.6 +2.7812500000000018,2.78,a-pcom-i3,2023-24,Fall River - Letourneau Elementary School,00950013, 3.0, 0.0, 4.9, 91.1, 0.0, 0.0, 1.0, 90.8, 9.2, 100.1 +5.3125,5,a-pcom-i3,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 3.1, 2.1, 10.8, 83.0, 0.0, 0.0, 1.0, 90.9, 9.1, 96.6 +4.562499999999998,4.56,a-pcom-i3,2023-24,Fall River - Matthew J Kuss Middle,00950320, 4.6, 0.8, 6.9, 85.4, 0.8, 0.8, 0.8, 72.9, 27.1, 127.6 +4.21875,4.22,a-pcom-i3,2023-24,Fall River - Morton Middle,00950315, 5.0, 1.0, 3.8, 86.5, 0.0, 0.0, 3.8, 71.8, 27.1, 102.0 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Fall River - North End Elementary,00950005, 0.8, 0.0, 1.7, 96.7, 0.0, 0.0, 0.8, 89.8, 10.2, 120.7 +4.624999999999999,4.62,a-pcom-i3,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 10.4, 0.0, 2.2, 85.2, 0.0, 0.0, 2.2, 55.0, 45.0, 45.2 +5.593750000000002,5,a-pcom-i3,2023-24,Fall River - Samuel Watson,00950145, 13.4, 0.0, 4.5, 82.1, 0.0, 0.0, 0.0, 88.8, 11.2, 44.7 +2.718750000000001,2.72,a-pcom-i3,2023-24,Fall River - Spencer Borden,00950130, 2.7, 0.5, 2.7, 91.3, 0.9, 0.0, 1.8, 98.0, 2.0, 109.2 +8.406250000000002,5,a-pcom-i3,2023-24,Fall River - Stone PK-12 School,00950340, 17.8, 0.0, 5.6, 73.1, 0.0, 0.0, 3.6, 68.5, 31.5, 45.0 +7.437499999999999,5,a-pcom-i3,2023-24,Fall River - Talbot Innovation School,00950305, 5.7, 3.7, 11.4, 76.2, 1.0, 0.0, 2.0, 74.7, 25.3, 100.3 +3.4687499999999982,3.47,a-pcom-i3,2023-24,Fall River - William S Greene,00950065, 2.8, 0.9, 6.5, 88.9, 0.0, 0.0, 0.9, 93.9, 6.1, 108.3 +2.6874999999999982,2.69,a-pcom-i3,2023-24,Falmouth - East Falmouth Elementary,00960005, 1.4, 0.0, 5.7, 91.4, 0.0, 0.0, 1.4, 94.5, 5.5, 69.1 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Falmouth - Falmouth High,00960505, 0.9, 0.9, 1.7, 95.7, 0.0, 0.0, 0.9, 68.5, 31.5, 116.9 +3.0937500000000018,3.09,a-pcom-i3,2023-24,Falmouth - Lawrence,00960405, 5.3, 1.2, 2.3, 90.1, 0.0, 0.0, 1.2, 80.7, 19.3, 85.6 +1.4374999999999982,1.44,a-pcom-i3,2023-24,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.5, 95.4, 1.4, 0.0, 2.7, 88.7, 11.3, 72.8 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Falmouth - Mullen-Hall,00960020, 0.7, 0.0, 3.0, 94.8, 0.0, 0.0, 1.5, 92.8, 7.2, 66.9 +3.656250000000001,3.66,a-pcom-i3,2023-24,Falmouth - North Falmouth Elementary,00960030, 3.9, 1.9, 3.9, 88.3, 0.0, 0.0, 1.9, 93.2, 6.8, 51.4 +3.218749999999999,3.22,a-pcom-i3,2023-24,Falmouth - Teaticket,00960015, 3.4, 3.4, 0.0, 89.7, 0.0, 0.0, 3.4, 97.4, 2.6, 58.0 +1,1,a-pcom-i3,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 82.8, 17.2, 26.1 +4.281250000000001,4.28,a-pcom-i3,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 2.9, 1.0, 8.8, 86.3, 0.0, 0.0, 1.0, 68.8, 31.2, 102.5 +3.843749999999999,3.84,a-pcom-i3,2023-24,Fitchburg - Crocker Elementary,00970016, 2.5, 2.5, 7.4, 87.7, 0.0, 0.0, 0.0, 91.4, 8.6, 81.2 +6.625000000000001,5,a-pcom-i3,2023-24,Fitchburg - Fitchburg High,00970505, 4.2, 0.6, 15.8, 78.8, 0.0, 0.0, 0.6, 65.8, 34.2, 167.9 +6.000000000000001,5,a-pcom-i3,2023-24,Fitchburg - Goodrich Academy,00970510, 12.1, 0.0, 7.1, 80.8, 0.0, 0.0, 0.0, 67.7, 32.3, 24.8 +2.9375000000000018,2.94,a-pcom-i3,2023-24,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 9.4, 90.6, 0.0, 0.0, 0.0, 91.5, 8.5, 106.0 +4.53125,4.53,a-pcom-i3,2023-24,Fitchburg - Memorial Middle School,00970048, 5.6, 0.0, 8.9, 85.5, 0.0, 0.0, 0.0, 70.9, 29.1, 89.5 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Fitchburg - Reingold Elementary,00970043, 1.1, 0.0, 9.1, 88.6, 0.0, 0.0, 1.1, 86.3, 13.7, 87.5 +6.062500000000002,5,a-pcom-i3,2023-24,Fitchburg - South Street Early Learning Center,00970060, 4.1, 2.0, 13.3, 80.6, 0.0, 0.0, 0.0, 96.1, 3.9, 97.7 +1,1,a-pcom-i3,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.9, 20.1, 25.8 +3.656250000000001,3.66,a-pcom-i3,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.3, 2.9, 5.7, 88.3, 0.0, 0.0, 2.9, 58.6, 41.4, 35.0 +1,1,a-pcom-i3,2023-24,Foxborough - Charles Taylor Elementary,00990050, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 97.0, 3.0, 33.5 +1,1,a-pcom-i3,2023-24,Foxborough - Foxborough High,00990505, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 67.3, 32.7, 105.2 +1,1,a-pcom-i3,2023-24,Foxborough - John J Ahern,00990405, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 80.9, 19.1, 105.8 +1.25,1.25,a-pcom-i3,2023-24,Foxborough - Mabelle M Burrell,00990015, 2.0, 2.0, 0.0, 96.0, 0.0, 0.0, 0.0, 93.9, 6.1, 49.5 +1,1,a-pcom-i3,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 98.2, 1.8, 55.2 +6.468750000000001,5,a-pcom-i3,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 8.5, 1.7, 8.4, 79.3, 0.0, 1.1, 1.1, 72.9, 26.5, 178.8 +16.90625,5,a-pcom-i3,2023-24,Framingham - Barbieri Elementary,01000035, 1.2, 2.9, 50.0, 45.9, 0.0, 0.0, 0.0, 91.3, 8.7, 86.0 +9.4375,5,a-pcom-i3,2023-24,Framingham - Brophy,01000006, 0.0, 0.0, 30.2, 69.8, 0.0, 0.0, 0.0, 92.6, 7.4, 67.9 +7.218749999999998,5,a-pcom-i3,2023-24,Framingham - Cameron Middle School,01000302, 3.2, 2.1, 17.8, 76.9, 0.0, 0.0, 0.0, 69.8, 30.2, 94.3 +5.437500000000002,5,a-pcom-i3,2023-24,Framingham - Charlotte A Dunning,01000007, 1.6, 1.3, 14.5, 82.6, 0.0, 0.0, 0.0, 87.9, 12.1, 61.9 +5.281250000000002,5,a-pcom-i3,2023-24,Framingham - Framingham High School,01000515, 2.6, 1.5, 12.5, 83.1, 0.4, 0.0, 0.0, 69.1, 30.9, 270.2 +7.156250000000002,5,a-pcom-i3,2023-24,Framingham - Fuller Middle,01000305, 4.1, 2.9, 15.0, 77.1, 1.0, 0.0, 0.0, 76.6, 23.4, 103.7 +14.125,5,a-pcom-i3,2023-24,Framingham - Harmony Grove Elementary,01000055, 1.4, 6.8, 37.0, 54.8, 0.0, 0.0, 0.0, 93.0, 7.0, 73.2 +4.249999999999998,4.25,a-pcom-i3,2023-24,Framingham - Hemenway,01000015, 7.6, 0.0, 6.1, 86.4, 0.0, 0.0, 0.0, 93.2, 6.8, 66.0 +8.5,5,a-pcom-i3,2023-24,Framingham - Juniper Hill School,01000001, 0.0, 5.0, 22.2, 72.8, 0.0, 0.0, 0.0, 95.0, 5.0, 60.4 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Framingham - King Elementary School,01000005, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 87.0, 13.0, 53.8 +4.656250000000002,4.66,a-pcom-i3,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 1.5, 1.5, 11.8, 85.1, 0.0, 0.0, 0.0, 96.8, 3.2, 64.8 +2.749999999999999,2.75,a-pcom-i3,2023-24,Framingham - Miriam F McCarthy School,01000050, 1.4, 3.4, 4.1, 91.2, 0.0, 0.0, 0.0, 90.3, 9.7, 74.0 +7.218749999999998,5,a-pcom-i3,2023-24,Framingham - Potter Road,01000039, 1.7, 0.0, 21.5, 76.9, 0.0, 0.0, 0.0, 90.6, 9.4, 60.6 +6.124999999999998,5,a-pcom-i3,2023-24,Framingham - Walsh Middle,01000310, 1.9, 3.5, 14.2, 80.4, 0.0, 0.0, 0.0, 80.2, 19.8, 106.7 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 3.4, 0.0, 8.0, 88.6, 0.0, 0.0, 0.0, 66.6, 33.4, 58.6 +1,1,a-pcom-i3,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.6, 1.7, 0.0, 97.7, 0.0, 0.0, 0.0, 76.3, 23.7, 58.4 +2.749999999999999,2.75,a-pcom-i3,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 8.8, 0.0, 91.2, 0.0, 0.0, 0.0, 97.7, 2.3, 43.3 +1,1,a-pcom-i3,2023-24,Franklin - Franklin High,01010505, 0.6, 0.6, 0.0, 98.9, 0.0, 0.0, 0.0, 74.1, 25.9, 175.8 +1,1,a-pcom-i3,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 86.3 +1.25,1.25,a-pcom-i3,2023-24,Franklin - Horace Mann,01010405, 0.6, 0.0, 1.7, 96.0, 0.0, 0.0, 1.7, 72.9, 27.1, 59.1 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 2.0, 0.0, 96.1, 2.0, 0.0, 0.0, 93.4, 6.6, 50.6 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 98.8, 1.2, 65.7 +1,1,a-pcom-i3,2023-24,Franklin - Oak Street Elementary,01010030, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 93.4, 6.6, 56.7 +1,1,a-pcom-i3,2023-24,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 52.4 +1,1,a-pcom-i3,2023-24,Franklin - Remington Middle,01010310, 0.6, 0.0, 1.7, 97.7, 0.0, 0.0, 0.0, 75.1, 24.9, 58.8 +1.4687500000000009,1.47,a-pcom-i3,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.3, 0.0, 0.7, 95.3, 0.0, 0.0, 2.7, 37.4, 62.6, 75.0 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 70.8, 29.2, 92.5 +1,1,a-pcom-i3,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 94.9, 5.1, 59.1 +1,1,a-pcom-i3,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 64.0 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.4, 0.0, 1.2, 96.3, 0.0, 0.0, 0.0, 70.7, 29.3, 81.9 +1,1,a-pcom-i3,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 48.6 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Frontier - Frontier Regional,06700505, 0.0, 0.0, 1.0, 96.7, 2.1, 0.0, 0.2, 62.9, 37.1, 97.0 +2.8125,2.81,a-pcom-i3,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 91.0, 0.0, 0.0, 9.0, 64.0, 36.0, 11.1 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Gardner - Gardner Elementary School,01030001, 0.7, 0.0, 3.4, 95.2, 0.0, 0.0, 0.7, 90.9, 9.1, 147.3 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Gardner - Gardner High,01030505, 1.2, 2.2, 5.6, 89.9, 0.0, 0.0, 1.0, 58.3, 41.7, 83.8 +3.90625,3.91,a-pcom-i3,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 1.6, 7.8, 87.5, 0.0, 0.0, 3.1, 74.0, 26.0, 64.2 +1,1,a-pcom-i3,2023-24,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 23.7 +1,1,a-pcom-i3,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 97.0, 0.0, 0.6, 2.4, 77.2, 22.8, 42.3 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 94.6, 0.0, 2.3, 3.1, 72.0, 28.0, 32.3 +1,1,a-pcom-i3,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 91.4, 8.6, 45.0 +1,1,a-pcom-i3,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.5, 1.9, 97.0, 0.0, 0.6, 0.0, 63.8, 36.2, 52.0 +1,1,a-pcom-i3,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 98.0, 0.0, 2.0, 0.0, 72.3, 27.7, 15.0 +1,1,a-pcom-i3,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 58.0 +1,1,a-pcom-i3,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 9.2 +1.7812500000000009,1.78,a-pcom-i3,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 4.4, 1.3, 94.3, 0.0, 0.0, 0.0, 94.3, 5.7, 22.6 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Gill-Montague - Great Falls Middle,06740310, 2.6, 0.0, 1.3, 96.1, 0.0, 0.0, 0.0, 81.8, 18.2, 38.4 +1,1,a-pcom-i3,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 93.8, 6.2, 45.5 +1.09375,1.09,a-pcom-i3,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 89.0, 11.0, 39.9 +2.093750000000001,2.09,a-pcom-i3,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 4.0, 93.3, 0.0, 0.0, 2.7, 80.2, 19.8, 37.2 +6.218750000000002,5,a-pcom-i3,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 4.6, 1.5, 13.8, 80.1, 0.0, 0.0, 0.0, 67.9, 32.1, 65.4 +1,1,a-pcom-i3,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 93.5, 6.5, 53.7 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, 1.2, 2.0, 96.8, 0.0, 0.0, 0.0, 96.4, 3.6, 83.7 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Gloucester - Gloucester High,01070505, 0.8, 0.0, 2.5, 96.8, 0.0, 0.0, 0.0, 62.9, 37.1, 128.3 +1,1,a-pcom-i3,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 100.0, 0.0, 33.6 +1,1,a-pcom-i3,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 93.8, 6.2, 40.3 +1,1,a-pcom-i3,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.1, 99.9, 0.0, 0.0, 0.0, 73.1, 26.9, 96.7 +1,1,a-pcom-i3,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 98.2, 1.8, 56.2 +31.25,5,a-pcom-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Grafton - Grafton High School,01100505, 0.9, 1.8, 0.0, 95.6, 0.0, 0.0, 1.7, 68.9, 31.1, 112.0 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Grafton - Grafton Middle,01100305, 0.0, 5.8, 0.0, 94.2, 0.0, 0.0, 0.0, 67.3, 32.7, 64.3 +1,1,a-pcom-i3,2023-24,Grafton - Millbury Street Elementary School,01100200, 1.2, 0.0, 1.2, 97.7, 0.0, 0.0, 0.0, 94.2, 5.8, 86.4 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Grafton - North Grafton Elementary,01100025, 0.0, 2.1, 2.1, 95.9, 0.0, 0.0, 0.0, 100.0, 0.0, 48.7 +1,1,a-pcom-i3,2023-24,Grafton - North Street Elementary School,01100030, 0.0, 1.2, 1.2, 97.5, 0.0, 0.0, 0.0, 91.3, 8.7, 81.5 +1,1,a-pcom-i3,2023-24,Grafton - South Grafton Elementary,01100005, 1.7, 0.0, 0.0, 96.9, 1.4, 0.0, 0.0, 96.6, 3.4, 58.6 +1,1,a-pcom-i3,2023-24,Granby - East Meadow,01110004, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 85.0, 15.0, 66.1 +3.4687499999999982,3.47,a-pcom-i3,2023-24,Granby - Granby Jr Sr High School,01110505, 2.2, 2.2, 4.4, 88.9, 0.0, 0.0, 2.2, 67.9, 32.1, 45.2 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 1.0, 1.0, 2.0, 96.1, 0.0, 0.0, 0.0, 72.1, 27.9, 102.0 +1,1,a-pcom-i3,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 1.7, 0.0, 0.6, 97.7, 0.0, 0.0, 0.0, 43.0, 57.0, 176.4 +7.062499999999998,5,a-pcom-i3,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.8, 0.8, 19.3, 77.4, 0.4, 0.0, 1.3, 57.7, 42.3, 238.5 +2.593749999999999,2.59,a-pcom-i3,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.5, 2.7, 3.9, 91.7, 0.3, 0.0, 0.0, 60.2, 39.8, 337.0 +2.9375000000000018,2.94,a-pcom-i3,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 4.2, 0.3, 3.8, 90.6, 0.7, 0.0, 0.3, 53.4, 46.6, 287.1 +1,1,a-pcom-i3,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 97.7, 0.0, 0.0, 2.3, 92.9, 7.1, 42.9 +1,1,a-pcom-i3,2023-24,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 96.7, 3.3, 28.4 +2.281249999999999,2.28,a-pcom-i3,2023-24,Greenfield - Greenfield High,01140505, 0.0, 1.5, 4.4, 92.7, 0.0, 1.5, 0.0, 63.9, 36.1, 68.2 +2.437499999999999,2.44,a-pcom-i3,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, 2.0, 5.9, 92.2, 0.0, 0.0, 0.0, 80.3, 17.6, 51.0 +4.0625,4.06,a-pcom-i3,2023-24,Greenfield - Newton School,01140035, 0.0, 0.0, 10.1, 87.0, 0.0, 0.0, 2.9, 91.3, 8.7, 34.7 +1,1,a-pcom-i3,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 24.9 +1.1874999999999991,1.19,a-pcom-i3,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 100.0, 0.0, 26.1 +1,1,a-pcom-i3,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.4, 1.4, 97.1, 0.0, 0.0, 0.0, 92.8, 7.2, 69.9 +1,1,a-pcom-i3,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 98.8, 1.2, 0.0, 0.0, 67.3, 32.7, 80.1 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 1.0, 2.0, 0.0, 95.9, 0.0, 0.0, 1.0, 77.5, 22.5, 97.9 +1,1,a-pcom-i3,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 44.8 +2.34375,2.34,a-pcom-i3,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 5.4, 2.1, 92.5, 0.0, 0.0, 0.0, 87.5, 12.5, 48.0 +3.843749999999999,3.84,a-pcom-i3,2023-24,Hadley - Hopkins Academy,01170505, 6.0, 6.3, 0.0, 87.7, 0.0, 0.0, 0.0, 78.1, 21.9, 48.0 +1,1,a-pcom-i3,2023-24,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.9, 12.1, 68.1 +1,1,a-pcom-i3,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 96.8, 3.2, 38.1 +1,1,a-pcom-i3,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 37.5 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 3.0, 0.4, 94.8, 0.0, 0.0, 1.8, 63.7, 36.3, 67.0 +2.5312499999999982,2.53,a-pcom-i3,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.4, 3.2, 91.9, 0.0, 0.0, 2.5, 75.3, 24.7, 53.0 +1,1,a-pcom-i3,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 91.5, 8.5, 60.0 +6.687500000000002,5,a-pcom-i3,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 11.4, 7.1, 2.8, 78.6, 0.0, 0.0, 0.0, 69.8, 30.2, 70.3 +4.249999999999998,4.25,a-pcom-i3,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 9.0, 1.8, 2.7, 86.4, 0.0, 0.0, 0.0, 54.4, 45.6, 55.4 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 2.0, 95.9, 0.0, 0.0, 2.0, 96.9, 3.1, 48.9 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.9, 0.0, 3.8, 94.2, 0.0, 0.0, 0.0, 95.2, 4.8, 52.0 +1,1,a-pcom-i3,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 64.9, 35.1, 105.7 +1,1,a-pcom-i3,2023-24,Hampden-Wilbraham - Soule Road,06800030, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 96.7, 3.3, 44.9 +1,1,a-pcom-i3,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 45.4 +1,1,a-pcom-i3,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.7, 20.3, 78.9 +1,1,a-pcom-i3,2023-24,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.0, 31.0, 107.2 +1,1,a-pcom-i3,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 13.8 +1,1,a-pcom-i3,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 67.2 +1,1,a-pcom-i3,2023-24,Hanover - Center Elementary,01220005, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 92.6, 7.4, 67.2 +1,1,a-pcom-i3,2023-24,Hanover - Hanover High,01220505, 1.1, 0.0, 1.1, 97.9, 0.0, 0.0, 0.0, 65.7, 34.3, 93.4 +1,1,a-pcom-i3,2023-24,Hanover - Hanover Middle,01220305, 1.0, 0.0, 1.0, 96.9, 1.0, 0.0, 0.0, 79.1, 20.9, 96.8 +2.34375,2.34,a-pcom-i3,2023-24,Harvard - Hildreth Elementary School,01250005, 2.5, 3.7, 1.2, 92.5, 0.0, 0.0, 0.0, 91.3, 8.7, 80.5 +2.6250000000000018,2.63,a-pcom-i3,2023-24,Harvard - The Bromfield High School,01250505, 1.7, 3.4, 3.4, 91.6, 0.0, 0.0, 0.0, 76.3, 23.7, 59.2 +1,1,a-pcom-i3,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.0, 34.0, 23.6 +1,1,a-pcom-i3,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 36.0 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 96.4, 0.0, 0.0, 3.6, 71.4, 28.6, 28.0 +3.7187500000000018,3.72,a-pcom-i3,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 3.0, 0.0, 9.0, 88.1, 0.0, 0.0, 0.0, 84.2, 15.8, 33.5 +2.718750000000001,2.72,a-pcom-i3,2023-24,Haverhill - Bradford Elementary,01280008, 1.2, 1.2, 5.0, 91.3, 0.0, 0.0, 1.2, 95.0, 5.0, 80.4 +3.374999999999999,3.37,a-pcom-i3,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.7, 10.0, 89.2, 0.0, 0.0, 0.0, 85.6, 14.4, 139.7 +2.593749999999999,2.59,a-pcom-i3,2023-24,Haverhill - Consentino Middle School,01280100, 1.0, 0.0, 7.3, 91.7, 0.0, 0.0, 0.0, 83.8, 16.2, 100.5 +3.656250000000001,3.66,a-pcom-i3,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.2, 9.3, 88.3, 0.0, 1.2, 0.0, 71.3, 28.7, 85.6 +7.000000000000002,5,a-pcom-i3,2023-24,Haverhill - Gateway Academy,01280515, 3.8, 3.8, 14.8, 77.6, 0.0, 0.0, 0.0, 58.3, 41.7, 26.4 +3.187500000000001,3.19,a-pcom-i3,2023-24,Haverhill - Golden Hill,01280026, 0.0, 2.4, 7.8, 89.8, 0.0, 0.0, 0.0, 96.4, 3.6, 83.7 +4.249999999999998,4.25,a-pcom-i3,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 13.6, 86.4, 0.0, 0.0, 0.0, 59.8, 40.2, 19.1 +4.750000000000001,4.75,a-pcom-i3,2023-24,Haverhill - Haverhill High,01280505, 1.6, 1.6, 12.0, 84.8, 0.0, 0.0, 0.0, 67.3, 32.7, 248.2 +1,1,a-pcom-i3,2023-24,Haverhill - John G Whittier,01280085, 0.0, 0.0, 1.1, 97.4, 1.6, 0.0, 0.0, 76.1, 23.9, 63.6 +3.843749999999999,3.84,a-pcom-i3,2023-24,Haverhill - Moody,01280045, 3.5, 1.6, 6.7, 87.7, 0.0, 0.0, 0.6, 99.2, 0.8, 51.1 +4.031250000000002,4.03,a-pcom-i3,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.0, 2.8, 9.0, 87.1, 0.0, 0.0, 1.0, 99.6, 0.4, 28.7 +2.6874999999999982,2.69,a-pcom-i3,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 1.1, 7.4, 91.4, 0.0, 0.0, 0.0, 90.8, 9.2, 87.3 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 6.2, 93.8, 0.0, 0.0, 0.0, 92.5, 7.5, 80.0 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Haverhill - Tilton,01280075, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 97.2, 2.8, 70.6 +2.34375,2.34,a-pcom-i3,2023-24,Haverhill - Walnut Square,01280080, 0.0, 0.0, 5.9, 92.5, 0.0, 0.0, 1.6, 96.0, 4.0, 25.3 +1,1,a-pcom-i3,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 24.4 +24.562499999999996,5,a-pcom-i3,2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 69.0, 9.5, 0.0, 21.4, 0.0, 0.0, 0.0, 73.8, 26.2, 21.0 +1.40625,1.41,a-pcom-i3,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 92.4, 7.6, 36.7 +2.8125,2.81,a-pcom-i3,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 1.9, 0.0, 7.1, 91.0, 0.0, 0.0, 0.0, 77.4, 22.6, 43.4 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Hingham - East Elementary School,01310005, 1.2, 0.0, 0.0, 96.4, 1.2, 0.0, 1.2, 92.3, 7.7, 83.5 +1,1,a-pcom-i3,2023-24,Hingham - Hingham High,01310505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 69.1, 30.9, 134.8 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 0.2, 2.5, 95.7, 0.0, 0.0, 1.6, 78.4, 21.6, 122.4 +1,1,a-pcom-i3,2023-24,Hingham - Plymouth River,01310019, 0.0, 0.7, 0.0, 99.3, 0.0, 0.0, 0.0, 89.3, 10.7, 66.9 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Hingham - South Elementary,01310020, 2.0, 2.3, 0.0, 95.7, 0.0, 0.0, 0.0, 96.0, 4.0, 87.0 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 1.5, 2.9, 95.6, 0.0, 0.0, 0.0, 90.5, 9.5, 68.4 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.0, 2.9, 0.0, 95.7, 0.0, 0.0, 1.4, 70.5, 29.5, 69.1 +1.5625,1.56,a-pcom-i3,2023-24,Holbrook - John F Kennedy,01330018, 3.8, 0.0, 1.3, 95.0, 0.0, 0.0, 0.0, 98.8, 1.3, 80.0 +1,1,a-pcom-i3,2023-24,Holland - Holland Elementary,01350005, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 91.2, 8.8, 34.0 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Holliston - Holliston High,01360505, 0.5, 0.0, 2.8, 95.8, 0.0, 0.0, 0.9, 66.6, 33.4, 107.5 +2.65625,2.66,a-pcom-i3,2023-24,Holliston - Miller School,01360007, 1.1, 0.0, 3.6, 91.5, 1.1, 0.5, 2.2, 88.1, 11.9, 92.7 +2.6874999999999982,2.69,a-pcom-i3,2023-24,Holliston - Placentino Elementary,01360010, 1.3, 3.1, 2.9, 91.4, 0.0, 0.4, 0.9, 96.4, 3.6, 112.0 +2.875000000000001,2.88,a-pcom-i3,2023-24,Holliston - Robert H. Adams Middle School,01360305, 1.5, 4.6, 2.0, 90.8, 0.0, 0.0, 1.0, 80.0, 20.0, 99.1 +20.15625,5,a-pcom-i3,2023-24,Holyoke - E N White Elementary,01370045, 1.4, 0.0, 63.1, 35.5, 0.0, 0.0, 0.0, 88.3, 11.7, 70.5 +10.15625,5,a-pcom-i3,2023-24,Holyoke - H.B. Lawrence School,01370070, 6.8, 0.0, 25.6, 67.5, 0.0, 0.0, 0.0, 88.0, 12.0, 58.5 +11.28125,5,a-pcom-i3,2023-24,Holyoke - Holyoke High,01370505, 4.5, 1.7, 29.8, 63.9, 0.0, 0.0, 0.0, 54.8, 45.2, 220.3 +16.125,5,a-pcom-i3,2023-24,Holyoke - Holyoke STEM Academy,01370320, 11.5, 0.0, 40.2, 48.4, 0.0, 0.0, 0.0, 62.7, 35.4, 52.3 +12.25,5,a-pcom-i3,2023-24,Holyoke - Joseph Metcalf School,01370003, 4.1, 0.0, 35.1, 60.8, 0.0, 0.0, 0.0, 75.9, 24.1, 48.5 +18.65625,5,a-pcom-i3,2023-24,Holyoke - Kelly Elementary,01370040, 2.6, 1.3, 55.8, 40.3, 0.0, 0.0, 0.0, 77.9, 19.5, 77.0 +19.156249999999996,5,a-pcom-i3,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 7.7, 5.0, 48.7, 38.7, 0.0, 0.0, 0.0, 77.4, 21.4, 80.1 +8.374999999999998,5,a-pcom-i3,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 25.4, 73.2, 0.0, 1.4, 0.0, 84.5, 15.5, 71.0 +13.249999999999998,5,a-pcom-i3,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 2.9, 1.0, 37.7, 57.6, 1.0, 0.0, 0.0, 83.6, 16.4, 104.6 +14.90625,5,a-pcom-i3,2023-24,Holyoke - Morgan Full Service Community School,01370025, 5.9, 0.0, 41.8, 52.3, 0.0, 0.0, 0.0, 92.2, 7.8, 76.5 +17.5,5,a-pcom-i3,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 6.4, 0.0, 46.8, 44.0, 0.0, 0.9, 1.9, 72.6, 27.4, 105.8 +1,1,a-pcom-i3,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 95.2, 4.8, 83.5 +1,1,a-pcom-i3,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.8, 27.2, 51.4 +1,1,a-pcom-i3,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 72.0, 28.0, 59.1 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 4.4, 95.6, 0.0, 0.0, 0.0, 73.3, 26.7, 67.5 +1,1,a-pcom-i3,2023-24,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 80.6 +1,1,a-pcom-i3,2023-24,Hopedale - Park Street School,01380003, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 100.0, 0.0, 26.6 +2.250000000000001,2.25,a-pcom-i3,2023-24,Hopkinton - Elmwood,01390010, 0.0, 6.0, 1.2, 92.8, 0.0, 0.0, 0.0, 87.9, 12.1, 83.4 +2.406250000000001,2.41,a-pcom-i3,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 5.1, 2.6, 92.3, 0.0, 0.0, 0.0, 91.8, 8.2, 78.2 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Hopkinton - Hopkinton High,01390505, 1.1, 2.2, 2.9, 93.8, 0.0, 0.0, 0.0, 62.0, 38.0, 137.1 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Hopkinton - Hopkinton Middle School,01390305, 1.0, 2.5, 1.0, 95.6, 0.0, 0.0, 0.0, 78.1, 21.9, 104.6 +4.562499999999998,4.56,a-pcom-i3,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 10.9, 3.6, 0.0, 85.4, 0.0, 0.0, 0.0, 100.0, 0.0, 24.7 +4.312499999999999,4.31,a-pcom-i3,2023-24,Hopkinton - Marathon Elementary School,01390005, 3.5, 9.2, 1.2, 86.2, 0.0, 0.0, 0.0, 91.8, 8.2, 86.7 +2.3749999999999982,2.37,a-pcom-i3,2023-24,Hudson - C A Farley,01410030, 0.0, 1.3, 6.3, 92.4, 0.0, 0.0, 0.0, 94.9, 5.1, 78.9 +1.875,1.88,a-pcom-i3,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 1.1, 3.8, 94.0, 1.1, 0.0, 0.0, 80.6, 19.4, 89.7 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 6.4, 93.6, 0.0, 0.0, 0.0, 97.9, 2.1, 46.8 +2.1875,2.19,a-pcom-i3,2023-24,Hudson - Hudson High,01410505, 1.9, 0.8, 4.3, 93.0, 0.0, 0.0, 0.0, 71.0, 29.0, 130.9 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 1.6, 0.0, 96.8, 0.0, 0.0, 1.6, 95.5, 4.5, 61.8 +1,1,a-pcom-i3,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.5, 48.5, 42.1 +1,1,a-pcom-i3,2023-24,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 86.6, 13.4, 72.7 +1,1,a-pcom-i3,2023-24,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.1, 39.9, 21.3 +5.437500000000002,5,a-pcom-i3,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 1.2, 4.6, 10.1, 82.6, 0.0, 0.0, 1.4, 71.5, 27.5, 100.2 +1,1,a-pcom-i3,2023-24,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.3, 25.7, 84.4 +1.4374999999999982,1.44,a-pcom-i3,2023-24,Ipswich - Ipswich Middle School,01440305, 1.5, 0.0, 3.1, 95.4, 0.0, 0.0, 0.0, 80.5, 19.5, 68.8 +2.1562500000000018,2.16,a-pcom-i3,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 6.9, 93.1, 0.0, 0.0, 0.0, 93.2, 6.8, 72.8 +1,1,a-pcom-i3,2023-24,Ipswich - Winthrop,01440015, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 93.2, 6.8, 73.6 +21.15625,5,a-pcom-i3,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 40.4, 1.0, 22.2, 32.3, 1.0, 0.0, 3.0, 78.8, 21.2, 99.0 +18.843749999999996,5,a-pcom-i3,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 23.9, 7.1, 26.7, 39.7, 0.4, 0.0, 2.2, 73.6, 25.5, 225.3 +1.4374999999999982,1.44,a-pcom-i3,2023-24,King Philip - King Philip Middle School,06900510, 2.3, 1.2, 1.2, 95.4, 0.0, 0.0, 0.0, 81.9, 18.1, 86.3 +1.4374999999999982,1.44,a-pcom-i3,2023-24,King Philip - King Philip Regional High,06900505, 0.0, 1.5, 2.3, 95.4, 0.0, 0.0, 0.8, 70.4, 29.6, 131.7 +1,1,a-pcom-i3,2023-24,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 94.3, 5.7, 88.4 +1,1,a-pcom-i3,2023-24,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.4, 15.6, 74.3 +8.28125,5,a-pcom-i3,2023-24,Lawrence - Alexander B Bruce,01490015, 2.9, 1.4, 20.7, 73.5, 0.0, 0.0, 1.4, 70.3, 29.7, 69.2 +10.968749999999998,5,a-pcom-i3,2023-24,Lawrence - Arlington Elementary,01490009, 2.0, 0.0, 30.1, 64.9, 1.0, 0.0, 2.0, 87.7, 12.3, 99.8 +11.374999999999998,5,a-pcom-i3,2023-24,Lawrence - Arlington Middle School,01490017, 2.5, 0.0, 33.8, 63.6, 0.0, 0.0, 0.0, 66.0, 34.0, 71.7 +12.156249999999998,5,a-pcom-i3,2023-24,Lawrence - Edward F. Parthum,01490053, 0.9, 0.9, 35.1, 61.1, 1.9, 0.0, 0.0, 88.6, 11.4, 105.6 +11.40625,5,a-pcom-i3,2023-24,Lawrence - Emily G Wetherbee,01490080, 1.9, 0.0, 34.6, 63.5, 0.0, 0.0, 0.0, 82.2, 17.8, 105.7 +11.59375,5,a-pcom-i3,2023-24,Lawrence - Francis M Leahy,01490040, 5.7, 0.0, 30.0, 62.9, 1.4, 0.0, 0.0, 80.5, 19.5, 70.1 +7.843749999999998,5,a-pcom-i3,2023-24,Lawrence - Frost Middle School,01490525, 3.5, 0.0, 21.6, 74.9, 0.0, 0.0, 0.0, 75.0, 25.0, 56.9 +9.718749999999998,5,a-pcom-i3,2023-24,Lawrence - Gerard A. Guilmette,01490022, 2.0, 1.0, 28.1, 68.9, 0.0, 0.0, 0.0, 91.7, 8.3, 102.2 +9.28125,5,a-pcom-i3,2023-24,Lawrence - Guilmette Middle School,01490025, 1.2, 0.0, 27.3, 70.3, 1.2, 0.0, 0.0, 69.5, 30.5, 85.2 +11.062500000000002,5,a-pcom-i3,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 27.5, 64.6, 3.9, 0.0, 3.9, 57.8, 42.2, 25.6 +13.1875,5,a-pcom-i3,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 42.2, 57.8, 0.0, 0.0, 0.0, 97.0, 3.0, 67.4 +12.437499999999998,5,a-pcom-i3,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.0, 38.3, 60.2, 1.6, 0.0, 0.0, 98.4, 1.6, 64.1 +13.999999999999998,5,a-pcom-i3,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 42.9, 55.2, 1.9, 0.0, 0.0, 92.4, 7.6, 52.7 +14.656249999999998,5,a-pcom-i3,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 2.6, 0.0, 44.3, 53.1, 0.0, 0.0, 0.0, 97.4, 2.6, 38.4 +15.437499999999998,5,a-pcom-i3,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 2.2, 0.0, 44.9, 50.6, 2.2, 0.0, 0.0, 100.0, 0.0, 44.7 +15.21875,5,a-pcom-i3,2023-24,Lawrence - Lawrence High School,01490515, 4.7, 0.5, 41.7, 51.3, 1.7, 0.0, 0.1, 64.7, 35.1, 421.4 +18.0,5,a-pcom-i3,2023-24,Lawrence - Leonard Middle School,01490090, 6.5, 4.3, 46.8, 42.4, 0.0, 0.0, 0.0, 55.7, 44.3, 46.0 +14.875,5,a-pcom-i3,2023-24,Lawrence - Oliver Elementary School,01490048, 1.2, 0.0, 46.5, 52.4, 0.0, 0.0, 0.0, 90.8, 9.2, 86.5 +14.468749999999998,5,a-pcom-i3,2023-24,Lawrence - Oliver Middle School,01490049, 4.8, 0.0, 40.0, 53.7, 0.0, 1.6, 0.0, 79.4, 20.6, 63.0 +9.500000000000002,5,a-pcom-i3,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 29.0, 69.6, 1.4, 0.0, 0.0, 66.9, 33.1, 71.9 +14.84375,5,a-pcom-i3,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 45.5, 52.5, 2.0, 0.0, 0.0, 60.1, 39.9, 25.4 +10.281250000000002,5,a-pcom-i3,2023-24,Lawrence - Robert Frost,01490018, 3.3, 0.0, 28.5, 67.1, 1.1, 0.0, 0.0, 89.2, 10.8, 90.8 +15.96875,5,a-pcom-i3,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 51.1, 48.9, 0.0, 0.0, 0.0, 100.0, 0.0, 56.1 +18.843749999999996,5,a-pcom-i3,2023-24,Lawrence - School for Exceptional Studies,01490537, 6.4, 1.5, 51.7, 39.7, 0.7, 0.0, 0.0, 69.1, 30.9, 135.0 +9.406249999999998,5,a-pcom-i3,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 2.1, 1.1, 25.9, 69.9, 0.0, 0.0, 1.1, 83.2, 16.8, 93.9 +11.187499999999998,5,a-pcom-i3,2023-24,Lawrence - Spark Academy,01490085, 2.5, 0.0, 33.3, 64.2, 0.0, 0.0, 0.0, 77.0, 23.0, 75.2 +14.75,5,a-pcom-i3,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 3.4, 0.9, 40.4, 52.8, 0.0, 0.0, 2.6, 86.4, 13.6, 117.5 +8.59375,5,a-pcom-i3,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 12.7, 2.3, 12.5, 72.5, 0.0, 0.0, 0.0, 80.4, 19.6, 86.9 +1,1,a-pcom-i3,2023-24,Lee - Lee Elementary,01500025, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 90.7, 9.3, 64.6 +1.4374999999999982,1.44,a-pcom-i3,2023-24,Lee - Lee Middle/High School,01500505, 0.0, 3.1, 1.5, 95.4, 0.0, 0.0, 0.0, 75.6, 24.4, 64.7 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Leicester - Leicester Elementary,01510005, 1.2, 0.0, 2.4, 95.2, 1.2, 0.0, 0.0, 95.2, 4.8, 84.1 +2.562500000000001,2.56,a-pcom-i3,2023-24,Leicester - Leicester High,01510505, 1.7, 1.7, 3.3, 91.8, 0.0, 0.0, 1.6, 61.2, 38.8, 60.6 +1,1,a-pcom-i3,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 12.5 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Leicester - Leicester Middle,01510015, 1.6, 0.0, 1.6, 95.1, 0.0, 0.0, 1.6, 82.6, 17.4, 61.1 +1,1,a-pcom-i3,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 1.3, 1.3, 97.4, 0.0, 0.0, 0.0, 65.1, 34.9, 77.3 +1,1,a-pcom-i3,2023-24,Lenox - Morris,01520015, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 95.2, 4.8, 62.9 +2.6874999999999982,2.69,a-pcom-i3,2023-24,Leominster - Bennett,01530003, 4.3, 4.3, 0.0, 91.4, 0.0, 0.0, 0.0, 98.7, 1.3, 23.3 +1,1,a-pcom-i3,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 32.8, 67.2, 51.9 +2.749999999999999,2.75,a-pcom-i3,2023-24,Leominster - Fall Brook,01530007, 0.0, 0.0, 8.8, 91.2, 0.0, 0.0, 0.0, 95.1, 4.9, 83.4 +3.6249999999999982,3.62,a-pcom-i3,2023-24,Leominster - Frances Drake School,01530010, 0.0, 1.1, 10.5, 88.4, 0.0, 0.0, 0.0, 88.0, 12.0, 94.9 +2.093750000000001,2.09,a-pcom-i3,2023-24,Leominster - Johnny Appleseed,01530025, 1.5, 1.0, 4.1, 93.3, 0.0, 0.0, 0.0, 93.2, 6.8, 97.4 +1,1,a-pcom-i3,2023-24,Leominster - Leominster Academy,01530705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 1.9 +7.999999999999998,5,a-pcom-i3,2023-24,Leominster - Leominster Center for Excellence,01530515, 8.5, 0.0, 17.0, 74.4, 0.0, 0.0, 0.0, 55.7, 44.3, 11.7 +3.2500000000000018,3.25,a-pcom-i3,2023-24,Leominster - Leominster High School,01530505, 1.3, 1.3, 7.8, 89.6, 0.0, 0.0, 0.0, 66.2, 33.8, 154.2 +5.187499999999998,5,a-pcom-i3,2023-24,Leominster - Lincoln School,01530005, 4.1, 4.1, 8.3, 83.4, 0.0, 0.0, 0.0, 98.3, 1.7, 24.1 +5.562499999999999,5,a-pcom-i3,2023-24,Leominster - Northwest,01530030, 2.2, 1.1, 14.4, 82.2, 0.0, 0.0, 0.0, 85.5, 14.5, 90.0 +1,1,a-pcom-i3,2023-24,Leominster - Priest Street,01530040, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 98.8, 1.2, 32.5 +3.125,3.13,a-pcom-i3,2023-24,Leominster - Samoset School,01530045, 2.8, 1.4, 5.7, 90.0, 0.0, 0.0, 0.0, 77.2, 22.8, 70.2 +2.3125000000000018,2.31,a-pcom-i3,2023-24,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 6.3, 92.6, 0.0, 0.0, 1.1, 79.9, 20.1, 94.8 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 84.2, 15.8, 31.7 +4.468749999999999,4.47,a-pcom-i3,2023-24,Lexington - Bowman,01550008, 5.7, 7.6, 0.0, 85.7, 0.0, 0.8, 0.2, 83.5, 16.5, 61.5 +2.3749999999999982,2.37,a-pcom-i3,2023-24,Lexington - Bridge,01550006, 2.1, 3.9, 1.6, 92.4, 0.0, 0.0, 0.2, 87.9, 12.1, 63.4 +6.187499999999999,5,a-pcom-i3,2023-24,Lexington - Fiske,01550015, 3.0, 12.5, 1.9, 80.2, 1.1, 0.0, 1.4, 87.6, 12.4, 80.8 +4.249999999999998,4.25,a-pcom-i3,2023-24,Lexington - Harrington,01550030, 3.4, 5.6, 3.4, 86.4, 0.0, 0.0, 1.2, 88.7, 11.3, 72.9 +4.624999999999999,4.62,a-pcom-i3,2023-24,Lexington - Jonas Clarke Middle,01550305, 2.8, 7.0, 3.0, 85.2, 0.0, 0.0, 2.0, 76.1, 23.9, 142.3 +4.781249999999999,4.78,a-pcom-i3,2023-24,Lexington - Joseph Estabrook,01550010, 1.8, 9.2, 3.0, 84.7, 0.0, 0.0, 1.3, 89.1, 10.9, 84.2 +6.749999999999998,5,a-pcom-i3,2023-24,Lexington - Lexington Children's Place,01550001, 9.6, 8.4, 0.0, 78.4, 0.0, 0.0, 3.6, 100.0, 0.0, 33.6 +5.0,5.0,a-pcom-i3,2023-24,Lexington - Lexington High,01550505, 3.0, 5.9, 4.4, 84.0, 0.0, 0.0, 2.7, 71.6, 28.4, 327.5 +7.312500000000002,5,a-pcom-i3,2023-24,Lexington - Maria Hastings,01550035, 7.4, 10.9, 4.2, 76.6, 0.0, 0.0, 0.9, 91.8, 8.2, 105.9 +5.093749999999999,5,a-pcom-i3,2023-24,Lexington - Wm Diamond Middle,01550310, 4.3, 6.2, 5.1, 83.7, 0.0, 0.0, 0.7, 72.5, 27.5, 161.6 +16.812499999999996,5,a-pcom-i3,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 29.6, 4.0, 16.1, 46.2, 0.0, 1.3, 2.7, 57.0, 43.0, 74.3 +3.59375,3.59,a-pcom-i3,2023-24,Lincoln - Hanscom School,01570305, 4.4, 2.2, 4.8, 88.5, 0.0, 0.0, 0.0, 89.3, 9.9, 125.3 +3.531249999999999,3.53,a-pcom-i3,2023-24,Lincoln - Lincoln School,01570025, 2.5, 4.9, 2.9, 88.7, 1.0, 0.0, 0.0, 87.6, 12.4, 100.8 +3.656250000000001,3.66,a-pcom-i3,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 4.6, 3.0, 2.8, 88.3, 0.0, 0.0, 1.4, 60.5, 39.5, 215.6 +1.71875,1.72,a-pcom-i3,2023-24,Littleton - Littleton High School,01580505, 0.0, 1.9, 1.8, 94.5, 0.0, 0.0, 1.8, 58.6, 41.4, 54.5 +1.1874999999999991,1.19,a-pcom-i3,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 1.6, 2.1, 96.2, 0.0, 0.0, 0.0, 78.0, 22.0, 46.5 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 93.1, 6.9, 47.1 +4.281250000000001,4.28,a-pcom-i3,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 10.9, 1.2, 86.3, 0.0, 0.0, 1.6, 98.4, 1.6, 62.1 +1,1,a-pcom-i3,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 93.4, 6.6, 61.3 +2.1875,2.19,a-pcom-i3,2023-24,Longmeadow - Center,01590010, 0.0, 3.8, 3.3, 93.0, 0.0, 0.0, 0.0, 93.4, 6.6, 61.4 +1,1,a-pcom-i3,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 97.7, 0.0, 0.0, 2.3, 75.3, 24.7, 44.1 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Longmeadow - Longmeadow High,01590505, 1.8, 0.0, 3.6, 94.6, 0.0, 0.0, 0.0, 68.3, 31.7, 111.8 +1,1,a-pcom-i3,2023-24,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 73.8, 26.2, 42.4 +1,1,a-pcom-i3,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.0, 1.7, 1.2, 97.1, 0.0, 0.0, 0.0, 94.3, 5.7, 80.1 +6.218750000000002,5,a-pcom-i3,2023-24,Lowell - Abraham Lincoln,01600020, 1.3, 7.1, 11.6, 80.1, 0.0, 0.0, 0.0, 92.9, 7.1, 77.9 +10.093749999999998,5,a-pcom-i3,2023-24,Lowell - B.F. Butler Middle School,01600310, 7.2, 9.3, 15.8, 67.7, 0.0, 0.0, 0.0, 72.0, 28.0, 69.6 +4.500000000000002,4.5,a-pcom-i3,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.0, 6.0, 6.3, 85.6, 1.0, 0.0, 1.0, 85.6, 14.4, 95.8 +7.65625,5,a-pcom-i3,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 13.5, 8.6, 75.5, 0.0, 2.5, 0.0, 100.0, 0.0, 40.8 +3.843749999999999,3.84,a-pcom-i3,2023-24,Lowell - Charles W Morey,01600030, 0.0, 5.8, 6.5, 87.7, 0.0, 0.0, 0.0, 94.8, 5.2, 77.1 +3.687499999999999,3.69,a-pcom-i3,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 6.5, 5.2, 88.2, 0.0, 0.0, 0.0, 87.6, 12.4, 76.6 +3.187500000000001,3.19,a-pcom-i3,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 4.8, 5.4, 89.8, 0.0, 0.0, 0.0, 80.8, 19.2, 83.4 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.6, 2.6, 2.6, 94.2, 0.0, 0.0, 0.0, 97.4, 2.6, 77.5 +6.875,5,a-pcom-i3,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 4.0, 6.0, 10.0, 78.0, 0.0, 0.0, 2.0, 78.0, 22.0, 50.1 +5.46875,5,a-pcom-i3,2023-24,Lowell - Greenhalge,01600015, 7.7, 2.1, 6.7, 82.5, 1.0, 0.0, 0.0, 95.4, 4.6, 97.1 +7.34375,5,a-pcom-i3,2023-24,Lowell - Henry J Robinson Middle,01600330, 5.7, 6.3, 11.5, 76.5, 0.0, 0.0, 0.0, 67.9, 32.1, 87.1 +5.031249999999998,5,a-pcom-i3,2023-24,Lowell - James S Daley Middle School,01600315, 5.2, 5.7, 4.1, 83.9, 0.0, 0.0, 1.0, 78.2, 21.8, 96.5 +4.624999999999999,4.62,a-pcom-i3,2023-24,Lowell - James Sullivan Middle School,01600340, 3.4, 3.4, 8.0, 85.2, 0.0, 0.0, 0.0, 73.7, 26.3, 87.6 +5.593750000000002,5,a-pcom-i3,2023-24,Lowell - John J Shaughnessy,01600050, 2.4, 7.1, 7.1, 82.1, 1.2, 0.0, 0.0, 94.1, 5.9, 83.9 +4.343750000000002,4.34,a-pcom-i3,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 2.7, 11.3, 86.1, 0.0, 0.0, 0.0, 93.4, 6.6, 75.4 +4.656250000000002,4.66,a-pcom-i3,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 8.0, 6.9, 85.1, 0.0, 0.0, 0.0, 63.3, 36.7, 87.3 +13.46875,5,a-pcom-i3,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 13.1, 6.5, 21.6, 56.9, 0.0, 0.0, 2.0, 54.2, 45.8, 15.3 +9.937499999999998,5,a-pcom-i3,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 8.1, 5.4, 17.3, 68.2, 0.0, 0.0, 1.1, 67.7, 32.3, 18.6 +6.468750000000001,5,a-pcom-i3,2023-24,Lowell - Lowell High,01600505, 3.2, 6.7, 9.8, 79.3, 0.0, 0.0, 1.0, 62.8, 37.2, 348.3 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Lowell - Moody Elementary,01600027, 0.0, 0.0, 5.2, 94.8, 0.0, 0.0, 0.0, 92.7, 7.3, 48.1 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Lowell - Pawtucketville Memorial,01600036, 2.0, 5.4, 2.7, 89.9, 0.0, 0.0, 0.0, 91.9, 8.1, 74.5 +5.093749999999999,5,a-pcom-i3,2023-24,Lowell - Peter W Reilly,01600040, 1.2, 1.2, 13.9, 83.7, 0.0, 0.0, 0.0, 94.6, 5.4, 82.9 +5.531250000000001,5,a-pcom-i3,2023-24,Lowell - Pyne Arts,01600018, 1.2, 4.7, 11.8, 82.3, 0.0, 0.0, 0.0, 86.1, 13.9, 84.9 +6.40625,5,a-pcom-i3,2023-24,Lowell - Rogers STEM Academy,01600005, 4.1, 4.5, 11.9, 79.5, 0.0, 0.0, 0.0, 80.8, 19.2, 122.1 +4.093749999999998,4.09,a-pcom-i3,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 1.3, 2.5, 9.4, 86.9, 0.0, 0.0, 0.0, 91.3, 8.7, 80.0 +1.875,1.88,a-pcom-i3,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 61.0, 39.0, 16.7 +3.2500000000000018,3.25,a-pcom-i3,2023-24,Lowell - Washington,01600055, 0.0, 0.0, 10.4, 89.6, 0.0, 0.0, 0.0, 90.7, 9.3, 48.2 +10.78125,5,a-pcom-i3,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 6.0, 10.1, 17.6, 65.5, 0.0, 0.0, 0.8, 77.1, 22.9, 119.4 +12.65625,5,a-pcom-i3,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 8.1, 0.0, 32.4, 59.5, 0.0, 0.0, 0.0, 55.5, 44.5, 12.4 +1,1,a-pcom-i3,2023-24,Ludlow - East Street Elementary School,01610010, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 94.4, 5.6, 83.1 +1,1,a-pcom-i3,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 93.7, 6.3, 84.8 +1,1,a-pcom-i3,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.9, 30.1, 101.3 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.5, 0.0, 2.7, 96.7, 0.0, 0.0, 0.0, 78.2, 21.8, 73.3 +1,1,a-pcom-i3,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 3.3 +1,1,a-pcom-i3,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 98.3, 0.0, 1.7, 0.0, 57.6, 42.4, 58.7 +1,1,a-pcom-i3,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 82.1, 17.9, 47.6 +1,1,a-pcom-i3,2023-24,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 64.9 +1,1,a-pcom-i3,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.1, 10.9, 54.8 +4.6875,4.69,a-pcom-i3,2023-24,Lynn - A Drewicz Elementary,01630016, 1.6, 3.2, 10.3, 85.0, 0.0, 0.0, 0.0, 95.3, 4.7, 63.3 +2.03125,2.03,a-pcom-i3,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 6.5, 93.5, 0.0, 0.0, 0.0, 88.5, 11.5, 30.8 +6.749999999999998,5,a-pcom-i3,2023-24,Lynn - Breed Middle School,01630405, 3.5, 2.8, 13.1, 78.4, 0.7, 0.0, 1.4, 65.2, 34.8, 140.9 +7.000000000000002,5,a-pcom-i3,2023-24,Lynn - Brickett Elementary,01630020, 2.4, 5.4, 14.6, 77.6, 0.0, 0.0, 0.0, 89.9, 10.1, 41.1 +3.6249999999999982,3.62,a-pcom-i3,2023-24,Lynn - Capt William G Shoemaker,01630090, 3.3, 1.7, 6.6, 88.4, 0.0, 0.0, 0.0, 88.0, 12.0, 120.7 +4.656250000000002,4.66,a-pcom-i3,2023-24,Lynn - Classical High,01630505, 3.8, 1.6, 7.4, 85.1, 0.5, 0.0, 1.6, 62.4, 37.6, 189.3 +3.500000000000001,3.5,a-pcom-i3,2023-24,Lynn - Cobbet Elementary,01630035, 0.0, 2.7, 8.4, 88.8, 0.0, 0.0, 0.0, 90.2, 9.8, 88.1 +6.343749999999999,5,a-pcom-i3,2023-24,Lynn - E J Harrington,01630045, 4.1, 0.0, 16.2, 79.7, 0.0, 0.0, 0.0, 92.7, 7.3, 98.5 +4.031250000000002,4.03,a-pcom-i3,2023-24,Lynn - Edward A Sisson,01630095, 5.5, 1.8, 5.5, 87.1, 0.0, 0.0, 0.0, 92.3, 7.7, 54.2 +6.875,5,a-pcom-i3,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 9.1, 0.0, 12.8, 78.0, 0.0, 0.0, 0.0, 52.1, 47.9, 54.7 +3.9374999999999982,3.94,a-pcom-i3,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 4.6, 0.0, 8.0, 87.4, 0.0, 0.0, 0.0, 70.1, 29.9, 25.0 +8.5,5,a-pcom-i3,2023-24,Lynn - Hood,01630055, 5.2, 5.2, 14.3, 72.8, 0.0, 0.0, 2.6, 89.3, 10.7, 77.1 +5.812499999999998,5,a-pcom-i3,2023-24,Lynn - Ingalls,01630060, 5.9, 0.0, 11.8, 81.4, 0.0, 0.0, 0.9, 94.6, 5.4, 84.9 +5.499999999999998,5,a-pcom-i3,2023-24,Lynn - Julia F Callahan,01630030, 5.0, 1.3, 10.0, 82.4, 1.3, 0.0, 0.0, 91.7, 8.3, 79.7 +2.5,2.5,a-pcom-i3,2023-24,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 8.0, 92.0, 0.0, 0.0, 0.0, 95.2, 4.8, 32.2 +7.062499999999998,5,a-pcom-i3,2023-24,Lynn - Lynn English High,01630510, 3.5, 1.5, 14.9, 77.4, 0.5, 0.0, 2.3, 56.4, 43.6, 204.7 +6.906249999999998,5,a-pcom-i3,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 2.3, 1.5, 16.4, 77.9, 1.3, 0.0, 0.6, 62.1, 37.9, 223.0 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Lynn - Lynn Woods,01630075, 3.4, 3.4, 3.4, 89.9, 0.0, 0.0, 0.0, 87.8, 12.2, 29.7 +4.84375,4.84,a-pcom-i3,2023-24,Lynn - Pickering Middle,01630420, 4.4, 0.0, 10.0, 84.5, 0.0, 0.0, 1.1, 72.3, 27.7, 90.4 +2.5,2.5,a-pcom-i3,2023-24,Lynn - Robert L Ford,01630050, 2.0, 0.0, 6.0, 92.0, 0.0, 0.0, 0.0, 94.6, 5.4, 50.0 +2.3125000000000018,2.31,a-pcom-i3,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 2.5, 5.0, 92.6, 0.0, 0.0, 0.0, 89.8, 10.2, 40.3 +9.4375,5,a-pcom-i3,2023-24,Lynn - Thurgood Marshall Mid,01630305, 6.5, 3.1, 19.2, 69.8, 0.0, 0.0, 1.2, 61.7, 38.3, 160.0 +3.7812499999999982,3.78,a-pcom-i3,2023-24,Lynn - Tracy,01630100, 2.0, 0.0, 10.1, 87.9, 0.0, 0.0, 0.0, 96.0, 4.0, 49.5 +11.15625,5,a-pcom-i3,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 10.7, 3.6, 17.8, 64.3, 3.6, 0.0, 0.0, 95.1, 4.9, 28.0 +5.031249999999998,5,a-pcom-i3,2023-24,Lynn - Washington Elementary School,01630005, 3.6, 1.8, 8.9, 83.9, 0.0, 0.0, 1.8, 89.3, 10.7, 56.0 +3.59375,3.59,a-pcom-i3,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 11.5, 88.5, 0.0, 0.0, 0.0, 88.5, 7.7, 26.1 +6.906249999999998,5,a-pcom-i3,2023-24,Lynn - Wm P Connery,01630040, 2.8, 1.4, 13.8, 77.9, 4.1, 0.0, 0.0, 94.5, 5.5, 72.4 +1.09375,1.09,a-pcom-i3,2023-24,Lynnfield - Huckleberry Hill,01640010, 0.0, 1.7, 1.7, 96.5, 0.0, 0.0, 0.0, 98.3, 1.7, 57.5 +1,1,a-pcom-i3,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 71.1, 28.9, 74.4 +1,1,a-pcom-i3,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 1.1, 97.9, 1.1, 0.0, 0.0, 74.9, 25.1, 93.5 +6.625000000000001,5,a-pcom-i3,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 10.6, 0.0, 78.8, 0.0, 0.0, 10.6, 89.4, 10.6, 9.4 +1,1,a-pcom-i3,2023-24,Lynnfield - Summer Street,01640020, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 91.8, 8.2, 41.6 +3.687499999999999,3.69,a-pcom-i3,2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 88.2, 0.0, 0.0, 11.8, 88.2, 11.8, 8.5 +4.718749999999998,4.72,a-pcom-i3,2023-24,Malden - Beebe,01650003, 4.0, 7.2, 3.0, 84.9, 0.0, 0.0, 1.0, 80.9, 19.1, 100.7 +3.687499999999999,3.69,a-pcom-i3,2023-24,Malden - Ferryway,01650013, 3.9, 3.9, 2.9, 88.2, 0.0, 0.0, 1.0, 85.1, 14.9, 101.7 +3.187500000000001,3.19,a-pcom-i3,2023-24,Malden - Forestdale,01650027, 1.1, 2.3, 3.4, 89.8, 0.0, 0.0, 3.4, 88.4, 11.6, 88.0 +4.968750000000002,4.97,a-pcom-i3,2023-24,Malden - Linden,01650047, 8.0, 5.7, 2.3, 84.1, 0.0, 0.0, 0.0, 77.0, 23.0, 88.0 +6.437499999999998,5,a-pcom-i3,2023-24,Malden - Malden Early Learning Center,01650049, 11.8, 8.8, 0.0, 79.4, 0.0, 0.0, 0.0, 95.6, 4.4, 68.0 +4.624999999999999,4.62,a-pcom-i3,2023-24,Malden - Malden High,01650505, 5.8, 3.9, 3.6, 85.2, 0.0, 0.0, 1.5, 68.8, 31.2, 165.7 +5.718749999999999,5,a-pcom-i3,2023-24,Malden - Salemwood,01650057, 4.5, 7.0, 4.1, 81.7, 0.0, 0.0, 2.7, 88.0, 11.1, 111.3 +1,1,a-pcom-i3,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.9, 14.1, 37.0 +1,1,a-pcom-i3,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 59.6, 40.4, 59.9 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 2.4, 1.0, 96.6, 0.0, 0.0, 0.0, 76.5, 23.5, 41.2 +1,1,a-pcom-i3,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 91.4, 8.6, 53.4 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Mansfield - Everett W Robinson,01670007, 1.0, 1.5, 1.0, 94.6, 0.0, 0.0, 1.9, 93.9, 6.1, 104.4 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.9, 1.7, 1.7, 94.8, 0.0, 0.0, 0.9, 78.8, 21.2, 114.6 +2.124999999999999,2.12,a-pcom-i3,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 3.4, 2.3, 93.2, 0.0, 0.0, 1.1, 93.6, 6.4, 87.9 +2.1562500000000018,2.16,a-pcom-i3,2023-24,Mansfield - Mansfield High,01670505, 1.4, 0.7, 4.8, 93.1, 0.0, 0.0, 0.0, 66.3, 33.7, 144.8 +1,1,a-pcom-i3,2023-24,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.5 +4.187500000000002,4.19,a-pcom-i3,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 4.0, 0.0, 9.4, 86.6, 0.0, 0.0, 0.0, 68.3, 31.7, 37.2 +1,1,a-pcom-i3,2023-24,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 63.7 +1,1,a-pcom-i3,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 1.4, 0.0, 0.0, 97.3, 0.0, 0.0, 1.4, 98.6, 1.4, 73.5 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Marblehead - Marblehead High,01680505, 0.0, 1.5, 1.8, 95.1, 0.0, 0.0, 1.6, 64.0, 36.0, 122.5 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 3.2, 1.6, 0.0, 95.2, 0.0, 0.0, 0.0, 72.0, 28.0, 62.9 +1,1,a-pcom-i3,2023-24,Marblehead - Village School,01680016, 0.8, 0.0, 1.1, 97.0, 0.0, 0.0, 1.1, 85.7, 14.3, 88.6 +1,1,a-pcom-i3,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.8, 33.2, 24.1 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Marion - Sippican,01690005, 1.6, 1.6, 0.0, 96.8, 0.0, 0.0, 0.0, 92.2, 7.8, 61.8 +3.28125,3.28,a-pcom-i3,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.7, 0.0, 6.3, 89.5, 0.0, 0.0, 3.5, 75.3, 24.7, 144.2 +4.53125,4.53,a-pcom-i3,2023-24,Marlborough - Charles Jaworek School,01700030, 2.1, 0.0, 9.8, 85.5, 0.0, 0.0, 2.5, 96.3, 3.7, 95.1 +3.187500000000001,3.19,a-pcom-i3,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 7.9, 89.8, 0.0, 0.0, 2.2, 97.4, 2.6, 44.7 +3.4062500000000018,3.41,a-pcom-i3,2023-24,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 8.3, 89.1, 0.0, 0.0, 2.5, 89.6, 10.4, 78.7 +4.343750000000002,4.34,a-pcom-i3,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 2.0, 0.0, 10.0, 86.1, 0.0, 0.0, 2.0, 96.0, 4.0, 101.6 +2.281249999999999,2.28,a-pcom-i3,2023-24,Marlborough - Marlborough High,01700505, 1.3, 0.0, 4.8, 92.7, 0.0, 0.0, 1.2, 70.5, 29.5, 150.2 +3.6249999999999982,3.62,a-pcom-i3,2023-24,Marlborough - Richer,01700025, 2.6, 0.0, 9.1, 88.4, 0.0, 0.0, 0.0, 98.3, 1.7, 78.4 +1,1,a-pcom-i3,2023-24,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 91.6, 8.4, 59.6 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Marshfield - Eames Way School,01710005, 0.0, 0.0, 3.0, 96.1, 0.0, 0.0, 0.9, 86.6, 13.4, 33.6 +1,1,a-pcom-i3,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 77.3, 22.7, 116.1 +1,1,a-pcom-i3,2023-24,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 92.0, 8.0, 54.0 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Marshfield - Marshfield High,01710505, 0.0, 1.3, 0.7, 96.7, 0.0, 0.7, 0.7, 70.0, 30.0, 151.2 +1,1,a-pcom-i3,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 16.2 +1,1,a-pcom-i3,2023-24,Marshfield - Martinson Elementary,01710025, 0.0, 1.2, 0.0, 97.3, 1.2, 0.0, 0.2, 94.9, 5.1, 82.5 +1,1,a-pcom-i3,2023-24,Marshfield - South River,01710010, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 95.7, 4.3, 48.6 +2.9999999999999982,3.0,a-pcom-i3,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.9, 0.0, 6.0, 90.4, 0.8, 0.0, 0.8, 62.1, 37.9, 120.5 +2.593749999999999,2.59,a-pcom-i3,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 2.1, 2.1, 2.1, 91.7, 0.0, 0.0, 2.1, 84.4, 15.6, 48.0 +16.0625,5,a-pcom-i3,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 25.0, 1.4, 20.8, 48.6, 0.0, 0.0, 4.2, 81.9, 18.1, 72.0 +1,1,a-pcom-i3,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 62.5, 37.5, 124.1 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 2.5, 1.8, 0.0, 95.7, 0.0, 0.0, 0.0, 66.7, 33.3, 80.0 +1,1,a-pcom-i3,2023-24,Mashpee - Kenneth Coombs School,01720005, 1.5, 0.0, 1.5, 96.9, 0.0, 0.0, 0.0, 96.9, 3.1, 65.5 +2.718750000000001,2.72,a-pcom-i3,2023-24,Mashpee - Mashpee Middle-High School,01720505, 4.4, 2.2, 0.0, 91.3, 2.2, 0.0, 0.0, 70.6, 29.4, 91.9 +1.6562499999999991,1.66,a-pcom-i3,2023-24,Mashpee - Quashnet School,01720035, 1.8, 0.0, 0.0, 94.7, 3.5, 0.0, 0.0, 86.0, 14.0, 57.0 +17.46875,5,a-pcom-i3,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 33.1, 5.2, 15.2, 44.1, 0.4, 0.4, 1.8, 75.0, 24.3, 283.5 +1,1,a-pcom-i3,2023-24,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 38.0 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 83.9, 16.1, 30.4 +2.34375,2.34,a-pcom-i3,2023-24,Maynard - Fowler School,01740305, 1.5, 0.0, 6.0, 92.5, 0.0, 0.0, 0.0, 78.5, 21.5, 66.4 +3.59375,3.59,a-pcom-i3,2023-24,Maynard - Green Meadow,01740010, 0.0, 1.2, 9.2, 88.5, 0.0, 0.0, 1.2, 91.9, 8.1, 86.9 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Maynard - Maynard High,01740505, 0.0, 0.0, 1.8, 96.4, 0.0, 0.0, 1.8, 64.7, 35.3, 55.8 +1,1,a-pcom-i3,2023-24,Medfield - Dale Street,01750005, 0.0, 1.1, 0.4, 98.5, 0.0, 0.0, 0.0, 92.2, 7.8, 59.1 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 1.8, 2.3, 94.8, 0.0, 0.0, 1.0, 69.9, 30.1, 97.9 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Medfield - Memorial School,01750003, 0.0, 1.4, 1.8, 95.6, 0.0, 0.0, 1.2, 95.2, 4.8, 69.5 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Medfield - Ralph Wheelock School,01750007, 0.0, 2.6, 1.8, 93.8, 0.0, 1.8, 0.0, 91.5, 8.5, 54.5 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Medfield - Thomas Blake Middle,01750305, 1.2, 1.0, 1.2, 96.7, 0.0, 0.0, 0.0, 74.4, 25.6, 83.6 +1,1,a-pcom-i3,2023-24,Medford - Brooks School,01760130, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 93.5, 6.5, 76.4 +1,1,a-pcom-i3,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.4, 45.6, 6.4 +2.3749999999999982,2.37,a-pcom-i3,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.0, 6.1, 0.0, 92.4, 0.0, 0.0, 1.5, 89.4, 10.6, 66.0 +2.0624999999999982,2.06,a-pcom-i3,2023-24,Medford - John J. McGlynn Middle School,01760320, 1.5, 2.1, 1.5, 93.4, 0.0, 0.0, 1.5, 74.1, 25.9, 67.1 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Medford - Madeleine Dugger Andrews,01760315, 0.0, 4.8, 1.4, 93.8, 0.0, 0.0, 0.0, 71.9, 28.1, 70.8 +1.71875,1.72,a-pcom-i3,2023-24,Medford - Medford High,01760505, 1.6, 0.7, 3.2, 94.5, 0.0, 0.0, 0.0, 59.4, 40.6, 186.2 +1,1,a-pcom-i3,2023-24,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 88.5 +1,1,a-pcom-i3,2023-24,Medford - Missituk Elementary School,01760140, 1.4, 1.4, 0.0, 97.1, 0.0, 0.0, 0.0, 93.1, 6.9, 70.1 +1,1,a-pcom-i3,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 57.9 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.0, 1.6, 1.6, 96.8, 0.0, 0.0, 0.0, 95.9, 4.1, 61.7 +1,1,a-pcom-i3,2023-24,Medway - Medway High,01770505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 69.8, 30.2, 70.2 +1,1,a-pcom-i3,2023-24,Medway - Medway Middle,01770305, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 78.1, 21.9, 82.7 +2.124999999999999,2.12,a-pcom-i3,2023-24,Melrose - Early Childhood Center,01780003, 5.2, 0.9, 0.6, 93.2, 0.0, 0.0, 0.0, 98.0, 2.0, 53.7 +1,1,a-pcom-i3,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 39.5 +1,1,a-pcom-i3,2023-24,Melrose - Horace Mann,01780025, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 95.3, 4.7, 30.6 +3.3124999999999982,3.31,a-pcom-i3,2023-24,Melrose - Lincoln,01780020, 3.5, 6.6, 0.6, 89.4, 0.0, 0.0, 0.0, 90.5, 9.5, 57.9 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Melrose - Melrose High,01780505, 1.8, 0.9, 1.6, 95.6, 0.0, 0.0, 0.0, 63.5, 36.5, 109.8 +1.71875,1.72,a-pcom-i3,2023-24,Melrose - Melrose Middle,01780305, 1.1, 0.2, 3.2, 94.5, 0.0, 0.0, 1.1, 79.4, 20.6, 93.9 +3.125,3.13,a-pcom-i3,2023-24,Melrose - Roosevelt,01780035, 1.7, 1.7, 3.3, 90.0, 1.7, 0.0, 1.7, 94.2, 5.8, 59.8 +1,1,a-pcom-i3,2023-24,Melrose - Winthrop,01780050, 0.0, 1.0, 0.0, 96.9, 0.0, 0.0, 2.1, 93.8, 6.2, 48.2 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 96.3, 3.7, 58.7 +2.1875,2.19,a-pcom-i3,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 1.4, 5.6, 93.0, 0.0, 0.0, 0.0, 91.6, 8.4, 71.5 +1.4374999999999982,1.44,a-pcom-i3,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 1.2, 1.2, 1.2, 95.4, 0.0, 0.0, 1.2, 79.5, 20.5, 86.4 +1,1,a-pcom-i3,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 73.2, 26.8, 74.0 +2.5312499999999982,2.53,a-pcom-i3,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.7, 7.4, 91.9, 0.0, 0.0, 0.0, 89.9, 10.1, 138.4 +1.40625,1.41,a-pcom-i3,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 85.2, 14.8, 155.9 +1,1,a-pcom-i3,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 21.9 +1,1,a-pcom-i3,2023-24,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 90.0, 10.0, 170.2 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Methuen - Methuen High,01810505, 0.4, 0.0, 4.7, 94.8, 0.0, 0.0, 0.0, 62.8, 37.2, 226.1 +2.875000000000001,2.88,a-pcom-i3,2023-24,Methuen - Tenney Grammar School,01810055, 1.2, 0.0, 7.4, 90.8, 0.0, 0.0, 0.6, 86.3, 13.7, 163.2 +1,1,a-pcom-i3,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.2, 12.8, 62.3 +1,1,a-pcom-i3,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 75.6, 24.4, 74.6 +1,1,a-pcom-i3,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.8, 0.0, 97.7, 1.5, 0.0, 0.0, 95.5, 4.5, 65.4 +1,1,a-pcom-i3,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 37.9 +1,1,a-pcom-i3,2023-24,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 57.0, 43.0, 98.7 +1,1,a-pcom-i3,2023-24,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 95.5, 4.5, 59.7 +1,1,a-pcom-i3,2023-24,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 71.2 +2.4687500000000018,2.47,a-pcom-i3,2023-24,Milford - Brookside,01850065, 0.9, 1.8, 5.2, 92.1, 0.0, 0.0, 0.0, 98.2, 1.8, 111.7 +1.5625,1.56,a-pcom-i3,2023-24,Milford - Memorial,01850010, 0.0, 0.0, 5.0, 95.0, 0.0, 0.0, 0.0, 99.0, 1.0, 78.3 +1.875,1.88,a-pcom-i3,2023-24,Milford - Milford High,01850505, 0.6, 0.6, 3.1, 94.0, 0.0, 0.0, 1.8, 65.9, 34.1, 169.4 +1,1,a-pcom-i3,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 97.7, 2.3, 42.9 +4.031250000000002,4.03,a-pcom-i3,2023-24,Milford - Stacy Middle,01850305, 0.8, 0.0, 12.2, 87.1, 0.0, 0.0, 0.0, 70.5, 29.5, 133.0 +2.124999999999999,2.12,a-pcom-i3,2023-24,Milford - Woodland,01850090, 0.0, 1.3, 5.5, 93.2, 0.0, 0.0, 0.0, 89.9, 10.1, 149.0 +1,1,a-pcom-i3,2023-24,Millbury - Elmwood Street,01860017, 1.5, 0.0, 0.0, 97.1, 0.0, 0.0, 1.5, 94.9, 5.1, 68.0 +1,1,a-pcom-i3,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 2.0, 1.0, 97.0, 0.0, 0.0, 0.0, 59.6, 40.4, 98.8 +1,1,a-pcom-i3,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.0, 15.0, 59.9 +1.8437500000000018,1.84,a-pcom-i3,2023-24,Millis - Clyde F Brown,01870005, 0.0, 2.4, 3.4, 94.1, 0.0, 0.0, 0.0, 92.7, 7.3, 81.7 +1,1,a-pcom-i3,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 66.9, 33.1, 44.2 +1.4374999999999982,1.44,a-pcom-i3,2023-24,Millis - Millis Middle,01870020, 0.0, 4.6, 0.0, 95.4, 0.0, 0.0, 0.0, 80.6, 19.4, 43.1 +1,1,a-pcom-i3,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.7, 32.3, 3.1 +3.125,3.13,a-pcom-i3,2023-24,Milton - Charles S Pierce Middle,01890410, 4.3, 0.0, 4.3, 90.0, 0.0, 0.0, 1.5, 74.9, 25.1, 117.3 +3.343750000000001,3.34,a-pcom-i3,2023-24,Milton - Collicot,01890005, 3.8, 2.6, 3.0, 89.3, 0.0, 1.3, 0.0, 85.3, 14.7, 78.0 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Milton - Cunningham School,01890007, 4.8, 2.9, 2.3, 89.9, 0.0, 0.0, 0.0, 93.4, 6.6, 103.2 +3.656250000000001,3.66,a-pcom-i3,2023-24,Milton - Glover,01890010, 8.5, 1.4, 0.4, 88.3, 0.0, 0.0, 1.4, 91.0, 9.0, 70.8 +2.437499999999999,2.44,a-pcom-i3,2023-24,Milton - Milton High,01890505, 5.0, 0.8, 1.7, 92.2, 0.0, 0.0, 0.2, 66.0, 34.0, 119.4 +7.5,5,a-pcom-i3,2023-24,Milton - Tucker,01890020, 12.9, 5.5, 5.5, 76.0, 0.0, 0.0, 0.0, 88.4, 11.6, 54.1 +1.09375,1.09,a-pcom-i3,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 2.7, 0.9, 96.5, 0.0, 0.0, 0.0, 56.4, 43.6, 113.0 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.9, 95.9, 3.2, 0.0, 0.0, 92.0, 8.0, 63.5 +1,1,a-pcom-i3,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 95.5, 4.5, 33.5 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 1.6, 0.0, 0.0, 96.8, 0.0, 0.0, 1.6, 71.1, 27.3, 62.6 +1,1,a-pcom-i3,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 28.3 +1,1,a-pcom-i3,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 36.6 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 1.1, 2.1, 2.1, 93.6, 0.0, 0.0, 1.1, 94.7, 5.3, 93.5 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 1.0, 2.8, 2.0, 94.2, 0.0, 0.0, 0.0, 67.5, 32.5, 100.2 +1,1,a-pcom-i3,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 81.1, 18.9, 74.7 +1,1,a-pcom-i3,2023-24,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.7, 97.8, 0.0, 1.5, 0.0, 93.6, 6.4, 67.9 +1.5625,1.56,a-pcom-i3,2023-24,Monson - Monson High School,01910505, 1.7, 1.7, 1.7, 95.0, 0.0, 0.0, 0.0, 62.5, 37.5, 60.5 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Monson - Quarry Hill Community School,01910010, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 96.4, 3.6, 31.6 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.5, 0.0, 7.1, 88.6, 1.1, 0.0, 2.7, 56.6, 43.4, 183.9 +1,1,a-pcom-i3,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 78.5, 21.5, 43.6 +2.1875,2.19,a-pcom-i3,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 1.2, 2.3, 3.5, 93.0, 0.0, 0.0, 0.0, 62.7, 37.3, 85.6 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 4.0, 0.0, 94.6, 0.0, 0.0, 1.3, 89.2, 10.8, 74.3 +6.281249999999998,5,a-pcom-i3,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 2.6, 10.7, 6.5, 79.9, 0.0, 0.0, 0.3, 70.0, 30.0, 153.3 +1,1,a-pcom-i3,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 22.8 +3.7812499999999982,3.78,a-pcom-i3,2023-24,Nantucket - Cyrus Peirce,01970010, 8.1, 0.0, 2.0, 87.9, 0.0, 0.0, 2.0, 77.8, 22.2, 49.5 +2.406250000000001,2.41,a-pcom-i3,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 6.3, 92.3, 0.0, 0.0, 1.3, 90.6, 8.1, 74.2 +3.90625,3.91,a-pcom-i3,2023-24,Nantucket - Nantucket High,01970505, 5.8, 1.4, 5.2, 87.5, 0.0, 0.0, 0.0, 58.0, 42.0, 69.0 +1.9687499999999991,1.97,a-pcom-i3,2023-24,Nantucket - Nantucket Intermediate School,01970020, 1.6, 0.0, 4.7, 93.7, 0.0, 0.0, 0.0, 85.8, 14.2, 63.5 +1,1,a-pcom-i3,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.5, 11.5, 40.7 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, 1.6, 0.0, 96.8, 0.0, 0.0, 1.6, 71.2, 28.8, 62.9 +1,1,a-pcom-i3,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 82.0 +1,1,a-pcom-i3,2023-24,Nashoba - Center School,07250020, 0.0, 0.0, 1.3, 97.3, 0.0, 1.3, 0.0, 95.6, 4.4, 75.0 +1,1,a-pcom-i3,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 96.7 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Nashoba - Hale,07250310, 2.5, 2.5, 0.0, 94.9, 0.0, 0.0, 0.0, 69.7, 30.3, 39.6 +1,1,a-pcom-i3,2023-24,Nashoba - Luther Burbank Middle School,07250305, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 87.2, 12.8, 39.1 +1,1,a-pcom-i3,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 91.1, 8.9, 70.7 +1.09375,1.09,a-pcom-i3,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 0.8, 2.7, 96.5, 0.0, 0.0, 0.0, 67.3, 32.7, 110.0 +1,1,a-pcom-i3,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.0, 1.9, 0.0, 97.1, 0.0, 0.0, 0.0, 55.4, 44.6, 104.0 +1.4687500000000009,1.47,a-pcom-i3,2023-24,Natick - Bennett-Hemenway,01980005, 0.0, 1.1, 1.1, 95.3, 1.1, 1.1, 0.2, 89.7, 10.3, 89.5 +1,1,a-pcom-i3,2023-24,Natick - Brown,01980010, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 90.8, 9.2, 77.0 +2.093750000000001,2.09,a-pcom-i3,2023-24,Natick - J F Kennedy Middle School,01980305, 1.6, 2.7, 0.8, 93.3, 0.8, 0.0, 0.8, 75.6, 24.4, 124.7 +1,1,a-pcom-i3,2023-24,Natick - Johnson,01980031, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 94.8, 5.2, 19.1 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Natick - Lilja Elementary,01980035, 2.6, 1.3, 0.0, 95.8, 0.0, 0.0, 0.3, 94.5, 5.5, 75.6 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Natick - Memorial,01980043, 1.6, 1.6, 0.0, 96.7, 0.0, 0.0, 0.0, 91.2, 8.8, 61.0 +2.5,2.5,a-pcom-i3,2023-24,Natick - Natick High,01980505, 3.0, 3.6, 0.8, 92.0, 0.0, 0.0, 0.7, 68.8, 31.2, 252.8 +2.906249999999999,2.91,a-pcom-i3,2023-24,Natick - Wilson Middle,01980310, 4.6, 1.8, 1.4, 90.7, 0.0, 0.0, 1.4, 68.3, 31.7, 140.4 +1.09375,1.09,a-pcom-i3,2023-24,Nauset - Nauset Regional High,06600505, 0.9, 0.9, 1.8, 96.5, 0.0, 0.0, 0.0, 70.0, 30.0, 113.8 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 1.1, 3.2, 95.7, 0.0, 0.0, 0.0, 76.6, 23.4, 94.1 +3.7812499999999982,3.78,a-pcom-i3,2023-24,Needham - Broadmeadow,01990005, 2.8, 5.3, 1.3, 87.9, 0.0, 1.3, 1.3, 87.8, 12.2, 77.4 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Needham - High Rock School,01990410, 2.9, 0.0, 0.0, 95.6, 0.0, 0.0, 1.5, 77.3, 22.7, 65.3 +5.750000000000002,5,a-pcom-i3,2023-24,Needham - John Eliot,01990020, 6.6, 4.7, 2.3, 81.6, 0.0, 3.2, 1.6, 90.0, 10.0, 61.8 +4.281250000000001,4.28,a-pcom-i3,2023-24,Needham - Needham High,01990505, 4.4, 3.3, 5.0, 86.3, 0.0, 0.0, 1.0, 64.4, 35.6, 204.4 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Needham - Newman Elementary,01990050, 3.3, 2.3, 5.2, 88.6, 0.0, 0.0, 0.6, 92.2, 7.8, 128.0 +4.125000000000001,4.13,a-pcom-i3,2023-24,Needham - Pollard Middle,01990405, 2.3, 1.7, 6.1, 86.8, 0.0, 0.0, 3.0, 76.9, 23.1, 132.0 +4.750000000000001,4.75,a-pcom-i3,2023-24,Needham - Sunita L. Williams Elementary,01990035, 3.4, 3.5, 5.3, 84.8, 0.0, 1.1, 1.9, 91.5, 8.5, 94.0 +1.875,1.88,a-pcom-i3,2023-24,Needham - William Mitchell,01990040, 0.3, 2.6, 3.1, 94.0, 0.0, 0.0, 0.0, 86.9, 13.1, 65.2 +18.9375,5,a-pcom-i3,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 38.8, 8.2, 9.5, 39.4, 0.0, 0.0, 4.1, 76.0, 24.0, 147.0 +3.4375,3.44,a-pcom-i3,2023-24,New Bedford - Abraham Lincoln,02010095, 2.8, 0.0, 8.3, 89.0, 0.0, 0.0, 0.0, 95.7, 4.3, 72.4 +9.093749999999998,5,a-pcom-i3,2023-24,New Bedford - Alfred J Gomes,02010063, 12.5, 0.0, 13.7, 70.9, 1.0, 0.0, 1.9, 88.3, 11.7, 99.5 +2.250000000000001,2.25,a-pcom-i3,2023-24,New Bedford - Betsey B Winslow,02010140, 5.8, 0.0, 1.4, 92.8, 0.0, 0.0, 0.0, 80.3, 19.7, 34.5 +5.031249999999998,5,a-pcom-i3,2023-24,New Bedford - Carlos Pacheco,02010105, 4.8, 0.0, 8.9, 83.9, 0.0, 0.0, 2.4, 96.3, 3.7, 41.9 +2.0000000000000018,2.0,a-pcom-i3,2023-24,New Bedford - Casimir Pulaski,02010123, 2.8, 0.0, 3.6, 93.6, 0.0, 0.0, 0.0, 86.6, 13.4, 106.7 +1.875,1.88,a-pcom-i3,2023-24,New Bedford - Charles S Ashley,02010010, 2.5, 0.0, 3.5, 94.0, 0.0, 0.0, 0.0, 86.9, 13.1, 40.8 +4.031250000000002,4.03,a-pcom-i3,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 9.1, 0.0, 3.9, 87.1, 0.0, 0.0, 0.0, 91.8, 8.2, 44.2 +3.9374999999999982,3.94,a-pcom-i3,2023-24,New Bedford - Ellen R Hathaway,02010075, 2.1, 0.0, 10.5, 87.4, 0.0, 0.0, 0.0, 94.0, 6.0, 47.5 +2.906249999999999,2.91,a-pcom-i3,2023-24,New Bedford - Elwyn G Campbell,02010020, 1.9, 0.0, 3.7, 90.7, 1.9, 0.0, 1.9, 94.0, 6.0, 54.0 +7.96875,5,a-pcom-i3,2023-24,New Bedford - Hayden/McFadden,02010078, 11.1, 0.0, 14.3, 74.5, 0.0, 0.0, 0.0, 90.7, 9.3, 117.0 +4.375,4.38,a-pcom-i3,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 1.8, 0.0, 12.3, 86.0, 0.0, 0.0, 0.0, 87.7, 12.3, 57.0 +2.9999999999999982,3.0,a-pcom-i3,2023-24,New Bedford - James B Congdon,02010040, 2.4, 0.0, 7.2, 90.4, 0.0, 0.0, 0.0, 92.8, 7.2, 41.6 +1.0625000000000018,1.06,a-pcom-i3,2023-24,New Bedford - Jireh Swift,02010130, 3.4, 0.0, 0.0, 96.6, 0.0, 0.0, 0.0, 92.4, 7.6, 29.7 +6.062500000000002,5,a-pcom-i3,2023-24,New Bedford - John Avery Parker,02010115, 13.8, 0.0, 5.5, 80.6, 0.0, 0.0, 0.0, 91.7, 8.3, 36.1 +3.187500000000001,3.19,a-pcom-i3,2023-24,New Bedford - John B Devalles,02010050, 5.2, 0.0, 5.0, 89.8, 0.0, 0.0, 0.0, 91.9, 8.1, 38.1 +6.218750000000002,5,a-pcom-i3,2023-24,New Bedford - Keith Middle School,02010405, 12.8, 0.0, 4.7, 80.1, 0.0, 0.0, 2.4, 66.5, 33.5, 147.5 +7.218749999999998,5,a-pcom-i3,2023-24,New Bedford - New Bedford High,02010505, 9.9, 2.1, 9.2, 76.9, 0.3, 0.0, 1.5, 62.1, 37.9, 334.3 +3.968750000000001,3.97,a-pcom-i3,2023-24,New Bedford - Normandin Middle School,02010410, 4.7, 0.0, 5.5, 87.3, 0.0, 0.0, 2.4, 68.4, 31.6, 126.3 +4.937499999999999,4.94,a-pcom-i3,2023-24,New Bedford - Roosevelt Middle School,02010415, 4.5, 0.9, 6.8, 84.2, 0.9, 0.0, 2.7, 68.8, 30.3, 110.6 +7.34375,5,a-pcom-i3,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 11.1, 2.7, 7.9, 76.5, 0.0, 0.0, 1.8, 87.7, 12.3, 110.0 +4.750000000000001,4.75,a-pcom-i3,2023-24,New Bedford - Thomas R Rodman,02010125, 3.4, 0.0, 11.8, 84.8, 0.0, 0.0, 0.0, 84.5, 15.5, 29.7 +5.46875,5,a-pcom-i3,2023-24,New Bedford - Trinity Day Academy,02010510, 11.6, 0.0, 2.9, 82.5, 0.0, 0.0, 2.9, 51.4, 48.6, 34.3 +3.374999999999999,3.37,a-pcom-i3,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 8.2, 0.0, 0.0, 89.2, 0.0, 0.0, 2.6, 56.2, 43.8, 38.5 +3.812500000000001,3.81,a-pcom-i3,2023-24,New Bedford - William H Taylor,02010135, 4.9, 0.0, 4.9, 87.8, 0.0, 2.4, 0.0, 92.0, 8.0, 41.0 +12.21875,5,a-pcom-i3,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 30.3, 4.5, 2.8, 60.9, 0.0, 0.0, 1.4, 72.4, 27.6, 70.6 +1.71875,1.72,a-pcom-i3,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 94.5, 0.0, 0.0, 5.5, 90.0, 10.0, 36.1 +1,1,a-pcom-i3,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 49.3 +1,1,a-pcom-i3,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.9, 1.4, 96.9, 0.0, 0.0, 0.9, 94.0, 6.0, 115.3 +1,1,a-pcom-i3,2023-24,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.7, 34.3, 109.9 +2.96875,2.97,a-pcom-i3,2023-24,Newburyport - Rupert A Nock Middle,02040305, 1.4, 1.4, 6.8, 90.5, 0.0, 0.0, 0.0, 74.3, 25.7, 73.8 +7.062499999999998,5,a-pcom-i3,2023-24,Newton - A E Angier,02070005, 8.9, 5.2, 6.0, 77.4, 0.0, 0.0, 2.4, 83.5, 16.5, 71.8 +3.59375,3.59,a-pcom-i3,2023-24,Newton - Bigelow Middle,02070305, 4.2, 1.6, 5.7, 88.5, 0.0, 0.0, 0.0, 63.9, 36.1, 67.8 +6.687500000000002,5,a-pcom-i3,2023-24,Newton - Bowen,02070015, 4.4, 6.2, 7.6, 78.6, 0.0, 0.0, 3.1, 91.1, 8.9, 62.6 +6.375000000000002,5,a-pcom-i3,2023-24,Newton - C C Burr,02070020, 2.8, 8.4, 5.9, 79.6, 0.0, 0.0, 3.3, 92.7, 7.3, 59.8 +5.812499999999998,5,a-pcom-i3,2023-24,Newton - Cabot,02070025, 5.1, 5.9, 6.5, 81.4, 0.0, 1.2, 0.0, 84.7, 15.3, 70.3 +3.7812499999999982,3.78,a-pcom-i3,2023-24,Newton - Charles E Brown Middle,02070310, 3.7, 5.1, 2.6, 87.9, 0.0, 0.0, 0.8, 71.9, 28.1, 127.3 +4.84375,4.84,a-pcom-i3,2023-24,Newton - Countryside,02070040, 9.0, 1.5, 2.5, 84.5, 0.0, 0.0, 2.4, 92.5, 7.5, 71.3 +4.156249999999999,4.16,a-pcom-i3,2023-24,Newton - F A Day Middle,02070315, 5.6, 3.7, 2.7, 86.7, 0.0, 0.0, 1.2, 68.4, 31.6, 121.2 +5.375000000000001,5,a-pcom-i3,2023-24,Newton - Franklin,02070055, 5.0, 9.1, 3.1, 82.8, 0.0, 0.0, 0.0, 88.9, 11.1, 53.2 +4.781249999999999,4.78,a-pcom-i3,2023-24,Newton - Horace Mann,02070075, 10.7, 4.7, 0.0, 84.7, 0.0, 0.0, 0.0, 89.4, 10.6, 52.1 +5.281250000000002,5,a-pcom-i3,2023-24,Newton - John Ward,02070120, 4.7, 8.1, 4.1, 83.1, 0.0, 0.0, 0.0, 89.2, 10.8, 38.6 +5.499999999999998,5,a-pcom-i3,2023-24,Newton - Lincoln-Eliot,02070070, 5.7, 1.6, 8.9, 82.4, 0.0, 0.0, 1.4, 93.0, 7.0, 63.5 +4.0625,4.06,a-pcom-i3,2023-24,Newton - Mason-Rice,02070080, 1.8, 5.1, 6.2, 87.0, 0.0, 0.0, 0.0, 91.7, 8.3, 56.9 +5.031249999999998,5,a-pcom-i3,2023-24,Newton - Memorial Spaulding,02070105, 5.9, 3.8, 6.4, 83.9, 0.0, 0.0, 0.0, 94.0, 6.0, 61.4 +2.7812500000000018,2.78,a-pcom-i3,2023-24,Newton - Newton Early Childhood Program,02070108, 1.0, 3.3, 2.2, 91.1, 0.0, 0.0, 2.4, 98.6, 1.4, 71.3 +5.249999999999999,5,a-pcom-i3,2023-24,Newton - Newton North High,02070505, 5.7, 5.6, 4.6, 83.2, 0.0, 0.0, 0.9, 63.8, 35.9, 318.8 +5.593750000000002,5,a-pcom-i3,2023-24,Newton - Newton South High,02070510, 5.0, 6.9, 4.5, 82.1, 0.0, 0.0, 1.4, 65.3, 34.3, 254.9 +5.0,5.0,a-pcom-i3,2023-24,Newton - Oak Hill Middle,02070320, 4.3, 4.7, 5.4, 84.0, 0.0, 0.0, 1.6, 75.1, 24.9, 104.6 +5.406249999999999,5,a-pcom-i3,2023-24,Newton - Peirce,02070100, 10.2, 2.3, 2.8, 82.7, 0.0, 0.0, 2.1, 91.3, 8.7, 48.2 +7.749999999999999,5,a-pcom-i3,2023-24,Newton - Underwood,02070115, 8.6, 7.9, 5.1, 75.2, 0.0, 0.0, 3.2, 85.4, 14.6, 38.2 +4.406249999999998,4.41,a-pcom-i3,2023-24,Newton - Williams,02070125, 6.5, 0.0, 1.8, 85.9, 0.0, 1.8, 4.0, 83.6, 16.4, 45.5 +4.093749999999998,4.09,a-pcom-i3,2023-24,Newton - Zervas,02070130, 6.0, 3.7, 3.5, 86.9, 0.0, 0.0, 0.0, 87.8, 12.2, 76.5 +1,1,a-pcom-i3,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 91.1, 8.9, 78.7 +1,1,a-pcom-i3,2023-24,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 89.2 +1,1,a-pcom-i3,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 58.8, 41.2, 80.2 +1,1,a-pcom-i3,2023-24,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.7, 19.3, 58.6 +1,1,a-pcom-i3,2023-24,North Adams - Colegrove Park Elementary,02090008, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 94.8, 5.2, 63.7 +1,1,a-pcom-i3,2023-24,North Adams - Drury High,02090505, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 61.3, 38.7, 75.0 +1.1874999999999991,1.19,a-pcom-i3,2023-24,North Adams - Greylock,02090015, 1.9, 0.0, 1.9, 96.2, 0.0, 0.0, 0.0, 86.1, 13.9, 52.9 +1,1,a-pcom-i3,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 98.9, 1.1, 87.1 +1,1,a-pcom-i3,2023-24,North Andover - Annie L Sargent School,02110018, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 95.1, 4.9, 61.1 +1.5625,1.56,a-pcom-i3,2023-24,North Andover - Atkinson,02110001, 3.0, 2.0, 0.0, 95.0, 0.0, 0.0, 0.0, 96.0, 4.0, 50.3 +1.0312499999999991,1.03,a-pcom-i3,2023-24,North Andover - Franklin,02110010, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 95.4, 4.6, 60.7 +1,1,a-pcom-i3,2023-24,North Andover - Kittredge,02110015, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 91.1, 8.9, 39.9 +1.4999999999999991,1.5,a-pcom-i3,2023-24,North Andover - North Andover High,02110505, 1.4, 0.7, 2.0, 95.2, 0.0, 0.0, 0.7, 65.2, 34.8, 146.8 +1,1,a-pcom-i3,2023-24,North Andover - North Andover Middle,02110305, 0.4, 0.8, 0.8, 98.1, 0.0, 0.0, 0.0, 74.9, 25.1, 129.6 +1.1562500000000009,1.16,a-pcom-i3,2023-24,North Andover - Thomson,02110020, 1.9, 1.9, 0.0, 96.3, 0.0, 0.0, 0.0, 92.1, 7.9, 53.6 +1.9375000000000009,1.94,a-pcom-i3,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.0, 3.9, 2.3, 93.8, 0.0, 0.0, 0.0, 94.7, 5.3, 51.3 +1.5625,1.56,a-pcom-i3,2023-24,North Attleborough - Community,02120030, 0.0, 1.7, 3.3, 95.0, 0.0, 0.0, 0.0, 95.7, 4.3, 59.9 +1,1,a-pcom-i3,2023-24,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.7, 9.3, 36.5 +1,1,a-pcom-i3,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 97.1, 2.9, 69.3 +1.5312500000000018,1.53,a-pcom-i3,2023-24,North Attleborough - North Attleboro High,02120505, 0.8, 0.8, 1.6, 95.1, 0.0, 0.0, 1.6, 68.7, 31.3, 123.2 +2.6250000000000018,2.63,a-pcom-i3,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 5.2, 3.2, 91.6, 0.0, 0.0, 0.0, 100.0, 0.0, 30.8 +2.5312499999999982,2.53,a-pcom-i3,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.9, 3.6, 1.8, 91.9, 0.0, 0.0, 1.8, 72.1, 27.9, 111.2 +2.718750000000001,2.72,a-pcom-i3,2023-24,North Attleborough - Roosevelt Avenue,02120015, 6.2, 0.0, 2.5, 91.3, 0.0, 0.0, 0.0, 88.2, 11.8, 32.2 +1.9375000000000009,1.94,a-pcom-i3,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 2.4, 3.8, 93.8, 0.0, 0.0, 0.0, 91.2, 8.8, 42.2 +1,1,a-pcom-i3,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 64.1, 35.9, 23.4 +1,1,a-pcom-i3,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 22.1 +1,1,a-pcom-i3,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.9, 0.0, 97.2, 0.0, 0.0, 1.9, 75.5, 24.5, 53.2 +1.4687500000000009,1.47,a-pcom-i3,2023-24,North Middlesex - Nissitissit Middle School,07350310, 1.3, 0.7, 2.7, 95.3, 0.0, 0.0, 0.0, 78.5, 21.5, 74.4 +1,1,a-pcom-i3,2023-24,North Middlesex - North Middlesex Regional,07350505, 1.2, 0.0, 0.0, 97.5, 0.0, 0.0, 1.2, 65.6, 34.4, 80.7 +1,1,a-pcom-i3,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 58.9 +1.09375,1.09,a-pcom-i3,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 100.0, 0.0, 28.3 +1.0625000000000018,1.06,a-pcom-i3,2023-24,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 1.1, 96.6, 0.0, 1.1, 1.1, 95.4, 4.6, 87.3 +1,1,a-pcom-i3,2023-24,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 44.8 +1,1,a-pcom-i3,2023-24,North Reading - J Turner Hood,02170010, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 92.7, 7.3, 54.9 +1,1,a-pcom-i3,2023-24,North Reading - L D Batchelder,02170005, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 97.8, 2.2, 55.0 +1,1,a-pcom-i3,2023-24,North Reading - North Reading High,02170505, 0.0, 1.0, 1.9, 97.1, 0.0, 0.0, 0.0, 56.5, 43.5, 96.6 +1,1,a-pcom-i3,2023-24,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.7, 19.3, 77.0 +4.031250000000002,4.03,a-pcom-i3,2023-24,Northampton - Bridge Street,02100005, 0.0, 1.3, 10.0, 87.1, 0.0, 0.0, 1.6, 85.4, 14.6, 61.3 +7.062499999999998,5,a-pcom-i3,2023-24,Northampton - Jackson Street,02100020, 1.9, 1.9, 15.0, 77.4, 0.0, 0.0, 3.8, 81.9, 16.2, 52.5 +3.187500000000001,3.19,a-pcom-i3,2023-24,Northampton - John F Kennedy Middle School,02100410, 4.0, 1.0, 5.2, 89.8, 0.0, 0.0, 0.0, 72.7, 27.3, 99.2 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Northampton - Leeds,02100025, 0.0, 1.6, 3.3, 95.1, 0.0, 0.0, 0.0, 82.6, 17.4, 63.6 +3.687499999999999,3.69,a-pcom-i3,2023-24,Northampton - Northampton High,02100505, 1.8, 0.9, 7.3, 88.2, 0.0, 0.0, 1.8, 62.2, 37.8, 111.2 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 2.0, 2.2, 93.8, 0.0, 0.0, 2.0, 87.0, 13.0, 50.2 +1.25,1.25,a-pcom-i3,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 1.0, 3.0, 96.0, 0.0, 0.0, 0.0, 49.5, 49.5, 101.0 +2.437499999999999,2.44,a-pcom-i3,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 2.2, 1.6, 3.4, 92.2, 0.5, 0.0, 0.0, 73.5, 26.5, 184.3 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Northborough - Fannie E Proctor,02130015, 0.0, 2.0, 2.0, 96.1, 0.0, 0.0, 0.0, 88.0, 12.0, 51.1 +1,1,a-pcom-i3,2023-24,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 49.3 +1,1,a-pcom-i3,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.3, 0.0, 99.7, 0.0, 0.0, 0.0, 92.0, 8.0, 50.7 +1,1,a-pcom-i3,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 38.1 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.3, 3.8, 93.6, 0.0, 0.0, 1.3, 85.9, 14.1, 78.1 +1,1,a-pcom-i3,2023-24,Northbridge - Northbridge Elementary School,02140001, 1.3, 0.0, 1.2, 96.9, 0.0, 0.0, 0.6, 96.1, 3.9, 165.7 +1,1,a-pcom-i3,2023-24,Northbridge - Northbridge High,02140505, 0.3, 1.3, 0.0, 98.4, 0.0, 0.0, 0.0, 60.7, 39.3, 76.1 +1.09375,1.09,a-pcom-i3,2023-24,Northbridge - Northbridge Middle,02140305, 0.3, 0.0, 3.2, 96.5, 0.0, 0.0, 0.0, 74.5, 25.5, 63.2 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.3, 0.0, 3.1, 94.6, 0.0, 0.0, 0.0, 53.0, 47.0, 173.1 +1,1,a-pcom-i3,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.5, 41.5, 70.4 +1,1,a-pcom-i3,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.4, 14.6, 50.9 +1,1,a-pcom-i3,2023-24,Norton - J C Solmonese,02180015, 1.3, 1.3, 0.0, 97.4, 0.0, 0.0, 0.0, 94.1, 5.9, 78.2 +1,1,a-pcom-i3,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 47.8 +1,1,a-pcom-i3,2023-24,Norton - Norton High,02180505, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 72.7, 27.3, 86.3 +1,1,a-pcom-i3,2023-24,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.8, 33.2, 65.3 +1,1,a-pcom-i3,2023-24,Norwell - Grace Farrar Cole,02190005, 0.4, 0.0, 0.8, 97.3, 0.0, 0.0, 1.5, 94.4, 5.6, 64.6 +1,1,a-pcom-i3,2023-24,Norwell - Norwell High,02190505, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 64.4, 35.6, 74.2 +1.09375,1.09,a-pcom-i3,2023-24,Norwell - Norwell Middle School,02190405, 0.4, 0.0, 0.0, 96.5, 0.0, 0.0, 3.1, 73.4, 26.6, 63.8 +1,1,a-pcom-i3,2023-24,Norwell - William G Vinal,02190020, 0.4, 0.0, 0.0, 99.6, 0.0, 0.0, 0.0, 91.2, 8.8, 66.1 +1.875,1.88,a-pcom-i3,2023-24,Norwood - Balch,02200005, 0.0, 0.0, 4.0, 94.0, 2.0, 0.0, 0.0, 91.4, 8.6, 49.8 +1,1,a-pcom-i3,2023-24,Norwood - Charles J Prescott,02200025, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 85.9, 14.1, 40.3 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Norwood - Cornelius M Callahan,02200010, 0.0, 2.9, 1.4, 95.8, 0.0, 0.0, 0.0, 92.1, 7.9, 34.9 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 1.0, 1.0, 1.9, 95.2, 0.0, 0.0, 1.0, 65.4, 34.6, 103.6 +2.4687500000000018,2.47,a-pcom-i3,2023-24,Norwood - F A Cleveland,02200015, 3.6, 1.5, 2.8, 92.1, 0.0, 0.0, 0.0, 97.3, 2.7, 55.0 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Norwood - George F. Willett,02200075, 1.2, 1.2, 2.5, 95.1, 0.0, 0.0, 0.0, 97.3, 2.7, 81.3 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Norwood - John P Oldham,02200020, 2.1, 2.1, 2.1, 93.8, 0.0, 0.0, 0.0, 82.3, 17.7, 48.3 +3.374999999999999,3.37,a-pcom-i3,2023-24,Norwood - Norwood High,02200505, 3.9, 0.8, 6.1, 89.2, 0.0, 0.0, 0.0, 63.5, 36.5, 130.8 +2.718750000000001,2.72,a-pcom-i3,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.8, 0.0, 3.5, 91.3, 0.0, 0.0, 3.4, 90.2, 9.8, 97.9 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 1.1, 0.0, 96.7, 0.0, 0.0, 2.2, 57.6, 42.4, 92.0 +1,1,a-pcom-i3,2023-24,Old Rochester - Old Rochester Regional High,07400505, 1.1, 0.0, 1.1, 97.8, 0.0, 0.0, 0.0, 66.3, 33.7, 89.1 +1,1,a-pcom-i3,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.6, 26.4, 56.8 +2.8437499999999982,2.84,a-pcom-i3,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 3.9, 0.0, 5.3, 90.9, 0.0, 0.0, 0.0, 78.6, 21.4, 57.0 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Orange - Fisher Hill School,02230010, 1.1, 0.0, 1.1, 96.6, 0.0, 0.0, 1.1, 85.0, 15.0, 89.4 +1,1,a-pcom-i3,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 41.5 +1,1,a-pcom-i3,2023-24,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 43.5 +1,1,a-pcom-i3,2023-24,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 40.1 +1.25,1.25,a-pcom-i3,2023-24,Oxford - Oxford High,02260505, 0.9, 0.2, 0.0, 96.0, 0.0, 0.0, 2.9, 65.9, 34.1, 67.8 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Oxford - Oxford Middle,02260405, 0.0, 1.5, 2.8, 95.6, 0.0, 0.0, 0.0, 79.6, 20.4, 53.0 +1,1,a-pcom-i3,2023-24,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 94.5, 5.5, 99.5 +1.6875000000000018,1.69,a-pcom-i3,2023-24,Palmer - Palmer High,02270505, 0.0, 1.1, 2.1, 94.6, 0.0, 0.0, 2.1, 69.6, 30.4, 93.3 +1,1,a-pcom-i3,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 1.8, 97.3, 0.0, 0.0, 0.9, 53.8, 46.2, 112.1 +1,1,a-pcom-i3,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 97.3, 2.7, 74.9 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Peabody - Center,02290015, 0.0, 2.3, 1.9, 95.8, 0.0, 0.0, 0.0, 89.0, 10.1, 42.6 +1,1,a-pcom-i3,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 71.1, 28.9, 160.4 +1,1,a-pcom-i3,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 94.1, 5.9, 50.7 +1,1,a-pcom-i3,2023-24,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 92.6, 7.4, 61.2 +1,1,a-pcom-i3,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 68.2, 30.6, 8.5 +1.1874999999999991,1.19,a-pcom-i3,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.5, 2.7, 96.2, 0.0, 0.0, 0.5, 63.7, 36.3, 186.5 +1,1,a-pcom-i3,2023-24,Peabody - South Memorial,02290035, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 91.0, 9.0, 47.8 +1,1,a-pcom-i3,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 65.0 +1,1,a-pcom-i3,2023-24,Peabody - West Memorial,02290045, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 96.4, 3.6, 41.2 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 5.1, 94.9, 0.0, 0.0, 0.0, 87.3, 12.7, 39.5 +3.4062500000000018,3.41,a-pcom-i3,2023-24,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 10.9, 89.1, 0.0, 0.0, 0.0, 88.1, 11.9, 27.6 +1,1,a-pcom-i3,2023-24,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 48.2 +1,1,a-pcom-i3,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 90.6, 9.4, 58.4 +1,1,a-pcom-i3,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 56.2 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, 2.1, 2.1, 95.9, 0.0, 0.0, 0.0, 87.4, 12.6, 48.7 +1,1,a-pcom-i3,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 69.4, 30.6, 83.3 +1,1,a-pcom-i3,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 41.9 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 90.2, 9.8, 51.3 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 1.4, 95.8, 0.0, 0.0, 2.8, 95.8, 4.2, 71.6 +1,1,a-pcom-i3,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 94.9, 5.1, 39.4 +1,1,a-pcom-i3,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 77.3, 22.7, 34.2 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 4.1, 94.4, 0.0, 0.0, 1.5, 62.9, 37.1, 73.0 +1,1,a-pcom-i3,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 24.1 +12.593749999999998,5,a-pcom-i3,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 10.4, 9.2, 17.3, 59.7, 3.5, 0.0, 0.0, 62.0, 38.0, 29.0 +15.562499999999998,5,a-pcom-i3,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 4.6, 4.6, 31.9, 50.2, 4.6, 0.0, 3.9, 68.8, 31.2, 21.5 +21.906249999999996,5,a-pcom-i3,2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 55.2, 7.5, 3.7, 29.9, 0.0, 0.0, 3.7, 67.2, 32.8, 26.8 +5.375000000000001,5,a-pcom-i3,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 5.3, 4.2, 7.7, 82.8, 0.0, 0.0, 0.0, 65.7, 34.3, 94.7 +9.500000000000002,5,a-pcom-i3,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 12.5, 8.6, 7.8, 69.6, 0.0, 1.6, 0.0, 66.5, 33.5, 64.3 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 96.3, 0.0, 2.5, 1.2, 97.5, 2.5, 40.3 +1,1,a-pcom-i3,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 94.8, 5.2, 38.6 +1,1,a-pcom-i3,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.6, 26.4, 49.2 +14.812499999999998,5,a-pcom-i3,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 1.0, 43.0, 3.4, 52.6, 0.0, 0.0, 0.0, 79.6, 20.4, 89.5 +5.531250000000001,5,a-pcom-i3,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 3.9, 2.6, 5.9, 82.3, 1.3, 1.3, 2.6, 57.4, 42.6, 76.3 +2.8125,2.81,a-pcom-i3,2023-24,Pittsfield - Allendale,02360010, 0.0, 3.6, 3.6, 91.0, 0.0, 0.0, 1.8, 94.7, 5.3, 55.4 +3.031250000000001,3.03,a-pcom-i3,2023-24,Pittsfield - Crosby,02360065, 4.9, 0.0, 3.2, 90.3, 0.0, 0.0, 1.6, 88.8, 11.2, 61.8 +3.75,3.75,a-pcom-i3,2023-24,Pittsfield - Crosby Educational Academy,02360030, 6.0, 0.0, 6.0, 88.0, 0.0, 0.0, 0.0, 76.1, 23.9, 16.7 +3.968750000000001,3.97,a-pcom-i3,2023-24,Pittsfield - Eagle Education Academy,02360525, 10.9, 0.0, 1.8, 87.3, 0.0, 0.0, 0.0, 49.2, 50.8, 18.4 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Pittsfield - Egremont,02360035, 1.6, 1.6, 0.0, 95.1, 0.0, 0.0, 1.6, 98.2, 1.8, 61.6 +4.156249999999999,4.16,a-pcom-i3,2023-24,Pittsfield - John T Reid Middle,02360305, 6.5, 0.3, 6.5, 86.7, 0.0, 0.0, 0.0, 57.7, 42.3, 76.8 +3.90625,3.91,a-pcom-i3,2023-24,Pittsfield - Morningside Community School,02360055, 8.1, 0.0, 1.5, 87.5, 0.0, 0.0, 2.9, 88.5, 11.5, 68.0 +2.96875,2.97,a-pcom-i3,2023-24,Pittsfield - Pittsfield High,02360505, 3.3, 1.3, 3.2, 90.5, 0.8, 0.0, 0.8, 69.7, 30.3, 119.8 +1,1,a-pcom-i3,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 34.4 +2.593749999999999,2.59,a-pcom-i3,2023-24,Pittsfield - Silvio O Conte Community,02360105, 2.8, 0.0, 4.2, 91.7, 0.0, 0.0, 1.4, 90.1, 9.9, 72.0 +1,1,a-pcom-i3,2023-24,Pittsfield - Stearns,02360090, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 92.0, 8.0, 58.1 +2.96875,2.97,a-pcom-i3,2023-24,Pittsfield - Taconic High,02360510, 2.7, 1.4, 4.6, 90.5, 0.0, 0.0, 0.8, 56.6, 43.4, 130.0 +2.437499999999999,2.44,a-pcom-i3,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 4.0, 1.3, 2.5, 92.2, 0.0, 0.0, 0.0, 65.5, 34.5, 74.6 +1,1,a-pcom-i3,2023-24,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 93.3, 6.7, 42.4 +1,1,a-pcom-i3,2023-24,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 59.4 +1,1,a-pcom-i3,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 91.6, 8.4, 40.4 +1,1,a-pcom-i3,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 33.5 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Plymouth - Federal Furnace School,02390011, 1.6, 0.0, 2.6, 95.7, 0.0, 0.0, 0.0, 90.3, 9.7, 61.1 +1,1,a-pcom-i3,2023-24,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 35.9 +1,1,a-pcom-i3,2023-24,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.3, 97.9, 0.0, 0.7, 0.0, 94.5, 5.5, 75.0 +1,1,a-pcom-i3,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 35.0 +1,1,a-pcom-i3,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 69.2 +1.25,1.25,a-pcom-i3,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 1.6, 1.6, 0.8, 96.0, 0.0, 0.0, 0.0, 79.3, 20.7, 125.5 +1,1,a-pcom-i3,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 97.6, 2.4, 40.8 +1,1,a-pcom-i3,2023-24,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.5, 33.5, 164.0 +1,1,a-pcom-i3,2023-24,Plymouth - Plymouth South High,02390515, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 67.4, 32.6, 152.7 +1.4374999999999982,1.44,a-pcom-i3,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, 2.3, 2.3, 95.4, 0.0, 0.0, 0.0, 74.2, 25.8, 87.7 +1,1,a-pcom-i3,2023-24,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 82.4 +1,1,a-pcom-i3,2023-24,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 98.1, 0.0, 1.9, 0.0, 94.6, 5.4, 53.8 +1,1,a-pcom-i3,2023-24,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 34.0 +11.812499999999998,5,a-pcom-i3,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 18.3, 2.5, 12.6, 62.2, 0.0, 0.6, 3.8, 76.7, 23.3, 158.8 +1,1,a-pcom-i3,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.8, 23.2, 29.3 +1,1,a-pcom-i3,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 35.1 +1,1,a-pcom-i3,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 99.1, 0.9, 33.1 +1,1,a-pcom-i3,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 15.1 +2.562500000000001,2.56,a-pcom-i3,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 4.6, 91.8, 3.7, 0.0, 0.0, 96.3, 3.7, 21.9 +1.5625,1.56,a-pcom-i3,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.9, 3.1, 95.0, 0.0, 0.0, 0.0, 69.5, 30.5, 81.3 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 1.5, 0.7, 3.7, 94.2, 0.0, 0.0, 0.0, 77.8, 22.2, 68.0 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Quabbin - Ruggles Lane,07530030, 1.5, 0.0, 4.6, 93.8, 0.0, 0.0, 0.0, 89.2, 10.8, 64.7 +1,1,a-pcom-i3,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.0, 1.0, 9.9 +1,1,a-pcom-i3,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.8, 41.2, 55.0 +1,1,a-pcom-i3,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.9, 38.1, 16.1 +1,1,a-pcom-i3,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.1, 16.9, 53.2 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 2.1, 95.9, 0.0, 0.0, 2.1, 94.3, 5.7, 48.5 +6.812499999999999,5,a-pcom-i3,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 4.3, 13.2, 0.0, 78.2, 0.0, 0.0, 4.3, 95.7, 4.3, 46.5 +1.40625,1.41,a-pcom-i3,2023-24,Quincy - Atherton Hough,02430040, 0.0, 4.5, 0.0, 95.5, 0.0, 0.0, 0.0, 94.7, 5.3, 49.4 +5.3125,5,a-pcom-i3,2023-24,Quincy - Atlantic Middle,02430305, 2.1, 10.8, 2.1, 83.0, 0.0, 0.0, 2.1, 80.3, 19.7, 48.3 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 8.6, 0.0, 88.6, 0.0, 2.9, 0.0, 100.0, 0.0, 35.0 +1,1,a-pcom-i3,2023-24,Quincy - Broad Meadows Middle,02430310, 2.2, 0.9, 0.0, 96.9, 0.0, 0.0, 0.0, 70.8, 29.2, 44.9 +1.71875,1.72,a-pcom-i3,2023-24,Quincy - Central Middle,02430315, 0.0, 3.7, 1.8, 94.5, 0.0, 0.0, 0.0, 69.0, 31.0, 54.8 +1.40625,1.41,a-pcom-i3,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 1.5, 3.0, 0.0, 95.5, 0.0, 0.0, 0.0, 89.2, 10.8, 33.2 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 1.7, 1.7, 0.0, 96.6, 0.0, 0.0, 0.0, 98.3, 1.7, 58.3 +5.843750000000001,5,a-pcom-i3,2023-24,Quincy - Francis W Parker,02430075, 0.0, 18.7, 0.0, 81.3, 0.0, 0.0, 0.0, 98.2, 1.8, 45.4 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 4.6, 0.0, 93.8, 0.0, 0.0, 1.5, 96.5, 3.5, 65.0 +2.562500000000001,2.56,a-pcom-i3,2023-24,Quincy - Merrymount,02430060, 0.0, 8.2, 0.0, 91.8, 0.0, 0.0, 0.0, 96.7, 3.3, 38.8 +5.125000000000002,5,a-pcom-i3,2023-24,Quincy - Montclair,02430065, 0.0, 16.4, 0.0, 83.6, 0.0, 0.0, 0.0, 97.3, 2.7, 43.7 +3.812500000000001,3.81,a-pcom-i3,2023-24,Quincy - North Quincy High,02430510, 2.7, 4.9, 1.3, 87.8, 0.0, 0.0, 3.3, 63.9, 36.1, 149.9 +2.1875,2.19,a-pcom-i3,2023-24,Quincy - Point Webster Middle,02430325, 1.0, 6.0, 0.0, 93.0, 0.0, 0.0, 0.0, 87.0, 13.0, 49.9 +4.125000000000001,4.13,a-pcom-i3,2023-24,Quincy - Quincy High,02430505, 3.5, 5.6, 2.9, 86.8, 0.0, 0.0, 1.2, 60.2, 39.8, 170.7 +4.031250000000002,4.03,a-pcom-i3,2023-24,Quincy - Snug Harbor Community School,02430090, 0.6, 9.9, 1.2, 87.1, 0.0, 0.0, 1.2, 94.1, 5.9, 82.9 +2.718750000000001,2.72,a-pcom-i3,2023-24,Quincy - South West Middle School,02430320, 0.0, 3.5, 5.2, 91.3, 0.0, 0.0, 0.0, 80.1, 19.9, 57.8 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Quincy - Squantum,02430095, 0.8, 5.7, 0.0, 93.6, 0.0, 0.0, 0.0, 89.8, 10.2, 52.9 +2.3125000000000018,2.31,a-pcom-i3,2023-24,Quincy - Wollaston School,02430110, 1.5, 3.0, 0.0, 92.6, 0.0, 0.0, 3.0, 94.1, 5.9, 33.7 +1,1,a-pcom-i3,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.3, 1.2, 97.5, 0.0, 0.0, 0.0, 63.1, 36.9, 84.9 +6.625000000000001,5,a-pcom-i3,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 16.5, 3.1, 1.6, 78.8, 0.0, 0.0, 0.0, 82.5, 17.5, 48.6 +9.28125,5,a-pcom-i3,2023-24,Randolph - J F Kennedy Elementary,02440018, 21.0, 2.0, 5.7, 70.3, 0.0, 0.0, 1.0, 91.2, 8.8, 99.9 +6.875,5,a-pcom-i3,2023-24,Randolph - Margaret L Donovan,02440015, 14.7, 3.7, 3.7, 78.0, 0.0, 0.0, 0.0, 93.6, 6.4, 54.6 +9.0625,5,a-pcom-i3,2023-24,Randolph - Martin E Young Elementary,02440040, 19.1, 3.1, 2.6, 71.0, 0.0, 0.0, 4.2, 93.2, 6.8, 48.0 +10.0,5,a-pcom-i3,2023-24,Randolph - Randolph Community Middle,02440410, 27.3, 1.2, 0.0, 68.0, 1.2, 1.2, 1.2, 67.8, 32.2, 86.1 +7.781250000000002,5,a-pcom-i3,2023-24,Randolph - Randolph High,02440505, 17.1, 3.3, 3.3, 75.1, 0.0, 0.0, 1.1, 68.5, 31.5, 90.5 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Reading - Alice M Barrows,02460002, 2.0, 0.0, 2.3, 95.7, 0.0, 0.0, 0.0, 98.0, 2.0, 50.1 +1,1,a-pcom-i3,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.4, 1.4, 97.2, 0.0, 0.0, 0.0, 84.5, 15.5, 58.0 +1,1,a-pcom-i3,2023-24,Reading - Birch Meadow,02460005, 0.8, 0.0, 0.4, 98.9, 0.0, 0.0, 0.0, 90.7, 9.3, 64.5 +1,1,a-pcom-i3,2023-24,Reading - J Warren Killam,02460017, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 94.2, 5.8, 51.1 +2.3125000000000018,2.31,a-pcom-i3,2023-24,Reading - Joshua Eaton,02460010, 1.9, 3.3, 0.3, 92.6, 0.0, 0.0, 1.9, 93.5, 6.5, 51.4 +1,1,a-pcom-i3,2023-24,Reading - RISE PreSchool,02460001, 0.0, 2.1, 0.8, 97.0, 0.0, 0.0, 0.0, 98.5, 1.5, 27.1 +1,1,a-pcom-i3,2023-24,Reading - Reading Memorial High,02460505, 2.3, 0.8, 0.1, 96.9, 0.0, 0.0, 0.0, 66.6, 33.4, 131.7 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Reading - Walter S Parker Middle,02460310, 0.0, 1.6, 2.1, 96.3, 0.0, 0.0, 0.0, 80.0, 20.0, 61.4 +1,1,a-pcom-i3,2023-24,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 95.7, 4.3, 45.4 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Revere - A. C. Whelan Elementary School,02480003, 2.2, 0.7, 7.8, 88.6, 0.0, 0.0, 0.7, 88.6, 11.4, 90.1 +3.687499999999999,3.69,a-pcom-i3,2023-24,Revere - Abraham Lincoln,02480025, 1.3, 2.0, 8.3, 88.2, 0.0, 0.0, 0.2, 95.4, 4.6, 76.8 +4.343750000000002,4.34,a-pcom-i3,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 1.7, 2.0, 9.9, 86.1, 0.0, 0.0, 0.3, 90.0, 10.0, 60.4 +7.000000000000002,5,a-pcom-i3,2023-24,Revere - CityLab Innovation High School,02480520, 4.1, 4.1, 13.3, 77.6, 0.0, 0.0, 0.8, 65.3, 34.7, 24.1 +5.9375,5,a-pcom-i3,2023-24,Revere - Garfield Elementary School,02480056, 3.5, 6.3, 8.6, 81.0, 0.5, 0.0, 0.2, 94.9, 5.1, 100.4 +7.65625,5,a-pcom-i3,2023-24,Revere - Garfield Middle School,02480057, 2.3, 6.2, 14.5, 75.5, 0.0, 0.0, 1.5, 61.8, 38.2, 65.0 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Revere - Paul Revere,02480050, 0.8, 1.5, 3.1, 94.4, 0.0, 0.0, 0.3, 90.8, 9.2, 65.4 +7.124999999999999,5,a-pcom-i3,2023-24,Revere - Revere High,02480505, 4.3, 3.4, 13.1, 77.2, 0.4, 0.0, 1.6, 60.2, 39.8, 237.7 +3.3124999999999982,3.31,a-pcom-i3,2023-24,Revere - Rumney Marsh Academy,02480014, 2.8, 3.1, 4.8, 89.4, 0.0, 0.0, 0.0, 67.8, 32.2, 79.7 +1.40625,1.41,a-pcom-i3,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.6, 1.8, 95.5, 0.0, 0.0, 2.1, 93.8, 6.2, 81.3 +2.593749999999999,2.59,a-pcom-i3,2023-24,Revere - Susan B. Anthony Middle School,02480305, 3.3, 2.5, 1.3, 91.7, 0.0, 0.0, 1.3, 68.3, 31.7, 76.7 +1,1,a-pcom-i3,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 85.8, 14.2, 36.2 +3.062499999999999,3.06,a-pcom-i3,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.5, 2.3, 4.9, 90.2, 0.0, 0.0, 0.0, 69.8, 30.2, 78.8 +1.25,1.25,a-pcom-i3,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 4.0, 79.4, 20.6, 50.5 +1,1,a-pcom-i3,2023-24,Rochester - Rochester Memorial,02500005, 1.5, 1.5, 0.0, 96.9, 0.0, 0.0, 0.0, 92.3, 7.7, 65.3 +1.09375,1.09,a-pcom-i3,2023-24,Rockland - John W Rogers Middle,02510305, 2.3, 0.0, 1.2, 96.5, 0.0, 0.0, 0.0, 83.3, 16.7, 86.7 +1,1,a-pcom-i3,2023-24,Rockland - Phelps Elementary School,02510060, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 93.9, 6.1, 98.1 +1.09375,1.09,a-pcom-i3,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 96.5, 3.5, 56.4 +2.437499999999999,2.44,a-pcom-i3,2023-24,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 6.5, 92.2, 0.0, 0.0, 1.3, 58.1, 41.9, 79.0 +1,1,a-pcom-i3,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 57.5 +1,1,a-pcom-i3,2023-24,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.7, 31.3, 38.8 +1,1,a-pcom-i3,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.8, 33.2, 31.5 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 80.4, 19.6, 17.9 +17.375,5,a-pcom-i3,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 31.0, 1.9, 17.9, 44.4, 0.0, 0.0, 4.8, 56.7, 42.4, 121.2 +5.437500000000002,5,a-pcom-i3,2023-24,Salem - Bates,02580003, 3.4, 1.7, 12.3, 82.6, 0.0, 0.0, 0.0, 85.3, 14.7, 65.1 +12.40625,5,a-pcom-i3,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.2, 0.1, 39.4, 60.3, 0.0, 0.0, 0.0, 89.3, 10.7, 57.2 +3.2500000000000018,3.25,a-pcom-i3,2023-24,Salem - Carlton,02580015, 5.9, 0.1, 4.3, 89.6, 0.0, 0.0, 0.0, 90.9, 9.1, 46.6 +8.312499999999998,5,a-pcom-i3,2023-24,Salem - Collins Middle,02580305, 2.8, 3.4, 19.4, 73.4, 0.0, 0.0, 0.9, 65.5, 33.6, 110.0 +5.031249999999998,5,a-pcom-i3,2023-24,Salem - Horace Mann Laboratory,02580030, 2.4, 2.2, 9.5, 83.9, 0.0, 0.0, 2.0, 93.4, 6.6, 50.5 +11.75,5,a-pcom-i3,2023-24,Salem - New Liberty Innovation School,02580510, 16.5, 0.0, 21.1, 62.4, 0.0, 0.0, 0.0, 76.6, 23.4, 12.1 +3.28125,3.28,a-pcom-i3,2023-24,Salem - Salem Early Childhood,02580001, 2.6, 0.0, 7.9, 89.5, 0.0, 0.0, 0.0, 94.7, 5.3, 38.1 +6.749999999999998,5,a-pcom-i3,2023-24,Salem - Salem High,02580505, 4.6, 2.3, 14.7, 78.4, 0.0, 0.0, 0.0, 69.7, 29.7, 174.2 +6.156250000000001,5,a-pcom-i3,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 19.7, 80.3, 0.0, 0.0, 0.0, 69.5, 30.5, 10.2 +3.843749999999999,3.84,a-pcom-i3,2023-24,Salem - Saltonstall School,02580050, 2.5, 0.3, 9.5, 87.7, 0.0, 0.0, 0.0, 86.3, 13.7, 62.8 +3.999999999999999,4.0,a-pcom-i3,2023-24,Salem - Witchcraft Heights,02580070, 1.7, 2.6, 7.3, 87.2, 0.0, 0.0, 1.2, 91.8, 7.0, 82.2 +8.156249999999998,5,a-pcom-i3,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 1.4, 1.1, 22.2, 73.9, 0.0, 0.0, 1.4, 67.8, 32.2, 73.0 +1,1,a-pcom-i3,2023-24,Sandwich - Forestdale School,02610002, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 94.2, 5.8, 102.8 +1,1,a-pcom-i3,2023-24,Sandwich - Oak Ridge,02610025, 0.0, 0.9, 0.9, 98.1, 0.0, 0.0, 0.0, 94.3, 5.7, 105.4 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 2.7, 96.6, 0.0, 0.0, 0.7, 67.9, 32.1, 145.9 +1,1,a-pcom-i3,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 89.9, 10.1, 79.0 +1.25,1.25,a-pcom-i3,2023-24,Saugus - Saugus High,02620505, 1.3, 0.0, 2.7, 96.0, 0.0, 0.0, 0.0, 54.8, 45.2, 75.1 +1,1,a-pcom-i3,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.4, 28.6, 68.6 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 96.7, 0.0, 1.7, 1.7, 96.7, 3.3, 59.7 +1,1,a-pcom-i3,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.8 +1,1,a-pcom-i3,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.0, 15.0, 44.7 +1,1,a-pcom-i3,2023-24,Scituate - Gates Middle School,02640305, 1.2, 1.2, 0.0, 97.6, 0.0, 0.0, 0.0, 79.6, 20.4, 84.0 +1,1,a-pcom-i3,2023-24,Scituate - Hatherly Elementary,02640010, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 92.9, 7.1, 46.8 +1,1,a-pcom-i3,2023-24,Scituate - Jenkins Elementary School,02640015, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 94.4, 5.6, 54.1 +1,1,a-pcom-i3,2023-24,Scituate - Scituate High School,02640505, 2.0, 1.0, 0.0, 97.0, 0.0, 0.0, 0.0, 68.1, 31.9, 100.9 +1,1,a-pcom-i3,2023-24,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 62.7 +1,1,a-pcom-i3,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.4, 1.4, 0.0, 97.1, 0.0, 0.0, 0.0, 78.4, 21.6, 69.5 +1.4687500000000009,1.47,a-pcom-i3,2023-24,Seekonk - George R Martin,02650007, 1.6, 3.1, 0.0, 95.3, 0.0, 0.0, 0.0, 90.6, 9.4, 64.0 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 1.3, 2.6, 94.9, 0.0, 0.0, 1.3, 93.6, 6.4, 78.3 +1,1,a-pcom-i3,2023-24,Seekonk - Seekonk High,02650505, 1.9, 0.0, 0.0, 96.9, 0.0, 0.0, 1.3, 68.6, 31.4, 79.6 +4.406249999999998,4.41,a-pcom-i3,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 14.1, 0.0, 0.0, 85.9, 0.0, 0.0, 0.0, 98.6, 1.4, 3.6 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Sharon - Cottage Street,02660005, 0.0, 4.8, 1.6, 93.6, 0.0, 0.0, 0.0, 92.2, 7.8, 62.5 +1.0312499999999991,1.03,a-pcom-i3,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 1.7, 96.7, 0.0, 0.0, 1.7, 92.5, 7.5, 59.9 +3.7812499999999982,3.78,a-pcom-i3,2023-24,Sharon - Heights Elementary,02660015, 6.0, 6.0, 0.0, 87.9, 0.0, 0.0, 0.0, 89.0, 11.0, 82.7 +2.8125,2.81,a-pcom-i3,2023-24,Sharon - Sharon Early Childhood Center,02660001, 4.5, 0.0, 0.0, 91.0, 4.5, 0.0, 0.0, 97.7, 2.3, 22.1 +2.437499999999999,2.44,a-pcom-i3,2023-24,Sharon - Sharon High,02660505, 1.3, 5.9, 0.7, 92.2, 0.0, 0.0, 0.0, 75.1, 24.9, 153.3 +2.03125,2.03,a-pcom-i3,2023-24,Sharon - Sharon Middle,02660305, 0.0, 4.7, 0.0, 93.5, 0.9, 0.9, 0.0, 83.0, 17.0, 106.9 +1,1,a-pcom-i3,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.5, 1.0, 97.5, 0.0, 0.0, 0.0, 58.4, 41.6, 203.4 +2.9999999999999982,3.0,a-pcom-i3,2023-24,Sherborn - Pine Hill,02690010, 4.1, 1.4, 1.4, 90.4, 0.0, 0.0, 2.8, 94.7, 5.3, 72.6 +3.4687499999999982,3.47,a-pcom-i3,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 4.8, 1.6, 0.0, 88.9, 0.0, 3.2, 1.6, 96.8, 3.2, 63.1 +4.6875,4.69,a-pcom-i3,2023-24,Shrewsbury - Floral Street School,02710020, 1.0, 4.8, 3.1, 85.0, 1.0, 5.1, 0.0, 96.0, 4.0, 97.5 +5.499999999999998,5,a-pcom-i3,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 2.8, 7.9, 5.1, 82.4, 0.0, 1.8, 0.0, 98.2, 1.8, 108.3 +4.500000000000002,4.5,a-pcom-i3,2023-24,Shrewsbury - Oak Middle School,02710030, 1.7, 8.5, 2.5, 85.6, 0.0, 1.7, 0.0, 76.0, 24.0, 119.3 +8.062499999999998,5,a-pcom-i3,2023-24,Shrewsbury - Parker Road Preschool,02710040, 4.3, 10.8, 6.5, 74.2, 0.0, 4.3, 0.0, 100.0, 0.0, 46.5 +5.249999999999999,5,a-pcom-i3,2023-24,Shrewsbury - Sherwood Middle School,02710305, 1.5, 9.9, 3.8, 83.2, 0.0, 0.8, 0.8, 87.7, 12.3, 130.4 +3.4687499999999982,3.47,a-pcom-i3,2023-24,Shrewsbury - Shrewsbury High School,02710505, 2.8, 4.2, 2.3, 88.9, 0.0, 1.4, 0.5, 72.5, 27.5, 216.6 +1,1,a-pcom-i3,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 52.9 +4.031250000000002,4.03,a-pcom-i3,2023-24,Shrewsbury - Walter J. Paton School,02710025, 1.8, 3.3, 5.2, 87.1, 0.0, 0.7, 1.8, 92.3, 7.7, 54.3 +2.593749999999999,2.59,a-pcom-i3,2023-24,Shutesbury - Shutesbury Elementary,02720005, 2.8, 2.8, 2.8, 91.7, 0.0, 0.0, 0.0, 88.9, 11.1, 36.0 +1,1,a-pcom-i3,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.8, 0.0, 0.0, 99.2, 0.0, 0.0, 0.0, 67.8, 32.2, 129.0 +1,1,a-pcom-i3,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.3, 31.7, 70.9 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 5.2, 0.0, 5.0, 89.9, 0.0, 0.0, 0.0, 68.3, 31.7, 57.9 +1,1,a-pcom-i3,2023-24,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 48.3 +1,1,a-pcom-i3,2023-24,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 77.1 +1,1,a-pcom-i3,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 74.9, 25.1, 71.7 +2.562500000000001,2.56,a-pcom-i3,2023-24,Somerset - South,02730015, 2.1, 2.1, 2.1, 91.8, 0.0, 0.0, 2.1, 92.8, 7.2, 48.5 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.8, 3.3, 95.8, 0.0, 0.0, 0.0, 66.8, 33.2, 120.1 +5.593750000000002,5,a-pcom-i3,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.1, 1.8, 11.0, 82.1, 0.0, 0.0, 0.0, 86.3, 13.7, 64.6 +7.531249999999998,5,a-pcom-i3,2023-24,Somerville - Arthur D Healey,02740075, 12.6, 1.9, 9.6, 75.9, 0.0, 0.0, 0.0, 80.3, 19.7, 73.0 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Somerville - Benjamin G Brown,02740015, 2.4, 0.0, 4.8, 92.9, 0.0, 0.0, 0.0, 81.0, 19.0, 21.0 +3.531249999999999,3.53,a-pcom-i3,2023-24,Somerville - Capuano Early Childhood Center,02740005, 1.4, 1.4, 8.4, 88.7, 0.0, 0.0, 0.0, 92.8, 7.2, 69.1 +11.062500000000002,5,a-pcom-i3,2023-24,Somerville - E Somerville Community,02740111, 4.2, 2.2, 27.7, 64.6, 0.0, 0.0, 1.4, 86.8, 13.2, 72.3 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 76.2, 23.8, 15.6 +3.999999999999999,4.0,a-pcom-i3,2023-24,Somerville - John F Kennedy,02740083, 1.6, 1.6, 8.0, 87.2, 0.0, 0.0, 1.6, 84.0, 16.0, 62.6 +6.687500000000002,5,a-pcom-i3,2023-24,Somerville - Next Wave Junior High,02740410, 11.7, 0.0, 9.7, 78.6, 0.0, 0.0, 0.0, 64.6, 35.4, 8.6 +6.031249999999999,5,a-pcom-i3,2023-24,Somerville - Somerville High,02740505, 5.0, 3.2, 10.1, 80.7, 0.0, 0.0, 1.0, 62.5, 37.0, 200.5 +6.124999999999998,5,a-pcom-i3,2023-24,Somerville - West Somerville Neighborhood,02740115, 5.9, 1.9, 11.8, 80.4, 0.0, 0.0, 0.0, 84.2, 15.8, 42.3 +6.343749999999999,5,a-pcom-i3,2023-24,Somerville - Winter Hill Community,02740120, 3.6, 3.6, 13.1, 79.7, 0.0, 0.0, 0.0, 86.4, 13.6, 83.9 +1,1,a-pcom-i3,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 1.3, 97.3, 0.0, 0.0, 1.3, 79.9, 20.1, 74.8 +1.5625,1.56,a-pcom-i3,2023-24,South Hadley - Mosier,02780020, 0.0, 3.4, 1.7, 95.0, 0.0, 0.0, 0.0, 95.0, 5.0, 59.5 +1.9062499999999982,1.91,a-pcom-i3,2023-24,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 92.4, 7.6, 66.0 +1.3125000000000009,1.31,a-pcom-i3,2023-24,South Hadley - South Hadley High,02780505, 0.0, 1.3, 2.9, 95.8, 0.0, 0.0, 0.0, 67.7, 32.3, 79.7 +5.125000000000002,5,a-pcom-i3,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.4, 0.7, 14.3, 83.6, 0.0, 0.0, 0.0, 56.7, 43.3, 145.3 +3.3124999999999982,3.31,a-pcom-i3,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 7.2, 2.1, 0.8, 89.4, 0.0, 0.0, 0.4, 73.7, 26.3, 113.0 +1,1,a-pcom-i3,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 2.0, 97.0, 0.0, 0.0, 1.0, 48.6, 51.4, 100.0 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Southampton - William E Norris,02750005, 0.0, 0.0, 1.4, 95.7, 0.0, 0.0, 2.9, 90.1, 9.9, 69.7 +1,1,a-pcom-i3,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 94.3, 5.7, 35.3 +1,1,a-pcom-i3,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 92.7, 7.3, 42.1 +4.031250000000002,4.03,a-pcom-i3,2023-24,Southborough - Mary E Finn School,02760008, 0.0, 8.0, 5.0, 87.1, 0.0, 0.0, 0.0, 93.8, 6.2, 80.4 +2.1562500000000018,2.16,a-pcom-i3,2023-24,Southborough - P Brent Trottier,02760305, 1.4, 0.0, 4.2, 93.1, 1.4, 0.0, 0.0, 78.6, 21.4, 72.2 +9.656250000000002,5,a-pcom-i3,2023-24,Southbridge - Charlton Street,02770005, 5.9, 1.5, 23.5, 69.1, 0.0, 0.0, 0.0, 89.7, 10.3, 68.0 +8.468749999999998,5,a-pcom-i3,2023-24,Southbridge - Eastford Road,02770010, 7.5, 0.0, 18.0, 72.9, 0.0, 0.0, 1.5, 92.5, 7.5, 66.5 +12.781249999999998,5,a-pcom-i3,2023-24,Southbridge - Southbridge Academy,02770525, 18.2, 0.0, 22.7, 59.1, 0.0, 0.0, 0.0, 61.4, 38.6, 22.0 +7.124999999999999,5,a-pcom-i3,2023-24,Southbridge - Southbridge High School,02770515, 2.7, 0.0, 18.8, 77.2, 0.0, 1.3, 0.0, 66.7, 33.3, 75.1 +10.343749999999998,5,a-pcom-i3,2023-24,Southbridge - Southbridge Middle School,02770315, 4.0, 2.6, 26.5, 66.9, 0.0, 0.0, 0.0, 75.5, 24.5, 75.5 +6.937500000000001,5,a-pcom-i3,2023-24,Southbridge - West Street,02770020, 4.4, 0.0, 17.8, 77.8, 0.0, 0.0, 0.0, 88.1, 11.9, 67.5 +5.843750000000001,5,a-pcom-i3,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 9.7, 2.8, 4.7, 81.3, 0.9, 0.0, 0.5, 62.6, 37.4, 211.0 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 1.6, 3.1, 0.9, 92.9, 0.0, 0.0, 1.6, 62.7, 37.3, 64.1 +1,1,a-pcom-i3,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 89.9, 10.1, 15.9 +1,1,a-pcom-i3,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 2.1 +1,1,a-pcom-i3,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 93.6, 6.4, 53.3 +4.84375,4.84,a-pcom-i3,2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 14.9, 0.0, 0.0, 84.5, 0.0, 0.6, 0.0, 56.8, 43.2, 163.9 +1,1,a-pcom-i3,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 88.9, 11.1, 59.3 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 3.3, 95.6, 0.0, 0.0, 1.1, 63.9, 36.1, 91.3 +1,1,a-pcom-i3,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 95.2, 4.8, 62.6 +1,1,a-pcom-i3,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.3, 38.7, 46.9 +1.3437499999999991,1.34,a-pcom-i3,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.1, 0.0, 2.1, 95.7, 0.0, 0.0, 0.0, 90.9, 9.1, 46.9 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 3.7, 94.4, 1.9, 0.0, 0.0, 78.9, 21.1, 53.8 +1,1,a-pcom-i3,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 90.0, 10.0, 67.4 +8.093750000000002,5,a-pcom-i3,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 9.2, 0.0, 16.6, 74.1, 0.0, 0.0, 0.0, 85.2, 14.8, 54.1 +5.218750000000001,5,a-pcom-i3,2023-24,Springfield - Alice B Beal Elementary,02810175, 7.2, 2.4, 7.2, 83.3, 0.0, 0.0, 0.0, 90.5, 9.5, 42.0 +7.8125,5,a-pcom-i3,2023-24,Springfield - Arthur T Talmadge,02810165, 2.5, 2.5, 17.5, 75.0, 0.0, 0.0, 2.5, 90.0, 10.0, 40.0 +13.0,5,a-pcom-i3,2023-24,Springfield - Balliet Preschool,02810003, 19.4, 0.0, 22.2, 58.4, 0.0, 0.0, 0.0, 91.7, 8.3, 36.1 +11.812499999999998,5,a-pcom-i3,2023-24,Springfield - Benjamin Swan Elementary,02810085, 20.3, 0.0, 16.2, 62.2, 0.0, 0.0, 1.4, 82.4, 17.6, 74.0 +14.0625,5,a-pcom-i3,2023-24,Springfield - Brightwood,02810025, 3.4, 0.0, 36.4, 55.0, 0.0, 0.0, 5.2, 88.0, 12.0, 58.2 +21.6875,5,a-pcom-i3,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 28.8, 0.0, 35.5, 30.6, 0.0, 0.0, 5.1, 68.5, 31.5, 59.3 +14.75,5,a-pcom-i3,2023-24,Springfield - Conservatory of the Arts,02810475, 19.0, 0.0, 26.3, 52.8, 0.0, 0.0, 1.9, 81.1, 18.9, 53.2 +6.625000000000001,5,a-pcom-i3,2023-24,Springfield - Daniel B Brunton,02810035, 14.1, 0.0, 5.3, 78.8, 0.0, 0.0, 1.8, 89.5, 10.5, 57.1 +19.6875,5,a-pcom-i3,2023-24,Springfield - Early Childhood Education Center,02810001, 38.9, 0.0, 24.1, 37.0, 0.0, 0.0, 0.0, 85.2, 14.8, 54.0 +14.656249999999998,5,a-pcom-i3,2023-24,Springfield - Edward P. Boland School,02810010, 14.7, 0.9, 29.4, 53.1, 0.9, 0.0, 0.9, 88.1, 11.9, 109.3 +14.812499999999998,5,a-pcom-i3,2023-24,Springfield - Elias Brookings,02810030, 28.2, 3.5, 15.8, 52.6, 0.0, 0.0, 0.0, 89.4, 10.6, 57.1 +20.78125,5,a-pcom-i3,2023-24,Springfield - Emergence Academy,02810318, 15.2, 9.1, 42.2, 33.5, 0.0, 0.0, 0.0, 63.3, 36.7, 33.0 +10.406249999999998,5,a-pcom-i3,2023-24,Springfield - Forest Park Middle,02810325, 17.6, 2.0, 13.7, 66.7, 0.0, 0.0, 0.0, 78.4, 21.6, 51.0 +20.84375,5,a-pcom-i3,2023-24,Springfield - Frank H Freedman,02810075, 45.2, 2.4, 19.0, 33.3, 0.0, 0.0, 0.0, 88.1, 11.9, 42.0 +8.062499999999998,5,a-pcom-i3,2023-24,Springfield - Frederick Harris,02810080, 6.5, 1.1, 18.3, 74.2, 0.0, 0.0, 0.0, 93.5, 6.5, 93.0 +31.25,5,a-pcom-i3,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.3 +31.25,5,a-pcom-i3,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.3 +12.281249999999998,5,a-pcom-i3,2023-24,Springfield - German Gerena Community School,02810195, 2.8, 0.0, 36.5, 60.7, 0.0, 0.0, 0.0, 87.9, 12.1, 107.3 +7.96875,5,a-pcom-i3,2023-24,Springfield - Glenwood,02810065, 8.5, 0.0, 17.0, 74.5, 0.0, 0.0, 0.0, 100.0, 0.0, 47.0 +10.15625,5,a-pcom-i3,2023-24,Springfield - Glickman Elementary,02810068, 10.2, 0.0, 22.3, 67.5, 0.0, 0.0, 0.0, 91.5, 8.5, 58.7 +19.781249999999996,5,a-pcom-i3,2023-24,Springfield - High School Of Commerce,02810510, 36.6, 2.8, 22.8, 36.7, 0.0, 0.0, 1.1, 56.1, 43.4, 181.2 +13.125,5,a-pcom-i3,2023-24,Springfield - Hiram L Dorman,02810050, 23.2, 0.0, 16.5, 58.0, 0.0, 0.0, 2.3, 81.4, 18.6, 43.1 +22.9375,5,a-pcom-i3,2023-24,Springfield - Impact Prep at Chestnut,02810366, 36.7, 0.0, 33.9, 26.6, 0.0, 0.0, 2.8, 76.0, 24.0, 35.4 +8.156249999999998,5,a-pcom-i3,2023-24,Springfield - Indian Orchard Elementary,02810100, 10.2, 1.1, 14.8, 73.9, 0.0, 0.0, 0.0, 90.9, 9.1, 88.1 +16.46875,5,a-pcom-i3,2023-24,Springfield - John F Kennedy Middle,02810328, 34.6, 0.0, 14.8, 47.3, 0.0, 0.0, 3.3, 59.1, 40.9, 61.3 +13.718749999999998,5,a-pcom-i3,2023-24,Springfield - John J Duggan Academy,02810320, 25.4, 0.9, 15.9, 56.1, 0.0, 0.0, 1.8, 65.8, 33.3, 114.5 +9.187500000000002,5,a-pcom-i3,2023-24,Springfield - Kensington International School,02810110, 7.8, 2.0, 19.6, 70.6, 0.0, 0.0, 0.0, 92.2, 7.8, 51.1 +19.75,5,a-pcom-i3,2023-24,Springfield - Kiley Academy,02810316, 42.8, 0.0, 15.3, 36.8, 1.7, 0.0, 3.4, 68.2, 31.8, 58.9 +14.25,5,a-pcom-i3,2023-24,Springfield - Kiley Prep,02810315, 38.0, 0.0, 7.6, 54.4, 0.0, 0.0, 0.0, 68.8, 31.2, 39.7 +12.65625,5,a-pcom-i3,2023-24,Springfield - Liberty,02810115, 25.3, 0.0, 12.7, 59.5, 0.0, 0.0, 2.5, 94.9, 5.1, 39.5 +5.437500000000002,5,a-pcom-i3,2023-24,Springfield - Liberty Preparatory Academy,02810560, 1.9, 0.0, 15.5, 82.6, 0.0, 0.0, 0.0, 67.3, 32.7, 6.5 +13.843749999999998,5,a-pcom-i3,2023-24,Springfield - Lincoln,02810120, 14.3, 0.0, 30.0, 55.7, 0.0, 0.0, 0.0, 85.7, 14.3, 70.1 +19.156249999999996,5,a-pcom-i3,2023-24,Springfield - Margaret C Ells,02810060, 30.8, 0.0, 30.5, 38.7, 0.0, 0.0, 0.0, 93.9, 6.1, 49.1 +7.093750000000001,5,a-pcom-i3,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 4.5, 0.0, 18.1, 77.3, 0.0, 0.0, 0.0, 93.1, 6.9, 44.1 +15.46875,5,a-pcom-i3,2023-24,Springfield - Mary M Lynch,02810140, 20.7, 2.6, 23.4, 50.5, 0.0, 0.0, 2.7, 84.5, 15.5, 38.6 +9.84375,5,a-pcom-i3,2023-24,Springfield - Mary M Walsh,02810155, 9.3, 1.9, 18.5, 68.5, 0.0, 0.0, 1.9, 94.4, 5.6, 54.0 +11.218750000000002,5,a-pcom-i3,2023-24,Springfield - Mary O Pottenger,02810145, 12.5, 0.0, 23.4, 64.1, 0.0, 0.0, 0.0, 89.1, 10.9, 64.0 +11.09375,5,a-pcom-i3,2023-24,Springfield - Milton Bradley School,02810023, 7.8, 0.0, 27.7, 64.5, 0.0, 0.0, 0.0, 96.9, 3.1, 65.2 +18.5,5,a-pcom-i3,2023-24,Springfield - Rebecca M Johnson,02810055, 31.9, 0.0, 27.3, 40.8, 0.0, 0.0, 0.0, 84.5, 15.5, 109.9 +18.71875,5,a-pcom-i3,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 36.7, 0.0, 21.2, 40.1, 0.0, 0.0, 1.9, 66.1, 33.9, 51.9 +11.46875,5,a-pcom-i3,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 13.7, 3.1, 18.9, 63.3, 0.0, 0.0, 1.0, 56.6, 43.4, 190.8 +14.812499999999998,5,a-pcom-i3,2023-24,Springfield - STEM Middle Academy,02810350, 10.5, 0.0, 36.9, 52.6, 0.0, 0.0, 0.0, 71.1, 28.9, 38.1 +10.812499999999998,5,a-pcom-i3,2023-24,Springfield - Samuel Bowles,02810020, 9.6, 1.9, 23.1, 65.4, 0.0, 0.0, 0.0, 80.8, 19.2, 52.1 +17.71875,5,a-pcom-i3,2023-24,Springfield - South End Middle School,02810355, 20.0, 3.3, 30.0, 43.3, 0.0, 0.0, 3.3, 80.0, 20.0, 30.0 +8.5,5,a-pcom-i3,2023-24,Springfield - Springfield Central High,02810500, 13.2, 2.4, 10.4, 72.8, 0.0, 0.0, 1.2, 54.4, 45.6, 250.2 +14.25,5,a-pcom-i3,2023-24,Springfield - Springfield High School,02810570, 31.5, 0.0, 14.1, 54.4, 0.0, 0.0, 0.0, 63.4, 36.6, 35.4 +11.499999999999998,5,a-pcom-i3,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 14.9, 0.6, 20.2, 63.2, 0.0, 0.0, 1.1, 60.9, 39.1, 165.1 +7.062499999999998,5,a-pcom-i3,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 22.6, 0.0, 0.0, 77.4, 0.0, 0.0, 0.0, 82.4, 17.6, 2.8 +10.0,5,a-pcom-i3,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 4.7, 0.0, 25.2, 68.0, 0.0, 0.0, 2.1, 66.6, 33.4, 6.9 +19.84375,5,a-pcom-i3,2023-24,Springfield - Springfield Legacy Academy,02810317, 20.6, 1.6, 41.3, 36.5, 0.0, 0.0, 0.0, 61.9, 38.1, 63.1 +15.406249999999998,5,a-pcom-i3,2023-24,Springfield - Springfield Middle School,02810360, 27.0, 0.0, 22.3, 50.7, 0.0, 0.0, 0.0, 52.1, 47.9, 9.0 +12.5625,5,a-pcom-i3,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 10.4, 0.0, 26.6, 59.8, 0.0, 0.0, 3.3, 93.4, 6.6, 30.1 +23.687499999999996,5,a-pcom-i3,2023-24,Springfield - Springfield Public Day High School,02810550, 43.9, 0.0, 31.9, 24.2, 0.0, 0.0, 0.0, 56.3, 43.7, 25.4 +8.687499999999998,5,a-pcom-i3,2023-24,Springfield - Springfield Public Day Middle School,02810345, 15.8, 0.0, 12.1, 72.2, 0.0, 0.0, 0.0, 73.1, 26.9, 24.9 +22.593749999999996,5,a-pcom-i3,2023-24,Springfield - Springfield Realization Academy,02810335, 27.5, 0.0, 44.8, 27.7, 0.0, 0.0, 0.0, 65.5, 34.5, 29.1 +14.375,5,a-pcom-i3,2023-24,Springfield - Springfield Transition Academy,02810675, 28.0, 0.0, 18.0, 54.0, 0.0, 0.0, 0.0, 66.0, 34.0, 16.7 +9.718749999999998,5,a-pcom-i3,2023-24,Springfield - Sumner Avenue,02810160, 12.2, 2.2, 16.7, 68.9, 0.0, 0.0, 0.0, 88.9, 11.1, 90.1 +13.0,5,a-pcom-i3,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 21.8, 0.0, 17.6, 58.4, 0.0, 1.1, 1.1, 73.8, 26.2, 91.0 +7.937500000000002,5,a-pcom-i3,2023-24,Springfield - The Springfield Virtual School,02810705, 17.0, 1.7, 3.4, 74.6, 0.0, 0.0, 3.4, 83.0, 17.0, 59.2 +18.125,5,a-pcom-i3,2023-24,Springfield - Thomas M Balliet,02810015, 31.5, 0.0, 26.4, 42.0, 0.0, 0.0, 0.0, 86.9, 13.1, 38.1 +10.6875,5,a-pcom-i3,2023-24,Springfield - Van Sickle Academy,02810485, 7.3, 0.0, 26.9, 65.8, 0.0, 0.0, 0.0, 65.9, 34.1, 41.1 +11.875,5,a-pcom-i3,2023-24,Springfield - Warner,02810180, 20.3, 2.5, 15.2, 62.0, 0.0, 0.0, 0.0, 94.9, 5.1, 39.5 +9.0625,5,a-pcom-i3,2023-24,Springfield - Washington,02810185, 11.6, 0.0, 17.4, 71.0, 0.0, 0.0, 0.0, 91.3, 8.7, 69.0 +8.093750000000002,5,a-pcom-i3,2023-24,Springfield - White Street,02810190, 11.1, 1.9, 13.0, 74.1, 0.0, 0.0, 0.0, 98.1, 1.9, 54.0 +15.15625,5,a-pcom-i3,2023-24,Springfield - William N. DeBerry,02810045, 30.7, 0.0, 17.8, 51.5, 0.0, 0.0, 0.0, 91.9, 8.1, 62.1 +11.09375,5,a-pcom-i3,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 18.0, 1.9, 14.6, 64.5, 0.0, 0.0, 1.0, 67.2, 32.8, 196.5 +15.6875,5,a-pcom-i3,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 17.6, 2.6, 30.0, 49.8, 0.0, 0.0, 0.0, 86.2, 13.8, 77.0 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Stoneham - Colonial Park,02840005, 0.0, 3.5, 0.0, 94.9, 0.0, 0.0, 1.6, 97.7, 2.3, 62.7 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Stoneham - Robin Hood,02840025, 0.0, 1.7, 0.0, 95.9, 0.0, 0.0, 2.4, 87.1, 12.9, 59.0 +1,1,a-pcom-i3,2023-24,Stoneham - South,02840030, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 86.1, 13.9, 58.4 +1.8124999999999991,1.81,a-pcom-i3,2023-24,Stoneham - Stoneham Central Middle School,02840405, 1.0, 1.0, 1.0, 94.2, 0.0, 0.0, 2.9, 68.7, 31.3, 104.3 +1,1,a-pcom-i3,2023-24,Stoneham - Stoneham High,02840505, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 68.3, 31.7, 93.8 +3.90625,3.91,a-pcom-i3,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 3.3, 0.0, 9.3, 87.5, 0.0, 0.0, 0.0, 100.0, 0.0, 32.0 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Stoughton - Helen Hansen Elementary,02850010, 2.3, 0.0, 2.6, 95.1, 0.0, 0.0, 0.0, 86.9, 13.1, 38.3 +1,1,a-pcom-i3,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 95.4, 4.6, 46.5 +1,1,a-pcom-i3,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.7, 98.3, 0.0, 0.0, 1.0, 91.8, 8.2, 59.6 +3.531249999999999,3.53,a-pcom-i3,2023-24,Stoughton - O'Donnell Middle School,02850405, 7.4, 2.1, 1.9, 88.7, 0.0, 0.0, 0.0, 82.9, 17.1, 105.4 +1,1,a-pcom-i3,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 85.1, 14.9, 42.8 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Stoughton - South Elementary,02850015, 1.2, 2.4, 0.0, 96.3, 0.0, 0.0, 0.0, 92.7, 7.3, 41.0 +3.125,3.13,a-pcom-i3,2023-24,Stoughton - Stoughton High,02850505, 4.5, 1.7, 2.4, 90.0, 0.0, 0.7, 0.7, 70.6, 29.4, 152.4 +1.09375,1.09,a-pcom-i3,2023-24,Sturbridge - Burgess Elementary,02870005, 1.4, 0.7, 0.7, 96.5, 0.0, 0.0, 0.7, 94.4, 5.6, 141.6 +1.9062499999999982,1.91,a-pcom-i3,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.7, 1.1, 3.6, 93.9, 0.0, 0.0, 0.7, 69.7, 29.5, 138.8 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 1.4, 0.7, 1.4, 95.1, 0.0, 0.0, 1.3, 70.6, 29.4, 138.9 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Sudbury - General John Nixon Elementary,02880025, 3.9, 0.0, 1.2, 94.9, 0.0, 0.0, 0.0, 87.8, 12.2, 51.5 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 1.4, 96.1, 0.0, 0.0, 2.5, 91.3, 8.7, 70.9 +2.65625,2.66,a-pcom-i3,2023-24,Sudbury - Josiah Haynes,02880010, 1.3, 5.1, 2.1, 91.5, 0.0, 0.0, 0.0, 93.5, 6.5, 77.8 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Sudbury - Peter Noyes,02880030, 0.0, 7.1, 2.0, 89.9, 0.0, 0.0, 1.0, 91.6, 8.4, 98.8 +2.5312499999999982,2.53,a-pcom-i3,2023-24,Sunderland - Sunderland Elementary,02890005, 1.8, 6.0, 0.0, 91.9, 0.0, 0.0, 0.3, 85.7, 12.5, 55.1 +1,1,a-pcom-i3,2023-24,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 58.5 +1,1,a-pcom-i3,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 44.4 +1,1,a-pcom-i3,2023-24,Sutton - Sutton High School,02900510, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 63.1, 36.9, 47.6 +1,1,a-pcom-i3,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 73.6, 26.4, 39.0 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Swampscott - Clarke,02910005, 0.0, 0.0, 2.4, 96.8, 0.0, 0.0, 0.8, 92.0, 8.0, 41.7 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Swampscott - Hadley,02910010, 0.0, 1.9, 3.7, 93.8, 0.0, 0.0, 0.6, 92.8, 7.2, 53.5 +1.40625,1.41,a-pcom-i3,2023-24,Swampscott - Stanley,02910020, 0.0, 0.0, 3.4, 95.5, 0.0, 0.0, 1.1, 83.5, 16.5, 29.3 +1.7812500000000009,1.78,a-pcom-i3,2023-24,Swampscott - Swampscott High,02910505, 1.1, 0.0, 4.6, 94.3, 0.0, 0.0, 0.0, 66.4, 33.6, 87.5 +1.25,1.25,a-pcom-i3,2023-24,Swampscott - Swampscott Middle,02910305, 1.0, 2.0, 1.0, 96.0, 0.0, 0.0, 0.0, 85.0, 15.0, 100.9 +1,1,a-pcom-i3,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.1, 0.9, 28.8 +1,1,a-pcom-i3,2023-24,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 27.8 +1,1,a-pcom-i3,2023-24,Swansea - Joseph Case High,02920505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 50.0, 50.0, 65.8 +1,1,a-pcom-i3,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 71.1, 28.9, 58.2 +1,1,a-pcom-i3,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.6, 13.4, 24.2 +1,1,a-pcom-i3,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 92.1, 7.9, 33.4 +2.9999999999999982,3.0,a-pcom-i3,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 1.4, 2.9, 5.3, 90.4, 0.0, 0.0, 0.0, 77.0, 23.0, 208.6 +1,1,a-pcom-i3,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.7, 22.0, 72.8 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.8, 0.0, 2.3, 96.1, 0.0, 0.0, 0.8, 65.0, 35.0, 128.8 +1.8437500000000018,1.84,a-pcom-i3,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 5.9, 0.0, 0.0, 94.1, 0.0, 0.0, 0.0, 35.6, 64.4, 16.8 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Taunton - Benjamin Friedman Middle,02930315, 3.1, 0.0, 0.0, 96.4, 0.0, 0.0, 0.4, 79.9, 20.1, 79.8 +1,1,a-pcom-i3,2023-24,Taunton - East Taunton Elementary,02930010, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 94.4, 5.6, 83.0 +1,1,a-pcom-i3,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 38.0 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 2.6, 0.0, 2.6, 94.9, 0.0, 0.0, 0.0, 100.0, 0.0, 39.1 +1,1,a-pcom-i3,2023-24,Taunton - Elizabeth Pole,02930027, 1.3, 0.0, 1.3, 97.4, 0.0, 0.0, 0.0, 92.4, 7.6, 77.0 +4.125000000000001,4.13,a-pcom-i3,2023-24,Taunton - H H Galligan,02930057, 7.5, 0.0, 5.0, 86.8, 0.0, 0.0, 0.8, 96.8, 3.2, 40.3 +1.9687499999999991,1.97,a-pcom-i3,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 1.8, 0.9, 2.7, 93.7, 0.0, 0.0, 0.9, 93.8, 6.2, 111.5 +2.96875,2.97,a-pcom-i3,2023-24,Taunton - John F Parker Middle,02930305, 3.5, 0.0, 5.2, 90.5, 0.0, 0.0, 0.9, 78.5, 21.5, 57.7 +1.5625,1.56,a-pcom-i3,2023-24,Taunton - Joseph C Chamberlain,02930008, 1.5, 1.5, 1.5, 95.0, 0.0, 0.0, 0.5, 94.7, 3.8, 66.5 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Taunton - Joseph H Martin,02930042, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 87.1, 11.7, 77.7 +1,1,a-pcom-i3,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.4, 27.6, 18.0 +2.65625,2.66,a-pcom-i3,2023-24,Taunton - Taunton High,02930505, 3.1, 0.9, 3.0, 91.5, 0.0, 0.0, 1.6, 65.0, 35.0, 252.7 +1,1,a-pcom-i3,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.0, 50.0, 4.0 +3.9374999999999982,3.94,a-pcom-i3,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 4.5, 8.2, 87.4, 0.0, 0.0, 0.0, 94.5, 5.5, 112.2 +2.562500000000001,2.56,a-pcom-i3,2023-24,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 8.2, 91.8, 0.0, 0.0, 0.0, 95.7, 4.3, 50.5 +3.125,3.13,a-pcom-i3,2023-24,Tewksbury - John F. Ryan,02950023, 2.0, 2.6, 5.5, 90.0, 0.0, 0.0, 0.0, 83.4, 16.6, 76.4 +3.218749999999999,3.22,a-pcom-i3,2023-24,Tewksbury - John W. Wynn Middle,02950305, 1.4, 2.9, 6.0, 89.7, 0.0, 0.0, 0.0, 77.5, 22.5, 69.4 +2.749999999999999,2.75,a-pcom-i3,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 4.9, 3.9, 91.2, 0.0, 0.0, 0.0, 92.5, 7.5, 81.7 +1,1,a-pcom-i3,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 2.1, 96.9, 0.0, 0.0, 0.0, 61.3, 37.8, 102.9 +3.90625,3.91,a-pcom-i3,2023-24,Tisbury - Tisbury Elementary,02960005, 2.0, 1.3, 8.9, 87.5, 0.0, 0.0, 0.3, 87.9, 12.1, 77.2 +1,1,a-pcom-i3,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.0, 12.0, 41.7 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 1.1, 2.8, 96.1, 0.0, 0.0, 0.0, 95.0, 5.0, 63.4 +1,1,a-pcom-i3,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.8, 0.0, 0.8, 98.5, 0.0, 0.0, 0.0, 61.0, 39.0, 130.8 +1,1,a-pcom-i3,2023-24,Triton - Newbury Elementary,07730020, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 90.1, 9.9, 91.3 +1,1,a-pcom-i3,2023-24,Triton - Pine Grove,07730025, 0.3, 1.3, 0.0, 98.4, 0.0, 0.0, 0.0, 93.3, 6.7, 75.0 +1,1,a-pcom-i3,2023-24,Triton - Salisbury Elementary,07730015, 0.3, 1.3, 0.4, 98.0, 0.0, 0.0, 0.0, 93.4, 6.6, 75.4 +1,1,a-pcom-i3,2023-24,Triton - Triton Regional High School,07730505, 1.3, 0.0, 1.4, 97.4, 0.0, 0.0, 0.0, 66.8, 33.2, 95.5 +1,1,a-pcom-i3,2023-24,Triton - Triton Regional Middle School,07730405, 0.4, 1.9, 0.6, 97.1, 0.0, 0.0, 0.0, 73.1, 26.9, 52.9 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Truro - Truro Central,03000005, 0.0, 3.5, 3.5, 92.9, 0.0, 0.0, 0.0, 82.5, 17.5, 28.4 +1,1,a-pcom-i3,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 1.0, 0.9, 98.1, 0.0, 0.0, 0.0, 94.5, 5.5, 108.8 +1,1,a-pcom-i3,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 58.7, 41.3, 47.8 +1,1,a-pcom-i3,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 67.4, 32.6, 57.7 +14.84375,5,a-pcom-i3,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 35.6, 3.4, 8.5, 52.5, 0.0, 0.0, 0.0, 76.3, 23.7, 59.0 +14.468749999999998,5,a-pcom-i3,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 31.0, 2.1, 13.2, 53.7, 0.0, 0.0, 0.0, 81.4, 17.6, 96.8 +2.34375,2.34,a-pcom-i3,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 6.6, 0.0, 0.9, 92.5, 0.0, 0.0, 0.0, 97.2, 2.8, 16.9 +2.124999999999999,2.12,a-pcom-i3,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 2.0, 0.0, 4.8, 93.2, 0.0, 0.0, 0.0, 84.1, 15.9, 80.6 +1,1,a-pcom-i3,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.9, 0.0, 0.0, 97.3, 0.9, 0.9, 0.0, 45.2, 54.8, 110.6 +31.25,5,a-pcom-i3,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +1,1,a-pcom-i3,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 94.5 +1,1,a-pcom-i3,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, 1.1, 1.1, 97.8, 0.0, 0.0, 0.0, 68.8, 31.2, 93.0 +1,1,a-pcom-i3,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.2, 18.8, 69.0 +17.875,5,a-pcom-i3,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 28.1, 2.8, 18.9, 42.8, 0.9, 0.0, 6.5, 74.6, 24.5, 105.5 +1,1,a-pcom-i3,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.3, 15.7, 44.6 +1,1,a-pcom-i3,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 41.2 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 86.4, 13.6, 58.8 +1,1,a-pcom-i3,2023-24,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 64.2 +2.65625,2.66,a-pcom-i3,2023-24,Wachusett - Early Childhood Center,07750001, 2.8, 0.0, 5.7, 91.5, 0.0, 0.0, 0.0, 100.0, 0.0, 35.2 +1,1,a-pcom-i3,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.9, 12.1, 49.7 +1,1,a-pcom-i3,2023-24,Wachusett - Houghton Elementary,07750027, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 93.6, 6.4, 61.9 +1,1,a-pcom-i3,2023-24,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 56.2 +1,1,a-pcom-i3,2023-24,Wachusett - Mountview Middle,07750305, 1.3, 0.0, 1.3, 97.3, 0.0, 0.0, 0.0, 82.6, 17.4, 74.6 +1,1,a-pcom-i3,2023-24,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 51.7 +1,1,a-pcom-i3,2023-24,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.6, 17.4, 63.1 +1,1,a-pcom-i3,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 97.6, 0.0, 2.4, 0.0, 90.4, 9.6, 41.4 +1,1,a-pcom-i3,2023-24,Wachusett - Wachusett Regional High,07750505, 0.0, 0.4, 0.0, 99.6, 0.0, 0.0, 0.0, 68.0, 32.0, 225.7 +1.2812499999999982,1.28,a-pcom-i3,2023-24,Wakefield - Dolbeare,03050005, 1.4, 2.7, 0.0, 95.9, 0.0, 0.0, 0.0, 91.0, 9.0, 73.2 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 6.4, 0.0, 93.6, 0.0, 0.0, 0.0, 100.0, 0.0, 31.2 +1,1,a-pcom-i3,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 72.2, 27.8, 129.5 +1,1,a-pcom-i3,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 32.7 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.8, 0.0, 2.5, 96.6, 0.0, 0.0, 0.0, 63.5, 36.5, 119.3 +1,1,a-pcom-i3,2023-24,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.0, 12.0, 24.7 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Wakefield - Woodville School,03050015, 1.4, 0.0, 0.0, 95.8, 0.0, 0.0, 2.8, 93.7, 6.3, 72.3 +2.5312499999999982,2.53,a-pcom-i3,2023-24,Wales - Wales Elementary,03060005, 0.0, 0.0, 4.1, 91.9, 0.0, 0.0, 4.1, 91.9, 8.1, 24.6 +1.7812500000000009,1.78,a-pcom-i3,2023-24,Walpole - Bird Middle,03070305, 4.0, 1.6, 0.0, 94.3, 0.0, 0.0, 0.0, 73.8, 26.2, 60.6 +1,1,a-pcom-i3,2023-24,Walpole - Boyden,03070010, 1.6, 0.0, 0.0, 97.1, 0.0, 0.0, 1.4, 94.4, 5.6, 64.1 +1,1,a-pcom-i3,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.9 +1.7499999999999982,1.75,a-pcom-i3,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.8, 1.6, 3.2, 94.4, 0.0, 0.0, 0.0, 79.5, 20.5, 62.0 +1,1,a-pcom-i3,2023-24,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 55.2 +1,1,a-pcom-i3,2023-24,Walpole - Fisher,03070015, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 92.0, 8.0, 62.2 +1,1,a-pcom-i3,2023-24,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 99.7, 0.0, 0.0, 0.3, 86.8, 13.2, 48.6 +1,1,a-pcom-i3,2023-24,Walpole - Walpole High,03070505, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 62.5, 37.5, 138.1 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 89.7, 10.3, 63.9 +17.124999999999996,5,a-pcom-i3,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.3, 54.5, 45.2, 0.0, 0.0, 0.0, 88.2, 11.8, 30.9 +4.21875,4.22,a-pcom-i3,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 3.2, 0.5, 8.2, 86.5, 0.0, 0.0, 1.6, 86.0, 14.0, 61.8 +2.875000000000001,2.88,a-pcom-i3,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 3.9, 3.6, 90.8, 0.0, 0.0, 1.8, 89.8, 10.2, 57.0 +4.53125,4.53,a-pcom-i3,2023-24,Waltham - John F Kennedy Middle,03080404, 2.1, 2.1, 10.3, 85.5, 0.0, 0.0, 0.0, 79.6, 20.4, 95.3 +7.124999999999999,5,a-pcom-i3,2023-24,Waltham - John W. McDevitt Middle School,03080415, 5.7, 2.8, 13.4, 77.2, 0.0, 0.0, 0.9, 63.6, 36.4, 106.2 +3.4062500000000018,3.41,a-pcom-i3,2023-24,Waltham - Northeast Elementary School,03080040, 1.1, 2.3, 5.5, 89.1, 0.0, 0.0, 2.1, 94.5, 5.5, 94.9 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 1.6, 0.0, 9.8, 88.6, 0.0, 0.0, 0.0, 89.5, 10.5, 61.6 +4.968750000000002,4.97,a-pcom-i3,2023-24,Waltham - Waltham Sr High,03080505, 1.9, 3.6, 9.5, 84.1, 0.0, 0.4, 0.5, 67.5, 32.5, 237.6 +5.218750000000001,5,a-pcom-i3,2023-24,Waltham - William F. Stanley Elementary School,03080005, 1.0, 2.1, 12.5, 83.3, 0.0, 0.0, 1.0, 92.0, 8.0, 96.2 +1.40625,1.41,a-pcom-i3,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 3.2, 95.5, 0.0, 0.0, 1.3, 93.6, 6.4, 62.2 +2.6874999999999982,2.69,a-pcom-i3,2023-24,Ware - Ware Junior/Senior High School,03090505, 3.0, 0.0, 5.6, 91.4, 0.0, 0.0, 0.0, 71.8, 28.2, 67.3 +1,1,a-pcom-i3,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 80.9, 19.1, 36.6 +1,1,a-pcom-i3,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 3.7 +1,1,a-pcom-i3,2023-24,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 136.3 +1,1,a-pcom-i3,2023-24,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 97.2, 0.0, 0.0, 2.8, 83.7, 16.3, 71.2 +4.093749999999998,4.09,a-pcom-i3,2023-24,Wareham - Wareham Senior High,03100505, 6.5, 0.9, 0.9, 86.9, 0.0, 0.0, 4.7, 67.9, 32.1, 106.9 +1,1,a-pcom-i3,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.5 +2.593749999999999,2.59,a-pcom-i3,2023-24,Watertown - Cunniff,03140015, 1.6, 0.0, 6.7, 91.7, 0.0, 0.0, 0.0, 85.9, 14.1, 61.5 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Watertown - Hosmer,03140020, 1.4, 0.7, 8.7, 88.6, 0.0, 0.0, 0.7, 89.3, 10.7, 146.0 +4.656250000000002,4.66,a-pcom-i3,2023-24,Watertown - James Russell Lowell,03140025, 1.1, 0.0, 13.8, 85.1, 0.0, 0.0, 0.0, 87.5, 12.5, 73.4 +2.1875,2.19,a-pcom-i3,2023-24,Watertown - Watertown High,03140505, 1.0, 1.0, 4.2, 93.0, 1.0, 0.0, 0.0, 47.7, 52.3, 104.3 +3.125,3.13,a-pcom-i3,2023-24,Watertown - Watertown Middle,03140305, 3.2, 3.2, 3.5, 90.0, 0.0, 0.0, 0.0, 69.4, 29.6, 92.5 +2.437499999999999,2.44,a-pcom-i3,2023-24,Wayland - Claypit Hill School,03150005, 3.3, 3.3, 0.0, 92.2, 0.0, 0.0, 1.1, 92.9, 7.1, 89.6 +4.968750000000002,4.97,a-pcom-i3,2023-24,Wayland - Happy Hollow School,03150015, 3.4, 6.7, 5.9, 84.1, 0.0, 0.0, 0.0, 94.1, 5.9, 59.6 +6.281249999999998,5,a-pcom-i3,2023-24,Wayland - Loker School,03150020, 0.0, 1.8, 14.9, 79.9, 0.0, 0.0, 3.5, 90.4, 9.6, 57.1 +1.5625,1.56,a-pcom-i3,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 5.0, 0.0, 95.0, 0.0, 0.0, 0.0, 100.0, 0.0, 20.1 +2.3749999999999982,2.37,a-pcom-i3,2023-24,Wayland - Wayland High School,03150505, 4.2, 1.7, 1.7, 92.4, 0.0, 0.0, 0.0, 66.9, 33.1, 118.3 +3.75,3.75,a-pcom-i3,2023-24,Wayland - Wayland Middle School,03150305, 2.1, 3.1, 6.8, 88.0, 0.0, 0.0, 0.0, 73.9, 26.1, 95.4 +1.0625000000000018,1.06,a-pcom-i3,2023-24,Webster - Bartlett High School,03160505, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 69.1, 30.9, 58.3 +1,1,a-pcom-i3,2023-24,Webster - Park Avenue Elementary,03160015, 0.8, 0.0, 0.0, 99.2, 0.0, 0.0, 0.0, 94.0, 6.0, 132.8 +1,1,a-pcom-i3,2023-24,Webster - Webster Middle School,03160315, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 81.7, 18.3, 73.8 +2.34375,2.34,a-pcom-i3,2023-24,Wellesley - Ernest F Upham,03170050, 0.3, 1.8, 3.6, 92.5, 1.8, 0.0, 0.0, 89.6, 10.4, 55.4 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Wellesley - Hunnewell,03170025, 2.1, 0.0, 1.1, 96.4, 0.0, 0.0, 0.5, 91.1, 8.9, 45.8 +2.5,2.5,a-pcom-i3,2023-24,Wellesley - John D Hardy,03170020, 2.7, 0.0, 5.3, 92.0, 0.0, 0.0, 0.0, 93.8, 6.2, 42.6 +3.1562499999999982,3.16,a-pcom-i3,2023-24,Wellesley - Joseph E Fiske,03170015, 4.8, 0.0, 0.7, 89.9, 0.0, 0.0, 4.5, 97.4, 2.6, 44.4 +4.21875,4.22,a-pcom-i3,2023-24,Wellesley - Katharine Lee Bates,03170005, 3.0, 0.0, 8.5, 86.5, 0.0, 0.0, 2.0, 99.6, 0.4, 38.3 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 1.9, 1.9, 5.7, 88.6, 0.0, 0.0, 1.9, 98.1, 1.9, 52.7 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Wellesley - Schofield,03170045, 2.4, 2.1, 2.6, 92.9, 0.0, 0.0, 0.0, 93.5, 6.5, 47.9 +2.0000000000000018,2.0,a-pcom-i3,2023-24,Wellesley - Sprague Elementary School,03170048, 0.3, 3.6, 2.6, 93.6, 0.0, 0.0, 0.0, 94.8, 5.2, 55.5 +3.687499999999999,3.69,a-pcom-i3,2023-24,Wellesley - Wellesley Middle,03170305, 2.4, 3.5, 3.5, 88.2, 0.0, 0.0, 2.4, 76.1, 23.9, 169.5 +2.906249999999999,2.91,a-pcom-i3,2023-24,Wellesley - Wellesley Sr High,03170505, 3.7, 2.3, 2.4, 90.7, 0.0, 0.0, 1.0, 64.6, 35.4, 208.5 +1,1,a-pcom-i3,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 25.2 +1,1,a-pcom-i3,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 96.4, 3.6, 64.5 +1,1,a-pcom-i3,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 71.2, 28.8, 71.0 +2.4687500000000018,2.47,a-pcom-i3,2023-24,West Bridgewater - Howard School,03230305, 0.0, 3.2, 4.7, 92.1, 0.0, 0.0, 0.0, 90.9, 9.1, 31.7 +2.250000000000001,2.25,a-pcom-i3,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 7.2, 92.8, 0.0, 0.0, 0.0, 96.0, 4.0, 34.8 +1.25,1.25,a-pcom-i3,2023-24,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 99.2, 0.8, 25.2 +1,1,a-pcom-i3,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 1.5, 0.0, 0.0, 97.1, 0.0, 0.0, 1.5, 74.1, 25.9, 68.6 +1,1,a-pcom-i3,2023-24,West Springfield - John Ashley,03320005, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 95.5, 4.5, 44.6 +1,1,a-pcom-i3,2023-24,West Springfield - John R Fausey,03320010, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 96.7, 3.3, 71.3 +1,1,a-pcom-i3,2023-24,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.0, 18.0, 35.8 +1,1,a-pcom-i3,2023-24,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 26.7 +1.1562500000000009,1.16,a-pcom-i3,2023-24,West Springfield - Philip G Coburn,03320007, 1.4, 0.8, 1.5, 96.3, 0.0, 0.0, 0.0, 93.6, 6.4, 130.7 +1,1,a-pcom-i3,2023-24,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 35.3 +1.8437500000000018,1.84,a-pcom-i3,2023-24,West Springfield - West Springfield High,03320505, 0.7, 0.0, 5.2, 94.1, 0.0, 0.0, 0.0, 66.7, 33.3, 152.9 +1.5312500000000018,1.53,a-pcom-i3,2023-24,West Springfield - West Springfield Middle,03320305, 0.8, 0.8, 2.4, 95.1, 0.0, 0.0, 0.8, 71.1, 28.9, 122.9 +4.187500000000002,4.19,a-pcom-i3,2023-24,Westborough - Annie E Fales,03210010, 0.0, 6.9, 5.1, 86.6, 0.0, 0.0, 1.4, 97.7, 2.3, 58.3 +2.8437499999999982,2.84,a-pcom-i3,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 7.1, 2.0, 90.9, 0.0, 0.0, 0.0, 95.5, 4.5, 99.3 +3.8750000000000018,3.88,a-pcom-i3,2023-24,Westborough - J Harding Armstrong,03210005, 0.0, 9.1, 1.6, 87.6, 0.0, 0.0, 1.6, 97.8, 2.2, 60.7 +3.7812499999999982,3.78,a-pcom-i3,2023-24,Westborough - Mill Pond School,03210045, 0.8, 7.9, 3.4, 87.9, 0.0, 0.0, 0.0, 90.5, 9.5, 126.5 +3.2500000000000018,3.25,a-pcom-i3,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 1.2, 6.8, 2.3, 89.6, 0.0, 0.0, 0.0, 72.3, 27.7, 85.0 +2.34375,2.34,a-pcom-i3,2023-24,Westborough - Westborough High,03210505, 0.7, 4.0, 2.1, 92.5, 0.0, 0.7, 0.0, 68.7, 31.3, 142.6 +1,1,a-pcom-i3,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 26.0 +4.125000000000001,4.13,a-pcom-i3,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 7.9, 5.3, 86.8, 0.0, 0.0, 0.0, 97.4, 2.6, 38.0 +2.1562500000000018,2.16,a-pcom-i3,2023-24,Westfield - Franklin Ave,03250015, 0.0, 0.0, 3.5, 93.1, 0.0, 0.0, 3.5, 96.5, 3.5, 28.9 +2.406250000000001,2.41,a-pcom-i3,2023-24,Westfield - Highland,03250025, 0.0, 1.9, 3.9, 92.3, 1.9, 0.0, 0.0, 90.3, 9.7, 51.7 +1.875,1.88,a-pcom-i3,2023-24,Westfield - Munger Hill,03250033, 4.5, 1.5, 0.0, 94.0, 0.0, 0.0, 0.0, 92.5, 7.5, 66.6 +2.437499999999999,2.44,a-pcom-i3,2023-24,Westfield - Paper Mill,03250036, 0.0, 0.0, 6.2, 92.2, 0.0, 1.6, 0.0, 92.3, 7.7, 64.4 +1,1,a-pcom-i3,2023-24,Westfield - Southampton Road,03250040, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 100.0, 0.0, 41.2 +1,1,a-pcom-i3,2023-24,Westfield - Westfield High,03250505, 0.7, 0.7, 1.4, 96.9, 0.3, 0.0, 0.0, 72.3, 27.7, 141.4 +1,1,a-pcom-i3,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 86.2, 13.8, 90.8 +1,1,a-pcom-i3,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.1, 24.9, 86.0 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Westfield - Westfield Technical Academy,03250605, 2.1, 0.0, 0.0, 95.8, 0.6, 0.5, 1.0, 48.0, 52.0, 96.9 +2.906249999999999,2.91,a-pcom-i3,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 9.3, 0.0, 90.7, 0.0, 0.0, 0.0, 83.4, 16.6, 10.8 +1,1,a-pcom-i3,2023-24,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 58.1 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Westford - Blanchard Middle,03260310, 0.0, 7.1, 0.0, 92.9, 0.0, 0.0, 0.0, 88.6, 11.4, 70.3 +1,1,a-pcom-i3,2023-24,Westford - Col John Robinson,03260025, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 91.3, 8.7, 63.6 +2.96875,2.97,a-pcom-i3,2023-24,Westford - Day Elementary,03260007, 0.0, 5.7, 3.8, 90.5, 0.0, 0.0, 0.0, 89.7, 10.3, 52.5 +2.9999999999999982,3.0,a-pcom-i3,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 9.6, 0.0, 90.4, 0.0, 0.0, 0.0, 98.4, 1.6, 62.5 +1.6250000000000009,1.63,a-pcom-i3,2023-24,Westford - Nabnasset,03260015, 0.0, 3.4, 1.7, 94.8, 0.0, 0.0, 0.0, 94.0, 6.0, 58.2 +3.374999999999999,3.37,a-pcom-i3,2023-24,Westford - Rita E. Miller Elementary School,03260055, 1.2, 9.5, 0.0, 89.2, 0.0, 0.0, 0.0, 98.8, 1.2, 80.3 +1.5937499999999982,1.59,a-pcom-i3,2023-24,Westford - Stony Brook School,03260330, 1.3, 1.3, 2.6, 94.9, 0.0, 0.0, 0.0, 84.6, 15.4, 78.1 +1,1,a-pcom-i3,2023-24,Westford - Westford Academy,03260505, 0.0, 2.4, 0.0, 97.0, 0.0, 0.0, 0.6, 64.8, 35.2, 165.0 +1,1,a-pcom-i3,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 30.2 +2.8125,2.81,a-pcom-i3,2023-24,Weston - Country,03300010, 0.0, 1.1, 5.9, 91.0, 0.0, 0.0, 2.1, 89.0, 11.0, 47.5 +3.90625,3.91,a-pcom-i3,2023-24,Weston - Field Elementary School,03300012, 2.4, 6.7, 2.1, 87.5, 0.0, 0.0, 1.4, 81.9, 18.1, 42.2 +5.187499999999998,5,a-pcom-i3,2023-24,Weston - Weston High,03300505, 2.8, 10.5, 2.8, 83.4, 0.0, 0.0, 0.5, 63.3, 36.7, 105.6 +2.281249999999999,2.28,a-pcom-i3,2023-24,Weston - Weston Middle,03300305, 2.9, 3.6, 0.0, 92.7, 0.0, 0.0, 0.7, 76.6, 23.4, 68.8 +2.250000000000001,2.25,a-pcom-i3,2023-24,Weston - Woodland,03300015, 0.0, 4.7, 2.4, 92.8, 0.0, 0.0, 0.0, 94.5, 5.5, 48.7 +1,1,a-pcom-i3,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 27.5 +1,1,a-pcom-i3,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 94.6, 5.4, 56.1 +1,1,a-pcom-i3,2023-24,Westport - Westport Middle-High School,03310515, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 70.1, 29.9, 109.8 +2.1562500000000018,2.16,a-pcom-i3,2023-24,Westwood - Downey,03350012, 4.0, 0.3, 1.3, 93.1, 0.0, 0.0, 1.3, 93.1, 6.9, 74.9 +2.5312499999999982,2.53,a-pcom-i3,2023-24,Westwood - E W Thurston Middle,03350305, 4.0, 2.0, 2.0, 91.9, 0.0, 0.0, 0.0, 76.3, 23.7, 99.2 +1.9687499999999991,1.97,a-pcom-i3,2023-24,Westwood - Martha Jones,03350017, 2.5, 1.3, 0.0, 93.7, 0.0, 0.0, 2.5, 88.4, 11.6, 39.7 +2.749999999999999,2.75,a-pcom-i3,2023-24,Westwood - Pine Hill Elementary School,03350030, 4.2, 4.6, 0.0, 91.2, 0.0, 0.0, 0.0, 90.3, 9.7, 71.4 +3.531249999999999,3.53,a-pcom-i3,2023-24,Westwood - Westwood High,03350505, 2.3, 4.5, 3.0, 88.7, 0.0, 0.0, 1.5, 67.3, 32.7, 132.6 +2.0624999999999982,2.06,a-pcom-i3,2023-24,Westwood - Westwood Integrated Preschool,03350050, 6.6, 0.0, 0.0, 93.4, 0.0, 0.0, 0.0, 93.4, 6.6, 15.2 +1,1,a-pcom-i3,2023-24,Westwood - William E Sheehan,03350025, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 89.3, 10.7, 58.6 +1,1,a-pcom-i3,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 92.8, 7.2, 41.6 +1,1,a-pcom-i3,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.6, 19.4, 38.2 +4.187500000000002,4.19,a-pcom-i3,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 3.5, 6.3, 3.5, 86.6, 0.0, 0.0, 0.0, 98.2, 1.8, 56.7 +1,1,a-pcom-i3,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 96.9, 3.1, 42.1 +1.5312500000000018,1.53,a-pcom-i3,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 1.8, 1.8, 1.2, 95.1, 0.0, 0.0, 0.0, 67.6, 32.4, 163.3 +1,1,a-pcom-i3,2023-24,Weymouth - Ralph Talbot,03360085, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 96.1, 3.9, 38.4 +1,1,a-pcom-i3,2023-24,Weymouth - Thomas V Nash,03360060, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 89.8, 10.2, 39.2 +1,1,a-pcom-i3,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 50.1 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Weymouth - Wessagusset,03360110, 1.8, 0.0, 1.8, 96.4, 0.0, 0.0, 0.0, 89.3, 10.7, 56.0 +2.281249999999999,2.28,a-pcom-i3,2023-24,Weymouth - Weymouth High School,03360505, 2.8, 0.8, 2.4, 92.7, 0.4, 0.0, 0.8, 64.9, 34.7, 246.9 +1,1,a-pcom-i3,2023-24,Weymouth - William Seach,03360080, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 96.9, 3.1, 44.5 +1.1249999999999982,1.12,a-pcom-i3,2023-24,Whately - Whately Elementary,03370005, 0.0, 0.0, 3.4, 96.4, 0.0, 0.0, 0.2, 95.2, 4.8, 29.3 +1,1,a-pcom-i3,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 80.5, 19.5, 61.2 +2.875000000000001,2.88,a-pcom-i3,2023-24,Whitman-Hanson - Indian Head,07800035, 3.1, 0.0, 4.4, 90.8, 0.0, 1.6, 0.0, 94.3, 5.7, 61.3 +1,1,a-pcom-i3,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 93.2, 6.8, 64.4 +1,1,a-pcom-i3,2023-24,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 60.5 +3.500000000000001,3.5,a-pcom-i3,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 5.6, 0.0, 5.6, 88.8, 0.0, 0.0, 0.0, 100.0, 0.0, 17.9 +1,1,a-pcom-i3,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 1.7, 0.0, 0.8, 97.4, 0.0, 0.0, 0.0, 64.5, 35.5, 112.0 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.8, 0.0, 2.4, 96.8, 0.0, 0.0, 0.0, 73.5, 26.5, 61.9 +1.8437500000000018,1.84,a-pcom-i3,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 3.3, 0.7, 2.0, 94.1, 0.0, 0.0, 0.0, 50.8, 49.2, 151.9 +1,1,a-pcom-i3,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 30.1 +1,1,a-pcom-i3,2023-24,Wilmington - Boutwell,03420005, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 100.0, 0.0, 31.2 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Wilmington - North Intermediate,03420060, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 100.0, 0.0, 31.6 +1.875,1.88,a-pcom-i3,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 4.0, 2.0, 94.0, 0.0, 0.0, 0.0, 92.1, 7.9, 50.4 +2.437499999999999,2.44,a-pcom-i3,2023-24,Wilmington - West Intermediate,03420080, 1.0, 2.9, 2.0, 92.2, 0.0, 0.0, 2.0, 93.4, 6.6, 51.2 +2.0624999999999982,2.06,a-pcom-i3,2023-24,Wilmington - Wilmington High,03420505, 1.9, 1.9, 1.9, 93.4, 0.9, 0.0, 0.0, 72.5, 27.5, 106.3 +1,1,a-pcom-i3,2023-24,Wilmington - Wilmington Middle School,03420330, 0.4, 0.0, 1.7, 97.1, 0.0, 0.0, 0.8, 79.9, 20.1, 118.7 +1,1,a-pcom-i3,2023-24,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 43.7 +1.875,1.88,a-pcom-i3,2023-24,Winchendon - Memorial,03430040, 2.0, 0.0, 2.0, 94.0, 0.0, 0.0, 2.0, 100.0, 0.0, 50.2 +1,1,a-pcom-i3,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.2, 38.8, 1.9 +1.7812500000000009,1.78,a-pcom-i3,2023-24,Winchendon - Murdock High School,03430515, 2.8, 0.0, 2.8, 94.3, 0.0, 0.0, 0.0, 61.8, 38.2, 35.3 +1.0000000000000009,1.0,a-pcom-i3,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 64.5, 35.5, 31.0 +1,1,a-pcom-i3,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.7, 10.3, 39.0 +2.593749999999999,2.59,a-pcom-i3,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 8.3, 91.7, 0.0, 0.0, 0.0, 100.0, 0.0, 12.1 +1.3750000000000018,1.38,a-pcom-i3,2023-24,Winchester - Ambrose Elementary,03440045, 1.8, 0.0, 0.0, 95.6, 1.8, 0.0, 0.7, 94.9, 5.1, 54.3 +1,1,a-pcom-i3,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 97.7, 2.3, 44.0 +2.7812500000000018,2.78,a-pcom-i3,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 6.7, 2.2, 91.1, 0.0, 0.0, 0.0, 94.8, 4.1, 89.8 +2.5312499999999982,2.53,a-pcom-i3,2023-24,Winchester - McCall Middle,03440305, 0.8, 5.7, 1.6, 91.9, 0.0, 0.0, 0.0, 75.2, 24.8, 127.2 +2.8437499999999982,2.84,a-pcom-i3,2023-24,Winchester - Muraco Elementary,03440040, 0.0, 5.7, 1.9, 90.9, 1.4, 0.0, 0.0, 93.3, 6.7, 52.4 +1,1,a-pcom-i3,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 96.9, 0.0, 0.0, 3.1, 88.2, 11.8, 58.1 +2.1875,2.19,a-pcom-i3,2023-24,Winchester - Winchester High School,03440505, 0.7, 4.3, 1.3, 93.0, 0.0, 0.0, 0.7, 66.6, 33.4, 149.5 +1.25,1.25,a-pcom-i3,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 1.6, 2.4, 96.0, 0.0, 0.0, 0.0, 89.7, 10.3, 63.0 +1,1,a-pcom-i3,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 98.8, 1.2, 0.0, 0.0, 90.6, 9.4, 85.3 +1.7812500000000009,1.78,a-pcom-i3,2023-24,Winthrop - Winthrop High School,03460505, 0.0, 4.2, 1.4, 94.3, 0.0, 0.0, 0.0, 60.0, 40.0, 70.7 +1,1,a-pcom-i3,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.1, 25.9, 61.3 +1.4999999999999991,1.5,a-pcom-i3,2023-24,Woburn - Clyde Reeves,03470040, 1.2, 1.2, 0.0, 95.2, 1.2, 1.2, 0.0, 96.3, 3.7, 82.6 +1,1,a-pcom-i3,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 2.2, 0.4, 97.3, 0.0, 0.0, 0.0, 77.2, 22.8, 89.6 +1,1,a-pcom-i3,2023-24,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 56.7 +1,1,a-pcom-i3,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.8, 0.2, 51.5 +1.2187500000000018,1.22,a-pcom-i3,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 72.1, 27.9, 67.0 +1,1,a-pcom-i3,2023-24,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.6, 0.4, 29.2 +1,1,a-pcom-i3,2023-24,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 51.3 +1,1,a-pcom-i3,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 94.4, 5.6, 34.2 +1,1,a-pcom-i3,2023-24,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 70.4 +1.9375000000000009,1.94,a-pcom-i3,2023-24,Woburn - Woburn High,03470505, 2.5, 0.6, 2.5, 93.8, 0.6, 0.0, 0.0, 68.6, 31.4, 160.9 +2.2187499999999982,2.22,a-pcom-i3,2023-24,Worcester - Belmont Street Community,03480020, 2.4, 1.4, 3.3, 92.9, 0.0, 0.0, 0.0, 89.9, 10.1, 70.9 +7.124999999999999,5,a-pcom-i3,2023-24,Worcester - Burncoat Middle School,03480405, 5.4, 0.0, 17.5, 77.2, 0.0, 0.0, 0.0, 64.1, 35.9, 120.5 +4.031250000000002,4.03,a-pcom-i3,2023-24,Worcester - Burncoat Senior High,03480503, 2.6, 0.6, 9.1, 87.1, 0.0, 0.0, 0.6, 61.6, 38.4, 165.7 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Worcester - Burncoat Street,03480035, 3.4, 0.0, 5.8, 88.6, 0.0, 2.2, 0.0, 95.1, 4.9, 44.5 +3.6249999999999982,3.62,a-pcom-i3,2023-24,Worcester - Canterbury,03480045, 5.4, 0.0, 5.4, 88.4, 0.0, 0.0, 0.9, 96.2, 3.8, 55.9 +3.8750000000000018,3.88,a-pcom-i3,2023-24,Worcester - Chandler Elementary Community,03480050, 3.0, 0.9, 8.5, 87.6, 0.0, 0.0, 0.0, 90.9, 9.1, 67.0 +17.375,5,a-pcom-i3,2023-24,Worcester - Chandler Magnet,03480052, 2.5, 2.2, 50.8, 44.4, 0.0, 0.0, 0.0, 93.7, 6.3, 94.5 +5.625,5,a-pcom-i3,2023-24,Worcester - City View,03480053, 4.3, 1.4, 12.2, 82.0, 0.0, 0.0, 0.0, 90.5, 9.5, 69.5 +9.6875,5,a-pcom-i3,2023-24,Worcester - Claremont Academy,03480350, 12.2, 4.1, 14.7, 69.0, 0.0, 0.0, 0.0, 69.1, 30.9, 73.6 +8.75,5,a-pcom-i3,2023-24,Worcester - Clark St Community,03480055, 0.8, 2.1, 23.0, 72.0, 0.0, 0.0, 2.1, 87.5, 12.5, 48.3 +3.59375,3.59,a-pcom-i3,2023-24,Worcester - Columbus Park,03480060, 7.1, 0.0, 4.4, 88.5, 0.0, 0.0, 0.0, 91.4, 8.6, 57.4 +4.312499999999999,4.31,a-pcom-i3,2023-24,Worcester - Doherty Memorial High,03480512, 1.9, 0.0, 10.6, 86.2, 0.0, 0.0, 1.2, 58.0, 42.0, 161.9 +5.343749999999998,5,a-pcom-i3,2023-24,Worcester - Elm Park Community,03480095, 2.6, 0.0, 13.0, 82.9, 0.0, 0.0, 1.5, 90.5, 9.5, 65.9 +1.40625,1.41,a-pcom-i3,2023-24,Worcester - Flagg Street,03480090, 0.3, 0.0, 4.2, 95.5, 0.0, 0.0, 0.0, 91.2, 8.8, 56.2 +7.5,5,a-pcom-i3,2023-24,Worcester - Forest Grove Middle,03480415, 7.0, 2.9, 13.2, 76.0, 0.0, 0.0, 0.8, 69.6, 30.4, 123.3 +3.031250000000001,3.03,a-pcom-i3,2023-24,Worcester - Francis J McGrath Elementary,03480177, 0.4, 6.4, 2.9, 90.3, 0.0, 0.0, 0.0, 91.7, 8.3, 37.7 +3.6249999999999982,3.62,a-pcom-i3,2023-24,Worcester - Gates Lane,03480110, 3.6, 1.8, 6.2, 88.4, 0.0, 0.0, 0.0, 94.2, 5.8, 109.6 +4.437500000000001,4.44,a-pcom-i3,2023-24,Worcester - Goddard School/Science Technical,03480100, 4.2, 0.0, 9.9, 85.8, 0.0, 0.0, 0.0, 96.7, 3.3, 75.5 +4.656250000000002,4.66,a-pcom-i3,2023-24,Worcester - Grafton Street,03480115, 5.6, 0.0, 9.3, 85.1, 0.0, 0.0, 0.0, 85.5, 14.5, 53.7 +5.562499999999999,5,a-pcom-i3,2023-24,Worcester - Head Start,03480002, 1.5, 1.5, 13.2, 82.2, 0.0, 0.0, 1.5, 96.9, 3.1, 129.1 +5.874999999999999,5,a-pcom-i3,2023-24,Worcester - Heard Street,03480136, 2.7, 0.0, 10.6, 81.2, 2.8, 0.0, 2.7, 92.8, 7.2, 36.3 +6.281249999999998,5,a-pcom-i3,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 1.7, 0.0, 14.3, 79.9, 0.0, 0.0, 4.1, 95.1, 4.9, 60.5 +2.8437499999999982,2.84,a-pcom-i3,2023-24,Worcester - Lake View,03480145, 2.4, 0.7, 6.0, 90.9, 0.0, 0.0, 0.0, 85.6, 14.4, 41.9 +6.281249999999998,5,a-pcom-i3,2023-24,Worcester - Lincoln Street,03480160, 0.0, 2.5, 17.6, 79.9, 0.0, 0.0, 0.0, 81.9, 18.1, 40.2 +5.093749999999999,5,a-pcom-i3,2023-24,Worcester - May Street,03480175, 6.4, 2.9, 7.0, 83.7, 0.0, 0.0, 0.0, 87.3, 12.7, 35.0 +3.125,3.13,a-pcom-i3,2023-24,Worcester - Midland Street,03480185, 0.0, 0.0, 10.0, 90.0, 0.0, 0.0, 0.0, 91.8, 8.2, 35.8 +2.906249999999999,2.91,a-pcom-i3,2023-24,Worcester - Nelson Place,03480200, 1.6, 0.0, 7.6, 90.7, 0.0, 0.0, 0.0, 93.9, 6.1, 124.6 +5.499999999999998,5,a-pcom-i3,2023-24,Worcester - Norrback Avenue,03480202, 3.6, 2.6, 9.6, 82.4, 0.0, 0.0, 1.7, 93.0, 7.0, 114.3 +8.5,5,a-pcom-i3,2023-24,Worcester - North High,03480515, 9.3, 1.2, 16.1, 72.8, 0.0, 0.0, 0.6, 69.1, 30.9, 169.6 +6.812499999999999,5,a-pcom-i3,2023-24,Worcester - Quinsigamond,03480210, 2.0, 5.6, 12.1, 78.2, 0.0, 0.0, 1.9, 92.3, 7.7, 108.1 +6.25,5,a-pcom-i3,2023-24,Worcester - Rice Square,03480215, 3.7, 3.3, 13.0, 80.0, 0.0, 0.0, 0.0, 92.9, 7.1, 54.7 +3.59375,3.59,a-pcom-i3,2023-24,Worcester - Roosevelt,03480220, 4.3, 0.2, 7.1, 88.5, 0.0, 0.0, 0.0, 97.9, 2.1, 105.5 +5.281250000000002,5,a-pcom-i3,2023-24,Worcester - South High Community,03480520, 3.3, 1.4, 11.1, 83.1, 0.5, 0.0, 0.5, 72.8, 27.2, 209.1 +4.906250000000001,4.91,a-pcom-i3,2023-24,Worcester - Sullivan Middle,03480423, 3.0, 1.3, 10.7, 84.3, 0.0, 0.0, 0.7, 69.2, 30.8, 148.6 +1,1,a-pcom-i3,2023-24,Worcester - Tatnuck,03480230, 0.3, 2.4, 0.1, 97.1, 0.0, 0.0, 0.0, 92.6, 7.4, 54.1 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 85.8, 14.2, 42.8 +7.749999999999999,5,a-pcom-i3,2023-24,Worcester - Union Hill School,03480240, 1.9, 1.9, 21.0, 75.2, 0.0, 0.0, 0.0, 88.1, 11.9, 52.4 +7.468750000000002,5,a-pcom-i3,2023-24,Worcester - University Pk Campus School,03480285, 7.4, 1.5, 15.1, 76.1, 0.0, 0.0, 0.0, 71.5, 25.5, 33.9 +8.093750000000002,5,a-pcom-i3,2023-24,Worcester - Vernon Hill School,03480280, 12.6, 1.4, 11.9, 74.1, 0.0, 0.0, 0.0, 82.2, 17.8, 71.4 +2.0624999999999982,2.06,a-pcom-i3,2023-24,Worcester - Wawecus Road School,03480026, 3.2, 0.0, 3.5, 93.4, 0.0, 0.0, 0.0, 89.8, 10.2, 31.4 +4.562499999999998,4.56,a-pcom-i3,2023-24,Worcester - West Tatnuck,03480260, 1.7, 1.7, 9.5, 85.4, 0.0, 0.0, 1.7, 93.7, 4.6, 59.1 +8.5,5,a-pcom-i3,2023-24,Worcester - Woodland Academy,03480030, 2.9, 0.0, 24.3, 72.8, 0.0, 0.0, 0.0, 86.8, 13.2, 68.8 +1.3125000000000009,1.31,a-pcom-i3,2023-24,Worcester - Worcester Arts Magnet School,03480225, 2.0, 0.0, 2.2, 95.8, 0.0, 0.0, 0.0, 91.7, 8.3, 49.5 +6.5625,5,a-pcom-i3,2023-24,Worcester - Worcester East Middle,03480420, 8.6, 0.0, 11.4, 79.0, 0.0, 0.0, 1.0, 57.7, 42.3, 99.2 +3.5625000000000018,3.56,a-pcom-i3,2023-24,Worcester - Worcester Technical High,03480605, 3.8, 0.0, 6.6, 88.6, 0.0, 0.0, 1.0, 52.2, 47.8, 208.4 +10.84375,5,a-pcom-i3,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 27.4, 0.0, 1.9, 65.3, 0.0, 0.0, 5.5, 87.2, 12.8, 18.3 +2.9999999999999982,3.0,a-pcom-i3,2023-24,Worthington - R. H. Conwell,03490010, 4.8, 0.0, 4.8, 90.4, 0.0, 0.0, 0.0, 85.6, 9.6, 20.8 +1,1,a-pcom-i3,2023-24,Wrentham - Charles E Roderick,03500010, 1.8, 0.6, 0.0, 97.6, 0.0, 0.0, 0.0, 92.9, 7.1, 54.5 +1.1562500000000009,1.16,a-pcom-i3,2023-24,Wrentham - Delaney,03500003, 0.0, 1.7, 1.0, 96.3, 0.0, 0.0, 1.0, 94.9, 5.1, 101.0 3.187500000000001,3.19,a-pcom-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 4.2, 0.6, 3.0, 89.8, 0.0, 0.6, 1.8, 77.8, 22.2, 166.8 1,1,a-pcom-i3,2022-23,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.0 2.3125000000000018,2.31,a-pcom-i3,2022-23,Abington - Abington High,00010505, 1.5, 0.0, 5.9, 92.6, 0.0, 0.0, 0.0, 70.5, 29.5, 67.9 diff --git a/data/admin_data/dese/2A_1_students_disciplined.csv b/data/admin_data/dese/2A_1_students_disciplined.csv index 761dc643..e0e5f932 100644 --- a/data/admin_data/dese/2A_1_students_disciplined.csv +++ b/data/admin_data/dese/2A_1_students_disciplined.csv @@ -1,4 +1,1835 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Students,Students Disciplined,% 1 Day,% 2 to 3 Days,% 4 to 7 Days,% 8 to 10 Days,% > 10 Days +6.8,5,a-phys-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,451", 51, 1.0, 1.4, 0.8, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Abington - Abington Early Education Program,00010001, 104, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Abington - Abington High,00010505, 571, 34, 3.0, 2.1, 0.5, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Abington - Abington Middle School,00010405, 669, 46, 3.6, 1.9, 0.9, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Abington - Beaver Brook Elementary,00010020, 537, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Abington - Woodsdale Elementary School,00010015, 344, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 487, 49, 5.1, 2.9, 1.0, 0.4, 0.6 +7.6,5,a-phys-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,702", 20, 0.2, 0.5, 0.2, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 518, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 396, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 126, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Luther Conant School,06000030, 419, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 464, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Merriam School,06000010, 448, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 358, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 840, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Acushnet - Acushnet Elementary School,00030025, 563, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Acushnet - Albert F Ford Middle School,00030305, 418, 10, 0.5, 0.7, 1.2, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 973, 34, 1.4, 1.2, 0.3, 0.3, 0.2 +NA,NA,a-phys-i3,2022-23,Agawam - Agawam Early Childhood Center,00050003, 185, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Agawam - Agawam High,00050505," 1,085", 76, 1.9, 2.0, 1.6, 0.9, 0.6 +7.2,5,a-phys-i3,2022-23,Agawam - Agawam Junior High,00050405, 547, 17, 0.2, 1.8, 0.9, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Agawam - Benjamin J Phelps,00050020, 328, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Agawam - Clifford M Granger,00050010, 345, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Agawam - James Clark School,00050030, 330, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Agawam - Roberta G. Doering School,00050303, 538, 8, 0.9, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Agawam - Robinson Park,00050025, 303, 1,"","","","","" +5.6,5,a-phys-i3,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205," 1,077", 121, 4.2, 3.3, 2.8, 0.3, 0.6 +NA,NA,a-phys-i3,2022-23,Amesbury - Amesbury Elementary,00070005, 352, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Amesbury - Amesbury High,00070505, 467, 16, 1.9, 1.3, 0.0, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Amesbury - Amesbury Innovation High School,00070515, 59, 14, 11.9, 8.5, 3.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Amesbury - Amesbury Middle,00070013, 608, 14, 1.3, 0.7, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 409, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Amherst - Crocker Farm Elementary,00080009, 376, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Amherst - Fort River Elementary,00080020, 392, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Amherst - Wildwood Elementary,00080050, 340, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 886, 16, 0.6, 0.1, 0.7, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 391, 1,"","","","","" +5.6,5,a-phys-i3,2022-23,Andover - Andover High,00090505," 1,731", 55, 0.4, 0.9, 0.8, 0.5, 0.6 +NA,NA,a-phys-i3,2022-23,Andover - Andover West Middle,00090310, 528, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Bancroft Elementary,00090003, 551, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Doherty Middle,00090305, 464, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Henry C Sanborn Elementary,00090010, 353, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - High Plain Elementary,00090004, 552, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Shawsheen School,00090005, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - South Elementary,00090020, 457, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - West Elementary,00090025, 564, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Andover - Wood Hill Middle School,00090350, 349, 5,"","","","","" +-14.8,1,a-phys-i3,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 577, 171, 7.6, 6.4, 8.5, 1.4, 5.7 +6.8,5,a-phys-i3,2022-23,Arlington - Arlington High,00100505," 1,558", 29, 0.2, 0.6, 0.6, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Arlington - Brackett,00100010, 430, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Cyrus E Dallin,00100025, 424, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Gibbs School,00100305, 518, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Hardy,00100030, 413, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - John A Bishop,00100005, 411, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - M Norcross Stratton,00100055, 448, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Menotomy Preschool,00100038, 104, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Arlington - Ottoson Middle,00100410, 933, 23, 1.7, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Arlington - Peirce,00100045, 368, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Arlington - Thompson,00100050, 524, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 538, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 201, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 664, 34, 0.3, 2.4, 1.7, 0.2, 0.6 +8.0,5,a-phys-i3,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 553, 15, 1.8, 0.7, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 393, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Ashland - Ashland High,00140505, 860, 39, 1.6, 1.0, 0.8, 0.2, 0.8 +6.4,5,a-phys-i3,2022-23,Ashland - Ashland Middle,00140405, 704, 27, 1.6, 1.1, 0.6, 0.1, 0.4 +NA,NA,a-phys-i3,2022-23,Ashland - David Mindess,00140015, 672, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashland - Henry E Warren Elementary,00140010, 668, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ashland - William Pittaway Elementary,00140005, 91, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605," 1,135", 68, 2.6, 0.5, 2.6, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 634, 0,"","","","","" +-0.40000000000000036,1,a-phys-i3,2022-23,Athol-Royalston - Athol High,06150505, 424, 46, 1.4, 1.2, 4.0, 2.1, 2.1 +1.5999999999999996,1.6,a-phys-i3,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 448, 65, 4.5, 3.1, 4.0, 1.3, 1.6 +NA,NA,a-phys-i3,2022-23,Athol-Royalston - Royalston Community School,06150050, 167, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550," 1,327", 155, 5.4, 2.7, 2.3, 0.5, 0.8 +NA,NA,a-phys-i3,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 364, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Attleboro - Attleboro Community Academy,00160515, 76, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Attleboro - Attleboro High,00160505," 1,906", 155, 2.3, 2.8, 1.8, 0.5, 0.8 +NA,NA,a-phys-i3,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 52, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 650, 31, 3.1, 0.9, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Attleboro - Early Learning Center,00160008, 244, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 428, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 475, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 466, 11, 1.3, 0.9, 0.0, 0.2, 0.0 +6.8,5,a-phys-i3,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 595, 30, 0.8, 2.7, 1.2, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 389, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Attleboro - Wamsutta Middle School,00160320, 605, 32, 3.1, 1.7, 0.3, 0.2, 0.0 +5.6,5,a-phys-i3,2022-23,Auburn - Auburn Middle,00170305, 659, 22, 0.0, 1.7, 0.9, 0.2, 0.6 +2.0,2.0,a-phys-i3,2022-23,Auburn - Auburn Senior High,00170505, 874, 44, 0.3, 2.3, 0.3, 0.6, 1.5 +NA,NA,a-phys-i3,2022-23,Auburn - Bryn Mawr,00170010, 275, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Auburn - Pakachoag School,00170025, 248, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Auburn - Swanson Road Intermediate School,00170030, 565, 3,"","","","","" +5.6,5,a-phys-i3,2022-23,Avon - Avon Middle High School,00180510, 346, 39, 6.1, 2.3, 2.3, 0.0, 0.6 +NA,NA,a-phys-i3,2022-23,Avon - Ralph D Butler,00180010, 409, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 405, 6, 0.7, 0.7, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 382, 29, 3.7, 2.9, 1.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 360, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 566, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 298, 4,"","","","","" +0.0,1,a-phys-i3,2022-23,Barnstable - Barnstable High,00200505," 1,871", 196, 3.2, 2.9, 1.5, 0.9, 2.0 +6.4,5,a-phys-i3,2022-23,Barnstable - Barnstable Intermediate School,00200315, 686, 51, 2.2, 3.1, 1.5, 0.3, 0.4 +6.8,5,a-phys-i3,2022-23,Barnstable - Barnstable United Elementary School,00200050, 769, 9, 0.3, 0.1, 0.5, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Barnstable - Centerville Elementary,00200010, 266, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 203, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - Hyannis West Elementary,00200025, 377, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - West Barnstable Elementary,00200005, 280, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Barnstable - West Villages Elementary School,00200045, 408, 2,"","","","","" +-18.4,1,a-phys-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 427, 121, 2.8, 6.1, 7.0, 5.9, 6.6 +8.0,5,a-phys-i3,2022-23,Bedford - Bedford High,00230505, 862, 19, 0.1, 0.5, 0.8, 0.8, 0.0 +8.0,5,a-phys-i3,2022-23,Bedford - John Glenn Middle,00230305, 600, 21, 2.2, 0.7, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Bedford - Lt Eleazer Davis,00230010, 537, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bedford - Lt Job Lane School,00230012, 593, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Belchertown - Belchertown High,00240505, 656, 7, 0.6, 0.3, 0.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Belchertown - Chestnut Hill Community School,00240006, 495, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Belchertown - Cold Spring,00240005, 206, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belchertown - Jabish Middle School,00240025, 351, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Belchertown - Swift River Elementary,00240018, 487, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 124, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Bellingham - Bellingham High School,00250505, 760, 21, 0.0, 1.1, 1.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Bellingham - Bellingham Memorial School,00250315, 606, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 309, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Keough Memorial Academy,00250510, 34, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bellingham - Stall Brook,00250025, 261, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Belmont - Belmont High,00260505," 1,380", 7, 0.2, 0.1, 0.1, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Belmont - Daniel Butler,00260015, 342, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belmont - Mary Lee Burbank,00260010, 346, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belmont - Roger E Wellington,00260035, 580, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Belmont - Winn Brook,00260005, 445, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Belmont - Winthrop L Chenery Middle,00260305," 1,395", 20, 0.4, 0.7, 0.2, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 335, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 880, 12, 1.1, 0.1, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Berkley - Berkley Community School,00270010, 487, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Berkley - Berkley Middle School,00270305, 377, 21, 1.9, 3.2, 0.5, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 386, 27, 1.6, 1.8, 1.3, 1.6, 0.8 +8.0,5,a-phys-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 494, 26, 2.2, 2.2, 0.4, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 391, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 339, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 229, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 345, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 525, 8, 0.8, 0.4, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Beverly - Ayers/Ryal Side School,00300055, 397, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Beverly - Beverly High,00300505," 1,309", 75, 2.2, 2.3, 0.8, 0.2, 0.2 +7.6,5,a-phys-i3,2022-23,Beverly - Beverly Middle School,00300305," 1,401", 38, 1.0, 1.3, 0.2, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Beverly - Centerville Elementary,00300010, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - Cove Elementary,00300015, 440, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - Hannah Elementary,00300033, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - McKeown School,00300002, 165, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Beverly - North Beverly Elementary,00300040, 357, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Billerica - Billerica Memorial High School,00310505," 1,847", 57, 0.1, 0.7, 1.4, 0.6, 0.3 +NA,NA,a-phys-i3,2022-23,Billerica - Frederick J Dutile,00310007, 299, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Billerica - Hajjar Elementary,00310026, 392, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Billerica - John F Kennedy,00310012, 315, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Billerica - Locke Middle,00310310, 554, 19, 1.3, 1.6, 0.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Billerica - Marshall Middle School,00310305, 623, 16, 1.4, 0.6, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Billerica - Parker,00310015, 442, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Billerica - Thomas Ditson,00310005, 570, 3,"","","","","" +7.2,5,a-phys-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605," 1,238", 39, 0.1, 0.4, 1.8, 0.6, 0.2 +NA,NA,a-phys-i3,2022-23,Blackstone-Millville - A F Maloney,06220015, 265, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 440, 24, 2.0, 0.9, 1.4, 0.9, 0.2 +8.0,5,a-phys-i3,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 377, 30, 2.1, 4.2, 1.1, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 116, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Blackstone-Millville - Millville Elementary,06220010, 397, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 924, 26, 1.1, 1.1, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Adams Elementary School,00350302, 277, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Alighieri Dante Montessori School,00350066, 109, 0,"","","","","" +0.0,1,a-phys-i3,2022-23,Boston - Another Course To College,00350541, 296, 52, 3.7, 6.4, 3.7, 1.7, 2.0 +NA,NA,a-phys-i3,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 194, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Bates Elementary School,00350278, 300, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Beethoven Elementary School,00350021, 313, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Blackstone Elementary School,00350390, 658, 12, 0.9, 0.9, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Boston Adult Tech Academy,00350548, 252, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Boston - Boston Arts Academy,00350546, 496, 12, 0.6, 0.6, 1.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Boston - Boston Collaborative High School,00350755, 333, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 690, 72, 1.4, 5.7, 2.8, 0.1, 0.4 +7.2,5,a-phys-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 630, 10, 0.2, 0.5, 0.5, 0.3, 0.2 +7.2,5,a-phys-i3,2022-23,Boston - Boston Latin Academy,00350545," 1,728", 43, 0.7, 1.1, 0.3, 0.1, 0.2 +7.6,5,a-phys-i3,2022-23,Boston - Boston Latin School,00350560," 2,427", 34, 0.9, 0.2, 0.0, 0.1, 0.1 +6.8,5,a-phys-i3,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 340, 15, 1.8, 2.1, 0.3, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Boston - Bradley Elementary School,00350215, 301, 0,"","","","","" +2.0,2.0,a-phys-i3,2022-23,Boston - Brighton High School,00350505, 736, 125, 1.9, 4.8, 6.1, 2.7, 1.5 +8.0,5,a-phys-i3,2022-23,Boston - Burke High School,00350525, 500, 23, 0.2, 1.8, 2.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Carter School,00350036, 31, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Channing Elementary School,00350360, 236, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Charlestown High School,00350515, 929, 28, 0.6, 2.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Chittick Elementary School,00350154, 259, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Clap Elementary School,00350298, 124, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Community Academy,00350518, 77, 28, 6.5, 15.6, 10.4, 3.9, 0.0 +6.8,5,a-phys-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 394, 48, 0.5, 7.4, 3.6, 0.5, 0.3 +8.0,5,a-phys-i3,2022-23,Boston - Condon K-8 School,00350146, 725, 9, 0.4, 0.4, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Conley Elementary School,00350122, 173, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Curley K-8 School,00350020, 994, 21, 0.5, 1.3, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 617, 44, 1.6, 4.5, 0.8, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Dever Elementary School,00350268, 455, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - East Boston Early Education Center,00350009, 198, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - East Boston High School,00350530," 1,396", 52, 0.2, 2.9, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Edison K-8 School,00350375, 690, 13, 0.1, 1.2, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Eliot K-8 Innovation School,00350096, 854, 8, 0.0, 0.7, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Ellis Elementary School,00350072, 394, 11, 1.0, 1.0, 0.3, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Ellison-Parks Early Education School,00350008, 215, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Boston - English High School,00350535, 749, 103, 3.2, 4.8, 4.3, 1.3, 0.1 +NA,NA,a-phys-i3,2022-23,Boston - Everett Elementary School,00350088, 313, 2,"","","","","" +5.6,5,a-phys-i3,2022-23,Boston - Excel High School,00350522, 513, 69, 1.9, 6.8, 3.5, 0.6, 0.6 +6.0,5,a-phys-i3,2022-23,Boston - Fenway High School,00350540, 386, 18, 1.3, 1.3, 0.8, 0.8, 0.5 +6.8,5,a-phys-i3,2022-23,Boston - Frederick Pilot Middle School,00350383, 387, 19, 1.8, 2.1, 0.8, 0.0, 0.3 +8.0,5,a-phys-i3,2022-23,Boston - Gardner Pilot Academy,00350326, 399, 13, 1.5, 0.8, 0.8, 0.3, 0.0 +4.8,4.8,a-phys-i3,2022-23,Boston - Greater Egleston High School,00350543, 124, 7, 0.8, 3.2, 0.8, 0.0, 0.8 +8.0,5,a-phys-i3,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 418, 14, 0.2, 2.6, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Grew Elementary School,00350135, 234, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Guild Elementary School,00350062, 277, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Hale Elementary School,00350243, 185, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Boston - Haley Pilot School,00350077, 418, 22, 2.4, 1.4, 1.2, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Boston - Harvard-Kent Elementary School,00350200, 382, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Haynes Early Education Center,00350010, 235, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 230, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 760, 60, 2.0, 3.4, 1.3, 0.7, 0.5 +8.0,5,a-phys-i3,2022-23,Boston - Hennigan K-8 School,00350153, 634, 13, 0.5, 1.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Hernandez K-8 School,00350691, 438, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 144, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 205, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Holmes Elementary School,00350138, 320, 7, 1.3, 0.3, 0.3, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 78, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Hurley K-8 School,00350182, 373, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Kennedy John F Elementary School,00350166, 432, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 287, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Kenny Elementary School,00350328, 371, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Kilmer K-8 School,00350190, 421, 9, 1.0, 1.0, 0.0, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - King Elementary School,00350376, 503, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Lee Academy,00350001, 225, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Lee K-8 School,00350183, 610, 26, 0.7, 2.5, 1.1, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Lyndon K-8 School,00350262, 614, 23, 1.1, 1.1, 0.7, 0.8, 0.0 +-0.8000000000000007,1,a-phys-i3,2022-23,Boston - Lyon High School,00350655, 139, 20, 2.9, 3.6, 2.9, 2.9, 2.2 +NA,NA,a-phys-i3,2022-23,Boston - Lyon K-8 School,00350004, 145, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537," 1,152", 102, 0.5, 5.4, 2.8, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Manning Elementary School,00350184, 171, 4,"","","","","" +6.8,5,a-phys-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 345, 45, 5.2, 2.3, 4.3, 0.9, 0.3 +8.0,5,a-phys-i3,2022-23,Boston - Mario Umana Academy,00350656, 654, 13, 1.1, 0.6, 0.2, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Mason Elementary School,00350304, 207, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Mather Elementary School,00350227, 531, 7, 0.8, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Mattahunt Elementary School,00350016, 543, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - McKay K-8 School,00350080, 726, 42, 1.5, 3.2, 1.0, 0.1, 0.0 +4.0,4.0,a-phys-i3,2022-23,Boston - McKinley Schools,00350363, 197, 51, 10.7, 7.1, 6.1, 1.0, 1.0 +NA,NA,a-phys-i3,2022-23,Boston - Mendell Elementary School,00350100, 342, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Mildred Avenue K-8 School,00350378, 697, 17, 0.3, 0.9, 0.9, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Mozart Elementary School,00350237, 186, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Murphy K-8 School,00350240, 906, 32, 0.9, 1.8, 0.4, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - New Mission High School,00350542, 654, 74, 0.8, 8.0, 2.1, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575," 1,569", 24, 0.1, 0.7, 0.6, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - O'Donnell Elementary School,00350141, 337, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - Ohrenberger School,00350258, 528, 10, 0.8, 0.9, 0.0, 0.2, 0.0 +7.6,5,a-phys-i3,2022-23,Boston - Orchard Gardens K-8 School,00350257, 786, 43, 1.9, 2.5, 0.9, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Boston - Otis Elementary School,00350156, 450, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Perkins Elementary School,00350231, 172, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Perry Elementary School,00350255, 200, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Philbrick Elementary School,00350172, 124, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Quincy Elementary School,00350286, 777, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Boston - Quincy Upper School,00350565, 559, 26, 2.0, 0.9, 1.4, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Boston - Roosevelt K-8 School,00350116, 392, 32, 2.8, 3.3, 1.0, 1.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Russell Elementary School,00350366, 413, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Shaw Elementary School,00350014, 203, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Boston - Snowden International High School,00350690, 517, 81, 4.1, 6.6, 4.3, 0.4, 0.4 +8.0,5,a-phys-i3,2022-23,Boston - Sumner Elementary School,00350052, 590, 6, 0.5, 0.5, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Taylor Elementary School,00350054, 438, 9, 0.2, 0.7, 0.7, 0.5, 0.0 +7.6,5,a-phys-i3,2022-23,Boston - TechBoston Academy,00350657, 993, 121, 2.5, 6.2, 2.4, 0.9, 0.1 +8.0,5,a-phys-i3,2022-23,Boston - Tobin K-8 School,00350229, 471, 6, 0.0, 0.8, 0.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston - Trotter Elementary School,00350370, 345, 10, 0.0, 2.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Tynan Elementary School,00350181, 242, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Boston - UP Academy Holland,00350167, 674, 13, 1.0, 0.7, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Boston - Warren-Prescott K-8 School,00350346, 550, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - West Zone Early Learning Center,00350006, 120, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Winship Elementary School,00350374, 362, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boston - Winthrop Elementary School,00350180, 258, 0,"","","","","" +0.0,1,a-phys-i3,2022-23,Boston - Young Achievers K-8 School,00350380, 564, 59, 1.2, 3.5, 2.7, 1.1, 2.0 +4.0,4.0,a-phys-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 727, 56, 3.6, 2.5, 0.6, 0.1, 1.0 +8.0,5,a-phys-i3,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 439, 15, 0.2, 1.1, 2.1, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 490, 67, 2.0, 8.0, 2.9, 0.8, 0.0 +2.0,2.0,a-phys-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 721, 60, 2.8, 2.1, 1.7, 0.3, 1.5 +7.6,5,a-phys-i3,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 978, 58, 2.8, 1.7, 1.0, 0.3, 0.1 +1.5999999999999996,1.6,a-phys-i3,2022-23,Bourne - Bourne High School,00360505, 371, 25, 0.0, 1.6, 1.9, 1.6, 1.6 +NA,NA,a-phys-i3,2022-23,Bourne - Bourne Intermediate School,00360030, 389, 3,"","","","","" +6.4,5,a-phys-i3,2022-23,Bourne - Bourne Middle School,00360325, 447, 45, 3.1, 4.3, 2.0, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Bourne - Bournedale Elementary School,00360005, 428, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boxford - Harry Lee Cole,00380005, 355, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Boxford - Spofford Pond,00380013, 391, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Archie T Morrison,00400033, 321, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Braintree - Braintree High,00400505," 1,784", 60, 0.8, 0.9, 1.2, 0.2, 0.3 +8.0,5,a-phys-i3,2022-23,Braintree - Donald Ross,00400050, 212, 8, 1.9, 1.4, 0.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Braintree - East Middle School,00400305, 998, 12, 0.2, 0.8, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Braintree - Highlands,00400015, 418, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Hollis,00400005, 343, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Liberty,00400025, 376, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Mary E Flaherty School,00400020, 299, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 209, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Braintree - South Middle School,00400310, 524, 18, 1.3, 1.7, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brewster - Eddy Elementary,00410010, 204, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brewster - Stony Brook Elementary,00410005, 243, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 346, 31, 2.3, 4.9, 1.4, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 767, 19, 1.6, 0.5, 0.3, 0.1, 0.0 +5.6,5,a-phys-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505," 1,434", 27, 0.3, 0.5, 0.4, 0.1, 0.6 +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 505, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 365, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002," 1,023", 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 740, 8, 0.3, 0.4, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 19, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 818, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brimfield - Brimfield Elementary,00430005, 294, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 556, 25, 0.0, 1.1, 0.9, 1.6, 0.9 +7.2,5,a-phys-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605," 1,314", 57, 1.2, 1.2, 1.1, 0.7, 0.2 +4.0,4.0,a-phys-i3,2022-23,Brockton - Ashfield Middle School,00440421, 492, 36, 1.4, 2.4, 2.0, 0.4, 1.0 +NA,NA,a-phys-i3,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 369, 0,"","","","","" +-8.8,1,a-phys-i3,2022-23,Brockton - Brockton Champion High School,00440515, 212, 42, 0.0, 5.7, 6.1, 3.8, 4.2 +-4.4,1,a-phys-i3,2022-23,Brockton - Brockton High,00440505," 3,930", 599, 3.5, 3.8, 3.4, 1.4, 3.1 +NA,NA,a-phys-i3,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 249, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Brookfield,00440010, 474, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Downey,00440110, 638, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Dr W Arnone Community School,00440001, 849, 3,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Brockton - East Middle School,00440405, 499, 37, 1.6, 2.4, 2.2, 0.2, 1.0 +8.0,5,a-phys-i3,2022-23,Brockton - Edgar B Davis,00440023, 992, 27, 0.3, 1.4, 0.9, 0.1, 0.0 +6.0,5,a-phys-i3,2022-23,Brockton - Edison Academy,00440520, 404, 6, 0.2, 0.7, 0.0, 0.0, 0.5 +NA,NA,a-phys-i3,2022-23,Brockton - Gilmore Elementary School,00440055, 437, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Hancock,00440045, 692, 0,"","","","","" +0.0,1,a-phys-i3,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 51, 14, 7.8, 9.8, 7.8, 0.0, 2.0 +NA,NA,a-phys-i3,2022-23,Brockton - John F Kennedy,00440017, 583, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Louis F Angelo Elementary,00440065, 877, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Manthala George Jr. School,00440003, 876, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - Mary E. Baker School,00440002, 734, 0,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Brockton - North Middle School,00440410, 481, 85, 6.4, 5.6, 4.0, 0.6, 1.0 +NA,NA,a-phys-i3,2022-23,Brockton - Oscar F Raymond,00440078, 858, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Brockton - PROMISE College and Career Academy,00440525, 39, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Brockton - Plouffe Middle School,00440422, 719, 42, 0.8, 1.9, 1.7, 0.3, 1.1 +-2.0,1,a-phys-i3,2022-23,Brockton - South Middle School,00440415, 562, 93, 1.6, 5.5, 4.1, 2.8, 2.5 +0.40000000000000036,1,a-phys-i3,2022-23,Brockton - West Middle School,00440420, 581, 79, 3.3, 4.5, 3.1, 0.9, 1.9 +1.5999999999999996,1.6,a-phys-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305," 2,287", 270, 3.6, 3.0, 2.6, 1.0, 1.6 +NA,NA,a-phys-i3,2022-23,Brookfield - Brookfield Elementary,00450005, 297, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 62, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 77, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 58, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Brookline - Brookline High,00460505," 2,124", 47, 1.0, 0.9, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brookline - Edith C Baker,00460005, 721, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 878, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Brookline - Heath,00460025, 470, 7, 0.2, 1.1, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brookline - John D Runkle,00460045, 516, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - Lawrence,00460030, 670, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Brookline - Michael Driscoll,00460020, 482, 6, 1.2, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Brookline - Pierce,00460040, 724, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - The Lynch Center,00460060, 59, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Brookline - William H Lincoln,00460035, 501, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Burlington - Burlington High,00480505," 1,031", 35, 0.3, 1.9, 0.9, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,Burlington - Fox Hill,00480007, 436, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Burlington - Francis Wyman Elementary,00480035, 517, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Burlington - Marshall Simonds Middle,00480303, 846, 16, 0.9, 0.7, 0.0, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Burlington - Memorial,00480015, 403, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Burlington - Pine Glen Elementary,00480020, 341, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Amigos School,00490006, 419, 1,"","","","","" +6.8,5,a-phys-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506," 1,939", 55, 0.8, 1.0, 0.6, 0.2, 0.3 +NA,NA,a-phys-i3,2022-23,Cambridge - Cambridge Street Upper School,00490305, 303, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Cambridgeport,00490007, 290, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 269, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Graham and Parks,00490080, 398, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Haggerty,00490020, 260, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - John M Tobin,00490065, 347, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Kennedy-Longfellow,00490040, 239, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - King Open,00490035, 391, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Maria L. Baldwin,00490005, 355, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Martin Luther King Jr.,00490030, 340, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Morse,00490045, 325, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Cambridge - Peabody,00490050, 332, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 262, 13, 0.4, 1.9, 1.1, 0.8, 0.8 +6.8,5,a-phys-i3,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 289, 10, 1.0, 0.7, 1.4, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Cambridge - Vassal Lane Upper School,00490320, 295, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Canton - Canton High,00500505, 921, 46, 0.2, 2.1, 2.0, 0.2, 0.5 +NA,NA,a-phys-i3,2022-23,Canton - Dean S Luce,00500020, 476, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Canton - John F Kennedy,00500017, 483, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Canton - Lt Peter M Hansen,00500012, 553, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Canton - Rodman Early Childhood Center,00500010, 118, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Canton - Wm H Galvin Middle,00500305, 764, 42, 0.8, 2.5, 1.2, 0.4, 0.7 +NA,NA,a-phys-i3,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 254, 3,"","","","","" +5.6,5,a-phys-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 679, 43, 1.8, 1.8, 1.8, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Carlisle - Carlisle School,00510025, 609, 7, 0.3, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Carver - Carver Elementary School,00520015, 817, 2,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Carver - Carver Middle/High School,00520405, 778, 96, 3.0, 4.5, 3.1, 0.9, 0.9 +NA,NA,a-phys-i3,2022-23,Central Berkshire - Becket Washington School,06350005, 114, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Central Berkshire - Craneville,06350025, 452, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Central Berkshire - Kittredge,06350035, 172, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 352, 52, 7.1, 4.5, 2.0, 0.3, 0.9 +6.4,5,a-phys-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 491, 52, 3.5, 5.1, 1.6, 0.0, 0.4 +NA,NA,a-phys-i3,2022-23,Chelmsford - Byam School,00560030, 515, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelmsford - Center Elementary School,00560005, 500, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelmsford - Charles D Harrington,00560025, 486, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Chelmsford - Chelmsford High,00560505," 1,398", 78, 1.1, 1.7, 2.2, 0.3, 0.2 +NA,NA,a-phys-i3,2022-23,Chelmsford - Col Moses Parker School,00560305, 739, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelmsford - Community Education Center,00560001, 246, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Chelmsford - McCarthy Middle School,00560310, 868, 25, 0.7, 1.7, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Chelmsford - South Row,00560015, 482, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Chelsea - Chelsea High,00570505," 1,805", 148, 4.1, 2.4, 1.1, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 171, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 115, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Chelsea - Clark Avenue School,00570050, 722, 46, 2.9, 2.5, 0.3, 0.3, 0.4 +NA,NA,a-phys-i3,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 526, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 480, 33, 3.8, 1.9, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 527, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelsea - George F. Kelly Elementary,00570035, 493, 3,"","","","","" +7.2,5,a-phys-i3,2022-23,Chelsea - Joseph A. Browne School,00570055, 557, 11, 1.6, 0.2, 0.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 972, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 487, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 155, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Barry,00610003, 374, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Belcher,00610010, 240, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Chicopee - Bellamy Middle,00610305, 835, 125, 4.7, 5.3, 2.6, 1.6, 0.8 +7.2,5,a-phys-i3,2022-23,Chicopee - Bowe,00610015, 449, 9, 0.7, 0.9, 0.2, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Chicopee - Bowie,00610020, 282, 2,"","","","","" +-84.4,1,a-phys-i3,2022-23,Chicopee - Chicopee Academy,00610021, 117, 75, 5.1, 12.0, 16.2, 7.7, 23.1 +7.2,5,a-phys-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510," 1,242", 41, 1.4, 0.6, 0.9, 0.2, 0.2 +6.4,5,a-phys-i3,2022-23,Chicopee - Chicopee High,00610505, 963, 106, 2.9, 4.2, 2.7, 0.8, 0.4 +3.5999999999999996,3.6,a-phys-i3,2022-23,Chicopee - Dupont Middle,00610310, 737, 102, 3.5, 4.3, 3.8, 1.1, 1.1 +NA,NA,a-phys-i3,2022-23,Chicopee - Fairview Elementary,00610050, 406, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Gen John J Stefanik,00610090, 421, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Chicopee - Lambert-Lavoie,00610040, 254, 15, 2.8, 2.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Chicopee - Litwin,00610022, 355, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Streiber Memorial School,00610065, 241, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 312, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 340, 42, 5.0, 3.2, 2.4, 1.2, 0.6 +6.0,5,a-phys-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 218, 23, 5.5, 1.8, 1.8, 0.9, 0.5 +NA,NA,a-phys-i3,2022-23,Clarksburg - Clarksburg Elementary,00630010, 201, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Clinton - Clinton Elementary,00640050, 890, 43, 2.5, 1.1, 0.8, 0.1, 0.2 +6.8,5,a-phys-i3,2022-23,Clinton - Clinton Middle School,00640305, 580, 36, 1.7, 2.4, 1.7, 0.0, 0.3 +2.0,2.0,a-phys-i3,2022-23,Clinton - Clinton Senior High,00640505, 612, 58, 2.5, 2.9, 2.3, 0.3, 1.5 +NA,NA,a-phys-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 351, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Cohasset High School,00650505, 435, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Cohasset Middle School,00650305, 298, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Deer Hill,00650005, 308, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Cohasset - Joseph Osgood,00650010, 380, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205," 1,320", 155, 5.2, 3.3, 2.5, 0.5, 0.3 +6.4,5,a-phys-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 272, 21, 4.8, 0.7, 1.5, 0.4, 0.4 +7.6,5,a-phys-i3,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205," 1,212", 18, 1.0, 0.2, 0.2, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Concord - Alcott,00670005, 428, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Concord - Concord Middle,00670305, 663, 11, 1.1, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Concord - Thoreau,00670020, 447, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Concord - Willard,00670030, 464, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505," 1,323", 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 472, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Conway - Conway Grammar,00680005, 138, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Danvers - Danvers High,00710505, 794, 36, 0.8, 2.4, 0.5, 0.6, 0.3 +NA,NA,a-phys-i3,2022-23,Danvers - Great Oak,00710015, 311, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Danvers - Highlands,00710010, 405, 1,"","","","","" +7.6,5,a-phys-i3,2022-23,Danvers - Holten Richmond Middle School,00710305, 787, 44, 2.8, 1.7, 0.8, 0.3, 0.1 +8.0,5,a-phys-i3,2022-23,Danvers - Ivan G Smith,00710032, 346, 10, 2.3, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Danvers - Riverside,00710030, 353, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Danvers - Willis E Thorpe,00710045, 341, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 151, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Dartmouth - Dartmouth High,00720505," 1,011", 58, 2.8, 2.0, 0.9, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Dartmouth - Dartmouth Middle,00720050, 814, 68, 1.2, 4.8, 1.6, 0.6, 0.1 +NA,NA,a-phys-i3,2022-23,Dartmouth - George H Potter,00720030, 410, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dartmouth - James M. Quinn School,00720040, 714, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Dartmouth - Joseph Demello,00720015, 353, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Avery,00730010, 314, 2,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Dedham - Dedham High,00730505, 745, 38, 0.5, 1.5, 1.2, 0.8, 1.1 +6.4,5,a-phys-i3,2022-23,Dedham - Dedham Middle School,00730305, 569, 41, 3.9, 2.5, 0.5, 0.0, 0.4 +NA,NA,a-phys-i3,2022-23,Dedham - Early Childhood Center,00730005, 335, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Greenlodge,00730025, 284, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Oakdale,00730030, 251, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dedham - Riverdale,00730045, 185, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Deerfield - Deerfield Elementary,00740015, 336, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 480, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 496, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 954, 13, 0.4, 0.8, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 383, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 320, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 436, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 472, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 370, 18, 4.3, 0.5, 0.0, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 703, 30, 1.0, 1.4, 1.4, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 454, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dighton-Rehoboth - Palmer River,06500010, 605, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Douglas - Douglas Elementary School,00770015, 353, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Douglas - Douglas High School,00770505, 328, 11, 0.3, 1.8, 0.9, 0.3, 0.0 +4.0,4.0,a-phys-i3,2022-23,Douglas - Douglas Middle School,00770305, 306, 18, 2.6, 0.7, 1.3, 0.3, 1.0 +NA,NA,a-phys-i3,2022-23,Douglas - Douglas Primary School,00770005, 226, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dover - Chickering,00780005, 518, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 669, 12, 1.0, 0.3, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 484, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Dracut - Brookside Elementary,00790035, 546, 5,"","","","","" +0.40000000000000036,1,a-phys-i3,2022-23,Dracut - Dracut Senior High,00790505, 881, 74, 1.4, 1.5, 2.4, 1.2, 1.9 +NA,NA,a-phys-i3,2022-23,Dracut - George H. Englesby Elementary School,00790045, 560, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Dracut - Greenmont Avenue,00790030, 254, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 624, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 887, 66, 1.9, 2.1, 2.1, 0.6, 0.7 +NA,NA,a-phys-i3,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 286, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 364, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 610, 38, 1.6, 1.3, 1.0, 2.0, 0.3 +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 350, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 576, 26, 2.6, 1.4, 0.2, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 460, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 247, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 958, 31, 1.4, 0.3, 1.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Duxbury - Alden School,00820004, 604, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Duxbury - Chandler Elementary,00820006, 665, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Duxbury - Duxbury High,00820505, 929, 11, 0.2, 0.6, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Duxbury - Duxbury Middle,00820305, 624, 12, 1.3, 0.5, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,East Bridgewater - Central,00830005, 540, 4,"","","","","" +6.4,5,a-phys-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 926, 36, 1.1, 1.0, 0.4, 1.0, 0.4 +8.0,5,a-phys-i3,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 646, 8, 0.8, 0.2, 0.0, 0.3, 0.0 +6.8,5,a-phys-i3,2022-23,East Longmeadow - Birchland Park,00870305, 601, 22, 0.8, 1.5, 0.8, 0.2, 0.3 +6.0,5,a-phys-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 824, 20, 0.2, 0.5, 1.1, 0.1, 0.5 +NA,NA,a-phys-i3,2022-23,East Longmeadow - Mapleshade,00870010, 296, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,East Longmeadow - Meadow Brook,00870013, 587, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,East Longmeadow - Mountain View,00870015, 272, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Eastham - Eastham Elementary,00850005, 200, 0,"","","","","" +-10.8,1,a-phys-i3,2022-23,Easthampton - Easthampton High,00860505, 382, 45, 3.4, 2.9, 0.8, 0.0, 4.7 +8.0,5,a-phys-i3,2022-23,Easthampton - Mountain View School,00860415," 1,080", 45, 2.3, 1.1, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 788, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Easton - Easton Middle School,00880405, 835, 47, 2.9, 1.3, 1.0, 0.2, 0.2 +6.0,5,a-phys-i3,2022-23,Easton - Oliver Ames High,00880505," 1,102", 40, 0.5, 1.0, 1.4, 0.3, 0.5 +NA,NA,a-phys-i3,2022-23,Easton - Richardson Olmsted School,00880025, 777, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Edgartown - Edgartown Elementary,00890005, 442, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 395, 23, 1.0, 2.8, 1.0, 0.8, 0.3 +NA,NA,a-phys-i3,2022-23,Erving - Erving Elementary,00910030, 131, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,707", 29, 0.1, 0.5, 0.6, 0.5, 0.1 +NA,NA,a-phys-i3,2022-23,Everett - Adams School,00930003, 261, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Everett - Devens School,00930030, 68, 10, 1.5, 7.4, 4.4, 1.5, 0.0 +7.2,5,a-phys-i3,2022-23,Everett - Everett High,00930505," 2,426", 180, 3.2, 2.8, 0.9, 0.3, 0.2 +8.0,5,a-phys-i3,2022-23,Everett - George Keverian School,00930028, 994, 15, 0.3, 0.3, 0.4, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Lafayette School,00930038," 1,134", 29, 0.5, 1.6, 0.4, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Madeline English School,00930018, 845, 76, 4.3, 2.8, 1.3, 0.6, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Parlin School,00930058," 1,142", 57, 2.4, 1.7, 0.8, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Everett - Sumner G. Whittier School,00930010, 719, 37, 1.1, 2.4, 1.4, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Everett - Webster Extension,00930001, 230, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Everett - Webster School,00930015, 365, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205," 1,402", 179, 5.0, 3.6, 2.5, 1.3, 0.4 +NA,NA,a-phys-i3,2022-23,Fairhaven - East Fairhaven,00940010, 327, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Fairhaven - Fairhaven High,00940505, 650, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Fairhaven - Hastings Middle,00940305, 448, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Fairhaven - Leroy Wood,00940030, 450, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Fall River - B M C Durfee High,00950505," 2,562", 58, 0.1, 0.4, 1.0, 0.7, 0.1 +8.0,5,a-phys-i3,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 742, 20, 0.5, 1.2, 0.7, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Fall River - Early Learning Center,00950001, 119, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Fall River - Henry Lord Community School,00950017, 876, 20, 0.8, 0.8, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Fall River - James Tansey,00950140, 289, 6, 0.7, 1.0, 0.3, 0.0, 0.0 +6.4,5,a-phys-i3,2022-23,Fall River - John J Doran,00950045, 550, 42, 2.7, 2.7, 1.3, 0.5, 0.4 +NA,NA,a-phys-i3,2022-23,Fall River - Letourneau Elementary School,00950013, 686, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 724, 9, 0.7, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Fall River - Matthew J Kuss Middle,00950320, 731, 1,"","","","","" +5.2,5,a-phys-i3,2022-23,Fall River - Morton Middle,00950315, 737, 106, 2.4, 6.0, 3.7, 1.6, 0.7 +NA,NA,a-phys-i3,2022-23,Fall River - North End Elementary,00950005, 737, 0,"","","","","" +-4.0,1,a-phys-i3,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 333, 73, 0.6, 7.5, 8.7, 2.1, 3.0 +8.0,5,a-phys-i3,2022-23,Fall River - Samuel Watson,00950145, 269, 6, 1.1, 0.4, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Fall River - Spencer Borden,00950130, 617, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Fall River - Stone PK-12 School,00950340, 89, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Fall River - Talbot Innovation School,00950305, 593, 17, 0.8, 0.8, 0.7, 0.2, 0.3 +NA,NA,a-phys-i3,2022-23,Fall River - William S Greene,00950065, 793, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Falmouth - East Falmouth Elementary,00960005, 311, 2,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Falmouth - Falmouth High,00960505, 798, 58, 1.4, 3.1, 1.1, 0.9, 0.8 +3.2,3.2,a-phys-i3,2022-23,Falmouth - Lawrence,00960405, 499, 49, 2.2, 3.8, 1.8, 0.8, 1.2 +7.2,5,a-phys-i3,2022-23,Falmouth - Morse Pond School,00960305, 506, 16, 1.8, 0.4, 0.8, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Falmouth - Mullen-Hall,00960020, 390, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Falmouth - North Falmouth Elementary,00960030, 323, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Falmouth - Teaticket,00960015, 282, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 126, 2,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 626, 67, 1.3, 4.5, 1.9, 1.4, 1.6 +8.0,5,a-phys-i3,2022-23,Fitchburg - Crocker Elementary,00970016, 655, 16, 1.2, 1.2, 0.0, 0.0, 0.0 +-11.600000000000001,1,a-phys-i3,2022-23,Fitchburg - Fitchburg High,00970505," 1,353", 291, 3.1, 7.7, 4.0, 1.8, 4.9 +NA,NA,a-phys-i3,2022-23,Fitchburg - Goodrich Academy,00970510, 297, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Fitchburg - McKay Elementary School,00970340, 775, 14, 1.0, 0.6, 0.1, 0.0, 0.0 +-1.1999999999999993,1,a-phys-i3,2022-23,Fitchburg - Memorial Middle School,00970048, 621, 102, 3.9, 6.3, 3.1, 1.0, 2.3 +8.0,5,a-phys-i3,2022-23,Fitchburg - Reingold Elementary,00970043, 706, 17, 0.6, 1.6, 0.0, 0.3, 0.0 +7.2,5,a-phys-i3,2022-23,Fitchburg - South Street Early Learning Center,00970060, 658, 12, 0.8, 0.8, 0.0, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Florida - Abbott Memorial,00980005, 92, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 223, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Foxborough - Charles Taylor Elementary,00990050, 266, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Foxborough - Foxborough High,00990505, 792, 40, 0.1, 0.9, 2.4, 0.5, 1.1 +7.6,5,a-phys-i3,2022-23,Foxborough - John J Ahern,00990405, 755, 27, 1.3, 1.2, 0.7, 0.3, 0.1 +NA,NA,a-phys-i3,2022-23,Foxborough - Mabelle M Burrell,00990015, 358, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 372, 5,"","","","","" +7.2,5,a-phys-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550," 1,626", 58, 0.9, 1.7, 0.6, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Framingham - Barbieri Elementary,01000035, 713, 9, 0.8, 0.0, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Framingham - Brophy,01000006, 511, 5,"","","","","" +6.0,5,a-phys-i3,2022-23,Framingham - Cameron Middle School,01000302, 578, 70, 2.4, 4.3, 3.6, 1.2, 0.5 +NA,NA,a-phys-i3,2022-23,Framingham - Charlotte A Dunning,01000007, 446, 2,"","","","","" +5.6,5,a-phys-i3,2022-23,Framingham - Framingham High School,01000515," 2,765", 192, 2.0, 2.5, 1.3, 0.5, 0.6 +5.2,5,a-phys-i3,2022-23,Framingham - Fuller Middle,01000305, 686, 68, 2.6, 3.6, 2.2, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Framingham - Harmony Grove Elementary,01000055, 524, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - Hemenway,01000015, 588, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - Juniper Hill School,01000001, 336, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - King Elementary School,01000005, 419, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 388, 9, 0.8, 1.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Framingham - Miriam F McCarthy School,01000050, 591, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Framingham - Potter Road,01000039, 574, 5,"","","","","" +7.6,5,a-phys-i3,2022-23,Framingham - Walsh Middle,01000310, 825, 25, 1.1, 1.3, 0.5, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 406, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Annie Sullivan Middle School,01010040, 328, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 180, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Franklin - Franklin High,01010505," 1,651", 119, 3.0, 2.1, 1.5, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Franklin - Helen Keller Elementary,01010012, 554, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Franklin - Horace Mann,01010405, 380, 12, 2.6, 0.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Franklin - J F Kennedy Memorial,01010013, 343, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Jefferson Elementary,01010010, 363, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Oak Street Elementary,01010030, 371, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Franklin - Parmenter,01010032, 300, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Franklin - Remington Middle,01010310, 378, 16, 1.1, 2.4, 0.8, 0.0, 0.0 +5.2,5,a-phys-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 606, 81, 6.1, 4.5, 1.5, 0.7, 0.7 +6.4,5,a-phys-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 734, 32, 1.1, 1.0, 1.6, 0.3, 0.4 +NA,NA,a-phys-i3,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 503, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 440, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 681, 17, 1.0, 1.3, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 457, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Frontier - Frontier Regional,06700505, 612, 7, 0.8, 0.3, 0.0, 0.0, 0.0 +-5.199999999999999,1,a-phys-i3,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 151, 10, 0.0, 0.7, 2.0, 0.7, 3.3 +8.0,5,a-phys-i3,2022-23,Gardner - Gardner Elementary School,01030001," 1,054", 6, 0.2, 0.1, 0.3, 0.0, 0.0 +2.4000000000000004,2.4,a-phys-i3,2022-23,Gardner - Gardner High,01030505, 853, 88, 0.5, 2.3, 3.9, 2.2, 1.4 +1.5999999999999996,1.6,a-phys-i3,2022-23,Gardner - Gardner Middle School,01030405, 499, 54, 2.6, 3.6, 2.4, 0.6, 1.6 +NA,NA,a-phys-i3,2022-23,Gateway - Chester Elementary,06720059, 131, 1,"","","","","" +-1.5999999999999996,1,a-phys-i3,2022-23,Gateway - Gateway Regional High,06720505, 170, 24, 3.5, 4.1, 3.5, 0.6, 2.4 +6.0,5,a-phys-i3,2022-23,Gateway - Gateway Regional Middle School,06720405, 200, 24, 5.5, 2.0, 3.0, 1.0, 0.5 +NA,NA,a-phys-i3,2022-23,Gateway - Littleville Elementary School,06720143, 312, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Georgetown High School,01050505, 304, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Georgetown Middle School,01050305, 189, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Penn Brook,01050010, 708, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Georgetown - Perley Elementary,01050005, 84, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Gill-Montague - Gill Elementary,06740005, 108, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Gill-Montague - Great Falls Middle,06740310, 213, 23, 1.9, 5.6, 1.9, 1.4, 0.0 +NA,NA,a-phys-i3,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 160, 1,"","","","","" +6.0,5,a-phys-i3,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 220, 6, 1.8, 0.5, 0.0, 0.0, 0.5 +8.0,5,a-phys-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 200, 12, 2.0, 2.5, 1.0, 0.5, 0.0 +3.2,3.2,a-phys-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 516, 66, 3.9, 4.5, 2.9, 0.4, 1.2 +NA,NA,a-phys-i3,2022-23,Gloucester - Beeman Memorial,01070010, 317, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - East Gloucester Elementary,01070020, 192, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Gloucester - Gloucester High,01070505, 834, 25, 0.5, 2.3, 0.0, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Gloucester - Gloucester PreSchool,01070025, 148, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - Plum Cove School,01070042, 204, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 636, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - Veterans Memorial,01070045, 221, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Gloucester - West Parish,01070050, 377, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Grafton - Grafton High School,01100505, 891, 53, 1.1, 2.8, 1.5, 0.3, 0.2 +7.2,5,a-phys-i3,2022-23,Grafton - Grafton Middle,01100305, 530, 12, 1.7, 0.0, 0.2, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Grafton - Millbury Street Elementary School,01100200, 602, 6, 0.2, 0.7, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Grafton - North Grafton Elementary,01100025, 261, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Grafton - North Street Elementary School,01100030, 557, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Grafton - South Grafton Elementary,01100005, 313, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Granby - East Meadow,01110004, 416, 6, 0.2, 1.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 315, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900," 1,408", 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605," 1,418", 80, 1.2, 1.2, 1.4, 1.3, 0.5 +7.2,5,a-phys-i3,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,697", 77, 0.7, 1.3, 1.6, 0.7, 0.2 +5.2,5,a-phys-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 2,330", 138, 1.1, 1.4, 2.2, 0.5, 0.7 +4.4,4.4,a-phys-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 2,115", 177, 3.5, 1.2, 0.9, 1.7, 0.9 +NA,NA,a-phys-i3,2022-23,Greenfield - Discovery School at Four Corners,01140025, 220, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Greenfield - Federal Street School,01140010, 215, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Greenfield - Greenfield High,01140505, 480, 55, 3.1, 4.8, 1.7, 1.0, 0.8 +6.8,5,a-phys-i3,2022-23,Greenfield - Greenfield Middle,01140305, 320, 32, 4.1, 2.8, 2.5, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Greenfield - Newton School,01140035, 222, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 103, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Boutwell School,06730001, 103, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Florence Roche School,06730010, 532, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 688, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 746, 6, 0.8, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 331, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hadley - Hadley Elementary,01170015, 284, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Hadley - Hopkins Academy,01170505, 231, 9, 0.9, 1.7, 0.4, 0.0, 0.9 +NA,NA,a-phys-i3,2022-23,Halifax - Halifax Elementary,01180005, 570, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Cutler School,06750010, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 454, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 376, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Hamilton-Wenham - Winthrop School,06750015, 326, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 558, 14, 0.0, 0.0, 1.8, 0.7, 0.0 +6.0,5,a-phys-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 386, 16, 0.0, 1.3, 1.8, 0.5, 0.5 +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 329, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 374, 1,"","","","","" +6.8,5,a-phys-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 998, 37, 0.4, 1.5, 0.5, 1.0, 0.3 +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Soule Road,06800030, 315, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 310, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 610, 52, 2.0, 3.9, 1.5, 0.7, 0.5 +8.0,5,a-phys-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 679, 21, 0.7, 1.8, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Hancock - Hancock Elementary,01210005, 63, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hanover - Cedar Elementary,01220004, 509, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hanover - Center Elementary,01220005, 645, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hanover - Hanover High,01220505, 671, 14, 0.6, 0.9, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Hanover - Hanover Middle,01220305, 810, 7, 0.0, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Harvard - Bromfield,01250505, 568, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Harvard - Hildreth Elementary School,01250005, 478, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hatfield - Hatfield Elementary,01270005, 223, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hatfield - Smith Academy,01270505, 136, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 42, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Bradford Elementary,01280008, 556, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Haverhill - Caleb Dustin Hunking School,01280030," 1,109", 39, 1.3, 1.2, 0.7, 0.4, 0.0 +-1.5999999999999996,1,a-phys-i3,2022-23,Haverhill - Consentino Middle School,01280100, 763, 89, 2.2, 2.9, 3.1, 1.0, 2.4 +6.8,5,a-phys-i3,2022-23,Haverhill - Dr Paul Nettle,01280050, 603, 63, 2.7, 4.1, 2.5, 0.8, 0.3 +-8.0,1,a-phys-i3,2022-23,Haverhill - Gateway Academy,01280515, 100, 42, 8.0, 11.0, 12.0, 7.0, 4.0 +NA,NA,a-phys-i3,2022-23,Haverhill - Golden Hill,01280026, 495, 0,"","","","","" +-10.0,1,a-phys-i3,2022-23,Haverhill - Greenleaf Academy,01280033, 44, 19, 13.6, 9.1, 13.6, 2.3, 4.5 +-0.40000000000000036,1,a-phys-i3,2022-23,Haverhill - Haverhill High,01280505," 2,092", 353, 4.4, 4.7, 4.7, 0.9, 2.1 +7.2,5,a-phys-i3,2022-23,Haverhill - John G Whittier,01280085, 503, 28, 2.0, 1.4, 1.2, 0.8, 0.2 +NA,NA,a-phys-i3,2022-23,Haverhill - Moody,01280045, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Moody Preschool Extension,01280001, 142, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 557, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Haverhill - Silver Hill Elementary School,01280067, 508, 16, 2.6, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Haverhill - Tilton,01280075, 338, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Tilton Upper Middle School,01280105, 185, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Haverhill - Walnut Square,01280080, 146, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hawlemont - Hawlemont Regional,06850005, 98, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 131, 14, 3.8, 3.1, 1.5, 1.5, 0.8 +NA,NA,a-phys-i3,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 314, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 221, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Hingham - East Elementary School,01310005, 529, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Hingham - Hingham High,01310505," 1,173", 9, 0.3, 0.3, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Hingham - Hingham Middle School,01310410, 852, 10, 0.4, 0.7, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Hingham - Plymouth River,01310019, 388, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hingham - South Elementary,01310020, 508, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Hingham - Wm L Foster Elementary,01310010, 409, 6, 1.0, 0.5, 0.0, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 668, 59, 2.1, 3.6, 2.4, 0.6, 0.1 +8.0,5,a-phys-i3,2022-23,Holbrook - John F Kennedy,01330018, 722, 7, 0.6, 0.1, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Holland - Holland Elementary,01350005, 239, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Holliston High,01360505, 814, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Miller School,01360007, 614, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Placentino Elementary,01360010, 733, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Holliston - Robert H. Adams Middle School,01360305, 665, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Holyoke - E N White Elementary,01370045, 456, 10, 0.9, 0.7, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Holyoke - H.B. Lawrence School,01370070, 210, 6, 1.0, 1.9, 0.0, 0.0, 0.0 +1.2000000000000002,1.2,a-phys-i3,2022-23,Holyoke - Holyoke High,01370505," 1,609", 224, 3.2, 3.9, 3.8, 1.3, 1.7 +5.2,5,a-phys-i3,2022-23,Holyoke - Holyoke Middle School,01370325, 298, 85, 7.7, 9.7, 9.1, 1.3, 0.7 +2.8,2.8,a-phys-i3,2022-23,Holyoke - Holyoke STEM Academy,01370320, 314, 73, 7.6, 6.1, 5.7, 2.5, 1.3 +8.0,5,a-phys-i3,2022-23,Holyoke - Joseph Metcalf School,01370003, 401, 26, 4.5, 1.2, 0.7, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Holyoke - Kelly Elementary,01370040, 379, 44, 6.1, 2.9, 2.1, 0.3, 0.3 +8.0,5,a-phys-i3,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 442, 23, 1.6, 2.3, 0.5, 0.9, 0.0 +8.0,5,a-phys-i3,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 369, 22, 4.1, 1.4, 0.3, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 387, 12, 0.5, 1.3, 0.8, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Holyoke - Morgan Full Service Community School,01370025, 361, 0,"","","","","" +2.4000000000000004,2.4,a-phys-i3,2022-23,Holyoke - William R. Peck School,01370030, 215, 48, 4.7, 6.0, 7.0, 3.3, 1.4 +6.8,5,a-phys-i3,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 731, 32, 0.7, 0.8, 1.9, 0.7, 0.3 +NA,NA,a-phys-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 406, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 340, 25, 0.9, 4.7, 1.2, 0.3, 0.3 +6.8,5,a-phys-i3,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 300, 19, 3.3, 2.3, 0.0, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 444, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopedale - Memorial,01380010, 568, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopedale - Park Street School,01380003, 117, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopkinton - Elmwood,01390010, 645, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopkinton - Hopkins Elementary School,01390015, 648, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hopkinton - Hopkinton High,01390505," 1,251", 21, 0.3, 0.6, 0.6, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Hopkinton - Hopkinton Middle School,01390305, 988, 6, 0.3, 0.1, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 115, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Hopkinton - Marathon Elementary School,01390005, 617, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Hudson - C A Farley,01410030, 458, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Hudson - David J. Quinn Middle School,01410410, 583, 9, 0.3, 0.5, 0.0, 0.2, 0.5 +NA,NA,a-phys-i3,2022-23,Hudson - Forest Avenue Elementary,01410015, 299, 1,"","","","","" +6.0,5,a-phys-i3,2022-23,Hudson - Hudson High,01410505, 849, 40, 0.7, 1.8, 1.3, 0.5, 0.5 +NA,NA,a-phys-i3,2022-23,Hudson - Mulready Elementary,01410007, 257, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Hull - Hull High,01420505, 243, 21, 2.5, 4.1, 1.2, 0.8, 0.0 +6.8,5,a-phys-i3,2022-23,Hull - Lillian M Jacobs,01420015, 371, 7, 0.3, 1.3, 0.0, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Hull - Memorial Middle,01420305, 174, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 817, 48, 2.4, 2.3, 0.5, 0.6, 0.0 +8.0,5,a-phys-i3,2022-23,Ipswich - Ipswich High,01440505, 507, 8, 0.6, 0.8, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Ipswich - Ipswich Middle School,01440305, 367, 7, 1.6, 0.3, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 372, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ipswich - Winthrop,01440015, 392, 1,"","","","","" +5.2,5,a-phys-i3,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 606, 20, 0.3, 1.0, 1.2, 0.2, 0.7 +7.2,5,a-phys-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010," 1,626", 82, 2.4, 1.8, 0.4, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,King Philip - King Philip Middle School,06900510, 685, 13, 0.1, 0.9, 0.9, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,King Philip - King Philip Regional High,06900505," 1,157", 28, 1.0, 0.9, 0.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Kingston - Kingston Elementary,01450005, 687, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Kingston - Kingston Intermediate,01450020, 618, 25, 1.3, 1.1, 1.1, 0.3, 0.2 +8.0,5,a-phys-i3,2022-23,Lawrence - Alexander B Bruce,01490015, 453, 14, 1.5, 0.9, 0.4, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - Arlington Elementary,01490009, 664, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Lawrence - Arlington Middle School,01490017, 642, 67, 5.8, 3.4, 0.8, 0.0, 0.5 +NA,NA,a-phys-i3,2022-23,Lawrence - Edward F. Parthum,01490053, 744, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - Emily G Wetherbee,01490080, 544, 36, 2.9, 2.9, 0.7, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Lawrence - Francis M Leahy,01490040, 433, 19, 2.8, 0.5, 0.7, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Lawrence - Frost Middle School,01490525, 552, 27, 2.9, 1.4, 0.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lawrence - Gerard A. Guilmette,01490022, 518, 8, 1.4, 0.2, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lawrence - Guilmette Middle School,01490025, 508, 15, 1.4, 1.2, 0.4, 0.0, 0.0 +4.0,4.0,a-phys-i3,2022-23,Lawrence - High School Learning Center,01490536, 382, 18, 1.3, 1.6, 0.3, 0.5, 1.0 +NA,NA,a-phys-i3,2022-23,Lawrence - James F Hennessey,01490020, 364, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - John Breen School,01490003, 368, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - John K Tarbox,01490075, 324, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 212, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 259, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Lawrence - Lawrence High School,01490515," 3,402", 203, 1.5, 2.5, 1.1, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Lawrence - Leonard Middle School,01490090, 369, 8, 0.5, 0.8, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - Oliver Elementary School,01490048, 512, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - Oliver Middle School,01490049, 375, 21, 1.1, 2.7, 1.3, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Lawrence - Parthum Middle School,01490027, 619, 12, 0.8, 1.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - RISE Academy,01490615, 93, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Robert Frost,01490018, 611, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 258, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - School for Exceptional Studies,01490537, 121, 6, 2.5, 1.7, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 727, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lawrence - Spark Academy,01490085, 479, 29, 4.6, 1.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 868, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 679, 20, 1.5, 0.9, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lee - Lee Elementary,01500025, 353, 8, 1.7, 0.6, 0.0, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Lee - Lee Middle/High School,01500505, 334, 19, 1.5, 2.1, 0.9, 0.9, 0.3 +NA,NA,a-phys-i3,2022-23,Leicester - Leicester Elementary,01510005, 513, 5,"","","","","" +5.2,5,a-phys-i3,2022-23,Leicester - Leicester High,01510505, 428, 28, 1.9, 2.6, 0.7, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Leicester - Leicester Integrated Preschool,01510001, 59, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Leicester - Leicester Middle,01510015, 425, 32, 2.8, 2.1, 0.9, 0.9, 0.7 +8.0,5,a-phys-i3,2022-23,Lenox - Lenox Memorial High,01520505, 449, 20, 2.2, 1.8, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lenox - Morris,01520015, 351, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Bennett,01530003, 123, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 807, 79, 1.9, 3.7, 2.5, 0.9, 0.9 +NA,NA,a-phys-i3,2022-23,Leominster - Fall Brook,01530007, 641, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Frances Drake School,01530010, 496, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Johnny Appleseed,01530025, 684, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Leominster - Leominster Center for Excellence,01530515, 56, 4,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Leominster - Leominster High School,01530505," 1,153", 131, 3.2, 2.9, 2.9, 1.0, 1.3 +NA,NA,a-phys-i3,2022-23,Leominster - Lincoln School,01530005, 44, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Leominster - Northwest,01530030, 777, 8, 0.6, 0.1, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Leominster - Priest Street,01530040, 137, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Leominster - Samoset School,01530045, 522, 37, 1.5, 2.5, 1.7, 1.0, 0.4 +7.2,5,a-phys-i3,2022-23,Leominster - Sky View Middle School,01530320, 935, 94, 3.0, 4.6, 1.7, 0.5, 0.2 +NA,NA,a-phys-i3,2022-23,Leverett - Leverett Elementary,01540005, 143, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Bowman,01550008, 463, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Bridge,01550006, 402, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Fiske,01550015, 351, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Harrington,01550030, 405, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lexington - Jonas Clarke Middle,01550305, 839, 11, 0.6, 0.5, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Lexington - Joseph Estabrook,01550010, 564, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Lexington Children's Place,01550001, 92, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lexington - Lexington High,01550505," 2,349", 8, 0.1, 0.1, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lexington - Maria Hastings,01550035, 627, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Lexington - Wm Diamond Middle,01550310, 975, 3,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 459, 11, 0.0, 0.0, 0.2, 1.1, 1.1 +NA,NA,a-phys-i3,2022-23,Lincoln - Hanscom Middle,01570305, 245, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lincoln - Hanscom Primary,01570006, 283, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Lincoln - Lincoln School,01570025, 555, 10, 1.6, 0.2, 0.0, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,496", 23, 0.7, 0.5, 0.3, 0.0, 0.1 +8.0,5,a-phys-i3,2022-23,Littleton - Littleton High School,01580505, 485, 9, 0.0, 1.4, 0.0, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Littleton - Littleton Middle School,01580305, 391, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Littleton - Russell St Elementary,01580015, 393, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Littleton - Shaker Lane Elementary,01580005, 458, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Longmeadow - Blueberry Hill,01590005, 400, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Longmeadow - Center,01590010, 436, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Longmeadow - Glenbrook Middle,01590017, 335, 11, 1.8, 0.3, 1.2, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Longmeadow - Longmeadow High,01590505, 915, 38, 1.9, 1.3, 0.8, 0.1, 0.1 +8.0,5,a-phys-i3,2022-23,Longmeadow - Williams Middle,01590305, 288, 6, 2.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Longmeadow - Wolf Swamp Road,01590025, 461, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lowell - Abraham Lincoln,01600020, 532, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Lowell - B.F. Butler Middle School,01600310, 545, 51, 3.7, 3.5, 1.7, 0.4, 0.2 +6.4,5,a-phys-i3,2022-23,Lowell - Bartlett Community Partnership,01600090, 542, 45, 2.6, 3.5, 1.5, 0.4, 0.4 +NA,NA,a-phys-i3,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 136, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lowell - Charles W Morey,01600030, 517, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 504, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Lowell - Dr An Wang School,01600345, 700, 33, 2.1, 0.9, 1.6, 0.0, 0.1 +8.0,5,a-phys-i3,2022-23,Lowell - Dr Gertrude Bailey,01600002, 500, 8, 1.4, 0.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 63, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell - Greenhalge,01600015, 527, 11, 1.5, 0.6, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lowell - Henry J Robinson Middle,01600330, 658, 53, 4.9, 1.7, 1.1, 0.5, 0.0 +7.6,5,a-phys-i3,2022-23,Lowell - James S Daley Middle School,01600315, 705, 9, 0.6, 0.1, 0.4, 0.0, 0.1 +5.6,5,a-phys-i3,2022-23,Lowell - James Sullivan Middle School,01600340, 649, 75, 5.9, 3.2, 1.5, 0.3, 0.6 +8.0,5,a-phys-i3,2022-23,Lowell - John J Shaughnessy,01600050, 524, 26, 2.5, 1.9, 0.6, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell - Joseph McAvinnue,01600010, 498, 0,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 683, 73, 2.9, 3.8, 1.8, 0.6, 1.6 +NA,NA,a-phys-i3,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 22, 1,"","","","","" +-10.8,1,a-phys-i3,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 43, 27, 25.6, 18.6, 9.3, 4.7, 4.7 +6.8,5,a-phys-i3,2022-23,Lowell - Lowell High,01600505," 3,423", 236, 0.9, 3.1, 2.0, 0.6, 0.3 +NA,NA,a-phys-i3,2022-23,Lowell - Moody Elementary,01600027, 270, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell - Pawtucketville Memorial,01600036, 501, 8, 0.6, 0.8, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell - Peter W Reilly,01600040, 512, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell - Pyne Arts,01600018, 523, 17, 0.8, 1.7, 0.4, 0.4, 0.0 +7.2,5,a-phys-i3,2022-23,Lowell - Rogers STEM Academy,01600005, 935, 29, 0.6, 1.4, 0.7, 0.1, 0.2 +NA,NA,a-phys-i3,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 520, 1,"","","","","" +-10.399999999999999,1,a-phys-i3,2022-23,Lowell - The Career Academy,01600515, 152, 55, 5.9, 13.8, 10.5, 1.3, 4.6 +NA,NA,a-phys-i3,2022-23,Lowell - Washington,01600055, 265, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 826, 11, 0.4, 0.7, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 133, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Ludlow - East Street Elementary School,01610010, 380, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Ludlow - Harris Brook Elementary School,01610665, 668, 12, 0.7, 0.6, 0.3, 0.1, 0.0 +5.6,5,a-phys-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 815, 55, 1.0, 1.0, 2.6, 1.6, 0.6 +5.6,5,a-phys-i3,2022-23,Ludlow - Paul R Baird Middle,01610305, 526, 44, 3.0, 2.7, 1.9, 0.2, 0.6 +NA,NA,a-phys-i3,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 6, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Lunenburg - Lunenburg High,01620505, 450, 15, 0.4, 1.3, 0.2, 0.2, 1.1 +8.0,5,a-phys-i3,2022-23,Lunenburg - Lunenburg Middle School,01620305, 388, 26, 4.4, 1.5, 0.8, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lunenburg - Lunenburg Primary School,01620010, 397, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 364, 6, 1.1, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lynn - A Drewicz Elementary,01630016, 549, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Aborn,01630011, 231, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Lynn - Breed Middle School,01630405," 1,340", 106, 2.6, 3.2, 1.6, 0.3, 0.2 +NA,NA,a-phys-i3,2022-23,Lynn - Brickett Elementary,01630020, 345, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Capt William G Shoemaker,01630090, 332, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Lynn - Classical High,01630505," 2,088", 123, 1.8, 2.7, 0.9, 0.1, 0.3 +8.0,5,a-phys-i3,2022-23,Lynn - Cobbet Elementary,01630035, 670, 15, 0.9, 0.6, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lynn - E J Harrington,01630045, 677, 12, 0.3, 1.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Lynn - Edward A Sisson,01630095, 462, 4,"","","","","" +-10.0,1,a-phys-i3,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 133, 27, 3.0, 6.8, 3.0, 3.0, 4.5 +NA,NA,a-phys-i3,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 83, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lynn - Hood,01630055, 525, 20, 2.5, 1.0, 0.2, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Lynn - Ingalls,01630060, 769, 16, 0.4, 1.4, 0.3, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Lynn - Julia F Callahan,01630030, 439, 12, 0.9, 1.1, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Lynn - Lincoln-Thomson,01630070, 208, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Lynn - Lynn English High,01630510," 2,498", 111, 0.4, 1.2, 1.1, 0.8, 0.8 +7.6,5,a-phys-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605," 1,575", 87, 2.1, 2.5, 0.7, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Lynn - Lynn Woods,01630075, 165, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Lynn - Pickering Middle,01630420, 589, 45, 3.2, 2.7, 0.5, 0.7, 0.5 +NA,NA,a-phys-i3,2022-23,Lynn - Robert L Ford,01630050, 441, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Sewell-Anderson,01630085, 309, 2,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Lynn - Thurgood Marshall Mid,01630305," 1,330", 144, 4.4, 3.6, 1.4, 0.5, 0.9 +NA,NA,a-phys-i3,2022-23,Lynn - Tracy,01630100, 399, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 83, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - Washington Elementary School,01630005, 469, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynn - William R Fallon,01630080, 34, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Lynn - Wm P Connery,01630040, 605, 13, 0.3, 1.0, 0.3, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Lynnfield - Huckleberry Hill,01640010, 462, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Lynnfield High,01640505, 570, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Lynnfield Middle School,01640405, 720, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Lynnfield Preschool,01640005, 48, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Lynnfield - Summer Street,01640020, 424, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 100, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Malden - Beebe,01650003, 936, 11, 0.2, 0.6, 0.3, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Malden - Ferryway,01650013, 955, 36, 1.4, 1.8, 0.4, 0.1, 0.1 +8.0,5,a-phys-i3,2022-23,Malden - Forestdale,01650027, 632, 33, 1.9, 1.7, 0.9, 0.6, 0.0 +8.0,5,a-phys-i3,2022-23,Malden - Linden,01650047, 904, 38, 1.8, 1.8, 0.4, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Malden - Malden Early Learning Center,01650049, 347, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Malden - Malden High,01650505," 1,983", 86, 1.9, 1.6, 0.5, 0.3, 0.1 +8.0,5,a-phys-i3,2022-23,Malden - Salemwood,01650057," 1,143", 28, 1.2, 1.0, 0.2, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 230, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 421, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 285, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 297, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mansfield - Everett W Robinson,01670007, 778, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Mansfield - Harold L Qualters Middle,01670035, 812, 12, 0.5, 0.9, 0.1, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 724, 8, 0.7, 0.3, 0.1, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Mansfield - Mansfield High,01670505," 1,112", 30, 0.1, 0.6, 1.5, 0.2, 0.3 +NA,NA,a-phys-i3,2022-23,Mansfield - Roland Green School,01670003, 115, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 301, 9, 0.0, 2.3, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marblehead - Glover,01680020, 332, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 459, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Marblehead - Marblehead High,01680505, 893, 9, 0.4, 0.2, 0.1, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 422, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Marblehead - Village School,01680016, 567, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 234, 12, 4.3, 0.9, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marion - Sippican,01690005, 415, 0,"","","","","" +2.4000000000000004,2.4,a-phys-i3,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045," 1,125", 133, 3.9, 3.2, 2.5, 0.8, 1.4 +8.0,5,a-phys-i3,2022-23,Marlborough - Charles Jaworek School,01700030, 740, 19, 1.5, 0.5, 0.4, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Marlborough - Early Childhood Center,01700006, 251, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Marlborough - Francis J Kane,01700008, 529, 8, 1.1, 0.2, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 870, 16, 1.0, 0.6, 0.1, 0.1, 0.0 +1.5999999999999996,1.6,a-phys-i3,2022-23,Marlborough - Marlborough High,01700505," 1,173", 94, 0.6, 2.8, 1.6, 1.4, 1.6 +8.0,5,a-phys-i3,2022-23,Marlborough - Richer,01700025, 599, 10, 0.7, 0.8, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marshfield - Daniel Webster,01710015, 390, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Marshfield - Eames Way School,01710005, 271, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Marshfield - Furnace Brook Middle,01710310, 879, 21, 1.0, 1.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Marshfield - Gov Edward Winslow,01710020, 356, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Marshfield - Marshfield High,01710505," 1,200", 25, 0.6, 0.3, 0.5, 0.8, 0.0 +NA,NA,a-phys-i3,2022-23,Marshfield - Martinson Elementary,01710025, 468, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Marshfield - South River,01710010, 261, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 779, 33, 0.8, 1.5, 1.7, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 189, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 372, 9, 1.1, 1.1, 0.3, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Masconomet - Masconomet Regional High School,07050505," 1,002", 20, 0.8, 0.6, 0.4, 0.1, 0.1 +NA,NA,a-phys-i3,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 562, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Mashpee - Kenneth Coombs School,01720005, 425, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 679, 42, 2.4, 2.4, 1.0, 0.1, 0.3 +NA,NA,a-phys-i3,2022-23,Mashpee - Quashnet School,01720035, 419, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505," 1,222", 92, 2.5, 3.1, 1.5, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Mattapoisett - Center,01730005, 241, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Mattapoisett - Old Hammondtown,01730010, 192, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Maynard - Fowler School,01740305, 475, 8, 0.8, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Maynard - Green Meadow,01740010, 441, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Maynard - Maynard High,01740505, 325, 14, 1.8, 1.2, 0.6, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Medfield - Dale Street,01750005, 394, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Medfield Senior High,01750505, 742, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Memorial School,01750003, 436, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Ralph Wheelock School,01750007, 384, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medfield - Thomas Blake Middle,01750305, 587, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medford - Brooks School,01760130, 580, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Medford - Curtis-Tufts,01760510, 22, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medford - John J McGlynn Elementary School,01760068, 529, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Medford - John J. McGlynn Middle School,01760320, 492, 13, 1.8, 0.4, 0.2, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Medford - Madeleine Dugger Andrews,01760315, 470, 32, 3.0, 2.8, 1.1, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Medford - Medford High,01760505," 1,303", 38, 0.8, 1.1, 0.7, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Medford - Milton Fuller Roberts,01760150, 571, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Medford - Missituk Elementary School,01760140, 437, 6, 1.1, 0.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Medway - Burke/Memorial Elementary School,01770015, 498, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Medway - John D Mc Govern Elementary,01770013, 382, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Medway - Medway High,01770505, 626, 17, 0.6, 1.0, 0.8, 0.0, 0.3 +7.2,5,a-phys-i3,2022-23,Medway - Medway Middle,01770305, 661, 13, 0.6, 0.6, 0.5, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Melrose - Early Childhood Center,01780003, 347, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Herbert Clark Hoover,01780017, 305, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Horace Mann,01780025, 248, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Lincoln,01780020, 418, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Melrose High,01780505, 937, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Melrose - Melrose Middle,01780305, 885, 12, 0.2, 0.6, 0.5, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Melrose - Roosevelt,01780035, 416, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Melrose - Winthrop,01780050, 384, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mendon-Upton - Henry P Clough,07100179, 369, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mendon-Upton - Memorial School,07100001, 536, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 647, 29, 2.8, 0.9, 0.8, 0.0, 0.0 +5.2,5,a-phys-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 614, 28, 0.5, 1.0, 0.8, 1.6, 0.7 +8.0,5,a-phys-i3,2022-23,Methuen - Comprehensive Grammar School,01810050," 1,113", 52, 1.9, 1.7, 1.0, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Methuen - Donald P Timony Grammar,01810060," 1,341", 28, 0.4, 1.0, 0.6, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Methuen - Marsh Grammar School,01810030," 1,128", 35, 1.0, 1.7, 0.2, 0.2, 0.1 +3.2,3.2,a-phys-i3,2022-23,Methuen - Methuen High,01810505," 2,045", 195, 1.8, 2.5, 3.3, 0.8, 1.2 +8.0,5,a-phys-i3,2022-23,Methuen - Tenney Grammar School,01810055," 1,333", 98, 3.0, 3.0, 1.0, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 593, 6, 0.8, 0.0, 0.2, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Middleborough - John T. Nichols Middle,01820305, 732, 40, 1.9, 2.9, 0.5, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 638, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 317, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Middleborough - Middleborough High,01820505, 888, 43, 1.8, 1.8, 0.9, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,Middleton - Fuller Meadow,01840003, 298, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Middleton - Howe-Manning,01840005, 438, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Milford - Brookside,01850065, 588, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Milford - Memorial,01850010, 513, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Milford - Milford High,01850505," 1,407", 72, 0.4, 1.4, 1.4, 0.7, 1.3 +NA,NA,a-phys-i3,2022-23,Milford - Shining Star Early Childhood Center,01850075, 198, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Milford - Stacy Middle,01850305," 1,086", 128, 2.1, 5.2, 2.6, 0.6, 1.3 +7.6,5,a-phys-i3,2022-23,Milford - Woodland,01850090," 1,015", 21, 1.4, 0.1, 0.5, 0.0, 0.1 +NA,NA,a-phys-i3,2022-23,Millbury - Elmwood Street,01860017, 464, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 760, 60, 1.8, 2.2, 2.5, 0.5, 0.8 +8.0,5,a-phys-i3,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 477, 15, 1.0, 1.9, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Millis - Clyde F Brown,01870005, 634, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Millis - Millis High School,01870505, 321, 7, 1.6, 0.3, 0.0, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Millis - Millis Middle,01870020, 276, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Millis - TIES,01870515, 6, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Charles S Pierce Middle,01890410, 964, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Collicot,01890005, 589, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Cunningham School,01890007, 646, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Milton - Glover,01890010, 637, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Milton - Milton High,01890505," 1,082", 9, 0.3, 0.5, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Milton - Tucker,01890020, 473, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 697, 10, 0.1, 0.9, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 279, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Mohawk Trail - Colrain Central,07170010, 107, 3,"","","","","" +2.4000000000000004,2.4,a-phys-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 294, 23, 1.4, 3.1, 1.7, 0.3, 1.4 +NA,NA,a-phys-i3,2022-23,Mohawk Trail - Sanderson Academy,07170020, 146, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 152, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 518, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 723, 49, 2.1, 1.4, 2.4, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 455, 28, 4.4, 1.1, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Monson - Granite Valley School,01910030, 413, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Monson - Monson High School,01910505, 310, 10, 1.3, 0.6, 0.6, 0.6, 0.0 +NA,NA,a-phys-i3,2022-23,Monson - Quarry Hill Community School,01910010, 139, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605," 1,431", 116, 2.4, 2.2, 1.7, 1.0, 0.8 +NA,NA,a-phys-i3,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 239, 2,"","","","","" +5.2,5,a-phys-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 551, 34, 3.3, 1.3, 0.7, 0.2, 0.7 +8.0,5,a-phys-i3,2022-23,Mount Greylock - Williamstown Elementary,07150010, 444, 7, 0.7, 0.2, 0.2, 0.5, 0.0 +7.2,5,a-phys-i3,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105," 1,650", 141, 3.3, 2.8, 1.4, 0.8, 0.2 +NA,NA,a-phys-i3,2022-23,Nahant - Johnson,01960010, 160, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Nantucket - Cyrus Peirce,01970010, 395, 31, 3.0, 3.3, 1.0, 0.5, 0.0 +NA,NA,a-phys-i3,2022-23,Nantucket - Nantucket Elementary,01970005, 429, 2,"","","","","" +6.8,5,a-phys-i3,2022-23,Nantucket - Nantucket High,01970505, 612, 50, 2.9, 2.8, 1.8, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Nantucket - Nantucket Intermediate School,01970020, 354, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Narragansett - Narragansett Middle,07200305, 372, 12, 1.1, 1.1, 0.5, 0.5, 0.0 +7.2,5,a-phys-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 484, 22, 2.1, 1.4, 0.6, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Narragansett - Templeton Elementary School,07200020, 675, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Nashoba - Center School,07250020, 508, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Nashoba - Florence Sawyer School,07250025, 749, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Nashoba - Hale,07250310, 273, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Nashoba - Luther Burbank Middle School,07250305, 245, 8, 1.2, 0.4, 0.8, 0.8, 0.0 +NA,NA,a-phys-i3,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 486, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Nashoba - Nashoba Regional,07250505, 844, 16, 0.4, 0.8, 0.6, 0.1, 0.0 +4.4,4.4,a-phys-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 751, 62, 1.1, 3.5, 2.4, 0.4, 0.9 +NA,NA,a-phys-i3,2022-23,Natick - Bennett-Hemenway,01980005, 493, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Natick - Brown,01980010, 525, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Natick - J F Kennedy Middle School,01980305, 903, 21, 1.1, 0.8, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Natick - Johnson,01980031, 136, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Natick - Lilja Elementary,01980035, 430, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Natick - Memorial,01980043, 440, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Natick - Natick High,01980505," 1,773", 17, 0.1, 0.6, 0.2, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Natick - Wilson Middle,01980310, 785, 19, 1.7, 0.5, 0.3, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Nauset - Nauset Regional High,06600505, 796, 30, 0.4, 0.9, 0.4, 2.0, 0.1 +8.0,5,a-phys-i3,2022-23,Nauset - Nauset Regional Middle,06600305, 541, 36, 2.6, 1.8, 1.5, 0.7, 0.0 +NA,NA,a-phys-i3,2022-23,Needham - Broadmeadow,01990005, 513, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Needham - High Rock School,01990410, 449, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Needham - John Eliot,01990020, 430, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Needham - Needham High,01990505," 1,652", 9, 0.2, 0.1, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Needham - Newman Elementary,01990050, 723, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Needham - Pollard Middle,01990405, 826, 17, 1.5, 0.4, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Needham - Sunita L. Williams Elementary,01990035, 538, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Needham - William Mitchell,01990040, 453, 5,"","","","","" +0.40000000000000036,1,a-phys-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 822, 142, 5.8, 3.9, 3.9, 1.7, 1.9 +NA,NA,a-phys-i3,2022-23,New Bedford - Abraham Lincoln,02010095, 681, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Alfred J Gomes,02010063, 542, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Betsey B Winslow,02010140, 239, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Carlos Pacheco,02010105, 368, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Casimir Pulaski,02010123, 603, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Charles S Ashley,02010010, 292, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 285, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Ellen R Hathaway,02010075, 267, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Elwyn G Campbell,02010020, 335, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Hayden/McFadden,02010078, 735, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 445, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - James B Congdon,02010040, 355, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Jireh Swift,02010130, 264, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - John Avery Parker,02010115, 283, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - John B Devalles,02010050, 317, 2,"","","","","" +6.8,5,a-phys-i3,2022-23,New Bedford - Keith Middle School,02010405, 912, 42, 1.0, 1.8, 1.1, 0.4, 0.3 +7.2,5,a-phys-i3,2022-23,New Bedford - New Bedford High,02010505," 3,115", 138, 1.0, 2.3, 0.9, 0.1, 0.2 +7.2,5,a-phys-i3,2022-23,New Bedford - Normandin Middle School,02010410," 1,120", 86, 1.8, 4.4, 1.2, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 145, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,New Bedford - Roosevelt Middle School,02010415, 845, 52, 1.1, 3.0, 1.4, 0.6, 0.1 +NA,NA,a-phys-i3,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 659, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,New Bedford - Thomas R Rodman,02010125, 221, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,New Bedford - Trinity Day Academy,02010510, 114, 17, 1.8, 7.9, 5.3, 0.0, 0.0 +6.4,5,a-phys-i3,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 257, 40, 1.2, 4.7, 7.4, 1.9, 0.4 +NA,NA,a-phys-i3,2022-23,New Bedford - William H Taylor,02010135, 261, 1,"","","","","" +-2.0,1,a-phys-i3,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 746, 94, 4.4, 2.7, 1.5, 1.5, 2.5 +NA,NA,a-phys-i3,2022-23,New Salem-Wendell - Swift River,07280015, 140, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 288, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 593, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newburyport - Newburyport High,02040505, 829, 7, 0.1, 0.6, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newburyport - Rupert A Nock Middle,02040305, 490, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - A E Angier,02070005, 384, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - Bigelow Middle,02070305, 453, 15, 2.2, 0.9, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Bowen,02070015, 369, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - C C Burr,02070020, 373, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Cabot,02070025, 458, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - Charles E Brown Middle,02070310, 776, 17, 1.5, 0.5, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Countryside,02070040, 395, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - F A Day Middle,02070315, 939, 18, 1.4, 0.2, 0.2, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Franklin,02070055, 374, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Horace Mann,02070075, 367, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - John Ward,02070120, 199, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Lincoln-Eliot,02070070, 354, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Mason-Rice,02070080, 338, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Memorial Spaulding,02070105, 406, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Newton Early Childhood Program,02070108, 240, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Newton - Newton North High,02070505," 2,145", 61, 1.4, 1.1, 0.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Newton - Newton South High,02070510," 1,880", 16, 0.2, 0.3, 0.4, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Newton - Oak Hill Middle,02070320, 676, 16, 1.6, 0.6, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Newton - Peirce,02070100, 253, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Underwood,02070115, 230, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Williams,02070125, 240, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Newton - Zervas,02070130, 419, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Norfolk - Freeman-Kennedy School,02080005, 528, 10, 1.5, 0.4, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Norfolk - H Olive Day,02080015, 497, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 585, 26, 1.4, 1.2, 1.2, 0.5, 0.2 +1.5999999999999996,1.6,a-phys-i3,2022-23,North Adams - Brayton,02090035, 247, 20, 1.6, 3.6, 0.8, 0.4, 1.6 +4.8,4.8,a-phys-i3,2022-23,North Adams - Colegrove Park Elementary,02090008, 265, 9, 1.5, 1.1, 0.0, 0.0, 0.8 +-1.1999999999999993,1,a-phys-i3,2022-23,North Adams - Drury High,02090505, 515, 67, 1.6, 4.9, 2.3, 1.9, 2.3 +NA,NA,a-phys-i3,2022-23,North Adams - Greylock,02090015, 284, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 459, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Annie L Sargent School,02110018, 472, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Atkinson,02110001, 287, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Franklin,02110010, 391, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Andover - Kittredge,02110015, 230, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,North Andover - North Andover High,02110505," 1,355", 25, 0.4, 1.1, 0.2, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,North Andover - North Andover Middle,02110305," 1,070", 33, 1.1, 1.1, 0.6, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,North Andover - Thomson,02110020, 318, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Amvet Boulevard,02120007, 422, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Community,02120030, 311, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Falls,02120010, 235, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 541, 1,"","","","","" +5.2,5,a-phys-i3,2022-23,North Attleborough - North Attleboro High,02120505," 1,140", 28, 0.0, 0.7, 0.7, 0.4, 0.7 +NA,NA,a-phys-i3,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 206, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,North Attleborough - North Attleborough Middle,02120305, 971, 18, 0.2, 0.7, 0.6, 0.1, 0.2 +NA,NA,a-phys-i3,2022-23,North Attleborough - Roosevelt Avenue,02120015, 261, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,North Brookfield - North Brookfield Elementary,02150015, 324, 14, 2.2, 0.9, 1.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,North Brookfield - North Brookfield High,02150505, 153, 15, 5.9, 2.6, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,North Middlesex - Ashby Elementary,07350010, 147, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,North Middlesex - Hawthorne Brook,07350030, 474, 6, 0.4, 0.4, 0.2, 0.0, 0.2 +8.0,5,a-phys-i3,2022-23,North Middlesex - Nissitissit Middle School,07350310, 495, 29, 2.0, 2.2, 1.4, 0.2, 0.0 +-2.0,1,a-phys-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 791, 71, 0.5, 2.1, 1.6, 2.1, 2.5 +NA,NA,a-phys-i3,2022-23,North Middlesex - Spaulding Memorial,07350005, 432, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 134, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Middlesex - Varnum Brook,07350035, 653, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - E Ethel Little School,02170003, 333, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - J Turner Hood,02170010, 393, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - L D Batchelder,02170005, 469, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,North Reading - North Reading High,02170505, 649, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,North Reading - North Reading Middle,02170305, 547, 13, 1.6, 0.5, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Northampton - Bridge Street,02100005, 292, 6, 0.7, 1.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Northampton - Jackson Street,02100020, 298, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Northampton - John F Kennedy Middle School,02100410, 608, 35, 1.8, 2.1, 1.2, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Northampton - Leeds,02100025, 308, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Northampton - Northampton High,02100505, 921, 30, 1.1, 1.1, 0.4, 0.5, 0.1 +NA,NA,a-phys-i3,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 240, 0,"","","","","" +0.7999999999999998,1,a-phys-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 570, 59, 2.5, 3.0, 2.1, 1.1, 1.8 +7.2,5,a-phys-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505," 1,232", 9, 0.2, 0.1, 0.2, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Northborough - Fannie E Proctor,02130015, 264, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Northborough - Lincoln Street,02130003, 295, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Northborough - Marguerite E Peaslee,02130014, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Northborough - Marion E Zeh,02130020, 256, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Northborough - Robert E. Melican Middle School,02130305, 560, 8, 0.0, 0.2, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Northbridge - Northbridge Elementary School,02140001," 1,007", 3,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Northbridge - Northbridge High,02140505, 520, 21, 0.4, 1.2, 0.2, 1.5, 0.8 +4.8,4.8,a-phys-i3,2022-23,Northbridge - Northbridge Middle,02140305, 487, 30, 0.6, 1.6, 1.8, 1.2, 0.8 +2.8,2.8,a-phys-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605," 1,305", 100, 1.7, 2.1, 1.8, 0.8, 1.3 +5.6,5,a-phys-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 540, 47, 1.3, 4.1, 2.4, 0.4, 0.6 +8.0,5,a-phys-i3,2022-23,Norton - Henri A. Yelle,02180060, 339, 9, 1.5, 1.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Norton - J C Solmonese,02180015, 532, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norton - L G Nourse Elementary,02180010, 304, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Norton - Norton High,02180505, 696, 13, 0.7, 0.4, 0.6, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Norton - Norton Middle,02180305, 563, 20, 1.6, 0.9, 0.7, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Norwell - Grace Farrar Cole,02190005, 527, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Norwell - Norwell High,02190505, 603, 7, 0.0, 0.0, 0.8, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Norwell - Norwell Middle School,02190405, 499, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwell - William G Vinal,02190020, 539, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - Balch,02200005, 337, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - Charles J Prescott,02200025, 267, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - Cornelius M Callahan,02200010, 241, 1,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 826, 81, 3.6, 2.4, 2.3, 0.4, 1.1 +NA,NA,a-phys-i3,2022-23,Norwood - F A Cleveland,02200015, 327, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - George F. Willett,02200075, 464, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Norwood - John P Oldham,02200020, 292, 1,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Norwood - Norwood High,02200505, 993, 40, 0.7, 0.7, 0.8, 1.0, 0.8 +NA,NA,a-phys-i3,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 471, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 565, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 638, 17, 0.3, 1.4, 0.8, 0.2, 0.0 +7.2,5,a-phys-i3,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 428, 23, 0.5, 1.6, 2.1, 0.9, 0.2 +6.8,5,a-phys-i3,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 365, 25, 4.1, 1.1, 1.4, 0.0, 0.3 +6.8,5,a-phys-i3,2022-23,Orange - Dexter Park,02230010, 301, 8, 0.3, 1.0, 1.0, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Orange - Fisher Hill,02230015, 242, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Orleans - Orleans Elementary,02240005, 153, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Oxford - Alfred M Chaffee,02260010, 309, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Oxford - Clara Barton,02260005, 284, 1,"","","","","" +7.2,5,a-phys-i3,2022-23,Oxford - Oxford High,02260505, 405, 40, 1.0, 3.2, 4.2, 1.2, 0.2 +6.4,5,a-phys-i3,2022-23,Oxford - Oxford Middle,02260405, 526, 44, 1.0, 4.2, 2.7, 0.2, 0.4 +6.8,5,a-phys-i3,2022-23,Palmer - Old Mill Pond,02270008, 639, 28, 1.6, 1.6, 0.9, 0.0, 0.3 +5.2,5,a-phys-i3,2022-23,Palmer - Palmer High,02270505, 553, 53, 0.9, 4.0, 3.6, 0.4, 0.7 +5.6,5,a-phys-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 651, 30, 0.9, 1.2, 1.2, 0.6, 0.6 +NA,NA,a-phys-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 282, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Captain Samuel Brown,02290005, 390, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Center,02290015, 459, 5,"","","","","" +6.4,5,a-phys-i3,2022-23,Peabody - J Henry Higgins Middle,02290305," 1,387", 37, 0.9, 0.7, 0.6, 0.0, 0.4 +NA,NA,a-phys-i3,2022-23,Peabody - John E Burke,02290007, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - John E. McCarthy,02290016, 388, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 139, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510," 1,534", 100, 1.4, 2.1, 2.1, 0.7, 0.3 +NA,NA,a-phys-i3,2022-23,Peabody - South Memorial,02290035, 496, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - Thomas Carroll,02290010, 616, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - West Memorial,02290045, 273, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Peabody - William A Welch Sr,02290027, 242, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Pelham - Pelham Elementary,02300005, 137, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Pembroke - Bryantville Elementary,02310003, 446, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Pembroke - Hobomock Elementary,02310010, 415, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Pembroke - North Pembroke Elementary,02310015, 532, 5,"","","","","" +7.2,5,a-phys-i3,2022-23,Pembroke - Pembroke Community Middle School,02310305, 411, 6, 0.2, 0.7, 0.2, 0.0, 0.2 +6.0,5,a-phys-i3,2022-23,Pembroke - Pembroke High School,02310505, 747, 39, 0.7, 1.9, 1.2, 0.9, 0.5 +NA,NA,a-phys-i3,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 234, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Pentucket - Dr John C Page School,07450015, 331, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pentucket - Elmer S Bagnall,07450005, 497, 10, 1.2, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Pentucket - Helen R Donaghue School,07450010, 253, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pentucket - Pentucket Regional Middle,07450405, 362, 18, 1.9, 2.5, 0.6, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 598, 18, 0.8, 1.2, 0.8, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Petersham - Petersham Center,02340005, 127, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 255, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 155, 13, 4.5, 2.6, 1.3, 0.0, 0.0 +-6.0,1,a-phys-i3,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 230, 27, 0.9, 1.3, 5.2, 0.9, 3.5 +NA,NA,a-phys-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 796, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 484, 11, 1.7, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Pioneer Valley - Northfield Elementary,07500008, 214, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 265, 11, 1.9, 1.5, 0.4, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 555, 15, 1.8, 0.9, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 418, 19, 0.7, 1.9, 1.9, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Pittsfield - Allendale,02360010, 285, 2,"","","","","" +0.0,1,a-phys-i3,2022-23,Pittsfield - Crosby,02360065, 299, 32, 3.3, 3.7, 1.0, 0.7, 2.0 +NA,NA,a-phys-i3,2022-23,Pittsfield - Crosby Educational Academy,02360030, 29, 2,"","","","","" +-17.2,1,a-phys-i3,2022-23,Pittsfield - Eagle Education Academy,02360525, 32, 16, 6.3, 15.6, 15.6, 6.3, 6.3 +6.0,5,a-phys-i3,2022-23,Pittsfield - Egremont,02360035, 399, 17, 2.5, 1.0, 0.3, 0.0, 0.5 +-15.2,1,a-phys-i3,2022-23,Pittsfield - John T Reid Middle,02360305, 498, 114, 2.0, 6.0, 6.6, 2.4, 5.8 +NA,NA,a-phys-i3,2022-23,Pittsfield - Morningside Community School,02360055, 386, 1,"","","","","" +0.0,1,a-phys-i3,2022-23,Pittsfield - Pittsfield High,02360505, 706, 109, 5.7, 3.7, 3.3, 0.8, 2.0 +NA,NA,a-phys-i3,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 187, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Pittsfield - Silvio O Conte Community,02360105, 400, 23, 2.3, 1.3, 1.8, 0.0, 0.5 +8.0,5,a-phys-i3,2022-23,Pittsfield - Stearns,02360090, 238, 11, 1.3, 2.5, 0.8, 0.0, 0.0 +1.5999999999999996,1.6,a-phys-i3,2022-23,Pittsfield - Taconic High,02360510, 885, 204, 6.8, 8.7, 4.6, 1.4, 1.6 +4.8,4.8,a-phys-i3,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 522, 38, 1.0, 3.1, 1.9, 0.6, 0.8 +NA,NA,a-phys-i3,2022-23,Pittsfield - Williams,02360100, 263, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Plainville - Anna Ware Jackson,02380010, 310, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 366, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Cold Spring,02390005, 232, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Federal Furnace School,02390011, 423, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Hedge,02390010, 236, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Indian Brook,02390012, 587, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Manomet Elementary,02390015, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 527, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 913, 84, 4.8, 1.8, 1.2, 0.7, 0.8 +NA,NA,a-phys-i3,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 265, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Plymouth - Plymouth North High,02390505," 1,331", 131, 3.4, 2.2, 1.6, 1.4, 1.3 +-1.5999999999999996,1,a-phys-i3,2022-23,Plymouth - Plymouth South High,02390515," 1,042", 144, 4.6, 3.0, 2.4, 1.4, 2.4 +5.6,5,a-phys-i3,2022-23,Plymouth - Plymouth South Middle,02390305, 633, 58, 2.7, 3.3, 2.2, 0.3, 0.6 +NA,NA,a-phys-i3,2022-23,Plymouth - South Elementary,02390046, 630, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Plymouth - West Elementary,02390047, 325, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Plympton - Dennett Elementary,02400010, 241, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550," 1,034", 58, 2.6, 1.8, 0.8, 0.3, 0.1 +NA,NA,a-phys-i3,2022-23,Provincetown - Provincetown Schools,02420020, 151, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - Hardwick Elementary,07530005, 208, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - Hubbardston Center,07530010, 323, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - New Braintree Grade,07530020, 41, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quabbin - Oakham Center,07530025, 181, 0,"","","","","" +-3.5999999999999996,1,a-phys-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 581, 54, 1.2, 1.5, 2.1, 1.5, 2.9 +4.4,4.4,a-phys-i3,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 540, 34, 1.7, 2.0, 1.3, 0.4, 0.9 +NA,NA,a-phys-i3,2022-23,Quabbin - Ruggles Lane,07530030, 407, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 57, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 364, 26, 1.1, 1.9, 1.6, 1.6, 0.8 +8.0,5,a-phys-i3,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 205, 13, 2.0, 1.5, 2.9, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Quaboag Regional - Warren Elementary,07780005, 332, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 263, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 231, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Atherton Hough,02430040, 272, 2,"","","","","" +7.2,5,a-phys-i3,2022-23,Quincy - Atlantic Middle,02430305, 583, 28, 0.9, 2.7, 1.0, 0.0, 0.2 +NA,NA,a-phys-i3,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 345, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Quincy - Broad Meadows Middle,02430310, 336, 6, 0.3, 0.6, 0.9, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Quincy - Central Middle,02430315, 659, 6, 0.3, 0.5, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 343, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 573, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Francis W Parker,02430075, 355, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 601, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Merrymount,02430060, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Montclair,02430065, 452, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Quincy - North Quincy High,02430510," 1,524", 43, 0.6, 0.7, 0.9, 0.2, 0.5 +7.2,5,a-phys-i3,2022-23,Quincy - Point Webster Middle,02430325, 468, 27, 2.1, 2.6, 0.6, 0.2, 0.2 +5.2,5,a-phys-i3,2022-23,Quincy - Quincy High,02430505," 1,577", 102, 1.3, 1.6, 2.2, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Quincy - Snug Harbor Community School,02430090, 473, 2,"","","","","" +5.6,5,a-phys-i3,2022-23,Quincy - South West Middle School,02430320, 470, 58, 3.0, 5.3, 2.6, 0.9, 0.6 +NA,NA,a-phys-i3,2022-23,Quincy - Squantum,02430095, 365, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Quincy - Wollaston School,02430110, 344, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 545, 59, 2.6, 6.1, 1.1, 0.4, 0.7 +8.0,5,a-phys-i3,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 320, 7, 0.3, 1.9, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Randolph - J F Kennedy Elementary,02440018, 542, 9, 1.1, 0.4, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Randolph - Margaret L Donovan,02440015, 463, 6, 0.0, 0.4, 0.4, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Randolph - Martin E Young Elementary,02440040, 267, 3,"","","","","" +7.2,5,a-phys-i3,2022-23,Randolph - Randolph Community Middle,02440410, 616, 67, 3.6, 5.2, 1.8, 0.2, 0.2 +6.8,5,a-phys-i3,2022-23,Randolph - Randolph High,02440505, 678, 35, 1.6, 1.5, 1.5, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Reading - Alice M Barrows,02460002, 366, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - Arthur W Coolidge Middle,02460305, 431, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - Birch Meadow,02460005, 361, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - J Warren Killam,02460017, 417, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - Joshua Eaton,02460010, 395, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Reading - RISE PreSchool,02460001, 128, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Reading - Reading Memorial High,02460505," 1,116", 31, 1.8, 0.4, 0.3, 0.1, 0.2 +8.0,5,a-phys-i3,2022-23,Reading - Walter S Parker Middle,02460310, 471, 14, 1.5, 1.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Reading - Wood End Elementary School,02460020, 249, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Revere - A. C. Whelan Elementary School,02480003, 783, 9, 0.1, 0.8, 0.1, 0.0, 0.1 +8.0,5,a-phys-i3,2022-23,Revere - Abraham Lincoln,02480025, 694, 6, 0.0, 0.4, 0.3, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 389, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Revere - CityLab Innovation High School,02480520, 107, 21, 4.7, 9.3, 4.7, 0.9, 0.0 +NA,NA,a-phys-i3,2022-23,Revere - Garfield Elementary School,02480056, 765, 0,"","","","","" +3.2,3.2,a-phys-i3,2022-23,Revere - Garfield Middle School,02480057, 607, 17, 0.7, 0.3, 0.5, 0.2, 1.2 +NA,NA,a-phys-i3,2022-23,Revere - Paul Revere,02480050, 499, 5,"","","","","" +5.6,5,a-phys-i3,2022-23,Revere - Revere High,02480505," 2,257", 95, 0.5, 1.3, 1.5, 0.3, 0.6 +6.0,5,a-phys-i3,2022-23,Revere - Rumney Marsh Academy,02480014, 602, 47, 1.8, 2.8, 2.3, 0.3, 0.5 +NA,NA,a-phys-i3,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 706, 2,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Revere - Susan B. Anthony Middle School,02480305, 610, 29, 0.3, 1.3, 1.5, 0.5, 1.1 +NA,NA,a-phys-i3,2022-23,Richmond - Richmond Consolidated,02490005, 155, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 660, 50, 2.9, 2.0, 1.2, 0.6, 0.9 +NA,NA,a-phys-i3,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 296, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Rochester - Rochester Memorial,02500005, 505, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Rockland - Jefferson Elementary School,02510060, 253, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Rockland - John W Rogers Middle,02510305, 734, 80, 3.7, 2.7, 2.6, 1.1, 0.8 +NA,NA,a-phys-i3,2022-23,Rockland - Memorial Park,02510020, 257, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Rockland - R Stewart Esten,02510025, 326, 2,"","","","","" +0.40000000000000036,1,a-phys-i3,2022-23,Rockland - Rockland Senior High,02510505, 674, 61, 1.3, 2.1, 2.2, 1.5, 1.9 +8.0,5,a-phys-i3,2022-23,Rockport - Rockport Elementary,02520005, 316, 6, 1.6, 0.0, 0.3, 0.0, 0.0 +6.4,5,a-phys-i3,2022-23,Rockport - Rockport High,02520510, 235, 11, 0.9, 3.4, 0.0, 0.0, 0.4 +8.0,5,a-phys-i3,2022-23,Rockport - Rockport Middle,02520305, 195, 10, 1.0, 2.1, 1.0, 1.0, 0.0 +NA,NA,a-phys-i3,2022-23,Rowe - Rowe Elementary,02530005, 70, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505," 1,385", 92, 0.4, 2.1, 2.0, 1.4, 0.7 +NA,NA,a-phys-i3,2022-23,Salem - Bates,02580003, 419, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Salem - Bentley Academy Innovation School,02580010, 299, 17, 3.7, 1.7, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Salem - Carlton,02580015, 265, 1,"","","","","" +5.6,5,a-phys-i3,2022-23,Salem - Collins Middle,02580305, 670, 58, 2.8, 3.3, 1.8, 0.1, 0.6 +8.0,5,a-phys-i3,2022-23,Salem - Horace Mann Laboratory,02580030, 326, 18, 2.5, 2.1, 0.9, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Salem - New Liberty Innovation School,02580510, 70, 8, 4.3, 7.1, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Salem - Salem Early Childhood,02580001, 131, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Salem - Salem High,02580505, 985, 27, 1.0, 0.9, 0.3, 0.4, 0.1 +NA,NA,a-phys-i3,2022-23,Salem - Salem Prep High School,02580515, 21, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Salem - Saltonstall School,02580050, 417, 33, 4.6, 1.4, 1.2, 0.0, 0.7 +NA,NA,a-phys-i3,2022-23,Salem - Witchcraft Heights,02580070, 475, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 489, 24, 1.6, 1.8, 1.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Sandwich - Forestdale School,02610002, 574, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Sandwich - Oak Ridge,02610025, 690, 27, 2.2, 1.6, 0.0, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 955, 50, 2.4, 1.3, 1.4, 0.1, 0.1 +8.0,5,a-phys-i3,2022-23,Saugus - Belmonte STEAM Academy,02620060, 852, 12, 0.8, 0.6, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Saugus - Saugus High,02620505, 762, 25, 0.9, 1.4, 0.9, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Saugus - Saugus Middle School,02620305, 638, 37, 2.8, 1.3, 0.6, 0.8, 0.3 +NA,NA,a-phys-i3,2022-23,Saugus - Veterans Early Learning Center,02620065, 469, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Savoy - Emma L Miller Elementary School,02630010, 40, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Cushing Elementary,02640007, 355, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Scituate - Gates Middle School,02640305, 610, 10, 0.5, 1.1, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Scituate - Hatherly Elementary,02640010, 259, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Jenkins Elementary School,02640015, 332, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Scituate High School,02640505, 770, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Scituate - Wampatuck Elementary,02640020, 469, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 497, 32, 3.0, 2.2, 0.8, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Seekonk - George R Martin,02650007, 465, 7, 1.3, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Seekonk - Mildred Aitken School,02650015, 597, 3,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Seekonk - Seekonk High,02650505, 547, 51, 2.0, 3.1, 2.9, 0.4, 0.9 +NA,NA,a-phys-i3,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 4,"","","","","","" +NA,NA,a-phys-i3,2022-23,Sharon - Cottage Street,02660005, 456, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sharon - East Elementary,02660010, 501, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Sharon - Heights Elementary,02660015, 581, 7, 0.5, 0.3, 0.0, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Sharon - Sharon Early Childhood Center,02660001, 67, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Sharon - Sharon High,02660505," 1,153", 35, 1.0, 1.2, 0.7, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Sharon - Sharon Middle,02660305, 861, 5,"","","","","" +6.8,5,a-phys-i3,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605," 1,313", 63, 1.3, 1.4, 1.3, 0.5, 0.3 +NA,NA,a-phys-i3,2022-23,Sherborn - Pine Hill,02690010, 412, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 266, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Floral Street School,02710020, 571, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 633, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Shrewsbury - Oak Middle School,02710030, 969, 10, 0.3, 0.6, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Shrewsbury - Parker Road Preschool,02710040, 231, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Shrewsbury - Sherwood Middle School,02710305, 980, 11, 0.3, 0.6, 0.1, 0.1, 0.0 +7.6,5,a-phys-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505," 1,863", 43, 0.0, 1.0, 0.4, 0.8, 0.1 +NA,NA,a-phys-i3,2022-23,Shrewsbury - Spring Street School,02710035, 313, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shrewsbury - Walter J. Paton School,02710025, 301, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Shutesbury - Shutesbury Elementary,02720005, 126, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505," 1,071", 49, 1.1, 1.8, 0.9, 0.4, 0.4 +5.6,5,a-phys-i3,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 540, 26, 2.2, 1.3, 0.6, 0.2, 0.6 +6.0,5,a-phys-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 377, 46, 5.0, 4.2, 1.9, 0.5, 0.5 +8.0,5,a-phys-i3,2022-23,Somerset - Chace Street,02730005, 330, 6, 1.5, 0.3, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Somerset - North Elementary,02730008, 476, 0,"","","","","" +5.2,5,a-phys-i3,2022-23,Somerset - Somerset Middle School,02730305, 588, 31, 1.4, 1.9, 0.9, 0.5, 0.7 +NA,NA,a-phys-i3,2022-23,Somerset - South,02730015, 268, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505," 1,020", 122, 3.2, 2.4, 3.7, 1.4, 1.3 +8.0,5,a-phys-i3,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 592, 16, 1.4, 1.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Somerville - Arthur D Healey,02740075, 553, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Somerville - Benjamin G Brown,02740015, 220, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Somerville - Capuano Early Childhood Center,02740005, 263, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Somerville - E Somerville Community,02740111, 756, 15, 0.5, 0.9, 0.5, 0.0, 0.0 +-19.2,1,a-phys-i3,2022-23,Somerville - Full Circle High School,02740510, 74, 32, 12.2, 16.2, 4.1, 4.1, 6.8 +7.2,5,a-phys-i3,2022-23,Somerville - John F Kennedy,02740083, 449, 9, 0.9, 0.7, 0.2, 0.0, 0.2 +-46.4,1,a-phys-i3,2022-23,Somerville - Next Wave Junior High,02740410, 22, 11, 0.0, 4.5, 13.6, 18.2, 13.6 +3.2,3.2,a-phys-i3,2022-23,Somerville - Somerville High,02740505," 1,373", 93, 1.0, 3.1, 1.3, 0.1, 1.2 +NA,NA,a-phys-i3,2022-23,Somerville - West Somerville Neighborhood,02740115, 380, 4,"","","","","" +7.2,5,a-phys-i3,2022-23,Somerville - Winter Hill Community,02740120, 454, 25, 2.2, 1.5, 0.9, 0.7, 0.2 +4.4,4.4,a-phys-i3,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 536, 33, 1.7, 1.5, 1.1, 0.9, 0.9 +8.0,5,a-phys-i3,2022-23,South Hadley - Mosier,02780020, 356, 9, 1.4, 0.8, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,South Hadley - Plains Elementary,02780015, 341, 0,"","","","","" +3.2,3.2,a-phys-i3,2022-23,South Hadley - South Hadley High,02780505, 518, 57, 2.5, 3.1, 2.9, 1.4, 1.2 +7.6,5,a-phys-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 856, 24, 0.5, 0.5, 0.5, 1.3, 0.1 +8.0,5,a-phys-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550," 1,085", 6, 0.2, 0.1, 0.3, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 658, 34, 0.9, 1.5, 2.3, 0.2, 0.3 +8.0,5,a-phys-i3,2022-23,Southampton - William E Norris,02750005, 492, 7, 0.6, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southborough - Margaret A Neary,02760020, 271, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southborough - Mary E Finn School,02760008, 379, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southborough - P Brent Trottier,02760305, 390, 2,"","","","","" +5.2,5,a-phys-i3,2022-23,Southbridge - Charlton Street,02770005, 280, 27, 3.9, 2.5, 2.1, 0.4, 0.7 +8.0,5,a-phys-i3,2022-23,Southbridge - Eastford Road,02770010, 396, 9, 1.0, 1.0, 0.3, 0.0, 0.0 +-39.6,1,a-phys-i3,2022-23,Southbridge - Southbridge Academy,02770525, 42, 22, 4.8, 19.0, 11.9, 4.8, 11.9 +-8.8,1,a-phys-i3,2022-23,Southbridge - Southbridge High School,02770515, 501, 61, 1.2, 3.0, 2.0, 1.8, 4.2 +8.0,5,a-phys-i3,2022-23,Southbridge - Southbridge Middle School,02770315, 435, 44, 5.3, 2.5, 1.8, 0.5, 0.0 +8.0,5,a-phys-i3,2022-23,Southbridge - West Street,02770020, 365, 42, 2.5, 5.8, 2.5, 0.8, 0.0 +6.8,5,a-phys-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605," 1,583", 50, 0.6, 0.9, 1.0, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 301, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Southern Berkshire - New Marlborough Central,07650018, 69, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southern Berkshire - South Egremont,07650030, 13, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Southern Berkshire - Undermountain,07650035, 249, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,196", 71, 1.3, 1.4, 2.0, 0.9, 0.3 +8.0,5,a-phys-i3,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 397, 7, 0.8, 1.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 648, 37, 0.8, 3.2, 1.4, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 339, 2,"","","","","" +-3.5999999999999996,1,a-phys-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 379, 23, 0.3, 0.3, 1.3, 1.3, 2.9 +NA,NA,a-phys-i3,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 266, 0,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 394, 44, 2.8, 3.3, 2.8, 1.0, 1.3 +8.0,5,a-phys-i3,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 451, 9, 0.9, 0.9, 0.2, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 438, 15, 1.1, 2.1, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Alice B Beal Elementary,02810175, 328, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Arthur T Talmadge,02810165, 243, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Balliet Preschool,02810003, 184, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Brightwood,02810025, 517, 3,"","","","","" +6.4,5,a-phys-i3,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 280, 11, 1.1, 1.8, 0.7, 0.0, 0.4 +8.0,5,a-phys-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 325, 16, 0.6, 2.2, 1.8, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Daniel B Brunton,02810035, 406, 12, 0.0, 2.2, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Early Childhood Education Center,02810001, 231, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Edward P. Boland School,02810010, 617, 9, 0.2, 0.6, 0.3, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Elias Brookings,02810030, 292, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Emergence Academy,02810318, 196, 15, 1.0, 5.6, 1.0, 0.0, 0.0 +6.0,5,a-phys-i3,2022-23,Springfield - Forest Park Middle,02810325, 412, 72, 1.9, 6.1, 6.6, 2.4, 0.5 +NA,NA,a-phys-i3,2022-23,Springfield - Frank H Freedman,02810075, 295, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Frederick Harris,02810080, 623, 10, 0.0, 1.1, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 40, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 38, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - German Gerena Community School,02810195, 644, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Glenwood,02810065, 312, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Glickman Elementary,02810068, 344, 6, 1.2, 0.6, 0.0, 0.0, 0.0 +3.2,3.2,a-phys-i3,2022-23,Springfield - High School Of Commerce,02810510," 1,219", 130, 1.6, 5.1, 2.0, 0.7, 1.2 +NA,NA,a-phys-i3,2022-23,Springfield - Hiram L Dorman,02810050, 308, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Homer Street,02810085, 453, 2,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Springfield - Impact Prep at Chestnut,02810366, 231, 50, 1.7, 11.3, 6.1, 1.7, 0.9 +NA,NA,a-phys-i3,2022-23,Springfield - Indian Orchard Elementary,02810100, 618, 4,"","","","","" +-8.399999999999999,1,a-phys-i3,2022-23,Springfield - John F Kennedy Middle,02810328, 443, 96, 3.6, 6.1, 6.1, 1.8, 4.1 +-7.6,1,a-phys-i3,2022-23,Springfield - John J Duggan Academy,02810320, 863, 162, 2.7, 5.9, 5.0, 1.3, 3.9 +NA,NA,a-phys-i3,2022-23,Springfield - Kensington International School,02810110, 277, 2,"","","","","" +-10.0,1,a-phys-i3,2022-23,Springfield - Kiley Academy,02810316, 356, 81, 3.4, 7.6, 5.1, 2.2, 4.5 +4.0,4.0,a-phys-i3,2022-23,Springfield - Kiley Prep,02810315, 309, 77, 5.2, 10.4, 6.1, 2.3, 1.0 +NA,NA,a-phys-i3,2022-23,Springfield - Liberty,02810115, 275, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Liberty Preparatory Academy,02810560, 23, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Lincoln,02810120, 487, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Margaret C Ells,02810060, 211, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 315, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Mary M Lynch,02810140, 239, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Mary M Walsh,02810155, 281, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Mary O Pottenger,02810145, 436, 7, 0.0, 0.7, 0.9, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Milton Bradley School,02810023, 575, 9, 0.0, 1.6, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Rebecca M Johnson,02810055, 654, 9, 0.2, 0.6, 0.6, 0.0, 0.0 +-2.8000000000000007,1,a-phys-i3,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 263, 62, 6.5, 4.9, 7.6, 1.9, 2.7 +8.0,5,a-phys-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620," 1,396", 92, 1.6, 2.9, 1.8, 0.2, 0.0 +6.8,5,a-phys-i3,2022-23,Springfield - STEM Middle Academy,02810350, 307, 12, 0.3, 1.6, 1.3, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Springfield - Samuel Bowles,02810020, 234, 2,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Springfield - South End Middle School,02810355, 204, 36, 1.0, 8.8, 5.4, 1.5, 1.0 +3.5999999999999996,3.6,a-phys-i3,2022-23,Springfield - Springfield Central High,02810500," 2,219", 163, 0.4, 1.9, 1.6, 2.3, 1.1 +0.0,1,a-phys-i3,2022-23,Springfield - Springfield High School,02810570, 346, 27, 0.9, 2.3, 1.7, 0.9, 2.0 +6.4,5,a-phys-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530," 1,175", 94, 0.3, 2.8, 3.2, 1.3, 0.4 +NA,NA,a-phys-i3,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 45, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 104, 1,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Springfield - Springfield Legacy Academy,02810317, 352, 59, 3.7, 6.3, 4.3, 1.7, 0.9 +-1.5999999999999996,1,a-phys-i3,2022-23,Springfield - Springfield Middle School,02810360, 42, 9, 2.4, 9.5, 4.8, 2.4, 2.4 +NA,NA,a-phys-i3,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 48, 1,"","","","","" +-2.4000000000000004,1,a-phys-i3,2022-23,Springfield - Springfield Public Day High School,02810550, 78, 15, 0.0, 15.4, 0.0, 1.3, 2.6 +8.0,5,a-phys-i3,2022-23,Springfield - Springfield Public Day Middle School,02810345, 77, 8, 0.0, 9.1, 1.3, 0.0, 0.0 +5.2,5,a-phys-i3,2022-23,Springfield - Springfield Realization Academy,02810335, 145, 32, 6.2, 11.7, 2.8, 0.7, 0.7 +NA,NA,a-phys-i3,2022-23,Springfield - Springfield Transition Academy,02810675, 151, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Sumner Avenue,02810160, 531, 6, 0.4, 0.6, 0.2, 0.0, 0.0 +6.0,5,a-phys-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 648, 68, 3.2, 3.4, 2.3, 1.1, 0.5 +NA,NA,a-phys-i3,2022-23,Springfield - The Springfield Virtual School,02810705, 453, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - Thomas M Balliet,02810015, 298, 11, 2.0, 0.7, 1.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Van Sickle Academy,02810485, 288, 26, 0.7, 4.2, 3.8, 0.3, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - Warner,02810180, 280, 18, 0.0, 5.0, 1.1, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Springfield - Washington,02810185, 454, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Springfield - White Street,02810190, 468, 16, 1.3, 0.6, 1.5, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Springfield - William N. DeBerry,02810045, 290, 20, 3.4, 2.1, 1.4, 0.0, 0.0 +6.0,5,a-phys-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505," 1,556", 87, 0.9, 2.1, 2.0, 0.1, 0.5 +7.2,5,a-phys-i3,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 503, 35, 3.2, 2.4, 1.0, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Stoneham - Colonial Park,02840005, 260, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoneham - Robin Hood,02840025, 401, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoneham - South,02840030, 375, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Stoneham - Stoneham Central Middle School,02840405, 691, 10, 1.0, 0.3, 0.0, 0.1, 0.0 +6.8,5,a-phys-i3,2022-23,Stoneham - Stoneham High,02840505, 635, 62, 4.4, 3.3, 1.7, 0.0, 0.3 +NA,NA,a-phys-i3,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - Helen Hansen Elementary,02850010, 275, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - Joseph H Gibbons,02850025, 361, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 398, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Stoughton - O'Donnell Middle School,02850405, 849, 68, 1.9, 2.5, 2.1, 0.7, 0.8 +NA,NA,a-phys-i3,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 342, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Stoughton - South Elementary,02850015, 292, 0,"","","","","" +4.0,4.0,a-phys-i3,2022-23,Stoughton - Stoughton High,02850505," 1,118", 91, 2.8, 2.3, 0.9, 1.2, 1.0 +NA,NA,a-phys-i3,2022-23,Sturbridge - Burgess Elementary,02870005, 905, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 852, 14, 0.2, 0.4, 0.4, 0.4, 0.4 +8.0,5,a-phys-i3,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 861, 31, 2.4, 0.8, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Sudbury - General John Nixon Elementary,02880025, 331, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Sudbury - Israel Loring School,02880015, 436, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Sudbury - Josiah Haynes,02880010, 382, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Sudbury - Peter Noyes,02880030, 590, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sunderland - Sunderland Elementary,02890005, 189, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton Early Learning,02900003, 338, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton Elementary,02900005, 311, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton High School,02900510, 379, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Sutton - Sutton Middle School,02900305, 302, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swampscott - Clarke,02910005, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swampscott - Hadley,02910010, 362, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swampscott - Stanley,02910020, 164, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Swampscott - Swampscott High,02910505, 660, 20, 0.6, 2.3, 0.0, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Swampscott - Swampscott Middle,02910305, 705, 10, 0.9, 0.4, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Swansea - Elizabeth S Brown,02920006, 293, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Swansea - Gardner,02920015, 260, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Swansea - Joseph Case High,02920505, 552, 42, 3.1, 2.9, 0.9, 0.7, 0.0 +5.6,5,a-phys-i3,2022-23,Swansea - Joseph Case Jr High,02920305, 501, 18, 0.0, 2.4, 0.6, 0.0, 0.6 +NA,NA,a-phys-i3,2022-23,Swansea - Joseph G Luther,02920020, 184, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 254, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900," 3,551", 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 560, 36, 2.5, 0.7, 1.8, 0.9, 0.5 +7.6,5,a-phys-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 694, 20, 0.0, 1.0, 1.0, 0.7, 0.1 +6.4,5,a-phys-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 534, 38, 0.2, 1.7, 3.9, 0.9, 0.4 +8.0,5,a-phys-i3,2022-23,Taunton - Benjamin Friedman Middle,02930315, 752, 31, 2.0, 0.9, 0.9, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Taunton - East Taunton Elementary,02930010, 548, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Taunton - Edmund Hatch Bennett,02930007, 301, 6, 0.3, 1.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 355, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Taunton - Elizabeth Pole,02930027, 669, 7, 0.4, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Taunton - H H Galligan,02930057, 279, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 900, 5,"","","","","" +7.2,5,a-phys-i3,2022-23,Taunton - John F Parker Middle,02930305, 551, 36, 4.0, 1.6, 0.7, 0.0, 0.2 +7.2,5,a-phys-i3,2022-23,Taunton - Joseph C Chamberlain,02930008, 476, 6, 0.4, 0.4, 0.0, 0.2, 0.2 +6.8,5,a-phys-i3,2022-23,Taunton - Joseph H Martin,02930042, 657, 70, 5.2, 3.3, 1.5, 0.3, 0.3 +8.0,5,a-phys-i3,2022-23,Taunton - Taunton Alternative High School,02930525, 116, 15, 0.0, 3.4, 7.8, 1.7, 0.0 +-3.1999999999999993,1,a-phys-i3,2022-23,Taunton - Taunton High,02930505," 2,905", 341, 0.8, 2.3, 3.4, 2.4, 2.8 +NA,NA,a-phys-i3,2022-23,Tewksbury - Heath-Brook,02950010, 337, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Tewksbury - John F. Ryan,02950023, 526, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Tewksbury - John W. Wynn Middle,02950305, 512, 6, 0.6, 0.6, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Tewksbury - L F Dewing,02950001, 653, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Tewksbury - Louise Davy Trahan,02950025, 217, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Tewksbury - North Street,02950020, 284, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 777, 23, 0.3, 1.0, 1.3, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Tisbury - Tisbury Elementary,02960005, 303, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Topsfield - Proctor Elementary,02980005, 262, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Topsfield - Steward Elementary,02980010, 379, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 967, 62, 0.9, 2.3, 2.6, 0.4, 0.2 +NA,NA,a-phys-i3,2022-23,Triton - Newbury Elementary,07730020, 419, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Triton - Pine Grove,07730025, 441, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Triton - Salisbury Elementary,07730015, 436, 4,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Triton - Triton Regional High School,07730505, 665, 40, 1.5, 1.5, 1.7, 0.6, 0.8 +8.0,5,a-phys-i3,2022-23,Triton - Triton Regional Middle School,07730405, 325, 11, 1.2, 1.2, 0.6, 0.3, 0.0 +NA,NA,a-phys-i3,2022-23,Truro - Truro Central,03000005, 106, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 772, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 422, 8, 0.0, 0.9, 0.7, 0.2, 0.0 +8.0,5,a-phys-i3,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 409, 8, 0.0, 1.7, 0.2, 0.0, 0.0 +2.8,2.8,a-phys-i3,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 225, 26, 2.2, 3.1, 3.1, 1.8, 1.3 +6.8,5,a-phys-i3,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 643, 39, 2.5, 1.7, 0.2, 1.4, 0.3 +NA,NA,a-phys-i3,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 70, 0,"","","","","" +6.8,5,a-phys-i3,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 360, 8, 0.8, 0.8, 0.3, 0.0, 0.3 +2.4000000000000004,2.4,a-phys-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 775, 94, 3.1, 1.7, 2.6, 3.4, 1.4 +NA,NA,a-phys-i3,2022-23,Uxbridge - Gateway to College,03040515, 49, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Uxbridge - Taft Early Learning Center,03040005, 560, 0,"","","","","" +3.2,3.2,a-phys-i3,2022-23,Uxbridge - Uxbridge High,03040505, 605, 39, 2.3, 1.3, 0.7, 1.0, 1.2 +8.0,5,a-phys-i3,2022-23,Uxbridge - Whitin Intermediate,03040405, 499, 25, 2.4, 1.6, 1.0, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 508, 48, 0.4, 5.1, 2.8, 0.4, 0.8 +8.0,5,a-phys-i3,2022-23,Wachusett - Central Tree Middle,07750310, 377, 8, 1.3, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wachusett - Chocksett Middle School,07750315, 287, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Davis Hill Elementary,07750018, 454, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Dawson,07750020, 512, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Early Childhood Center,07750001, 164, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Glenwood Elementary School,07750060, 340, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Houghton Elementary,07750027, 338, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Leroy E.Mayo,07750032, 494, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wachusett - Mountview Middle,07750305, 780, 7, 0.1, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wachusett - Naquag Elementary School,07750005, 373, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Paxton Center,07750040, 456, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wachusett - Thomas Prince,07750045, 346, 1,"","","","","" +6.8,5,a-phys-i3,2022-23,Wachusett - Wachusett Regional High,07750505," 1,965", 78, 1.2, 1.1, 1.1, 0.3, 0.3 +NA,NA,a-phys-i3,2022-23,Wakefield - Dolbeare,03050005, 442, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 140, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wakefield - Galvin Middle School,03050310," 1,077", 25, 1.3, 1.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wakefield - Greenwood,03050020, 220, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 840, 7, 0.1, 0.2, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wakefield - Walton,03050040, 214, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wakefield - Woodville School,03050015, 435, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wales - Wales Elementary,03060005, 99, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Walpole - Bird Middle,03070305, 383, 7, 1.0, 0.8, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Walpole - Boyden,03070010, 425, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 115, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 423, 16, 1.7, 1.4, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Walpole - Elm Street School,03070005, 454, 5,"","","","","" +NA,NA,a-phys-i3,2022-23,Walpole - Fisher,03070015, 479, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Walpole - Old Post Road,03070018, 466, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Walpole - Walpole High,03070505," 1,014", 44, 1.5, 1.2, 0.7, 0.5, 0.5 +NA,NA,a-phys-i3,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 517, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 413, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 397, 3,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Waltham - John F Kennedy Middle,03080404, 636, 48, 2.2, 3.0, 1.1, 0.5, 0.8 +4.4,4.4,a-phys-i3,2022-23,Waltham - John W. McDevitt Middle School,03080415, 633, 82, 4.1, 4.3, 3.3, 0.3, 0.9 +8.0,5,a-phys-i3,2022-23,Waltham - Northeast Elementary School,03080040, 582, 9, 0.9, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 390, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 214, 1,"","","","","" +6.4,5,a-phys-i3,2022-23,Waltham - Waltham Sr High,03080505," 1,921", 149, 1.5, 2.8, 2.3, 0.7, 0.4 +8.0,5,a-phys-i3,2022-23,Waltham - William F. Stanley Elementary School,03080005, 424, 7, 0.5, 1.2, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 414, 7, 1.0, 0.5, 0.2, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 525, 33, 0.6, 2.3, 1.7, 1.0, 0.8 +NA,NA,a-phys-i3,2022-23,Ware - Ware Middle School,03090305, 259, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 39, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wareham - Wareham Elementary School,03100017, 974, 5,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Wareham - Wareham Middle,03100305, 445, 69, 2.2, 8.5, 2.0, 1.1, 1.6 +-1.1999999999999993,1,a-phys-i3,2022-23,Wareham - Wareham Senior High,03100505, 649, 160, 7.2, 6.8, 6.8, 1.5, 2.3 +NA,NA,a-phys-i3,2022-23,Watertown - Cunniff,03140015, 335, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Watertown - Hosmer,03140020, 789, 8, 0.5, 0.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Watertown - James Russell Lowell,03140025, 379, 0,"","","","","" +7.6,5,a-phys-i3,2022-23,Watertown - Watertown High,03140505, 777, 14, 0.4, 0.9, 0.3, 0.1, 0.1 +6.4,5,a-phys-i3,2022-23,Watertown - Watertown Middle,03140305, 552, 15, 1.3, 0.7, 0.2, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Wayland - Claypit Hill School,03150005, 511, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wayland - Happy Hollow School,03150015, 367, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wayland - Loker School,03150020, 388, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wayland - The Children's Way Preschool,03150025, 71, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wayland - Wayland High School,03150505, 830, 7, 0.2, 0.4, 0.1, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Wayland - Wayland Middle School,03150305, 628, 27, 2.7, 1.6, 0.0, 0.0, 0.0 +-8.399999999999999,1,a-phys-i3,2022-23,Webster - Bartlett High School,03160505, 393, 64, 3.6, 4.6, 2.3, 1.8, 4.1 +8.0,5,a-phys-i3,2022-23,Webster - Park Avenue Elementary,03160015, 836, 16, 0.7, 0.7, 0.5, 0.0, 0.0 +0.0,1,a-phys-i3,2022-23,Webster - Webster Middle School,03160315, 636, 66, 2.4, 1.6, 1.6, 2.8, 2.0 +NA,NA,a-phys-i3,2022-23,Wellesley - Ernest F Upham,03170050, 161, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Hunnewell,03170025, 202, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - John D Hardy,03170020, 212, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Joseph E Fiske,03170015, 296, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Katharine Lee Bates,03170005, 273, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 120, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Schofield,03170045, 338, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Wellesley - Sprague Elementary School,03170048, 296, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Wellesley - Wellesley Middle,03170305, 940, 42, 2.6, 1.3, 0.5, 0.1, 0.0 +8.0,5,a-phys-i3,2022-23,Wellesley - Wellesley Sr High,03170505," 1,424", 14, 0.6, 0.3, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Wellfleet - Wellfleet Elementary,03180005, 98, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,West Boylston - Major Edwards Elementary,03220005, 445, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 442, 15, 1.1, 1.6, 0.7, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,West Bridgewater - Howard School,03230305, 319, 8, 1.3, 0.9, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,West Bridgewater - Rose L Macdonald,03230003, 320, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,West Bridgewater - Spring Street School,03230005, 171, 0,"","","","","" +4.4,4.4,a-phys-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 655, 42, 1.7, 2.3, 1.1, 0.5, 0.9 +NA,NA,a-phys-i3,2022-23,West Springfield - John Ashley,03320005, 187, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,West Springfield - John R Fausey,03320010, 435, 6, 1.1, 0.2, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,West Springfield - Memorial,03320025, 211, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,West Springfield - Mittineague,03320030, 154, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,West Springfield - Philip G Coburn,03320007, 639, 9, 0.6, 0.2, 0.5, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,West Springfield - Tatham,03320040, 233, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,West Springfield - West Springfield Early Childhood,03320001, 151, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,West Springfield - West Springfield High,03320505," 1,256", 67, 1.1, 1.4, 1.9, 0.6, 0.2 +7.6,5,a-phys-i3,2022-23,West Springfield - West Springfield Middle,03320305, 965, 50, 1.1, 2.1, 1.5, 0.4, 0.1 +NA,NA,a-phys-i3,2022-23,Westborough - Annie E Fales,03210010, 347, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 544, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - J Harding Armstrong,03210005, 431, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - Mill Pond School,03210045, 910, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 610, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westborough - Westborough High,03210505," 1,212", 12, 0.2, 0.7, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Westfield - Abner Gibbs,03250020, 188, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 178, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Franklin Ave,03250015, 180, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Highland,03250025, 385, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westfield - Munger Hill,03250033, 365, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Westfield - Paper Mill,03250036, 354, 9, 1.1, 0.8, 0.6, 0.0, 0.0 +6.8,5,a-phys-i3,2022-23,Westfield - Southampton Road,03250040, 337, 10, 1.2, 1.2, 0.3, 0.0, 0.3 +-4.800000000000001,1,a-phys-i3,2022-23,Westfield - Westfield High,03250505," 1,081", 152, 3.2, 1.9, 4.7, 0.9, 3.2 +8.0,5,a-phys-i3,2022-23,Westfield - Westfield Intermediate School,03250075, 693, 34, 1.2, 2.2, 1.3, 0.3, 0.0 +7.6,5,a-phys-i3,2022-23,Westfield - Westfield Middle School,03250310, 715, 73, 2.7, 3.9, 2.8, 0.7, 0.1 +6.0,5,a-phys-i3,2022-23,Westfield - Westfield Technical Academy,03250605, 557, 27, 0.5, 1.6, 0.9, 1.3, 0.5 +NA,NA,a-phys-i3,2022-23,Westfield - Westfield Virtual School,03250705, 130, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Abbot Elementary,03260004, 365, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Blanchard Middle,03260310, 552, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Col John Robinson,03260025, 363, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Day Elementary,03260007, 332, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 352, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Nabnasset,03260015, 387, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Rita E. Miller Elementary School,03260055, 315, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westford - Stony Brook School,03260330, 620, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westford - Westford Academy,03260505," 1,537", 14, 0.6, 0.2, 0.1, 0.1, 0.0 +NA,NA,a-phys-i3,2022-23,Westhampton - Westhampton Elementary School,03270005, 105, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Country,03300010, 341, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Field Elementary School,03300012, 269, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Weston High,03300505, 649, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Weston Middle,03300305, 449, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weston - Woodland,03300015, 326, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westport - Alice A Macomber,03310015, 184, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westport - Westport Elementary,03310030, 453, 7, 0.9, 0.7, 0.0, 0.0, 0.0 +8.0,5,a-phys-i3,2022-23,Westport - Westport Middle-High School,03310515, 849, 59, 4.1, 1.5, 1.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Westwood - Deerfield School,03350010, 201, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westwood - Downey,03350012, 317, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Westwood - E W Thurston Middle,03350305, 667, 9, 1.0, 0.3, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Westwood - Martha Jones,03350017, 267, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Westwood - Paul Hanlon,03350015, 231, 2,"","","","","" +7.6,5,a-phys-i3,2022-23,Westwood - Westwood High,03350505, 915, 20, 0.9, 0.8, 0.2, 0.2, 0.1 +NA,NA,a-phys-i3,2022-23,Westwood - Westwood Integrated Preschool,03350050, 51, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Westwood - William E Sheehan,03350025, 291, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Academy Avenue,03360005, 354, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Frederick C Murphy,03360050, 289, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 219, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Weymouth - Lawrence W Pingree,03360065, 267, 8, 1.9, 1.1, 0.0, 0.0, 0.0 +4.8,4.8,a-phys-i3,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020," 1,240", 166, 5.1, 3.2, 3.4, 0.9, 0.8 +NA,NA,a-phys-i3,2022-23,Weymouth - Ralph Talbot,03360085, 272, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Thomas V Nash,03360060, 250, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 366, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Weymouth - Wessagusset,03360110, 353, 3,"","","","","" +1.5999999999999996,1.6,a-phys-i3,2022-23,Weymouth - Weymouth High School,03360505," 1,862", 258, 4.7, 3.7, 3.2, 0.7, 1.6 +NA,NA,a-phys-i3,2022-23,Weymouth - William Seach,03360080, 392, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Whately - Whately Elementary,03370005, 130, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 450, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - Indian Head,07800035, 490, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - John H Duval,07800030, 448, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - Louise A Conley,07800010, 493, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 115, 0,"","","","","" +4.8,4.8,a-phys-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505," 1,113", 52, 0.3, 1.3, 2.1, 0.2, 0.8 +8.0,5,a-phys-i3,2022-23,Whitman-Hanson - Whitman Middle,07800310, 521, 18, 1.2, 1.9, 0.2, 0.2, 0.0 +6.0,5,a-phys-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,295", 84, 0.6, 2.2, 1.9, 1.3, 0.5 +NA,NA,a-phys-i3,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 133, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - Boutwell,03420005, 150, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - North Intermediate,03420060, 253, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - Shawsheen Elementary,03420025, 399, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Wilmington - West Intermediate,03420080, 305, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Wilmington - Wilmington High,03420505, 677, 15, 0.1, 1.2, 0.4, 0.4, 0.0 +8.0,5,a-phys-i3,2022-23,Wilmington - Wilmington Middle School,03420330, 640, 13, 0.5, 1.1, 0.3, 0.2, 0.0 +NA,NA,a-phys-i3,2022-23,Wilmington - Woburn Street,03420020, 432, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchendon - Memorial,03430040, 333, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchendon - Murdock Academy for Success,03430405, 27, 0,"","","","","" +3.5999999999999996,3.6,a-phys-i3,2022-23,Winchendon - Murdock High School,03430515, 281, 35, 0.4, 5.0, 5.7, 0.4, 1.1 +5.2,5,a-phys-i3,2022-23,Winchendon - Murdock Middle School,03430315, 280, 36, 3.6, 6.4, 0.4, 1.8, 0.7 +NA,NA,a-phys-i3,2022-23,Winchendon - Toy Town Elementary,03430050, 299, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 85, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Ambrose Elementary,03440045, 345, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Lincoln Elementary,03440005, 334, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Lynch Elementary,03440020, 495, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - McCall Middle,03440305," 1,045", 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Muraco Elementary,03440040, 334, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winchester - Vinson-Owen Elementary,03440025, 444, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Winchester - Winchester High School,03440505," 1,411", 9, 0.1, 0.4, 0.1, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 449, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 534, 0,"","","","","" +7.2,5,a-phys-i3,2022-23,Winthrop - Winthrop High School,03460505, 629, 24, 0.3, 2.4, 0.8, 0.2, 0.2 +8.0,5,a-phys-i3,2022-23,Winthrop - Winthrop Middle School,03460305, 443, 9, 0.0, 1.4, 0.7, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Woburn - Clyde Reeves,03470040, 460, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 469, 13, 1.1, 0.4, 0.9, 0.4, 0.0 +NA,NA,a-phys-i3,2022-23,Woburn - Goodyear Elementary School,03470005, 352, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 404, 0,"","","","","" +6.4,5,a-phys-i3,2022-23,Woburn - John F Kennedy Middle School,03470405, 538, 17, 0.7, 1.1, 0.7, 0.2, 0.4 +NA,NA,a-phys-i3,2022-23,Woburn - Linscott-Rumford,03470025, 204, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Malcolm White,03470055, 338, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Mary D Altavesta,03470065, 218, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Shamrock,03470043, 303, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Woburn - Woburn High,03470505," 1,228", 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Belmont Street Community,03480020, 672, 7, 0.4, 0.4, 0.1, 0.0, 0.0 +-1.5999999999999996,1,a-phys-i3,2022-23,Worcester - Burncoat Middle School,03480405, 755, 95, 0.8, 5.2, 2.6, 1.6, 2.4 +4.4,4.4,a-phys-i3,2022-23,Worcester - Burncoat Senior High,03480503," 1,267", 70, 1.7, 2.0, 0.6, 0.2, 0.9 +8.0,5,a-phys-i3,2022-23,Worcester - Burncoat Street,03480035, 255, 7, 0.4, 2.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Canterbury,03480045, 373, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Chandler Elementary Community,03480050, 492, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Chandler Magnet,03480052, 422, 15, 0.9, 2.1, 0.5, 0.0, 0.0 +7.2,5,a-phys-i3,2022-23,Worcester - City View,03480053, 512, 15, 1.4, 1.4, 0.0, 0.0, 0.2 +4.4,4.4,a-phys-i3,2022-23,Worcester - Claremont Academy,03480350, 531, 52, 4.7, 2.4, 1.5, 0.2, 0.9 +NA,NA,a-phys-i3,2022-23,Worcester - Clark St Community,03480055, 309, 3,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Columbus Park,03480060, 434, 16, 2.3, 1.2, 0.2, 0.0, 0.0 +7.6,5,a-phys-i3,2022-23,Worcester - Doherty Memorial High,03480512," 1,431", 112, 3.6, 2.2, 1.4, 0.4, 0.1 +7.2,5,a-phys-i3,2022-23,Worcester - Elm Park Community,03480095, 463, 16, 1.9, 0.9, 0.2, 0.2, 0.2 +NA,NA,a-phys-i3,2022-23,Worcester - Flagg Street,03480090, 376, 0,"","","","","" +6.0,5,a-phys-i3,2022-23,Worcester - Forest Grove Middle,03480415, 945, 73, 2.2, 2.8, 1.5, 0.7, 0.5 +NA,NA,a-phys-i3,2022-23,Worcester - Francis J McGrath Elementary,03480177, 245, 4,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Gates Lane,03480110, 595, 2,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Goddard School/Science Technical,03480100, 445, 4,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Grafton Street,03480115, 498, 10, 1.6, 0.4, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Head Start,03480002, 406, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Heard Street,03480136, 266, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 397, 9, 0.8, 1.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - La Familia Dual Language School,03480025, 202, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Lake View,03480145, 336, 2,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Lincoln Street,03480160, 275, 9, 1.8, 1.5, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - May Street,03480175, 316, 1,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Midland Street,03480185, 229, 8, 3.1, 0.4, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Nelson Place,03480200, 613, 3,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - Norrback Avenue,03480202, 559, 3,"","","","","" +2.8,2.8,a-phys-i3,2022-23,Worcester - North High,03480515," 1,520", 124, 2.4, 2.5, 1.1, 0.9, 1.3 +NA,NA,a-phys-i3,2022-23,Worcester - Quinsigamond,03480210, 772, 5,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Rice Square,03480215, 536, 7, 0.6, 0.6, 0.2, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Roosevelt,03480220, 620, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Worcester - South High Community,03480520," 1,809", 143, 1.9, 2.6, 2.5, 0.3, 0.6 +3.5999999999999996,3.6,a-phys-i3,2022-23,Worcester - Sullivan Middle,03480423, 898, 60, 1.8, 1.6, 1.3, 0.9, 1.1 +NA,NA,a-phys-i3,2022-23,Worcester - Tatnuck,03480230, 410, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Thorndyke Road,03480235, 385, 8, 0.5, 1.3, 0.3, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Union Hill School,03480240, 428, 4,"","","","","" +4.4,4.4,a-phys-i3,2022-23,Worcester - University Pk Campus School,03480285, 231, 19, 3.5, 2.6, 1.3, 0.0, 0.9 +8.0,5,a-phys-i3,2022-23,Worcester - Vernon Hill School,03480280, 572, 7, 0.3, 0.3, 0.5, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Wawecus Road School,03480026, 149, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Worcester - West Tatnuck,03480260, 385, 0,"","","","","" +8.0,5,a-phys-i3,2022-23,Worcester - Woodland Academy,03480030, 543, 23, 2.6, 1.7, 0.0, 0.0, 0.0 +NA,NA,a-phys-i3,2022-23,Worcester - Worcester Arts Magnet School,03480225, 390, 0,"","","","","" +5.6,5,a-phys-i3,2022-23,Worcester - Worcester East Middle,03480420, 823, 117, 7.3, 4.3, 1.2, 0.9, 0.6 +5.6,5,a-phys-i3,2022-23,Worcester - Worcester Technical High,03480605," 1,482", 61, 1.1, 1.1, 0.9, 0.3, 0.6 +NA,NA,a-phys-i3,2022-23,Worthington - R. H. Conwell,03490010, 77, 0,"","","","","" +NA,NA,a-phys-i3,2022-23,Wrentham - Charles E Roderick,03500010, 377, 1,"","","","","" +NA,NA,a-phys-i3,2022-23,Wrentham - Delaney,03500003, 603, 0,"","","","","" 7.2,5,a-phys-i3,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,447", 43, 1.0, 0.6, 0.9, 0.3, 0.2 NA,NA,a-phys-i3,2021-22,Abington - Abington Early Education Program,00010001, 100, 0,"","","","","" 6.0,5,a-phys-i3,2021-22,Abington - Abington High,00010505, 603, 38, 0.8, 3.6, 1.2, 0.2, 0.5 diff --git a/data/admin_data/dese/2A_1_students_suspended.csv b/data/admin_data/dese/2A_1_students_suspended.csv index 421084d0..b233b039 100644 --- a/data/admin_data/dese/2A_1_students_suspended.csv +++ b/data/admin_data/dese/2A_1_students_suspended.csv @@ -1,4 +1,1836 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Students,Students Disciplined,% In-School Suspension,% Out-of-School Suspension,% Expulsion,% Removed to Alternate Setting,% Emergency Removal,% Students with a School-Based Arrest,% Students with a Law Enforcement Referral +5.722960151802656,5,a-phys-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,451", 51, 0.9, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Abington - Abington Early Education Program,00010001, 104, 0,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Abington - Abington High,00010505, 571, 34, 4.0, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Abington - Abington Middle School,00010405, 669, 46, 6.4, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 537, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 344, 0,"","","","","","","" +3.294117647058823,3.29,a-phys-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 487, 49, 6.0, 6.2, 0.0, 0.0, 1.2, 0.2, 0.2 +7.544592030360532,5,a-phys-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,702", 20, 0.5, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 518, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 396, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 126, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 419, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 464, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 448, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 358, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 840, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 563, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 418, 10, 1.7, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 973, 34, 2.2, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 185, 0,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Agawam - Agawam High,00050505," 1,085", 76, 5.0, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Agawam - Agawam Junior High,00050405, 547, 17, 0.9, 2.2, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 328, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Agawam - Clifford M Granger,00050010, 345, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Agawam - James Clark School,00050030, 330, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 538, 8, 0.6, 0.9, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Agawam - Robinson Park,00050025, 303, 1,"","","","","","","" +3.521821631878557,3.52,a-phys-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205," 1,077", 121, 8.7, 5.9, 0.0, 0.0, 1.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 352, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Amesbury - Amesbury High,00070505, 467, 16, 2.6, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +2.8387096774193545,2.84,a-phys-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 59, 14, 20.3, 6.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Amesbury - Amesbury Middle,00070013, 608, 14, 1.6, 0.7, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 409, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 376, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Amherst - Fort River Elementary,00080020, 392, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Amherst - Wildwood Elementary,00080050, 340, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 886, 16, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 391, 1,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Andover - Andover High,00090505," 1,731", 55, 0.8, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Andover - Andover West Middle,00090310, 528, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Bancroft Elementary,00090003, 551, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Doherty Middle,00090305, 464, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 353, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - High Plain Elementary,00090004, 552, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Shawsheen School,00090005, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - South Elementary,00090020, 457, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - West Elementary,00090025, 564, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Andover - Wood Hill Middle School,00090350, 349, 5,"","","","","","","" +-3.6129032258064533,1,a-phys-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 577, 171, 23.4, 15.3, 0.9, 0.0, 12.3, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Arlington - Arlington High,00100505," 1,558", 29, 0.3, 1.5, 0.1, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Arlington - Brackett,00100010, 430, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 424, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Gibbs School,00100305, 518, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Hardy,00100030, 413, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - John A Bishop,00100005, 411, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - M Norcross Stratton,00100055, 448, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Menotomy Preschool,00100038, 104, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Arlington - Ottoson Middle,00100410, 933, 23, 1.7, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Arlington - Peirce,00100045, 368, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Arlington - Thompson,00100050, 524, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 538, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 201, 0,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 664, 34, 4.7, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 553, 15, 2.4, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 393, 1,"","","","","","","" +5.343453510436432,5,a-phys-i1,2022-23,Ashland - Ashland High,00140505, 860, 39, 1.5, 3.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Ashland - Ashland Middle,00140405, 704, 27, 1.7, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ashland - David Mindess,00140015, 672, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 668, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 91, 0,"","","","","","","" +3.4459203036053125,3.45,a-phys-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605," 1,135", 68, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 634, 0,"","","","","","","" +1.700189753320682,1.7,a-phys-i1,2022-23,Athol-Royalston - Athol High,06150505, 424, 46, 9.7, 8.3, 0.5, 0.0, 0.0, 0.0, 0.0 +-0.6527514231499061,1,a-phys-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 448, 65, 9.4, 11.4, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 167, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550," 1,327", 155, 10.6, 3.6, 0.1, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 364, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 76, 0,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Attleboro - Attleboro High,00160505," 1,906", 155, 5.5, 4.2, 0.0, 0.0, 3.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 52, 0,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 650, 31, 1.5, 3.4, 0.0, 0.0, 0.6, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Attleboro - Early Learning Center,00160008, 244, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 428, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 475, 3,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 466, 11, 1.3, 1.1, 0.0, 0.0, 0.6, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 595, 30, 3.0, 3.4, 0.0, 0.0, 1.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 389, 3,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 605, 32, 4.5, 1.2, 0.0, 0.0, 0.5, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Auburn - Auburn Middle,00170305, 659, 22, 1.1, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Auburn - Auburn Senior High,00170505, 874, 44, 2.7, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Auburn - Bryn Mawr,00170010, 275, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Auburn - Pakachoag School,00170025, 248, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 565, 3,"","","","","","","" +2.0796963946869065,2.08,a-phys-i1,2022-23,Avon - Avon Middle High School,00180510, 346, 39, 4.6, 7.8, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Avon - Ralph D Butler,00180010, 409, 2,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 405, 6, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 382, 29, 7.6, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 360, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 566, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 298, 4,"","","","","","","" +3.6736242884250467,3.67,a-phys-i1,2022-23,Barnstable - Barnstable High,00200505," 1,871", 196, 7.6, 5.7, 0.0, 0.0, 1.2, 0.0, 0.0 +3.2182163187855783,3.22,a-phys-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 686, 51, 2.6, 6.3, 0.0, 0.0, 0.9, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 769, 9, 0.1, 1.2, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Barnstable - Centerville Elementary,00200010, 266, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 203, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 377, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 280, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 408, 2,"","","","","","","" +-13.176470588235295,1,a-phys-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 427, 121, 1.6, 27.9, 0.2, 0.0, 0.0, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Bedford - Bedford High,00230505, 862, 19, 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Bedford - John Glenn Middle,00230305, 600, 21, 2.5, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 537, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bedford - Lt Job Lane School,00230012, 593, 1,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Belchertown - Belchertown High,00240505, 656, 7, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 495, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belchertown - Cold Spring,00240005, 206, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belchertown - Jabish Middle School,00240025, 351, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belchertown - Swift River Elementary,00240018, 487, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 124, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Bellingham - Bellingham High School,00250505, 760, 21, 0.4, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 606, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 309, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 34, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bellingham - Stall Brook,00250025, 261, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Belmont - Belmont High,00260505," 1,380", 7, 0.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Belmont - Daniel Butler,00260015, 342, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 346, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belmont - Roger E Wellington,00260035, 580, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Belmont - Winn Brook,00260005, 445, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305," 1,395", 20, 0.6, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 335, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 880, 12, 0.8, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Berkley - Berkley Community School,00270010, 487, 4,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Berkley - Berkley Middle School,00270305, 377, 21, 2.7, 4.2, 0.0, 0.3, 0.0, 0.0, 0.0 +3.9013282732447814,3.9,a-phys-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 386, 27, 3.9, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.633776091081593,5,a-phys-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 494, 26, 4.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 391, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 339, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 229, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 345, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 525, 8, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 397, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Beverly - Beverly High,00300505," 1,309", 75, 4.6, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Beverly - Beverly Middle School,00300305," 1,401", 38, 0.9, 2.1, 0.0, 0.0, 0.0, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Beverly - Centerville Elementary,00300010, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - Cove Elementary,00300015, 440, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - Hannah Elementary,00300033, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - McKeown School,00300002, 165, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Beverly - North Beverly Elementary,00300040, 357, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Billerica - Billerica Memorial High School,00310505," 1,847", 57, 0.0, 3.1, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Billerica - Frederick J Dutile,00310007, 299, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Billerica - Hajjar Elementary,00310026, 392, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Billerica - John F Kennedy,00310012, 315, 0,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Billerica - Locke Middle,00310310, 554, 19, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Billerica - Marshall Middle School,00310305, 623, 16, 0.6, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Billerica - Parker,00310015, 442, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Billerica - Thomas Ditson,00310005, 570, 3,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605," 1,238", 39, 1.1, 2.3, 0.2, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 265, 1,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 440, 24, 3.0, 3.4, 0.0, 0.0, 0.0, 0.0, 0.2 +7.013282732447817,5,a-phys-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 377, 30, 6.4, 1.3, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 116, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 397, 2,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 924, 26, 0.0, 2.3, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Adams Elementary School,00350302, 277, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 109, 0,"","","","","","","" +-0.42504743833017117,1,a-phys-i1,2022-23,Boston - Another Course To College,00350541, 296, 52, 0.0, 11.1, 0.0, 0.0, 14.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 194, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Bates Elementary School,00350278, 300, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Beethoven Elementary School,00350021, 313, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Boston - Blackstone Elementary School,00350390, 658, 12, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 252, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Boston - Boston Arts Academy,00350546, 496, 12, 0.0, 2.2, 0.0, 0.0, 1.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Boston Collaborative High School,00350755, 333, 0,"","","","","","","" +0.33396584440227667,1,a-phys-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 690, 72, 0.7, 10.1, 0.0, 0.0, 1.2, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 630, 10, 0.2, 1.6, 0.0, 0.0, 0.0, 0.2, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Boston - Boston Latin Academy,00350545," 1,728", 43, 0.3, 2.4, 0.0, 0.0, 0.2, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Boston - Boston Latin School,00350560," 2,427", 34, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 340, 15, 0.0, 4.1, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Bradley Elementary School,00350215, 301, 0,"","","","","","","" +-4.675521821631879,1,a-phys-i1,2022-23,Boston - Brighton High School,00350505, 736, 125, 0.7, 16.7, 0.0, 0.0, 2.3, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,Boston - Burke High School,00350525, 500, 23, 0.0, 4.6, 0.0, 0.0, 0.2, 0.4, 0.2 +NA,NA,a-phys-i1,2022-23,Boston - Carter School,00350036, 31, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Channing Elementary School,00350360, 236, 0,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Boston - Charlestown High School,00350515, 929, 28, 0.3, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Chittick Elementary School,00350154, 259, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Clap Elementary School,00350298, 124, 0,"","","","","","","" +-18.64136622390892,1,a-phys-i1,2022-23,Boston - Community Academy,00350518, 77, 28, 2.6, 35.1, 0.0, 0.0, 2.6, 0.0, 0.0 +-1.2599620493358636,1,a-phys-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 394, 48, 0.3, 12.2, 0.0, 0.0, 0.0, 0.3, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Boston - Condon K-8 School,00350146, 725, 9, 0.8, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Conley Elementary School,00350122, 173, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Boston - Curley K-8 School,00350020, 994, 21, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 617, 44, 0.2, 7.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Dever Elementary School,00350268, 455, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - East Boston Early Education Center,00350009, 198, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Boston - East Boston High School,00350530," 1,396", 52, 0.1, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Boston - Edison K-8 School,00350375, 690, 13, 0.0, 1.9, 0.0, 0.0, 0.1, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 854, 8, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Boston - Ellis Elementary School,00350072, 394, 11, 0.3, 2.5, 0.0, 0.0, 0.3, 0.0, 0.3 +NA,NA,a-phys-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 215, 0,"","","","","","","" +-2.4743833017077814,1,a-phys-i1,2022-23,Boston - English High School,00350535, 749, 103, 0.7, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Everett Elementary School,00350088, 313, 2,"","","","","","","" +-1.943074003795067,1,a-phys-i1,2022-23,Boston - Excel High School,00350522, 513, 69, 0.0, 13.1, 0.0, 0.0, 2.1, 0.2, 0.0 +4.432637571157495,4.43,a-phys-i1,2022-23,Boston - Fenway High School,00350540, 386, 18, 0.0, 4.7, 0.0, 0.0, 0.0, 0.0, 0.3 +4.888045540796964,4.89,a-phys-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 387, 19, 0.8, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 399, 13, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Boston - Greater Egleston High School,00350543, 124, 7, 0.0, 4.8, 0.8, 0.0, 0.0, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 418, 14, 0.5, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Grew Elementary School,00350135, 234, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Guild Elementary School,00350062, 277, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Hale Elementary School,00350243, 185, 0,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Boston - Haley Pilot School,00350077, 418, 22, 4.1, 2.9, 0.0, 0.0, 0.0, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 382, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Haynes Early Education Center,00350010, 235, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 230, 0,"","","","","","","" +2.0796963946869065,2.08,a-phys-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 760, 60, 0.4, 7.8, 0.0, 0.0, 0.4, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Boston - Hennigan K-8 School,00350153, 634, 13, 0.9, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Hernandez K-8 School,00350691, 438, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 144, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 205, 3,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Boston - Holmes Elementary School,00350138, 320, 7, 0.6, 1.6, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 78, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Hurley K-8 School,00350182, 373, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 432, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 287, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Kenny Elementary School,00350328, 371, 2,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Boston - Kilmer K-8 School,00350190, 421, 9, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - King Elementary School,00350376, 503, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Lee Academy,00350001, 225, 0,"","","","","","","" +4.7362428842504745,4.74,a-phys-i1,2022-23,Boston - Lee K-8 School,00350183, 610, 26, 0.0, 4.3, 0.0, 0.0, 0.0, 0.0, 0.0 +5.191650853889943,5,a-phys-i1,2022-23,Boston - Lyndon K-8 School,00350262, 614, 23, 0.2, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0 +-2.3984819734345355,1,a-phys-i1,2022-23,Boston - Lyon High School,00350655, 139, 20, 0.0, 13.7, 0.0, 0.0, 3.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Lyon K-8 School,00350004, 145, 5,"","","","","","","" +1.396584440227704,1.4,a-phys-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537," 1,152", 102, 0.2, 8.7, 0.0, 0.0, 0.3, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Manning Elementary School,00350184, 171, 4,"","","","","","","" +-1.4876660341555985,1,a-phys-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 345, 45, 0.9, 12.5, 0.3, 0.0, 0.3, 0.0, 0.0 +7.165085388994307,5,a-phys-i1,2022-23,Boston - Mario Umana Academy,00350656, 654, 13, 1.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mason Elementary School,00350304, 207, 1,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Boston - Mather Elementary School,00350227, 531, 7, 0.2, 0.9, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 543, 0,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Boston - McKay K-8 School,00350080, 726, 42, 4.4, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +-9.305502846299813,1,a-phys-i1,2022-23,Boston - McKinley Schools,00350363, 197, 51, 1.5, 22.8, 0.0, 0.0, 8.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mendell Elementary School,00350100, 342, 2,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 697, 17, 0.4, 2.2, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Mozart Elementary School,00350237, 186, 2,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Boston - Murphy K-8 School,00350240, 906, 32, 0.4, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.12144212523719176,1,a-phys-i1,2022-23,Boston - New Mission High School,00350542, 654, 74, 1.1, 10.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575," 1,569", 24, 0.2, 1.4, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 337, 1,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Boston - Ohrenberger School,00350258, 528, 10, 0.8, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +4.129032258064516,4.13,a-phys-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 786, 43, 0.9, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Otis Elementary School,00350156, 450, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Perkins Elementary School,00350231, 172, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Perry Elementary School,00350255, 200, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Philbrick Elementary School,00350172, 124, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Quincy Elementary School,00350286, 777, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Boston - Quincy Upper School,00350565, 559, 26, 1.3, 3.6, 0.0, 0.0, 1.6, 0.0, 0.0 +2.155597722960151,2.16,a-phys-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 392, 32, 1.5, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Russell Elementary School,00350366, 413, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Shaw Elementary School,00350014, 203, 0,"","","","","","","" +-2.3984819734345355,1,a-phys-i1,2022-23,Boston - Snowden International High School,00350690, 517, 81, 0.2, 13.7, 0.0, 0.0, 4.4, 0.0, 0.2 +7.3927893738140416,5,a-phys-i1,2022-23,Boston - Sumner Elementary School,00350052, 590, 6, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Boston - Taylor Elementary School,00350054, 438, 9, 0.2, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +0.030360531309297268,1,a-phys-i1,2022-23,Boston - TechBoston Academy,00350657, 993, 121, 1.8, 10.5, 0.0, 0.0, 1.0, 0.1, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Boston - Tobin K-8 School,00350229, 471, 6, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Boston - Trotter Elementary School,00350370, 345, 10, 0.0, 2.9, 0.0, 0.0, 0.3, 0.0, 0.3 +NA,NA,a-phys-i1,2022-23,Boston - Tynan Elementary School,00350181, 242, 3,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Boston - UP Academy Holland,00350167, 674, 13, 1.0, 1.0, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 550, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 120, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Winship Elementary School,00350374, 362, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boston - Winthrop Elementary School,00350180, 258, 0,"","","","","","","" +0.33396584440227667,1,a-phys-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 564, 59, 0.5, 10.1, 0.2, 0.0, 2.5, 0.2, 0.0 +3.0664136622390887,3.07,a-phys-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 727, 56, 0.4, 6.5, 0.1, 0.0, 1.9, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 439, 15, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-1.791271347248578,1,a-phys-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 490, 67, 0.4, 12.9, 0.0, 0.0, 1.8, 0.0, 0.0 +2.7628083491461095,2.76,a-phys-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 721, 60, 1.7, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +4.660341555977229,4.66,a-phys-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 978, 58, 3.4, 4.4, 0.0, 0.0, 0.0, 0.0, 0.0 +2.914611005692599,2.91,a-phys-i1,2022-23,Bourne - Bourne High School,00360505, 371, 25, 0.0, 6.7, 0.0, 0.0, 0.0, 0.3, 0.0 +NA,NA,a-phys-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 389, 3,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Bourne - Bourne Middle School,00360325, 447, 45, 9.6, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 428, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boxford - Harry Lee Cole,00380005, 355, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Boxford - Spofford Pond,00380013, 391, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Archie T Morrison,00400033, 321, 0,"","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Braintree - Braintree High,00400505," 1,784", 60, 0.0, 3.3, 0.1, 0.0, 0.1, 0.1, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Braintree - Donald Ross,00400050, 212, 8, 0.9, 0.5, 0.0, 0.0, 2.8, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Braintree - East Middle School,00400305, 998, 12, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Braintree - Highlands,00400015, 418, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Hollis,00400005, 343, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Liberty,00400025, 376, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 299, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 209, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Braintree - South Middle School,00400310, 524, 18, 3.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brewster - Eddy Elementary,00410010, 204, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 243, 0,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 346, 31, 0.3, 2.9, 0.0, 0.0, 7.8, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 767, 19, 2.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.1 +6.861480075901328,5,a-phys-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505," 1,434", 27, 0.3, 1.5, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 505, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 365, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002," 1,023", 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 740, 8, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 19, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 818, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 294, 0,"","","","","","","" +4.584440227703984,4.58,a-phys-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 556, 25, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605," 1,314", 57, 2.2, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +2.4592030360531307,2.46,a-phys-i1,2022-23,Brockton - Ashfield Middle School,00440421, 492, 36, 0.4, 7.3, 0.0, 0.0, 1.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 369, 0,"","","","","","","" +-5.282732447817838,1,a-phys-i1,2022-23,Brockton - Brockton Champion High School,00440515, 212, 42, 0.5, 17.5, 0.0, 0.0, 5.2, 0.0, 0.0 +-2.2466793168880463,1,a-phys-i1,2022-23,Brockton - Brockton High,00440505," 3,930", 599, 5.5, 13.5, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 249, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Brookfield,00440010, 474, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Downey,00440110, 638, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 849, 3,"","","","","","","" +2.8387096774193545,2.84,a-phys-i1,2022-23,Brockton - East Middle School,00440405, 499, 37, 0.8, 6.8, 0.0, 0.0, 0.8, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Brockton - Edgar B Davis,00440023, 992, 27, 0.1, 2.5, 0.0, 0.0, 0.5, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Brockton - Edison Academy,00440520, 404, 6, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 437, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Hancock,00440045, 692, 0,"","","","","","","" +-2.3984819734345355,1,a-phys-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 51, 14, 0.0, 13.7, 0.0, 15.7, 5.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - John F Kennedy,00440017, 583, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 877, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 876, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - Mary E. Baker School,00440002, 734, 0,"","","","","","","" +0.10626185958254179,1,a-phys-i1,2022-23,Brockton - North Middle School,00440410, 481, 85, 11.0, 10.4, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brockton - Oscar F Raymond,00440078, 858, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 39, 0,"","","","","","","" +4.280834914611005,4.28,a-phys-i1,2022-23,Brockton - Plouffe Middle School,00440422, 719, 42, 1.9, 4.9, 0.0, 0.0, 0.8, 0.0, 0.0 +-4.52371916508539,1,a-phys-i1,2022-23,Brockton - South Middle School,00440415, 562, 93, 0.0, 16.5, 0.0, 0.0, 2.0, 0.2, 0.0 +-1.791271347248578,1,a-phys-i1,2022-23,Brockton - West Middle School,00440420, 581, 79, 1.5, 12.9, 0.0, 0.0, 1.2, 0.0, 0.0 +1.700189753320682,1.7,a-phys-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305," 2,287", 270, 6.0, 8.3, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 297, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 62, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 77, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 58, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Brookline - Brookline High,00460505," 2,124", 47, 1.3, 1.5, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookline - Edith C Baker,00460005, 721, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 878, 4,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Brookline - Heath,00460025, 470, 7, 1.1, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookline - John D Runkle,00460045, 516, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - Lawrence,00460030, 670, 1,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Brookline - Michael Driscoll,00460020, 482, 6, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Brookline - Pierce,00460040, 724, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - The Lynch Center,00460060, 59, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Brookline - William H Lincoln,00460035, 501, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Burlington - Burlington High,00480505," 1,031", 35, 0.8, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Burlington - Fox Hill,00480007, 436, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 517, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 846, 16, 1.5, 0.7, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Burlington - Memorial,00480015, 403, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 341, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Amigos School,00490006, 419, 1,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506," 1,939", 55, 0.3, 2.3, 0.0, 0.0, 1.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 303, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Cambridgeport,00490007, 290, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 269, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Graham and Parks,00490080, 398, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Haggerty,00490020, 260, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - John M Tobin,00490065, 347, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 239, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - King Open,00490035, 391, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 355, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 340, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Morse,00490045, 325, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cambridge - Peabody,00490050, 332, 1,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 262, 13, 1.1, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 289, 10, 1.0, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 295, 0,"","","","","","","" +4.432637571157495,4.43,a-phys-i1,2022-23,Canton - Canton High,00500505, 921, 46, 0.4, 4.7, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Canton - Dean S Luce,00500020, 476, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Canton - John F Kennedy,00500017, 483, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 553, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 118, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 764, 42, 4.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 254, 3,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 679, 43, 4.0, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Carlisle - Carlisle School,00510025, 609, 7, 0.7, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Carver - Carver Elementary School,00520015, 817, 2,"","","","","","","" +0.2580645161290322,1,a-phys-i1,2022-23,Carver - Carver Middle/High School,00520405, 778, 96, 5.8, 10.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 114, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Central Berkshire - Craneville,06350025, 452, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Central Berkshire - Kittredge,06350035, 172, 0,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 352, 52, 11.4, 6.3, 0.0, 0.0, 0.3, 0.0, 0.0 +2.7628083491461095,2.76,a-phys-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 491, 52, 5.3, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelmsford - Byam School,00560030, 515, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelmsford - Center Elementary School,00560005, 500, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 486, 0,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Chelmsford - Chelmsford High,00560505," 1,398", 78, 2.8, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 739, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelmsford - Community Education Center,00560001, 246, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 868, 25, 1.4, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelmsford - South Row,00560015, 482, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Chelsea - Chelsea High,00570505," 1,805", 148, 3.4, 2.4, 0.0, 0.0, 5.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 171, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 115, 1,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Chelsea - Clark Avenue School,00570050, 722, 46, 1.5, 5.8, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 526, 1,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 480, 33, 0.6, 6.5, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 527, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 493, 3,"","","","","","","" +6.481973434535104,5,a-phys-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 557, 11, 0.2, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 972, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 487, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 155, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Barry,00610003, 374, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Belcher,00610010, 240, 0,"","","","","","","" +-0.27324478178368217,1,a-phys-i1,2022-23,Chicopee - Bellamy Middle,00610305, 835, 125, 5.5, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Chicopee - Bowe,00610015, 449, 9, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chicopee - Bowie,00610020, 282, 2,"","","","","","","" +-40.65275142314991,1,a-phys-i1,2022-23,Chicopee - Chicopee Academy,00610021, 117, 75, 0.0, 64.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.709677419354839,5,a-phys-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510," 1,242", 41, 2.0, 1.7, 0.0, 0.0, 0.0, 0.1, 0.0 +3.9772296015180264,3.98,a-phys-i1,2022-23,Chicopee - Chicopee High,00610505, 963, 106, 6.3, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0 +0.5616698292220103,1,a-phys-i1,2022-23,Chicopee - Dupont Middle,00610310, 737, 102, 7.9, 9.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chicopee - Fairview Elementary,00610050, 406, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 421, 4,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 254, 15, 1.6, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Chicopee - Litwin,00610022, 355, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 241, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 312, 0,"","","","","","","" +1.548387096774193,1.55,a-phys-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 340, 42, 5.3, 8.5, 0.0, 0.0, 0.0, 0.0, 0.0 +0.33396584440227667,1,a-phys-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 218, 23, 0.0, 10.1, 0.5, 0.0, 1.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 201, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Clinton - Clinton Elementary,00640050, 890, 43, 1.5, 1.9, 0.0, 2.1, 1.1, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Clinton - Clinton Middle School,00640305, 580, 36, 4.3, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +3.294117647058823,3.29,a-phys-i1,2022-23,Clinton - Clinton Senior High,00640505, 612, 58, 6.9, 6.2, 0.0, 0.0, 0.0, 0.7, 0.0 +NA,NA,a-phys-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 351, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Cohasset High School,00650505, 435, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 298, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Deer Hill,00650005, 308, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Cohasset - Joseph Osgood,00650010, 380, 0,"","","","","","","" +-0.8804554079696396,1,a-phys-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205," 1,320", 155, 0.0, 11.7, 0.0, 0.0, 0.0, 0.0, 0.0 +4.660341555977229,4.66,a-phys-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 272, 21, 3.3, 4.4, 0.0, 0.0, 3.3, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205," 1,212", 18, 0.7, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Concord - Alcott,00670005, 428, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Concord - Concord Middle,00670305, 663, 11, 0.8, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Concord - Thoreau,00670020, 447, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Concord - Willard,00670030, 464, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505," 1,323", 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 472, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Conway - Conway Grammar,00680005, 138, 0,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Danvers - Danvers High,00710505, 794, 36, 1.0, 3.9, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Danvers - Great Oak,00710015, 311, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Danvers - Highlands,00710010, 405, 1,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 787, 44, 2.5, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.0265654648956355,5,a-phys-i1,2022-23,Danvers - Ivan G Smith,00710032, 346, 10, 0.6, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Danvers - Riverside,00710030, 353, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Danvers - Willis E Thorpe,00710045, 341, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 151, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Dartmouth - Dartmouth High,00720505," 1,011", 58, 1.7, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.5351043643263753,2.54,a-phys-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 814, 68, 2.6, 7.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dartmouth - George H Potter,00720030, 410, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 714, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dartmouth - Joseph Demello,00720015, 353, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Avery,00730010, 314, 2,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Dedham - Dedham High,00730505, 745, 38, 0.0, 5.1, 0.0, 0.0, 0.8, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Dedham - Dedham Middle School,00730305, 569, 41, 6.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dedham - Early Childhood Center,00730005, 335, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Greenlodge,00730025, 284, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Oakdale,00730030, 251, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dedham - Riverdale,00730045, 185, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 336, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 480, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 496, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 954, 13, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 383, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 320, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 436, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 472, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 370, 18, 2.4, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 703, 30, 2.7, 2.0, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 454, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 605, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Douglas - Douglas Elementary School,00770015, 353, 1,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Douglas - Douglas High School,00770505, 328, 11, 2.4, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +3.521821631878557,3.52,a-phys-i1,2022-23,Douglas - Douglas Middle School,00770305, 306, 18, 0.0, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Douglas - Douglas Primary School,00770005, 226, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dover - Chickering,00780005, 518, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 669, 12, 0.7, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 484, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dracut - Brookside Elementary,00790035, 546, 5,"","","","","","","" +3.4459203036053125,3.45,a-phys-i1,2022-23,Dracut - Dracut Senior High,00790505, 881, 74, 4.4, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 560, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dracut - Greenmont Avenue,00790030, 254, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 624, 0,"","","","","","","" +4.204933586337761,4.2,a-phys-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 887, 66, 3.8, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 286, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 364, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 610, 38, 5.7, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 350, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 576, 26, 4.5, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 460, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 247, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 958, 31, 1.7, 1.8, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Duxbury - Alden School,00820004, 604, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Duxbury - Chandler Elementary,00820006, 665, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Duxbury - Duxbury High,00820505, 929, 11, 1.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Duxbury - Duxbury Middle,00820305, 624, 12, 1.9, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,East Bridgewater - Central,00830005, 540, 4,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 926, 36, 1.7, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 646, 8, 1.2, 0.3, 0.0, 0.0, 0.2, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,East Longmeadow - Birchland Park,00870305, 601, 22, 1.7, 2.3, 0.0, 0.0, 0.0, 0.2, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 824, 20, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,East Longmeadow - Mapleshade,00870010, 296, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 587, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,East Longmeadow - Mountain View,00870015, 272, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Eastham - Eastham Elementary,00850005, 200, 0,"","","","","","","" +0.4857685009487657,1,a-phys-i1,2022-23,Easthampton - Easthampton High,00860505, 382, 45, 2.9, 9.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.343453510436432,5,a-phys-i1,2022-23,Easthampton - Mountain View School,00860415," 1,080", 45, 1.3, 3.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 788, 0,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Easton - Easton Middle School,00880405, 835, 47, 3.7, 2.5, 0.0, 0.0, 0.6, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Easton - Oliver Ames High,00880505," 1,102", 40, 2.9, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Easton - Richardson Olmsted School,00880025, 777, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 442, 0,"","","","","","","" +3.749525616698292,3.75,a-phys-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 395, 23, 0.3, 5.6, 0.3, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Erving - Erving Elementary,00910030, 131, 0,"","","","","","","" +6.709677419354839,5,a-phys-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,707", 29, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Everett - Adams School,00930003, 261, 0,"","","","","","","" +-0.9563567362428855,1,a-phys-i1,2022-23,Everett - Devens School,00930030, 68, 10, 7.4, 11.8, 0.0, 0.0, 7.4, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Everett - Everett High,00930505," 2,426", 180, 6.1, 2.4, 0.0, 0.0, 0.3, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Everett - George Keverian School,00930028, 994, 15, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +6.0265654648956355,5,a-phys-i1,2022-23,Everett - Lafayette School,00930038," 1,134", 29, 0.1, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Everett - Madeline English School,00930018, 845, 76, 3.2, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Everett - Parlin School,00930058," 1,142", 57, 1.9, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 719, 37, 2.4, 3.6, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Everett - Webster Extension,00930001, 230, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Everett - Webster School,00930015, 365, 0,"","","","","","","" +-1.184060721062619,1,a-phys-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205," 1,402", 179, 1.2, 12.1, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fairhaven - East Fairhaven,00940010, 327, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fairhaven - Fairhaven High,00940505, 650, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fairhaven - Hastings Middle,00940305, 448, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fairhaven - Leroy Wood,00940030, 450, 2,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Fall River - B M C Durfee High,00950505," 2,562", 58, 0.1, 2.2, 0.0, 0.0, 0.1, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 742, 20, 0.0, 1.9, 0.0, 0.0, 1.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Early Learning Center,00950001, 119, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Fall River - Henry Lord Community School,00950017, 876, 20, 0.0, 1.9, 0.0, 0.0, 0.7, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Fall River - James Tansey,00950140, 289, 6, 0.7, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +4.129032258064516,4.13,a-phys-i1,2022-23,Fall River - John J Doran,00950045, 550, 42, 3.8, 5.1, 0.0, 0.0, 2.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 686, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 724, 9, 0.7, 0.7, 0.0, 0.1, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 731, 1,"","","","","","","" +-0.42504743833017117,1,a-phys-i1,2022-23,Fall River - Morton Middle,00950315, 737, 106, 1.4, 11.1, 0.0, 0.0, 5.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - North End Elementary,00950005, 737, 0,"","","","","","","" +-4.751423149905125,1,a-phys-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 333, 73, 0.0, 16.8, 0.0, 0.0, 10.5, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Fall River - Samuel Watson,00950145, 269, 6, 0.4, 1.5, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - Spencer Borden,00950130, 617, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Fall River - Stone PK-12 School,00950340, 89, 0,"","","","","","","" +6.709677419354839,5,a-phys-i1,2022-23,Fall River - Talbot Innovation School,00950305, 593, 17, 0.5, 1.7, 0.0, 0.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Fall River - William S Greene,00950065, 793, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 311, 2,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Falmouth - Falmouth High,00960505, 798, 58, 3.4, 4.6, 0.0, 0.4, 4.6, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Falmouth - Lawrence,00960405, 499, 49, 5.6, 7.0, 0.0, 0.0, 2.6, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Falmouth - Morse Pond School,00960305, 506, 16, 2.0, 1.6, 0.0, 0.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Falmouth - Mullen-Hall,00960020, 390, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 323, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Falmouth - Teaticket,00960015, 282, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 126, 2,"","","","","","","" +0.33396584440227667,1,a-phys-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 626, 67, 1.9, 10.1, 0.0, 0.0, 0.5, 0.2, 0.0 +8.0,5,a-phys-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 655, 16, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0 +-0.9563567362428855,1,a-phys-i1,2022-23,Fitchburg - Fitchburg High,00970505," 1,353", 291, 15.3, 11.8, 0.0, 0.0, 7.7, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 297, 3,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 775, 14, 0.0, 0.1, 0.0, 0.0, 1.7, 0.0, 0.0 +0.33396584440227667,1,a-phys-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 621, 102, 9.7, 10.1, 0.0, 0.0, 1.1, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 706, 17, 0.0, 1.4, 0.0, 0.0, 1.4, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 658, 12, 0.0, 0.6, 0.0, 0.0, 1.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Florida - Abbott Memorial,00980005, 92, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 223, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 266, 0,"","","","","","","" +4.7362428842504745,4.74,a-phys-i1,2022-23,Foxborough - Foxborough High,00990505, 792, 40, 1.8, 4.3, 0.0, 0.0, 0.3, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Foxborough - John J Ahern,00990405, 755, 27, 2.3, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 358, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 372, 5,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550," 1,626", 58, 0.5, 3.0, 0.0, 0.0, 0.6, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Framingham - Barbieri Elementary,01000035, 713, 9, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Brophy,01000006, 511, 5,"","","","","","","" +1.3206831119544582,1.32,a-phys-i1,2022-23,Framingham - Cameron Middle School,01000302, 578, 70, 10.2, 8.8, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 446, 2,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Framingham - Framingham High School,01000515," 2,765", 192, 4.8, 4.2, 0.0, 0.0, 1.2, 0.0, 0.0 +3.3700189753320684,3.37,a-phys-i1,2022-23,Framingham - Fuller Middle,01000305, 686, 68, 9.3, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 524, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - Hemenway,01000015, 588, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - Juniper Hill School,01000001, 336, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - King Elementary School,01000005, 419, 4,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 388, 9, 0.5, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 591, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Framingham - Potter Road,01000039, 574, 5,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Framingham - Walsh Middle,01000310, 825, 25, 1.6, 2.1, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 406, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 328, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 180, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Franklin - Franklin High,01010505," 1,651", 119, 6.7, 3.1, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 554, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Franklin - Horace Mann,01010405, 380, 12, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 343, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Jefferson Elementary,01010010, 363, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Oak Street Elementary,01010030, 371, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Franklin - Parmenter,01010032, 300, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Franklin - Remington Middle,01010310, 378, 16, 3.2, 2.1, 0.0, 0.0, 0.8, 0.0, 0.0 +1.01707779886148,1.02,a-phys-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 606, 81, 6.3, 9.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 734, 32, 1.9, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 503, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 440, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 681, 17, 1.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 457, 2,"","","","","","","" +7.772296015180265,5,a-phys-i1,2022-23,Frontier - Frontier Regional,06700505, 612, 7, 0.8, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +2.990512333965844,2.99,a-phys-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 151, 10, 0.0, 6.6, 0.7, 0.0, 2.6, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Gardner - Gardner Elementary School,01030001," 1,054", 6, 0.3, 0.5, 0.0, 0.0, 0.3, 0.0, 0.0 +0.7134724857685006,1,a-phys-i1,2022-23,Gardner - Gardner High,01030505, 853, 88, 0.7, 9.6, 0.0, 0.0, 0.6, 0.0, 0.0 +1.01707779886148,1.02,a-phys-i1,2022-23,Gardner - Gardner Middle School,01030405, 499, 54, 3.8, 9.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gateway - Chester Elementary,06720059, 131, 1,"","","","","","","" +1.3206831119544582,1.32,a-phys-i1,2022-23,Gateway - Gateway Regional High,06720505, 170, 24, 8.2, 8.8, 0.0, 0.0, 0.0, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 200, 24, 10.5, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gateway - Littleville Elementary School,06720143, 312, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Georgetown High School,01050505, 304, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 189, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Penn Brook,01050010, 708, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Georgetown - Perley Elementary,01050005, 84, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 108, 0,"","","","","","","" +1.2447817836812136,1.24,a-phys-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 213, 23, 2.3, 8.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 160, 1,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 220, 6, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 200, 12, 2.5, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.6375711574952561,1,a-phys-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 516, 66, 7.0, 9.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gloucester - Beeman Memorial,01070010, 317, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 192, 1,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Gloucester - Gloucester High,01070505, 834, 25, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 148, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - Plum Cove School,01070042, 204, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 636, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - Veterans Memorial,01070045, 221, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gloucester - West Parish,01070050, 377, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0,"","","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Grafton - Grafton High School,01100505, 891, 53, 4.0, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Grafton - Grafton Middle,01100305, 530, 12, 1.9, 0.8, 0.0, 0.2, 0.0, 0.0, 0.2 +7.772296015180265,5,a-phys-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 602, 6, 1.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Grafton - North Grafton Elementary,01100025, 261, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Grafton - North Street Elementary School,01100030, 557, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Grafton - South Grafton Elementary,01100005, 313, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Granby - East Meadow,01110004, 416, 6, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 315, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900," 1,408", 0,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605," 1,418", 80, 1.6, 5.1, 0.0, 0.0, 0.0, 0.1, 0.0 +4.584440227703984,4.58,a-phys-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,697", 77, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 2,330", 138, 1.7, 4.1, 0.0, 0.0, 1.3, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 2,115", 177, 7.0, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 220, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Greenfield - Federal Street School,01140010, 215, 0,"","","","","","","" +-0.04554079696394725,1,a-phys-i1,2022-23,Greenfield - Greenfield High,01140505, 480, 55, 1.5, 10.6, 0.0, 0.0, 0.8, 0.0, 0.0 +2.0796963946869065,2.08,a-phys-i1,2022-23,Greenfield - Greenfield Middle,01140305, 320, 32, 3.8, 7.8, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Greenfield - Newton School,01140035, 222, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 103, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 103, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 532, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 688, 1,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 746, 6, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 331, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hadley - Hadley Elementary,01170015, 284, 0,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Hadley - Hopkins Academy,01170505, 231, 9, 2.2, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Halifax - Halifax Elementary,01180005, 570, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 454, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 376, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 326, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 558, 14, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 386, 16, 1.3, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 329, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 374, 1,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 998, 37, 1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 315, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 310, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 610, 52, 8.2, 1.8, 0.0, 0.0, 0.0, 0.2, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 679, 21, 0.1, 2.8, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hancock - Hancock Elementary,01210005, 63, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hanover - Cedar Elementary,01220004, 509, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hanover - Center Elementary,01220005, 645, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Hanover - Hanover High,01220505, 671, 14, 0.1, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Hanover - Hanover Middle,01220305, 810, 7, 0.1, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Harvard - Bromfield,01250505, 568, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 478, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 223, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hatfield - Smith Academy,01270505, 136, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 42, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Bradford Elementary,01280008, 556, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030," 1,109", 39, 1.4, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.42504743833017117,1,a-phys-i1,2022-23,Haverhill - Consentino Middle School,01280100, 763, 89, 1.3, 11.1, 0.0, 0.0, 0.0, 0.0, 0.0 +0.10626185958254179,1,a-phys-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 603, 63, 0.0, 10.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-23.878557874762812,1,a-phys-i1,2022-23,Haverhill - Gateway Academy,01280515, 100, 42, 0.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Haverhill - Golden Hill,01280026, 495, 0,"","","","","","","" +-24.789373814041756,1,a-phys-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 44, 19, 0.0, 43.2, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.7286527514231506,1,a-phys-i1,2022-23,Haverhill - Haverhill High,01280505," 2,092", 353, 10.6, 11.5, 0.0, 0.0, 0.2, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Haverhill - John G Whittier,01280085, 503, 28, 3.6, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Haverhill - Moody,01280045, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 142, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 557, 3,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 508, 16, 0.4, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Haverhill - Tilton,01280075, 338, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 185, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Haverhill - Walnut Square,01280080, 146, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 98, 0,"","","","","","","" +3.9772296015180264,3.98,a-phys-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 131, 14, 6.1, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 314, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 221, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hingham - East Elementary School,01310005, 529, 2,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Hingham - Hingham High,01310505," 1,173", 9, 0.3, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Hingham - Hingham Middle School,01310410, 852, 10, 0.5, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hingham - Plymouth River,01310019, 388, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hingham - South Elementary,01310020, 508, 1,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 409, 6, 1.2, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0 +1.3206831119544582,1.32,a-phys-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 668, 59, 0.0, 8.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Holbrook - John F Kennedy,01330018, 722, 7, 0.0, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Holland - Holland Elementary,01350005, 239, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Holliston High,01360505, 814, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Miller School,01360007, 614, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Placentino Elementary,01360010, 733, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 665, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Holyoke - E N White Elementary,01370045, 456, 10, 0.2, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 210, 6, 0.0, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +-1.943074003795067,1,a-phys-i1,2022-23,Holyoke - Holyoke High,01370505," 1,609", 224, 1.1, 13.1, 0.0, 0.0, 2.1, 0.0, 0.0 +-9.836812144212525,1,a-phys-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 298, 85, 5.4, 23.5, 0.0, 0.0, 7.4, 0.0, 0.0 +-9.381404174573055,1,a-phys-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 314, 73, 2.2, 22.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 401, 26, 5.7, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +3.9772296015180264,3.98,a-phys-i1,2022-23,Holyoke - Kelly Elementary,01370040, 379, 44, 8.4, 5.3, 0.0, 0.3, 0.3, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 442, 23, 0.0, 2.9, 0.0, 0.0, 3.2, 0.0, 0.0 +3.4459203036053125,3.45,a-phys-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 369, 22, 0.3, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 387, 12, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 361, 0,"","","","","","","" +-8.242884250474383,1,a-phys-i1,2022-23,Holyoke - William R. Peck School,01370030, 215, 48, 0.0, 21.4, 0.0, 0.0, 8.8, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 731, 32, 0.3, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 406, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 340, 25, 2.4, 0.9, 0.3, 0.0, 5.3, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 300, 19, 3.0, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 444, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopedale - Memorial,01380010, 568, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopedale - Park Street School,01380003, 117, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopkinton - Elmwood,01390010, 645, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 648, 0,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Hopkinton - Hopkinton High,01390505," 1,251", 21, 0.8, 1.6, 0.0, 0.0, 0.3, 0.0, 0.0 +7.848197343453511,5,a-phys-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 988, 6, 0.5, 0.2, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 115, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 617, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Hudson - C A Farley,01410030, 458, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 583, 9, 0.0, 0.7, 0.0, 0.0, 1.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 299, 1,"","","","","","","" +4.432637571157495,4.43,a-phys-i1,2022-23,Hudson - Hudson High,01410505, 849, 40, 0.0, 4.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hudson - Mulready Elementary,01410007, 257, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Hull - Hull High,01420505, 243, 21, 3.7, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Hull - Lillian M Jacobs,01420015, 371, 7, 1.9, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Hull - Memorial Middle,01420305, 174, 5,"","","","","","","" +3.825426944971537,3.83,a-phys-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 817, 48, 1.1, 5.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Ipswich - Ipswich High,01440505, 507, 8, 0.8, 0.6, 0.0, 0.0, 0.4, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 367, 7, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 372, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ipswich - Winthrop,01440015, 392, 1,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 606, 20, 0.0, 3.1, 0.0, 0.0, 1.8, 0.0, 0.0 +6.633776091081593,5,a-phys-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010," 1,626", 82, 3.8, 1.8, 0.0, 0.0, 0.2, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,King Philip - King Philip Middle School,06900510, 685, 13, 0.7, 1.6, 0.0, 0.0, 0.1, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,King Philip - King Philip Regional High,06900505," 1,157", 28, 1.8, 0.7, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Kingston - Kingston Elementary,01450005, 687, 1,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Kingston - Kingston Intermediate,01450020, 618, 25, 1.3, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 453, 14, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0, 0.4 +NA,NA,a-phys-i1,2022-23,Lawrence - Arlington Elementary,01490009, 664, 0,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Lawrence - Arlington Middle School,01490017, 642, 67, 6.9, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 744, 0,"","","","","","","" +3.521821631878557,3.52,a-phys-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 544, 36, 1.3, 5.9, 0.0, 0.0, 0.0, 0.0, 0.4 +5.039848197343453,5,a-phys-i1,2022-23,Lawrence - Francis M Leahy,01490040, 433, 19, 1.8, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Lawrence - Frost Middle School,01490525, 552, 27, 2.9, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 518, 8, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 508, 15, 2.2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +4.432637571157495,4.43,a-phys-i1,2022-23,Lawrence - High School Learning Center,01490536, 382, 18, 0.3, 4.7, 0.0, 0.0, 0.0, 0.5, 0.5 +NA,NA,a-phys-i1,2022-23,Lawrence - James F Hennessey,01490020, 364, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - John Breen School,01490003, 368, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - John K Tarbox,01490075, 324, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 212, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 259, 0,"","","","","","","" +4.584440227703984,4.58,a-phys-i1,2022-23,Lawrence - Lawrence High School,01490515," 3,402", 203, 2.0, 4.5, 0.0, 0.0, 0.1, 0.1, 1.0 +6.330170777988616,5,a-phys-i1,2022-23,Lawrence - Leonard Middle School,01490090, 369, 8, 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 512, 2,"","","","","","","" +4.35673624288425,4.36,a-phys-i1,2022-23,Lawrence - Oliver Middle School,01490049, 375, 21, 1.3, 4.8, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Lawrence - Parthum Middle School,01490027, 619, 12, 0.0, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence - RISE Academy,01490615, 93, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Robert Frost,01490018, 611, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 258, 0,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 121, 6, 1.7, 4.1, 0.0, 0.0, 0.0, 0.0, 1.7 +NA,NA,a-phys-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 727, 3,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Lawrence - Spark Academy,01490085, 479, 29, 4.4, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 868, 3,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 679, 20, 1.5, 2.1, 0.1, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Lee - Lee Elementary,01500025, 353, 8, 2.3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Lee - Lee Middle/High School,01500505, 334, 19, 4.2, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leicester - Leicester Elementary,01510005, 513, 5,"","","","","","","" +4.660341555977229,4.66,a-phys-i1,2022-23,Leicester - Leicester High,01510505, 428, 28, 3.0, 4.4, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 59, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Leicester - Leicester Middle,01510015, 425, 32, 6.1, 3.1, 0.0, 0.0, 0.2, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Lenox - Lenox Memorial High,01520505, 449, 20, 3.1, 1.6, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lenox - Morris,01520015, 351, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Bennett,01530003, 123, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 807, 79, 7.1, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leominster - Fall Brook,01530007, 641, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Frances Drake School,01530010, 496, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Johnny Appleseed,01530025, 684, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 56, 4,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Leominster - Leominster High School,01530505," 1,153", 131, 8.3, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leominster - Lincoln School,01530005, 44, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Leominster - Northwest,01530030, 777, 8, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leominster - Priest Street,01530040, 137, 0,"","","","","","","" +4.053130929791271,4.05,a-phys-i1,2022-23,Leominster - Samoset School,01530045, 522, 37, 2.9, 5.2, 0.0, 0.0, 0.2, 0.0, 0.0 +2.914611005692599,2.91,a-phys-i1,2022-23,Leominster - Sky View Middle School,01530320, 935, 94, 8.2, 6.7, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Leverett - Leverett Elementary,01540005, 143, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Bowman,01550008, 463, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Bridge,01550006, 402, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Fiske,01550015, 351, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Harrington,01550030, 405, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 839, 11, 0.8, 0.7, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lexington - Joseph Estabrook,01550010, 564, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Lexington Children's Place,01550001, 92, 0,"","","","","","","" +7.772296015180265,5,a-phys-i1,2022-23,Lexington - Lexington High,01550505," 2,349", 8, 0.2, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lexington - Maria Hastings,01550035, 627, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 975, 3,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 459, 11, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lincoln - Hanscom Middle,01570305, 245, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lincoln - Hanscom Primary,01570006, 283, 2,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Lincoln - Lincoln School,01570025, 555, 10, 1.3, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,496", 23, 0.5, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Littleton - Littleton High School,01580505, 485, 9, 0.8, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Littleton - Littleton Middle School,01580305, 391, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Littleton - Russell St Elementary,01580015, 393, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 458, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 400, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Longmeadow - Center,01590010, 436, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 335, 11, 3.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Longmeadow - Longmeadow High,01590505, 915, 38, 3.0, 2.0, 0.0, 0.0, 0.2, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Longmeadow - Williams Middle,01590305, 288, 6, 1.4, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 461, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lowell - Abraham Lincoln,01600020, 532, 1,"","","","","","","" +2.4592030360531307,2.46,a-phys-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 545, 51, 2.4, 7.3, 0.0, 0.0, 0.9, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 542, 45, 3.3, 7.0, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 136, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lowell - Charles W Morey,01600030, 517, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 504, 2,"","","","","","","" +4.963946869070209,4.96,a-phys-i1,2022-23,Lowell - Dr An Wang School,01600345, 700, 33, 1.1, 4.0, 0.0, 0.0, 0.4, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 500, 8, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 63, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Lowell - Greenhalge,01600015, 527, 11, 0.0, 1.5, 0.0, 0.0, 0.6, 0.0, 0.4 +3.749525616698292,3.75,a-phys-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 658, 53, 3.3, 5.6, 0.0, 0.0, 0.0, 0.0, 0.3 +7.165085388994307,5,a-phys-i1,2022-23,Lowell - James S Daley Middle School,01600315, 705, 9, 0.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.8045540796963951,1,a-phys-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 649, 75, 0.2, 11.6, 0.0, 0.0, 0.0, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Lowell - John J Shaughnessy,01600050, 524, 26, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 498, 0,"","","","","","","" +-0.12144212523719176,1,a-phys-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 683, 73, 0.0, 10.7, 0.0, 0.0, 0.0, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 22, 1,"","","","","","","" +-29.03984819734346,1,a-phys-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 43, 27, 44.2, 48.8, 0.0, 0.0, 0.0, 0.0, 0.0 +3.0664136622390887,3.07,a-phys-i1,2022-23,Lowell - Lowell High,01600505," 3,423", 236, 0.1, 6.5, 0.0, 0.0, 1.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Moody Elementary,01600027, 270, 0,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 501, 8, 0.2, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Peter W Reilly,01600040, 512, 1,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Lowell - Pyne Arts,01600018, 523, 17, 2.5, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 935, 29, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 520, 1,"","","","","","","" +-13.480075901328275,1,a-phys-i1,2022-23,Lowell - The Career Academy,01600515, 152, 55, 17.1, 28.3, 0.0, 0.0, 3.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell - Washington,01600055, 265, 3,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 826, 11, 0.0, 1.1, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 133, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ludlow - East Street Elementary School,01610010, 380, 0,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 668, 12, 1.5, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +2.914611005692599,2.91,a-phys-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 815, 55, 0.0, 6.7, 0.0, 0.0, 0.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 526, 44, 5.1, 4.8, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 6, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Lunenburg - Lunenburg High,01620505, 450, 15, 0.7, 3.1, 0.2, 0.0, 0.0, 0.0, 0.0 +5.419354838709677,5,a-phys-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 388, 26, 3.9, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 397, 4,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 364, 6, 0.8, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 549, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Aborn,01630011, 231, 1,"","","","","","","" +2.0796963946869065,2.08,a-phys-i1,2022-23,Lynn - Breed Middle School,01630405," 1,340", 106, 0.1, 7.8, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Brickett Elementary,01630020, 345, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 332, 0,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Lynn - Classical High,01630505," 2,088", 123, 0.2, 5.8, 0.0, 0.0, 0.0, 0.1, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Lynn - Cobbet Elementary,01630035, 670, 15, 1.0, 1.5, 0.0, 0.0, 0.1, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Lynn - E J Harrington,01630045, 677, 12, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Edward A Sisson,01630095, 462, 4,"","","","","","","" +-6.800759013282733,1,a-phys-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 133, 27, 2.3, 19.5, 1.5, 0.0, 0.0, 0.8, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 83, 3,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Lynn - Hood,01630055, 525, 20, 3.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Lynn - Ingalls,01630060, 769, 16, 0.0, 2.0, 0.0, 0.0, 0.5, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Lynn - Julia F Callahan,01630030, 439, 12, 0.9, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 208, 1,"","","","","","","" +4.660341555977229,4.66,a-phys-i1,2022-23,Lynn - Lynn English High,01630510," 2,498", 111, 0.2, 4.4, 0.0, 0.0, 0.2, 0.0, 0.0 +5.571157495256166,5,a-phys-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605," 1,575", 87, 2.9, 3.2, 0.0, 0.1, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Lynn Woods,01630075, 165, 0,"","","","","","","" +3.9013282732447814,3.9,a-phys-i1,2022-23,Lynn - Pickering Middle,01630420, 589, 45, 4.1, 5.4, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Robert L Ford,01630050, 441, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Sewell-Anderson,01630085, 309, 2,"","","","","","","" +1.396584440227704,1.4,a-phys-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305," 1,330", 144, 3.3, 8.7, 0.0, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynn - Tracy,01630100, 399, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 83, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - Washington Elementary School,01630005, 469, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynn - William R Fallon,01630080, 34, 3,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Lynn - Wm P Connery,01630040, 605, 13, 0.8, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 462, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Lynnfield High,01640505, 570, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 720, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 48, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Lynnfield - Summer Street,01640020, 424, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 100, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Malden - Beebe,01650003, 936, 11, 0.7, 0.4, 0.0, 0.0, 0.6, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Malden - Ferryway,01650013, 955, 36, 0.9, 3.0, 0.0, 0.0, 0.6, 0.0, 0.0 +4.7362428842504745,4.74,a-phys-i1,2022-23,Malden - Forestdale,01650027, 632, 33, 1.9, 4.3, 0.0, 0.0, 0.0, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,Malden - Linden,01650047, 904, 38, 0.0, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Malden - Malden Early Learning Center,01650049, 347, 0,"","","","","","","" +4.963946869070209,4.96,a-phys-i1,2022-23,Malden - Malden High,01650505," 1,983", 86, 0.7, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.557874762808349,5,a-phys-i1,2022-23,Malden - Salemwood,01650057," 1,143", 28, 0.6, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 230, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 421, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 285, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 297, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mansfield - Everett W Robinson,01670007, 778, 2,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 812, 12, 0.7, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 724, 8, 0.8, 0.3, 0.0, 0.0, 0.1, 0.0, 0.0 +6.0265654648956355,5,a-phys-i1,2022-23,Mansfield - Mansfield High,01670505," 1,112", 30, 1.3, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mansfield - Roland Green School,01670003, 115, 0,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 301, 9, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marblehead - Glover,01680020, 332, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 459, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Marblehead - Marblehead High,01680505, 893, 9, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 422, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marblehead - Village School,01680016, 567, 2,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 234, 12, 0.4, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marion - Sippican,01690005, 415, 0,"","","","","","","" +2.5351043643263753,2.54,a-phys-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045," 1,125", 133, 8.3, 7.2, 0.2, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 740, 19, 1.2, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marlborough - Early Childhood Center,01700006, 251, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Marlborough - Francis J Kane,01700008, 529, 8, 0.4, 0.9, 0.0, 0.0, 0.4, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 870, 16, 1.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +2.0796963946869065,2.08,a-phys-i1,2022-23,Marlborough - Marlborough High,01700505," 1,173", 94, 0.2, 7.8, 0.5, 0.0, 0.1, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Marlborough - Richer,01700025, 599, 10, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marshfield - Daniel Webster,01710015, 390, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marshfield - Eames Way School,01710005, 271, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 879, 21, 1.6, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 356, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Marshfield - Marshfield High,01710505," 1,200", 25, 0.0, 2.1, 0.0, 0.0, 0.1, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Marshfield - Martinson Elementary,01710025, 468, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Marshfield - South River,01710010, 261, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 779, 33, 1.7, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 189, 3,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 372, 9, 0.8, 2.2, 0.0, 0.0, 0.3, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Masconomet - Masconomet Regional High School,07050505," 1,002", 20, 1.9, 0.8, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 562, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 425, 0,"","","","","","","" +3.749525616698292,3.75,a-phys-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 679, 42, 0.9, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mashpee - Quashnet School,01720035, 419, 0,"","","","","","","" +4.053130929791271,4.05,a-phys-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505," 1,222", 92, 3.4, 5.2, 0.0, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mattapoisett - Center,01730005, 241, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 192, 1,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Maynard - Fowler School,01740305, 475, 8, 0.4, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Maynard - Green Meadow,01740010, 441, 0,"","","","","","","" +5.647058823529412,5,a-phys-i1,2022-23,Maynard - Maynard High,01740505, 325, 14, 2.5, 3.1, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Medfield - Dale Street,01750005, 394, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Medfield Senior High,01750505, 742, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Memorial School,01750003, 436, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 384, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 587, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medford - Brooks School,01760130, 580, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medford - Curtis-Tufts,01760510, 22, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 529, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 492, 13, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.8387096774193545,2.84,a-phys-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 470, 32, 0.6, 6.8, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Medford - Medford High,01760505," 1,303", 38, 0.0, 2.8, 0.1, 0.0, 0.0, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 571, 0,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Medford - Missituk Elementary School,01760140, 437, 6, 0.0, 0.2, 0.0, 0.0, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 498, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 382, 0,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Medway - Medway High,01770505, 626, 17, 0.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.861480075901328,5,a-phys-i1,2022-23,Medway - Medway Middle,01770305, 661, 13, 0.2, 1.5, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Melrose - Early Childhood Center,01780003, 347, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 305, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Horace Mann,01780025, 248, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Lincoln,01780020, 418, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Melrose High,01780505, 937, 4,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Melrose - Melrose Middle,01780305, 885, 12, 1.2, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Melrose - Roosevelt,01780035, 416, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Melrose - Winthrop,01780050, 384, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 369, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mendon-Upton - Memorial School,07100001, 536, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 647, 29, 4.3, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +4.660341555977229,4.66,a-phys-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 614, 28, 0.3, 4.4, 0.0, 0.0, 0.0, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,Methuen - Comprehensive Grammar School,01810050," 1,113", 52, 0.1, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Methuen - Donald P Timony Grammar,01810060," 1,341", 28, 0.1, 2.0, 0.0, 0.0, 0.1, 0.0, 0.0 +5.647058823529412,5,a-phys-i1,2022-23,Methuen - Marsh Grammar School,01810030," 1,128", 35, 0.0, 3.1, 0.0, 0.0, 0.1, 0.0, 0.0 +2.3833017077798853,2.38,a-phys-i1,2022-23,Methuen - Methuen High,01810505," 2,045", 195, 6.2, 7.4, 0.1, 0.0, 0.0, 0.0, 0.0 +2.3833017077798853,2.38,a-phys-i1,2022-23,Methuen - Tenney Grammar School,01810055," 1,333", 98, 0.0, 7.4, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 593, 6, 0.8, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 732, 40, 4.5, 0.5, 0.0, 0.0, 0.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 638, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 317, 0,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Middleborough - Middleborough High,01820505, 888, 43, 4.4, 0.1, 0.0, 0.0, 1.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Middleton - Fuller Meadow,01840003, 298, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Middleton - Howe-Manning,01840005, 438, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milford - Brookside,01850065, 588, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milford - Memorial,01850010, 513, 0,"","","","","","","" +4.204933586337761,4.2,a-phys-i1,2022-23,Milford - Milford High,01850505," 1,407", 72, 0.1, 5.0, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 198, 0,"","","","","","","" +0.4857685009487657,1,a-phys-i1,2022-23,Milford - Stacy Middle,01850305," 1,086", 128, 3.9, 9.9, 0.0, 0.0, 0.3, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Milford - Woodland,01850090," 1,015", 21, 1.0, 1.2, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Millbury - Elmwood Street,01860017, 464, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 760, 60, 5.3, 4.6, 0.0, 0.0, 0.0, 0.0, 0.1 +7.240986717267552,5,a-phys-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 477, 15, 2.5, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Millis - Clyde F Brown,01870005, 634, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Millis - Millis High School,01870505, 321, 7, 1.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Millis - Millis Middle,01870020, 276, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Millis - TIES,01870515, 6, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 964, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Collicot,01890005, 589, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Cunningham School,01890007, 646, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Milton - Glover,01890010, 637, 1,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Milton - Milton High,01890505," 1,082", 9, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Milton - Tucker,01890020, 473, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 697, 10, 1.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 279, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 107, 3,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 294, 23, 3.4, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 146, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 152, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 518, 0,"","","","","","","" +4.963946869070209,4.96,a-phys-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 723, 49, 3.7, 4.0, 0.0, 0.0, 0.1, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 455, 28, 4.8, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Monson - Granite Valley School,01910030, 413, 3,"","","","","","","" +5.798861480075901,5,a-phys-i1,2022-23,Monson - Monson High School,01910505, 310, 10, 0.3, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Monson - Quarry Hill Community School,01910010, 139, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605," 1,431", 116, 4.3, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 239, 2,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 551, 34, 4.2, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 444, 7, 0.0, 1.6, 0.0, 0.0, 0.2, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105," 1,650", 141, 8.5, 2.2, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Nahant - Johnson,01960010, 160, 0,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 395, 31, 2.8, 5.8, 0.0, 0.3, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 429, 2,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Nantucket - Nantucket High,01970505, 612, 50, 6.5, 2.8, 0.0, 0.2, 0.0, 0.2, 0.0 +NA,NA,a-phys-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 354, 2,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Narragansett - Narragansett Middle,07200305, 372, 12, 2.7, 1.6, 0.0, 0.0, 0.8, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 484, 22, 4.5, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 675, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Nashoba - Center School,07250020, 508, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 749, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Nashoba - Hale,07250310, 273, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 245, 8, 3.3, 1.2, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 486, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Nashoba - Nashoba Regional,07250505, 844, 16, 0.5, 1.8, 0.0, 0.0, 0.2, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 751, 62, 2.8, 7.1, 0.0, 0.0, 1.1, 0.1, 0.1 +NA,NA,a-phys-i1,2022-23,Natick - Bennett-Hemenway,01980005, 493, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Natick - Brown,01980010, 525, 1,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 903, 21, 2.0, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Natick - Johnson,01980031, 136, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Natick - Lilja Elementary,01980035, 430, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Natick - Memorial,01980043, 440, 1,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Natick - Natick High,01980505," 1,773", 17, 0.1, 0.9, 0.0, 0.0, 0.1, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Natick - Wilson Middle,01980310, 785, 19, 2.4, 0.4, 0.0, 0.0, 0.1, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Nauset - Nauset Regional High,06600505, 796, 30, 0.0, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 541, 36, 2.8, 4.8, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Needham - Broadmeadow,01990005, 513, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Needham - High Rock School,01990410, 449, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Needham - John Eliot,01990020, 430, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Needham - Needham High,01990505," 1,652", 9, 0.5, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Needham - Newman Elementary,01990050, 723, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Needham - Pollard Middle,01990405, 826, 17, 1.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 538, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Needham - William Mitchell,01990040, 453, 5,"","","","","","","" +2.4592030360531307,2.46,a-phys-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 822, 142, 11.9, 7.3, 0.1, 0.0, 6.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 681, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 542, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 239, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 368, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 603, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Charles S Ashley,02010010, 292, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 285, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 267, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 335, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 735, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 445, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - James B Congdon,02010040, 355, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Jireh Swift,02010130, 264, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - John Avery Parker,02010115, 283, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - John B Devalles,02010050, 317, 2,"","","","","","","" +5.343453510436432,5,a-phys-i1,2022-23,New Bedford - Keith Middle School,02010405, 912, 42, 1.8, 3.5, 0.0, 0.0, 0.2, 0.0, 0.0 +4.812144212523719,4.81,a-phys-i1,2022-23,New Bedford - New Bedford High,02010505," 3,115", 138, 0.0, 4.2, 0.0, 0.0, 0.2, 0.0, 0.0 +3.4459203036053125,3.45,a-phys-i1,2022-23,New Bedford - Normandin Middle School,02010410," 1,120", 86, 1.6, 6.0, 0.0, 0.0, 1.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 145, 2,"","","","","","","" +3.6736242884250467,3.67,a-phys-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 845, 52, 0.0, 5.7, 0.0, 0.2, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 659, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 221, 5,"","","","","","","" +-3.3092979127134736,1,a-phys-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 114, 17, 0.0, 14.9, 0.0, 0.0, 0.9, 0.0, 0.0 +-3.8406072106261866,1,a-phys-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 257, 40, 0.0, 15.6, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,New Bedford - William H Taylor,02010135, 261, 1,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 746, 94, 9.4, 6.3, 0.0, 0.0, 0.0, 0.3, 0.0 +NA,NA,a-phys-i1,2022-23,New Salem-Wendell - Swift River,07280015, 140, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 288, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 593, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Newburyport - Newburyport High,02040505, 829, 7, 0.4, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 490, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - A E Angier,02070005, 384, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Newton - Bigelow Middle,02070305, 453, 15, 2.6, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Bowen,02070015, 369, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - C C Burr,02070020, 373, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Cabot,02070025, 458, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Newton - Charles E Brown Middle,02070310, 776, 17, 1.5, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Countryside,02070040, 395, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Newton - F A Day Middle,02070315, 939, 18, 1.6, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Franklin,02070055, 374, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Horace Mann,02070075, 367, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - John Ward,02070120, 199, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Lincoln-Eliot,02070070, 354, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Mason-Rice,02070080, 338, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Memorial Spaulding,02070105, 406, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 240, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Newton - Newton North High,02070505," 2,145", 61, 1.7, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Newton - Newton South High,02070510," 1,880", 16, 0.6, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Newton - Oak Hill Middle,02070320, 676, 16, 2.4, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Newton - Peirce,02070100, 253, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Underwood,02070115, 230, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Williams,02070125, 240, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Newton - Zervas,02070130, 419, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 528, 10, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norfolk - H Olive Day,02080015, 497, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 585, 26, 3.4, 1.0, 0.0, 0.0, 0.3, 0.0, 0.0 +2.155597722960151,2.16,a-phys-i1,2022-23,North Adams - Brayton,02090035, 247, 20, 0.0, 7.7, 0.0, 0.0, 0.4, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 265, 9, 0.0, 0.4, 0.0, 0.0, 3.4, 0.0, 0.0 +-0.8804554079696396,1,a-phys-i1,2022-23,North Adams - Drury High,02090505, 515, 67, 0.0, 11.7, 0.0, 0.0, 2.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Adams - Greylock,02090015, 284, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 459, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Annie L Sargent School,02110018, 472, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Atkinson,02110001, 287, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Franklin,02110010, 391, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Andover - Kittredge,02110015, 230, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,North Andover - North Andover High,02110505," 1,355", 25, 0.1, 1.8, 0.0, 0.0, 0.0, 0.2, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,North Andover - North Andover Middle,02110305," 1,070", 33, 1.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Andover - Thomson,02110020, 318, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 422, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Community,02120030, 311, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Falls,02120010, 235, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 541, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,North Attleborough - North Attleboro High,02120505," 1,140", 28, 0.3, 2.4, 0.0, 0.0, 0.2, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 206, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 971, 18, 1.2, 1.0, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 261, 0,"","","","","","","" +5.191650853889943,5,a-phys-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 324, 14, 0.9, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,North Brookfield - North Brookfield High,02150505, 153, 15, 7.2, 4.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 147, 1,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 474, 6, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +3.521821631878557,3.52,a-phys-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 495, 29, 0.0, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0 +1.168880455407969,1.17,a-phys-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 791, 71, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 432, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 134, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Middlesex - Varnum Brook,07350035, 653, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - E Ethel Little School,02170003, 333, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - J Turner Hood,02170010, 393, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - L D Batchelder,02170005, 469, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,North Reading - North Reading High,02170505, 649, 4,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,North Reading - North Reading Middle,02170305, 547, 13, 2.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Northampton - Bridge Street,02100005, 292, 6, 1.4, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northampton - Jackson Street,02100020, 298, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 608, 35, 1.6, 2.6, 0.0, 0.0, 3.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northampton - Leeds,02100025, 308, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Northampton - Northampton High,02100505, 921, 30, 2.2, 2.2, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 240, 0,"","","","","","","" +2.686907020872865,2.69,a-phys-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 570, 59, 8.2, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505," 1,232", 9, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northborough - Fannie E Proctor,02130015, 264, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Northborough - Lincoln Street,02130003, 295, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Northborough - Marion E Zeh,02130020, 256, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 560, 8, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Northbridge - Northbridge Elementary School,02140001," 1,007", 3,"","","","","","","" +5.115749525616698,5,a-phys-i1,2022-23,Northbridge - Northbridge High,02140505, 520, 21, 0.0, 3.8, 0.0, 0.0, 0.4, 0.0, 0.0 +3.294117647058823,3.29,a-phys-i1,2022-23,Northbridge - Northbridge Middle,02140305, 487, 30, 0.2, 6.2, 0.0, 0.0, 0.2, 0.0, 0.0 +5.039848197343453,5,a-phys-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605," 1,305", 100, 5.6, 3.9, 0.0, 0.1, 0.2, 0.0, 0.0 +1.396584440227704,1.4,a-phys-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 540, 47, 0.0, 8.7, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Norton - Henri A. Yelle,02180060, 339, 9, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norton - J C Solmonese,02180015, 532, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norton - L G Nourse Elementary,02180010, 304, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Norton - Norton High,02180505, 696, 13, 1.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Norton - Norton Middle,02180305, 563, 20, 1.1, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 527, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Norwell - Norwell High,02190505, 603, 7, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norwell - Norwell Middle School,02190405, 499, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwell - William G Vinal,02190020, 539, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - Balch,02200005, 337, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - Charles J Prescott,02200025, 267, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 241, 1,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 826, 81, 6.9, 6.9, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Norwood - F A Cleveland,02200015, 327, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - George F. Willett,02200075, 464, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Norwood - John P Oldham,02200020, 292, 1,"","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Norwood - Norwood High,02200505, 993, 40, 0.6, 3.3, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 471, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 565, 5,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 638, 17, 2.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 428, 23, 1.2, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 365, 25, 2.7, 4.9, 0.0, 0.0, 0.5, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Orange - Dexter Park,02230010, 301, 8, 0.0, 2.7, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Orange - Fisher Hill,02230015, 242, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Orleans - Orleans Elementary,02240005, 153, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 309, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Oxford - Clara Barton,02260005, 284, 1,"","","","","","","" +0.8652751423149897,1,a-phys-i1,2022-23,Oxford - Oxford High,02260505, 405, 40, 0.5, 9.4, 0.0, 0.0, 1.2, 0.0, 0.0 +1.9278937381404169,1.93,a-phys-i1,2022-23,Oxford - Oxford Middle,02260405, 526, 44, 0.6, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.039848197343453,5,a-phys-i1,2022-23,Palmer - Old Mill Pond,02270008, 639, 28, 0.0, 3.9, 0.0, 0.0, 2.7, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Palmer - Palmer High,02270505, 553, 53, 0.2, 7.1, 0.0, 0.0, 5.1, 0.0, 0.0 +4.50853889943074,4.51,a-phys-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 651, 30, 0.0, 4.6, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 282, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 390, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Center,02290015, 459, 5,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Peabody - J Henry Higgins Middle,02290305," 1,387", 37, 0.7, 2.2, 0.0, 0.1, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Peabody - John E Burke,02290007, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - John E. McCarthy,02290016, 388, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 139, 0,"","","","","","","" +4.50853889943074,4.51,a-phys-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510," 1,534", 100, 4.4, 4.6, 0.0, 0.1, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Peabody - South Memorial,02290035, 496, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - Thomas Carroll,02290010, 616, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - West Memorial,02290045, 273, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Peabody - William A Welch Sr,02290027, 242, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pelham - Pelham Elementary,02300005, 137, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 446, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 415, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 532, 5,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 411, 6, 0.7, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.798861480075901,5,a-phys-i1,2022-23,Pembroke - Pembroke High School,02310505, 747, 39, 3.5, 2.9, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 234, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pentucket - Dr John C Page School,07450015, 331, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 497, 10, 0.4, 0.8, 0.0, 0.0, 1.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 253, 0,"","","","","","","" +5.495256166982922,5,a-phys-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 362, 18, 2.5, 3.3, 0.0, 0.0, 0.0, 0.0, 0.3 +6.330170777988616,5,a-phys-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 598, 18, 1.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Petersham - Petersham Center,02340005, 127, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 255, 5,"","","","","","","" +1.6242884250474376,1.62,a-phys-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 155, 13, 0.0, 8.4, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.8804554079696396,1,a-phys-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 230, 27, 0.0, 11.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 796, 0,"","","","","","","" +6.25426944971537,5,a-phys-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 484, 11, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 214, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 265, 11, 3.4, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 555, 15, 0.0, 0.7, 0.0, 0.0, 2.2, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 418, 19, 1.0, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Allendale,02360010, 285, 2,"","","","","","","" +3.9013282732447814,3.9,a-phys-i1,2022-23,Pittsfield - Crosby,02360065, 299, 32, 10.0, 5.4, 0.0, 0.0, 3.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 29, 2,"","","","","","","" +-29.9506641366224,1,a-phys-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 32, 16, 3.1, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Pittsfield - Egremont,02360035, 399, 17, 0.8, 2.0, 0.0, 0.0, 2.5, 0.0, 0.0 +-5.282732447817838,1,a-phys-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 498, 114, 11.2, 17.5, 0.0, 0.0, 9.4, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Pittsfield - Morningside Community School,02360055, 386, 1,"","","","","","","" +2.8387096774193545,2.84,a-phys-i1,2022-23,Pittsfield - Pittsfield High,02360505, 706, 109, 12.9, 6.8, 0.0, 0.0, 5.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 187, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 400, 23, 4.3, 2.8, 0.0, 0.0, 0.8, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Pittsfield - Stearns,02360090, 238, 11, 2.9, 2.5, 0.0, 0.0, 0.4, 0.0, 0.0 +2.6110056925996203,2.61,a-phys-i1,2022-23,Pittsfield - Taconic High,02360510, 885, 204, 19.7, 7.1, 0.0, 0.0, 3.3, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 522, 38, 3.1, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Pittsfield - Williams,02360100, 263, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 310, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 366, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Cold Spring,02390005, 232, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Federal Furnace School,02390011, 423, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Hedge,02390010, 236, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Indian Brook,02390012, 587, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Manomet Elementary,02390015, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 527, 0,"","","","","","","" +4.660341555977229,4.66,a-phys-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 913, 84, 6.7, 4.4, 0.0, 0.0, 0.8, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 265, 0,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,Plymouth - Plymouth North High,02390505," 1,331", 131, 6.9, 6.3, 0.0, 0.0, 0.0, 0.0, 0.0 +2.307400379506641,2.31,a-phys-i1,2022-23,Plymouth - Plymouth South High,02390515," 1,042", 144, 10.7, 7.5, 0.0, 0.0, 0.1, 0.0, 0.0 +4.053130929791271,4.05,a-phys-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 633, 58, 6.0, 5.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Plymouth - South Elementary,02390046, 630, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plymouth - West Elementary,02390047, 325, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Plympton - Dennett Elementary,02400010, 241, 2,"","","","","","","" +4.888045540796964,4.89,a-phys-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550," 1,034", 58, 2.2, 4.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Provincetown - Provincetown Schools,02420020, 151, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 208, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - Hubbardston Center,07530010, 323, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - New Braintree Grade,07530020, 41, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quabbin - Oakham Center,07530025, 181, 0,"","","","","","","" +2.155597722960151,2.16,a-phys-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 581, 54, 2.1, 7.7, 0.0, 0.0, 0.3, 0.0, 0.0 +4.888045540796964,4.89,a-phys-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 540, 34, 3.7, 4.1, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quabbin - Ruggles Lane,07530030, 407, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 57, 0,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 364, 26, 1.4, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +3.9013282732447814,3.9,a-phys-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 205, 13, 1.5, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 332, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 263, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 231, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Atherton Hough,02430040, 272, 2,"","","","","","","" +4.35673624288425,4.36,a-phys-i1,2022-23,Quincy - Atlantic Middle,02430305, 583, 28, 0.0, 4.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 345, 0,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 336, 6, 1.2, 1.8, 0.0, 0.0, 0.3, 0.0, 0.0 +7.544592030360532,5,a-phys-i1,2022-23,Quincy - Central Middle,02430315, 659, 6, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 343, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 573, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Francis W Parker,02430075, 355, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 601, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Merrymount,02430060, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Montclair,02430065, 452, 0,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Quincy - North Quincy High,02430510," 1,524", 43, 0.8, 2.6, 0.0, 0.2, 0.3, 0.1, 0.0 +3.749525616698292,3.75,a-phys-i1,2022-23,Quincy - Point Webster Middle,02430325, 468, 27, 0.2, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Quincy - Quincy High,02430505," 1,577", 102, 4.1, 4.9, 0.0, 0.0, 0.6, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 473, 2,"","","","","","","" +0.8652751423149897,1,a-phys-i1,2022-23,Quincy - South West Middle School,02430320, 470, 58, 7.4, 9.4, 0.0, 0.2, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Quincy - Squantum,02430095, 365, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Quincy - Wollaston School,02430110, 344, 0,"","","","","","","" +0.6375711574952561,1,a-phys-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 545, 59, 1.8, 9.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.330170777988616,5,a-phys-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 320, 7, 0.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.709677419354839,5,a-phys-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 542, 9, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0, 0.0 +7.165085388994307,5,a-phys-i1,2022-23,Randolph - Margaret L Donovan,02440015, 463, 6, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 267, 3,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Randolph - Randolph Community Middle,02440410, 616, 67, 7.8, 3.9, 0.0, 0.0, 1.0, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Randolph - Randolph High,02440505, 678, 35, 0.7, 4.9, 0.0, 0.0, 0.0, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Reading - Alice M Barrows,02460002, 366, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 431, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - Birch Meadow,02460005, 361, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - J Warren Killam,02460017, 417, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - Joshua Eaton,02460010, 395, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Reading - RISE PreSchool,02460001, 128, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Reading - Reading Memorial High,02460505," 1,116", 31, 2.3, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Reading - Walter S Parker Middle,02460310, 471, 14, 2.5, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Reading - Wood End Elementary School,02460020, 249, 0,"","","","","","","" +7.772296015180265,5,a-phys-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 783, 9, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 0.0 +7.924098671726756,5,a-phys-i1,2022-23,Revere - Abraham Lincoln,02480025, 694, 6, 0.0, 0.1, 0.0, 0.0, 0.9, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 389, 0,"","","","","","","" +-3.385199240986718,1,a-phys-i1,2022-23,Revere - CityLab Innovation High School,02480520, 107, 21, 0.9, 15.0, 0.0, 0.0, 8.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Garfield Elementary School,02480056, 765, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Revere - Garfield Middle School,02480057, 607, 17, 1.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Paul Revere,02480050, 499, 5,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Revere - Revere High,02480505," 2,257", 95, 0.0, 3.4, 0.0, 0.0, 3.5, 0.0, 0.0 +2.8387096774193545,2.84,a-phys-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 602, 47, 0.0, 6.8, 0.0, 0.0, 2.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 706, 2,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 610, 29, 0.0, 3.9, 0.0, 0.0, 3.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Richmond - Richmond Consolidated,02490005, 155, 0,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 660, 50, 6.7, 3.2, 0.0, 0.0, 1.1, 0.2, 0.0 +NA,NA,a-phys-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 296, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Rochester - Rochester Memorial,02500005, 505, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 253, 0,"","","","","","","" +1.6242884250474376,1.62,a-phys-i1,2022-23,Rockland - John W Rogers Middle,02510305, 734, 80, 5.6, 8.4, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Rockland - Memorial Park,02510020, 257, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Rockland - R Stewart Esten,02510025, 326, 2,"","","","","","","" +1.2447817836812136,1.24,a-phys-i1,2022-23,Rockland - Rockland Senior High,02510505, 674, 61, 0.0, 8.9, 0.1, 0.0, 0.0, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Rockport - Rockport Elementary,02520005, 316, 6, 1.9, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Rockport - Rockport High,02520510, 235, 11, 3.8, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Rockport - Rockport Middle,02520305, 195, 10, 2.6, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Rowe - Rowe Elementary,02530005, 70, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505," 1,385", 92, 0.1, 6.6, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Bates,02580003, 419, 2,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 299, 17, 3.7, 3.0, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Carlton,02580015, 265, 1,"","","","","","","" +4.584440227703984,4.58,a-phys-i1,2022-23,Salem - Collins Middle,02580305, 670, 58, 5.8, 4.5, 0.0, 0.0, 2.1, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 326, 18, 1.8, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.6527514231499061,1,a-phys-i1,2022-23,Salem - New Liberty Innovation School,02580510, 70, 8, 0.0, 11.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Salem Early Childhood,02580001, 131, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Salem - Salem High,02580505, 985, 27, 0.3, 1.2, 0.0, 0.0, 1.4, 0.0, 0.1 +NA,NA,a-phys-i1,2022-23,Salem - Salem Prep High School,02580515, 21, 0,"","","","","","","" +3.825426944971537,3.83,a-phys-i1,2022-23,Salem - Saltonstall School,02580050, 417, 33, 3.8, 5.5, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Salem - Witchcraft Heights,02580070, 475, 3,"","","","","","","" +4.280834914611005,4.28,a-phys-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 489, 24, 0.0, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sandwich - Forestdale School,02610002, 574, 0,"","","","","","","" +6.557874762808349,5,a-phys-i1,2022-23,Sandwich - Oak Ridge,02610025, 690, 27, 2.2, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.40607210626186,5,a-phys-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 955, 50, 4.1, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 852, 12, 1.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.709677419354839,5,a-phys-i1,2022-23,Saugus - Saugus High,02620505, 762, 25, 2.1, 1.7, 0.0, 0.0, 0.0, 0.0, 0.0 +3.5977229601518026,3.6,a-phys-i1,2022-23,Saugus - Saugus Middle School,02620305, 638, 37, 0.5, 5.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 469, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 40, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Cushing Elementary,02640007, 355, 0,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Scituate - Gates Middle School,02640305, 610, 10, 1.6, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Scituate - Hatherly Elementary,02640010, 259, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 332, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Scituate High School,02640505, 770, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 469, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 497, 32, 5.4, 1.4, 0.0, 0.0, 0.2, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Seekonk - George R Martin,02650007, 465, 7, 0.6, 0.9, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 597, 3,"","","","","","","" +2.155597722960151,2.16,a-phys-i1,2022-23,Seekonk - Seekonk High,02650505, 547, 51, 3.5, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 4,"","","","","","","","" +NA,NA,a-phys-i1,2022-23,Sharon - Cottage Street,02660005, 456, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sharon - East Elementary,02660010, 501, 1,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Sharon - Heights Elementary,02660015, 581, 7, 0.0, 0.2, 0.0, 1.2, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 67, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Sharon - Sharon High,02660505," 1,153", 35, 1.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sharon - Sharon Middle,02660305, 861, 5,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605," 1,313", 63, 4.8, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sherborn - Pine Hill,02690010, 412, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 266, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Floral Street School,02710020, 571, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 633, 2,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 969, 10, 0.7, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 231, 0,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 980, 11, 1.1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505," 1,863", 43, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Shrewsbury - Spring Street School,02710035, 313, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 301, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 126, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505," 1,071", 49, 3.5, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 540, 26, 3.1, 3.0, 0.0, 0.2, 0.0, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 377, 46, 10.6, 2.7, 0.3, 0.0, 1.1, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Somerset - Chace Street,02730005, 330, 6, 0.6, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Somerset - North Elementary,02730008, 476, 0,"","","","","","","" +5.419354838709677,5,a-phys-i1,2022-23,Somerset - Somerset Middle School,02730305, 588, 31, 2.9, 3.4, 0.0, 0.0, 2.4, 0.0, 0.2 +NA,NA,a-phys-i1,2022-23,Somerset - South,02730015, 268, 0,"","","","","","","" +4.129032258064516,4.13,a-phys-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505," 1,020", 122, 10.5, 5.1, 0.0, 0.0, 3.9, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 592, 16, 2.2, 0.3, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Somerville - Arthur D Healey,02740075, 553, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Somerville - Benjamin G Brown,02740015, 220, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 263, 0,"","","","","","","" +7.165085388994307,5,a-phys-i1,2022-23,Somerville - E Somerville Community,02740111, 756, 15, 0.9, 1.1, 0.0, 0.0, 0.9, 0.0, 0.0 +-22.740037950664142,1,a-phys-i1,2022-23,Somerville - Full Circle High School,02740510, 74, 32, 0.0, 40.5, 0.0, 0.0, 2.7, 0.0, 0.0 +7.468690702087287,5,a-phys-i1,2022-23,Somerville - John F Kennedy,02740083, 449, 9, 1.1, 0.7, 0.0, 0.0, 1.1, 0.0, 0.0 +-29.9506641366224,1,a-phys-i1,2022-23,Somerville - Next Wave Junior High,02740410, 22, 11, 0.0, 50.0, 0.0, 0.0, 9.1, 0.0, 0.0 +5.039848197343453,5,a-phys-i1,2022-23,Somerville - Somerville High,02740505," 1,373", 93, 2.5, 3.9, 0.0, 0.0, 5.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 380, 4,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Somerville - Winter Hill Community,02740120, 454, 25, 3.5, 1.5, 0.0, 0.0, 2.0, 0.0, 0.0 +4.584440227703984,4.58,a-phys-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 536, 33, 3.5, 4.5, 0.0, 0.0, 1.1, 0.0, 0.2 +6.330170777988616,5,a-phys-i1,2022-23,South Hadley - Mosier,02780020, 356, 9, 0.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,South Hadley - Plains Elementary,02780015, 341, 0,"","","","","","","" +4.053130929791271,4.05,a-phys-i1,2022-23,South Hadley - South Hadley High,02780505, 518, 57, 8.3, 5.2, 0.0, 0.0, 0.2, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 856, 24, 0.0, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550," 1,085", 6, 0.1, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 658, 34, 3.3, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.848197343453511,5,a-phys-i1,2022-23,Southampton - William E Norris,02750005, 492, 7, 1.2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southborough - Margaret A Neary,02760020, 271, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southborough - Mary E Finn School,02760008, 379, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southborough - P Brent Trottier,02760305, 390, 2,"","","","","","","" +5.039848197343453,5,a-phys-i1,2022-23,Southbridge - Charlton Street,02770005, 280, 27, 8.9, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,Southbridge - Eastford Road,02770010, 396, 9, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0 +-28.12903225806452,1,a-phys-i1,2022-23,Southbridge - Southbridge Academy,02770525, 42, 22, 9.5, 47.6, 2.4, 0.0, 0.0, 0.0, 0.0 +-0.04554079696394725,1,a-phys-i1,2022-23,Southbridge - Southbridge High School,02770515, 501, 61, 1.8, 10.6, 0.2, 0.0, 0.0, 1.0, 0.0 +3.825426944971537,3.83,a-phys-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 435, 44, 7.6, 5.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Southbridge - West Street,02770020, 365, 42, 9.6, 3.8, 0.0, 0.0, 0.0, 0.5, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605," 1,583", 50, 0.4, 2.7, 0.0, 0.0, 0.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 301, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 69, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southern Berkshire - South Egremont,07650030, 13, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Southern Berkshire - Undermountain,07650035, 249, 0,"","","","","","","" +5.874762808349146,5,a-phys-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,196", 71, 3.6, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-phys-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 397, 7, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.481973434535104,5,a-phys-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 648, 37, 4.9, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 339, 2,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 379, 23, 0.5, 6.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 266, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 394, 44, 6.9, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 451, 9, 0.7, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 438, 15, 2.1, 1.6, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 328, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 243, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Balliet Preschool,02810003, 184, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Brightwood,02810025, 517, 3,"","","","","","","" +5.267552182163188,5,a-phys-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 280, 11, 0.0, 3.6, 0.0, 0.0, 1.1, 0.0, 0.0 +4.280834914611005,4.28,a-phys-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 325, 16, 0.0, 4.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Springfield - Daniel B Brunton,02810035, 406, 12, 0.0, 3.0, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 231, 0,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Springfield - Edward P. Boland School,02810010, 617, 9, 0.5, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Elias Brookings,02810030, 292, 1,"","","","","","","" +2.155597722960151,2.16,a-phys-i1,2022-23,Springfield - Emergence Academy,02810318, 196, 15, 0.0, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0 +-2.8538899430740052,1,a-phys-i1,2022-23,Springfield - Forest Park Middle,02810325, 412, 72, 0.5, 14.3, 0.0, 0.0, 4.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Frank H Freedman,02810075, 295, 5,"","","","","","","" +6.785578747628084,5,a-phys-i1,2022-23,Springfield - Frederick Harris,02810080, 623, 10, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 40, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 38, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - German Gerena Community School,02810195, 644, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Glenwood,02810065, 312, 4,"","","","","","","" +6.861480075901328,5,a-phys-i1,2022-23,Springfield - Glickman Elementary,02810068, 344, 6, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0 +2.5351043643263753,2.54,a-phys-i1,2022-23,Springfield - High School Of Commerce,02810510," 1,219", 130, 1.2, 7.2, 0.0, 0.0, 2.8, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Hiram L Dorman,02810050, 308, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Homer Street,02810085, 453, 2,"","","","","","","" +-0.5768500948766616,1,a-phys-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 231, 50, 10.8, 11.3, 0.0, 0.0, 6.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 618, 4,"","","","","","","" +-6.876660341555979,1,a-phys-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 443, 96, 2.0, 19.6, 0.0, 0.2, 1.1, 0.5, 0.0 +-4.827324478178368,1,a-phys-i1,2022-23,Springfield - John J Duggan Academy,02810320, 863, 162, 4.2, 16.9, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Kensington International School,02810110, 277, 2,"","","","","","","" +-6.724857685009487,1,a-phys-i1,2022-23,Springfield - Kiley Academy,02810316, 356, 81, 7.0, 19.4, 0.0, 0.3, 1.1, 0.0, 0.0 +-8.698292220113853,1,a-phys-i1,2022-23,Springfield - Kiley Prep,02810315, 309, 77, 0.0, 22.0, 0.0, 0.0, 3.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Liberty,02810115, 275, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 23, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Lincoln,02810120, 487, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Margaret C Ells,02810060, 211, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 315, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Mary M Lynch,02810140, 239, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Mary M Walsh,02810155, 281, 1,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Springfield - Mary O Pottenger,02810145, 436, 7, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.937381404174572,5,a-phys-i1,2022-23,Springfield - Milton Bradley School,02810023, 575, 9, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.089184060721063,5,a-phys-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 654, 9, 0.0, 1.2, 0.0, 0.0, 0.2, 0.0, 0.0 +-9.912713472485772,1,a-phys-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 263, 62, 0.0, 23.6, 0.0, 0.0, 0.8, 0.0, 0.0 +3.9013282732447814,3.9,a-phys-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620," 1,396", 92, 2.1, 5.4, 0.0, 0.0, 0.0, 0.1, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Springfield - STEM Middle Academy,02810350, 307, 12, 0.7, 3.6, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Samuel Bowles,02810020, 234, 2,"","","","","","","" +-5.358633776091084,1,a-phys-i1,2022-23,Springfield - South End Middle School,02810355, 204, 36, 0.5, 17.6, 0.0, 0.0, 1.0, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Springfield - Springfield Central High,02810500," 2,219", 163, 3.3, 4.8, 0.0, 0.0, 0.2, 0.0, 0.0 +3.1423149905123333,3.14,a-phys-i1,2022-23,Springfield - Springfield High School,02810570, 346, 27, 1.2, 6.4, 0.0, 0.0, 2.9, 0.0, 0.0 +2.155597722960151,2.16,a-phys-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530," 1,175", 94, 1.2, 7.7, 0.0, 0.0, 0.0, 0.3, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 45, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 104, 1,"","","","","","","" +-3.461100569259963,1,a-phys-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 352, 59, 2.8, 15.1, 0.0, 0.0, 0.6, 0.3, 0.0 +-1.0322580645161301,1,a-phys-i1,2022-23,Springfield - Springfield Middle School,02810360, 42, 9, 9.5, 11.9, 0.0, 0.0, 4.8, 2.4, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 48, 1,"","","","","","","" +-1.7153700189753334,1,a-phys-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 78, 15, 1.3, 12.8, 0.0, 0.0, 9.0, 6.4, 0.0 +2.0796963946869065,2.08,a-phys-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 77, 8, 1.3, 7.8, 0.0, 0.0, 1.3, 0.0, 0.0 +-6.117647058823532,1,a-phys-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 145, 32, 4.8, 18.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 151, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Springfield - Sumner Avenue,02810160, 531, 6, 0.4, 0.9, 0.0, 0.0, 0.2, 0.0, 0.0 +1.3206831119544582,1.32,a-phys-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 648, 68, 2.0, 8.8, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 453, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Springfield - Thomas M Balliet,02810015, 298, 11, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +1.168880455407969,1.17,a-phys-i1,2022-23,Springfield - Van Sickle Academy,02810485, 288, 26, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.267552182163188,5,a-phys-i1,2022-23,Springfield - Warner,02810180, 280, 18, 3.2, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Springfield - Washington,02810185, 454, 4,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Springfield - White Street,02810190, 468, 16, 0.9, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +5.874762808349146,5,a-phys-i1,2022-23,Springfield - William N. DeBerry,02810045, 290, 20, 4.1, 2.8, 0.0, 0.0, 1.0, 0.0, 0.0 +4.129032258064516,4.13,a-phys-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505," 1,556", 87, 1.0, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0 +3.749525616698292,3.75,a-phys-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 503, 35, 3.2, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Stoneham - Colonial Park,02840005, 260, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoneham - Robin Hood,02840025, 401, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoneham - South,02840030, 375, 0,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 691, 10, 1.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Stoneham - Stoneham High,02840505, 635, 62, 9.6, 2.4, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 275, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 361, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 398, 0,"","","","","","","" +2.7628083491461095,2.76,a-phys-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 849, 68, 1.9, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 342, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Stoughton - South Elementary,02850015, 292, 0,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Stoughton - Stoughton High,02850505," 1,118", 91, 2.9, 6.5, 0.1, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 905, 1,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 852, 14, 1.3, 0.7, 0.0, 0.0, 0.0, 0.1, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 861, 31, 3.5, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 331, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sudbury - Israel Loring School,02880015, 436, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sudbury - Josiah Haynes,02880010, 382, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sudbury - Peter Noyes,02880030, 590, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 189, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton Early Learning,02900003, 338, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton Elementary,02900005, 311, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton High School,02900510, 379, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Sutton - Sutton Middle School,02900305, 302, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swampscott - Clarke,02910005, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swampscott - Hadley,02910010, 362, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swampscott - Stanley,02910020, 164, 0,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Swampscott - Swampscott High,02910505, 660, 20, 0.9, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Swampscott - Swampscott Middle,02910305, 705, 10, 0.6, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 293, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swansea - Gardner,02920015, 260, 0,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Swansea - Joseph Case High,02920505, 552, 42, 4.3, 4.2, 0.0, 0.0, 0.0, 0.0, 0.0 +7.240986717267552,5,a-phys-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 501, 18, 3.2, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Swansea - Joseph G Luther,02920020, 184, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 254, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900," 3,551", 0,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 560, 36, 5.7, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 694, 20, 0.1, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +2.7628083491461095,2.76,a-phys-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 534, 38, 0.2, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.343453510436432,5,a-phys-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 752, 31, 1.2, 3.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Taunton - East Taunton Elementary,02930010, 548, 4,"","","","","","","" +6.481973434535104,5,a-phys-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 301, 6, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 355, 0,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Taunton - Elizabeth Pole,02930027, 669, 7, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Taunton - H H Galligan,02930057, 279, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 900, 5,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Taunton - John F Parker Middle,02930305, 551, 36, 0.2, 6.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.165085388994307,5,a-phys-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 476, 6, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.12144212523719176,1,a-phys-i1,2022-23,Taunton - Joseph H Martin,02930042, 657, 70, 0.0, 10.7, 0.0, 0.0, 0.0, 0.0, 0.0 +-1.791271347248578,1,a-phys-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 116, 15, 0.0, 12.9, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.8804554079696396,1,a-phys-i1,2022-23,Taunton - Taunton High,02930505," 2,905", 341, 0.0, 11.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Tewksbury - Heath-Brook,02950010, 337, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tewksbury - John F. Ryan,02950023, 526, 1,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 512, 6, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Tewksbury - L F Dewing,02950001, 653, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 217, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tewksbury - North Street,02950020, 284, 1,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 777, 23, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 303, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Topsfield - Proctor Elementary,02980005, 262, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Topsfield - Steward Elementary,02980010, 379, 0,"","","","","","","" +3.3700189753320684,3.37,a-phys-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 967, 62, 0.3, 6.1, 0.0, 0.0, 0.1, 0.1, 0.0 +NA,NA,a-phys-i1,2022-23,Triton - Newbury Elementary,07730020, 419, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Triton - Pine Grove,07730025, 441, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Triton - Salisbury Elementary,07730015, 436, 4,"","","","","","","" +4.432637571157495,4.43,a-phys-i1,2022-23,Triton - Triton Regional High School,07730505, 665, 40, 2.9, 4.7, 0.0, 0.0, 0.0, 0.0, 0.0 +6.633776091081593,5,a-phys-i1,2022-23,Triton - Triton Regional Middle School,07730405, 325, 11, 3.1, 1.8, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Truro - Truro Central,03000005, 106, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 772, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 422, 8, 0.0, 1.4, 0.0, 0.0, 0.5, 0.0, 0.2 +6.481973434535104,5,a-phys-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 409, 8, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0 +-0.12144212523719176,1,a-phys-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 225, 26, 2.7, 10.7, 0.0, 0.0, 3.1, 0.0, 0.0 +4.204933586337761,4.2,a-phys-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 643, 39, 1.2, 5.0, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 70, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 360, 8, 2.2, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +2.3833017077798853,2.38,a-phys-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 775, 94, 5.9, 7.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Uxbridge - Gateway to College,03040515, 49, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 560, 0,"","","","","","","" +4.204933586337761,4.2,a-phys-i1,2022-23,Uxbridge - Uxbridge High,03040505, 605, 39, 2.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.696394686907021,5,a-phys-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 499, 25, 5.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0 +3.9772296015180264,3.98,a-phys-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 508, 48, 4.7, 5.3, 0.0, 0.0, 0.4, 0.0, 0.0 +7.772296015180265,5,a-phys-i1,2022-23,Wachusett - Central Tree Middle,07750310, 377, 8, 1.9, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 287, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 454, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Dawson,07750020, 512, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Early Childhood Center,07750001, 164, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 340, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Houghton Elementary,07750027, 338, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 494, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Wachusett - Mountview Middle,07750305, 780, 7, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 373, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Paxton Center,07750040, 456, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wachusett - Thomas Prince,07750045, 346, 1,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Wachusett - Wachusett Regional High,07750505," 1,965", 78, 1.6, 2.7, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wakefield - Dolbeare,03050005, 442, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 140, 0,"","","","","","","" +7.089184060721063,5,a-phys-i1,2022-23,Wakefield - Galvin Middle School,03050310," 1,077", 25, 1.4, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wakefield - Greenwood,03050020, 220, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 840, 7, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wakefield - Walton,03050040, 214, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wakefield - Woodville School,03050015, 435, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wales - Wales Elementary,03060005, 99, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Walpole - Bird Middle,03070305, 383, 7, 1.6, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Walpole - Boyden,03070010, 425, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 115, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 423, 16, 3.1, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Walpole - Elm Street School,03070005, 454, 5,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Walpole - Fisher,03070015, 479, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Walpole - Old Post Road,03070018, 466, 0,"","","","","","","" +5.9506641366223905,5,a-phys-i1,2022-23,Walpole - Walpole High,03070505," 1,014", 44, 3.0, 2.7, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 517, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 413, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 397, 3,"","","","","","","" +3.5977229601518026,3.6,a-phys-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 636, 48, 2.4, 5.8, 0.0, 0.0, 2.7, 0.0, 0.0 +3.4459203036053125,3.45,a-phys-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 633, 82, 9.8, 6.0, 0.0, 0.0, 3.5, 0.0, 0.2 +7.772296015180265,5,a-phys-i1,2022-23,Waltham - Northeast Elementary School,03080040, 582, 9, 1.4, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 390, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 214, 1,"","","","","","","" +3.0664136622390887,3.07,a-phys-i1,2022-23,Waltham - Waltham Sr High,03080505," 1,921", 149, 1.0, 6.5, 0.0, 0.0, 1.2, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 424, 7, 1.4, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 414, 7, 1.2, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +3.521821631878557,3.52,a-phys-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 525, 33, 0.6, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Ware - Ware Middle School,03090305, 259, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 39, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wareham - Wareham Elementary School,03100017, 974, 5,"","","","","","","" +-2.550284629981026,1,a-phys-i1,2022-23,Wareham - Wareham Middle,03100305, 445, 69, 4.7, 13.9, 0.0, 0.0, 0.0, 0.0, 0.2 +-5.586337760910816,1,a-phys-i1,2022-23,Wareham - Wareham Senior High,03100505, 649, 160, 13.1, 17.9, 0.0, 0.0, 1.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Watertown - Cunniff,03140015, 335, 1,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Watertown - Hosmer,03140020, 789, 8, 0.3, 0.6, 0.0, 0.0, 0.5, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Watertown - James Russell Lowell,03140025, 379, 0,"","","","","","","" +7.013282732447817,5,a-phys-i1,2022-23,Watertown - Watertown High,03140505, 777, 14, 0.6, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.013282732447817,5,a-phys-i1,2022-23,Watertown - Watertown Middle,03140305, 552, 15, 1.6, 1.3, 0.0, 0.0, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wayland - Claypit Hill School,03150005, 511, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wayland - Happy Hollow School,03150015, 367, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wayland - Loker School,03150020, 388, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 71, 0,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Wayland - Wayland High School,03150505, 830, 7, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +7.3927893738140416,5,a-phys-i1,2022-23,Wayland - Wayland Middle School,03150305, 628, 27, 3.7, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +-3.0056925996204944,1,a-phys-i1,2022-23,Webster - Bartlett High School,03160505, 393, 64, 5.1, 14.5, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Webster - Park Avenue Elementary,03160015, 836, 16, 0.5, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +3.1423149905123333,3.14,a-phys-i1,2022-23,Webster - Webster Middle School,03160315, 636, 66, 4.9, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wellesley - Ernest F Upham,03170050, 161, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Hunnewell,03170025, 202, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - John D Hardy,03170020, 212, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 296, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 273, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 120, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Schofield,03170045, 338, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 296, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,Wellesley - Wellesley Middle,03170305, 940, 42, 4.1, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +7.620493358633776,5,a-phys-i1,2022-23,Wellesley - Wellesley Sr High,03170505," 1,424", 14, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 98, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 445, 3,"","","","","","","" +5.571157495256166,5,a-phys-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 442, 15, 0.2, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,West Bridgewater - Howard School,03230305, 319, 8, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 320, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Bridgewater - Spring Street School,03230005, 171, 0,"","","","","","","" +5.343453510436432,5,a-phys-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 655, 42, 4.4, 3.5, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Springfield - John Ashley,03320005, 187, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,West Springfield - John R Fausey,03320010, 435, 6, 1.1, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Springfield - Memorial,03320025, 211, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Springfield - Mittineague,03320030, 154, 0,"","","","","","","" +6.937381404174572,5,a-phys-i1,2022-23,West Springfield - Philip G Coburn,03320007, 639, 9, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,West Springfield - Tatham,03320040, 233, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 151, 0,"","","","","","","" +3.9772296015180264,3.98,a-phys-i1,2022-23,West Springfield - West Springfield High,03320505," 1,256", 67, 0.1, 5.3, 0.0, 0.0, 0.0, 0.1, 0.0 +4.053130929791271,4.05,a-phys-i1,2022-23,West Springfield - West Springfield Middle,03320305, 965, 50, 0.0, 5.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westborough - Annie E Fales,03210010, 347, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 544, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - J Harding Armstrong,03210005, 431, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - Mill Pond School,03210045, 910, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 610, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Westborough - Westborough High,03210505," 1,212", 12, 0.5, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westfield - Abner Gibbs,03250020, 188, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 178, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Franklin Ave,03250015, 180, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Highland,03250025, 385, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westfield - Munger Hill,03250033, 365, 2,"","","","","","","" +6.1024667931688805,5,a-phys-i1,2022-23,Westfield - Paper Mill,03250036, 354, 9, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Westfield - Southampton Road,03250040, 337, 10, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +1.168880455407969,1.17,a-phys-i1,2022-23,Westfield - Westfield High,03250505," 1,081", 152, 9.3, 9.0, 0.1, 0.0, 0.2, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 693, 34, 2.9, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +2.4592030360531307,2.46,a-phys-i1,2022-23,Westfield - Westfield Middle School,03250310, 715, 73, 5.5, 7.3, 0.0, 0.0, 0.1, 0.0, 0.0 +4.35673624288425,4.36,a-phys-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 557, 27, 0.2, 4.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westfield - Westfield Virtual School,03250705, 130, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Abbot Elementary,03260004, 365, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Blanchard Middle,03260310, 552, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Col John Robinson,03260025, 363, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Day Elementary,03260007, 332, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 352, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Nabnasset,03260015, 387, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 315, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westford - Stony Brook School,03260330, 620, 0,"","","","","","","" +7.544592030360532,5,a-phys-i1,2022-23,Westford - Westford Academy,03260505," 1,537", 14, 0.4, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 105, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Country,03300010, 341, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Field Elementary School,03300012, 269, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Weston High,03300505, 649, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Weston Middle,03300305, 449, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weston - Woodland,03300015, 326, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westport - Alice A Macomber,03310015, 184, 0,"","","","","","","" +7.3168880455407965,5,a-phys-i1,2022-23,Westport - Westport Elementary,03310030, 453, 7, 0.7, 0.9, 0.0, 0.0, 0.0, 0.0, 0.0 +5.495256166982922,5,a-phys-i1,2022-23,Westport - Westport Middle-High School,03310515, 849, 59, 4.4, 3.3, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westwood - Deerfield School,03350010, 201, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westwood - Downey,03350012, 317, 0,"","","","","","","" +7.924098671726756,5,a-phys-i1,2022-23,Westwood - E W Thurston Middle,03350305, 667, 9, 1.2, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westwood - Martha Jones,03350017, 267, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westwood - Paul Hanlon,03350015, 231, 2,"","","","","","","" +7.3927893738140416,5,a-phys-i1,2022-23,Westwood - Westwood High,03350505, 915, 20, 2.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 51, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Westwood - William E Sheehan,03350025, 291, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Academy Avenue,03360005, 354, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 289, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 219, 0,"","","","","","","" +5.722960151802656,5,a-phys-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 267, 8, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0 +2.307400379506641,2.31,a-phys-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020," 1,240", 166, 10.4, 7.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Weymouth - Ralph Talbot,03360085, 272, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Thomas V Nash,03360060, 250, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 366, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Weymouth - Wessagusset,03360110, 353, 3,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Weymouth - Weymouth High School,03360505," 1,862", 258, 11.7, 6.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Weymouth - William Seach,03360080, 392, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whately - Whately Elementary,03370005, 130, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 450, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 490, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 448, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 493, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 115, 0,"","","","","","","" +4.812144212523719,4.81,a-phys-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505," 1,113", 52, 0.9, 4.2, 0.0, 0.0, 0.0, 0.1, 0.0 +6.1024667931688805,5,a-phys-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 521, 18, 2.3, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0 +4.963946869070209,4.96,a-phys-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,295", 84, 3.6, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 133, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - Boutwell,03420005, 150, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - North Intermediate,03420060, 253, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 399, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wilmington - West Intermediate,03420080, 305, 3,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Wilmington - Wilmington High,03420505, 677, 15, 0.7, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 640, 13, 0.8, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Wilmington - Woburn Street,03420020, 432, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchendon - Memorial,03430040, 333, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 27, 0,"","","","","","","" +-1.184060721062619,1,a-phys-i1,2022-23,Winchendon - Murdock High School,03430515, 281, 35, 0.4, 12.1, 0.0, 0.0, 1.4, 0.0, 0.0 +0.10626185958254179,1,a-phys-i1,2022-23,Winchendon - Murdock Middle School,03430315, 280, 36, 4.6, 10.4, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 299, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 85, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Ambrose Elementary,03440045, 345, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Lincoln Elementary,03440005, 334, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Lynch Elementary,03440020, 495, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - McCall Middle,03440305," 1,045", 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Muraco Elementary,03440040, 334, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 444, 0,"","","","","","","" +7.848197343453511,5,a-phys-i1,2022-23,Winchester - Winchester High School,03440505," 1,411", 9, 0.6, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 449, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 534, 0,"","","","","","","" +5.115749525616698,5,a-phys-i1,2022-23,Winthrop - Winthrop High School,03460505, 629, 24, 0.0, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +6.785578747628084,5,a-phys-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 443, 9, 0.7, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Woburn - Clyde Reeves,03470040, 460, 0,"","","","","","","" +6.40607210626186,5,a-phys-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 469, 13, 1.9, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 352, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 404, 0,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 538, 17, 1.3, 2.4, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Woburn - Linscott-Rumford,03470025, 204, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Malcolm White,03470055, 338, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Mary D Altavesta,03470065, 218, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Shamrock,03470043, 303, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Woburn - Woburn High,03470505," 1,228", 5,"","","","","","","" +7.468690702087287,5,a-phys-i1,2022-23,Worcester - Belmont Street Community,03480020, 672, 7, 0.4, 0.7, 0.0, 0.0, 0.1, 0.0, 0.0 +-0.9563567362428855,1,a-phys-i1,2022-23,Worcester - Burncoat Middle School,03480405, 755, 95, 1.1, 11.8, 0.0, 0.0, 2.3, 0.0, 0.0 +4.053130929791271,4.05,a-phys-i1,2022-23,Worcester - Burncoat Senior High,03480503," 1,267", 70, 0.1, 5.2, 0.0, 0.0, 1.3, 0.0, 0.0 +5.9506641366223905,5,a-phys-i1,2022-23,Worcester - Burncoat Street,03480035, 255, 7, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Canterbury,03480045, 373, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 492, 1,"","","","","","","" +6.178368121442125,5,a-phys-i1,2022-23,Worcester - Chandler Magnet,03480052, 422, 15, 0.2, 2.4, 0.0, 0.0, 1.9, 0.0, 0.0 +6.25426944971537,5,a-phys-i1,2022-23,Worcester - City View,03480053, 512, 15, 0.6, 2.3, 0.0, 0.0, 0.4, 0.0, 0.0 +2.686907020872865,2.69,a-phys-i1,2022-23,Worcester - Claremont Academy,03480350, 531, 52, 2.1, 7.0, 0.0, 0.0, 3.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Clark St Community,03480055, 309, 3,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Worcester - Columbus Park,03480060, 434, 16, 3.5, 0.5, 0.0, 0.0, 0.2, 0.0, 0.0 +5.115749525616698,5,a-phys-i1,2022-23,Worcester - Doherty Memorial High,03480512," 1,431", 112, 4.8, 3.8, 0.0, 0.0, 0.1, 0.0, 0.0 +6.178368121442125,5,a-phys-i1,2022-23,Worcester - Elm Park Community,03480095, 463, 16, 0.9, 2.4, 0.0, 0.0, 0.6, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Flagg Street,03480090, 376, 0,"","","","","","","" +2.990512333965844,2.99,a-phys-i1,2022-23,Worcester - Forest Grove Middle,03480415, 945, 73, 0.7, 6.6, 0.0, 0.0, 1.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 245, 4,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Gates Lane,03480110, 595, 2,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 445, 4,"","","","","","","" +7.240986717267552,5,a-phys-i1,2022-23,Worcester - Grafton Street,03480115, 498, 10, 1.4, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Head Start,03480002, 406, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Heard Street,03480136, 266, 0,"","","","","","","" +7.620493358633776,5,a-phys-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 397, 9, 2.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 202, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Lake View,03480145, 336, 2,"","","","","","","" +6.633776091081593,5,a-phys-i1,2022-23,Worcester - Lincoln Street,03480160, 275, 9, 1.1, 1.8, 0.0, 0.0, 0.4, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - May Street,03480175, 316, 1,"","","","","","","" +6.0265654648956355,5,a-phys-i1,2022-23,Worcester - Midland Street,03480185, 229, 8, 0.9, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Nelson Place,03480200, 613, 3,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - Norrback Avenue,03480202, 559, 3,"","","","","","","" +3.2182163187855783,3.22,a-phys-i1,2022-23,Worcester - North High,03480515," 1,520", 124, 2.4, 6.3, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Quinsigamond,03480210, 772, 5,"","","","","","","" +7.696394686907021,5,a-phys-i1,2022-23,Worcester - Rice Square,03480215, 536, 7, 0.4, 0.4, 0.0, 0.0, 0.7, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Roosevelt,03480220, 620, 0,"","","","","","","" +3.825426944971537,3.83,a-phys-i1,2022-23,Worcester - South High Community,03480520," 1,809", 143, 2.9, 5.5, 0.0, 0.0, 1.6, 0.0, 0.0 +2.990512333965844,2.99,a-phys-i1,2022-23,Worcester - Sullivan Middle,03480423, 898, 60, 0.2, 6.6, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Tatnuck,03480230, 410, 0,"","","","","","","" +8.0,5,a-phys-i1,2022-23,Worcester - Thorndyke Road,03480235, 385, 8, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Union Hill School,03480240, 428, 4,"","","","","","","" +4.7362428842504745,4.74,a-phys-i1,2022-23,Worcester - University Pk Campus School,03480285, 231, 19, 5.2, 4.3, 0.0, 0.0, 0.4, 0.0, 0.0 +7.3168880455407965,5,a-phys-i1,2022-23,Worcester - Vernon Hill School,03480280, 572, 7, 0.3, 0.9, 0.0, 0.0, 0.3, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Wawecus Road School,03480026, 149, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Worcester - West Tatnuck,03480260, 385, 0,"","","","","","","" +6.330170777988616,5,a-phys-i1,2022-23,Worcester - Woodland Academy,03480030, 543, 23, 2.4, 2.2, 0.0, 0.0, 0.2, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 390, 0,"","","","","","","" +1.8519924098671725,1.85,a-phys-i1,2022-23,Worcester - Worcester East Middle,03480420, 823, 117, 7.5, 8.1, 0.0, 0.0, 2.2, 0.0, 0.0 +5.722960151802656,5,a-phys-i1,2022-23,Worcester - Worcester Technical High,03480605," 1,482", 61, 1.1, 3.0, 0.0, 0.0, 1.1, 0.0, 0.0 +NA,NA,a-phys-i1,2022-23,Worthington - R. H. Conwell,03490010, 77, 0,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wrentham - Charles E Roderick,03500010, 377, 1,"","","","","","","" +NA,NA,a-phys-i1,2022-23,Wrentham - Delaney,03500003, 603, 0,"","","","","","","" 5.874762808349146,5,a-phys-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105," 1,447", 43, 0.4, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0 NA,NA,a-phys-i1,2021-22,Abington - Abington Early Education Program,00010001, 100, 0,"","","","","","","" 3.749525616698292,3.75,a-phys-i1,2021-22,Abington - Abington High,00010505, 603, 38, 2.2, 5.6, 0.0, 0.0, 0.0, 0.0, 0.0 diff --git a/data/admin_data/dese/3A_1_average_class_size.csv b/data/admin_data/dese/3A_1_average_class_size.csv index 61f24e70..5f29035a 100644 --- a/data/admin_data/dese/3A_1_average_class_size.csv +++ b/data/admin_data/dese/3A_1_average_class_size.csv @@ -1,4 +1,1836 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Total # of Classes,Average Class Size,Number of Students,Female %,Male %,English Language Learner %,Students with Disabilities %,Economically Disadvantaged % +4.2,4.2,a-reso-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 735, 19.0," 1,418", 53.6, 46.4, 18.8, 12.1,57 +2.94,2.94,a-reso-i1,2022-23,Abington - Abington Early Education Program,00010001, 16, 25.3, 101, 36.6, 63.4, 13.9, 40.6,36.6 +4.88,4.88,a-reso-i1,2022-23,Abington - Abington High,00010505, 278, 15.6, 563, 48.0, 51.9, 10.0, 12.3,36.2 +3.72,3.72,a-reso-i1,2022-23,Abington - Abington Middle School,00010405, 379, 21.4, 663, 49.0, 50.5, 8.5, 18.7,34.7 +3.9200000000000004,3.92,a-reso-i1,2022-23,Abington - Beaver Brook Elementary,00010020, 234, 20.4, 530, 50.9, 49.1, 17.0, 15.3,37 +3.0799999999999996,3.08,a-reso-i1,2022-23,Abington - Woodsdale Elementary School,00010015, 126, 24.6, 343, 47.2, 52.5, 13.4, 19.5,35.9 +4.42,4.42,a-reso-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 215, 17.9, 468, 49.2, 50.9, 9.6, 24.4,58.8 +4.38,4.38,a-reso-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 695, 18.1," 1,691", 47.5, 51.9, 1.2, 12.3,10.1 +3.8200000000000003,3.82,a-reso-i1,2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 172, 20.9, 505, 49.1, 50.7, 9.3, 17.2,10.3 +3.8,3.8,a-reso-i1,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 130, 21.0, 385, 46.5, 53.5, 6.0, 15.1,16.4 +6.12,5,a-reso-i1,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 14, 9.4, 119, 37.8, 62.2, 28.6, 48.7,21.9 +3.7399999999999998,3.74,a-reso-i1,2022-23,Acton-Boxborough - Luther Conant School,06000030, 137, 21.3, 408, 48.5, 51.5, 12.0, 16.9,10.1 +3.7399999999999998,3.74,a-reso-i1,2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 150, 21.3, 453, 48.1, 51.7, 6.8, 18.8,13.9 +3.6,3.6,a-reso-i1,2022-23,Acton-Boxborough - Merriam School,06000010, 144, 22.0, 445, 49.7, 49.9, 8.1, 16.2,10.8 +4.0200000000000005,4.02,a-reso-i1,2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 124, 19.9, 346, 50.0, 50.0, 9.0, 11.9,12.4 +3.96,3.96,a-reso-i1,2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 560, 20.2, 835, 47.0, 52.8, 3.2, 15.3,11 +4.4,4.4,a-reso-i1,2022-23,Acushnet - Acushnet Elementary School,00030025, 294, 18.0, 552, 44.9, 55.1, 0.2, 18.1,35.7 +4.66,4.66,a-reso-i1,2022-23,Acushnet - Albert F Ford Middle School,00030305, 220, 16.7, 408, 51.2, 48.5, 0.3, 12.8,29.4 +4.36,4.36,a-reso-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 504, 18.2, 957, 45.1, 54.1, 1.6, 7.6,16.1 +6.0,5,a-reso-i1,2022-23,Agawam - Agawam Early Childhood Center,00050003, 16, 10.0, 156, 38.5, 61.5, 10.9, 44.2,41 +5.08,5,a-reso-i1,2022-23,Agawam - Agawam High,00050505, 550, 14.6," 1,052", 47.6, 51.3, 3.2, 16.6,35.6 +5.76,5,a-reso-i1,2022-23,Agawam - Agawam Junior High,00050405, 545, 11.2, 537, 44.0, 55.9, 4.8, 19.2,42.5 +3.9,3.9,a-reso-i1,2022-23,Agawam - Benjamin J Phelps,00050020, 159, 20.5, 311, 47.0, 53.1, 8.0, 17.4,46.3 +4.04,4.04,a-reso-i1,2022-23,Agawam - Clifford M Granger,00050010, 181, 19.8, 338, 50.0, 50.0, 9.2, 16.3,36.4 +3.8200000000000003,3.82,a-reso-i1,2022-23,Agawam - James Clark School,00050030, 159, 20.9, 314, 47.5, 52.6, 11.2, 16.9,45.5 +4.08,4.08,a-reso-i1,2022-23,Agawam - Roberta G. Doering School,00050303, 275, 19.6, 533, 50.1, 49.9, 5.3, 16.3,42.8 +4.16,4.16,a-reso-i1,2022-23,Agawam - Robinson Park,00050025, 159, 19.2, 289, 52.9, 47.1, 20.4, 12.5,56.1 +3.54,3.54,a-reso-i1,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 322, 22.3," 1,036", 53.6, 46.4, 29.4, 20.3,74.3 +3.9,3.9,a-reso-i1,2022-23,Amesbury - Amesbury Elementary,00070005, 134, 20.5, 344, 48.6, 51.5, 0.9, 24.4,32.6 +5.5,5,a-reso-i1,2022-23,Amesbury - Amesbury High,00070505, 409, 12.5, 459, 49.7, 50.3, 1.5, 19.4,28.3 +6.24,5,a-reso-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515, 64, 8.8, 54, 51.9, 48.2, 0.0, 48.2,81.5 +4.82,4.82,a-reso-i1,2022-23,Amesbury - Amesbury Middle,00070013, 332, 15.9, 588, 44.6, 55.4, 1.5, 23.5,34.7 +3.9799999999999995,3.98,a-reso-i1,2022-23,Amesbury - Charles C Cashman Elementary,00070010, 161, 20.1, 394, 49.0, 51.0, 7.4, 28.7,35.3 +4.74,4.74,a-reso-i1,2022-23,Amherst - Crocker Farm Elementary,00080009, 110, 16.3, 346, 51.5, 46.8, 16.8, 25.1,32.4 +4.2,4.2,a-reso-i1,2022-23,Amherst - Fort River Elementary,00080020, 120, 19.0, 378, 44.4, 55.3, 12.2, 25.1,34.7 +4.4399999999999995,4.44,a-reso-i1,2022-23,Amherst - Wildwood Elementary,00080050, 106, 17.8, 316, 52.5, 46.8, 14.6, 23.7,42.4 +5.46,5,a-reso-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 685, 12.7, 874, 47.3, 51.1, 7.4, 25.3,30 +5.16,5,a-reso-i1,2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 301, 14.2, 384, 43.5, 55.2, 7.8, 22.9,30.2 +4.96,4.96,a-reso-i1,2022-23,Andover - Andover High,00090505, 980, 15.2," 1,700", 51.2, 48.7, 1.5, 15.8,13.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Andover - Andover West Middle,00090310, 328, 17.2, 524, 51.5, 47.9, 2.9, 20.4,13.4 +3.8,3.8,a-reso-i1,2022-23,Andover - Bancroft Elementary,00090003, 182, 21.0, 547, 50.6, 49.2, 2.6, 21.4,8.4 +4.68,4.68,a-reso-i1,2022-23,Andover - Doherty Middle,00090305, 298, 16.6, 464, 49.4, 50.4, 0.2, 16.8,9.1 +4.14,4.14,a-reso-i1,2022-23,Andover - Henry C Sanborn Elementary,00090010, 126, 19.3, 347, 45.8, 54.2, 10.1, 8.9,11.8 +3.7,3.7,a-reso-i1,2022-23,Andover - High Plain Elementary,00090004, 175, 21.5, 537, 49.4, 50.7, 11.2, 16.6,12.5 +5.9399999999999995,5,a-reso-i1,2022-23,Andover - Shawsheen School,00090005, 12, 10.3, 124, 35.5, 64.5, 0.8, 57.3,25 +4.04,4.04,a-reso-i1,2022-23,Andover - South Elementary,00090020, 161, 19.8, 455, 45.3, 54.7, 1.3, 14.1,5.3 +4.0,4.0,a-reso-i1,2022-23,Andover - West Elementary,00090025, 196, 20.0, 560, 46.3, 53.8, 5.5, 27.1,13.6 +4.88,4.88,a-reso-i1,2022-23,Andover - Wood Hill Middle School,00090350, 227, 15.6, 346, 46.0, 54.1, 2.0, 17.3,12.4 +4.76,4.76,a-reso-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 360, 16.2, 543, 44.6, 55.4, 22.1, 25.1,74.2 +5.24,5,a-reso-i1,2022-23,Arlington - Arlington High,00100505, 997, 13.8," 1,540", 50.4, 47.6, 1.7, 13.5,11.1 +4.26,4.26,a-reso-i1,2022-23,Arlington - Brackett,00100010, 162, 18.7, 420, 46.7, 53.3, 5.2, 16.0,3.3 +4.32,4.32,a-reso-i1,2022-23,Arlington - Cyrus E Dallin,00100025, 164, 18.4, 416, 51.4, 48.3, 4.3, 11.3,7.5 +4.18,4.18,a-reso-i1,2022-23,Arlington - Gibbs School,00100305, 320, 19.1, 514, 46.9, 52.7, 3.9, 19.5,11.7 +4.0200000000000005,4.02,a-reso-i1,2022-23,Arlington - Hardy,00100030, 143, 19.9, 392, 49.2, 50.5, 8.9, 19.9,12.8 +3.7399999999999998,3.74,a-reso-i1,2022-23,Arlington - John A Bishop,00100005, 136, 21.3, 397, 47.4, 52.6, 9.3, 12.6,6.1 +3.9,3.9,a-reso-i1,2022-23,Arlington - M Norcross Stratton,00100055, 156, 20.5, 443, 49.9, 49.9, 9.5, 17.2,10.4 +5.14,5,a-reso-i1,2022-23,Arlington - Menotomy Preschool,00100038, 7, 14.3, 100, 37.0, 63.0, 0.0, 51.0,20 +4.42,4.42,a-reso-i1,2022-23,Arlington - Ottoson Middle,00100410, 579, 17.9, 933, 49.0, 50.1, 3.3, 22.0,10 +3.9200000000000004,3.92,a-reso-i1,2022-23,Arlington - Peirce,00100045, 128, 20.4, 361, 46.8, 52.6, 8.0, 13.0,10.5 +3.62,3.62,a-reso-i1,2022-23,Arlington - Thompson,00100050, 170, 21.9, 515, 53.4, 46.2, 8.0, 16.5,21.8 +4.08,4.08,a-reso-i1,2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 269, 19.6, 520, 51.2, 48.9, 4.8, 22.7,28.5 +4.779999999999999,4.78,a-reso-i1,2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 105, 16.1, 199, 50.3, 49.8, 4.0, 9.1,24.6 +4.82,4.82,a-reso-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 338, 15.9, 654, 46.5, 52.0, 0.2, 16.1,22.5 +3.88,3.88,a-reso-i1,2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 332, 20.6, 540, 48.5, 50.4, 0.0, 14.1,25.2 +4.0,4.0,a-reso-i1,2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 219, 20.0, 387, 50.4, 49.6, 1.3, 19.9,21.2 +4.62,4.62,a-reso-i1,2022-23,Ashland - Ashland High,00140505, 437, 16.9, 861, 49.8, 50.1, 7.2, 14.6,23.2 +3.96,3.96,a-reso-i1,2022-23,Ashland - Ashland Middle,00140405, 386, 20.2, 700, 48.6, 51.3, 5.4, 20.0,24.3 +3.54,3.54,a-reso-i1,2022-23,Ashland - David Mindess,00140015, 305, 22.3, 652, 46.6, 53.4, 9.8, 24.2,26.1 +3.9799999999999995,3.98,a-reso-i1,2022-23,Ashland - Henry E Warren Elementary,00140010, 198, 20.1, 632, 48.4, 51.4, 13.3, 16.3,22.9 +7.0,5,a-reso-i1,2022-23,Ashland - William Pittaway Elementary,00140005, 19, 5.0, 85, 48.2, 51.8, 21.2, 40.0,20 +4.5200000000000005,4.52,a-reso-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 604, 17.4," 1,118", 43.8, 55.2, 6.3, 24.1,41.4 +3.8600000000000003,3.86,a-reso-i1,2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 211, 20.7, 589, 46.7, 53.1, 3.2, 26.7,69.3 +4.68,4.68,a-reso-i1,2022-23,Athol-Royalston - Athol High,06150505, 246, 16.6, 401, 43.9, 56.1, 2.7, 23.4,62.3 +4.1,4.1,a-reso-i1,2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 269, 19.5, 447, 47.7, 52.4, 1.1, 28.4,64.2 +4.32,4.32,a-reso-i1,2022-23,Athol-Royalston - Royalston Community School,06150050, 54, 18.4, 156, 43.0, 57.1, 0.0, 15.4,48.7 +3.9200000000000004,3.92,a-reso-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 532, 20.4," 1,296", 52.7, 47.1, 18.1, 16.8,61.2 +4.279999999999999,4.28,a-reso-i1,2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 169, 18.6, 349, 47.3, 52.4, 9.7, 20.1,39.5 +5.8,5,a-reso-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 91, 11.0, 77, 45.5, 53.3, 5.2, 10.4,61 +4.279999999999999,4.28,a-reso-i1,2022-23,Attleboro - Attleboro High,00160505, 958, 18.6," 1,883", 45.5, 54.0, 4.1, 12.2,37.4 +7.0,5,a-reso-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 70, 5.0, 48, 25.0, 75.0, 0.0, 6.3,37.5 +3.7399999999999998,3.74,a-reso-i1,2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 281, 21.3, 642, 50.8, 49.1, 7.3, 17.9,46.6 +5.4399999999999995,5,a-reso-i1,2022-23,Attleboro - Early Learning Center,00160008, 18, 12.8, 231, 36.8, 63.2, 0.0, 54.6,47.2 +3.6799999999999997,3.68,a-reso-i1,2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 175, 21.6, 412, 47.3, 52.7, 11.2, 14.3,43.5 +3.38,3.38,a-reso-i1,2022-23,Attleboro - Hyman Fine Elementary School,00160040, 180, 23.1, 462, 50.2, 49.8, 14.9, 18.6,41.8 +5.08,5,a-reso-i1,2022-23,Attleboro - Peter Thacher Elementary School,00160050, 272, 14.6, 443, 45.8, 54.0, 8.4, 24.2,50.8 +3.46,3.46,a-reso-i1,2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 254, 22.7, 587, 44.3, 55.5, 0.5, 15.7,35.6 +3.1799999999999997,3.18,a-reso-i1,2022-23,Attleboro - Thomas Willett Elementary School,00160035, 140, 24.1, 377, 49.9, 50.1, 10.3, 21.8,42.7 +3.62,3.62,a-reso-i1,2022-23,Attleboro - Wamsutta Middle School,00160320, 228, 21.9, 592, 50.2, 49.8, 3.4, 16.1,37.7 +4.5200000000000005,4.52,a-reso-i1,2022-23,Auburn - Auburn Middle,00170305, 423, 17.4, 652, 47.9, 52.2, 2.3, 12.9,27.6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Auburn - Auburn Senior High,00170505, 656, 15.3, 860, 49.8, 49.8, 1.5, 11.5,28.8 +4.24,4.24,a-reso-i1,2022-23,Auburn - Bryn Mawr,00170010, 112, 18.8, 264, 44.7, 55.3, 4.2, 14.8,39.4 +4.54,4.54,a-reso-i1,2022-23,Auburn - Pakachoag School,00170025, 112, 17.3, 242, 47.9, 52.1, 1.7, 16.1,25.2 +4.38,4.38,a-reso-i1,2022-23,Auburn - Swanson Road Intermediate School,00170030, 243, 18.1, 551, 48.3, 51.7, 2.5, 15.1,26.9 +5.46,5,a-reso-i1,2022-23,Avon - Avon Middle High School,00180510, 244, 12.7, 338, 48.2, 51.5, 7.1, 21.9,45.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Avon - Ralph D Butler,00180010, 107, 18.9, 398, 48.2, 51.8, 17.3, 20.6,48.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 234, 16.4, 401, 47.4, 52.1, 3.5, 15.5,30.4 +4.0600000000000005,4.06,a-reso-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 207, 19.7, 382, 46.9, 53.1, 2.9, 16.8,35.1 +4.220000000000001,4.22,a-reso-i1,2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 180, 18.9, 337, 46.3, 53.7, 5.3, 25.5,32.1 +4.08,4.08,a-reso-i1,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 233, 19.6, 550, 46.2, 53.8, 6.7, 20.4,38.7 +4.24,4.24,a-reso-i1,2022-23,Barnstable - Barnstable Community Innovation School,00200012, 124, 18.8, 288, 47.9, 52.1, 45.8, 6.3,63.5 +5.4399999999999995,5,a-reso-i1,2022-23,Barnstable - Barnstable High,00200505, 871, 12.8," 1,671", 48.7, 50.9, 15.7, 15.6,53.1 +4.68,4.68,a-reso-i1,2022-23,Barnstable - Barnstable Intermediate School,00200315, 597, 16.6, 684, 47.2, 52.6, 19.4, 18.6,58.6 +4.9,4.9,a-reso-i1,2022-23,Barnstable - Barnstable United Elementary School,00200050, 464, 15.5, 737, 49.0, 50.8, 23.1, 17.8,55.4 +3.96,3.96,a-reso-i1,2022-23,Barnstable - Centerville Elementary,00200010, 90, 20.2, 257, 45.1, 54.5, 18.7, 19.1,47.9 +6.42,5,a-reso-i1,2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 24, 7.9, 190, 37.9, 62.1, 36.8, 49.0,56.8 +3.72,3.72,a-reso-i1,2022-23,Barnstable - Hyannis West Elementary,00200025, 112, 21.4, 336, 53.0, 47.0, 50.6, 16.7,78.9 +3.8,3.8,a-reso-i1,2022-23,Barnstable - West Barnstable Elementary,00200005, 90, 21.0, 275, 41.5, 58.6, 19.6, 16.7,44.4 +3.94,3.94,a-reso-i1,2022-23,Barnstable - West Villages Elementary School,00200045, 131, 20.3, 394, 45.9, 54.1, 11.9, 13.2,36.8 +5.0600000000000005,5,a-reso-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 248, 14.7, 398, 44.7, 55.3, 9.1, 21.9,82.4 +5.34,5,a-reso-i1,2022-23,Bedford - Bedford High,00230505, 519, 13.3, 837, 48.8, 50.4, 1.0, 14.5,10.4 +4.9,4.9,a-reso-i1,2022-23,Bedford - John Glenn Middle,00230305, 405, 15.5, 594, 50.3, 49.7, 2.0, 17.7,14 +4.24,4.24,a-reso-i1,2022-23,Bedford - Lt Eleazer Davis,00230010, 82, 18.8, 529, 46.3, 53.7, 7.9, 20.6,11.7 +4.18,4.18,a-reso-i1,2022-23,Bedford - Lt Job Lane School,00230012, 164, 19.1, 581, 47.0, 53.0, 3.6, 20.7,12.1 +5.26,5,a-reso-i1,2022-23,Belchertown - Belchertown High,00240505, 431, 13.7, 643, 50.4, 48.5, 1.2, 17.3,20.4 +3.8,3.8,a-reso-i1,2022-23,Belchertown - Chestnut Hill Community School,00240006, 191, 21.0, 484, 51.2, 48.8, 0.8, 24.0,26 +4.9799999999999995,4.98,a-reso-i1,2022-23,Belchertown - Cold Spring,00240005, 38, 15.1, 196, 46.4, 53.6, 3.1, 31.6,27.6 +5.04,5,a-reso-i1,2022-23,Belchertown - Jabish Middle School,00240025, 286, 14.8, 351, 46.4, 53.0, 1.7, 23.9,28.2 +4.32,4.32,a-reso-i1,2022-23,Belchertown - Swift River Elementary,00240018, 233, 18.4, 477, 47.2, 52.8, 5.0, 26.0,27.5 +5.82,5,a-reso-i1,2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 11, 10.9, 117, 45.3, 53.9, 0.0, 48.7,32.5 +4.5600000000000005,4.56,a-reso-i1,2022-23,Bellingham - Bellingham High School,00250505, 383, 17.2, 746, 51.1, 48.9, 2.4, 17.6,29.4 +4.14,4.14,a-reso-i1,2022-23,Bellingham - Bellingham Memorial School,00250315, 335, 19.3, 594, 47.3, 52.7, 4.6, 24.4,37.7 +4.24,4.24,a-reso-i1,2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 64, 18.8, 300, 50.7, 49.3, 7.0, 18.3,29.3 +6.36,5,a-reso-i1,2022-23,Bellingham - Keough Memorial Academy,00250510, 33, 8.2, 35, 57.1, 42.9, 0.0, 97.1,48.6 +4.2,4.2,a-reso-i1,2022-23,Bellingham - Stall Brook,00250025, 53, 19.0, 245, 49.0, 51.0, 10.2, 20.0,35.5 +3.78,3.78,a-reso-i1,2022-23,Belmont - Belmont High,00260505, 470, 21.1," 1,369", 50.0, 49.7, 2.6, 8.4,11.1 +3.72,3.72,a-reso-i1,2022-23,Belmont - Daniel Butler,00260015, 130, 21.4, 326, 47.6, 51.8, 24.9, 12.0,15 +4.04,4.04,a-reso-i1,2022-23,Belmont - Mary Lee Burbank,00260010, 142, 19.8, 340, 51.5, 48.2, 15.0, 13.2,9.1 +3.96,3.96,a-reso-i1,2022-23,Belmont - Roger E Wellington,00260035, 207, 20.2, 568, 50.0, 49.8, 19.5, 21.7,18.5 +3.7,3.7,a-reso-i1,2022-23,Belmont - Winn Brook,00260005, 168, 21.5, 436, 54.1, 45.9, 19.5, 9.2,6 +3.94,3.94,a-reso-i1,2022-23,Belmont - Winthrop L Chenery Middle,00260305, 690, 20.3," 1,387", 48.7, 50.6, 5.3, 15.5,11 +3.66,3.66,a-reso-i1,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 64, 21.7, 327, 52.6, 47.1, 6.4, 14.1,64.5 +3.28,3.28,a-reso-i1,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 292, 23.6, 867, 50.4, 49.6, 8.5, 18.3,18.7 +4.18,4.18,a-reso-i1,2022-23,Berkley - Berkley Community School,00270010, 168, 19.1, 484, 50.6, 49.4, 1.5, 18.8,29.3 +4.54,4.54,a-reso-i1,2022-23,Berkley - Berkley Middle School,00270305, 192, 17.3, 370, 51.4, 48.7, 1.1, 18.4,23.2 +4.279999999999999,4.28,a-reso-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 182, 18.6, 375, 48.8, 48.3, 1.1, 21.3,63.2 +5.62,5,a-reso-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 342, 11.9, 483, 46.0, 53.6, 8.7, 14.3,39.3 +4.74,4.74,a-reso-i1,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 223, 16.3, 378, 50.8, 48.9, 9.5, 20.9,50.8 +4.34,4.34,a-reso-i1,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 278, 18.3, 334, 48.8, 49.7, 5.1, 17.1,42.8 +4.720000000000001,4.72,a-reso-i1,2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 140, 16.4, 226, 49.1, 50.4, 3.1, 20.8,20.4 +4.16,4.16,a-reso-i1,2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 182, 19.2, 340, 43.5, 56.5, 2.4, 21.2,13.2 +5.0200000000000005,5,a-reso-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 319, 14.9, 518, 52.5, 46.7, 2.7, 14.1,18.2 +4.26,4.26,a-reso-i1,2022-23,Beverly - Ayers/Ryal Side School,00300055, 84, 18.7, 392, 50.8, 49.2, 6.1, 13.5,24.7 +4.42,4.42,a-reso-i1,2022-23,Beverly - Beverly High,00300505, 604, 17.9," 1,278", 49.8, 49.8, 4.2, 17.8,32.9 +3.6399999999999997,3.64,a-reso-i1,2022-23,Beverly - Beverly Middle School,00300305, 587, 21.8," 1,386", 48.6, 51.1, 3.2, 21.4,34.4 +4.84,4.84,a-reso-i1,2022-23,Beverly - Centerville Elementary,00300010, 82, 15.8, 327, 45.6, 54.4, 7.0, 23.9,40.7 +4.7,4.7,a-reso-i1,2022-23,Beverly - Cove Elementary,00300015, 103, 16.5, 426, 47.4, 52.6, 7.3, 25.8,36.9 +4.76,4.76,a-reso-i1,2022-23,Beverly - Hannah Elementary,00300033, 80, 16.2, 323, 49.9, 50.2, 5.0, 18.0,28.5 +5.7,5,a-reso-i1,2022-23,Beverly - McKeown School,00300002, 14, 11.5, 161, 34.8, 65.2, 3.7, 46.6,36 +5.12,5,a-reso-i1,2022-23,Beverly - North Beverly Elementary,00300040, 96, 14.4, 346, 41.6, 58.4, 9.3, 21.7,31.2 +4.14,4.14,a-reso-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 716, 19.3," 1,813", 48.5, 51.4, 2.4, 21.0,26.5 +3.9200000000000004,3.92,a-reso-i1,2022-23,Billerica - Frederick J Dutile,00310007, 123, 20.4, 288, 49.0, 51.0, 0.4, 23.3,23.3 +4.18,4.18,a-reso-i1,2022-23,Billerica - Hajjar Elementary,00310026, 176, 19.1, 381, 53.8, 45.9, 12.3, 17.3,37.5 +4.32,4.32,a-reso-i1,2022-23,Billerica - John F Kennedy,00310012, 150, 18.4, 313, 53.7, 46.3, 0.3, 23.0,19.5 +4.82,4.82,a-reso-i1,2022-23,Billerica - Locke Middle,00310310, 344, 15.9, 553, 48.1, 51.9, 0.0, 23.9,21.3 +4.16,4.16,a-reso-i1,2022-23,Billerica - Marshall Middle School,00310305, 316, 19.2, 614, 52.0, 48.1, 2.1, 25.4,31.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Billerica - Parker,00310015, 185, 20.1, 423, 53.7, 46.3, 1.7, 26.0,29.3 +3.9,3.9,a-reso-i1,2022-23,Billerica - Thomas Ditson,00310005, 240, 20.5, 557, 50.3, 49.7, 3.8, 19.2,25 +4.62,4.62,a-reso-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 660, 16.9," 1,221", 44.5, 54.8, 0.5, 11.8,15.6 +3.38,3.38,a-reso-i1,2022-23,Blackstone-Millville - A F Maloney,06220015, 104, 23.1, 253, 47.8, 52.2, 0.8, 18.6,37.9 +5.3,5,a-reso-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 245, 13.5, 415, 48.0, 51.1, 1.2, 14.7,29.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 263, 16.4, 356, 44.7, 54.8, 2.0, 17.4,36.2 +3.96,3.96,a-reso-i1,2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 49, 20.2, 110, 53.6, 46.4, 7.3, 14.6,46.4 +4.5,4.5,a-reso-i1,2022-23,Blackstone-Millville - Millville Elementary,06220010, 151, 17.5, 388, 49.5, 50.5, 4.9, 20.4,33.5 +4.92,4.92,a-reso-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 435, 15.4, 901, 48.0, 52.1, 1.6, 26.3,39.5 +5.54,5,a-reso-i1,2022-23,Boston - Adams Elementary School,00350302, 177, 12.3, 253, 48.6, 51.4, 55.3, 24.9,80.2 +6.720000000000001,5,a-reso-i1,2022-23,Boston - Alighieri Dante Montessori School,00350066, 142, 6.4, 101, 46.5, 53.5, 27.7, 17.8,38.6 +4.96,4.96,a-reso-i1,2022-23,Boston - Another Course To College,00350541, 109, 15.2, 255, 43.1, 56.5, 17.7, 32.9,77.3 +5.16,5,a-reso-i1,2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 89, 14.2, 172, 49.4, 50.6, 43.6, 21.5,55.8 +4.68,4.68,a-reso-i1,2022-23,Boston - Bates Elementary School,00350278, 149, 16.6, 282, 40.4, 59.6, 23.8, 33.0,50.7 +4.88,4.88,a-reso-i1,2022-23,Boston - Beethoven Elementary School,00350021, 149, 15.6, 280, 46.1, 53.9, 41.8, 19.3,59.6 +5.24,5,a-reso-i1,2022-23,Boston - Blackstone Elementary School,00350390, 459, 13.8, 612, 47.7, 52.3, 49.2, 27.5,89.2 +5.58,5,a-reso-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 87, 12.1, 220, 43.2, 56.8, 70.5, 12.3,82.7 +5.12,5,a-reso-i1,2022-23,Boston - Boston Arts Academy,00350546, 375, 14.4, 486, 68.9, 29.2, 6.2, 22.4,63.6 +5.8,5,a-reso-i1,2022-23,Boston - Boston Collaborative High School,00350755, 151, 11.0, 290, 47.9, 51.7, 25.9, 26.2,85.9 +5.26,5,a-reso-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 338, 13.7, 645, 50.5, 48.8, 36.1, 29.5,83.9 +5.0600000000000005,5,a-reso-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 210, 14.7, 535, 38.7, 61.3, 92.0, 5.8,87.3 +3.6,3.6,a-reso-i1,2022-23,Boston - Boston Latin Academy,00350545, 531, 22.0," 1,710", 57.1, 42.6, 1.4, 4.4,44.3 +3.38,3.38,a-reso-i1,2022-23,Boston - Boston Latin School,00350560, 874, 23.1," 2,418", 52.6, 46.9, 0.8, 3.7,27.5 +4.16,4.16,a-reso-i1,2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 134, 19.2, 316, 47.8, 52.2, 17.7, 25.3,54.8 +4.46,4.46,a-reso-i1,2022-23,Boston - Bradley Elementary School,00350215, 134, 17.7, 292, 52.1, 48.0, 26.7, 23.0,62.3 +5.2,5,a-reso-i1,2022-23,Boston - Brighton High School,00350505, 338, 14.0, 710, 45.5, 54.5, 58.7, 20.9,81 +5.7,5,a-reso-i1,2022-23,Boston - Burke High School,00350525, 250, 11.5, 418, 45.2, 54.8, 25.1, 25.4,84.5 +1.6,1.6,a-reso-i1,2022-23,Boston - Carter School,00350036, 2, 32.0, 32, 46.9, 53.1, 37.5, 100.0,78.1 +5.36,5,a-reso-i1,2022-23,Boston - Channing Elementary School,00350360, 140, 13.2, 189, 40.7, 59.3, 35.5, 29.6,74.1 +5.34,5,a-reso-i1,2022-23,Boston - Charlestown High School,00350515, 447, 13.3, 840, 43.6, 56.3, 43.8, 29.3,81.7 +6.12,5,a-reso-i1,2022-23,Boston - Chittick Elementary School,00350154, 254, 9.4, 232, 44.8, 55.2, 31.5, 42.2,81.5 +5.38,5,a-reso-i1,2022-23,Boston - Clap Elementary School,00350298, 69, 13.1, 107, 44.9, 55.1, 24.3, 30.8,80.4 +6.2,5,a-reso-i1,2022-23,Boston - Community Academy,00350518, 38, 9.0, 66, 39.4, 59.1, 10.6, 51.5,87.9 +5.32,5,a-reso-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 150, 13.4, 342, 48.3, 51.8, 24.6, 42.4,86.3 +5.0200000000000005,5,a-reso-i1,2022-23,Boston - Condon K-8 School,00350146, 448, 14.9, 664, 44.1, 55.9, 39.8, 29.7,84.6 +5.74,5,a-reso-i1,2022-23,Boston - Conley Elementary School,00350122, 116, 11.3, 164, 45.1, 54.9, 29.9, 48.8,61 +4.88,4.88,a-reso-i1,2022-23,Boston - Curley K-8 School,00350020, 710, 15.6, 957, 43.4, 56.6, 26.4, 33.9,54 +4.4399999999999995,4.44,a-reso-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 244, 17.8, 591, 46.7, 53.1, 31.5, 21.7,81.7 +4.4799999999999995,4.48,a-reso-i1,2022-23,Boston - Dever Elementary School,00350268, 217, 17.6, 406, 42.6, 57.4, 51.5, 17.7,89.9 +4.62,4.62,a-reso-i1,2022-23,Boston - East Boston Early Education Center,00350009, 88, 16.9, 187, 47.1, 52.9, 54.6, 15.5,66.3 +4.82,4.82,a-reso-i1,2022-23,Boston - East Boston High School,00350530, 480, 15.9," 1,334", 43.6, 56.3, 42.4, 21.5,76.3 +5.26,5,a-reso-i1,2022-23,Boston - Edison K-8 School,00350375, 466, 13.7, 629, 45.5, 54.5, 52.9, 20.4,81.7 +3.9799999999999995,3.98,a-reso-i1,2022-23,Boston - Eliot K-8 Innovation School,00350096, 440, 20.1, 820, 48.1, 52.0, 6.7, 20.2,26.1 +5.34,5,a-reso-i1,2022-23,Boston - Ellis Elementary School,00350072, 279, 13.3, 352, 48.9, 51.1, 50.0, 15.6,91.2 +4.779999999999999,4.78,a-reso-i1,2022-23,Boston - Ellison-Parks Early Education School,00350008, 94, 16.1, 195, 50.3, 49.7, 55.4, 33.9,80 +4.88,4.88,a-reso-i1,2022-23,Boston - English High School,00350535, 464, 15.6, 695, 45.0, 54.8, 32.1, 25.5,82 +4.46,4.46,a-reso-i1,2022-23,Boston - Everett Elementary School,00350088, 145, 17.7, 286, 51.1, 49.0, 20.3, 22.0,76.6 +5.32,5,a-reso-i1,2022-23,Boston - Excel High School,00350522, 181, 13.4, 408, 40.4, 58.8, 22.3, 29.2,83.3 +5.14,5,a-reso-i1,2022-23,Boston - Fenway High School,00350540, 168, 14.3, 372, 52.7, 47.0, 21.2, 22.9,74.7 +5.2,5,a-reso-i1,2022-23,Boston - Frederick Pilot Middle School,00350383, 249, 14.0, 377, 47.8, 52.3, 50.9, 26.8,90.2 +4.36,4.36,a-reso-i1,2022-23,Boston - Gardner Pilot Academy,00350326, 150, 18.2, 381, 47.5, 52.0, 35.4, 23.1,78.2 +6.16,5,a-reso-i1,2022-23,Boston - Greater Egleston High School,00350543, 83, 9.2, 115, 53.0, 47.0, 13.9, 26.1,92.2 +4.86,4.86,a-reso-i1,2022-23,Boston - Greenwood Sarah K-8 School,00350308, 255, 15.7, 397, 50.4, 49.6, 60.7, 20.9,90.2 +4.76,4.76,a-reso-i1,2022-23,Boston - Grew Elementary School,00350135, 119, 16.2, 210, 40.5, 59.5, 14.3, 14.8,73.8 +4.9799999999999995,4.98,a-reso-i1,2022-23,Boston - Guild Elementary School,00350062, 147, 15.1, 259, 47.9, 52.1, 65.6, 27.8,77.6 +4.279999999999999,4.28,a-reso-i1,2022-23,Boston - Hale Elementary School,00350243, 94, 18.6, 176, 50.6, 49.4, 12.5, 16.5,59.1 +3.94,3.94,a-reso-i1,2022-23,Boston - Haley Pilot School,00350077, 207, 20.3, 386, 48.2, 51.8, 19.2, 38.9,62.2 +5.14,5,a-reso-i1,2022-23,Boston - Harvard-Kent Elementary School,00350200, 216, 14.3, 369, 45.0, 55.0, 27.1, 31.7,64.8 +4.42,4.42,a-reso-i1,2022-23,Boston - Haynes Early Education Center,00350010, 128, 17.9, 218, 50.9, 49.1, 49.1, 23.9,80.7 +3.8600000000000003,3.86,a-reso-i1,2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 72, 20.7, 207, 46.9, 53.1, 25.1, 28.5,65.2 +4.26,4.26,a-reso-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 330, 18.7, 712, 47.1, 52.7, 14.8, 35.0,76.3 +4.96,4.96,a-reso-i1,2022-23,Boston - Hennigan K-8 School,00350153, 471, 15.2, 567, 48.2, 51.9, 48.7, 22.1,87.5 +3.6399999999999997,3.64,a-reso-i1,2022-23,Boston - Hernandez K-8 School,00350691, 222, 21.8, 427, 52.7, 47.3, 46.8, 14.8,67.9 +5.54,5,a-reso-i1,2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 86, 12.3, 130, 45.4, 54.6, 62.3, 46.9,90 +5.720000000000001,5,a-reso-i1,2022-23,Boston - Higginson-Lewis K-8 School,00350377, 144, 11.4, 192, 42.2, 57.8, 28.7, 40.1,93.2 +5.04,5,a-reso-i1,2022-23,Boston - Holmes Elementary School,00350138, 189, 14.8, 294, 40.5, 59.5, 21.4, 35.7,91.8 +7.140000000000001,5,a-reso-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 177, 4.3, 73, 30.1, 69.9, 60.3, 98.6,80.8 +3.94,3.94,a-reso-i1,2022-23,Boston - Hurley K-8 School,00350182, 158, 20.3, 363, 53.7, 46.0, 36.1, 18.2,63.4 +4.6,4.6,a-reso-i1,2022-23,Boston - Kennedy John F Elementary School,00350166, 210, 17.0, 402, 50.0, 50.0, 34.6, 19.4,70.2 +4.5600000000000005,4.56,a-reso-i1,2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 151, 17.2, 274, 45.3, 54.7, 65.0, 20.8,85.8 +4.54,4.54,a-reso-i1,2022-23,Boston - Kenny Elementary School,00350328, 181, 17.3, 347, 44.7, 55.0, 22.8, 30.3,59.7 +5.12,5,a-reso-i1,2022-23,Boston - Kilmer K-8 School,00350190, 236, 14.4, 399, 44.9, 54.9, 13.8, 32.3,44.4 +5.38,5,a-reso-i1,2022-23,Boston - King Elementary School,00350376, 303, 13.1, 468, 44.2, 55.8, 37.2, 41.2,91.5 +4.86,4.86,a-reso-i1,2022-23,Boston - Lee Academy,00350001, 89, 15.7, 205, 44.9, 55.1, 33.7, 33.7,77.1 +5.46,5,a-reso-i1,2022-23,Boston - Lee K-8 School,00350183, 398, 12.7, 563, 41.2, 58.8, 26.1, 46.2,85.8 +4.84,4.84,a-reso-i1,2022-23,Boston - Lyndon K-8 School,00350262, 337, 15.8, 578, 49.0, 51.0, 8.3, 16.3,29.9 +5.5,5,a-reso-i1,2022-23,Boston - Lyon High School,00350655, 68, 12.5, 114, 40.4, 58.8, 13.2, 41.2,72.8 +5.4799999999999995,5,a-reso-i1,2022-23,Boston - Lyon K-8 School,00350004, 101, 12.6, 139, 46.8, 53.2, 23.0, 33.8,69.8 +4.86,4.86,a-reso-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 488, 15.7," 1,122", 40.1, 59.7, 30.7, 36.8,83.8 +3.9799999999999995,3.98,a-reso-i1,2022-23,Boston - Manning Elementary School,00350184, 88, 20.1, 165, 52.7, 47.3, 5.5, 30.3,22.4 +4.24,4.24,a-reso-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 130, 18.8, 301, 55.2, 44.9, 48.8, 11.6,89.4 +4.62,4.62,a-reso-i1,2022-23,Boston - Mario Umana Academy,00350656, 411, 16.9, 621, 46.4, 53.6, 71.0, 16.4,83.9 +5.18,5,a-reso-i1,2022-23,Boston - Mason Elementary School,00350304, 123, 14.1, 196, 46.9, 52.6, 29.1, 32.1,82.7 +4.64,4.64,a-reso-i1,2022-23,Boston - Mather Elementary School,00350227, 314, 16.8, 492, 50.8, 49.2, 34.6, 18.3,74.6 +5.92,5,a-reso-i1,2022-23,Boston - Mattahunt Elementary School,00350016, 543, 10.4, 489, 38.2, 61.8, 37.6, 34.2,81.6 +4.18,4.18,a-reso-i1,2022-23,Boston - McKay K-8 School,00350080, 324, 19.1, 681, 49.2, 50.8, 45.1, 21.6,77.2 +6.840000000000001,5,a-reso-i1,2022-23,Boston - McKinley Schools,00350363, 289, 5.8, 167, 26.4, 73.7, 20.4, 100.0,91.6 +4.16,4.16,a-reso-i1,2022-23,Boston - Mendell Elementary School,00350100, 143, 19.2, 321, 48.0, 52.0, 17.8, 24.3,57.3 +4.76,4.76,a-reso-i1,2022-23,Boston - Mildred Avenue K-8 School,00350378, 331, 16.2, 669, 46.8, 53.2, 28.3, 22.9,84.6 +4.14,4.14,a-reso-i1,2022-23,Boston - Mozart Elementary School,00350237, 79, 19.3, 177, 40.7, 59.3, 14.7, 27.1,36.7 +4.3,4.3,a-reso-i1,2022-23,Boston - Murphy K-8 School,00350240, 442, 18.5, 872, 47.1, 52.8, 29.4, 21.2,68 +4.46,4.46,a-reso-i1,2022-23,Boston - New Mission High School,00350542, 270, 17.7, 621, 49.1, 50.7, 21.1, 18.8,71.3 +3.4200000000000004,3.42,a-reso-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 442, 22.9," 1,547", 51.8, 47.8, 1.7, 4.5,59.3 +4.1,4.1,a-reso-i1,2022-23,Boston - O'Donnell Elementary School,00350141, 134, 19.5, 297, 52.9, 47.1, 65.7, 11.5,86.2 +4.8,4.8,a-reso-i1,2022-23,Boston - Ohrenberger School,00350258, 344, 16.0, 487, 46.8, 53.2, 33.7, 22.2,68.8 +4.86,4.86,a-reso-i1,2022-23,Boston - Orchard Gardens K-8 School,00350257, 408, 15.7, 738, 47.8, 52.2, 50.8, 24.0,86.5 +4.04,4.04,a-reso-i1,2022-23,Boston - Otis Elementary School,00350156, 222, 19.8, 415, 50.1, 49.9, 52.5, 11.1,74 +5.24,5,a-reso-i1,2022-23,Boston - Perkins Elementary School,00350231, 93, 13.8, 158, 50.0, 50.0, 35.4, 37.3,91.1 +5.62,5,a-reso-i1,2022-23,Boston - Perry Elementary School,00350255, 134, 11.9, 186, 46.8, 53.2, 11.3, 31.7,35 +5.0600000000000005,5,a-reso-i1,2022-23,Boston - Philbrick Elementary School,00350172, 79, 14.7, 119, 52.1, 47.9, 16.8, 16.0,64.7 +4.66,4.66,a-reso-i1,2022-23,Boston - Quincy Elementary School,00350286, 544, 16.7, 759, 52.2, 47.8, 37.0, 16.7,57.7 +3.6,3.6,a-reso-i1,2022-23,Boston - Quincy Upper School,00350565, 210, 22.0, 547, 48.1, 51.7, 17.6, 19.4,70.6 +4.54,4.54,a-reso-i1,2022-23,Boston - Roosevelt K-8 School,00350116, 159, 17.3, 362, 47.0, 53.0, 16.6, 29.6,66.9 +4.18,4.18,a-reso-i1,2022-23,Boston - Russell Elementary School,00350366, 168, 19.1, 384, 49.0, 51.0, 49.0, 9.1,80.2 +4.9799999999999995,4.98,a-reso-i1,2022-23,Boston - Shaw Elementary School,00350014, 99, 15.1, 182, 51.1, 48.9, 29.1, 15.9,89.6 +4.58,4.58,a-reso-i1,2022-23,Boston - Snowden International High School,00350690, 182, 17.1, 470, 49.6, 50.4, 18.3, 23.0,79.4 +4.86,4.86,a-reso-i1,2022-23,Boston - Sumner Elementary School,00350052, 370, 15.7, 553, 48.1, 51.9, 37.4, 21.7,63.8 +5.6,5,a-reso-i1,2022-23,Boston - Taylor Elementary School,00350054, 316, 12.0, 389, 46.0, 54.0, 50.9, 18.5,90.5 +5.0600000000000005,5,a-reso-i1,2022-23,Boston - TechBoston Academy,00350657, 444, 14.7, 926, 44.8, 55.2, 23.8, 24.1,84 +4.36,4.36,a-reso-i1,2022-23,Boston - Tobin K-8 School,00350229, 243, 18.2, 423, 48.0, 52.0, 31.0, 19.2,88.9 +5.34,5,a-reso-i1,2022-23,Boston - Trotter Elementary School,00350370, 228, 13.3, 319, 46.7, 53.3, 20.4, 31.4,89 +5.9399999999999995,5,a-reso-i1,2022-23,Boston - Tynan Elementary School,00350181, 187, 10.3, 201, 38.8, 61.2, 29.9, 53.2,83.1 +4.14,4.14,a-reso-i1,2022-23,Boston - UP Academy Holland,00350167, 247, 19.3, 621, 50.4, 49.6, 32.7, 18.2,89.7 +4.279999999999999,4.28,a-reso-i1,2022-23,Boston - Warren-Prescott K-8 School,00350346, 249, 18.6, 527, 45.9, 54.1, 13.1, 22.8,41.2 +5.04,5,a-reso-i1,2022-23,Boston - West Zone Early Learning Center,00350006, 59, 14.8, 106, 46.2, 53.8, 56.6, 28.3,71.7 +3.88,3.88,a-reso-i1,2022-23,Boston - Winship Elementary School,00350374, 149, 20.6, 339, 51.9, 48.1, 27.4, 12.7,60.5 +4.62,4.62,a-reso-i1,2022-23,Boston - Winthrop Elementary School,00350180, 127, 16.9, 234, 54.3, 45.7, 26.5, 15.0,91 +4.9399999999999995,4.94,a-reso-i1,2022-23,Boston - Young Achievers K-8 School,00350380, 354, 15.3, 527, 44.6, 55.4, 36.1, 24.9,89 +3.9799999999999995,3.98,a-reso-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 315, 20.1, 713, 47.8, 51.9, 5.5, 18.8,44 +5.46,5,a-reso-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 470, 12.7, 400, 53.0, 46.3, 14.0, 43.3,75.8 +4.76,4.76,a-reso-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 227, 16.2, 473, 50.3, 49.7, 12.7, 31.5,77.4 +4.4,4.4,a-reso-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 274, 18.0, 693, 49.8, 50.2, 18.0, 20.4,67.5 +3.8,3.8,a-reso-i1,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 286, 21.0, 948, 53.4, 46.6, 13.9, 12.6,69.4 +5.26,5,a-reso-i1,2022-23,Bourne - Bourne High School,00360505, 224, 13.7, 355, 53.5, 46.5, 1.4, 17.8,31.3 +4.2,4.2,a-reso-i1,2022-23,Bourne - Bourne Intermediate School,00360030, 260, 19.0, 381, 52.0, 48.0, 1.8, 22.6,40.4 +4.82,4.82,a-reso-i1,2022-23,Bourne - Bourne Middle School,00360325, 325, 15.9, 444, 50.2, 49.8, 0.9, 20.1,37.6 +4.58,4.58,a-reso-i1,2022-23,Bourne - Bournedale Elementary School,00360005, 249, 17.1, 416, 46.4, 53.6, 2.6, 25.2,35.6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Boxford - Harry Lee Cole,00380005, 126, 15.3, 354, 47.5, 52.5, 1.4, 19.2,7.6 +4.58,4.58,a-reso-i1,2022-23,Boxford - Spofford Pond,00380013, 187, 17.1, 385, 47.8, 52.2, 0.8, 23.6,10.9 +5.36,5,a-reso-i1,2022-23,Braintree - Archie T Morrison,00400033, 211, 13.2, 302, 54.3, 45.7, 14.9, 25.2,37.4 +4.74,4.74,a-reso-i1,2022-23,Braintree - Braintree High,00400505, 847, 16.3," 1,755", 48.8, 50.9, 5.0, 25.0,27.1 +4.58,4.58,a-reso-i1,2022-23,Braintree - Donald Ross,00400050, 111, 17.1, 205, 57.1, 42.9, 19.5, 20.5,41 +4.6,4.6,a-reso-i1,2022-23,Braintree - East Middle School,00400305, 523, 17.0, 989, 46.8, 53.1, 5.4, 24.7,34.3 +4.0600000000000005,4.06,a-reso-i1,2022-23,Braintree - Highlands,00400015, 190, 19.7, 412, 47.3, 52.7, 8.0, 18.0,20.2 +5.34,5,a-reso-i1,2022-23,Braintree - Hollis,00400005, 231, 13.3, 332, 46.4, 53.3, 15.4, 25.3,30.7 +4.2,4.2,a-reso-i1,2022-23,Braintree - Liberty,00400025, 173, 19.0, 360, 44.4, 55.6, 9.4, 15.8,16.4 +4.36,4.36,a-reso-i1,2022-23,Braintree - Mary E Flaherty School,00400020, 134, 18.2, 296, 44.9, 55.1, 12.2, 26.4,25 +4.5200000000000005,4.52,a-reso-i1,2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 100, 17.4, 201, 44.8, 55.2, 14.4, 14.4,30.4 +4.86,4.86,a-reso-i1,2022-23,Braintree - South Middle School,00400310, 301, 15.7, 520, 51.2, 48.7, 2.5, 17.3,21.5 +4.3,4.3,a-reso-i1,2022-23,Brewster - Eddy Elementary,00410010, 123, 18.5, 202, 49.0, 51.0, 3.0, 27.2,43.1 +4.74,4.74,a-reso-i1,2022-23,Brewster - Stony Brook Elementary,00410005, 143, 16.3, 234, 54.7, 45.3, 4.7, 22.2,36.3 +4.5200000000000005,4.52,a-reso-i1,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 103, 17.4, 334, 53.0, 47.0, 25.8, 22.2,74.6 +3.6799999999999997,3.68,a-reso-i1,2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 285, 21.6, 765, 48.6, 51.4, 2.6, 18.7,27.8 +4.7,4.7,a-reso-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 576, 16.5," 1,388", 48.4, 51.5, 2.0, 14.8,27 +3.7,3.7,a-reso-i1,2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 166, 21.5, 498, 47.0, 53.0, 2.6, 18.1,25.7 +3.16,3.16,a-reso-i1,2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 104, 24.2, 357, 47.9, 52.1, 5.6, 14.9,28.3 +3.9,3.9,a-reso-i1,2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 290, 20.5," 1,004", 48.1, 51.9, 3.7, 27.4,26.4 +3.1799999999999997,3.18,a-reso-i1,2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 247, 24.1, 732, 49.9, 50.1, 0.8, 18.0,25.7 +7.340000000000001,5,a-reso-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 18, 3.3, 14, 64.3, 35.7, 0.0, 92.9,57.1 +3.4,3.4,a-reso-i1,2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 253, 23.0, 803, 47.1, 52.9, 4.7, 21.5,28.6 +4.38,4.38,a-reso-i1,2022-23,Brimfield - Brimfield Elementary,00430005, 81, 18.1, 291, 51.2, 48.8, 1.0, 14.1,30.2 +4.36,4.36,a-reso-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 300, 18.2, 550, 68.7, 31.1, 0.2, 15.3,30.7 +4.5200000000000005,4.52,a-reso-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 975, 17.4," 1,309", 43.0, 56.8, 0.5, 14.8,30.9 +4.4399999999999995,4.44,a-reso-i1,2022-23,Brockton - Ashfield Middle School,00440421, 221, 17.8, 481, 47.4, 52.6, 25.4, 21.2,63.8 +5.9,5,a-reso-i1,2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 33, 10.5, 337, 40.7, 59.4, 15.1, 63.8,75.7 +6.0200000000000005,5,a-reso-i1,2022-23,Brockton - Brockton Champion High School,00440515, 150, 9.9, 200, 48.0, 51.5, 17.0, 30.0,80.5 +4.66,4.66,a-reso-i1,2022-23,Brockton - Brockton High,00440505," 1,880", 16.7," 3,715", 44.9, 55.0, 28.4, 15.5,69.6 +5.74,5,a-reso-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 167, 11.3, 219, 51.1, 48.4, 11.9, 24.2,79 +4.779999999999999,4.78,a-reso-i1,2022-23,Brockton - Brookfield,00440010, 235, 16.1, 444, 47.5, 52.5, 37.4, 22.3,71.6 +4.82,4.82,a-reso-i1,2022-23,Brockton - Downey,00440110, 282, 15.9, 583, 43.7, 56.3, 20.4, 31.4,81 +4.92,4.92,a-reso-i1,2022-23,Brockton - Dr W Arnone Community School,00440001, 407, 15.4, 788, 47.7, 52.3, 34.0, 24.8,83.8 +4.0,4.0,a-reso-i1,2022-23,Brockton - East Middle School,00440405, 255, 20.0, 493, 45.0, 55.0, 41.2, 23.7,78.7 +3.9,3.9,a-reso-i1,2022-23,Brockton - Edgar B Davis,00440023, 525, 20.5, 948, 51.6, 48.4, 29.3, 10.0,78.4 +5.6,5,a-reso-i1,2022-23,Brockton - Edison Academy,00440520, 110, 12.0, 311, 44.1, 56.0, 55.6, 8.4,76.5 +3.0200000000000005,3.02,a-reso-i1,2022-23,Brockton - Gilmore Elementary School,00440055, 166, 24.9, 413, 47.9, 52.1, 47.9, 10.9,85.2 +4.08,4.08,a-reso-i1,2022-23,Brockton - Hancock,00440045, 267, 19.6, 648, 53.7, 46.3, 28.6, 13.1,66.5 +6.8,5,a-reso-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400, 52, 6.0, 37, 32.4, 64.9, 18.9, 100.0,91.9 +4.36,4.36,a-reso-i1,2022-23,Brockton - John F Kennedy,00440017, 258, 18.2, 552, 51.8, 48.2, 35.0, 15.4,67.8 +4.38,4.38,a-reso-i1,2022-23,Brockton - Louis F Angelo Elementary,00440065, 390, 18.1, 829, 44.5, 55.5, 35.8, 21.2,77.3 +4.26,4.26,a-reso-i1,2022-23,Brockton - Manthala George Jr. School,00440003, 346, 18.7, 836, 50.4, 49.6, 36.1, 13.6,72.5 +5.0200000000000005,5,a-reso-i1,2022-23,Brockton - Mary E. Baker School,00440002, 404, 14.9, 700, 50.0, 50.0, 28.4, 22.3,68.7 +4.2,4.2,a-reso-i1,2022-23,Brockton - North Middle School,00440410, 210, 19.0, 463, 49.5, 50.5, 14.9, 12.5,81.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Brockton - Oscar F Raymond,00440078, 363, 18.9, 806, 47.8, 52.2, 40.0, 20.8,85.5 +6.04,5,a-reso-i1,2022-23,Brockton - PROMISE College and Career Academy,00440525, 67, 9.8, 39, 43.6, 56.4, 12.8, 10.3,59 +3.9799999999999995,3.98,a-reso-i1,2022-23,Brockton - Plouffe Middle School,00440422, 359, 20.1, 706, 49.9, 50.1, 30.6, 17.9,75.1 +4.9,4.9,a-reso-i1,2022-23,Brockton - South Middle School,00440415, 308, 15.5, 549, 45.9, 54.1, 32.6, 18.9,78.3 +4.5200000000000005,4.52,a-reso-i1,2022-23,Brockton - West Middle School,00440420, 363, 17.4, 573, 48.0, 52.0, 9.4, 20.8,64.1 +4.16,4.16,a-reso-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 907, 19.2," 2,215", 51.5, 48.2, 8.4, 14.2,62.5 +4.16,4.16,a-reso-i1,2022-23,Brookfield - Brookfield Elementary,00450005, 77, 19.2, 292, 48.0, 52.1, 1.0, 14.7,40.1 +5.6,5,a-reso-i1,2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 5, 12.0, 60, 35.0, 65.0, 11.7, 35.0,15 +5.46,5,a-reso-i1,2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 6, 12.7, 76, 43.4, 56.6, 11.8, 26.3,10.5 +5.24,5,a-reso-i1,2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 4, 13.8, 55, 41.8, 58.2, 12.7, 32.7,12.7 +5.1,5,a-reso-i1,2022-23,Brookline - Brookline High,00460505," 1,157", 14.5," 2,079", 49.7, 49.4, 2.8, 18.3,15.2 +4.46,4.46,a-reso-i1,2022-23,Brookline - Edith C Baker,00460005, 404, 17.7, 677, 48.9, 51.1, 18.8, 17.3,14.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Brookline - Florida Ruffin Ridley School,00460015, 465, 18.9, 852, 51.6, 48.4, 17.3, 16.0,17.7 +4.58,4.58,a-reso-i1,2022-23,Brookline - Heath,00460025, 281, 17.1, 453, 48.8, 51.2, 8.0, 16.8,12.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Brookline - John D Runkle,00460045, 290, 17.6, 504, 45.8, 54.0, 11.5, 23.6,10.9 +4.5,4.5,a-reso-i1,2022-23,Brookline - Lawrence,00460030, 380, 17.5, 618, 52.1, 47.9, 21.8, 17.0,12.6 +4.58,4.58,a-reso-i1,2022-23,Brookline - Michael Driscoll,00460020, 287, 17.1, 472, 46.2, 53.8, 11.0, 14.8,12.3 +4.34,4.34,a-reso-i1,2022-23,Brookline - Pierce,00460040, 400, 18.3, 692, 51.3, 48.0, 13.9, 14.7,12.4 +5.68,5,a-reso-i1,2022-23,Brookline - The Lynch Center,00460060, 5, 11.6, 58, 39.7, 60.3, 12.1, 41.4,29.3 +4.86,4.86,a-reso-i1,2022-23,Brookline - William H Lincoln,00460035, 322, 15.7, 478, 51.1, 49.0, 18.4, 25.5,19.5 +5.4399999999999995,5,a-reso-i1,2022-23,Burlington - Burlington High,00480505, 562, 12.8," 1,010", 47.1, 52.6, 9.0, 11.5,18.8 +4.66,4.66,a-reso-i1,2022-23,Burlington - Fox Hill,00480007, 205, 16.7, 433, 52.0, 48.0, 7.6, 14.3,18.7 +4.96,4.96,a-reso-i1,2022-23,Burlington - Francis Wyman Elementary,00480035, 259, 15.2, 499, 49.7, 50.3, 7.6, 16.2,21 +4.5,4.5,a-reso-i1,2022-23,Burlington - Marshall Simonds Middle,00480303, 557, 17.5, 840, 50.1, 49.4, 4.6, 16.1,21.1 +4.66,4.66,a-reso-i1,2022-23,Burlington - Memorial,00480015, 190, 16.7, 399, 49.1, 50.9, 11.0, 14.3,24.3 +4.84,4.84,a-reso-i1,2022-23,Burlington - Pine Glen Elementary,00480020, 167, 15.8, 332, 47.3, 52.7, 15.1, 19.3,16 +4.26,4.26,a-reso-i1,2022-23,Cambridge - Amigos School,00490006, 194, 18.7, 404, 49.5, 50.3, 8.2, 12.1,26 +5.1,5,a-reso-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506," 1,150", 14.5," 1,910", 50.9, 48.5, 5.0, 19.6,37.7 +4.88,4.88,a-reso-i1,2022-23,Cambridge - Cambridge Street Upper School,00490305, 231, 15.6, 297, 50.2, 49.5, 2.7, 29.0,45.5 +4.58,4.58,a-reso-i1,2022-23,Cambridge - Cambridgeport,00490007, 127, 17.1, 266, 50.4, 48.5, 5.6, 19.2,29.7 +5.9399999999999995,5,a-reso-i1,2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 228, 10.3, 248, 41.5, 58.5, 10.9, 36.3,66.1 +4.9399999999999995,4.94,a-reso-i1,2022-23,Cambridge - Graham and Parks,00490080, 181, 15.3, 375, 46.7, 53.3, 36.5, 21.1,29.9 +4.76,4.76,a-reso-i1,2022-23,Cambridge - Haggerty,00490020, 110, 16.2, 244, 52.9, 47.1, 13.9, 28.7,35.7 +6.5,5,a-reso-i1,2022-23,Cambridge - John M Tobin,00490065, 293, 7.5, 324, 46.9, 53.1, 4.3, 30.3,28.1 +5.84,5,a-reso-i1,2022-23,Cambridge - Kennedy-Longfellow,00490040, 163, 10.8, 205, 47.8, 52.2, 44.4, 23.4,54.6 +5.42,5,a-reso-i1,2022-23,Cambridge - King Open,00490035, 238, 12.9, 366, 48.1, 51.9, 9.3, 27.1,39.3 +4.96,4.96,a-reso-i1,2022-23,Cambridge - Maria L. Baldwin,00490005, 194, 15.2, 348, 51.2, 48.9, 6.9, 19.8,19.5 +4.88,4.88,a-reso-i1,2022-23,Cambridge - Martin Luther King Jr.,00490030, 182, 15.6, 322, 49.4, 50.6, 10.3, 18.6,20.2 +5.0600000000000005,5,a-reso-i1,2022-23,Cambridge - Morse,00490045, 157, 14.7, 308, 48.1, 52.0, 9.1, 30.5,36 +4.08,4.08,a-reso-i1,2022-23,Cambridge - Peabody,00490050, 135, 19.6, 318, 48.1, 51.9, 9.4, 27.4,31.1 +4.4399999999999995,4.44,a-reso-i1,2022-23,Cambridge - Putnam Avenue Upper School,00490310, 133, 17.8, 248, 47.2, 52.8, 3.6, 25.4,52.4 +3.62,3.62,a-reso-i1,2022-23,Cambridge - Rindge Avenue Upper School,00490315, 140, 21.9, 281, 47.7, 51.6, 2.9, 18.2,29.9 +4.74,4.74,a-reso-i1,2022-23,Cambridge - Vassal Lane Upper School,00490320, 147, 16.3, 282, 47.9, 51.8, 17.0, 25.2,39.4 +5.0,5.0,a-reso-i1,2022-23,Canton - Canton High,00500505, 534, 15.0, 907, 54.7, 45.0, 1.1, 13.5,20.8 +4.36,4.36,a-reso-i1,2022-23,Canton - Dean S Luce,00500020, 433, 18.2, 454, 47.8, 52.2, 8.4, 17.4,24.2 +4.16,4.16,a-reso-i1,2022-23,Canton - John F Kennedy,00500017, 434, 19.2, 477, 47.0, 53.0, 4.8, 13.8,15.9 +3.7600000000000002,3.76,a-reso-i1,2022-23,Canton - Lt Peter M Hansen,00500012, 435, 21.2, 537, 46.7, 53.3, 2.8, 16.2,22.7 +5.4399999999999995,5,a-reso-i1,2022-23,Canton - Rodman Early Childhood Center,00500010, 32, 12.8, 102, 42.2, 57.8, 0.0, 43.1,25.5 +4.720000000000001,4.72,a-reso-i1,2022-23,Canton - Wm H Galvin Middle,00500305, 486, 16.4, 749, 51.5, 48.5, 2.4, 16.2,23.1 +4.62,4.62,a-reso-i1,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 192, 16.9, 249, 51.4, 48.6, 0.0, 20.9,22.9 +4.8,4.8,a-reso-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 395, 16.0, 676, 38.2, 61.7, 2.1, 20.6,45 +4.58,4.58,a-reso-i1,2022-23,Carlisle - Carlisle School,00510025, 313, 17.1, 605, 49.4, 50.4, 2.2, 13.7,5.1 +4.2,4.2,a-reso-i1,2022-23,Carver - Carver Elementary School,00520015, 422, 19.0, 794, 50.5, 49.5, 2.9, 17.0,30 +5.16,5,a-reso-i1,2022-23,Carver - Carver Middle/High School,00520405, 499, 14.2, 765, 46.8, 53.1, 0.5, 21.6,33.5 +4.96,4.96,a-reso-i1,2022-23,Central Berkshire - Becket Washington School,06350005, 50, 15.2, 114, 51.8, 48.3, 0.9, 28.1,58.8 +3.96,3.96,a-reso-i1,2022-23,Central Berkshire - Craneville,06350025, 178, 20.2, 443, 48.5, 51.2, 0.9, 17.6,45.2 +4.2,4.2,a-reso-i1,2022-23,Central Berkshire - Kittredge,06350035, 56, 19.0, 163, 50.9, 49.1, 0.6, 22.1,38.7 +3.88,3.88,a-reso-i1,2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 183, 20.6, 349, 48.7, 51.3, 0.3, 20.1,43.6 +5.24,5,a-reso-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 263, 13.8, 483, 49.9, 50.1, 1.0, 12.0,35 +3.7,3.7,a-reso-i1,2022-23,Chelmsford - Byam School,00560030, 169, 21.5, 511, 48.1, 51.9, 8.0, 19.0,17.8 +3.6399999999999997,3.64,a-reso-i1,2022-23,Chelmsford - Center Elementary School,00560005, 162, 21.8, 496, 47.0, 52.8, 7.7, 16.3,16.7 +3.8600000000000003,3.86,a-reso-i1,2022-23,Chelmsford - Charles D Harrington,00560025, 162, 20.7, 477, 52.2, 47.8, 6.1, 16.8,29.4 +4.64,4.64,a-reso-i1,2022-23,Chelmsford - Chelmsford High,00560505, 689, 16.8," 1,367", 47.6, 51.9, 1.5, 14.7,14.8 +5.0,5.0,a-reso-i1,2022-23,Chelmsford - Col Moses Parker School,00560305, 448, 15.0, 731, 48.2, 51.7, 2.6, 22.4,22.2 +5.18,5,a-reso-i1,2022-23,Chelmsford - Community Education Center,00560001, 136, 14.1, 239, 33.5, 66.5, 18.0, 59.4,25.1 +4.3,4.3,a-reso-i1,2022-23,Chelmsford - McCarthy Middle School,00560310, 427, 18.5, 855, 47.8, 51.6, 2.5, 20.8,20.1 +3.4200000000000004,3.42,a-reso-i1,2022-23,Chelmsford - South Row,00560015, 148, 22.9, 480, 48.8, 51.3, 9.2, 17.5,15.6 +3.0799999999999996,3.08,a-reso-i1,2022-23,Chelsea - Chelsea High,00570505, 590, 24.6," 1,712", 45.2, 54.7, 35.8, 12.6,77.8 +6.74,5,a-reso-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 75, 6.3, 126, 30.2, 69.8, 61.9, 14.3,79.4 +5.92,5,a-reso-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 42, 10.4, 115, 63.5, 36.5, 27.0, 24.4,85.2 +2.94,2.94,a-reso-i1,2022-23,Chelsea - Clark Avenue School,00570050, 323, 25.3, 714, 48.3, 51.7, 35.0, 18.2,79.6 +3.9799999999999995,3.98,a-reso-i1,2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 125, 20.1, 503, 44.5, 55.5, 54.3, 20.1,80.1 +4.34,4.34,a-reso-i1,2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 246, 18.3, 471, 50.1, 49.9, 27.8, 26.8,79.8 +3.7,3.7,a-reso-i1,2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 115, 21.5, 495, 50.1, 49.9, 58.4, 11.1,88.5 +4.0,4.0,a-reso-i1,2022-23,Chelsea - George F. Kelly Elementary,00570035, 135, 20.0, 479, 52.6, 47.4, 52.2, 12.9,76.8 +3.0799999999999996,3.08,a-reso-i1,2022-23,Chelsea - Joseph A. Browne School,00570055, 216, 24.6, 554, 44.0, 56.0, 43.1, 15.0,82.9 +4.32,4.32,a-reso-i1,2022-23,Chelsea - Shurtleff Early Childhood,00570003, 146, 18.4, 872, 46.3, 53.7, 65.9, 23.4,81.7 +4.24,4.24,a-reso-i1,2022-23,Chelsea - William A Berkowitz Elementary,00570025, 120, 18.8, 452, 55.8, 44.3, 46.0, 21.2,83.6 +4.86,4.86,a-reso-i1,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 65, 15.7, 154, 42.9, 57.1, 0.0, 17.5,39 +4.62,4.62,a-reso-i1,2022-23,Chicopee - Barry,00610003, 107, 16.9, 363, 45.2, 54.8, 6.9, 21.8,62.5 +4.36,4.36,a-reso-i1,2022-23,Chicopee - Belcher,00610010, 53, 18.2, 232, 49.1, 50.9, 8.2, 19.4,77.2 +4.4,4.4,a-reso-i1,2022-23,Chicopee - Bellamy Middle,00610305, 434, 18.0, 823, 47.5, 52.4, 5.7, 19.2,64.5 +3.8600000000000003,3.86,a-reso-i1,2022-23,Chicopee - Bowe,00610015, 101, 20.7, 417, 50.4, 49.6, 17.3, 15.6,86.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Chicopee - Bowie,00610020, 94, 17.8, 273, 52.4, 47.6, 4.4, 15.4,46.9 +6.540000000000001,5,a-reso-i1,2022-23,Chicopee - Chicopee Academy,00610021, 84, 7.3, 97, 32.0, 67.0, 3.1, 25.8,85.6 +5.08,5,a-reso-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 629, 14.6," 1,203", 41.4, 58.3, 3.6, 12.9,51.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Chicopee - Chicopee High,00610505, 481, 16.4, 927, 52.1, 47.7, 7.0, 17.9,70.7 +4.64,4.64,a-reso-i1,2022-23,Chicopee - Dupont Middle,00610310, 436, 16.8, 703, 44.7, 55.1, 7.7, 20.9,69.6 +5.16,5,a-reso-i1,2022-23,Chicopee - Fairview Elementary,00610050, 127, 14.2, 371, 45.8, 54.2, 9.4, 23.2,81.9 +4.5600000000000005,4.56,a-reso-i1,2022-23,Chicopee - Gen John J Stefanik,00610090, 94, 17.2, 396, 48.5, 51.5, 13.1, 20.5,83.8 +5.32,5,a-reso-i1,2022-23,Chicopee - Lambert-Lavoie,00610040, 71, 13.4, 233, 42.9, 57.1, 3.0, 16.3,62.2 +4.86,4.86,a-reso-i1,2022-23,Chicopee - Litwin,00610022, 108, 15.7, 338, 49.7, 50.3, 6.8, 19.5,67.2 +5.08,5,a-reso-i1,2022-23,Chicopee - Streiber Memorial School,00610065, 79, 14.6, 228, 44.7, 55.3, 4.4, 16.2,57 +5.4799999999999995,5,a-reso-i1,2022-23,Chicopee - Szetela Early Childhood Center,00610001, 30, 12.6, 293, 43.0, 57.0, 0.0, 59.7,63.5 +4.32,4.32,a-reso-i1,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 139, 18.4, 329, 40.7, 57.5, 7.0, 24.6,50.5 +5.220000000000001,5,a-reso-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 96, 13.9, 190, 51.1, 49.0, 22.6, 18.4,77.4 +4.8,4.8,a-reso-i1,2022-23,Clarksburg - Clarksburg Elementary,00630010, 75, 16.0, 193, 46.6, 53.4, 0.0, 20.2,38.3 +3.7600000000000002,3.76,a-reso-i1,2022-23,Clinton - Clinton Elementary,00640050, 322, 21.2, 853, 47.4, 52.6, 21.2, 23.2,54.3 +4.720000000000001,4.72,a-reso-i1,2022-23,Clinton - Clinton Middle School,00640305, 283, 16.4, 557, 47.8, 52.2, 19.2, 20.7,56 +5.2,5,a-reso-i1,2022-23,Clinton - Clinton Senior High,00640505, 264, 14.0, 572, 42.5, 57.3, 14.0, 17.1,50 +4.86,4.86,a-reso-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 125, 15.7, 342, 49.7, 50.3, 10.2, 22.8,80.1 +5.2,5,a-reso-i1,2022-23,Cohasset - Cohasset High School,00650505, 311, 14.0, 433, 47.1, 52.9, 0.0, 12.9,8.6 +5.220000000000001,5,a-reso-i1,2022-23,Cohasset - Cohasset Middle School,00650305, 217, 13.9, 298, 49.3, 50.7, 0.7, 20.5,7.4 +3.9200000000000004,3.92,a-reso-i1,2022-23,Cohasset - Deer Hill,00650005, 120, 20.4, 306, 52.3, 47.7, 0.3, 16.7,7.5 +4.16,4.16,a-reso-i1,2022-23,Cohasset - Joseph Osgood,00650010, 146, 19.2, 374, 50.5, 49.5, 0.0, 16.3,4 +2.5799999999999996,2.58,a-reso-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 385, 27.1," 1,169", 51.5, 48.4, 28.8, 8.6,64.4 +5.8,5,a-reso-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 147, 11.0, 256, 57.4, 42.6, 13.7, 19.1,58.6 +3.62,3.62,a-reso-i1,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 331, 21.9," 1,208", 50.6, 49.4, 24.4, 15.0,71.5 +4.36,4.36,a-reso-i1,2022-23,Concord - Alcott,00670005, 254, 18.2, 425, 51.1, 48.9, 2.4, 17.9,14.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Concord - Concord Middle,00670305, 407, 17.6, 656, 48.5, 51.4, 2.1, 19.2,10.2 +4.38,4.38,a-reso-i1,2022-23,Concord - Thoreau,00670020, 265, 18.1, 442, 47.3, 52.7, 2.7, 24.7,7.2 +4.4399999999999995,4.44,a-reso-i1,2022-23,Concord - Willard,00670030, 277, 17.8, 456, 50.7, 49.3, 3.5, 19.5,6.4 +4.24,4.24,a-reso-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 566, 18.8," 1,316", 46.7, 52.8, 0.7, 16.6,8.2 +4.66,4.66,a-reso-i1,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 228, 16.7, 446, 52.2, 47.8, 9.4, 21.8,68.6 +5.32,5,a-reso-i1,2022-23,Conway - Conway Grammar,00680005, 108, 13.4, 136, 42.7, 57.4, 0.0, 24.3,25.7 +5.16,5,a-reso-i1,2022-23,Danvers - Danvers High,00710505, 450, 14.2, 779, 49.6, 49.6, 1.7, 19.4,24.8 +4.38,4.38,a-reso-i1,2022-23,Danvers - Great Oak,00710015, 191, 18.1, 305, 52.1, 47.9, 3.9, 15.7,29.2 +3.66,3.66,a-reso-i1,2022-23,Danvers - Highlands,00710010, 194, 21.7, 388, 45.9, 54.1, 4.6, 14.7,28.1 +4.64,4.64,a-reso-i1,2022-23,Danvers - Holten Richmond Middle School,00710305, 635, 16.8, 781, 50.8, 48.9, 1.2, 19.1,26.4 +4.36,4.36,a-reso-i1,2022-23,Danvers - Ivan G Smith,00710032, 203, 18.2, 337, 48.7, 51.3, 2.4, 22.0,17.2 +4.58,4.58,a-reso-i1,2022-23,Danvers - Riverside,00710030, 183, 17.1, 332, 43.7, 56.3, 3.6, 31.9,26.2 +4.2,4.2,a-reso-i1,2022-23,Danvers - Willis E Thorpe,00710045, 173, 19.0, 338, 52.1, 47.9, 3.0, 25.2,21.6 +5.26,5,a-reso-i1,2022-23,Dartmouth - Andrew B. Cushman School,00720005, 38, 13.7, 142, 43.7, 56.3, 2.1, 36.6,38 +4.5,4.5,a-reso-i1,2022-23,Dartmouth - Dartmouth High,00720505, 486, 17.5, 990, 52.2, 47.7, 1.1, 15.4,26 +5.0600000000000005,5,a-reso-i1,2022-23,Dartmouth - Dartmouth Middle,00720050, 651, 14.7, 805, 46.0, 54.0, 0.6, 20.1,31.6 +3.7,3.7,a-reso-i1,2022-23,Dartmouth - George H Potter,00720030, 160, 21.5, 403, 50.4, 49.6, 3.2, 17.6,33 +3.84,3.84,a-reso-i1,2022-23,Dartmouth - James M. Quinn School,00720040, 300, 20.8, 707, 46.4, 53.6, 2.1, 21.8,30.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,Dartmouth - Joseph Demello,00720015, 180, 17.4, 348, 49.4, 50.3, 1.7, 21.6,29.9 +4.5,4.5,a-reso-i1,2022-23,Dedham - Avery,00730010, 84, 17.5, 295, 45.8, 54.2, 15.9, 25.4,45.1 +5.0600000000000005,5,a-reso-i1,2022-23,Dedham - Dedham High,00730505, 388, 14.7, 728, 46.4, 52.3, 6.2, 18.3,28.3 +4.86,4.86,a-reso-i1,2022-23,Dedham - Dedham Middle School,00730305, 453, 15.7, 567, 49.7, 50.3, 5.1, 26.3,31.4 +4.9399999999999995,4.94,a-reso-i1,2022-23,Dedham - Early Childhood Center,00730005, 100, 15.3, 330, 50.0, 50.0, 7.9, 20.9,23.9 +4.32,4.32,a-reso-i1,2022-23,Dedham - Greenlodge,00730025, 77, 18.4, 281, 47.0, 52.7, 3.9, 22.8,14.2 +4.4799999999999995,4.48,a-reso-i1,2022-23,Dedham - Oakdale,00730030, 59, 17.6, 246, 54.9, 45.1, 4.1, 19.5,16.3 +4.34,4.34,a-reso-i1,2022-23,Dedham - Riverdale,00730045, 50, 18.3, 183, 49.2, 50.8, 8.2, 31.7,34.4 +4.84,4.84,a-reso-i1,2022-23,Deerfield - Deerfield Elementary,00740015, 230, 15.8, 327, 45.9, 53.8, 0.6, 23.9,19.3 +4.6,4.6,a-reso-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 366, 17.0, 479, 48.6, 51.4, 16.5, 18.8,57.2 +4.9799999999999995,4.98,a-reso-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 356, 15.1, 484, 43.2, 56.6, 11.6, 15.1,55.2 +5.36,5,a-reso-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 634, 13.2, 900, 49.6, 50.0, 11.7, 18.2,54.3 +5.24,5,a-reso-i1,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 111, 13.8, 365, 47.4, 52.6, 15.6, 25.8,61.6 +5.4,5,a-reso-i1,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 76, 13.0, 302, 46.4, 53.6, 25.5, 20.2,63.3 +4.18,4.18,a-reso-i1,2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 88, 19.1, 419, 44.9, 55.1, 13.4, 8.6,51.3 +4.42,4.42,a-reso-i1,2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 244, 17.9, 466, 48.9, 51.1, 1.5, 23.4,27 +4.58,4.58,a-reso-i1,2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 296, 17.1, 368, 47.3, 52.5, 1.1, 17.9,21.5 +4.9399999999999995,4.94,a-reso-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 348, 15.3, 683, 47.9, 51.8, 0.4, 15.8,23.4 +4.68,4.68,a-reso-i1,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 277, 16.6, 454, 50.2, 49.3, 0.7, 20.0,17.6 +4.2,4.2,a-reso-i1,2022-23,Dighton-Rehoboth - Palmer River,06500010, 332, 19.0, 594, 45.8, 54.2, 0.7, 19.2,18.4 +3.66,3.66,a-reso-i1,2022-23,Douglas - Douglas Elementary School,00770015, 120, 21.7, 346, 47.1, 52.9, 2.9, 17.9,26.3 +5.38,5,a-reso-i1,2022-23,Douglas - Douglas High School,00770505, 186, 13.1, 324, 48.2, 51.5, 0.9, 18.8,25.9 +3.72,3.72,a-reso-i1,2022-23,Douglas - Douglas Middle School,00770305, 158, 21.4, 305, 47.5, 52.5, 1.6, 23.6,22 +4.68,4.68,a-reso-i1,2022-23,Douglas - Douglas Primary School,00770005, 75, 16.6, 219, 42.0, 58.0, 1.8, 14.2,26.9 +4.2,4.2,a-reso-i1,2022-23,Dover - Chickering,00780005, 184, 19.0, 514, 46.9, 53.1, 2.3, 18.5,4.5 +4.88,4.88,a-reso-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 376, 15.6, 667, 50.1, 49.5, 0.6, 13.9,6.3 +4.6,4.6,a-reso-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 335, 17.0, 484, 47.5, 52.5, 0.4, 17.2,6.4 +3.9799999999999995,3.98,a-reso-i1,2022-23,Dracut - Brookside Elementary,00790035, 197, 20.1, 512, 48.6, 51.4, 5.7, 17.2,40.6 +4.5600000000000005,4.56,a-reso-i1,2022-23,Dracut - Dracut Senior High,00790505, 419, 17.2, 855, 50.4, 49.1, 6.3, 13.2,33.1 +3.38,3.38,a-reso-i1,2022-23,Dracut - George H. Englesby Elementary School,00790045, 194, 23.1, 550, 46.9, 53.1, 5.1, 16.7,43.8 +4.12,4.12,a-reso-i1,2022-23,Dracut - Greenmont Avenue,00790030, 98, 19.4, 236, 46.6, 53.4, 10.2, 12.7,47.5 +4.08,4.08,a-reso-i1,2022-23,Dracut - Joseph A Campbell Elementary,00790020, 232, 19.6, 602, 45.2, 54.8, 7.0, 19.9,24.8 +4.42,4.42,a-reso-i1,2022-23,Dracut - Justus C. Richardson Middle School,00790410, 752, 17.9, 876, 47.2, 52.5, 5.4, 15.5,35.2 +2.6799999999999997,2.68,a-reso-i1,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 15, 26.6, 282, 48.9, 51.1, 27.7, 17.0,76.2 +4.0600000000000005,4.06,a-reso-i1,2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 116, 19.7, 357, 48.5, 51.5, 6.4, 26.6,35.9 +4.6,4.6,a-reso-i1,2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 362, 17.0, 604, 46.9, 53.2, 1.3, 18.1,26.8 +3.46,3.46,a-reso-i1,2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 124, 22.7, 342, 49.4, 50.6, 7.3, 24.0,40.6 +3.94,3.94,a-reso-i1,2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 255, 20.3, 566, 45.6, 54.4, 2.3, 17.8,39.6 +3.46,3.46,a-reso-i1,2022-23,Dudley-Charlton Reg - Heritage School,06580030, 186, 22.7, 449, 48.6, 51.2, 6.5, 20.9,32.1 +4.42,4.42,a-reso-i1,2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 86, 17.9, 239, 47.7, 52.3, 5.9, 17.2,38.1 +4.46,4.46,a-reso-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 407, 17.7, 928, 52.1, 47.4, 1.1, 12.1,30.4 +3.96,3.96,a-reso-i1,2022-23,Duxbury - Alden School,00820004, 300, 20.2, 598, 46.7, 53.3, 0.7, 18.7,8.2 +4.0,4.0,a-reso-i1,2022-23,Duxbury - Chandler Elementary,00820006, 314, 20.0, 659, 49.8, 50.1, 1.5, 16.2,10.2 +4.5600000000000005,4.56,a-reso-i1,2022-23,Duxbury - Duxbury High,00820505, 469, 17.2, 929, 48.4, 51.5, 0.3, 12.0,7.9 +3.96,3.96,a-reso-i1,2022-23,Duxbury - Duxbury Middle,00820305, 279, 20.2, 620, 50.2, 49.8, 0.2, 15.8,7.3 +5.0600000000000005,5,a-reso-i1,2022-23,East Bridgewater - Central,00830005, 270, 14.7, 524, 47.5, 52.5, 4.2, 23.3,30 +4.2,4.2,a-reso-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 527, 19.0, 920, 45.3, 54.5, 1.5, 17.5,25.5 +3.72,3.72,a-reso-i1,2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 331, 21.4, 639, 51.3, 48.7, 3.1, 18.5,28.6 +4.66,4.66,a-reso-i1,2022-23,East Longmeadow - Birchland Park,00870305, 454, 16.7, 600, 42.5, 57.3, 1.2, 21.8,28 +4.42,4.42,a-reso-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 331, 17.9, 817, 48.4, 51.5, 0.5, 18.1,25.5 +4.64,4.64,a-reso-i1,2022-23,East Longmeadow - Mapleshade,00870010, 166, 16.8, 290, 49.3, 50.7, 4.1, 24.1,32.8 +4.279999999999999,4.28,a-reso-i1,2022-23,East Longmeadow - Meadow Brook,00870013, 192, 18.6, 575, 45.9, 54.1, 5.7, 25.2,28.7 +4.779999999999999,4.78,a-reso-i1,2022-23,East Longmeadow - Mountain View,00870015, 121, 16.1, 271, 48.7, 51.3, 0.4, 25.8,21.4 +4.92,4.92,a-reso-i1,2022-23,Eastham - Eastham Elementary,00850005, 133, 15.4, 196, 44.9, 55.1, 4.1, 16.8,46.9 +5.4399999999999995,5,a-reso-i1,2022-23,Easthampton - Easthampton High,00860505, 188, 12.8, 375, 47.5, 51.2, 1.9, 23.7,39.2 +4.36,4.36,a-reso-i1,2022-23,Easthampton - Mountain View School,00860415, 287, 18.2," 1,053", 47.7, 52.0, 3.3, 30.0,39.9 +4.220000000000001,4.22,a-reso-i1,2022-23,Easton - Blanche A. Ames Elementary School,00880015, 192, 18.9, 771, 44.6, 55.4, 7.0, 16.7,22.4 +4.32,4.32,a-reso-i1,2022-23,Easton - Easton Middle School,00880405, 502, 18.4, 832, 48.9, 51.1, 1.2, 23.4,20.3 +4.6,4.6,a-reso-i1,2022-23,Easton - Oliver Ames High,00880505, 517, 17.0," 1,092", 49.5, 50.2, 1.7, 13.7,19.6 +3.7600000000000002,3.76,a-reso-i1,2022-23,Easton - Richardson Olmsted School,00880025, 181, 21.2, 767, 48.4, 51.6, 3.5, 20.9,21.3 +4.88,4.88,a-reso-i1,2022-23,Edgartown - Edgartown Elementary,00890005, 274, 15.6, 420, 49.8, 50.2, 19.5, 23.6,49.5 +4.2,4.2,a-reso-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 185, 19.0, 378, 66.9, 33.1, 14.0, 24.3,78.8 +5.24,5,a-reso-i1,2022-23,Erving - Erving Elementary,00910030, 38, 13.8, 128, 43.8, 56.3, 0.0, 19.5,46.1 +4.0600000000000005,4.06,a-reso-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505," 1,141", 19.7," 1,675", 57.3, 42.5, 0.6, 17.9,23.2 +5.24,5,a-reso-i1,2022-23,Everett - Adams School,00930003, 64, 13.8, 221, 48.0, 52.0, 36.2, 7.2,73.8 +7.26,5,a-reso-i1,2022-23,Everett - Devens School,00930030, 115, 3.7, 57, 24.6, 73.7, 17.5, 68.4,80.7 +4.0,4.0,a-reso-i1,2022-23,Everett - Everett High,00930505, 951, 20.0," 2,303", 49.3, 50.7, 27.8, 13.9,71 +3.6799999999999997,3.68,a-reso-i1,2022-23,Everett - George Keverian School,00930028, 427, 21.6, 906, 51.9, 48.0, 39.6, 13.0,77.3 +3.88,3.88,a-reso-i1,2022-23,Everett - Lafayette School,00930038, 639, 20.6," 1,052", 49.1, 50.9, 36.9, 14.7,71.6 +3.88,3.88,a-reso-i1,2022-23,Everett - Madeline English School,00930018, 489, 20.6, 770, 48.7, 51.3, 40.5, 13.6,73.1 +3.04,3.04,a-reso-i1,2022-23,Everett - Parlin School,00930058, 522, 24.8," 1,112", 50.5, 49.5, 52.7, 8.3,80.3 +3.6799999999999997,3.68,a-reso-i1,2022-23,Everett - Sumner G. Whittier School,00930010, 305, 21.6, 650, 48.2, 51.9, 46.8, 9.7,82 +5.96,5,a-reso-i1,2022-23,Everett - Webster Extension,00930001, 80, 10.2, 200, 43.0, 57.0, 47.5, 15.5,62.5 +5.38,5,a-reso-i1,2022-23,Everett - Webster School,00930015, 240, 13.1, 332, 46.4, 53.6, 31.6, 28.0,71.4 +3.5200000000000005,3.52,a-reso-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 390, 22.4," 1,357", 49.3, 50.7, 11.9, 17.7,64.6 +5.24,5,a-reso-i1,2022-23,Fairhaven - East Fairhaven,00940010, 261, 13.8, 319, 47.3, 52.7, 2.8, 27.6,41.1 +4.92,4.92,a-reso-i1,2022-23,Fairhaven - Fairhaven High,00940505, 339, 15.4, 633, 49.6, 50.2, 0.8, 10.1,32.7 +4.34,4.34,a-reso-i1,2022-23,Fairhaven - Hastings Middle,00940305, 275, 18.3, 442, 50.5, 49.6, 0.0, 17.7,41.9 +4.54,4.54,a-reso-i1,2022-23,Fairhaven - Leroy Wood,00940030, 300, 17.3, 445, 47.4, 52.6, 3.8, 21.6,41.4 +4.58,4.58,a-reso-i1,2022-23,Fall River - B M C Durfee High,00950505," 1,332", 17.1," 2,459", 50.4, 49.5, 20.8, 18.0,75.4 +4.32,4.32,a-reso-i1,2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 313, 18.4, 691, 50.5, 49.5, 31.7, 18.7,86.3 +6.540000000000001,5,a-reso-i1,2022-23,Fall River - Early Learning Center,00950001, 55, 7.3, 108, 30.6, 69.4, 3.7, 75.0,86.1 +4.58,4.58,a-reso-i1,2022-23,Fall River - Henry Lord Community School,00950017, 418, 17.1, 824, 48.2, 51.8, 28.2, 33.9,88.7 +3.4200000000000004,3.42,a-reso-i1,2022-23,Fall River - James Tansey,00950140, 96, 22.9, 279, 48.8, 50.9, 3.9, 18.6,67 +4.58,4.58,a-reso-i1,2022-23,Fall River - John J Doran,00950045, 207, 17.1, 513, 46.2, 53.8, 9.8, 26.5,84.4 +3.88,3.88,a-reso-i1,2022-23,Fall River - Letourneau Elementary School,00950013, 228, 20.6, 640, 45.9, 54.1, 35.8, 22.0,82.8 +3.4,3.4,a-reso-i1,2022-23,Fall River - Mary Fonseca Elementary School,00950011, 238, 23.0, 656, 50.5, 49.5, 34.5, 20.3,88.7 +4.779999999999999,4.78,a-reso-i1,2022-23,Fall River - Matthew J Kuss Middle,00950320, 407, 16.1, 701, 48.4, 51.6, 22.3, 21.5,82 +4.220000000000001,4.22,a-reso-i1,2022-23,Fall River - Morton Middle,00950315, 360, 18.9, 684, 45.6, 54.4, 15.9, 26.5,72.8 +4.16,4.16,a-reso-i1,2022-23,Fall River - North End Elementary,00950005, 248, 19.2, 693, 48.6, 51.4, 10.4, 33.2,68.3 +5.9,5,a-reso-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 125, 10.5, 254, 41.7, 58.3, 16.1, 33.9,91.3 +4.1,4.1,a-reso-i1,2022-23,Fall River - Samuel Watson,00950145, 88, 19.5, 237, 52.7, 47.3, 15.6, 19.0,89.9 +4.66,4.66,a-reso-i1,2022-23,Fall River - Spencer Borden,00950130, 259, 16.7, 588, 45.8, 54.3, 10.2, 34.5,69.7 +7.06,5,a-reso-i1,2022-23,Fall River - Stone PK-12 School,00950340, 122, 4.7, 83, 30.1, 69.9, 10.8, 96.4,90.4 +4.82,4.82,a-reso-i1,2022-23,Fall River - Talbot Innovation School,00950305, 406, 15.9, 561, 51.5, 48.5, 25.7, 24.2,82 +4.58,4.58,a-reso-i1,2022-23,Fall River - William S Greene,00950065, 328, 17.1, 730, 47.1, 52.9, 35.1, 22.1,84.8 +4.9,4.9,a-reso-i1,2022-23,Falmouth - East Falmouth Elementary,00960005, 69, 15.5, 303, 40.3, 59.7, 9.2, 41.6,53.8 +5.220000000000001,5,a-reso-i1,2022-23,Falmouth - Falmouth High,00960505, 698, 13.9, 774, 46.4, 52.7, 5.4, 20.7,36.6 +5.0600000000000005,5,a-reso-i1,2022-23,Falmouth - Lawrence,00960405, 417, 14.7, 490, 49.4, 50.4, 5.9, 22.7,41 +4.08,4.08,a-reso-i1,2022-23,Falmouth - Morse Pond School,00960305, 258, 19.6, 487, 44.8, 55.0, 6.0, 24.2,41.9 +4.82,4.82,a-reso-i1,2022-23,Falmouth - Mullen-Hall,00960020, 120, 15.9, 382, 49.5, 50.5, 10.7, 19.1,41.9 +4.88,4.88,a-reso-i1,2022-23,Falmouth - North Falmouth Elementary,00960030, 100, 15.6, 311, 53.7, 46.3, 3.9, 17.0,22.2 +4.86,4.86,a-reso-i1,2022-23,Falmouth - Teaticket,00960015, 79, 15.7, 272, 44.5, 54.4, 12.9, 29.4,56.6 +4.9799999999999995,4.98,a-reso-i1,2022-23,Farmington River Reg - Farmington River Elementary,06620020, 77, 15.1, 124, 51.6, 48.4, 0.0, 25.0,55.7 +3.9,3.9,a-reso-i1,2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 353, 20.5, 620, 48.1, 51.9, 17.6, 21.6,76.5 +3.84,3.84,a-reso-i1,2022-23,Fitchburg - Crocker Elementary,00970016, 234, 20.8, 607, 50.6, 49.4, 24.2, 23.2,76.9 +4.54,4.54,a-reso-i1,2022-23,Fitchburg - Fitchburg High,00970505, 546, 17.3," 1,205", 50.0, 49.9, 13.6, 18.3,67.6 +6.38,5,a-reso-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 201, 8.1, 283, 50.5, 49.1, 6.0, 29.3,75.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Fitchburg - McKay Elementary School,00970340, 353, 18.9, 736, 45.2, 54.8, 28.7, 24.5,79.4 +3.66,3.66,a-reso-i1,2022-23,Fitchburg - Memorial Middle School,00970048, 274, 21.7, 606, 50.5, 49.2, 9.1, 19.5,69.5 +4.18,4.18,a-reso-i1,2022-23,Fitchburg - Reingold Elementary,00970043, 315, 19.1, 664, 45.5, 54.5, 21.1, 20.9,71.1 +3.9,3.9,a-reso-i1,2022-23,Fitchburg - South Street Early Learning Center,00970060, 173, 20.5, 624, 46.2, 53.9, 15.9, 30.9,76.9 +6.220000000000001,5,a-reso-i1,2022-23,Florida - Abbott Memorial,00980005, 61, 8.9, 91, 46.2, 53.9, 0.0, 15.4,40.7 +8.0,5,a-reso-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.04,4.04,a-reso-i1,2022-23,Foxborough - Charles Taylor Elementary,00990050, 115, 19.8, 259, 44.4, 55.6, 3.1, 17.8,17.8 +5.0600000000000005,5,a-reso-i1,2022-23,Foxborough - Foxborough High,00990505, 492, 14.7, 801, 50.1, 49.8, 1.8, 15.0,20.2 +4.4399999999999995,4.44,a-reso-i1,2022-23,Foxborough - John J Ahern,00990405, 444, 17.8, 748, 48.5, 51.3, 2.4, 22.5,23.3 +4.32,4.32,a-reso-i1,2022-23,Foxborough - Mabelle M Burrell,00990015, 123, 18.4, 348, 44.8, 55.2, 1.7, 22.7,18.1 +3.7600000000000002,3.76,a-reso-i1,2022-23,Foxborough - Vincent M Igo Elementary,00990020, 150, 21.2, 363, 44.1, 55.9, 6.1, 16.0,24.5 +4.18,4.18,a-reso-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 707, 19.1," 1,538", 52.2, 47.9, 6.1, 9.8,41 +4.14,4.14,a-reso-i1,2022-23,Framingham - Barbieri Elementary,01000035, 344, 19.3, 672, 53.1, 46.9, 59.1, 16.8,67.4 +5.24,5,a-reso-i1,2022-23,Framingham - Brophy,01000006, 335, 13.8, 476, 47.3, 52.5, 47.9, 26.5,59.2 +4.46,4.46,a-reso-i1,2022-23,Framingham - Cameron Middle School,01000302, 347, 17.7, 576, 46.0, 54.0, 31.9, 21.5,64.8 +5.76,5,a-reso-i1,2022-23,Framingham - Charlotte A Dunning,01000007, 367, 11.2, 431, 48.5, 51.3, 29.2, 26.9,40.6 +4.720000000000001,4.72,a-reso-i1,2022-23,Framingham - Framingham High School,01000515," 1,183", 16.4," 2,587", 49.6, 50.1, 26.5, 19.8,53.2 +4.86,4.86,a-reso-i1,2022-23,Framingham - Fuller Middle,01000305, 473, 15.7, 682, 47.7, 52.1, 45.9, 24.1,69.1 +4.6,4.6,a-reso-i1,2022-23,Framingham - Harmony Grove Elementary,01000055, 307, 17.0, 475, 44.6, 55.2, 75.0, 13.9,84.2 +5.220000000000001,5,a-reso-i1,2022-23,Framingham - Hemenway,01000015, 378, 13.9, 556, 48.0, 51.8, 26.8, 20.3,35.4 +6.92,5,a-reso-i1,2022-23,Framingham - Juniper Hill School,01000001, 472, 5.4, 316, 37.7, 62.3, 27.2, 62.0,42.1 +5.46,5,a-reso-i1,2022-23,Framingham - King Elementary School,01000005, 278, 12.7, 399, 50.1, 49.6, 33.3, 25.6,45.1 +5.6,5,a-reso-i1,2022-23,Framingham - Mary E Stapleton Elementary,01000045, 279, 12.0, 353, 48.2, 51.8, 40.2, 33.1,63.7 +5.62,5,a-reso-i1,2022-23,Framingham - Miriam F McCarthy School,01000050, 430, 11.9, 531, 46.5, 53.5, 45.8, 31.8,67.6 +4.42,4.42,a-reso-i1,2022-23,Framingham - Potter Road,01000039, 292, 17.9, 541, 48.6, 51.4, 49.9, 19.4,50.5 +4.54,4.54,a-reso-i1,2022-23,Framingham - Walsh Middle,01000310, 491, 17.3, 815, 53.7, 45.4, 19.3, 21.6,45.9 +4.5200000000000005,4.52,a-reso-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 229, 17.4, 391, 51.7, 44.0, 0.0, 18.7,12 +5.0200000000000005,5,a-reso-i1,2022-23,Franklin - Annie Sullivan Middle School,01010040, 221, 14.9, 327, 44.7, 55.4, 1.5, 19.6,16.8 +4.82,4.82,a-reso-i1,2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 11, 15.9, 175, 38.3, 61.7, 1.7, 49.1,21.1 +4.9799999999999995,4.98,a-reso-i1,2022-23,Franklin - Franklin High,01010505," 1,025", 15.1," 1,640", 49.2, 50.2, 1.3, 14.2,11.8 +4.4,4.4,a-reso-i1,2022-23,Franklin - Helen Keller Elementary,01010012, 240, 18.0, 539, 49.0, 51.0, 3.3, 22.6,15.4 +4.42,4.42,a-reso-i1,2022-23,Franklin - Horace Mann,01010405, 221, 17.9, 380, 47.4, 52.6, 0.5, 19.2,13.2 +4.0600000000000005,4.06,a-reso-i1,2022-23,Franklin - J F Kennedy Memorial,01010013, 136, 19.7, 335, 41.2, 58.5, 2.7, 19.7,8.7 +5.1,5,a-reso-i1,2022-23,Franklin - Jefferson Elementary,01010010, 192, 14.5, 349, 42.4, 57.3, 0.9, 28.1,11.8 +4.68,4.68,a-reso-i1,2022-23,Franklin - Oak Street Elementary,01010030, 176, 16.6, 365, 49.3, 50.7, 2.2, 18.9,16.4 +4.76,4.76,a-reso-i1,2022-23,Franklin - Parmenter,01010032, 144, 16.2, 292, 50.3, 49.7, 3.1, 20.2,28.8 +4.64,4.64,a-reso-i1,2022-23,Franklin - Remington Middle,01010310, 230, 16.8, 377, 47.2, 52.8, 1.3, 22.0,21.8 +5.3,5,a-reso-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 304, 13.5, 595, 42.4, 57.7, 0.2, 21.9,53.5 +4.86,4.86,a-reso-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 327, 15.7, 692, 52.5, 47.0, 0.3, 13.6,18.2 +4.16,4.16,a-reso-i1,2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 224, 19.2, 491, 51.1, 48.9, 2.0, 16.3,25.7 +4.9,4.9,a-reso-i1,2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 217, 15.5, 433, 46.9, 53.1, 2.8, 20.1,25.2 +3.94,3.94,a-reso-i1,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 293, 20.3, 676, 47.8, 52.2, 1.2, 21.6,25.9 +3.94,3.94,a-reso-i1,2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 154, 20.3, 446, 49.3, 50.7, 0.5, 15.3,24 +5.720000000000001,5,a-reso-i1,2022-23,Frontier - Frontier Regional,06700505, 580, 11.4, 601, 47.3, 52.3, 0.8, 18.5,26.8 +6.5200000000000005,5,a-reso-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 43, 7.4, 48, 35.4, 64.6, 0.0, 39.6,79.2 +3.7399999999999998,3.74,a-reso-i1,2022-23,Gardner - Gardner Elementary School,01030001, 628, 21.3," 1,034", 44.5, 55.4, 12.8, 24.4,69.5 +4.62,4.62,a-reso-i1,2022-23,Gardner - Gardner High,01030505, 345, 16.9, 739, 46.6, 52.4, 3.0, 19.4,61 +4.16,4.16,a-reso-i1,2022-23,Gardner - Gardner Middle School,01030405, 265, 19.2, 493, 52.5, 47.3, 6.5, 24.1,66.5 +5.0,5.0,a-reso-i1,2022-23,Gateway - Chester Elementary,06720059, 57, 15.0, 125, 47.2, 52.8, 0.0, 35.2,41.6 +6.68,5,a-reso-i1,2022-23,Gateway - Gateway Regional High,06720505, 235, 6.6, 169, 50.3, 49.7, 0.0, 24.9,44.4 +5.0600000000000005,5,a-reso-i1,2022-23,Gateway - Gateway Regional Middle School,06720405, 144, 14.7, 199, 44.7, 54.8, 1.5, 24.6,51.8 +4.220000000000001,4.22,a-reso-i1,2022-23,Gateway - Littleville Elementary School,06720143, 129, 18.9, 305, 48.9, 51.2, 3.3, 28.2,50.5 +5.9,5,a-reso-i1,2022-23,Georgetown - Georgetown High School,01050505, 290, 10.5, 300, 51.0, 49.0, 2.3, 19.0,17.7 +4.86,4.86,a-reso-i1,2022-23,Georgetown - Georgetown Middle School,01050305, 147, 15.7, 189, 48.2, 51.9, 0.5, 19.1,14.8 +3.9200000000000004,3.92,a-reso-i1,2022-23,Georgetown - Penn Brook,01050010, 281, 20.4, 702, 48.0, 52.0, 1.4, 15.7,14.7 +2.54,2.54,a-reso-i1,2022-23,Georgetown - Perley Elementary,01050005, 3, 27.3, 82, 47.6, 52.4, 0.0, 23.2,14.6 +4.64,4.64,a-reso-i1,2022-23,Gill-Montague - Gill Elementary,06740005, 50, 16.8, 105, 49.5, 50.5, 0.0, 21.9,42.9 +5.62,5,a-reso-i1,2022-23,Gill-Montague - Great Falls Middle,06740310, 168, 11.9, 213, 43.7, 55.9, 2.8, 29.1,59.6 +4.6,4.6,a-reso-i1,2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 72, 17.0, 154, 46.1, 53.9, 11.7, 37.0,63.6 +4.82,4.82,a-reso-i1,2022-23,Gill-Montague - Sheffield Elementary School,06740050, 108, 15.9, 214, 41.6, 58.4, 8.4, 29.0,64 +5.9799999999999995,5,a-reso-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 166, 10.1, 181, 41.4, 58.0, 3.3, 26.0,56.9 +4.66,4.66,a-reso-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 336, 16.7, 496, 51.4, 48.6, 9.1, 13.3,70 +4.5600000000000005,4.56,a-reso-i1,2022-23,Gloucester - Beeman Memorial,01070010, 72, 17.2, 309, 52.8, 47.3, 17.2, 21.0,61.2 +4.84,4.84,a-reso-i1,2022-23,Gloucester - East Gloucester Elementary,01070020, 48, 15.8, 190, 55.3, 44.7, 11.6, 17.9,44.7 +5.26,5,a-reso-i1,2022-23,Gloucester - Gloucester High,01070505, 432, 13.7, 808, 46.3, 53.0, 10.0, 30.5,42.8 +5.7,5,a-reso-i1,2022-23,Gloucester - Gloucester PreSchool,01070025, 12, 11.5, 138, 47.8, 52.2, 0.0, 49.3,47.1 +4.64,4.64,a-reso-i1,2022-23,Gloucester - Plum Cove School,01070042, 48, 16.8, 201, 49.8, 50.3, 6.0, 23.9,28.9 +4.58,4.58,a-reso-i1,2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 363, 17.1, 635, 48.8, 51.0, 7.6, 25.8,47.1 +4.4,4.4,a-reso-i1,2022-23,Gloucester - Veterans Memorial,01070045, 48, 18.0, 216, 48.2, 51.9, 22.2, 20.8,68.1 +4.14,4.14,a-reso-i1,2022-23,Gloucester - West Parish,01070050, 77, 19.3, 373, 48.3, 51.7, 2.1, 27.9,38.6 +8.0,5,a-reso-i1,2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.74,4.74,a-reso-i1,2022-23,Grafton - Grafton High School,01100505, 447, 16.3, 875, 49.9, 49.7, 1.1, 13.0,16 +3.96,3.96,a-reso-i1,2022-23,Grafton - Grafton Middle,01100305, 294, 20.2, 532, 47.7, 51.9, 2.4, 17.1,19 +4.0200000000000005,4.02,a-reso-i1,2022-23,Grafton - Millbury Street Elementary School,01100200, 302, 19.9, 594, 44.3, 55.7, 2.7, 21.9,17.5 +4.76,4.76,a-reso-i1,2022-23,Grafton - North Grafton Elementary,01100025, 118, 16.2, 250, 47.2, 52.8, 5.2, 22.0,12.8 +3.9799999999999995,3.98,a-reso-i1,2022-23,Grafton - North Street Elementary School,01100030, 279, 20.1, 551, 50.5, 49.4, 2.9, 16.9,17.8 +4.2,4.2,a-reso-i1,2022-23,Grafton - South Grafton Elementary,01100005, 117, 19.0, 303, 46.9, 53.1, 4.3, 22.4,13.9 +4.279999999999999,4.28,a-reso-i1,2022-23,Granby - East Meadow,01110004, 180, 18.6, 409, 49.1, 50.9, 6.6, 23.5,38.6 +5.4799999999999995,5,a-reso-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 221, 12.6, 310, 44.5, 55.5, 3.9, 20.0,32.3 +4.18,4.18,a-reso-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 359, 19.1," 1,204", 55.5, 43.4, 3.0, 24.8,60.6 +5.26,5,a-reso-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605," 1,347", 13.7," 1,405", 42.1, 57.2, 2.1, 9.8,45.6 +4.8,4.8,a-reso-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605," 1,663", 16.0," 1,692", 52.3, 47.5, 9.3, 11.6,66.3 +4.4399999999999995,4.44,a-reso-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605," 1,722", 17.8," 2,334", 47.5, 51.6, 6.6, 17.0,51.3 +4.9799999999999995,4.98,a-reso-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605," 1,961", 15.1," 2,092", 47.2, 52.6, 5.0, 11.7,50.8 +4.76,4.76,a-reso-i1,2022-23,Greenfield - Discovery School at Four Corners,01140025, 54, 16.2, 216, 41.2, 58.8, 8.3, 23.2,46.8 +4.42,4.42,a-reso-i1,2022-23,Greenfield - Federal Street School,01140010, 46, 17.9, 205, 54.6, 45.4, 8.3, 16.6,70.7 +5.5,5,a-reso-i1,2022-23,Greenfield - Greenfield High,01140505, 308, 12.5, 451, 49.7, 50.1, 8.7, 22.6,60.5 +4.82,4.82,a-reso-i1,2022-23,Greenfield - Greenfield Middle,01140305, 199, 15.9, 311, 44.7, 55.3, 8.0, 18.0,65.6 +4.38,4.38,a-reso-i1,2022-23,Greenfield - Newton School,01140035, 49, 18.1, 211, 50.7, 49.3, 9.0, 18.0,76.8 +5.88,5,a-reso-i1,2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 9, 10.6, 95, 45.3, 54.7, 0.0, 35.8,64.2 +5.12,5,a-reso-i1,2022-23,Groton-Dunstable - Boutwell School,06730001, 7, 14.4, 101, 40.6, 59.4, 0.0, 35.6,10.9 +3.8,3.8,a-reso-i1,2022-23,Groton-Dunstable - Florence Roche School,06730010, 145, 21.0, 526, 48.1, 51.9, 3.6, 15.4,10.5 +4.84,4.84,a-reso-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 402, 15.8, 680, 48.7, 51.0, 0.7, 15.2,7.4 +4.220000000000001,4.22,a-reso-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 355, 18.9, 723, 47.2, 52.8, 0.7, 16.7,10.1 +3.6399999999999997,3.64,a-reso-i1,2022-23,Groton-Dunstable - Swallow/Union School,06730005, 90, 21.8, 327, 45.0, 55.1, 3.1, 20.8,11.3 +4.5600000000000005,4.56,a-reso-i1,2022-23,Hadley - Hadley Elementary,01170015, 262, 17.2, 279, 44.1, 55.9, 5.4, 24.7,30.5 +5.66,5,a-reso-i1,2022-23,Hadley - Hopkins Academy,01170505, 134, 11.7, 220, 49.6, 50.5, 3.6, 11.4,25.9 +4.0,4.0,a-reso-i1,2022-23,Halifax - Halifax Elementary,01180005, 230, 20.0, 560, 47.3, 52.7, 0.9, 20.0,26.6 +3.94,3.94,a-reso-i1,2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 104, 20.3, 264, 43.9, 56.1, 4.9, 16.3,11.4 +4.46,4.46,a-reso-i1,2022-23,Hamilton-Wenham - Cutler School,06750010, 115, 17.7, 255, 51.4, 48.6, 0.4, 20.4,7.1 +5.279999999999999,5,a-reso-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 282, 13.6, 450, 54.2, 45.6, 0.7, 12.2,10 +5.1,5,a-reso-i1,2022-23,Hamilton-Wenham - Miles River Middle,06750310, 330, 14.5, 375, 54.1, 45.9, 0.8, 19.2,10.4 +4.42,4.42,a-reso-i1,2022-23,Hamilton-Wenham - Winthrop School,06750015, 131, 17.9, 323, 49.5, 50.5, 0.3, 25.1,6.5 +4.26,4.26,a-reso-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 252, 18.7, 551, 47.6, 51.9, 4.5, 14.9,61 +4.66,4.66,a-reso-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 189, 16.7, 373, 44.8, 55.2, 4.6, 18.0,61.4 +4.58,4.58,a-reso-i1,2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 102, 17.1, 325, 47.7, 52.3, 1.9, 24.3,29.5 +3.7600000000000002,3.76,a-reso-i1,2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 73, 21.2, 366, 47.8, 52.2, 1.9, 20.8,19.1 +4.86,4.86,a-reso-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 503, 15.7, 973, 49.6, 50.4, 0.1, 13.0,21.8 +3.46,3.46,a-reso-i1,2022-23,Hampden-Wilbraham - Soule Road,06800030, 71, 22.7, 311, 51.5, 48.6, 1.9, 17.4,20.9 +3.6799999999999997,3.68,a-reso-i1,2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 70, 21.6, 303, 46.9, 53.1, 3.0, 17.8,23.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 337, 17.4, 606, 48.0, 52.0, 0.8, 18.5,24.4 +5.62,5,a-reso-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 585, 11.9, 671, 52.2, 46.9, 1.8, 23.1,21.3 +6.5,5,a-reso-i1,2022-23,Hancock - Hancock Elementary,01210005, 76, 7.5, 61, 60.7, 39.3, 0.0, 26.2,36.1 +4.2,4.2,a-reso-i1,2022-23,Hanover - Cedar Elementary,01220004, 184, 19.0, 504, 46.4, 53.6, 4.0, 25.0,11.5 +3.54,3.54,a-reso-i1,2022-23,Hanover - Center Elementary,01220005, 241, 22.3, 645, 50.4, 49.5, 1.6, 24.7,11.5 +5.0,5.0,a-reso-i1,2022-23,Hanover - Hanover High,01220505, 337, 15.0, 671, 47.8, 52.0, 0.5, 17.9,12.8 +3.94,3.94,a-reso-i1,2022-23,Hanover - Hanover Middle,01220305, 780, 20.3, 811, 47.2, 52.8, 0.4, 23.7,9.7 +5.1,5,a-reso-i1,2022-23,Harvard - Bromfield,01250505, 300, 14.5, 560, 50.7, 49.1, 1.6, 8.0,7.5 +4.4799999999999995,4.48,a-reso-i1,2022-23,Harvard - Hildreth Elementary School,01250005, 245, 17.6, 466, 46.1, 53.9, 3.9, 6.9,8.6 +5.14,5,a-reso-i1,2022-23,Hatfield - Hatfield Elementary,01270005, 130, 14.3, 217, 51.2, 48.4, 0.5, 31.8,25.4 +6.26,5,a-reso-i1,2022-23,Hatfield - Smith Academy,01270505, 126, 8.7, 134, 41.8, 58.2, 0.0, 23.1,14.2 +7.5,5,a-reso-i1,2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 58, 2.5, 31, 16.1, 83.9, 6.5, 100.0,83.9 +4.6,4.6,a-reso-i1,2022-23,Haverhill - Bradford Elementary,01280008, 327, 17.0, 514, 44.6, 55.5, 19.5, 23.0,66.9 +3.84,3.84,a-reso-i1,2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 489, 20.8," 1,078", 48.4, 51.5, 5.8, 21.0,45.8 +3.8200000000000003,3.82,a-reso-i1,2022-23,Haverhill - Consentino Middle School,01280100, 345, 20.9, 743, 47.6, 52.2, 14.8, 17.1,70 +3.4200000000000004,3.42,a-reso-i1,2022-23,Haverhill - Dr Paul Nettle,01280050, 227, 22.9, 584, 48.1, 51.9, 11.1, 24.1,69.4 +5.720000000000001,5,a-reso-i1,2022-23,Haverhill - Gateway Academy,01280515, 93, 11.4, 94, 52.1, 47.9, 8.5, 42.6,81.9 +4.6,4.6,a-reso-i1,2022-23,Haverhill - Golden Hill,01280026, 290, 17.0, 458, 52.6, 47.4, 14.9, 19.9,65.1 +6.659999999999999,5,a-reso-i1,2022-23,Haverhill - Greenleaf Academy,01280033, 50, 6.7, 42, 26.2, 73.8, 2.4, 100.0,85.7 +4.7,4.7,a-reso-i1,2022-23,Haverhill - Haverhill High,01280505, 896, 16.5," 2,062", 47.6, 52.1, 10.7, 21.4,54.7 +3.04,3.04,a-reso-i1,2022-23,Haverhill - John G Whittier,01280085, 180, 24.8, 495, 48.9, 50.7, 7.3, 18.6,61.6 +6.5200000000000005,5,a-reso-i1,2022-23,Haverhill - Moody,01280045, 324, 7.4, 200, 38.5, 61.5, 4.5, 66.5,63.5 +6.1,5,a-reso-i1,2022-23,Haverhill - Moody Preschool Extension,01280001, 126, 9.5, 133, 37.6, 62.4, 0.0, 59.4,57.1 +4.68,4.68,a-reso-i1,2022-23,Haverhill - Pentucket Lake Elementary,01280054, 327, 16.6, 526, 47.0, 53.0, 15.2, 28.1,71.9 +3.94,3.94,a-reso-i1,2022-23,Haverhill - Silver Hill Elementary School,01280067, 220, 20.3, 486, 53.9, 46.1, 14.4, 20.8,61.3 +4.12,4.12,a-reso-i1,2022-23,Haverhill - Tilton,01280075, 154, 19.4, 326, 45.7, 54.3, 21.5, 19.6,73.3 +4.0,4.0,a-reso-i1,2022-23,Haverhill - Tilton Upper Middle School,01280105, 77, 20.0, 179, 53.1, 46.9, 16.8, 22.9,72.6 +4.5,4.5,a-reso-i1,2022-23,Haverhill - Walnut Square,01280080, 92, 17.5, 141, 47.5, 52.5, 13.5, 23.4,53.9 +5.74,5,a-reso-i1,2022-23,Hawlemont - Hawlemont Regional,06850005, 31, 11.3, 91, 52.8, 47.3, 2.2, 36.3,58.2 +6.14,5,a-reso-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 75, 9.3, 107, 49.5, 50.5, 7.5, 19.6,78.5 +3.7399999999999998,3.74,a-reso-i1,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 119, 21.3, 318, 50.0, 50.0, 7.9, 23.0,41.5 +2.6399999999999997,2.64,a-reso-i1,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 53, 26.8, 218, 41.3, 56.0, 0.0, 20.6,20.2 +4.1,4.1,a-reso-i1,2022-23,Hingham - East Elementary School,01310005, 206, 19.5, 521, 43.4, 56.6, 1.5, 26.9,8.6 +5.26,5,a-reso-i1,2022-23,Hingham - Hingham High,01310505, 625, 13.7," 1,158", 47.0, 52.7, 0.2, 7.3,6.9 +5.16,5,a-reso-i1,2022-23,Hingham - Hingham Middle School,01310410, 622, 14.2, 840, 49.3, 50.6, 0.5, 18.6,8 +3.46,3.46,a-reso-i1,2022-23,Hingham - Plymouth River,01310019, 152, 22.7, 383, 49.1, 50.9, 1.6, 19.3,8.1 +3.28,3.28,a-reso-i1,2022-23,Hingham - South Elementary,01310020, 192, 23.6, 503, 48.7, 51.3, 0.6, 18.9,5.8 +3.66,3.66,a-reso-i1,2022-23,Hingham - Wm L Foster Elementary,01310010, 168, 21.7, 405, 49.4, 50.6, 1.5, 21.0,8.4 +4.9,4.9,a-reso-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 376, 15.5, 653, 46.1, 53.6, 6.9, 17.3,42.4 +4.4399999999999995,4.44,a-reso-i1,2022-23,Holbrook - John F Kennedy,01330018, 322, 17.8, 685, 48.9, 51.1, 8.9, 23.8,44.2 +5.0,5.0,a-reso-i1,2022-23,Holland - Holland Elementary,01350005, 73, 15.0, 229, 49.8, 50.2, 0.9, 10.9,40.6 +5.04,5,a-reso-i1,2022-23,Holliston - Holliston High,01360505, 516, 14.8, 811, 48.0, 51.1, 1.0, 16.7,12 +4.38,4.38,a-reso-i1,2022-23,Holliston - Miller School,01360007, 351, 18.1, 605, 49.1, 50.7, 3.0, 23.0,9.1 +4.66,4.66,a-reso-i1,2022-23,Holliston - Placentino Elementary,01360010, 234, 16.7, 721, 44.9, 54.8, 5.4, 18.2,10 +4.4,4.4,a-reso-i1,2022-23,Holliston - Robert H. Adams Middle School,01360305, 331, 18.0, 655, 48.2, 51.3, 1.5, 20.8,11 +4.54,4.54,a-reso-i1,2022-23,Holyoke - E N White Elementary,01370045, 157, 17.3, 415, 48.2, 51.8, 8.0, 28.7,72.3 +5.12,5,a-reso-i1,2022-23,Holyoke - H.B. Lawrence School,01370070, 79, 14.4, 185, 50.8, 49.2, 14.1, 17.3,97.3 +4.8,4.8,a-reso-i1,2022-23,Holyoke - Holyoke High,01370505," 1,066", 16.0," 1,445", 46.7, 53.0, 19.8, 26.9,83.3 +3.78,3.78,a-reso-i1,2022-23,Holyoke - Holyoke Middle School,01370325, 103, 21.1, 297, 46.1, 53.9, 25.9, 39.1,94.6 +4.18,4.18,a-reso-i1,2022-23,Holyoke - Holyoke STEM Academy,01370320, 102, 19.1, 313, 45.4, 54.6, 19.5, 32.0,90.1 +4.0600000000000005,4.06,a-reso-i1,2022-23,Holyoke - Joseph Metcalf School,01370003, 162, 19.7, 387, 51.2, 48.8, 30.8, 20.2,69.8 +4.1,4.1,a-reso-i1,2022-23,Holyoke - Kelly Elementary,01370040, 108, 19.5, 331, 51.1, 48.9, 24.2, 26.0,94.3 +4.9,4.9,a-reso-i1,2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 157, 15.5, 423, 47.3, 52.7, 16.6, 32.9,89.8 +4.4399999999999995,4.44,a-reso-i1,2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 154, 17.8, 348, 45.7, 54.3, 13.8, 33.3,78.2 +5.82,5,a-reso-i1,2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 202, 10.9, 351, 40.7, 59.3, 15.4, 47.6,95.2 +4.5600000000000005,4.56,a-reso-i1,2022-23,Holyoke - Morgan Full Service Community School,01370025, 68, 17.2, 325, 50.8, 49.2, 18.2, 27.1,94.8 +5.32,5,a-reso-i1,2022-23,Holyoke - William R. Peck School,01370030, 95, 13.4, 216, 49.5, 50.5, 18.1, 35.7,95.8 +3.34,3.34,a-reso-i1,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 207, 23.3, 697, 54.2, 45.8, 10.0, 25.3,83.5 +4.279999999999999,4.28,a-reso-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 143, 18.6, 390, 45.9, 54.1, 1.3, 28.7,63.6 +5.6,5,a-reso-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 176, 12.0, 328, 51.8, 48.2, 0.9, 26.8,60.1 +4.720000000000001,4.72,a-reso-i1,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 204, 16.4, 298, 49.0, 50.7, 1.0, 23.5,59.4 +5.4799999999999995,5,a-reso-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 325, 12.6, 440, 48.9, 50.5, 2.1, 19.3,24.1 +4.04,4.04,a-reso-i1,2022-23,Hopedale - Memorial,01380010, 260, 19.8, 554, 45.9, 54.2, 9.0, 24.4,20.8 +6.58,5,a-reso-i1,2022-23,Hopedale - Park Street School,01380003, 112, 7.1, 113, 44.3, 55.8, 0.0, 20.4,17.7 +3.72,3.72,a-reso-i1,2022-23,Hopkinton - Elmwood,01390010, 153, 21.4, 637, 48.7, 51.3, 10.8, 10.4,6.4 +3.34,3.34,a-reso-i1,2022-23,Hopkinton - Hopkins Elementary School,01390015, 265, 23.3, 640, 50.0, 50.0, 4.1, 13.3,6.4 +4.36,4.36,a-reso-i1,2022-23,Hopkinton - Hopkinton High,01390505," 1,013", 18.2," 1,245", 49.8, 49.8, 1.6, 13.4,9.6 +3.62,3.62,a-reso-i1,2022-23,Hopkinton - Hopkinton Middle School,01390305, 586, 21.9, 983, 49.0, 50.8, 1.2, 14.1,6.4 +5.9,5,a-reso-i1,2022-23,Hopkinton - Hopkinton Pre-School,01390003, 15, 10.5, 112, 42.0, 58.0, 13.4, 50.9,9.8 +4.12,4.12,a-reso-i1,2022-23,Hopkinton - Marathon Elementary School,01390005, 168, 19.4, 604, 46.5, 53.3, 19.5, 13.1,7.3 +4.220000000000001,4.22,a-reso-i1,2022-23,Hudson - C A Farley,01410030, 202, 18.9, 433, 51.3, 48.7, 27.0, 18.5,41.6 +4.24,4.24,a-reso-i1,2022-23,Hudson - David J. Quinn Middle School,01410410, 301, 18.8, 578, 45.7, 54.2, 13.5, 21.6,41.9 +4.36,4.36,a-reso-i1,2022-23,Hudson - Forest Avenue Elementary,01410015, 144, 18.2, 291, 51.2, 48.8, 19.2, 16.5,30.9 +5.220000000000001,5,a-reso-i1,2022-23,Hudson - Hudson High,01410505, 498, 13.9, 831, 53.0, 46.8, 11.2, 16.7,37.6 +4.34,4.34,a-reso-i1,2022-23,Hudson - Mulready Elementary,01410007, 116, 18.3, 248, 47.6, 52.4, 22.2, 30.2,36.7 +6.08,5,a-reso-i1,2022-23,Hull - Hull High,01420505, 216, 9.6, 243, 43.6, 55.1, 2.9, 17.7,31.7 +4.92,4.92,a-reso-i1,2022-23,Hull - Lillian M Jacobs,01420015, 185, 15.4, 360, 44.7, 55.3, 0.6, 26.4,33.9 +5.2,5,a-reso-i1,2022-23,Hull - Memorial Middle,01420305, 102, 14.0, 167, 49.1, 50.9, 1.8, 19.8,29.9 +4.3,4.3,a-reso-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 436, 18.5, 793, 50.4, 49.1, 1.4, 23.6,27.1 +5.66,5,a-reso-i1,2022-23,Ipswich - Ipswich High,01440505, 366, 11.7, 500, 52.0, 47.8, 1.8, 16.0,19.2 +4.64,4.64,a-reso-i1,2022-23,Ipswich - Ipswich Middle School,01440305, 267, 16.8, 365, 51.2, 48.8, 1.1, 18.6,19.2 +4.5,4.5,a-reso-i1,2022-23,Ipswich - Paul F Doyon Memorial,01440007, 234, 17.5, 370, 48.7, 51.4, 3.0, 24.3,15.7 +4.36,4.36,a-reso-i1,2022-23,Ipswich - Winthrop,01440015, 226, 18.2, 384, 49.2, 50.8, 6.8, 24.7,27.3 +3.66,3.66,a-reso-i1,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 157, 21.7, 576, 48.8, 51.2, 14.8, 20.0,76.6 +3.22,3.22,a-reso-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 555, 23.9," 1,604", 50.1, 49.9, 14.4, 15.0,65.8 +4.84,4.84,a-reso-i1,2022-23,King Philip - King Philip Middle School,06900510, 398, 15.8, 677, 48.9, 50.7, 0.7, 19.9,18.6 +4.779999999999999,4.78,a-reso-i1,2022-23,King Philip - King Philip Regional High,06900505, 482, 16.1," 1,140", 49.2, 50.4, 0.3, 15.5,15.4 +3.46,3.46,a-reso-i1,2022-23,Kingston - Kingston Elementary,01450005, 166, 22.7, 666, 43.5, 56.5, 4.8, 26.9,26 +3.7399999999999998,3.74,a-reso-i1,2022-23,Kingston - Kingston Intermediate,01450020, 236, 21.3, 600, 50.0, 50.0, 4.2, 20.7,23 +4.62,4.62,a-reso-i1,2022-23,Lawrence - Alexander B Bruce,01490015, 279, 16.9, 406, 49.0, 50.5, 42.1, 15.8,87.2 +3.56,3.56,a-reso-i1,2022-23,Lawrence - Arlington Elementary,01490009, 211, 22.2, 620, 47.1, 52.1, 61.5, 16.9,91.8 +3.1799999999999997,3.18,a-reso-i1,2022-23,Lawrence - Arlington Middle School,01490017, 314, 24.1, 598, 48.2, 51.7, 45.7, 15.2,91.5 +3.84,3.84,a-reso-i1,2022-23,Lawrence - Edward F. Parthum,01490053, 350, 20.8, 679, 45.7, 54.2, 36.4, 17.8,85.6 +5.12,5,a-reso-i1,2022-23,Lawrence - Emily G Wetherbee,01490080, 393, 14.4, 504, 50.6, 49.2, 32.3, 24.4,83.3 +4.08,4.08,a-reso-i1,2022-23,Lawrence - Francis M Leahy,01490040, 192, 19.6, 395, 44.3, 55.7, 46.8, 13.7,92.4 +3.46,3.46,a-reso-i1,2022-23,Lawrence - Frost Middle School,01490525, 241, 22.7, 503, 49.5, 50.3, 23.9, 21.9,77.3 +4.36,4.36,a-reso-i1,2022-23,Lawrence - Gerard A. Guilmette,01490022, 335, 18.2, 481, 45.1, 54.9, 44.7, 15.2,86.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Lawrence - Guilmette Middle School,01490025, 303, 15.3, 437, 49.4, 50.6, 40.3, 19.0,88.1 +4.54,4.54,a-reso-i1,2022-23,Lawrence - High School Learning Center,01490536, 99, 17.3, 203, 38.4, 61.6, 52.7, 20.2,85.7 +5.62,5,a-reso-i1,2022-23,Lawrence - James F Hennessey,01490020, 143, 11.9, 316, 45.6, 54.4, 52.5, 35.1,87.7 +5.36,5,a-reso-i1,2022-23,Lawrence - John Breen School,01490003, 64, 13.2, 313, 41.2, 58.8, 35.5, 48.9,85.3 +4.2,4.2,a-reso-i1,2022-23,Lawrence - John K Tarbox,01490075, 135, 19.0, 291, 42.3, 57.7, 41.9, 18.6,88 +3.78,3.78,a-reso-i1,2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 42, 21.1, 200, 48.0, 52.0, 36.5, 21.5,91.5 +5.08,5,a-reso-i1,2022-23,Lawrence - Lawrence Family Public Academy,01490011, 78, 14.6, 239, 46.4, 53.6, 40.6, 39.3,88.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Lawrence - Lawrence High School,01490515," 1,312", 20.1," 3,139", 46.8, 52.9, 42.9, 14.2,82.2 +2.5799999999999996,2.58,a-reso-i1,2022-23,Lawrence - Leonard Middle School,01490090, 112, 27.1, 338, 46.2, 53.9, 40.8, 12.1,85.5 +3.8,3.8,a-reso-i1,2022-23,Lawrence - Oliver Elementary School,01490048, 219, 21.0, 473, 49.5, 50.5, 49.3, 15.6,88.6 +2.1799999999999997,2.18,a-reso-i1,2022-23,Lawrence - Oliver Middle School,01490049, 86, 29.1, 357, 46.2, 53.5, 38.9, 19.1,87.7 +3.8200000000000003,3.82,a-reso-i1,2022-23,Lawrence - Parthum Middle School,01490027, 280, 20.9, 532, 45.5, 54.5, 28.0, 18.8,81.4 +4.08,4.08,a-reso-i1,2022-23,Lawrence - RISE Academy,01490615, 49, 19.6, 85, 27.1, 72.9, 28.2, 41.2,85.9 +3.96,3.96,a-reso-i1,2022-23,Lawrence - Robert Frost,01490018, 216, 20.2, 549, 50.3, 49.2, 39.2, 21.1,79.2 +5.0600000000000005,5,a-reso-i1,2022-23,Lawrence - Rollins Early Childhood Center,01490001, 37, 14.7, 232, 42.2, 57.8, 50.9, 45.7,87.5 +7.12,5,a-reso-i1,2022-23,Lawrence - School for Exceptional Studies,01490537, 200, 4.4, 109, 17.4, 82.6, 30.3, 100.0,96.3 +3.6,3.6,a-reso-i1,2022-23,Lawrence - South Lawrence East Elementary School,01490004, 330, 22.0, 684, 49.7, 50.2, 43.6, 18.0,88.7 +4.4399999999999995,4.44,a-reso-i1,2022-23,Lawrence - Spark Academy,01490085, 179, 17.8, 457, 44.6, 55.4, 34.1, 19.3,89.3 +3.72,3.72,a-reso-i1,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 394, 21.4, 853, 54.9, 45.1, 33.2, 7.5,76.3 +3.1399999999999997,3.14,a-reso-i1,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 234, 24.3, 657, 50.1, 49.9, 26.6, 16.1,79 +4.92,4.92,a-reso-i1,2022-23,Lee - Lee Elementary,01500025, 117, 15.4, 343, 49.0, 51.0, 7.6, 19.2,39.9 +5.8,5,a-reso-i1,2022-23,Lee - Lee Middle/High School,01500505, 239, 11.0, 322, 45.3, 54.4, 3.7, 14.6,41.9 +4.26,4.26,a-reso-i1,2022-23,Leicester - Leicester Elementary,01510005, 208, 18.7, 487, 52.0, 48.1, 9.0, 24.9,43.5 +4.58,4.58,a-reso-i1,2022-23,Leicester - Leicester High,01510505, 244, 17.1, 418, 45.0, 55.0, 3.6, 12.4,31.6 +4.2,4.2,a-reso-i1,2022-23,Leicester - Leicester Integrated Preschool,01510001, 12, 19.0, 57, 33.3, 66.7, 0.0, 73.7,45.6 +4.58,4.58,a-reso-i1,2022-23,Leicester - Leicester Middle,01510015, 232, 17.1, 415, 46.5, 53.3, 5.8, 19.8,38.6 +5.6,5,a-reso-i1,2022-23,Lenox - Lenox Memorial High,01520505, 325, 12.0, 442, 48.0, 52.0, 2.7, 9.1,25.1 +4.4799999999999995,4.48,a-reso-i1,2022-23,Lenox - Morris,01520015, 149, 17.6, 344, 47.1, 52.9, 4.9, 11.1,24.7 +6.659999999999999,5,a-reso-i1,2022-23,Leominster - Bennett,01530003, 18, 6.7, 120, 36.7, 63.3, 5.0, 55.8,44.2 +5.4799999999999995,5,a-reso-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 158, 12.6, 771, 35.0, 64.7, 10.9, 25.8,54.6 +3.5799999999999996,3.58,a-reso-i1,2022-23,Leominster - Fall Brook,01530007, 299, 22.1, 617, 44.6, 55.3, 17.0, 24.3,49.3 +4.84,4.84,a-reso-i1,2022-23,Leominster - Frances Drake School,01530010, 285, 15.8, 467, 49.3, 50.8, 24.6, 36.4,66.2 +3.8600000000000003,3.86,a-reso-i1,2022-23,Leominster - Johnny Appleseed,01530025, 333, 20.7, 654, 50.9, 49.1, 14.1, 19.0,52.8 +4.74,4.74,a-reso-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 8, 16.3, 51, 60.8, 33.3, 5.9, 49.0,66.7 +4.12,4.12,a-reso-i1,2022-23,Leominster - Leominster High School,01530505, 638, 19.4," 1,786", 47.3, 52.4, 10.8, 19.9,52.6 +6.24,5,a-reso-i1,2022-23,Leominster - Lincoln School,01530005, 4, 8.8, 35, 45.7, 54.3, 0.0, 60.0,57.1 +3.4200000000000004,3.42,a-reso-i1,2022-23,Leominster - Northwest,01530030, 346, 22.9, 729, 52.3, 47.7, 24.1, 22.4,61.3 +4.4799999999999995,4.48,a-reso-i1,2022-23,Leominster - Priest Street,01530040, 49, 17.6, 123, 48.0, 52.0, 24.4, 24.4,66.7 +4.9799999999999995,4.98,a-reso-i1,2022-23,Leominster - Samoset School,01530045, 369, 15.1, 521, 45.1, 54.9, 10.0, 22.5,51.1 +3.8600000000000003,3.86,a-reso-i1,2022-23,Leominster - Sky View Middle School,01530320, 669, 20.7, 928, 48.3, 51.6, 13.5, 22.6,60.1 +4.76,4.76,a-reso-i1,2022-23,Leverett - Leverett Elementary,01540005, 53, 16.2, 139, 51.1, 48.9, 0.0, 22.3,23.7 +3.6799999999999997,3.68,a-reso-i1,2022-23,Lexington - Bowman,01550008, 117, 21.6, 445, 49.2, 50.8, 19.1, 8.8,5.2 +4.14,4.14,a-reso-i1,2022-23,Lexington - Bridge,01550006, 111, 19.3, 383, 50.7, 49.4, 14.9, 14.1,12.3 +4.5,4.5,a-reso-i1,2022-23,Lexington - Fiske,01550015, 110, 17.5, 345, 47.5, 52.5, 14.8, 23.5,5.8 +4.279999999999999,4.28,a-reso-i1,2022-23,Lexington - Harrington,01550030, 121, 18.6, 397, 51.9, 48.1, 14.6, 13.1,9.1 +4.76,4.76,a-reso-i1,2022-23,Lexington - Jonas Clarke Middle,01550305, 553, 16.2, 835, 49.3, 50.5, 5.0, 12.9,9.1 +3.6799999999999997,3.68,a-reso-i1,2022-23,Lexington - Joseph Estabrook,01550010, 142, 21.6, 551, 47.2, 52.8, 14.9, 15.4,7.1 +5.4799999999999995,5,a-reso-i1,2022-23,Lexington - Lexington Children's Place,01550001, 7, 12.6, 88, 43.2, 56.8, 27.3, 53.4,22.7 +4.4,4.4,a-reso-i1,2022-23,Lexington - Lexington High,01550505," 1,183", 18.0," 2,329", 50.2, 49.5, 3.7, 12.4,7.6 +3.72,3.72,a-reso-i1,2022-23,Lexington - Maria Hastings,01550035, 161, 21.4, 621, 49.0, 51.1, 14.0, 16.3,7.9 +4.0200000000000005,4.02,a-reso-i1,2022-23,Lexington - Wm Diamond Middle,01550310, 500, 19.9, 965, 47.2, 52.8, 7.5, 15.3,9 +8.0,5,a-reso-i1,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +5.2,5,a-reso-i1,2022-23,Lincoln - Hanscom Middle,01570305, 138, 14.0, 226, 46.5, 53.5, 0.0, 23.0,4.4 +5.12,5,a-reso-i1,2022-23,Lincoln - Hanscom Primary,01570006, 76, 14.4, 229, 52.0, 48.0, 2.6, 25.3,3.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Lincoln - Lincoln School,01570025, 252, 17.2, 547, 49.7, 50.1, 4.9, 21.4,21.8 +4.42,4.42,a-reso-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505," 1,233", 17.9," 1,490", 51.1, 48.6, 0.3, 20.3,8.9 +5.24,5,a-reso-i1,2022-23,Littleton - Littleton High School,01580505, 246, 13.8, 480, 50.6, 48.8, 0.6, 12.1,11.3 +3.94,3.94,a-reso-i1,2022-23,Littleton - Littleton Middle School,01580305, 187, 20.3, 382, 50.3, 49.7, 0.5, 17.3,12 +3.66,3.66,a-reso-i1,2022-23,Littleton - Russell St Elementary,01580015, 198, 21.7, 390, 49.2, 50.5, 1.3, 17.4,10.8 +4.16,4.16,a-reso-i1,2022-23,Littleton - Shaker Lane Elementary,01580005, 210, 19.2, 453, 45.9, 54.1, 4.0, 21.9,9.9 +4.16,4.16,a-reso-i1,2022-23,Longmeadow - Blueberry Hill,01590005, 190, 19.2, 395, 52.2, 47.9, 4.1, 21.3,8.1 +4.42,4.42,a-reso-i1,2022-23,Longmeadow - Center,01590010, 216, 17.9, 425, 49.7, 50.4, 0.2, 20.2,11.3 +4.32,4.32,a-reso-i1,2022-23,Longmeadow - Glenbrook Middle,01590017, 181, 18.4, 335, 47.8, 52.2, 1.5, 19.4,12.2 +4.4799999999999995,4.48,a-reso-i1,2022-23,Longmeadow - Longmeadow High,01590505, 390, 17.6, 898, 48.8, 50.6, 0.3, 17.2,11.5 +4.68,4.68,a-reso-i1,2022-23,Longmeadow - Williams Middle,01590305, 177, 16.6, 284, 42.3, 57.4, 0.0, 21.1,9.5 +4.4,4.4,a-reso-i1,2022-23,Longmeadow - Wolf Swamp Road,01590025, 191, 18.0, 447, 48.3, 51.7, 0.7, 25.5,17.9 +4.6,4.6,a-reso-i1,2022-23,Lowell - Abraham Lincoln,01600020, 322, 17.0, 481, 50.7, 49.3, 34.7, 17.9,81.7 +3.3600000000000003,3.36,a-reso-i1,2022-23,Lowell - B.F. Butler Middle School,01600310, 200, 23.2, 536, 50.2, 49.8, 20.5, 19.8,75.2 +4.279999999999999,4.28,a-reso-i1,2022-23,Lowell - Bartlett Community Partnership,01600090, 334, 18.6, 512, 52.5, 47.5, 30.1, 26.4,77.9 +5.9,5,a-reso-i1,2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 144, 10.5, 116, 41.4, 58.6, 20.7, 52.6,72.4 +4.62,4.62,a-reso-i1,2022-23,Lowell - Charles W Morey,01600030, 332, 16.9, 490, 50.6, 49.4, 30.6, 22.5,70.6 +4.54,4.54,a-reso-i1,2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 308, 17.3, 467, 50.1, 49.9, 37.3, 20.1,88.2 +3.28,3.28,a-reso-i1,2022-23,Lowell - Dr An Wang School,01600345, 292, 23.6, 697, 47.6, 52.2, 21.5, 19.8,67.7 +4.5600000000000005,4.56,a-reso-i1,2022-23,Lowell - Dr Gertrude Bailey,01600002, 308, 17.2, 469, 46.7, 53.3, 31.6, 20.5,64.8 +7.38,5,a-reso-i1,2022-23,Lowell - Dr. Janice Adie Day School,01600605, 155, 3.1, 59, 23.7, 76.3, 8.5, 100.0,71.2 +4.4,4.4,a-reso-i1,2022-23,Lowell - Greenhalge,01600015, 313, 18.0, 493, 47.5, 52.5, 34.9, 21.5,85 +3.34,3.34,a-reso-i1,2022-23,Lowell - Henry J Robinson Middle,01600330, 271, 23.3, 645, 50.9, 49.2, 29.6, 20.2,82.3 +3.54,3.54,a-reso-i1,2022-23,Lowell - James S Daley Middle School,01600315, 335, 22.3, 697, 45.6, 54.2, 15.6, 21.0,60.8 +3.84,3.84,a-reso-i1,2022-23,Lowell - James Sullivan Middle School,01600340, 360, 20.8, 646, 48.5, 51.4, 31.0, 22.5,74 +4.66,4.66,a-reso-i1,2022-23,Lowell - John J Shaughnessy,01600050, 338, 16.7, 498, 47.4, 52.6, 28.5, 21.5,76.1 +4.54,4.54,a-reso-i1,2022-23,Lowell - Joseph McAvinnue,01600010, 306, 17.3, 467, 49.5, 50.5, 34.7, 21.4,79.2 +4.1,4.1,a-reso-i1,2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 351, 19.5, 667, 44.2, 55.6, 24.7, 16.2,79.8 +7.5,5,a-reso-i1,2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 41, 2.5, 16, 25.0, 75.0, 25.0, 100.0,100 +6.9,5,a-reso-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 92, 5.5, 44, 29.6, 70.5, 2.3, 100.0,93.2 +4.12,4.12,a-reso-i1,2022-23,Lowell - Lowell High,01600505," 2,172", 19.4," 3,256", 46.0, 53.8, 27.0, 14.1,68.5 +3.88,3.88,a-reso-i1,2022-23,Lowell - Moody Elementary,01600027, 138, 20.6, 249, 51.8, 48.2, 50.2, 16.5,88.4 +4.6,4.6,a-reso-i1,2022-23,Lowell - Pawtucketville Memorial,01600036, 318, 17.0, 473, 49.1, 51.0, 21.4, 23.0,64.3 +4.36,4.36,a-reso-i1,2022-23,Lowell - Peter W Reilly,01600040, 301, 18.2, 484, 52.5, 47.5, 22.3, 21.9,56 +4.68,4.68,a-reso-i1,2022-23,Lowell - Pyne Arts,01600018, 393, 16.6, 505, 47.9, 52.1, 22.8, 26.3,60.6 +3.7600000000000002,3.76,a-reso-i1,2022-23,Lowell - Rogers STEM Academy,01600005, 459, 21.2, 883, 48.1, 51.9, 33.0, 16.3,85.2 +3.94,3.94,a-reso-i1,2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 276, 20.3, 493, 51.7, 48.3, 28.2, 19.7,80.7 +6.44,5,a-reso-i1,2022-23,Lowell - The Career Academy,01600515, 102, 7.8, 84, 39.3, 60.7, 15.5, 29.8,77.4 +5.18,5,a-reso-i1,2022-23,Lowell - Washington,01600055, 207, 14.1, 255, 41.2, 58.8, 42.0, 29.8,73.3 +3.7399999999999998,3.74,a-reso-i1,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 339, 21.3, 807, 51.1, 48.8, 53.7, 12.3,67.3 +4.46,4.46,a-reso-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 107, 17.7, 118, 59.3, 38.1, 0.0, 42.4,76.3 +5.24,5,a-reso-i1,2022-23,Ludlow - East Street Elementary School,01610010, 202, 13.8, 369, 43.4, 56.6, 15.2, 25.2,42.3 +4.74,4.74,a-reso-i1,2022-23,Ludlow - Harris Brook Elementary School,01610665, 358, 16.3, 654, 46.6, 53.4, 9.8, 18.8,41.6 +5.24,5,a-reso-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 391, 13.8, 789, 48.8, 51.1, 2.7, 16.4,31.2 +4.68,4.68,a-reso-i1,2022-23,Ludlow - Paul R Baird Middle,01610305, 342, 16.6, 519, 51.1, 48.9, 4.6, 18.9,38.9 +6.8,5,a-reso-i1,2022-23,Lunenburg - Advanced Community Experience Program,01620605, 1, 6.0, 6, 50.0, 50.0, 0.0, 100.0,66.7 +5.220000000000001,5,a-reso-i1,2022-23,Lunenburg - Lunenburg High,01620505, 244, 13.9, 444, 47.1, 52.7, 1.1, 9.9,21.6 +3.6399999999999997,3.64,a-reso-i1,2022-23,Lunenburg - Lunenburg Middle School,01620305, 213, 21.8, 387, 49.1, 50.7, 1.0, 17.1,22.5 +3.88,3.88,a-reso-i1,2022-23,Lunenburg - Lunenburg Primary School,01620010, 167, 20.6, 390, 50.0, 50.0, 5.1, 18.7,28.2 +3.6,3.6,a-reso-i1,2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 272, 22.0, 363, 51.0, 49.0, 1.9, 15.4,25.9 +3.9799999999999995,3.98,a-reso-i1,2022-23,Lynn - A Drewicz Elementary,01630016, 137, 20.1, 521, 53.2, 46.8, 66.6, 16.9,83.7 +4.74,4.74,a-reso-i1,2022-23,Lynn - Aborn,01630011, 55, 16.3, 219, 49.3, 50.7, 31.5, 13.2,53.9 +3.88,3.88,a-reso-i1,2022-23,Lynn - Breed Middle School,01630405, 728, 20.6," 1,309", 47.3, 52.7, 27.7, 23.1,76.5 +4.68,4.68,a-reso-i1,2022-23,Lynn - Brickett Elementary,01630020, 105, 16.6, 327, 46.5, 53.5, 56.6, 15.9,81.4 +6.08,5,a-reso-i1,2022-23,Lynn - Capt William G Shoemaker,01630090, 170, 9.6, 326, 39.6, 60.4, 23.3, 50.6,50.9 +3.94,3.94,a-reso-i1,2022-23,Lynn - Classical High,01630505, 660, 20.3," 1,872", 46.3, 53.6, 34.2, 15.7,74 +4.82,4.82,a-reso-i1,2022-23,Lynn - Cobbet Elementary,01630035, 214, 15.9, 626, 44.9, 55.1, 72.0, 16.5,87.1 +4.76,4.76,a-reso-i1,2022-23,Lynn - E J Harrington,01630045, 207, 16.2, 632, 49.1, 51.0, 58.1, 22.3,86.1 +4.76,4.76,a-reso-i1,2022-23,Lynn - Edward A Sisson,01630095, 141, 16.2, 443, 49.4, 50.6, 40.0, 21.0,56.7 +6.38,5,a-reso-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 182, 8.1, 332, 41.6, 57.2, 52.7, 20.8,88 +4.74,4.74,a-reso-i1,2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 42, 16.3, 81, 44.4, 54.3, 12.4, 19.8,64.2 +4.36,4.36,a-reso-i1,2022-23,Lynn - Hood,01630055, 149, 18.2, 505, 48.3, 51.7, 55.8, 17.8,76.4 +4.46,4.46,a-reso-i1,2022-23,Lynn - Ingalls,01630060, 219, 17.7, 715, 47.6, 52.5, 70.2, 13.3,82.1 +5.5,5,a-reso-i1,2022-23,Lynn - Julia F Callahan,01630030, 168, 12.5, 414, 43.7, 56.3, 36.7, 35.0,73 +4.96,4.96,a-reso-i1,2022-23,Lynn - Lincoln-Thomson,01630070, 69, 15.2, 203, 52.2, 47.8, 45.8, 19.7,63.1 +3.94,3.94,a-reso-i1,2022-23,Lynn - Lynn English High,01630510, 767, 20.3," 2,196", 47.0, 52.7, 37.1, 12.3,74 +4.279999999999999,4.28,a-reso-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 789, 18.6," 1,551", 46.0, 53.8, 12.1, 21.9,68.7 +5.5200000000000005,5,a-reso-i1,2022-23,Lynn - Lynn Woods,01630075, 61, 12.4, 159, 48.4, 51.6, 27.0, 29.6,44 +4.42,4.42,a-reso-i1,2022-23,Lynn - Pickering Middle,01630420, 305, 17.9, 581, 48.4, 51.6, 18.6, 24.8,62.1 +4.36,4.36,a-reso-i1,2022-23,Lynn - Robert L Ford,01630050, 126, 18.2, 419, 52.5, 47.5, 64.9, 14.1,77.8 +4.0600000000000005,4.06,a-reso-i1,2022-23,Lynn - Sewell-Anderson,01630085, 80, 19.7, 294, 56.5, 43.5, 53.1, 7.8,69.7 +4.0600000000000005,4.06,a-reso-i1,2022-23,Lynn - Thurgood Marshall Mid,01630305, 595, 19.7," 1,316", 47.9, 52.1, 29.9, 21.1,80.6 +4.38,4.38,a-reso-i1,2022-23,Lynn - Tracy,01630100, 114, 18.1, 384, 49.0, 51.0, 69.0, 13.3,80.7 +6.1,5,a-reso-i1,2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 32, 9.5, 76, 30.3, 69.7, 7.9, 71.1,84.2 +4.6,4.6,a-reso-i1,2022-23,Lynn - Washington Elementary School,01630005, 144, 17.0, 444, 49.1, 50.9, 67.8, 24.6,83.8 +7.340000000000001,5,a-reso-i1,2022-23,Lynn - William R Fallon,01630080, 40, 3.3, 30, 16.7, 83.3, 13.3, 96.7,96.7 +4.5600000000000005,4.56,a-reso-i1,2022-23,Lynn - Wm P Connery,01630040, 182, 17.2, 570, 52.3, 47.7, 65.8, 16.7,82.1 +3.9200000000000004,3.92,a-reso-i1,2022-23,Lynnfield - Huckleberry Hill,01640010, 227, 20.4, 450, 52.0, 48.0, 4.4, 16.4,11.6 +5.14,5,a-reso-i1,2022-23,Lynnfield - Lynnfield High,01640505, 269, 14.3, 566, 48.8, 51.2, 2.3, 16.1,12 +3.96,3.96,a-reso-i1,2022-23,Lynnfield - Lynnfield Middle School,01640405, 393, 20.2, 720, 47.9, 51.9, 1.0, 19.9,9.3 +6.16,5,a-reso-i1,2022-23,Lynnfield - Lynnfield Preschool,01640005, 19, 9.2, 46, 43.5, 56.5, 0.0, 54.4,21.7 +4.0,4.0,a-reso-i1,2022-23,Lynnfield - Summer Street,01640020, 216, 20.0, 422, 49.3, 50.7, 1.4, 13.3,6.2 +4.96,4.96,a-reso-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 19, 15.2, 48, 50.0, 50.0, 0.0, 0.0,4.2 +4.4,4.4,a-reso-i1,2022-23,Malden - Beebe,01650003, 474, 18.0, 880, 48.3, 51.7, 26.4, 13.8,60.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Malden - Ferryway,01650013, 420, 20.1, 889, 50.6, 49.4, 30.7, 15.9,67.4 +4.46,4.46,a-reso-i1,2022-23,Malden - Forestdale,01650027, 379, 17.7, 594, 45.3, 54.6, 19.2, 25.4,53 +3.62,3.62,a-reso-i1,2022-23,Malden - Linden,01650047, 373, 21.9, 856, 46.3, 53.7, 21.7, 17.6,54.2 +1.6,1.6,a-reso-i1,2022-23,Malden - Malden Early Learning Center,01650049, 30, 32.0, 321, 38.6, 61.4, 0.0, 60.8,50.8 +4.2,4.2,a-reso-i1,2022-23,Malden - Malden High,01650505, 723, 19.0," 1,879", 49.8, 50.1, 18.7, 15.9,62 +4.14,4.14,a-reso-i1,2022-23,Malden - Salemwood,01650057, 527, 19.3," 1,058", 50.3, 49.6, 41.4, 13.6,75.1 +4.16,4.16,a-reso-i1,2022-23,Manchester Essex Regional - Essex Elementary,06980020, 122, 19.2, 228, 58.3, 41.7, 0.9, 19.3,21.9 +5.66,5,a-reso-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 305, 11.7, 416, 49.5, 50.2, 0.2, 9.6,15.4 +4.84,4.84,a-reso-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 177, 15.8, 283, 51.2, 48.8, 0.4, 19.1,13.8 +4.720000000000001,4.72,a-reso-i1,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 171, 16.4, 290, 51.0, 49.0, 0.0, 21.4,8.6 +3.78,3.78,a-reso-i1,2022-23,Mansfield - Everett W Robinson,01670007, 144, 21.1, 761, 50.5, 49.5, 3.3, 14.7,23 +4.58,4.58,a-reso-i1,2022-23,Mansfield - Harold L Qualters Middle,01670035, 520, 17.1, 808, 46.9, 53.1, 1.6, 15.2,21.9 +3.8600000000000003,3.86,a-reso-i1,2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 159, 20.7, 704, 48.6, 51.3, 4.0, 19.0,20.3 +5.2,5,a-reso-i1,2022-23,Mansfield - Mansfield High,01670505, 707, 14.0," 1,103", 47.1, 52.7, 0.9, 15.1,18 +5.7,5,a-reso-i1,2022-23,Mansfield - Roland Green School,01670003, 10, 11.5, 115, 39.1, 60.9, 0.0, 37.4,30.4 +4.96,4.96,a-reso-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 167, 15.2, 289, 41.2, 54.7, 0.4, 53.3,64 +4.38,4.38,a-reso-i1,2022-23,Marblehead - Glover,01680020, 63, 18.1, 331, 44.4, 55.6, 5.7, 21.5,7.9 +3.9799999999999995,3.98,a-reso-i1,2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 79, 20.1, 454, 46.3, 53.7, 8.2, 21.8,17.4 +5.1,5,a-reso-i1,2022-23,Marblehead - Marblehead High,01680505, 583, 14.5, 883, 49.5, 49.6, 2.7, 12.2,12.9 +4.6,4.6,a-reso-i1,2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 273, 17.0, 419, 45.8, 54.2, 3.1, 20.8,13.8 +3.44,3.44,a-reso-i1,2022-23,Marblehead - Village School,01680016, 136, 22.8, 565, 48.3, 51.7, 6.4, 24.3,12.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 90, 18.9, 218, 48.2, 51.8, 11.0, 27.1,23.4 +4.24,4.24,a-reso-i1,2022-23,Marion - Sippican,01690005, 194, 18.8, 410, 47.1, 52.9, 1.5, 21.5,29.5 +4.32,4.32,a-reso-i1,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 738, 18.4," 1,104", 50.5, 49.6, 24.4, 14.5,61.4 +3.9,3.9,a-reso-i1,2022-23,Marlborough - Charles Jaworek School,01700030, 277, 20.5, 712, 48.0, 52.0, 43.8, 16.3,61.7 +5.4799999999999995,5,a-reso-i1,2022-23,Marlborough - Early Childhood Center,01700006, 19, 12.6, 230, 38.7, 60.9, 28.3, 47.0,51.7 +4.0600000000000005,4.06,a-reso-i1,2022-23,Marlborough - Francis J Kane,01700008, 206, 19.7, 511, 48.3, 51.7, 29.6, 17.8,57.7 +3.66,3.66,a-reso-i1,2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 313, 21.7, 843, 45.8, 54.2, 39.9, 14.6,59.8 +5.34,5,a-reso-i1,2022-23,Marlborough - Marlborough High,01700505, 694, 13.3," 1,162", 44.8, 54.9, 29.5, 13.1,59.9 +4.0200000000000005,4.02,a-reso-i1,2022-23,Marlborough - Richer,01700025, 237, 19.9, 579, 50.3, 49.7, 37.8, 13.0,64.8 +4.6,4.6,a-reso-i1,2022-23,Marshfield - Daniel Webster,01710015, 82, 17.0, 381, 43.3, 56.7, 7.6, 29.7,32.3 +4.66,4.66,a-reso-i1,2022-23,Marshfield - Eames Way School,01710005, 62, 16.7, 263, 50.2, 49.8, 1.5, 21.3,16.7 +4.54,4.54,a-reso-i1,2022-23,Marshfield - Furnace Brook Middle,01710310, 502, 17.3, 874, 47.3, 52.8, 1.8, 21.5,19.9 +4.26,4.26,a-reso-i1,2022-23,Marshfield - Gov Edward Winslow,01710020, 89, 18.7, 355, 44.5, 55.5, 0.0, 17.5,14.4 +4.66,4.66,a-reso-i1,2022-23,Marshfield - Marshfield High,01710505, 560, 16.7," 1,177", 50.3, 49.7, 1.1, 16.7,16.2 +4.12,4.12,a-reso-i1,2022-23,Marshfield - Martinson Elementary,01710025, 111, 19.4, 463, 46.4, 53.6, 5.8, 18.8,24.8 +4.5200000000000005,4.52,a-reso-i1,2022-23,Marshfield - South River,01710010, 70, 17.4, 261, 51.0, 49.0, 0.0, 23.0,12.6 +5.26,5,a-reso-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 457, 13.7, 765, 48.8, 51.1, 14.9, 19.1,39.4 +5.76,5,a-reso-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 99, 11.2, 179, 63.1, 36.9, 2.2, 30.7,38 +4.08,4.08,a-reso-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 108, 19.6, 353, 49.9, 50.1, 15.6, 17.6,86.1 +5.279999999999999,5,a-reso-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 579, 13.6, 988, 53.7, 46.2, 0.3, 15.7,9.2 +4.64,4.64,a-reso-i1,2022-23,Masconomet - Masconomet Regional Middle School,07050405, 340, 16.8, 562, 50.2, 49.8, 0.2, 18.5,9.8 +4.12,4.12,a-reso-i1,2022-23,Mashpee - Kenneth Coombs School,01720005, 152, 19.4, 412, 49.0, 51.0, 13.6, 16.5,47.6 +5.32,5,a-reso-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 468, 13.4, 677, 49.2, 50.5, 2.7, 15.2,39.3 +4.04,4.04,a-reso-i1,2022-23,Mashpee - Quashnet School,01720035, 254, 19.8, 413, 44.8, 55.2, 4.6, 17.2,44.1 +4.18,4.18,a-reso-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 406, 19.1," 1,186", 51.6, 48.4, 17.7, 23.0,73.1 +4.5200000000000005,4.52,a-reso-i1,2022-23,Mattapoisett - Center,01730005, 110, 17.4, 238, 49.2, 50.8, 0.4, 19.3,24.4 +3.78,3.78,a-reso-i1,2022-23,Mattapoisett - Old Hammondtown,01730010, 84, 21.1, 188, 47.9, 52.1, 0.0, 21.3,23.4 +4.26,4.26,a-reso-i1,2022-23,Maynard - Fowler School,01740305, 313, 18.7, 462, 47.8, 51.5, 6.1, 19.7,29.2 +4.42,4.42,a-reso-i1,2022-23,Maynard - Green Meadow,01740010, 190, 17.9, 428, 49.8, 50.2, 10.3, 21.5,29.4 +5.4,5,a-reso-i1,2022-23,Maynard - Maynard High,01740505, 199, 13.0, 315, 52.7, 46.0, 5.1, 18.4,25.4 +4.46,4.46,a-reso-i1,2022-23,Medfield - Dale Street,01750005, 249, 17.7, 390, 51.5, 48.5, 0.3, 16.9,10.5 +4.68,4.68,a-reso-i1,2022-23,Medfield - Medfield Senior High,01750505, 397, 16.6, 742, 50.8, 49.2, 0.4, 11.9,7.7 +4.1,4.1,a-reso-i1,2022-23,Medfield - Memorial School,01750003, 180, 19.5, 433, 47.6, 52.4, 2.3, 12.9,9.5 +3.8,3.8,a-reso-i1,2022-23,Medfield - Ralph Wheelock School,01750007, 189, 21.0, 384, 54.7, 45.3, 1.0, 13.5,7.3 +5.0600000000000005,5,a-reso-i1,2022-23,Medfield - Thomas Blake Middle,01750305, 511, 14.7, 584, 45.2, 54.6, 1.0, 17.8,8.7 +4.04,4.04,a-reso-i1,2022-23,Medford - Brooks School,01760130, 156, 19.8, 568, 49.1, 50.9, 3.0, 28.2,18.1 +6.7,5,a-reso-i1,2022-23,Medford - Curtis-Tufts,01760510, 20, 6.5, 19, 47.4, 52.6, 0.0, 100.0,63.2 +4.779999999999999,4.78,a-reso-i1,2022-23,Medford - John J McGlynn Elementary School,01760068, 182, 16.1, 495, 48.9, 50.9, 32.7, 15.6,61.6 +4.82,4.82,a-reso-i1,2022-23,Medford - John J. McGlynn Middle School,01760320, 329, 15.9, 483, 44.1, 55.7, 22.8, 18.8,48.2 +4.66,4.66,a-reso-i1,2022-23,Medford - Madeleine Dugger Andrews,01760315, 339, 16.7, 468, 52.4, 47.2, 0.0, 19.9,36.3 +5.4399999999999995,5,a-reso-i1,2022-23,Medford - Medford High,01760505, 710, 12.8," 1,250", 45.2, 54.2, 11.1, 20.2,44.7 +4.779999999999999,4.78,a-reso-i1,2022-23,Medford - Milton Fuller Roberts,01760150, 199, 16.1, 554, 49.5, 50.4, 8.3, 22.6,29.4 +5.1,5,a-reso-i1,2022-23,Medford - Missituk Elementary School,01760140, 163, 14.5, 404, 49.5, 50.3, 26.7, 24.5,43.6 +3.88,3.88,a-reso-i1,2022-23,Medway - Burke/Memorial Elementary School,01770015, 202, 20.6, 495, 46.3, 53.7, 5.5, 14.6,16.4 +4.3,4.3,a-reso-i1,2022-23,Medway - John D Mc Govern Elementary,01770013, 136, 18.5, 375, 49.9, 50.1, 9.3, 18.7,16.8 +4.92,4.92,a-reso-i1,2022-23,Medway - Medway High,01770505, 306, 15.4, 623, 53.0, 46.4, 1.9, 12.8,14.6 +4.5200000000000005,4.52,a-reso-i1,2022-23,Medway - Medway Middle,01770305, 361, 17.4, 658, 48.9, 51.1, 3.0, 18.8,16.3 +4.8,4.8,a-reso-i1,2022-23,Melrose - Early Childhood Center,01780003, 33, 16.0, 287, 43.6, 56.1, 1.7, 25.4,11.9 +4.04,4.04,a-reso-i1,2022-23,Melrose - Herbert Clark Hoover,01780017, 133, 19.8, 297, 49.5, 50.5, 9.8, 17.2,16.8 +3.66,3.66,a-reso-i1,2022-23,Melrose - Horace Mann,01780025, 106, 21.7, 260, 53.1, 46.5, 0.0, 15.8,2.7 +3.88,3.88,a-reso-i1,2022-23,Melrose - Lincoln,01780020, 176, 20.6, 411, 47.7, 52.3, 21.4, 16.3,29 +4.76,4.76,a-reso-i1,2022-23,Melrose - Melrose High,01780505, 384, 16.2, 918, 50.0, 49.6, 2.8, 15.7,15.9 +3.44,3.44,a-reso-i1,2022-23,Melrose - Melrose Middle,01780305, 485, 22.8, 878, 51.7, 48.1, 3.8, 17.8,17.9 +3.6799999999999997,3.68,a-reso-i1,2022-23,Melrose - Roosevelt,01780035, 168, 21.6, 411, 48.9, 50.6, 6.1, 23.8,13.6 +3.7600000000000002,3.76,a-reso-i1,2022-23,Melrose - Winthrop,01780050, 168, 21.2, 403, 50.1, 49.4, 0.3, 13.4,6.7 +3.9799999999999995,3.98,a-reso-i1,2022-23,Mendon-Upton - Henry P Clough,07100179, 133, 20.1, 358, 46.7, 53.4, 7.5, 15.9,16.2 +3.5200000000000005,3.52,a-reso-i1,2022-23,Mendon-Upton - Memorial School,07100001, 184, 22.4, 529, 51.8, 48.2, 5.7, 14.7,18.5 +4.64,4.64,a-reso-i1,2022-23,Mendon-Upton - Miscoe Hill School,07100015, 389, 16.8, 644, 48.9, 50.9, 2.3, 20.3,16 +5.4399999999999995,5,a-reso-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 372, 12.8, 600, 52.7, 46.8, 2.3, 14.8,17.2 +4.7,4.7,a-reso-i1,2022-23,Methuen - Comprehensive Grammar School,01810050, 597, 16.5," 1,060", 48.6, 51.4, 29.4, 21.6,53.1 +4.08,4.08,a-reso-i1,2022-23,Methuen - Donald P Timony Grammar,01810060, 592, 19.6," 1,274", 47.1, 52.9, 21.8, 22.5,58.3 +4.74,4.74,a-reso-i1,2022-23,Methuen - Marsh Grammar School,01810030, 607, 16.3," 1,072", 42.7, 57.3, 12.1, 24.2,44.7 +4.279999999999999,4.28,a-reso-i1,2022-23,Methuen - Methuen High,01810505," 1,011", 18.6," 1,996", 48.0, 51.9, 14.2, 10.3,48.5 +4.36,4.36,a-reso-i1,2022-23,Methuen - Tenney Grammar School,01810055, 655, 18.2," 1,290", 48.1, 51.9, 19.1, 21.2,63 +4.0200000000000005,4.02,a-reso-i1,2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 261, 19.9, 576, 51.2, 48.8, 3.1, 16.2,52.3 +3.9200000000000004,3.92,a-reso-i1,2022-23,Middleborough - John T. Nichols Middle,01820305, 386, 20.4, 722, 48.2, 51.8, 1.4, 18.1,42 +3.9,3.9,a-reso-i1,2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 270, 20.5, 616, 51.1, 48.9, 2.4, 20.9,35.4 +3.8200000000000003,3.82,a-reso-i1,2022-23,Middleborough - Memorial Early Childhood Center,01820011, 94, 20.9, 308, 47.7, 52.3, 1.6, 27.0,45.1 +4.86,4.86,a-reso-i1,2022-23,Middleborough - Middleborough High,01820505, 466, 15.7, 861, 50.8, 48.9, 2.1, 14.8,35.2 +5.279999999999999,5,a-reso-i1,2022-23,Middleton - Fuller Meadow,01840003, 136, 13.6, 295, 43.4, 56.6, 5.1, 17.6,13.6 +4.66,4.66,a-reso-i1,2022-23,Middleton - Howe-Manning,01840005, 215, 16.7, 438, 53.2, 46.8, 1.4, 24.4,11 +4.2,4.2,a-reso-i1,2022-23,Milford - Brookside,01850065, 189, 19.0, 557, 45.2, 54.8, 44.2, 18.0,60.1 +4.779999999999999,4.78,a-reso-i1,2022-23,Milford - Memorial,01850010, 190, 16.1, 484, 49.0, 51.0, 56.0, 16.1,64.9 +4.58,4.58,a-reso-i1,2022-23,Milford - Milford High,01850505, 637, 17.1," 1,347", 45.2, 54.7, 20.4, 12.6,51.7 +5.84,5,a-reso-i1,2022-23,Milford - Shining Star Early Childhood Center,01850075, 36, 10.8, 190, 41.1, 59.0, 36.8, 58.4,51.6 +3.66,3.66,a-reso-i1,2022-23,Milford - Stacy Middle,01850305, 494, 21.7," 1,065", 49.0, 51.0, 21.4, 16.5,55.9 +4.279999999999999,4.28,a-reso-i1,2022-23,Milford - Woodland,01850090, 396, 18.6, 968, 47.7, 52.2, 29.2, 18.1,57.6 +4.18,4.18,a-reso-i1,2022-23,Millbury - Elmwood Street,01860017, 155, 19.1, 448, 46.2, 53.8, 5.8, 23.4,32.4 +4.8,4.8,a-reso-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 395, 16.0, 749, 47.0, 51.8, 5.1, 22.2,37.5 +4.08,4.08,a-reso-i1,2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 212, 19.6, 469, 47.8, 52.2, 5.5, 18.3,35.4 +3.8600000000000003,3.86,a-reso-i1,2022-23,Millis - Clyde F Brown,01870005, 225, 20.7, 624, 49.5, 50.5, 4.8, 20.4,18.3 +5.54,5,a-reso-i1,2022-23,Millis - Millis High School,01870505, 171, 12.3, 314, 52.2, 46.5, 1.3, 12.1,18.5 +4.7,4.7,a-reso-i1,2022-23,Millis - Millis Middle,01870020, 180, 16.5, 273, 53.9, 46.2, 1.5, 17.2,18.7 +8.0,5,a-reso-i1,2022-23,Millis - TIES,01870515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.42,4.42,a-reso-i1,2022-23,Milton - Charles S Pierce Middle,01890410, 533, 17.9, 951, 51.4, 48.6, 1.5, 17.4,13.6 +3.8600000000000003,3.86,a-reso-i1,2022-23,Milton - Collicot,01890005, 278, 20.7, 585, 52.0, 48.0, 1.9, 16.1,7.7 +3.6399999999999997,3.64,a-reso-i1,2022-23,Milton - Cunningham School,01890007, 253, 21.8, 638, 49.1, 50.9, 3.8, 24.3,11 +3.4799999999999995,3.48,a-reso-i1,2022-23,Milton - Glover,01890010, 291, 22.6, 631, 54.7, 45.3, 3.5, 14.4,8.9 +4.62,4.62,a-reso-i1,2022-23,Milton - Milton High,01890505, 491, 16.9," 1,066", 48.8, 50.5, 2.3, 19.9,17.1 +3.44,3.44,a-reso-i1,2022-23,Milton - Tucker,01890020, 196, 22.8, 465, 45.4, 54.4, 4.7, 20.2,26.2 +5.38,5,a-reso-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 548, 13.1, 685, 36.5, 61.3, 1.0, 28.9,19.6 +4.58,4.58,a-reso-i1,2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 64, 17.1, 278, 53.2, 46.8, 0.0, 21.6,42.1 +5.4399999999999995,5,a-reso-i1,2022-23,Mohawk Trail - Colrain Central,07170010, 32, 12.8, 105, 44.8, 55.2, 1.9, 32.4,55.2 +6.08,5,a-reso-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 269, 9.6, 284, 50.4, 48.6, 0.4, 32.0,44 +5.14,5,a-reso-i1,2022-23,Mohawk Trail - Sanderson Academy,07170020, 35, 14.3, 137, 49.6, 50.4, 0.7, 16.8,40.2 +4.84,4.84,a-reso-i1,2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 119, 15.8, 145, 44.1, 55.9, 7.6, 18.6,47.6 +4.54,4.54,a-reso-i1,2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 334, 17.3, 493, 42.0, 58.0, 5.1, 24.8,39 +5.220000000000001,5,a-reso-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 470, 13.9, 706, 53.0, 46.6, 3.1, 14.2,34.1 +4.92,4.92,a-reso-i1,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 378, 15.4, 453, 45.5, 54.3, 3.1, 23.2,40 +4.720000000000001,4.72,a-reso-i1,2022-23,Monson - Granite Valley School,01910030, 259, 16.4, 408, 49.5, 50.5, 1.0, 27.0,41.7 +5.62,5,a-reso-i1,2022-23,Monson - Monson High School,01910505, 210, 11.9, 295, 55.6, 43.7, 0.7, 25.8,40 +5.08,5,a-reso-i1,2022-23,Monson - Quarry Hill Community School,01910010, 62, 14.6, 131, 55.0, 45.0, 0.0, 29.0,38.9 +4.42,4.42,a-reso-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 584, 17.9," 1,393", 48.5, 50.3, 0.5, 17.0,38 +4.84,4.84,a-reso-i1,2022-23,Mount Greylock - Lanesborough Elementary,07150005, 132, 15.8, 234, 50.9, 49.2, 3.9, 20.1,41.5 +5.24,5,a-reso-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 374, 13.8, 542, 50.9, 48.2, 1.1, 17.5,23.4 +4.88,4.88,a-reso-i1,2022-23,Mount Greylock - Williamstown Elementary,07150010, 242, 15.6, 440, 45.5, 53.9, 3.6, 13.9,23.6 +2.88,2.88,a-reso-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 729, 25.6," 1,605", 51.7, 48.4, 2.2, 10.5,29.2 +5.18,5,a-reso-i1,2022-23,Nahant - Johnson,01960010, 70, 14.1, 154, 41.6, 58.4, 0.0, 22.7,22.7 +4.2,4.2,a-reso-i1,2022-23,Nantucket - Cyrus Peirce,01970010, 185, 19.0, 393, 47.6, 52.4, 12.5, 17.3,39.7 +4.54,4.54,a-reso-i1,2022-23,Nantucket - Nantucket Elementary,01970005, 243, 17.3, 412, 52.4, 47.6, 25.7, 21.1,45.9 +4.9,4.9,a-reso-i1,2022-23,Nantucket - Nantucket High,01970505, 314, 15.5, 595, 48.2, 51.8, 12.8, 11.6,34.1 +4.42,4.42,a-reso-i1,2022-23,Nantucket - Nantucket Intermediate School,01970020, 218, 17.9, 337, 49.0, 51.0, 14.0, 21.1,38.6 +3.62,3.62,a-reso-i1,2022-23,Narragansett - Narragansett Middle,07200305, 162, 21.9, 365, 49.0, 51.0, 0.8, 22.7,34.3 +4.8,4.8,a-reso-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 249, 16.0, 464, 43.8, 54.5, 1.1, 17.9,38.4 +3.6,3.6,a-reso-i1,2022-23,Narragansett - Templeton Elementary School,07200020, 257, 22.0, 657, 48.0, 52.1, 1.4, 19.0,40.9 +4.18,4.18,a-reso-i1,2022-23,Nashoba - Center School,07250020, 172, 19.1, 496, 45.8, 54.2, 4.0, 21.6,9.1 +4.04,4.04,a-reso-i1,2022-23,Nashoba - Florence Sawyer School,07250025, 263, 19.8, 742, 49.2, 50.8, 1.5, 17.4,8.2 +4.18,4.18,a-reso-i1,2022-23,Nashoba - Hale,07250310, 112, 19.1, 271, 53.5, 46.5, 0.4, 22.1,7.4 +4.42,4.42,a-reso-i1,2022-23,Nashoba - Luther Burbank Middle School,07250305, 125, 17.9, 239, 49.8, 50.2, 4.2, 19.3,23 +4.04,4.04,a-reso-i1,2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 137, 19.8, 479, 46.8, 53.2, 4.0, 21.5,21.7 +5.38,5,a-reso-i1,2022-23,Nashoba - Nashoba Regional,07250505, 500, 13.1, 831, 49.2, 50.5, 1.4, 13.5,11.4 +5.220000000000001,5,a-reso-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 359, 13.9, 729, 37.6, 60.1, 0.6, 32.1,32.7 +4.2,4.2,a-reso-i1,2022-23,Natick - Bennett-Hemenway,01980005, 179, 19.0, 484, 48.6, 51.5, 4.8, 21.1,9.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Natick - Brown,01980010, 181, 19.7, 501, 45.3, 54.7, 13.6, 8.8,20 +3.84,3.84,a-reso-i1,2022-23,Natick - J F Kennedy Middle School,01980305, 465, 20.8, 901, 45.6, 54.1, 4.3, 17.7,14.9 +4.6,4.6,a-reso-i1,2022-23,Natick - Johnson,01980031, 56, 17.0, 136, 45.6, 53.7, 0.0, 16.2,15.4 +4.46,4.46,a-reso-i1,2022-23,Natick - Lilja Elementary,01980035, 166, 17.7, 416, 49.8, 50.2, 7.0, 16.6,17.3 +3.84,3.84,a-reso-i1,2022-23,Natick - Memorial,01980043, 147, 20.8, 436, 50.5, 49.5, 0.2, 12.8,6 +4.84,4.84,a-reso-i1,2022-23,Natick - Natick High,01980505, 953, 15.8," 1,756", 46.4, 53.0, 2.7, 20.8,13.8 +4.26,4.26,a-reso-i1,2022-23,Natick - Wilson Middle,01980310, 443, 18.7, 780, 51.0, 48.9, 0.5, 22.7,14.7 +5.720000000000001,5,a-reso-i1,2022-23,Nauset - Nauset Regional High,06600505, 539, 11.4, 766, 54.3, 45.2, 0.9, 16.2,26.5 +4.5600000000000005,4.56,a-reso-i1,2022-23,Nauset - Nauset Regional Middle,06600305, 305, 17.2, 538, 51.1, 48.9, 1.9, 19.5,33.3 +3.94,3.94,a-reso-i1,2022-23,Needham - Broadmeadow,01990005, 125, 20.3, 508, 46.1, 53.9, 2.6, 16.7,4.7 +4.36,4.36,a-reso-i1,2022-23,Needham - High Rock School,01990410, 310, 18.2, 449, 49.0, 51.0, 1.6, 22.1,9.1 +4.5,4.5,a-reso-i1,2022-23,Needham - John Eliot,01990020, 120, 17.5, 421, 49.4, 50.6, 7.1, 16.6,15.4 +4.720000000000001,4.72,a-reso-i1,2022-23,Needham - Needham High,01990505, 738, 16.4," 1,641", 50.7, 48.4, 1.2, 17.6,7.6 +4.08,4.08,a-reso-i1,2022-23,Needham - Newman Elementary,01990050, 165, 19.6, 715, 46.3, 53.6, 5.3, 23.5,8.3 +4.68,4.68,a-reso-i1,2022-23,Needham - Pollard Middle,01990405, 660, 16.6, 822, 51.2, 48.7, 2.6, 18.9,7.5 +3.7399999999999998,3.74,a-reso-i1,2022-23,Needham - Sunita L. Williams Elementary,01990035, 125, 21.3, 532, 46.2, 53.8, 6.8, 16.5,8.7 +4.1,4.1,a-reso-i1,2022-23,Needham - William Mitchell,01990040, 115, 19.5, 449, 46.8, 53.2, 3.6, 18.9,6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 409, 15.3, 800, 48.1, 51.9, 11.0, 27.9,64.1 +3.94,3.94,a-reso-i1,2022-23,New Bedford - Abraham Lincoln,02010095, 288, 20.3, 649, 47.0, 53.0, 36.4, 13.7,86.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,New Bedford - Alfred J Gomes,02010063, 304, 17.4, 518, 48.1, 51.9, 56.2, 20.9,88.2 +4.279999999999999,4.28,a-reso-i1,2022-23,New Bedford - Betsey B Winslow,02010140, 104, 18.6, 232, 46.1, 53.5, 6.5, 17.2,64.7 +3.8200000000000003,3.82,a-reso-i1,2022-23,New Bedford - Carlos Pacheco,02010105, 130, 20.9, 348, 52.6, 47.4, 33.9, 21.6,88.8 +4.96,4.96,a-reso-i1,2022-23,New Bedford - Casimir Pulaski,02010123, 330, 15.2, 578, 44.1, 55.9, 7.6, 30.6,62.6 +5.0600000000000005,5,a-reso-i1,2022-23,New Bedford - Charles S Ashley,02010010, 153, 14.7, 276, 47.5, 52.5, 17.8, 22.1,72.1 +4.0200000000000005,4.02,a-reso-i1,2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 114, 19.9, 277, 53.1, 46.9, 16.3, 25.6,76.9 +5.4799999999999995,5,a-reso-i1,2022-23,New Bedford - Ellen R Hathaway,02010075, 131, 12.6, 251, 47.8, 52.2, 39.4, 22.3,87.3 +4.6,4.6,a-reso-i1,2022-23,New Bedford - Elwyn G Campbell,02010020, 107, 17.0, 317, 43.5, 56.5, 27.1, 38.2,79.2 +4.74,4.74,a-reso-i1,2022-23,New Bedford - Hayden/McFadden,02010078, 377, 16.3, 703, 49.5, 50.5, 46.1, 26.5,89.6 +4.14,4.14,a-reso-i1,2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 172, 19.3, 404, 47.3, 52.5, 42.6, 21.8,90.4 +4.220000000000001,4.22,a-reso-i1,2022-23,New Bedford - James B Congdon,02010040, 162, 18.9, 340, 47.9, 52.1, 28.8, 16.5,84.4 +5.279999999999999,5,a-reso-i1,2022-23,New Bedford - Jireh Swift,02010130, 117, 13.6, 252, 54.0, 46.0, 21.0, 21.4,73 +4.32,4.32,a-reso-i1,2022-23,New Bedford - John Avery Parker,02010115, 98, 18.4, 252, 50.4, 49.6, 31.0, 17.9,85.3 +4.720000000000001,4.72,a-reso-i1,2022-23,New Bedford - John B Devalles,02010050, 145, 16.4, 292, 51.7, 48.3, 42.1, 18.8,90.4 +5.08,5,a-reso-i1,2022-23,New Bedford - Keith Middle School,02010405, 506, 14.6, 865, 48.2, 51.7, 11.0, 20.9,79.8 +4.38,4.38,a-reso-i1,2022-23,New Bedford - New Bedford High,02010505," 1,384", 18.1," 3,007", 46.8, 53.0, 28.4, 17.7,78.5 +3.9,3.9,a-reso-i1,2022-23,New Bedford - Normandin Middle School,02010410, 550, 20.5," 1,066", 49.3, 50.7, 15.1, 20.2,71.4 +4.64,4.64,a-reso-i1,2022-23,New Bedford - Renaissance Community Innovation School,02010124, 58, 16.8, 131, 48.9, 51.2, 59.5, 18.3,90.1 +4.86,4.86,a-reso-i1,2022-23,New Bedford - Roosevelt Middle School,02010415, 426, 15.7, 816, 46.3, 53.7, 23.8, 25.4,85.4 +5.32,5,a-reso-i1,2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 375, 13.4, 623, 41.6, 58.4, 17.2, 42.2,84.4 +4.68,4.68,a-reso-i1,2022-23,New Bedford - Thomas R Rodman,02010125, 97, 16.6, 198, 49.0, 51.0, 19.7, 21.7,80.8 +6.74,5,a-reso-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 152, 6.3, 108, 34.3, 63.9, 10.2, 99.1,89.8 +5.720000000000001,5,a-reso-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 135, 11.4, 229, 33.6, 66.4, 17.0, 32.3,92.6 +4.0600000000000005,4.06,a-reso-i1,2022-23,New Bedford - William H Taylor,02010135, 98, 19.7, 251, 50.6, 49.4, 16.7, 24.7,68.9 +3.3600000000000003,3.36,a-reso-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 195, 23.2, 692, 52.8, 47.3, 19.8, 12.0,58.4 +4.5,4.5,a-reso-i1,2022-23,New Salem-Wendell - Swift River,07280015, 88, 17.5, 140, 48.6, 51.4, 0.0, 29.3,42.1 +4.0200000000000005,4.02,a-reso-i1,2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 176, 19.9, 286, 57.3, 42.7, 2.8, 25.5,15 +4.4399999999999995,4.44,a-reso-i1,2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 237, 17.8, 589, 49.6, 50.4, 6.5, 20.4,12.4 +4.8,4.8,a-reso-i1,2022-23,Newburyport - Newburyport High,02040505, 725, 16.0, 822, 50.9, 49.2, 2.6, 17.6,11.6 +4.76,4.76,a-reso-i1,2022-23,Newburyport - Rupert A Nock Middle,02040305, 398, 16.2, 486, 49.0, 50.8, 3.9, 22.6,11.9 +4.34,4.34,a-reso-i1,2022-23,Newton - A E Angier,02070005, 146, 18.3, 377, 48.3, 50.4, 8.5, 18.3,8 +4.38,4.38,a-reso-i1,2022-23,Newton - Bigelow Middle,02070305, 271, 18.1, 450, 51.3, 48.0, 7.1, 16.7,19.6 +4.12,4.12,a-reso-i1,2022-23,Newton - Bowen,02070015, 132, 19.4, 359, 49.3, 50.4, 10.6, 17.0,10.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Newton - C C Burr,02070020, 132, 19.7, 365, 48.2, 51.0, 12.3, 18.4,14.8 +3.78,3.78,a-reso-i1,2022-23,Newton - Cabot,02070025, 152, 21.1, 452, 50.0, 49.8, 8.9, 15.9,12.8 +4.2,4.2,a-reso-i1,2022-23,Newton - Charles E Brown Middle,02070310, 441, 19.0, 763, 47.2, 51.8, 3.9, 17.3,8.5 +4.0200000000000005,4.02,a-reso-i1,2022-23,Newton - Countryside,02070040, 139, 19.9, 387, 47.6, 52.5, 12.9, 20.2,12.9 +4.04,4.04,a-reso-i1,2022-23,Newton - F A Day Middle,02070315, 506, 19.8, 937, 49.7, 50.2, 2.7, 15.8,14.2 +4.0200000000000005,4.02,a-reso-i1,2022-23,Newton - Franklin,02070055, 132, 19.9, 367, 54.2, 45.5, 14.4, 14.4,13.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Newton - Horace Mann,02070075, 132, 19.7, 366, 46.2, 53.6, 9.3, 15.6,16.1 +4.54,4.54,a-reso-i1,2022-23,Newton - John Ward,02070120, 80, 17.3, 196, 46.9, 53.1, 6.6, 16.3,4.6 +4.26,4.26,a-reso-i1,2022-23,Newton - Lincoln-Eliot,02070070, 132, 18.7, 341, 44.9, 54.8, 21.1, 20.5,30.8 +4.42,4.42,a-reso-i1,2022-23,Newton - Mason-Rice,02070080, 132, 17.9, 333, 51.7, 48.1, 10.5, 14.7,5.4 +4.14,4.14,a-reso-i1,2022-23,Newton - Memorial Spaulding,02070105, 146, 19.3, 395, 52.7, 47.3, 13.2, 16.5,10.6 +5.68,5,a-reso-i1,2022-23,Newton - Newton Early Childhood Program,02070108, 24, 11.6, 221, 36.2, 63.8, 5.0, 66.5,17.2 +5.0600000000000005,5,a-reso-i1,2022-23,Newton - Newton North High,02070505," 1,142", 14.7," 2,119", 48.8, 50.5, 3.8, 16.2,16.5 +5.26,5,a-reso-i1,2022-23,Newton - Newton South High,02070510," 1,060", 13.7," 1,846", 47.7, 51.5, 2.8, 12.8,12.3 +4.92,4.92,a-reso-i1,2022-23,Newton - Oak Hill Middle,02070320, 517, 15.4, 667, 49.6, 50.1, 6.6, 22.9,13 +4.4399999999999995,4.44,a-reso-i1,2022-23,Newton - Peirce,02070100, 96, 17.8, 241, 48.6, 51.5, 7.1, 19.5,14.9 +4.46,4.46,a-reso-i1,2022-23,Newton - Underwood,02070115, 90, 17.7, 223, 54.3, 45.7, 12.6, 11.7,17.9 +4.3,4.3,a-reso-i1,2022-23,Newton - Williams,02070125, 90, 18.5, 233, 47.6, 52.4, 13.7, 20.6,13.3 +4.16,4.16,a-reso-i1,2022-23,Newton - Zervas,02070130, 153, 19.2, 411, 48.7, 51.3, 14.4, 15.8,12.9 +3.7399999999999998,3.74,a-reso-i1,2022-23,Norfolk - Freeman-Kennedy School,02080005, 174, 21.3, 519, 49.3, 50.7, 2.7, 19.7,6.7 +3.3600000000000003,3.36,a-reso-i1,2022-23,Norfolk - H Olive Day,02080015, 95, 23.2, 489, 48.1, 51.9, 2.7, 18.8,6.8 +4.84,4.84,a-reso-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 511, 15.8, 585, 71.5, 27.0, 0.2, 21.9,18.8 +5.54,5,a-reso-i1,2022-23,North Adams - Brayton,02090035, 124, 12.3, 232, 39.7, 60.3, 0.9, 36.6,75.4 +5.3,5,a-reso-i1,2022-23,North Adams - Colegrove Park Elementary,02090008, 123, 13.5, 252, 45.2, 54.4, 1.2, 32.9,75.8 +5.34,5,a-reso-i1,2022-23,North Adams - Drury High,02090505, 265, 13.3, 492, 53.9, 45.9, 0.4, 23.2,66.1 +4.62,4.62,a-reso-i1,2022-23,North Adams - Greylock,02090015, 108, 16.9, 277, 49.8, 50.2, 1.1, 26.7,72.6 +4.34,4.34,a-reso-i1,2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 157, 18.3, 447, 46.1, 53.9, 4.7, 31.1,23.9 +3.8200000000000003,3.82,a-reso-i1,2022-23,North Andover - Annie L Sargent School,02110018, 199, 20.9, 467, 49.0, 51.0, 1.7, 18.4,10.7 +4.720000000000001,4.72,a-reso-i1,2022-23,North Andover - Atkinson,02110001, 150, 16.4, 276, 48.9, 51.1, 11.6, 26.5,43.5 +4.4,4.4,a-reso-i1,2022-23,North Andover - Franklin,02110010, 190, 18.0, 384, 45.3, 54.4, 3.4, 20.8,15.4 +5.0,5.0,a-reso-i1,2022-23,North Andover - Kittredge,02110015, 134, 15.0, 228, 46.9, 52.6, 6.6, 18.9,14.9 +4.9,4.9,a-reso-i1,2022-23,North Andover - North Andover High,02110505, 811, 15.5," 1,337", 49.5, 50.3, 1.5, 15.6,23.5 +3.5200000000000005,3.52,a-reso-i1,2022-23,North Andover - North Andover Middle,02110305, 753, 22.4," 1,068", 45.9, 53.8, 2.7, 18.8,24.2 +3.84,3.84,a-reso-i1,2022-23,North Andover - Thomson,02110020, 135, 20.8, 313, 47.0, 53.0, 5.8, 21.7,37.1 +3.4,3.4,a-reso-i1,2022-23,North Attleborough - Amvet Boulevard,02120007, 123, 23.0, 410, 51.0, 49.0, 5.4, 15.4,18.5 +3.5,3.5,a-reso-i1,2022-23,North Attleborough - Community,02120030, 89, 22.5, 293, 47.4, 52.2, 9.9, 31.7,54.6 +4.14,4.14,a-reso-i1,2022-23,North Attleborough - Falls,02120010, 82, 19.3, 233, 43.8, 55.8, 3.4, 19.3,18 +3.54,3.54,a-reso-i1,2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 164, 22.3, 534, 44.9, 54.9, 3.2, 22.1,21.5 +4.8,4.8,a-reso-i1,2022-23,North Attleborough - North Attleboro High,02120505, 605, 16.0," 1,119", 50.9, 48.4, 1.2, 12.6,22.3 +5.74,5,a-reso-i1,2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 85, 11.3, 192, 43.2, 56.8, 6.8, 53.7,36.5 +4.36,4.36,a-reso-i1,2022-23,North Attleborough - North Attleborough Middle,02120305, 533, 18.2, 965, 47.6, 52.4, 1.5, 20.6,24.2 +3.7399999999999998,3.74,a-reso-i1,2022-23,North Attleborough - Roosevelt Avenue,02120015, 82, 21.3, 254, 48.0, 52.0, 3.2, 20.5,20.5 +4.220000000000001,4.22,a-reso-i1,2022-23,North Brookfield - North Brookfield Elementary,02150015, 78, 18.9, 301, 50.5, 49.5, 5.7, 23.3,49.5 +5.88,5,a-reso-i1,2022-23,North Brookfield - North Brookfield High,02150505, 86, 10.6, 145, 51.0, 49.0, 4.8, 27.6,57.9 +4.16,4.16,a-reso-i1,2022-23,North Middlesex - Ashby Elementary,07350010, 71, 19.2, 136, 41.9, 58.1, 4.4, 25.0,32.4 +3.9,3.9,a-reso-i1,2022-23,North Middlesex - Hawthorne Brook,07350030, 264, 20.5, 473, 55.6, 44.4, 0.9, 24.5,31.9 +4.0200000000000005,4.02,a-reso-i1,2022-23,North Middlesex - Nissitissit Middle School,07350310, 291, 19.9, 494, 45.8, 54.3, 0.4, 27.7,28.3 +4.7,4.7,a-reso-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 383, 16.5, 759, 47.0, 52.7, 1.1, 24.6,22.4 +3.8200000000000003,3.82,a-reso-i1,2022-23,North Middlesex - Spaulding Memorial,07350005, 201, 20.9, 418, 50.5, 49.5, 3.4, 20.1,25.6 +6.9,5,a-reso-i1,2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 30, 5.5, 123, 36.6, 63.4, 4.9, 45.5,38.2 +3.16,3.16,a-reso-i1,2022-23,North Middlesex - Varnum Brook,07350035, 262, 24.2, 630, 50.8, 49.2, 4.8, 21.6,29.4 +3.96,3.96,a-reso-i1,2022-23,North Reading - E Ethel Little School,02170003, 166, 20.2, 329, 49.2, 50.8, 0.0, 19.5,14.9 +4.16,4.16,a-reso-i1,2022-23,North Reading - J Turner Hood,02170010, 206, 19.2, 386, 49.5, 50.5, 1.6, 23.1,11.4 +3.34,3.34,a-reso-i1,2022-23,North Reading - L D Batchelder,02170005, 210, 23.3, 464, 46.3, 53.7, 1.3, 17.2,7.5 +4.7,4.7,a-reso-i1,2022-23,North Reading - North Reading High,02170505, 302, 16.5, 647, 51.9, 47.5, 0.2, 17.5,10.8 +4.9,4.9,a-reso-i1,2022-23,North Reading - North Reading Middle,02170305, 369, 15.5, 542, 47.2, 52.8, 0.7, 20.3,13.7 +4.34,4.34,a-reso-i1,2022-23,Northampton - Bridge Street,02100005, 86, 18.3, 286, 49.3, 50.4, 9.8, 30.1,51.8 +4.1,4.1,a-reso-i1,2022-23,Northampton - Jackson Street,02100020, 92, 19.5, 290, 45.9, 53.8, 6.2, 19.0,26.9 +5.18,5,a-reso-i1,2022-23,Northampton - John F Kennedy Middle School,02100410, 491, 14.1, 600, 45.7, 53.2, 3.5, 23.8,30.5 +4.5,4.5,a-reso-i1,2022-23,Northampton - Leeds,02100025, 94, 17.5, 306, 45.4, 54.3, 5.6, 30.1,36.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Northampton - Northampton High,02100505, 429, 15.3, 904, 49.2, 49.1, 3.5, 18.9,25.3 +4.08,4.08,a-reso-i1,2022-23,Northampton - R. K. Finn Ryan Road,02100029, 73, 19.6, 235, 46.4, 52.8, 4.3, 18.7,31.5 +5.5200000000000005,5,a-reso-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 464, 12.4, 571, 39.8, 58.8, 2.5, 39.1,39.1 +5.220000000000001,5,a-reso-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 752, 13.9," 1,224", 52.5, 47.4, 1.8, 16.1,13.2 +4.16,4.16,a-reso-i1,2022-23,Northborough - Fannie E Proctor,02130015, 54, 19.2, 249, 49.0, 51.0, 6.8, 16.9,22.5 +4.16,4.16,a-reso-i1,2022-23,Northborough - Lincoln Street,02130003, 63, 19.2, 292, 46.9, 53.1, 6.2, 20.2,19.2 +4.14,4.14,a-reso-i1,2022-23,Northborough - Marguerite E Peaslee,02130014, 58, 19.3, 265, 47.2, 52.8, 6.0, 26.0,21.5 +3.84,3.84,a-reso-i1,2022-23,Northborough - Marion E Zeh,02130020, 55, 20.8, 250, 48.0, 52.0, 6.0, 28.0,15.6 +4.76,4.76,a-reso-i1,2022-23,Northborough - Robert E. Melican Middle School,02130305, 438, 16.2, 552, 45.3, 54.7, 3.1, 24.6,19.2 +4.2,4.2,a-reso-i1,2022-23,Northbridge - Northbridge Elementary School,02140001, 258, 19.0, 955, 45.9, 54.1, 3.1, 26.3,41.4 +5.0200000000000005,5,a-reso-i1,2022-23,Northbridge - Northbridge High,02140505, 253, 14.9, 507, 45.8, 54.2, 1.8, 15.4,33.9 +4.279999999999999,4.28,a-reso-i1,2022-23,Northbridge - Northbridge Middle,02140305, 300, 18.6, 486, 53.9, 46.1, 2.7, 18.5,40.7 +4.32,4.32,a-reso-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 948, 18.4," 1,294", 45.1, 54.5, 3.5, 25.0,50.7 +4.96,4.96,a-reso-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 428, 15.2, 535, 38.7, 61.1, 0.0, 15.3,42.4 +3.9799999999999995,3.98,a-reso-i1,2022-23,Norton - Henri A. Yelle,02180060, 200, 20.1, 334, 49.4, 50.6, 2.7, 26.4,28.1 +4.08,4.08,a-reso-i1,2022-23,Norton - J C Solmonese,02180015, 206, 19.6, 524, 49.8, 50.2, 3.1, 24.8,23.7 +3.9200000000000004,3.92,a-reso-i1,2022-23,Norton - L G Nourse Elementary,02180010, 137, 20.4, 293, 45.7, 54.3, 3.1, 25.9,36.2 +5.220000000000001,5,a-reso-i1,2022-23,Norton - Norton High,02180505, 412, 13.9, 684, 51.0, 48.4, 1.9, 17.5,21.4 +4.779999999999999,4.78,a-reso-i1,2022-23,Norton - Norton Middle,02180305, 377, 16.1, 563, 50.6, 49.4, 2.0, 21.5,28.2 +3.96,3.96,a-reso-i1,2022-23,Norwell - Grace Farrar Cole,02190005, 128, 20.2, 524, 45.4, 54.6, 1.2, 17.0,7.1 +5.42,5,a-reso-i1,2022-23,Norwell - Norwell High,02190505, 332, 12.9, 597, 47.1, 52.9, 0.0, 10.2,7 +4.8,4.8,a-reso-i1,2022-23,Norwell - Norwell Middle School,02190405, 505, 16.0, 498, 47.6, 52.4, 0.2, 16.3,6.6 +3.84,3.84,a-reso-i1,2022-23,Norwell - William G Vinal,02190020, 128, 20.8, 539, 48.2, 51.4, 0.7, 16.9,3.9 +4.64,4.64,a-reso-i1,2022-23,Norwood - Balch,02200005, 133, 16.8, 303, 51.8, 48.2, 40.3, 22.1,61.4 +4.4,4.4,a-reso-i1,2022-23,Norwood - Charles J Prescott,02200025, 97, 18.0, 245, 53.1, 46.9, 20.0, 17.1,35.1 +4.12,4.12,a-reso-i1,2022-23,Norwood - Cornelius M Callahan,02200010, 90, 19.4, 234, 49.2, 50.9, 14.1, 29.9,44.9 +4.32,4.32,a-reso-i1,2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 388, 18.4, 806, 51.1, 48.9, 11.0, 27.1,43.8 +4.68,4.68,a-reso-i1,2022-23,Norwood - F A Cleveland,02200015, 138, 16.6, 312, 48.7, 51.3, 14.7, 26.0,28.9 +4.24,4.24,a-reso-i1,2022-23,Norwood - George F. Willett,02200075, 67, 18.8, 436, 46.8, 53.2, 24.5, 31.2,39.5 +4.5200000000000005,4.52,a-reso-i1,2022-23,Norwood - John P Oldham,02200020, 113, 17.4, 271, 48.0, 52.0, 12.9, 30.6,38 +5.34,5,a-reso-i1,2022-23,Norwood - Norwood High,02200505, 535, 13.3, 964, 50.8, 48.7, 8.5, 20.2,37.7 +4.84,4.84,a-reso-i1,2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 202, 15.8, 451, 47.2, 52.8, 22.6, 24.6,42.4 +5.16,5,a-reso-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 289, 14.2, 556, 35.8, 63.9, 0.0, 20.5,26.3 +5.18,5,a-reso-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 370, 14.1, 626, 49.2, 50.8, 0.2, 13.7,20.1 +4.4399999999999995,4.44,a-reso-i1,2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 297, 17.8, 426, 49.1, 50.5, 0.0, 17.6,25.4 +4.0200000000000005,4.02,a-reso-i1,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 58, 19.9, 360, 45.3, 54.7, 4.2, 18.1,38.9 +3.56,3.56,a-reso-i1,2022-23,Orange - Dexter Park,02230010, 113, 22.2, 282, 47.9, 52.1, 0.4, 32.6,75.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Orange - Fisher Hill,02230015, 108, 16.4, 223, 45.3, 54.7, 1.4, 21.1,67.3 +5.6,5,a-reso-i1,2022-23,Orleans - Orleans Elementary,02240005, 144, 12.0, 145, 54.5, 45.5, 2.1, 17.9,41.4 +4.58,4.58,a-reso-i1,2022-23,Oxford - Alfred M Chaffee,02260010, 70, 17.1, 298, 54.0, 46.0, 7.4, 21.1,45.6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Oxford - Clara Barton,02260005, 62, 15.3, 283, 50.5, 49.5, 3.5, 35.7,46.3 +5.12,5,a-reso-i1,2022-23,Oxford - Oxford High,02260505, 213, 14.4, 387, 50.1, 49.1, 2.1, 18.1,42.6 +3.9799999999999995,3.98,a-reso-i1,2022-23,Oxford - Oxford Middle,02260405, 215, 20.1, 515, 46.4, 53.6, 2.3, 17.9,47.4 +5.08,5,a-reso-i1,2022-23,Palmer - Old Mill Pond,02270008, 624, 14.6, 610, 47.2, 52.8, 4.1, 23.3,60.3 +5.4,5,a-reso-i1,2022-23,Palmer - Palmer High,02270505, 310, 13.0, 533, 46.3, 53.5, 4.1, 18.6,59.1 +5.4399999999999995,5,a-reso-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 388, 12.8, 627, 39.4, 60.1, 0.6, 23.6,41.3 +4.26,4.26,a-reso-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 163, 18.7, 295, 55.3, 44.4, 8.8, 23.1,86.8 +4.779999999999999,4.78,a-reso-i1,2022-23,Peabody - Captain Samuel Brown,02290005, 189, 16.1, 379, 46.4, 53.3, 5.0, 39.6,40.4 +4.3,4.3,a-reso-i1,2022-23,Peabody - Center,02290015, 185, 18.5, 425, 50.1, 49.9, 23.5, 15.3,49.7 +3.8,3.8,a-reso-i1,2022-23,Peabody - J Henry Higgins Middle,02290305, 744, 21.0," 1,372", 49.9, 50.0, 12.4, 21.5,45.7 +3.78,3.78,a-reso-i1,2022-23,Peabody - John E Burke,02290007, 97, 21.1, 254, 52.4, 47.6, 3.9, 23.6,19.7 +4.82,4.82,a-reso-i1,2022-23,Peabody - John E. McCarthy,02290016, 149, 15.9, 362, 49.7, 50.3, 7.5, 32.0,43.4 +6.5200000000000005,5,a-reso-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 75, 7.4, 125, 56.8, 42.4, 3.2, 24.8,70.4 +4.88,4.88,a-reso-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 728, 15.6," 1,476", 48.0, 51.9, 10.9, 16.3,47.2 +3.94,3.94,a-reso-i1,2022-23,Peabody - South Memorial,02290035, 177, 20.3, 487, 51.5, 48.5, 8.0, 13.6,36.6 +3.66,3.66,a-reso-i1,2022-23,Peabody - Thomas Carroll,02290010, 219, 21.7, 591, 50.6, 49.4, 31.0, 11.8,61.8 +4.7,4.7,a-reso-i1,2022-23,Peabody - West Memorial,02290045, 117, 16.5, 260, 51.5, 48.5, 0.8, 20.4,19.6 +4.46,4.46,a-reso-i1,2022-23,Peabody - William A Welch Sr,02290027, 104, 17.7, 238, 49.6, 50.4, 37.0, 11.3,70.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Pelham - Pelham Elementary,02300005, 44, 17.8, 132, 39.4, 59.1, 2.3, 22.7,21.2 +4.16,4.16,a-reso-i1,2022-23,Pembroke - Bryantville Elementary,02310003, 165, 19.2, 434, 44.7, 55.3, 3.7, 19.4,23 +4.26,4.26,a-reso-i1,2022-23,Pembroke - Hobomock Elementary,02310010, 159, 18.7, 406, 49.5, 50.5, 2.5, 21.9,13.3 +4.16,4.16,a-reso-i1,2022-23,Pembroke - North Pembroke Elementary,02310015, 175, 19.2, 525, 49.5, 50.5, 3.4, 18.3,18.5 +4.1,4.1,a-reso-i1,2022-23,Pembroke - Pembroke Community Middle School,02310305, 239, 19.5, 406, 48.5, 51.5, 0.5, 17.7,18.2 +4.96,4.96,a-reso-i1,2022-23,Pembroke - Pembroke High School,02310505, 375, 15.2, 728, 46.2, 53.7, 0.6, 11.7,17.7 +4.12,4.12,a-reso-i1,2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 99, 19.4, 222, 46.9, 53.2, 0.5, 29.3,20.7 +4.68,4.68,a-reso-i1,2022-23,Pentucket - Dr John C Page School,07450015, 182, 16.6, 321, 48.3, 51.7, 0.3, 29.3,10.6 +4.4,4.4,a-reso-i1,2022-23,Pentucket - Elmer S Bagnall,07450005, 255, 18.0, 489, 48.1, 51.9, 0.8, 22.1,16.6 +3.9,3.9,a-reso-i1,2022-23,Pentucket - Helen R Donaghue School,07450010, 124, 20.5, 249, 47.8, 52.2, 0.8, 27.3,16.5 +4.34,4.34,a-reso-i1,2022-23,Pentucket - Pentucket Regional Middle,07450405, 219, 18.3, 359, 44.0, 56.0, 1.1, 22.8,16.4 +5.24,5,a-reso-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 370, 13.8, 763, 49.9, 49.7, 0.1, 17.7,17.4 +4.4399999999999995,4.44,a-reso-i1,2022-23,Petersham - Petersham Center,02340005, 55, 17.8, 125, 54.4, 45.6, 1.6, 18.4,33.6 +3.28,3.28,a-reso-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 20, 23.6, 190, 50.0, 49.5, 60.0, 10.0,80.5 +4.8,4.8,a-reso-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 53, 16.0, 117, 45.3, 54.7, 14.5, 35.0,91.5 +3.3200000000000003,3.32,a-reso-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 20, 23.4, 161, 46.6, 53.4, 18.6, 30.4,93.2 +4.36,4.36,a-reso-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 374, 18.2, 793, 52.0, 48.1, 22.1, 8.6,52.7 +4.12,4.12,a-reso-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 186, 19.4, 466, 50.6, 49.4, 22.5, 12.5,43.8 +4.5,4.5,a-reso-i1,2022-23,Pioneer Valley - Bernardston Elementary,07500006, 61, 17.5, 208, 54.3, 45.7, 1.0, 22.6,31.7 +4.88,4.88,a-reso-i1,2022-23,Pioneer Valley - Northfield Elementary,07500008, 65, 15.6, 211, 46.0, 54.0, 1.0, 24.2,44.1 +5.5600000000000005,5,a-reso-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 217, 12.2, 257, 47.5, 52.5, 1.6, 15.2,29.6 +4.64,4.64,a-reso-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 407, 16.8, 544, 47.1, 52.6, 2.9, 15.3,22.4 +5.3,5,a-reso-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 388, 13.5, 398, 64.3, 33.7, 0.5, 22.6,38.9 +5.14,5,a-reso-i1,2022-23,Pittsfield - Allendale,02360010, 114, 14.3, 277, 46.2, 53.8, 6.1, 22.0,69.7 +5.18,5,a-reso-i1,2022-23,Pittsfield - Crosby,02360065, 87, 14.1, 273, 48.4, 51.7, 15.0, 28.2,79.9 +6.92,5,a-reso-i1,2022-23,Pittsfield - Crosby Educational Academy,02360030, 5, 5.4, 27, 22.2, 77.8, 0.0, 96.3,92.6 +6.959999999999999,5,a-reso-i1,2022-23,Pittsfield - Eagle Education Academy,02360525, 27, 5.2, 22, 27.3, 72.7, 4.6, 100.0,95.5 +4.84,4.84,a-reso-i1,2022-23,Pittsfield - Egremont,02360035, 118, 15.8, 382, 52.4, 47.6, 9.7, 16.5,57.1 +5.34,5,a-reso-i1,2022-23,Pittsfield - John T Reid Middle,02360305, 275, 13.3, 471, 50.1, 49.9, 8.5, 23.8,72.8 +5.0,5.0,a-reso-i1,2022-23,Pittsfield - Morningside Community School,02360055, 130, 15.0, 343, 54.8, 45.2, 16.9, 26.2,87.5 +5.42,5,a-reso-i1,2022-23,Pittsfield - Pittsfield High,02360505, 408, 12.9, 673, 49.0, 50.4, 6.5, 23.9,55.7 +6.2,5,a-reso-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 87, 9.0, 115, 49.6, 50.4, 1.7, 23.5,80.9 +5.279999999999999,5,a-reso-i1,2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 75, 13.6, 178, 50.0, 49.4, 1.1, 15.2,55.6 +4.92,4.92,a-reso-i1,2022-23,Pittsfield - Silvio O Conte Community,02360105, 140, 15.4, 364, 51.9, 47.8, 14.8, 23.4,88.2 +4.82,4.82,a-reso-i1,2022-23,Pittsfield - Stearns,02360090, 70, 15.9, 227, 39.2, 60.8, 2.2, 32.2,55.1 +5.220000000000001,5,a-reso-i1,2022-23,Pittsfield - Taconic High,02360510, 513, 13.9, 851, 46.7, 53.1, 4.1, 21.0,63.2 +5.16,5,a-reso-i1,2022-23,Pittsfield - Theodore Herberg Middle,02360310, 298, 14.2, 499, 43.9, 55.3, 7.8, 19.4,62.9 +5.14,5,a-reso-i1,2022-23,Pittsfield - Williams,02360100, 88, 14.3, 258, 49.2, 50.8, 6.6, 14.0,36.4 +4.42,4.42,a-reso-i1,2022-23,Plainville - Anna Ware Jackson,02380010, 56, 17.9, 299, 47.5, 52.5, 8.7, 29.1,30.1 +3.6399999999999997,3.64,a-reso-i1,2022-23,Plainville - Beatrice H Wood Elementary,02380005, 64, 21.8, 349, 47.9, 52.2, 2.6, 23.2,25.5 +4.279999999999999,4.28,a-reso-i1,2022-23,Plymouth - Cold Spring,02390005, 140, 18.6, 214, 54.7, 45.3, 19.2, 18.7,50 +4.720000000000001,4.72,a-reso-i1,2022-23,Plymouth - Federal Furnace School,02390011, 301, 16.4, 408, 45.1, 54.9, 5.9, 25.7,36.3 +4.38,4.38,a-reso-i1,2022-23,Plymouth - Hedge,02390010, 146, 18.1, 218, 47.7, 52.3, 32.6, 17.4,71.1 +4.2,4.2,a-reso-i1,2022-23,Plymouth - Indian Brook,02390012, 370, 19.0, 574, 47.6, 52.4, 0.5, 19.5,23.9 +4.04,4.04,a-reso-i1,2022-23,Plymouth - Manomet Elementary,02390015, 158, 19.8, 256, 53.1, 46.9, 0.8, 21.5,37.1 +4.32,4.32,a-reso-i1,2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 350, 18.4, 508, 48.2, 51.8, 8.1, 17.5,34.7 +4.64,4.64,a-reso-i1,2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 548, 16.8, 904, 49.7, 50.1, 6.2, 20.2,37.9 +5.96,5,a-reso-i1,2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 25, 10.2, 255, 30.6, 69.4, 1.6, 56.9,33.7 +4.9399999999999995,4.94,a-reso-i1,2022-23,Plymouth - Plymouth North High,02390505, 935, 15.3," 1,268", 47.4, 52.3, 6.6, 14.0,32.9 +5.32,5,a-reso-i1,2022-23,Plymouth - Plymouth South High,02390515, 953, 13.4," 1,019", 47.2, 52.7, 0.3, 17.8,23.5 +4.24,4.24,a-reso-i1,2022-23,Plymouth - Plymouth South Middle,02390305, 347, 18.8, 628, 45.9, 54.1, 0.3, 23.9,30.7 +4.5600000000000005,4.56,a-reso-i1,2022-23,Plymouth - South Elementary,02390046, 440, 17.2, 623, 48.2, 51.9, 2.6, 19.7,28.3 +4.54,4.54,a-reso-i1,2022-23,Plymouth - West Elementary,02390047, 218, 17.3, 312, 45.2, 54.8, 4.2, 17.3,34.3 +4.62,4.62,a-reso-i1,2022-23,Plympton - Dennett Elementary,02400010, 113, 16.9, 239, 47.7, 52.3, 0.8, 18.4,20.9 +4.5200000000000005,4.52,a-reso-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 464, 17.4, 973, 50.8, 49.2, 18.1, 16.4,59.9 +5.720000000000001,5,a-reso-i1,2022-23,Provincetown - Provincetown Schools,02420020, 150, 11.4, 146, 52.7, 47.3, 15.1, 20.6,54.8 +4.04,4.04,a-reso-i1,2022-23,Quabbin - Hardwick Elementary,07530005, 57, 19.8, 198, 48.5, 51.5, 0.0, 34.3,55.1 +3.62,3.62,a-reso-i1,2022-23,Quabbin - Hubbardston Center,07530010, 81, 21.9, 318, 46.5, 53.5, 0.6, 24.5,23.9 +6.2,5,a-reso-i1,2022-23,Quabbin - New Braintree Grade,07530020, 10, 9.0, 43, 44.2, 55.8, 0.0, 46.5,46.5 +4.58,4.58,a-reso-i1,2022-23,Quabbin - Oakham Center,07530025, 66, 17.1, 179, 43.0, 57.0, 0.0, 26.3,31.3 +4.58,4.58,a-reso-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 450, 17.1, 574, 54.2, 45.5, 0.4, 17.1,33.1 +3.84,3.84,a-reso-i1,2022-23,Quabbin - Quabbin Regional Middle School,07530405, 259, 20.8, 529, 52.9, 47.1, 0.2, 18.0,36.3 +3.6399999999999997,3.64,a-reso-i1,2022-23,Quabbin - Ruggles Lane,07530030, 94, 21.8, 387, 42.9, 57.1, 0.3, 30.5,42.1 +5.4,5,a-reso-i1,2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 4, 13.0, 52, 40.4, 59.6, 0.0, 48.1,57.7 +4.9399999999999995,4.94,a-reso-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 189, 15.3, 423, 49.9, 48.9, 0.7, 14.2,37.8 +4.54,4.54,a-reso-i1,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 140, 17.3, 204, 50.0, 49.0, 1.5, 23.0,44.6 +3.62,3.62,a-reso-i1,2022-23,Quaboag Regional - Warren Elementary,07780005, 108, 21.9, 329, 48.9, 51.1, 5.2, 29.5,58.1 +4.16,4.16,a-reso-i1,2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 80, 19.2, 263, 49.8, 49.8, 3.4, 22.4,42.6 +5.66,5,a-reso-i1,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 38, 11.7, 222, 33.3, 66.7, 0.0, 68.5,48.7 +5.66,5,a-reso-i1,2022-23,Quincy - Atherton Hough,02430040, 159, 11.7, 258, 39.2, 60.9, 14.3, 38.0,37.2 +3.7399999999999998,3.74,a-reso-i1,2022-23,Quincy - Atlantic Middle,02430305, 299, 21.3, 575, 47.8, 52.0, 14.4, 18.8,45.9 +4.46,4.46,a-reso-i1,2022-23,Quincy - Beechwood Knoll Elementary,02430020, 147, 17.7, 334, 48.2, 51.8, 22.2, 9.9,44.6 +4.84,4.84,a-reso-i1,2022-23,Quincy - Broad Meadows Middle,02430310, 247, 15.8, 329, 46.2, 53.8, 7.9, 31.3,55.9 +3.54,3.54,a-reso-i1,2022-23,Quincy - Central Middle,02430315, 352, 22.3, 650, 44.2, 55.2, 5.1, 11.4,32.6 +4.58,4.58,a-reso-i1,2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 140, 17.1, 330, 53.0, 47.0, 16.4, 16.7,30.9 +4.1,4.1,a-reso-i1,2022-23,Quincy - Clifford H Marshall Elementary,02430055, 196, 19.5, 525, 53.3, 46.7, 33.9, 13.9,54.9 +5.32,5,a-reso-i1,2022-23,Quincy - Francis W Parker,02430075, 184, 13.4, 331, 52.6, 47.4, 43.2, 20.2,58.6 +4.36,4.36,a-reso-i1,2022-23,Quincy - Lincoln-Hancock Community School,02430035, 234, 18.2, 561, 49.9, 49.9, 35.7, 11.1,57.4 +4.58,4.58,a-reso-i1,2022-23,Quincy - Merrymount,02430060, 142, 17.1, 327, 47.1, 52.9, 14.1, 21.7,22 +4.32,4.32,a-reso-i1,2022-23,Quincy - Montclair,02430065, 173, 18.4, 430, 49.1, 50.9, 36.3, 9.8,46.1 +4.54,4.54,a-reso-i1,2022-23,Quincy - North Quincy High,02430510, 635, 17.3," 1,492", 47.2, 52.8, 8.7, 16.8,42 +4.58,4.58,a-reso-i1,2022-23,Quincy - Point Webster Middle,02430325, 261, 17.1, 451, 53.7, 45.9, 11.8, 24.8,59.9 +5.1,5,a-reso-i1,2022-23,Quincy - Quincy High,02430505, 854, 14.5," 1,487", 48.8, 50.8, 12.0, 20.3,54.7 +6.16,5,a-reso-i1,2022-23,Quincy - Snug Harbor Community School,02430090, 267, 9.2, 440, 40.5, 59.6, 16.8, 47.3,71.6 +5.46,5,a-reso-i1,2022-23,Quincy - South West Middle School,02430320, 417, 12.7, 453, 44.6, 55.4, 22.1, 24.7,66 +5.62,5,a-reso-i1,2022-23,Quincy - Squantum,02430095, 231, 11.9, 345, 48.4, 51.6, 14.2, 26.7,33 +4.54,4.54,a-reso-i1,2022-23,Quincy - Wollaston School,02430110, 138, 17.3, 324, 44.8, 55.3, 31.5, 12.7,40.7 +5.32,5,a-reso-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 543, 13.4, 527, 45.7, 52.2, 1.3, 26.2,56.6 +4.14,4.14,a-reso-i1,2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 94, 19.3, 302, 48.0, 52.0, 20.9, 18.2,62.9 +4.88,4.88,a-reso-i1,2022-23,Randolph - J F Kennedy Elementary,02440018, 143, 15.6, 511, 47.6, 52.5, 17.6, 33.5,63.8 +3.8,3.8,a-reso-i1,2022-23,Randolph - Margaret L Donovan,02440015, 128, 21.0, 432, 51.2, 48.6, 22.7, 13.2,59.5 +5.12,5,a-reso-i1,2022-23,Randolph - Martin E Young Elementary,02440040, 105, 14.4, 250, 52.4, 47.6, 28.4, 23.6,66.8 +4.54,4.54,a-reso-i1,2022-23,Randolph - Randolph Community Middle,02440410, 307, 17.3, 594, 47.8, 52.2, 11.5, 19.4,61.8 +4.54,4.54,a-reso-i1,2022-23,Randolph - Randolph High,02440505, 274, 17.3, 651, 43.6, 56.4, 16.4, 20.4,59.8 +4.0,4.0,a-reso-i1,2022-23,Reading - Alice M Barrows,02460002, 69, 20.0, 358, 49.2, 50.8, 1.7, 20.4,9.2 +3.84,3.84,a-reso-i1,2022-23,Reading - Arthur W Coolidge Middle,02460305, 202, 20.8, 427, 45.4, 54.3, 0.5, 19.9,8.2 +4.26,4.26,a-reso-i1,2022-23,Reading - Birch Meadow,02460005, 73, 18.7, 356, 43.8, 56.2, 1.4, 24.7,7.6 +4.0200000000000005,4.02,a-reso-i1,2022-23,Reading - J Warren Killam,02460017, 80, 19.9, 414, 48.1, 51.9, 5.3, 17.9,15.2 +3.6399999999999997,3.64,a-reso-i1,2022-23,Reading - Joshua Eaton,02460010, 69, 21.8, 391, 49.4, 50.6, 2.8, 16.4,10.5 +5.3,5,a-reso-i1,2022-23,Reading - RISE PreSchool,02460001, 27, 13.5, 122, 39.3, 60.7, 4.9, 49.2,6.6 +5.0,5.0,a-reso-i1,2022-23,Reading - Reading Memorial High,02460505, 600, 15.0," 1,102", 46.2, 53.4, 1.3, 16.6,11.2 +4.46,4.46,a-reso-i1,2022-23,Reading - Walter S Parker Middle,02460310, 266, 17.7, 464, 50.9, 49.1, 1.3, 18.5,13.6 +4.18,4.18,a-reso-i1,2022-23,Reading - Wood End Elementary School,02460020, 50, 19.1, 247, 49.0, 51.0, 0.8, 19.4,11.3 +3.94,3.94,a-reso-i1,2022-23,Revere - A. C. Whelan Elementary School,02480003, 319, 20.3, 749, 47.7, 52.3, 33.8, 15.8,63.4 +3.88,3.88,a-reso-i1,2022-23,Revere - Abraham Lincoln,02480025, 272, 20.6, 638, 49.1, 50.9, 44.4, 18.8,69.6 +4.279999999999999,4.28,a-reso-i1,2022-23,Revere - Beachmont Veterans Memorial School,02480013, 173, 18.6, 361, 43.8, 56.2, 47.7, 24.9,67.3 +6.0200000000000005,5,a-reso-i1,2022-23,Revere - CityLab Innovation High School,02480520, 150, 9.9, 94, 40.4, 58.5, 11.7, 24.5,71.3 +3.7399999999999998,3.74,a-reso-i1,2022-23,Revere - Garfield Elementary School,02480056, 325, 21.3, 718, 51.8, 48.2, 54.9, 20.2,74.2 +3.72,3.72,a-reso-i1,2022-23,Revere - Garfield Middle School,02480057, 269, 21.4, 578, 48.3, 51.7, 28.0, 9.3,68.5 +3.44,3.44,a-reso-i1,2022-23,Revere - Paul Revere,02480050, 193, 22.8, 455, 51.0, 49.0, 44.4, 20.7,62.4 +4.1,4.1,a-reso-i1,2022-23,Revere - Revere High,02480505, 974, 19.5," 2,202", 47.5, 52.4, 23.4, 11.6,64.7 +4.54,4.54,a-reso-i1,2022-23,Revere - Rumney Marsh Academy,02480014, 340, 17.3, 587, 47.4, 52.6, 17.9, 20.4,68.3 +4.46,4.46,a-reso-i1,2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 327, 17.7, 671, 48.4, 51.6, 43.8, 17.1,70.9 +4.16,4.16,a-reso-i1,2022-23,Revere - Susan B. Anthony Middle School,02480305, 485, 19.2, 602, 54.5, 45.4, 27.6, 15.1,66.9 +5.0200000000000005,5,a-reso-i1,2022-23,Richmond - Richmond Consolidated,02490005, 116, 14.9, 152, 52.0, 48.0, 0.0, 17.1,29.6 +4.5600000000000005,4.56,a-reso-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 305, 17.2, 627, 50.4, 49.0, 1.3, 27.3,23.3 +4.76,4.76,a-reso-i1,2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 108, 16.2, 287, 50.9, 49.1, 0.0, 19.9,8.4 +4.220000000000001,4.22,a-reso-i1,2022-23,Rochester - Rochester Memorial,02500005, 237, 18.9, 498, 46.8, 53.2, 1.6, 19.3,23.7 +4.86,4.86,a-reso-i1,2022-23,Rockland - Jefferson Elementary School,02510060, 135, 15.7, 247, 49.0, 51.0, 19.0, 20.7,53 +4.1,4.1,a-reso-i1,2022-23,Rockland - John W Rogers Middle,02510305, 394, 19.5, 727, 47.7, 52.3, 8.1, 19.7,48.8 +4.82,4.82,a-reso-i1,2022-23,Rockland - Memorial Park,02510020, 137, 15.9, 252, 50.0, 50.0, 19.4, 23.8,52.4 +4.720000000000001,4.72,a-reso-i1,2022-23,Rockland - R Stewart Esten,02510025, 169, 16.4, 323, 47.4, 52.6, 13.3, 16.4,50.5 +5.0200000000000005,5,a-reso-i1,2022-23,Rockland - Rockland Senior High,02510505, 276, 14.9, 645, 47.8, 52.1, 7.3, 16.1,45.4 +4.9399999999999995,4.94,a-reso-i1,2022-23,Rockport - Rockport Elementary,02520005, 128, 15.3, 305, 47.2, 52.8, 0.7, 20.0,28.2 +5.88,5,a-reso-i1,2022-23,Rockport - Rockport High,02520510, 185, 10.6, 231, 40.3, 59.7, 0.9, 26.4,27.7 +5.1,5,a-reso-i1,2022-23,Rockport - Rockport Middle,02520305, 163, 14.5, 194, 50.0, 50.0, 0.0, 24.7,23.2 +6.36,5,a-reso-i1,2022-23,Rowe - Rowe Elementary,02530005, 56, 8.2, 68, 42.7, 57.4, 0.0, 38.2,50 +8.0,5,a-reso-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.7,4.7,a-reso-i1,2022-23,Salem - Bates,02580003, 166, 16.5, 411, 48.2, 51.1, 19.5, 24.1,58.9 +4.82,4.82,a-reso-i1,2022-23,Salem - Bentley Academy Innovation School,02580010, 143, 15.9, 282, 47.5, 52.5, 41.1, 19.9,77 +4.6,4.6,a-reso-i1,2022-23,Salem - Carlton,02580015, 111, 17.0, 262, 51.2, 48.5, 11.8, 32.1,46.6 +4.5600000000000005,4.56,a-reso-i1,2022-23,Salem - Collins Middle,02580305, 351, 17.2, 645, 50.2, 49.8, 17.4, 26.7,63.4 +4.66,4.66,a-reso-i1,2022-23,Salem - Horace Mann Laboratory,02580030, 120, 16.7, 301, 51.2, 48.8, 25.6, 21.6,67.1 +5.38,5,a-reso-i1,2022-23,Salem - New Liberty Innovation School,02580510, 39, 13.1, 60, 63.3, 35.0, 13.3, 33.3,75 +5.279999999999999,5,a-reso-i1,2022-23,Salem - Salem Early Childhood,02580001, 9, 13.6, 118, 44.1, 55.9, 1.7, 51.7,51.7 +5.14,5,a-reso-i1,2022-23,Salem - Salem High,02580505, 560, 14.3, 926, 47.3, 52.4, 17.0, 25.1,65.6 +7.159999999999999,5,a-reso-i1,2022-23,Salem - Salem Prep High School,02580515, 91, 4.2, 20, 45.0, 55.0, 10.0, 95.0,75 +4.8,4.8,a-reso-i1,2022-23,Salem - Saltonstall School,02580050, 189, 16.0, 397, 50.4, 49.6, 18.4, 25.7,56.2 +4.46,4.46,a-reso-i1,2022-23,Salem - Witchcraft Heights,02580070, 190, 17.7, 462, 46.1, 53.9, 24.2, 22.1,56.1 +4.34,4.34,a-reso-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 249, 18.3, 488, 50.6, 48.8, 3.7, 17.6,50.2 +4.3,4.3,a-reso-i1,2022-23,Sandwich - Forestdale School,02610002, 287, 18.5, 567, 45.7, 54.3, 2.7, 16.8,30.3 +4.1,4.1,a-reso-i1,2022-23,Sandwich - Oak Ridge,02610025, 424, 19.5, 676, 49.9, 50.2, 1.6, 23.5,25.3 +5.12,5,a-reso-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 599, 14.4, 929, 48.1, 51.2, 0.8, 23.5,20.2 +3.72,3.72,a-reso-i1,2022-23,Saugus - Belmonte STEAM Academy,02620060, 525, 21.4, 826, 47.6, 52.4, 9.9, 13.4,47.1 +5.0,5.0,a-reso-i1,2022-23,Saugus - Saugus High,02620505, 402, 15.0, 736, 47.0, 52.9, 9.1, 12.1,46.5 +4.0600000000000005,4.06,a-reso-i1,2022-23,Saugus - Saugus Middle School,02620305, 264, 19.7, 628, 46.8, 53.2, 7.6, 15.1,49.5 +5.0200000000000005,5,a-reso-i1,2022-23,Saugus - Veterans Early Learning Center,02620065, 228, 14.9, 456, 40.6, 59.4, 20.8, 11.4,45.6 +6.959999999999999,5,a-reso-i1,2022-23,Savoy - Emma L Miller Elementary School,02630010, 45, 5.2, 37, 48.7, 51.4, 0.0, 16.2,70.3 +4.220000000000001,4.22,a-reso-i1,2022-23,Scituate - Cushing Elementary,02640007, 157, 18.9, 354, 52.5, 47.5, 0.9, 14.4,8.5 +4.14,4.14,a-reso-i1,2022-23,Scituate - Gates Middle School,02640305, 393, 19.3, 608, 45.9, 54.0, 0.8, 17.3,14.1 +3.7399999999999998,3.74,a-reso-i1,2022-23,Scituate - Hatherly Elementary,02640010, 100, 21.3, 259, 47.1, 52.9, 0.4, 23.2,11.6 +4.26,4.26,a-reso-i1,2022-23,Scituate - Jenkins Elementary School,02640015, 149, 18.7, 330, 47.6, 52.4, 0.9, 16.7,13.6 +5.279999999999999,5,a-reso-i1,2022-23,Scituate - Scituate High School,02640505, 519, 13.6, 765, 51.0, 48.2, 0.0, 14.8,15.3 +3.7399999999999998,3.74,a-reso-i1,2022-23,Scituate - Wampatuck Elementary,02640020, 161, 21.3, 469, 49.5, 50.5, 1.1, 24.5,11.1 +5.18,5,a-reso-i1,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 371, 14.1, 493, 50.5, 49.5, 3.0, 20.7,18.9 +4.0,4.0,a-reso-i1,2022-23,Seekonk - George R Martin,02650007, 117, 20.0, 455, 55.0, 45.1, 4.2, 20.0,24 +4.1,4.1,a-reso-i1,2022-23,Seekonk - Mildred Aitken School,02650015, 194, 19.5, 583, 45.8, 53.9, 3.8, 23.7,16.6 +5.279999999999999,5,a-reso-i1,2022-23,Seekonk - Seekonk High,02650505, 344, 13.6, 539, 46.4, 52.9, 1.3, 17.3,19.9 +7.2,5,a-reso-i1,2022-23,Seekonk - Seekonk Transitions Academy,02650605, 4, 4.0, 4, 50.0, 50.0, 0.0, 100.0,75 +4.1,4.1,a-reso-i1,2022-23,Sharon - Cottage Street,02660005, 189, 19.5, 446, 48.2, 51.8, 8.1, 17.9,13 +3.78,3.78,a-reso-i1,2022-23,Sharon - East Elementary,02660010, 197, 21.1, 496, 47.2, 52.6, 8.3, 12.7,9.9 +3.3600000000000003,3.36,a-reso-i1,2022-23,Sharon - Heights Elementary,02660015, 208, 23.2, 574, 49.8, 50.2, 4.4, 14.1,12.9 +4.5,4.5,a-reso-i1,2022-23,Sharon - Sharon Early Childhood Center,02660001, 4, 17.5, 70, 35.7, 64.3, 0.0, 58.6,12.9 +4.92,4.92,a-reso-i1,2022-23,Sharon - Sharon High,02660505, 565, 15.4," 1,149", 48.6, 51.4, 1.7, 14.1,14.2 +4.12,4.12,a-reso-i1,2022-23,Sharon - Sharon Middle,02660305, 609, 19.4, 861, 49.8, 49.9, 1.5, 14.4,10.3 +5.5,5,a-reso-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 845, 12.5," 1,298", 37.5, 61.9, 0.4, 26.4,21 +4.220000000000001,4.22,a-reso-i1,2022-23,Sherborn - Pine Hill,02690010, 212, 18.9, 412, 52.4, 47.3, 1.2, 18.2,6.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Shrewsbury - Calvin Coolidge School,02710015, 62, 17.2, 254, 53.9, 46.1, 16.5, 17.7,35 +4.0,4.0,a-reso-i1,2022-23,Shrewsbury - Floral Street School,02710020, 132, 20.0, 549, 44.3, 55.7, 8.4, 15.9,15.7 +4.12,4.12,a-reso-i1,2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 140, 19.4, 601, 47.4, 52.4, 4.5, 16.3,20.8 +3.5,3.5,a-reso-i1,2022-23,Shrewsbury - Oak Middle School,02710030, 482, 22.5, 965, 50.7, 49.2, 2.9, 15.1,17.5 +5.64,5,a-reso-i1,2022-23,Shrewsbury - Parker Road Preschool,02710040, 18, 11.8, 212, 44.8, 55.2, 0.0, 44.3,24.1 +3.3200000000000003,3.32,a-reso-i1,2022-23,Shrewsbury - Sherwood Middle School,02710305, 567, 23.4, 974, 45.6, 54.4, 3.1, 13.4,16.9 +4.32,4.32,a-reso-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 896, 18.4," 1,838", 51.5, 48.5, 2.6, 9.7,17.5 +4.0200000000000005,4.02,a-reso-i1,2022-23,Shrewsbury - Spring Street School,02710035, 66, 19.9, 307, 45.9, 54.1, 2.0, 15.0,8.5 +4.5200000000000005,4.52,a-reso-i1,2022-23,Shrewsbury - Walter J. Paton School,02710025, 72, 17.4, 295, 48.5, 51.5, 3.7, 15.9,14.6 +4.9799999999999995,4.98,a-reso-i1,2022-23,Shutesbury - Shutesbury Elementary,02720005, 59, 15.1, 121, 52.1, 46.3, 0.8, 25.6,35.5 +4.4399999999999995,4.44,a-reso-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 439, 17.8," 1,040", 48.5, 51.4, 1.9, 14.1,23.9 +4.18,4.18,a-reso-i1,2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 296, 19.1, 533, 48.8, 51.2, 2.6, 18.6,23.8 +5.18,5,a-reso-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 219, 14.1, 380, 48.2, 50.3, 2.4, 27.6,52.4 +3.34,3.34,a-reso-i1,2022-23,Somerset - Chace Street,02730005, 155, 23.3, 327, 50.8, 49.2, 1.8, 22.3,29.7 +4.18,4.18,a-reso-i1,2022-23,Somerset - North Elementary,02730008, 238, 19.1, 473, 44.0, 56.0, 1.5, 23.7,31.9 +3.9,3.9,a-reso-i1,2022-23,Somerset - Somerset Middle School,02730305, 349, 20.5, 583, 48.5, 51.5, 0.7, 18.0,31.2 +3.7,3.7,a-reso-i1,2022-23,Somerset - South,02730015, 136, 21.5, 265, 49.1, 50.9, 2.3, 22.3,38.5 +4.6,4.6,a-reso-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 448, 17.0," 1,003", 50.5, 49.4, 0.5, 11.3,25.2 +4.54,4.54,a-reso-i1,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 198, 17.3, 570, 44.7, 54.9, 32.3, 13.0,44.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Somerville - Arthur D Healey,02740075, 179, 17.6, 521, 47.4, 52.4, 38.2, 20.2,69.1 +4.18,4.18,a-reso-i1,2022-23,Somerville - Benjamin G Brown,02740015, 59, 19.1, 214, 62.2, 37.9, 7.5, 9.8,15.4 +6.42,5,a-reso-i1,2022-23,Somerville - Capuano Early Childhood Center,02740005, 60, 7.9, 247, 40.1, 59.5, 9.7, 41.7,47 +4.0600000000000005,4.06,a-reso-i1,2022-23,Somerville - E Somerville Community,02740111, 236, 19.7, 722, 44.0, 55.7, 39.9, 15.1,61.8 +6.36,5,a-reso-i1,2022-23,Somerville - Full Circle High School,02740510, 250, 8.2, 74, 40.5, 58.1, 18.9, 70.3,83.8 +4.46,4.46,a-reso-i1,2022-23,Somerville - John F Kennedy,02740083, 156, 17.7, 439, 48.3, 51.7, 5.2, 21.2,27.3 +7.040000000000001,5,a-reso-i1,2022-23,Somerville - Next Wave Junior High,02740410, 144, 4.8, 22, 31.8, 68.2, 18.2, 90.9,90.9 +5.68,5,a-reso-i1,2022-23,Somerville - Somerville High,02740505, 836, 11.6," 1,342", 46.9, 51.7, 18.9, 17.4,55.4 +4.32,4.32,a-reso-i1,2022-23,Somerville - West Somerville Neighborhood,02740115, 128, 18.4, 374, 48.7, 51.1, 7.0, 17.4,36.1 +4.76,4.76,a-reso-i1,2022-23,Somerville - Winter Hill Community,02740120, 187, 16.2, 441, 44.4, 55.3, 37.9, 23.4,59.6 +4.279999999999999,4.28,a-reso-i1,2022-23,South Hadley - Michael E. Smith Middle School,02780305, 277, 18.6, 528, 50.8, 49.1, 3.6, 24.6,39.2 +3.9,3.9,a-reso-i1,2022-23,South Hadley - Mosier,02780020, 75, 20.5, 343, 51.9, 48.1, 5.5, 19.8,30.9 +4.88,4.88,a-reso-i1,2022-23,South Hadley - Plains Elementary,02780015, 60, 15.6, 334, 42.8, 57.2, 6.9, 26.1,38.9 +5.4799999999999995,5,a-reso-i1,2022-23,South Hadley - South Hadley High,02780505, 290, 12.6, 500, 50.0, 49.2, 4.4, 22.0,31.6 +5.62,5,a-reso-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 751, 11.9, 831, 43.0, 55.8, 15.6, 31.3,55.7 +4.3,4.3,a-reso-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 471, 18.5," 1,062", 48.0, 51.3, 10.4, 19.9,30.8 +4.9,4.9,a-reso-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 323, 15.5, 643, 33.4, 65.6, 0.2, 25.8,28.3 +4.4,4.4,a-reso-i1,2022-23,Southampton - William E Norris,02750005, 172, 18.0, 486, 46.9, 53.1, 1.4, 28.2,18.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 76, 15.3, 269, 50.2, 49.8, 6.3, 13.0,8.6 +3.94,3.94,a-reso-i1,2022-23,Southborough - Margaret A Neary,02760020, 88, 20.3, 268, 49.3, 50.8, 3.7, 14.2,8.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Southborough - Mary E Finn School,02760008, 67, 17.6, 372, 47.0, 53.0, 14.0, 23.1,9.1 +5.3,5,a-reso-i1,2022-23,Southborough - P Brent Trottier,02760305, 317, 13.5, 388, 50.5, 49.2, 1.3, 15.7,7.2 +4.66,4.66,a-reso-i1,2022-23,Southbridge - Charlton Street,02770005, 76, 16.7, 254, 51.6, 48.4, 16.1, 31.9,89.8 +4.720000000000001,4.72,a-reso-i1,2022-23,Southbridge - Eastford Road,02770010, 92, 16.4, 365, 44.7, 55.3, 15.6, 29.6,83.8 +6.76,5,a-reso-i1,2022-23,Southbridge - Southbridge Academy,02770525, 24, 6.2, 27, 33.3, 66.7, 22.2, 96.3,96.3 +3.94,3.94,a-reso-i1,2022-23,Southbridge - Southbridge High School,02770515, 193, 20.3, 476, 44.8, 54.4, 21.6, 21.0,77.7 +4.14,4.14,a-reso-i1,2022-23,Southbridge - Southbridge Middle School,02770315, 155, 19.3, 418, 47.9, 52.2, 18.7, 28.0,82.5 +4.68,4.68,a-reso-i1,2022-23,Southbridge - West Street,02770020, 102, 16.6, 339, 49.9, 50.2, 17.1, 21.8,81.7 +4.32,4.32,a-reso-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 665, 18.4," 1,566", 52.8, 46.2, 4.9, 15.2,42.7 +5.9799999999999995,5,a-reso-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 268, 10.1, 294, 46.9, 52.7, 3.7, 15.3,41.8 +5.58,5,a-reso-i1,2022-23,Southern Berkshire - New Marlborough Central,07650018, 50, 12.1, 66, 56.1, 43.9, 0.0, 3.0,31.8 +5.4,5,a-reso-i1,2022-23,Southern Berkshire - South Egremont,07650030, 1, 13.0, 13, 76.9, 23.1, 0.0, 0.0,23.1 +4.779999999999999,4.78,a-reso-i1,2022-23,Southern Berkshire - Undermountain,07650035, 161, 16.1, 243, 50.6, 49.4, 8.2, 9.9,44.9 +5.32,5,a-reso-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605," 1,032", 13.4," 1,183", 44.2, 55.6, 1.6, 13.4,34.4 +4.5200000000000005,4.52,a-reso-i1,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 208, 17.4, 390, 48.2, 51.8, 6.4, 18.0,38 +5.1,5,a-reso-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 355, 14.5, 637, 51.2, 48.8, 2.2, 16.3,30.9 +5.08,5,a-reso-i1,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 198, 14.6, 333, 48.4, 51.7, 6.0, 16.2,36.3 +4.16,4.16,a-reso-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 178, 19.2, 367, 46.1, 53.7, 5.2, 15.0,52.6 +4.16,4.16,a-reso-i1,2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 65, 19.2, 254, 45.3, 54.7, 2.4, 27.2,35.8 +4.32,4.32,a-reso-i1,2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 173, 18.4, 394, 45.2, 54.6, 5.1, 22.3,52.5 +4.18,4.18,a-reso-i1,2022-23,Spencer-E Brookfield - Wire Village School,07670040, 92, 19.1, 442, 46.6, 53.4, 6.6, 26.7,57 +3.8,3.8,a-reso-i1,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 202, 21.0, 431, 54.5, 45.5, 4.6, 10.0,52 +4.0600000000000005,4.06,a-reso-i1,2022-23,Springfield - Alice B Beal Elementary,02810175, 174, 19.7, 303, 47.2, 52.8, 19.1, 19.8,81.2 +5.12,5,a-reso-i1,2022-23,Springfield - Arthur T Talmadge,02810165, 183, 14.4, 228, 47.4, 52.6, 14.5, 29.4,90.8 +5.54,5,a-reso-i1,2022-23,Springfield - Balliet Preschool,02810003, 13, 12.3, 160, 35.6, 64.4, 13.8, 55.6,80 +3.7600000000000002,3.76,a-reso-i1,2022-23,Springfield - Brightwood,02810025, 261, 21.2, 474, 51.7, 48.3, 27.2, 26.8,95.4 +5.279999999999999,5,a-reso-i1,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 175, 13.6, 273, 44.3, 55.0, 5.1, 22.0,75.8 +5.76,5,a-reso-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 204, 11.2, 311, 68.8, 30.6, 8.7, 27.7,83.6 +4.42,4.42,a-reso-i1,2022-23,Springfield - Daniel B Brunton,02810035, 218, 17.9, 366, 53.0, 47.0, 16.1, 23.2,86.6 +5.58,5,a-reso-i1,2022-23,Springfield - Early Childhood Education Center,02810001, 17, 12.1, 205, 46.3, 53.7, 19.0, 55.1,89.8 +5.32,5,a-reso-i1,2022-23,Springfield - Edward P. Boland School,02810010, 415, 13.4, 567, 43.0, 57.0, 23.6, 41.3,93.8 +4.88,4.88,a-reso-i1,2022-23,Springfield - Elias Brookings,02810030, 207, 15.6, 285, 49.8, 50.2, 22.8, 29.8,87.4 +3.7399999999999998,3.74,a-reso-i1,2022-23,Springfield - Emergence Academy,02810318, 77, 21.3, 186, 46.8, 52.7, 98.4, 5.9,90.3 +5.26,5,a-reso-i1,2022-23,Springfield - Forest Park Middle,02810325, 262, 13.7, 396, 50.8, 49.0, 11.4, 29.6,91.7 +4.220000000000001,4.22,a-reso-i1,2022-23,Springfield - Frank H Freedman,02810075, 169, 18.9, 276, 53.3, 46.7, 12.0, 21.7,82.3 +4.5200000000000005,4.52,a-reso-i1,2022-23,Springfield - Frederick Harris,02810080, 369, 17.4, 557, 47.8, 52.2, 16.2, 28.0,78.3 +4.0,4.0,a-reso-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 1, 20.0, 20, 65.0, 35.0, 5.0, 10.0,95 +3.6,3.6,a-reso-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 1, 22.0, 22, 59.1, 40.9, 4.6, 13.6,86.4 +4.96,4.96,a-reso-i1,2022-23,Springfield - German Gerena Community School,02810195, 428, 15.2, 613, 47.2, 52.9, 24.1, 26.4,88.6 +4.32,4.32,a-reso-i1,2022-23,Springfield - Glenwood,02810065, 183, 18.4, 284, 50.0, 49.7, 19.0, 20.4,86.3 +4.720000000000001,4.72,a-reso-i1,2022-23,Springfield - Glickman Elementary,02810068, 219, 16.4, 313, 46.3, 53.7, 20.5, 38.7,86.3 +5.4399999999999995,5,a-reso-i1,2022-23,Springfield - High School Of Commerce,02810510, 737, 12.8," 1,101", 47.4, 52.5, 15.3, 22.0,85.1 +4.279999999999999,4.28,a-reso-i1,2022-23,Springfield - Hiram L Dorman,02810050, 184, 18.6, 295, 47.5, 52.5, 20.3, 27.5,91.9 +4.4399999999999995,4.44,a-reso-i1,2022-23,Springfield - Homer Street,02810085, 262, 17.8, 415, 48.4, 51.6, 22.9, 22.4,94 +3.84,3.84,a-reso-i1,2022-23,Springfield - Impact Prep at Chestnut,02810366, 128, 20.8, 218, 48.2, 51.8, 6.9, 27.5,91.7 +4.279999999999999,4.28,a-reso-i1,2022-23,Springfield - Indian Orchard Elementary,02810100, 312, 18.6, 557, 47.4, 52.6, 14.0, 27.3,89.1 +4.5,4.5,a-reso-i1,2022-23,Springfield - John F Kennedy Middle,02810328, 267, 17.5, 410, 52.4, 47.6, 12.0, 32.4,91.7 +5.04,5,a-reso-i1,2022-23,Springfield - John J Duggan Academy,02810320, 606, 14.8, 834, 46.0, 53.6, 9.0, 25.7,79.7 +4.88,4.88,a-reso-i1,2022-23,Springfield - Kensington International School,02810110, 171, 15.6, 243, 49.0, 51.0, 27.6, 25.9,94.7 +5.08,5,a-reso-i1,2022-23,Springfield - Kiley Academy,02810316, 275, 14.6, 348, 48.0, 52.0, 10.3, 35.3,94 +4.42,4.42,a-reso-i1,2022-23,Springfield - Kiley Prep,02810315, 157, 17.9, 300, 44.7, 54.7, 11.0, 32.7,90 +4.24,4.24,a-reso-i1,2022-23,Springfield - Liberty,02810115, 154, 18.8, 253, 45.9, 54.2, 19.8, 18.2,88.1 +7.220000000000001,5,a-reso-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560, 16, 3.9, 12, 0.0, 100.0, 8.3, 25.0,100 +3.66,3.66,a-reso-i1,2022-23,Springfield - Lincoln,02810120, 232, 21.7, 449, 50.1, 49.9, 32.1, 27.6,95.1 +5.82,5,a-reso-i1,2022-23,Springfield - Margaret C Ells,02810060, 17, 10.9, 186, 36.0, 64.0, 16.7, 59.1,85 +4.3,4.3,a-reso-i1,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 175, 18.5, 298, 50.3, 49.7, 17.1, 22.2,77.2 +4.62,4.62,a-reso-i1,2022-23,Springfield - Mary M Lynch,02810140, 153, 16.9, 226, 50.9, 49.1, 7.5, 17.3,90.3 +4.9399999999999995,4.94,a-reso-i1,2022-23,Springfield - Mary M Walsh,02810155, 199, 15.3, 263, 50.2, 49.8, 20.5, 33.8,84.8 +3.7399999999999998,3.74,a-reso-i1,2022-23,Springfield - Mary O Pottenger,02810145, 229, 21.3, 400, 48.5, 51.3, 14.0, 17.5,84.3 +4.5,4.5,a-reso-i1,2022-23,Springfield - Milton Bradley School,02810023, 323, 17.5, 510, 49.4, 50.6, 22.0, 32.2,95.1 +4.74,4.74,a-reso-i1,2022-23,Springfield - Rebecca M Johnson,02810055, 389, 16.3, 592, 45.4, 54.6, 20.3, 30.4,93.4 +4.54,4.54,a-reso-i1,2022-23,Springfield - Rise Academy at Van Sickle,02810480, 132, 17.3, 251, 47.4, 52.6, 12.8, 27.9,92 +5.220000000000001,5,a-reso-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 882, 13.9," 1,356", 53.8, 46.0, 8.0, 15.3,78.7 +5.32,5,a-reso-i1,2022-23,Springfield - STEM Middle Academy,02810350, 189, 13.4, 296, 47.3, 52.7, 7.8, 23.7,83.8 +5.34,5,a-reso-i1,2022-23,Springfield - Samuel Bowles,02810020, 198, 13.3, 218, 52.8, 47.3, 14.7, 22.0,86.7 +5.08,5,a-reso-i1,2022-23,Springfield - South End Middle School,02810355, 86, 14.6, 188, 48.9, 51.1, 10.1, 25.5,95.7 +4.76,4.76,a-reso-i1,2022-23,Springfield - Springfield Central High,02810500," 1,057", 16.2," 2,067", 45.9, 54.0, 15.0, 18.5,79.3 +4.54,4.54,a-reso-i1,2022-23,Springfield - Springfield High School,02810570, 93, 17.3, 287, 47.0, 51.9, 12.9, 31.0,91.6 +5.74,5,a-reso-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 793, 11.3," 1,075", 44.6, 55.2, 15.2, 26.1,88.1 +5.58,5,a-reso-i1,2022-23,Springfield - Springfield International Academy at Johnson,02810215, 45, 12.1, 37, 59.5, 40.5, 100.0, 0.0,89.2 +5.4,5,a-reso-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 46, 13.0, 86, 30.2, 69.8, 100.0, 1.2,80.2 +4.64,4.64,a-reso-i1,2022-23,Springfield - Springfield Legacy Academy,02810317, 109, 16.8, 328, 45.7, 54.3, 23.2, 28.1,95.1 +6.9,5,a-reso-i1,2022-23,Springfield - Springfield Middle School,02810360, 33, 5.5, 32, 15.6, 84.4, 9.4, 40.6,96.9 +6.92,5,a-reso-i1,2022-23,Springfield - Springfield Public Day Elementary School,02810005, 117, 5.4, 45, 31.1, 68.9, 8.9, 100.0,93.3 +7.0,5,a-reso-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 88, 5.0, 53, 30.2, 69.8, 7.6, 96.2,96.2 +6.56,5,a-reso-i1,2022-23,Springfield - Springfield Public Day Middle School,02810345, 63, 7.2, 71, 23.9, 76.1, 16.9, 100.0,100 +4.54,4.54,a-reso-i1,2022-23,Springfield - Springfield Realization Academy,02810335, 131, 17.3, 134, 56.7, 43.3, 28.4, 18.7,89.6 +6.24,5,a-reso-i1,2022-23,Springfield - Springfield Transition Academy,02810675, 20, 8.8, 82, 29.3, 70.7, 0.0, 100.0,89 +4.9,4.9,a-reso-i1,2022-23,Springfield - Sumner Avenue,02810160, 344, 15.5, 469, 47.3, 52.7, 26.2, 28.4,89.8 +5.16,5,a-reso-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 373, 14.2, 632, 52.1, 47.8, 5.9, 22.8,73.4 +5.3,5,a-reso-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 275, 13.5, 402, 49.3, 50.8, 13.4, 34.6,89.8 +4.34,4.34,a-reso-i1,2022-23,Springfield - Thomas M Balliet,02810015, 183, 18.3, 280, 50.4, 49.6, 14.3, 22.5,81.8 +5.36,5,a-reso-i1,2022-23,Springfield - Van Sickle Academy,02810485, 188, 13.2, 269, 49.8, 50.2, 14.9, 33.8,86.6 +4.84,4.84,a-reso-i1,2022-23,Springfield - Warner,02810180, 164, 15.8, 254, 45.3, 54.7, 12.2, 26.0,85 +4.62,4.62,a-reso-i1,2022-23,Springfield - Washington,02810185, 264, 16.9, 422, 50.7, 49.3, 24.2, 29.4,91 +3.6399999999999997,3.64,a-reso-i1,2022-23,Springfield - White Street,02810190, 229, 21.8, 417, 50.4, 49.6, 26.4, 17.5,91.1 +4.4399999999999995,4.44,a-reso-i1,2022-23,Springfield - William N. DeBerry,02810045, 183, 17.8, 257, 47.9, 52.1, 27.2, 27.6,93.8 +2.8,2.8,a-reso-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 770, 26.0," 1,554", 49.0, 51.0, 10.0, 19.6,61.7 +3.1,3.1,a-reso-i1,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 194, 24.5, 497, 47.9, 51.7, 10.3, 18.7,74 +3.96,3.96,a-reso-i1,2022-23,Stoneham - Colonial Park,02840005, 95, 20.2, 256, 44.1, 55.9, 2.7, 28.1,18 +3.9200000000000004,3.92,a-reso-i1,2022-23,Stoneham - Robin Hood,02840025, 146, 20.4, 382, 49.5, 50.5, 7.6, 21.5,22.3 +3.78,3.78,a-reso-i1,2022-23,Stoneham - South,02840030, 125, 21.1, 363, 47.4, 52.3, 8.5, 26.7,28.1 +4.9,4.9,a-reso-i1,2022-23,Stoneham - Stoneham Central Middle School,02840405, 510, 15.5, 683, 51.4, 48.6, 3.4, 20.8,24.3 +5.5,5,a-reso-i1,2022-23,Stoneham - Stoneham High,02840505, 435, 12.5, 619, 48.6, 50.9, 3.4, 17.1,26.7 +5.32,5,a-reso-i1,2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 12, 13.4, 151, 35.1, 64.9, 0.0, 51.0,52.3 +5.1,5,a-reso-i1,2022-23,Stoughton - Helen Hansen Elementary,02850010, 151, 14.5, 266, 47.4, 52.6, 9.0, 24.8,44 +4.6,4.6,a-reso-i1,2022-23,Stoughton - Joseph H Gibbons,02850025, 168, 17.0, 357, 46.2, 53.5, 11.2, 19.9,42.6 +5.26,5,a-reso-i1,2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 223, 13.7, 384, 44.5, 55.5, 13.0, 20.8,42.7 +4.36,4.36,a-reso-i1,2022-23,Stoughton - O'Donnell Middle School,02850405, 520, 18.2, 847, 49.7, 50.3, 8.3, 17.5,48.8 +4.62,4.62,a-reso-i1,2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 139, 16.9, 289, 55.4, 44.6, 26.0, 17.7,62.3 +4.64,4.64,a-reso-i1,2022-23,Stoughton - South Elementary,02850015, 141, 16.8, 286, 50.0, 50.0, 8.7, 22.4,34.3 +4.66,4.66,a-reso-i1,2022-23,Stoughton - Stoughton High,02850505, 726, 16.7," 1,123", 49.2, 50.8, 11.0, 14.8,43.4 +3.62,3.62,a-reso-i1,2022-23,Sturbridge - Burgess Elementary,02870005, 239, 21.9, 892, 51.2, 48.5, 3.0, 16.4,22.5 +5.18,5,a-reso-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 524, 14.1, 827, 59.9, 39.1, 1.6, 16.1,23 +4.8,4.8,a-reso-i1,2022-23,Sudbury - Ephraim Curtis Middle,02880305, 635, 16.0, 860, 45.6, 54.4, 0.5, 25.5,8.8 +3.9,3.9,a-reso-i1,2022-23,Sudbury - General John Nixon Elementary,02880025, 193, 20.5, 329, 55.3, 44.7, 4.6, 19.8,6.4 +3.8600000000000003,3.86,a-reso-i1,2022-23,Sudbury - Israel Loring School,02880015, 275, 20.7, 434, 48.6, 51.4, 5.3, 20.5,13.8 +4.08,4.08,a-reso-i1,2022-23,Sudbury - Josiah Haynes,02880010, 213, 19.6, 374, 46.0, 54.0, 2.9, 19.5,5.9 +3.88,3.88,a-reso-i1,2022-23,Sudbury - Peter Noyes,02880030, 279, 20.6, 584, 47.6, 52.4, 2.4, 24.8,8.4 +5.64,5,a-reso-i1,2022-23,Sunderland - Sunderland Elementary,02890005, 158, 11.8, 177, 42.9, 55.4, 4.5, 22.0,33.3 +4.4,4.4,a-reso-i1,2022-23,Sutton - Sutton Early Learning,02900003, 80, 18.0, 329, 47.1, 52.9, 1.5, 26.4,20.1 +3.22,3.22,a-reso-i1,2022-23,Sutton - Sutton Elementary,02900005, 102, 23.9, 308, 47.4, 52.6, 2.0, 22.4,17.2 +4.8,4.8,a-reso-i1,2022-23,Sutton - Sutton High School,02900510, 162, 16.0, 371, 50.9, 48.3, 1.4, 5.1,20.5 +4.24,4.24,a-reso-i1,2022-23,Sutton - Sutton Middle School,02900305, 108, 18.8, 303, 51.8, 48.2, 1.7, 18.8,16.5 +4.26,4.26,a-reso-i1,2022-23,Swampscott - Clarke,02910005, 88, 18.7, 207, 47.8, 52.2, 17.9, 22.7,28 +4.04,4.04,a-reso-i1,2022-23,Swampscott - Hadley,02910010, 144, 19.8, 357, 48.2, 51.8, 8.7, 17.9,19.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Swampscott - Stanley,02910020, 68, 18.9, 162, 40.7, 59.3, 3.1, 23.5,11.1 +5.18,5,a-reso-i1,2022-23,Swampscott - Swampscott High,02910505, 435, 14.1, 645, 48.5, 51.2, 3.0, 18.5,21.9 +4.5200000000000005,4.52,a-reso-i1,2022-23,Swampscott - Swampscott Middle,02910305, 464, 17.4, 697, 48.1, 51.7, 3.0, 28.3,21.2 +3.2399999999999998,3.24,a-reso-i1,2022-23,Swansea - Elizabeth S Brown,02920006, 121, 23.8, 288, 46.2, 53.8, 1.4, 13.5,26 +3.78,3.78,a-reso-i1,2022-23,Swansea - Gardner,02920015, 109, 21.1, 251, 54.6, 45.4, 2.0, 8.8,34.3 +5.16,5,a-reso-i1,2022-23,Swansea - Joseph Case High,02920505, 265, 14.2, 540, 49.3, 50.6, 0.7, 14.4,27.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Swansea - Joseph Case Jr High,02920305, 205, 17.8, 497, 48.9, 51.1, 0.8, 11.3,26 +4.58,4.58,a-reso-i1,2022-23,Swansea - Joseph G Luther,02920020, 107, 17.1, 183, 52.5, 47.5, 0.6, 21.9,24 +4.220000000000001,4.22,a-reso-i1,2022-23,Swansea - Mark G Hoyle Elementary,02920017, 94, 18.9, 251, 45.4, 54.6, 0.4, 23.9,29.9 +-0.6400000000000006,1,a-reso-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 786, 43.2," 3,222", 56.3, 43.4, 5.3, 23.7,56.3 +4.4399999999999995,4.44,a-reso-i1,2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 393, 17.8, 556, 45.9, 54.1, 1.4, 13.5,28.4 +5.58,5,a-reso-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 779, 12.1," 1,196", 45.7, 53.7, 1.4, 12.2,27.8 +5.74,5,a-reso-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 73, 11.3, 504, 32.9, 66.7, 1.0, 15.9,32.5 +3.7,3.7,a-reso-i1,2022-23,Taunton - Benjamin Friedman Middle,02930315, 345, 21.5, 745, 47.0, 53.0, 3.1, 18.5,56.2 +4.8,4.8,a-reso-i1,2022-23,Taunton - East Taunton Elementary,02930010, 251, 16.0, 531, 49.9, 50.1, 4.0, 26.6,54.4 +4.12,4.12,a-reso-i1,2022-23,Taunton - Edmund Hatch Bennett,02930007, 117, 19.4, 291, 50.2, 49.8, 4.5, 19.2,48.8 +4.54,4.54,a-reso-i1,2022-23,Taunton - Edward F. Leddy Preschool,02930005, 19, 17.3, 328, 37.2, 62.8, 11.9, 61.0,58.5 +4.08,4.08,a-reso-i1,2022-23,Taunton - Elizabeth Pole,02930027, 250, 19.6, 628, 50.2, 49.8, 19.8, 17.7,70.7 +4.2,4.2,a-reso-i1,2022-23,Taunton - H H Galligan,02930057, 109, 19.0, 266, 50.0, 50.0, 18.8, 19.2,79.3 +4.46,4.46,a-reso-i1,2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 363, 17.7, 852, 49.9, 50.1, 9.6, 20.5,66.9 +3.06,3.06,a-reso-i1,2022-23,Taunton - John F Parker Middle,02930305, 213, 24.7, 543, 48.4, 51.6, 16.4, 15.7,67 +4.32,4.32,a-reso-i1,2022-23,Taunton - Joseph C Chamberlain,02930008, 188, 18.4, 456, 49.3, 50.7, 4.8, 22.6,51.5 +4.6,4.6,a-reso-i1,2022-23,Taunton - Joseph H Martin,02930042, 384, 17.0, 651, 49.5, 50.5, 5.1, 21.5,53.3 +6.62,5,a-reso-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 113, 6.9, 112, 43.8, 56.3, 4.5, 32.1,84.8 +4.12,4.12,a-reso-i1,2022-23,Taunton - Taunton High,02930505," 1,032", 19.4," 2,824", 48.5, 51.4, 7.7, 17.5,54.3 +4.14,4.14,a-reso-i1,2022-23,Tewksbury - Heath-Brook,02950010, 52, 19.3, 236, 48.3, 51.7, 12.3, 11.4,20.3 +4.04,4.04,a-reso-i1,2022-23,Tewksbury - John F. Ryan,02950023, 284, 19.8, 521, 51.6, 48.4, 2.1, 20.5,24.2 +4.04,4.04,a-reso-i1,2022-23,Tewksbury - John W. Wynn Middle,02950305, 251, 19.8, 502, 50.6, 49.4, 2.2, 18.1,25.9 +4.32,4.32,a-reso-i1,2022-23,Tewksbury - L F Dewing,02950001, 90, 18.4, 481, 50.7, 49.3, 7.3, 32.6,24.3 +8.0,5,a-reso-i1,2022-23,Tewksbury - Louise Davy Trahan,02950025, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +8.0,5,a-reso-i1,2022-23,Tewksbury - North Street,02950020, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.5200000000000005,4.52,a-reso-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 403, 17.4, 759, 48.6, 51.0, 1.3, 12.0,21.5 +5.6,5,a-reso-i1,2022-23,Tisbury - Tisbury Elementary,02960005, 200, 12.0, 275, 49.1, 50.9, 30.2, 22.2,54.6 +4.6,4.6,a-reso-i1,2022-23,Topsfield - Proctor Elementary,02980005, 94, 17.0, 258, 49.6, 50.4, 0.0, 22.9,8.5 +4.779999999999999,4.78,a-reso-i1,2022-23,Topsfield - Steward Elementary,02980010, 105, 16.1, 376, 48.9, 51.1, 0.0, 26.1,8 +4.64,4.64,a-reso-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 840, 16.8, 956, 39.3, 59.3, 0.2, 30.8,24.7 +4.4,4.4,a-reso-i1,2022-23,Triton - Newbury Elementary,07730020, 198, 18.0, 413, 47.5, 52.5, 0.0, 20.6,20.3 +4.4799999999999995,4.48,a-reso-i1,2022-23,Triton - Pine Grove,07730025, 217, 17.6, 432, 49.8, 50.2, 1.6, 22.2,22.5 +4.62,4.62,a-reso-i1,2022-23,Triton - Salisbury Elementary,07730015, 220, 16.9, 422, 49.1, 51.0, 5.0, 21.8,49.3 +5.3,5,a-reso-i1,2022-23,Triton - Triton Regional High School,07730505, 348, 13.5, 635, 49.1, 50.4, 1.4, 18.1,30.4 +4.82,4.82,a-reso-i1,2022-23,Triton - Triton Regional Middle School,07730405, 194, 15.9, 322, 48.5, 51.6, 0.3, 23.0,33.2 +5.36,5,a-reso-i1,2022-23,Truro - Truro Central,03000005, 67, 13.2, 101, 48.5, 51.5, 3.0, 17.8,38.6 +4.14,4.14,a-reso-i1,2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 409, 19.3, 761, 47.4, 52.6, 13.4, 26.8,28.9 +4.88,4.88,a-reso-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 330, 15.6, 419, 48.5, 51.6, 1.7, 14.6,19.6 +4.4399999999999995,4.44,a-reso-i1,2022-23,Tyngsborough - Tyngsborough Middle,03010305, 255, 17.8, 406, 43.6, 56.2, 3.0, 20.2,22.4 +5.12,5,a-reso-i1,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 136, 14.4, 203, 52.7, 47.3, 21.2, 34.0,86.7 +3.7600000000000002,3.76,a-reso-i1,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 181, 21.2, 598, 50.5, 49.5, 35.8, 12.2,84.1 +4.76,4.76,a-reso-i1,2022-23,Up-Island Regional - Chilmark Elementary,07740010, 19, 16.2, 71, 52.1, 47.9, 0.0, 28.2,25.4 +4.96,4.96,a-reso-i1,2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 141, 15.2, 345, 47.5, 52.5, 5.5, 24.4,29.3 +5.279999999999999,5,a-reso-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 338, 13.6, 742, 42.1, 57.4, 0.4, 24.0,40.7 +8.0,5,a-reso-i1,2022-23,Uxbridge - Gateway to College,03040515, 0, 0.0, 0, 0.0, 0.0, 0.0, 0.0,0 +4.4399999999999995,4.44,a-reso-i1,2022-23,Uxbridge - Taft Early Learning Center,03040005, 183, 17.8, 539, 46.8, 53.3, 2.8, 23.6,29.3 +5.279999999999999,5,a-reso-i1,2022-23,Uxbridge - Uxbridge High,03040505, 409, 13.6, 602, 43.5, 56.5, 1.7, 18.1,26.9 +4.26,4.26,a-reso-i1,2022-23,Uxbridge - Whitin Intermediate,03040405, 206, 18.7, 492, 43.9, 56.1, 2.9, 18.9,29.7 +3.54,3.54,a-reso-i1,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 211, 22.3, 484, 53.9, 45.9, 5.4, 24.6,83.9 +4.42,4.42,a-reso-i1,2022-23,Wachusett - Central Tree Middle,07750310, 188, 17.9, 372, 50.5, 49.5, 1.1, 11.6,23.1 +4.82,4.82,a-reso-i1,2022-23,Wachusett - Chocksett Middle School,07750315, 154, 15.9, 280, 46.1, 53.9, 1.8, 11.4,19.6 +4.14,4.14,a-reso-i1,2022-23,Wachusett - Davis Hill Elementary,07750018, 168, 19.3, 452, 47.4, 52.7, 3.3, 8.0,17.7 +4.38,4.38,a-reso-i1,2022-23,Wachusett - Dawson,07750020, 195, 18.1, 500, 53.6, 46.4, 2.8, 12.4,14.4 +4.0,4.0,a-reso-i1,2022-23,Wachusett - Early Childhood Center,07750001, 8, 20.0, 160, 35.6, 64.4, 0.0, 60.6,28.1 +4.1,4.1,a-reso-i1,2022-23,Wachusett - Glenwood Elementary School,07750060, 144, 19.5, 337, 51.3, 48.7, 2.4, 9.8,17.8 +4.76,4.76,a-reso-i1,2022-23,Wachusett - Houghton Elementary,07750027, 146, 16.2, 329, 45.3, 54.7, 6.7, 13.7,20.1 +4.18,4.18,a-reso-i1,2022-23,Wachusett - Leroy E.Mayo,07750032, 183, 19.1, 488, 48.4, 51.6, 3.5, 8.6,16.6 +3.8600000000000003,3.86,a-reso-i1,2022-23,Wachusett - Mountview Middle,07750305, 350, 20.7, 781, 47.6, 52.1, 2.1, 12.0,15.1 +4.04,4.04,a-reso-i1,2022-23,Wachusett - Naquag Elementary School,07750005, 132, 19.8, 367, 46.6, 53.4, 1.6, 7.6,18.5 +4.4799999999999995,4.48,a-reso-i1,2022-23,Wachusett - Paxton Center,07750040, 196, 17.6, 447, 52.1, 47.9, 3.1, 19.5,14.8 +4.5200000000000005,4.52,a-reso-i1,2022-23,Wachusett - Thomas Prince,07750045, 153, 17.4, 344, 48.6, 51.5, 0.6, 12.2,11.1 +4.68,4.68,a-reso-i1,2022-23,Wachusett - Wachusett Regional High,07750505," 1,043", 16.6," 1,929", 52.8, 47.1, 1.2, 15.2,16.4 +3.6399999999999997,3.64,a-reso-i1,2022-23,Wakefield - Dolbeare,03050005, 180, 21.8, 437, 53.8, 46.2, 6.4, 15.1,16 +6.0200000000000005,5,a-reso-i1,2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 28, 9.9, 139, 41.7, 58.3, 0.0, 45.3,20.1 +3.9,3.9,a-reso-i1,2022-23,Wakefield - Galvin Middle School,03050310, 563, 20.5," 1,074", 47.6, 52.1, 2.1, 19.7,17.3 +3.6399999999999997,3.64,a-reso-i1,2022-23,Wakefield - Greenwood,03050020, 90, 21.8, 218, 45.9, 54.1, 1.4, 13.8,9.6 +5.5200000000000005,5,a-reso-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 551, 12.4, 826, 50.7, 49.2, 2.2, 17.0,18.5 +3.78,3.78,a-reso-i1,2022-23,Wakefield - Walton,03050040, 90, 21.1, 211, 42.2, 57.8, 3.3, 14.2,7.6 +4.14,4.14,a-reso-i1,2022-23,Wakefield - Woodville School,03050015, 191, 19.3, 423, 50.8, 49.2, 7.1, 18.2,26.2 +5.5,5,a-reso-i1,2022-23,Wales - Wales Elementary,03060005, 39, 12.5, 98, 39.8, 60.2, 2.0, 27.6,53.1 +4.9799999999999995,4.98,a-reso-i1,2022-23,Walpole - Bird Middle,03070305, 286, 15.1, 380, 52.6, 47.1, 2.9, 18.2,20.5 +4.74,4.74,a-reso-i1,2022-23,Walpole - Boyden,03070010, 125, 16.3, 407, 45.2, 54.8, 5.4, 19.2,20.9 +5.14,5,a-reso-i1,2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 8, 14.3, 114, 36.8, 63.2, 8.8, 50.9,19.3 +4.5,4.5,a-reso-i1,2022-23,Walpole - Eleanor N Johnson Middle,03070310, 280, 17.5, 420, 47.4, 52.6, 1.7, 16.2,11.9 +3.96,3.96,a-reso-i1,2022-23,Walpole - Elm Street School,03070005, 110, 20.2, 446, 54.5, 45.3, 4.9, 13.2,13.9 +4.0600000000000005,4.06,a-reso-i1,2022-23,Walpole - Fisher,03070015, 120, 19.7, 472, 49.8, 50.0, 3.6, 17.6,11 +3.8200000000000003,3.82,a-reso-i1,2022-23,Walpole - Old Post Road,03070018, 110, 20.9, 459, 50.1, 49.9, 3.3, 7.2,12.2 +4.74,4.74,a-reso-i1,2022-23,Walpole - Walpole High,03070505, 523, 16.3, 993, 49.7, 50.2, 2.3, 16.6,15.4 +4.8,4.8,a-reso-i1,2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 314, 16.0, 487, 51.1, 48.7, 10.1, 16.2,24.9 +4.88,4.88,a-reso-i1,2022-23,Waltham - Henry Whittemore Elementary School,03080065, 273, 15.6, 389, 53.5, 46.5, 61.2, 11.3,71.7 +4.76,4.76,a-reso-i1,2022-23,Waltham - James Fitzgerald Elementary School,03080060, 248, 16.2, 387, 47.0, 53.0, 16.5, 15.0,33.3 +4.8,4.8,a-reso-i1,2022-23,Waltham - John F Kennedy Middle,03080404, 438, 16.0, 623, 45.4, 54.4, 7.7, 21.4,41.7 +5.08,5,a-reso-i1,2022-23,Waltham - John W. McDevitt Middle School,03080415, 463, 14.6, 614, 45.9, 54.1, 19.7, 21.0,63.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Waltham - Northeast Elementary School,03080040, 300, 16.4, 532, 52.3, 47.7, 28.2, 20.3,50.9 +4.84,4.84,a-reso-i1,2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 239, 15.8, 358, 47.8, 52.2, 28.5, 16.8,50 +4.8,4.8,a-reso-i1,2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 142, 16.0, 210, 47.1, 52.9, 39.5, 12.9,51.4 +4.76,4.76,a-reso-i1,2022-23,Waltham - Waltham Sr High,03080505, 947, 16.2," 1,815", 45.2, 54.6, 23.2, 15.2,52.8 +5.4399999999999995,5,a-reso-i1,2022-23,Waltham - William F. Stanley Elementary School,03080005, 275, 12.8, 391, 41.2, 58.8, 29.9, 35.8,47.3 +3.94,3.94,a-reso-i1,2022-23,Ware - Stanley M Koziol Elementary School,03090020, 68, 20.3, 401, 48.1, 51.4, 2.5, 19.5,68.8 +4.46,4.46,a-reso-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 240, 17.7, 516, 49.8, 50.2, 1.6, 20.5,57.4 +3.9200000000000004,3.92,a-reso-i1,2022-23,Ware - Ware Middle School,03090305, 89, 20.4, 252, 50.8, 49.2, 0.8, 20.2,68.3 +7.08,5,a-reso-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 26, 4.6, 31, 61.3, 38.7, 0.0, 32.3,74.2 +4.86,4.86,a-reso-i1,2022-23,Wareham - Wareham Elementary School,03100017, 700, 15.7, 927, 47.5, 52.5, 1.4, 26.4,66.9 +5.2,5,a-reso-i1,2022-23,Wareham - Wareham Middle,03100305, 291, 14.0, 437, 48.1, 51.7, 0.0, 29.1,69.1 +5.46,5,a-reso-i1,2022-23,Wareham - Wareham Senior High,03100505, 500, 12.7, 629, 49.4, 50.2, 0.2, 31.0,62.3 +4.5,4.5,a-reso-i1,2022-23,Watertown - Cunniff,03140015, 173, 17.5, 321, 49.2, 50.8, 19.3, 24.3,30.2 +4.4399999999999995,4.44,a-reso-i1,2022-23,Watertown - Hosmer,03140020, 321, 17.8, 741, 46.6, 53.3, 19.2, 20.9,33.2 +4.5200000000000005,4.52,a-reso-i1,2022-23,Watertown - James Russell Lowell,03140025, 195, 17.4, 360, 45.8, 54.2, 22.2, 19.2,35 +5.12,5,a-reso-i1,2022-23,Watertown - Watertown High,03140505, 417, 14.4, 767, 44.7, 54.9, 15.9, 16.2,46.4 +4.6,4.6,a-reso-i1,2022-23,Watertown - Watertown Middle,03140305, 351, 17.0, 551, 51.2, 48.5, 15.1, 18.3,39.2 +3.94,3.94,a-reso-i1,2022-23,Wayland - Claypit Hill School,03150005, 205, 20.3, 505, 50.7, 49.3, 6.9, 21.4,10.5 +3.96,3.96,a-reso-i1,2022-23,Wayland - Happy Hollow School,03150015, 149, 20.2, 363, 50.4, 49.6, 5.8, 16.5,10.7 +3.7,3.7,a-reso-i1,2022-23,Wayland - Loker School,03150020, 149, 21.5, 387, 51.9, 48.1, 5.4, 14.2,6.7 +5.16,5,a-reso-i1,2022-23,Wayland - The Children's Way Preschool,03150025, 5, 14.2, 71, 39.4, 60.6, 32.4, 36.6,15.5 +4.92,4.92,a-reso-i1,2022-23,Wayland - Wayland High School,03150505, 378, 15.4, 823, 51.9, 48.1, 0.4, 19.7,7.8 +5.12,5,a-reso-i1,2022-23,Wayland - Wayland Middle School,03150305, 461, 14.4, 623, 46.2, 53.6, 2.3, 22.0,8.8 +5.34,5,a-reso-i1,2022-23,Webster - Bartlett High School,03160505, 238, 13.3, 373, 45.8, 53.4, 13.7, 21.2,67.8 +4.5600000000000005,4.56,a-reso-i1,2022-23,Webster - Park Avenue Elementary,03160015, 284, 17.2, 762, 47.4, 52.6, 17.7, 28.5,74.5 +3.46,3.46,a-reso-i1,2022-23,Webster - Webster Middle School,03160315, 288, 22.7, 625, 45.8, 54.2, 11.7, 21.3,68.5 +4.84,4.84,a-reso-i1,2022-23,Wellesley - Ernest F Upham,03170050, 90, 15.8, 159, 47.2, 52.8, 1.3, 31.5,6.9 +4.7,4.7,a-reso-i1,2022-23,Wellesley - Hunnewell,03170025, 108, 16.5, 198, 50.0, 50.0, 0.5, 25.3,8.1 +4.5600000000000005,4.56,a-reso-i1,2022-23,Wellesley - John D Hardy,03170020, 110, 17.2, 210, 47.6, 52.4, 3.8, 14.8,7.1 +4.2,4.2,a-reso-i1,2022-23,Wellesley - Joseph E Fiske,03170015, 141, 19.0, 295, 48.5, 51.5, 6.4, 9.8,10.2 +4.2,4.2,a-reso-i1,2022-23,Wellesley - Katharine Lee Bates,03170005, 126, 19.0, 266, 50.0, 50.0, 0.8, 10.5,3.4 +5.68,5,a-reso-i1,2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 29, 11.6, 119, 37.0, 63.0, 9.2, 52.1,11.8 +4.42,4.42,a-reso-i1,2022-23,Wellesley - Schofield,03170045, 168, 17.9, 331, 53.5, 46.5, 5.7, 13.3,7.6 +4.220000000000001,4.22,a-reso-i1,2022-23,Wellesley - Sprague Elementary School,03170048, 140, 18.9, 294, 44.2, 55.8, 3.1, 19.1,10.5 +5.279999999999999,5,a-reso-i1,2022-23,Wellesley - Wellesley Middle,03170305, 715, 13.6, 935, 50.5, 49.5, 1.4, 16.6,9.1 +4.96,4.96,a-reso-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 686, 15.2," 1,411", 52.2, 47.4, 0.4, 15.9,8.3 +5.42,5,a-reso-i1,2022-23,Wellfleet - Wellfleet Elementary,03180005, 80, 12.9, 93, 45.2, 54.8, 0.0, 14.0,32.3 +4.1,4.1,a-reso-i1,2022-23,West Boylston - Major Edwards Elementary,03220005, 176, 19.5, 436, 47.0, 53.0, 7.8, 21.3,31 +5.5,5,a-reso-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 344, 12.5, 437, 52.4, 47.6, 2.1, 15.3,29.3 +3.5799999999999996,3.58,a-reso-i1,2022-23,West Bridgewater - Howard School,03230305, 140, 22.1, 319, 48.6, 51.4, 4.1, 13.8,26.7 +3.46,3.46,a-reso-i1,2022-23,West Bridgewater - Rose L Macdonald,03230003, 131, 22.7, 319, 46.1, 53.9, 7.2, 14.7,29.8 +3.9,3.9,a-reso-i1,2022-23,West Bridgewater - Spring Street School,03230005, 69, 20.5, 168, 44.6, 55.4, 5.4, 22.6,29.2 +4.62,4.62,a-reso-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 454, 16.9, 640, 50.6, 49.4, 2.0, 11.4,25.8 +4.08,4.08,a-reso-i1,2022-23,West Springfield - John Ashley,03320005, 45, 19.6, 177, 48.6, 51.4, 4.0, 26.0,49.2 +4.42,4.42,a-reso-i1,2022-23,West Springfield - John R Fausey,03320010, 117, 17.9, 412, 52.9, 47.1, 3.6, 17.0,42.2 +5.04,5,a-reso-i1,2022-23,West Springfield - Memorial,03320025, 67, 14.8, 192, 46.9, 53.1, 2.6, 25.0,78.1 +5.3,5,a-reso-i1,2022-23,West Springfield - Mittineague,03320030, 57, 13.5, 150, 54.0, 46.0, 4.0, 20.7,50 +4.7,4.7,a-reso-i1,2022-23,West Springfield - Philip G Coburn,03320007, 173, 16.5, 569, 49.0, 51.0, 53.4, 17.4,80.5 +4.8,4.8,a-reso-i1,2022-23,West Springfield - Tatham,03320040, 72, 16.0, 226, 46.5, 53.5, 2.7, 10.6,29.7 +6.0600000000000005,5,a-reso-i1,2022-23,West Springfield - West Springfield Early Childhood,03320001, 14, 9.7, 136, 41.9, 58.1, 12.5, 58.1,72.8 +4.779999999999999,4.78,a-reso-i1,2022-23,West Springfield - West Springfield High,03320505, 685, 16.1," 1,219", 46.5, 52.6, 7.3, 18.2,51.9 +4.6,4.6,a-reso-i1,2022-23,West Springfield - West Springfield Middle,03320305, 647, 17.0, 956, 49.3, 50.3, 12.3, 17.8,58.7 +4.24,4.24,a-reso-i1,2022-23,Westborough - Annie E Fales,03210010, 117, 18.8, 340, 49.4, 50.6, 7.7, 18.5,7.1 +4.88,4.88,a-reso-i1,2022-23,Westborough - Elsie A Hastings Elementary,03210025, 153, 15.6, 486, 49.0, 51.0, 29.8, 22.8,22.6 +4.1,4.1,a-reso-i1,2022-23,Westborough - J Harding Armstrong,03210005, 132, 19.5, 409, 47.4, 52.6, 18.6, 17.1,19.3 +3.6399999999999997,3.64,a-reso-i1,2022-23,Westborough - Mill Pond School,03210045, 316, 21.8, 874, 51.3, 48.6, 9.8, 20.4,18 +5.0,5.0,a-reso-i1,2022-23,Westborough - Sarah W Gibbons Middle,03210305, 547, 15.0, 605, 46.6, 53.2, 7.9, 15.0,16.2 +5.04,5,a-reso-i1,2022-23,Westborough - Westborough High,03210505, 748, 14.8," 1,198", 50.6, 48.8, 5.0, 10.8,14.7 +4.36,4.36,a-reso-i1,2022-23,Westfield - Abner Gibbs,03250020, 102, 18.2, 181, 51.4, 48.6, 17.7, 19.9,71.3 +6.14,5,a-reso-i1,2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 17, 9.3, 158, 41.8, 58.2, 1.9, 62.7,53.2 +4.46,4.46,a-reso-i1,2022-23,Westfield - Franklin Ave,03250015, 101, 17.7, 177, 52.0, 48.0, 0.6, 18.6,81.9 +4.04,4.04,a-reso-i1,2022-23,Westfield - Highland,03250025, 189, 19.8, 365, 52.1, 48.0, 19.2, 20.3,45.5 +4.42,4.42,a-reso-i1,2022-23,Westfield - Munger Hill,03250033, 195, 17.9, 341, 48.1, 51.9, 21.1, 24.3,43.4 +3.9799999999999995,3.98,a-reso-i1,2022-23,Westfield - Paper Mill,03250036, 164, 20.1, 330, 50.0, 50.0, 1.5, 29.1,53 +4.12,4.12,a-reso-i1,2022-23,Westfield - Southampton Road,03250040, 153, 19.4, 320, 49.4, 50.6, 1.6, 19.1,44.1 +5.04,5,a-reso-i1,2022-23,Westfield - Westfield High,03250505, 586, 14.8," 1,014", 52.5, 47.3, 6.4, 21.4,42.7 +4.84,4.84,a-reso-i1,2022-23,Westfield - Westfield Intermediate School,03250075, 398, 15.8, 686, 51.9, 48.1, 7.6, 23.2,55.1 +4.54,4.54,a-reso-i1,2022-23,Westfield - Westfield Middle School,03250310, 335, 17.3, 689, 46.4, 53.4, 7.0, 19.6,48 +5.26,5,a-reso-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 285, 13.7, 540, 31.5, 68.2, 2.8, 24.6,45 +6.0,5,a-reso-i1,2022-23,Westfield - Westfield Virtual School,03250705, 66, 10.0, 109, 51.4, 47.7, 1.8, 31.2,70.6 +4.36,4.36,a-reso-i1,2022-23,Westford - Abbot Elementary,03260004, 199, 18.2, 365, 48.5, 51.5, 1.4, 17.5,6 +4.9399999999999995,4.94,a-reso-i1,2022-23,Westford - Blanchard Middle,03260310, 444, 15.3, 549, 52.8, 47.0, 0.7, 18.8,7.8 +3.7600000000000002,3.76,a-reso-i1,2022-23,Westford - Col John Robinson,03260025, 150, 21.2, 362, 50.8, 49.2, 6.9, 19.6,11.3 +3.9799999999999995,3.98,a-reso-i1,2022-23,Westford - Day Elementary,03260007, 166, 20.1, 329, 50.2, 49.9, 6.4, 18.8,10.3 +3.96,3.96,a-reso-i1,2022-23,Westford - John A. Crisafulli Elementary School,03260045, 169, 20.2, 346, 44.2, 55.5, 4.3, 21.1,11.9 +3.94,3.94,a-reso-i1,2022-23,Westford - Nabnasset,03260015, 168, 20.3, 385, 49.4, 50.7, 4.2, 17.4,8.8 +4.0,4.0,a-reso-i1,2022-23,Westford - Rita E. Miller Elementary School,03260055, 144, 20.0, 304, 35.2, 64.8, 19.7, 29.3,15.1 +4.6,4.6,a-reso-i1,2022-23,Westford - Stony Brook School,03260330, 344, 17.0, 619, 51.5, 48.3, 1.8, 18.1,9.5 +4.38,4.38,a-reso-i1,2022-23,Westford - Westford Academy,03260505, 671, 18.1," 1,519", 49.8, 50.0, 0.7, 12.6,7.4 +5.32,5,a-reso-i1,2022-23,Westhampton - Westhampton Elementary School,03270005, 57, 13.4, 105, 42.9, 57.1, 0.0, 31.4,30.5 +4.18,4.18,a-reso-i1,2022-23,Weston - Country,03300010, 84, 19.1, 333, 48.7, 51.4, 6.9, 14.7,6 +3.9,3.9,a-reso-i1,2022-23,Weston - Field Elementary School,03300012, 92, 20.5, 268, 51.1, 48.9, 4.5, 15.3,8.6 +5.36,5,a-reso-i1,2022-23,Weston - Weston High,03300505, 512, 13.2, 644, 43.6, 56.1, 1.6, 22.2,8.2 +4.46,4.46,a-reso-i1,2022-23,Weston - Weston Middle,03300305, 291, 17.7, 449, 49.0, 50.8, 0.9, 21.6,9.6 +4.18,4.18,a-reso-i1,2022-23,Weston - Woodland,03300015, 82, 19.1, 321, 50.5, 49.5, 5.3, 10.9,7.5 +5.04,5,a-reso-i1,2022-23,Westport - Alice A Macomber,03310015, 77, 14.8, 180, 57.2, 42.8, 2.8, 28.9,37.2 +4.720000000000001,4.72,a-reso-i1,2022-23,Westport - Westport Elementary,03310030, 179, 16.4, 445, 53.3, 46.7, 2.3, 24.5,35.1 +4.58,4.58,a-reso-i1,2022-23,Westport - Westport Middle-High School,03310515, 476, 17.1, 833, 45.7, 54.0, 1.1, 19.7,32.7 +4.720000000000001,4.72,a-reso-i1,2022-23,Westwood - Deerfield School,03350010, 87, 16.4, 199, 48.2, 51.8, 1.5, 27.6,5.5 +4.34,4.34,a-reso-i1,2022-23,Westwood - Downey,03350012, 124, 18.3, 313, 43.1, 56.9, 2.6, 27.2,7 +4.0,4.0,a-reso-i1,2022-23,Westwood - E W Thurston Middle,03350305, 447, 20.0, 667, 48.6, 51.4, 0.3, 23.8,7.1 +4.42,4.42,a-reso-i1,2022-23,Westwood - Martha Jones,03350017, 108, 17.9, 267, 51.3, 48.7, 1.1, 13.5,3 +4.24,4.24,a-reso-i1,2022-23,Westwood - Paul Hanlon,03350015, 87, 18.8, 226, 48.2, 51.8, 3.1, 23.0,20.8 +5.279999999999999,5,a-reso-i1,2022-23,Westwood - Westwood High,03350505, 551, 13.6, 906, 48.1, 51.7, 0.2, 17.2,9.9 +4.6,4.6,a-reso-i1,2022-23,Westwood - Westwood Integrated Preschool,03350050, 3, 17.0, 51, 33.3, 66.7, 0.0, 56.9,9.8 +4.14,4.14,a-reso-i1,2022-23,Westwood - William E Sheehan,03350025, 109, 19.3, 288, 42.0, 58.0, 0.7, 20.8,4.5 +4.08,4.08,a-reso-i1,2022-23,Weymouth - Academy Avenue,03360005, 95, 19.6, 352, 50.6, 49.4, 13.1, 15.3,38.9 +3.72,3.72,a-reso-i1,2022-23,Weymouth - Frederick C Murphy,03360050, 70, 21.4, 286, 46.5, 53.5, 9.1, 21.3,46.2 +4.92,4.92,a-reso-i1,2022-23,Weymouth - Johnson Early Childhood Center,03360003, 14, 15.4, 215, 42.3, 57.7, 4.7, 57.2,36.3 +3.94,3.94,a-reso-i1,2022-23,Weymouth - Lawrence W Pingree,03360065, 68, 20.3, 266, 54.9, 45.1, 6.8, 25.9,45.5 +4.6,4.6,a-reso-i1,2022-23,Weymouth - Maria Weston Chapman Middle School,03360020," 1,375", 17.0," 1,231", 51.9, 48.0, 6.8, 23.0,42.7 +3.8,3.8,a-reso-i1,2022-23,Weymouth - Ralph Talbot,03360085, 65, 21.0, 265, 43.0, 57.0, 10.9, 18.9,38.1 +4.2,4.2,a-reso-i1,2022-23,Weymouth - Thomas V Nash,03360060, 67, 19.0, 243, 48.2, 51.9, 11.1, 16.1,40.7 +3.78,3.78,a-reso-i1,2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 90, 21.1, 363, 49.9, 50.1, 12.1, 19.3,30.9 +4.74,4.74,a-reso-i1,2022-23,Weymouth - Wessagusset,03360110, 112, 16.3, 348, 48.9, 51.2, 9.8, 25.6,37.1 +4.9399999999999995,4.94,a-reso-i1,2022-23,Weymouth - Weymouth High School,03360505, 913, 15.3," 1,816", 50.4, 49.3, 6.3, 22.0,39.9 +3.78,3.78,a-reso-i1,2022-23,Weymouth - William Seach,03360080, 95, 21.1, 380, 49.7, 50.3, 19.7, 19.2,71.3 +4.86,4.86,a-reso-i1,2022-23,Whately - Whately Elementary,03370005, 86, 15.7, 129, 47.3, 52.7, 1.6, 16.3,24.8 +4.42,4.42,a-reso-i1,2022-23,Whitman-Hanson - Hanson Middle School,07800315, 223, 17.9, 447, 47.0, 53.0, 0.7, 20.1,25.7 +4.14,4.14,a-reso-i1,2022-23,Whitman-Hanson - Indian Head,07800035, 175, 19.3, 483, 47.4, 52.6, 0.6, 14.7,24.8 +4.4,4.4,a-reso-i1,2022-23,Whitman-Hanson - John H Duval,07800030, 168, 18.0, 433, 47.3, 52.7, 15.9, 21.0,44.3 +3.96,3.96,a-reso-i1,2022-23,Whitman-Hanson - Louise A Conley,07800010, 168, 20.2, 485, 50.1, 49.9, 8.3, 15.3,30.1 +5.34,5,a-reso-i1,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 33, 13.3, 111, 32.4, 67.6, 0.0, 33.3,27 +4.64,4.64,a-reso-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 401, 16.8," 1,075", 49.4, 50.6, 4.7, 16.3,29.5 +3.9200000000000004,3.92,a-reso-i1,2022-23,Whitman-Hanson - Whitman Middle,07800310, 205, 20.4, 511, 48.5, 51.5, 5.7, 13.9,29.4 +5.68,5,a-reso-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605," 1,124", 11.6," 1,281", 44.4, 54.6, 1.6, 15.3,40.1 +4.68,4.68,a-reso-i1,2022-23,Williamsburg - Anne T. Dunphy School,03400020, 57, 16.6, 129, 48.1, 51.9, 1.6, 16.3,34.9 +5.34,5,a-reso-i1,2022-23,Wilmington - Boutwell,03420005, 90, 13.3, 147, 47.6, 52.4, 2.7, 21.1,8.2 +3.72,3.72,a-reso-i1,2022-23,Wilmington - North Intermediate,03420060, 131, 21.4, 249, 52.2, 47.8, 1.6, 16.9,13.7 +4.5,4.5,a-reso-i1,2022-23,Wilmington - Shawsheen Elementary,03420025, 215, 17.5, 388, 45.9, 54.1, 1.6, 20.6,16.5 +4.4399999999999995,4.44,a-reso-i1,2022-23,Wilmington - West Intermediate,03420080, 175, 17.8, 297, 47.1, 52.9, 1.0, 21.6,14.5 +5.32,5,a-reso-i1,2022-23,Wilmington - Wilmington High,03420505, 434, 13.4, 667, 49.8, 49.6, 0.8, 12.9,14.4 +5.24,5,a-reso-i1,2022-23,Wilmington - Wilmington Middle School,03420330, 541, 13.8, 638, 48.1, 51.9, 1.4, 19.4,14.7 +4.2,4.2,a-reso-i1,2022-23,Wilmington - Woburn Street,03420020, 225, 19.0, 424, 44.3, 55.7, 4.5, 13.7,14.2 +3.88,3.88,a-reso-i1,2022-23,Winchendon - Memorial,03430040, 76, 20.6, 315, 49.8, 50.2, 1.6, 24.1,61.3 +3.2,3.2,a-reso-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 2, 24.0, 33, 30.3, 66.7, 0.0, 27.3,48.5 +5.42,5,a-reso-i1,2022-23,Winchendon - Murdock High School,03430515, 162, 12.9, 274, 49.3, 50.0, 2.6, 19.0,56.6 +4.1,4.1,a-reso-i1,2022-23,Winchendon - Murdock Middle School,03430315, 116, 19.5, 279, 38.7, 60.6, 2.9, 16.9,52.7 +3.66,3.66,a-reso-i1,2022-23,Winchendon - Toy Town Elementary,03430050, 109, 21.7, 296, 46.0, 54.1, 1.4, 21.6,58.1 +6.38,5,a-reso-i1,2022-23,Winchendon - Winchendon PreSchool Program,03430010, 10, 8.1, 80, 42.5, 57.5, 2.5, 35.0,47.5 +4.5,4.5,a-reso-i1,2022-23,Winchester - Ambrose Elementary,03440045, 225, 17.5, 345, 51.6, 48.4, 0.9, 12.5,2.9 +4.26,4.26,a-reso-i1,2022-23,Winchester - Lincoln Elementary,03440005, 199, 18.7, 332, 47.0, 53.0, 4.5, 16.3,3 +4.46,4.46,a-reso-i1,2022-23,Winchester - Lynch Elementary,03440020, 284, 17.7, 496, 40.3, 59.7, 12.7, 23.2,12.5 +3.94,3.94,a-reso-i1,2022-23,Winchester - McCall Middle,03440305, 565, 20.3," 1,037", 52.0, 47.8, 1.2, 15.9,6.5 +4.5,4.5,a-reso-i1,2022-23,Winchester - Muraco Elementary,03440040, 211, 17.5, 330, 48.8, 50.9, 7.3, 12.1,9.1 +4.6,4.6,a-reso-i1,2022-23,Winchester - Vinson-Owen Elementary,03440025, 274, 17.0, 408, 51.7, 48.3, 4.2, 15.0,4.7 +4.720000000000001,4.72,a-reso-i1,2022-23,Winchester - Winchester High School,03440505, 633, 16.4," 1,381", 51.4, 48.4, 1.2, 14.8,7.5 +3.8200000000000003,3.82,a-reso-i1,2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 126, 20.9, 438, 56.4, 43.6, 14.2, 17.1,39.5 +4.04,4.04,a-reso-i1,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 117, 19.8, 523, 47.8, 52.2, 18.4, 19.9,40.3 +4.2,4.2,a-reso-i1,2022-23,Winthrop - Winthrop High School,03460505, 218, 19.0, 616, 51.1, 48.7, 7.5, 15.1,41.1 +4.16,4.16,a-reso-i1,2022-23,Winthrop - Winthrop Middle School,03460305, 225, 19.2, 441, 46.9, 53.1, 6.1, 14.5,39.9 +4.96,4.96,a-reso-i1,2022-23,Woburn - Clyde Reeves,03470040, 248, 15.2, 433, 43.7, 56.4, 8.8, 36.0,35.6 +5.08,5,a-reso-i1,2022-23,Woburn - Daniel L Joyce Middle School,03470410, 442, 14.6, 468, 52.6, 47.4, 8.3, 25.2,43.2 +4.6,4.6,a-reso-i1,2022-23,Woburn - Goodyear Elementary School,03470005, 190, 17.0, 325, 53.5, 46.5, 20.9, 23.7,45.5 +3.8600000000000003,3.86,a-reso-i1,2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 190, 20.7, 394, 47.0, 53.1, 8.4, 16.2,23.6 +4.4799999999999995,4.48,a-reso-i1,2022-23,Woburn - John F Kennedy Middle School,03470405, 431, 17.6, 539, 51.0, 49.0, 7.1, 14.5,46.8 +4.7,4.7,a-reso-i1,2022-23,Woburn - Linscott-Rumford,03470025, 120, 16.5, 200, 50.5, 49.5, 17.5, 11.0,34 +4.9,4.9,a-reso-i1,2022-23,Woburn - Malcolm White,03470055, 196, 15.5, 321, 53.6, 46.1, 24.3, 21.8,48.3 +4.7,4.7,a-reso-i1,2022-23,Woburn - Mary D Altavesta,03470065, 120, 16.5, 198, 52.0, 48.0, 19.7, 23.7,48 +5.3,5,a-reso-i1,2022-23,Woburn - Shamrock,03470043, 193, 13.5, 282, 46.1, 53.9, 9.2, 35.1,53.2 +5.24,5,a-reso-i1,2022-23,Woburn - Woburn High,03470505, 649, 13.8," 1,194", 51.3, 48.2, 8.8, 15.8,37.9 +4.6,4.6,a-reso-i1,2022-23,Worcester - Belmont Street Community,03480020, 284, 17.0, 579, 48.9, 51.1, 49.4, 19.0,90 +4.68,4.68,a-reso-i1,2022-23,Worcester - Burncoat Middle School,03480405, 422, 16.6, 702, 52.0, 48.0, 23.7, 22.5,69.1 +5.12,5,a-reso-i1,2022-23,Worcester - Burncoat Senior High,03480503, 651, 14.4," 1,163", 50.2, 49.7, 23.8, 18.7,70.3 +5.8,5,a-reso-i1,2022-23,Worcester - Burncoat Street,03480035, 186, 11.0, 232, 48.7, 51.3, 32.8, 24.1,81.9 +5.42,5,a-reso-i1,2022-23,Worcester - Canterbury,03480045, 211, 12.9, 341, 46.6, 53.4, 46.6, 28.5,82.7 +4.82,4.82,a-reso-i1,2022-23,Worcester - Chandler Elementary Community,03480050, 240, 15.9, 427, 48.7, 51.3, 51.5, 15.5,93.4 +5.4799999999999995,5,a-reso-i1,2022-23,Worcester - Chandler Magnet,03480052, 273, 12.6, 404, 55.0, 45.1, 54.7, 18.6,70.1 +5.46,5,a-reso-i1,2022-23,Worcester - City View,03480053, 292, 12.7, 446, 50.2, 49.8, 41.9, 22.7,88.3 +4.779999999999999,4.78,a-reso-i1,2022-23,Worcester - Claremont Academy,03480350, 265, 16.1, 485, 50.5, 49.5, 37.3, 12.2,85.4 +5.720000000000001,5,a-reso-i1,2022-23,Worcester - Clark St Community,03480055, 187, 11.4, 287, 48.8, 51.2, 40.8, 27.9,89.2 +5.24,5,a-reso-i1,2022-23,Worcester - Columbus Park,03480060, 229, 13.8, 397, 45.1, 54.9, 48.6, 25.4,82.1 +5.34,5,a-reso-i1,2022-23,Worcester - Doherty Memorial High,03480512, 854, 13.3," 1,323", 44.9, 55.0, 19.1, 12.6,58.7 +4.62,4.62,a-reso-i1,2022-23,Worcester - Elm Park Community,03480095, 220, 16.9, 428, 48.1, 51.9, 47.4, 14.5,91.8 +4.4,4.4,a-reso-i1,2022-23,Worcester - Flagg Street,03480090, 169, 18.0, 363, 51.2, 48.8, 14.6, 18.2,31.4 +4.720000000000001,4.72,a-reso-i1,2022-23,Worcester - Forest Grove Middle,03480415, 584, 16.4, 924, 49.0, 51.0, 21.0, 19.6,62.2 +5.04,5,a-reso-i1,2022-23,Worcester - Francis J McGrath Elementary,03480177, 129, 14.8, 235, 48.9, 51.1, 35.7, 20.9,77.5 +5.4,5,a-reso-i1,2022-23,Worcester - Gates Lane,03480110, 325, 13.0, 553, 41.6, 58.4, 38.2, 39.1,76.7 +5.54,5,a-reso-i1,2022-23,Worcester - Goddard School/Science Technical,03480100, 266, 12.3, 384, 47.4, 52.6, 52.1, 24.0,88.3 +4.2,4.2,a-reso-i1,2022-23,Worcester - Grafton Street,03480115, 203, 19.0, 436, 47.7, 52.3, 50.0, 14.0,88.3 +4.88,4.88,a-reso-i1,2022-23,Worcester - Head Start,03480002, 25, 15.6, 390, 52.3, 47.7, 1.0, 12.1,91.5 +4.76,4.76,a-reso-i1,2022-23,Worcester - Heard Street,03480136, 130, 16.2, 250, 46.4, 53.6, 22.8, 16.0,57.6 +5.08,5,a-reso-i1,2022-23,Worcester - Jacob Hiatt Magnet,03480140, 193, 14.6, 374, 50.3, 49.7, 31.0, 22.5,71.7 +5.18,5,a-reso-i1,2022-23,Worcester - La Familia Dual Language School,03480025, 184, 14.1, 192, 51.6, 47.9, 49.5, 10.9,62 +4.58,4.58,a-reso-i1,2022-23,Worcester - Lake View,03480145, 155, 17.1, 307, 48.9, 51.1, 23.5, 18.2,61.6 +5.0200000000000005,5,a-reso-i1,2022-23,Worcester - Lincoln Street,03480160, 137, 14.9, 241, 48.6, 51.5, 37.8, 23.7,89.6 +4.4,4.4,a-reso-i1,2022-23,Worcester - May Street,03480175, 143, 18.0, 303, 48.5, 51.5, 22.8, 12.9,53.8 +4.9799999999999995,4.98,a-reso-i1,2022-23,Worcester - Midland Street,03480185, 119, 15.1, 211, 43.6, 56.4, 23.2, 11.9,48.3 +5.42,5,a-reso-i1,2022-23,Worcester - Nelson Place,03480200, 353, 12.9, 588, 42.2, 57.8, 24.0, 37.6,44.9 +5.7,5,a-reso-i1,2022-23,Worcester - Norrback Avenue,03480202, 349, 11.5, 518, 43.4, 56.6, 29.0, 43.6,68.9 +4.76,4.76,a-reso-i1,2022-23,Worcester - North High,03480515, 679, 16.2," 1,352", 48.5, 51.2, 34.8, 16.8,82.3 +4.7,4.7,a-reso-i1,2022-23,Worcester - Quinsigamond,03480210, 369, 16.5, 719, 48.3, 51.7, 47.0, 20.5,83.3 +4.24,4.24,a-reso-i1,2022-23,Worcester - Rice Square,03480215, 228, 18.8, 475, 49.9, 50.1, 46.3, 12.8,80 +5.54,5,a-reso-i1,2022-23,Worcester - Roosevelt,03480220, 337, 12.3, 575, 44.0, 56.0, 27.7, 37.0,64.9 +4.779999999999999,4.78,a-reso-i1,2022-23,Worcester - South High Community,03480520, 987, 16.1," 1,639", 46.9, 53.1, 27.8, 16.3,72.4 +4.88,4.88,a-reso-i1,2022-23,Worcester - Sullivan Middle,03480423, 508, 15.6, 866, 49.2, 50.8, 27.5, 19.6,73 +4.9399999999999995,4.94,a-reso-i1,2022-23,Worcester - Tatnuck,03480230, 206, 15.3, 390, 49.2, 50.8, 25.1, 23.9,59 +3.78,3.78,a-reso-i1,2022-23,Worcester - Thorndyke Road,03480235, 147, 21.1, 360, 51.4, 48.6, 34.4, 21.9,65.8 +4.8,4.8,a-reso-i1,2022-23,Worcester - Union Hill School,03480240, 221, 16.0, 400, 46.0, 54.0, 52.0, 22.3,82.5 +4.8,4.8,a-reso-i1,2022-23,Worcester - University Pk Campus School,03480285, 123, 16.0, 228, 46.9, 53.1, 19.7, 11.0,74.1 +5.14,5,a-reso-i1,2022-23,Worcester - Vernon Hill School,03480280, 281, 14.3, 529, 50.1, 49.9, 45.2, 21.2,84.7 +6.18,5,a-reso-i1,2022-23,Worcester - Wawecus Road School,03480026, 125, 9.1, 132, 52.3, 47.7, 31.8, 28.0,72.7 +4.9,4.9,a-reso-i1,2022-23,Worcester - West Tatnuck,03480260, 195, 15.5, 377, 43.8, 56.2, 17.0, 23.1,43 +4.9,4.9,a-reso-i1,2022-23,Worcester - Woodland Academy,03480030, 296, 15.5, 502, 52.2, 47.8, 62.6, 18.5,93 +4.64,4.64,a-reso-i1,2022-23,Worcester - Worcester Arts Magnet School,03480225, 193, 16.8, 385, 48.8, 51.2, 18.2, 20.0,46.5 +4.64,4.64,a-reso-i1,2022-23,Worcester - Worcester East Middle,03480420, 437, 16.8, 795, 48.7, 51.3, 33.1, 17.9,83.4 +5.08,5,a-reso-i1,2022-23,Worcester - Worcester Technical High,03480605, 748, 14.6," 1,450", 56.8, 43.1, 8.2, 13.4,63.6 +6.36,5,a-reso-i1,2022-23,Worthington - R. H. Conwell,03490010, 51, 8.2, 74, 44.6, 54.1, 0.0, 25.7,36.5 +4.2,4.2,a-reso-i1,2022-23,Wrentham - Charles E Roderick,03500010, 179, 19.0, 376, 50.0, 50.0, 1.1, 18.9,15.4 +4.18,4.18,a-reso-i1,2022-23,Wrentham - Delaney,03500003, 253, 19.1, 599, 48.3, 51.8, 3.8, 18.9,16.5 4.34,4.34,a-reso-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 742, 18.3," 1,421", 53.6, 46.4, 16.0, 12.6,70.1 3.3600000000000003,3.36,a-reso-i1,2021-22,Abington - Abington Early Education Program,00010001, 16, 23.2, 93, 41.9, 58.1, 9.7, 44.1,34.4 4.66,4.66,a-reso-i1,2021-22,Abington - Abington High,00010505, 274, 16.7, 587, 47.7, 52.0, 6.8, 11.4,35.3 diff --git a/data/admin_data/dese/3A_2_age_staffing.csv b/data/admin_data/dese/3A_2_age_staffing.csv index b1f4379c..8a023654 100644 --- a/data/admin_data/dese/3A_2_age_staffing.csv +++ b/data/admin_data/dese/3A_2_age_staffing.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,<26 yrs (# ),26-32 yrs (#),33-40 yrs (#),41-48 yrs (#),49-56 yrs (#),57-64 yrs (#),Over 64 yrs (#),FTE Count,Student Count,Student to Guidance Counselor ratio +-Infinity,1,a-sust-i2,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1421,Infinity +-Infinity,1,a-sust-i2,2023-24,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +-0.976,1,a-sust-i2,2023-24,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,561,561.0 +-2.176,1,a-sust-i2,2023-24,Abington - Abington Middle School,00010405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,636,636.0 +-Infinity,1,a-sust-i2,2023-24,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,506,Infinity +2.368,2.37,a-sust-i2,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,352,352.0 +-6.08,1,a-sust-i2,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,440,880.0 +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1649,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,507,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,413,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +-Infinity,1,a-sust-i2,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,813,Infinity +-8.544,1,a-sust-i2,2023-24,Acushnet - Acushnet Elementary School,00030025, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,517,1034.0 +-Infinity,1,a-sust-i2,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +-Infinity,1,a-sust-i2,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,966,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1050,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +-Infinity,1,a-sust-i2,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +-Infinity,1,a-sust-i2,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1041,Infinity +-Infinity,1,a-sust-i2,2023-24,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +-Infinity,1,a-sust-i2,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +-Infinity,1,a-sust-i2,2023-24,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +-Infinity,1,a-sust-i2,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +-Infinity,1,a-sust-i2,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +-Infinity,1,a-sust-i2,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +-Infinity,1,a-sust-i2,2023-24,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +-Infinity,1,a-sust-i2,2023-24,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,311,Infinity +-Infinity,1,a-sust-i2,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity +-Infinity,1,a-sust-i2,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - Andover High,00090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1682,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,544,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - Shawsheen School,00090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,83,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +-Infinity,1,a-sust-i2,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +-10.368,1,a-sust-i2,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,574,1148.0 +-17.744,1,a-sust-i2,2023-24,Arlington - Arlington High,00100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1609,1609.0 +-5.536,1,a-sust-i2,2023-24,Arlington - Brackett,00100010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,423,846.0 +-Infinity,1,a-sust-i2,2023-24,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +-6.976,1,a-sust-i2,2023-24,Arlington - Gibbs School,00100305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,468,936.0 +-Infinity,1,a-sust-i2,2023-24,Arlington - Hardy,00100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +-4.512,1,a-sust-i2,2023-24,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,391,782.0 +-Infinity,1,a-sust-i2,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +-Infinity,1,a-sust-i2,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +-22.112,1,a-sust-i2,2023-24,Arlington - Ottoson Middle,00100410, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,941,1882.0 +-Infinity,1,a-sust-i2,2023-24,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +-Infinity,1,a-sust-i2,2023-24,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,634,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,611,Infinity +-Infinity,1,a-sust-i2,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +-Infinity,1,a-sust-i2,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1130,Infinity +-Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +-Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +-Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +-Infinity,1,a-sust-i2,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +-12.112,1,a-sust-i2,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1257,1257.0 +-Infinity,1,a-sust-i2,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +-Infinity,1,a-sust-i2,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity +-22.8,1,a-sust-i2,2023-24,Attleboro - Attleboro High,00160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1925,1925.0 +-Infinity,1,a-sust-i2,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +-Infinity,1,a-sust-i2,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +-Infinity,1,a-sust-i2,2023-24,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +-Infinity,1,a-sust-i2,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +-Infinity,1,a-sust-i2,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +-Infinity,1,a-sust-i2,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,440,Infinity +-10.464,1,a-sust-i2,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,577,1154.0 +-Infinity,1,a-sust-i2,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +-Infinity,1,a-sust-i2,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +-16.88,1,a-sust-i2,2023-24,Auburn - Auburn Middle,00170305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,622,1555.0 +-13.733333333333336,1,a-sust-i2,2023-24,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,815,1358.3333333333335 +-5.706666666666668,1,a-sust-i2,2023-24,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,257,856.6666666666667 +-5.013333333333334,1,a-sust-i2,2023-24,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,244,813.3333333333334 +-9.952,1,a-sust-i2,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,561,1122.0 +-Infinity,1,a-sust-i2,2023-24,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +-Infinity,1,a-sust-i2,2023-24,Avon - Ralph D Butler,00180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +-Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +-Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +-Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +-Infinity,1,a-sust-i2,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,540,Infinity +3.056,3.06,a-sust-i2,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,309,309.0 +-20.096,1,a-sust-i2,2023-24,Barnstable - Barnstable High,00200505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1756,1756.0 +-2.224,1,a-sust-i2,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,639,639.0 +-Infinity,1,a-sust-i2,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +-Infinity,1,a-sust-i2,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,260,Infinity +-Infinity,1,a-sust-i2,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +-Infinity,1,a-sust-i2,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +5.976,5,a-sust-i2,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,253,126.5 +-Infinity,1,a-sust-i2,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,399,Infinity +-Infinity,1,a-sust-i2,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +-38.186666666666675,1,a-sust-i2,2023-24,Bedford - Bedford High,00230505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,866,2886.666666666667 +-24.64,1,a-sust-i2,2023-24,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,612,2040.0 +-19.2,1,a-sust-i2,2023-24,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,510,1700.0 +-22.453333333333337,1,a-sust-i2,2023-24,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,571,1903.3333333333335 +-Infinity,1,a-sust-i2,2023-24,Belchertown - Belchertown High,00240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +-Infinity,1,a-sust-i2,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +-Infinity,1,a-sust-i2,2023-24,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +-Infinity,1,a-sust-i2,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +-Infinity,1,a-sust-i2,2023-24,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +-Infinity,1,a-sust-i2,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +-Infinity,1,a-sust-i2,2023-24,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +-1.456,1,a-sust-i2,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,591,591.0 +-Infinity,1,a-sust-i2,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +-Infinity,1,a-sust-i2,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +-Infinity,1,a-sust-i2,2023-24,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +-17.99111111111111,1,a-sust-i2,2023-24,Belmont - Belmont High,00260505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.4, 0.9,1462,1624.4444444444443 +-Infinity,1,a-sust-i2,2023-24,Belmont - Belmont Middle School,00260315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +-2.272,1,a-sust-i2,2023-24,Belmont - Daniel Butler,00260015, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,321,642.0 +-2.304,1,a-sust-i2,2023-24,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,322,644.0 +-8.704,1,a-sust-i2,2023-24,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,522,1044.0 +-5.376,1,a-sust-i2,2023-24,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,418,836.0 +-14.816,1,a-sust-i2,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,713,1426.0 +-Infinity,1,a-sust-i2,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +-Infinity,1,a-sust-i2,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,888,Infinity +-7.072,1,a-sust-i2,2023-24,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,471,942.0 +-Infinity,1,a-sust-i2,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +-Infinity,1,a-sust-i2,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +-Infinity,1,a-sust-i2,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +-Infinity,1,a-sust-i2,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +-Infinity,1,a-sust-i2,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +4.448,4.45,a-sust-i2,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,222,222.0 +2.624,2.62,a-sust-i2,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,336,336.0 +-0.864,1,a-sust-i2,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,554,554.0 +-Infinity,1,a-sust-i2,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +-12.08,1,a-sust-i2,2023-24,Beverly - Beverly High,00300505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1255,1255.0 +-Infinity,1,a-sust-i2,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1356,Infinity +-Infinity,1,a-sust-i2,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +-Infinity,1,a-sust-i2,2023-24,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +-Infinity,1,a-sust-i2,2023-24,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +-Infinity,1,a-sust-i2,2023-24,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +2.448,2.45,a-sust-i2,2023-24,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,347,347.0 +-Infinity,1,a-sust-i2,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1821,Infinity +-Infinity,1,a-sust-i2,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +1.888,1.89,a-sust-i2,2023-24,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,382,382.0 +2.752,2.75,a-sust-i2,2023-24,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,328,328.0 +-Infinity,1,a-sust-i2,2023-24,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +-Infinity,1,a-sust-i2,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +1.264,1.26,a-sust-i2,2023-24,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,421,421.0 +-0.816,1,a-sust-i2,2023-24,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,551,551.0 +-12.0,1,a-sust-i2,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1250,1250.0 +-Infinity,1,a-sust-i2,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +1.888,1.89,a-sust-i2,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +2.128,2.13,a-sust-i2,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +6.16,5,a-sust-i2,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,115,115.0 +-Infinity,1,a-sust-i2,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +-Infinity,1,a-sust-i2,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,918,Infinity +3.984,3.98,a-sust-i2,2023-24,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +4.16,4.16,a-sust-i2,2023-24,Boston - Another Course To College,00350541, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,240,240.0 +2.88,2.88,a-sust-i2,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,192,320.0 +0.56,1,a-sust-i2,2023-24,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,279,465.0 +3.808,3.81,a-sust-i2,2023-24,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +-1.296,1,a-sust-i2,2023-24,Boston - Blackstone Elementary School,00350390, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,581,581.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +1.024,1.02,a-sust-i2,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,218,436.0 +-1.104,1,a-sust-i2,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +0.224,1,a-sust-i2,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +-5.544,1,a-sust-i2,2023-24,Boston - Boston Latin Academy,00350545, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1693,846.5 +-8.006666666666668,1,a-sust-i2,2023-24,Boston - Boston Latin School,00350560, 0.0, 2.0, 0.0, 0.4, 0.0, 0.0, 0.0, 2.4,2401,1000.4166666666667 +-0.704,1,a-sust-i2,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,272,544.0 +-1.6,1,a-sust-i2,2023-24,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,300,600.0 +-1.344,1,a-sust-i2,2023-24,Boston - Brighton High School,00350505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,584,584.0 +1.68,1.68,a-sust-i2,2023-24,Boston - Burke High School,00350525, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,395,395.0 +5.52,5,a-sust-i2,2023-24,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,31,155.0 +4.928,4.93,a-sust-i2,2023-24,Boston - Channing Elementary School,00350360, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,192,192.0 +-2.52,1,a-sust-i2,2023-24,Boston - Charlestown High School,00350515, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,789,657.5 +-1.12,1,a-sust-i2,2023-24,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,228,570.0 +2.8,2.8,a-sust-i2,2023-24,Boston - Clap Elementary School,00350298, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,130,325.0 +4.72,4.72,a-sust-i2,2023-24,Boston - Community Academy,00350518, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,41,205.0 +2.544,2.54,a-sust-i2,2023-24,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,341,341.0 +0.26666666666666605,1,a-sust-i2,2023-24,Boston - Condon K-8 School,00350146, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,580,483.33333333333337 +4.98,4.98,a-sust-i2,2023-24,Boston - Conley Elementary School,00350122, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,151,188.75 +-6.592,1,a-sust-i2,2023-24,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,912,912.0 +-6.746666666666668,1,a-sust-i2,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,553,921.6666666666667 +-Infinity,1,a-sust-i2,2023-24,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +4.864,4.86,a-sust-i2,2023-24,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,196,196.0 +-12.688,1,a-sust-i2,2023-24,Boston - East Boston High School,00350530, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1293,1293.0 +-1.344,1,a-sust-i2,2023-24,Boston - Edison K-8 School,00350375, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,584,584.0 +0.96,1,a-sust-i2,2023-24,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8,792,440.0 +-1.066666666666668,1,a-sust-i2,2023-24,Boston - Ellis Elementary School,00350072, 0.0, 0.2, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6,340,566.6666666666667 +6.11,5,a-sust-i2,2023-24,Boston - Ellison-Parks Early Education School,00350008, 0.6, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.6,189,118.125 +-2.912,1,a-sust-i2,2023-24,Boston - English High School,00350535, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,682,682.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +1.808,1.81,a-sust-i2,2023-24,Boston - Excel High School,00350522, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Fenway High School,00350540, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +2.768,2.77,a-sust-i2,2023-24,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,327,327.0 +2.064,2.06,a-sust-i2,2023-24,Boston - Gardner Pilot Academy,00350326, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +1.92,1.92,a-sust-i2,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,76,380.0 +2.256,2.26,a-sust-i2,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +1.696,1.7,a-sust-i2,2023-24,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,197,394.0 +4.048,4.05,a-sust-i2,2023-24,Boston - Guild Elementary School,00350062, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +2.688,2.69,a-sust-i2,2023-24,Boston - Hale Elementary School,00350243, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,166,332.0 +1.904,1.9,a-sust-i2,2023-24,Boston - Haley Pilot School,00350077, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +2.56,2.56,a-sust-i2,2023-24,Boston - Harvard-Kent Elementary School,00350200, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +4.512,4.51,a-sust-i2,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 +-2.224,1,a-sust-i2,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,639,639.0 +-0.08,1,a-sust-i2,2023-24,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,505,505.0 +1.488,1.49,a-sust-i2,2023-24,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,407,407.0 +1.72,1.72,a-sust-i2,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,157,392.5 +-Infinity,1,a-sust-i2,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,169,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +6.832,5,a-sust-i2,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,73,73.0 +2.416,2.42,a-sust-i2,2023-24,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,349,349.0 +1.664,1.66,a-sust-i2,2023-24,Boston - Kennedy John F Elementary School,00350166, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,396,396.0 +-2.68,1,a-sust-i2,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,267,667.5 +3.493333333333333,3.49,a-sust-i2,2023-24,Boston - Kenny Elementary School,00350328, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,338,281.6666666666667 +-1.893333333333334,1,a-sust-i2,2023-24,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,371,618.3333333333334 +-Infinity,1,a-sust-i2,2023-24,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,470,Infinity +4.8,4.8,a-sust-i2,2023-24,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,200,200.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,102,Infinity +6.08,5,a-sust-i2,2023-24,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,120,120.0 +0.9466666666666661,1,a-sust-i2,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.4, 0.0, 0.0, 1.0, 1.0, 0.0, 2.4,1058,440.83333333333337 +2.592,2.59,a-sust-i2,2023-24,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,169,338.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +-2.112,1,a-sust-i2,2023-24,Boston - Mario Umana Academy,00350656, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,632,632.0 +2.96,2.96,a-sust-i2,2023-24,Boston - Mason Elementary School,00350304, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,189,315.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +2.64,2.64,a-sust-i2,2023-24,Boston - McKay K-8 School,00350080, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,670,335.0 +5.856,5,a-sust-i2,2023-24,Boston - Melvin H. King South End Academy,00350363, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,134,134.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +-15.6,1,a-sust-i2,2023-24,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,590,1475.0 +5.152,5,a-sust-i2,2023-24,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,178,178.0 +-5.424,1,a-sust-i2,2023-24,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,839,839.0 +-9.813333333333336,1,a-sust-i2,2023-24,Boston - New Mission High School,00350542, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,668,1113.3333333333335 +-33.013333333333335,1,a-sust-i2,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,1538,2563.3333333333335 +-Infinity,1,a-sust-i2,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +4.017777777777778,4.02,a-sust-i2,2023-24,Boston - Ohrenberger School,00350258, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 0.0, 1.8,448,248.88888888888889 +-Infinity,1,a-sust-i2,2023-24,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +-2.72,1,a-sust-i2,2023-24,Boston - Otis Elementary School,00350156, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,402,670.0 +4.026666666666666,4.03,a-sust-i2,2023-24,Boston - Perkins Elementary School,00350231, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,149,248.33333333333334 +-Infinity,1,a-sust-i2,2023-24,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,181,Infinity +5.888,5,a-sust-i2,2023-24,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,132,132.0 +-1.7733333333333339,1,a-sust-i2,2023-24,Boston - Quincy Elementary School,00350286, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,733,610.8333333333334 +-0.512,1,a-sust-i2,2023-24,Boston - Quincy Upper School,00350565, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,532,532.0 +2.704,2.7,a-sust-i2,2023-24,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +-3.072,1,a-sust-i2,2023-24,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,346,692.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +0.88,1,a-sust-i2,2023-24,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +-Infinity,1,a-sust-i2,2023-24,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +4.9511111111111115,4.95,a-sust-i2,2023-24,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 0.8, 0.0, 1.0, 0.0, 0.0, 1.8,343,190.55555555555554 +-Infinity,1,a-sust-i2,2023-24,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +2.0,2.0,a-sust-i2,2023-24,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +4.8,4.8,a-sust-i2,2023-24,Boston - Trotter Elementary School,00350370, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,300,200.0 +3.9,3.9,a-sust-i2,2023-24,Boston - Tynan Elementary School,00350181, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,205,256.25 +-1.056,1,a-sust-i2,2023-24,Boston - UP Academy Holland,00350167, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,566,566.0 +0.016,1,a-sust-i2,2023-24,Boston - Warren-Prescott K-8 School,00350346, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +-Infinity,1,a-sust-i2,2023-24,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston - Winship Elementary School,00350374, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +-29.28,1,a-sust-i2,2023-24,Boston - Young Achievers K-8 School,00350380, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,466,2330.0 +-Infinity,1,a-sust-i2,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,688,Infinity +-Infinity,1,a-sust-i2,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +0.656,1,a-sust-i2,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +-14.24,1,a-sust-i2,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,695,1390.0 +-6.992,1,a-sust-i2,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,937,937.0 +-2.72,1,a-sust-i2,2023-24,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,335,670.0 +-Infinity,1,a-sust-i2,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +3.306666666666667,3.31,a-sust-i2,2023-24,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,440,293.3333333333333 +-Infinity,1,a-sust-i2,2023-24,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +-Infinity,1,a-sust-i2,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +1.552,1.55,a-sust-i2,2023-24,Boxford - Spofford Pond,00380013, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,403,403.0 +-Infinity,1,a-sust-i2,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +-18.832,1,a-sust-i2,2023-24,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1677,1677.0 +-Infinity,1,a-sust-i2,2023-24,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +-7.984,1,a-sust-i2,2023-24,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,999,999.0 +-Infinity,1,a-sust-i2,2023-24,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,350,Infinity +-Infinity,1,a-sust-i2,2023-24,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +-Infinity,1,a-sust-i2,2023-24,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +3.504,3.5,a-sust-i2,2023-24,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 +-Infinity,1,a-sust-i2,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +-Infinity,1,a-sust-i2,2023-24,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,638,Infinity +-Infinity,1,a-sust-i2,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +-Infinity,1,a-sust-i2,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +-Infinity,1,a-sust-i2,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +1.704,1.7,a-sust-i2,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,787,393.5 +-Infinity,1,a-sust-i2,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1408,Infinity +-Infinity,1,a-sust-i2,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +2.48,2.48,a-sust-i2,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +0.44,1,a-sust-i2,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,945,472.5 +2.032,2.03,a-sust-i2,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,746,373.0 +-Infinity,1,a-sust-i2,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +1.344,1.34,a-sust-i2,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,832,416.0 +3.456,3.46,a-sust-i2,2023-24,Brimfield - Brimfield Elementary,00430005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +-Infinity,1,a-sust-i2,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +-Infinity,1,a-sust-i2,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1330,Infinity +-19.573333333333334,1,a-sust-i2,2023-24,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,517,1723.3333333333335 +-13.2,1,a-sust-i2,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,265,1325.0 +-135.44,1,a-sust-i2,2023-24,Brockton - Brockton High,00440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,3586,8965.0 +-0.48,1,a-sust-i2,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,159,530.0 +-6.432,1,a-sust-i2,2023-24,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,451,902.0 +-Infinity,1,a-sust-i2,2023-24,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,599,Infinity +-16.416,1,a-sust-i2,2023-24,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,763,1526.0 +-15.04,1,a-sust-i2,2023-24,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,432,1440.0 +-22.208,1,a-sust-i2,2023-24,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,944,1888.0 +-0.6933333333333339,1,a-sust-i2,2023-24,Brockton - Edison Day Academy,00440535, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,163,543.3333333333334 +-Infinity,1,a-sust-i2,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,198,Infinity +-5.824,1,a-sust-i2,2023-24,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,432,864.0 +-Infinity,1,a-sust-i2,2023-24,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,666,Infinity +5.12,5,a-sust-i2,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,36,180.0 +-18.826666666666668,1,a-sust-i2,2023-24,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,503,1676.6666666666667 +-18.72,1,a-sust-i2,2023-24,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,835,1670.0 +-7.56,1,a-sust-i2,2023-24,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,778,972.5 +-Infinity,1,a-sust-i2,2023-24,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity +-24.48,1,a-sust-i2,2023-24,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,406,2030.0 +-17.952,1,a-sust-i2,2023-24,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,811,1622.0 +0.24,1,a-sust-i2,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,97,485.0 +-42.32,1,a-sust-i2,2023-24,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,629,3145.0 +-16.96,1,a-sust-i2,2023-24,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,468,1560.0 +-18.24,1,a-sust-i2,2023-24,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,492,1640.0 +-Infinity,1,a-sust-i2,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2208,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,33,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Brookline High,00460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2173,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Edith C Baker,00460005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +1.184,1.18,a-sust-i2,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,852,426.0 +-3.573333333333334,1,a-sust-i2,2023-24,Brookline - Heath,00460025, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,434,723.3333333333334 +-Infinity,1,a-sust-i2,2023-24,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Lawrence,00460030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,615,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - Pierce,00460040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +-Infinity,1,a-sust-i2,2023-24,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity +0.416,1,a-sust-i2,2023-24,Brookline - William H Lincoln,00460035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,474,474.0 +2.64,2.64,a-sust-i2,2023-24,Burlington - Burlington High,00480505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,1005,335.0 +0.72,1,a-sust-i2,2023-24,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,455,455.0 +0.224,1,a-sust-i2,2023-24,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,486,486.0 +1.104,1.1,a-sust-i2,2023-24,Burlington - Marshall Simonds Middle,00480303, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,862,431.0 +1.872,1.87,a-sust-i2,2023-24,Burlington - Memorial,00480015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +2.656,2.66,a-sust-i2,2023-24,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +-Infinity,1,a-sust-i2,2023-24,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1979,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +-Infinity,1,a-sust-i2,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +-6.896,1,a-sust-i2,2023-24,Canton - Canton High,00500505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,931,931.0 +-Infinity,1,a-sust-i2,2023-24,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,477,Infinity +-Infinity,1,a-sust-i2,2023-24,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +-Infinity,1,a-sust-i2,2023-24,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +5.856,5,a-sust-i2,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,134,134.0 +-Infinity,1,a-sust-i2,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,742,Infinity +3.984,3.98,a-sust-i2,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +-Infinity,1,a-sust-i2,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +-1.728,1,a-sust-i2,2023-24,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,608,608.0 +-Infinity,1,a-sust-i2,2023-24,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,775,Infinity +-Infinity,1,a-sust-i2,2023-24,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +-Infinity,1,a-sust-i2,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +-Infinity,1,a-sust-i2,2023-24,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +-Infinity,1,a-sust-i2,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,177,Infinity +-Infinity,1,a-sust-i2,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +-Infinity,1,a-sust-i2,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +-0.48,1,a-sust-i2,2023-24,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,530,530.0 +-1.32,1,a-sust-i2,2023-24,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,466,582.5 +0.368,1,a-sust-i2,2023-24,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +-Infinity,1,a-sust-i2,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1413,Infinity +-4.752,1,a-sust-i2,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,797,797.0 +-Infinity,1,a-sust-i2,2023-24,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +-4.512,1,a-sust-i2,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,782,782.0 +0.56,1,a-sust-i2,2023-24,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +-Infinity,1,a-sust-i2,2023-24,Chelsea - Chelsea High,00570505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1680,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +2.576,2.58,a-sust-i2,2023-24,Chelsea - Clark Avenue School,00570050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,678,339.0 +-Infinity,1,a-sust-i2,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,453,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,806,Infinity +-Infinity,1,a-sust-i2,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +-3.12,1,a-sust-i2,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,139,695.0 +-Infinity,1,a-sust-i2,2023-24,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,69,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1212,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,932,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,678,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +-Infinity,1,a-sust-i2,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +-Infinity,1,a-sust-i2,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +-Infinity,1,a-sust-i2,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +-Infinity,1,a-sust-i2,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +-Infinity,1,a-sust-i2,2023-24,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,837,Infinity +-Infinity,1,a-sust-i2,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +-Infinity,1,a-sust-i2,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +-Infinity,1,a-sust-i2,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +-4.992,1,a-sust-i2,2023-24,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,406,812.0 +-Infinity,1,a-sust-i2,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +-Infinity,1,a-sust-i2,2023-24,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +-Infinity,1,a-sust-i2,2023-24,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +-Infinity,1,a-sust-i2,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1211,Infinity +-Infinity,1,a-sust-i2,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +-Infinity,1,a-sust-i2,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1200,Infinity +1.12,1.12,a-sust-i2,2023-24,Concord - Alcott,00670005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +-Infinity,1,a-sust-i2,2023-24,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,654,Infinity +-Infinity,1,a-sust-i2,2023-24,Concord - Thoreau,00670020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +-Infinity,1,a-sust-i2,2023-24,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +-Infinity,1,a-sust-i2,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1230,Infinity +-Infinity,1,a-sust-i2,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +5.696,5,a-sust-i2,2023-24,Conway - Conway Grammar,00680005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,144,144.0 +-Infinity,1,a-sust-i2,2023-24,Danvers - Danvers High,00710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,798,Infinity +-Infinity,1,a-sust-i2,2023-24,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,300,Infinity +1.92,1.92,a-sust-i2,2023-24,Danvers - Highlands,00710010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +-Infinity,1,a-sust-i2,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,741,Infinity +0.62,1,a-sust-i2,2023-24,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,369,461.25 +-Infinity,1,a-sust-i2,2023-24,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +-Infinity,1,a-sust-i2,2023-24,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +-Infinity,1,a-sust-i2,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,155,Infinity +-Infinity,1,a-sust-i2,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,949,Infinity +1.704,1.7,a-sust-i2,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,787,393.5 +1.328,1.33,a-sust-i2,2023-24,Dartmouth - George H Potter,00720030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,417,417.0 +-Infinity,1,a-sust-i2,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,712,Infinity +-Infinity,1,a-sust-i2,2023-24,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +-Infinity,1,a-sust-i2,2023-24,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +3.3216000000000006,3.32,a-sust-i2,2023-24,Dedham - Dedham High,00730505, 0.0, 2.0, 0.0, 0.5, 0.0, 0.0, 0.0, 2.5,731,292.4 +-0.688,1,a-sust-i2,2023-24,Dedham - Dedham Middle School,00730305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 +-Infinity,1,a-sust-i2,2023-24,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +-Infinity,1,a-sust-i2,2023-24,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +-Infinity,1,a-sust-i2,2023-24,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,256,Infinity +-Infinity,1,a-sust-i2,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,193,Infinity +-Infinity,1,a-sust-i2,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +-0.16,1,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,510,510.0 +-Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +-Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,922,Infinity +2.288,2.29,a-sust-i2,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +-Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +-Infinity,1,a-sust-i2,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +-Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +-Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +-Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,650,Infinity +-Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +-Infinity,1,a-sust-i2,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +2.352,2.35,a-sust-i2,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 +-1.696,1,a-sust-i2,2023-24,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,303,606.0 +-Infinity,1,a-sust-i2,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +-Infinity,1,a-sust-i2,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +-Infinity,1,a-sust-i2,2023-24,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +-Infinity,1,a-sust-i2,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,648,Infinity +-Infinity,1,a-sust-i2,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +-18.666666666666668,1,a-sust-i2,2023-24,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,500,1666.6666666666667 +-17.248,1,a-sust-i2,2023-24,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,789,1578.0 +-20.64,1,a-sust-i2,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,537,1790.0 +-4.2666666666666675,1,a-sust-i2,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,230,766.6666666666667 +-22.826666666666668,1,a-sust-i2,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,578,1926.6666666666667 +-Infinity,1,a-sust-i2,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,909,Infinity +-Infinity,1,a-sust-i2,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +-Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +-1.648,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,603,603.0 +-Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +-9.664,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,552,1104.0 +0.832,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +-Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +-Infinity,1,a-sust-i2,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,937,Infinity +3.032,3.03,a-sust-i2,2023-24,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,621,310.5 +-2.384,1,a-sust-i2,2023-24,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,649,649.0 +1.104,1.1,a-sust-i2,2023-24,Duxbury - Duxbury High,00820505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,862,431.0 +-1.968,1,a-sust-i2,2023-24,Duxbury - Duxbury Middle,00820305, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +-8.48,1,a-sust-i2,2023-24,East Bridgewater - Central,00830005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,515,1030.0 +-20.064,1,a-sust-i2,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,877,1754.0 +-11.712,1,a-sust-i2,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,616,1232.0 +-Infinity,1,a-sust-i2,2023-24,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,614,Infinity +-4.336,1,a-sust-i2,2023-24,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,771,771.0 +-Infinity,1,a-sust-i2,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +-Infinity,1,a-sust-i2,2023-24,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,562,Infinity +-Infinity,1,a-sust-i2,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +-Infinity,1,a-sust-i2,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,176,Infinity +-Infinity,1,a-sust-i2,2023-24,Easthampton - Easthampton High,00860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +-Infinity,1,a-sust-i2,2023-24,Easthampton - Mountain View School,00860415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1024,Infinity +-Infinity,1,a-sust-i2,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity +-Infinity,1,a-sust-i2,2023-24,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,808,Infinity +-Infinity,1,a-sust-i2,2023-24,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1076,Infinity +-Infinity,1,a-sust-i2,2023-24,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,736,Infinity +-Infinity,1,a-sust-i2,2023-24,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +2.0,2.0,a-sust-i2,2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +4.064,4.06,a-sust-i2,2023-24,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,123,246.0 +-Infinity,1,a-sust-i2,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1745,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2289,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,873,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1000,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Madeline English School,00930018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,780,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +-Infinity,1,a-sust-i2,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +-2.904,1,a-sust-i2,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,1363,681.5 +-1.792,1,a-sust-i2,2023-24,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,306,612.0 +-Infinity,1,a-sust-i2,2023-24,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +-5.696,1,a-sust-i2,2023-24,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,428,856.0 +-Infinity,1,a-sust-i2,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,434,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2435,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,697,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - John J Doran,00950045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,618,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,694,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,714,Infinity +-2.464,1,a-sust-i2,2023-24,Fall River - North End Elementary,00950005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,654,654.0 +-Infinity,1,a-sust-i2,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,184,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,265,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Spencer Borden,00950130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,578,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,557,Infinity +-Infinity,1,a-sust-i2,2023-24,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,749,Infinity +-15.84,1,a-sust-i2,2023-24,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,298,1490.0 +-30.773333333333337,1,a-sust-i2,2023-24,Falmouth - Falmouth High,00960505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,727,2423.3333333333335 +-16.48,1,a-sust-i2,2023-24,Falmouth - Lawrence,00960405, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,459,1530.0 +-17.6,1,a-sust-i2,2023-24,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,480,1600.0 +-22.08,1,a-sust-i2,2023-24,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.2,376,1880.0 +-39.52,1,a-sust-i2,2023-24,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,297,2970.0 +-32.8,1,a-sust-i2,2023-24,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,255,2550.0 +-Infinity,1,a-sust-i2,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1180,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,762,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,587,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +-Infinity,1,a-sust-i2,2023-24,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +-Infinity,1,a-sust-i2,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +4.195555555555556,4.2,a-sust-i2,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,214,237.77777777777777 +-Infinity,1,a-sust-i2,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,280,Infinity +-Infinity,1,a-sust-i2,2023-24,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity +-Infinity,1,a-sust-i2,2023-24,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,745,Infinity +2.704,2.7,a-sust-i2,2023-24,Foxborough - Mabelle M Burrell,00990015, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,331,331.0 +-Infinity,1,a-sust-i2,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +-Infinity,1,a-sust-i2,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1520,Infinity +-2.528,1,a-sust-i2,2023-24,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,658,658.0 +-Infinity,1,a-sust-i2,2023-24,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +-Infinity,1,a-sust-i2,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +1.024,1.02,a-sust-i2,2023-24,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,436,436.0 +-2.18,1,a-sust-i2,2023-24,Framingham - Framingham High School,01000515, 0.0, 1.0, 0.0, 0.0, 2.0, 1.0, 0.0, 4.0,2545,636.25 +-1.024,1,a-sust-i2,2023-24,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 +0.432,1,a-sust-i2,2023-24,Framingham - Harmony Grove Elementary,01000055, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,473,473.0 +-0.672,1,a-sust-i2,2023-24,Framingham - Hemenway,01000015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +3.568,3.57,a-sust-i2,2023-24,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,277,277.0 +1.456,1.46,a-sust-i2,2023-24,Framingham - King Elementary School,01000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +-1.44,1,a-sust-i2,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,354,590.0 +-0.064,1,a-sust-i2,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 +-0.56,1,a-sust-i2,2023-24,Framingham - Potter Road,01000039, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,535,535.0 +1.76,1.76,a-sust-i2,2023-24,Framingham - Walsh Middle,01000310, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,780,390.0 +-Infinity,1,a-sust-i2,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,322,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,152,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1569,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,558,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +-Infinity,1,a-sust-i2,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +-Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,683,Infinity +-Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +-Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,379,Infinity +-Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +-Infinity,1,a-sust-i2,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +-Infinity,1,a-sust-i2,2023-24,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity +-Infinity,1,a-sust-i2,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +-Infinity,1,a-sust-i2,2023-24,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1053,Infinity +-Infinity,1,a-sust-i2,2023-24,Gardner - Gardner High,01030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity +-Infinity,1,a-sust-i2,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,483,Infinity +-Infinity,1,a-sust-i2,2023-24,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,117,Infinity +-Infinity,1,a-sust-i2,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,162,Infinity +-Infinity,1,a-sust-i2,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +-Infinity,1,a-sust-i2,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +3.376,3.38,a-sust-i2,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +-Infinity,1,a-sust-i2,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +-Infinity,1,a-sust-i2,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,696,Infinity +-Infinity,1,a-sust-i2,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +-Infinity,1,a-sust-i2,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +-Infinity,1,a-sust-i2,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +-Infinity,1,a-sust-i2,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +-Infinity,1,a-sust-i2,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +-Infinity,1,a-sust-i2,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +-Infinity,1,a-sust-i2,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +-Infinity,1,a-sust-i2,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +0.8,1,a-sust-i2,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,450,450.0 +-Infinity,1,a-sust-i2,2023-24,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +-Infinity,1,a-sust-i2,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +-Infinity,1,a-sust-i2,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +-2.016,1,a-sust-i2,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,626,626.0 +2.08,2.08,a-sust-i2,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +NaN,NaN,a-sust-i2,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +-Infinity,1,a-sust-i2,2023-24,Grafton - Grafton High School,01100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,891,Infinity +-Infinity,1,a-sust-i2,2023-24,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +-Infinity,1,a-sust-i2,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,589,Infinity +-Infinity,1,a-sust-i2,2023-24,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +-Infinity,1,a-sust-i2,2023-24,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +-Infinity,1,a-sust-i2,2023-24,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +-Infinity,1,a-sust-i2,2023-24,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +-Infinity,1,a-sust-i2,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +-Infinity,1,a-sust-i2,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1161,Infinity +-Infinity,1,a-sust-i2,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1443,Infinity +-Infinity,1,a-sust-i2,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1774,Infinity +-Infinity,1,a-sust-i2,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2314,Infinity +-26.352,1,a-sust-i2,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,2147,2147.0 +-3.2,1,a-sust-i2,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,210,700.0 +-1.7066666666666679,1,a-sust-i2,2023-24,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,182,606.6666666666667 +0.832,1,a-sust-i2,2023-24,Greenfield - Greenfield High,01140505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 +-Infinity,1,a-sust-i2,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +-1.76,1,a-sust-i2,2023-24,Greenfield - Newton School,01140035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,183,610.0 +-Infinity,1,a-sust-i2,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,90,Infinity +-Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,75,Infinity +-Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +-Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,689,Infinity +-Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +-Infinity,1,a-sust-i2,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,320,Infinity +-Infinity,1,a-sust-i2,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +-Infinity,1,a-sust-i2,2023-24,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,211,Infinity +-0.784,1,a-sust-i2,2023-24,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +-Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +-Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,255,Infinity +-Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +-Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +-Infinity,1,a-sust-i2,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +-Infinity,1,a-sust-i2,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,553,Infinity +-Infinity,1,a-sust-i2,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +-Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +-3.52,1,a-sust-i2,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,360,720.0 +-Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,981,Infinity +-2.336,1,a-sust-i2,2023-24,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,323,646.0 +-Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,291,Infinity +-Infinity,1,a-sust-i2,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,606,Infinity +-3.04,1,a-sust-i2,2023-24,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,690,690.0 +-Infinity,1,a-sust-i2,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +0.16,1,a-sust-i2,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,490,490.0 +-Infinity,1,a-sust-i2,2023-24,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,628,Infinity +-2.944,1,a-sust-i2,2023-24,Hanover - Hanover High,01220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,684,684.0 +-Infinity,1,a-sust-i2,2023-24,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity +-Infinity,1,a-sust-i2,2023-24,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +2.8,2.8,a-sust-i2,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +-Infinity,1,a-sust-i2,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +-Infinity,1,a-sust-i2,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +-Infinity,1,a-sust-i2,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,126,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1064,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,476,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Haverhill High,01280505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1991,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,498,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,153,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,441,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +-Infinity,1,a-sust-i2,2023-24,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,164,Infinity +-Infinity,1,a-sust-i2,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,56,Infinity +-Infinity,1,a-sust-i2,2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +-Infinity,1,a-sust-i2,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-Infinity,1,a-sust-i2,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +-Infinity,1,a-sust-i2,2023-24,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +-Infinity,1,a-sust-i2,2023-24,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1100,Infinity +-Infinity,1,a-sust-i2,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,846,Infinity +-Infinity,1,a-sust-i2,2023-24,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,358,Infinity +-Infinity,1,a-sust-i2,2023-24,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +-Infinity,1,a-sust-i2,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +-26.133333333333336,1,a-sust-i2,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,640,2133.3333333333335 +-13.408,1,a-sust-i2,2023-24,Holbrook - John F Kennedy,01330018, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,669,1338.0 +-Infinity,1,a-sust-i2,2023-24,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +-Infinity,1,a-sust-i2,2023-24,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,803,Infinity +-Infinity,1,a-sust-i2,2023-24,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,580,Infinity +-Infinity,1,a-sust-i2,2023-24,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,686,Infinity +-Infinity,1,a-sust-i2,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,451,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Holyoke High,01370505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1567,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,459,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,323,Infinity +-Infinity,1,a-sust-i2,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,692,Infinity +-Infinity,1,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +-Infinity,1,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +-Infinity,1,a-sust-i2,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,309,Infinity +-Infinity,1,a-sust-i2,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +-9.536,1,a-sust-i2,2023-24,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,548,1096.0 +-Infinity,1,a-sust-i2,2023-24,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +-94.24,1,a-sust-i2,2023-24,Hopkinton - Elmwood,01390010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,639,6390.0 +-28.106666666666673,1,a-sust-i2,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.3,677,2256.666666666667 +-91.28,1,a-sust-i2,2023-24,Hopkinton - Hopkinton High,01390505, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,1241,6205.0 +-22.72,1,a-sust-i2,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,960,1920.0 +-7.36,1,a-sust-i2,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,96,960.0 +-83.84,1,a-sust-i2,2023-24,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,574,5740.0 +-Infinity,1,a-sust-i2,2023-24,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +-Infinity,1,a-sust-i2,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,573,Infinity +-Infinity,1,a-sust-i2,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,279,Infinity +-Infinity,1,a-sust-i2,2023-24,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,809,Infinity +-Infinity,1,a-sust-i2,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +-Infinity,1,a-sust-i2,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +-Infinity,1,a-sust-i2,2023-24,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +-Infinity,1,a-sust-i2,2023-24,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +-Infinity,1,a-sust-i2,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity +-7.424,1,a-sust-i2,2023-24,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,482,964.0 +-7.28,1,a-sust-i2,2023-24,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,382,955.0 +-3.872,1,a-sust-i2,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,371,742.0 +-3.808,1,a-sust-i2,2023-24,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,369,738.0 +-Infinity,1,a-sust-i2,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,591,Infinity +-Infinity,1,a-sust-i2,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1615,Infinity +-Infinity,1,a-sust-i2,2023-24,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,707,Infinity +-1.136,1,a-sust-i2,2023-24,King Philip - King Philip Regional High,06900505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1142,571.0 +-2.368,1,a-sust-i2,2023-24,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,648,648.0 +-1.808,1,a-sust-i2,2023-24,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,613,613.0 +-Infinity,1,a-sust-i2,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,416,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,556,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,679,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,503,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Frost Middle School,01490525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,493,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,479,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,282,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +4.944,4.94,a-sust-i2,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,191,191.0 +-43.936,1,a-sust-i2,2023-24,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,3246,3246.0 +2.293333333333333,2.29,a-sust-i2,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,321,356.6666666666667 +-Infinity,1,a-sust-i2,2023-24,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,546,Infinity +5.552,5,a-sust-i2,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,153,153.0 +-Infinity,1,a-sust-i2,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,660,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +-Infinity,1,a-sust-i2,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,879,Infinity +-Infinity,1,a-sust-i2,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +-Infinity,1,a-sust-i2,2023-24,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +-Infinity,1,a-sust-i2,2023-24,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +0.48,1,a-sust-i2,2023-24,Leicester - Leicester Elementary,01510005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,470,470.0 +1.648,1.65,a-sust-i2,2023-24,Leicester - Leicester High,01510505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,397,397.0 +-Infinity,1,a-sust-i2,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +1.504,1.5,a-sust-i2,2023-24,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +-Infinity,1,a-sust-i2,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +-Infinity,1,a-sust-i2,2023-24,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,337,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,89,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,632,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,655,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Leominster Academy,01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1073,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,40,Infinity +-2.704,1,a-sust-i2,2023-24,Leominster - Northwest,01530030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,669,669.0 +-Infinity,1,a-sust-i2,2023-24,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +-Infinity,1,a-sust-i2,2023-24,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity +-Infinity,1,a-sust-i2,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,365,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Fiske,01550015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,335,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,810,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Joseph Estabrook,01550010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Lexington High,01550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2318,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,631,Infinity +-Infinity,1,a-sust-i2,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,927,Infinity +-Infinity,1,a-sust-i2,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +-Infinity,1,a-sust-i2,2023-24,Lincoln - Hanscom School,01570305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +-Infinity,1,a-sust-i2,2023-24,Lincoln - Lincoln School,01570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,539,Infinity +-3.696,1,a-sust-i2,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1462,731.0 +-Infinity,1,a-sust-i2,2023-24,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +-Infinity,1,a-sust-i2,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,388,Infinity +-Infinity,1,a-sust-i2,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +-Infinity,1,a-sust-i2,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +-22.0,1,a-sust-i2,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,375,1875.0 +-24.72,1,a-sust-i2,2023-24,Longmeadow - Center,01590010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,409,2045.0 +-17.6,1,a-sust-i2,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,320,1600.0 +-137.76,1,a-sust-i2,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1,911,9110.0 +-16.8,1,a-sust-i2,2023-24,Longmeadow - Williams Middle,01590305, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,310,1550.0 +-27.84,1,a-sust-i2,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2,448,2240.0 +-Infinity,1,a-sust-i2,2023-24,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3402,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,482,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +-Infinity,1,a-sust-i2,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +-Infinity,1,a-sust-i2,2023-24,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,359,Infinity +-Infinity,1,a-sust-i2,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +-Infinity,1,a-sust-i2,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,750,Infinity +-Infinity,1,a-sust-i2,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,532,Infinity +-Infinity,1,a-sust-i2,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +-15.946666666666667,1,a-sust-i2,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,449,1496.6666666666667 +-11.36,1,a-sust-i2,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,363,1210.0 +4.872,4.87,a-sust-i2,2023-24,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,391,195.5 +2.08,2.08,a-sust-i2,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +-Infinity,1,a-sust-i2,2023-24,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,492,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Breed Middle School,01630405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1253,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Classical High,01630505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1878,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Cobbet Elementary,01630035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +-2.144,1,a-sust-i2,2023-24,Lynn - E J Harrington,01630045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,634,634.0 +-Infinity,1,a-sust-i2,2023-24,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,427,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,88,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,491,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,698,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +-8.576,1,a-sust-i2,2023-24,Lynn - Lynn English High,01630510, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,2072,1036.0 +-16.912,1,a-sust-i2,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1557,1557.0 +-Infinity,1,a-sust-i2,2023-24,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,161,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,543,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1280,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,81,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,24,Infinity +-Infinity,1,a-sust-i2,2023-24,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +-6.368,1,a-sust-i2,2023-24,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,449,898.0 +-10.272,1,a-sust-i2,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,571,1142.0 +-3.344,1,a-sust-i2,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,709,709.0 +-Infinity,1,a-sust-i2,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +-5.376,1,a-sust-i2,2023-24,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,418,836.0 +-Infinity,1,a-sust-i2,2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +-Infinity,1,a-sust-i2,2023-24,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,901,Infinity +-Infinity,1,a-sust-i2,2023-24,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,905,Infinity +-Infinity,1,a-sust-i2,2023-24,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,550,Infinity +-Infinity,1,a-sust-i2,2023-24,Malden - Linden,01650047, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,825,Infinity +-Infinity,1,a-sust-i2,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +-Infinity,1,a-sust-i2,2023-24,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1894,Infinity +-Infinity,1,a-sust-i2,2023-24,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,956,Infinity +-Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +-Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +-Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +-Infinity,1,a-sust-i2,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +-3.392,1,a-sust-i2,2023-24,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,712,712.0 +-Infinity,1,a-sust-i2,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,786,Infinity +-Infinity,1,a-sust-i2,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,738,Infinity +-Infinity,1,a-sust-i2,2023-24,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1035,Infinity +6.4,5,a-sust-i2,2023-24,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,100,100.0 +-Infinity,1,a-sust-i2,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +-Infinity,1,a-sust-i2,2023-24,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +-Infinity,1,a-sust-i2,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +-Infinity,1,a-sust-i2,2023-24,Marblehead - Marblehead High,01680505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,874,Infinity +-Infinity,1,a-sust-i2,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +-Infinity,1,a-sust-i2,2023-24,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,537,Infinity +-Infinity,1,a-sust-i2,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +-Infinity,1,a-sust-i2,2023-24,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +-4.586666666666668,1,a-sust-i2,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,944,786.6666666666667 +-2.48,1,a-sust-i2,2023-24,Marlborough - Charles Jaworek School,01700030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +-Infinity,1,a-sust-i2,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +-2.24,1,a-sust-i2,2023-24,Marlborough - Francis J Kane,01700008, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,512,640.0 +-Infinity,1,a-sust-i2,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,796,Infinity +-8.208,1,a-sust-i2,2023-24,Marlborough - Marlborough High,01700505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1013,1013.0 +-3.56,1,a-sust-i2,2023-24,Marlborough - Richer,01700025, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,578,722.5 +3.664,3.66,a-sust-i2,2023-24,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,271,271.0 +1.92,1.92,a-sust-i2,2023-24,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,228,380.0 +-5.584,1,a-sust-i2,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,849,849.0 +-20.24,1,a-sust-i2,2023-24,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,353,1765.0 +-5.131428571428573,1,a-sust-i2,2023-24,Marshfield - Marshfield High,01710505, 0.0, 1.0, 0.0, 0.0, 0.4, 0.0, 0.0, 1.4,1149,820.7142857142858 +-Infinity,1,a-sust-i2,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,120,Infinity +0.752,1,a-sust-i2,2023-24,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,453,453.0 +4.016,4.02,a-sust-i2,2023-24,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,249,249.0 +-Infinity,1,a-sust-i2,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,681,Infinity +-Infinity,1,a-sust-i2,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,175,Infinity +-Infinity,1,a-sust-i2,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +-Infinity,1,a-sust-i2,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,975,Infinity +-Infinity,1,a-sust-i2,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +-Infinity,1,a-sust-i2,2023-24,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,402,Infinity +-Infinity,1,a-sust-i2,2023-24,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,620,Infinity +-Infinity,1,a-sust-i2,2023-24,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +-Infinity,1,a-sust-i2,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1185,Infinity +-Infinity,1,a-sust-i2,2023-24,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +-Infinity,1,a-sust-i2,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +-7.232,1,a-sust-i2,2023-24,Maynard - Fowler School,01740305, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,476,952.0 +2.7323076923076925,2.73,a-sust-i2,2023-24,Maynard - Green Meadow,01740010, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 1.3,428,329.2307692307692 +5.624,5,a-sust-i2,2023-24,Maynard - Maynard High,01740505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,297,148.5 +-Infinity,1,a-sust-i2,2023-24,Medfield - Dale Street,01750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +-Infinity,1,a-sust-i2,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,705,Infinity +-Infinity,1,a-sust-i2,2023-24,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +-Infinity,1,a-sust-i2,2023-24,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,398,Infinity +-Infinity,1,a-sust-i2,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +-9.184,1,a-sust-i2,2023-24,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,537,1074.0 +-Infinity,1,a-sust-i2,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,15,Infinity +-18.613333333333337,1,a-sust-i2,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,499,1663.3333333333335 +-5.824,1,a-sust-i2,2023-24,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,432,864.0 +-6.464,1,a-sust-i2,2023-24,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,452,904.0 +-30.112,1,a-sust-i2,2023-24,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1191,2382.0 +-22.453333333333337,1,a-sust-i2,2023-24,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,571,1903.3333333333335 +-5.984,1,a-sust-i2,2023-24,Medford - Missituk Elementary School,01760140, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,437,874.0 +-Infinity,1,a-sust-i2,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,510,Infinity +-Infinity,1,a-sust-i2,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,377,Infinity +-Infinity,1,a-sust-i2,2023-24,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,607,Infinity +-2.64,1,a-sust-i2,2023-24,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,665,665.0 +-Infinity,1,a-sust-i2,2023-24,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +-Infinity,1,a-sust-i2,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +-Infinity,1,a-sust-i2,2023-24,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +-Infinity,1,a-sust-i2,2023-24,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +-Infinity,1,a-sust-i2,2023-24,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,959,Infinity +-Infinity,1,a-sust-i2,2023-24,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity +-Infinity,1,a-sust-i2,2023-24,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +-Infinity,1,a-sust-i2,2023-24,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +-Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +-Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +-Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,636,Infinity +-Infinity,1,a-sust-i2,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +-Infinity,1,a-sust-i2,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1033,Infinity +-Infinity,1,a-sust-i2,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1148,Infinity +-Infinity,1,a-sust-i2,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,143,Infinity +-Infinity,1,a-sust-i2,2023-24,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1046,Infinity +-Infinity,1,a-sust-i2,2023-24,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1898,Infinity +-Infinity,1,a-sust-i2,2023-24,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1264,Infinity +-1.344,1,a-sust-i2,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,584,584.0 +-3.344,1,a-sust-i2,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,709,709.0 +-11.552,1,a-sust-i2,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,611,1222.0 +3.728,3.73,a-sust-i2,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,267,267.0 +-5.232,1,a-sust-i2,2023-24,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,827,827.0 +-Infinity,1,a-sust-i2,2023-24,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +-Infinity,1,a-sust-i2,2023-24,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,437,Infinity +-Infinity,1,a-sust-i2,2023-24,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +-Infinity,1,a-sust-i2,2023-24,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +-Infinity,1,a-sust-i2,2023-24,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1297,Infinity +-Infinity,1,a-sust-i2,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +-Infinity,1,a-sust-i2,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,971,Infinity +-Infinity,1,a-sust-i2,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,978,Infinity +-Infinity,1,a-sust-i2,2023-24,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,462,Infinity +-Infinity,1,a-sust-i2,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,721,Infinity +-Infinity,1,a-sust-i2,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +-Infinity,1,a-sust-i2,2023-24,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +-Infinity,1,a-sust-i2,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +-Infinity,1,a-sust-i2,2023-24,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,268,Infinity +-Infinity,1,a-sust-i2,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +-7.36,1,a-sust-i2,2023-24,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,960,960.0 +-1.376,1,a-sust-i2,2023-24,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +-1.776,1,a-sust-i2,2023-24,Milton - Cunningham School,01890007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,611,611.0 +-1.952,1,a-sust-i2,2023-24,Milton - Glover,01890010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,622,622.0 +-Infinity,1,a-sust-i2,2023-24,Milton - Milton High,01890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1092,Infinity +-Infinity,1,a-sust-i2,2023-24,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +0.714666666666667,1,a-sust-i2,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 0.6, 0.0, 0.5, 0.0, 0.4, 1.5,683,455.3333333333333 +-Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +-Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,103,Infinity +-Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +-Infinity,1,a-sust-i2,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +-Infinity,1,a-sust-i2,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +0.576,1,a-sust-i2,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +-3.504,1,a-sust-i2,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,719,719.0 +-Infinity,1,a-sust-i2,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +-Infinity,1,a-sust-i2,2023-24,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +-Infinity,1,a-sust-i2,2023-24,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +-Infinity,1,a-sust-i2,2023-24,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +-3.424,1,a-sust-i2,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1428,714.0 +-Infinity,1,a-sust-i2,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +-0.848,1,a-sust-i2,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 +-Infinity,1,a-sust-i2,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +-Infinity,1,a-sust-i2,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1653,Infinity +-Infinity,1,a-sust-i2,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +-Infinity,1,a-sust-i2,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +-Infinity,1,a-sust-i2,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +-Infinity,1,a-sust-i2,2023-24,Nantucket - Nantucket High,01970505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,593,Infinity +-Infinity,1,a-sust-i2,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,340,Infinity +-Infinity,1,a-sust-i2,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +-Infinity,1,a-sust-i2,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +-Infinity,1,a-sust-i2,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +-Infinity,1,a-sust-i2,2023-24,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +-Infinity,1,a-sust-i2,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,743,Infinity +-Infinity,1,a-sust-i2,2023-24,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,237,Infinity +-Infinity,1,a-sust-i2,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +0.624,1,a-sust-i2,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,461,461.0 +-Infinity,1,a-sust-i2,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,841,Infinity +-4.368,1,a-sust-i2,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,773,773.0 +0.192,1,a-sust-i2,2023-24,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,488,488.0 +-Infinity,1,a-sust-i2,2023-24,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +0.712,1,a-sust-i2,2023-24,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,911,455.5 +-Infinity,1,a-sust-i2,2023-24,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,51,Infinity +1.44,1.44,a-sust-i2,2023-24,Natick - Lilja Elementary,01980035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,410,410.0 +0.896,1,a-sust-i2,2023-24,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,444,444.0 +-19.888,1,a-sust-i2,2023-24,Natick - Natick High,01980505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1743,1743.0 +-3.968,1,a-sust-i2,2023-24,Natick - Wilson Middle,01980310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,748,748.0 +-Infinity,1,a-sust-i2,2023-24,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,751,Infinity +-Infinity,1,a-sust-i2,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +-Infinity,1,a-sust-i2,2023-24,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,522,Infinity +-6.304,1,a-sust-i2,2023-24,Needham - High Rock School,01990410, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,447,894.0 +-8.08,1,a-sust-i2,2023-24,Needham - John Eliot,01990020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,402,1005.0 +-17.952,1,a-sust-i2,2023-24,Needham - Needham High,01990505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1622,1622.0 +-14.336,1,a-sust-i2,2023-24,Needham - Newman Elementary,01990050, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,698,1396.0 +-Infinity,1,a-sust-i2,2023-24,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,880,Infinity +-Infinity,1,a-sust-i2,2023-24,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +-Infinity,1,a-sust-i2,2023-24,Needham - William Mitchell,01990040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +-5.696,1,a-sust-i2,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,856,856.0 +-Infinity,1,a-sust-i2,2023-24,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,672,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,610,Infinity +-4.48,1,a-sust-i2,2023-24,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,234,780.0 +-Infinity,1,a-sust-i2,2023-24,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,245,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,713,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,301,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +-26.88,1,a-sust-i2,2023-24,New Bedford - Keith Middle School,02010405, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,872,2180.0 +-Infinity,1,a-sust-i2,2023-24,New Bedford - New Bedford High,02010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2893,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Normandin Middle School,02010410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1038,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,86,Infinity +-Infinity,1,a-sust-i2,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +-5.92,1,a-sust-i2,2023-24,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,261,870.0 +-Infinity,1,a-sust-i2,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +-Infinity,1,a-sust-i2,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +3.2,3.2,a-sust-i2,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +-1.664,1,a-sust-i2,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,604,604.0 +-4.56,1,a-sust-i2,2023-24,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,785,785.0 +-Infinity,1,a-sust-i2,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +1.856,1.86,a-sust-i2,2023-24,Newton - A E Angier,02070005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,384,384.0 +-Infinity,1,a-sust-i2,2023-24,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +-Infinity,1,a-sust-i2,2023-24,Newton - Bowen,02070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +-Infinity,1,a-sust-i2,2023-24,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +-Infinity,1,a-sust-i2,2023-24,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +-15.424,1,a-sust-i2,2023-24,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,732,1464.0 +1.6,1.6,a-sust-i2,2023-24,Newton - Countryside,02070040, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,360,400.0 +-5.888,1,a-sust-i2,2023-24,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,868,868.0 +-Infinity,1,a-sust-i2,2023-24,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +0.8,1,a-sust-i2,2023-24,Newton - Horace Mann,02070075, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.8,360,450.0 +-Infinity,1,a-sust-i2,2023-24,Newton - John Ward,02070120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,212,Infinity +-Infinity,1,a-sust-i2,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +-Infinity,1,a-sust-i2,2023-24,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +-Infinity,1,a-sust-i2,2023-24,Newton - Memorial Spaulding,02070105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +5.04,5,a-sust-i2,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,185,185.0 +-3.296,1,a-sust-i2,2023-24,Newton - Newton North High,02070505, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,2118,706.0 +-Infinity,1,a-sust-i2,2023-24,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1861,Infinity +-2.368,1,a-sust-i2,2023-24,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,648,648.0 +4.224,4.22,a-sust-i2,2023-24,Newton - Peirce,02070100, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,236,236.0 +1.546666666666666,1.55,a-sust-i2,2023-24,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,242,403.33333333333337 +-Infinity,1,a-sust-i2,2023-24,Newton - Williams,02070125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,215,Infinity +1.616,1.62,a-sust-i2,2023-24,Newton - Zervas,02070130, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +-Infinity,1,a-sust-i2,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,552,Infinity +-Infinity,1,a-sust-i2,2023-24,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +-Infinity,1,a-sust-i2,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +-Infinity,1,a-sust-i2,2023-24,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +-Infinity,1,a-sust-i2,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +-Infinity,1,a-sust-i2,2023-24,North Adams - Drury High,02090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +-Infinity,1,a-sust-i2,2023-24,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +3.594666666666667,3.59,a-sust-i2,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,413,275.3333333333333 +-Infinity,1,a-sust-i2,2023-24,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,468,Infinity +-Infinity,1,a-sust-i2,2023-24,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +-22.4,1,a-sust-i2,2023-24,North Andover - Franklin,02110010, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,380,1900.0 +-Infinity,1,a-sust-i2,2023-24,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +-28.8,1,a-sust-i2,2023-24,North Andover - North Andover High,02110505, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,1380,2300.0 +-2.17,1,a-sust-i2,2023-24,North Andover - North Andover Middle,02110305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,1017,635.625 +-Infinity,1,a-sust-i2,2023-24,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +-Infinity,1,a-sust-i2,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,407,Infinity +3.392,3.39,a-sust-i2,2023-24,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +-Infinity,1,a-sust-i2,2023-24,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,240,Infinity +-Infinity,1,a-sust-i2,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +-2.79,1,a-sust-i2,2023-24,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,1079,674.375 +-Infinity,1,a-sust-i2,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +-30.56,1,a-sust-i2,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,964,2410.0 +-Infinity,1,a-sust-i2,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +-Infinity,1,a-sust-i2,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +-Infinity,1,a-sust-i2,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +-Infinity,1,a-sust-i2,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,151,Infinity +-Infinity,1,a-sust-i2,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +-Infinity,1,a-sust-i2,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +-Infinity,1,a-sust-i2,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,757,Infinity +-Infinity,1,a-sust-i2,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,430,Infinity +-Infinity,1,a-sust-i2,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +-Infinity,1,a-sust-i2,2023-24,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,612,Infinity +-3.76,1,a-sust-i2,2023-24,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,294,735.0 +-5.12,1,a-sust-i2,2023-24,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,410,820.0 +-Infinity,1,a-sust-i2,2023-24,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +5.091764705882353,5,a-sust-i2,2023-24,North Reading - North Reading High,02170505, 0.0, 1.5, 1.9, 0.0, 0.0, 0.0, 0.0, 3.4,618,181.76470588235296 +4.5248,4.52,a-sust-i2,2023-24,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.5, 1.0, 1.0, 0.0, 0.0, 2.5,543,217.2 +-Infinity,1,a-sust-i2,2023-24,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,259,Infinity +-Infinity,1,a-sust-i2,2023-24,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +-Infinity,1,a-sust-i2,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +3.552,3.55,a-sust-i2,2023-24,Northampton - Leeds,02100025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +-Infinity,1,a-sust-i2,2023-24,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,907,Infinity +-Infinity,1,a-sust-i2,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,233,Infinity +-1.104,1,a-sust-i2,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,569,569.0 +-2.6133333333333337,1,a-sust-i2,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 1.0, 0.0, 0.4, 0.4, 0.0, 0.0, 1.8,1194,663.3333333333334 +-Infinity,1,a-sust-i2,2023-24,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +3.488,3.49,a-sust-i2,2023-24,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,282,282.0 +3.504,3.5,a-sust-i2,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 +3.92,3.92,a-sust-i2,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,255,255.0 +-Infinity,1,a-sust-i2,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,569,Infinity +-Infinity,1,a-sust-i2,2023-24,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,960,Infinity +-Infinity,1,a-sust-i2,2023-24,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +-Infinity,1,a-sust-i2,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,432,Infinity +-Infinity,1,a-sust-i2,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1343,Infinity +-Infinity,1,a-sust-i2,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +-Infinity,1,a-sust-i2,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +-Infinity,1,a-sust-i2,2023-24,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,526,Infinity +-Infinity,1,a-sust-i2,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +-2.96,1,a-sust-i2,2023-24,Norton - Norton High,02180505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,685,685.0 +-Infinity,1,a-sust-i2,2023-24,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,559,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,541,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,596,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,534,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,306,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,250,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,234,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,791,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,317,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,422,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +-Infinity,1,a-sust-i2,2023-24,Norwood - Norwood High,02200505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,951,Infinity +-Infinity,1,a-sust-i2,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,419,Infinity +-Infinity,1,a-sust-i2,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,549,Infinity +-1.76,1,a-sust-i2,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,610,610.0 +-Infinity,1,a-sust-i2,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,431,Infinity +2.432,2.43,a-sust-i2,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,348,348.0 +-Infinity,1,a-sust-i2,2023-24,Orange - Fisher Hill School,02230010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,523,Infinity +-Infinity,1,a-sust-i2,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,142,Infinity +-Infinity,1,a-sust-i2,2023-24,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,324,Infinity +-Infinity,1,a-sust-i2,2023-24,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +-Infinity,1,a-sust-i2,2023-24,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,463,Infinity +-Infinity,1,a-sust-i2,2023-24,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,385,Infinity +-10.432,1,a-sust-i2,2023-24,Palmer - Old Mill Pond,02270008, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,576,1152.0 +-8.288,1,a-sust-i2,2023-24,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,509,1018.0 +-12.576,1,a-sust-i2,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,643,1286.0 +-Infinity,1,a-sust-i2,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1283,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1420,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +-Infinity,1,a-sust-i2,2023-24,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +-Infinity,1,a-sust-i2,2023-24,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,129,Infinity +0.944,1,a-sust-i2,2023-24,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,441,441.0 +-Infinity,1,a-sust-i2,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +-Infinity,1,a-sust-i2,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +-Infinity,1,a-sust-i2,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +-Infinity,1,a-sust-i2,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,715,Infinity +0.608,1,a-sust-i2,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,231,462.0 +-2.432,1,a-sust-i2,2023-24,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,326,652.0 +2.474666666666667,2.47,a-sust-i2,2023-24,Pentucket - Elmer S Bagnall,07450005, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,518,345.3333333333333 +0.16,1,a-sust-i2,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,245,490.0 +2.704,2.7,a-sust-i2,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,331,331.0 +-10.368,1,a-sust-i2,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,574,1148.0 +-Infinity,1,a-sust-i2,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,133,Infinity +-Infinity,1,a-sust-i2,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +-Infinity,1,a-sust-i2,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +-Infinity,1,a-sust-i2,2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +-Infinity,1,a-sust-i2,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,779,Infinity +-Infinity,1,a-sust-i2,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +-Infinity,1,a-sust-i2,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,207,Infinity +2.624,2.62,a-sust-i2,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,168,336.0 +-Infinity,1,a-sust-i2,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +-9.664,1,a-sust-i2,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,552,1104.0 +1.616,1.62,a-sust-i2,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,247,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Egremont,02360035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,386,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,442,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,362,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,724,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,210,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,875,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +-Infinity,1,a-sust-i2,2023-24,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +-Infinity,1,a-sust-i2,2023-24,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +-Infinity,1,a-sust-i2,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +-Infinity,1,a-sust-i2,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +1.872,1.87,a-sust-i2,2023-24,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,383,383.0 +4.512,4.51,a-sust-i2,2023-24,Plymouth - Hedge,02390010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 +-0.688,1,a-sust-i2,2023-24,Plymouth - Indian Brook,02390012, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 +3.632,3.63,a-sust-i2,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +-Infinity,1,a-sust-i2,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +-0.71,1,a-sust-i2,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 1.6,871,544.375 +-Infinity,1,a-sust-i2,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,219,Infinity +-11.952,1,a-sust-i2,2023-24,Plymouth - Plymouth North High,02390505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,1247,1247.0 +-8.048,1,a-sust-i2,2023-24,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1003,1003.0 +-Infinity,1,a-sust-i2,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,605,Infinity +2.976,2.98,a-sust-i2,2023-24,Plymouth - South Elementary,02390046, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,628,314.0 +2.512,2.51,a-sust-i2,2023-24,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +3.952,3.95,a-sust-i2,2023-24,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,253,253.0 +0.664,1,a-sust-i2,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,917,458.5 +-Infinity,1,a-sust-i2,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +-Infinity,1,a-sust-i2,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +-Infinity,1,a-sust-i2,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +-Infinity,1,a-sust-i2,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,35,Infinity +-Infinity,1,a-sust-i2,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,156,Infinity +-Infinity,1,a-sust-i2,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +-Infinity,1,a-sust-i2,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,527,Infinity +-Infinity,1,a-sust-i2,2023-24,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,381,Infinity +-Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity +-Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,344,Infinity +-Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +-Infinity,1,a-sust-i2,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +-Infinity,1,a-sust-i2,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +-5.6,1,a-sust-i2,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,170,850.0 +-1.92,1,a-sust-i2,2023-24,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,248,620.0 +-21.866666666666667,1,a-sust-i2,2023-24,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,560,1866.6666666666667 +-19.12,1,a-sust-i2,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,339,1695.0 +-8.96,1,a-sust-i2,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,318,1060.0 +-Infinity,1,a-sust-i2,2023-24,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,670,Infinity +-9.813333333333336,1,a-sust-i2,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,334,1113.3333333333335 +-20.213333333333335,1,a-sust-i2,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,529,1763.3333333333335 +-Infinity,1,a-sust-i2,2023-24,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,336,Infinity +-22.24,1,a-sust-i2,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,567,1890.0 +-17.52,1,a-sust-i2,2023-24,Quincy - Merrymount,02430060, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,319,1595.0 +-Infinity,1,a-sust-i2,2023-24,Quincy - Montclair,02430065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,409,Infinity +-40.256,1,a-sust-i2,2023-24,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,1508,3016.0 +-5.056,1,a-sust-i2,2023-24,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.3, 0.3, 0.0, 0.0, 0.5,408,816.0 +-39.136,1,a-sust-i2,2023-24,Quincy - Quincy High,02430505, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,1473,2946.0 +-4.448,1,a-sust-i2,2023-24,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.3, 0.3, 0.0, 0.0, 0.0, 0.5,389,778.0 +-27.44,1,a-sust-i2,2023-24,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,443,2215.0 +-Infinity,1,a-sust-i2,2023-24,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,360,Infinity +-8.8,1,a-sust-i2,2023-24,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,315,1050.0 +-8.128,1,a-sust-i2,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,504,1008.0 +-Infinity,1,a-sust-i2,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +-Infinity,1,a-sust-i2,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,475,Infinity +-Infinity,1,a-sust-i2,2023-24,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,408,Infinity +-Infinity,1,a-sust-i2,2023-24,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +-Infinity,1,a-sust-i2,2023-24,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,602,Infinity +-Infinity,1,a-sust-i2,2023-24,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,664,Infinity +2.304,2.3,a-sust-i2,2023-24,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +4.776,4.78,a-sust-i2,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,403,201.5 +2.064,2.06,a-sust-i2,2023-24,Reading - Birch Meadow,02460005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,371,371.0 +-Infinity,1,a-sust-i2,2023-24,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,421,Infinity +-Infinity,1,a-sust-i2,2023-24,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +-Infinity,1,a-sust-i2,2023-24,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +-0.776,1,a-sust-i2,2023-24,Reading - Reading Memorial High,02460505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1097,548.5 +4.392,4.39,a-sust-i2,2023-24,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,451,225.5 +4.016,4.02,a-sust-i2,2023-24,Reading - Wood End Elementary School,02460020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +-Infinity,1,a-sust-i2,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,604,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,327,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,690,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Paul Revere,02480050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,467,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Revere High,02480505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2098,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Rumney Marsh Academy,02480014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,652,Infinity +-Infinity,1,a-sust-i2,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,568,Infinity +-Infinity,1,a-sust-i2,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,158,Infinity +-Infinity,1,a-sust-i2,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +-Infinity,1,a-sust-i2,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +-Infinity,1,a-sust-i2,2023-24,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,494,Infinity +-29.173333333333336,1,a-sust-i2,2023-24,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,697,2323.3333333333335 +2.88,2.88,a-sust-i2,2023-24,Rockland - Phelps Elementary School,02510060, 0.0, 1.5, 0.5, 0.0, 0.0, 0.0, 0.0, 2.0,640,320.0 +-4.053333333333334,1,a-sust-i2,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,226,753.3333333333334 +-Infinity,1,a-sust-i2,2023-24,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,577,Infinity +-Infinity,1,a-sust-i2,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,272,Infinity +0.768,1,a-sust-i2,2023-24,Rockport - Rockport High,02520510, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,226,452.0 +2.464,2.46,a-sust-i2,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,173,346.0 +-Infinity,1,a-sust-i2,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +-Infinity,1,a-sust-i2,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1138,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem - Bates,02580003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem - Collins Middle,02580305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +-1.824,1,a-sust-i2,2023-24,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,307,614.0 +-Infinity,1,a-sust-i2,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,45,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,112,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem - Salem High,02580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,948,Infinity +6.64,5,a-sust-i2,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,17,85.0 +-Infinity,1,a-sust-i2,2023-24,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +-Infinity,1,a-sust-i2,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +-9.376,1,a-sust-i2,2023-24,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,543,1086.0 +-2.784,1,a-sust-i2,2023-24,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,674,674.0 +-Infinity,1,a-sust-i2,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,912,Infinity +-Infinity,1,a-sust-i2,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,800,Infinity +-Infinity,1,a-sust-i2,2023-24,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,727,Infinity +-Infinity,1,a-sust-i2,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +-Infinity,1,a-sust-i2,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,466,Infinity +-Infinity,1,a-sust-i2,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +2.128,2.13,a-sust-i2,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,367,367.0 +-1.824,1,a-sust-i2,2023-24,Scituate - Gates Middle School,02640305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,614,614.0 +4.0,4.0,a-sust-i2,2023-24,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,250,250.0 +2.64,2.64,a-sust-i2,2023-24,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +-3.984,1,a-sust-i2,2023-24,Scituate - Scituate High School,02640505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,749,749.0 +1.12,1.12,a-sust-i2,2023-24,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,430,430.0 +-Infinity,1,a-sust-i2,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,514,Infinity +-Infinity,1,a-sust-i2,2023-24,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +-Infinity,1,a-sust-i2,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,575,Infinity +-Infinity,1,a-sust-i2,2023-24,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +-Infinity,1,a-sust-i2,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +-Infinity,1,a-sust-i2,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +0.24,1,a-sust-i2,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,485,485.0 +-Infinity,1,a-sust-i2,2023-24,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +-Infinity,1,a-sust-i2,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +-10.112,1,a-sust-i2,2023-24,Sharon - Sharon High,02660505, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1132,1132.0 +-Infinity,1,a-sust-i2,2023-24,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +-12.896,1,a-sust-i2,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,1306,1306.0 +-Infinity,1,a-sust-i2,2023-24,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,542,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,608,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,941,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,917,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1879,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +-Infinity,1,a-sust-i2,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +5.78,5,a-sust-i2,2023-24,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,111,138.75 +-33.04,1,a-sust-i2,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.4,1026,2565.0 +-1.008,1,a-sust-i2,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,563,563.0 +-Infinity,1,a-sust-i2,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +-8.266666666666667,1,a-sust-i2,2023-24,Somerset - Chace Street,02730005, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,305,1016.6666666666667 +-6.848,1,a-sust-i2,2023-24,Somerset - North Elementary,02730008, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,464,928.0 +-Infinity,1,a-sust-i2,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +-5.973333333333334,1,a-sust-i2,2023-24,Somerset - South,02730015, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,262,873.3333333333334 +-22.72,1,a-sust-i2,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,960,1920.0 +-Infinity,1,a-sust-i2,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,564,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,486,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,743,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - Somerville High,02740505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1373,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,378,Infinity +-Infinity,1,a-sust-i2,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,403,Infinity +-Infinity,1,a-sust-i2,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +-3.52,1,a-sust-i2,2023-24,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,360,720.0 +-0.48,1,a-sust-i2,2023-24,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,265,530.0 +-Infinity,1,a-sust-i2,2023-24,South Hadley - South Hadley High,02780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,508,Infinity +-1.290666666666666,1,a-sust-i2,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 0.0, 1.5,871,580.6666666666666 +-Infinity,1,a-sust-i2,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1055,Infinity +-Infinity,1,a-sust-i2,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,667,Infinity +-Infinity,1,a-sust-i2,2023-24,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +4.048,4.05,a-sust-i2,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +3.44,3.44,a-sust-i2,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +2.16,2.16,a-sust-i2,2023-24,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,365,365.0 +4.744,4.74,a-sust-i2,2023-24,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,407,203.5 +-Infinity,1,a-sust-i2,2023-24,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +-Infinity,1,a-sust-i2,2023-24,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,345,Infinity +-Infinity,1,a-sust-i2,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +-6.88,1,a-sust-i2,2023-24,Southbridge - Southbridge High School,02770515, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,465,930.0 +-Infinity,1,a-sust-i2,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +2.752,2.75,a-sust-i2,2023-24,Southbridge - West Street,02770020, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +-17.552,1,a-sust-i2,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1597,1597.0 +-Infinity,1,a-sust-i2,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,281,Infinity +-Infinity,1,a-sust-i2,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +-Infinity,1,a-sust-i2,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +-Infinity,1,a-sust-i2,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +-Infinity,1,a-sust-i2,2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1193,Infinity +-2.16,1,a-sust-i2,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.1, 0.0, 0.0, 0.0, 0.5, 0.0, 0.6,381,635.0 +-1.824,1,a-sust-i2,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,614,614.0 +-2.24,1,a-sust-i2,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,320,640.0 +-2.592,1,a-sust-i2,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,331,662.0 +0.096,1,a-sust-i2,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,247,494.0 +-12.746666666666668,1,a-sust-i2,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,389,1296.6666666666667 +-6.432,1,a-sust-i2,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,451,902.0 +-Infinity,1,a-sust-i2,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,131,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Benjamin Swan Elementary,02810085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,499,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Brightwood,02810025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,480,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,303,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,188,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,554,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,284,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Frederick Harris,02810080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,512,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - German Gerena Community School,02810195, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,623,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,315,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - High School Of Commerce,02810510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1060,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,202,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,565,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,367,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - John J Duggan Academy,02810320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,831,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,262,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Kiley Prep,02810315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,263,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,246,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Lincoln,02810120, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,454,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,138,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,366,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Milton Bradley School,02810023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,391,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,216,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1383,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Central High,02810500, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2042,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,355,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,61,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Sumner Avenue,02810160, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,609,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - The Springfield Virtual School,02810705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Van Sickle Academy,02810485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,238,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - Washington,02810185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,397,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1478,Infinity +-Infinity,1,a-sust-i2,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,393,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,354,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,700,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,585,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,833,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +-Infinity,1,a-sust-i2,2023-24,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1097,Infinity +3.189333333333333,3.19,a-sust-i2,2023-24,Sturbridge - Burgess Elementary,02870005, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,902,300.6666666666667 +-Infinity,1,a-sust-i2,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity +-Infinity,1,a-sust-i2,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,828,Infinity +5.328,5,a-sust-i2,2023-24,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,334,167.0 +-Infinity,1,a-sust-i2,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,417,Infinity +-12.746666666666668,1,a-sust-i2,2023-24,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,389,1296.6666666666667 +-Infinity,1,a-sust-i2,2023-24,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +-Infinity,1,a-sust-i2,2023-24,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +-Infinity,1,a-sust-i2,2023-24,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,339,Infinity +-Infinity,1,a-sust-i2,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,313,Infinity +-Infinity,1,a-sust-i2,2023-24,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +-Infinity,1,a-sust-i2,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +1.408,1.41,a-sust-i2,2023-24,Swampscott - Clarke,02910005, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,206,412.0 +-3.392,1,a-sust-i2,2023-24,Swampscott - Hadley,02910010, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,356,712.0 +2.784,2.78,a-sust-i2,2023-24,Swampscott - Stanley,02910020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,163,326.0 +-13.312,1,a-sust-i2,2023-24,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,666,1332.0 +-2.992,1,a-sust-i2,2023-24,Swampscott - Swampscott Middle,02910305, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,687,687.0 +-Infinity,1,a-sust-i2,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,274,Infinity +-Infinity,1,a-sust-i2,2023-24,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +-1.184,1,a-sust-i2,2023-24,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,574,574.0 +-Infinity,1,a-sust-i2,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,495,Infinity +-Infinity,1,a-sust-i2,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +-Infinity,1,a-sust-i2,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +-38.512,1,a-sust-i2,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,2907,2907.0 +-Infinity,1,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,560,Infinity +-Infinity,1,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,663,Infinity +-Infinity,1,a-sust-i2,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +-10.453333333333335,1,a-sust-i2,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.6,692,1153.3333333333335 +-6.293333333333334,1,a-sust-i2,2023-24,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,536,893.3333333333334 +-Infinity,1,a-sust-i2,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +-2.44,1,a-sust-i2,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,261,652.5 +-11.264,1,a-sust-i2,2023-24,Taunton - Elizabeth Pole,02930027, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,602,1204.0 +-6.88,1,a-sust-i2,2023-24,Taunton - H H Galligan,02930057, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,279,930.0 +-6.112,1,a-sust-i2,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,882,882.0 +-5.6,1,a-sust-i2,2023-24,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,510,850.0 +-7.712,1,a-sust-i2,2023-24,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.3, 0.0, 0.2, 0.0, 0.0, 0.0, 0.5,491,982.0 +-3.52,1,a-sust-i2,2023-24,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.2, 0.0, 0.0, 0.8, 0.0, 0.9,648,720.0 +6.3,5,a-sust-i2,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,85,106.25 +-25.107692307692304,1,a-sust-i2,2023-24,Taunton - Taunton High,02930505, 0.0, 0.8, 0.0, 0.5, 0.0, 0.0, 0.0, 1.3,2690,2069.230769230769 +-Infinity,1,a-sust-i2,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +-Infinity,1,a-sust-i2,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,767,Infinity +-Infinity,1,a-sust-i2,2023-24,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +-Infinity,1,a-sust-i2,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,497,Infinity +-Infinity,1,a-sust-i2,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +-Infinity,1,a-sust-i2,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,392,Infinity +-Infinity,1,a-sust-i2,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,719,Infinity +-Infinity,1,a-sust-i2,2023-24,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,271,Infinity +-Infinity,1,a-sust-i2,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +-Infinity,1,a-sust-i2,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,357,Infinity +-Infinity,1,a-sust-i2,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,964,Infinity +-Infinity,1,a-sust-i2,2023-24,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,426,Infinity +-Infinity,1,a-sust-i2,2023-24,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +-Infinity,1,a-sust-i2,2023-24,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,401,Infinity +-Infinity,1,a-sust-i2,2023-24,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,567,Infinity +-Infinity,1,a-sust-i2,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +3.146666666666666,3.15,a-sust-i2,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,91,303.33333333333337 +-0.032,1,a-sust-i2,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,753,502.0 +-Infinity,1,a-sust-i2,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,420,Infinity +-Infinity,1,a-sust-i2,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,369,Infinity +5.344,5,a-sust-i2,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,166,166.0 +-1.248,1,a-sust-i2,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,578,578.0 +-Infinity,1,a-sust-i2,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +-Infinity,1,a-sust-i2,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,325,Infinity +-5.216,1,a-sust-i2,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,826,826.0 +-Infinity,1,a-sust-i2,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +-Infinity,1,a-sust-i2,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,533,Infinity +-1.312,1,a-sust-i2,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,582,582.0 +0.384,1,a-sust-i2,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,476,476.0 +-1.84,1,a-sust-i2,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,615,615.0 +-4.16,1,a-sust-i2,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,380,760.0 +-Infinity,1,a-sust-i2,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,273,Infinity +-7.2,1,a-sust-i2,2023-24,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,475,950.0 +-7.616,1,a-sust-i2,2023-24,Wachusett - Dawson,07750020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,488,976.0 +-Infinity,1,a-sust-i2,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +-3.136,1,a-sust-i2,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,348,696.0 +-Infinity,1,a-sust-i2,2023-24,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,318,Infinity +-7.328,1,a-sust-i2,2023-24,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,479,958.0 +-16.032,1,a-sust-i2,2023-24,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,751,1502.0 +-4.096,1,a-sust-i2,2023-24,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,378,756.0 +-5.824,1,a-sust-i2,2023-24,Wachusett - Paxton Center,07750040, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,432,864.0 +-Infinity,1,a-sust-i2,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +-11.850666666666667,1,a-sust-i2,2023-24,Wachusett - Wachusett Regional High,07750505, 0.5, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5,1861,1240.6666666666667 +-Infinity,1,a-sust-i2,2023-24,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,447,Infinity +-Infinity,1,a-sust-i2,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,135,Infinity +-0.416,1,a-sust-i2,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1052,526.0 +-Infinity,1,a-sust-i2,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,228,Infinity +-Infinity,1,a-sust-i2,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,840,Infinity +-Infinity,1,a-sust-i2,2023-24,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,213,Infinity +-Infinity,1,a-sust-i2,2023-24,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,450,Infinity +-Infinity,1,a-sust-i2,2023-24,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,93,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Bird Middle,03070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,400,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,405,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,446,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,473,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +-Infinity,1,a-sust-i2,2023-24,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,946,Infinity +-4.666666666666668,1,a-sust-i2,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,475,791.6666666666667 +-26.88,1,a-sust-i2,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,218,2180.0 +-53.76,1,a-sust-i2,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,386,3860.0 +-1.44,1,a-sust-i2,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,354,590.0 +-92.48,1,a-sust-i2,2023-24,Waltham - John F Kennedy Middle,03080404, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,628,6280.0 +-88.64,1,a-sust-i2,2023-24,Waltham - John W. McDevitt Middle School,03080415, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,604,6040.0 +-72.0,1,a-sust-i2,2023-24,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,500,5000.0 +-48.32,1,a-sust-i2,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,352,3520.0 +-24.284444444444446,1,a-sust-i2,2023-24,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 0.8, 0.1, 0.0, 0.0, 0.0, 0.9,1816,2017.7777777777778 +-52.16,1,a-sust-i2,2023-24,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,376,3760.0 +-Infinity,1,a-sust-i2,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,389,Infinity +-Infinity,1,a-sust-i2,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,471,Infinity +-Infinity,1,a-sust-i2,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,264,Infinity +-Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +-Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,933,Infinity +-Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,404,Infinity +-Infinity,1,a-sust-i2,2023-24,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,583,Infinity +-Infinity,1,a-sust-i2,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +-Infinity,1,a-sust-i2,2023-24,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,310,Infinity +-Infinity,1,a-sust-i2,2023-24,Watertown - Hosmer,03140020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,720,Infinity +-Infinity,1,a-sust-i2,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +-Infinity,1,a-sust-i2,2023-24,Watertown - Watertown High,03140505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,760,Infinity +-Infinity,1,a-sust-i2,2023-24,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +0.176,1,a-sust-i2,2023-24,Wayland - Claypit Hill School,03150005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0,489,489.0 +4.32,4.32,a-sust-i2,2023-24,Wayland - Happy Hollow School,03150015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 1.5,345,230.0 +1.968,1.97,a-sust-i2,2023-24,Wayland - Loker School,03150020, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 1.0,377,377.0 +-Infinity,1,a-sust-i2,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +-Infinity,1,a-sust-i2,2023-24,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,820,Infinity +0.8853333333333331,1,a-sust-i2,2023-24,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 1.5,667,444.6666666666667 +-Infinity,1,a-sust-i2,2023-24,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,373,Infinity +-Infinity,1,a-sust-i2,2023-24,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,734,Infinity +-10.944,1,a-sust-i2,2023-24,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,592,1184.0 +-Infinity,1,a-sust-i2,2023-24,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,141,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,225,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,253,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Schofield,03170045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,299,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,293,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,919,Infinity +-Infinity,1,a-sust-i2,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1358,Infinity +5.088,5,a-sust-i2,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,91,182.0 +-Infinity,1,a-sust-i2,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,455,Infinity +-Infinity,1,a-sust-i2,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +3.056,3.06,a-sust-i2,2023-24,West Bridgewater - Howard School,03230305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,309,309.0 +2.784,2.78,a-sust-i2,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,326,326.0 +-Infinity,1,a-sust-i2,2023-24,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +-11.808,1,a-sust-i2,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,619,1238.0 +-2.88,1,a-sust-i2,2023-24,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3, 0.3,204,680.0 +-Infinity,1,a-sust-i2,2023-24,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +2.453333333333333,2.45,a-sust-i2,2023-24,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,208,346.6666666666667 +-14.4,1,a-sust-i2,2023-24,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1,140,1400.0 +-22.56,1,a-sust-i2,2023-24,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,573,1910.0 +-5.973333333333334,1,a-sust-i2,2023-24,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,262,873.3333333333334 +-30.656,1,a-sust-i2,2023-24,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,1208,2416.0 +-21.632,1,a-sust-i2,2023-24,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.2, 0.5,926,1852.0 +-Infinity,1,a-sust-i2,2023-24,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +0.144,1,a-sust-i2,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,491,491.0 +1.808,1.81,a-sust-i2,2023-24,Westborough - J Harding Armstrong,03210005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +-Infinity,1,a-sust-i2,2023-24,Westborough - Mill Pond School,03210045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,876,Infinity +-1.616,1,a-sust-i2,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,601,601.0 +-9.483636363636364,1,a-sust-i2,2023-24,Westborough - Westborough High,03210505, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,1202,1092.7272727272727 +-Infinity,1,a-sust-i2,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,185,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,147,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,174,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,347,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,316,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Westfield High,03250505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1006,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,684,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,706,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +-Infinity,1,a-sust-i2,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,372,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,535,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,305,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,278,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Stony Brook School,03260330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,586,Infinity +-Infinity,1,a-sust-i2,2023-24,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1444,Infinity +-0.32,1,a-sust-i2,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,104,520.0 +-42.88,1,a-sust-i2,2023-24,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,318,3180.0 +-Infinity,1,a-sust-i2,2023-24,Weston - Field Elementary School,03300012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-0.14769230769230762,1,a-sust-i2,2023-24,Weston - Weston High,03300505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.3, 0.0, 1.3,662,509.2307692307692 +3.1085714285714285,3.11,a-sust-i2,2023-24,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.5, 0.8, 0.1, 0.0, 1.4,428,305.7142857142857 +-43.84,1,a-sust-i2,2023-24,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1,324,3240.0 +-Infinity,1,a-sust-i2,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,178,Infinity +-Infinity,1,a-sust-i2,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,448,Infinity +-6.08,1,a-sust-i2,2023-24,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,880,880.0 +2.976,2.98,a-sust-i2,2023-24,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 +-Infinity,1,a-sust-i2,2023-24,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,661,Infinity +5.555555555555555,5,a-sust-i2,2023-24,Westwood - Martha Jones,03350017, 0.0, 1.0, 0.0, 0.8, 0.0, 0.0, 0.0, 1.8,275,152.77777777777777 +4.632,4.63,a-sust-i2,2023-24,Westwood - Pine Hill Elementary School,03350030, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,421,210.5 +3.338666666666667,3.34,a-sust-i2,2023-24,Westwood - Westwood High,03350505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,874,291.3333333333333 +-Infinity,1,a-sust-i2,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +3.2,3.2,a-sust-i2,2023-24,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +-Infinity,1,a-sust-i2,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1187,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,351,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - Weymouth High School,03360505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1751,Infinity +-Infinity,1,a-sust-i2,2023-24,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +6.0,5,a-sust-i2,2023-24,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,125,125.0 +-Infinity,1,a-sust-i2,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,424,Infinity +-7.936,1,a-sust-i2,2023-24,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,498,996.0 +-Infinity,1,a-sust-i2,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +-7.2,1,a-sust-i2,2023-24,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,475,950.0 +-Infinity,1,a-sust-i2,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +-25.248,1,a-sust-i2,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,1039,2078.0 +-8.224,1,a-sust-i2,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,507,1014.0 +-2.232,1,a-sust-i2,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1279,639.5 +-1.84,1,a-sust-i2,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.2, 0.2,123,615.0 +-Infinity,1,a-sust-i2,2023-24,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,144,Infinity +-Infinity,1,a-sust-i2,2023-24,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,249,Infinity +-Infinity,1,a-sust-i2,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,342,Infinity +3.632,3.63,a-sust-i2,2023-24,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +-Infinity,1,a-sust-i2,2023-24,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,613,Infinity +-Infinity,1,a-sust-i2,2023-24,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,781,Infinity +2.272,2.27,a-sust-i2,2023-24,Wilmington - Woburn Street,03420020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +-Infinity,1,a-sust-i2,2023-24,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchendon - Murdock High School,03430515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,290,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,276,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,383,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1039,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,425,Infinity +-Infinity,1,a-sust-i2,2023-24,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1372,Infinity +-Infinity,1,a-sust-i2,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +-Infinity,1,a-sust-i2,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +-Infinity,1,a-sust-i2,2023-24,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +-Infinity,1,a-sust-i2,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,423,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,444,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,460,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,415,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,511,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,196,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,338,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,204,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +-Infinity,1,a-sust-i2,2023-24,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1228,Infinity +-10.656,1,a-sust-i2,2023-24,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,583,1166.0 +-13.888,1,a-sust-i2,2023-24,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,684,1368.0 +-9.984,1,a-sust-i2,2023-24,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1124,1124.0 +-Infinity,1,a-sust-i2,2023-24,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +-5.4,1,a-sust-i2,2023-24,Worcester - Canterbury,03480045, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.4,335,837.5 +-5.152,1,a-sust-i2,2023-24,Worcester - Chandler Elementary Community,03480050, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,411,822.0 +-Infinity,1,a-sust-i2,2023-24,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,548,Infinity +-Infinity,1,a-sust-i2,2023-24,Worcester - City View,03480053, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,433,Infinity +-7.296,1,a-sust-i2,2023-24,Worcester - Claremont Academy,03480350, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,478,956.0 +-2.44,1,a-sust-i2,2023-24,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4, 0.0, 0.4,261,652.5 +-4.0,1,a-sust-i2,2023-24,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,375,750.0 +-29.28,1,a-sust-i2,2023-24,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,1398,2330.0 +-6.08,1,a-sust-i2,2023-24,Worcester - Elm Park Community,03480095, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,440,880.0 +-12.64,1,a-sust-i2,2023-24,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.3,387,1290.0 +-5.264,1,a-sust-i2,2023-24,Worcester - Forest Grove Middle,03480415, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,829,829.0 +-0.32,1,a-sust-i2,2023-24,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,208,520.0 +-0.752,1,a-sust-i2,2023-24,Worcester - Gates Lane,03480110, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,547,547.0 +-4.096,1,a-sust-i2,2023-24,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,378,756.0 +1.632,1.63,a-sust-i2,2023-24,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +-Infinity,1,a-sust-i2,2023-24,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +3.984,3.98,a-sust-i2,2023-24,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,251,251.0 +-2.16,1,a-sust-i2,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.6,381,635.0 +-3.44,1,a-sust-i2,2023-24,Worcester - Lake View,03480145, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,286,715.0 +1.12,1.12,a-sust-i2,2023-24,Worcester - Lincoln Street,03480160, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,215,430.0 +-Infinity,1,a-sust-i2,2023-24,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,294,Infinity +0.384,1,a-sust-i2,2023-24,Worcester - Midland Street,03480185, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,238,476.0 +-2.4888888888888885,1,a-sust-i2,2023-24,Worcester - Nelson Place,03480200, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,590,655.5555555555555 +-0.7288888888888887,1,a-sust-i2,2023-24,Worcester - Norrback Avenue,03480202, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,491,545.5555555555555 +-14.72,1,a-sust-i2,2023-24,Worcester - North High,03480515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1420,1420.0 +-3.44,1,a-sust-i2,2023-24,Worcester - Quinsigamond,03480210, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,715,715.0 +-Infinity,1,a-sust-i2,2023-24,Worcester - Rice Square,03480215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +-11.072,1,a-sust-i2,2023-24,Worcester - Roosevelt,03480220, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,596,1192.0 +-20.656,1,a-sust-i2,2023-24,Worcester - South High Community,03480520, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1791,1791.0 +-1.0026666666666662,1,a-sust-i2,2023-24,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 1.5,844,562.6666666666666 +-4.16,1,a-sust-i2,2023-24,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,380,760.0 +-Infinity,1,a-sust-i2,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +2.096,2.1,a-sust-i2,2023-24,Worcester - Union Hill School,03480240, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +4.096,4.1,a-sust-i2,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,244,244.0 +-0.6755555555555548,1,a-sust-i2,2023-24,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.9,488,542.2222222222222 +3.2,3.2,a-sust-i2,2023-24,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,150,300.0 +2.144,2.14,a-sust-i2,2023-24,Worcester - West Tatnuck,03480260, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,366,366.0 +-7.648,1,a-sust-i2,2023-24,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,489,978.0 +-Infinity,1,a-sust-i2,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +-14.24,1,a-sust-i2,2023-24,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,695,1390.0 +-7.349333333333334,1,a-sust-i2,2023-24,Worcester - Worcester Technical High,03480605, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 0.0, 1.5,1439,959.3333333333334 +-Infinity,1,a-sust-i2,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,136,Infinity +-Infinity,1,a-sust-i2,2023-24,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,73,Infinity +-0.4571428571428569,1,a-sust-i2,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,370,528.5714285714286 +-5.965714285714286,1,a-sust-i2,2023-24,Wrentham - Delaney,03500003, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7,611,872.8571428571429 -Infinity,1,a-sust-i2,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1422,Infinity -Infinity,1,a-sust-i2,2022-23,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity -0.768,1,a-sust-i2,2022-23,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,548,548.0 @@ -12884,6 +14711,1833 @@ NaN,NaN,a-sust-i2,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, -Infinity,1,a-sust-i2,2016-17,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity -6.048,1,a-sust-i2,2016-17,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,439,878.0 -39.36,1,a-sust-i2,2016-17,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,592,2960.0 +0.7240143369175627,1,a-sust-i3,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.0, 2.0, 2.0, 4.0, 4.0, 4.0, 1.0, 18.0,1421,78.94444444444444 +7.2432694639825375,5,a-sust-i3,2023-24,Abington - Abington Early Education Program,00010001, 3.5, 0.0, 0.0, 2.0, 3.0, 1.0, 0.0, 9.5,78,8.210526315789474 +-95.41013824884791,1,a-sust-i3,2023-24,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,561,1122.0 +3.490960652250975,3.49,a-sust-i3,2023-24,Abington - Abington Middle School,00010405, 3.0, 4.0, 1.0, 2.0, 1.0, 1.0, 1.0, 13.0,636,48.92307692307692 +5.479138124299414,5,a-sust-i3,2023-24,Abington - Beaver Brook Elementary,00010020, 4.0, 3.0, 2.0, 3.5, 1.0, 3.0, 2.0, 18.5,506,27.35135135135135 +3.3653719552337065,3.37,a-sust-i3,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 2.0, 3.0, 0.0, 2.0, 0.0, 7.0,352,50.285714285714285 +-0.1105990783410141,1,a-sust-i3,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 1.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 5.0,440,88.0 +0.5499231950844843,1,a-sust-i3,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 1.8, 3.4, 1.0, 4.0, 5.0, 4.2, 1.0, 20.4,1649,80.83333333333334 +5.977138069303969,5,a-sust-i3,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.9, 0.9, 2.2, 4.8, 6.2, 6.1, 2.0, 23.1,507,21.948051948051948 +4.950282866883969,4.95,a-sust-i3,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.8, 0.7, 0.5, 4.3, 3.3, 1.3, 1.5, 12.3,407,33.08943089430894 +7.339073490177055,5,a-sust-i3,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.9, 0.0, 1.4, 3.6, 7.1, 1.4, 0.9, 15.2,109,7.171052631578948 +6.007093396385746,5,a-sust-i3,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.8, 2.3, 2.9, 5.0, 3.9, 3.1, 1.2, 19.1,413,21.623036649214658 +5.791023842917251,5,a-sust-i3,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 1.3, 0.8, 0.8, 5.5, 3.2, 5.4, 1.6, 18.4,441,23.967391304347828 +5.55032743148193,5,a-sust-i3,2023-24,Acton-Boxborough - Merriam School,06000010, 0.8, 0.8, 0.5, 3.0, 6.0, 4.3, 0.0, 15.2,404,26.578947368421055 +5.171460352772923,5,a-sust-i3,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.8, 0.0, 1.3, 3.1, 5.8, 0.8, 0.0, 11.6,356,30.689655172413794 +4.076917509108018,4.08,a-sust-i3,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 2.8, 3.6, 4.7, 6.4, 1.6, 19.1,813,42.565445026178004 +4.029185867895545,4.03,a-sust-i3,2023-24,Acushnet - Acushnet Elementary School,00030025, 2.0, 1.0, 1.0, 2.0, 0.0, 5.0, 1.0, 12.0,517,43.083333333333336 +0.25806451612903203,1,a-sust-i3,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 2.0, 2.0, 1.0, 0.0, 5.0,420,84.0 +-6.838709677419354,1,a-sust-i3,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 1.0, 1.0, 0.0, 1.0, 1.0, 2.0, 0.0, 6.0,966,161.0 +7.039938556067588,5,a-sust-i3,2023-24,Agawam - Agawam Early Childhood Center,00050003, 2.0, 1.0, 5.6, 4.0, 1.8, 0.0, 0.0, 14.4,150,10.416666666666666 +4.159754224270354,4.16,a-sust-i3,2023-24,Agawam - Agawam High,00050505, 2.0, 5.0, 1.6, 2.6, 4.0, 5.0, 5.0, 25.2,1050,41.666666666666664 +3.3833263510682863,3.38,a-sust-i3,2023-24,Agawam - Agawam Junior High,00050405, 0.0, 1.0, 1.0, 1.0, 3.0, 5.0, 0.0, 11.0,551,50.09090909090909 +6.10752688172043,5,a-sust-i3,2023-24,Agawam - Benjamin J Phelps,00050020, 0.0, 3.0, 3.0, 2.0, 2.0, 4.0, 1.0, 15.0,308,20.533333333333335 +6.748670684154555,5,a-sust-i3,2023-24,Agawam - Clifford M Granger,00050010, 2.0, 5.0, 4.0, 6.0, 7.0, 1.0, 1.0, 26.0,353,13.576923076923077 +7.037025266168759,5,a-sust-i3,2023-24,Agawam - James Clark School,00050030, 2.0, 2.0, 3.0, 6.0, 5.0, 10.0, 1.0, 29.0,303,10.448275862068966 +4.426799007444169,4.43,a-sust-i3,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 1.0, 0.0, 2.0, 2.0, 6.0, 2.0, 13.0,504,38.76923076923077 +6.806032677000419,5,a-sust-i3,2023-24,Agawam - William P. Sapelli Elementary,00050025, 3.0, 2.0, 6.0, 4.0, 5.0, 2.0, 0.0, 22.0,285,12.954545454545455 +-Infinity,1,a-sust-i3,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1041,Infinity +5.142857142857142,5,a-sust-i3,2023-24,Amesbury - Amesbury High,00070505, 2.0, 1.0, 0.0, 1.0, 3.0, 7.0, 1.0, 15.0,465,31.0 +3.2995391705069124,3.3,a-sust-i3,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,51,51.0 +5.261356155365371,5,a-sust-i3,2023-24,Amesbury - Amesbury Middle,00070013, 2.0, 0.0, 0.0, 4.0, 5.0, 3.0, 0.0, 14.0,416,29.714285714285715 +6.048828316501618,5,a-sust-i3,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 2.0, 1.0, 3.0, 3.8, 4.0, 4.0, 1.0, 18.8,398,21.170212765957444 +6.552103463653933,5,a-sust-i3,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 4.8, 3.6, 3.0, 9.8, 8.8, 1.0, 31.0,487,15.709677419354838 +7.103102001513172,5,a-sust-i3,2023-24,Amherst - Crocker Farm Elementary,00080009, 2.0, 4.8, 4.0, 5.0, 5.7, 10.0, 2.0, 33.5,326,9.73134328358209 +6.9190033585878306,5,a-sust-i3,2023-24,Amherst - Fort River Elementary,00080020, 4.0, 6.0, 4.0, 2.5, 6.0, 3.0, 4.0, 29.5,346,11.728813559322035 +7.2437046313972004,5,a-sust-i3,2023-24,Amherst - Wildwood Elementary,00080050, 4.0, 13.0, 3.0, 7.0, 4.0, 4.9, 2.0, 37.9,311,8.20580474934037 +6.465118401241046,5,a-sust-i3,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 6.0, 8.3, 5.2, 7.0, 9.0, 9.0, 6.0, 50.5,841,16.653465346534652 +7.028308097432522,5,a-sust-i3,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 3.0, 6.0, 5.0, 4.0, 8.0, 6.0, 3.0, 35.0,369,10.542857142857143 +2.690991730320055,2.69,a-sust-i3,2023-24,Andover - Andover High,00090505, 1.0, 1.0, 2.7, 3.0, 5.0, 11.0, 5.6, 29.2,1682,57.6027397260274 +5.447315279863304,5,a-sust-i3,2023-24,Andover - Andover West Middle,00090310, 0.0, 2.0, 0.0, 3.0, 5.0, 5.0, 2.9, 17.8,493,27.696629213483146 +6.589131991837508,5,a-sust-i3,2023-24,Andover - Bancroft Elementary,00090003, 9.0, 1.0, 5.0, 2.0, 6.0, 8.1, 3.0, 34.1,522,15.307917888563049 +5.321972002434571,5,a-sust-i3,2023-24,Andover - Doherty Middle,00090305, 2.0, 2.0, 0.0, 3.0, 3.0, 4.9, 1.0, 15.9,462,29.056603773584904 +4.793394777265744,4.79,a-sust-i3,2023-24,Andover - Henry C Sanborn Elementary,00090010, 3.0, 0.0, 0.0, 0.0, 6.6, 0.0, 0.0, 9.6,334,34.79166666666667 +6.1634341081345685,5,a-sust-i3,2023-24,Andover - High Plain Elementary,00090004, 3.0, 2.0, 0.0, 2.0, 7.4, 7.7, 5.3, 27.3,544,19.926739926739927 +7.749187882450706,5,a-sust-i3,2023-24,Andover - Shawsheen School,00090005, 2.8, 1.8, 5.4, 7.5, 6.1, 5.2, 1.7, 30.5,83,2.721311475409836 +5.698516288857515,5,a-sust-i3,2023-24,Andover - South Elementary,00090020, 2.0, 2.9, 0.0, 0.0, 7.4, 3.0, 2.0, 17.3,432,24.971098265895954 +6.745211259785686,5,a-sust-i3,2023-24,Andover - West Elementary,00090025, 3.0, 3.0, 6.0, 9.5, 11.4, 7.6, 1.0, 41.5,565,13.614457831325302 +5.992966286684453,5,a-sust-i3,2023-24,Andover - Wood Hill Middle School,00090350, 6.0, 2.0, 0.0, 1.2, 0.0, 5.0, 1.0, 15.2,331,21.776315789473685 +-44.903225806451616,1,a-sust-i3,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,574,574.0 +0.153707361080632,1,a-sust-i3,2023-24,Arlington - Arlington High,00100505, 3.0, 7.9, 1.0, 2.0, 3.0, 0.0, 2.0, 18.9,1609,85.13227513227514 +5.3657989787022045,5,a-sust-i3,2023-24,Arlington - Brackett,00100010, 4.0, 2.0, 1.0, 1.0, 4.0, 1.0, 1.8, 14.8,423,28.58108108108108 +5.98417900884694,5,a-sust-i3,2023-24,Arlington - Cyrus E Dallin,00100025, 2.0, 7.6, 0.0, 2.8, 3.7, 2.6, 0.0, 18.7,409,21.871657754010695 +3.686635944700461,3.69,a-sust-i3,2023-24,Arlington - Gibbs School,00100305, 2.0, 2.0, 1.0, 2.0, 0.0, 1.0, 2.0, 10.0,468,46.8 +5.971290852269718,5,a-sust-i3,2023-24,Arlington - Hardy,00100030, 4.0, 2.8, 3.8, 3.0, 2.8, 1.0, 0.0, 17.4,383,22.011494252873565 +5.093801100044597,5,a-sust-i3,2023-24,Arlington - John A Bishop,00100005, 0.0, 1.0, 0.0, 5.0, 2.0, 1.4, 3.0, 12.4,391,31.532258064516128 +6.414311114336515,5,a-sust-i3,2023-24,Arlington - M Norcross Stratton,00100055, 7.0, 6.4, 3.0, 4.0, 1.0, 4.0, 0.0, 25.4,437,17.20472440944882 +7.464624559501221,5,a-sust-i3,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, 1.0, 2.0, 1.6, 3.0, 5.0, 1.0, 13.6,79,5.8088235294117645 +1.9772145417306712,1.98,a-sust-i3,2023-24,Arlington - Ottoson Middle,00100410, 1.8, 1.6, 0.0, 3.0, 4.0, 4.0, 0.0, 14.4,941,65.34722222222221 +5.427035330261136,5,a-sust-i3,2023-24,Arlington - Peirce,00100045, 1.0, 4.4, 1.0, 0.0, 4.6, 0.0, 1.0, 12.0,335,27.916666666666668 +5.594470046082949,5,a-sust-i3,2023-24,Arlington - Thompson,00100050, 3.0, 5.0, 0.0, 3.4, 8.6, 0.0, 0.0, 20.0,522,26.1 +6.110599078341013,5,a-sust-i3,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 1.0, 2.0, 6.0, 10.0, 2.0, 3.0, 0.0, 24.0,492,20.5 +5.432521395655035,5,a-sust-i3,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 2.0, 2.0, 0.0, 2.0, 1.0, 7.0,195,27.857142857142858 +-0.3475971033574721,1,a-sust-i3,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 1.0, 2.0, 0.0, 1.0, 2.0, 1.0, 7.0,634,90.57142857142857 +3.5577697513181383,3.56,a-sust-i3,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 3.1, 0.0, 1.0, 0.0, 3.0, 4.0, 0.0, 11.1,535,48.1981981981982 +5.493087557603686,5,a-sust-i3,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 3.0, 0.0, 4.0, 3.0, 3.0, 2.0, 15.0,408,27.2 +0.21511341774417295,1,a-sust-i3,2023-24,Ashland - Ashland High,00140505, 0.0, 3.3, 0.0, 1.0, 0.0, 3.0, 3.0, 10.3,870,84.46601941747572 +-0.572691117984976,1,a-sust-i3,2023-24,Ashland - Ashland Middle,00140405, 0.0, 2.3, 1.0, 1.0, 3.0, 0.0, 0.0, 7.3,679,93.01369863013699 +4.92626728110599,4.93,a-sust-i3,2023-24,Ashland - David Mindess,00140015, 0.0, 3.0, 1.0, 3.0, 8.0, 4.0, 1.0, 20.0,667,33.35 +4.871479774705581,4.87,a-sust-i3,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 3.0, 0.0, 6.0, 4.0, 5.0, 0.0, 18.0,611,33.94444444444444 +6.999341672152733,5,a-sust-i3,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 2.0, 0.0, 5.0, 0.0, 0.0, 7.0,76,10.857142857142858 +1.4907834101382487,1.49,a-sust-i3,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 3.0, 1.0, 4.0, 2.0, 5.0, 1.0, 0.0, 16.0,1130,70.625 +4.904310111141231,4.9,a-sust-i3,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 1.0, 1.0, 3.0, 5.0, 7.0, 0.0, 17.0,571,33.588235294117645 +2.549045424621461,2.55,a-sust-i3,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 1.0, 7.0,414,59.142857142857146 +3.9359227561992536,3.94,a-sust-i3,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.0, 0.0, 2.0, 0.5, 1.0, 3.0, 3.0, 10.5,463,44.095238095238095 +1.1797235023041472,1.18,a-sust-i3,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,148,74.0 +5.366987850858819,5,a-sust-i3,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 4.0, 13.0, 8.0, 7.0, 7.0, 4.0, 1.0, 44.0,1257,28.568181818181817 +5.826628471789762,5,a-sust-i3,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 2.0, 3.0, 3.0, 2.0, 2.8, 2.0, 14.8,349,23.58108108108108 +1.7327188940092164,1.73,a-sust-i3,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,68,68.0 +2.2767950052029136,2.28,a-sust-i3,2023-24,Attleboro - Attleboro High,00160505, 1.0, 4.0, 6.0, 6.0, 7.0, 6.0, 1.0, 31.0,1925,62.096774193548384 +-Infinity,1,a-sust-i3,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +4.946070494457591,4.95,a-sust-i3,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 2.0, 2.0, 4.0, 2.0, 2.0, 5.5, 1.0, 18.5,613,33.13513513513514 +6.629638612660684,5,a-sust-i3,2023-24,Attleboro - Early Learning Center,00160008, 1.0, 2.7, 0.7, 2.7, 5.4, 2.7, 0.0, 15.2,226,14.868421052631579 +5.248189598420013,5,a-sust-i3,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 2.0, 2.0, 3.0, 3.0, 3.0, 1.0, 14.0,418,29.857142857142858 +4.1709258483452025,4.17,a-sust-i3,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 2.0, 4.0, 2.0, 1.0, 2.0, 0.0, 11.0,457,41.54545454545455 +5.920359210681791,5,a-sust-i3,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 2.0, 0.0, 3.0, 6.0, 5.5, 3.0, 0.0, 19.5,440,22.564102564102566 +2.4021343681785106,2.4,a-sust-i3,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 2.0, 3.5, 4.0, 0.0, 9.5,577,60.73684210526316 +5.5444371296905866,5,a-sust-i3,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 5.0, 2.0, 0.0, 4.0, 2.0, 1.0, 0.0, 14.0,373,26.642857142857142 +1.3179723502304146,1.32,a-sust-i3,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 2.0, 1.0, 3.0, 1.0, 0.0, 1.0, 8.0,580,72.5 +3.5902162353775253,3.59,a-sust-i3,2023-24,Auburn - Auburn Middle,00170305, 1.0, 2.0, 2.0, 2.0, 3.0, 3.0, 0.0, 13.0,622,47.84615384615385 +4.04656803298569,4.05,a-sust-i3,2023-24,Auburn - Auburn Senior High,00170505, 3.0, 3.0, 2.0, 3.0, 2.0, 4.0, 2.0, 19.0,815,42.89473684210526 +6.684075780849974,5,a-sust-i3,2023-24,Auburn - Bryn Mawr,00170010, 2.0, 0.0, 4.0, 4.0, 2.0, 5.0, 1.0, 18.0,257,14.277777777777779 +6.5491303701501415,5,a-sust-i3,2023-24,Auburn - Pakachoag School,00170025, 3.0, 0.0, 3.0, 1.0, 3.0, 5.0, 0.5, 15.5,244,15.741935483870968 +5.045424621461488,5,a-sust-i3,2023-24,Auburn - Swanson Road Intermediate School,00170030, 5.0, 4.0, 1.0, 1.0, 5.0, 1.0, 0.5, 17.5,561,32.05714285714286 +-1.4009216589861755,1,a-sust-i3,2023-24,Avon - Avon Middle High School,00180510, 1.0, 0.7, 2.3, 0.0, 0.0, 0.0, 0.0, 4.0,408,102.0 +5.511520737327189,5,a-sust-i3,2023-24,Avon - Ralph D Butler,00180010, 0.0, 3.0, 3.0, 2.0, 1.0, 2.0, 1.0, 12.0,324,27.0 +0.9680832906639362,1,a-sust-i3,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.0, 0.0, 2.4, 1.0, 0.0, 1.0, 0.0, 5.4,412,76.29629629629629 +5.313009571074087,5,a-sust-i3,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 1.0, 0.0, 2.0, 2.0, 4.0, 4.0, 13.0,379,29.153846153846153 +6.632872503840246,5,a-sust-i3,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 4.0, 4.0, 3.0, 1.0, 4.0, 6.0, 2.0, 24.0,356,14.833333333333334 +5.695852534562212,5,a-sust-i3,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 1.0, 4.0, 1.0, 5.0, 4.2, 3.0, 3.4, 21.6,540,25.0 +5.002182876546204,5,a-sust-i3,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.5, 2.0, 3.0, 3.0, 1.0, 9.5,309,32.526315789473685 +3.7962774552636303,3.8,a-sust-i3,2023-24,Barnstable - Barnstable High,00200505, 2.0, 3.0, 6.0, 2.0, 6.0, 9.5, 10.0, 38.5,1756,45.61038961038961 +5.055299539170506,5,a-sust-i3,2023-24,Barnstable - Barnstable Intermediate School,00200315, 3.0, 5.0, 3.0, 2.0, 0.0, 5.0, 2.0, 20.0,639,31.95 +5.708833647043551,5,a-sust-i3,2023-24,Barnstable - Barnstable United Elementary School,00200050, 2.0, 6.0, 2.0, 5.0, 9.5, 3.0, 0.9, 28.4,706,24.859154929577468 +6.771121351766514,5,a-sust-i3,2023-24,Barnstable - Centerville Elementary,00200010, 5.0, 3.0, 2.0, 2.0, 3.0, 4.0, 0.5, 19.5,260,13.333333333333334 +7.394790451138229,5,a-sust-i3,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 4.0, 5.0, 4.0, 3.0, 7.3, 0.0, 23.3,153,6.5665236051502145 +6.1237656352863725,5,a-sust-i3,2023-24,Barnstable - Hyannis West Elementary,00200025, 2.0, 2.0, 4.8, 1.0, 1.0, 5.0, 1.0, 16.8,342,20.357142857142858 +6.119518358852385,5,a-sust-i3,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 2.0, 1.5, 2.0, 4.5, 2.4, 0.0, 12.4,253,20.403225806451612 +6.188463372000636,5,a-sust-i3,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 3.0, 7.3, 5.0, 3.0, 2.0, 0.0, 20.3,399,19.655172413793103 +-Infinity,1,a-sust-i3,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +-0.4910285322090402,1,a-sust-i3,2023-24,Bedford - Bedford High,00230505, 2.4, 2.0, 0.0, 1.0, 0.0, 2.0, 2.0, 9.4,866,92.12765957446808 +4.23963133640553,4.24,a-sust-i3,2023-24,Bedford - John Glenn Middle,00230305, 1.0, 3.0, 2.0, 1.0, 3.0, 3.0, 2.0, 15.0,612,40.8 +6.914443226445014,5,a-sust-i3,2023-24,Bedford - Lt Eleazer Davis,00230010, 2.8, 10.1, 5.0, 13.7, 6.1, 5.6, 0.0, 43.3,510,11.778290993071595 +5.650592495062541,5,a-sust-i3,2023-24,Bedford - Lt Job Lane School,00230012, 5.8, 5.8, 1.0, 5.0, 1.8, 3.0, 0.0, 22.4,571,25.49107142857143 +4.532258064516129,4.53,a-sust-i3,2023-24,Belchertown - Belchertown High,00240505, 0.0, 1.0, 1.0, 1.0, 5.0, 4.0, 4.0, 16.0,602,37.625 +4.244239631336406,4.24,a-sust-i3,2023-24,Belchertown - Chestnut Hill Community School,00240006, 1.0, 1.0, 0.0, 3.0, 2.0, 3.0, 2.0, 12.0,489,40.75 +6.911290322580645,5,a-sust-i3,2023-24,Belchertown - Cold Spring,00240005, 0.0, 0.0, 2.0, 5.0, 2.0, 4.5, 2.5, 16.0,189,11.8125 +1.861751152073733,1.86,a-sust-i3,2023-24,Belchertown - Jabish Middle School,00240025, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 5.0,333,66.6 +4.078759949727692,4.08,a-sust-i3,2023-24,Belchertown - Swift River Elementary,00240018, 1.0, 1.0, 1.0, 2.0, 3.0, 2.0, 1.0, 11.0,468,42.54545454545455 +6.5648452929558925,5,a-sust-i3,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 1.0, 0.0, 0.0, 2.0, 3.0, 1.0, 0.0, 7.0,109,15.571428571428571 +3.206093189964158,3.21,a-sust-i3,2023-24,Bellingham - Bellingham High School,00250505, 2.0, 3.0, 2.0, 2.0, 1.0, 1.0, 3.4, 14.4,749,52.013888888888886 +4.595622119815668,4.6,a-sust-i3,2023-24,Bellingham - Bellingham Memorial School,00250315, 2.0, 2.0, 2.0, 4.0, 3.0, 3.0, 0.0, 16.0,591,36.9375 +5.858915278270118,5,a-sust-i3,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 2.0, 3.0, 2.8, 0.0, 3.8, 1.0, 0.5, 13.0,302,23.23076923076923 +5.6036866359447,5,a-sust-i3,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,26,26.0 +6.466301843317972,5,a-sust-i3,2023-24,Bellingham - Stall Brook,00250025, 1.0, 0.0, 0.8, 7.0, 2.5, 1.5, 0.0, 12.8,213,16.640625 +-4.8330041694096995,1,a-sust-i3,2023-24,Belmont - Belmont High,00260505, 0.0, 1.0, 2.6, 1.9, 0.0, 2.0, 3.0, 10.5,1462,139.23809523809524 +2.841807690818263,2.84,a-sust-i3,2023-24,Belmont - Belmont Middle School,00260315, 1.0, 2.9, 3.0, 1.0, 3.0, 0.0, 1.0, 11.9,666,55.96638655462185 +5.594694840957627,5,a-sust-i3,2023-24,Belmont - Daniel Butler,00260015, 1.8, 0.9, 0.9, 3.6, 0.9, 3.3, 0.9, 12.3,321,26.097560975609756 +5.5674246430460075,5,a-sust-i3,2023-24,Belmont - Mary Lee Burbank,00260010, 0.9, 2.7, 0.0, 0.9, 4.5, 2.3, 0.9, 12.2,322,26.393442622950822 +6.163717592429732,5,a-sust-i3,2023-24,Belmont - Roger E Wellington,00260035, 2.6, 5.2, 0.9, 7.7, 4.3, 1.7, 3.8, 26.2,522,19.923664122137406 +5.103357472021067,5,a-sust-i3,2023-24,Belmont - Winn Brook,00260005, 0.9, 2.7, 0.8, 3.6, 1.8, 2.6, 0.9, 13.3,418,31.428571428571427 +4.065012831479898,4.07,a-sust-i3,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 1.0, 4.1, 1.9, 3.0, 3.0, 2.9, 0.8, 16.7,713,42.69461077844311 +5.546969159872385,5,a-sust-i3,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 4.0, 3.0, 0.0, 2.0, 1.0, 3.0, 0.0, 13.0,346,26.615384615384617 +4.027023399400474,4.03,a-sust-i3,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 1.0, 2.0, 7.6, 6.0, 4.0, 0.0, 20.6,888,43.10679611650485 +3.6589861751152073,3.66,a-sust-i3,2023-24,Berkley - Berkley Community School,00270010, 0.0, 0.0, 1.0, 2.0, 5.0, 1.0, 1.0, 10.0,471,47.1 +4.635944700460829,4.64,a-sust-i3,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 2.0, 0.0, 1.0, 3.0, 2.0, 2.0, 10.0,365,36.5 +2.3932411674347156,2.39,a-sust-i3,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 1.0, 1.0, 2.0, 1.0, 1.0, 0.0, 6.0,365,60.833333333333336 +5.030941408821593,5,a-sust-i3,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 2.0, 0.0, 4.0, 2.0, 1.0, 2.0, 3.0, 14.0,451,32.214285714285715 +6.599078341013825,5,a-sust-i3,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.0, 2.0, 2.0, 5.0, 6.0, 5.0, 4.0, 25.0,380,15.2 +6.1133098400650585,5,a-sust-i3,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 1.0, 3.0, 1.0, 3.0, 3.0, 5.0, 1.0, 17.0,348,20.470588235294116 +6.139924591537494,5,a-sust-i3,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 1.0, 3.0, 3.0, 4.0, 0.0, 0.0, 11.0,222,20.181818181818183 +6.2304147465437785,5,a-sust-i3,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 3.5, 3.0, 1.0, 3.0, 4.0, 3.0, 0.0, 17.5,336,19.2 +4.160909185405911,4.16,a-sust-i3,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 2.3, 0.0, 1.0, 0.0, 5.0, 4.0, 1.0, 13.3,554,41.65413533834586 +4.749057394218684,4.75,a-sust-i3,2023-24,Beverly - Ayers/Ryal Side School,00300055, 3.0, 4.0, 2.0, 0.0, 0.0, 2.0, 0.0, 11.0,388,35.27272727272727 +1.1959880726484136,1.2,a-sust-i3,2023-24,Beverly - Beverly High,00300505, 2.0, 2.0, 6.0, 2.0, 2.0, 1.0, 2.0, 17.0,1255,73.82352941176471 +3.6904497060225645,3.69,a-sust-i3,2023-24,Beverly - Beverly Middle School,00300305, 8.0, 1.0, 6.0, 3.0, 1.0, 4.0, 6.0, 29.0,1356,46.758620689655174 +5.427369264676417,5,a-sust-i3,2023-24,Beverly - Centerville Elementary,00300010, 2.0, 1.0, 1.0, 3.0, 2.0, 1.5, 1.0, 11.5,321,27.91304347826087 +6.536188669015993,5,a-sust-i3,2023-24,Beverly - Cove Elementary,00300015, 2.0, 5.0, 6.0, 0.0, 1.0, 8.5, 3.0, 25.5,405,15.882352941176471 +3.786701777485187,3.79,a-sust-i3,2023-24,Beverly - Hannah Elementary,00300033, 1.0, 0.0, 1.0, 2.0, 0.0, 2.0, 1.0, 7.0,320,45.714285714285715 +7.528453541956917,5,a-sust-i3,2023-24,Beverly - McKeown School,00300002, 3.0, 1.0, 2.0, 3.0, 4.0, 7.5, 1.0, 21.5,110,5.116279069767442 +6.512485264173186,5,a-sust-i3,2023-24,Beverly - North Beverly Elementary,00300040, 0.0, 4.0, 4.0, 3.0, 4.0, 4.5, 2.0, 21.5,347,16.13953488372093 +5.135936836476306,5,a-sust-i3,2023-24,Billerica - Billerica Memorial High School,00310505, 6.6, 9.0, 5.0, 15.0, 7.5, 12.5, 3.0, 58.6,1821,31.07508532423208 +6.0513495720869,5,a-sust-i3,2023-24,Billerica - Frederick J Dutile,00310007, 1.0, 1.0, 4.0, 5.0, 1.0, 1.0, 1.0, 14.0,296,21.142857142857142 +5.291740517546969,5,a-sust-i3,2023-24,Billerica - Hajjar Elementary,00310026, 0.0, 2.0, 1.0, 5.0, 1.0, 3.0, 1.0, 13.0,382,29.384615384615383 +6.16785365172462,5,a-sust-i3,2023-24,Billerica - John F Kennedy,00310012, 2.0, 0.0, 1.0, 4.0, 7.5, 2.0, 0.0, 16.5,328,19.87878787878788 +4.136712749615976,4.14,a-sust-i3,2023-24,Billerica - Locke Middle,00310310, 0.0, 1.0, 3.0, 3.0, 3.0, 1.0, 1.0, 12.0,503,41.916666666666664 +5.557195872925248,5,a-sust-i3,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 3.0, 3.0, 2.0, 6.0, 7.6, 1.0, 22.6,599,26.50442477876106 +6.58902387934646,5,a-sust-i3,2023-24,Billerica - Parker,00310015, 2.0, 5.0, 4.0, 5.0, 5.5, 5.0, 1.0, 27.5,421,15.309090909090909 +5.012740580103008,5,a-sust-i3,2023-24,Billerica - Thomas Ditson,00310005, 1.0, 1.0, 1.0, 7.0, 2.0, 4.0, 1.0, 17.0,551,32.411764705882355 +-0.22909809084924376,1,a-sust-i3,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 1.0, 0.0, 1.0, 3.0, 5.0, 3.0, 1.0, 14.0,1250,89.28571428571429 +5.870341371750705,5,a-sust-i3,2023-24,Blackstone-Millville - A F Maloney,06220015, 1.0, 2.0, 0.0, 2.3, 2.0, 3.0, 0.0, 10.3,238,23.106796116504853 +2.9703752468729427,2.97,a-sust-i3,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 1.0, 1.0, 0.0, 1.0, 3.0, 1.0, 0.0, 7.0,382,54.57142857142857 +3.167873601053324,3.17,a-sust-i3,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 3.0, 0.0, 1.0, 1.0, 2.0, 0.0, 7.0,367,52.42857142857143 +2.700460829493087,2.7,a-sust-i3,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,115,57.5 +6.311908804268737,5,a-sust-i3,2023-24,Blackstone-Millville - Millville Elementary,06220010, 5.0, 2.0, 1.0, 3.0, 4.0, 3.0, 1.0, 19.0,348,18.31578947368421 +-6.340388971334841,1,a-sust-i3,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.5, 2.0, 1.0, 1.0, 0.4, 1.0, 0.0, 5.9,918,155.59322033898303 +6.84331797235023,5,a-sust-i3,2023-24,Boston - Adams Elementary School,00350302, 2.0, 5.0, 4.0, 3.0, 5.0, 0.0, 1.0, 20.0,251,12.55 +3.0230414746543777,3.02,a-sust-i3,2023-24,Boston - Alighieri Dante Montessori School,00350066, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,108,54.0 +2.4700460829493087,2.47,a-sust-i3,2023-24,Boston - Another Course To College,00350541, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0,240,60.0 +7.3470165116397705,5,a-sust-i3,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 1.0, 1.6, 1.0, 5.0, 10.5, 6.0, 2.0, 27.1,192,7.084870848708487 +4.785714285714286,4.79,a-sust-i3,2023-24,Boston - Bates Elementary School,00350278, 0.0, 0.0, 1.0, 3.0, 1.0, 2.0, 1.0, 8.0,279,34.875 +5.987711213517666,5,a-sust-i3,2023-24,Boston - Beethoven Elementary School,00350021, 0.0, 2.0, 4.0, 2.0, 1.0, 1.0, 2.0, 12.0,262,21.833333333333332 +6.474404926017829,5,a-sust-i3,2023-24,Boston - Blackstone Elementary School,00350390, 1.0, 6.0, 7.0, 7.1, 4.0, 8.0, 2.0, 35.1,581,16.552706552706553 +-9.05069124423963,1,a-sust-i3,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,185,185.0 +0.7342549923195086,1,a-sust-i3,2023-24,Boston - Boston Arts Academy,00350546, 0.0, 3.0, 1.0, 2.0, 0.0, 0.0, 0.0, 6.0,473,78.83333333333333 +-12.09216589861751,1,a-sust-i3,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,218,218.0 +5.814900153609831,5,a-sust-i3,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, 10.0, 6.0, 5.0, 1.0, 1.0, 1.0, 24.0,569,23.708333333333332 +2.400921658986175,2.4,a-sust-i3,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 1.0, 3.0, 0.0, 3.0, 1.0, 0.0, 0.0, 8.0,486,60.75 +-70.0184331797235,1,a-sust-i3,2023-24,Boston - Boston Latin Academy,00350545, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1693,846.5 +-213.29032258064515,1,a-sust-i3,2023-24,Boston - Boston Latin School,00350560, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,2401,2401.0 +5.720988688730624,5,a-sust-i3,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 1.0, 1.0, 3.0, 2.0, 1.0, 3.0, 11.0,272,24.727272727272727 +5.695852534562212,5,a-sust-i3,2023-24,Boston - Bradley Elementary School,00350215, 2.0, 2.0, 1.0, 3.0, 1.0, 2.0, 1.0, 12.0,300,25.0 +2.9696369352685297,2.97,a-sust-i3,2023-24,Boston - Brighton High School,00350505, 1.0, 2.8, 3.0, 1.0, 2.9, 0.0, 0.0, 10.7,584,54.57943925233645 +6.381976446492575,5,a-sust-i3,2023-24,Boston - Burke High School,00350525, 2.0, 4.0, 1.0, 5.0, 5.0, 1.0, 4.5, 22.5,395,17.555555555555557 +7.78021978021978,5,a-sust-i3,2023-24,Boston - Carter School,00350036, 0.0, 5.0, 1.0, 2.0, 3.0, 2.0, 0.0, 13.0,31,2.3846153846153846 +6.525345622119816,5,a-sust-i3,2023-24,Boston - Channing Elementary School,00350360, 2.0, 2.0, 2.0, 2.0, 1.0, 2.0, 1.0, 12.0,192,16.0 +4.838308956121018,4.84,a-sust-i3,2023-24,Boston - Charlestown High School,00350515, 5.0, 4.0, 6.0, 2.0, 2.0, 3.0, 1.0, 23.0,789,34.30434782608695 +6.8325652841781865,5,a-sust-i3,2023-24,Boston - Chittick Elementary School,00350154, 0.0, 4.0, 2.0, 3.0, 3.0, 4.0, 2.0, 18.0,228,12.666666666666666 +6.8018433179723505,5,a-sust-i3,2023-24,Boston - Clap Elementary School,00350298, 2.0, 3.0, 1.0, 2.0, 1.0, 1.0, 0.0, 10.0,130,13.0 +4.221198156682028,4.22,a-sust-i3,2023-24,Boston - Community Academy,00350518, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,41,41.0 +5.358943577430972,5,a-sust-i3,2023-24,Boston - Community Academy of Science and Health,00350581, 1.0, 5.0, 2.0, 0.0, 2.9, 1.0, 0.0, 11.9,341,28.655462184873947 +6.427758200054215,5,a-sust-i3,2023-24,Boston - Condon K-8 School,00350146, 4.0, 6.0, 6.0, 3.0, 4.0, 8.0, 3.0, 34.0,580,17.058823529411764 +6.886635944700461,5,a-sust-i3,2023-24,Boston - Conley Elementary School,00350122, 0.0, 1.0, 2.0, 3.5, 4.0, 1.0, 1.0, 12.5,151,12.08 +5.788018433179723,5,a-sust-i3,2023-24,Boston - Curley K-8 School,00350020, 9.0, 7.0, 6.0, 4.0, 4.0, 5.0, 3.0, 38.0,912,24.0 +1.465674110835401,1.47,a-sust-i3,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 1.0, 3.8, 2.0, 1.0, 0.0, 0.0, 0.0, 7.8,553,70.8974358974359 +6.030560271646859,5,a-sust-i3,2023-24,Boston - Dever Elementary School,00350268, 4.0, 5.0, 2.0, 7.0, 1.0, 0.0, 0.0, 19.0,406,21.36842105263158 +7.049235993208829,5,a-sust-i3,2023-24,Boston - East Boston Early Education Center,00350009, 3.0, 2.0, 1.0, 8.0, 2.0, 2.0, 1.0, 19.0,196,10.31578947368421 +-21.7926267281106,1,a-sust-i3,2023-24,Boston - East Boston High School,00350530, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 4.0,1293,323.25 +6.39328702111562,5,a-sust-i3,2023-24,Boston - Edison K-8 School,00350375, 6.0, 11.0, 7.0, 2.5, 6.0, 1.0, 0.0, 33.5,584,17.432835820895523 +4.158137278680573,4.16,a-sust-i3,2023-24,Boston - Eliot K-8 Innovation School,00350096, 3.0, 7.0, 5.0, 2.0, 1.0, 1.0, 0.0, 19.0,792,41.68421052631579 +6.04147465437788,5,a-sust-i3,2023-24,Boston - Ellis Elementary School,00350072, 2.0, 4.0, 4.0, 2.0, 3.0, 1.0, 0.0, 16.0,340,21.25 +7.225806451612904,5,a-sust-i3,2023-24,Boston - Ellison-Parks Early Education School,00350008, 1.0, 4.0, 1.0, 4.0, 4.0, 4.0, 4.5, 22.5,189,8.4 +4.302521008403361,4.3,a-sust-i3,2023-24,Boston - English High School,00350535, 0.0, 1.0, 3.0, 4.0, 3.0, 4.0, 2.0, 17.0,682,40.11764705882353 +3.7296466973886324,3.73,a-sust-i3,2023-24,Boston - Everett Elementary School,00350088, 0.0, 0.0, 2.0, 1.0, 1.0, 1.0, 1.0, 6.0,278,46.333333333333336 +4.433179723502303,4.43,a-sust-i3,2023-24,Boston - Excel High School,00350522, 0.0, 5.0, 2.0, 1.0, 1.0, 1.0, 0.0, 10.0,387,38.7 +4.534562211981567,4.53,a-sust-i3,2023-24,Boston - Fenway High School,00350540, 0.0, 4.0, 3.0, 0.0, 2.0, 1.0, 0.0, 10.0,376,37.6 +6.227161832474925,5,a-sust-i3,2023-24,Boston - Frederick Pilot Middle School,00350383, 3.0, 5.0, 1.0, 3.0, 1.0, 4.0, 0.0, 17.0,327,19.235294117647058 +5.720430107526882,5,a-sust-i3,2023-24,Boston - Gardner Pilot Academy,00350326, 4.0, 3.0, 2.0, 1.0, 2.0, 3.0, 0.0, 15.0,371,24.733333333333334 +-Infinity,1,a-sust-i3,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,76,Infinity +6.496020108923335,5,a-sust-i3,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 3.0, 5.0, 4.0, 8.0, 0.0, 2.0, 0.0, 22.0,359,16.318181818181817 +-1.078341013824885,1,a-sust-i3,2023-24,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,197,98.5 +5.723502304147465,5,a-sust-i3,2023-24,Boston - Guild Elementary School,00350062, 1.0, 2.0, 1.0, 2.0, 2.0, 2.0, 0.0, 10.0,247,24.7 +-7.299539170506912,1,a-sust-i3,2023-24,Boston - Hale Elementary School,00350243, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,166,166.0 +5.491770901909151,5,a-sust-i3,2023-24,Boston - Haley Pilot School,00350077, 0.0, 5.0, 2.0, 1.0, 3.0, 3.0, 0.0, 14.0,381,27.214285714285715 +5.910906298003072,5,a-sust-i3,2023-24,Boston - Harvard-Kent Elementary School,00350200, 2.0, 6.0, 4.0, 2.0, 0.0, 1.0, 0.0, 15.0,340,22.666666666666668 +7.151216375522452,5,a-sust-i3,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 1.0, 6.5, 6.0, 3.0, 3.0, 2.0, 21.5,198,9.209302325581396 +6.392626728110599,5,a-sust-i3,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 1.0, 2.5, 2.0, 4.0, 1.0, 0.0, 2.0, 12.5,218,17.44 +3.0921658986175116,3.09,a-sust-i3,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 1.0, 1.0, 2.0, 4.0, 2.0, 2.0, 0.0, 12.0,639,53.25 +5.484120064765226,5,a-sust-i3,2023-24,Boston - Hennigan K-8 School,00350153, 2.0, 4.5, 3.0, 4.0, 1.0, 3.0, 1.0, 18.5,505,27.2972972972973 +6.025709434877516,5,a-sust-i3,2023-24,Boston - Hernandez K-8 School,00350691, 3.0, 3.0, 2.0, 5.0, 2.0, 4.0, 0.0, 19.0,407,21.42105263157895 +7.078341013824884,5,a-sust-i3,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 4.0, 3.0, 2.7, 4.0, 2.0, 0.0, 0.0, 15.7,157,10.0 +7.30773169482847,5,a-sust-i3,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 3.0, 4.0, 4.0, 2.5, 3.0, 5.0, 1.0, 22.5,169,7.511111111111111 +6.396871945259043,5,a-sust-i3,2023-24,Boston - Holmes Elementary School,00350138, 5.0, 3.0, 5.0, 1.0, 1.0, 0.5, 1.0, 16.5,287,17.393939393939394 +7.730875576036866,5,a-sust-i3,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 2.0, 4.0, 4.0, 4.0, 5.0, 5.0, 1.0, 25.0,73,2.92 +5.319508448540707,5,a-sust-i3,2023-24,Boston - Hurley K-8 School,00350182, 0.0, 3.0, 4.0, 1.0, 2.0, 1.0, 1.0, 12.0,349,29.083333333333332 +2.7860434496379196,2.79,a-sust-i3,2023-24,Boston - Kennedy John F Elementary School,00350166, 2.0, 0.0, 0.0, 0.0, 1.0, 2.0, 2.0, 7.0,396,56.57142857142857 +5.539170506912442,5,a-sust-i3,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 1.0, 2.0, 1.0, 2.0, 2.0, 0.0, 2.0, 10.0,267,26.7 +6.360417171962163,5,a-sust-i3,2023-24,Boston - Kenny Elementary School,00350328, 2.0, 4.0, 5.0, 3.0, 2.0, 1.0, 2.0, 19.0,338,17.789473684210527 +6.290322580645162,5,a-sust-i3,2023-24,Boston - Kilmer K-8 School,00350190, 0.0, 6.0, 5.0, 1.0, 5.0, 2.0, 1.0, 20.0,371,18.55 +6.968619705946895,5,a-sust-i3,2023-24,Boston - King Elementary School,00350376, 6.0, 5.0, 12.0, 10.0, 3.0, 2.0, 4.0, 42.0,470,11.19047619047619 +7.078341013824884,5,a-sust-i3,2023-24,Boston - Lee Academy,00350001, 1.0, 5.0, 6.0, 3.0, 4.0, 1.0, 0.0, 20.0,200,10.0 +7.16256157635468,5,a-sust-i3,2023-24,Boston - Lee K-8 School,00350183, 6.0, 18.0, 12.0, 8.0, 3.0, 8.0, 3.0, 58.0,527,9.086206896551724 +2.5929339477726576,2.59,a-sust-i3,2023-24,Boston - Lyndon K-8 School,00350262, 0.0, 1.8, 1.0, 2.0, 1.2, 1.0, 2.0, 9.0,528,58.666666666666664 +7.34715821812596,5,a-sust-i3,2023-24,Boston - Lyon High School,00350655, 1.9, 5.5, 5.0, 1.0, 0.0, 1.0, 0.0, 14.4,102,7.083333333333333 +7.115207373271889,5,a-sust-i3,2023-24,Boston - Lyon K-8 School,00350004, 1.1, 6.5, 0.0, 1.0, 0.9, 3.0, 0.0, 12.5,120,9.6 +5.49970459647879,5,a-sust-i3,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 5.0, 8.0, 13.0, 4.0, 3.0, 5.0, 1.0, 39.0,1058,27.128205128205128 +4.105990783410138,4.11,a-sust-i3,2023-24,Boston - Manning Elementary School,00350184, 1.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 4.0,169,42.25 +-20.38709677419355,1,a-sust-i3,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +6.234883396173719,5,a-sust-i3,2023-24,Boston - Mario Umana Academy,00350656, 3.0, 6.0, 2.0, 7.0, 6.0, 6.0, 3.0, 33.0,632,19.151515151515152 +6.548387096774193,5,a-sust-i3,2023-24,Boston - Mason Elementary School,00350304, 0.0, 1.0, 0.0, 1.0, 6.0, 3.0, 1.0, 12.0,189,15.75 +3.350742447516641,3.35,a-sust-i3,2023-24,Boston - Mather Elementary School,00350227, 2.0, 1.0, 2.0, 2.0, 1.0, 0.0, 1.0, 9.0,454,50.44444444444444 +6.974153476257262,5,a-sust-i3,2023-24,Boston - Mattahunt Elementary School,00350016, 5.0, 16.0, 14.0, 3.0, 6.0, 1.0, 1.0, 46.0,512,11.130434782608695 +-4.350230414746544,1,a-sust-i3,2023-24,Boston - McKay K-8 School,00350080, 0.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0,670,134.0 +7.542584058713091,5,a-sust-i3,2023-24,Boston - Melvin H. King South End Academy,00350363, 1.0, 6.0, 7.0, 8.0, 5.0, 0.0, 0.0, 27.0,134,4.962962962962963 +3.944700460829493,3.94,a-sust-i3,2023-24,Boston - Mendell Elementary School,00350100, 0.0, 2.0, 2.0, 0.0, 2.0, 1.0, 0.0, 7.0,308,44.0 +5.28110599078341,5,a-sust-i3,2023-24,Boston - Mildred Avenue K-8 School,00350378, 4.0, 3.0, 5.0, 1.0, 6.0, 0.0, 1.0, 20.0,590,29.5 +5.265745007680491,5,a-sust-i3,2023-24,Boston - Mozart Elementary School,00350237, 0.0, 1.0, 1.0, 0.0, 2.0, 2.0, 0.0, 6.0,178,29.666666666666668 +5.5135952109295125,5,a-sust-i3,2023-24,Boston - Murphy K-8 School,00350240, 4.0, 7.0, 5.0, 2.1, 5.0, 7.0, 1.0, 31.1,839,26.97749196141479 +2.351667864541496,2.35,a-sust-i3,2023-24,Boston - New Mission High School,00350542, 1.8, 3.0, 3.0, 1.0, 2.1, 0.0, 0.0, 10.9,668,61.28440366972477 +-Infinity,1,a-sust-i3,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1538,Infinity +1.6635944700460827,1.66,a-sust-i3,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 0.0, 4.0,275,68.75 +4.559139784946236,4.56,a-sust-i3,2023-24,Boston - Ohrenberger School,00350258, 0.0, 0.0, 2.0, 4.0, 3.0, 2.0, 1.0, 12.0,448,37.333333333333336 +5.900492072170585,5,a-sust-i3,2023-24,Boston - Orchard Gardens K-8 School,00350257, 4.0, 12.0, 2.0, 4.0, 3.0, 4.5, 0.0, 29.5,672,22.779661016949152 +3.8832565284178187,3.88,a-sust-i3,2023-24,Boston - Otis Elementary School,00350156, 0.0, 2.0, 0.0, 2.0, 4.0, 1.0, 0.0, 9.0,402,44.666666666666664 +6.7515710096355255,5,a-sust-i3,2023-24,Boston - Perkins Elementary School,00350231, 5.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 11.0,149,13.545454545454545 +5.6168531928900585,5,a-sust-i3,2023-24,Boston - Perry Elementary School,00350255, 1.0, 3.0, 1.0, 1.0, 0.0, 1.0, 0.0, 7.0,181,25.857142857142858 +3.944700460829493,3.94,a-sust-i3,2023-24,Boston - Philbrick Elementary School,00350172, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0,132,44.0 +6.267753751624719,5,a-sust-i3,2023-24,Boston - Quincy Elementary School,00350286, 1.0, 3.0, 6.0, 5.0, 9.0, 8.0, 7.0, 39.0,733,18.794871794871796 +-2.00658327847268,1,a-sust-i3,2023-24,Boston - Quincy Upper School,00350565, 0.0, 0.0, 3.0, 1.9, 0.0, 0.0, 0.0, 4.9,532,108.57142857142857 +5.009126231137616,5,a-sust-i3,2023-24,Boston - Roosevelt K-8 School,00350116, 0.0, 1.0, 2.0, 2.0, 2.0, 2.0, 1.2, 10.2,331,32.450980392156865 +4.013824884792626,4.01,a-sust-i3,2023-24,Boston - Russell Elementary School,00350366, 0.0, 2.0, 1.0, 1.0, 0.0, 4.0, 0.0, 8.0,346,43.25 +4.2949308755760365,4.29,a-sust-i3,2023-24,Boston - Shaw Elementary School,00350014, 0.0, 1.0, 1.0, 2.0, 1.0, 0.0, 0.0, 5.0,201,40.2 +-2.2534562211981566,1,a-sust-i3,2023-24,Boston - Snowden International High School,00350690, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 4.0,445,111.25 +4.436251920122888,4.44,a-sust-i3,2023-24,Boston - Sumner Elementary School,00350052, 1.0, 0.0, 2.0, 3.0, 3.0, 6.0, 0.0, 15.0,580,38.666666666666664 +5.126099706744867,5,a-sust-i3,2023-24,Boston - Taylor Elementary School,00350054, 1.0, 3.0, 1.0, 2.0, 0.0, 3.0, 1.0, 11.0,343,31.181818181818183 +-3.791813499593385,1,a-sust-i3,2023-24,Boston - TechBoston Academy,00350657, 2.5, 3.8, 0.0, 0.5, 0.0, 0.0, 0.0, 6.8,870,127.94117647058823 +1.0875576036866357,1.09,a-sust-i3,2023-24,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 2.0, 2.0, 0.0, 1.0, 0.0, 5.0,375,75.0 +6.15668202764977,5,a-sust-i3,2023-24,Boston - Trotter Elementary School,00350370, 4.0, 1.0, 1.0, 2.0, 3.0, 4.0, 0.0, 15.0,300,20.0 +7.1002852754004815,5,a-sust-i3,2023-24,Boston - Tynan Elementary School,00350181, 2.0, 4.0, 4.0, 5.0, 2.0, 1.0, 3.0, 21.0,205,9.761904761904763 +2.7834101382488474,2.78,a-sust-i3,2023-24,Boston - UP Academy Holland,00350167, 0.0, 3.0, 5.0, 2.0, 0.0, 0.0, 0.0, 10.0,566,56.6 +5.579432452097987,5,a-sust-i3,2023-24,Boston - Warren-Prescott K-8 School,00350346, 1.0, 6.0, 2.0, 2.0, 5.0, 1.0, 2.0, 19.0,499,26.263157894736842 +7.387367850365953,5,a-sust-i3,2023-24,Boston - West Zone Early Learning Center,00350006, 1.0, 3.0, 5.0, 4.0, 1.0, 3.0, 0.0, 17.0,113,6.647058823529412 +1.6405529953917048,1.64,a-sust-i3,2023-24,Boston - Winship Elementary School,00350374, 0.0, 2.0, 1.0, 1.0, 1.0, 0.0, 0.0, 5.0,345,69.0 +4.826859776168532,4.83,a-sust-i3,2023-24,Boston - Winthrop Elementary School,00350180, 0.0, 1.0, 2.0, 1.0, 1.0, 2.0, 0.0, 7.0,241,34.42857142857143 +5.852534562211981,5,a-sust-i3,2023-24,Boston - Young Achievers K-8 School,00350380, 3.0, 4.0, 7.0, 1.0, 3.0, 1.0, 1.0, 20.0,466,23.3 +-1.607596704370899,1,a-sust-i3,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 2.6, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 6.6,688,104.24242424242425 +3.4992319508448535,3.5,a-sust-i3,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 1.0, 3.0, 1.5, 0.5, 0.0, 0.0, 6.0,293,48.833333333333336 +5.623362501941697,5,a-sust-i3,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 5.0, 9.0, 1.0, 0.0, 2.0, 0.8, 0.0, 17.8,459,25.786516853932582 +-8.424435779274488,1,a-sust-i3,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 1.0, 2.9, 0.0, 0.0, 0.0, 0.0, 0.0, 3.9,695,178.2051282051282 +4.245241434582248,4.25,a-sust-i3,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 1.0, 4.0, 6.0, 0.0, 5.0, 5.0, 2.0, 23.0,937,40.73913043478261 +1.824884792626728,1.82,a-sust-i3,2023-24,Bourne - Bourne High School,00360505, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 5.0,335,67.0 +4.691244239631336,4.69,a-sust-i3,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 1.0, 0.0, 3.0, 0.0, 3.0, 3.0, 10.0,359,35.9 +3.33873616187298,3.34,a-sust-i3,2023-24,Bourne - Bourne Middle School,00360325, 0.0, 1.0, 2.0, 2.0, 2.0, 0.7, 1.0, 8.7,440,50.57471264367817 +6.186276582251723,5,a-sust-i3,2023-24,Bourne - Bournedale Elementary School,00360005, 0.8, 0.0, 3.0, 4.4, 4.4, 7.4, 1.8, 21.8,429,19.678899082568808 +5.669519420671494,5,a-sust-i3,2023-24,Boxford - Harry Lee Cole,00380005, 1.0, 1.0, 1.5, 5.0, 2.0, 3.5, 0.0, 14.0,354,25.285714285714285 +3.176252319109462,3.18,a-sust-i3,2023-24,Boxford - Spofford Pond,00380013, 1.0, 0.0, 0.0, 0.7, 2.0, 4.0, 0.0, 7.7,403,52.33766233766234 +5.068340033336601,5,a-sust-i3,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 2.4, 2.7, 4.3, 0.0, 9.4,299,31.80851063829787 +3.3445116873022043,3.34,a-sust-i3,2023-24,Braintree - Braintree High,00400505, 4.8, 1.0, 0.0, 4.0, 10.0, 12.4, 1.0, 33.2,1677,50.51204819277108 +6.500209467951404,5,a-sust-i3,2023-24,Braintree - Donald Ross,00400050, 2.0, 1.0, 0.0, 4.0, 3.0, 1.0, 0.0, 11.0,179,16.272727272727273 +0.917405175469692,1,a-sust-i3,2023-24,Braintree - East Middle School,00400305, 3.0, 0.0, 3.0, 2.0, 1.0, 2.0, 2.0, 13.0,999,76.84615384615384 +3.6408020924149955,3.64,a-sust-i3,2023-24,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 2.0, 1.4, 2.0, 2.0, 7.4,350,47.2972972972973 +4.8760611205432935,4.88,a-sust-i3,2023-24,Braintree - Hollis,00400005, 1.0, 0.0, 1.0, 0.0, 2.0, 2.5, 3.0, 9.5,322,33.89473684210526 +3.872570627128832,3.87,a-sust-i3,2023-24,Braintree - Liberty,00400025, 2.0, 0.0, 1.0, 0.0, 2.7, 0.0, 1.2, 6.9,309,44.78260869565217 +6.615047191897286,5,a-sust-i3,2023-24,Braintree - Mary E Flaherty School,00400020, 3.0, 0.0, 1.0, 3.0, 6.0, 4.7, 1.0, 18.7,281,15.026737967914439 +5.992100065832784,5,a-sust-i3,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 6.4, 2.0, 0.0, 8.4,183,21.785714285714285 +-0.40026333113890705,1,a-sust-i3,2023-24,Braintree - South Middle School,00400310, 1.0, 0.0, 1.0, 0.0, 1.0, 4.0, 0.0, 7.0,638,91.14285714285714 +6.4254992319508455,5,a-sust-i3,2023-24,Brewster - Eddy Elementary,00410010, 1.0, 0.0, 1.0, 3.0, 3.0, 2.0, 2.0, 12.0,205,17.083333333333332 +6.883280910930681,5,a-sust-i3,2023-24,Brewster - Stony Brook Elementary,00410005, 1.0, 3.0, 2.6, 3.0, 4.9, 4.4, 0.0, 18.9,229,12.116402116402117 +6.600754084625053,5,a-sust-i3,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 7.0, 13.0, 2.0, 0.0, 0.0, 0.0, 0.0, 22.0,334,15.181818181818182 +-0.059395801331285324,1,a-sust-i3,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 2.0, 0.0, 0.0, 2.0, 2.0, 3.0, 0.0, 9.0,787,87.44444444444444 +0.7905785970302092,1,a-sust-i3,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 1.0, 1.0, 4.0, 1.0, 2.0, 8.0, 1.0, 18.0,1408,78.22222222222223 +2.797747055811572,2.8,a-sust-i3,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 1.0, 0.0, 1.0, 1.0, 4.0, 0.0, 2.0, 9.0,508,56.44444444444444 +5.235023041474654,5,a-sust-i3,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 2.0, 0.0, 4.5, 2.0, 0.0, 2.0, 1.0, 11.5,345,30.0 +5.766749379652606,5,a-sust-i3,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 2.0, 1.5, 10.0, 13.5, 5.0, 5.0, 2.0, 39.0,945,24.23076923076923 +-0.5944700460829496,1,a-sust-i3,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.0, 1.0, 2.0, 1.0, 2.0, 1.0, 8.0,746,93.25 +7.493087557603687,5,a-sust-i3,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,11,5.5 +-1.5852534562211984,1,a-sust-i3,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0, 2.0, 8.0,832,104.0 +5.81874039938556,5,a-sust-i3,2023-24,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 1.0, 3.0, 4.0, 1.0, 3.0, 12.0,284,23.666666666666668 +-10.187403993855607,1,a-sust-i3,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 3.0,592,197.33333333333334 +0.24173131890567642,1,a-sust-i3,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 3.0, 1.8, 4.0, 3.0, 3.0, 1.0, 15.8,1330,84.17721518987341 +4.823348694316436,4.82,a-sust-i3,2023-24,Brockton - Ashfield Middle School,00440421, 3.0, 2.0, 1.0, 2.0, 3.0, 2.0, 2.0, 15.0,517,34.46666666666667 +6.990745325056175,5,a-sust-i3,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 2.0, 5.0, 3.0, 4.0, 5.2, 4.0, 1.0, 24.2,265,10.950413223140496 +2.3695585614583257,2.37,a-sust-i3,2023-24,Brockton - Brockton High,00440505, 2.0, 9.8, 11.7, 8.0, 11.0, 11.2, 5.0, 58.7,3586,61.090289608177166 +-Infinity,1,a-sust-i3,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +6.310291858678956,5,a-sust-i3,2023-24,Brockton - Brookfield,00440010, 5.0, 1.0, 2.2, 4.0, 6.0, 5.4, 1.0, 24.6,451,18.333333333333332 +6.347084632578161,5,a-sust-i3,2023-24,Brockton - Downey,00440110, 1.0, 8.0, 7.2, 5.2, 4.0, 3.0, 5.0, 33.4,599,17.934131736526947 +6.099389712292937,5,a-sust-i3,2023-24,Brockton - Dr W Arnone Community School,00440001, 6.2, 7.0, 6.2, 6.4, 7.0, 3.2, 1.0, 37.0,763,20.62162162162162 +4.937256292095001,4.94,a-sust-i3,2023-24,Brockton - East Middle School,00440405, 2.0, 4.0, 1.0, 2.0, 3.0, 1.0, 0.0, 13.0,432,33.23076923076923 +1.8294604046148313,1.83,a-sust-i3,2023-24,Brockton - Edgar B Davis,00440023, 1.0, 1.1, 1.2, 0.8, 6.0, 4.0, 0.0, 14.1,944,66.95035460992908 +4.244239631336406,4.24,a-sust-i3,2023-24,Brockton - Edison Day Academy,00440535, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 4.0,163,40.75 +-10.248847926267281,1,a-sust-i3,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,198,198.0 +4.960636015056108,4.96,a-sust-i3,2023-24,Brockton - Gilmore Elementary School,00440055, 3.2, 1.2, 3.4, 2.5, 1.5, 1.3, 0.0, 13.1,432,32.97709923664122 +5.271889400921658,5,a-sust-i3,2023-24,Brockton - Hancock,00440045, 5.0, 4.0, 0.0, 4.0, 4.5, 5.0, 0.0, 22.5,666,29.6 +7.526003949967083,5,a-sust-i3,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 1.0, 2.0, 1.0, 0.0, 1.0, 1.0, 1.0, 7.0,36,5.142857142857143 +4.616098758787715,4.62,a-sust-i3,2023-24,Brockton - John F Kennedy,00440017, 2.2, 0.0, 1.0, 3.0, 2.2, 4.3, 1.0, 13.7,503,36.715328467153284 +5.953230708893028,5,a-sust-i3,2023-24,Brockton - Louis F Angelo Elementary,00440065, 3.0, 7.2, 6.2, 7.2, 6.0, 4.0, 4.0, 37.6,835,22.20744680851064 +4.1448887567514,4.14,a-sust-i3,2023-24,Brockton - Manthala George Jr. School,00440003, 2.0, 4.0, 2.1, 2.0, 7.4, 1.1, 0.0, 18.6,778,41.82795698924731 +6.04888565499771,5,a-sust-i3,2023-24,Brockton - Mary E. Baker School,00440002, 5.0, 4.0, 5.0, 11.0, 3.2, 5.0, 1.0, 34.2,724,21.16959064327485 +-29.419354838709683,1,a-sust-i3,2023-24,Brockton - North Middle School,00440410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +4.872529549004107,4.87,a-sust-i3,2023-24,Brockton - Oscar F Raymond,00440078, 3.0, 3.0, 2.2, 3.0, 7.2, 2.5, 3.0, 23.9,811,33.93305439330544 +-Infinity,1,a-sust-i3,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +4.330863909467421,4.33,a-sust-i3,2023-24,Brockton - Plouffe Middle School,00440422, 1.0, 4.1, 3.0, 3.5, 2.2, 1.0, 1.0, 15.8,629,39.81012658227848 +4.828408782867986,4.83,a-sust-i3,2023-24,Brockton - South Middle School,00440415, 3.0, 4.2, 3.0, 1.2, 2.2, 0.0, 0.0, 13.6,468,34.411764705882355 +3.1241266537832617,3.12,a-sust-i3,2023-24,Brockton - West Middle School,00440420, 3.1, 3.0, 2.0, 0.2, 1.0, 0.0, 0.0, 9.3,492,52.90322580645161 +-4.71889400921659,1,a-sust-i3,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 4.0, 5.0, 6.0, 1.0, 0.0, 0.0, 0.0, 16.0,2208,138.0 +6.011849901250823,5,a-sust-i3,2023-24,Brookfield - Brookfield Elementary,00450005, 2.0, 1.0, 0.0, 4.0, 2.0, 3.0, 2.0, 14.0,302,21.571428571428573 +7.057859703020994,5,a-sust-i3,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 1.0, 0.8, 0.0, 0.0, 2.0, 0.7, 0.0, 4.5,46,10.222222222222221 +7.546048559048078,5,a-sust-i3,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 2.3, 2.7, 0.8, 0.9, 0.0, 0.0, 0.0, 6.7,33,4.925373134328358 +7.741935483870968,5,a-sust-i3,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 1.0, 3.0, 1.0, 3.5, 3.7, 1.8, 1.0, 15.0,42,2.8 +3.448261416003352,3.45,a-sust-i3,2023-24,Brookline - Brookline High,00460505, 4.6, 9.1, 12.6, 7.5, 2.5, 4.0, 3.7, 44.0,2173,49.38636363636363 +4.515809381742629,4.52,a-sust-i3,2023-24,Brookline - Edith C Baker,00460005, 4.9, 3.6, 3.0, 2.0, 1.8, 0.0, 2.0, 17.3,654,37.80346820809248 +6.292927269084352,5,a-sust-i3,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 16.2, 12.3, 7.0, 2.0, 2.5, 3.2, 2.9, 46.0,852,18.52173913043478 +6.222222222222222,5,a-sust-i3,2023-24,Brookline - Heath,00460025, 2.9, 5.7, 3.5, 2.9, 4.8, 1.8, 0.8, 22.5,434,19.288888888888888 +6.766866231793405,5,a-sust-i3,2023-24,Brookline - John D Runkle,00460045, 6.4, 11.2, 2.9, 5.3, 3.3, 5.4, 1.7, 36.1,483,13.37950138504155 +5.884998968292179,5,a-sust-i3,2023-24,Brookline - Lawrence,00460030, 8.7, 7.8, 4.7, 1.9, 1.9, 0.9, 0.8, 26.8,615,22.94776119402985 +5.673039193320254,5,a-sust-i3,2023-24,Brookline - Michael Driscoll,00460020, 2.9, 3.3, 4.5, 0.8, 3.9, 1.5, 3.3, 20.2,510,25.247524752475247 +4.759641038079069,4.76,a-sust-i3,2023-24,Brookline - Pierce,00460040, 3.8, 5.8, 2.0, 0.0, 3.0, 3.6, 0.8, 19.0,668,35.1578947368421 +7.195377075561408,5,a-sust-i3,2023-24,Brookline - The Lynch Center,00460060, 1.0, 0.8, 0.0, 2.0, 1.2, 1.3, 0.0, 6.3,55,8.730158730158731 +6.014243820695434,5,a-sust-i3,2023-24,Brookline - William H Lincoln,00460035, 8.7, 1.9, 3.9, 1.0, 2.8, 2.8, 0.8, 22.0,474,21.545454545454547 +2.854070660522273,2.85,a-sust-i3,2023-24,Burlington - Burlington High,00480505, 1.0, 3.0, 6.0, 1.4, 2.6, 3.0, 1.0, 18.0,1005,55.833333333333336 +1.0107526881720432,1.01,a-sust-i3,2023-24,Burlington - Fox Hill,00480007, 1.0, 1.0, 1.0, 1.0, 2.0, 0.0, 0.0, 6.0,455,75.83333333333333 +4.754157483470247,4.75,a-sust-i3,2023-24,Burlington - Francis Wyman Elementary,00480035, 2.0, 1.0, 0.0, 2.0, 6.8, 2.0, 0.0, 13.8,486,35.21739130434782 +3.0345622119815667,3.03,a-sust-i3,2023-24,Burlington - Marshall Simonds Middle,00480303, 6.0, 2.0, 3.0, 2.0, 1.0, 2.0, 0.0, 16.0,862,53.875 +3.5875576036866357,3.59,a-sust-i3,2023-24,Burlington - Memorial,00480015, 2.0, 3.0, 1.0, 0.0, 0.0, 1.0, 1.0, 8.0,383,47.875 +6.661590863554398,5,a-sust-i3,2023-24,Burlington - Pine Glen Elementary,00480020, 6.0, 5.2, 5.0, 1.8, 2.0, 3.0, 0.0, 23.0,334,14.521739130434783 +3.7194060419866872,3.72,a-sust-i3,2023-24,Cambridge - Amigos School,00490006, 0.0, 1.0, 1.0, 1.0, 2.0, 3.0, 1.0, 9.0,418,46.44444444444444 +2.472838988968021,2.47,a-sust-i3,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 3.0, 8.0, 4.0, 8.0, 3.0, 6.0, 1.0, 33.0,1979,59.96969696969697 +4.497695852534562,4.5,a-sust-i3,2023-24,Cambridge - Cambridge Street Upper School,00490305, 1.0, 3.0, 1.0, 1.0, 2.0, 0.0, 0.0, 8.0,304,38.0 +6.454865817294659,5,a-sust-i3,2023-24,Cambridge - Cambridgeport,00490007, 1.0, 3.0, 3.0, 5.0, 1.0, 4.0, 0.0, 17.0,285,16.764705882352942 +7.143198498037208,5,a-sust-i3,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 5.0, 10.0, 2.0, 3.0, 3.0, 2.0, 2.0, 27.0,251,9.296296296296296 +5.85307671455679,5,a-sust-i3,2023-24,Cambridge - Graham and Parks,00490080, 1.0, 6.0, 0.0, 1.0, 3.0, 3.0, 3.0, 17.0,396,23.294117647058822 +5.889400921658987,5,a-sust-i3,2023-24,Cambridge - Haggerty,00490020, 2.0, 6.0, 0.0, 0.0, 1.0, 0.0, 1.0, 10.0,229,22.9 +7.165386584741423,5,a-sust-i3,2023-24,Cambridge - John M Tobin,00490065, 2.0, 7.0, 7.0, 7.0, 7.0, 5.0, 1.0, 36.0,326,9.055555555555555 +6.986175115207374,5,a-sust-i3,2023-24,Cambridge - Kennedy-Longfellow,00490040, 2.0, 4.0, 2.0, 3.0, 6.0, 2.0, 1.0, 20.0,220,11.0 +6.301514154048716,5,a-sust-i3,2023-24,Cambridge - King Open,00490035, 3.0, 6.0, 4.0, 2.0, 3.0, 3.0, 0.0, 21.0,387,18.428571428571427 +5.972350230414746,5,a-sust-i3,2023-24,Cambridge - Maria L. Baldwin,00490005, 2.0, 5.0, 1.0, 2.0, 4.0, 1.0, 1.0, 16.0,352,22.0 +5.251780477586929,5,a-sust-i3,2023-24,Cambridge - Martin Luther King Jr.,00490030, 3.0, 0.0, 3.0, 3.0, 1.0, 1.0, 0.0, 11.0,328,29.818181818181817 +6.73481357352325,5,a-sust-i3,2023-24,Cambridge - Morse,00490045, 4.0, 6.0, 3.0, 3.0, 0.0, 3.0, 3.0, 22.0,302,13.727272727272727 +6.52073732718894,5,a-sust-i3,2023-24,Cambridge - Peabody,00490050, 3.0, 3.0, 3.0, 4.0, 2.0, 4.0, 1.0, 20.0,321,16.05 +-0.29493087557603714,1,a-sust-i3,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,270,90.0 +2.672811059907834,2.67,a-sust-i3,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 1.0, 1.0, 1.0, 0.0, 0.0, 2.0, 0.0, 5.0,289,57.8 +4.0368663594470044,4.04,a-sust-i3,2023-24,Cambridge - Vassal Lane Upper School,00490320, 1.0, 3.0, 0.0, 1.0, 1.0, 0.0, 0.0, 6.0,258,43.0 +1.8709677419354838,1.87,a-sust-i3,2023-24,Canton - Canton High,00500505, 4.0, 5.0, 0.0, 2.0, 2.0, 1.0, 0.0, 14.0,931,66.5 +3.1152073732718892,3.12,a-sust-i3,2023-24,Canton - Dean S Luce,00500020, 1.0, 0.0, 2.0, 1.0, 1.0, 3.0, 1.0, 9.0,477,53.0 +5.522363784223367,5,a-sust-i3,2023-24,Canton - John F Kennedy,00500017, 3.0, 4.0, 2.0, 1.0, 3.0, 3.0, 1.0, 17.0,457,26.88235294117647 +6.0550818244493625,5,a-sust-i3,2023-24,Canton - Lt Peter M Hansen,00500012, 8.0, 7.0, 2.4, 3.0, 5.0, 0.0, 0.0, 25.4,536,21.10236220472441 +7.049982275788728,5,a-sust-i3,2023-24,Canton - Rodman Early Childhood Center,00500010, 3.0, 3.0, 3.0, 2.0, 1.0, 1.0, 0.0, 13.0,134,10.307692307692308 +4.092165898617512,4.09,a-sust-i3,2023-24,Canton - Wm H Galvin Middle,00500305, 0.5, 4.0, 0.0, 1.0, 2.0, 10.0, 0.0, 17.5,742,42.4 +3.0779488185116186,3.08,a-sust-i3,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.8, 0.5, 2.3, 0.3, 0.0, 0.0, 0.8, 4.7,251,53.40425531914894 +3.572029653376077,3.57,a-sust-i3,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 1.4, 1.0, 3.0, 4.0, 3.4, 1.0, 13.8,663,48.04347826086956 +5.909072150766904,5,a-sust-i3,2023-24,Carlisle - Carlisle School,00510025, 5.0, 6.0, 2.0, 4.0, 4.8, 4.0, 1.0, 26.8,608,22.686567164179102 +4.825396825396825,4.83,a-sust-i3,2023-24,Carver - Carver Elementary School,00520015, 2.0, 2.0, 6.5, 3.5, 3.5, 3.0, 2.0, 22.5,775,34.44444444444444 +2.945054945054945,2.95,a-sust-i3,2023-24,Carver - Carver Middle/High School,00520405, 3.0, 0.0, 0.0, 1.0, 4.0, 2.0, 3.0, 13.0,713,54.84615384615385 +6.881720430107526,5,a-sust-i3,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 1.5, 7.5,91,12.133333333333333 +5.680491551459293,5,a-sust-i3,2023-24,Central Berkshire - Craneville,06350025, 1.0, 4.0, 0.0, 4.0, 2.0, 4.0, 3.0, 18.0,453,25.166666666666668 +6.874940409979342,5,a-sust-i3,2023-24,Central Berkshire - Kittredge,06350035, 2.0, 1.0, 0.0, 5.0, 2.5, 3.0, 1.0, 14.5,177,12.206896551724139 +5.461892945763913,5,a-sust-i3,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 3.0, 1.0, 0.0, 3.0, 3.0, 2.0, 1.0, 13.0,358,27.53846153846154 +3.0640040962621606,3.06,a-sust-i3,2023-24,Central Berkshire - Wahconah Regional High,06350505, 2.0, 0.0, 0.0, 0.0, 2.0, 4.0, 1.0, 9.0,482,53.55555555555556 +6.463901689708141,5,a-sust-i3,2023-24,Chelmsford - Byam School,00560030, 0.0, 0.0, 4.0, 11.5, 9.0, 5.0, 2.3, 31.8,530,16.666666666666668 +6.4823565810685375,5,a-sust-i3,2023-24,Chelmsford - Center Elementary School,00560005, 0.0, 4.0, 5.0, 8.0, 3.0, 5.0, 3.3, 28.3,466,16.46643109540636 +6.389628804375348,5,a-sust-i3,2023-24,Chelmsford - Charles D Harrington,00560025, 2.0, 0.0, 9.0, 3.0, 5.0, 3.0, 5.3, 27.3,477,17.47252747252747 +3.8525345622119813,3.85,a-sust-i3,2023-24,Chelmsford - Chelmsford High,00560505, 5.0, 2.4, 2.0, 1.0, 7.0, 11.0, 3.0, 31.4,1413,45.0 +5.704493087557603,5,a-sust-i3,2023-24,Chelmsford - Col Moses Parker School,00560305, 2.0, 3.0, 7.0, 5.5, 6.0, 6.0, 2.5, 32.0,797,24.90625 +6.975934459805429,5,a-sust-i3,2023-24,Chelmsford - Community Education Center,00560001, 3.0, 2.0, 2.0, 5.0, 2.0, 3.0, 1.0, 18.0,200,11.11111111111111 +5.330602491892814,5,a-sust-i3,2023-24,Chelmsford - McCarthy Middle School,00560310, 2.0, 3.0, 3.0, 7.5, 2.0, 5.0, 4.5, 27.0,782,28.962962962962962 +6.306041784302654,5,a-sust-i3,2023-24,Chelmsford - South Row,00560015, 1.0, 1.0, 4.0, 6.0, 4.0, 7.0, 2.3, 25.3,465,18.379446640316203 +-4.903225806451613,1,a-sust-i3,2023-24,Chelsea - Chelsea High,00570505, 1.0, 3.0, 2.0, 2.0, 2.0, 2.0, 0.0, 12.0,1680,140.0 +-Infinity,1,a-sust-i3,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,125,Infinity +2.4700460829493087,2.47,a-sust-i3,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,60,60.0 +0.18894009216589835,1,a-sust-i3,2023-24,Chelsea - Clark Avenue School,00570050, 2.0, 1.0, 1.0, 2.0, 2.0, 0.0, 0.0, 8.0,678,84.75 +5.017774851876235,5,a-sust-i3,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 2.0, 1.0, 2.0, 5.0, 2.0, 1.0, 1.0, 14.0,453,32.357142857142854 +3.463389656938044,3.46,a-sust-i3,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 2.0, 0.0, 3.0, 1.0, 0.0, 1.0, 2.0, 9.0,443,49.22222222222222 +4.476426799007444,4.48,a-sust-i3,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 3.0, 5.0, 2.0, 2.0, 0.0, 1.0, 0.0, 13.0,497,38.23076923076923 +3.9279430247172185,3.93,a-sust-i3,2023-24,Chelsea - George F. Kelly Elementary,00570035, 2.0, 4.0, 2.0, 1.0, 0.0, 2.0, 0.0, 11.0,486,44.18181818181818 +-0.9400921658986178,1,a-sust-i3,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 5.0,485,97.0 +6.624338624338624,5,a-sust-i3,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 12.0, 7.0, 9.0, 5.0, 9.0, 10.0, 2.0, 54.0,806,14.925925925925926 +4.915987238567884,4.92,a-sust-i3,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 4.0, 2.0, 3.0, 1.0, 2.0, 0.0, 1.0, 13.0,435,33.46153846153846 +5.7911965676148105,5,a-sust-i3,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 1.8, 1.0, 0.0, 1.0, 1.0, 1.0, 5.8,139,23.96551724137931 +6.549388900020036,5,a-sust-i3,2023-24,Chicopee - Barry,00610003, 5.0, 2.0, 4.0, 2.0, 5.0, 5.0, 0.0, 23.0,362,15.73913043478261 +6.492429229756418,5,a-sust-i3,2023-24,Chicopee - Belcher,00610010, 2.0, 1.0, 5.0, 0.0, 3.0, 2.0, 1.0, 14.0,229,16.357142857142858 +4.0368663594470044,4.04,a-sust-i3,2023-24,Chicopee - Bellamy Middle,00610305, 2.0, 1.0, 4.0, 4.0, 5.0, 2.0, 1.0, 19.0,817,43.0 +5.859703020993344,5,a-sust-i3,2023-24,Chicopee - Bowe,00610015, 4.0, 1.0, 0.0, 4.0, 3.0, 5.0, 1.0, 18.0,418,23.22222222222222 +6.5884065001212715,5,a-sust-i3,2023-24,Chicopee - Bowie,00610020, 1.0, 3.0, 3.0, 5.0, 4.0, 3.0, 0.0, 19.0,291,15.31578947368421 +7.091507570770244,5,a-sust-i3,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 1.0, 0.0, 2.0, 1.0, 2.0, 1.0, 7.0,69,9.857142857142858 +0.5529953917050692,1,a-sust-i3,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.0, 3.0, 0.0, 5.0, 6.0, 1.0, 15.0,1212,80.8 +2.947140146381133,2.95,a-sust-i3,2023-24,Chicopee - Chicopee High,00610505, 0.0, 2.0, 1.0, 6.0, 2.0, 6.0, 0.0, 17.0,932,54.8235294117647 +5.024358130348913,5,a-sust-i3,2023-24,Chicopee - Dupont Middle,00610310, 2.0, 4.0, 4.0, 3.0, 5.0, 2.0, 1.0, 21.0,678,32.285714285714285 +7.158986175115207,5,a-sust-i3,2023-24,Chicopee - Fairview Elementary,00610050, 1.0, 6.0, 4.0, 8.0, 5.0, 14.0, 2.0, 40.0,365,9.125 +6.433179723502304,5,a-sust-i3,2023-24,Chicopee - Gen John J Stefanik,00610090, 2.0, 3.0, 5.0, 5.0, 0.0, 7.0, 1.0, 23.0,391,17.0 +6.5121790651744575,5,a-sust-i3,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 1.0, 2.0, 6.0, 3.0, 2.0, 0.0, 14.0,226,16.142857142857142 +6.018433179723503,5,a-sust-i3,2023-24,Chicopee - Litwin,00610022, 3.0, 1.0, 6.0, 3.0, 0.0, 3.0, 0.0, 16.0,344,21.5 +6.806963645673323,5,a-sust-i3,2023-24,Chicopee - Streiber Memorial School,00610065, 1.0, 2.0, 4.0, 5.0, 5.0, 1.0, 0.0, 18.0,233,12.944444444444445 +7.2100065832784725,5,a-sust-i3,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 4.0, 3.0, 2.0, 6.0, 6.0, 5.0, 2.0, 28.0,240,8.571428571428571 +2.4700460829493087,2.47,a-sust-i3,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 1.0, 1.8, 1.0, 0.0, 0.0, 1.0, 4.8,288,60.0 +-1.1705069124423966,1,a-sust-i3,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,199,99.5 +-1.5852534562211984,1,a-sust-i3,2023-24,Clarksburg - Clarksburg Elementary,00630010, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,208,104.0 +6.322981366459627,5,a-sust-i3,2023-24,Clinton - Clinton Elementary,00640050, 2.0, 6.0, 12.0, 7.0, 14.0, 4.0, 1.0, 46.0,837,18.195652173913043 +4.810501326630359,4.81,a-sust-i3,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 2.0, 3.0, 1.5, 4.0, 6.0, 0.0, 16.5,571,34.60606060606061 +2.3033630748112564,2.3,a-sust-i3,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 1.0, 1.5, 2.0, 3.0, 1.9, 9.4,581,61.80851063829787 +2.2652329749103943,2.27,a-sust-i3,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.9, 2.0, 0.5, 1.0, 0.0, 1.0, 0.0, 5.4,336,62.22222222222222 +0.5161290322580641,1,a-sust-i3,2023-24,Cohasset - Cohasset High School,00650505, 1.0, 0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 5.0,406,81.2 +-5.36405529953917,1,a-sust-i3,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,290,145.0 +5.471345858442632,5,a-sust-i3,2023-24,Cohasset - Deer Hill,00650005, 1.0, 0.0, 1.0, 2.4, 2.0, 5.3, 0.0, 11.7,321,27.435897435897438 +5.701760604986411,5,a-sust-i3,2023-24,Cohasset - Joseph Osgood,00650010, 3.0, 2.0, 2.0, 2.0, 2.8, 3.8, 0.0, 15.6,389,24.935897435897438 +3.444371296905859,3.44,a-sust-i3,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 7.0, 8.0, 5.0, 1.0, 0.5, 2.0, 1.0, 24.5,1211,49.42857142857143 +3.7044107965766946,3.7,a-sust-i3,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 2.6, 0.8, 0.6, 0.8, 0.8, 0.0, 0.0, 5.6,261,46.60714285714286 +5.058535150504952,5,a-sust-i3,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 20.0, 8.0, 5.6, 2.0, 2.0, 0.0, 0.0, 37.6,1200,31.914893617021274 +6.661103499813178,5,a-sust-i3,2023-24,Concord - Alcott,00670005, 4.3, 3.3, 2.6, 6.6, 6.6, 5.8, 0.3, 29.6,430,14.527027027027026 +4.955732439603407,4.96,a-sust-i3,2023-24,Concord - Concord Middle,00670305, 1.0, 3.0, 5.0, 1.8, 4.0, 3.0, 2.0, 19.8,654,33.03030303030303 +6.8146214809075225,5,a-sust-i3,2023-24,Concord - Thoreau,00670020, 6.3, 4.3, 2.6, 3.0, 9.0, 6.3, 2.3, 33.9,436,12.861356932153393 +6.323918537237996,5,a-sust-i3,2023-24,Concord - Willard,00670030, 1.3, 1.0, 2.3, 4.6, 9.5, 4.8, 1.3, 24.8,451,18.18548387096774 +4.331260346293231,4.33,a-sust-i3,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 2.8, 5.0, 4.0, 3.9, 7.5, 6.2, 1.6, 30.9,1230,39.80582524271845 +4.472270777053869,4.47,a-sust-i3,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 2.5, 4.0, 3.1, 1.0, 0.0, 0.0, 1.0, 11.6,444,38.275862068965516 +7.219300623475196,5,a-sust-i3,2023-24,Conway - Conway Grammar,00680005, 1.0, 1.0, 6.0, 1.0, 4.0, 3.0, 1.0, 17.0,144,8.470588235294118 +4.129032258064516,4.13,a-sust-i3,2023-24,Danvers - Danvers High,00710505, 3.0, 3.0, 2.0, 3.0, 4.0, 4.0, 0.0, 19.0,798,42.0 +5.235023041474654,5,a-sust-i3,2023-24,Danvers - Great Oak,00710015, 2.0, 3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 10.0,300,30.0 +3.3302611367127497,3.33,a-sust-i3,2023-24,Danvers - Highlands,00710010, 0.0, 0.0, 2.0, 0.0, 3.0, 2.5, 0.0, 7.5,380,50.666666666666664 +4.7478604344963795,4.75,a-sust-i3,2023-24,Danvers - Holten Richmond Middle School,00710305, 2.0, 3.0, 1.0, 4.0, 5.0, 2.0, 4.0, 21.0,741,35.285714285714285 +6.110599078341013,5,a-sust-i3,2023-24,Danvers - Ivan G Smith,00710032, 4.0, 2.0, 1.0, 1.0, 4.0, 6.0, 0.0, 18.0,369,20.5 +6.811248001504748,5,a-sust-i3,2023-24,Danvers - Riverside,00710030, 2.0, 4.0, 3.0, 2.0, 2.5, 9.0, 2.0, 24.5,316,12.89795918367347 +6.43992356974261,5,a-sust-i3,2023-24,Danvers - Willis E Thorpe,00710045, 2.0, 1.0, 2.0, 5.0, 4.5, 5.0, 1.0, 20.5,347,16.926829268292682 +5.142857142857142,5,a-sust-i3,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.0, 0.0, 3.0, 1.0, 0.0, 5.0,155,31.0 +-9.493087557603687,1,a-sust-i3,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 1.0, 5.0,949,189.8 +-6.506912442396313,1,a-sust-i3,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 1.0, 0.0, 4.0, 0.0, 5.0,787,157.4 +3.1958525345622117,3.2,a-sust-i3,2023-24,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 1.0, 3.0, 3.0, 1.0, 8.0,417,52.125 +2.576684312754694,2.58,a-sust-i3,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.1, 4.0, 3.0, 5.0, 0.0, 12.1,712,58.84297520661157 +3.6418696510862407,3.64,a-sust-i3,2023-24,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 1.0, 7.0,331,47.285714285714285 +6.254269449715371,5,a-sust-i3,2023-24,Dedham - Avery,00730010, 5.0, 4.0, 2.0, 1.0, 2.0, 3.0, 0.0, 17.0,322,18.941176470588236 +-1.624753127057275,1,a-sust-i3,2023-24,Dedham - Dedham High,00730505, 1.0, 2.0, 0.0, 2.0, 1.0, 0.0, 1.0, 7.0,731,104.42857142857143 +5.497695852534562,5,a-sust-i3,2023-24,Dedham - Dedham Middle School,00730305, 5.0, 6.0, 2.0, 4.0, 3.0, 0.0, 0.0, 20.0,543,27.15 +6.558860494344365,5,a-sust-i3,2023-24,Dedham - Early Childhood Center,00730005, 2.0, 2.0, 3.0, 4.0, 3.0, 8.0, 0.0, 22.0,344,15.636363636363637 +5.6190476190476195,5,a-sust-i3,2023-24,Dedham - Greenlodge,00730025, 3.0, 2.0, 4.0, 1.0, 1.0, 1.0, 0.0, 12.0,310,25.833333333333332 +5.050691244239632,5,a-sust-i3,2023-24,Dedham - Oakdale,00730030, 1.0, 0.0, 0.0, 3.0, 1.0, 1.0, 2.0, 8.0,256,32.0 +5.458854509545754,5,a-sust-i3,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 1.0, 0.0, 2.0, 3.0, 1.0, 7.0,193,27.571428571428573 +6.890464374335343,5,a-sust-i3,2023-24,Deerfield - Deerfield Elementary,00740015, 1.0, 5.0, 4.0, 5.0, 3.0, 6.0, 2.0, 26.0,313,12.038461538461538 +3.2995391705069124,3.3,a-sust-i3,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 2.4, 0.0, 2.4, 0.0, 1.6, 2.4, 1.3, 10.0,510,51.0 +3.7277265745007675,3.73,a-sust-i3,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 3.1, 0.0, 1.6, 0.9, 0.8, 1.6, 1.6, 9.6,445,46.35416666666667 +2.1796603749763266,2.18,a-sust-i3,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.4, 0.3, 0.9, 0.8, 1.6, 4.9, 3.7, 14.6,922,63.15068493150685 +6.593879239040529,5,a-sust-i3,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.8, 3.3, 2.2, 0.8, 4.3, 7.1, 5.0, 23.4,357,15.256410256410257 +6.873527905785971,5,a-sust-i3,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.6, 2.3, 1.8, 4.4, 6.6, 5.2, 0.8, 22.5,275,12.222222222222221 +3.576036866359447,3.58,a-sust-i3,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 1.8, 0.6, 1.5, 4.0, 1.2, 9.0,432,48.0 +5.876974574133939,5,a-sust-i3,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 2.0, 1.0, 2.0, 6.5, 8.0, 0.6, 0.0, 20.1,463,23.034825870646763 +3.771889400921659,3.77,a-sust-i3,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 1.0, 0.0, 0.0, 1.0, 5.0, 1.0, 8.0,367,45.875 +3.0076804915514592,3.01,a-sust-i3,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 1.0, 0.0, 4.0, 2.0, 4.0, 1.0, 12.0,650,54.166666666666664 +4.611130804679192,4.61,a-sust-i3,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 2.0, 1.0, 3.0, 2.0, 4.0, 1.0, 13.0,478,36.76923076923077 +5.055673184705443,5,a-sust-i3,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 1.5, 2.0, 2.0, 6.0, 5.0, 2.0, 18.5,591,31.945945945945947 +4.746543778801843,4.75,a-sust-i3,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 1.0, 1.0, 3.0, 3.0, 1.0, 1.0, 10.0,353,35.3 +3.345622119815668,3.35,a-sust-i3,2023-24,Douglas - Douglas High School,00770505, 0.0, 2.0, 2.0, 0.0, 1.0, 0.0, 1.0, 6.0,303,50.5 +4.19486504279131,4.19,a-sust-i3,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 1.0, 2.0, 1.0, 1.0, 2.0, 0.0, 7.0,289,41.285714285714285 +5.79825908858167,5,a-sust-i3,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 1.0, 0.0, 2.0, 5.0, 0.0, 1.0, 9.0,215,23.88888888888889 +6.238213399503723,5,a-sust-i3,2023-24,Dover - Chickering,00780005, 2.0, 13.0, 2.0, 0.0, 6.0, 1.0, 2.0, 26.0,497,19.115384615384617 +2.0276497695852536,2.03,a-sust-i3,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 1.0, 0.0, 1.0, 1.0, 2.0, 3.0, 2.0, 10.0,648,64.8 +5.012779030623917,5,a-sust-i3,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 4.0, 2.0, 4.0, 2.0, 1.1, 1.0, 0.0, 14.1,457,32.4113475177305 +4.586448199351425,4.59,a-sust-i3,2023-24,Dracut - Brookside Elementary,00790035, 0.0, 1.0, 1.5, 5.0, 4.0, 1.0, 1.0, 13.5,500,37.03703703703704 +-0.5551640010843053,1,a-sust-i3,2023-24,Dracut - Dracut Senior High,00790505, 0.0, 1.0, 0.0, 2.0, 2.0, 2.0, 1.5, 8.5,789,92.82352941176471 +3.8755760368663594,3.88,a-sust-i3,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 2.0, 2.5, 4.0, 3.0, 0.5, 12.0,537,44.75 +2.700460829493087,2.7,a-sust-i3,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 0.5, 2.0, 1.5, 0.0, 0.0, 0.0, 4.0,230,57.5 +5.733111089322483,5,a-sust-i3,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 1.5, 2.0, 2.5, 4.5, 5.5, 4.5, 3.0, 23.5,578,24.595744680851062 +1.018433179723502,1.02,a-sust-i3,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 2.0, 0.0, 1.0, 2.0, 4.0, 2.0, 1.0, 12.0,909,75.75 +-Infinity,1,a-sust-i3,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +6.441731198631764,5,a-sust-i3,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 3.0, 4.8, 6.6, 5.0, 0.0, 19.4,328,16.90721649484536 +4.030283080974325,4.03,a-sust-i3,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 2.0, 1.0, 2.0, 4.0, 2.0, 2.0, 1.0, 14.0,603,43.07142857142857 +4.43125066981031,4.43,a-sust-i3,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 1.0, 1.0, 0.0, 5.6, 1.0, 0.0, 0.0, 8.6,333,38.72093023255814 +1.6405529953917048,1.64,a-sust-i3,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 3.0, 0.0, 0.0, 1.0, 1.0, 3.0, 0.0, 8.0,552,69.0 +5.435383690643158,5,a-sust-i3,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 1.0, 2.0, 6.1, 5.0, 1.0, 1.0, 16.1,448,27.82608695652174 +5.849462365591398,5,a-sust-i3,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 1.5, 0.0, 1.0, 1.4, 2.0, 4.0, 0.0, 9.9,231,23.333333333333332 +0.8033794162826423,1,a-sust-i3,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 3.0, 2.0, 1.0, 3.0, 3.0, 0.0, 0.0, 12.0,937,78.08333333333333 +4.184331797235023,4.18,a-sust-i3,2023-24,Duxbury - Alden School,00820004, 0.0, 1.0, 1.0, 2.0, 6.0, 5.0, 0.0, 15.0,621,41.4 +5.776369211793123,5,a-sust-i3,2023-24,Duxbury - Chandler Elementary,00820006, 0.0, 2.0, 2.8, 7.3, 7.3, 5.3, 2.3, 26.9,649,24.12639405204461 +-2.5929339477726576,1,a-sust-i3,2023-24,Duxbury - Duxbury High,00820505, 0.0, 0.5, 0.0, 2.0, 1.0, 2.0, 2.0, 7.5,862,114.93333333333334 +-3.4838709677419346,1,a-sust-i3,2023-24,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 1.0, 5.0,623,124.6 +5.936285313564417,5,a-sust-i3,2023-24,East Bridgewater - Central,00830005, 2.0, 6.0, 4.0, 3.0, 4.0, 4.0, 0.0, 23.0,515,22.391304347826086 +1.2642089093701998,1.26,a-sust-i3,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 1.0, 3.0, 1.0, 2.0, 2.0, 1.0, 2.0, 12.0,877,73.08333333333333 +5.816377171215881,5,a-sust-i3,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 2.0, 4.0, 6.0, 4.0, 6.0, 4.0, 0.0, 26.0,616,23.692307692307693 +3.284178187403994,3.28,a-sust-i3,2023-24,East Longmeadow - Birchland Park,00870305, 1.0, 2.0, 1.0, 3.0, 2.0, 3.0, 0.0, 12.0,614,51.166666666666664 +-6.211981566820275,1,a-sust-i3,2023-24,East Longmeadow - East Longmeadow High,00870505, 1.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 5.0,771,154.2 +5.965260545905707,5,a-sust-i3,2023-24,East Longmeadow - Mapleshade,00870010, 2.0, 0.0, 3.0, 1.0, 4.0, 1.0, 2.0, 13.0,287,22.076923076923077 +6.611334181687896,5,a-sust-i3,2023-24,East Longmeadow - Meadow Brook,00870013, 7.0, 4.0, 6.0, 4.8, 5.0, 6.0, 4.5, 37.3,562,15.067024128686327 +5.204301075268818,5,a-sust-i3,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 2.0, 1.0, 3.0, 1.0, 2.0, 0.0, 9.0,273,30.333333333333332 +6.525345622119816,5,a-sust-i3,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 2.0, 3.0, 2.0, 1.0, 3.0, 11.0,176,16.0 +1.1244239631336408,1.12,a-sust-i3,2023-24,Easthampton - Easthampton High,00860505, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 5.0,373,74.6 +6.066027045403036,5,a-sust-i3,2023-24,Easthampton - Mountain View School,00860415, 6.0, 7.0, 8.8, 8.8, 3.0, 12.2, 3.0, 48.8,1024,20.98360655737705 +5.925603261663501,5,a-sust-i3,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 3.3, 3.7, 8.0, 4.8, 12.4, 2.5, 34.7,781,22.507204610951007 +4.2197946150787145,4.22,a-sust-i3,2023-24,Easton - Easton Middle School,00880405, 2.0, 3.0, 1.9, 2.5, 2.5, 6.9, 1.0, 19.7,808,41.01522842639594 +3.4508941783283302,3.45,a-sust-i3,2023-24,Easton - Oliver Ames High,00880505, 3.0, 2.0, 3.0, 5.0, 2.0, 5.0, 1.8, 21.8,1076,49.357798165137616 +4.448476367408981,4.45,a-sust-i3,2023-24,Easton - Richardson Olmsted School,00880025, 2.0, 0.5, 0.9, 2.4, 7.9, 4.0, 1.5, 19.1,736,38.53403141361256 +6.844933867975342,5,a-sust-i3,2023-24,Edgartown - Edgartown Elementary,00890005, 2.8, 5.8, 2.5, 4.0, 7.4, 4.4, 4.0, 30.8,386,12.532467532467532 +2.1419979692259625,2.14,a-sust-i3,2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 1.0, 2.9, 1.0, 0.0, 0.0, 1.0, 0.0, 5.9,375,63.559322033898304 +6.92034233048058,5,a-sust-i3,2023-24,Erving - Erving Elementary,00910030, 0.0, 2.0, 1.5, 3.0, 2.0, 2.0, 0.0, 10.5,123,11.714285714285714 +-6.62086300795978,1,a-sust-i3,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 1.0, 1.0, 2.0, 0.0, 2.0, 4.0, 11.0,1745,158.63636363636363 +5.49615975422427,5,a-sust-i3,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 3.0, 6.0,163,27.166666666666668 +5.741935483870968,5,a-sust-i3,2023-24,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,49,24.5 +-34.19354838709678,1,a-sust-i3,2023-24,Everett - Everett High,00930505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 2.0, 5.0,2289,457.8 +-72.46082949308756,1,a-sust-i3,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,873,873.0 +-2.2406554019457245,1,a-sust-i3,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 1.0, 2.0, 3.0, 0.0, 3.0, 9.0,1000,111.11111111111111 +-15.963133640552995,1,a-sust-i3,2023-24,Everett - Madeline English School,00930018, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 3.0,780,260.0 +-Infinity,1,a-sust-i3,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1012,Infinity +-Infinity,1,a-sust-i3,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,616,Infinity +5.726574500768049,5,a-sust-i3,2023-24,Everett - Webster Extension,00930001, 0.0, 2.0, 0.0, 1.0, 2.0, 3.0, 1.0, 9.0,222,24.666666666666668 +5.582417582417583,5,a-sust-i3,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 3.0, 2.0, 3.0, 1.0, 4.0, 13.0,341,26.23076923076923 +-5.958013312852023,1,a-sust-i3,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 2.0, 2.0, 1.0, 1.0, 1.0, 2.0, 0.0, 9.0,1363,151.44444444444446 +5.830556540233959,5,a-sust-i3,2023-24,Fairhaven - East Fairhaven,00940010, 1.0, 2.0, 2.0, 3.0, 2.0, 2.0, 1.0, 13.0,306,23.53846153846154 +0.21856484529295545,1,a-sust-i3,2023-24,Fairhaven - Fairhaven High,00940505, 1.0, 1.0, 0.0, 2.0, 1.0, 2.0, 0.0, 7.0,591,84.42857142857143 +1.425499231950845,1.43,a-sust-i3,2023-24,Fairhaven - Hastings Middle,00940305, 2.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 6.0,428,71.33333333333333 +4.363636363636363,4.36,a-sust-i3,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 1.0, 2.0, 1.0, 3.0, 3.0, 1.0, 11.0,434,39.45454545454545 +4.432051460514458,4.43,a-sust-i3,2023-24,Fall River - B M C Durfee High,00950505, 13.0, 10.9, 10.0, 8.0, 11.0, 5.0, 5.0, 62.9,2435,38.712241653418126 +5.548105674182995,5,a-sust-i3,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 7.0, 6.2, 4.0, 3.0, 4.0, 1.0, 1.0, 26.2,697,26.603053435114504 +7.484955272431554,5,a-sust-i3,2023-24,Fall River - Early Learning Center,00950001, 6.0, 3.0, 3.0, 1.0, 3.0, 1.0, 0.0, 17.0,95,5.588235294117647 +7.4761096289109865,5,a-sust-i3,2023-24,Fall River - FRPS Early Learning Center,00950002, 8.0, 2.0, 1.0, 3.0, 3.0, 2.0, 0.0, 19.0,108,5.684210526315789 +6.746480866925653,5,a-sust-i3,2023-24,Fall River - Henry Lord Community School,00950017, 13.2, 12.1, 11.0, 8.2, 10.1, 3.0, 1.0, 58.6,797,13.600682593856655 +5.436112274821952,5,a-sust-i3,2023-24,Fall River - James Tansey,00950140, 1.0, 4.0, 2.0, 1.0, 3.0, 0.0, 0.0, 11.0,306,27.818181818181817 +5.888037031679445,5,a-sust-i3,2023-24,Fall River - John J Doran,00950045, 4.0, 3.3, 6.0, 1.0, 6.0, 2.0, 0.0, 22.3,511,22.914798206278025 +5.850621685070863,5,a-sust-i3,2023-24,Fall River - Letourneau Elementary School,00950013, 7.0, 3.0, 4.5, 7.0, 5.0, 0.0, 0.0, 26.5,618,23.32075471698113 +5.8895344954250985,5,a-sust-i3,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 7.0, 4.0, 4.0, 4.8, 2.0, 5.8, 0.0, 27.6,632,22.89855072463768 +5.420841385461572,5,a-sust-i3,2023-24,Fall River - Matthew J Kuss Middle,00950320, 5.0, 6.9, 5.0, 2.0, 3.0, 1.9, 1.0, 24.8,694,27.983870967741936 +2.0175953079178885,2.02,a-sust-i3,2023-24,Fall River - Morton Middle,00950315, 5.0, 2.0, 1.0, 1.0, 1.0, 1.0, 0.0, 11.0,714,64.9090909090909 +6.626959050208371,5,a-sust-i3,2023-24,Fall River - North End Elementary,00950005, 6.0, 10.0, 10.0, 7.9, 5.0, 5.0, 0.0, 43.9,654,14.89749430523918 +4.539076460077118,4.54,a-sust-i3,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 1.9, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 4.9,184,37.55102040816326 +5.286226318484383,5,a-sust-i3,2023-24,Fall River - Samuel Watson,00950145, 3.0, 0.0, 2.0, 1.0, 1.0, 1.0, 1.0, 9.0,265,29.444444444444443 +6.928130997969384,5,a-sust-i3,2023-24,Fall River - Spencer Borden,00950130, 10.0, 6.1, 9.5, 13.2, 5.0, 5.9, 0.0, 49.7,578,11.629778672032192 +7.591836734693877,5,a-sust-i3,2023-24,Fall River - Stone PK-12 School,00950340, 2.0, 6.0, 1.0, 1.0, 2.0, 2.0, 0.0, 14.0,62,4.428571428571429 +4.622604899345137,4.62,a-sust-i3,2023-24,Fall River - Talbot Innovation School,00950305, 3.6, 3.0, 4.0, 3.0, 1.6, 0.0, 0.0, 15.2,557,36.64473684210527 +6.134263295553618,5,a-sust-i3,2023-24,Fall River - William S Greene,00950065, 7.0, 9.0, 7.0, 4.0, 10.0, 0.0, 0.0, 37.0,749,20.243243243243242 +6.430546412113233,5,a-sust-i3,2023-24,Falmouth - East Falmouth Elementary,00960005, 1.0, 1.0, 2.0, 1.0, 6.0, 5.0, 1.5, 17.5,298,17.02857142857143 +1.908671973188102,1.91,a-sust-i3,2023-24,Falmouth - Falmouth High,00960505, 2.0, 3.0, 2.0, 2.0, 0.0, 1.0, 1.0, 11.0,727,66.0909090909091 +4.154168412232928,4.15,a-sust-i3,2023-24,Falmouth - Lawrence,00960405, 0.0, 0.0, 3.0, 5.0, 1.0, 1.0, 1.0, 11.0,459,41.72727272727273 +4.313364055299539,4.31,a-sust-i3,2023-24,Falmouth - Morse Pond School,00960305, 0.0, 2.0, 1.0, 1.0, 5.0, 2.0, 1.0, 12.0,480,40.0 +5.524687294272547,5,a-sust-i3,2023-24,Falmouth - Mullen-Hall,00960020, 0.0, 1.0, 2.0, 2.0, 3.0, 6.0, 0.0, 14.0,376,26.857142857142858 +4.95852534562212,4.96,a-sust-i3,2023-24,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 1.0, 3.0, 2.0, 1.0, 2.0, 9.0,297,33.0 +6.433179723502304,5,a-sust-i3,2023-24,Falmouth - Teaticket,00960015, 1.0, 3.0, 3.0, 0.0, 3.0, 4.0, 1.0, 15.0,255,17.0 +6.301514154048716,5,a-sust-i3,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 4.0, 1.0, 2.0, 7.0,129,18.428571428571427 +5.633012149141181,5,a-sust-i3,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 4.0, 4.0, 1.0, 2.0, 4.0, 6.0, 1.0, 22.0,565,25.681818181818183 +0.8571428571428569,1,a-sust-i3,2023-24,Fitchburg - Crocker Elementary,00970016, 0.0, 2.0, 1.0, 3.0, 1.0, 0.0, 1.0, 8.0,620,77.5 +3.2714886796233222,3.27,a-sust-i3,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, 4.0, 1.0, 2.0, 6.0, 6.0, 4.0, 23.0,1180,51.30434782608695 +4.528417818740399,4.53,a-sust-i3,2023-24,Fitchburg - Goodrich Academy,00970510, 2.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 6.0,226,37.666666666666664 +3.317972350230415,3.32,a-sust-i3,2023-24,Fitchburg - McKay Elementary School,00970340, 3.0, 1.0, 3.0, 2.0, 2.0, 2.0, 2.0, 15.0,762,50.8 +4.618663594470046,4.62,a-sust-i3,2023-24,Fitchburg - Memorial Middle School,00970048, 2.0, 5.0, 1.0, 3.0, 2.0, 3.0, 0.0, 16.0,587,36.6875 +2.923195084485407,2.92,a-sust-i3,2023-24,Fitchburg - Reingold Elementary,00970043, 2.0, 1.0, 4.0, 4.0, 1.0, 0.0, 0.0, 12.0,661,55.083333333333336 +6.686573161390776,5,a-sust-i3,2023-24,Fitchburg - South Street Early Learning Center,00970060, 5.0, 4.0, 7.0, 3.0, 6.3, 6.6, 4.8, 36.7,523,14.250681198910081 +6.04147465437788,5,a-sust-i3,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,85,21.25 +5.7065694995177365,5,a-sust-i3,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 1.0, 0.9, 3.5, 1.4, 0.9, 1.0, 0.0, 8.6,214,24.88372093023256 +0.6267281105990781,1,a-sust-i3,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 1.0, 2.5, 0.0, 0.0, 3.5,280,80.0 +3.3486943164362515,3.35,a-sust-i3,2023-24,Foxborough - Foxborough High,00990505, 2.0, 0.0, 0.0, 1.0, 5.0, 6.0, 1.0, 15.0,757,50.46666666666667 +4.38612660683968,4.39,a-sust-i3,2023-24,Foxborough - John J Ahern,00990405, 4.0, 2.0, 1.0, 3.0, 0.0, 4.0, 5.0, 19.0,745,39.21052631578947 +6.09331797235023,5,a-sust-i3,2023-24,Foxborough - Mabelle M Burrell,00990015, 2.0, 5.0, 3.0, 0.5, 1.5, 3.0, 1.0, 16.0,331,20.6875 +5.1896955503512885,5,a-sust-i3,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 3.0, 0.0, 0.0, 3.5, 1.7, 4.0, 0.0, 12.2,372,30.491803278688526 +0.8157863641734614,1,a-sust-i3,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 6.5, 5.0, 3.0, 2.0, 2.0, 0.0, 1.0, 19.5,1520,77.94871794871794 +3.668202764976958,3.67,a-sust-i3,2023-24,Framingham - Barbieri Elementary,01000035, 0.0, 2.0, 4.0, 2.0, 4.0, 2.0, 0.0, 14.0,658,47.0 +3.1142163421039593,3.11,a-sust-i3,2023-24,Framingham - Brophy,01000006, 0.0, 1.0, 2.0, 1.3, 1.0, 4.0, 0.0, 9.3,493,53.01075268817204 +-0.6635944700460832,1,a-sust-i3,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 2.0, 6.0,564,94.0 +3.9815668202764973,3.98,a-sust-i3,2023-24,Framingham - Charlotte A Dunning,01000007, 1.0, 1.0, 1.0, 1.0, 1.0, 4.0, 1.0, 10.0,436,43.6 +-9.121329341720207,1,a-sust-i3,2023-24,Framingham - Framingham High School,01000515, 0.0, 0.0, 1.0, 3.8, 2.0, 4.9, 2.0, 13.7,2545,185.76642335766425 +2.410584212873495,2.41,a-sust-i3,2023-24,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 2.0, 3.0, 2.3, 1.0, 9.3,564,60.64516129032258 +1.7722185648452928,1.77,a-sust-i3,2023-24,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0, 2.0, 7.0,473,67.57142857142857 +1.9814557770251515,1.98,a-sust-i3,2023-24,Framingham - Hemenway,01000015, 1.0, 1.0, 0.0, 1.0, 3.0, 0.3, 2.0, 8.3,542,65.3012048192771 +6.807011499203239,5,a-sust-i3,2023-24,Framingham - Juniper Hill School,01000001, 0.0, 2.0, 0.0, 4.0, 5.4, 8.5, 1.5, 21.4,277,12.94392523364486 +2.614878209348255,2.61,a-sust-i3,2023-24,Framingham - King Elementary School,01000005, 0.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 7.0,409,58.42857142857143 +5.546862548075258,5,a-sust-i3,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 3.0, 1.0, 6.7, 2.7, 0.0, 13.3,354,26.616541353383457 +3.7771260997067446,3.78,a-sust-i3,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 1.0, 3.0, 2.0, 3.0, 2.0, 11.0,504,45.81818181818182 +-1.861751152073733,1,a-sust-i3,2023-24,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 5.0,535,107.0 +-0.9861751152073736,1,a-sust-i3,2023-24,Framingham - Walsh Middle,01000310, 1.0, 1.0, 2.0, 2.0, 1.0, 0.0, 1.0, 8.0,780,97.5 +-Infinity,1,a-sust-i3,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,370,Infinity +5.6258064516129025,5,a-sust-i3,2023-24,Franklin - Annie Sullivan Middle School,01010040, 4.0, 4.0, 1.0, 2.0, 0.0, 0.0, 1.5, 12.5,322,25.76 +7.336056085788543,5,a-sust-i3,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 1.5, 1.4, 2.8, 4.8, 6.6, 4.0, 0.0, 21.1,152,7.203791469194313 +0.7695852534562208,1,a-sust-i3,2023-24,Franklin - Franklin High,01010505, 3.0, 2.0, 2.0, 2.0, 4.0, 6.0, 1.0, 20.0,1569,78.45 +5.662337662337663,5,a-sust-i3,2023-24,Franklin - Helen Keller Elementary,01010012, 3.0, 1.0, 2.0, 5.0, 3.5, 6.0, 1.5, 22.0,558,25.363636363636363 +4.898417150871569,4.9,a-sust-i3,2023-24,Franklin - Horace Mann,01010405, 2.5, 2.0, 1.5, 0.0, 1.0, 4.5, 0.0, 11.5,387,33.65217391304348 +4.949308755760368,4.95,a-sust-i3,2023-24,Franklin - J F Kennedy Memorial,01010013, 2.0, 1.0, 0.0, 1.0, 3.0, 3.0, 0.0, 10.0,331,33.1 +6.358756992533083,5,a-sust-i3,2023-24,Franklin - Jefferson Elementary,01010010, 2.0, 1.7, 1.0, 2.0, 6.5, 4.5, 1.0, 18.7,333,17.807486631016044 +5.263381779510811,5,a-sust-i3,2023-24,Franklin - Oak Street Elementary,01010030, 1.5, 1.5, 0.5, 2.0, 3.0, 3.5, 1.0, 13.0,386,29.692307692307693 +4.917209597965994,4.92,a-sust-i3,2023-24,Franklin - Parmenter,01010032, 0.0, 1.0, 0.0, 0.0, 3.7, 4.0, 0.0, 8.7,291,33.44827586206897 +4.405529953917051,4.41,a-sust-i3,2023-24,Franklin - Remington Middle,01010310, 1.0, 3.0, 0.0, 0.0, 4.5, 0.5, 0.0, 9.0,351,39.0 +-Infinity,1,a-sust-i3,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,621,Infinity +3.803379416282642,3.8,a-sust-i3,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 4.0, 2.0, 2.0, 6.0, 1.0, 15.0,683,45.53333333333333 +4.912442396313364,4.91,a-sust-i3,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.0, 1.0, 1.0, 4.0, 5.0, 1.0, 1.0, 14.0,469,33.5 +6.253456221198157,5,a-sust-i3,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 1.0, 4.0, 2.0, 5.0, 7.0, 0.0, 20.0,379,18.95 +3.9389400921658986,3.94,a-sust-i3,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 1.0, 1.0, 1.0, 10.0, 3.0, 0.0, 16.0,705,44.0625 +-0.5529953917050692,1,a-sust-i3,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 3.0, 1.0, 0.0, 5.0,464,92.8 +5.769585253456221,5,a-sust-i3,2023-24,Frontier - Frontier Regional,06700505, 3.0, 7.0, 3.0, 8.0, 2.0, 1.0, 1.0, 25.0,605,24.2 +-Infinity,1,a-sust-i3,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,127,Infinity +6.1191726503054324,5,a-sust-i3,2023-24,Gardner - Gardner Elementary School,01030001, 9.0, 8.0, 6.0, 8.0, 10.6, 8.0, 2.0, 51.6,1053,20.406976744186046 +0.5437788018433172,1,a-sust-i3,2023-24,Gardner - Gardner High,01030505, 5.0, 1.0, 0.0, 3.0, 1.0, 0.0, 0.0, 10.0,809,80.9 +5.499093874592243,5,a-sust-i3,2023-24,Gardner - Gardner Middle School,01030405, 5.0, 4.0, 3.0, 2.0, 2.0, 1.0, 0.8, 17.8,483,27.134831460674157 +6.459512837393023,5,a-sust-i3,2023-24,Gateway - Chester Elementary,06720059, 0.0, 0.0, 1.0, 1.0, 1.0, 3.0, 1.0, 7.0,117,16.714285714285715 +6.578011849901251,5,a-sust-i3,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 1.0, 2.5, 3.5, 2.0, 1.5, 0.0, 10.5,162,15.428571428571429 +5.220843672456575,5,a-sust-i3,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.5, 0.5, 0.0, 3.5, 2.0, 6.5,196,30.153846153846153 +5.872503840245776,5,a-sust-i3,2023-24,Gateway - Littleville Elementary School,06720143, 1.0, 1.0, 4.0, 0.0, 2.0, 2.0, 2.0, 12.0,277,23.083333333333332 +-18.63594470046083,1,a-sust-i3,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,289,289.0 +-Infinity,1,a-sust-i3,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +-1.4334507996747095,1,a-sust-i3,2023-24,Georgetown - Penn Brook,01050010, 1.0, 0.0, 1.0, 1.0, 2.8, 0.0, 1.0, 6.8,696,102.3529411764706 +6.377880184331796,5,a-sust-i3,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 5.0,88,17.6 +5.8986175115207375,5,a-sust-i3,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.0, 1.0, 1.0, 2.0, 0.0, 5.0,114,22.8 +4.879526003949967,4.88,a-sust-i3,2023-24,Gill-Montague - Great Falls Middle,06740310, 1.0, 0.0, 1.0, 2.0, 1.0, 1.0, 1.0, 7.0,237,33.857142857142854 +7.398727232828614,5,a-sust-i3,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 1.0, 5.0, 8.0, 6.0, 1.0, 0.0, 21.0,137,6.523809523809524 +5.557603686635945,5,a-sust-i3,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 1.0, 1.0, 2.0, 2.0, 2.0, 0.0, 8.0,212,26.5 +5.262130658715099,5,a-sust-i3,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 1.0, 0.0, 1.8, 3.0, 1.0, 6.8,202,29.705882352941178 +2.8591909882232462,2.86,a-sust-i3,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 3.0, 4.0, 1.0, 1.0, 0.0, 0.0, 0.0, 9.0,502,55.77777777777778 +6.040621266427719,5,a-sust-i3,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 2.0, 1.0, 3.0, 2.5, 4.0, 1.0, 13.5,287,21.25925925925926 +6.15668202764977,5,a-sust-i3,2023-24,Gloucester - East Veterans Elementary School,01070030, 2.0, 2.0, 2.0, 3.0, 6.5, 4.0, 3.0, 22.5,450,20.0 +3.8678955453148998,3.87,a-sust-i3,2023-24,Gloucester - Gloucester High,01070505, 2.0, 0.0, 2.0, 5.0, 1.0, 4.0, 4.0, 18.0,807,44.833333333333336 +7.3819463269178645,5,a-sust-i3,2023-24,Gloucester - Gloucester PreSchool,01070025, 1.0, 3.0, 4.0, 2.0, 4.0, 3.0, 0.0, 17.0,114,6.705882352941177 +6.721966205837174,5,a-sust-i3,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 3.0, 2.0, 5.0, 2.0, 3.0, 15.0,208,13.866666666666667 +4.794674859190988,4.79,a-sust-i3,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 1.0, 1.0, 4.0, 5.0, 5.0, 2.0, 18.0,626,34.77777777777778 +5.994036324207102,5,a-sust-i3,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 6.0, 7.0, 1.0, 2.0, 17.0,370,21.764705882352942 +NaN,NaN,a-sust-i3,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +3.4377880184331797,3.44,a-sust-i3,2023-24,Grafton - Grafton High School,01100505, 1.0, 2.0, 2.0, 5.0, 1.0, 6.0, 1.0, 18.0,891,49.5 +4.978275181040158,4.98,a-sust-i3,2023-24,Grafton - Grafton Middle,01100305, 2.0, 3.0, 4.0, 2.0, 2.0, 1.0, 0.0, 14.0,459,32.785714285714285 +5.845804988662131,5,a-sust-i3,2023-24,Grafton - Millbury Street Elementary School,01100200, 3.0, 0.0, 8.0, 3.2, 6.0, 5.0, 0.0, 25.2,589,23.373015873015873 +6.9631336405529956,5,a-sust-i3,2023-24,Grafton - North Grafton Elementary,01100025, 4.0, 0.8, 2.0, 4.0, 7.8, 2.8, 1.0, 22.4,252,11.25 +5.947049787656999,5,a-sust-i3,2023-24,Grafton - North Street Elementary School,01100030, 2.2, 4.0, 2.8, 10.5, 4.0, 2.0, 0.0, 25.5,568,22.274509803921568 +6.9879140944265705,5,a-sust-i3,2023-24,Grafton - South Grafton Elementary,01100005, 4.4, 6.6, 5.5, 2.8, 2.0, 5.2, 0.0, 26.5,291,10.981132075471699 +6.284690220174091,5,a-sust-i3,2023-24,Granby - East Meadow,01110004, 4.0, 3.0, 4.0, 2.0, 4.6, 4.0, 0.0, 21.6,402,18.61111111111111 +4.647465437788019,4.65,a-sust-i3,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, 3.0, 3.0, 1.0, 0.0, 1.0, 0.0, 8.0,291,36.375 +-1.304748547385294,1,a-sust-i3,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 1.5, 3.5, 3.5, 2.0, 0.0, 1.0, 0.0, 11.5,1161,100.95652173913044 +-58.49769585253457,1,a-sust-i3,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1443,721.5 +-5.625192012288787,1,a-sust-i3,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 3.0, 2.0, 2.0, 4.0, 1.0, 0.0, 12.0,1774,147.83333333333334 +-1.2726908435183328,1,a-sust-i3,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 2.0, 3.0, 3.0, 2.0, 5.0, 7.0, 1.0, 23.0,2314,100.6086956521739 +-2.993343573988734,1,a-sust-i3,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 1.0, 5.0, 5.0, 1.0, 5.0, 0.0, 1.0, 18.0,2147,119.27777777777777 +6.924731182795698,5,a-sust-i3,2023-24,Greenfield - Discovery School at Four Corners,01140025, 2.0, 1.0, 3.0, 2.0, 5.0, 5.0, 0.0, 18.0,210,11.666666666666666 +2.4086021505376345,2.41,a-sust-i3,2023-24,Greenfield - Federal Street School,01140010, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,182,60.666666666666664 +4.559139784946236,4.56,a-sust-i3,2023-24,Greenfield - Greenfield High,01140505, 1.0, 3.0, 3.0, 3.0, 0.0, 2.0, 0.0, 12.0,448,37.333333333333336 +4.0368663594470044,4.04,a-sust-i3,2023-24,Greenfield - Greenfield Middle,01140305, 1.0, 1.0, 1.0, 0.0, 0.0, 2.0, 2.0, 7.0,301,43.0 +5.8917050691244235,5,a-sust-i3,2023-24,Greenfield - Newton School,01140035, 2.0, 4.0, 0.0, 1.0, 0.0, 1.0, 0.0, 8.0,183,22.875 +7.170506912442396,5,a-sust-i3,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 1.0, 1.0, 3.0, 2.0, 0.0, 2.0, 1.0, 10.0,90,9.0 +7.567972350230415,5,a-sust-i3,2023-24,Groton-Dunstable - Boutwell School,06730001, 1.0, 1.0, 8.0, 2.0, 2.0, 2.0, 0.0, 16.0,75,4.6875 +4.398440269408011,4.4,a-sust-i3,2023-24,Groton-Dunstable - Florence Roche School,06730010, 2.0, 0.0, 1.0, 5.0, 3.0, 2.0, 0.0, 13.0,508,39.07692307692308 +3.1152073732718892,3.12,a-sust-i3,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 1.0, 0.0, 2.0, 3.0, 6.0, 1.0, 13.0,689,53.0 +4.541353383458646,4.54,a-sust-i3,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 2.0, 1.0, 1.0, 6.0, 2.0, 6.0, 1.0, 19.0,713,37.526315789473685 +5.050691244239632,5,a-sust-i3,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 2.0, 2.0, 5.0, 1.0, 0.0, 10.0,320,32.0 +6.205837173579109,5,a-sust-i3,2023-24,Hadley - Hadley Elementary,01170015, 2.0, 4.0, 1.0, 3.0, 1.0, 3.0, 1.0, 15.0,292,19.466666666666665 +4.398702850315754,4.4,a-sust-i3,2023-24,Hadley - Hopkins Academy,01170505, 0.4, 1.0, 0.0, 0.0, 1.0, 2.0, 1.0, 5.4,211,39.07407407407407 +4.626728110599078,4.63,a-sust-i3,2023-24,Halifax - Halifax Elementary,01180005, 0.0, 1.0, 1.0, 3.5, 3.0, 6.0, 0.5, 15.0,549,36.6 +5.460535346602608,5,a-sust-i3,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 2.0, 2.2, 3.6, 1.0, 0.6, 9.4,259,27.5531914893617 +4.642527978933509,4.64,a-sust-i3,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.6, 1.8, 2.6, 1.0, 1.0, 7.0,255,36.42857142857143 +0.7254772876892688,1,a-sust-i3,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 1.6, 0.0, 0.0, 2.0, 0.0, 2.0, 5.6,442,78.92857142857143 +0.8900592495062543,1,a-sust-i3,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 1.0, 0.0, 1.0, 0.0, 2.9, 0.0, 4.9,378,77.14285714285714 +6.6258147548470125,5,a-sust-i3,2023-24,Hamilton-Wenham - Winthrop School,06750015, 2.6, 2.0, 1.6, 5.0, 7.4, 3.6, 0.0, 22.2,331,14.90990990990991 +1.629032258064516,1.63,a-sust-i3,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 2.0, 4.0, 0.0, 0.0, 2.0, 0.0, 0.0, 8.0,553,69.125 +2.413328606876994,2.41,a-sust-i3,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 1.0, 3.0, 1.0, 1.5, 0.0, 0.0, 0.0, 6.5,394,60.61538461538461 +6.50365952832746,5,a-sust-i3,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 1.0, 0.0, 2.0, 2.0, 7.0, 4.0, 1.0, 17.0,276,16.235294117647058 +6.420013166556946,5,a-sust-i3,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.0, 0.0, 3.0, 3.0, 3.0, 10.0, 1.0, 21.0,360,17.142857142857142 +-1.4182027649769589,1,a-sust-i3,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 1.0, 0.0, 1.0, 2.0, 3.0, 2.6, 9.6,981,102.1875 +5.946925154934054,5,a-sust-i3,2023-24,Hampden-Wilbraham - Soule Road,06800030, 1.0, 1.0, 1.0, 2.0, 3.0, 5.0, 1.5, 14.5,323,22.275862068965516 +6.2696595807938165,5,a-sust-i3,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 1.0, 1.0, 3.0, 4.0, 5.5, 1.0, 15.5,291,18.774193548387096 +4.7145567904581185,4.71,a-sust-i3,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 2.0, 2.0, 2.0, 3.0, 3.0, 5.0, 17.0,606,35.64705882352941 +4.704949738544925,4.7,a-sust-i3,2023-24,Hampshire - Hampshire Regional High,06830505, 2.0, 2.3, 4.0, 1.0, 7.0, 1.0, 2.0, 19.3,690,35.751295336787564 +6.218125960061444,5,a-sust-i3,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,58,19.333333333333332 +4.328350380277996,4.33,a-sust-i3,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 1.0, 1.0, 7.3, 2.0, 1.0, 12.3,490,39.83739837398374 +-49.88018433179724,1,a-sust-i3,2023-24,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,628,628.0 +2.746543778801843,2.75,a-sust-i3,2023-24,Hanover - Hanover High,01220505, 0.0, 3.0, 2.0, 2.0, 1.0, 2.0, 2.0, 12.0,684,57.0 +-10.433179723502304,1,a-sust-i3,2023-24,Hanover - Hanover Middle,01220305, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 4.0,800,200.0 +6.5952645796917215,5,a-sust-i3,2023-24,Harvard - Hildreth Elementary School,01250005, 5.0, 0.0, 3.0, 5.0, 7.0, 8.0, 1.0, 29.0,442,15.241379310344827 +4.516986389454506,4.52,a-sust-i3,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 0.0, 0.0, 2.0, 2.6, 2.0, 2.0, 8.6,325,37.79069767441861 +-Infinity,1,a-sust-i3,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +4.387096774193548,4.39,a-sust-i3,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 1.0, 0.0, 0.0, 3.0, 0.0, 1.0, 5.0,196,39.2 +-3.6129032258064515,1,a-sust-i3,2023-24,Hatfield - Smith Academy,01270505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,126,126.0 +7.785295349811479,5,a-sust-i3,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 5.0, 3.0, 2.0, 4.0, 1.6, 2.0, 0.0, 17.6,41,2.329545454545454 +5.6190476190476195,5,a-sust-i3,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 3.0, 0.0, 5.0, 8.0, 2.0, 0.0, 18.0,465,25.833333333333332 +4.497695852534562,4.5,a-sust-i3,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 4.0, 3.0, 6.0, 5.0, 2.0, 8.0, 0.0, 28.0,1064,38.0 +2.12974122651542,2.13,a-sust-i3,2023-24,Haverhill - Consentino Middle School,01280100, 3.0, 1.0, 4.0, 3.0, 2.0, 0.0, 0.0, 13.0,828,63.69230769230769 +4.504279131007241,4.5,a-sust-i3,2023-24,Haverhill - Dr Paul Nettle,01280050, 2.0, 1.0, 3.0, 2.0, 0.0, 5.0, 1.0, 14.0,531,37.92857142857143 +6.363260765930399,5,a-sust-i3,2023-24,Haverhill - Gateway Academy,01280515, 2.0, 0.0, 0.0, 1.8, 0.0, 2.0, 0.0, 5.8,103,17.758620689655174 +6.172043010752689,5,a-sust-i3,2023-24,Haverhill - Golden Hill,01280026, 3.0, 2.0, 2.0, 5.0, 6.0, 6.0, 0.0, 24.0,476,19.833333333333332 +7.4777265745007675,5,a-sust-i3,2023-24,Haverhill - Greenleaf Academy,01280033, 1.0, 1.0, 2.0, 0.0, 2.0, 0.0, 0.0, 6.0,34,5.666666666666667 +3.170991996119331,3.17,a-sust-i3,2023-24,Haverhill - Haverhill High,01280505, 6.0, 1.0, 4.0, 4.0, 9.0, 12.0, 2.0, 38.0,1991,52.39473684210526 +2.2626728110599075,2.26,a-sust-i3,2023-24,Haverhill - John G Whittier,01280085, 3.0, 2.0, 0.0, 1.0, 1.0, 1.0, 0.0, 8.0,498,62.25 +7.341056893061716,5,a-sust-i3,2023-24,Haverhill - Moody,01280045, 7.4, 0.8, 2.8, 4.4, 3.2, 2.8, 0.0, 21.4,153,7.149532710280375 +6.622166364101848,5,a-sust-i3,2023-24,Haverhill - Moody Preschool Extension,01280001, 1.6, 2.6, 0.8, 1.7, 1.6, 0.8, 0.8, 9.9,148,14.94949494949495 +6.083717357910905,5,a-sust-i3,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 2.0, 3.0, 8.0, 0.0, 6.0, 5.0, 0.0, 24.0,499,20.791666666666668 +6.152492668621701,5,a-sust-i3,2023-24,Haverhill - Silver Hill Elementary School,01280067, 4.0, 1.0, 4.0, 4.0, 5.0, 2.0, 2.0, 22.0,441,20.045454545454547 +5.4308755760368665,5,a-sust-i3,2023-24,Haverhill - Tilton,01280075, 3.0, 1.0, 2.0, 4.0, 4.0, 2.0, 0.0, 16.0,446,27.875 +5.393929763228984,5,a-sust-i3,2023-24,Haverhill - Walnut Square,01280080, 1.0, 1.0, 1.0, 1.0, 1.0, 0.8, 0.0, 5.8,164,28.27586206896552 +7.3705743509048,5,a-sust-i3,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.6, 2.6, 1.0, 2.0, 2.0, 0.0, 8.2,56,6.829268292682928 +-9.511520737327189,1,a-sust-i3,2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,95,190.0 +3.997366688610928,4.0,a-sust-i3,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 7.0,304,43.42857142857143 +6.522634860395771,5,a-sust-i3,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 3.4, 3.2, 0.8, 4.0, 0.4, 0.0, 1.7, 13.6,218,16.029411764705884 +5.955807633226987,5,a-sust-i3,2023-24,Hingham - East Elementary School,01310005, 0.0, 1.4, 1.0, 4.0, 7.9, 6.7, 2.5, 23.4,519,22.179487179487182 +0.7583936800526662,1,a-sust-i3,2023-24,Hingham - Hingham High,01310505, 2.0, 4.0, 4.0, 1.0, 0.0, 1.0, 2.0, 14.0,1100,78.57142857142857 +4.04201267865915,4.04,a-sust-i3,2023-24,Hingham - Hingham Middle School,01310410, 7.0, 1.0, 0.0, 1.0, 4.0, 3.7, 3.0, 19.7,846,42.944162436548226 +6.226054209404886,5,a-sust-i3,2023-24,Hingham - Plymouth River,01310019, 2.0, 0.0, 1.0, 1.7, 2.0, 6.7, 5.2, 18.6,358,19.247311827956988 +6.610465198213053,5,a-sust-i3,2023-24,Hingham - South Elementary,01310020, 4.0, 3.0, 8.0, 3.0, 5.8, 5.9, 3.0, 32.7,493,15.076452599388379 +6.052061277867729,5,a-sust-i3,2023-24,Hingham - Wm L Foster Elementary,01310010, 5.0, 5.0, 1.0, 4.0, 2.5, 1.0, 0.0, 18.5,391,21.135135135135137 +-3.797235023041474,1,a-sust-i3,2023-24,Holbrook - Holbrook Middle High School,01330505, 1.0, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 5.0,640,128.0 +1.8341013824884784,1.83,a-sust-i3,2023-24,Holbrook - John F Kennedy,01330018, 1.0, 0.0, 3.0, 2.0, 1.0, 1.0, 2.0, 10.0,669,66.9 +5.3963133640553,5,a-sust-i3,2023-24,Holland - Holland Elementary,01350005, 0.0, 2.0, 0.0, 3.0, 3.0, 0.0, 0.0, 8.0,226,28.25 +3.7709019091507567,3.77,a-sust-i3,2023-24,Holliston - Holliston High,01360505, 2.0, 3.0, 1.0, 2.0, 3.5, 2.0, 4.0, 17.5,803,45.885714285714286 +5.53657966828771,5,a-sust-i3,2023-24,Holliston - Miller School,01360007, 2.5, 2.0, 0.5, 2.1, 7.5, 6.0, 1.0, 21.7,580,26.72811059907834 +6.469108802624385,5,a-sust-i3,2023-24,Holliston - Placentino Elementary,01360010, 3.0, 3.5, 3.5, 13.1, 7.7, 7.5, 3.0, 41.3,686,16.610169491525426 +5.747437925579476,5,a-sust-i3,2023-24,Holliston - Robert H. Adams Middle School,01360305, 2.5, 6.8, 5.0, 5.0, 2.0, 3.9, 1.6, 26.8,655,24.440298507462686 +4.802552286423254,4.8,a-sust-i3,2023-24,Holyoke - E N White Elementary,01370045, 4.0, 2.0, 3.0, 3.0, 0.0, 1.0, 0.0, 13.0,451,34.69230769230769 +4.579621095750127,4.58,a-sust-i3,2023-24,Holyoke - H.B. Lawrence School,01370070, 4.0, 0.0, 0.0, 2.0, 2.0, 0.0, 1.0, 9.0,334,37.111111111111114 +0.3178743014020978,1,a-sust-i3,2023-24,Holyoke - Holyoke High,01370505, 3.8, 0.0, 4.0, 1.0, 4.0, 4.0, 2.0, 18.8,1567,83.35106382978724 +6.1321044546851,5,a-sust-i3,2023-24,Holyoke - Holyoke STEM Academy,01370320, 4.0, 3.0, 2.0, 5.0, 0.0, 0.0, 1.0, 15.0,304,20.266666666666666 +6.28236279849183,5,a-sust-i3,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 5.0, 1.0, 1.0, 2.0, 2.0, 0.0, 11.0,205,18.636363636363637 +6.0770842061164645,5,a-sust-i3,2023-24,Holyoke - Kelly Elementary,01370040, 4.0, 1.0, 6.0, 2.0, 4.0, 3.0, 2.0, 22.0,459,20.863636363636363 +0.4116743471582183,1,a-sust-i3,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 6.0,494,82.33333333333333 +6.547289883695414,5,a-sust-i3,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 1.0, 1.0, 4.0, 4.0, 7.0, 2.0, 2.0, 21.0,331,15.761904761904763 +7.119303635432668,5,a-sust-i3,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 8.0, 6.0, 9.0, 5.0, 9.0, 7.0, 1.0, 45.0,430,9.555555555555555 +6.759600614439324,5,a-sust-i3,2023-24,Holyoke - Morgan Full Service Community School,01370025, 2.0, 6.0, 6.0, 2.0, 5.0, 3.0, 0.0, 24.0,323,13.458333333333334 +4.45673323092678,4.46,a-sust-i3,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 3.0, 5.0, 7.0, 3.0, 0.0, 0.0, 0.0, 18.0,692,38.44444444444444 +6.966624773076386,5,a-sust-i3,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 3.0, 6.0, 7.0, 5.0, 3.0, 5.0, 4.0, 33.0,370,11.212121212121213 +5.44837002901519,5,a-sust-i3,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 1.0, 2.0, 3.0, 0.0, 1.0, 3.0, 0.8, 10.8,299,27.685185185185183 +6.324749254540526,5,a-sust-i3,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 2.0, 1.0, 7.0, 4.0, 1.0, 2.0, 0.0, 17.0,309,18.176470588235293 +2.8502304147465436,2.85,a-sust-i3,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 1.0, 1.0, 1.0, 1.0, 2.0, 0.0, 2.0, 8.0,447,55.875 +5.423116712122638,5,a-sust-i3,2023-24,Hopedale - Memorial,01380010, 0.0, 2.0, 2.0, 5.1, 6.0, 4.0, 0.5, 19.6,548,27.959183673469386 +7.377733423346736,5,a-sust-i3,2023-24,Hopedale - Park Street School,01380003, 0.0, 2.0, 3.6, 3.0, 3.6, 3.5, 0.0, 15.7,106,6.751592356687898 +5.195523370638578,5,a-sust-i3,2023-24,Hopkinton - Elmwood,01390010, 3.0, 7.0, 4.0, 3.0, 1.0, 2.0, 1.0, 21.0,639,30.428571428571427 +4.100230414746544,4.1,a-sust-i3,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 4.0, 1.0, 5.0, 4.0, 2.0, 0.0, 16.0,677,42.3125 +1.2718894009216588,1.27,a-sust-i3,2023-24,Hopkinton - Hopkinton High,01390505, 1.0, 5.0, 4.0, 3.0, 3.0, 0.0, 1.0, 17.0,1241,73.0 +0.6267281105990781,1,a-sust-i3,2023-24,Hopkinton - Hopkinton Middle School,01390305, 1.0, 1.0, 2.0, 2.0, 2.0, 1.0, 3.0, 12.0,960,80.0 +7.344598054275474,5,a-sust-i3,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 2.7, 1.8, 1.8, 2.7, 3.6, 0.9, 0.0, 13.5,96,7.111111111111111 +6.175750834260289,5,a-sust-i3,2023-24,Hopkinton - Marathon Elementary School,01390005, 1.0, 3.0, 6.0, 8.0, 8.0, 3.0, 0.0, 29.0,574,19.79310344827586 +5.6036866359447,5,a-sust-i3,2023-24,Hudson - C A Farley,01410030, 6.0, 0.0, 3.0, 2.0, 4.0, 2.0, 0.0, 17.0,442,26.0 +3.5990783410138247,3.6,a-sust-i3,2023-24,Hudson - David J. Quinn Middle School,01410410, 2.0, 0.0, 1.0, 0.0, 4.0, 5.0, 0.0, 12.0,573,47.75 +5.142857142857142,5,a-sust-i3,2023-24,Hudson - Forest Avenue Elementary,01410015, 2.0, 0.0, 2.0, 2.0, 2.0, 1.0, 0.0, 9.0,279,31.0 +3.3398617511520734,3.34,a-sust-i3,2023-24,Hudson - Hudson High,01410505, 2.0, 3.0, 3.0, 2.0, 5.0, 1.0, 0.0, 16.0,809,50.5625 +5.2695852534562215,5,a-sust-i3,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0, 0.0, 8.0,237,29.625 +-7.3390388413429894,1,a-sust-i3,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 1.4,233,166.42857142857144 +5.180807806993765,5,a-sust-i3,2023-24,Hull - Lillian M Jacobs,01420015, 4.4, 1.0, 0.8, 3.6, 0.0, 1.8, 2.0, 13.6,416,30.58823529411765 +3.1152073732718892,3.12,a-sust-i3,2023-24,Hull - Memorial Middle,01420305, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,106,53.0 +3.6769804696071975,3.68,a-sust-i3,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 1.6, 5.6, 1.6, 1.6, 4.8, 1.6, 0.0, 16.8,788,46.904761904761905 +3.769146368224709,3.77,a-sust-i3,2023-24,Ipswich - Ipswich High,01440505, 2.0, 1.0, 2.0, 0.0, 2.0, 1.0, 2.5, 10.5,482,45.904761904761905 +4.0880696364567335,4.09,a-sust-i3,2023-24,Ipswich - Ipswich Middle School,01440305, 1.0, 2.0, 1.0, 1.0, 2.0, 1.0, 1.0, 9.0,382,42.44444444444444 +6.25543120473996,5,a-sust-i3,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 1.0, 2.0, 5.0, 6.0, 4.6, 1.0, 19.6,371,18.928571428571427 +5.999457847655191,5,a-sust-i3,2023-24,Ipswich - Winthrop,01440015, 1.0, 1.0, 3.0, 4.0, 3.0, 5.0, 0.0, 17.0,369,21.705882352941178 +0.21856484529295545,1,a-sust-i3,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 2.0, 0.0, 4.0, 1.0, 0.0, 0.0, 0.0, 7.0,591,84.42857142857143 +2.2750797589507266,2.28,a-sust-i3,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 6.0, 9.0, 6.0, 5.0, 0.0, 0.0, 0.0, 26.0,1615,62.11538461538461 +2.5698924731182795,2.57,a-sust-i3,2023-24,King Philip - King Philip Middle School,06900510, 0.0, 4.0, 2.0, 1.0, 2.0, 3.0, 0.0, 12.0,707,58.916666666666664 +1.8086202222824617,1.81,a-sust-i3,2023-24,King Philip - King Philip Regional High,06900505, 0.0, 3.0, 2.0, 1.0, 3.0, 8.0, 0.0, 17.0,1142,67.17647058823529 +6.20109932818833,5,a-sust-i3,2023-24,Kingston - Kingston Elementary,01450005, 4.5, 3.0, 7.0, 5.0, 4.3, 7.0, 2.5, 33.2,648,19.518072289156624 +4.676606126321496,4.68,a-sust-i3,2023-24,Kingston - Kingston Intermediate,01450020, 2.0, 1.0, 0.0, 6.5, 4.5, 2.0, 1.0, 17.0,613,36.05882352941177 +4.6947401875099315,4.69,a-sust-i3,2023-24,Lawrence - Alexander B Bruce,01490015, 1.5, 4.0, 0.0, 1.0, 2.0, 1.0, 2.0, 11.6,416,35.862068965517246 +5.43778801843318,5,a-sust-i3,2023-24,Lawrence - Arlington Elementary,01490009, 8.0, 3.0, 4.0, 1.0, 2.0, 2.0, 0.0, 20.0,556,27.8 +4.457938013915244,4.46,a-sust-i3,2023-24,Lawrence - Arlington Middle School,01490017, 6.0, 2.8, 0.0, 1.0, 3.5, 1.0, 1.0, 15.3,588,38.431372549019606 +6.131921039961483,5,a-sust-i3,2023-24,Lawrence - Edward F. Parthum,01490053, 7.0, 4.0, 8.0, 6.0, 1.0, 3.5, 4.0, 33.5,679,20.26865671641791 +6.62841872767431,5,a-sust-i3,2023-24,Lawrence - Emily G Wetherbee,01490080, 15.0, 6.8, 5.0, 1.0, 2.0, 3.0, 1.0, 33.8,503,14.88165680473373 +5.778801843317972,5,a-sust-i3,2023-24,Lawrence - Francis M Leahy,01490040, 9.0, 3.0, 2.0, 1.0, 2.0, 1.0, 2.0, 20.0,482,24.1 +3.2170749454280863,3.22,a-sust-i3,2023-24,Lawrence - Frost Middle School,01490525, 1.0, 3.0, 4.0, 0.5, 1.0, 0.0, 0.0, 9.5,493,51.89473684210526 +6.528417818740399,5,a-sust-i3,2023-24,Lawrence - Gerard A. Guilmette,01490022, 9.0, 7.5, 6.0, 3.0, 3.0, 0.0, 1.5, 30.0,479,15.966666666666667 +6.322942080057829,5,a-sust-i3,2023-24,Lawrence - Guilmette Middle School,01490025, 7.0, 10.5, 0.0, 1.0, 3.0, 3.0, 1.0, 25.5,464,18.19607843137255 +-9.972350230414746,1,a-sust-i3,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,195,195.0 +6.667139312300602,5,a-sust-i3,2023-24,Lawrence - James F Hennessey,01490020, 3.0, 3.0, 3.0, 3.0, 5.5, 2.0, 0.0, 19.5,282,14.461538461538462 +7.04884792626728,5,a-sust-i3,2023-24,Lawrence - John Breen School,01490003, 4.0, 5.0, 4.0, 2.0, 10.0, 0.0, 0.0, 25.0,258,10.32 +6.670870725200097,5,a-sust-i3,2023-24,Lawrence - John K Tarbox,01490075, 7.0, 1.0, 6.0, 1.0, 3.0, 0.0, 1.0, 19.0,274,14.421052631578947 +6.657011191573404,5,a-sust-i3,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 4.0, 3.0, 0.0, 4.0, 2.0, 1.0, 0.0, 14.0,204,14.571428571428571 +6.933109900851836,5,a-sust-i3,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 6.0, 1.0, 1.0, 3.0, 4.5, 1.0, 0.0, 16.5,191,11.575757575757576 +3.446415419901942,3.45,a-sust-i3,2023-24,Lawrence - Lawrence High School,01490515, 18.0, 22.2, 7.7, 5.8, 6.0, 3.0, 3.0, 65.7,3246,49.406392694063925 +4.3018433179723505,4.3,a-sust-i3,2023-24,Lawrence - Leonard Middle School,01490090, 7.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 8.0,321,40.125 +6.269079464988198,5,a-sust-i3,2023-24,Lawrence - Oliver Elementary School,01490048, 7.1, 8.5, 4.0, 1.0, 0.0, 4.0, 0.0, 24.6,462,18.780487804878046 +6.135122753119358,5,a-sust-i3,2023-24,Lawrence - Oliver Middle School,01490049, 8.0, 2.1, 4.0, 1.0, 0.0, 2.0, 0.0, 17.1,346,20.23391812865497 +4.979006656426011,4.98,a-sust-i3,2023-24,Lawrence - Parthum Middle School,01490027, 8.0, 2.0, 3.0, 0.0, 3.0, 1.0, 1.0, 18.0,590,32.77777777777778 +5.9416282642089095,5,a-sust-i3,2023-24,Lawrence - RISE Academy,01490615, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0,67,22.333333333333332 +6.202764976958525,5,a-sust-i3,2023-24,Lawrence - Robert Frost,01490018, 1.0, 9.0, 8.0, 6.0, 2.0, 0.0, 2.0, 28.0,546,19.5 +7.359028068705488,5,a-sust-i3,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 6.0, 4.0, 4.0, 2.0, 3.0, 2.0, 1.0, 22.0,153,6.954545454545454 +7.863644971908339,5,a-sust-i3,2023-24,Lawrence - School for Exceptional Studies,01490537, 11.0, 22.0, 11.0, 11.0, 11.0, 6.0, 1.0, 73.0,108,1.4794520547945205 +5.235023041474654,5,a-sust-i3,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 3.0, 7.0, 3.0, 1.0, 4.0, 2.0, 2.0, 22.0,660,30.0 +5.587422065600434,5,a-sust-i3,2023-24,Lawrence - Spark Academy,01490085, 8.0, 5.0, 1.0, 0.0, 0.9, 2.0, 0.0, 17.0,445,26.176470588235293 +4.624423963133641,4.62,a-sust-i3,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 12.0, 4.0, 4.0, 1.0, 1.0, 2.0, 0.0, 24.0,879,36.625 +4.910821388046221,4.91,a-sust-i3,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 5.0, 8.0, 3.0, 0.0, 0.0, 3.9, 0.0, 19.9,667,33.517587939698494 +6.516567917489577,5,a-sust-i3,2023-24,Lee - Lee Elementary,01500025, 2.0, 1.0, 4.0, 2.0, 4.0, 7.0, 1.0, 21.0,338,16.095238095238095 +6.310291858678956,5,a-sust-i3,2023-24,Lee - Lee Middle/High School,01500505, 1.0, 1.8, 2.0, 1.0, 4.0, 7.0, 0.0, 16.8,308,18.333333333333332 +6.725941989699105,5,a-sust-i3,2023-24,Leicester - Leicester Elementary,01510005, 5.0, 6.0, 5.0, 5.0, 7.0, 6.0, 0.0, 34.0,470,13.823529411764707 +4.673648931713448,4.67,a-sust-i3,2023-24,Leicester - Leicester High,01510505, 0.0, 2.0, 3.0, 1.0, 2.0, 1.0, 2.0, 11.0,397,36.09090909090909 +7.3052109181141445,5,a-sust-i3,2023-24,Leicester - Leicester Integrated Preschool,01510001, 1.0, 0.0, 2.0, 1.0, 0.0, 1.0, 1.5, 6.5,49,7.538461538461538 +5.798861480075901,5,a-sust-i3,2023-24,Leicester - Leicester Middle,01510015, 4.0, 1.0, 0.0, 3.0, 8.0, 1.0, 0.0, 17.0,406,23.88235294117647 +4.1938897422768395,4.19,a-sust-i3,2023-24,Lenox - Lenox Memorial High,01520505, 1.0, 1.0, 3.0, 1.0, 1.8, 3.0, 0.0, 10.8,446,41.29629629629629 +6.365268008731506,5,a-sust-i3,2023-24,Lenox - Morris,01520015, 1.0, 1.0, 0.0, 4.0, 3.0, 8.0, 2.0, 19.0,337,17.736842105263158 +7.088581669226829,5,a-sust-i3,2023-24,Leominster - Bennett,01530003, 0.0, 2.0, 0.0, 3.0, 3.0, 1.0, 0.0, 9.0,89,9.88888888888889 +0.8482807515065584,1,a-sust-i3,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.4, 0.0, 1.0, 3.0, 6.0, 0.0, 10.4,807,77.59615384615384 +5.158592784084523,5,a-sust-i3,2023-24,Leominster - Fall Brook,01530007, 1.0, 1.0, 5.0, 3.0, 4.5, 5.5, 0.5, 20.5,632,30.829268292682926 +6.722843976300197,5,a-sust-i3,2023-24,Leominster - Frances Drake School,01530010, 3.0, 7.5, 5.5, 6.5, 7.0, 4.5, 1.0, 35.0,485,13.857142857142858 +5.804775869291999,5,a-sust-i3,2023-24,Leominster - Johnny Appleseed,01530025, 2.0, 2.0, 5.5, 6.0, 5.5, 6.0, 0.5, 27.5,655,23.818181818181817 +-Infinity,1,a-sust-i3,2023-24,Leominster - Leominster Academy,01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +5.276916631755341,5,a-sust-i3,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.0, 2.2,65,29.545454545454543 +3.152254450167163,3.15,a-sust-i3,2023-24,Leominster - Leominster High School,01530505, 1.0, 3.4, 2.0, 3.0, 1.0, 4.0, 6.0, 20.4,1073,52.59803921568628 +7.631336405529954,5,a-sust-i3,2023-24,Leominster - Lincoln School,01530005, 1.0, 0.0, 4.0, 1.0, 2.0, 2.0, 0.0, 10.0,40,4.0 +5.197318810222036,5,a-sust-i3,2023-24,Leominster - Northwest,01530030, 2.0, 3.0, 5.0, 6.0, 1.0, 4.5, 0.5, 22.0,669,30.40909090909091 +6.932411674347159,5,a-sust-i3,2023-24,Leominster - Priest Street,01530040, 3.0, 0.0, 1.0, 3.0, 2.5, 1.5, 1.0, 12.0,139,11.583333333333334 +5.304147465437788,5,a-sust-i3,2023-24,Leominster - Samoset School,01530045, 2.0, 3.0, 4.0, 2.0, 2.0, 1.0, 2.0, 16.0,468,29.25 +2.996708360763661,3.0,a-sust-i3,2023-24,Leominster - Sky View Middle School,01530320, 5.0, 2.0, 1.0, 1.0, 1.0, 5.1, 1.0, 16.1,874,54.28571428571428 +6.691244239631336,5,a-sust-i3,2023-24,Leverett - Leverett Elementary,01540005, 3.0, 2.0, 0.0, 1.0, 2.0, 2.0, 0.0, 10.0,142,14.2 +1.314067015543232,1.31,a-sust-i3,2023-24,Lexington - Bowman,01550008, 0.0, 0.0, 0.0, 1.0, 2.1, 1.3, 1.6, 5.9,428,72.54237288135593 +4.941767909509845,4.94,a-sust-i3,2023-24,Lexington - Bridge,01550006, 2.4, 1.6, 0.8, 0.5, 3.0, 1.6, 1.2, 11.0,365,33.18181818181818 +6.7891930965934755,5,a-sust-i3,2023-24,Lexington - Fiske,01550015, 2.6, 9.0, 5.8, 4.3, 1.4, 2.5, 0.0, 25.5,335,13.137254901960784 +5.913849719915008,5,a-sust-i3,2023-24,Lexington - Harrington,01550030, 3.4, 4.2, 2.2, 2.2, 1.4, 3.3, 0.0, 16.7,378,22.634730538922156 +4.171570365118752,4.17,a-sust-i3,2023-24,Lexington - Jonas Clarke Middle,01550305, 1.8, 8.2, 2.7, 1.8, 2.3, 2.7, 0.0, 19.5,810,41.53846153846154 +4.633123295401109,4.63,a-sust-i3,2023-24,Lexington - Joseph Estabrook,01550010, 3.5, 3.6, 1.4, 3.6, 1.7, 1.0, 0.0, 14.7,537,36.53061224489796 +7.539170506912442,5,a-sust-i3,2023-24,Lexington - Lexington Children's Place,01550001, 0.9, 2.5, 1.6, 2.5, 5.4, 1.6, 0.7, 15.2,76,5.0 +1.6979187906964093,1.7,a-sust-i3,2023-24,Lexington - Lexington High,01550505, 9.2, 3.7, 3.8, 3.8, 3.6, 6.2, 3.5, 33.9,2318,68.37758112094396 +5.719345802837263,5,a-sust-i3,2023-24,Lexington - Maria Hastings,01550035, 2.4, 5.6, 2.5, 7.9, 2.1, 4.5, 0.5, 25.5,631,24.745098039215687 +5.30480163979706,5,a-sust-i3,2023-24,Lexington - Wm Diamond Middle,01550310, 7.5, 7.9, 3.6, 3.1, 3.2, 4.6, 1.7, 31.7,927,29.242902208201894 +-Infinity,1,a-sust-i3,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,519,Infinity +6.759401800625321,5,a-sust-i3,2023-24,Lincoln - Hanscom School,01570305, 4.2, 3.0, 12.6, 10.6, 2.9, 3.5, 0.0, 36.7,494,13.460490463215258 +5.645619935789635,5,a-sust-i3,2023-24,Lincoln - Lincoln School,01570025, 2.4, 2.7, 2.1, 5.5, 2.8, 3.6, 2.1, 21.1,539,25.545023696682463 +2.0112647209421404,2.01,a-sust-i3,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 6.0, 2.0, 2.0, 1.5, 5.0, 2.0, 4.0, 22.5,1462,64.97777777777777 +-1.1601617605567573,1,a-sust-i3,2023-24,Littleton - Littleton High School,01580505, 1.5, 0.0, 0.8, 0.9, 1.0, 0.8, 0.0, 4.9,487,99.38775510204081 +3.2946883337375694,3.29,a-sust-i3,2023-24,Littleton - Littleton Middle School,01580305, 0.8, 0.8, 1.5, 0.8, 0.0, 3.9, 0.0, 7.6,388,51.05263157894737 +3.846701277489354,3.85,a-sust-i3,2023-24,Littleton - Russell St Elementary,01580015, 0.8, 0.8, 0.9, 1.5, 0.8, 1.5, 1.8, 7.9,356,45.063291139240505 +5.365839155641445,5,a-sust-i3,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.8, 0.8, 2.5, 3.8, 1.5, 4.8, 1.5, 15.5,443,28.580645161290324 +5.680388457612965,5,a-sust-i3,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 3.0, 2.4, 5.0, 3.5, 1.0, 14.9,375,25.167785234899327 +5.326535281236723,5,a-sust-i3,2023-24,Longmeadow - Center,01590010, 3.0, 2.5, 2.0, 1.6, 3.0, 2.0, 0.0, 14.1,409,29.00709219858156 +4.403282005170281,4.4,a-sust-i3,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 2.0, 1.2, 1.0, 2.0, 2.0, 0.0, 8.2,320,39.024390243902445 +-2.495391705069124,1,a-sust-i3,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, 1.0, 0.0, 3.0, 1.0, 3.0, 0.0, 8.0,911,113.875 +3.238095238095238,3.24,a-sust-i3,2023-24,Longmeadow - Williams Middle,01590305, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0, 1.0, 6.0,310,51.666666666666664 +6.566308243727598,5,a-sust-i3,2023-24,Longmeadow - Wolf Swamp Road,01590025, 2.0, 4.5, 5.8, 5.0, 4.0, 5.5, 2.0, 28.8,448,15.555555555555555 +5.627940819791414,5,a-sust-i3,2023-24,Lowell - Abraham Lincoln,01600020, 6.0, 2.0, 5.0, 2.0, 0.0, 2.0, 2.0, 19.0,489,25.736842105263158 +1.794162826420891,1.79,a-sust-i3,2023-24,Lowell - B.F. Butler Middle School,01600310, 2.0, 0.5, 2.0, 0.0, 0.0, 3.0, 0.0, 7.5,505,67.33333333333333 +6.298475717830556,5,a-sust-i3,2023-24,Lowell - Bartlett Community Partnership,01600090, 3.0, 3.0, 3.0, 2.0, 9.0, 4.0, 2.0, 26.0,480,18.46153846153846 +7.5207373271889395,5,a-sust-i3,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 1.0, 4.0, 5.0, 3.0, 5.0, 1.0, 1.0, 20.0,104,5.2 +6.092844175793484,5,a-sust-i3,2023-24,Lowell - Charles W Morey,01600030, 2.0, 3.0, 4.0, 3.1, 5.0, 4.0, 2.0, 23.1,478,20.69264069264069 +5.885035168566578,5,a-sust-i3,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 4.0, 3.0, 2.0, 0.0, 6.0, 3.0, 1.0, 19.0,436,22.94736842105263 +3.668202764976958,3.67,a-sust-i3,2023-24,Lowell - Dr An Wang School,01600345, 3.0, 5.0, 2.0, 2.0, 1.0, 0.0, 1.0, 14.0,658,47.0 +6.100953809881041,5,a-sust-i3,2023-24,Lowell - Dr Gertrude Bailey,01600002, 1.0, 1.0, 5.0, 8.0, 4.5, 1.0, 1.0, 21.5,443,20.6046511627907 +7.794399149237858,5,a-sust-i3,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 8.0, 5.0, 4.0, 4.0, 5.0, 0.0, 0.0, 26.0,58,2.230769230769231 +6.796576695194206,5,a-sust-i3,2023-24,Lowell - Greenhalge,01600015, 2.0, 9.0, 7.0, 7.0, 4.0, 4.0, 2.0, 35.0,457,13.057142857142857 +2.803598858898398,2.8,a-sust-i3,2023-24,Lowell - Henry J Robinson Middle,01600330, 1.0, 2.0, 2.0, 0.5, 2.0, 3.0, 0.0, 10.5,592,56.38095238095238 +5.800953997897971,5,a-sust-i3,2023-24,Lowell - James S Daley Middle School,01600315, 9.0, 6.0, 3.0, 5.0, 2.5, 3.0, 0.0, 28.5,680,23.859649122807017 +4.65492003252914,4.65,a-sust-i3,2023-24,Lowell - James Sullivan Middle School,01600340, 2.0, 6.0, 2.0, 1.0, 5.0, 0.0, 1.0, 17.0,617,36.294117647058826 +6.559139784946236,5,a-sust-i3,2023-24,Lowell - John J Shaughnessy,01600050, 2.0, 4.0, 8.0, 4.0, 6.0, 4.0, 2.0, 30.0,469,15.633333333333333 +6.202764976958525,5,a-sust-i3,2023-24,Lowell - Joseph McAvinnue,01600010, 1.0, 1.0, 6.0, 2.0, 3.0, 7.0, 2.0, 22.0,429,19.5 +4.611547844944429,4.61,a-sust-i3,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 3.0, 1.0, 3.0, 5.0, 1.0, 3.0, 1.0, 17.0,625,36.76470588235294 +7.705069124423963,5,a-sust-i3,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 1.0, 1.5, 1.0, 1.5, 0.0, 0.0, 5.0,16,3.2 +7.489542715349168,5,a-sust-i3,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 1.0, 1.0, 3.5, 0.0, 1.0, 0.0, 6.5,36,5.538461538461538 +-3.8320146074254398,1,a-sust-i3,2023-24,Lowell - Lowell High,01600505, 3.0, 7.0, 2.0, 4.0, 2.5, 3.0, 5.0, 26.5,3402,128.37735849056602 +5.922077922077922,5,a-sust-i3,2023-24,Lowell - Moody Elementary,01600027, 3.0, 0.0, 0.0, 2.0, 1.0, 3.0, 2.0, 11.0,248,22.545454545454547 +6.1064097193129445,5,a-sust-i3,2023-24,Lowell - Pawtucketville Memorial,01600036, 2.5, 1.5, 8.0, 2.0, 1.0, 5.0, 2.0, 22.0,452,20.545454545454547 +6.426352619901007,5,a-sust-i3,2023-24,Lowell - Peter W Reilly,01600040, 0.0, 1.0, 6.0, 8.0, 6.0, 5.0, 1.0, 27.0,461,17.074074074074073 +6.525345622119816,5,a-sust-i3,2023-24,Lowell - Pyne Arts,01600018, 2.0, 4.0, 9.0, 7.0, 4.0, 2.0, 1.0, 29.0,464,16.0 +5.273160654695694,5,a-sust-i3,2023-24,Lowell - Rogers STEM Academy,01600005, 3.0, 6.0, 8.0, 5.0, 3.0, 4.0, 0.0, 29.0,858,29.586206896551722 +5.832977408115094,5,a-sust-i3,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 2.5, 6.0, 4.0, 2.0, 1.5, 2.0, 2.5, 20.5,482,23.51219512195122 +-Infinity,1,a-sust-i3,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +6.284296348812478,5,a-sust-i3,2023-24,Lowell - Washington,01600055, 0.0, 2.0, 3.0, 2.0, 1.0, 5.0, 0.0, 13.0,242,18.615384615384617 +3.2937788018433176,3.29,a-sust-i3,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 2.0, 5.0, 2.0, 4.0, 1.0, 2.0, 0.0, 16.0,817,51.0625 +-Infinity,1,a-sust-i3,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +7.140582919384762,5,a-sust-i3,2023-24,Ludlow - East Street Elementary School,01610010, 5.0, 7.0, 5.5, 5.0, 11.0, 4.0, 1.0, 38.5,359,9.324675324675324 +5.083776438615148,5,a-sust-i3,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 1.0, 4.5, 3.0, 4.0, 7.0, 0.0, 19.5,617,31.641025641025642 +-0.13228517213336966,1,a-sust-i3,2023-24,Ludlow - Ludlow Senior High,01610505, 1.0, 1.0, 0.0, 1.0, 1.0, 4.5, 0.0, 8.5,750,88.23529411764706 +4.013637555730396,4.01,a-sust-i3,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 1.4, 4.0, 6.3, 0.6, 12.3,532,43.2520325203252 +7.354838709677419,5,a-sust-i3,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,7,7.0 +4.816731655441332,4.82,a-sust-i3,2023-24,Lunenburg - Lunenburg High,01620505, 2.0, 3.0, 3.0, 2.0, 1.0, 1.0, 1.0, 13.0,449,34.53846153846154 +5.211981566820277,5,a-sust-i3,2023-24,Lunenburg - Lunenburg Middle School,01620305, 1.0, 1.0, 1.0, 1.0, 2.0, 6.0, 0.0, 12.0,363,30.25 +6.361960620025137,5,a-sust-i3,2023-24,Lunenburg - Lunenburg Primary School,01620010, 4.0, 1.0, 6.0, 5.0, 3.0, 3.0, 0.0, 22.0,391,17.772727272727273 +6.1054787506400405,5,a-sust-i3,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 1.0, 0.0, 5.0, 4.0, 3.0, 4.0, 1.0, 18.0,370,20.555555555555557 +1.5220539828834752,1.52,a-sust-i3,2023-24,Lynn - A Drewicz Elementary,01630016, 2.0, 2.0, 0.0, 0.0, 1.0, 1.0, 1.0, 7.0,492,70.28571428571429 +-13.013824884792626,1,a-sust-i3,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +1.206831119544592,1.21,a-sust-i3,2023-24,Lynn - Breed Middle School,01630405, 3.0, 1.0, 2.0, 1.0, 6.0, 1.0, 3.0, 17.0,1253,73.70588235294117 +0.6958525345622117,1,a-sust-i3,2023-24,Lynn - Brickett Elementary,01630020, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 4.0,317,79.25 +7.462895280470364,5,a-sust-i3,2023-24,Lynn - Capt William G Shoemaker,01630090, 14.0, 14.0, 3.0, 7.0, 12.0, 6.0, 2.0, 58.0,338,5.827586206896552 +-1.8907175773535225,1,a-sust-i3,2023-24,Lynn - Classical High,01630505, 3.0, 1.0, 1.0, 1.0, 6.0, 4.5, 1.0, 17.5,1878,107.31428571428572 +4.411290322580645,4.41,a-sust-i3,2023-24,Lynn - Cobbet Elementary,01630035, 1.0, 3.0, 4.0, 3.0, 2.0, 3.0, 0.0, 16.0,623,38.9375 +5.513481713893519,5,a-sust-i3,2023-24,Lynn - E J Harrington,01630045, 3.0, 3.0, 5.5, 4.0, 4.0, 3.0, 1.0, 23.5,634,26.97872340425532 +3.0806451612903225,3.08,a-sust-i3,2023-24,Lynn - Edward A Sisson,01630095, 1.0, 0.0, 1.0, 1.0, 1.0, 1.0, 3.0, 8.0,427,53.375 +7.324116743471583,5,a-sust-i3,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 3.0, 2.0, 2.0, 3.0, 2.0, 12.0,88,7.333333333333333 +-Infinity,1,a-sust-i3,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,157,Infinity +5.3380319869883435,5,a-sust-i3,2023-24,Lynn - Hood,01630055, 5.0, 1.0, 3.0, 3.0, 2.0, 2.0, 1.0, 17.0,491,28.88235294117647 +2.6390168970814134,2.64,a-sust-i3,2023-24,Lynn - Ingalls,01630060, 1.0, 0.0, 2.0, 2.0, 1.0, 2.0, 4.0, 12.0,698,58.166666666666664 +6.270792187842879,5,a-sust-i3,2023-24,Lynn - Julia F Callahan,01630030, 3.0, 7.0, 0.0, 3.0, 3.0, 4.0, 1.0, 21.0,394,18.761904761904763 +3.0230414746543777,3.02,a-sust-i3,2023-24,Lynn - Lincoln-Thomson,01630070, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 4.0,216,54.0 +-3.9354838709677415,1,a-sust-i3,2023-24,Lynn - Lynn English High,01630510, 0.0, 1.0, 3.0, 4.0, 1.0, 5.0, 2.0, 16.0,2072,129.5 +4.86676191817761,4.87,a-sust-i3,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 7.0, 5.0, 6.0, 4.0, 7.0, 12.8, 4.0, 45.8,1557,33.99563318777293 +5.526881720430108,5,a-sust-i3,2023-24,Lynn - Lynn Woods,01630075, 2.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 6.0,161,26.833333333333332 +3.8294930875576036,3.83,a-sust-i3,2023-24,Lynn - Pickering Middle,01630420, 2.0, 1.0, 2.0, 3.0, 0.0, 3.0, 1.0, 12.0,543,45.25 +-30.525345622119822,1,a-sust-i3,2023-24,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,418,418.0 +1.7557603686635943,1.76,a-sust-i3,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 4.0,271,67.75 +4.425080296048038,4.43,a-sust-i3,2023-24,Lynn - Thurgood Marshall Mid,01630305, 14.0, 3.0, 1.0, 1.0, 4.0, 7.0, 3.0, 33.0,1280,38.78787878787879 +-3.6743471582181275,1,a-sust-i3,2023-24,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,380,126.66666666666667 +7.425735554767812,5,a-sust-i3,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 1.0, 3.0, 2.0, 3.0, 3.0, 1.0, 0.0, 13.0,81,6.230769230769231 +-2.299539170506912,1,a-sust-i3,2023-24,Lynn - Washington Elementary School,01630005, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 4.0,447,111.75 +7.723502304147465,5,a-sust-i3,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 1.0, 4.0, 2.0, 0.0, 1.0, 8.0,24,3.0 +3.3581901968998737,3.36,a-sust-i3,2023-24,Lynn - Wm P Connery,01630040, 0.0, 1.0, 4.0, 3.0, 1.0, 2.0, 0.0, 11.0,554,50.36363636363637 +5.763108730850666,5,a-sust-i3,2023-24,Lynnfield - Huckleberry Hill,01640010, 2.0, 3.0, 1.0, 5.0, 4.5, 2.0, 1.0, 18.5,449,24.27027027027027 +0.48189598420013163,1,a-sust-i3,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 2.0, 1.0, 0.0, 2.0, 2.0, 0.0, 7.0,571,81.57142857142857 +5.0297444490992875,5,a-sust-i3,2023-24,Lynnfield - Lynnfield Middle School,01640405, 2.0, 4.0, 0.0, 3.0, 6.0, 5.0, 2.0, 22.0,709,32.22727272727273 +7.28110599078341,5,a-sust-i3,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 1.0, 1.0, 1.0, 2.0, 0.0, 5.0,39,7.8 +0.29493087557603714,1,a-sust-i3,2023-24,Lynnfield - Summer Street,01640020, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 0.0, 5.0,418,83.6 +-Infinity,1,a-sust-i3,2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +1.079877112135177,1.08,a-sust-i3,2023-24,Malden - Beebe,01650003, 0.0, 1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 12.0,901,75.08333333333333 +0.4172601591956434,1,a-sust-i3,2023-24,Malden - Ferryway,01650013, 2.0, 1.0, 2.0, 0.0, 3.0, 1.0, 2.0, 11.0,905,82.27272727272727 +5.332039776861508,5,a-sust-i3,2023-24,Malden - Forestdale,01650027, 1.0, 2.0, 4.0, 4.0, 2.0, 1.0, 5.0, 19.0,550,28.94736842105263 +-4.672811059907834,1,a-sust-i3,2023-24,Malden - Linden,01650047, 1.0, 2.0, 0.0, 1.0, 2.0, 0.0, 0.0, 6.0,825,137.5 +7.29898058930317,5,a-sust-i3,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 3.0, 6.0, 3.0, 3.0, 12.0, 6.0, 33.0,251,7.606060606060606 +-6.546850998463902,1,a-sust-i3,2023-24,Malden - Malden High,01650505, 0.0, 0.0, 2.0, 2.0, 2.0, 5.0, 1.0, 12.0,1894,157.83333333333334 +1.7063857801184983,1.71,a-sust-i3,2023-24,Malden - Salemwood,01650057, 1.0, 1.0, 0.0, 2.0, 2.0, 8.0, 0.0, 14.0,956,68.28571428571429 +5.361751152073732,5,a-sust-i3,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 2.0, 0.0, 1.0, 2.0, 3.0, 0.0, 8.0,229,28.625 +2.7333772218564842,2.73,a-sust-i3,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 1.0, 0.0, 3.0, 0.0, 2.0, 1.0, 0.0, 7.0,400,57.142857142857146 +2.9493087557603688,2.95,a-sust-i3,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 2.0, 1.0, 0.0, 0.0, 2.0, 0.0, 0.0, 5.0,274,54.8 +6.04476629361422,5,a-sust-i3,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 2.0, 0.0, 3.0, 3.0, 3.0, 3.0, 0.0, 14.0,297,21.214285714285715 +5.9364113265513145,5,a-sust-i3,2023-24,Mansfield - Everett W Robinson,01670007, 1.0, 3.0, 0.0, 8.8, 9.0, 9.0, 1.0, 31.8,712,22.38993710691824 +3.738682569802114,3.74,a-sust-i3,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, 1.0, 1.0, 3.0, 8.0, 4.0, 0.0, 17.0,786,46.23529411764706 +3.071128030454819,3.07,a-sust-i3,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 1.0, 0.0, 1.0, 5.6, 4.2, 2.0, 0.0, 13.8,738,53.47826086956521 +3.6640134059488894,3.66,a-sust-i3,2023-24,Mansfield - Mansfield High,01670505, 0.0, 3.0, 3.0, 2.0, 4.0, 7.0, 3.0, 22.0,1035,47.04545454545455 +7.0690313270958445,5,a-sust-i3,2023-24,Mansfield - Roland Green School,01670003, 0.8, 0.0, 0.0, 1.0, 3.5, 3.0, 1.6, 9.9,100,10.1010101010101 +-0.509984639016897,1,a-sust-i3,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0,277,92.33333333333333 +5.492775130828712,5,a-sust-i3,2023-24,Marblehead - Glover,01680020, 0.0, 3.0, 1.0, 0.0, 2.0, 5.8, 0.0, 11.8,321,27.203389830508474 +3.4736303123399894,3.47,a-sust-i3,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 1.0, 1.0, 2.0, 2.0, 1.0, 2.0, 9.0,442,49.111111111111114 +0.6098169365408189,1,a-sust-i3,2023-24,Marblehead - Marblehead High,01680505, 1.0, 1.0, 1.0, 2.0, 1.0, 3.5, 1.4, 10.9,874,80.18348623853211 +3.360284876413909,3.36,a-sust-i3,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.8, 0.0, 0.0, 1.0, 3.0, 3.0, 1.0, 8.8,443,50.340909090909086 +3.6962532558605488,3.7,a-sust-i3,2023-24,Marblehead - Village School,01680016, 2.8, 0.0, 0.0, 0.0, 1.7, 5.0, 2.0, 11.5,537,46.69565217391305 +-45.76344086021506,1,a-sust-i3,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,175,583.3333333333334 +5.891027378693413,5,a-sust-i3,2023-24,Marion - Sippican,01690005, 1.0, 6.0, 2.0, 2.0, 2.0, 4.0, 0.0, 17.0,389,22.88235294117647 +3.649769585253456,3.65,a-sust-i3,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 2.0, 3.0, 1.0, 2.0, 6.0, 4.0, 2.0, 20.0,944,47.2 +5.604418111330554,5,a-sust-i3,2023-24,Marlborough - Charles Jaworek School,01700030, 5.0, 4.0, 2.0, 4.0, 2.2, 8.0, 0.0, 25.2,655,25.992063492063494 +6.879456706281834,5,a-sust-i3,2023-24,Marlborough - Early Childhood Center,01700006, 1.8, 3.0, 1.8, 3.6, 6.2, 2.6, 0.0, 19.0,231,12.157894736842104 +6.000468640162462,5,a-sust-i3,2023-24,Marlborough - Francis J Kane,01700008, 5.0, 2.0, 5.2, 3.0, 1.2, 5.2, 2.0, 23.6,512,21.694915254237287 +5.111651366159875,5,a-sust-i3,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 7.2, 2.0, 5.0, 2.0, 4.0, 4.2, 1.0, 25.4,796,31.338582677165356 +1.7757296466973886,1.78,a-sust-i3,2023-24,Marlborough - Marlborough High,01700505, 2.0, 2.0, 1.0, 1.0, 2.0, 6.0, 1.0, 15.0,1013,67.53333333333333 +5.309500535306987,5,a-sust-i3,2023-24,Marlborough - Richer,01700025, 0.0, 3.0, 4.0, 7.4, 2.4, 3.0, 0.0, 19.8,578,29.19191919191919 +6.8106210226025885,5,a-sust-i3,2023-24,Marshfield - Daniel Webster,01710015, 4.7, 2.0, 1.0, 5.3, 4.2, 1.5, 2.3, 21.0,271,12.904761904761905 +4.90973163458932,4.91,a-sust-i3,2023-24,Marshfield - Eames Way School,01710005, 1.0, 0.0, 1.0, 0.0, 3.0, 1.8, 0.0, 6.8,228,33.529411764705884 +3.0475412704894125,3.05,a-sust-i3,2023-24,Marshfield - Furnace Brook Middle,01710310, 2.6, 0.0, 0.0, 0.5, 2.5, 6.9, 3.4, 15.8,849,53.734177215189874 +5.659384013526506,5,a-sust-i3,2023-24,Marshfield - Gov Edward Winslow,01710020, 3.0, 2.0, 1.9, 0.0, 3.0, 2.5, 1.6, 13.9,353,25.39568345323741 +0.6459293394777259,1,a-sust-i3,2023-24,Marshfield - Marshfield High,01710505, 1.0, 0.0, 1.4, 1.0, 4.5, 4.0, 2.4, 14.4,1149,79.79166666666667 +6.420013166556946,5,a-sust-i3,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 2.0, 5.0, 0.0, 0.0, 7.0,120,17.142857142857142 +6.570166024872167,5,a-sust-i3,2023-24,Marshfield - Martinson Elementary,01710025, 5.0, 2.9, 3.0, 2.0, 6.4, 7.5, 2.5, 29.2,453,15.513698630136986 +6.538260588805072,5,a-sust-i3,2023-24,Marshfield - South River,01710010, 2.0, 0.0, 1.0, 1.8, 4.9, 5.0, 1.0, 15.7,249,15.859872611464969 +1.393160320155226,1.39,a-sust-i3,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 1.0, 2.0, 2.0, 0.0, 1.0, 3.5, 9.5,681,71.6842105263158 +5.398543184183143,5,a-sust-i3,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 0.0, 0.0, 2.5, 1.2, 2.5, 6.2,175,28.225806451612904 +5.476072314781992,5,a-sust-i3,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 4.0, 6.0, 2.0, 1.0, 0.0, 0.0, 0.0, 13.0,356,27.384615384615383 +2.3836405529953915,2.38,a-sust-i3,2023-24,Masconomet - Masconomet Regional High School,07050505, 2.0, 1.0, 2.0, 1.0, 3.0, 4.0, 3.0, 16.0,975,60.9375 +5.03374119391917,5,a-sust-i3,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 2.0, 4.0, 1.0, 2.0, 4.5, 3.4, 0.5, 17.4,560,32.18390804597701 +5.9416282642089095,5,a-sust-i3,2023-24,Mashpee - Kenneth Coombs School,01720005, 2.0, 0.0, 5.0, 2.0, 3.0, 6.0, 0.0, 18.0,402,22.333333333333332 +-0.16326530612244905,1,a-sust-i3,2023-24,Mashpee - Mashpee Middle-High School,01720505, 3.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 7.0,620,88.57142857142857 +2.628044766293614,2.63,a-sust-i3,2023-24,Mashpee - Quashnet School,01720035, 0.0, 2.0, 1.0, 1.0, 0.0, 3.0, 0.0, 7.0,408,58.285714285714285 +6.2154151983374,5,a-sust-i3,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 24.5, 17.5, 9.2, 8.0, 0.0, 1.0, 1.0, 61.2,1185,19.362745098039216 +5.880184331797235,5,a-sust-i3,2023-24,Mattapoisett - Center,01730005, 1.0, 0.0, 0.0, 2.0, 1.0, 4.0, 2.0, 10.0,230,23.0 +6.178115957560819,5,a-sust-i3,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.0, 0.0, 0.0, 2.0, 1.6, 4.0, 8.6,170,19.767441860465116 +4.011730205278592,4.01,a-sust-i3,2023-24,Maynard - Fowler School,01740305, 1.0, 0.0, 1.0, 0.0, 5.0, 3.0, 1.0, 11.0,476,43.27272727272727 +6.591178406846609,5,a-sust-i3,2023-24,Maynard - Green Meadow,01740010, 1.0, 3.0, 3.0, 6.0, 8.0, 5.0, 2.0, 28.0,428,15.285714285714286 +3.4377880184331797,3.44,a-sust-i3,2023-24,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 1.0, 3.0, 2.0, 0.0, 6.0,297,49.5 +5.377815278769391,5,a-sust-i3,2023-24,Medfield - Dale Street,01750005, 2.0, 0.0, 0.0, 4.0, 3.2, 5.0, 0.0, 14.2,404,28.450704225352116 +0.9372871168102576,1,a-sust-i3,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 1.0, 1.0, 1.0, 4.6, 1.0, 0.6, 9.2,705,76.6304347826087 +6.638983862709148,5,a-sust-i3,2023-24,Medfield - Memorial School,01750003, 4.0, 1.0, 2.0, 5.8, 9.1, 5.0, 1.0, 27.9,412,14.767025089605735 +4.993276422150034,4.99,a-sust-i3,2023-24,Medfield - Ralph Wheelock School,01750007, 1.0, 2.0, 0.0, 4.6, 2.6, 0.0, 2.0, 12.2,398,32.622950819672134 +3.0076804915514592,3.01,a-sust-i3,2023-24,Medfield - Thomas Blake Middle,01750305, 1.0, 3.0, 0.0, 0.0, 0.2, 6.6, 0.0, 10.8,585,54.166666666666664 +4.90668202764977,4.91,a-sust-i3,2023-24,Medford - Brooks School,01760130, 2.0, 0.0, 2.0, 1.0, 1.0, 6.0, 4.0, 16.0,537,33.5625 +6.617511520737327,5,a-sust-i3,2023-24,Medford - Curtis-Tufts,01760510, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,15,15.0 +3.4009216589861753,3.4,a-sust-i3,2023-24,Medford - John J McGlynn Elementary School,01760068, 1.0, 2.0, 0.0, 2.0, 4.0, 0.0, 1.0, 10.0,499,49.9 +2.312047399605003,2.31,a-sust-i3,2023-24,Medford - John J. McGlynn Middle School,01760320, 1.0, 0.0, 0.0, 3.0, 1.0, 2.0, 0.0, 7.0,432,61.714285714285715 +2.7926267281105988,2.79,a-sust-i3,2023-24,Medford - Madeleine Dugger Andrews,01760315, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0, 0.0, 8.0,452,56.5 +-1.979053204859657,1,a-sust-i3,2023-24,Medford - Medford High,01760505, 1.0, 2.0, 1.0, 1.0, 0.0, 0.0, 6.0, 11.0,1191,108.27272727272727 +6.120473996050033,5,a-sust-i3,2023-24,Medford - Milton Fuller Roberts,01760150, 5.0, 4.0, 1.0, 5.0, 7.0, 2.0, 4.0, 28.0,571,20.392857142857142 +4.643625192012289,4.64,a-sust-i3,2023-24,Medford - Missituk Elementary School,01760140, 3.0, 1.0, 1.0, 2.0, 4.0, 0.0, 1.0, 12.0,437,36.416666666666664 +3.72685379136992,3.73,a-sust-i3,2023-24,Medway - Burke/Memorial Elementary School,01770015, 1.0, 1.0, 0.0, 2.0, 2.0, 4.0, 1.0, 11.0,510,46.36363636363637 +6.552227342549924,5,a-sust-i3,2023-24,Medway - John D Mc Govern Elementary,01770013, 1.0, 5.0, 2.0, 7.0, 4.0, 3.0, 2.0, 24.0,377,15.708333333333334 +0.007899934167215572,1,a-sust-i3,2023-24,Medway - Medway High,01770505, 0.0, 1.0, 1.0, 0.0, 2.0, 2.0, 1.0, 7.0,607,86.71428571428571 +2.6704067321178115,2.67,a-sust-i3,2023-24,Medway - Medway Middle,01770305, 2.0, 1.0, 2.5, 1.0, 4.0, 1.0, 0.0, 11.5,665,57.82608695652174 +7.085430698333925,5,a-sust-i3,2023-24,Melrose - Early Childhood Center,01780003, 2.8, 5.2, 2.8, 5.4, 6.4, 2.6, 0.8, 26.0,258,9.923076923076923 +4.967098917586539,4.97,a-sust-i3,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 1.0, 2.8, 0.8, 3.0, 1.0, 0.0, 8.6,283,32.906976744186046 +5.6871576384662195,5,a-sust-i3,2023-24,Melrose - Horace Mann,01780025, 1.6, 2.0, 4.0, 2.0, 0.0, 1.0, 0.0, 10.6,266,25.09433962264151 +5.817681021240531,5,a-sust-i3,2023-24,Melrose - Lincoln,01780020, 2.8, 1.0, 2.8, 2.8, 7.0, 1.0, 0.0, 17.4,412,23.678160919540232 +-2.5222734254992307,1,a-sust-i3,2023-24,Melrose - Melrose High,01780505, 0.0, 1.0, 0.0, 2.0, 1.0, 3.4, 1.0, 8.4,959,114.16666666666666 +-3.0356536502546705,1,a-sust-i3,2023-24,Melrose - Melrose Middle,01780305, 1.8, 0.0, 0.0, 1.0, 1.8, 3.0, 0.0, 7.6,910,119.73684210526316 +6.37092731829574,5,a-sust-i3,2023-24,Melrose - Roosevelt,01780035, 3.8, 1.0, 2.0, 4.0, 4.0, 7.0, 1.0, 22.8,403,17.675438596491226 +4.99524184181934,5.0,a-sust-i3,2023-24,Melrose - Winthrop,01780050, 1.8, 4.0, 1.5, 3.0, 1.0, 1.0, 0.0, 12.3,401,32.60162601626016 +5.875688434303698,5,a-sust-i3,2023-24,Mendon-Upton - Henry P Clough,07100179, 1.8, 2.0, 1.4, 2.9, 3.9, 2.4, 2.0, 16.4,378,23.04878048780488 +6.083717357910905,5,a-sust-i3,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 4.0, 6.8, 5.4, 3.8, 4.0, 0.0, 24.0,499,20.791666666666668 +4.743471582181259,4.74,a-sust-i3,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 1.0, 3.0, 2.0, 0.0, 2.6, 8.4, 1.0, 18.0,636,35.333333333333336 +2.2754736303123395,2.28,a-sust-i3,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 1.0, 0.0, 0.0, 1.0, 3.0, 3.0, 1.0, 9.0,559,62.111111111111114 +3.8605489881787216,3.86,a-sust-i3,2023-24,Methuen - Comprehensive Grammar School,01810050, 1.0, 0.0, 4.0, 2.0, 7.0, 8.0, 1.0, 23.0,1033,44.91304347826087 +3.190615835777126,3.19,a-sust-i3,2023-24,Methuen - Donald P Timony Grammar,01810060, 1.0, 2.0, 2.0, 7.0, 8.0, 2.0, 0.0, 22.0,1148,52.18181818181818 +3.6067588325652844,3.61,a-sust-i3,2023-24,Methuen - Early Childhood Center,01810001, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,143,47.666666666666664 +6.146047500886211,5,a-sust-i3,2023-24,Methuen - Marsh Grammar School,01810030, 12.0, 6.0, 9.0, 10.0, 7.0, 6.0, 2.0, 52.0,1046,20.115384615384617 +1.752468729427254,1.75,a-sust-i3,2023-24,Methuen - Methuen High,01810505, 5.0, 6.0, 2.0, 4.0, 2.0, 6.0, 3.0, 28.0,1898,67.78571428571429 +4.242009811208562,4.24,a-sust-i3,2023-24,Methuen - Tenney Grammar School,01810055, 1.0, 3.0, 6.0, 5.0, 11.0, 4.0, 1.0, 31.0,1264,40.774193548387096 +0.31073074391046696,1,a-sust-i3,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 1.0, 1.0, 0.0, 0.0, 3.0, 2.0, 0.0, 7.0,584,83.42857142857143 +-2.8909370199692797,1,a-sust-i3,2023-24,Middleborough - John T. Nichols Middle,01820305, 1.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 6.0,709,118.16666666666667 +4.116319720324169,4.12,a-sust-i3,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 2.0, 1.5, 5.0, 4.0, 2.0, 14.5,611,42.13793103448276 +4.84509039347749,4.85,a-sust-i3,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 1.0, 0.0, 1.8, 3.0, 2.0, 0.0, 7.8,267,34.23076923076923 +-7.244239631336405,1,a-sust-i3,2023-24,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0, 1.0, 5.0,827,165.4 +6.3161999291031545,5,a-sust-i3,2023-24,Middleton - Fuller Meadow,01840003, 1.0, 0.0, 2.5, 1.6, 3.0, 6.5, 1.0, 15.6,285,18.26923076923077 +5.163626922827286,5,a-sust-i3,2023-24,Middleton - Howe-Manning,01840005, 1.9, 2.9, 1.4, 3.0, 2.0, 0.0, 3.0, 14.2,437,30.774647887323944 +3.9659695143566114,3.97,a-sust-i3,2023-24,Milford - Brookside,01850065, 0.0, 1.0, 4.0, 1.0, 0.0, 6.0, 1.0, 13.0,569,43.76923076923077 +4.279849183074989,4.28,a-sust-i3,2023-24,Milford - Memorial,01850010, 0.0, 2.0, 1.0, 2.0, 3.0, 3.0, 0.0, 11.0,444,40.36363636363637 +-Infinity,1,a-sust-i3,2023-24,Milford - Milford High,01850505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1297,Infinity +-Infinity,1,a-sust-i3,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,154,Infinity +-Infinity,1,a-sust-i3,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,971,Infinity +-14.534562211981566,1,a-sust-i3,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 4.0,978,244.5 +5.698343504795118,5,a-sust-i3,2023-24,Millbury - Elmwood Street,01860017, 0.0, 3.6, 2.3, 5.8, 2.8, 4.0, 0.0, 18.5,462,24.972972972972972 +1.6712749615975415,1.67,a-sust-i3,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.5, 1.0, 2.0, 2.0, 1.0, 3.0, 10.5,721,68.66666666666667 +2.75103967629538,2.75,a-sust-i3,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 1.0, 2.6, 2.8, 1.0, 0.8, 8.2,467,56.951219512195124 +5.806451612903226,5,a-sust-i3,2023-24,Millis - Clyde F Brown,01870005, 2.0, 0.0, 2.0, 6.0, 10.0, 3.0, 2.0, 25.0,595,23.8 +3.1305683563748077,3.13,a-sust-i3,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 0.0, 6.0,317,52.833333333333336 +3.8832565284178187,3.88,a-sust-i3,2023-24,Millis - Millis Middle,01870020, 1.0, 0.0, 0.0, 2.0, 1.0, 1.0, 1.0, 6.0,268,44.666666666666664 +7.723502304147465,5,a-sust-i3,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,6,3.0 +1.6800526662277815,1.68,a-sust-i3,2023-24,Milton - Charles S Pierce Middle,01890410, 1.0, 0.0, 0.0, 4.0, 4.0, 3.0, 2.0, 14.0,960,68.57142857142857 +5.83963133640553,5,a-sust-i3,2023-24,Milton - Collicot,01890005, 9.0, 4.0, 2.0, 3.0, 3.0, 4.0, 0.0, 25.0,586,23.44 +6.556067588325653,5,a-sust-i3,2023-24,Milton - Cunningham School,01890007, 11.0, 8.0, 2.0, 3.0, 9.0, 5.0, 1.0, 39.0,611,15.666666666666666 +3.9052007899934162,3.91,a-sust-i3,2023-24,Milton - Glover,01890010, 5.0, 3.0, 0.0, 0.0, 3.0, 1.0, 2.0, 14.0,622,44.42857142857143 +-1.1495601173020524,1,a-sust-i3,2023-24,Milton - Milton High,01890505, 0.0, 3.0, 0.0, 2.0, 3.0, 3.0, 0.0, 11.0,1092,99.27272727272727 +2.827188940092166,2.83,a-sust-i3,2023-24,Milton - Tucker,01890020, 2.0, 0.0, 0.0, 2.0, 1.0, 2.0, 1.0, 8.0,449,56.125 +-7.737327188940092,1,a-sust-i3,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 4.0,683,170.75 +7.074863055386488,5,a-sust-i3,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 2.0, 3.0, 4.0, 7.0, 4.7, 2.8, 3.0, 26.5,266,10.037735849056604 +7.208909370199693,5,a-sust-i3,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 3.0, 1.0, 1.0, 5.0, 2.0, 12.0,103,8.583333333333334 +6.266817378198997,5,a-sust-i3,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 1.0, 2.0, 2.0, 1.0, 3.9, 4.0, 2.0, 15.9,299,18.80503144654088 +6.75304960693955,5,a-sust-i3,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 1.9, 1.0, 2.0, 2.0, 1.5, 1.8, 10.2,138,13.529411764705884 +6.7515710096355255,5,a-sust-i3,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 2.0, 0.0, 0.0, 1.6, 5.4, 1.0, 1.0, 11.0,149,13.545454545454545 +6.616020163154519,5,a-sust-i3,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 5.5, 0.0, 4.0, 2.4, 9.0, 6.0, 4.0, 30.9,464,15.016181229773464 +4.475144622021767,4.48,a-sust-i3,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 2.0, 4.0, 1.0, 2.0, 1.0, 7.0, 1.8, 18.8,719,38.244680851063826 +5.819618169848584,5,a-sust-i3,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 3.0, 0.0, 3.0, 2.0, 6.0, 3.5, 17.5,414,23.65714285714286 +5.77073732718894,5,a-sust-i3,2023-24,Monson - Granite Valley School,01910030, 1.0, 1.0, 5.0, 2.0, 3.0, 4.0, 0.0, 16.0,387,24.1875 +6.40065058281377,5,a-sust-i3,2023-24,Monson - Monson High School,01910505, 3.0, 1.0, 3.0, 2.0, 2.0, 4.0, 2.0, 17.0,295,17.352941176470587 +6.847926267281106,5,a-sust-i3,2023-24,Monson - Quarry Hill Community School,01910010, 1.0, 0.0, 4.0, 0.0, 2.0, 3.0, 0.0, 10.0,125,12.5 +-2.1240694789081878,1,a-sust-i3,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 3.0, 2.0, 3.0, 2.0, 1.0, 1.0, 1.0, 13.0,1428,109.84615384615384 +6.3764622474299895,5,a-sust-i3,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 2.0, 2.0, 5.0, 0.0, 3.0, 1.0, 13.0,229,17.615384615384617 +5.784011220196353,5,a-sust-i3,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 1.0, 3.0, 4.0, 3.0, 5.0, 4.0, 3.0, 23.0,553,24.043478260869566 +6.272891204167501,5,a-sust-i3,2023-24,Mount Greylock - Williamstown Elementary,07150010, 2.0, 2.0, 1.0, 5.0, 4.0, 8.0, 1.0, 23.0,431,18.73913043478261 +3.053563947573164,3.05,a-sust-i3,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 7.9, 10.0, 3.9, 4.5, 3.0, 1.0, 0.5, 30.8,1653,53.66883116883117 +5.547728768926925,5,a-sust-i3,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.6, 1.0, 2.0, 1.0, 1.0, 5.6,149,26.607142857142858 +3.933179723502304,3.93,a-sust-i3,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 2.0, 1.0, 0.0, 0.0, 2.0, 3.0, 8.0,353,44.125 +6.274063124945656,5,a-sust-i3,2023-24,Nantucket - Nantucket Elementary,01970005, 3.0, 3.0, 4.5, 5.0, 1.0, 2.7, 2.0, 21.2,397,18.72641509433962 +-5.663594470046083,1,a-sust-i3,2023-24,Nantucket - Nantucket High,01970505, 1.0, 1.0, 0.0, 0.0, 1.0, 1.0, 0.0, 4.0,593,148.25 +6.04147465437788,5,a-sust-i3,2023-24,Nantucket - Nantucket Intermediate School,01970020, 2.0, 0.0, 2.0, 4.0, 5.0, 3.0, 0.0, 16.0,340,21.25 +3.783410138248848,3.78,a-sust-i3,2023-24,Narragansett - Narragansett Middle,07200305, 1.0, 0.0, 2.0, 0.0, 1.0, 3.0, 1.0, 8.0,366,45.75 +4.827623054832031,4.83,a-sust-i3,2023-24,Narragansett - Narragansett Regional High,07200505, 2.0, 2.0, 4.8, 0.0, 1.0, 2.0, 2.0, 13.8,475,34.42028985507246 +5.743778801843318,5,a-sust-i3,2023-24,Narragansett - Templeton Elementary School,07200020, 1.0, 2.0, 3.0, 7.0, 2.0, 9.0, 1.0, 25.0,612,24.48 +5.453980701173715,5,a-sust-i3,2023-24,Nashoba - Center School,07250020, 1.0, 1.0, 3.5, 2.0, 5.6, 3.0, 2.0, 18.1,500,27.62430939226519 +4.395828280378365,4.4,a-sust-i3,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 2.0, 2.0, 3.0, 5.4, 4.0, 2.6, 19.0,743,39.10526315789474 +4.879526003949967,4.88,a-sust-i3,2023-24,Nashoba - Hale,07250310, 1.0, 3.0, 1.0, 0.0, 1.0, 0.0, 1.0, 7.0,237,33.857142857142854 +4.469337114498405,4.47,a-sust-i3,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 2.0, 1.0, 3.5, 0.0, 6.5,249,38.30769230769231 +5.63952892985151,5,a-sust-i3,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 1.0, 0.0, 5.0, 7.0, 4.0, 1.0, 18.0,461,25.61111111111111 +2.832565284178187,2.83,a-sust-i3,2023-24,Nashoba - Nashoba Regional,07250505, 2.0, 2.0, 3.0, 2.0, 2.0, 3.0, 1.0, 15.0,841,56.06666666666667 +-3.874039938556068,1,a-sust-i3,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 6.0,773,128.83333333333334 +5.795247131110509,5,a-sust-i3,2023-24,Natick - Bennett-Hemenway,01980005, 8.0, 2.0, 1.0, 2.0, 4.0, 2.0, 1.4, 20.4,488,23.92156862745098 +4.398440269408011,4.4,a-sust-i3,2023-24,Natick - Brown,01980010, 3.0, 2.0, 1.0, 4.0, 0.0, 1.0, 2.0, 13.0,508,39.07692307692308 +2.8802967292345727,2.88,a-sust-i3,2023-24,Natick - J F Kennedy Middle School,01980305, 4.4, 4.0, 3.0, 0.0, 2.0, 3.0, 0.0, 16.4,911,55.54878048780488 +5.649769585253456,5,a-sust-i3,2023-24,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,51,25.5 +4.564725596983662,4.56,a-sust-i3,2023-24,Natick - Lilja Elementary,01980035, 2.0, 2.0, 1.0, 1.0, 0.0, 5.0, 0.0, 11.0,410,37.27272727272727 +4.410380790686394,4.41,a-sust-i3,2023-24,Natick - Memorial,01980043, 1.0, 0.0, 2.0, 2.0, 2.4, 3.0, 1.0, 11.4,444,38.94736842105263 +4.100845599749452,4.1,a-sust-i3,2023-24,Natick - Natick High,01980505, 7.0, 7.0, 5.0, 7.4, 7.6, 1.0, 6.2, 41.2,1743,42.30582524271844 +5.446663253114866,5,a-sust-i3,2023-24,Natick - Wilson Middle,01980310, 10.0, 1.0, 1.0, 5.0, 2.0, 3.0, 5.0, 27.0,748,27.703703703703702 +3.159679030646773,3.16,a-sust-i3,2023-24,Nauset - Nauset Regional High,06600505, 0.0, 2.0, 1.0, 0.0, 3.5, 6.0, 1.8, 14.3,751,52.51748251748251 +5.70766867541061,5,a-sust-i3,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 4.0, 0.0, 1.0, 9.5, 3.0, 2.0, 19.5,485,24.871794871794872 +5.793091785397201,5,a-sust-i3,2023-24,Needham - Broadmeadow,01990005, 8.0, 1.0, 1.0, 3.0, 5.0, 2.0, 1.8, 21.8,522,23.944954128440365 +3.8801843317972344,3.88,a-sust-i3,2023-24,Needham - High Rock School,01990410, 1.0, 6.0, 0.0, 1.0, 0.0, 2.0, 0.0, 10.0,447,44.7 +4.721177765996493,4.72,a-sust-i3,2023-24,Needham - John Eliot,01990020, 2.0, 2.0, 2.3, 1.0, 1.0, 3.0, 0.0, 11.3,402,35.57522123893805 +0.3728016552243016,1,a-sust-i3,2023-24,Needham - Needham High,01990505, 4.0, 1.0, 5.0, 0.0, 3.0, 3.6, 3.0, 19.6,1622,82.75510204081633 +6.5245000634169035,5,a-sust-i3,2023-24,Needham - Newman Elementary,01990050, 11.4, 7.3, 2.8, 8.7, 7.4, 4.0, 2.0, 43.6,698,16.009174311926603 +4.548681243259143,4.55,a-sust-i3,2023-24,Needham - Pollard Middle,01990405, 9.2, 3.7, 3.0, 4.0, 1.0, 1.6, 1.0, 23.5,880,37.4468085106383 +6.516966904063678,5,a-sust-i3,2023-24,Needham - Sunita L. Williams Elementary,01990035, 18.8, 3.0, 3.4, 1.8, 3.4, 2.6, 0.0, 33.0,531,16.09090909090909 +4.934785644463064,4.93,a-sust-i3,2023-24,Needham - William Mitchell,01990040, 5.4, 1.8, 0.0, 0.0, 5.0, 1.0, 0.0, 13.2,439,33.25757575757576 +4.657033507771616,4.66,a-sust-i3,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 9.6, 1.0, 6.0, 5.0, 2.0, 0.0, 0.0, 23.6,856,36.271186440677965 +0.25806451612903203,1,a-sust-i3,2023-24,New Bedford - Abraham Lincoln,02010095, 1.0, 2.0, 4.0, 1.0, 0.0, 0.0, 0.0, 8.0,672,84.0 +5.705257218094611,5,a-sust-i3,2023-24,New Bedford - Alfred J Gomes,02010063, 2.0, 2.0, 3.0, 4.0, 5.0, 4.0, 4.5, 24.5,610,24.897959183673468 +4.405529953917051,4.41,a-sust-i3,2023-24,New Bedford - Betsey B Winslow,02010140, 2.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 6.0,234,39.0 +4.098310291858678,4.1,a-sust-i3,2023-24,New Bedford - Carlos Pacheco,02010105, 0.0, 2.0, 1.0, 2.0, 0.0, 0.0, 1.0, 6.0,254,42.333333333333336 +5.132616487455197,5,a-sust-i3,2023-24,New Bedford - Casimir Pulaski,02010123, 1.0, 3.0, 2.0, 5.0, 4.0, 2.0, 1.0, 18.0,560,31.11111111111111 +4.981566820276497,4.98,a-sust-i3,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 1.0, 2.0, 1.0, 0.0, 1.0, 3.0, 8.0,262,32.75 +5.788018433179723,5,a-sust-i3,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 2.0, 1.0, 4.0, 2.0, 2.0, 0.0, 0.0, 11.0,264,24.0 +6.494623655913979,5,a-sust-i3,2023-24,New Bedford - Ellen R Hathaway,02010075, 3.0, 7.0, 0.0, 2.0, 2.0, 1.0, 0.0, 15.0,245,16.333333333333332 +6.3986175115207375,5,a-sust-i3,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 1.0, 4.0, 3.0, 4.0, 4.0, 0.0, 16.0,278,17.375 +5.880184331797235,5,a-sust-i3,2023-24,New Bedford - Hayden/McFadden,02010078, 5.0, 7.0, 5.0, 2.0, 5.0, 7.0, 0.0, 31.0,713,23.0 +3.5875576036866357,3.59,a-sust-i3,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 1.0, 2.0, 2.0, 1.0, 1.0, 1.0, 0.0, 8.0,383,47.875 +1.0645161290322578,1.06,a-sust-i3,2023-24,New Bedford - James B Congdon,02010040, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 4.0,301,75.25 +1.210445468509984,1.21,a-sust-i3,2023-24,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 0.0, 3.0,221,73.66666666666667 +3.944700460829493,3.94,a-sust-i3,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 2.0, 1.0, 0.0, 1.0, 2.0, 0.0, 6.0,264,44.0 +-0.9708141321044546,1,a-sust-i3,2023-24,New Bedford - John B Devalles,02010050, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,292,97.33333333333333 +-2.0460829493087553,1,a-sust-i3,2023-24,New Bedford - Keith Middle School,02010405, 0.0, 1.0, 1.0, 0.0, 4.0, 0.0, 2.0, 8.0,872,109.0 +-0.15400442509054518,1,a-sust-i3,2023-24,New Bedford - New Bedford High,02010505, 2.0, 6.5, 2.0, 4.0, 10.2, 6.0, 2.0, 32.7,2893,88.47094801223241 +-0.6971093422706325,1,a-sust-i3,2023-24,New Bedford - Normandin Middle School,02010410, 2.0, 1.0, 2.0, 2.0, 1.0, 3.0, 0.0, 11.0,1038,94.36363636363636 +-3.9060210017375536,1,a-sust-i3,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 1.0, 4.0, 0.1, 0.0, 0.0, 1.0, 6.1,788,129.18032786885246 +6.3235105088268675,5,a-sust-i3,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 7.0, 5.0, 7.0, 6.0, 3.7, 5.0, 0.0, 33.7,613,18.189910979228486 +3.2764976958525343,3.28,a-sust-i3,2023-24,New Bedford - Thomas R Rodman,02010125, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 4.0,205,51.25 +5.357910906298002,5,a-sust-i3,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 3.0,86,28.666666666666668 +-Infinity,1,a-sust-i3,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,179,Infinity +6.281764318630678,5,a-sust-i3,2023-24,New Bedford - William H Taylor,02010135, 2.0, 4.0, 1.0, 2.0, 2.0, 1.0, 2.0, 14.0,261,18.642857142857142 +-Infinity,1,a-sust-i3,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +7.02871322226161,5,a-sust-i3,2023-24,New Salem-Wendell - Swift River,07280015, 3.0, 1.0, 2.0, 5.0, 1.0, 1.0, 0.0, 13.0,137,10.538461538461538 +4.543778801843318,4.54,a-sust-i3,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 2.0, 1.0, 0.0, 0.0, 3.0, 1.0, 1.0, 8.0,300,37.5 +6.025950256561101,5,a-sust-i3,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 2.0, 2.0, 2.0, 2.8, 10.1, 9.3, 0.0, 28.2,604,21.418439716312058 +-0.038914490527394596,1,a-sust-i3,2023-24,Newburyport - Newburyport High,02040505, 0.0, 1.0, 0.0, 3.0, 2.0, 2.0, 1.0, 9.0,785,87.22222222222223 +0.7342549923195086,1,a-sust-i3,2023-24,Newburyport - Rupert A Nock Middle,02040305, 2.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0, 6.0,473,78.83333333333333 +6.525345622119816,5,a-sust-i3,2023-24,Newton - A E Angier,02070005, 1.0, 5.2, 2.2, 4.6, 5.9, 4.9, 0.3, 24.0,384,16.0 +4.222110690331705,4.22,a-sust-i3,2023-24,Newton - Bigelow Middle,02070305, 0.0, 2.5, 0.8, 1.7, 2.5, 0.0, 2.5, 10.1,414,40.990099009900995 +6.4345026789848525,5,a-sust-i3,2023-24,Newton - Bowen,02070015, 4.9, 8.2, 2.0, 2.0, 1.1, 1.9, 0.8, 20.9,355,16.985645933014354 +6.268841586813937,5,a-sust-i3,2023-24,Newton - C C Burr,02070020, 4.1, 1.6, 4.4, 1.8, 3.3, 1.4, 2.3, 18.9,355,18.783068783068785 +6.453058642811964,5,a-sust-i3,2023-24,Newton - Cabot,02070025, 1.9, 9.3, 3.4, 4.4, 4.3, 1.3, 0.9, 25.5,428,16.784313725490197 +6.3743268002887135,5,a-sust-i3,2023-24,Newton - Charles E Brown Middle,02070310, 4.4, 12.1, 12.5, 7.3, 0.9, 0.8, 3.4, 41.5,732,17.63855421686747 +6.780157224179995,5,a-sust-i3,2023-24,Newton - Countryside,02070040, 4.3, 9.8, 6.2, 1.9, 1.6, 2.2, 1.2, 27.2,360,13.23529411764706 +3.2662721893491122,3.27,a-sust-i3,2023-24,Newton - F A Day Middle,02070315, 1.7, 3.4, 3.4, 1.8, 1.7, 2.5, 2.5, 16.9,868,51.36094674556213 +5.599559804663319,5,a-sust-i3,2023-24,Newton - Franklin,02070055, 0.8, 1.7, 4.3, 2.4, 2.6, 1.6, 0.0, 13.4,349,26.044776119402986 +5.324215846588375,5,a-sust-i3,2023-24,Newton - Horace Mann,02070075, 0.8, 3.3, 2.6, 3.0, 0.4, 2.0, 0.4, 12.4,360,29.032258064516128 +6.102993154668694,5,a-sust-i3,2023-24,Newton - John Ward,02070120, 0.8, 1.8, 2.1, 1.1, 2.1, 2.1, 0.3, 10.3,212,20.582524271844658 +6.560456440640772,5,a-sust-i3,2023-24,Newton - Lincoln-Eliot,02070070, 0.8, 3.4, 4.6, 5.8, 3.7, 1.6, 1.2, 21.0,328,15.619047619047619 +6.371248140833394,5,a-sust-i3,2023-24,Newton - Mason-Rice,02070080, 3.3, 4.9, 2.7, 0.0, 3.9, 2.9, 1.3, 18.9,334,17.671957671957674 +6.171547495168724,5,a-sust-i3,2023-24,Newton - Memorial Spaulding,02070105, 2.5, 6.7, 0.3, 1.4, 4.5, 2.7, 0.6, 18.6,369,19.838709677419352 +7.522389601001691,5,a-sust-i3,2023-24,Newton - Newton Early Childhood Program,02070108, 3.2, 3.5, 11.6, 10.9, 4.8, 1.8, 0.0, 35.7,185,5.182072829131652 +4.501659977206283,4.5,a-sust-i3,2023-24,Newton - Newton North High,02070505, 5.5, 11.4, 9.9, 12.6, 7.4, 6.3, 2.7, 55.8,2118,37.95698924731183 +3.3892274912045983,3.39,a-sust-i3,2023-24,Newton - Newton South High,02070510, 6.1, 8.1, 5.5, 7.8, 5.7, 2.8, 1.1, 37.2,1861,50.026881720430104 +5.196079704030636,5,a-sust-i3,2023-24,Newton - Oak Hill Middle,02070320, 3.4, 2.4, 3.4, 2.6, 0.8, 6.1, 2.5, 21.3,648,30.422535211267604 +6.811412454987284,5,a-sust-i3,2023-24,Newton - Peirce,02070100, 3.5, 6.1, 2.6, 1.2, 0.4, 3.5, 1.1, 18.3,236,12.896174863387978 +6.14132104454685,5,a-sust-i3,2023-24,Newton - Underwood,02070115, 1.3, 2.5, 1.0, 3.3, 0.8, 3.3, 0.0, 12.0,242,20.166666666666668 +6.745843784635127,5,a-sust-i3,2023-24,Newton - Williams,02070125, 1.7, 5.8, 3.1, 1.6, 1.6, 0.8, 1.2, 15.8,215,13.60759493670886 +6.8213399503722085,5,a-sust-i3,2023-24,Newton - Zervas,02070130, 5.6, 9.2, 8.2, 3.5, 2.2, 1.3, 1.3, 31.2,399,12.788461538461538 +5.3223381033228225,5,a-sust-i3,2023-24,Norfolk - Freeman-Kennedy School,02080005, 1.0, 0.0, 5.0, 3.4, 4.6, 4.0, 1.0, 19.0,552,29.05263157894737 +6.658657011191573,5,a-sust-i3,2023-24,Norfolk - H Olive Day,02080015, 6.4, 0.0, 3.0, 8.5, 7.5, 5.8, 2.4, 33.6,489,14.553571428571429 +-10.003072196620584,1,a-sust-i3,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,586,195.33333333333334 +7.043230195303928,5,a-sust-i3,2023-24,North Adams - Brayton,02090035, 6.0, 1.0, 2.0, 4.0, 4.0, 3.0, 1.0, 21.0,218,10.380952380952381 +7.099610067352003,5,a-sust-i3,2023-24,North Adams - Colegrove Park Elementary,02090008, 3.0, 3.0, 4.0, 7.0, 1.0, 6.0, 2.0, 26.0,254,9.76923076923077 +4.7032967032967035,4.7,a-sust-i3,2023-24,North Adams - Drury High,02090505, 4.0, 1.0, 1.0, 3.0, 2.0, 0.0, 2.0, 13.0,465,35.76923076923077 +6.755760368663594,5,a-sust-i3,2023-24,North Adams - Greylock,02090015, 6.0, 3.0, 1.0, 3.0, 3.0, 1.0, 3.0, 20.0,270,13.5 +6.921685095494837,5,a-sust-i3,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 3.7, 6.5, 9.2, 13.9, 2.0, 35.3,413,11.69971671388102 +5.462727026294388,5,a-sust-i3,2023-24,North Andover - Annie L Sargent School,02110018, 2.0, 2.0, 0.0, 4.0, 2.0, 5.0, 2.0, 17.0,468,27.529411764705884 +6.365591397849462,5,a-sust-i3,2023-24,North Andover - Atkinson,02110001, 0.0, 1.0, 0.0, 7.0, 4.0, 3.0, 0.0, 15.0,266,17.733333333333334 +6.332236120254554,5,a-sust-i3,2023-24,North Andover - Franklin,02110010, 4.0, 1.0, 3.0, 5.0, 3.0, 4.0, 1.0, 21.0,380,18.095238095238095 +6.63594470046083,5,a-sust-i3,2023-24,North Andover - Kittredge,02110015, 3.0, 2.0, 1.0, 2.0, 5.0, 2.0, 0.0, 15.0,222,14.8 +1.0115966982326428,1.01,a-sust-i3,2023-24,North Andover - North Andover High,02110505, 2.0, 0.1, 1.0, 3.0, 4.0, 5.2, 2.9, 18.2,1380,75.82417582417582 +4.7678372795169235,4.77,a-sust-i3,2023-24,North Andover - North Andover Middle,02110305, 2.0, 2.0, 5.0, 7.0, 5.0, 6.0, 2.0, 29.0,1017,35.06896551724138 +6.281377066955815,5,a-sust-i3,2023-24,North Andover - Thomson,02110020, 3.0, 2.0, 4.0, 3.0, 3.0, 2.0, 0.0, 17.0,317,18.647058823529413 +4.999078341013824,5.0,a-sust-i3,2023-24,North Attleborough - Amvet Boulevard,02120007, 2.0, 0.0, 3.0, 3.0, 0.0, 3.5, 1.0, 12.5,407,32.56 +6.692424689564368,5,a-sust-i3,2023-24,North Attleborough - Community,02120030, 2.0, 1.0, 1.8, 3.0, 7.5, 4.0, 1.0, 20.3,288,14.1871921182266 +5.788018433179723,5,a-sust-i3,2023-24,North Attleborough - Falls,02120010, 1.0, 0.0, 1.0, 4.0, 2.0, 1.0, 1.0, 10.0,240,24.0 +4.675883256528417,4.68,a-sust-i3,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 1.0, 1.0, 0.0, 8.0, 2.0, 3.0, 0.0, 15.0,541,36.06666666666667 +0.35023041474654354,1,a-sust-i3,2023-24,North Attleborough - North Attleboro High,02120505, 4.0, 2.0, 0.0, 2.0, 3.0, 1.0, 1.0, 13.0,1079,83.0 +7.065715548260841,5,a-sust-i3,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.8, 0.0, 2.6, 2.8, 3.6, 4.8, 0.0, 14.6,148,10.136986301369863 +3.443696088857379,3.44,a-sust-i3,2023-24,North Attleborough - North Attleborough Middle,02120305, 3.0, 2.0, 4.0, 3.0, 3.5, 3.0, 1.0, 19.5,964,49.43589743589744 +2.170506912442396,2.17,a-sust-i3,2023-24,North Attleborough - Roosevelt Avenue,02120015, 1.0, 0.0, 2.0, 0.0, 0.0, 0.5, 0.5, 4.0,253,63.25 +6.196181698485846,5,a-sust-i3,2023-24,North Brookfield - North Brookfield Elementary,02150015, 1.0, 1.0, 6.0, 3.0, 3.0, 0.0, 0.0, 14.0,274,19.571428571428573 +4.935483870967742,4.94,a-sust-i3,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 2.0, 1.0, 0.0, 1.0, 0.0, 4.0,133,33.25 +3.2010170030192273,3.2,a-sust-i3,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 1.0, 2.9,151,52.06896551724138 +2.0487162606978275,2.05,a-sust-i3,2023-24,North Middlesex - Hawthorne Brook,07350030, 1.0, 0.0, 0.0, 2.0, 1.0, 2.0, 1.0, 7.0,452,64.57142857142857 +4.554413328606877,4.55,a-sust-i3,2023-24,North Middlesex - Nissitissit Middle School,07350310, 2.0, 1.0, 2.0, 2.0, 3.0, 3.0, 0.0, 13.0,486,37.38461538461539 +1.0230414746543774,1.02,a-sust-i3,2023-24,North Middlesex - North Middlesex Regional,07350505, 2.0, 1.0, 0.0, 3.0, 2.0, 1.0, 1.0, 10.0,757,75.7 +5.303990720712248,5,a-sust-i3,2023-24,North Middlesex - Spaulding Memorial,07350005, 1.0, 1.0, 2.2, 1.3, 5.2, 3.0, 1.0, 14.7,430,29.251700680272112 +7.411470767864084,5,a-sust-i3,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 1.0, 0.0, 4.2, 4.6, 3.8, 3.0, 0.0, 16.6,106,6.385542168674698 +6.119815668202766,5,a-sust-i3,2023-24,North Middlesex - Varnum Brook,07350035, 2.0, 2.0, 2.0, 2.0, 11.0, 9.0, 2.0, 30.0,612,20.4 +5.491039426523297,5,a-sust-i3,2023-24,North Reading - E Ethel Little School,02170003, 1.0, 3.0, 0.0, 1.0, 0.8, 1.0, 4.0, 10.8,294,27.22222222222222 +5.179998624389573,5,a-sust-i3,2023-24,North Reading - J Turner Hood,02170010, 2.0, 2.0, 1.0, 3.8, 3.0, 1.6, 0.0, 13.4,410,30.597014925373134 +4.408708088352137,4.41,a-sust-i3,2023-24,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 6.0, 2.0, 3.6, 0.0, 11.6,452,38.96551724137931 +3.2534562211981566,3.25,a-sust-i3,2023-24,North Reading - North Reading High,02170505, 0.0, 0.0, 1.0, 3.0, 4.0, 3.0, 1.0, 12.0,618,51.5 +3.8294930875576036,3.83,a-sust-i3,2023-24,North Reading - North Reading Middle,02170305, 0.0, 1.0, 0.0, 3.0, 4.0, 2.0, 2.0, 12.0,543,45.25 +6.7631622931639646,5,a-sust-i3,2023-24,Northampton - Bridge Street,02100005, 2.0, 0.0, 4.8, 3.0, 2.7, 5.8, 1.0, 19.3,259,13.419689119170984 +6.410138248847926,5,a-sust-i3,2023-24,Northampton - Jackson Street,02100020, 4.0, 4.0, 1.0, 2.0, 2.0, 2.0, 1.0, 16.0,276,17.25 +5.621242045205179,5,a-sust-i3,2023-24,Northampton - John F Kennedy Middle School,02100410, 3.0, 5.0, 1.0, 6.0, 2.0, 2.0, 2.0, 21.0,542,25.80952380952381 +6.7914094426571605,5,a-sust-i3,2023-24,Northampton - Leeds,02100025, 2.0, 7.4, 0.0, 4.0, 4.0, 2.8, 1.0, 21.2,278,13.113207547169813 +4.516897081413211,4.52,a-sust-i3,2023-24,Northampton - Northampton High,02100505, 2.0, 6.0, 1.0, 4.0, 5.0, 3.0, 3.0, 24.0,907,37.791666666666664 +6.466096115865701,5,a-sust-i3,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 1.0, 5.0, 4.0, 3.0, 1.0, 0.0, 14.0,233,16.642857142857142 +3.9659695143566114,3.97,a-sust-i3,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.0, 1.0, 1.0, 2.0, 4.0, 4.0, 0.0, 13.0,569,43.76923076923077 +4.763350501490919,4.76,a-sust-i3,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 7.5, 4.0, 7.0, 6.0, 4.0, 3.5, 2.0, 34.0,1194,35.11764705882353 +6.482334869431644,5,a-sust-i3,2023-24,Northborough - Fannie E Proctor,02130015, 2.0, 2.0, 4.0, 3.0, 1.0, 2.0, 1.0, 15.0,247,16.466666666666665 +6.143515470704411,5,a-sust-i3,2023-24,Northborough - Lincoln Street,02130003, 0.0, 2.0, 1.0, 3.0, 4.0, 3.6, 0.4, 14.0,282,20.142857142857142 +6.2734254992319505,5,a-sust-i3,2023-24,Northborough - Marguerite E Peaslee,02130014, 1.0, 4.0, 1.0, 2.0, 4.0, 3.0, 0.0, 15.0,281,18.733333333333334 +4.642527978933509,4.64,a-sust-i3,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 1.5, 1.0, 1.5, 0.0, 3.0, 0.0, 7.0,255,36.42857142857143 +3.9659695143566114,3.97,a-sust-i3,2023-24,Northborough - Robert E. Melican Middle School,02130305, 1.0, 1.0, 2.0, 2.0, 3.0, 4.0, 0.0, 13.0,569,43.76923076923077 +6.572915118180466,5,a-sust-i3,2023-24,Northbridge - Northbridge Elementary School,02140001, 5.0, 12.0, 10.0, 9.0, 17.0, 8.0, 1.0, 62.0,960,15.483870967741936 +4.0368663594470044,4.04,a-sust-i3,2023-24,Northbridge - Northbridge High,02140505, 2.0, 3.0, 1.0, 2.0, 2.0, 1.0, 0.0, 11.0,473,43.0 +0.036866359447003824,1,a-sust-i3,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, 1.0, 0.0, 2.0, 1.0, 1.0, 0.0, 5.0,432,86.4 +0.7188940092165896,1,a-sust-i3,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 1.0, 1.0, 2.0, 5.0, 6.0, 2.0, 17.0,1343,79.0 +0.012288786482334172,1,a-sust-i3,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 0.0, 6.0,520,86.66666666666667 +4.589861751152074,4.59,a-sust-i3,2023-24,Norton - Henri A. Yelle,02180060, 1.0, 1.0, 1.0, 1.0, 3.0, 1.0, 1.0, 9.0,333,37.0 +5.691463682247092,5,a-sust-i3,2023-24,Norton - J C Solmonese,02180015, 0.0, 2.0, 4.5, 5.0, 4.5, 5.0, 0.0, 21.0,526,25.047619047619047 +6.198305336702839,5,a-sust-i3,2023-24,Norton - L G Nourse Elementary,02180010, 2.0, 3.0, 3.5, 3.0, 2.0, 2.0, 0.0, 15.5,303,19.548387096774192 +3.791090629800307,3.79,a-sust-i3,2023-24,Norton - Norton High,02180505, 3.0, 4.0, 1.0, 2.0, 2.0, 2.0, 1.0, 15.0,685,45.666666666666664 +3.316296606619187,3.32,a-sust-i3,2023-24,Norton - Norton Middle,02180305, 3.0, 0.0, 1.5, 2.5, 2.0, 2.0, 0.0, 11.0,559,50.81818181818182 +4.824092283307405,4.82,a-sust-i3,2023-24,Norwell - Grace Farrar Cole,02190005, 0.9, 0.0, 2.3, 3.0, 1.5, 6.5, 1.5, 15.7,541,34.45859872611465 +0.4752225238305664,1,a-sust-i3,2023-24,Norwell - Norwell High,02190505, 3.0, 1.0, 1.3, 0.0, 1.0, 1.0, 0.0, 7.3,596,81.64383561643835 +3.525927251577111,3.53,a-sust-i3,2023-24,Norwell - Norwell Middle School,02190405, 2.0, 1.0, 0.3, 0.0, 0.0, 5.0, 2.0, 10.3,500,48.543689320388346 +5.052898810673583,5,a-sust-i3,2023-24,Norwell - William G Vinal,02190020, 2.0, 1.0, 1.3, 2.4, 4.5, 3.0, 2.5, 16.7,534,31.976047904191617 +4.99970585351505,5.0,a-sust-i3,2023-24,Norwood - Balch,02200005, 3.0, 2.0, 0.0, 2.0, 0.0, 1.4, 1.0, 9.4,306,32.5531914893617 +5.695852534562212,5,a-sust-i3,2023-24,Norwood - Charles J Prescott,02200025, 2.0, 1.0, 2.0, 1.0, 1.0, 3.0, 0.0, 10.0,250,25.0 +3.686635944700461,3.69,a-sust-i3,2023-24,Norwood - Cornelius M Callahan,02200010, 2.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 5.0,234,46.8 +1.372434017595308,1.37,a-sust-i3,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 1.0, 3.0, 1.0, 5.0, 0.0, 1.0, 11.0,791,71.9090909090909 +6.291427493464845,5,a-sust-i3,2023-24,Norwood - F A Cleveland,02200015, 1.0, 2.0, 2.8, 2.0, 4.3, 3.0, 2.0, 17.1,317,18.53801169590643 +6.872637414011888,5,a-sust-i3,2023-24,Norwood - George F. Willett,02200075, 1.0, 3.0, 2.1, 7.6, 11.4, 7.4, 2.0, 34.5,422,12.231884057971014 +6.25838232957254,5,a-sust-i3,2023-24,Norwood - John P Oldham,02200020, 5.0, 1.0, 1.5, 1.0, 0.0, 6.0, 0.0, 14.5,274,18.896551724137932 +2.417212128327805,2.42,a-sust-i3,2023-24,Norwood - Norwood High,02200505, 3.0, 1.0, 2.0, 4.0, 2.0, 2.0, 1.7, 15.7,951,60.57324840764331 +6.7817819709546585,5,a-sust-i3,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.8, 3.8, 3.8, 4.7, 6.1, 10.2, 2.3, 31.7,419,13.217665615141955 +1.6751152073732716,1.68,a-sust-i3,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 2.0, 2.0, 0.0, 2.0, 2.0, 0.0, 0.0, 8.0,549,68.625 +4.6928706966657625,4.69,a-sust-i3,2023-24,Old Rochester - Old Rochester Regional High,07400505, 2.0, 2.0, 2.0, 4.0, 2.0, 4.0, 1.0, 17.0,610,35.88235294117647 +4.027649769585254,4.03,a-sust-i3,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 2.0, 2.0, 0.0, 2.0, 0.0, 2.0, 2.0, 10.0,431,43.1 +5.788018433179723,5,a-sust-i3,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 1.0, 2.0, 5.0, 2.0, 2.5, 2.0, 0.0, 14.5,348,24.0 +6.393241167434716,5,a-sust-i3,2023-24,Orange - Fisher Hill School,02230010, 2.0, 0.0, 6.5, 8.0, 5.0, 6.0, 2.5, 30.0,523,17.433333333333334 +6.322107999527354,5,a-sust-i3,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 1.6, 2.2, 4.0, 0.0, 7.8,142,18.205128205128204 +5.836104988980164,5,a-sust-i3,2023-24,Oxford - Alfred M Chaffee,02260010, 1.0, 0.0, 4.3, 0.0, 5.0, 2.5, 1.0, 13.8,324,23.478260869565215 +5.1276452955125045,5,a-sust-i3,2023-24,Oxford - Clara Barton,02260005, 0.0, 2.0, 2.3, 2.0, 2.0, 1.0, 1.0, 10.3,321,31.16504854368932 +3.411525692483029,3.41,a-sust-i3,2023-24,Oxford - Oxford High,02260505, 1.0, 0.0, 1.3, 1.0, 2.0, 3.0, 1.0, 9.3,463,49.784946236559136 +4.554963983714375,4.55,a-sust-i3,2023-24,Oxford - Oxford Middle,02260405, 0.0, 1.0, 3.3, 2.0, 0.0, 4.0, 0.0, 10.3,385,37.37864077669903 +6.259424340862733,5,a-sust-i3,2023-24,Palmer - Old Mill Pond,02270008, 3.0, 3.0, 6.0, 7.0, 4.0, 5.0, 2.5, 30.5,576,18.885245901639344 +5.877265049940572,5,a-sust-i3,2023-24,Palmer - Palmer High,02270505, 3.0, 2.0, 2.0, 4.1, 6.0, 3.0, 2.0, 22.1,509,23.031674208144796 +2.0737327188940093,2.07,a-sust-i3,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 1.0, 4.0, 2.0, 1.0, 1.0, 0.0, 1.0, 10.0,643,64.3 +6.711733164305415,5,a-sust-i3,2023-24,Peabody - Captain Samuel Brown,02290005, 1.0, 0.0, 6.5, 3.9, 8.0, 6.0, 1.5, 26.9,376,13.977695167286246 +1.566820276497696,1.57,a-sust-i3,2023-24,Peabody - Center,02290015, 0.0, 0.0, 0.5, 0.0, 2.5, 2.0, 0.0, 5.0,349,69.8 +3.031561011501375,3.03,a-sust-i3,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.9, 2.9, 4.5, 8.0, 4.0, 3.5, 23.8,1283,53.90756302521008 +6.057932850559578,5,a-sust-i3,2023-24,Peabody - John E Burke,02290007, 0.5, 0.0, 1.5, 2.5, 4.5, 3.0, 2.0, 14.0,295,21.071428571428573 +6.273575362481735,5,a-sust-i3,2023-24,Peabody - John E. McCarthy,02290016, 0.5, 1.0, 5.5, 3.0, 5.0, 3.5, 2.0, 20.5,384,18.73170731707317 +-Infinity,1,a-sust-i3,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +2.309757563614506,2.31,a-sust-i3,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 2.0, 1.0, 2.5, 1.0, 8.0, 6.0, 2.5, 23.0,1420,61.73913043478261 +1.2789790854306984,1.28,a-sust-i3,2023-24,Peabody - South Memorial,02290035, 0.5, 0.0, 1.5, 1.0, 1.5, 1.5, 0.5, 6.5,474,72.92307692307692 +2.6635944700460827,2.66,a-sust-i3,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 1.5, 1.5, 1.5, 4.0, 1.5, 0.0, 10.0,579,57.9 +5.872503840245776,5,a-sust-i3,2023-24,Peabody - West Memorial,02290045, 0.0, 1.0, 1.0, 1.0, 3.0, 4.0, 2.0, 12.0,277,23.083333333333332 +3.0230414746543777,3.02,a-sust-i3,2023-24,Peabody - William A Welch Sr,02290027, 0.5, 0.0, 1.0, 1.0, 0.5, 1.0, 1.5, 5.5,297,54.0 +6.601246950393061,5,a-sust-i3,2023-24,Pelham - Pelham Elementary,02300005, 1.0, 0.0, 3.0, 0.0, 0.0, 3.5, 1.0, 8.5,129,15.176470588235293 +2.8550428746427117,2.86,a-sust-i3,2023-24,Pembroke - Bryantville Elementary,02310003, 3.0, 0.0, 1.0, 0.0, 2.0, 1.9, 0.0, 7.9,441,55.82278481012658 +5.85307671455679,5,a-sust-i3,2023-24,Pembroke - Hobomock Elementary,02310010, 4.0, 1.0, 0.0, 3.0, 6.0, 3.0, 0.0, 17.0,396,23.294117647058822 +3.5672591617292078,3.57,a-sust-i3,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 1.9, 0.0, 3.8, 3.8, 1.0, 10.5,505,48.095238095238095 +4.313364055299539,4.31,a-sust-i3,2023-24,Pembroke - Pembroke Community Middle School,02310305, 2.0, 0.0, 1.0, 1.0, 1.0, 4.0, 0.0, 9.0,360,40.0 +0.6779313876088069,1,a-sust-i3,2023-24,Pembroke - Pembroke High School,02310505, 3.0, 1.0, 1.0, 0.0, 1.0, 3.0, 0.0, 9.0,715,79.44444444444444 +6.225806451612903,5,a-sust-i3,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 2.0, 1.0, 1.0, 1.0, 4.0, 3.0, 0.0, 12.0,231,19.25 +5.853851217906517,5,a-sust-i3,2023-24,Pentucket - Dr John C Page School,07450015, 2.0, 1.0, 3.0, 2.0, 2.0, 3.0, 1.0, 14.0,326,23.285714285714285 +4.817204301075269,4.82,a-sust-i3,2023-24,Pentucket - Elmer S Bagnall,07450005, 3.0, 1.0, 3.0, 2.0, 2.0, 4.0, 0.0, 15.0,518,34.53333333333333 +5.741935483870968,5,a-sust-i3,2023-24,Pentucket - Helen R Donaghue School,07450010, 3.0, 0.0, 1.0, 0.0, 3.0, 2.0, 1.0, 10.0,245,24.5 +-2.168970814132105,1,a-sust-i3,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,331,110.33333333333333 +0.44239631336405505,1,a-sust-i3,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 1.0, 0.0, 0.0, 0.0, 2.0, 3.0, 1.0, 7.0,574,82.0 +6.114143920595533,5,a-sust-i3,2023-24,Petersham - Petersham Center,02340005, 0.0, 2.0, 2.0, 1.0, 0.5, 0.0, 1.0, 6.5,133,20.46153846153846 +-Infinity,1,a-sust-i3,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +-Infinity,1,a-sust-i3,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +-Infinity,1,a-sust-i3,2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +-34.23366766061264,1,a-sust-i3,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 0.0, 0.7, 0.0, 0.0, 1.0, 0.0, 1.7,779,458.2352941176471 +-32.12761432116271,1,a-sust-i3,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.8, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.3,566,435.38461538461536 +6.807603686635945,5,a-sust-i3,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 3.0, 0.0, 5.0, 4.0, 2.0, 1.0, 1.0, 16.0,207,12.9375 +7.032258064516129,5,a-sust-i3,2023-24,Pioneer Valley - Northfield Elementary,07500008, 1.0, 3.0, 1.0, 5.0, 1.0, 4.0, 1.0, 16.0,168,10.5 +5.223502304147465,5,a-sust-i3,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 1.0, 1.0, 2.0, 2.0, 0.0, 2.0, 8.0,241,30.125 +2.218684541265187,2.22,a-sust-i3,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 1.0, 2.0, 3.0, 0.0, 1.2, 1.6, 0.0, 8.8,552,62.72727272727272 +4.32258064516129,4.32,a-sust-i3,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 1.0, 1.0, 1.0, 2.0, 2.0, 3.0, 0.0, 10.0,399,39.9 +6.714797747055812,5,a-sust-i3,2023-24,Pittsfield - Allendale,02360010, 4.0, 1.0, 3.0, 1.0, 4.0, 4.0, 1.0, 18.0,251,13.944444444444445 +6.6608837083220385,5,a-sust-i3,2023-24,Pittsfield - Crosby,02360065, 4.0, 5.0, 1.0, 1.0, 3.0, 2.0, 1.0, 17.0,247,14.529411764705882 +7.032258064516129,5,a-sust-i3,2023-24,Pittsfield - Crosby Educational Academy,02360030, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,21,10.5 +7.078341013824884,5,a-sust-i3,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,30,10.0 +6.0235535074244755,5,a-sust-i3,2023-24,Pittsfield - Egremont,02360035, 2.0, 0.0, 4.0, 4.0, 4.0, 4.0, 0.0, 18.0,386,21.444444444444443 +2.180381830151415,2.18,a-sust-i3,2023-24,Pittsfield - John T Reid Middle,02360305, 1.0, 2.0, 1.0, 1.0, 1.0, 1.0, 0.0, 7.0,442,63.142857142857146 +6.243997089497938,5,a-sust-i3,2023-24,Pittsfield - Morningside Community School,02360055, 7.0, 3.0, 4.0, 1.0, 0.0, 2.0, 2.0, 19.0,362,19.05263157894737 +4.896366948880077,4.9,a-sust-i3,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 2.0, 2.0, 3.0, 10.5, 4.0, 21.5,724,33.674418604651166 +6.074756784434204,5,a-sust-i3,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 2.0, 1.0, 0.0, 1.0, 4.0, 0.0, 1.0, 9.0,188,20.88888888888889 +6.218125960061444,5,a-sust-i3,2023-24,Pittsfield - Silvio O Conte Community,02360105, 2.0, 4.0, 1.0, 1.0, 2.0, 3.0, 5.0, 18.0,348,19.333333333333332 +6.924731182795698,5,a-sust-i3,2023-24,Pittsfield - Stearns,02360090, 2.0, 2.0, 5.0, 3.0, 2.0, 3.0, 1.0, 18.0,210,11.666666666666666 +0.7346701540249921,1,a-sust-i3,2023-24,Pittsfield - Taconic High,02360510, 0.6, 1.0, 1.0, 2.0, 2.0, 2.5, 2.0, 11.1,875,78.82882882882883 +2.5622119815668203,2.56,a-sust-i3,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 1.0, 1.0, 2.0, 4.0, 1.0, 9.0,531,59.0 +5.9953917050691246,5,a-sust-i3,2023-24,Pittsfield - Williams,02360100, 2.0, 1.0, 0.0, 0.0, 2.0, 5.0, 2.0, 12.0,261,21.75 +6.356374807987712,5,a-sust-i3,2023-24,Plainville - Anna Ware Jackson,02380010, 2.0, 7.0, 0.0, 3.0, 5.0, 1.0, 0.0, 18.0,321,17.833333333333332 +4.784434203789043,4.78,a-sust-i3,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 1.0, 3.0, 2.0, 3.0, 0.0, 9.0,314,34.888888888888886 +3.861939245744381,3.86,a-sust-i3,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.6, 0.0, 1.5, 2.2, 0.6, 0.0, 4.9,220,44.897959183673464 +5.3257924870828095,5,a-sust-i3,2023-24,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 2.0, 2.6, 3.0, 4.7, 1.0, 13.2,383,29.015151515151516 +3.4335986594051113,3.43,a-sust-i3,2023-24,Plymouth - Hedge,02390010, 0.6, 0.0, 0.6, 1.6, 1.7, 0.0, 0.0, 4.4,218,49.54545454545454 +5.156472559698367,5,a-sust-i3,2023-24,Plymouth - Indian Brook,02390012, 0.0, 2.1, 0.5, 5.7, 5.8, 2.4, 1.1, 17.6,543,30.852272727272723 +4.244583533943187,4.24,a-sust-i3,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 2.1, 3.6, 1.0, 0.0, 6.7,273,40.74626865671642 +4.3569069995282845,4.36,a-sust-i3,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 1.0, 1.0, 2.6, 6.0, 2.1, 12.7,502,39.52755905511811 +-0.5400529463672903,1,a-sust-i3,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 2.0, 0.0, 0.6, 1.1, 3.6, 2.1, 0.0, 9.4,871,92.6595744680851 +6.645346859245971,5,a-sust-i3,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.5, 0.5, 2.7, 1.8, 4.7, 3.9, 0.7, 14.9,219,14.697986577181208 +0.9055015076520443,1,a-sust-i3,2023-24,Plymouth - Plymouth North High,02390505, 1.0, 1.7, 1.8, 2.1, 2.6, 7.0, 0.0, 16.2,1247,76.97530864197532 +-1.3376157892286922,1,a-sust-i3,2023-24,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 1.0, 2.0, 6.0, 0.9, 9.9,1003,101.31313131313131 +2.5332971898436787,2.53,a-sust-i3,2023-24,Plymouth - Plymouth South Middle,02390305, 1.1, 2.6, 0.0, 2.7, 1.6, 1.1, 1.1, 10.2,605,59.313725490196084 +4.6735526246093535,4.67,a-sust-i3,2023-24,Plymouth - South Elementary,02390046, 1.0, 3.0, 5.6, 3.1, 1.6, 2.1, 1.0, 17.4,628,36.09195402298851 +5.274749721913237,5,a-sust-i3,2023-24,Plymouth - West Elementary,02390047, 0.6, 0.0, 0.0, 3.6, 4.1, 2.0, 1.3, 11.6,343,29.56896551724138 +3.241230132606038,3.24,a-sust-i3,2023-24,Plympton - Dennett Elementary,02400010, 1.0, 0.4, 0.0, 1.0, 2.0, 0.5, 0.0, 4.9,253,51.63265306122449 +-2.8354011579818033,1,a-sust-i3,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 3.8, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 7.8,917,117.56410256410257 +5.895545314900154,5,a-sust-i3,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 1.0, 1.0, 0.0, 1.0, 3.0, 0.0, 6.0,137,22.833333333333332 +4.445029624753127,4.45,a-sust-i3,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 2.0, 1.0, 1.0, 0.9, 4.9,189,38.57142857142857 +-0.013312852022529558,1,a-sust-i3,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 1.7, 1.0, 0.9, 0.0, 3.6,313,86.94444444444444 +7.518536350505537,5,a-sust-i3,2023-24,Quabbin - New Braintree Grade,07530020, 1.0, 1.8, 0.0, 0.0, 1.9, 1.0, 1.0, 6.7,35,5.223880597014925 +5.432521395655035,5,a-sust-i3,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.8, 2.8, 0.0, 1.0, 1.0, 5.6,156,27.857142857142858 +2.9751861042183623,2.98,a-sust-i3,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 2.0, 0.8, 0.0, 3.6, 4.0, 0.0, 10.4,567,54.51923076923077 +4.114285714285715,4.11,a-sust-i3,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 1.0, 2.0, 1.0, 0.8, 2.0, 4.9, 0.8, 12.5,527,42.16 +6.208407787077965,5,a-sust-i3,2023-24,Quabbin - Ruggles Lane,07530030, 3.0, 1.0, 5.0, 2.9, 1.0, 5.7, 1.0, 19.6,381,19.43877551020408 +7.023041474654377,5,a-sust-i3,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,53,10.6 +4.477214541730671,4.48,a-sust-i3,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 3.0, 2.0, 1.0, 0.0, 3.0, 0.0, 9.0,344,38.22222222222222 +-Infinity,1,a-sust-i3,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +6.197775103466494,5,a-sust-i3,2023-24,Quaboag Regional - Warren Elementary,07780005, 3.0, 1.0, 4.7, 4.0, 1.0, 2.0, 0.0, 15.7,307,19.554140127388536 +6.7506400409626215,5,a-sust-i3,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 1.0, 1.0, 6.0, 5.0, 3.0, 2.0, 0.0, 18.0,244,13.555555555555555 +7.28780896522832,5,a-sust-i3,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 4.0, 1.0, 2.0, 4.0, 4.0, 5.0, 2.0, 22.0,170,7.7272727272727275 +6.476190476190476,5,a-sust-i3,2023-24,Quincy - Atherton Hough,02430040, 0.0, 2.0, 1.0, 3.0, 3.0, 3.0, 3.0, 15.0,248,16.533333333333335 +-17.806451612903224,1,a-sust-i3,2023-24,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,560,280.0 +2.7926267281105988,2.79,a-sust-i3,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0, 0.0, 6.0,339,56.5 +4.092165898617512,4.09,a-sust-i3,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, 1.0, 1.0, 0.0, 2.0, 2.5, 1.0, 7.5,318,42.4 +-53.751152073732726,1,a-sust-i3,2023-24,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,670,670.0 +-2.2611367127496167,1,a-sust-i3,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,334,111.33333333333333 +1.9055299539170505,1.91,a-sust-i3,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 2.0, 0.0, 1.0, 3.0, 1.0, 1.0, 0.0, 8.0,529,66.125 +5.18475073313783,5,a-sust-i3,2023-24,Quincy - Francis W Parker,02430075, 0.0, 3.0, 2.0, 1.0, 4.0, 1.0, 0.0, 11.0,336,30.545454545454547 +2.193548387096774,2.19,a-sust-i3,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 1.0, 0.0, 4.0, 2.0, 1.0, 1.0, 9.0,567,63.0 +4.324884792626728,4.32,a-sust-i3,2023-24,Quincy - Merrymount,02430060, 0.0, 0.0, 1.0, 0.0, 2.0, 4.0, 1.0, 8.0,319,39.875 +1.7173579109062973,1.72,a-sust-i3,2023-24,Quincy - Montclair,02430065, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0, 2.0, 6.0,409,68.16666666666667 +-1.927583936800527,1,a-sust-i3,2023-24,Quincy - North Quincy High,02430510, 0.0, 1.0, 3.0, 4.0, 3.0, 3.0, 0.0, 14.0,1508,107.71428571428571 +1.7327188940092164,1.73,a-sust-i3,2023-24,Quincy - Point Webster Middle,02430325, 1.0, 2.0, 1.0, 1.0, 1.0, 0.0, 0.0, 6.0,408,68.0 +-12.886210563629918,1,a-sust-i3,2023-24,Quincy - Quincy High,02430505, 0.0, 1.0, 0.0, 1.0, 2.5, 0.0, 2.0, 6.5,1473,226.6153846153846 +6.763705704751311,5,a-sust-i3,2023-24,Quincy - Snug Harbor Community School,02430090, 2.0, 1.0, 2.0, 2.0, 10.0, 6.0, 6.0, 29.0,389,13.413793103448276 +3.463389656938044,3.46,a-sust-i3,2023-24,Quincy - South West Middle School,02430320, 0.0, 2.0, 1.0, 5.0, 0.0, 0.0, 1.0, 9.0,443,49.22222222222222 +5.788018433179723,5,a-sust-i3,2023-24,Quincy - Squantum,02430095, 0.0, 1.0, 1.0, 2.0, 6.0, 3.0, 2.0, 15.0,360,24.0 +0.7419354838709675,1,a-sust-i3,2023-24,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 4.0,315,78.75 +3.7771260997067446,3.78,a-sust-i3,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.0, 0.0, 5.0, 1.0, 3.0, 1.0, 0.0, 11.0,504,45.81818181818182 +5.594470046082949,5,a-sust-i3,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 2.0, 2.0, 1.0, 1.0, 1.0, 2.0, 1.0, 10.0,261,26.1 +6.631912442396313,5,a-sust-i3,2023-24,Randolph - J F Kennedy Elementary,02440018, 5.0, 5.0, 6.0, 4.0, 9.0, 0.0, 3.0, 32.0,475,14.84375 +2.628044766293614,2.63,a-sust-i3,2023-24,Randolph - Margaret L Donovan,02440015, 0.0, 2.0, 1.0, 2.0, 1.0, 1.0, 0.0, 7.0,408,58.285714285714285 +5.465437788018433,5,a-sust-i3,2023-24,Randolph - Martin E Young Elementary,02440040, 2.0, 1.0, 0.0, 1.0, 3.0, 1.0, 2.0, 10.0,275,27.5 +4.092685143116764,4.09,a-sust-i3,2023-24,Randolph - Randolph Community Middle,02440410, 4.0, 1.0, 2.0, 1.0, 2.0, 3.0, 1.2, 14.2,602,42.3943661971831 +2.9001536098310288,2.9,a-sust-i3,2023-24,Randolph - Randolph High,02440505, 1.0, 3.0, 2.0, 0.0, 1.0, 2.0, 3.0, 12.0,664,55.333333333333336 +4.509461711932542,4.51,a-sust-i3,2023-24,Reading - Alice M Barrows,02460002, 0.5, 1.0, 2.9, 1.7, 1.9, 1.5, 0.0, 9.4,356,37.87234042553192 +4.904761904761904,4.9,a-sust-i3,2023-24,Reading - Arthur W Coolidge Middle,02460305, 2.0, 0.0, 1.0, 4.0, 0.0, 1.0, 4.0, 12.0,403,33.583333333333336 +6.110853680270896,5,a-sust-i3,2023-24,Reading - Birch Meadow,02460005, 0.0, 0.0, 1.0, 3.5, 5.2, 7.5, 0.9, 18.1,371,20.497237569060772 +2.8944943002667953,2.89,a-sust-i3,2023-24,Reading - J Warren Killam,02460017, 0.9, 0.0, 0.0, 2.2, 3.5, 0.0, 0.9, 7.6,421,55.39473684210527 +5.132616487455197,5,a-sust-i3,2023-24,Reading - Joshua Eaton,02460010, 1.0, 1.0, 2.5, 1.6, 1.0, 2.5, 3.1, 12.6,392,31.11111111111111 +7.25998183591779,5,a-sust-i3,2023-24,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.9, 1.5, 6.2, 3.7, 1.4, 13.7,110,8.029197080291972 +-3.36022368352923,1,a-sust-i3,2023-24,Reading - Reading Memorial High,02460505, 1.0, 1.0, 2.0, 1.9, 1.0, 2.0, 0.0, 8.9,1097,123.25842696629213 +4.0786018607077645,4.08,a-sust-i3,2023-24,Reading - Walter S Parker Middle,02460310, 3.0, 0.0, 0.4, 1.0, 1.5, 3.7, 1.0, 10.6,451,42.54716981132076 +6.406298003072196,5,a-sust-i3,2023-24,Reading - Wood End Elementary School,02460020, 2.0, 0.0, 1.0, 1.8, 2.0, 6.1, 1.5, 14.4,249,17.291666666666668 +1.9960500329163926,2.0,a-sust-i3,2023-24,Revere - A. C. Whelan Elementary School,02480003, 1.0, 1.5, 0.5, 3.5, 1.0, 2.0, 1.0, 10.5,684,65.14285714285714 +0.047399605003290816,1,a-sust-i3,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.5, 2.0, 0.5, 2.0, 2.0, 7.0,604,86.28571428571429 +4.651305683563748,4.65,a-sust-i3,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.5, 0.5, 1.5, 2.5, 2.0, 1.0, 1.0, 9.0,327,36.333333333333336 +-Infinity,1,a-sust-i3,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +3.614174479580486,3.61,a-sust-i3,2023-24,Revere - Garfield Elementary School,02480056, 1.0, 2.5, 3.0, 2.0, 1.5, 3.0, 1.5, 14.5,690,47.58620689655172 +-Infinity,1,a-sust-i3,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +1.3782346685572495,1.38,a-sust-i3,2023-24,Revere - Paul Revere,02480050, 0.0, 1.0, 2.0, 2.5, 1.0, 0.0, 0.0, 6.5,467,71.84615384615384 +-13.484895033282129,1,a-sust-i3,2023-24,Revere - Revere High,02480505, 1.5, 0.0, 1.0, 2.0, 2.0, 1.5, 1.0, 9.0,2098,233.11111111111111 +-1.7025555090071216,1,a-sust-i3,2023-24,Revere - Rumney Marsh Academy,02480014, 1.5, 0.0, 0.5, 1.0, 1.5, 0.5, 0.5, 5.5,579,105.27272727272727 +-2.0153609831029202,1,a-sust-i3,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.5, 2.0, 1.0, 0.0, 1.0, 1.5, 0.0, 6.0,652,108.66666666666667 +-3.633384536610343,1,a-sust-i3,2023-24,Revere - Susan B. Anthony Middle School,02480305, 1.0, 0.0, 0.0, 1.5, 0.0, 1.0, 1.0, 4.5,568,126.22222222222223 +6.57233215866992,5,a-sust-i3,2023-24,Richmond - Richmond Consolidated,02490005, 1.0, 1.0, 1.0, 0.2, 3.0, 3.0, 1.0, 10.2,158,15.490196078431374 +-0.6999022482893463,1,a-sust-i3,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.6, 2.0, 0.0, 2.0, 0.0, 0.0, 2.0, 6.6,623,94.3939393939394 +5.586929199832425,5,a-sust-i3,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 2.0, 3.3, 0.0, 1.8, 1.0, 2.0, 1.0, 11.0,288,26.181818181818183 +4.7478604344963795,4.75,a-sust-i3,2023-24,Rochester - Rochester Memorial,02500005, 0.0, 1.0, 1.0, 2.0, 4.0, 3.0, 3.0, 14.0,494,35.285714285714285 +2.1600335148722243,2.16,a-sust-i3,2023-24,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 1.0, 2.0, 3.0, 3.0, 2.0, 11.0,697,63.36363636363637 +5.191134518323459,5,a-sust-i3,2023-24,Rockland - Phelps Elementary School,02510060, 4.0, 3.0, 2.0, 4.0, 1.0, 4.0, 3.0, 21.0,640,30.476190476190474 +6.9372707608388975,5,a-sust-i3,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 2.0, 0.0, 4.0, 3.0, 2.0, 8.0, 0.6, 19.6,226,11.530612244897958 +-0.44122595274669113,1,a-sust-i3,2023-24,Rockland - Rockland Senior High,02510505, 1.0, 1.0, 3.0, 0.3, 0.0, 1.0, 0.0, 6.3,577,91.5873015873016 +5.910906298003072,5,a-sust-i3,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 1.0, 1.0, 2.0, 4.0, 2.0, 2.0, 12.0,272,22.666666666666668 +2.518554450642736,2.52,a-sust-i3,2023-24,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.8, 0.0, 2.0, 1.0, 3.8,226,59.473684210526315 +0.027649769585253194,1,a-sust-i3,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,173,86.5 +6.186412962687677,5,a-sust-i3,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.9, 0.0, 0.0, 2.0, 0.2, 0.0, 3.1,61,19.677419354838708 +-44.442396313364064,1,a-sust-i3,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1138,569.0 +5.967229902713774,5,a-sust-i3,2023-24,Salem - Bates,02580003, 2.0, 5.0, 4.0, 1.5, 1.0, 4.5, 0.0, 18.0,397,22.055555555555557 +5.737746124842899,5,a-sust-i3,2023-24,Salem - Bentley Academy Innovation School,02580010, 2.0, 3.0, 2.0, 1.0, 1.0, 2.0, 0.0, 11.0,270,24.545454545454547 +5.509559760760859,5,a-sust-i3,2023-24,Salem - Carlton,02580015, 2.0, 1.0, 0.0, 0.0, 3.0, 2.4, 1.0, 9.4,254,27.02127659574468 +4.670307130870248,4.67,a-sust-i3,2023-24,Salem - Collins Middle,02580305, 4.0, 2.3, 3.0, 0.0, 2.0, 4.0, 2.0, 17.3,625,36.127167630057805 +5.978933508887426,5,a-sust-i3,2023-24,Salem - Horace Mann Laboratory,02580030, 4.0, 2.0, 1.0, 2.0, 2.0, 2.0, 1.0, 14.0,307,21.928571428571427 +3.8525345622119813,3.85,a-sust-i3,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,45,45.0 +7.42652329749104,5,a-sust-i3,2023-24,Salem - Salem Early Childhood,02580001, 1.0, 3.0, 3.0, 2.0, 2.0, 6.0, 1.0, 18.0,112,6.222222222222222 +4.879526003949967,4.88,a-sust-i3,2023-24,Salem - Salem High,02580505, 5.0, 5.0, 2.0, 3.0, 7.0, 2.0, 4.0, 28.0,948,33.857142857142854 +6.433179723502304,5,a-sust-i3,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,17,17.0 +4.846956099927238,4.85,a-sust-i3,2023-24,Salem - Saltonstall School,02580050, 1.0, 2.0, 1.0, 2.0, 1.0, 3.4, 1.0, 11.4,390,34.21052631578947 +6.04257186745666,5,a-sust-i3,2023-24,Salem - Witchcraft Heights,02580070, 3.0, 1.0, 6.0, 5.0, 4.0, 2.0, 0.0, 21.0,446,21.238095238095237 +0.5038402457757298,1,a-sust-i3,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 3.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 6.0,488,81.33333333333333 +6.45536781020652,5,a-sust-i3,2023-24,Sandwich - Forestdale School,02610002, 2.0, 1.0, 5.4, 6.5, 10.8, 4.5, 2.3, 32.4,543,16.75925925925926 +5.773483309383414,5,a-sust-i3,2023-24,Sandwich - Oak Ridge,02610025, 1.0, 2.0, 2.0, 9.5, 4.0, 6.0, 3.5, 27.9,674,24.157706093189965 +4.742042653520523,4.74,a-sust-i3,2023-24,Sandwich - Sandwich Middle High School,02610505, 1.0, 1.0, 2.8, 1.0, 5.0, 10.0, 5.0, 25.8,912,35.348837209302324 +0.6267281105990781,1,a-sust-i3,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 2.0, 1.0, 2.0, 2.0, 3.0, 10.0,800,80.0 +-5.400921658986175,1,a-sust-i3,2023-24,Saugus - Saugus High,02620505, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 1.0, 5.0,727,145.4 +0.8917050691244237,1,a-sust-i3,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 1.0, 8.0,617,77.125 +4.420890937019969,4.42,a-sust-i3,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 1.0, 1.0, 7.0, 2.0, 1.0, 12.0,466,38.833333333333336 +5.8341013824884795,5,a-sust-i3,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,47,23.5 +4.156263091746963,4.16,a-sust-i3,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 2.0, 0.0, 1.0, 2.0, 3.8, 0.0, 8.8,367,41.70454545454545 +-0.08426596445029595,1,a-sust-i3,2023-24,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 1.0, 2.0, 2.0, 2.0, 7.0,614,87.71428571428571 +6.443143604433927,5,a-sust-i3,2023-24,Scituate - Hatherly Elementary,02640010, 1.0, 0.0, 2.0, 3.0, 4.8, 2.0, 2.0, 14.8,250,16.89189189189189 +6.045849617919851,5,a-sust-i3,2023-24,Scituate - Jenkins Elementary School,02640015, 1.0, 1.0, 2.0, 3.0, 2.0, 6.8, 0.0, 15.8,335,21.202531645569618 +1.425499231950845,1.43,a-sust-i3,2023-24,Scituate - Scituate High School,02640505, 0.0, 0.0, 1.0, 2.5, 2.0, 4.0, 1.0, 10.5,749,71.33333333333333 +5.79825908858167,5,a-sust-i3,2023-24,Scituate - Wampatuck Elementary,02640020, 1.0, 0.8, 1.6, 5.2, 4.6, 3.8, 1.0, 18.0,430,23.88888888888889 +4.355902162353775,4.36,a-sust-i3,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 2.0, 1.0, 2.0, 1.0, 7.0, 0.0, 13.0,514,39.53846153846154 +5.4308755760368665,5,a-sust-i3,2023-24,Seekonk - George R Martin,02650007, 2.0, 1.0, 3.0, 3.0, 4.0, 3.0, 0.0, 16.0,446,27.875 +5.350230414746544,5,a-sust-i3,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 1.0, 4.0, 5.0, 3.0, 5.0, 2.0, 20.0,575,28.75 +2.009216589861751,2.01,a-sust-i3,2023-24,Seekonk - Seekonk High,02650505, 0.0, 4.0, 1.0, 1.0, 0.0, 2.0, 0.0, 8.0,520,65.0 +-Infinity,1,a-sust-i3,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +-Infinity,1,a-sust-i3,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,439,Infinity +-Infinity,1,a-sust-i3,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +-8.651305683563747,1,a-sust-i3,2023-24,Sharon - Heights Elementary,02660015, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,542,180.66666666666666 +-Infinity,1,a-sust-i3,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +3.2576455802262254,3.26,a-sust-i3,2023-24,Sharon - Sharon High,02660505, 1.0, 4.0, 0.0, 2.0, 5.0, 7.0, 3.0, 22.0,1132,51.45454545454545 +3.0414746543778803,3.04,a-sust-i3,2023-24,Sharon - Sharon Middle,02660305, 2.0, 1.0, 2.0, 3.0, 3.0, 2.0, 2.0, 15.0,807,53.8 +-2.030721966205838,1,a-sust-i3,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 2.0, 5.0, 0.0, 1.0, 1.0, 3.0, 0.0, 12.0,1306,108.83333333333333 +6.320067029744449,5,a-sust-i3,2023-24,Sherborn - Pine Hill,02690010, 3.0, 4.0, 1.0, 6.0, 4.0, 4.0, 0.0, 22.0,401,18.227272727272727 +6.975143675604505,5,a-sust-i3,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 3.0, 8.0, 3.0, 0.0, 3.7, 5.3, 2.9, 25.9,288,11.11969111969112 +6.539359150564584,5,a-sust-i3,2023-24,Shrewsbury - Floral Street School,02710020, 5.0, 6.7, 8.7, 4.9, 2.3, 5.7, 1.0, 34.2,542,15.847953216374268 +6.8610393016372555,5,a-sust-i3,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 5.8, 9.0, 10.5, 8.8, 10.5, 3.7, 1.0, 49.2,608,12.357723577235772 +5.202319012932956,5,a-sust-i3,2023-24,Shrewsbury - Oak Middle School,02710030, 3.0, 3.0, 2.0, 10.0, 7.0, 1.0, 5.0, 31.0,941,30.35483870967742 +7.266359447004609,5,a-sust-i3,2023-24,Shrewsbury - Parker Road Preschool,02710040, 5.0, 4.0, 8.0, 4.0, 2.0, 1.0, 1.0, 25.0,199,7.96 +5.799059139784946,5,a-sust-i3,2023-24,Shrewsbury - Sherwood Middle School,02710305, 5.0, 0.0, 7.0, 13.6, 1.0, 7.8, 4.0, 38.4,917,23.880208333333336 +3.0520078999341673,3.05,a-sust-i3,2023-24,Shrewsbury - Shrewsbury High School,02710505, 1.0, 6.0, 9.0, 4.0, 8.0, 3.0, 4.0, 35.0,1879,53.68571428571428 +6.549434436531211,5,a-sust-i3,2023-24,Shrewsbury - Spring Street School,02710035, 1.0, 0.6, 1.0, 3.6, 4.8, 4.0, 2.6, 17.6,277,15.738636363636362 +6.544748969197186,5,a-sust-i3,2023-24,Shrewsbury - Walter J. Paton School,02710025, 3.0, 2.6, 4.0, 2.0, 3.8, 0.6, 1.1, 17.1,270,15.789473684210526 +7.147465437788019,5,a-sust-i3,2023-24,Shutesbury - Shutesbury Elementary,02720005, 2.0, 1.0, 2.0, 3.0, 4.0, 0.0, 0.0, 12.0,111,9.25 +3.0230414746543777,3.02,a-sust-i3,2023-24,Silver Lake - Silver Lake Regional High,07600505, 4.0, 4.0, 1.0, 0.0, 6.0, 3.0, 1.0, 19.0,1026,54.0 +3.675883256528418,3.68,a-sust-i3,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 3.0, 0.0, 1.0, 1.5, 3.0, 1.5, 2.0, 12.0,563,46.916666666666664 +4.023699802501645,4.02,a-sust-i3,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.9, 0.9, 2.6, 1.7, 0.0, 0.0, 0.9, 7.0,302,43.142857142857146 +5.040989570700946,5,a-sust-i3,2023-24,Somerset - Chace Street,02730005, 1.0, 2.0, 1.0, 2.0, 3.5, 0.0, 0.0, 9.5,305,32.10526315789474 +6.099334357398874,5,a-sust-i3,2023-24,Somerset - North Elementary,02730008, 1.0, 4.0, 4.0, 6.5, 6.0, 1.0, 0.0, 22.5,464,20.622222222222224 +3.2576455802262254,3.26,a-sust-i3,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 1.0, 3.0, 3.0, 2.0, 2.0, 0.0, 11.0,566,51.45454545454545 +6.334657556014619,5,a-sust-i3,2023-24,Somerset - South,02730015, 1.0, 1.0, 3.0, 5.0, 4.5, 0.0, 0.0, 14.5,262,18.06896551724138 +1.1939028713222266,1.19,a-sust-i3,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 3.0, 1.0, 2.0, 3.0, 1.0, 3.0, 0.0, 13.0,960,73.84615384615384 +-0.6635944700460832,1,a-sust-i3,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 0.0, 1.0, 2.0, 1.0, 2.0, 6.0,564,94.0 +2.9099287808965233,2.91,a-sust-i3,2023-24,Somerville - Arthur D Healey,02740075, 0.0, 1.0, 1.0, 4.8, 0.0, 1.0, 1.0, 8.8,486,55.22727272727272 +-2.368663594470046,1,a-sust-i3,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,225,112.5 +7.062028465397007,5,a-sust-i3,2023-24,Somerville - Capuano Early Childhood Center,02740005, 1.0, 3.0, 3.0, 1.8, 6.8, 3.0, 4.0, 22.6,230,10.176991150442477 +-5.695852534562211,1,a-sust-i3,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 5.0,743,148.6 +-Infinity,1,a-sust-i3,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +2.8387096774193545,2.84,a-sust-i3,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 1.0, 1.0, 0.0, 5.0, 1.0, 8.0,448,56.0 +-Infinity,1,a-sust-i3,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +-5.46210412785567,1,a-sust-i3,2023-24,Somerville - Somerville High,02740505, 2.0, 3.0, 0.0, 2.0, 1.0, 1.4, 0.0, 9.4,1373,146.06382978723403 +-0.709677419354839,1,a-sust-i3,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 2.0, 0.0, 0.0, 1.0, 1.0, 4.0,378,94.5 +5.346938775510204,5,a-sust-i3,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 2.0, 2.0, 3.0, 5.0, 1.0, 1.0, 14.0,403,28.785714285714285 +3.794930875576037,3.79,a-sust-i3,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 2.0, 2.0, 1.2, 3.0, 2.0, 1.0, 11.2,511,45.625 +5.989107666527022,5,a-sust-i3,2023-24,South Hadley - Mosier,02780020, 0.0, 2.0, 4.0, 2.0, 4.0, 1.0, 3.5, 16.5,360,21.818181818181817 +6.874471744993522,5,a-sust-i3,2023-24,South Hadley - Plains Elementary,02780015, 1.8, 0.0, 1.0, 3.0, 3.8, 5.0, 7.1, 21.7,265,12.211981566820278 +1.3113890717577352,1.31,a-sust-i3,2023-24,South Hadley - South Hadley High,02780505, 1.0, 1.0, 0.0, 1.0, 1.0, 1.0, 2.0, 7.0,508,72.57142857142857 +3.986175115207373,3.99,a-sust-i3,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.0, 2.0, 3.0, 5.0, 3.0, 5.0, 1.0, 20.0,871,43.55 +3.580226225387516,3.58,a-sust-i3,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 3.5, 7.0, 4.4, 6.2, 0.0, 0.9, 0.0, 22.0,1055,47.95454545454545 +3.9556148435605136,3.96,a-sust-i3,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 3.0, 2.9, 1.8, 3.0, 2.0, 1.0, 1.5, 15.2,667,43.881578947368425 +5.961965340429675,5,a-sust-i3,2023-24,Southampton - William E Norris,02750005, 3.0, 0.0, 3.0, 6.6, 3.8, 2.9, 2.0, 21.3,471,22.112676056338028 +4.7478604344963795,4.75,a-sust-i3,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 1.0, 1.0, 0.0, 1.0, 1.0, 2.0, 1.0, 7.0,247,35.285714285714285 +5.612065354000838,5,a-sust-i3,2023-24,Southborough - Margaret A Neary,02760020, 2.0, 1.0, 1.0, 2.0, 4.0, 1.0, 0.0, 11.0,285,25.90909090909091 +6.980589303169948,5,a-sust-i3,2023-24,Southborough - Mary E Finn School,02760008, 6.0, 0.0, 5.0, 8.0, 6.0, 6.0, 2.0, 33.0,365,11.06060606060606 +5.5799018879143745,5,a-sust-i3,2023-24,Southborough - P Brent Trottier,02760305, 2.0, 2.0, 1.0, 1.0, 2.6, 5.8, 1.1, 15.5,407,26.258064516129032 +6.627213194276012,5,a-sust-i3,2023-24,Southbridge - Charlton Street,02770005, 4.0, 3.0, 5.0, 3.0, 2.0, 2.0, 0.0, 19.0,283,14.894736842105264 +6.233486943164362,5,a-sust-i3,2023-24,Southbridge - Eastford Road,02770010, 4.0, 3.0, 3.0, 2.0, 3.0, 3.0, 0.0, 18.0,345,19.166666666666668 +6.894009216589862,5,a-sust-i3,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,36,12.0 +-2.714285714285714,1,a-sust-i3,2023-24,Southbridge - Southbridge High School,02770515, 1.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 4.0,465,116.25 +5.182356813693219,5,a-sust-i3,2023-24,Southbridge - Southbridge Middle School,02770315, 4.0, 4.0, 0.0, 0.0, 3.0, 2.0, 1.0, 14.0,428,30.571428571428573 +5.480798771121352,5,a-sust-i3,2023-24,Southbridge - West Street,02770020, 1.0, 2.0, 1.0, 3.0, 5.0, 0.0, 0.0, 12.0,328,27.333333333333332 +4.074961597542242,4.07,a-sust-i3,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 6.0, 7.0, 3.0, 5.0, 8.0, 3.5, 5.0, 37.5,1597,42.586666666666666 +3.6835637480798766,3.68,a-sust-i3,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 4.0, 6.0,281,46.833333333333336 +6.8018433179723505,5,a-sust-i3,2023-24,Southern Berkshire - New Marlborough Central,07650018, 1.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 5.0,65,13.0 +6.986175115207374,5,a-sust-i3,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,11,11.0 +6.308097432521396,5,a-sust-i3,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 1.0, 3.0, 6.0, 1.0, 3.0, 0.0, 14.0,257,18.357142857142858 +1.127880184331797,1.13,a-sust-i3,2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 1.0, 2.0, 5.0, 2.0, 2.0, 3.0, 1.0, 16.0,1193,74.5625 +5.491770901909151,5,a-sust-i3,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 2.0, 4.0, 1.0, 2.0, 2.0, 2.0, 1.0, 14.0,381,27.214285714285715 +3.957867017774852,3.96,a-sust-i3,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 2.0, 1.0, 3.0, 0.0, 3.0, 3.0, 2.0, 14.0,614,43.857142857142854 +6.48753397140494,5,a-sust-i3,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 2.0, 3.0, 4.0, 2.5, 5.0, 3.0, 19.5,320,16.41025641025641 +4.186635944700461,4.19,a-sust-i3,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 1.0, 0.0, 2.0, 1.0, 2.0, 2.0, 0.0, 8.0,331,41.375 +6.814324116743472,5,a-sust-i3,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 1.0, 3.0, 3.5, 4.0, 3.0, 2.7, 2.0, 19.2,247,12.864583333333334 +4.798880842659644,4.8,a-sust-i3,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 2.0, 2.0, 1.5, 3.0, 2.1, 0.6, 11.2,389,34.73214285714286 +5.921658986175116,5,a-sust-i3,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 2.0, 2.0, 6.0, 3.5, 3.5, 0.0, 3.0, 20.0,451,22.55 +4.082949308755761,4.08,a-sust-i3,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 2.0, 1.0, 0.0, 2.0, 3.0, 2.0, 0.0, 10.0,425,42.5 +4.497695852534562,4.5,a-sust-i3,2023-24,Springfield - Alice B Beal Elementary,02810175, 1.0, 2.0, 2.0, 1.0, 0.0, 2.0, 0.0, 8.0,304,38.0 +5.419354838709677,5,a-sust-i3,2023-24,Springfield - Arthur T Talmadge,02810165, 3.0, 0.0, 1.0, 0.0, 1.0, 3.0, 0.0, 8.0,224,28.0 +7.2453917050691246,5,a-sust-i3,2023-24,Springfield - Balliet Preschool,02810003, 4.0, 6.0, 3.0, 1.0, 2.0, 0.0, 0.0, 16.0,131,8.1875 +5.444956477214542,5,a-sust-i3,2023-24,Springfield - Benjamin Swan Elementary,02810085, 8.0, 4.0, 3.0, 0.0, 2.0, 1.0, 0.0, 18.0,499,27.72222222222222 +4.596951435661113,4.6,a-sust-i3,2023-24,Springfield - Brightwood,02810025, 2.0, 7.0, 3.0, 0.0, 1.0, 0.0, 0.0, 13.0,480,36.92307692307692 +6.622933044185416,5,a-sust-i3,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 7.0, 3.0, 1.0, 2.0, 4.0, 0.0, 17.0,254,14.941176470588236 +5.4612484289903644,5,a-sust-i3,2023-24,Springfield - Conservatory of the Arts,02810475, 2.0, 3.0, 2.0, 3.0, 0.0, 0.0, 1.0, 11.0,303,27.545454545454547 +6.057932850559578,5,a-sust-i3,2023-24,Springfield - Daniel B Brunton,02810035, 4.0, 1.0, 1.0, 1.0, 5.0, 2.0, 0.0, 14.0,295,21.071428571428573 +7.306912442396314,5,a-sust-i3,2023-24,Springfield - Early Childhood Education Center,02810001, 8.0, 5.0, 5.0, 0.0, 3.0, 4.0, 0.0, 25.0,188,7.52 +6.865335381464413,5,a-sust-i3,2023-24,Springfield - Edward P. Boland School,02810010, 12.0, 11.0, 11.0, 4.0, 4.0, 2.0, 1.0, 45.0,554,12.311111111111112 +6.433179723502304,5,a-sust-i3,2023-24,Springfield - Elias Brookings,02810030, 1.0, 2.0, 3.0, 2.0, 3.0, 3.0, 3.0, 17.0,289,17.0 +-Infinity,1,a-sust-i3,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +4.728110599078341,4.73,a-sust-i3,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 2.0, 1.0, 0.0, 3.0, 2.0, 0.0, 8.0,284,35.5 +4.9239631336405525,4.92,a-sust-i3,2023-24,Springfield - Frank H Freedman,02810075, 1.0, 1.0, 0.0, 2.0, 3.0, 0.0, 1.0, 8.0,267,33.375 +6.112442396313364,5,a-sust-i3,2023-24,Springfield - Frederick Harris,02810080, 1.0, 6.0, 9.0, 3.0, 4.0, 2.0, 0.0, 25.0,512,20.48 +-Infinity,1,a-sust-i3,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +-Infinity,1,a-sust-i3,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +6.359447004608295,5,a-sust-i3,2023-24,Springfield - German Gerena Community School,02810195, 6.0, 10.0, 5.0, 4.0, 6.0, 4.0, 0.0, 35.0,623,17.8 +5.901453385324353,5,a-sust-i3,2023-24,Springfield - Glenwood,02810065, 3.0, 0.0, 3.0, 3.0, 1.0, 2.0, 1.0, 13.0,296,22.76923076923077 +6.387096774193548,5,a-sust-i3,2023-24,Springfield - Glickman Elementary,02810068, 1.0, 6.0, 4.0, 4.0, 2.0, 1.0, 0.0, 18.0,315,17.5 +0.48493442041829166,1,a-sust-i3,2023-24,Springfield - High School Of Commerce,02810510, 2.0, 2.0, 3.0, 1.0, 2.0, 2.0, 1.0, 13.0,1060,81.53846153846153 +5.872503840245776,5,a-sust-i3,2023-24,Springfield - Hiram L Dorman,02810050, 2.0, 2.0, 2.0, 1.0, 3.0, 1.0, 1.0, 12.0,277,23.083333333333332 +-1.308755760368664,1,a-sust-i3,2023-24,Springfield - Impact Prep at Chestnut,02810366, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,202,101.0 +5.917050691244238,5,a-sust-i3,2023-24,Springfield - Indian Orchard Elementary,02810100, 2.0, 7.0, 6.0, 3.0, 1.0, 6.0, 0.0, 25.0,565,22.6 +-0.45622119815668233,1,a-sust-i3,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 4.0,367,91.75 +1.617511520737327,1.62,a-sust-i3,2023-24,Springfield - John J Duggan Academy,02810320, 3.0, 2.0, 1.0, 2.0, 1.0, 1.0, 2.0, 12.0,831,69.25 +5.987711213517666,5,a-sust-i3,2023-24,Springfield - Kensington International School,02810110, 2.0, 3.0, 2.0, 2.0, 2.0, 1.0, 0.0, 12.0,262,21.833333333333332 +2.7096774193548385,2.71,a-sust-i3,2023-24,Springfield - Kiley Academy,02810316, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 1.0, 5.0,287,57.4 +1.9400921658986172,1.94,a-sust-i3,2023-24,Springfield - Kiley Prep,02810315, 0.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 4.0,263,65.75 +4.761026991441738,4.76,a-sust-i3,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 2.0, 1.0, 3.0, 1.0, 0.0, 7.0,246,35.142857142857146 +-Infinity,1,a-sust-i3,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +5.6753712237583205,5,a-sust-i3,2023-24,Springfield - Lincoln,02810120, 4.0, 6.0, 4.0, 0.0, 4.0, 0.0, 0.0, 18.0,454,25.22222222222222 +7.491244239631337,5,a-sust-i3,2023-24,Springfield - Margaret C Ells,02810060, 4.0, 4.0, 7.0, 3.0, 4.0, 3.0, 0.0, 25.0,138,5.52 +5.0302099334357395,5,a-sust-i3,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 2.0, 2.0, 2.0, 1.0, 0.0, 1.0, 1.0, 9.0,290,32.22222222222222 +5.917050691244238,5,a-sust-i3,2023-24,Springfield - Mary M Lynch,02810140, 2.0, 2.0, 2.0, 0.0, 0.0, 2.0, 2.0, 10.0,226,22.6 +6.470046082949308,5,a-sust-i3,2023-24,Springfield - Mary M Walsh,02810155, 2.0, 2.0, 5.0, 1.0, 1.0, 2.0, 2.0, 15.0,249,16.6 +6.125960061443933,5,a-sust-i3,2023-24,Springfield - Mary O Pottenger,02810145, 6.0, 5.0, 3.0, 0.0, 2.0, 2.0, 0.0, 18.0,366,20.333333333333332 +6.19815668202765,5,a-sust-i3,2023-24,Springfield - Milton Bradley School,02810023, 4.0, 7.0, 2.0, 2.0, 3.0, 2.0, 0.0, 20.0,391,19.55 +6.476702508960573,5,a-sust-i3,2023-24,Springfield - Rebecca M Johnson,02810055, 7.0, 8.0, 4.0, 10.0, 2.0, 5.0, 0.0, 36.0,595,16.52777777777778 +1.3640552995391704,1.36,a-sust-i3,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0,216,72.0 +2.2061164641809796,2.21,a-sust-i3,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 4.0, 2.0, 3.0, 4.0, 3.0, 4.0, 2.0, 22.0,1383,62.86363636363637 +2.7096774193548385,2.71,a-sust-i3,2023-24,Springfield - STEM Middle Academy,02810350, 1.0, 2.0, 0.0, 0.0, 1.0, 1.0, 0.0, 5.0,287,57.4 +6.095238095238095,5,a-sust-i3,2023-24,Springfield - Samuel Bowles,02810020, 2.0, 3.0, 2.0, 3.0, 1.0, 3.0, 1.0, 15.0,310,20.666666666666668 +-0.709677419354839,1,a-sust-i3,2023-24,Springfield - South End Middle School,02810355, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,189,94.5 +3.9086355439791625,3.91,a-sust-i3,2023-24,Springfield - Springfield Central High,02810500, 7.0, 7.0, 8.0, 8.0, 5.0, 5.0, 6.0, 46.0,2042,44.391304347826086 +5.090190915075707,5,a-sust-i3,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 3.0, 1.0, 2.0, 1.0, 0.0, 7.0,221,31.571428571428573 +5.191500256016385,5,a-sust-i3,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 4.0, 6.0, 3.0, 8.0, 2.0, 9.0, 4.0, 36.0,1097,30.47222222222222 +-Infinity,1,a-sust-i3,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +-Infinity,1,a-sust-i3,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +-24.718894009216594,1,a-sust-i3,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +7.354838709677419,5,a-sust-i3,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,14,7.0 +7.658986175115207,5,a-sust-i3,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 2.0, 4.0, 1.0, 0.0, 2.0, 1.0, 0.0, 10.0,37,3.7 +7.1013824884792625,5,a-sust-i3,2023-24,Springfield - Springfield Public Day High School,02810550, 1.0, 1.0, 2.0, 0.0, 2.0, 2.0, 0.0, 8.0,78,9.75 +7.297235023041474,5,a-sust-i3,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 2.0, 3.0, 1.0, 0.0, 1.0, 1.0, 8.0,61,7.625 +-1.1705069124423966,1,a-sust-i3,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,199,99.5 +6.822324628776241,5,a-sust-i3,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 1.0, 9.0,115,12.777777777777779 +6.393680052666228,5,a-sust-i3,2023-24,Springfield - Sumner Avenue,02810160, 4.0, 4.0, 6.0, 4.0, 5.0, 5.0, 0.0, 28.0,488,17.428571428571427 +5.448680351906158,5,a-sust-i3,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 3.0, 4.0, 2.0, 2.0, 3.0, 7.0, 1.0, 22.0,609,27.681818181818183 +4.8868407578085,4.89,a-sust-i3,2023-24,Springfield - The Springfield Virtual School,02810705, 1.0, 3.0, 0.0, 1.0, 3.0, 1.0, 0.0, 9.0,304,33.77777777777778 +4.339697169190257,4.34,a-sust-i3,2023-24,Springfield - Thomas M Balliet,02810015, 2.0, 3.0, 0.0, 0.0, 1.0, 1.0, 0.0, 7.0,278,39.714285714285715 +4.129032258064516,4.13,a-sust-i3,2023-24,Springfield - Van Sickle Academy,02810485, 1.0, 0.0, 1.0, 1.0, 0.0, 3.0, 0.0, 6.0,252,42.0 +4.8663594470046085,4.87,a-sust-i3,2023-24,Springfield - Warner,02810180, 1.0, 2.0, 1.0, 0.0, 1.0, 2.0, 0.0, 7.0,238,34.0 +5.847655191108702,5,a-sust-i3,2023-24,Springfield - Washington,02810185, 2.0, 7.0, 3.0, 3.0, 1.0, 1.0, 0.0, 17.0,397,23.352941176470587 +3.4838709677419355,3.48,a-sust-i3,2023-24,Springfield - White Street,02810190, 3.0, 1.0, 3.0, 0.0, 0.0, 0.0, 1.0, 8.0,392,49.0 +5.701274058010301,5,a-sust-i3,2023-24,Springfield - William N. DeBerry,02810045, 2.0, 7.0, 3.0, 1.0, 2.0, 1.0, 1.0, 17.0,424,24.941176470588236 +4.8899269827241545,4.89,a-sust-i3,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 11.0, 5.0, 12.0, 5.8, 2.0, 6.0, 2.0, 43.8,1478,33.74429223744293 +-14.442396313364055,1,a-sust-i3,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0,487,243.5 +6.4518538598234985,5,a-sust-i3,2023-24,Stoneham - Colonial Park,02840005, 2.0, 0.0, 2.8, 0.8, 5.7, 4.0, 0.0, 15.3,257,16.797385620915033 +5.336676606126321,5,a-sust-i3,2023-24,Stoneham - Robin Hood,02840025, 1.0, 0.0, 1.8, 2.8, 1.0, 7.0, 0.0, 13.6,393,28.897058823529413 +5.2113907597778555,5,a-sust-i3,2023-24,Stoneham - South,02840030, 0.0, 0.8, 4.3, 1.8, 0.8, 4.0, 0.0, 11.7,354,30.25641025641026 +3.391705069124424,3.39,a-sust-i3,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 2.0, 0.0, 5.0, 4.0, 3.0, 0.0, 14.0,700,50.0 +2.608294930875576,2.61,a-sust-i3,2023-24,Stoneham - Stoneham High,02840505, 0.0, 1.0, 0.0, 2.0, 3.0, 3.0, 1.0, 10.0,585,58.5 +7.26656714480431,5,a-sust-i3,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 2.6, 0.8, 1.6, 5.3, 2.2, 1.7, 0.0, 14.2,113,7.95774647887324 +4.943972835314091,4.94,a-sust-i3,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.9, 2.6, 1.3, 0.0, 0.8, 2.1, 7.6,252,33.15789473684211 +3.970421176722752,3.97,a-sust-i3,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.8, 0.9, 3.8, 0.9, 0.0, 1.8, 0.4, 8.6,376,43.72093023255814 +5.154560749030795,5,a-sust-i3,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 1.8, 1.3, 4.8, 3.1, 0.9, 0.9, 12.6,389,30.873015873015873 +2.5161290322580645,2.52,a-sust-i3,2023-24,Stoughton - O'Donnell Middle School,02850405, 1.8, 0.9, 2.2, 0.5, 0.9, 6.1, 1.8, 14.0,833,59.5 +3.1283739302172475,3.13,a-sust-i3,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.9, 0.9, 2.6, 0.9, 0.0, 6.3,333,52.85714285714286 +3.5730150336178887,3.57,a-sust-i3,2023-24,Stoughton - South Elementary,02850015, 1.8, 0.0, 0.9, 1.8, 0.0, 0.9, 0.9, 6.1,293,48.032786885245905 +0.45477680720819896,1,a-sust-i3,2023-24,Stoughton - Stoughton High,02850505, 1.3, 1.8, 0.0, 2.1, 4.8, 2.1, 1.3, 13.4,1097,81.86567164179104 +6.136017027959745,5,a-sust-i3,2023-24,Sturbridge - Burgess Elementary,02870005, 7.0, 6.0, 1.0, 8.6, 10.0, 7.0, 5.0, 44.6,902,20.22421524663677 +-Infinity,1,a-sust-i3,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,826,Infinity +3.7603686635944698,3.76,a-sust-i3,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 6.0, 4.0, 2.0, 2.0, 1.0, 1.0, 2.0, 18.0,828,46.0 +1.1592421915002553,1.16,a-sust-i3,2023-24,Sudbury - General John Nixon Elementary,02880025, 2.0, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 4.5,334,74.22222222222223 +4.339697169190257,4.34,a-sust-i3,2023-24,Sudbury - Israel Loring School,02880015, 2.0, 0.0, 1.0, 1.0, 2.5, 2.0, 2.0, 10.5,417,39.714285714285715 +4.1448887567514,4.14,a-sust-i3,2023-24,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 0.0, 2.8, 4.0, 1.0, 1.5, 9.3,389,41.82795698924731 +4.904310111141231,4.9,a-sust-i3,2023-24,Sudbury - Peter Noyes,02880030, 2.5, 0.5, 0.0, 5.9, 1.9, 6.2, 0.0, 17.0,571,33.588235294117645 +7.112296871210283,5,a-sust-i3,2023-24,Sunderland - Sunderland Elementary,02890005, 5.0, 0.0, 1.0, 4.0, 3.0, 6.0, 0.0, 19.0,183,9.631578947368421 +6.629638612660684,5,a-sust-i3,2023-24,Sutton - Sutton Early Learning,02900003, 4.0, 4.0, 3.0, 3.0, 3.4, 3.6, 1.8, 22.8,339,14.868421052631579 +5.780928748670684,5,a-sust-i3,2023-24,Sutton - Sutton Elementary,02900005, 1.0, 1.0, 1.0, 1.0, 4.0, 3.3, 1.7, 13.0,313,24.076923076923077 +3.8179723502304146,3.82,a-sust-i3,2023-24,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 1.0, 2.0, 4.0, 1.0, 8.0,363,45.375 +4.979006656426011,4.98,a-sust-i3,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 2.0, 0.0, 1.0, 4.0, 1.0, 1.0, 9.0,295,32.77777777777778 +6.634088121208102,5,a-sust-i3,2023-24,Swampscott - Clarke,02910005, 2.0, 3.0, 1.0, 1.0, 0.9, 5.0, 1.0, 13.9,206,14.820143884892087 +5.855486280533719,5,a-sust-i3,2023-24,Swampscott - Hadley,02910010, 1.5, 1.0, 0.0, 5.9, 0.5, 5.0, 1.5, 15.3,356,23.26797385620915 +6.330773169482846,5,a-sust-i3,2023-24,Swampscott - Stanley,02910020, 0.0, 1.0, 1.0, 1.0, 5.0, 1.0, 0.0, 9.0,163,18.11111111111111 +1.1797235023041472,1.18,a-sust-i3,2023-24,Swampscott - Swampscott High,02910505, 0.0, 2.0, 0.0, 2.0, 0.0, 2.0, 3.0, 9.0,666,74.0 +5.415592965296717,5,a-sust-i3,2023-24,Swampscott - Swampscott Middle,02910305, 7.0, 2.0, 5.0, 3.5, 3.0, 4.0, 0.0, 24.5,687,28.040816326530614 +-0.4178187403993854,1,a-sust-i3,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,274,91.33333333333333 +1.7788018433179722,1.78,a-sust-i3,2023-24,Swansea - Gardner,02920015, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,270,67.5 +-5.225806451612903,1,a-sust-i3,2023-24,Swansea - Joseph Case High,02920505, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 4.0,574,143.5 +0.39631336405529927,1,a-sust-i3,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 4.0, 1.0, 1.0, 0.0, 6.0,495,82.5 +2.500768049155146,2.5,a-sust-i3,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,179,59.666666666666664 +5.039170506912442,5,a-sust-i3,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 1.0, 3.0, 3.0, 1.0, 0.0, 8.0,257,32.125 +-Infinity,1,a-sust-i3,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2907,Infinity +3.698924731182796,3.7,a-sust-i3,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 3.0, 2.0, 1.0, 3.0, 1.0, 2.0, 12.0,560,46.666666666666664 +5.343217792025646,5,a-sust-i3,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 6.0, 2.0, 4.0, 3.0, 4.0, 4.0, 23.0,663,28.82608695652174 +-Infinity,1,a-sust-i3,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +1.9258283958744793,1.93,a-sust-i3,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, 1.0, 2.0, 2.0, 0.0, 3.5, 2.0, 10.5,692,65.9047619047619 +4.706605222734255,4.71,a-sust-i3,2023-24,Taunton - East Taunton Elementary,02930010, 2.0, 1.0, 2.0, 1.0, 4.0, 3.0, 2.0, 15.0,536,35.733333333333334 +-1.0629800307219661,1,a-sust-i3,2023-24,Taunton - Edmund Hatch Bennett,02930007, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,295,98.33333333333333 +5.686990428925912,5,a-sust-i3,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 1.0, 2.0, 1.0, 1.0, 4.0, 1.4, 10.4,261,25.096153846153847 +3.8900836320191154,3.89,a-sust-i3,2023-24,Taunton - Elizabeth Pole,02930027, 0.0, 4.0, 1.0, 1.0, 3.0, 3.0, 1.5, 13.5,602,44.592592592592595 +1.5714285714285712,1.57,a-sust-i3,2023-24,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 1.0, 4.0,279,69.75 +3.4838709677419355,3.48,a-sust-i3,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 2.0, 2.0, 5.0, 3.0, 4.0, 1.0, 1.0, 18.0,882,49.0 +0.7685218007798645,1,a-sust-i3,2023-24,Taunton - John F Parker Middle,02930305, 0.0, 1.0, 2.0, 1.0, 1.0, 0.0, 1.5, 6.5,510,78.46153846153847 +4.879071984744955,4.88,a-sust-i3,2023-24,Taunton - Joseph C Chamberlain,02930008, 1.0, 4.0, 1.0, 2.0, 3.0, 2.5, 1.0, 14.5,491,33.86206896551724 +2.570590699622958,2.57,a-sust-i3,2023-24,Taunton - Joseph H Martin,02930042, 1.0, 0.0, 0.0, 4.0, 2.0, 2.0, 2.0, 11.0,648,58.90909090909091 +-Infinity,1,a-sust-i3,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,85,Infinity +-8.5284178187404,1,a-sust-i3,2023-24,Taunton - Taunton High,02930505, 2.0, 2.0, 2.0, 0.0, 2.0, 7.0, 0.0, 15.0,2690,179.33333333333334 +-Infinity,1,a-sust-i3,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +6.232718894009217,5,a-sust-i3,2023-24,Tewksbury - Center Elementary School,02950030, 8.0, 8.0, 4.0, 5.0, 8.0, 3.0, 4.0, 40.0,767,19.175 +6.319327731092437,5,a-sust-i3,2023-24,Tewksbury - Heath-Brook,02950010, 1.0, 3.0, 4.0, 4.0, 2.0, 3.0, 0.0, 17.0,310,18.235294117647058 +5.589134125636672,5,a-sust-i3,2023-24,Tewksbury - John F. Ryan,02950023, 3.0, 2.0, 3.0, 2.0, 4.0, 4.0, 1.0, 19.0,497,26.157894736842106 +4.576695194206715,4.58,a-sust-i3,2023-24,Tewksbury - John W. Wynn Middle,02950305, 3.0, 1.0, 3.0, 4.0, 1.0, 2.0, 0.0, 14.0,520,37.142857142857146 +7.096774193548387,5,a-sust-i3,2023-24,Tewksbury - L F Dewing,02950001, 7.0, 8.0, 5.0, 9.0, 5.0, 5.0, 1.0, 40.0,392,9.8 +4.0788591061543915,4.08,a-sust-i3,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 4.0, 4.5, 1.0, 0.4, 3.0, 1.0, 3.0, 16.9,719,42.544378698224854 +7.035638666975072,5,a-sust-i3,2023-24,Tisbury - Tisbury Elementary,02960005, 1.5, 4.8, 3.2, 5.1, 2.9, 5.4, 3.0, 25.9,271,10.463320463320464 +5.073732718894009,5,a-sust-i3,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 1.3, 0.0, 1.0, 2.0, 3.7, 8.0,254,31.75 +6.075834748160725,5,a-sust-i3,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 2.0, 6.5, 5.8, 2.5, 0.3, 17.1,357,20.877192982456137 +-0.0770842061164648,1,a-sust-i3,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 3.0, 0.0, 3.0, 0.0, 4.0, 1.0, 11.0,964,87.63636363636364 +6.958549792810082,5,a-sust-i3,2023-24,Triton - Newbury Elementary,07730020, 5.0, 3.5, 2.0, 5.0, 11.8, 7.5, 2.9, 37.7,426,11.299734748010609 +6.332058433926007,5,a-sust-i3,2023-24,Triton - Pine Grove,07730025, 2.0, 2.0, 2.7, 6.0, 6.0, 4.0, 2.0, 24.7,447,18.097165991902834 +5.732605807017048,5,a-sust-i3,2023-24,Triton - Salisbury Elementary,07730015, 2.0, 2.0, 5.0, 1.0, 3.0, 2.5, 0.8, 16.3,401,24.60122699386503 +5.360703812316715,5,a-sust-i3,2023-24,Triton - Triton Regional High School,07730505, 1.6, 1.0, 0.0, 2.0, 9.0, 2.0, 4.2, 19.8,567,28.636363636363637 +5.773839064161645,5,a-sust-i3,2023-24,Triton - Triton Regional Middle School,07730405, 1.0, 1.0, 1.0, 2.0, 1.0, 5.0, 2.0, 13.0,314,24.153846153846153 +-Infinity,1,a-sust-i3,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,91,Infinity +5.503563969101217,5,a-sust-i3,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 4.0, 2.6, 1.0, 8.0, 3.0, 7.2, 2.0, 27.8,753,27.086330935251798 +-4.903225806451613,1,a-sust-i3,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 3.0,420,140.0 +4.420082464225079,4.42,a-sust-i3,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 2.0, 0.0, 0.0, 0.5, 0.0, 7.0, 0.0, 9.5,369,38.8421052631579 +4.175115207373271,4.18,a-sust-i3,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 4.0,166,41.5 +1.3410138248847925,1.34,a-sust-i3,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 3.0, 2.0, 1.0, 0.0, 1.0, 1.0, 0.0, 8.0,578,72.25 +6.859642271342655,5,a-sust-i3,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 1.1, 0.1, 0.2, 2.2, 0.2, 1.1, 1.0, 5.9,73,12.372881355932202 +6.741432056693646,5,a-sust-i3,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 3.7, 1.5, 7.5, 5.4, 2.9, 1.3, 1.5, 23.8,325,13.655462184873949 +1.5483870967741933,1.55,a-sust-i3,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.5, 1.3, 0.0, 1.0, 3.0, 2.0, 4.0, 11.8,826,70.0 +-Infinity,1,a-sust-i3,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +6.474396771331253,5,a-sust-i3,2023-24,Uxbridge - Taft Early Learning Center,03040005, 1.0, 1.0, 7.5, 7.0, 12.1, 3.5, 0.0, 32.2,533,16.5527950310559 +5.176813000242541,5,a-sust-i3,2023-24,Uxbridge - Uxbridge High,03040505, 2.0, 2.0, 2.0, 2.0, 4.0, 5.0, 2.0, 19.0,582,30.63157894736842 +4.8663594470046085,4.87,a-sust-i3,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 1.0, 4.0, 5.0, 4.0, 0.0, 14.0,476,34.0 +-48.682027649769594,1,a-sust-i3,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,615,615.0 +4.497695852534562,4.5,a-sust-i3,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 2.0, 1.0, 3.0, 3.0, 1.0, 10.0,380,38.0 +5.483870967741936,5,a-sust-i3,2023-24,Wachusett - Chocksett Middle School,07750315, 3.0, 0.0, 0.0, 4.0, 2.0, 1.0, 0.0, 10.0,273,27.3 +5.646300976165701,5,a-sust-i3,2023-24,Wachusett - Davis Hill Elementary,07750018, 2.0, 0.6, 2.0, 8.0, 5.0, 1.0, 0.0, 18.6,475,25.53763440860215 +5.955592794302471,5,a-sust-i3,2023-24,Wachusett - Dawson,07750020, 1.0, 0.0, 0.0, 5.0, 10.0, 4.0, 2.0, 22.0,488,22.181818181818183 +7.320882852292021,5,a-sust-i3,2023-24,Wachusett - Early Childhood Center,07750001, 1.0, 4.0, 2.0, 1.0, 3.0, 7.0, 1.0, 19.0,140,7.368421052631579 +6.0678474265726505,5,a-sust-i3,2023-24,Wachusett - Glenwood Elementary School,07750060, 1.0, 2.0, 1.6, 4.0, 6.0, 2.0, 0.0, 16.6,348,20.963855421686745 +6.938088559406933,5,a-sust-i3,2023-24,Wachusett - Houghton Elementary,07750027, 2.0, 4.0, 4.0, 4.0, 6.6, 6.0, 1.0, 27.6,318,11.521739130434781 +5.340514130253734,5,a-sust-i3,2023-24,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, 2.0, 4.0, 6.6, 2.0, 0.0, 16.6,479,28.855421686746986 +-0.6520737327188942,1,a-sust-i3,2023-24,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.5, 2.5, 2.0, 2.0, 0.0, 8.0,751,93.875 +6.064516129032258,5,a-sust-i3,2023-24,Wachusett - Naquag Elementary School,07750005, 3.0, 0.0, 2.0, 3.0, 3.0, 6.0, 1.0, 18.0,378,21.0 +6.067200572681312,5,a-sust-i3,2023-24,Wachusett - Paxton Center,07750040, 1.0, 0.0, 5.0, 7.6, 3.0, 3.0, 1.0, 20.6,432,20.970873786407765 +4.3850486431131595,4.39,a-sust-i3,2023-24,Wachusett - Thomas Prince,07750045, 1.0, 1.0, 1.0, 1.0, 2.0, 2.0, 1.0, 9.0,353,39.22222222222222 +4.311381992963678,4.31,a-sust-i3,2023-24,Wachusett - Wachusett Regional High,07750505, 3.0, 6.5, 8.0, 7.0, 5.0, 11.0, 6.0, 46.5,1861,40.02150537634409 +6.4154555122297054,5,a-sust-i3,2023-24,Wakefield - Dolbeare,03050005, 2.0, 1.0, 3.0, 3.0, 12.0, 4.0, 1.0, 26.0,447,17.192307692307693 +7.176000244148075,5,a-sust-i3,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 1.0, 1.0, 1.5, 5.0, 3.0, 3.6, 0.0, 15.1,135,8.940397350993377 +3.3829273644941846,3.38,a-sust-i3,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 4.0, 1.0, 2.0, 8.0, 1.0, 5.0, 21.0,1052,50.095238095238095 +5.8986175115207375,5,a-sust-i3,2023-24,Wakefield - Greenwood,03050020, 1.0, 0.0, 2.0, 1.0, 4.0, 1.0, 1.0, 10.0,228,22.8 +2.044665012406948,2.04,a-sust-i3,2023-24,Wakefield - Wakefield Memorial High,03050505, 2.0, 2.0, 2.0, 1.0, 3.0, 1.0, 2.0, 13.0,840,64.61538461538461 +3.0921658986175116,3.09,a-sust-i3,2023-24,Wakefield - Walton,03050040, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 4.0,213,53.25 +6.025016458196181,5,a-sust-i3,2023-24,Wakefield - Woodville School,03050015, 1.0, 3.0, 2.0, 3.0, 3.0, 7.0, 2.0, 21.0,450,21.428571428571427 +7.047619047619048,5,a-sust-i3,2023-24,Wales - Wales Elementary,03060005, 2.0, 0.0, 0.0, 2.0, 4.0, 0.0, 1.0, 9.0,93,10.333333333333334 +3.9037378392217104,3.9,a-sust-i3,2023-24,Walpole - Bird Middle,03070305, 1.0, 1.0, 0.0, 0.0, 1.0, 5.0, 1.0, 9.0,400,44.44444444444444 +5.494819534222002,5,a-sust-i3,2023-24,Walpole - Boyden,03070010, 7.0, 3.0, 0.0, 1.0, 0.9, 2.0, 1.0, 14.9,405,27.181208053691275 +7.208575435784411,5,a-sust-i3,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 1.5, 0.0, 0.0, 2.3, 2.3, 2.3, 0.8, 9.2,79,8.58695652173913 +2.535878867676103,2.54,a-sust-i3,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 1.0, 1.0, 0.0, 1.0, 1.0, 3.0, 0.0, 7.0,415,59.285714285714285 +3.4326676907322065,3.43,a-sust-i3,2023-24,Walpole - Elm Street School,03070005, 1.0, 1.0, 1.0, 3.0, 3.0, 0.0, 0.0, 9.0,446,49.55555555555556 +4.367127496159754,4.37,a-sust-i3,2023-24,Walpole - Fisher,03070015, 1.0, 0.0, 0.0, 9.0, 0.0, 2.0, 0.0, 12.0,473,39.416666666666664 +-0.31265508684863563,1,a-sust-i3,2023-24,Walpole - Old Post Road,03070018, 1.0, 1.4, 0.0, 1.0, 1.2, 0.6, 0.0, 5.2,469,90.1923076923077 +2.8408911188067507,2.84,a-sust-i3,2023-24,Walpole - Walpole High,03070505, 1.0, 2.9, 1.0, 3.0, 2.0, 6.0, 1.0, 16.9,946,55.97633136094675 +1.7458854509545747,1.75,a-sust-i3,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 2.0, 0.0, 2.0, 3.0, 0.0, 7.0,475,67.85714285714286 +1.3026113671274955,1.3,a-sust-i3,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0,218,72.66666666666667 +0.8847926267281101,1,a-sust-i3,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 1.0, 1.0, 0.0, 0.0, 1.0, 2.0, 0.0, 5.0,386,77.2 +3.921658986175115,3.92,a-sust-i3,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 1.0, 3.0, 2.0, 2.0, 0.0, 8.0,354,44.25 +4.575137021787146,4.58,a-sust-i3,2023-24,Waltham - John F Kennedy Middle,03080404, 2.0, 0.0, 1.9, 3.0, 2.0, 8.0, 0.0, 16.9,628,37.15976331360947 +4.9745541975556,4.97,a-sust-i3,2023-24,Waltham - John W. McDevitt Middle School,03080415, 0.0, 2.4, 2.0, 4.0, 3.0, 5.0, 2.0, 18.4,604,32.82608695652174 +6.318140536176798,5,a-sust-i3,2023-24,Waltham - Northeast Elementary School,03080040, 2.0, 1.0, 4.8, 5.0, 5.0, 7.8, 1.8, 27.4,500,18.248175182481752 +5.2964669738863295,5,a-sust-i3,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 1.0, 0.0, 4.0, 3.0, 2.0, 2.0, 0.0, 12.0,352,29.333333333333332 +-0.539452647418414,1,a-sust-i3,2023-24,Waltham - Waltham Sr High,03080505, 2.0, 2.0, 2.0, 2.0, 8.6, 1.0, 2.0, 19.6,1816,92.65306122448979 +7.124889447470093,5,a-sust-i3,2023-24,Waltham - William F. Stanley Elementary School,03080005, 8.0, 6.0, 8.0, 5.0, 7.8, 4.8, 0.0, 39.6,376,9.494949494949495 +6.3553883228343135,5,a-sust-i3,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 6.2, 1.8, 3.0, 3.0, 1.0, 4.0, 2.8, 21.8,389,17.844036697247706 +4.899275839368005,4.9,a-sust-i3,2023-24,Ware - Ware Junior/Senior High School,03090505, 1.0, 0.0, 0.0, 0.0, 4.0, 6.0, 3.0, 14.0,471,33.642857142857146 +3.944700460829493,3.94,a-sust-i3,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 1.0, 2.0, 1.0, 2.0, 0.0, 6.0,264,44.0 +-Infinity,1,a-sust-i3,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +5.270133859995611,5,a-sust-i3,2023-24,Wareham - Wareham Elementary School,03100017, 2.0, 0.0, 8.5, 2.0, 8.0, 6.0, 5.0, 31.5,933,29.61904761904762 +5.517665130568356,5,a-sust-i3,2023-24,Wareham - Wareham Middle,03100305, 1.0, 1.0, 2.0, 2.0, 4.0, 4.0, 1.0, 15.0,404,26.933333333333334 +4.9295589203423305,4.93,a-sust-i3,2023-24,Wareham - Wareham Senior High,03100505, 1.0, 4.0, 3.0, 0.0, 2.5, 4.0, 3.0, 17.5,583,33.31428571428572 +-Infinity,1,a-sust-i3,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +5.959183673469388,5,a-sust-i3,2023-24,Watertown - Cunniff,03140015, 2.0, 4.0, 1.0, 2.0, 2.0, 3.0, 0.0, 14.0,310,22.142857142857142 +6.736010533245556,5,a-sust-i3,2023-24,Watertown - Hosmer,03140020, 7.0, 9.0, 10.0, 7.6, 9.0, 9.3, 0.6, 52.5,720,13.714285714285714 +5.470483366409903,5,a-sust-i3,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 2.0, 3.6, 0.4, 1.0, 5.7, 1.0, 13.7,376,27.445255474452555 +-2.300894551368936,1,a-sust-i3,2023-24,Watertown - Watertown High,03140505, 0.0, 3.0, 1.0, 1.0, 0.0, 1.8, 0.0, 6.8,760,111.76470588235294 +5.047476154752974,5,a-sust-i3,2023-24,Watertown - Watertown Middle,03140305, 1.0, 3.0, 4.0, 2.0, 2.0, 3.2, 2.0, 17.2,551,32.03488372093023 +6.152904736722823,5,a-sust-i3,2023-24,Wayland - Claypit Hill School,03150005, 4.0, 2.0, 1.0, 4.0, 5.0, 6.4, 2.0, 24.4,489,20.04098360655738 +6.243246683809864,5,a-sust-i3,2023-24,Wayland - Happy Hollow School,03150015, 2.0, 0.0, 0.0, 1.0, 7.0, 5.6, 2.5, 18.1,345,19.06077348066298 +5.95608566007048,5,a-sust-i3,2023-24,Wayland - Loker School,03150020, 1.0, 1.0, 3.0, 4.0, 4.0, 4.0, 0.0, 17.0,377,22.176470588235293 +7.626569203877324,5,a-sust-i3,2023-24,Wayland - The Children's Way Preschool,03150025, 1.0, 1.0, 2.0, 0.0, 1.6, 4.0, 2.0, 11.6,47,4.051724137931035 +3.6565496053816404,3.66,a-sust-i3,2023-24,Wayland - Wayland High School,03150505, 2.0, 3.1, 2.0, 2.0, 1.0, 3.0, 4.3, 17.4,820,47.1264367816092 +5.100252151986783,5,a-sust-i3,2023-24,Wayland - Wayland Middle School,03150305, 1.0, 3.0, 3.6, 2.2, 5.4, 2.0, 4.0, 21.2,667,31.462264150943398 +1.1244239631336408,1.12,a-sust-i3,2023-24,Webster - Bartlett High School,03160505, 0.0, 1.0, 0.0, 1.0, 2.0, 1.0, 0.0, 5.0,373,74.6 +4.6175115207373265,4.62,a-sust-i3,2023-24,Webster - Park Avenue Elementary,03160015, 3.0, 1.0, 4.0, 3.0, 1.0, 6.0, 2.0, 20.0,734,36.7 +1.1797235023041472,1.18,a-sust-i3,2023-24,Webster - Webster Middle School,03160315, 2.0, 1.0, 1.0, 1.0, 2.0, 0.0, 1.0, 8.0,592,74.0 +7.502092271836433,5,a-sust-i3,2023-24,Wellesley - Ernest F Upham,03170050, 4.0, 6.0, 5.1, 3.0, 3.0, 4.0, 1.0, 26.1,141,5.402298850574712 +6.26102078080167,5,a-sust-i3,2023-24,Wellesley - Hunnewell,03170025, 4.0, 4.0, 0.1, 2.0, 0.0, 0.0, 0.5, 10.6,200,18.867924528301888 +6.404820985466147,5,a-sust-i3,2023-24,Wellesley - John D Hardy,03170020, 4.0, 1.0, 1.5, 1.0, 1.5, 3.0, 1.0, 13.0,225,17.307692307692307 +3.8979684558966703,3.9,a-sust-i3,2023-24,Wellesley - Joseph E Fiske,03170015, 5.0, 1.0, 0.1, 0.0, 1.0, 0.0, 0.0, 7.1,316,44.50704225352113 +5.25670913526701,5,a-sust-i3,2023-24,Wellesley - Katharine Lee Bates,03170005, 2.6, 0.0, 3.5, 0.0, 1.4, 1.0, 0.0, 8.5,253,29.764705882352942 +7.68071099407505,5,a-sust-i3,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 3.0, 10.0, 4.0, 3.0, 5.0, 3.0, 0.0, 28.0,97,3.4642857142857144 +4.795627478298146,4.8,a-sust-i3,2023-24,Wellesley - Schofield,03170045, 4.0, 1.0, 1.1, 0.0, 2.5, 0.0, 0.0, 8.6,299,34.76744186046512 +6.3226951369608155,5,a-sust-i3,2023-24,Wellesley - Sprague Elementary School,03170048, 4.0, 5.0, 2.1, 1.0, 2.0, 0.0, 2.0, 16.1,293,18.198757763975152 +5.0992992866611955,5,a-sust-i3,2023-24,Wellesley - Wellesley Middle,03170305, 5.0, 11.0, 3.1, 2.0, 2.6, 3.0, 2.5, 29.2,919,31.472602739726028 +4.474329850068151,4.47,a-sust-i3,2023-24,Wellesley - Wellesley Sr High,03170505, 6.5, 9.5, 1.7, 6.8, 3.6, 4.8, 2.6, 35.5,1358,38.25352112676056 +6.602150537634408,5,a-sust-i3,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 1.0, 0.0, 1.0, 1.0, 2.0, 1.0, 6.0,91,15.166666666666666 +5.442958300550747,5,a-sust-i3,2023-24,West Boylston - Major Edwards Elementary,03220005, 3.0, 0.0, 4.0, 3.0, 2.0, 2.4, 2.0, 16.4,455,27.743902439024392 +4.918632643235436,4.92,a-sust-i3,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 3.0, 2.0, 2.0, 2.0, 1.0, 2.4, 1.0, 13.4,448,33.43283582089552 +3.7493637801774535,3.75,a-sust-i3,2023-24,West Bridgewater - Howard School,03230305, 0.5, 1.0, 0.0, 2.0, 1.5, 1.0, 0.7, 6.7,309,46.11940298507463 +3.3775257001063452,3.38,a-sust-i3,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 2.0, 1.0, 3.0, 0.5, 0.0, 6.5,326,50.15384615384615 +6.63594470046083,5,a-sust-i3,2023-24,West Bridgewater - Spring Street School,03230005, 1.5, 1.5, 2.0, 1.0, 3.0, 1.0, 0.0, 10.0,148,14.8 +-3.410138248847927,1,a-sust-i3,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 1.0, 0.0, 0.0, 3.0, 0.0, 1.0, 5.0,619,123.8 +7.064584909553615,5,a-sust-i3,2023-24,West Springfield - John Ashley,03320005, 1.0, 3.0, 3.0, 2.0, 4.0, 5.0, 2.1, 20.1,204,10.149253731343283 +5.907457914041193,5,a-sust-i3,2023-24,West Springfield - John R Fausey,03320010, 2.0, 2.0, 1.0, 6.5, 4.0, 3.0, 1.1, 19.6,445,22.70408163265306 +5.633270751550321,5,a-sust-i3,2023-24,West Springfield - Memorial,03320025, 1.0, 0.0, 4.0, 1.0, 0.0, 2.0, 0.1, 8.1,208,25.679012345679013 +5.469955724225174,5,a-sust-i3,2023-24,West Springfield - Mittineague,03320030, 1.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.1, 5.1,140,27.450980392156865 +6.920019224788669,5,a-sust-i3,2023-24,West Springfield - Philip G Coburn,03320007, 7.0, 7.8, 8.8, 7.8, 7.8, 7.6, 2.1, 48.9,573,11.717791411042946 +0.21049502006838094,1,a-sust-i3,2023-24,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.1, 3.1,262,84.51612903225806 +2.9392542940930038,2.94,a-sust-i3,2023-24,West Springfield - West Springfield High,03320505, 3.0, 1.0, 2.0, 6.0, 0.0, 5.0, 5.0, 22.0,1208,54.90909090909091 +4.586175115207373,4.59,a-sust-i3,2023-24,West Springfield - West Springfield Middle,03320305, 5.0, 7.0, 1.0, 3.0, 2.0, 5.0, 2.0, 25.0,926,37.04 +5.944949557852784,5,a-sust-i3,2023-24,Westborough - Annie E Fales,03210010, 1.0, 0.0, 1.0, 3.0, 3.0, 6.8, 0.0, 14.8,330,22.297297297297295 +6.342364240981753,5,a-sust-i3,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 2.0, 3.0, 4.3, 11.0, 6.0, 1.0, 0.0, 27.3,491,17.985347985347985 +5.027649769585254,5,a-sust-i3,2023-24,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 1.0, 6.0, 4.0, 1.0, 0.0, 12.0,387,32.25 +4.4275518942946865,4.43,a-sust-i3,2023-24,Westborough - Mill Pond School,03210045, 0.0, 1.0, 3.0, 9.6, 4.0, 5.0, 0.0, 22.6,876,38.76106194690265 +3.1410785027083836,3.14,a-sust-i3,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 1.0, 0.0, 6.0, 2.0, 0.4, 2.0, 11.4,601,52.719298245614034 +1.4833288153971267,1.48,a-sust-i3,2023-24,Westborough - Westborough High,03210505, 1.0, 2.0, 1.0, 2.0, 5.0, 6.0, 0.0, 17.0,1202,70.70588235294117 +4.210957501280082,4.21,a-sust-i3,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 1.0, 0.5, 1.0, 1.0, 1.0, 4.5,185,41.111111111111114 +7.275487321028118,5,a-sust-i3,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 9.0, 1.7, 7.0, 1.0, 0.0, 18.7,147,7.86096256684492 +6.218125960061444,5,a-sust-i3,2023-24,Westfield - Franklin Ave,03250015, 0.0, 1.0, 0.0, 3.0, 3.0, 2.0, 0.0, 9.0,174,19.333333333333332 +6.213320289370028,5,a-sust-i3,2023-24,Westfield - Highland,03250025, 2.6, 1.0, 1.0, 3.0, 6.3, 1.0, 3.0, 17.9,347,19.385474860335197 +6.7661055205492335,5,a-sust-i3,2023-24,Westfield - Munger Hill,03250033, 3.5, 1.0, 2.0, 6.0, 7.0, 3.0, 2.0, 24.5,328,13.387755102040817 +5.467441394510118,5,a-sust-i3,2023-24,Westfield - Paper Mill,03250036, 2.0, 1.0, 2.0, 2.5, 2.0, 2.0, 0.0, 11.5,316,27.47826086956522 +5.188940092165899,5,a-sust-i3,2023-24,Westfield - Southampton Road,03250040, 0.0, 1.0, 2.0, 1.0, 5.0, 1.0, 0.0, 10.0,305,30.5 +3.86076366030283,3.86,a-sust-i3,2023-24,Westfield - Westfield High,03250505, 1.3, 2.6, 1.0, 1.0, 7.0, 6.0, 3.5, 22.4,1006,44.91071428571429 +0.11981566820276472,1,a-sust-i3,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.0, 2.0, 0.0, 4.0, 2.0, 8.0,684,85.5 +2.030355557434575,2.03,a-sust-i3,2023-24,Westfield - Westfield Middle School,03250310, 0.5, 2.0, 2.0, 1.0, 0.4, 5.0, 0.0, 10.9,706,64.77064220183486 +4.114852889046437,4.11,a-sust-i3,2023-24,Westfield - Westfield Technical Academy,03250605, 1.0, 2.0, 2.0, 4.0, 2.0, 2.0, 0.0, 13.0,548,42.15384615384615 +-3.4285714285714284,1,a-sust-i3,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,62,124.0 +4.73469387755102,4.73,a-sust-i3,2023-24,Westford - Abbot Elementary,03260004, 3.0, 1.0, 1.0, 1.5, 1.0, 2.0, 1.0, 10.5,372,35.42857142857143 +2.5212493599590373,2.52,a-sust-i3,2023-24,Westford - Blanchard Middle,03260310, 3.0, 0.0, 1.0, 2.0, 1.0, 2.0, 0.0, 9.0,535,59.44444444444444 +6.346435348332882,5,a-sust-i3,2023-24,Westford - Col John Robinson,03260025, 1.0, 0.0, 3.0, 4.0, 3.0, 4.0, 2.0, 17.0,305,17.941176470588236 +4.589861751152074,4.59,a-sust-i3,2023-24,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 0.0, 8.0,296,37.0 +6.47926267281106,5,a-sust-i3,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 2.0, 2.0, 5.0, 2.0, 8.0, 1.0, 20.0,330,16.5 +5.992100065832784,5,a-sust-i3,2023-24,Westford - Nabnasset,03260015, 0.0, 3.0, 0.0, 1.0, 7.0, 2.0, 1.0, 14.0,305,21.785714285714285 +7.1255249209669556,5,a-sust-i3,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 1.0, 5.0, 5.3, 5.0, 9.0, 4.0, 29.3,278,9.488054607508532 +3.845444877702942,3.85,a-sust-i3,2023-24,Westford - Stony Brook School,03260330, 1.0, 2.0, 1.0, 4.0, 1.0, 2.0, 2.0, 13.0,586,45.07692307692308 +-3.0906298003072203,1,a-sust-i3,2023-24,Westford - Westford Academy,03260505, 2.0, 0.0, 1.0, 1.0, 3.0, 4.0, 1.0, 12.0,1444,120.33333333333333 +6.872323122797506,5,a-sust-i3,2023-24,Westhampton - Westhampton Elementary School,03270005, 3.0, 0.0, 1.0, 3.0, 0.5, 1.0, 0.0, 8.5,104,12.235294117647058 +5.009310636697076,5,a-sust-i3,2023-24,Weston - Country,03300010, 0.0, 0.7, 0.9, 2.6, 1.7, 1.9, 2.0, 9.8,318,32.44897959183673 +2.8114012630141665,2.81,a-sust-i3,2023-24,Weston - Field Elementary School,03300012, 0.0, 0.9, 0.0, 1.8, 0.8, 1.9, 0.0, 5.4,304,56.29629629629629 +3.195761820095069,3.2,a-sust-i3,2023-24,Weston - Weston High,03300505, 1.8, 3.4, 2.1, 0.9, 2.9, 0.8, 0.8, 12.7,662,52.125984251968504 +3.75838660125861,3.76,a-sust-i3,2023-24,Weston - Weston Middle,03300305, 1.0, 4.6, 0.0, 1.0, 1.0, 1.6, 0.0, 9.3,428,46.02150537634408 +4.606619187264349,4.61,a-sust-i3,2023-24,Weston - Woodland,03300015, 0.8, 1.6, 0.0, 1.1, 4.8, 0.0, 0.5, 8.8,324,36.81818181818181 +6.5085881860075405,5,a-sust-i3,2023-24,Westport - Alice A Macomber,03310015, 0.0, 1.0, 0.0, 1.0, 7.0, 0.0, 2.0, 11.0,178,16.181818181818183 +4.24633431085044,4.25,a-sust-i3,2023-24,Westport - Westport Elementary,03310030, 2.0, 2.0, 3.0, 1.0, 1.0, 2.0, 0.0, 11.0,448,40.72727272727273 +3.2290593656817563,3.23,a-sust-i3,2023-24,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 3.0, 7.0, 4.0, 3.0, 17.0,880,51.76470588235294 +6.202478747459714,5,a-sust-i3,2023-24,Westwood - Downey,03350012, 6.0, 1.0, 1.0, 1.7, 2.0, 4.0, 0.4, 16.1,314,19.50310559006211 +3.9385560675883253,3.94,a-sust-i3,2023-24,Westwood - E W Thurston Middle,03350305, 3.0, 2.0, 2.0, 0.0, 2.0, 6.0, 0.0, 15.0,661,44.06666666666667 +4.379196840026333,4.38,a-sust-i3,2023-24,Westwood - Martha Jones,03350017, 0.0, 0.0, 2.0, 2.0, 1.0, 2.0, 0.0, 7.0,275,39.285714285714285 +5.744078876862072,5,a-sust-i3,2023-24,Westwood - Pine Hill Elementary School,03350030, 3.0, 2.0, 2.7, 5.0, 2.5, 2.0, 0.0, 17.2,421,24.476744186046513 +4.235841336836211,4.24,a-sust-i3,2023-24,Westwood - Westwood High,03350505, 4.0, 2.4, 2.0, 3.0, 2.0, 5.0, 3.0, 21.4,874,40.84112149532711 +7.473337722185649,5,a-sust-i3,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 1.0, 0.0, 0.0, 3.0, 1.5, 0.7, 6.3,36,5.714285714285714 +6.657778175473133,5,a-sust-i3,2023-24,Westwood - William E Sheehan,03350025, 4.0, 3.0, 4.0, 0.0, 8.6, 1.0, 0.0, 20.6,300,14.563106796116504 +3.549703752468729,3.55,a-sust-i3,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 1.0, 7.0,338,48.285714285714285 +5.10189452124936,5,a-sust-i3,2023-24,Weymouth - Frederick C Murphy,03360050, 1.0, 1.0, 1.0, 0.0, 3.0, 3.0, 0.0, 9.0,283,31.444444444444443 +7.259769948111324,5,a-sust-i3,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 1.4, 4.0, 4.0, 3.2, 3.0, 7.8, 2.0, 25.4,204,8.031496062992126 +5.548387096774193,5,a-sust-i3,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 2.0, 2.0, 2.0, 4.0, 0.0, 0.0, 10.0,266,26.6 +2.935142515787677,2.94,a-sust-i3,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 4.0, 4.0, 1.0, 3.0, 2.6, 7.0, 0.0, 21.6,1187,54.9537037037037 +4.578341013824884,4.58,a-sust-i3,2023-24,Weymouth - Ralph Talbot,03360085, 1.0, 1.0, 1.0, 2.0, 1.0, 2.0, 0.0, 8.0,297,37.125 +5.677419354838709,5,a-sust-i3,2023-24,Weymouth - Thomas V Nash,03360060, 2.0, 2.0, 1.0, 3.0, 1.0, 1.0, 0.0, 10.0,252,25.2 +5.304147465437788,5,a-sust-i3,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 1.0, 1.0, 3.0, 1.0, 4.0, 2.0, 0.0, 12.0,351,29.25 +6.110599078341013,5,a-sust-i3,2023-24,Weymouth - Wessagusset,03360110, 4.0, 1.0, 1.0, 4.0, 4.0, 2.0, 0.0, 16.0,328,20.5 +4.063841744408227,4.06,a-sust-i3,2023-24,Weymouth - Weymouth High School,03360505, 3.0, 8.0, 1.0, 3.0, 11.6, 9.8, 4.6, 41.0,1751,42.707317073170735 +0.9216589861751152,1,a-sust-i3,2023-24,Weymouth - William Seach,03360080, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 5.0,384,76.8 +6.559907834101383,5,a-sust-i3,2023-24,Whately - Whately Elementary,03370005, 2.0, 2.0, 1.0, 0.0, 1.0, 2.0, 0.0, 8.0,125,15.625 +4.1308573253638725,4.13,a-sust-i3,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 1.9, 1.8, 1.0, 1.0, 1.7, 2.8, 0.0, 10.1,424,41.98019801980198 +5.076521177610144,5,a-sust-i3,2023-24,Whitman-Hanson - Indian Head,07800035, 1.7, 2.0, 1.5, 3.9, 3.0, 3.6, 0.0, 15.7,498,31.719745222929937 +5.682533763085693,5,a-sust-i3,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 2.3, 1.8, 4.3, 4.9, 4.0, 0.0, 17.3,435,25.14450867052023 +5.263824884792626,5,a-sust-i3,2023-24,Whitman-Hanson - Louise A Conley,07800010, 2.9, 2.6, 0.9, 0.9, 2.2, 5.8, 0.9, 16.0,475,29.6875 +6.924731182795698,5,a-sust-i3,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 2.7, 1.9, 1.9, 0.9, 1.7, 0.0, 9.0,105,11.666666666666666 +1.5297048200274013,1.53,a-sust-i3,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.9, 3.8, 2.3, 1.9, 0.9, 3.7, 1.1, 14.8,1039,70.2027027027027 +0.8110599078341012,1,a-sust-i3,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.9, 1.9, 0.0, 0.0, 2.9, 0.9, 6.5,507,78.0 +-109.88018433179722,1,a-sust-i3,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1279,1279.0 +6.546614675646933,5,a-sust-i3,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 2.0, 1.0, 0.0, 3.0, 0.0, 1.0, 0.8, 7.8,123,15.76923076923077 +6.875263610091385,5,a-sust-i3,2023-24,Wilmington - Boutwell,03420005, 1.0, 0.0, 1.0, 1.0, 5.0, 2.8, 1.0, 11.8,144,12.203389830508474 +3.4101382488479266,3.41,a-sust-i3,2023-24,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 2.0, 1.0, 2.0, 0.0, 5.0,249,49.8 +4.847926267281106,4.85,a-sust-i3,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 1.0, 3.0, 3.0, 2.0, 1.0, 0.0, 10.0,342,34.2 +6.202764976958525,5,a-sust-i3,2023-24,Wilmington - West Intermediate,03420080, 3.0, 0.0, 2.0, 3.5, 2.0, 3.5, 0.0, 14.0,273,19.5 +3.964450296247531,3.96,a-sust-i3,2023-24,Wilmington - Wilmington High,03420505, 3.0, 1.0, 2.0, 1.0, 1.0, 5.0, 1.0, 14.0,613,43.785714285714285 +4.001024065540195,4.0,a-sust-i3,2023-24,Wilmington - Wilmington Middle School,03420330, 3.0, 0.0, 4.0, 0.5, 5.0, 4.5, 1.0, 18.0,781,43.388888888888886 +-0.6829978171234546,1,a-sust-i3,2023-24,Wilmington - Woburn Street,03420020, 0.0, 1.0, 1.0, 0.0, 1.8, 0.0, 0.0, 3.8,358,94.21052631578948 +6.011849901250823,5,a-sust-i3,2023-24,Winchendon - Memorial,03430040, 1.0, 2.0, 0.0, 2.0, 6.0, 3.0, 0.0, 14.0,302,21.571428571428573 +-Infinity,1,a-sust-i3,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +3.3548387096774195,3.35,a-sust-i3,2023-24,Winchendon - Murdock High School,03430515, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 1.0, 5.0,252,50.4 +3.5453149001536093,3.55,a-sust-i3,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 1.0, 2.0, 0.0, 2.0, 1.0, 0.0, 6.0,290,48.333333333333336 +5.3223381033228225,5,a-sust-i3,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 4.0, 1.5, 2.0, 2.0, 0.0, 9.5,276,29.05263157894737 +6.786482334869431,5,a-sust-i3,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 0.0, 6.0,79,13.166666666666666 +5.7078221317852655,5,a-sust-i3,2023-24,Winchester - Ambrose Elementary,03440045, 3.4, 2.0, 2.0, 3.0, 3.0, 1.0, 1.0, 15.4,383,24.87012987012987 +3.9792626728110596,3.98,a-sust-i3,2023-24,Winchester - Lincoln Elementary,03440005, 1.0, 0.0, 0.0, 1.0, 4.0, 2.0, 0.0, 8.0,349,43.625 +6.932683735355793,5,a-sust-i3,2023-24,Winchester - Lynch Elementary,03440020, 4.0, 4.0, 2.0, 12.0, 9.0, 3.7, 2.0, 36.7,425,11.580381471389645 +0.2773896239036723,1,a-sust-i3,2023-24,Winchester - McCall Middle,03440305, 0.0, 0.0, 2.0, 0.0, 5.4, 4.0, 1.0, 12.4,1039,83.79032258064515 +5.507834101382488,5,a-sust-i3,2023-24,Winchester - Muraco Elementary,03440040, 2.0, 2.0, 2.0, 2.0, 3.5, 1.0, 0.0, 12.5,338,27.04 +5.317088567640932,5,a-sust-i3,2023-24,Winchester - Vinson-Owen Elementary,03440025, 1.0, 1.0, 2.0, 2.0, 2.0, 6.6, 0.0, 14.6,425,29.10958904109589 +1.5811364008514819,1.58,a-sust-i3,2023-24,Winchester - Winchester High School,03440505, 3.0, 3.0, 0.5, 3.2, 5.0, 4.0, 1.0, 19.7,1372,69.64467005076142 +5.184172890513269,5,a-sust-i3,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.0, 1.5, 3.0, 0.0, 3.0, 3.0, 3.0, 14.5,443,30.551724137931036 +6.451612903225807,5,a-sust-i3,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 3.0, 3.0, 6.0, 4.0, 7.0, 5.0, 2.0, 30.0,504,16.8 +3.01466275659824,3.01,a-sust-i3,2023-24,Winthrop - Winthrop High School,03460505, 1.0, 2.0, 1.0, 1.0, 4.0, 2.0, 0.0, 11.0,595,54.09090909090909 +4.751152073732719,4.75,a-sust-i3,2023-24,Winthrop - Winthrop Middle School,03460305, 3.0, 0.0, 1.0, 2.0, 4.0, 1.0, 1.0, 12.0,423,35.25 +6.740872031194613,5,a-sust-i3,2023-24,Woburn - Clyde Reeves,03470040, 5.0, 7.0, 3.0, 1.0, 2.0, 13.5, 1.0, 32.5,444,13.661538461538461 +5.880184331797235,5,a-sust-i3,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 1.0, 2.0, 3.0, 0.0, 3.0, 8.0, 3.0, 20.0,460,23.0 +5.288786482334869,5,a-sust-i3,2023-24,Woburn - Goodyear Elementary School,03470005, 2.0, 2.0, 3.0, 1.0, 3.0, 1.0, 0.0, 12.0,353,29.416666666666668 +4.522832006702974,4.52,a-sust-i3,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 1.0, 2.0, 1.0, 3.0, 1.0, 3.0, 0.0, 11.0,415,37.72727272727273 +2.1129032258064515,2.11,a-sust-i3,2023-24,Woburn - John F Kennedy Middle School,03470405, 2.0, 0.0, 0.0, 1.0, 1.0, 2.0, 2.0, 8.0,511,63.875 +3.4838709677419355,3.48,a-sust-i3,2023-24,Woburn - Linscott-Rumford,03470025, 1.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 4.0,196,49.0 +4.538658474142345,4.54,a-sust-i3,2023-24,Woburn - Malcolm White,03470055, 1.0, 1.0, 1.0, 1.0, 3.0, 1.0, 1.0, 9.0,338,37.55555555555556 +3.2995391705069124,3.3,a-sust-i3,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 1.0, 0.0, 0.0, 0.0, 3.0, 0.0, 4.0,204,51.0 +6.898016429573231,5,a-sust-i3,2023-24,Woburn - Shamrock,03470043, 4.0, 5.0, 2.0, 5.0, 2.0, 5.0, 0.0, 23.0,275,11.956521739130435 +3.079142456421559,3.08,a-sust-i3,2023-24,Woburn - Woburn High,03470505, 3.0, 2.0, 2.0, 4.0, 4.0, 7.0, 1.0, 23.0,1228,53.391304347826086 +2.7832311753389116,2.78,a-sust-i3,2023-24,Worcester - Belmont Street Community,03480020, 1.0, 1.0, 3.0, 0.3, 2.0, 1.0, 2.0, 10.3,583,56.60194174757281 +4.55511067462416,4.56,a-sust-i3,2023-24,Worcester - Burncoat Middle School,03480405, 2.0, 2.0, 6.3, 4.0, 2.0, 2.0, 0.0, 18.3,684,37.377049180327866 +4.488323049285324,4.49,a-sust-i3,2023-24,Worcester - Burncoat Senior High,03480503, 4.0, 3.0, 4.0, 5.0, 5.5, 5.0, 3.0, 29.5,1124,38.101694915254235 +5.083517454706143,5,a-sust-i3,2023-24,Worcester - Burncoat Street,03480035, 0.0, 0.0, 3.0, 0.3, 2.0, 1.0, 1.0, 7.3,231,31.643835616438356 +5.427035330261136,5,a-sust-i3,2023-24,Worcester - Canterbury,03480045, 0.0, 6.0, 0.0, 1.0, 2.0, 2.0, 1.0, 12.0,335,27.916666666666668 +4.556346878927524,4.56,a-sust-i3,2023-24,Worcester - Chandler Elementary Community,03480050, 1.0, 3.0, 2.0, 0.0, 2.0, 3.0, 0.0, 11.0,411,37.36363636363637 +3.8937469559027393,3.89,a-sust-i3,2023-24,Worcester - Chandler Magnet,03480052, 1.0, 3.0, 2.0, 1.5, 1.5, 3.3, 0.0, 12.3,548,44.55284552845528 +5.043864140638334,5,a-sust-i3,2023-24,Worcester - City View,03480053, 3.0, 1.0, 2.5, 2.0, 0.0, 4.0, 1.0, 13.5,433,32.074074074074076 +-0.31232066776802114,1,a-sust-i3,2023-24,Worcester - Claremont Academy,03480350, 1.0, 0.0, 0.0, 1.0, 0.0, 3.3, 0.0, 5.3,478,90.18867924528303 +5.101771139858975,5,a-sust-i3,2023-24,Worcester - Clark St Community,03480055, 1.0, 1.0, 1.0, 1.0, 0.5, 3.8, 0.0, 8.3,261,31.445783132530117 +4.708360763660303,4.71,a-sust-i3,2023-24,Worcester - Columbus Park,03480060, 0.0, 4.0, 2.0, 1.5, 2.0, 0.0, 1.0, 10.5,375,35.714285714285715 +-5.562939607082222,1,a-sust-i3,2023-24,Worcester - Doherty Memorial High,03480512, 0.0, 3.5, 1.0, 0.0, 2.0, 1.0, 2.0, 9.5,1398,147.1578947368421 +4.620583717357911,4.62,a-sust-i3,2023-24,Worcester - Elm Park Community,03480095, 1.0, 1.0, 4.0, 0.5, 1.5, 4.0, 0.0, 12.0,440,36.666666666666664 +5.027649769585254,5,a-sust-i3,2023-24,Worcester - Flagg Street,03480090, 3.0, 2.0, 4.0, 0.0, 1.0, 2.0, 0.0, 12.0,387,32.25 +3.3693618209747243,3.37,a-sust-i3,2023-24,Worcester - Forest Grove Middle,03480415, 2.0, 3.5, 1.5, 4.5, 0.0, 4.0, 1.0, 16.5,829,50.24242424242424 +5.443932411674347,5,a-sust-i3,2023-24,Worcester - Francis J McGrath Elementary,03480177, 1.0, 0.0, 2.5, 2.0, 0.0, 2.0, 0.0, 7.5,208,27.733333333333334 +6.673296143584769,5,a-sust-i3,2023-24,Worcester - Gates Lane,03480110, 2.0, 3.5, 7.0, 3.5, 7.0, 12.0, 3.0, 38.0,547,14.394736842105264 +6.3005507474429585,5,a-sust-i3,2023-24,Worcester - Goddard School/Science Technical,03480100, 4.0, 1.0, 5.5, 3.0, 2.0, 4.0, 1.0, 20.5,378,18.4390243902439 +1.8863287250384027,1.89,a-sust-i3,2023-24,Worcester - Grafton Street,03480115, 0.0, 2.0, 0.0, 3.0, 1.0, 0.0, 0.0, 6.0,398,66.33333333333333 +7.3335696561503,5,a-sust-i3,2023-24,Worcester - Head Start,03480002, 5.0, 12.0, 16.0, 10.0, 5.0, 3.0, 1.0, 52.0,376,7.230769230769231 +3.3732718894009213,3.37,a-sust-i3,2023-24,Worcester - Heard Street,03480136, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 2.0, 5.0,251,50.2 +5.934399566278125,5,a-sust-i3,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 2.0, 3.0, 4.0, 5.0, 1.0, 2.0, 0.0, 17.0,381,22.41176470588235 +4.485407066052227,4.49,a-sust-i3,2023-24,Worcester - Lake View,03480145, 1.0, 2.0, 2.0, 2.0, 0.5, 0.0, 0.0, 7.5,286,38.13333333333333 +4.697388632872504,4.7,a-sust-i3,2023-24,Worcester - Lincoln Street,03480160, 0.0, 1.0, 1.0, 2.0, 0.0, 1.0, 1.0, 6.0,215,35.833333333333336 +1.225806451612903,1.23,a-sust-i3,2023-24,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 1.0, 4.0,294,73.5 +2.5161290322580645,2.52,a-sust-i3,2023-24,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 1.0, 3.0, 0.0, 0.0, 4.0,238,59.5 +6.738332246303207,5,a-sust-i3,2023-24,Worcester - Nelson Place,03480200, 8.0, 4.5, 13.3, 5.3, 9.0, 3.0, 0.0, 43.1,590,13.689095127610209 +6.6767995256959605,5,a-sust-i3,2023-24,Worcester - Norrback Avenue,03480202, 6.0, 5.0, 8.5, 2.7, 4.0, 5.0, 3.0, 34.2,491,14.35672514619883 +-0.842944326815294,1,a-sust-i3,2023-24,Worcester - North High,03480515, 4.0, 0.0, 2.5, 0.0, 4.3, 3.0, 1.0, 14.8,1420,95.94594594594594 +4.934948022719966,4.93,a-sust-i3,2023-24,Worcester - Quinsigamond,03480210, 2.0, 4.0, 1.0, 1.0, 6.5, 6.0, 1.0, 21.5,715,33.25581395348837 +2.259381171823568,2.26,a-sust-i3,2023-24,Worcester - Rice Square,03480215, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0, 3.0, 7.0,436,62.285714285714285 +6.137936421151293,5,a-sust-i3,2023-24,Worcester - Roosevelt,03480220, 5.0, 6.5, 3.0, 6.0, 5.5, 2.5, 1.0, 29.5,596,20.203389830508474 +1.840704312538689,1.84,a-sust-i3,2023-24,Worcester - South High Community,03480520, 3.0, 4.0, 5.0, 4.5, 1.0, 5.3, 4.0, 26.8,1791,66.82835820895522 +4.527320605661619,4.53,a-sust-i3,2023-24,Worcester - Sullivan Middle,03480423, 4.0, 2.5, 1.6, 4.8, 3.5, 4.0, 2.0, 22.4,844,37.67857142857143 +3.3302611367127497,3.33,a-sust-i3,2023-24,Worcester - Tatnuck,03480230, 0.0, 1.5, 1.0, 4.0, 1.0, 0.0, 0.0, 7.5,380,50.666666666666664 +1.5115207373271882,1.51,a-sust-i3,2023-24,Worcester - Thorndyke Road,03480235, 1.0, 0.0, 0.0, 1.0, 0.0, 3.0, 0.0, 5.0,352,70.4 +2.3317972350230414,2.33,a-sust-i3,2023-24,Worcester - Union Hill School,03480240, 0.0, 1.0, 2.0, 1.0, 1.0, 1.0, 0.0, 6.0,369,61.5 +-Infinity,1,a-sust-i3,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,244,Infinity +4.740800106859012,4.74,a-sust-i3,2023-24,Worcester - Vernon Hill School,03480280, 3.0, 3.0, 1.0, 3.3, 2.5, 1.0, 0.0, 13.8,488,35.36231884057971 +6.025016458196181,5,a-sust-i3,2023-24,Worcester - Wawecus Road School,03480026, 2.0, 2.0, 0.0, 1.0, 1.0, 0.0, 1.0, 7.0,150,21.428571428571427 +5.72076223689127,5,a-sust-i3,2023-24,Worcester - West Tatnuck,03480260, 2.0, 2.5, 4.3, 2.0, 2.0, 2.0, 0.0, 14.8,366,24.72972972972973 +2.366359447004608,2.37,a-sust-i3,2023-24,Worcester - Woodland Academy,03480030, 1.0, 1.0, 4.0, 0.0, 0.0, 1.0, 1.0, 8.0,489,61.125 +3.747800586510264,3.75,a-sust-i3,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.0, 2.0, 1.5, 1.0, 0.0, 3.3, 1.0, 8.8,406,46.13636363636363 +-3.8620925072537964,1,a-sust-i3,2023-24,Worcester - Worcester East Middle,03480420, 0.1, 0.0, 0.0, 0.3, 1.0, 4.0, 0.0, 5.4,695,128.7037037037037 +-2.4430494575274877,1,a-sust-i3,2023-24,Worcester - Worcester Technical High,03480605, 1.0, 0.0, 1.0, 3.0, 2.3, 4.3, 1.0, 12.7,1439,113.30708661417323 +5.493087557603686,5,a-sust-i3,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 2.0, 1.0, 0.0, 2.0, 0.0, 0.0, 5.0,136,27.2 +7.13742171806688,5,a-sust-i3,2023-24,Worthington - R. H. Conwell,03490010, 2.0, 0.0, 2.0, 1.8, 1.0, 1.0, 0.0, 7.8,73,9.35897435897436 +5.376816731655442,5,a-sust-i3,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 1.0, 4.0, 1.0, 6.0, 1.0, 13.0,370,28.46153846153846 +6.494295078735307,5,a-sust-i3,2023-24,Wrentham - Delaney,03500003, 4.0, 1.0, 6.4, 5.4, 10.8, 4.0, 5.8, 37.4,611,16.336898395721924 1.1021101139946643,1.1,a-sust-i3,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.0, 5.0, 3.0, 4.0, 3.0, 2.0, 1.0, 19.0,1422,74.84210526315789 7.1981566820276495,5,a-sust-i3,2022-23,Abington - Abington Early Education Program,00010001, 2.0, 0.0, 1.0, 2.0, 4.0, 1.0, 0.0, 10.0,87,8.7 -42.50691244239632,1,a-sust-i3,2022-23,Abington - Abington High,00010505, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,548,548.0 diff --git a/data/admin_data/dese/3A_2_grade_subject_staffing.csv b/data/admin_data/dese/3A_2_grade_subject_staffing.csv index 43e8f174..27514b21 100644 --- a/data/admin_data/dese/3A_2_grade_subject_staffing.csv +++ b/data/admin_data/dese/3A_2_grade_subject_staffing.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,PK-2 (# ),3-5 (# ),6-8 (# ),9-12 (# ),Multiple Grades (# ),All Grades (# ),FTE Count,Student Count,Student to Art Teacher ratio +6.75076923076923,5,a-sust-i4,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 2.5, 1.8, 2.8, .6, .0, 9.1,1421,156.15384615384616 +-Infinity,1,a-sust-i4,2023-24,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +6.397142857142857,5,a-sust-i4,2023-24,Abington - Abington High,00010505, 0.0, .0, .0, .3, .0, 2.5, 2.8,561,200.35714285714286 +7.021538461538461,5,a-sust-i4,2023-24,Abington - Abington Middle School,00010405, 0.0, 2.9, 2.2, .0, .0, .1, 5.2,636,122.3076923076923 +4.626666666666666,4.63,a-sust-i4,2023-24,Abington - Beaver Brook Elementary,00010020, 1.1, .0, .0, .0, .0, .1, 1.2,506,421.6666666666667 +4.871111111111111,4.87,a-sust-i4,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, .9, .0, .0, .0, .0, 0.9,352,391.1111111111111 +5.653333333333334,5,a-sust-i4,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, .1, .3, .5, .6, .0, 1.5,440,293.3333333333333 +6.308717948717949,5,a-sust-i4,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, .0, .0, .0, 7.6, .2, 7.8,1649,211.4102564102564 +5.972,5,a-sust-i4,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.8, .9, .3, .0, .0, .0, 2.0,507,253.5 +6.372,5,a-sust-i4,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 1.0, .8, .2, .0, .0, .0, 2.0,407,203.5 +-Infinity,1,a-sust-i4,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity +6.348,5,a-sust-i4,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.8, .8, .3, .0, .0, .0, 2.0,413,206.5 +6.236,5,a-sust-i4,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.8, .9, .4, .0, .0, .0, 2.0,441,220.5 +6.384,5,a-sust-i4,2023-24,Acton-Boxborough - Merriam School,06000010, 0.7, 1.0, .3, .0, .0, .0, 2.0,404,202.0 +6.576,5,a-sust-i4,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 1.1, .7, .2, .0, .0, .0, 2.0,356,178.0 +6.7728301886792455,5,a-sust-i4,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, .0, 5.3, .0, .0, .0, 5.3,813,153.39622641509433 +5.932,5,a-sust-i4,2023-24,Acushnet - Acushnet Elementary School,00030025, 1.3, .8, .0, .0, .0, .0, 2.0,517,258.5 +6.32,5,a-sust-i4,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, .6, 1.4, .0, .0, .0, 2.0,420,210.0 +6.068,5,a-sust-i4,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, .0, 2.1, .0, 1.9, .0, 4.0,966,241.5 +-Infinity,1,a-sust-i4,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, .0, .0, .0, .0, .0, 0.0,150,Infinity +6.173913043478261,5,a-sust-i4,2023-24,Agawam - Agawam High,00050505, 0.0, .0, .0, 4.2, .4, .0, 4.6,1050,228.2608695652174 +7.118399999999999,5,a-sust-i4,2023-24,Agawam - Agawam Junior High,00050405, 0.0, .0, 1.8, .0, 3.2, .0, 5.0,551,110.2 +5.536,5,a-sust-i4,2023-24,Agawam - Benjamin J Phelps,00050020, 0.6, .4, .0, .0, .0, .0, 1.0,308,308.0 +6.117333333333333,5,a-sust-i4,2023-24,Agawam - Clifford M Granger,00050010, 1.0, .5, .0, .0, .0, .0, 1.5,353,235.33333333333334 +6.384,5,a-sust-i4,2023-24,Agawam - James Clark School,00050030, 0.9, .6, .0, .0, .0, .0, 1.5,303,202.0 +6.656,5,a-sust-i4,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 1.1, 1.1, .0, .8, .0, 3.0,504,168.0 +5.72,5,a-sust-i4,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.6, .4, .0, .0, .0, .0, 1.0,285,285.0 +6.810285714285714,5,a-sust-i4,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 2.7, 1.6, 2.7, .0, .0, .0, 7.0,1041,148.71428571428572 +6.14,5,a-sust-i4,2023-24,Amesbury - Amesbury High,00070505, 0.0, .0, .0, 2.0, .0, .0, 2.0,465,232.5 +6.98,5,a-sust-i4,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, .0, .0, .4, .0, .0, 0.4,51,127.5 +7.168,5,a-sust-i4,2023-24,Amesbury - Amesbury Middle,00070013, 0.0, .0, 4.0, .0, .0, .0, 4.0,416,104.0 +6.408,5,a-sust-i4,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 2.0, .0, .0, .0, .0, 2.0,398,199.0 +6.052,5,a-sust-i4,2023-24,Amesbury - Shay Elementary,00070005, 2.0, .0, .0, .0, .0, .0, 2.0,487,243.5 +6.9969230769230775,5,a-sust-i4,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.8, 1.0, .3, .0, .6, .0, 2.6,326,125.38461538461539 +6.935384615384615,5,a-sust-i4,2023-24,Amherst - Fort River Elementary,00080020, 0.9, 1.0, .2, .0, .6, .0, 2.6,346,133.07692307692307 +7.043076923076923,5,a-sust-i4,2023-24,Amherst - Wildwood Elementary,00080050, 0.8, .9, .4, .0, .6, .0, 2.6,311,119.61538461538461 +7.148354430379747,5,a-sust-i4,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, .0, .0, 5.0, 2.9, .0, 7.9,841,106.45569620253164 +7.202162162162161,5,a-sust-i4,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, .0, 3.7, .0, .0, .0, 3.7,369,99.72972972972973 +6.568510638297872,5,a-sust-i4,2023-24,Andover - Andover High,00090505, 0.0, .0, .0, 4.5, .0, 4.9, 9.4,1682,178.93617021276594 +6.64,5,a-sust-i4,2023-24,Andover - Andover West Middle,00090310, 0.0, .0, 2.8, .0, .0, .1, 2.9,493,170.0 +6.771764705882354,5,a-sust-i4,2023-24,Andover - Bancroft Elementary,00090003, 1.7, 1.8, .0, .0, .0, .0, 3.4,522,153.52941176470588 +6.68,5,a-sust-i4,2023-24,Andover - Doherty Middle,00090305, 0.0, .0, 2.8, .0, .0, .0, 2.8,462,165.0 +7.010370370370371,5,a-sust-i4,2023-24,Andover - Henry C Sanborn Elementary,00090010, 1.1, 1.6, .0, .0, .0, .0, 2.7,334,123.7037037037037 +6.72,5,a-sust-i4,2023-24,Andover - High Plain Elementary,00090004, 1.7, 1.7, .0, .0, .0, .0, 3.4,544,160.0 +-Infinity,1,a-sust-i4,2023-24,Andover - Shawsheen School,00090005, 0.0, .0, .0, .0, .0, .0, 0.0,83,Infinity +6.6176,5,a-sust-i4,2023-24,Andover - South Elementary,00090020, 1.0, 1.6, .0, .0, .0, .0, 2.5,432,172.8 +6.897560975609757,5,a-sust-i4,2023-24,Andover - West Elementary,00090025, 1.9, 2.2, .0, .0, .0, .0, 4.1,565,137.8048780487805 +7.145806451612904,5,a-sust-i4,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, .0, 3.1, .0, .0, .0, 3.1,331,106.77419354838709 +6.003478260869565,5,a-sust-i4,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, .0, 1.6, .0, .7, .0, 2.3,574,249.56521739130437 +6.34974358974359,5,a-sust-i4,2023-24,Arlington - Arlington High,00100505, 0.0, .0, .0, .5, 6.8, .4, 7.8,1609,206.2820512820513 +6.6464,5,a-sust-i4,2023-24,Arlington - Brackett,00100010, 1.0, 1.1, .0, .0, .4, .1, 2.5,423,169.2 +6.741538461538462,5,a-sust-i4,2023-24,Arlington - Cyrus E Dallin,00100025, 0.8, 1.2, .0, .0, .1, .4, 2.6,409,157.3076923076923 +6.5024,5,a-sust-i4,2023-24,Arlington - Gibbs School,00100305, 0.0, .0, 2.5, .0, .0, .0, 2.5,468,187.2 +6.821538461538462,5,a-sust-i4,2023-24,Arlington - Hardy,00100030, 1.1, .9, .0, .0, .4, .3, 2.6,383,147.3076923076923 +7.131111111111111,5,a-sust-i4,2023-24,Arlington - John A Bishop,00100005, 1.0, 1.1, .0, .0, 1.4, .3, 3.6,391,108.61111111111111 +6.9406060606060604,5,a-sust-i4,2023-24,Arlington - M Norcross Stratton,00100055, 0.9, 1.1, .0, .0, .9, .4, 3.3,437,132.42424242424244 +-Infinity,1,a-sust-i4,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +6.463673469387755,5,a-sust-i4,2023-24,Arlington - Ottoson Middle,00100410, 0.0, .0, 4.9, .0, .0, .0, 4.9,941,192.0408163265306 +7.234285714285714,5,a-sust-i4,2023-24,Arlington - Peirce,00100045, 0.9, 1.1, .0, .0, 1.0, .4, 3.5,335,95.71428571428571 +6.806857142857143,5,a-sust-i4,2023-24,Arlington - Thompson,00100050, 1.0, 1.0, .0, .0, 1.3, .3, 3.5,522,149.14285714285714 +6.032,5,a-sust-i4,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 1.0, 1.0, .0, .0, .0, .0, 2.0,492,246.0 +5.7714285714285705,5,a-sust-i4,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.7, .0, .0, .0, .0, .0, 0.7,195,278.5714285714286 +6.309333333333333,5,a-sust-i4,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, .0, .0, 3.0, .0, .0, 3.0,634,211.33333333333334 +6.619354838709678,5,a-sust-i4,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, .0, 3.0, .0, .0, .1, 3.1,535,172.5806451612903 +5.48923076923077,5,a-sust-i4,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.3, 1.0, .0, .0, .0, .0, 1.3,408,313.8461538461538 +6.418181818181818,5,a-sust-i4,2023-24,Ashland - Ashland High,00140505, 0.0, .0, .0, 4.4, .0, .0, 4.4,870,197.72727272727272 +6.247741935483871,5,a-sust-i4,2023-24,Ashland - Ashland Middle,00140405, 0.0, .0, 3.1, .0, .0, .0, 3.1,679,219.03225806451613 +5.776666666666666,5,a-sust-i4,2023-24,Ashland - David Mindess,00140015, 0.0, 2.4, .0, .0, .0, .0, 2.4,667,277.9166666666667 +4.945,4.95,a-sust-i4,2023-24,Ashland - Henry E Warren Elementary,00140010, 1.6, .0, .0, .0, .0, .0, 1.6,611,381.875 +-Infinity,1,a-sust-i4,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity +4.233333333333333,4.23,a-sust-i4,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, .0, .0, 2.4, .0, .0, 2.4,1130,470.83333333333337 +5.824761904761905,5,a-sust-i4,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 1.1, .0, .0, .0, .0, 1.0, 2.1,571,271.90476190476187 +5.792,5,a-sust-i4,2023-24,Athol-Royalston - Athol High,06150505, 0.0, .0, .0, .4, .0, 1.1, 1.5,414,276.0 +6.148,5,a-sust-i4,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, .5, 1.5, .0, .0, .0, 2.0,463,231.5 +6.026666666666666,5,a-sust-i4,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.2, .2, .0, .0, .0, .2, 0.6,148,246.66666666666669 +6.521176470588236,5,a-sust-i4,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 2.0, 1.5, 1.7, .0, 1.6, .0, 6.8,1257,184.85294117647058 +6.530526315789474,5,a-sust-i4,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 1.0, .6, .0, .0, .0, .3, 1.9,349,183.6842105263158 +7.32,5,a-sust-i4,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, .0, .3, .5, .0, .0, 0.8,68,85.0 +4.5,4.5,a-sust-i4,2023-24,Attleboro - Attleboro High,00160505, 0.0, .0, .0, 4.3, .0, .1, 4.4,1925,437.49999999999994 +7.173333333333333,5,a-sust-i4,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, .0, .0, .3, .0, .1, 0.3,31,103.33333333333334 +6.513939393939394,5,a-sust-i4,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 1.0, 2.4, .0, .0, .0, 3.3,613,185.75757575757578 +-Infinity,1,a-sust-i4,2023-24,Attleboro - Early Learning Center,00160008, 0.0, .0, .0, .0, .0, .0, 0.0,226,Infinity +6.328,5,a-sust-i4,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 1.3, .7, .0, .0, .0, .0, 2.0,418,209.0 +6.172,5,a-sust-i4,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 1.2, .8, .0, .0, .0, .0, 2.0,457,228.5 +6.4,5,a-sust-i4,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 1.4, .8, .0, .0, .0, .0, 2.2,440,199.99999999999997 +6.601212121212121,5,a-sust-i4,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, .8, 2.6, .0, .0, .0, 3.3,577,174.84848484848484 +6.429473684210527,5,a-sust-i4,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 1.1, .8, .0, .0, .0, .0, 1.9,373,196.31578947368422 +6.593939393939394,5,a-sust-i4,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, .9, 2.4, .0, .0, .0, 3.3,580,175.75757575757578 +6.341333333333333,5,a-sust-i4,2023-24,Auburn - Auburn Middle,00170305, 0.0, .0, 3.0, .0, .0, .0, 3.0,622,207.33333333333334 +6.284210526315789,5,a-sust-i4,2023-24,Auburn - Auburn Senior High,00170505, 0.0, .0, .0, .8, .6, 2.4, 3.8,815,214.47368421052633 +5.944,5,a-sust-i4,2023-24,Auburn - Bryn Mawr,00170010, 1.0, .0, .0, .0, .0, .0, 1.0,257,257.0 +5.831111111111111,5,a-sust-i4,2023-24,Auburn - Pakachoag School,00170025, 0.9, .0, .0, .0, .0, .0, 0.9,244,271.1111111111111 +6.504,5,a-sust-i4,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.0, 3.0, .0, .0, .0, .0, 3.0,561,187.0 +6.98,5,a-sust-i4,2023-24,Avon - Avon Middle High School,00180510, 0.0, .0, 1.9, .2, 1.1, .0, 3.2,408,127.5 +6.63578947368421,5,a-sust-i4,2023-24,Avon - Ralph D Butler,00180010, 1.0, 1.0, .0, .0, .0, .0, 1.9,324,170.5263157894737 +6.56695652173913,5,a-sust-i4,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, .0, .0, .0, 2.3, .0, 2.3,412,179.13043478260872 +6.484,5,a-sust-i4,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, .0, 1.0, .0, 1.0, .0, 2.0,379,189.5 +6.324705882352942,5,a-sust-i4,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.9, .8, .0, .0, .0, .0, 1.7,356,209.41176470588235 +5.84,5,a-sust-i4,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 1.0, 1.0, .0, .0, .0, .0, 2.0,540,270.0 +4.91,4.91,a-sust-i4,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.6, .2, .0, .0, .0, .0, 0.8,309,386.25 +6.819495798319328,5,a-sust-i4,2023-24,Barnstable - Barnstable High,00200505, 0.0, .0, 1.8, 10.1, .0, .0, 11.9,1756,147.56302521008402 +6.888695652173913,5,a-sust-i4,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, .0, 4.6, .0, .0, .0, 4.6,639,138.91304347826087 +6.513684210526316,5,a-sust-i4,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 3.8, .0, .0, .0, .0, 3.8,706,185.78947368421055 +5.92,5,a-sust-i4,2023-24,Barnstable - Centerville Elementary,00200010, 0.8, .2, .0, .0, .0, .0, 1.0,260,260.0 +-Infinity,1,a-sust-i4,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, .0, .0, .0, .0, .0, 0.0,153,Infinity +6.29,5,a-sust-i4,2023-24,Barnstable - Hyannis West Elementary,00200025, 1.2, .4, .0, .0, .0, .0, 1.6,342,213.75 +6.735,5,a-sust-i4,2023-24,Barnstable - West Barnstable Elementary,00200005, 1.3, .3, .0, .0, .0, .0, 1.6,253,158.125 +6.404,5,a-sust-i4,2023-24,Barnstable - West Villages Elementary School,00200045, 1.5, .5, .0, .0, .0, .0, 2.0,399,199.5 +4.688,4.69,a-sust-i4,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, .0, .8, .0, .3, .0, 1.0,414,414.0 +6.740363636363636,5,a-sust-i4,2023-24,Bedford - Bedford High,00230505, 0.0, .0, .0, 5.5, .0, .0, 5.5,866,157.45454545454547 +6.935652173913044,5,a-sust-i4,2023-24,Bedford - John Glenn Middle,00230305, 0.0, .0, 4.6, .0, .0, .0, 4.6,612,133.04347826086956 +5.96,5,a-sust-i4,2023-24,Bedford - Lt Eleazer Davis,00230010, 2.0, .0, .0, .0, .0, .0, 2.0,510,255.0 +6.1728000000000005,5,a-sust-i4,2023-24,Bedford - Lt Job Lane School,00230012, 0.0, 2.5, .0, .0, .0, .0, 2.5,571,228.4 +6.583529411764706,5,a-sust-i4,2023-24,Belchertown - Belchertown High,00240505, 0.0, .0, .0, 2.2, 1.1, .1, 3.4,602,177.05882352941177 +6.696,5,a-sust-i4,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.0, 1.7, 1.1, .0, .2, .0, 3.0,489,163.0 +5.84,5,a-sust-i4,2023-24,Belchertown - Cold Spring,00240005, 0.7, .0, .0, .0, .0, .0, 0.7,189,270.0 +7.112,5,a-sust-i4,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, .0, 3.0, .0, .0, .0, 3.0,333,111.0 +6.128,5,a-sust-i4,2023-24,Belchertown - Swift River Elementary,00240018, 1.3, .7, .0, .0, .0, .0, 2.0,468,234.0 +-Infinity,1,a-sust-i4,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, .0, .0, .0, .0, .0, 0.0,109,Infinity +6.890370370370371,5,a-sust-i4,2023-24,Bellingham - Bellingham High School,00250505, 0.0, .0, 1.3, 4.0, .0, .0, 5.4,749,138.7037037037037 +6.649142857142857,5,a-sust-i4,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 2.0, 1.5, .0, .0, .0, 3.5,591,168.85714285714286 +5.584,5,a-sust-i4,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.8, .2, .0, .0, .0, .0, 1.0,302,302.0 +7.792,5,a-sust-i4,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, .0, .0, .0, 1.0, .0, 1.0,26,26.0 +6.99764705882353,5,a-sust-i4,2023-24,Bellingham - Stall Brook,00250025, 1.3, .4, .0, .0, .0, .0, 1.7,213,125.29411764705883 +6.200615384615385,5,a-sust-i4,2023-24,Belmont - Belmont High,00260505, 0.0, .0, .0, 6.5, .0, .0, 6.5,1462,224.92307692307693 +6.866382978723404,5,a-sust-i4,2023-24,Belmont - Belmont Middle School,00260315, 0.0, .0, 4.7, .0, .0, .0, 4.7,666,141.70212765957447 +6.395,5,a-sust-i4,2023-24,Belmont - Daniel Butler,00260015, 0.8, .6, .0, .0, .0, .2, 1.6,321,200.625 +6.829090909090909,5,a-sust-i4,2023-24,Belmont - Mary Lee Burbank,00260010, 1.1, .9, .0, .0, .0, .2, 2.2,322,146.36363636363635 +6.101818181818182,5,a-sust-i4,2023-24,Belmont - Roger E Wellington,00260035, 1.2, .8, .0, .0, .0, .2, 2.2,522,237.27272727272725 +6.328,5,a-sust-i4,2023-24,Belmont - Winn Brook,00260005, 1.1, .9, .0, .0, .0, .0, 2.0,418,209.0 +7.135757575757576,5,a-sust-i4,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 3.8, 2.8, .0, .0, .0, 6.6,713,108.03030303030303 +6.616,5,a-sust-i4,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.9, .8, .3, .0, .0, .0, 2.0,346,173.0 +6.421333333333333,5,a-sust-i4,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.9, .8, 1.0, .0, 1.9, .0, 4.5,888,197.33333333333334 +6.016842105263158,5,a-sust-i4,2023-24,Berkley - Berkley Community School,00270010, 1.2, .8, .0, .0, .0, .0, 1.9,471,247.8947368421053 +6.54,5,a-sust-i4,2023-24,Berkley - Berkley Middle School,00270305, 0.0, .5, 1.5, .0, .0, .0, 2.0,365,182.5 +6.993103448275862,5,a-sust-i4,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, .0, 1.5, .0, 1.4, .0, 2.9,365,125.86206896551724 +7.050526315789473,5,a-sust-i4,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, .0, .0, 1.7, 2.0, .0, 3.8,451,118.6842105263158 +6.784,5,a-sust-i4,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.3, 1.2, .0, .0, .0, .0, 2.5,380,152.0 +7.072,5,a-sust-i4,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, .2, 1.1, .0, 1.7, .0, 3.0,348,116.0 +6.731428571428571,5,a-sust-i4,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.5, .9, .0, .0, .0, .0, 1.4,222,158.57142857142858 +6.418823529411765,5,a-sust-i4,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.8, 1.0, .0, .0, .0, .0, 1.7,336,197.64705882352942 +6.919024390243902,5,a-sust-i4,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, .0, 2.0, .5, 1.6, .0, 4.1,554,135.1219512195122 +6.06,5,a-sust-i4,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.9, .5, .0, .0, .0, .2, 1.6,388,242.5 +6.4787878787878785,5,a-sust-i4,2023-24,Beverly - Beverly High,00300505, 0.0, .0, .0, 3.6, .0, 3.0, 6.6,1255,190.15151515151516 +6.794666666666667,5,a-sust-i4,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 2.5, 6.5, .0, .0, .0, 9.0,1356,150.66666666666666 +7.0488888888888885,5,a-sust-i4,2023-24,Beverly - Centerville Elementary,00300010, 1.5, 1.0, .0, .0, .0, .2, 2.7,321,118.88888888888889 +6.527272727272728,5,a-sust-i4,2023-24,Beverly - Cove Elementary,00300015, 1.3, .7, .0, .0, .0, .2, 2.2,405,184.09090909090907 +6.836363636363636,5,a-sust-i4,2023-24,Beverly - Hannah Elementary,00300033, 1.4, .6, .0, .0, .0, .2, 2.2,320,145.45454545454544 +-Infinity,1,a-sust-i4,2023-24,Beverly - McKeown School,00300002, 0.0, .0, .0, .0, .0, .0, 0.0,110,Infinity +6.738181818181818,5,a-sust-i4,2023-24,Beverly - North Beverly Elementary,00300040, 1.3, .7, .0, .0, .0, .2, 2.2,347,157.72727272727272 +6.201481481481482,5,a-sust-i4,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, .0, 2.9, 5.1, .0, .0, 8.1,1821,224.81481481481484 +6.421333333333333,5,a-sust-i4,2023-24,Billerica - Frederick J Dutile,00310007, 1.0, .5, .0, .0, .0, .0, 1.5,296,197.33333333333334 +4.604444444444445,4.6,a-sust-i4,2023-24,Billerica - Hajjar Elementary,00310026, 0.5, .4, .0, .0, .0, .0, 0.9,382,424.44444444444446 +6.456470588235294,5,a-sust-i4,2023-24,Billerica - John F Kennedy,00310012, 1.0, .8, .0, .0, .0, .0, 1.7,328,192.94117647058823 +6.994,5,a-sust-i4,2023-24,Billerica - Locke Middle,00310310, 0.0, .8, 3.2, .0, .0, .0, 4.0,503,125.75 +6.590588235294117,5,a-sust-i4,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 1.2, 2.3, .0, .0, .0, 3.4,599,176.1764705882353 +4.632,4.63,a-sust-i4,2023-24,Billerica - Parker,00310015, 0.6, .4, .0, .0, .0, .0, 1.0,421,421.0 +5.68,5,a-sust-i4,2023-24,Billerica - Thomas Ditson,00310005, 1.1, .8, .0, .0, .0, .0, 1.9,551,290.0 +3.833333333333333,3.83,a-sust-i4,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, .0, .0, 2.0, .0, .4, 2.4,1250,520.8333333333334 +4.192,4.19,a-sust-i4,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, .5, .0, .0, .0, .0, 0.5,238,476.0 +6.610909090909091,5,a-sust-i4,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, .0, .0, 2.2, .0, .0, 2.2,382,173.63636363636363 +6.951428571428572,5,a-sust-i4,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, .0, 1.0, .0, .0, 1.8, 2.8,367,131.07142857142858 +6.16,5,a-sust-i4,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, .5, .0, .0, .0, .0, 0.5,115,230.0 +6.144,5,a-sust-i4,2023-24,Blackstone-Millville - Millville Elementary,06220010, 1.5, .0, .0, .0, .0, .0, 1.5,348,232.0 +-0.16,1,a-sust-i4,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, .0, .0, .9, .0, .0, 0.9,918,1020.0 +7.3725,5,a-sust-i4,2023-24,Boston - Adams Elementary School,00350302, 1.3, 1.3, .2, .0, .0, .6, 3.2,251,78.4375 +7.136,5,a-sust-i4,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.4, .3, .1, .0, .0, .3, 1.0,108,108.0 +6.8,5,a-sust-i4,2023-24,Boston - Another Course To College,00350541, 0.0, .0, .0, 1.6, .0, .0, 1.6,240,150.0 +7.332173913043478,5,a-sust-i4,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 1.8, .0, .0, .0, .0, .5, 2.3,192,83.47826086956522 +6.884,5,a-sust-i4,2023-24,Boston - Bates Elementary School,00350278, 1.0, .5, .0, .0, .0, .5, 2.0,279,139.5 +7.251428571428572,5,a-sust-i4,2023-24,Boston - Beethoven Elementary School,00350021, 1.6, .0, .0, .0, .0, 1.1, 2.8,262,93.57142857142858 +6.866341463414634,5,a-sust-i4,2023-24,Boston - Blackstone Elementary School,00350390, 1.6, 1.6, .5, .0, .0, .5, 4.1,581,141.70731707317074 +-Infinity,1,a-sust-i4,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity +7.772048192771084,5,a-sust-i4,2023-24,Boston - Boston Arts Academy,00350546, 0.0, .0, .0, 16.6, .0, .0, 16.6,473,28.493975903614455 +6.754285714285714,5,a-sust-i4,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, .0, .0, 1.4, .0, .0, 1.4,218,155.71428571428572 +6.699428571428571,5,a-sust-i4,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, .0, 1.0, 2.5, .0, .0, 3.5,569,162.57142857142858 +6.4448,5,a-sust-i4,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, .0, .0, 2.5, .0, .0, 2.5,486,194.4 +4.7752380952380955,4.78,a-sust-i4,2023-24,Boston - Boston Latin Academy,00350545, 0.0, .0, 2.2, 1.9, .0, .0, 4.2,1693,403.0952380952381 +5.956595744680851,5,a-sust-i4,2023-24,Boston - Boston Latin School,00350560, 0.0, .0, 5.2, 4.2, .0, .0, 9.4,2401,255.4255319148936 +6.912,5,a-sust-i4,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.6, .6, .8, .0, .0, .0, 2.0,272,136.0 +6.5,5,a-sust-i4,2023-24,Boston - Bradley Elementary School,00350215, 0.7, .3, .1, .0, .0, .5, 1.6,300,187.5 +6.702222222222223,5,a-sust-i4,2023-24,Boston - Brighton High School,00350505, 0.0, .0, 1.8, 1.8, .0, .0, 3.6,584,162.22222222222223 +6.946666666666667,5,a-sust-i4,2023-24,Boston - Burke High School,00350525, 0.0, .0, .2, 2.8, .0, .0, 3.0,395,131.66666666666666 +-Infinity,1,a-sust-i4,2023-24,Boston - Carter School,00350036, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +6.72,5,a-sust-i4,2023-24,Boston - Channing Elementary School,00350360, 0.6, .4, .1, .0, .0, .2, 1.2,192,160.0 +6.597333333333333,5,a-sust-i4,2023-24,Boston - Charlestown High School,00350515, 0.0, .0, .4, 4.1, .0, .0, 4.5,789,175.33333333333334 +7.3244444444444445,5,a-sust-i4,2023-24,Boston - Chittick Elementary School,00350154, 1.1, 1.0, .3, .0, .0, .3, 2.7,228,84.44444444444444 +7.133333333333333,5,a-sust-i4,2023-24,Boston - Clap Elementary School,00350298, 0.4, .3, .5, .0, .0, .1, 1.2,130,108.33333333333334 +7.672,5,a-sust-i4,2023-24,Boston - Community Academy,00350518, 0.0, .0, .0, 1.0, .0, .0, 1.0,41,41.0 +5.272,5,a-sust-i4,2023-24,Boston - Community Academy of Science and Health,00350581, 0.0, .0, .0, 1.0, .0, .0, 1.0,341,341.0 +7.226666666666666,5,a-sust-i4,2023-24,Boston - Condon K-8 School,00350146, 1.9, 1.4, 1.4, .0, .0, 1.4, 6.0,580,96.66666666666667 +6.792,5,a-sust-i4,2023-24,Boston - Conley Elementary School,00350122, 0.3, .4, .2, .0, .0, .2, 1.0,151,151.0 +6.972394366197182,5,a-sust-i4,2023-24,Boston - Curley K-8 School,00350020, 2.5, 1.6, 2.3, .0, .0, .7, 7.1,912,128.45070422535213 +5.788,5,a-sust-i4,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, .0, 1.0, 1.0, .0, .0, 2.0,553,276.5 +6.376,5,a-sust-i4,2023-24,Boston - Dever Elementary School,00350268, 0.7, .5, .2, .0, .0, .6, 2.0,406,203.0 +7.216,5,a-sust-i4,2023-24,Boston - East Boston Early Education Center,00350009, 1.6, .0, .0, .0, .0, .4, 2.0,196,98.0 +3.502608695652174,3.5,a-sust-i4,2023-24,Boston - East Boston High School,00350530, 0.0, .0, 1.0, 1.3, .0, .0, 2.3,1293,562.1739130434783 +7.221333333333334,5,a-sust-i4,2023-24,Boston - Edison K-8 School,00350375, 1.0, 2.6, 2.1, .0, .0, .4, 6.0,584,97.33333333333333 +6.907586206896552,5,a-sust-i4,2023-24,Boston - Eliot K-8 Innovation School,00350096, 2.7, 1.7, .5, .0, .0, .8, 5.8,792,136.55172413793105 +7.561290322580645,5,a-sust-i4,2023-24,Boston - Ellis Elementary School,00350072, 2.9, 1.3, .3, .0, .0, 1.7, 6.2,340,54.83870967741935 +7.20421052631579,5,a-sust-i4,2023-24,Boston - Ellison-Parks Early Education School,00350008, 1.2, .2, .0, .0, .0, .6, 1.9,189,99.47368421052632 +6.9088,5,a-sust-i4,2023-24,Boston - English High School,00350535, 0.0, .0, .3, 4.8, .0, .0, 5.0,682,136.4 +6.888,5,a-sust-i4,2023-24,Boston - Everett Elementary School,00350088, 0.7, .8, .3, .0, .0, .3, 2.0,278,139.0 +5.788571428571428,5,a-sust-i4,2023-24,Boston - Excel High School,00350522, 0.0, .0, .0, 1.4, .0, .0, 1.4,387,276.42857142857144 +5.686153846153846,5,a-sust-i4,2023-24,Boston - Fenway High School,00350540, 0.0, .0, .0, 1.3, .0, .0, 1.3,376,289.2307692307692 +7.32923076923077,5,a-sust-i4,2023-24,Boston - Frederick Pilot Middle School,00350383, 0.0, .0, 3.9, .0, .0, .0, 3.9,327,83.84615384615385 +5.032,5,a-sust-i4,2023-24,Boston - Gardner Pilot Academy,00350326, 0.5, .3, .0, .0, .0, .2, 1.0,371,371.0 +5.973333333333333,5,a-sust-i4,2023-24,Boston - Greater Egleston High School,00350543, 0.0, .0, .0, .3, .0, .0, 0.3,76,253.33333333333334 +6.564,5,a-sust-i4,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 0.6, .6, .7, .0, .0, .2, 2.0,359,179.5 +6.424,5,a-sust-i4,2023-24,Boston - Grew Elementary School,00350135, 0.7, .2, .0, .0, .0, .1, 1.0,197,197.0 +7.1408695652173915,5,a-sust-i4,2023-24,Boston - Guild Elementary School,00350062, 0.8, .6, .5, .0, .0, .5, 2.3,247,107.3913043478261 +7.17,5,a-sust-i4,2023-24,Boston - Hale Elementary School,00350243, 0.6, .6, .2, .0, .0, .2, 1.6,166,103.75 +7.238,5,a-sust-i4,2023-24,Boston - Haley Pilot School,00350077, 1.5, 1.0, 1.0, .0, .0, .5, 4.0,381,95.25 +5.28,5,a-sust-i4,2023-24,Boston - Harvard-Kent Elementary School,00350200, 0.4, .4, .1, .0, .0, .1, 1.0,340,340.0 +6.68,5,a-sust-i4,2023-24,Boston - Haynes Early Education Center,00350010, 0.7, .0, .0, .0, .0, .6, 1.2,198,165.0 +6.837333333333333,5,a-sust-i4,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 1.1, .0, .0, .0, .0, .4, 1.5,218,145.33333333333334 +6.838181818181818,5,a-sust-i4,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.7, 1.5, 1.1, 1.2, .0, .0, 4.4,639,145.22727272727272 +5.98,5,a-sust-i4,2023-24,Boston - Hennigan K-8 School,00350153, 0.4, .6, .6, .0, .0, .5, 2.0,505,252.5 +6.914666666666667,5,a-sust-i4,2023-24,Boston - Hernandez K-8 School,00350691, 1.1, 1.1, .5, .0, .0, .4, 3.0,407,135.66666666666666 +6.744,5,a-sust-i4,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 0.7, .0, .0, .0, .0, .3, 1.0,157,157.0 +7.324,5,a-sust-i4,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 1.1, .9, .0, .0, .0, 2.0,169,84.5 +6.649411764705882,5,a-sust-i4,2023-24,Boston - Holmes Elementary School,00350138, 0.7, .7, .2, .0, .0, .2, 1.7,287,168.82352941176472 +6.832,5,a-sust-i4,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.1, .3, .1, .1, .0, .0, 0.5,73,146.0 +5.208,5,a-sust-i4,2023-24,Boston - Hurley K-8 School,00350182, 0.3, .3, .3, .0, .0, .1, 1.0,349,349.0 +7.28,5,a-sust-i4,2023-24,Boston - Kennedy John F Elementary School,00350166, 1.7, .5, .4, .0, .0, 1.7, 4.4,396,89.99999999999999 +7.288,5,a-sust-i4,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 1.0, .8, .3, .0, .0, 1.0, 3.0,267,89.0 +6.648,5,a-sust-i4,2023-24,Boston - Kenny Elementary School,00350328, 0.8, .6, .2, .0, .0, .5, 2.0,338,169.0 +6.94,5,a-sust-i4,2023-24,Boston - Kilmer K-8 School,00350190, 0.7, .7, 1.1, .0, .0, .3, 2.8,371,132.5 +7.06,5,a-sust-i4,2023-24,Boston - King Elementary School,00350376, 2.7, .7, .2, .0, .0, .5, 4.0,470,117.5 +-Infinity,1,a-sust-i4,2023-24,Boston - Lee Academy,00350001, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity +7.102978723404255,5,a-sust-i4,2023-24,Boston - Lee K-8 School,00350183, 2.2, .9, 1.3, .0, .0, .3, 4.7,527,112.12765957446808 +6.08,5,a-sust-i4,2023-24,Boston - Lyndon K-8 School,00350262, 0.6, .6, .3, .0, .0, .7, 2.2,528,239.99999999999997 +5.28,5,a-sust-i4,2023-24,Boston - Lyon High School,00350655, 0.0, .0, .0, .3, .0, .0, 0.3,102,340.0 +7.494736842105263,5,a-sust-i4,2023-24,Boston - Lyon K-8 School,00350004, 0.6, .8, .4, .0, .0, .1, 1.9,120,63.15789473684211 +-Infinity,1,a-sust-i4,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, .0, .0, .0, .0, .0, 0.0,1058,Infinity +7.324,5,a-sust-i4,2023-24,Boston - Manning Elementary School,00350184, 0.8, .8, .3, .0, .0, .1, 2.0,169,84.5 +7.5261538461538455,5,a-sust-i4,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, .0, .0, 5.2, .0, .0, 5.2,308,59.230769230769226 +7.143050847457627,5,a-sust-i4,2023-24,Boston - Mario Umana Academy,00350656, 1.6, 1.5, 1.6, .0, .0, 1.3, 5.9,632,107.11864406779661 +6.11,5,a-sust-i4,2023-24,Boston - Mason Elementary School,00350304, 0.5, .0, .0, .0, .0, .3, 0.8,189,236.25 +6.789333333333333,5,a-sust-i4,2023-24,Boston - Mather Elementary School,00350227, 1.5, .9, .0, .0, .0, .6, 3.0,454,151.33333333333334 +5.952,5,a-sust-i4,2023-24,Boston - Mattahunt Elementary School,00350016, 1.0, .5, .2, .0, .0, .3, 2.0,512,256.0 +6.808888888888888,5,a-sust-i4,2023-24,Boston - McKay K-8 School,00350080, 0.5, 1.5, 1.5, .0, .0, 1.0, 4.5,670,148.88888888888889 +7.693714285714286,5,a-sust-i4,2023-24,Boston - Melvin H. King South End Academy,00350363, 0.0, .5, 1.5, 1.4, .0, .1, 3.5,134,38.285714285714285 +6.768,5,a-sust-i4,2023-24,Boston - Mendell Elementary School,00350100, 1.1, .5, .1, .0, .0, .3, 2.0,308,154.0 +7.157142857142857,5,a-sust-i4,2023-24,Boston - Mildred Avenue K-8 School,00350378, 0.5, 1.4, 3.0, .0, .0, .8, 5.6,590,105.35714285714286 +7.16235294117647,5,a-sust-i4,2023-24,Boston - Mozart Elementary School,00350237, 0.9, .4, .1, .0, .0, .3, 1.7,178,104.70588235294117 +5.418461538461539,5,a-sust-i4,2023-24,Boston - Murphy K-8 School,00350240, 0.4, .5, 1.6, .0, .0, .1, 2.6,839,322.6923076923077 +5.570909090909091,5,a-sust-i4,2023-24,Boston - New Mission High School,00350542, 0.0, .0, .2, 2.0, .0, .0, 2.2,668,303.6363636363636 +6.242285714285714,5,a-sust-i4,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, .0, 2.0, 5.0, .0, .0, 7.0,1538,219.71428571428572 +6.533333333333333,5,a-sust-i4,2023-24,Boston - O'Donnell Elementary School,00350141, 0.7, .7, .2, .0, .0, .0, 1.5,275,183.33333333333334 +6.8053333333333335,5,a-sust-i4,2023-24,Boston - Ohrenberger School,00350258, 0.0, 1.6, 1.2, .0, .0, .2, 3.0,448,149.33333333333334 +7.382068965517241,5,a-sust-i4,2023-24,Boston - Orchard Gardens K-8 School,00350257, 1.7, 2.0, 3.9, .0, .0, 1.2, 8.7,672,77.24137931034484 +6.928,5,a-sust-i4,2023-24,Boston - Otis Elementary School,00350156, 0.9, 1.0, .3, .0, .0, .8, 3.0,402,134.0 +7.148571428571429,5,a-sust-i4,2023-24,Boston - Perkins Elementary School,00350231, 0.4, .5, .2, .0, .0, .3, 1.4,149,106.42857142857143 +5.104,5,a-sust-i4,2023-24,Boston - Perry Elementary School,00350255, 0.2, .2, .1, .0, .0, .1, 0.5,181,362.0 +7.540869565217391,5,a-sust-i4,2023-24,Boston - Philbrick Elementary School,00350172, 0.8, .5, .2, .0, .0, .8, 2.3,132,57.39130434782609 +6.534,5,a-sust-i4,2023-24,Boston - Quincy Elementary School,00350286, 1.9, 1.5, .0, .0, .0, .7, 4.0,733,183.25 +7.586796116504854,5,a-sust-i4,2023-24,Boston - Quincy Upper School,00350565, 0.0, .0, 4.9, 5.4, .0, .0, 10.3,532,51.6504854368932 +7.086896551724138,5,a-sust-i4,2023-24,Boston - Roosevelt K-8 School,00350116, 1.0, 1.3, .5, .0, .0, .2, 2.9,331,114.13793103448276 +6.616,5,a-sust-i4,2023-24,Boston - Russell Elementary School,00350366, 1.0, .5, .0, .0, .0, .4, 2.0,346,173.0 +6.392,5,a-sust-i4,2023-24,Boston - Shaw Elementary School,00350014, 0.5, .3, .0, .0, .0, .2, 1.0,201,201.0 +6.8133333333333335,5,a-sust-i4,2023-24,Boston - Snowden International High School,00350690, 0.0, .0, .0, 3.0, .0, .0, 3.0,445,148.33333333333334 +6.945454545454546,5,a-sust-i4,2023-24,Boston - Sumner Elementary School,00350052, 2.0, 1.1, .3, .0, .0, 1.1, 4.4,580,131.8181818181818 +5.256,5,a-sust-i4,2023-24,Boston - Taylor Elementary School,00350054, 0.4, .3, .2, .0, .0, .2, 1.0,343,343.0 +6.1189189189189195,5,a-sust-i4,2023-24,Boston - TechBoston Academy,00350657, 0.0, .0, .8, 2.9, .0, .0, 3.7,870,235.13513513513513 +6.5,5,a-sust-i4,2023-24,Boston - Tobin K-8 School,00350229, 0.9, .6, .4, .0, .0, .1, 2.0,375,187.5 +6.857142857142857,5,a-sust-i4,2023-24,Boston - Trotter Elementary School,00350370, 1.1, .8, .1, .0, .0, .1, 2.1,300,142.85714285714286 +7.18,5,a-sust-i4,2023-24,Boston - Tynan Elementary School,00350181, 1.0, .5, .1, .0, .0, .4, 2.0,205,102.5 +6.490666666666667,5,a-sust-i4,2023-24,Boston - UP Academy Holland,00350167, 1.1, 1.6, .0, .0, .0, .3, 3.0,566,188.66666666666666 +6.825882352941177,5,a-sust-i4,2023-24,Boston - Warren-Prescott K-8 School,00350346, 1.2, .6, .5, .0, .0, 1.1, 3.4,499,146.76470588235296 +7.096,5,a-sust-i4,2023-24,Boston - West Zone Early Learning Center,00350006, 0.8, .0, .0, .0, .0, .3, 1.0,113,113.0 +5.24,5,a-sust-i4,2023-24,Boston - Winship Elementary School,00350374, 0.4, .4, .1, .0, .0, .1, 1.0,345,345.0 +5.59,5,a-sust-i4,2023-24,Boston - Winthrop Elementary School,00350180, 0.5, .0, .0, .0, .0, .3, 0.8,241,301.25 +6.757333333333333,5,a-sust-i4,2023-24,Boston - Young Achievers K-8 School,00350380, 1.1, .7, .9, .0, .0, .4, 3.0,466,155.33333333333334 +7.05103448275862,5,a-sust-i4,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, .4, 3.1, 1.8, .5, .0, 5.8,688,118.62068965517241 +4.093333333333333,4.09,a-sust-i4,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, .0, .0, .0, .6, .0, 0.6,293,488.33333333333337 +6.92,5,a-sust-i4,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, .0, .0, .0, .0, 3.4, 3.4,459,135.0 +6.817021276595745,5,a-sust-i4,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, .0, 2.0, .0, 2.7, .0, 4.7,695,147.87234042553192 +6.750666666666667,5,a-sust-i4,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 3.4, 2.4, .2, .0, .0, .0, 6.0,937,156.16666666666666 +7.135483870967742,5,a-sust-i4,2023-24,Bourne - Bourne High School,00360505, 0.0, .0, .0, .1, 2.9, .1, 3.1,335,108.06451612903226 +6.564,5,a-sust-i4,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 1.7, .0, .0, .3, .0, 2.0,359,179.5 +6.933333333333333,5,a-sust-i4,2023-24,Bourne - Bourne Middle School,00360325, 0.0, .0, 2.7, .0, .0, .7, 3.3,440,133.33333333333334 +5.855,5,a-sust-i4,2023-24,Bourne - Bournedale Elementary School,00360005, 1.6, .0, .0, .0, .0, .0, 1.6,429,268.125 +5.425454545454546,5,a-sust-i4,2023-24,Boxford - Harry Lee Cole,00380005, 1.1, .0, .0, .0, .0, .0, 1.1,354,321.8181818181818 +6.464761904761905,5,a-sust-i4,2023-24,Boxford - Spofford Pond,00380013, 0.0, 1.7, .4, .0, .0, .0, 2.1,403,191.9047619047619 +6.006666666666666,5,a-sust-i4,2023-24,Braintree - Archie T Morrison,00400033, 0.7, .5, .0, .0, .0, .0, 1.2,299,249.16666666666669 +5.967272727272727,5,a-sust-i4,2023-24,Braintree - Braintree High,00400505, 0.0, .0, .0, 6.0, .0, .6, 6.6,1677,254.0909090909091 +6.568,5,a-sust-i4,2023-24,Braintree - Donald Ross,00400050, 0.5, .4, .0, .0, .0, .0, 1.0,179,179.0 +6.8417391304347825,5,a-sust-i4,2023-24,Braintree - East Middle School,00400305, 0.0, 2.5, 4.4, .0, .0, .0, 6.9,999,144.78260869565216 +5.666666666666666,5,a-sust-i4,2023-24,Braintree - Highlands,00400015, 0.6, .5, .0, .0, .0, .0, 1.2,350,291.6666666666667 +6.644210526315789,5,a-sust-i4,2023-24,Braintree - Hollis,00400005, 1.2, .7, .0, .0, .0, .0, 1.9,322,169.47368421052633 +3.88,3.88,a-sust-i4,2023-24,Braintree - Liberty,00400025, 0.3, .3, .0, .0, .0, .0, 0.6,309,515.0 +5.752,5,a-sust-i4,2023-24,Braintree - Mary E Flaherty School,00400020, 0.6, .4, .0, .0, .0, .0, 1.0,281,281.0 +5.908571428571428,5,a-sust-i4,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.7, .0, .0, .0, .0, .0, 0.7,183,261.42857142857144 +6.498823529411765,5,a-sust-i4,2023-24,Braintree - South Middle School,00400310, 0.0, 1.3, 2.1, .0, .0, .0, 3.4,638,187.64705882352942 +6.906666666666667,5,a-sust-i4,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 1.3, .0, .0, .0, .2, 1.5,205,136.66666666666666 +6.168,5,a-sust-i4,2023-24,Brewster - Stony Brook Elementary,00410005, 1.0, .0, .0, .0, .0, .0, 1.0,229,229.0 +6.664,5,a-sust-i4,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, .0, .0, .0, .0, 2.0, 2.0,334,167.0 +6.6883333333333335,5,a-sust-i4,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, .0, 4.5, .0, .3, .0, 4.8,787,163.95833333333334 +2.88,2.88,a-sust-i4,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, .0, .0, .3, 1.9, .0, 2.2,1408,640.0 +5.968,5,a-sust-i4,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.7, 1.3, .0, .0, .0, .0, 2.0,508,254.0 +5.24,5,a-sust-i4,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 1.0, .0, .0, .0, .0, .0, 1.0,345,345.0 +6.281818181818182,5,a-sust-i4,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 4.4, .0, .0, .0, .0, .0, 4.4,945,214.77272727272725 +6.508,5,a-sust-i4,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 1.2, 2.8, .0, .0, .0, 4.0,746,186.5 +7.706666666666666,5,a-sust-i4,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, .0, .0, .1, .2, .0, 0.3,11,36.66666666666667 +6.336,5,a-sust-i4,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 4.0, .0, .0, .0, .0, 4.0,832,208.0 +7.126153846153846,5,a-sust-i4,2023-24,Brimfield - Brimfield Elementary,00430005, 1.5, .8, .3, .0, .0, .0, 2.6,284,109.23076923076923 +-Infinity,1,a-sust-i4,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, .0, .0, .0, .0, .0, 0.0,592,Infinity +-Infinity,1,a-sust-i4,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, .0, .0, .0, .0, .0, 0.0,1330,Infinity +6.0304761904761905,5,a-sust-i4,2023-24,Brockton - Ashfield Middle School,00440421, 0.0, .0, 1.9, .0, .0, .2, 2.1,517,246.19047619047618 +-Infinity,1,a-sust-i4,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, .0, .0, .0, .0, .0, 0.0,265,Infinity +5.042474226804123,5,a-sust-i4,2023-24,Brockton - Brockton High,00440505, 0.0, .0, .0, 5.1, .0, 4.6, 9.7,3586,369.69072164948454 +5.456,5,a-sust-i4,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, .1, .1, .0, .0, .3, 0.5,159,318.0 +5.745,5,a-sust-i4,2023-24,Brockton - Brookfield,00440010, 0.7, .7, .0, .0, .0, .3, 1.6,451,281.875 +5.718095238095239,5,a-sust-i4,2023-24,Brockton - Downey,00440110, 1.1, .9, .0, .0, .0, .1, 2.1,599,285.23809523809524 +5.895172413793103,5,a-sust-i4,2023-24,Brockton - Dr W Arnone Community School,00440001, 1.3, 1.4, .0, .0, .0, .2, 2.9,763,263.1034482758621 +6.429090909090909,5,a-sust-i4,2023-24,Brockton - East Middle School,00440405, 0.0, .0, 1.8, .0, .0, .4, 2.2,432,196.36363636363635 +4.9792,4.98,a-sust-i4,2023-24,Brockton - Edgar B Davis,00440023, 1.2, .6, .5, .0, .0, .2, 2.5,944,377.6 +3.653333333333333,3.65,a-sust-i4,2023-24,Brockton - Edison Day Academy,00440535, 0.0, .0, .0, .1, .0, .2, 0.3,163,543.3333333333334 +-7.84,1,a-sust-i4,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, .0, .0, .0, .0, .1, 0.1,198,1980.0 +5.341538461538461,5,a-sust-i4,2023-24,Brockton - Gilmore Elementary School,00440055, 0.5, .5, .0, .0, .0, .3, 1.3,432,332.3076923076923 +5.578181818181818,5,a-sust-i4,2023-24,Brockton - Hancock,00440045, 1.0, 1.1, .0, .0, .0, .2, 2.2,666,302.7272727272727 +7.588571428571428,5,a-sust-i4,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0.0, .0, .2, .0, .0, .5, 0.7,36,51.42857142857143 +6.170909090909091,5,a-sust-i4,2023-24,Brockton - John F Kennedy,00440017, 1.1, .8, .0, .0, .0, .3, 2.2,503,228.63636363636363 +5.84516129032258,5,a-sust-i4,2023-24,Brockton - Louis F Angelo Elementary,00440065, 1.3, 1.4, .0, .0, .0, .4, 3.1,835,269.35483870967744 +5.777142857142857,5,a-sust-i4,2023-24,Brockton - Manthala George Jr. School,00440003, 1.3, 1.1, .0, .0, .0, .4, 2.8,778,277.8571428571429 +5.772307692307693,5,a-sust-i4,2023-24,Brockton - Mary E. Baker School,00440002, 1.0, 1.1, .0, .0, .0, .5, 2.6,724,278.46153846153845 +6.523636363636364,5,a-sust-i4,2023-24,Brockton - North Middle School,00440410, 0.0, .0, 1.6, .0, .0, .6, 2.2,406,184.54545454545453 +5.837333333333334,5,a-sust-i4,2023-24,Brockton - Oscar F Raymond,00440078, 1.6, 1.2, .0, .0, .0, .2, 3.0,811,270.3333333333333 +6.06,5,a-sust-i4,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, .0, .0, .4, .0, .0, 0.4,97,242.5 +5.712727272727273,5,a-sust-i4,2023-24,Brockton - Plouffe Middle School,00440422, 0.0, .0, 1.9, .0, .0, .3, 2.2,629,285.9090909090909 +6.128,5,a-sust-i4,2023-24,Brockton - South Middle School,00440415, 0.0, .0, 1.7, .0, .0, .3, 2.0,468,234.0 +6.36,5,a-sust-i4,2023-24,Brockton - West Middle School,00440420, 0.0, .0, 1.8, .0, .0, .6, 2.4,492,205.0 +6.540165289256198,5,a-sust-i4,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 3.6, 2.8, 2.6, .0, 3.1, .0, 12.1,2208,182.4793388429752 +7.194666666666666,5,a-sust-i4,2023-24,Brookfield - Brookfield Elementary,00450005, 0.7, 1.9, .4, .0, .0, .0, 3.0,302,100.66666666666667 +-Infinity,1,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, .0, .0, .0, .0, .0, 0.0,46,Infinity +-Infinity,1,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, .0, .0, .0, .0, .0, 0.0,33,Infinity +-Infinity,1,a-sust-i4,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, .0, .0, .0, .0, .0, 0.0,42,Infinity +6.447857142857143,5,a-sust-i4,2023-24,Brookline - Brookline High,00460505, 0.0, .0, .0, 5.7, 5.4, .0, 11.2,2173,194.01785714285717 +6.692,5,a-sust-i4,2023-24,Brookline - Edith C Baker,00460005, 1.4, 1.8, .8, .0, .0, .1, 4.0,654,163.5 +6.549787234042553,5,a-sust-i4,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 1.6, 2.0, 1.1, .0, .0, .0, 4.7,852,181.27659574468083 +6.714074074074074,5,a-sust-i4,2023-24,Brookline - Heath,00460025, 0.7, 1.3, .6, .0, .0, .0, 2.7,434,160.74074074074073 +6.712,5,a-sust-i4,2023-24,Brookline - John D Runkle,00460045, 1.0, 1.4, .6, .0, .0, .0, 3.0,483,161.0 +6.177777777777777,5,a-sust-i4,2023-24,Brookline - Lawrence,00460030, 0.9, 1.2, .6, .0, .0, .0, 2.7,615,227.77777777777777 +6.64,5,a-sust-i4,2023-24,Brookline - Michael Driscoll,00460020, 0.9, 1.6, .5, .0, .0, .0, 3.0,510,170.0 +6.785454545454546,5,a-sust-i4,2023-24,Brookline - Pierce,00460040, 1.6, 1.9, .9, .0, .0, .0, 4.4,668,151.8181818181818 +-Infinity,1,a-sust-i4,2023-24,Brookline - The Lynch Center,00460060, 0.0, .0, .0, .0, .0, .0, 0.0,55,Infinity +6.645714285714285,5,a-sust-i4,2023-24,Brookline - William H Lincoln,00460035, 1.0, 1.4, .4, .0, .0, .0, 2.8,474,169.2857142857143 +6.613793103448275,5,a-sust-i4,2023-24,Burlington - Burlington High,00480505, 0.0, .0, .0, 3.6, .0, 2.2, 5.8,1005,173.27586206896552 +6.988888888888889,5,a-sust-i4,2023-24,Burlington - Fox Hill,00480007, 1.3, 1.8, .0, .0, .6, .0, 3.6,455,126.38888888888889 +6.949189189189189,5,a-sust-i4,2023-24,Burlington - Francis Wyman Elementary,00480035, 0.6, .9, .0, .0, 1.3, 1.0, 3.7,486,131.35135135135135 +6.811034482758621,5,a-sust-i4,2023-24,Burlington - Marshall Simonds Middle,00480303, 0.0, .0, 4.0, .0, .0, 1.8, 5.8,862,148.6206896551724 +7.148888888888889,5,a-sust-i4,2023-24,Burlington - Memorial,00480015, 0.8, 1.2, .0, .0, .6, 1.0, 3.6,383,106.38888888888889 +7.010370370370371,5,a-sust-i4,2023-24,Burlington - Pine Glen Elementary,00480020, 1.0, 1.2, .0, .0, .6, .0, 2.7,334,123.7037037037037 +7.303333333333333,5,a-sust-i4,2023-24,Cambridge - Amigos School,00490006, 0.9, .6, 3.2, .0, .0, .0, 4.8,418,87.08333333333334 +7.125303867403315,5,a-sust-i4,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, .0, .0, 16.0, 2.0, .1, 18.1,1979,109.33701657458563 +7.503673469387755,5,a-sust-i4,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, .0, 4.9, .0, .0, .0, 4.9,304,62.04081632653061 +7.155555555555556,5,a-sust-i4,2023-24,Cambridge - Cambridgeport,00490007, 1.2, 1.5, .0, .0, .0, .0, 2.7,285,105.55555555555554 +7.1968000000000005,5,a-sust-i4,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 1.4, 1.1, .0, .0, .0, .0, 2.5,251,100.4 +6.24,5,a-sust-i4,2023-24,Cambridge - Graham and Parks,00490080, 1.0, .8, .0, .0, .0, .0, 1.8,396,220.0 +7.389333333333334,5,a-sust-i4,2023-24,Cambridge - Haggerty,00490020, 1.4, 1.6, .0, .0, .0, .0, 3.0,229,76.33333333333333 +7.295135135135135,5,a-sust-i4,2023-24,Cambridge - John M Tobin,00490065, 1.8, 1.6, .0, .0, .0, .3, 3.7,326,88.1081081081081 +7.12,5,a-sust-i4,2023-24,Cambridge - Kennedy-Longfellow,00490040, 1.2, .8, .0, .0, .0, .0, 2.0,220,110.0 +6.452,5,a-sust-i4,2023-24,Cambridge - King Open,00490035, 1.4, .6, .0, .0, .0, .0, 2.0,387,193.5 +7.12,5,a-sust-i4,2023-24,Cambridge - Maria L. Baldwin,00490005, 1.6, 1.6, .0, .0, .0, .0, 3.2,352,110.0 +6.688,5,a-sust-i4,2023-24,Cambridge - Martin Luther King Jr.,00490030, 1.5, .5, .0, .0, .0, .0, 2.0,328,164.0 +7.347027027027027,5,a-sust-i4,2023-24,Cambridge - Morse,00490045, 1.6, 2.2, .0, .0, .0, .0, 3.7,302,81.62162162162161 +5.432,5,a-sust-i4,2023-24,Cambridge - Peabody,00490050, 0.6, .4, .0, .0, .0, .0, 1.0,321,321.0 +7.509090909090909,5,a-sust-i4,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, .0, 4.4, .0, .0, .0, 4.4,270,61.36363636363636 +7.474545454545454,5,a-sust-i4,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, .0, 4.4, .0, .0, .0, 4.4,289,65.68181818181817 +7.713333333333334,5,a-sust-i4,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.0, .0, 7.2, .0, .0, .0, 7.2,258,35.833333333333336 +6.950985915492958,5,a-sust-i4,2023-24,Canton - Canton High,00500505, 0.0, .0, .0, 7.1, .0, .0, 7.1,931,131.1267605633803 +6.41,5,a-sust-i4,2023-24,Canton - Dean S Luce,00500020, 0.5, 1.7, .0, .0, .0, .3, 2.4,477,198.75 +6.0757894736842095,5,a-sust-i4,2023-24,Canton - John F Kennedy,00500017, 0.5, 1.2, .0, .0, .0, .2, 1.9,457,240.5263157894737 +6.521379310344828,5,a-sust-i4,2023-24,Canton - Lt Peter M Hansen,00500012, 0.7, 1.8, .0, .0, .0, .4, 2.9,536,184.82758620689657 +-Infinity,1,a-sust-i4,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, .0, .0, .0, .0, .0, 0.0,134,Infinity +7.0725,5,a-sust-i4,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, .0, 6.4, .0, .0, .0, 6.4,742,115.9375 +6.455384615384615,5,a-sust-i4,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, .0, .0, .0, .0, 1.3, 1.3,251,193.07692307692307 +2.696,2.7,a-sust-i4,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, .0, .0, .7, .3, .0, 1.0,663,663.0 +6.986666666666666,5,a-sust-i4,2023-24,Carlisle - Carlisle School,00510025, 1.5, 1.6, 1.5, .0, .2, .0, 4.8,608,126.66666666666667 +4.9,4.9,a-sust-i4,2023-24,Carver - Carver Elementary School,00520015, 1.0, .9, .0, .0, .0, .0, 2.0,775,387.5 +6.458378378378378,5,a-sust-i4,2023-24,Carver - Carver Middle/High School,00520405, 0.0, .0, 1.7, .8, .0, 1.2, 3.7,713,192.70270270270268 +6.96,5,a-sust-i4,2023-24,Central Berkshire - Becket Washington School,06350005, 0.4, .3, .0, .0, .0, .0, 0.7,91,130.0 +5.735,5,a-sust-i4,2023-24,Central Berkshire - Craneville,06350025, 0.9, .8, .0, .0, .0, .0, 1.6,453,283.125 +5.977142857142857,5,a-sust-i4,2023-24,Central Berkshire - Kittredge,06350035, 0.4, .4, .0, .0, .0, .0, 0.7,177,252.85714285714286 +6.698181818181818,5,a-sust-i4,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, .0, 2.2, .0, .0, .0, 2.2,358,162.72727272727272 +6.571851851851852,5,a-sust-i4,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, .0, .0, .5, 1.4, .8, 2.7,482,178.5185185185185 +5.88,5,a-sust-i4,2023-24,Chelmsford - Byam School,00560030, 1.2, .8, .0, .0, .0, .0, 2.0,530,265.0 +6.136,5,a-sust-i4,2023-24,Chelmsford - Center Elementary School,00560005, 1.2, .8, .0, .0, .0, .0, 2.0,466,233.0 +6.092,5,a-sust-i4,2023-24,Chelmsford - Charles D Harrington,00560025, 1.1, .9, .0, .0, .0, .0, 2.0,477,238.5 +6.116,5,a-sust-i4,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, .0, .1, 5.9, .0, .0, 6.0,1413,235.5 +7.00375,5,a-sust-i4,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.0, 3.2, 3.1, .0, .0, .1, 6.4,797,124.53125 +-Infinity,1,a-sust-i4,2023-24,Chelmsford - Community Education Center,00560001, 0.0, .0, .0, .0, .0, .0, 0.0,200,Infinity +6.436,5,a-sust-i4,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.0, .0, 4.0, .0, .0, .0, 4.0,782,195.5 +6.14,5,a-sust-i4,2023-24,Chelmsford - South Row,00560015, 1.1, .9, .0, .0, .0, .0, 2.0,465,232.5 +6.32,5,a-sust-i4,2023-24,Chelsea - Chelsea High,00570505, 0.0, .0, .0, 4.0, .0, 4.0, 8.0,1680,210.0 +-Infinity,1,a-sust-i4,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, .0, .0, .0, .0, .0, 0.0,125,Infinity +-Infinity,1,a-sust-i4,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, .0, .0, .0, .0, .0, 0.0,60,Infinity +6.644,5,a-sust-i4,2023-24,Chelsea - Clark Avenue School,00570050, 0.0, .8, 2.3, .0, .0, 1.0, 4.0,678,169.5 +6.188,5,a-sust-i4,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.5, .5, .0, .0, .0, 1.0, 2.0,453,226.5 +6.228,5,a-sust-i4,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, .5, 1.5, .0, .0, .0, 2.0,443,221.5 +6.012,5,a-sust-i4,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.9, 1.1, .0, .0, .0, .0, 2.0,497,248.5 +6.056,5,a-sust-i4,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.9, 1.0, .2, .0, .0, .0, 2.0,486,243.0 +6.06,5,a-sust-i4,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, .5, 1.5, .0, .0, .0, 2.0,485,242.5 +5.850666666666666,5,a-sust-i4,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 1.0, .0, .0, .0, .0, 2.0, 3.0,806,268.6666666666667 +6.26,5,a-sust-i4,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 1.0, 1.0, .0, .0, .0, .1, 2.0,435,217.5 +7.144615384615385,5,a-sust-i4,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.8, .4, .1, .0, .0, .0, 1.3,139,106.92307692307692 +6.391111111111111,5,a-sust-i4,2023-24,Chicopee - Barry,00610003, 0.7, 1.1, .0, .0, .0, .0, 1.8,362,201.11111111111111 +6.168,5,a-sust-i4,2023-24,Chicopee - Belcher,00610010, 1.0, .0, .0, .0, .0, .0, 1.0,229,229.0 +4.732,4.73,a-sust-i4,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, .0, 1.0, .0, 1.0, .0, 2.0,817,408.5 +4.656,4.66,a-sust-i4,2023-24,Chicopee - Bowe,00610015, 0.5, .5, .0, .0, .0, .0, 1.0,418,418.0 +6.06,5,a-sust-i4,2023-24,Chicopee - Bowie,00610020, 0.5, .7, .0, .0, .0, .0, 1.2,291,242.5 +7.448,5,a-sust-i4,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, .0, .0, 1.0, .0, .0, 1.0,69,69.0 +6.384,5,a-sust-i4,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, .0, .0, 1.6, 3.9, .5, 6.0,1212,202.0 +6.736271186440678,5,a-sust-i4,2023-24,Chicopee - Chicopee High,00610505, 0.0, .0, .0, .4, 4.5, 1.0, 5.9,932,157.96610169491524 +5.288,5,a-sust-i4,2023-24,Chicopee - Dupont Middle,00610310, 0.0, .0, 2.0, .0, .0, .0, 2.0,678,339.0 +5.08,5,a-sust-i4,2023-24,Chicopee - Fairview Elementary,00610050, 0.7, .3, .0, .0, .0, .0, 1.0,365,365.0 +4.872,4.87,a-sust-i4,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.3, .7, .0, .0, .0, .0, 1.0,391,391.0 +6.356363636363636,5,a-sust-i4,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.4, .7, .0, .0, .0, .0, 1.1,226,205.45454545454544 +5.248,5,a-sust-i4,2023-24,Chicopee - Litwin,00610022, 0.2, .7, .0, .0, .0, .0, 1.0,344,344.0 +6.446666666666666,5,a-sust-i4,2023-24,Chicopee - Streiber Memorial School,00610065, 0.6, .4, .0, .0, .2, .0, 1.2,233,194.16666666666669 +6.08,5,a-sust-i4,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 1.0, .0, .0, .0, .0, .0, 1.0,240,240.0 +6.848,5,a-sust-i4,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, .0, 1.0, .0, .0, 1.0, 2.0,288,144.0 +6.01,5,a-sust-i4,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, .0, .0, .6, .2, .0, 0.8,199,248.75 +7.3344,5,a-sust-i4,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.8, .8, 1.0, .0, .0, .0, 2.5,208,83.2 +4.652,4.65,a-sust-i4,2023-24,Clinton - Clinton Elementary,00640050, 0.0, .0, .0, .0, 2.0, .0, 2.0,837,418.5 +7.138113207547169,5,a-sust-i4,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 1.3, 3.7, .0, .4, .0, 5.3,571,107.73584905660378 +6.0633333333333335,5,a-sust-i4,2023-24,Clinton - Clinton Senior High,00640505, 0.0, .0, .0, 2.4, .0, .0, 2.4,581,242.08333333333334 +7.253333333333334,5,a-sust-i4,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, .0, .0, .0, 3.6, .0, 3.6,336,93.33333333333333 +7.145263157894736,5,a-sust-i4,2023-24,Cohasset - Cohasset High School,00650505, 0.0, .0, .0, 3.8, .0, .0, 3.8,406,106.8421052631579 +7.226666666666666,5,a-sust-i4,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, .0, 3.0, .0, .0, .0, 3.0,290,96.66666666666667 +6.93,5,a-sust-i4,2023-24,Cohasset - Deer Hill,00650005, 0.0, 2.4, .0, .0, .0, .0, 2.4,321,133.75 +6.055,5,a-sust-i4,2023-24,Cohasset - Joseph Osgood,00650010, 1.6, .0, .0, .0, .0, .0, 1.6,389,243.125 +6.100392156862744,5,a-sust-i4,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 1.3, 1.1, 1.7, .4, .6, .0, 5.1,1211,237.45098039215688 +6.608,5,a-sust-i4,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, .0, .0, .0, 1.5, .0, 1.5,261,174.0 +-1.6,1,a-sust-i4,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, .0, .0, .0, 1.0, .0, 1.0,1200,1200.0 +6.676923076923077,5,a-sust-i4,2023-24,Concord - Alcott,00670005, 1.0, 1.4, .0, .0, .0, .2, 2.6,430,165.3846153846154 +7.1825,5,a-sust-i4,2023-24,Concord - Concord Middle,00670305, 0.0, .0, 6.4, .0, .0, .0, 6.4,654,102.1875 +6.658461538461539,5,a-sust-i4,2023-24,Concord - Thoreau,00670020, 1.0, 1.6, .0, .0, .0, .0, 2.6,436,167.69230769230768 +6.612307692307692,5,a-sust-i4,2023-24,Concord - Willard,00670030, 1.0, 1.6, .0, .0, .0, .0, 2.6,451,173.46153846153845 +6.36,5,a-sust-i4,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, .0, .0, 6.0, .0, .0, 6.0,1230,205.0 +6.731428571428571,5,a-sust-i4,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 1.4, .5, .3, .0, .0, .6, 2.8,444,158.57142857142858 +7.28,5,a-sust-i4,2023-24,Conway - Conway Grammar,00680005, 0.3, 1.2, .2, .0, .0, .0, 1.6,144,90.0 +6.6121739130434785,5,a-sust-i4,2023-24,Danvers - Danvers High,00710505, 0.0, .0, .0, .6, 2.2, 1.8, 4.6,798,173.47826086956522 +7.0,5,a-sust-i4,2023-24,Danvers - Great Oak,00710015, 0.9, 1.5, .0, .0, .0, .0, 2.4,300,125.0 +6.733333333333333,5,a-sust-i4,2023-24,Danvers - Highlands,00710010, 1.0, 1.4, .0, .0, .0, .0, 2.4,380,158.33333333333334 +6.621395348837209,5,a-sust-i4,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, .0, 4.3, .0, .0, .0, 4.3,741,172.32558139534885 +6.77,5,a-sust-i4,2023-24,Danvers - Ivan G Smith,00710032, 1.0, 1.4, .0, .0, .0, .0, 2.4,369,153.75 +6.946666666666666,5,a-sust-i4,2023-24,Danvers - Riverside,00710030, 1.1, 1.2, .0, .0, .1, .0, 2.4,316,131.66666666666669 +6.843333333333333,5,a-sust-i4,2023-24,Danvers - Willis E Thorpe,00710045, 1.1, 1.2, .0, .0, .1, .0, 2.4,347,144.58333333333334 +6.622222222222223,5,a-sust-i4,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.9, .0, .0, .0, .0, .0, 0.9,155,172.22222222222223 +6.7949206349206355,5,a-sust-i4,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, .0, .0, 6.3, .0, .0, 6.3,949,150.63492063492063 +7.113239436619718,5,a-sust-i4,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, .0, 7.1, .0, .0, .0, 7.1,787,110.84507042253522 +5.433846153846154,5,a-sust-i4,2023-24,Dartmouth - George H Potter,00720030, 0.6, .6, .0, .0, .0, .0, 1.3,417,320.7692307692308 +5.152,5,a-sust-i4,2023-24,Dartmouth - James M. Quinn School,00720040, 1.1, .9, .0, .0, .0, .0, 2.0,712,356.0 +5.352,5,a-sust-i4,2023-24,Dartmouth - Joseph Demello,00720015, 0.4, .6, .0, .0, .0, .0, 1.0,331,331.0 +6.39,5,a-sust-i4,2023-24,Dedham - Avery,00730010, 0.6, 1.0, .0, .0, .0, .0, 1.6,322,201.25 +6.1725,5,a-sust-i4,2023-24,Dedham - Dedham High,00730505, 0.0, .0, .0, .5, 2.7, .0, 3.2,731,228.4375 +6.965714285714286,5,a-sust-i4,2023-24,Dedham - Dedham Middle School,00730305, 0.0, .0, 4.2, .0, .0, .0, 4.2,543,129.28571428571428 +6.381176470588235,5,a-sust-i4,2023-24,Dedham - Early Childhood Center,00730005, 1.7, .0, .0, .0, .0, .0, 1.7,344,202.35294117647058 +6.541176470588235,5,a-sust-i4,2023-24,Dedham - Greenlodge,00730025, 0.8, 1.0, .0, .0, .0, .0, 1.7,310,182.35294117647058 +6.634666666666667,5,a-sust-i4,2023-24,Dedham - Oakdale,00730030, 0.7, .9, .0, .0, .0, .0, 1.5,256,170.66666666666666 +5.794285714285714,5,a-sust-i4,2023-24,Dedham - Riverdale,00730045, 0.3, .4, .0, .0, .0, .0, 0.7,193,275.7142857142857 +7.136551724137931,5,a-sust-i4,2023-24,Deerfield - Deerfield Elementary,00740015, 0.8, 1.6, .5, .0, .0, .0, 2.9,313,107.93103448275862 +6.98,5,a-sust-i4,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 3.9, .0, .0, .1, .0, 4.0,510,127.5 +6.381818181818182,5,a-sust-i4,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, .0, 2.2, .0, .0, .0, 2.2,445,202.27272727272725 +7.215319148936171,5,a-sust-i4,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, .0, 1.8, .0, 7.6, .0, 9.4,922,98.08510638297872 +6.572,5,a-sust-i4,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 1.4, .4, .0, .0, .3, .0, 2.0,357,178.5 +6.9,5,a-sust-i4,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 1.6, .4, .0, .0, .0, .0, 2.0,275,137.5 +6.272,5,a-sust-i4,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 1.6, .5, .0, .0, .0, .0, 2.0,432,216.0 +6.148,5,a-sust-i4,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 1.3, .8, .0, .0, .0, .0, 2.0,463,231.5 +6.8256000000000006,5,a-sust-i4,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, .7, 1.8, .0, .0, .0, 2.5,367,146.8 +6.938775510204082,5,a-sust-i4,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, .0, .0, 3.9, .0, 1.0, 4.9,650,132.6530612244898 +6.4704,5,a-sust-i4,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, .6, 1.9, .0, .0, .0, 2.5,478,191.2 +5.850909090909091,5,a-sust-i4,2023-24,Dighton-Rehoboth - Palmer River,06500010, 1.2, .9, .0, .0, .0, .0, 2.2,591,268.6363636363636 +6.235,5,a-sust-i4,2023-24,Douglas - Douglas Elementary School,00770015, 0.4, 1.2, .0, .0, .0, .0, 1.6,353,220.625 +6.788,5,a-sust-i4,2023-24,Douglas - Douglas High School,00770505, 0.0, .0, .0, 2.0, .0, .0, 2.0,303,151.5 +6.348571428571429,5,a-sust-i4,2023-24,Douglas - Douglas Middle School,00770305, 0.0, .0, 1.4, .0, .0, .0, 1.4,289,206.42857142857144 +3.7,3.7,a-sust-i4,2023-24,Douglas - Douglas Primary School,00770005, 0.4, .0, .0, .0, .0, .0, 0.4,215,537.5 +6.5274074074074075,5,a-sust-i4,2023-24,Dover - Chickering,00780005, 1.1, 1.6, .0, .0, .0, .0, 2.7,497,184.07407407407405 +6.148571428571429,5,a-sust-i4,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, .0, .0, 1.8, .0, 1.0, 2.8,648,231.42857142857144 +6.781333333333333,5,a-sust-i4,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, .0, 3.0, .0, .0, .0, 3.0,457,152.33333333333334 +6.4,5,a-sust-i4,2023-24,Dracut - Brookside Elementary,00790035, 1.0, 1.3, .0, .0, .0, .2, 2.5,500,200.0 +5.4752,5,a-sust-i4,2023-24,Dracut - Dracut Senior High,00790505, 0.0, .0, .0, 1.5, .0, 1.0, 2.5,789,315.6 +6.2816,5,a-sust-i4,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, .2, .0, .0, .0, 2.3, 2.5,537,214.8 +6.685714285714285,5,a-sust-i4,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, .0, .0, .0, .0, 1.4, 1.4,230,164.2857142857143 +6.2215384615384615,5,a-sust-i4,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.0, .2, .0, .0, .0, 2.4, 2.6,578,222.3076923076923 +5.7275,5,a-sust-i4,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, .0, 1.9, .0, .0, 1.3, 3.2,909,284.0625 +-Infinity,1,a-sust-i4,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, .0, .0, .0, .0, .0, 0.0,288,Infinity +6.1257142857142854,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.4, .0, .0, .0, .0, .0, 1.4,328,234.2857142857143 +6.794,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 1.0, 3.0, .0, .0, .0, 4.0,603,150.75 +5.78,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.4, .8, .0, .0, .0, .0, 1.2,333,277.5 +6.477241379310345,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 1.0, 1.9, .0, .0, .0, 2.9,552,190.3448275862069 +5.76,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.5, 1.1, .0, .0, .0, .0, 1.6,448,280.0 +5.69,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.8, .0, .0, .0, .0, .0, 0.8,231,288.75 +6.126,5,a-sust-i4,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, .0, .0, .5, 3.5, .0, 4.0,937,234.25 +6.344,5,a-sust-i4,2023-24,Duxbury - Alden School,00820004, 0.0, 3.0, .0, .0, .0, .0, 3.0,621,207.0 +5.404,5,a-sust-i4,2023-24,Duxbury - Chandler Elementary,00820006, 2.0, .0, .0, .0, .0, .0, 2.0,649,324.5 +6.500869565217391,5,a-sust-i4,2023-24,Duxbury - Duxbury High,00820505, 0.0, .0, .0, 4.6, .0, .0, 4.6,862,187.3913043478261 +6.534117647058824,5,a-sust-i4,2023-24,Duxbury - Duxbury Middle,00820305, 0.0, .0, 3.4, .0, .0, .0, 3.4,623,183.23529411764707 +5.94,5,a-sust-i4,2023-24,East Bridgewater - Central,00830005, 2.0, .0, .0, .0, .0, .0, 2.0,515,257.5 +6.84983606557377,5,a-sust-i4,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, .0, 2.0, .8, 3.4, .0, 6.1,877,143.7704918032787 +6.357333333333333,5,a-sust-i4,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 2.2, .8, .0, .0, .0, 3.0,616,205.33333333333334 +6.180740740740741,5,a-sust-i4,2023-24,East Longmeadow - Birchland Park,00870305, 0.0, .0, 2.7, .0, .0, .0, 2.7,614,227.4074074074074 +5.797142857142857,5,a-sust-i4,2023-24,East Longmeadow - East Longmeadow High,00870505, 0.0, .0, .0, .5, 2.3, .0, 2.8,771,275.3571428571429 +5.912727272727273,5,a-sust-i4,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 1.1, .0, .0, .0, .0, 1.1,287,260.9090909090909 +5.752,5,a-sust-i4,2023-24,East Longmeadow - Meadow Brook,00870013, 2.0, .0, .0, .0, .0, .0, 2.0,562,281.0 +6.635,5,a-sust-i4,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 1.4, .0, .0, .2, .0, 1.6,273,170.625 +6.994285714285714,5,a-sust-i4,2023-24,Eastham - Eastham Elementary,00850005, 0.6, .8, .0, .0, .0, .0, 1.4,176,125.71428571428572 +6.2447058823529416,5,a-sust-i4,2023-24,Easthampton - Easthampton High,00860505, 0.0, .0, .0, .3, 1.0, .3, 1.7,373,219.41176470588235 +6.3616,5,a-sust-i4,2023-24,Easthampton - Mountain View School,00860415, 1.1, .9, 2.0, .0, 1.0, .0, 5.0,1024,204.8 +5.685925925925926,5,a-sust-i4,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 2.5, .0, .0, .0, .0, .2, 2.7,781,289.25925925925924 +6.384,5,a-sust-i4,2023-24,Easton - Easton Middle School,00880405, 0.0, .0, 3.9, .0, .0, .1, 4.0,808,202.0 +6.043636363636364,5,a-sust-i4,2023-24,Easton - Oliver Ames High,00880505, 0.0, .0, .0, 1.2, .0, 3.2, 4.4,1076,244.54545454545453 +6.16,5,a-sust-i4,2023-24,Easton - Richardson Olmsted School,00880025, 0.0, 3.2, .0, .0, .0, .0, 3.2,736,230.0 +7.0038709677419355,5,a-sust-i4,2023-24,Edgartown - Edgartown Elementary,00890005, 0.7, .6, .6, .0, 1.1, .0, 3.1,386,124.51612903225806 +6.333333333333334,5,a-sust-i4,2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 0.0, .0, .0, 1.8, .0, .0, 1.8,375,208.33333333333331 +7.105454545454546,5,a-sust-i4,2023-24,Erving - Erving Elementary,00910030, 0.4, .4, .2, .0, .1, .0, 1.1,123,111.81818181818181 +-61.8,1,a-sust-i4,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, .0, .0, .0, .0, .2, 0.2,1745,8725.0 +-Infinity,1,a-sust-i4,2023-24,Everett - Adams School,00930003, 0.0, .0, .0, .0, .0, .0, 0.0,163,Infinity +7.72,5,a-sust-i4,2023-24,Everett - Devens School,00930030, 0.1, .1, .5, .0, .0, .6, 1.4,49,35.0 +6.222135922330097,5,a-sust-i4,2023-24,Everett - Everett High,00930505, 0.0, .0, .0, 8.4, .0, 1.8, 10.3,2289,222.23300970873785 +6.51404255319149,5,a-sust-i4,2023-24,Everett - George Keverian School,00930028, 0.7, 1.4, 2.5, .0, .0, .0, 4.7,873,185.74468085106383 +6.36734693877551,5,a-sust-i4,2023-24,Everett - Lafayette School,00930038, 1.3, 1.6, 2.1, .0, .0, .0, 4.9,1000,204.0816326530612 +6.672340425531915,5,a-sust-i4,2023-24,Everett - Madeline English School,00930018, 1.0, 1.3, 2.4, .0, .0, .0, 4.7,780,165.95744680851064 +6.604137931034483,5,a-sust-i4,2023-24,Everett - Parlin School,00930058, 1.4, 1.9, 2.4, .0, .0, .0, 5.8,1012,174.48275862068965 +6.826666666666667,5,a-sust-i4,2023-24,Everett - Sumner G. Whittier School,00930010, 1.0, 1.3, 1.9, .0, .0, .0, 4.2,616,146.66666666666666 +-Infinity,1,a-sust-i4,2023-24,Everett - Webster Extension,00930001, 0.0, .0, .0, .0, .0, .0, 0.0,222,Infinity +6.9088,5,a-sust-i4,2023-24,Everett - Webster School,00930015, 0.9, 1.7, .0, .0, .0, .0, 2.5,341,136.4 +6.182666666666667,5,a-sust-i4,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 1.1, 2.5, .0, 2.5, .0, 6.0,1363,227.16666666666666 +7.0208,5,a-sust-i4,2023-24,Fairhaven - East Fairhaven,00940010, 0.5, 2.0, .0, .0, .0, .0, 2.5,306,122.4 +7.249523809523809,5,a-sust-i4,2023-24,Fairhaven - Fairhaven High,00940505, 0.0, .0, .0, 6.3, .0, .0, 6.3,591,93.80952380952381 +6.819310344827586,5,a-sust-i4,2023-24,Fairhaven - Hastings Middle,00940305, 0.0, .0, 2.9, .0, .0, .0, 2.9,428,147.58620689655172 +6.6112,5,a-sust-i4,2023-24,Fairhaven - Leroy Wood,00940030, 0.7, 1.8, .0, .0, .0, .0, 2.5,434,173.6 +6.429032258064516,5,a-sust-i4,2023-24,Fall River - B M C Durfee High,00950505, 0.0, .0, .0, 10.0, .0, 2.4, 12.4,2435,196.3709677419355 +5.855384615384615,5,a-sust-i4,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 1.0, 1.0, .0, .0, .0, .6, 2.6,697,268.0769230769231 +-Infinity,1,a-sust-i4,2023-24,Fall River - Early Learning Center,00950001, 0.0, .0, .0, .0, .0, .0, 0.0,95,Infinity +-Infinity,1,a-sust-i4,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, .0, .0, .0, .0, .0, 0.0,108,Infinity +7.0190769230769225,5,a-sust-i4,2023-24,Fall River - Henry Lord Community School,00950017, 1.0, 1.0, .7, .0, 2.0, 1.8, 6.5,797,122.61538461538461 +3.104,3.1,a-sust-i4,2023-24,Fall River - James Tansey,00950140, 0.0, .0, .0, .0, .0, .5, 0.5,306,612.0 +6.761212121212121,5,a-sust-i4,2023-24,Fall River - John J Doran,00950045, 0.9, 1.1, 1.1, .0, .0, .2, 3.3,511,154.84848484848484 +6.698947368421052,5,a-sust-i4,2023-24,Fall River - Letourneau Elementary School,00950013, 0.9, 1.3, .0, .0, 1.0, .6, 3.8,618,162.63157894736844 +5.472,5,a-sust-i4,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 1.1, .9, .0, .0, .0, .0, 2.0,632,316.0 +7.058983050847458,5,a-sust-i4,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.0, .0, 5.0, .0, .0, .9, 5.9,694,117.62711864406779 +7.0151724137931035,5,a-sust-i4,2023-24,Fall River - Morton Middle,00950315, 0.0, .0, .8, .0, .0, 5.0, 5.8,714,123.10344827586208 +5.384,5,a-sust-i4,2023-24,Fall River - North End Elementary,00950005, 1.0, 1.0, .0, .0, .0, .0, 2.0,654,327.0 +7.018666666666666,5,a-sust-i4,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, .0, .2, .3, .0, 1.0, 1.5,184,122.66666666666667 +4.971428571428571,4.97,a-sust-i4,2023-24,Fall River - Samuel Watson,00950145, 0.0, .0, .0, .0, .0, .7, 0.7,265,378.5714285714286 +6.073333333333333,5,a-sust-i4,2023-24,Fall River - Spencer Borden,00950130, 1.2, .9, .0, .0, .0, .2, 2.4,578,240.83333333333334 +6.346666666666666,5,a-sust-i4,2023-24,Fall River - Stone PK-12 School,00950340, 0.0, .0, .0, .0, .0, .3, 0.3,62,206.66666666666669 +7.1088000000000005,5,a-sust-i4,2023-24,Fall River - Talbot Innovation School,00950305, 0.0, .0, 2.8, .0, .0, 2.2, 5.0,557,111.4 +5.004,5,a-sust-i4,2023-24,Fall River - William S Greene,00950065, 1.0, 1.0, .0, .0, .0, .0, 2.0,749,374.5 +6.808,5,a-sust-i4,2023-24,Falmouth - East Falmouth Elementary,00960005, 1.2, .8, .0, .0, .0, .0, 2.0,298,149.0 +6.546,5,a-sust-i4,2023-24,Falmouth - Falmouth High,00960505, 0.0, .0, .0, .2, 3.5, .3, 4.0,727,181.75 +7.104390243902438,5,a-sust-i4,2023-24,Falmouth - Lawrence,00960405, 0.0, .0, 3.0, .0, .1, 1.0, 4.1,459,111.95121951219514 +6.72,5,a-sust-i4,2023-24,Falmouth - Morse Pond School,00960305, 0.0, 1.4, 1.6, .0, .0, .0, 3.0,480,160.0 +6.496,5,a-sust-i4,2023-24,Falmouth - Mullen-Hall,00960020, 1.1, .9, .0, .0, .0, .0, 2.0,376,188.0 +6.812,5,a-sust-i4,2023-24,Falmouth - North Falmouth Elementary,00960030, 1.3, .7, .0, .0, .0, .0, 2.0,297,148.5 +6.866666666666667,5,a-sust-i4,2023-24,Falmouth - Teaticket,00960015, 1.1, .7, .0, .0, .0, .0, 1.8,255,141.66666666666666 +7.14,5,a-sust-i4,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.3, .5, .2, .0, .0, .2, 1.2,129,107.5 +6.493333333333333,5,a-sust-i4,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, .0, 3.0, .0, .0, .0, 3.0,565,188.33333333333334 +5.52,5,a-sust-i4,2023-24,Fitchburg - Crocker Elementary,00970016, 0.8, 1.2, .0, .0, .0, .0, 2.0,620,310.0 +6.741333333333333,5,a-sust-i4,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, .0, .0, 7.5, .0, .0, 7.5,1180,157.33333333333334 +1.973333333333333,1.97,a-sust-i4,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, .0, .0, .3, .0, .0, 0.3,226,753.3333333333334 +4.952,4.95,a-sust-i4,2023-24,Fitchburg - McKay Elementary School,00970340, 0.7, 1.3, .0, .0, .0, .0, 2.0,762,381.0 +6.826,5,a-sust-i4,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, .0, 4.0, .0, .0, .0, 4.0,587,146.75 +5.356,5,a-sust-i4,2023-24,Fitchburg - Reingold Elementary,00970043, 0.8, 1.2, .0, .0, .0, .0, 2.0,661,330.5 +5.908,5,a-sust-i4,2023-24,Fitchburg - South Street Early Learning Center,00970060, 2.0, .0, .0, .0, .0, .0, 2.0,523,261.5 +7.728,5,a-sust-i4,2023-24,Florida - Abbott Memorial,00980005, 0.8, .8, .8, .0, .0, .0, 2.5,85,34.0 +4.576,4.58,a-sust-i4,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, .0, .2, .3, .0, .0, 0.5,214,428.0 +5.963636363636364,5,a-sust-i4,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.7, .4, .0, .0, .0, .0, 1.1,280,254.54545454545453 +6.7888,5,a-sust-i4,2023-24,Foxborough - Foxborough High,00990505, 0.0, .0, .0, .7, 4.3, .0, 5.0,757,151.4 +6.989830508474576,5,a-sust-i4,2023-24,Foxborough - John J Ahern,00990405, 0.0, 1.2, 4.7, .0, .0, .0, 5.9,745,126.27118644067797 +5.352,5,a-sust-i4,2023-24,Foxborough - Mabelle M Burrell,00990015, 0.6, .4, .0, .0, .0, .0, 1.0,331,331.0 +6.016,5,a-sust-i4,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.9, .7, .0, .0, .0, .0, 1.5,372,248.0 +5.938983050847458,5,a-sust-i4,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 1.4, 1.5, 1.5, .4, 1.2, .0, 5.9,1520,257.62711864406776 +6.88,5,a-sust-i4,2023-24,Framingham - Barbieri Elementary,01000035, 2.0, 2.7, .0, .0, .0, .0, 4.7,658,140.0 +6.727741935483871,5,a-sust-i4,2023-24,Framingham - Brophy,01000006, 1.7, 1.4, .0, .0, .0, .0, 3.1,493,159.03225806451613 +6.950697674418605,5,a-sust-i4,2023-24,Framingham - Cameron Middle School,01000302, 0.0, .0, 1.9, .0, .0, 2.4, 4.3,564,131.1627906976744 +6.837333333333333,5,a-sust-i4,2023-24,Framingham - Charlotte A Dunning,01000007, 1.5, 1.5, .0, .0, .0, .0, 3.0,436,145.33333333333334 +5.810752688172043,5,a-sust-i4,2023-24,Framingham - Framingham High School,01000515, 0.0, .0, .0, 9.3, .0, .0, 9.3,2545,273.6559139784946 +6.950697674418605,5,a-sust-i4,2023-24,Framingham - Fuller Middle,01000305, 0.0, .0, 4.0, .0, .0, .3, 4.3,564,131.1627906976744 +6.354782608695652,5,a-sust-i4,2023-24,Framingham - Harmony Grove Elementary,01000055, 1.1, 1.2, .0, .0, .0, .0, 2.3,473,205.6521739130435 +5.832,5,a-sust-i4,2023-24,Framingham - Hemenway,01000015, 0.9, 1.1, .0, .0, .0, .0, 2.0,542,271.0 +-Infinity,1,a-sust-i4,2023-24,Framingham - Juniper Hill School,01000001, 0.0, .0, .0, .0, .0, .0, 0.0,277,Infinity +6.6912,5,a-sust-i4,2023-24,Framingham - King Elementary School,01000005, 1.2, 1.4, .0, .0, .0, .0, 2.5,409,163.6 +6.9107692307692306,5,a-sust-i4,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.9, 1.7, .0, .0, .0, .0, 2.6,354,136.15384615384616 +6.778181818181818,5,a-sust-i4,2023-24,Framingham - Miriam F McCarthy School,01000050, 1.5, 1.9, .0, .0, .0, .0, 3.3,504,152.72727272727275 +6.573333333333333,5,a-sust-i4,2023-24,Framingham - Potter Road,01000039, 1.5, 1.5, .0, .0, .0, .0, 3.0,535,178.33333333333334 +6.613333333333333,5,a-sust-i4,2023-24,Framingham - Walsh Middle,01000310, 0.0, .0, 4.1, .0, .0, .4, 4.5,780,173.33333333333334 +2.08,2.08,a-sust-i4,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, .0, .0, .5, .0, .0, 0.5,370,740.0 +7.045925925925926,5,a-sust-i4,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, .0, 1.2, .0, .7, .8, 2.7,322,119.25925925925925 +-Infinity,1,a-sust-i4,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, .0, .0, .0, .0, .0, 0.0,152,Infinity +6.232112676056339,5,a-sust-i4,2023-24,Franklin - Franklin High,01010505, 0.0, .0, .0, 6.8, .0, .3, 7.1,1569,220.98591549295776 +5.21,5,a-sust-i4,2023-24,Franklin - Helen Keller Elementary,01010012, 0.6, .8, .0, .0, .0, .3, 1.6,558,348.75 +6.8533333333333335,5,a-sust-i4,2023-24,Franklin - Horace Mann,01010405, 0.0, .0, 1.5, .0, .7, .5, 2.7,387,143.33333333333331 +5.592727272727273,5,a-sust-i4,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.3, .6, .0, .0, .0, .2, 1.1,331,300.9090909090909 +5.578181818181818,5,a-sust-i4,2023-24,Franklin - Jefferson Elementary,01010010, 0.4, .6, .0, .0, .0, .1, 1.1,333,302.7272727272727 +5.192727272727273,5,a-sust-i4,2023-24,Franklin - Oak Street Elementary,01010030, 0.2, .5, .0, .0, .0, .4, 1.1,386,350.9090909090909 +5.413333333333334,5,a-sust-i4,2023-24,Franklin - Parmenter,01010032, 0.3, .5, .0, .0, .0, .1, 0.9,291,323.3333333333333 +6.96,5,a-sust-i4,2023-24,Franklin - Remington Middle,01010310, 0.0, .0, 1.3, .0, .7, .7, 2.7,351,130.0 +-Infinity,1,a-sust-i4,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, .0, .0, .0, .0, .0, 0.0,621,Infinity +6.758181818181818,5,a-sust-i4,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, .0, .0, 2.2, .0, 2.2, 4.4,683,155.22727272727272 +6.124,5,a-sust-i4,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 1.4, .6, .0, .0, .0, .0, 2.0,469,234.5 +6.484,5,a-sust-i4,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 1.5, .5, .0, .0, .0, .0, 2.0,379,189.5 +6.59,5,a-sust-i4,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, .0, 4.0, .0, .0, .0, 4.0,705,176.25 +6.144,5,a-sust-i4,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 2.0, .0, .0, .0, .0, 2.0,464,232.0 +6.271428571428571,5,a-sust-i4,2023-24,Frontier - Frontier Regional,06700505, 0.0, .0, .7, 1.2, .4, .5, 2.8,605,216.07142857142858 +-Infinity,1,a-sust-i4,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, .0, .0, .0, .0, .0, 0.0,127,Infinity +6.3152,5,a-sust-i4,2023-24,Gardner - Gardner Elementary School,01030001, 2.5, 1.5, .0, .0, 1.0, .0, 5.0,1053,210.6 +6.096470588235293,5,a-sust-i4,2023-24,Gardner - Gardner High,01030505, 0.0, .0, 1.3, 2.1, .0, .0, 3.4,809,237.94117647058823 +6.712,5,a-sust-i4,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 2.0, .0, .0, .0, 3.0,483,161.0 +7.064,5,a-sust-i4,2023-24,Gateway - Chester Elementary,06720059, 0.5, .5, .0, .0, .0, .0, 1.0,117,117.0 +7.501538461538461,5,a-sust-i4,2023-24,Gateway - Gateway Regional High,06720505, 0.0, .0, .0, .0, 2.6, .0, 2.6,162,62.30769230769231 +6.693333333333333,5,a-sust-i4,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, .0, 1.0, .0, .3, .0, 1.2,196,163.33333333333334 +6.615,5,a-sust-i4,2023-24,Gateway - Littleville Elementary School,06720143, 0.9, .7, .0, .0, .0, .0, 1.6,277,173.125 +7.1742857142857135,5,a-sust-i4,2023-24,Georgetown - Georgetown High School,01050505, 0.0, .0, .0, 2.8, .0, .0, 2.8,289,103.21428571428572 +6.11,5,a-sust-i4,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, .0, .0, .0, .0, .8, 0.8,189,236.25 +6.312727272727273,5,a-sust-i4,2023-24,Georgetown - Penn Brook,01050010, 0.7, 1.1, 1.2, .0, .0, .2, 3.3,696,210.9090909090909 +-Infinity,1,a-sust-i4,2023-24,Georgetown - Perley Elementary,01050005, 0.0, .0, .0, .0, .0, .0, 0.0,88,Infinity +5.72,5,a-sust-i4,2023-24,Gill-Montague - Gill Elementary,06740005, 0.1, .2, .0, .0, .0, .1, 0.4,114,285.0 +7.052,5,a-sust-i4,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, .0, 1.9, .0, .0, .1, 2.0,237,118.5 +6.173333333333333,5,a-sust-i4,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.6, .0, .0, .0, .0, .0, 0.6,137,228.33333333333334 +5.173333333333333,5,a-sust-i4,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.2, .5, .0, .0, .0, .0, 0.6,212,353.33333333333337 +7.049411764705883,5,a-sust-i4,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, .0, .0, 1.5, .0, .2, 1.7,202,118.82352941176471 +6.661333333333333,5,a-sust-i4,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, .5, 1.5, .0, 1.0, .0, 3.0,502,167.33333333333334 +6.852,5,a-sust-i4,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, .0, .0, .0, .0, 2.0, 2.0,287,143.5 +6.2,5,a-sust-i4,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, .0, .0, .0, .0, 2.0, 2.0,450,225.0 +6.7088,5,a-sust-i4,2023-24,Gloucester - Gloucester High,01070505, 0.0, .0, .0, .5, 4.5, .0, 5.0,807,161.4 +-Infinity,1,a-sust-i4,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity +6.96,5,a-sust-i4,2023-24,Gloucester - Plum Cove School,01070042, 0.0, .0, .0, .0, .0, 1.6, 1.6,208,130.0 +6.748,5,a-sust-i4,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, .0, 4.0, .0, .0, .0, 4.0,626,156.5 +6.52,5,a-sust-i4,2023-24,Gloucester - West Parish,01070050, 0.0, .0, .0, .0, .0, 2.0, 2.0,370,185.0 +NaN,NaN,a-sust-i4,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, .0, .0, .0, .0, .0, 0.0,0,NaN +6.172307692307692,5,a-sust-i4,2023-24,Grafton - Grafton High School,01100505, 0.0, .0, .0, .2, .0, 3.8, 3.9,891,228.46153846153845 +6.776,5,a-sust-i4,2023-24,Grafton - Grafton Middle,01100305, 0.0, .0, 3.0, .0, .0, .0, 3.0,459,153.0 +6.572121212121212,5,a-sust-i4,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.5, 1.9, .8, .0, .0, .0, 3.3,589,178.4848484848485 +5.48,5,a-sust-i4,2023-24,Grafton - North Grafton Elementary,01100025, 0.8, .0, .0, .0, .0, .0, 0.8,252,315.0 +6.485333333333333,5,a-sust-i4,2023-24,Grafton - North Street Elementary School,01100030, 0.6, 1.7, .6, .0, .0, .2, 3.0,568,189.33333333333334 +5.413333333333334,5,a-sust-i4,2023-24,Grafton - South Grafton Elementary,01100005, 0.9, .0, .0, .0, .0, .0, 0.9,291,323.3333333333333 +6.392,5,a-sust-i4,2023-24,Granby - East Meadow,01110004, 0.4, .5, .2, .0, .0, 1.0, 2.0,402,201.0 +5.883636363636364,5,a-sust-i4,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, .0, .4, .8, .0, .0, 1.1,291,264.5454545454545 +3.9617391304347827,3.96,a-sust-i4,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.3, .3, .5, .0, 1.3, .0, 2.3,1161,504.7826086956522 +-107.44,1,a-sust-i4,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, .0, .0, .1, .0, .0, 0.1,1443,14430.0 +-Infinity,1,a-sust-i4,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, .0, .0, .0, .0, .0, 0.0,1774,Infinity +-53.70666666666667,1,a-sust-i4,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, .0, .0, .3, .0, .0, 0.3,2314,7713.333333333334 +-Infinity,1,a-sust-i4,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, .0, .0, .0, .0, .0, 0.0,2147,Infinity +6.8,5,a-sust-i4,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.8, .7, .0, .0, .0, .0, 1.4,210,150.0 +6.786666666666666,5,a-sust-i4,2023-24,Greenfield - Federal Street School,01140010, 0.8, .4, .0, .0, .0, .0, 1.2,182,151.66666666666669 +6.764137931034483,5,a-sust-i4,2023-24,Greenfield - Greenfield High,01140505, 0.0, .0, .9, 1.5, .5, .0, 2.9,448,154.48275862068965 +5.592,5,a-sust-i4,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, .3, .7, .0, .0, .0, 1.0,301,301.0 +6.873846153846154,5,a-sust-i4,2023-24,Greenfield - Newton School,01140035, 0.8, .6, .0, .0, .0, .0, 1.3,183,140.76923076923077 +-Infinity,1,a-sust-i4,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, .0, .0, .0, .0, .0, 0.0,90,Infinity +-Infinity,1,a-sust-i4,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, .0, .0, .0, .0, .0, 0.0,75,Infinity +5.861052631578946,5,a-sust-i4,2023-24,Groton-Dunstable - Florence Roche School,06730010, 1.1, .8, .0, .0, .0, .0, 1.9,508,267.3684210526316 +6.162666666666667,5,a-sust-i4,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, .0, .0, .0, 3.0, .0, 3.0,689,229.66666666666666 +6.8591999999999995,5,a-sust-i4,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.8, 3.3, .0, .0, .0, 5.0,713,142.6 +5.44,5,a-sust-i4,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.6, .4, .0, .0, .0, .0, 1.0,320,320.0 +6.832,5,a-sust-i4,2023-24,Hadley - Hadley Elementary,01170015, 0.9, .9, .3, .0, .0, .0, 2.0,292,146.0 +7.417931034482759,5,a-sust-i4,2023-24,Hadley - Hopkins Academy,01170505, 0.0, .0, 1.3, .6, 1.0, .0, 2.9,211,72.75862068965517 +6.17,5,a-sust-i4,2023-24,Halifax - Halifax Elementary,01180005, 0.8, .8, .3, .0, .4, .0, 2.4,549,228.75 +6.406153846153845,5,a-sust-i4,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.7, .6, .0, .0, .0, .0, 1.3,259,199.23076923076923 +6.542857142857143,5,a-sust-i4,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.6, .5, .0, .0, .0, .4, 1.4,255,182.14285714285717 +6.96,5,a-sust-i4,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, .0, .0, 3.4, .0, .0, 3.4,442,130.0 +7.136,5,a-sust-i4,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, .0, 3.5, .0, .0, .0, 3.5,378,108.0 +6.1085714285714285,5,a-sust-i4,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.4, .4, .0, .0, .0, .6, 1.4,331,236.42857142857144 +6.298461538461539,5,a-sust-i4,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, .0, 1.4, .0, 1.2, .0, 2.6,553,212.69230769230768 +6.686666666666666,5,a-sust-i4,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, .0, .8, .0, 1.5, .0, 2.4,394,164.16666666666669 +6.528,5,a-sust-i4,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.5, .6, .4, .0, .0, .0, 1.5,276,184.0 +5.12,5,a-sust-i4,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.0, .0, .0, .0, .0, .0, 1.0,360,360.0 +6.519245283018868,5,a-sust-i4,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, .0, .0, 5.3, .0, .0, 5.3,981,185.0943396226415 +6.277333333333333,5,a-sust-i4,2023-24,Hampden-Wilbraham - Soule Road,06800030, 0.0, 1.5, .0, .0, .0, .0, 1.5,323,215.33333333333334 +5.672,5,a-sust-i4,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.5, .5, .0, .0, .0, .0, 1.0,291,291.0 +6.384,5,a-sust-i4,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, .0, 3.0, .0, .0, .0, 3.0,606,202.0 +6.716279069767442,5,a-sust-i4,2023-24,Hampshire - Hampshire Regional High,06830505, 0.0, .0, 1.2, 1.0, 2.2, .0, 4.3,690,160.46511627906978 +7.613333333333334,5,a-sust-i4,2023-24,Hancock - Hancock Elementary,01210005, 0.6, .5, .2, .0, .0, .0, 1.2,58,48.333333333333336 +6.04,5,a-sust-i4,2023-24,Hanover - Cedar Elementary,01220004, 2.0, .0, .0, .0, .0, .0, 2.0,490,245.0 +5.488,5,a-sust-i4,2023-24,Hanover - Center Elementary,01220005, 0.6, 1.4, .0, .0, .0, .0, 2.0,628,314.0 +6.697142857142857,5,a-sust-i4,2023-24,Hanover - Hanover High,01220505, 0.0, .0, .0, 4.2, .0, .0, 4.2,684,162.85714285714286 +6.476190476190476,5,a-sust-i4,2023-24,Hanover - Hanover Middle,01220305, 0.0, 1.1, 3.1, .0, .0, .0, 4.2,800,190.47619047619048 +6.232,5,a-sust-i4,2023-24,Harvard - Hildreth Elementary School,01250005, 1.1, .9, .0, .0, .0, .0, 2.0,442,221.0 +6.761904761904762,5,a-sust-i4,2023-24,Harvard - The Bromfield High School,01250505, 0.0, .0, .0, 1.3, .5, .3, 2.1,325,154.76190476190476 +6.992,5,a-sust-i4,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, .0, 2.0, .0, .0, .0, 2.0,252,126.0 +7.216,5,a-sust-i4,2023-24,Hatfield - Hatfield Elementary,01270005, 0.4, 1.6, .0, .0, .0, .0, 2.0,196,98.0 +7.28,5,a-sust-i4,2023-24,Hatfield - Smith Academy,01270505, 0.0, .0, .8, .7, .0, .0, 1.4,126,90.0 +-Infinity,1,a-sust-i4,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity +6.14,5,a-sust-i4,2023-24,Haverhill - Bradford Elementary,01280008, 1.2, .8, .0, .0, .0, .0, 2.0,465,232.5 +5.872,5,a-sust-i4,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 1.1, 1.4, 1.6, .0, .0, .0, 4.0,1064,266.0 +6.107428571428572,5,a-sust-i4,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, .8, 2.2, .0, .5, .0, 3.5,828,236.57142857142858 +5.876,5,a-sust-i4,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, .5, 1.5, .0, .0, .0, 2.0,531,265.5 +7.3133333333333335,5,a-sust-i4,2023-24,Haverhill - Gateway Academy,01280515, 0.0, .0, .5, .7, .0, .0, 1.2,103,85.83333333333334 +6.096,5,a-sust-i4,2023-24,Haverhill - Golden Hill,01280026, 1.2, .8, .0, .0, .0, .0, 2.0,476,238.0 +7.093333333333333,5,a-sust-i4,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, .0, .0, .3, .0, .0, 0.3,34,113.33333333333334 +6.147906976744186,5,a-sust-i4,2023-24,Haverhill - Haverhill High,01280505, 0.0, .0, .0, 1.8, 6.7, .0, 8.6,1991,231.51162790697674 +6.34,5,a-sust-i4,2023-24,Haverhill - John G Whittier,01280085, 0.0, .1, 1.9, .0, .4, .0, 2.4,498,207.5 +6.47,5,a-sust-i4,2023-24,Haverhill - Moody,01280045, 0.8, .0, .0, .0, .0, .0, 0.8,153,191.25 +6.52,5,a-sust-i4,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.8, .0, .0, .0, .0, .0, 0.8,148,185.0 +6.099047619047619,5,a-sust-i4,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 1.0, 1.0, .0, .0, .1, .0, 2.1,499,237.61904761904762 +6.236,5,a-sust-i4,2023-24,Haverhill - Silver Hill Elementary School,01280067, 1.2, .8, .0, .0, .0, .0, 2.0,441,220.5 +6.216,5,a-sust-i4,2023-24,Haverhill - Tilton,01280075, 1.2, .8, .0, .0, .0, .0, 2.0,446,223.0 +6.542222222222223,5,a-sust-i4,2023-24,Haverhill - Walnut Square,01280080, 0.7, .2, .0, .0, .0, .0, 0.9,164,182.22222222222223 +7.253333333333333,5,a-sust-i4,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.3, .3, .1, .0, .0, .0, 0.6,56,93.33333333333334 +7.62,5,a-sust-i4,2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, .0, .0, .0, 2.0, .0, 2.0,95,47.5 +6.784,5,a-sust-i4,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, .0, .0, .0, .0, 2.0, 2.0,304,152.0 +7.377142857142857,5,a-sust-i4,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, .0, .0, .0, .0, 2.8, 2.8,218,77.85714285714286 +6.517142857142857,5,a-sust-i4,2023-24,Hingham - East Elementary School,01310005, 1.3, 1.5, .0, .0, .0, .0, 2.8,519,185.35714285714286 +5.621621621621622,5,a-sust-i4,2023-24,Hingham - Hingham High,01310505, 0.0, .0, .0, 3.7, .0, .0, 3.7,1100,297.2972972972973 +6.791428571428572,5,a-sust-i4,2023-24,Hingham - Hingham Middle School,01310410, 0.0, .0, 5.6, .0, .0, .0, 5.6,846,151.07142857142858 +6.636190476190476,5,a-sust-i4,2023-24,Hingham - Plymouth River,01310019, 1.0, 1.1, .0, .0, .0, .0, 2.1,358,170.47619047619048 +4.966153846153846,4.97,a-sust-i4,2023-24,Hingham - South Elementary,01310020, 0.5, .8, .0, .0, .0, .0, 1.3,493,379.2307692307692 +6.64,5,a-sust-i4,2023-24,Hingham - Wm L Foster Elementary,01310010, 1.0, 1.3, .0, .0, .0, .0, 2.3,391,170.0 +5.952,5,a-sust-i4,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.0, .0, 1.2, .1, .0, 1.2, 2.5,640,256.0 +5.324,5,a-sust-i4,2023-24,Holbrook - John F Kennedy,01330018, 0.0, .0, .0, .0, .0, 2.0, 2.0,669,334.5 +7.096,5,a-sust-i4,2023-24,Holland - Holland Elementary,01350005, 0.7, .9, .4, .0, .0, .0, 2.0,226,113.0 +6.688979591836734,5,a-sust-i4,2023-24,Holliston - Holliston High,01360505, 0.0, .0, .0, .0, 1.0, 3.8, 4.9,803,163.87755102040816 +6.281481481481482,5,a-sust-i4,2023-24,Holliston - Miller School,01360007, 0.0, 2.7, .0, .0, .0, .0, 2.7,580,214.8148148148148 +5.386666666666667,5,a-sust-i4,2023-24,Holliston - Placentino Elementary,01360010, 2.1, .0, .0, .0, .0, .0, 2.1,686,326.66666666666663 +5.904,5,a-sust-i4,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.0, .0, 2.5, .0, .0, .0, 2.5,655,262.0 +6.196,5,a-sust-i4,2023-24,Holyoke - E N White Elementary,01370045, 1.1, .9, .0, .0, .0, .0, 2.0,451,225.5 +6.664,5,a-sust-i4,2023-24,Holyoke - H.B. Lawrence School,01370070, 1.0, 1.0, .0, .0, .0, .0, 2.0,334,167.0 +5.015238095238096,5,a-sust-i4,2023-24,Holyoke - Holyoke High,01370505, 0.0, .0, .0, .0, .0, 4.2, 4.2,1567,373.0952380952381 +5.568,5,a-sust-i4,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, .0, .6, .0, .5, .0, 1.0,304,304.0 +7.088888888888889,5,a-sust-i4,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, .0, 1.8, .0, .0, .0, 1.8,205,113.88888888888889 +6.164,5,a-sust-i4,2023-24,Holyoke - Kelly Elementary,01370040, 0.9, .9, .0, .0, .3, .0, 2.0,459,229.5 +6.281739130434782,5,a-sust-i4,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, .0, 2.1, .0, .2, .0, 2.3,494,214.7826086956522 +6.676,5,a-sust-i4,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 1.0, 1.0, .0, .0, .0, .0, 2.0,331,165.5 +6.3619047619047615,5,a-sust-i4,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.8, .8, .0, .0, .5, .0, 2.1,430,204.76190476190476 +-Infinity,1,a-sust-i4,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, .0, .0, .0, .0, .0, 0.0,323,Infinity +-Infinity,1,a-sust-i4,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, .0, .0, .0, .0, .0, 0.0,692,Infinity +6.52,5,a-sust-i4,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.5, .5, .0, .0, .0, .0, 2.0,370,185.0 +6.291428571428572,5,a-sust-i4,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, .0, .0, .0, 1.4, .0, 1.4,299,213.57142857142858 +6.925217391304348,5,a-sust-i4,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, .8, .5, .0, .0, 1.0, 2.3,309,134.34782608695653 +6.6755555555555555,5,a-sust-i4,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, .0, 1.0, 1.6, .0, .1, 2.7,447,165.55555555555554 +5.808,5,a-sust-i4,2023-24,Hopedale - Memorial,01380010, 0.9, .9, .3, .0, .0, .0, 2.0,548,274.0 +-Infinity,1,a-sust-i4,2023-24,Hopedale - Park Street School,01380003, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity +5.444,5,a-sust-i4,2023-24,Hopkinton - Elmwood,01390010, 1.0, 1.0, .0, .0, .0, .0, 2.0,639,319.5 +6.252903225806452,5,a-sust-i4,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 3.1, .0, .0, .0, .0, 3.1,677,218.38709677419354 +6.1267924528301885,5,a-sust-i4,2023-24,Hopkinton - Hopkinton High,01390505, 0.0, .0, .0, 4.6, .0, .7, 5.3,1241,234.1509433962264 +6.780952380952381,5,a-sust-i4,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.0, .0, 6.3, .0, .0, .0, 6.3,960,152.38095238095238 +-Infinity,1,a-sust-i4,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, .0, .0, .0, .0, .0, 0.0,96,Infinity +5.704,5,a-sust-i4,2023-24,Hopkinton - Marathon Elementary School,01390005, 2.0, .0, .0, .0, .0, .0, 2.0,574,287.0 +6.232,5,a-sust-i4,2023-24,Hudson - C A Farley,01410030, 1.3, .7, .0, .0, .0, .0, 2.0,442,221.0 +7.19578947368421,5,a-sust-i4,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 2.5, 3.2, .0, .0, .0, 5.7,573,100.52631578947368 +5.21,5,a-sust-i4,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.5, .3, .0, .0, .0, .0, 0.8,279,348.75 +6.529090909090909,5,a-sust-i4,2023-24,Hudson - Hudson High,01410505, 0.0, .0, 1.1, 3.3, .0, .0, 4.4,809,183.86363636363635 +6.645714285714285,5,a-sust-i4,2023-24,Hudson - Mulready Elementary,01410007, 0.9, .5, .0, .0, .0, .0, 1.4,237,169.2857142857143 +6.964444444444444,5,a-sust-i4,2023-24,Hull - Hull High,01420505, 0.0, .0, .0, 1.0, .0, .8, 1.8,233,129.44444444444443 +6.852413793103448,5,a-sust-i4,2023-24,Hull - Lillian M Jacobs,01420015, 1.0, 1.2, .7, .0, .0, .0, 2.9,416,143.44827586206898 +7.3476923076923075,5,a-sust-i4,2023-24,Hull - Memorial Middle,01420305, 0.0, .0, 1.3, .0, .0, .0, 1.3,106,81.53846153846153 +6.686666666666666,5,a-sust-i4,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, .0, 2.0, 2.3, .0, .5, 4.8,788,164.16666666666669 +7.179574468085106,5,a-sust-i4,2023-24,Ipswich - Ipswich High,01440505, 0.0, .0, .0, 2.9, .0, 1.8, 4.7,482,102.5531914893617 +7.073939393939394,5,a-sust-i4,2023-24,Ipswich - Ipswich Middle School,01440305, 0.0, .0, 2.0, .0, .0, 1.4, 3.3,382,115.75757575757576 +6.858461538461539,5,a-sust-i4,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.9, 1.4, .0, .0, .0, .3, 2.6,371,142.69230769230768 +6.945714285714286,5,a-sust-i4,2023-24,Ipswich - Winthrop,01440015, 0.7, 1.5, .0, .0, .0, .6, 2.8,369,131.7857142857143 +6.818,5,a-sust-i4,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 1.2, 1.3, 1.5, .0, .0, .0, 4.0,591,147.75 +6.4243902439024385,5,a-sust-i4,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 1.9, 1.9, 1.3, 1.2, 2.1, .0, 8.2,1615,196.95121951219514 +5.172,5,a-sust-i4,2023-24,King Philip - King Philip Middle School,06900510, 0.0, .0, 2.0, .0, .0, .0, 2.0,707,353.5 +5.969777777777777,5,a-sust-i4,2023-24,King Philip - King Philip Regional High,06900505, 0.0, .0, .0, 4.5, .0, .0, 4.5,1142,253.77777777777777 +4.76,4.76,a-sust-i4,2023-24,Kingston - Kingston Elementary,01450005, 1.6, .0, .0, .0, .0, .0, 1.6,648,405.0 +5.548,5,a-sust-i4,2023-24,Kingston - Kingston Intermediate,01450020, 0.0, 1.5, .5, .0, .0, .0, 2.0,613,306.5 +6.336,5,a-sust-i4,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,416,208.0 +5.776,5,a-sust-i4,2023-24,Lawrence - Arlington Elementary,01490009, 1.2, .8, .0, .0, .0, .0, 2.0,556,278.0 +3.296,3.3,a-sust-i4,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, .3, .8, .0, .0, .0, 1.0,588,588.0 +6.189333333333333,5,a-sust-i4,2023-24,Lawrence - Edward F. Parthum,01490053, 1.7, 1.3, .0, .0, .0, .0, 3.0,679,226.33333333333334 +6.7425,5,a-sust-i4,2023-24,Lawrence - Emily G Wetherbee,01490080, 1.1, 1.1, 1.1, .0, .0, .0, 3.2,503,157.1875 +6.323478260869565,5,a-sust-i4,2023-24,Lawrence - Francis M Leahy,01490040, 1.1, 1.2, .0, .0, .0, .0, 2.3,482,209.56521739130437 +6.028,5,a-sust-i4,2023-24,Lawrence - Frost Middle School,01490525, 0.0, .5, 1.5, .0, .0, .0, 2.0,493,246.5 +6.084,5,a-sust-i4,2023-24,Lawrence - Gerard A. Guilmette,01490022, 1.0, 1.0, .0, .0, .0, .0, 2.0,479,239.5 +3.36,3.36,a-sust-i4,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, .2, .5, .0, .0, .0, 0.8,464,580.0 +-Infinity,1,a-sust-i4,2023-24,Lawrence - High School Learning Center,01490536, 0.0, .0, .0, .0, .0, .0, 0.0,195,Infinity +5.744,5,a-sust-i4,2023-24,Lawrence - James F Hennessey,01490020, 1.0, .0, .0, .0, .0, .0, 1.0,282,282.0 +-Infinity,1,a-sust-i4,2023-24,Lawrence - John Breen School,01490003, 0.0, .0, .0, .0, .0, .0, 0.0,258,Infinity +6.904,5,a-sust-i4,2023-24,Lawrence - John K Tarbox,01490075, 0.8, 1.2, .0, .0, .0, .0, 2.0,274,137.0 +-Infinity,1,a-sust-i4,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity +6.981333333333334,5,a-sust-i4,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 1.5, .0, .0, .0, .0, .0, 1.5,191,127.33333333333333 +6.302745098039216,5,a-sust-i4,2023-24,Lawrence - Lawrence High School,01490515, 0.0, .0, .0, 3.2, 7.9, 4.1, 15.3,3246,212.15686274509804 +5.432,5,a-sust-i4,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, .0, 1.0, .0, .0, .0, 1.0,321,321.0 +6.768,5,a-sust-i4,2023-24,Lawrence - Oliver Elementary School,01490048, 1.2, 1.8, .0, .0, .0, .0, 3.0,462,154.0 +5.232,5,a-sust-i4,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, .0, 1.0, .0, .0, .0, 1.0,346,346.0 +6.426666666666667,5,a-sust-i4,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, .8, 2.3, .0, .0, .0, 3.0,590,196.66666666666666 +-Infinity,1,a-sust-i4,2023-24,Lawrence - RISE Academy,01490615, 0.0, .0, .0, .0, .0, .0, 0.0,67,Infinity +6.544,5,a-sust-i4,2023-24,Lawrence - Robert Frost,01490018, 2.1, .9, .0, .0, .0, .0, 3.0,546,182.0 +6.776,5,a-sust-i4,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 1.0, .0, .0, .0, .0, .0, 1.0,153,153.0 +7.214545454545454,5,a-sust-i4,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.3, .4, .3, .0, .3, .0, 1.1,108,98.18181818181817 +6.24,5,a-sust-i4,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 1.2, 1.8, .0, .0, .0, .0, 3.0,660,220.0 +-Infinity,1,a-sust-i4,2023-24,Lawrence - Spark Academy,01490085, 0.0, .0, .0, .0, .0, .0, 0.0,445,Infinity +4.484,4.48,a-sust-i4,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.8, .6, .6, .0, .0, .0, 2.0,879,439.5 +6.221333333333333,5,a-sust-i4,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.7, .7, .0, .0, 1.7, .0, 3.0,667,222.33333333333334 +7.034285714285714,5,a-sust-i4,2023-24,Lee - Lee Elementary,01500025, 1.3, 1.1, .4, .0, .0, .0, 2.8,338,120.71428571428572 +7.23,5,a-sust-i4,2023-24,Lee - Lee Middle/High School,01500505, 0.0, .0, 1.0, 2.0, .2, .0, 3.2,308,96.25 +6.365217391304348,5,a-sust-i4,2023-24,Leicester - Leicester Elementary,01510005, 1.4, .8, .0, .0, .1, .0, 2.3,470,204.34782608695653 +6.412,5,a-sust-i4,2023-24,Leicester - Leicester High,01510505, 0.0, .0, .0, .0, 2.0, .0, 2.0,397,198.5 +-Infinity,1,a-sust-i4,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, .0, .0, .0, .0, .0, 0.0,49,Infinity +5.97,5,a-sust-i4,2023-24,Leicester - Leicester Middle,01510015, 0.0, .6, .9, .0, .1, .0, 1.6,406,253.75 +7.224347826086956,5,a-sust-i4,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, .0, 1.1, .6, 2.9, .0, 4.6,446,96.95652173913044 +6.652,5,a-sust-i4,2023-24,Lenox - Morris,01520015, 1.0, 1.0, .0, .0, .0, .0, 2.0,337,168.5 +-Infinity,1,a-sust-i4,2023-24,Leominster - Bennett,01530003, 0.0, .0, .0, .0, .0, .0, 0.0,89,Infinity +-Infinity,1,a-sust-i4,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, .0, .0, .0, .0, .0, 0.0,807,Infinity +5.472,5,a-sust-i4,2023-24,Leominster - Fall Brook,01530007, 1.0, 1.0, .0, .0, .0, .0, 2.0,632,316.0 +6.06,5,a-sust-i4,2023-24,Leominster - Frances Drake School,01530010, 1.0, 1.0, .0, .0, .0, .0, 2.0,485,242.5 +5.38,5,a-sust-i4,2023-24,Leominster - Johnny Appleseed,01530025, 1.0, 1.0, .0, .0, .0, .0, 2.0,655,327.5 +-Infinity,1,a-sust-i4,2023-24,Leominster - Leominster Academy,01530705, 0.0, .0, .0, .0, .0, .0, 0.0,16,Infinity +-Infinity,1,a-sust-i4,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, .0, .0, .0, .0, .0, 0.0,65,Infinity +6.569333333333333,5,a-sust-i4,2023-24,Leominster - Leominster High School,01530505, 0.0, .0, .0, 5.8, .0, .3, 6.0,1073,178.83333333333334 +-Infinity,1,a-sust-i4,2023-24,Leominster - Lincoln School,01530005, 0.0, .0, .0, .0, .0, .0, 0.0,40,Infinity +5.324,5,a-sust-i4,2023-24,Leominster - Northwest,01530030, 0.9, 1.1, .0, .0, .0, .0, 2.0,669,334.5 +6.411428571428572,5,a-sust-i4,2023-24,Leominster - Priest Street,01530040, 0.0, .0, .0, .0, .0, .7, 0.7,139,198.57142857142858 +6.128,5,a-sust-i4,2023-24,Leominster - Samoset School,01530045, 0.0, .0, 2.0, .0, .0, .0, 2.0,468,234.0 +5.669333333333334,5,a-sust-i4,2023-24,Leominster - Sky View Middle School,01530320, 0.0, .0, 2.0, .0, .0, 1.0, 3.0,874,291.3333333333333 +6.737777777777778,5,a-sust-i4,2023-24,Leverett - Leverett Elementary,01540005, 0.3, .4, .1, .0, .0, .0, 0.9,142,157.77777777777777 +6.683076923076923,5,a-sust-i4,2023-24,Lexington - Bowman,01550008, 0.4, 1.0, .0, .0, .0, 1.2, 2.6,428,164.6153846153846 +6.730434782608696,5,a-sust-i4,2023-24,Lexington - Bridge,01550006, 0.5, .6, .0, .0, .0, 1.2, 2.3,365,158.69565217391306 +6.66,5,a-sust-i4,2023-24,Lexington - Fiske,01550015, 0.4, .8, .0, .0, .0, .8, 2.0,335,167.5 +6.74,5,a-sust-i4,2023-24,Lexington - Harrington,01550030, 0.9, 1.5, .0, .0, .0, .0, 2.4,378,157.5 +7.136,5,a-sust-i4,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, .0, 6.5, .0, .0, 1.0, 7.5,810,108.0 +6.518620689655172,5,a-sust-i4,2023-24,Lexington - Joseph Estabrook,01550010, 1.1, 1.8, .0, .0, .0, .0, 2.9,537,185.17241379310346 +-Infinity,1,a-sust-i4,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, .0, .0, .0, .0, .0, 0.0,76,Infinity +6.8828915662650605,5,a-sust-i4,2023-24,Lexington - Lexington High,01550505, 0.0, .0, .0, 14.4, .0, 2.2, 16.6,2318,139.63855421686745 +6.47030303030303,5,a-sust-i4,2023-24,Lexington - Maria Hastings,01550035, 1.4, 1.9, .0, .0, .0, .0, 3.3,631,191.21212121212122 +7.147586206896552,5,a-sust-i4,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, .0, 8.7, .0, .0, .0, 8.7,927,106.55172413793105 +4.806153846153846,4.81,a-sust-i4,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, .0, .0, .0, 1.3, .0, 1.3,519,399.2307692307692 +6.802424242424242,5,a-sust-i4,2023-24,Lincoln - Hanscom School,01570305, 1.5, 1.4, .3, .0, .1, .0, 3.3,494,149.69696969696972 +6.997209302325581,5,a-sust-i4,2023-24,Lincoln - Lincoln School,01570025, 1.0, 2.1, 1.0, .0, .2, .0, 4.3,539,125.34883720930233 +6.143492063492063,5,a-sust-i4,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, .0, .0, 5.3, .0, 1.0, 6.3,1462,232.06349206349208 +6.656551724137931,5,a-sust-i4,2023-24,Littleton - Littleton High School,01580505, 0.0, .0, .0, 2.9, .0, .0, 2.9,487,167.93103448275863 +6.366315789473684,5,a-sust-i4,2023-24,Littleton - Littleton Middle School,01580305, 0.0, .0, 1.9, .0, .0, .0, 1.9,388,204.21052631578948 +5.152,5,a-sust-i4,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 1.0, .0, .0, .0, .0, 1.0,356,356.0 +-Infinity,1,a-sust-i4,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, .0, .0, .0, .0, .0, 0.0,443,Infinity +6.75,5,a-sust-i4,2023-24,Longmeadow - Blueberry Hill,01590005, 0.9, 1.5, .0, .0, .0, .0, 2.4,375,156.25 +6.636666666666666,5,a-sust-i4,2023-24,Longmeadow - Center,01590010, 1.0, 1.4, .0, .0, .0, .0, 2.4,409,170.41666666666669 +7.015384615384615,5,a-sust-i4,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, .0, 2.6, .0, .0, .0, 2.6,320,123.07692307692307 +6.380444444444445,5,a-sust-i4,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, .0, .0, 1.9, 1.1, 1.5, 4.5,911,202.44444444444446 +7.114285714285714,5,a-sust-i4,2023-24,Longmeadow - Williams Middle,01590305, 0.0, .0, 2.8, .0, .0, .0, 2.8,310,110.71428571428572 +6.441739130434782,5,a-sust-i4,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.9, 1.4, .0, .0, .0, .0, 2.3,448,194.7826086956522 +6.299130434782608,5,a-sust-i4,2023-24,Lowell - Abraham Lincoln,01600020, 0.9, .4, .0, .0, .0, 1.0, 2.3,489,212.60869565217394 +5.98,5,a-sust-i4,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, .5, 1.5, .0, .0, .0, 2.0,505,252.5 +6.902857142857143,5,a-sust-i4,2023-24,Lowell - Bartlett Community Partnership,01600090, 1.9, .9, .7, .0, .0, .0, 3.5,480,137.14285714285714 +7.405714285714287,5,a-sust-i4,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 1.3, .0, .0, .0, .0, .2, 1.4,104,74.28571428571429 +6.52923076923077,5,a-sust-i4,2023-24,Lowell - Charles W Morey,01600030, 1.8, .8, .0, .0, .0, .0, 2.6,478,183.84615384615384 +6.943030303030303,5,a-sust-i4,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 2.5, .9, .0, .0, .0, .0, 3.3,436,132.12121212121212 +6.684,5,a-sust-i4,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 1.0, 3.0, .0, .0, .0, 4.0,658,164.5 +6.523333333333333,5,a-sust-i4,2023-24,Lowell - Dr Gertrude Bailey,01600002, 1.0, .4, .0, .0, .0, 1.0, 2.4,443,184.58333333333334 +7.789090909090909,5,a-sust-i4,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 0.2, .6, 1.0, .0, .0, .4, 2.2,58,26.36363636363636 +6.259047619047619,5,a-sust-i4,2023-24,Lowell - Greenhalge,01600015, 1.4, .7, .0, .0, .0, .0, 2.1,457,217.61904761904762 +5.632,5,a-sust-i4,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.0, .5, 1.5, .0, .0, .0, 2.0,592,296.0 +5.28,5,a-sust-i4,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, .5, 1.5, .0, .0, .0, 2.0,680,340.0 +5.532,5,a-sust-i4,2023-24,Lowell - James Sullivan Middle School,01600340, 0.0, .5, 1.5, .0, .0, .0, 2.0,617,308.5 +6.124,5,a-sust-i4,2023-24,Lowell - John J Shaughnessy,01600050, 1.3, .7, .0, .0, .0, .0, 2.0,469,234.5 +6.507826086956522,5,a-sust-i4,2023-24,Lowell - Joseph McAvinnue,01600010, 1.5, .8, .0, .0, .0, .0, 2.3,429,186.5217391304348 +5.5,5,a-sust-i4,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, .5, 1.5, .0, .0, .0, 2.0,625,312.5 +7.744,5,a-sust-i4,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, .0, .5, .0, .0, .0, 0.5,16,32.0 +7.712,5,a-sust-i4,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, .0, .0, .9, .0, .1, 1.0,36,36.0 +5.906461538461539,5,a-sust-i4,2023-24,Lowell - Lowell High,01600505, 0.0, .0, .0, 12.0, .0, 1.0, 13.0,3402,261.6923076923077 +7.098181818181818,5,a-sust-i4,2023-24,Lowell - Moody Elementary,01600027, 1.4, .7, .0, .0, .0, .0, 2.2,248,112.72727272727272 +6.356363636363636,5,a-sust-i4,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.8, .3, .0, .0, .0, 1.0, 2.2,452,205.45454545454544 +6.156,5,a-sust-i4,2023-24,Lowell - Peter W Reilly,01600040, 1.4, .6, .0, .0, .0, .0, 2.0,461,230.5 +7.286153846153845,5,a-sust-i4,2023-24,Lowell - Pyne Arts,01600018, 2.0, 1.8, .3, .0, .0, 1.0, 5.2,464,89.23076923076923 +6.284,5,a-sust-i4,2023-24,Lowell - Rogers STEM Academy,01600005, 1.2, 1.3, 1.5, .0, .0, .1, 4.0,858,214.5 +6.323478260869565,5,a-sust-i4,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 1.4, .9, .0, .0, .0, .0, 2.3,482,209.56521739130437 +-Infinity,1,a-sust-i4,2023-24,Lowell - The Career Academy,01600515, 0.0, .0, .0, .0, .0, .0, 0.0,92,Infinity +7.158260869565218,5,a-sust-i4,2023-24,Lowell - Washington,01600055, 1.6, .8, .0, .0, .0, .0, 2.3,242,105.21739130434783 +6.366,5,a-sust-i4,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 1.3, 1.3, 1.3, .0, .0, .0, 4.0,817,204.25 +-0.48,1,a-sust-i4,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, .0, .0, .1, .0, .0, 0.1,106,1060.0 +6.085333333333333,5,a-sust-i4,2023-24,Ludlow - East Street Elementary School,01610010, 1.4, .0, .0, .0, .0, .1, 1.5,359,239.33333333333334 +6.766,5,a-sust-i4,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.8, 3.2, .0, .0, .0, .0, 4.0,617,154.25 +6.421052631578948,5,a-sust-i4,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, .0, .0, 3.8, .0, .0, 3.8,750,197.3684210526316 +6.581333333333333,5,a-sust-i4,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, .0, 3.0, .0, .0, .0, 3.0,532,177.33333333333334 +-Infinity,1,a-sust-i4,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, .0, .0, .0, .0, .0, 0.0,7,Infinity +6.8775,5,a-sust-i4,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, .0, .0, .5, 2.8, .0, 3.2,449,140.3125 +6.548,5,a-sust-i4,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, .0, 2.0, .0, .0, .0, 2.0,363,181.5 +5.914666666666666,5,a-sust-i4,2023-24,Lunenburg - Lunenburg Primary School,01620010, 1.2, .0, .0, .0, .3, .0, 1.5,391,260.6666666666667 +6.026666666666667,5,a-sust-i4,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 1.5, .0, .0, .0, .0, 1.5,370,246.66666666666666 +6.032,5,a-sust-i4,2023-24,Lynn - A Drewicz Elementary,01630016, 1.2, .8, .0, .0, .0, .0, 2.0,492,246.0 +4.352,4.35,a-sust-i4,2023-24,Lynn - Aborn,01630011, 0.2, .2, .0, .0, .0, .0, 0.5,228,456.0 +6.2414035087719295,5,a-sust-i4,2023-24,Lynn - Breed Middle School,01630405, 0.0, .0, 5.7, .0, .0, .0, 5.7,1253,219.82456140350877 +6.591111111111111,5,a-sust-i4,2023-24,Lynn - Brickett Elementary,01630020, 0.8, 1.0, .0, .0, .0, .0, 1.8,317,176.11111111111111 +6.918399999999999,5,a-sust-i4,2023-24,Lynn - Capt William G Shoemaker,01630090, 1.4, 1.1, .0, .0, .0, .0, 2.5,338,135.2 +5.537049180327869,5,a-sust-i4,2023-24,Lynn - Classical High,01630505, 0.0, .0, .0, 6.1, .0, .0, 6.1,1878,307.8688524590164 +6.281379310344828,5,a-sust-i4,2023-24,Lynn - Cobbet Elementary,01630035, 1.6, 1.3, .0, .0, .0, .0, 2.9,623,214.82758620689657 +6.25103448275862,5,a-sust-i4,2023-24,Lynn - E J Harrington,01630045, 1.6, 1.3, .0, .0, .0, .0, 2.9,634,218.6206896551724 +6.292,5,a-sust-i4,2023-24,Lynn - Edward A Sisson,01630095, 1.0, 1.0, .0, .0, .0, .0, 2.0,427,213.5 +7.217777777777777,5,a-sust-i4,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, .0, .9, .0, .0, .0, 0.9,88,97.77777777777777 +7.102857142857143,5,a-sust-i4,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, .0, .0, 1.4, .0, .0, 1.4,157,112.14285714285715 +6.292173913043478,5,a-sust-i4,2023-24,Lynn - Hood,01630055, 1.4, .9, .0, .0, .0, .0, 2.3,491,213.47826086956525 +6.138666666666667,5,a-sust-i4,2023-24,Lynn - Ingalls,01630060, 1.6, 1.4, .0, .0, .0, .0, 3.0,698,232.66666666666666 +6.567272727272728,5,a-sust-i4,2023-24,Lynn - Julia F Callahan,01630030, 1.4, .8, .0, .0, .0, .0, 2.2,394,179.09090909090907 +6.272,5,a-sust-i4,2023-24,Lynn - Lincoln-Thomson,01630070, 0.4, .6, .0, .0, .0, .0, 1.0,216,216.0 +4.986181818181818,4.99,a-sust-i4,2023-24,Lynn - Lynn English High,01630510, 0.0, .0, .0, 5.5, .0, .0, 5.5,2072,376.72727272727275 +6.293698630136986,5,a-sust-i4,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 0.7, .0, 3.0, 2.5, 1.2, .0, 7.3,1557,213.2876712328767 +7.009230769230769,5,a-sust-i4,2023-24,Lynn - Lynn Woods,01630075, 0.4, .9, .0, .0, .0, .0, 1.3,161,123.84615384615384 +7.32125,5,a-sust-i4,2023-24,Lynn - Pickering Middle,01630420, 0.0, .0, 6.4, .0, .0, .0, 6.4,543,84.84375 +6.0329411764705885,5,a-sust-i4,2023-24,Lynn - Robert L Ford,01630050, 0.7, 1.0, .0, .0, .0, .0, 1.7,418,245.88235294117646 +6.193333333333333,5,a-sust-i4,2023-24,Lynn - Sewell-Anderson,01630085, 0.7, .5, .0, .0, .0, .0, 1.2,271,225.83333333333334 +6.293333333333333,5,a-sust-i4,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.0, .0, 5.6, .0, .4, .0, 6.0,1280,213.33333333333334 +5.973333333333333,5,a-sust-i4,2023-24,Lynn - Tracy,01630100, 0.6, .9, .0, .0, .0, .0, 1.5,380,253.33333333333334 +7.28,5,a-sust-i4,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.9, .0, .0, .0, .0, .0, 0.9,81,90.0 +6.212,5,a-sust-i4,2023-24,Lynn - Washington Elementary School,01630005, 0.9, 1.1, .0, .0, .0, .0, 2.0,447,223.5 +7.9630769230769225,5,a-sust-i4,2023-24,Lynn - William R Fallon,01630080, 1.9, 3.3, .0, .0, .0, .0, 5.2,24,4.615384615384615 +5.784,5,a-sust-i4,2023-24,Lynn - Wm P Connery,01630040, 1.0, 1.0, .0, .0, .0, .0, 2.0,554,277.0 +6.204,5,a-sust-i4,2023-24,Lynnfield - Huckleberry Hill,01640010, 1.1, .9, .0, .0, .0, .0, 2.0,449,224.5 +6.858,5,a-sust-i4,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, .0, .0, .0, 4.0, .0, 4.0,571,142.75 +5.164,5,a-sust-i4,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, .5, 1.0, .0, .5, .0, 2.0,709,354.5 +-Infinity,1,a-sust-i4,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, .0, .0, .0, .0, .0, 0.0,39,Infinity +6.328,5,a-sust-i4,2023-24,Lynnfield - Summer Street,01640020, 1.2, .8, .0, .0, .0, .0, 2.0,418,209.0 +-Infinity,1,a-sust-i4,2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +6.5584,5,a-sust-i4,2023-24,Malden - Beebe,01650003, 0.6, 1.1, 2.2, .0, .0, 1.0, 5.0,901,180.2 +6.19,5,a-sust-i4,2023-24,Malden - Ferryway,01650013, 1.3, 1.0, .8, .0, .0, 1.0, 4.0,905,226.25 +6.533333333333333,5,a-sust-i4,2023-24,Malden - Forestdale,01650027, 0.6, 1.2, 1.2, .0, .0, .0, 3.0,550,183.33333333333334 +6.35,5,a-sust-i4,2023-24,Malden - Linden,01650047, 1.2, 1.3, 1.5, .0, .0, .0, 4.0,825,206.25 +6.996,5,a-sust-i4,2023-24,Malden - Malden Early Learning Center,01650049, 2.0, .0, .0, .0, .0, .0, 2.0,251,125.5 +5.4318644067796615,5,a-sust-i4,2023-24,Malden - Malden High,01650505, 0.0, .0, .0, 4.9, .0, 1.0, 5.9,1894,321.01694915254234 +6.088,5,a-sust-i4,2023-24,Malden - Salemwood,01650057, 1.2, 1.0, .8, .0, .0, 1.0, 4.0,956,239.0 +6.59076923076923,5,a-sust-i4,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.7, .7, .0, .0, .0, .0, 1.3,229,176.15384615384616 +6.222222222222222,5,a-sust-i4,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, .0, .0, 1.3, .3, .1, 1.8,400,222.22222222222223 +7.003636363636364,5,a-sust-i4,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, .0, 2.2, .0, .0, .0, 2.2,274,124.54545454545453 +6.302857142857143,5,a-sust-i4,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 1.0, .4, .0, .0, .0, .0, 1.4,297,212.14285714285717 +6.22,5,a-sust-i4,2023-24,Mansfield - Everett W Robinson,01670007, 3.2, .0, .0, .0, .0, .0, 3.2,712,222.5 +6.952,5,a-sust-i4,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, .0, 6.0, .0, .0, .0, 6.0,786,131.0 +6.594285714285714,5,a-sust-i4,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 4.2, .0, .0, .0, .0, 4.2,738,175.7142857142857 +6.596610169491525,5,a-sust-i4,2023-24,Mansfield - Mansfield High,01670505, 0.0, .0, .0, 5.8, .0, .1, 5.9,1035,175.4237288135593 +-Infinity,1,a-sust-i4,2023-24,Mansfield - Roland Green School,01670003, 0.0, .0, .0, .0, .0, .0, 0.0,100,Infinity +4.834285714285714,4.83,a-sust-i4,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, .0, .0, .0, .7, .0, 0.7,277,395.7142857142857 +6.716,5,a-sust-i4,2023-24,Marblehead - Glover,01680020, 1.8, .3, .0, .0, .0, .0, 2.0,321,160.5 +6.232,5,a-sust-i4,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 1.8, .3, .0, .0, .0, .0, 2.0,442,221.0 +6.6016,5,a-sust-i4,2023-24,Marblehead - Marblehead High,01680505, 0.0, .0, .0, 4.9, .0, .1, 5.0,874,174.8 +6.459130434782608,5,a-sust-i4,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, .0, 2.3, .0, .0, .0, 2.3,443,192.60869565217394 +7.066086956521739,5,a-sust-i4,2023-24,Marblehead - Village School,01680016, 0.0, 3.1, 1.5, .0, .0, .0, 4.6,537,116.73913043478262 +7.3,5,a-sust-i4,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, .8, 1.2, .0, .0, .0, 2.0,175,87.5 +6.962666666666667,5,a-sust-i4,2023-24,Marion - Sippican,01690005, 0.8, 1.6, .6, .0, .0, .0, 3.0,389,129.66666666666666 +6.741333333333333,5,a-sust-i4,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, .0, 6.0, .0, .0, .0, 6.0,944,157.33333333333334 +5.38,5,a-sust-i4,2023-24,Marlborough - Charles Jaworek School,01700030, 0.7, 1.1, .0, .0, .0, .1, 2.0,655,327.5 +-Infinity,1,a-sust-i4,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, .0, .0, .0, .0, .0, 0.0,231,Infinity +6.293333333333333,5,a-sust-i4,2023-24,Marlborough - Francis J Kane,01700008, 0.5, .9, .0, .0, .0, .9, 2.4,512,213.33333333333334 +5.725714285714286,5,a-sust-i4,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 1.1, 1.4, .0, .0, .0, .2, 2.8,796,284.2857142857143 +6.772121212121212,5,a-sust-i4,2023-24,Marlborough - Marlborough High,01700505, 0.0, .0, .0, 6.6, .0, .0, 6.6,1013,153.4848484848485 +5.898181818181818,5,a-sust-i4,2023-24,Marlborough - Richer,01700025, 0.5, .9, .0, .0, .0, .8, 2.2,578,262.7272727272727 +6.795555555555556,5,a-sust-i4,2023-24,Marshfield - Daniel Webster,01710015, 0.8, .6, .0, .0, .4, .0, 1.8,271,150.55555555555554 +6.784,5,a-sust-i4,2023-24,Marshfield - Eames Way School,01710005, 0.6, .5, .0, .0, .4, .0, 1.5,228,152.0 +6.921904761904761,5,a-sust-i4,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, .0, 6.3, .0, .0, .0, 6.3,849,134.76190476190476 +6.823333333333333,5,a-sust-i4,2023-24,Marshfield - Gov Edward Winslow,01710020, 1.0, 1.0, .0, .0, .4, .0, 2.4,353,147.08333333333334 +6.51741935483871,5,a-sust-i4,2023-24,Marshfield - Marshfield High,01710505, 0.0, .0, .0, 5.0, .0, 1.2, 6.2,1149,185.32258064516128 +-Infinity,1,a-sust-i4,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, .0, .0, .0, .0, .0, 0.0,120,Infinity +6.49,5,a-sust-i4,2023-24,Marshfield - Martinson Elementary,01710025, 1.1, .9, .0, .0, .4, .0, 2.4,453,188.75 +6.828235294117647,5,a-sust-i4,2023-24,Marshfield - South River,01710010, 0.7, .7, .0, .0, .4, .0, 1.7,249,146.47058823529412 +6.888163265306122,5,a-sust-i4,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, .0, .0, 2.0, .6, 2.4, 4.9,681,138.97959183673467 +6.833333333333333,5,a-sust-i4,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.2, .2, .4, .0, .4, .0, 1.2,175,145.83333333333334 +6.576,5,a-sust-i4,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 1.0, 1.0, .0, .0, .0, .0, 2.0,356,178.0 +6.528301886792453,5,a-sust-i4,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, .0, .0, .1, .6, 4.6, 5.3,975,183.9622641509434 +6.907317073170732,5,a-sust-i4,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.0, .0, 4.1, .0, .0, .0, 4.1,560,136.58536585365854 +6.392,5,a-sust-i4,2023-24,Mashpee - Kenneth Coombs School,01720005, 2.0, .0, .0, .0, .0, .0, 2.0,402,201.0 +6.76,5,a-sust-i4,2023-24,Mashpee - Mashpee Middle-High School,01720505, 0.0, .0, 1.5, 2.4, .0, .0, 4.0,620,155.0 +6.912,5,a-sust-i4,2023-24,Mashpee - Quashnet School,01720035, 0.0, 2.3, .8, .0, .0, .0, 3.0,408,136.0 +6.857831325301205,5,a-sust-i4,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 1.0, .0, .0, 1.0, 5.3, 1.0, 8.3,1185,142.77108433734938 +6.327272727272728,5,a-sust-i4,2023-24,Mattapoisett - Center,01730005, 0.9, .3, .0, .0, .0, .0, 1.1,230,209.09090909090907 +7.28421052631579,5,a-sust-i4,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 1.2, .6, .0, .0, .0, 1.9,170,89.47368421052632 +6.535384615384615,5,a-sust-i4,2023-24,Maynard - Fowler School,01740305, 0.0, .7, 1.2, .0, .0, .8, 2.6,476,183.07692307692307 +6.288,5,a-sust-i4,2023-24,Maynard - Green Meadow,01740010, 1.5, .5, .0, .0, .0, .0, 2.0,428,214.0 +6.172307692307692,5,a-sust-i4,2023-24,Maynard - Maynard High,01740505, 0.0, .0, .0, .9, .0, .4, 1.3,297,228.46153846153845 +7.102222222222222,5,a-sust-i4,2023-24,Medfield - Dale Street,01750005, 0.0, 3.6, .0, .0, .0, .0, 3.6,404,112.22222222222221 +6.59,5,a-sust-i4,2023-24,Medfield - Medfield Senior High,01750505, 0.0, .0, .0, 4.0, .0, .0, 4.0,705,176.25 +5.464615384615385,5,a-sust-i4,2023-24,Medfield - Memorial School,01750003, 1.3, .0, .0, .0, .0, .0, 1.3,412,316.9230769230769 +5.55076923076923,5,a-sust-i4,2023-24,Medfield - Ralph Wheelock School,01750007, 0.7, .7, .0, .0, .0, .0, 1.3,398,306.15384615384613 +6.44,5,a-sust-i4,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, .0, 3.0, .0, .0, .0, 3.0,585,195.0 +5.136,5,a-sust-i4,2023-24,Medford - Brooks School,01760130, 0.3, 1.2, .0, .0, .0, .0, 1.5,537,358.0 +7.4,5,a-sust-i4,2023-24,Medford - Curtis-Tufts,01760510, 0.0, .0, .0, .0, .2, .0, 0.2,15,75.0 +6.004,5,a-sust-i4,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.5, .0, .0, .0, 1.5, .0, 2.0,499,249.5 +6.765714285714285,5,a-sust-i4,2023-24,Medford - John J. McGlynn Middle School,01760320, 0.0, .0, 2.8, .0, .0, .0, 2.8,432,154.2857142857143 +6.660740740740741,5,a-sust-i4,2023-24,Medford - Madeleine Dugger Andrews,01760315, 0.0, .0, 2.7, .0, .0, .0, 2.7,452,167.4074074074074 +6.202264150943396,5,a-sust-i4,2023-24,Medford - Medford High,01760505, 0.0, .0, .0, 1.4, 3.9, .0, 5.3,1191,224.7169811320755 +5.716,5,a-sust-i4,2023-24,Medford - Milton Fuller Roberts,01760150, 0.4, .0, .0, .0, 1.6, .0, 2.0,571,285.5 +6.335238095238095,5,a-sust-i4,2023-24,Medford - Missituk Elementary School,01760140, 0.3, .0, .0, .0, 1.8, .0, 2.1,437,208.09523809523807 +5.6,5,a-sust-i4,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.6, 1.1, .0, .0, .0, .0, 1.7,510,300.0 +4.984,4.98,a-sust-i4,2023-24,Medway - John D Mc Govern Elementary,01770013, 1.0, .0, .0, .0, .0, .0, 1.0,377,377.0 +6.754871794871795,5,a-sust-i4,2023-24,Medway - Medway High,01770505, 0.0, .0, .0, .0, 3.9, .0, 3.9,607,155.64102564102564 +6.936,5,a-sust-i4,2023-24,Medway - Medway Middle,01770305, 0.0, 1.3, 3.7, .0, .0, .0, 5.0,665,133.0 +6.28,5,a-sust-i4,2023-24,Melrose - Early Childhood Center,01780003, 1.2, .0, .0, .0, .0, .0, 1.2,258,215.0 +6.742222222222223,5,a-sust-i4,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.8, 1.0, .0, .0, .0, .0, 1.8,283,157.22222222222223 +5.34,5,a-sust-i4,2023-24,Melrose - Horace Mann,01780025, 0.4, .4, .0, .0, .0, .0, 0.8,266,332.5 +6.168888888888889,5,a-sust-i4,2023-24,Melrose - Lincoln,01780020, 0.9, .9, .0, .0, .0, .0, 1.8,412,228.88888888888889 +5.926486486486486,5,a-sust-i4,2023-24,Melrose - Melrose High,01780505, 0.0, .0, .0, 3.7, .0, .0, 3.7,959,259.18918918918916 +5.92,5,a-sust-i4,2023-24,Melrose - Melrose Middle,01780305, 0.0, .0, 3.5, .0, .0, .0, 3.5,910,260.0 +3.97,3.97,a-sust-i4,2023-24,Melrose - Roosevelt,01780035, 0.4, .4, .0, .0, .0, .0, 0.8,403,503.75 +6.541818181818182,5,a-sust-i4,2023-24,Melrose - Winthrop,01780050, 1.3, .9, .0, .0, .0, .0, 2.2,401,182.27272727272725 +6.488,5,a-sust-i4,2023-24,Mendon-Upton - Henry P Clough,07100179, 1.3, .7, .0, .0, .0, .0, 2.0,378,189.0 +6.004,5,a-sust-i4,2023-24,Mendon-Upton - Memorial School,07100001, 1.3, .8, .0, .0, .0, .0, 2.0,499,249.5 +6.893913043478261,5,a-sust-i4,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 1.6, 3.0, .0, .0, .0, 4.6,636,138.2608695652174 +6.757777777777777,5,a-sust-i4,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, .0, .0, 3.2, .4, .0, 3.6,559,155.27777777777777 +6.379607843137255,5,a-sust-i4,2023-24,Methuen - Comprehensive Grammar School,01810050, 1.3, 1.5, 2.3, .0, .0, .0, 5.1,1033,202.54901960784315 +6.1632,5,a-sust-i4,2023-24,Methuen - Donald P Timony Grammar,01810060, 1.2, 1.6, 2.2, .0, .0, .0, 5.0,1148,229.6 +-Infinity,1,a-sust-i4,2023-24,Methuen - Early Childhood Center,01810001, 0.0, .0, .0, .0, .0, .0, 0.0,143,Infinity +6.3264,5,a-sust-i4,2023-24,Methuen - Marsh Grammar School,01810030, 1.2, 1.5, 2.3, .0, .0, .0, 5.0,1046,209.2 +6.644285714285714,5,a-sust-i4,2023-24,Methuen - Methuen High,01810505, 0.0, .0, .0, 5.3, 1.2, 4.8, 11.2,1898,169.46428571428572 +5.977600000000001,5,a-sust-i4,2023-24,Methuen - Tenney Grammar School,01810055, 1.2, 1.5, 2.3, .0, .0, .0, 5.0,1264,252.8 +6.442666666666667,5,a-sust-i4,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.8, 1.2, .0, .0, .0, 1.0, 3.0,584,194.66666666666666 +5.421818181818182,5,a-sust-i4,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.0, .0, 2.2, .0, .0, .0, 2.2,709,322.27272727272725 +6.31448275862069,5,a-sust-i4,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.7, 1.1, .0, .0, .0, 1.0, 2.9,611,210.6896551724138 +6.932,5,a-sust-i4,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 2.0, .0, .0, .0, .0, .0, 2.0,267,133.5 +6.897333333333333,5,a-sust-i4,2023-24,Middleborough - Middleborough High,01820505, 0.0, .0, .0, 3.4, .0, 2.6, 6.0,827,137.83333333333334 +6.48,5,a-sust-i4,2023-24,Middleton - Fuller Meadow,01840003, 1.5, .0, .0, .0, .0, .0, 1.5,285,190.0 +6.252,5,a-sust-i4,2023-24,Middleton - Howe-Manning,01840005, 0.0, 1.5, .5, .0, .0, .0, 2.0,437,218.5 +5.3223529411764705,5,a-sust-i4,2023-24,Milford - Brookside,01850065, 1.4, .0, .0, .0, .0, .3, 1.7,569,334.70588235294116 +6.52,5,a-sust-i4,2023-24,Milford - Memorial,01850010, 1.5, .0, .0, .0, .0, .9, 2.4,444,185.0 +5.195675675675676,5,a-sust-i4,2023-24,Milford - Milford High,01850505, 0.0, .0, .0, 3.7, .0, .0, 3.7,1297,350.5405405405405 +-Infinity,1,a-sust-i4,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, .0, .0, .0, .0, .0, 0.0,154,Infinity +6.612857142857143,5,a-sust-i4,2023-24,Milford - Stacy Middle,01850305, 0.0, .0, 5.6, .0, .0, .0, 5.6,971,173.39285714285717 +6.8145454545454545,5,a-sust-i4,2023-24,Milford - Woodland,01850090, 0.0, 5.7, .0, .0, .0, .9, 6.6,978,148.1818181818182 +5.825882352941177,5,a-sust-i4,2023-24,Millbury - Elmwood Street,01860017, 1.0, .0, .0, .0, .0, .8, 1.7,462,271.7647058823529 +6.1975,5,a-sust-i4,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, .0, 1.0, 2.2, .0, .0, 3.2,721,225.3125 +6.301818181818182,5,a-sust-i4,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 1.4, .6, .0, .0, .2, 2.2,467,212.27272727272725 +6.237037037037037,5,a-sust-i4,2023-24,Millis - Clyde F Brown,01870005, 1.4, 1.3, .0, .0, .0, .0, 2.7,595,220.37037037037035 +2.928,2.93,a-sust-i4,2023-24,Millis - Millis High School,01870505, 0.0, .0, .0, .0, .5, .0, 0.5,317,634.0 +5.32,5,a-sust-i4,2023-24,Millis - Millis Middle,01870020, 0.0, .0, .5, .0, .3, .0, 0.8,268,335.0 +-Infinity,1,a-sust-i4,2023-24,Millis - TIES,01870515, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity +6.8,5,a-sust-i4,2023-24,Milton - Charles S Pierce Middle,01890410, 0.0, .0, 6.3, .0, .1, .0, 6.4,960,150.0 +5.656,5,a-sust-i4,2023-24,Milton - Collicot,01890005, 1.0, 1.0, .0, .0, .0, .0, 2.0,586,293.0 +5.778181818181818,5,a-sust-i4,2023-24,Milton - Cunningham School,01890007, 1.2, .9, .0, .0, .0, .0, 2.2,611,277.7272727272727 +5.512,5,a-sust-i4,2023-24,Milton - Glover,01890010, 1.0, 1.0, .0, .0, .0, .0, 2.0,622,311.0 +6.058666666666667,5,a-sust-i4,2023-24,Milton - Milton High,01890505, 0.0, .0, .0, .0, 4.5, .0, 4.5,1092,242.66666666666666 +4.408,4.41,a-sust-i4,2023-24,Milton - Tucker,01890020, 0.5, .5, .0, .0, .0, .0, 1.0,449,449.0 +4.964444444444444,4.96,a-sust-i4,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, .0, .0, 1.8, .0, .0, 1.8,683,379.44444444444446 +5.872,5,a-sust-i4,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.4, .5, .1, .0, .0, .0, 1.0,266,266.0 +6.626666666666666,5,a-sust-i4,2023-24,Mohawk Trail - Colrain Central,07170010, 0.3, .3, .1, .0, .0, .0, 0.6,103,171.66666666666669 +7.1140740740740736,5,a-sust-i4,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, .6, .6, 1.6, .0, .0, 2.7,299,110.74074074074073 +6.62,5,a-sust-i4,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.3, .5, .1, .0, .0, .0, 0.8,138,172.5 +6.808,5,a-sust-i4,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.7, .3, .0, .0, .0, .0, 1.0,149,149.0 +6.144,5,a-sust-i4,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 1.2, .8, .0, .0, .0, .0, 2.0,464,232.0 +6.597073170731707,5,a-sust-i4,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, .0, .9, 1.9, .0, 1.4, 4.1,719,175.3658536585366 +7.08,5,a-sust-i4,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, .8, 1.8, .0, .0, 1.0, 3.6,414,115.0 +6.452,5,a-sust-i4,2023-24,Monson - Granite Valley School,01910030, 0.8, .9, .2, .0, .0, .0, 2.0,387,193.5 +7.213333333333334,5,a-sust-i4,2023-24,Monson - Monson High School,01910505, 0.0, .0, 1.2, .3, 1.5, .0, 3.0,295,98.33333333333333 +7.0,5,a-sust-i4,2023-24,Monson - Quarry Hill Community School,01910010, 1.0, .0, .0, .0, .0, .0, 1.0,125,125.0 +-14.848,1,a-sust-i4,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, .0, .0, .0, .5, .0, 0.5,1428,2856.0 +6.691428571428571,5,a-sust-i4,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.6, .6, .2, .0, .0, .0, 1.4,229,163.57142857142858 +6.474482758620689,5,a-sust-i4,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, .0, .0, .3, 2.6, .0, 2.9,553,190.6896551724138 +6.673846153846155,5,a-sust-i4,2023-24,Mount Greylock - Williamstown Elementary,07150010, 1.0, .7, .3, .0, .6, .0, 2.6,431,165.76923076923077 +5.3552,5,a-sust-i4,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 1.6, 1.3, 1.1, 1.0, .0, .0, 5.0,1653,330.6 +2.04,2.04,a-sust-i4,2023-24,Nahant - Johnson,01960010, 0.1, .1, .0, .0, .0, .0, 0.2,149,745.0 +7.058666666666666,5,a-sust-i4,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, .0, 3.0, .0, .0, .0, 3.0,353,117.66666666666667 +6.412,5,a-sust-i4,2023-24,Nantucket - Nantucket Elementary,01970005, 2.0, .0, .0, .0, .0, .0, 2.0,397,198.5 +6.921818181818182,5,a-sust-i4,2023-24,Nantucket - Nantucket High,01970505, 0.0, .0, .0, 4.4, .0, .0, 4.4,593,134.77272727272725 +6.64,5,a-sust-i4,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 2.0, .0, .0, .0, .0, 2.0,340,170.0 +6.536,5,a-sust-i4,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, .6, 1.4, .0, .0, .0, 2.0,366,183.0 +6.0,5,a-sust-i4,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, .0, .1, .0, 1.7, .0, 1.9,475,250.0 +5.552,5,a-sust-i4,2023-24,Narragansett - Templeton Elementary School,07200020, 1.2, .8, .0, .0, .0, .0, 2.0,612,306.0 +6.461538461538462,5,a-sust-i4,2023-24,Nashoba - Center School,07250020, 1.0, 1.6, .0, .0, .0, .0, 2.6,500,192.3076923076923 +6.3017142857142865,5,a-sust-i4,2023-24,Nashoba - Florence Sawyer School,07250025, 0.8, 1.7, 1.0, .0, .0, .0, 3.5,743,212.28571428571428 +7.052,5,a-sust-i4,2023-24,Nashoba - Hale,07250310, 0.0, .0, 2.0, .0, .0, .0, 2.0,237,118.5 +6.755,5,a-sust-i4,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, .0, 1.6, .0, .0, .0, 1.6,249,155.625 +6.2438095238095235,5,a-sust-i4,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 1.1, .9, .0, .0, .0, .0, 2.1,461,219.52380952380952 +6.359024390243903,5,a-sust-i4,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, .0, .0, .9, 2.3, .9, 4.1,841,205.12195121951223 +5.18909090909091,5,a-sust-i4,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, .0, .0, 2.0, .0, .2, 2.2,773,351.3636363636363 +6.048,5,a-sust-i4,2023-24,Natick - Bennett-Hemenway,01980005, 1.2, .8, .0, .0, .0, .0, 2.0,488,244.0 +5.968,5,a-sust-i4,2023-24,Natick - Brown,01980010, 1.3, .7, .0, .0, .0, .0, 2.0,508,254.0 +6.973521126760563,5,a-sust-i4,2023-24,Natick - J F Kennedy Middle School,01980305, 0.0, 2.5, 4.5, .0, .0, .0, 7.1,911,128.3098591549296 +7.49,5,a-sust-i4,2023-24,Natick - Johnson,01980031, 0.2, .6, .0, .0, .0, .0, 0.8,51,63.75 +6.36,5,a-sust-i4,2023-24,Natick - Lilja Elementary,01980035, 1.3, .7, .0, .0, .0, .0, 2.0,410,205.0 +6.224,5,a-sust-i4,2023-24,Natick - Memorial,01980043, 1.2, .8, .0, .0, .0, .0, 2.0,444,222.0 +6.359529411764706,5,a-sust-i4,2023-24,Natick - Natick High,01980505, 0.0, .0, .0, 8.1, .0, .4, 8.5,1743,205.05882352941177 +7.2425316455696205,5,a-sust-i4,2023-24,Natick - Wilson Middle,01980310, 0.0, 2.1, 5.8, .0, .0, .0, 7.9,748,94.68354430379746 +7.030967741935484,5,a-sust-i4,2023-24,Nauset - Nauset Regional High,06600505, 0.0, .0, .0, 3.6, .0, 2.6, 6.2,751,121.12903225806451 +7.053658536585366,5,a-sust-i4,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, .0, 4.1, .0, .0, .0, 4.1,485,118.29268292682927 +6.011428571428572,5,a-sust-i4,2023-24,Needham - Broadmeadow,01990005, 1.0, 1.1, .0, .0, .0, .0, 2.1,522,248.57142857142856 +6.948235294117647,5,a-sust-i4,2023-24,Needham - High Rock School,01990410, 0.0, .0, 3.4, .0, .0, .0, 3.4,447,131.47058823529412 +6.392,5,a-sust-i4,2023-24,Needham - John Eliot,01990020, 1.0, 1.1, .0, .0, .0, .0, 2.0,402,201.0 +6.890940170940171,5,a-sust-i4,2023-24,Needham - Needham High,01990505, 0.0, .0, .0, 1.7, 2.2, 7.8, 11.7,1622,138.63247863247864 +6.138666666666667,5,a-sust-i4,2023-24,Needham - Newman Elementary,01990050, 1.4, 1.6, .0, .0, .0, .0, 3.0,698,232.66666666666666 +7.048648648648649,5,a-sust-i4,2023-24,Needham - Pollard Middle,01990405, 0.0, .0, 7.4, .0, .0, .0, 7.4,880,118.91891891891892 +6.23,5,a-sust-i4,2023-24,Needham - Sunita L. Williams Elementary,01990035, 1.0, 1.3, .0, .0, .0, .0, 2.4,531,221.25 +6.244,5,a-sust-i4,2023-24,Needham - William Mitchell,01990040, 1.0, 1.1, .0, .0, .0, .0, 2.0,439,219.5 +6.913015873015873,5,a-sust-i4,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 1.3, 1.2, 2.2, .6, .9, .0, 6.3,856,135.87301587301587 +5.44,5,a-sust-i4,2023-24,New Bedford - Abraham Lincoln,02010095, 1.0, 1.0, .0, .0, .0, .1, 2.1,672,320.0 +5.878260869565217,5,a-sust-i4,2023-24,New Bedford - Alfred J Gomes,02010063, 0.9, 1.4, .0, .0, .0, .0, 2.3,610,265.21739130434787 +6.752,5,a-sust-i4,2023-24,New Bedford - Betsey B Winslow,02010140, 0.4, 1.1, .0, .0, .0, .0, 1.5,234,156.0 +6.73,5,a-sust-i4,2023-24,New Bedford - Carlos Pacheco,02010105, 0.5, .4, .0, .0, .0, .8, 1.6,254,158.75 +6.455172413793103,5,a-sust-i4,2023-24,New Bedford - Casimir Pulaski,02010123, 1.3, 1.6, .0, .0, .0, .1, 2.9,560,193.10344827586206 +6.094545454545455,5,a-sust-i4,2023-24,New Bedford - Charles S Ashley,02010010, 0.4, .5, .0, .0, .0, .3, 1.1,262,238.18181818181816 +6.68,5,a-sust-i4,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.5, .9, .0, .0, .0, .2, 1.6,264,165.0 +5.822222222222223,5,a-sust-i4,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.4, .5, .0, .0, .0, .0, 0.9,245,272.22222222222223 +6.28923076923077,5,a-sust-i4,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.4, .6, .0, .0, .0, .3, 1.3,278,213.84615384615384 +5.2838095238095235,5,a-sust-i4,2023-24,New Bedford - Hayden/McFadden,02010078, 1.0, .7, .0, .0, .0, .3, 2.1,713,339.5238095238095 +6.297777777777777,5,a-sust-i4,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.7, .7, .0, .0, .0, .4, 1.8,383,212.77777777777777 +6.796,5,a-sust-i4,2023-24,New Bedford - James B Congdon,02010040, 1.1, .9, .0, .0, .0, .0, 2.0,301,150.5 +6.64,5,a-sust-i4,2023-24,New Bedford - Jireh Swift,02010130, 0.4, .8, .0, .0, .0, .1, 1.3,221,170.0 +6.944,5,a-sust-i4,2023-24,New Bedford - John Avery Parker,02010115, 1.0, 1.0, .0, .0, .0, .0, 2.0,264,132.0 +6.770526315789473,5,a-sust-i4,2023-24,New Bedford - John B Devalles,02010050, 1.0, .7, .0, .0, .0, .3, 1.9,292,153.6842105263158 +7.003428571428572,5,a-sust-i4,2023-24,New Bedford - Keith Middle School,02010405, 0.0, .0, 7.0, .0, .0, .0, 7.0,872,124.57142857142857 +5.399550561797752,5,a-sust-i4,2023-24,New Bedford - New Bedford High,02010505, 0.0, .0, .0, 8.4, .0, .5, 8.9,2893,325.0561797752809 +6.9215584415584415,5,a-sust-i4,2023-24,New Bedford - Normandin Middle School,02010410, 0.0, .0, 7.7, .0, .0, .0, 7.7,1038,134.80519480519482 +6.629565217391304,5,a-sust-i4,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, .0, 4.0, .0, .0, .6, 4.6,788,171.30434782608697 +5.664761904761905,5,a-sust-i4,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.8, 1.2, .0, .0, .0, .0, 2.1,613,291.90476190476187 +6.509090909090909,5,a-sust-i4,2023-24,New Bedford - Thomas R Rodman,02010125, 0.5, .5, .0, .0, .0, .1, 1.1,205,186.36363636363635 +7.47076923076923,5,a-sust-i4,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, .1, .2, .0, .0, 1.0, 1.3,86,66.15384615384615 +6.698181818181818,5,a-sust-i4,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, .0, .0, .9, .0, .3, 1.1,179,162.72727272727272 +5.912,5,a-sust-i4,2023-24,New Bedford - William H Taylor,02010135, 0.3, .2, .0, .0, .0, .5, 1.0,261,261.0 +2.16,2.16,a-sust-i4,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, .0, .0, .0, 1.0, .0, 1.0,730,730.0 +7.003636363636364,5,a-sust-i4,2023-24,New Salem-Wendell - Swift River,07280015, 0.6, .4, .1, .0, .0, .0, 1.1,137,124.54545454545453 +6.588235294117647,5,a-sust-i4,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, .9, .0, .0, .0, .8, 1.7,300,176.47058823529412 +5.584,5,a-sust-i4,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.8, .2, .0, .0, .0, 1.0, 2.0,604,302.0 +6.572727272727273,5,a-sust-i4,2023-24,Newburyport - Newburyport High,02040505, 0.0, .0, .0, .4, .0, 4.0, 4.4,785,178.4090909090909 +6.544615384615385,5,a-sust-i4,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, .0, 2.6, .0, .0, .0, 2.6,473,181.9230769230769 +6.464,5,a-sust-i4,2023-24,Newton - A E Angier,02070005, 0.0, .0, .0, .0, .0, 2.0, 2.0,384,192.0 +6.773333333333334,5,a-sust-i4,2023-24,Newton - Bigelow Middle,02070305, 0.0, .0, .0, .0, .0, 2.7, 2.7,414,153.33333333333331 +6.4222222222222225,5,a-sust-i4,2023-24,Newton - Bowen,02070015, 0.0, .0, .0, .0, .0, 1.8, 1.8,355,197.22222222222223 +6.4222222222222225,5,a-sust-i4,2023-24,Newton - C C Burr,02070020, 0.0, .0, .0, .0, .0, 1.8, 1.8,355,197.22222222222223 +6.288,5,a-sust-i4,2023-24,Newton - Cabot,02070025, 0.0, .0, .0, .0, .0, 2.0, 2.0,428,214.0 +6.048,5,a-sust-i4,2023-24,Newton - Charles E Brown Middle,02070310, 0.0, .0, .0, .0, .0, 3.0, 3.0,732,244.0 +6.4,5,a-sust-i4,2023-24,Newton - Countryside,02070040, 0.0, .0, .0, .0, .0, 1.8, 1.8,360,200.0 +6.6112,5,a-sust-i4,2023-24,Newton - F A Day Middle,02070315, 0.0, .0, .0, .0, .0, 5.0, 5.0,868,173.6 +7.069333333333334,5,a-sust-i4,2023-24,Newton - Franklin,02070055, 0.0, .0, .0, .0, .0, 3.0, 3.0,349,116.33333333333333 +6.484210526315789,5,a-sust-i4,2023-24,Newton - Horace Mann,02070075, 0.0, .0, .0, .0, .0, 1.9, 1.9,360,189.47368421052633 +7.057777777777777,5,a-sust-i4,2023-24,Newton - John Ward,02070120, 0.0, .0, .0, .0, .0, 1.8, 1.8,212,117.77777777777777 +6.542222222222223,5,a-sust-i4,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, .0, .0, .0, .0, 1.8, 1.8,328,182.22222222222223 +6.593684210526316,5,a-sust-i4,2023-24,Newton - Mason-Rice,02070080, 0.0, .0, .0, .0, .0, 1.9, 1.9,334,175.78947368421052 +6.446315789473684,5,a-sust-i4,2023-24,Newton - Memorial Spaulding,02070105, 0.0, .0, .0, .0, .0, 1.9, 1.9,369,194.21052631578948 +-Infinity,1,a-sust-i4,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, .0, .0, .0, .0, .0, 0.0,185,Infinity +6.197446808510638,5,a-sust-i4,2023-24,Newton - Newton North High,02070505, 0.0, .0, .0, .0, .0, 9.4, 9.4,2118,225.3191489361702 +6.091282051282051,5,a-sust-i4,2023-24,Newton - Newton South High,02070510, 0.0, .0, .0, .0, .0, 7.8, 7.8,1861,238.5897435897436 +6.272,5,a-sust-i4,2023-24,Newton - Oak Hill Middle,02070320, 0.0, .0, .0, .0, .0, 3.0, 3.0,648,216.0 +6.82,5,a-sust-i4,2023-24,Newton - Peirce,02070100, 0.0, .0, .0, .0, .0, 1.6, 1.6,236,147.5 +6.79,5,a-sust-i4,2023-24,Newton - Underwood,02070115, 0.0, .0, .0, .0, .0, 1.6, 1.6,242,151.25 +6.771428571428571,5,a-sust-i4,2023-24,Newton - Williams,02070125, 0.0, .0, .0, .0, .0, 1.4, 1.4,215,153.57142857142858 +6.404,5,a-sust-i4,2023-24,Newton - Zervas,02070130, 0.0, .0, .0, .0, .0, 2.0, 2.0,399,199.5 +6.477241379310345,5,a-sust-i4,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 2.0, .9, .0, .0, .0, 2.9,552,190.3448275862069 +5.698823529411765,5,a-sust-i4,2023-24,Norfolk - H Olive Day,02080015, 1.7, .0, .0, .0, .0, .0, 1.7,489,287.6470588235294 +-Infinity,1,a-sust-i4,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, .0, .0, .0, .0, .0, 0.0,586,Infinity +7.241739130434782,5,a-sust-i4,2023-24,North Adams - Brayton,02090035, 0.8, .6, .3, .0, .7, .0, 2.3,218,94.78260869565219 +7.116521739130435,5,a-sust-i4,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.9, .9, .3, .0, .3, .0, 2.3,254,110.43478260869566 +6.309090909090909,5,a-sust-i4,2023-24,North Adams - Drury High,02090505, 0.0, .0, .6, 1.3, .2, .0, 2.2,465,211.36363636363635 +7.060869565217391,5,a-sust-i4,2023-24,North Adams - Greylock,02090015, 0.9, .9, .3, .0, .3, .0, 2.3,270,117.3913043478261 +6.348,5,a-sust-i4,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 2.0, .0, .0, .0, .0, .0, 2.0,413,206.5 +5.92,5,a-sust-i4,2023-24,North Andover - Annie L Sargent School,02110018, 0.8, 1.0, .0, .0, .0, .0, 1.8,468,260.0 +6.065454545454546,5,a-sust-i4,2023-24,North Andover - Atkinson,02110001, 0.4, .7, .0, .0, .0, .0, 1.1,266,241.81818181818178 +6.1,5,a-sust-i4,2023-24,North Andover - Franklin,02110010, 0.7, .9, .0, .0, .0, .0, 1.6,380,237.5 +6.385454545454546,5,a-sust-i4,2023-24,North Andover - Kittredge,02110015, 0.4, .6, .0, .0, .0, .0, 1.1,222,201.8181818181818 +5.992727272727273,5,a-sust-i4,2023-24,North Andover - North Andover High,02110505, 0.0, .0, .0, .4, 5.2, .0, 5.5,1380,250.9090909090909 +6.3728,5,a-sust-i4,2023-24,North Andover - North Andover Middle,02110305, 0.0, .0, 5.0, .0, .0, .0, 5.0,1017,203.4 +5.886666666666666,5,a-sust-i4,2023-24,North Andover - Thomson,02110020, 0.5, .8, .0, .0, .0, .0, 1.2,317,264.1666666666667 +3.93,3.93,a-sust-i4,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.2, .3, .0, .0, .0, .3, 0.8,407,508.75 +5.44,5,a-sust-i4,2023-24,North Attleborough - Community,02120030, 0.3, .3, .0, .0, .0, .3, 0.9,288,320.0 +5.866666666666666,5,a-sust-i4,2023-24,North Attleborough - Falls,02120010, 0.3, .3, .0, .0, .0, .3, 0.9,240,266.6666666666667 +5.595555555555555,5,a-sust-i4,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.8, 1.0, .0, .0, .0, .0, 1.8,541,300.55555555555554 +6.123478260869565,5,a-sust-i4,2023-24,North Attleborough - North Attleboro High,02120505, 0.0, .0, .0, 4.6, .0, .0, 4.6,1079,234.56521739130437 +-Infinity,1,a-sust-i4,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, .0, .0, .0, .0, .0, 0.0,148,Infinity +6.072,5,a-sust-i4,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.0, .0, .8, .0, .0, 3.2, 4.0,964,241.0 +6.443076923076923,5,a-sust-i4,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.2, .3, .0, .0, .0, .8, 1.3,253,194.6153846153846 +6.007272727272728,5,a-sust-i4,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.3, .1, .1, .0, .5, .0, 1.1,274,249.09090909090907 +7.113333333333333,5,a-sust-i4,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, .0, 1.0, .0, .2, .0, 1.2,133,110.83333333333334 +5.986666666666666,5,a-sust-i4,2023-24,North Middlesex - Ashby Elementary,07350010, 0.4, .2, .0, .0, .0, .0, 0.6,151,251.66666666666669 +6.966857142857143,5,a-sust-i4,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.3, 2.2, .0, .0, .0, 3.5,452,129.14285714285714 +6.889142857142857,5,a-sust-i4,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.7, 1.8, .0, .0, .0, 3.5,486,138.85714285714286 +6.812549019607842,5,a-sust-i4,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, .0, .1, 5.0, .0, .0, 5.1,757,148.4313725490196 +6.3619047619047615,5,a-sust-i4,2023-24,North Middlesex - Spaulding Memorial,07350005, 1.5, .6, .0, .0, .0, .0, 2.1,430,204.76190476190476 +-Infinity,1,a-sust-i4,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, .0, .0, .0, .0, .0, 0.0,106,Infinity +5.552,5,a-sust-i4,2023-24,North Middlesex - Varnum Brook,07350035, 1.2, .9, .0, .0, .0, .0, 2.0,612,306.0 +6.693333333333333,5,a-sust-i4,2023-24,North Reading - E Ethel Little School,02170003, 0.9, .9, .0, .0, .0, .0, 1.8,294,163.33333333333334 +5.813333333333334,5,a-sust-i4,2023-24,North Reading - J Turner Hood,02170010, 0.8, .8, .0, .0, .0, .0, 1.5,410,273.3333333333333 +6.356363636363636,5,a-sust-i4,2023-24,North Reading - L D Batchelder,02170005, 1.2, 1.0, .0, .0, .0, .0, 2.2,452,205.45454545454544 +6.850232558139535,5,a-sust-i4,2023-24,North Reading - North Reading High,02170505, 0.0, .0, .0, 4.3, .0, .0, 4.3,618,143.72093023255815 +6.552,5,a-sust-i4,2023-24,North Reading - North Reading Middle,02170305, 0.0, .0, 3.0, .0, .0, .0, 3.0,543,181.0 +5.41,5,a-sust-i4,2023-24,Northampton - Bridge Street,02100005, 0.3, .5, .0, .0, .0, .0, 0.8,259,323.75 +6.16,5,a-sust-i4,2023-24,Northampton - Jackson Street,02100020, 0.5, .7, .0, .0, .0, .0, 1.2,276,230.0 +6.394074074074074,5,a-sust-i4,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.0, .0, 2.7, .0, .0, .0, 2.7,542,200.74074074074073 +5.978181818181818,5,a-sust-i4,2023-24,Northampton - Leeds,02100025, 0.4, .7, .0, .0, .0, .0, 1.1,278,252.72727272727272 +6.5488,5,a-sust-i4,2023-24,Northampton - Northampton High,02100505, 0.0, .0, .0, 5.0, .0, .0, 5.0,907,181.4 +5.928888888888888,5,a-sust-i4,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.4, .5, .0, .0, .0, .0, 0.9,233,258.88888888888886 +3.448,3.45,a-sust-i4,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, .0, .0, 1.0, .0, .0, 1.0,569,569.0 +6.231111111111112,5,a-sust-i4,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, .0, .0, .1, 5.3, .0, 5.4,1194,221.1111111111111 +6.682666666666667,5,a-sust-i4,2023-24,Northborough - Fannie E Proctor,02130015, 0.5, 1.0, .0, .0, .0, .0, 1.5,247,164.66666666666666 +6.672941176470588,5,a-sust-i4,2023-24,Northborough - Lincoln Street,02130003, 0.5, 1.2, .0, .0, .0, .0, 1.7,282,165.88235294117646 +6.501333333333333,5,a-sust-i4,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.5, 1.0, .0, .0, .0, .0, 1.5,281,187.33333333333334 +6.725,5,a-sust-i4,2023-24,Northborough - Marion E Zeh,02130020, 0.6, 1.0, .0, .0, .1, .0, 1.6,255,159.375 +6.76972972972973,5,a-sust-i4,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, .0, 3.7, .0, .0, .0, 3.7,569,153.78378378378378 +6.08,5,a-sust-i4,2023-24,Northbridge - Northbridge Elementary School,02140001, 2.2, 1.9, .0, .0, .0, .0, 4.0,960,240.0 +6.8175,5,a-sust-i4,2023-24,Northbridge - Northbridge High,02140505, 0.0, .0, .0, 3.0, .0, .2, 3.2,473,147.8125 +6.848,5,a-sust-i4,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, .0, 3.0, .0, .0, .0, 3.0,432,144.0 +-Infinity,1,a-sust-i4,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, .0, .0, .0, .0, .0, 0.0,1343,Infinity +-Infinity,1,a-sust-i4,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, .0, .0, .0, .0, .0, 0.0,520,Infinity +5.950769230769231,5,a-sust-i4,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 1.3, .0, .0, .0, .0, 1.3,333,256.15384615384613 +4.174545454545455,4.17,a-sust-i4,2023-24,Norton - J C Solmonese,02180015, 0.9, .3, .0, .0, .0, .0, 1.1,526,478.18181818181813 +5.796363636363636,5,a-sust-i4,2023-24,Norton - L G Nourse Elementary,02180010, 0.9, .2, .0, .0, .0, .0, 1.1,303,275.45454545454544 +6.2875,5,a-sust-i4,2023-24,Norton - Norton High,02180505, 0.0, .0, .0, .1, 2.4, .7, 3.2,685,214.0625 +6.055652173913043,5,a-sust-i4,2023-24,Norton - Norton Middle,02180305, 0.0, .0, 1.3, .0, .0, 1.0, 2.3,559,243.0434782608696 +5.595555555555555,5,a-sust-i4,2023-24,Norwell - Grace Farrar Cole,02190005, 0.8, 1.0, .0, .0, .0, .0, 1.8,541,300.55555555555554 +7.006666666666666,5,a-sust-i4,2023-24,Norwell - Norwell High,02190505, 0.0, .0, .0, 4.8, .0, .0, 4.8,596,124.16666666666667 +6.0,5,a-sust-i4,2023-24,Norwell - Norwell Middle School,02190405, 0.0, .0, 2.0, .0, .0, .0, 2.0,500,250.0 +5.626666666666666,5,a-sust-i4,2023-24,Norwell - William G Vinal,02190020, 0.8, 1.0, .0, .0, .0, .0, 1.8,534,296.6666666666667 +6.64,5,a-sust-i4,2023-24,Norwood - Balch,02200005, 0.6, .6, .0, .0, .0, .7, 1.8,306,170.0 +6.666666666666667,5,a-sust-i4,2023-24,Norwood - Charles J Prescott,02200025, 0.5, .5, .0, .0, .0, .5, 1.5,250,166.66666666666666 +6.662857142857143,5,a-sust-i4,2023-24,Norwood - Cornelius M Callahan,02200010, 0.4, .5, .0, .0, .0, .5, 1.4,234,167.14285714285717 +6.418,5,a-sust-i4,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, .0, 4.0, .0, .0, .0, 4.0,791,197.75 +6.665263157894737,5,a-sust-i4,2023-24,Norwood - F A Cleveland,02200015, 0.5, .8, .0, .0, .0, .7, 1.9,317,166.8421052631579 +4.248888888888889,4.25,a-sust-i4,2023-24,Norwood - George F. Willett,02200075, 0.9, .0, .0, .0, .0, .0, 0.9,422,468.88888888888886 +6.63,5,a-sust-i4,2023-24,Norwood - John P Oldham,02200020, 0.5, .6, .0, .0, .0, .6, 1.6,274,171.25 +6.6414285714285715,5,a-sust-i4,2023-24,Norwood - Norwood High,02200505, 0.0, .0, .0, 5.6, .0, .0, 5.6,951,169.82142857142858 +6.802857142857143,5,a-sust-i4,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.7, .7, .7, .0, .8, .0, 2.8,419,149.64285714285714 +-Infinity,1,a-sust-i4,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, .0, .0, .0, .0, .0, 0.0,549,Infinity +6.425806451612903,5,a-sust-i4,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.0, .0, .0, 2.0, 1.1, .0, 3.1,610,196.7741935483871 +6.850666666666667,5,a-sust-i4,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, .0, 3.0, .0, .0, .0, 3.0,431,143.66666666666666 +6.608,5,a-sust-i4,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 1.3, .8, .0, .0, .0, .0, 2.0,348,174.0 +5.908,5,a-sust-i4,2023-24,Orange - Fisher Hill School,02230010, 0.7, .4, .1, .0, .0, .8, 2.0,523,261.5 +7.188571428571429,5,a-sust-i4,2023-24,Orleans - Orleans Elementary,02240005, 0.5, .9, .0, .0, .0, .0, 1.4,142,101.42857142857143 +5.408,5,a-sust-i4,2023-24,Oxford - Alfred M Chaffee,02260010, 1.0, .0, .0, .0, .0, .0, 1.0,324,324.0 +4.79,4.79,a-sust-i4,2023-24,Oxford - Clara Barton,02260005, 0.0, .8, .0, .0, .0, .0, 0.8,321,401.25 +6.722758620689655,5,a-sust-i4,2023-24,Oxford - Oxford High,02260505, 0.0, .0, .0, .1, 1.0, 1.8, 2.9,463,159.6551724137931 +6.9,5,a-sust-i4,2023-24,Oxford - Oxford Middle,02260405, 0.0, .0, 2.8, .0, .0, .0, 2.8,385,137.5 +5.696,5,a-sust-i4,2023-24,Palmer - Old Mill Pond,02270008, 1.2, .8, .0, .0, .0, .0, 2.0,576,288.0 +6.928421052631579,5,a-sust-i4,2023-24,Palmer - Palmer High,02270505, 0.0, .0, 1.0, 2.8, .0, .0, 3.8,509,133.94736842105263 +5.142222222222222,5,a-sust-i4,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, .0, .0, 1.1, .7, .0, 1.8,643,357.22222222222223 +4.992,4.99,a-sust-i4,2023-24,Peabody - Captain Samuel Brown,02290005, 0.4, .6, .0, .0, .0, .0, 1.0,376,376.0 +5.673333333333333,5,a-sust-i4,2023-24,Peabody - Center,02290015, 0.2, .2, .0, .0, .0, .8, 1.2,349,290.83333333333337 +6.289333333333333,5,a-sust-i4,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, .0, 6.0, .0, .0, .0, 6.0,1283,213.83333333333334 +5.64,5,a-sust-i4,2023-24,Peabody - John E Burke,02290007, 0.5, .5, .0, .0, .0, .0, 1.0,295,295.0 +4.928,4.93,a-sust-i4,2023-24,Peabody - John E. McCarthy,02290016, 0.5, .5, .0, .0, .0, .0, 1.0,384,384.0 +5.386666666666666,5,a-sust-i4,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.1, .2, .0, .0, .0, .1, 0.3,98,326.6666666666667 +6.614634146341463,5,a-sust-i4,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, .0, .0, 3.2, .0, 5.0, 8.2,1420,173.1707317073171 +5.472,5,a-sust-i4,2023-24,Peabody - South Memorial,02290035, 0.3, .6, .0, .0, .0, .6, 1.5,474,316.0 +5.684,5,a-sust-i4,2023-24,Peabody - Thomas Carroll,02290010, 1.0, 1.0, .0, .0, .0, .0, 2.0,579,289.5 +5.784,5,a-sust-i4,2023-24,Peabody - West Memorial,02290045, 0.3, .3, .0, .0, .0, .5, 1.0,277,277.0 +5.624,5,a-sust-i4,2023-24,Peabody - William A Welch Sr,02290027, 0.6, .4, .0, .0, .0, .0, 1.0,297,297.0 +7.426666666666666,5,a-sust-i4,2023-24,Pelham - Pelham Elementary,02300005, 0.3, .3, .1, .0, 1.2, .0, 1.8,129,71.66666666666667 +6.5888,5,a-sust-i4,2023-24,Pembroke - Bryantville Elementary,02310003, 0.9, .8, .3, .0, .5, .0, 2.5,441,176.4 +6.7328,5,a-sust-i4,2023-24,Pembroke - Hobomock Elementary,02310010, 0.9, .9, .3, .0, .5, .0, 2.5,396,158.4 +6.384,5,a-sust-i4,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.9, .9, .3, .0, .5, .0, 2.5,505,202.0 +6.690909090909091,5,a-sust-i4,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, .0, 1.8, .0, .4, .0, 2.2,360,163.63636363636363 +6.494736842105263,5,a-sust-i4,2023-24,Pembroke - Pembroke High School,02310505, 0.0, .0, .0, 1.7, 1.3, .9, 3.8,715,188.1578947368421 +5.69,5,a-sust-i4,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.8, .0, .0, .0, .0, .0, 0.8,231,288.75 +6.37,5,a-sust-i4,2023-24,Pentucket - Dr John C Page School,07450015, 0.6, .8, .2, .0, .0, .0, 1.6,326,203.75 +5.928,5,a-sust-i4,2023-24,Pentucket - Elmer S Bagnall,07450005, 1.0, .8, .3, .0, .0, .0, 2.0,518,259.0 +6.366666666666666,5,a-sust-i4,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, .9, .3, .0, .0, .0, 1.2,245,204.16666666666669 +6.234666666666667,5,a-sust-i4,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, .0, .6, .0, .0, .9, 1.5,331,220.66666666666666 +6.086666666666666,5,a-sust-i4,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, .0, .0, .9, .0, 1.6, 2.4,574,239.16666666666669 +7.5744,5,a-sust-i4,2023-24,Petersham - Petersham Center,02340005, 1.1, 1.0, .4, .0, .0, .0, 2.5,133,53.2 +-Infinity,1,a-sust-i4,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, .0, .0, .0, .0, .0, 0.0,194,Infinity +-Infinity,1,a-sust-i4,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.0, .0, .0, .0, .0, .0, 0.0,114,Infinity +-Infinity,1,a-sust-i4,2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.0, .0, .0, .0, .0, .0, 0.0,159,Infinity +6.67404255319149,5,a-sust-i4,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 1.0, 1.2, 1.5, .3, .8, .0, 4.7,779,165.74468085106383 +6.258461538461539,5,a-sust-i4,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0.7, .3, .3, .0, 1.3, .0, 2.6,566,217.69230769230768 +6.726153846153846,5,a-sust-i4,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.6, .4, .2, .0, .0, .0, 1.3,207,159.23076923076923 +7.209411764705883,5,a-sust-i4,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.5, .9, .3, .0, .0, .0, 1.7,168,98.82352941176471 +7.228800000000001,5,a-sust-i4,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, .0, .7, 1.8, .0, .0, 2.5,241,96.4 +6.661818181818182,5,a-sust-i4,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.6, .9, .8, .5, .5, .0, 3.3,552,167.27272727272728 +7.772,5,a-sust-i4,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, .0, .2, .2, 13.5, .2, 14.0,399,28.5 +6.943157894736841,5,a-sust-i4,2023-24,Pittsfield - Allendale,02360010, 0.6, .7, .0, .0, .0, .5, 1.9,251,132.10526315789474 +6.902222222222223,5,a-sust-i4,2023-24,Pittsfield - Crosby,02360065, 0.8, .8, .0, .0, .0, .2, 1.8,247,137.22222222222223 +-Infinity,1,a-sust-i4,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, .0, .0, .0, .0, .0, 0.0,21,Infinity +7.76,5,a-sust-i4,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, .0, .0, .0, .5, .5, 1.0,30,30.0 +6.529523809523809,5,a-sust-i4,2023-24,Pittsfield - Egremont,02360035, 1.0, 1.0, .0, .0, .0, .1, 2.1,386,183.8095238095238 +7.32,5,a-sust-i4,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, .0, 4.6, .0, .1, .6, 5.2,442,85.0 +6.296470588235294,5,a-sust-i4,2023-24,Pittsfield - Morningside Community School,02360055, 0.9, .7, .0, .0, .0, .1, 1.7,362,212.94117647058823 +6.965714285714285,5,a-sust-i4,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, .0, .0, .8, 2.5, 2.2, 5.6,724,129.2857142857143 +6.632727272727273,5,a-sust-i4,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.5, .5, .0, .0, .0, .1, 1.1,188,170.9090909090909 +6.84,5,a-sust-i4,2023-24,Pittsfield - Silvio O Conte Community,02360105, 1.1, .9, .0, .0, .0, .4, 2.4,348,145.0 +6.95,5,a-sust-i4,2023-24,Pittsfield - Stearns,02360090, 0.6, .5, .0, .0, .0, .4, 1.6,210,131.25 +6.6,5,a-sust-i4,2023-24,Pittsfield - Taconic High,02360510, 0.0, .0, .0, .2, 2.8, 2.0, 5.0,875,175.0 +7.150399999999999,5,a-sust-i4,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, .0, 4.0, .0, .0, 1.0, 5.0,531,106.2 +6.608,5,a-sust-i4,2023-24,Pittsfield - Williams,02360100, 0.6, .6, .0, .0, .0, .4, 1.5,261,174.0 +5.665454545454546,5,a-sust-i4,2023-24,Plainville - Anna Ware Jackson,02380010, 1.1, .0, .0, .0, .0, .0, 1.1,321,291.8181818181818 +6.2057142857142855,5,a-sust-i4,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, .7, .3, .0, .4, .0, 1.4,314,224.2857142857143 +7.296,5,a-sust-i4,2023-24,Plymouth - Cold Spring,02390005, 1.0, 1.5, .0, .0, .0, .0, 2.5,220,88.0 +6.723333333333333,5,a-sust-i4,2023-24,Plymouth - Federal Furnace School,02390011, 1.0, 1.4, .0, .0, .0, .0, 2.4,383,159.58333333333334 +6.91,5,a-sust-i4,2023-24,Plymouth - Hedge,02390010, 0.6, 1.1, .0, .0, .0, .0, 1.6,218,136.25 +6.758857142857143,5,a-sust-i4,2023-24,Plymouth - Indian Brook,02390012, 1.7, 1.8, .0, .0, .0, .0, 3.5,543,155.14285714285714 +6.96,5,a-sust-i4,2023-24,Plymouth - Manomet Elementary,02390015, 0.8, 1.3, .0, .0, .0, .0, 2.1,273,130.0 +6.615172413793103,5,a-sust-i4,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 1.1, 1.8, .0, .0, .0, .0, 2.9,502,173.10344827586206 +6.838666666666667,5,a-sust-i4,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, .0, 6.0, .0, .0, .0, 6.0,871,145.16666666666666 +-Infinity,1,a-sust-i4,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, .0, .0, .0, .0, .0, 0.0,219,Infinity +6.081538461538462,5,a-sust-i4,2023-24,Plymouth - Plymouth North High,02390505, 0.0, .0, .0, 4.2, .0, 1.0, 5.2,1247,239.8076923076923 +5.707428571428571,5,a-sust-i4,2023-24,Plymouth - Plymouth South High,02390515, 0.0, .0, .0, 3.5, .0, .0, 3.5,1003,286.57142857142856 +6.79,5,a-sust-i4,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, .0, 4.0, .0, .0, .0, 4.0,605,151.25 +6.642162162162163,5,a-sust-i4,2023-24,Plymouth - South Elementary,02390046, 1.8, 1.7, .0, .0, .0, .3, 3.7,628,169.7297297297297 +6.944615384615385,5,a-sust-i4,2023-24,Plymouth - West Elementary,02390047, 1.2, 1.4, .0, .0, .0, .0, 2.6,343,131.9230769230769 +5.976,5,a-sust-i4,2023-24,Plympton - Dennett Elementary,02400010, 0.4, .4, .1, .0, .1, .0, 1.0,253,253.0 +5.554666666666666,5,a-sust-i4,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, .0, .3, .6, 2.2, .0, 3.0,917,305.6666666666667 +7.501818181818182,5,a-sust-i4,2023-24,Provincetown - Provincetown Schools,02420020, 0.8, .6, .2, .0, .4, .2, 2.2,137,62.272727272727266 +6.488,5,a-sust-i4,2023-24,Quabbin - Hardwick Elementary,07530005, 0.6, .5, .0, .0, .0, .0, 1.0,189,189.0 +4.4228571428571435,4.42,a-sust-i4,2023-24,Quabbin - Hubbardston Center,07530010, 0.4, .4, .0, .0, .0, .0, 0.7,313,447.14285714285717 +-Infinity,1,a-sust-i4,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, .0, .0, .0, .0, .0, 0.0,35,Infinity +6.217142857142857,5,a-sust-i4,2023-24,Quabbin - Oakham Center,07530025, 0.3, .4, .0, .0, .0, .0, 0.7,156,222.85714285714286 +6.536774193548387,5,a-sust-i4,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, .0, .0, 3.1, .0, .0, 3.1,567,182.90322580645162 +2.73,2.73,a-sust-i4,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, .0, .7, .0, .0, .1, 0.8,527,658.75 +4.952,4.95,a-sust-i4,2023-24,Quabbin - Ruggles Lane,07530030, 0.5, .5, .0, .0, .0, .0, 1.0,381,381.0 +-Infinity,1,a-sust-i4,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, .0, .0, .0, .0, .0, 0.0,53,Infinity +6.689523809523809,5,a-sust-i4,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, .0, .0, .0, 2.1, .0, 2.1,344,163.8095238095238 +6.64,5,a-sust-i4,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, .0, 1.0, .0, .0, .0, 1.0,170,170.0 +5.544,5,a-sust-i4,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.5, .4, .1, .0, .0, .0, 1.0,307,307.0 +6.048,5,a-sust-i4,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.4, .4, .1, .0, .0, .0, 1.0,244,244.0 +-Infinity,1,a-sust-i4,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, .0, .0, .0, .0, .0, 0.0,170,Infinity +6.4738461538461545,5,a-sust-i4,2023-24,Quincy - Atherton Hough,02430040, 0.4, .8, .0, .0, .0, .2, 1.3,248,190.76923076923077 +6.208,5,a-sust-i4,2023-24,Quincy - Atlantic Middle,02430305, 0.0, .0, 2.5, .0, .0, .0, 2.5,560,224.0 +5.74,5,a-sust-i4,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.6, .7, .0, .0, .0, .0, 1.2,339,282.5 +6.503529411764706,5,a-sust-i4,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, .0, .9, .0, .0, .8, 1.7,318,187.05882352941177 +5.766666666666666,5,a-sust-i4,2023-24,Quincy - Central Middle,02430315, 0.0, .0, 1.4, .0, .0, 1.0, 2.4,670,279.1666666666667 +5.570909090909091,5,a-sust-i4,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.5, .7, .0, .0, .0, .0, 1.1,334,303.6363636363636 +5.355,5,a-sust-i4,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0.9, .7, .0, .0, .0, .0, 1.6,529,330.625 +5.932307692307693,5,a-sust-i4,2023-24,Quincy - Francis W Parker,02430075, 0.0, .2, .0, .0, .0, 1.1, 1.3,336,258.46153846153845 +5.331764705882353,5,a-sust-i4,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, .1, .0, .0, .0, 1.6, 1.7,567,333.5294117647059 +5.448,5,a-sust-i4,2023-24,Quincy - Merrymount,02430060, 0.4, .6, .0, .0, .0, .0, 1.0,319,319.0 +5.483076923076924,5,a-sust-i4,2023-24,Quincy - Montclair,02430065, 0.2, .5, .0, .0, .0, .6, 1.3,409,314.6153846153846 +3.9786666666666664,3.98,a-sust-i4,2023-24,Quincy - North Quincy High,02430510, 0.0, .0, .0, 1.2, .0, 1.7, 3.0,1508,502.6666666666667 +6.6944,5,a-sust-i4,2023-24,Quincy - Point Webster Middle,02430325, 0.0, .1, .4, .0, .0, 2.0, 2.5,408,163.2 +5.817777777777778,5,a-sust-i4,2023-24,Quincy - Quincy High,02430505, 0.0, .0, .0, 2.6, .0, 2.8, 5.4,1473,272.77777777777777 +6.271111111111112,5,a-sust-i4,2023-24,Quincy - Snug Harbor Community School,02430090, 0.6, .4, .0, .0, .0, .8, 1.8,389,216.11111111111111 +6.5824,5,a-sust-i4,2023-24,Quincy - South West Middle School,02430320, 0.0, .5, 1.9, .0, .0, .1, 2.5,443,177.2 +5.6,5,a-sust-i4,2023-24,Quincy - Squantum,02430095, 0.3, .3, .0, .0, .0, .6, 1.2,360,300.0 +6.2,5,a-sust-i4,2023-24,Quincy - Wollaston School,02430110, 0.1, .7, .0, .0, .0, .6, 1.4,315,225.00000000000003 +6.24695652173913,5,a-sust-i4,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, .0, .6, .1, 1.6, .0, 2.3,504,219.13043478260872 +6.771764705882354,5,a-sust-i4,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.6, .6, .0, .0, .4, .0, 1.7,261,153.52941176470588 +6.1,5,a-sust-i4,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.9, .6, .0, .0, .5, .0, 2.0,475,237.5 +6.6944,5,a-sust-i4,2023-24,Randolph - Margaret L Donovan,02440015, 1.1, 1.1, .0, .0, .3, .0, 2.5,408,163.2 +6.777777777777778,5,a-sust-i4,2023-24,Randolph - Martin E Young Elementary,02440040, 0.6, .6, .0, .0, .6, .0, 1.8,275,152.77777777777777 +6.394666666666667,5,a-sust-i4,2023-24,Randolph - Randolph Community Middle,02440410, 0.0, .0, 2.9, .0, .1, .0, 3.0,602,200.66666666666666 +6.7352380952380955,5,a-sust-i4,2023-24,Randolph - Randolph High,02440505, 0.0, .0, .0, .0, 4.2, .0, 4.2,664,158.0952380952381 +6.22,5,a-sust-i4,2023-24,Reading - Alice M Barrows,02460002, 0.8, .8, .0, .0, .0, .0, 1.6,356,222.5 +6.534545454545455,5,a-sust-i4,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, .0, 1.3, .0, .0, .9, 2.2,403,183.18181818181816 +6.254117647058823,5,a-sust-i4,2023-24,Reading - Birch Meadow,02460005, 0.8, 1.0, .0, .0, .0, .0, 1.7,371,218.23529411764707 +6.316,5,a-sust-i4,2023-24,Reading - J Warren Killam,02460017, 1.1, 1.0, .0, .0, .0, .0, 2.0,421,210.5 +5.9093333333333335,5,a-sust-i4,2023-24,Reading - Joshua Eaton,02460010, 0.8, .8, .0, .0, .0, .0, 1.5,392,261.3333333333333 +3.6,3.6,a-sust-i4,2023-24,Reading - RISE PreSchool,02460001, 0.2, .0, .0, .0, .0, .0, 0.2,110,550.0 +5.628108108108108,5,a-sust-i4,2023-24,Reading - Reading Memorial High,02460505, 0.0, .0, .0, 3.3, .0, .5, 3.7,1097,296.48648648648646 +6.612307692307692,5,a-sust-i4,2023-24,Reading - Walter S Parker Middle,02460310, 0.0, .0, 1.4, .0, .0, 1.2, 2.6,451,173.46153846153845 +6.008,5,a-sust-i4,2023-24,Reading - Wood End Elementary School,02460020, 0.5, .5, .0, .0, .0, .0, 1.0,249,249.0 +5.264,5,a-sust-i4,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.9, 1.1, .0, .0, .0, .0, 2.0,684,342.0 +5.584,5,a-sust-i4,2023-24,Revere - Abraham Lincoln,02480025, 1.0, 1.0, .0, .0, .0, .0, 2.0,604,302.0 +5.987692307692307,5,a-sust-i4,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.7, .5, .0, .0, .0, .0, 1.3,327,251.53846153846152 +6.256,5,a-sust-i4,2023-24,Revere - CityLab Innovation High School,02480520, 0.0, .0, .0, .0, .5, .0, 0.5,109,218.0 +5.24,5,a-sust-i4,2023-24,Revere - Garfield Elementary School,02480056, 1.0, 1.0, .0, .0, .0, .0, 2.0,690,345.0 +7.094399999999999,5,a-sust-i4,2023-24,Revere - Garfield Middle School,02480057, 0.0, .0, 3.5, .0, 1.5, .0, 5.0,566,113.2 +6.132,5,a-sust-i4,2023-24,Revere - Paul Revere,02480050, 1.1, .9, .0, .0, .0, .0, 2.0,467,233.5 +6.28734693877551,5,a-sust-i4,2023-24,Revere - Revere High,02480505, 0.0, .0, .0, 1.0, 8.1, .7, 9.8,2098,214.0816326530612 +7.201379310344828,5,a-sust-i4,2023-24,Revere - Rumney Marsh Academy,02480014, 0.0, .0, 4.8, .0, 1.0, .0, 5.8,579,99.82758620689656 +6.261333333333333,5,a-sust-i4,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 1.4, 1.6, .0, .0, .0, .0, 3.0,652,217.33333333333334 +7.0912,5,a-sust-i4,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.0, .0, 4.0, .0, 1.0, .0, 5.0,568,113.6 +7.368,5,a-sust-i4,2023-24,Richmond - Richmond Consolidated,02490005, 0.7, .7, .5, .0, .0, .0, 2.0,158,79.0 +7.267058823529411,5,a-sust-i4,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 1.0, 2.0, .0, 3.8, .0, 6.8,623,91.61764705882354 +7.28,5,a-sust-i4,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.9, 1.1, 1.0, .0, .0, .2, 3.2,288,90.0 +7.012,5,a-sust-i4,2023-24,Rochester - Rochester Memorial,02500005, 1.9, 1.4, .6, .0, .0, .0, 4.0,494,123.5 +6.492972972972973,5,a-sust-i4,2023-24,Rockland - John W Rogers Middle,02510305, 0.0, .5, 1.4, .0, .0, 1.9, 3.7,697,188.37837837837836 +5.44,5,a-sust-i4,2023-24,Rockland - Phelps Elementary School,02510060, 0.5, .5, .0, .0, .0, 1.0, 2.0,640,320.0 +7.096,5,a-sust-i4,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 1.0, .0, .0, .0, .0, 1.0, 2.0,226,113.0 +6.076666666666666,5,a-sust-i4,2023-24,Rockland - Rockland Senior High,02510505, 0.0, .0, .0, 1.9, .0, .5, 2.4,577,240.41666666666669 +6.912,5,a-sust-i4,2023-24,Rockport - Rockport Elementary,02520005, 1.1, .8, .0, .0, .0, .0, 2.0,272,136.0 +7.213913043478261,5,a-sust-i4,2023-24,Rockport - Rockport High,02520510, 0.0, .0, .0, 1.9, .0, .4, 2.3,226,98.2608695652174 +7.487407407407407,5,a-sust-i4,2023-24,Rockport - Rockport Middle,02520305, 0.0, .0, 2.2, .0, .0, .5, 2.7,173,64.07407407407408 +7.743157894736842,5,a-sust-i4,2023-24,Rowe - Rowe Elementary,02530005, 0.8, .8, .3, .0, .0, .0, 1.9,61,32.10526315789474 +-0.27636363636363603,1,a-sust-i4,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, .0, 1.1, .0, .0, .0, 1.1,1138,1034.5454545454545 +6.975483870967742,5,a-sust-i4,2023-24,Salem - Bates,02580003, 1.6, 1.5, .0, .0, .0, .0, 3.1,397,128.06451612903226 +7.018181818181818,5,a-sust-i4,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.6, 1.4, .0, .0, .0, .3, 2.2,270,122.72727272727272 +7.153333333333333,5,a-sust-i4,2023-24,Salem - Carlton,02580015, 1.4, .7, .0, .0, .0, .3, 2.4,254,105.83333333333334 +7.019607843137255,5,a-sust-i4,2023-24,Salem - Collins Middle,02580305, 0.0, .0, 4.6, .0, .0, .4, 5.1,625,122.54901960784315 +6.932173913043478,5,a-sust-i4,2023-24,Salem - Horace Mann Laboratory,02580030, 0.9, 1.4, .0, .0, .0, .1, 2.3,307,133.47826086956522 +-Infinity,1,a-sust-i4,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, .0, .0, .0, .0, .0, 0.0,45,Infinity +-Infinity,1,a-sust-i4,2023-24,Salem - Salem Early Childhood,02580001, 0.0, .0, .0, .0, .0, .0, 0.0,112,Infinity +6.645714285714285,5,a-sust-i4,2023-24,Salem - Salem High,02580505, 0.0, .0, .0, 5.0, .0, .6, 5.6,948,169.2857142857143 +6.64,5,a-sust-i4,2023-24,Salem - Salem Prep High School,02580515, 0.0, .0, .0, .1, .0, .0, 0.1,17,170.0 +6.7,5,a-sust-i4,2023-24,Salem - Saltonstall School,02580050, 0.5, .9, .8, .0, .0, .2, 2.4,390,162.5 +7.271836734693878,5,a-sust-i4,2023-24,Salem - Witchcraft Heights,02580070, 1.7, 1.9, .0, .0, .0, 1.4, 4.9,446,91.0204081632653 +5.831111111111111,5,a-sust-i4,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, .0, .0, .0, .0, 1.8, 1.8,488,271.1111111111111 +5.828,5,a-sust-i4,2023-24,Sandwich - Forestdale School,02610002, 2.0, .0, .0, .0, .0, .0, 2.0,543,271.5 +5.8431999999999995,5,a-sust-i4,2023-24,Sandwich - Oak Ridge,02610025, 0.0, 2.0, .5, .0, .0, .0, 2.5,674,269.6 +6.823225806451613,5,a-sust-i4,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, .0, 2.4, .0, 3.9, .0, 6.2,912,147.09677419354838 +5.866666666666666,5,a-sust-i4,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.8, 2.3, .0, .0, .0, .0, 3.0,800,266.6666666666667 +6.1825,5,a-sust-i4,2023-24,Saugus - Saugus High,02620505, 0.0, .0, .0, 3.2, .0, .0, 3.2,727,227.1875 +6.589714285714286,5,a-sust-i4,2023-24,Saugus - Saugus Middle School,02620305, 0.0, .0, 3.5, .0, .0, .0, 3.5,617,176.28571428571428 +6.379130434782608,5,a-sust-i4,2023-24,Saugus - Veterans Early Learning Center,02620065, 2.3, .0, .0, .0, .0, .0, 2.3,466,202.60869565217394 +7.812,5,a-sust-i4,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.9, .9, .3, .0, .0, .0, 2.0,47,23.5 +6.165,5,a-sust-i4,2023-24,Scituate - Cushing Elementary,02640007, 0.8, .7, .0, .0, .0, .1, 1.6,367,229.375 +7.345066666666667,5,a-sust-i4,2023-24,Scituate - Gates Middle School,02640305, 0.0, .0, 5.8, .0, .0, 1.7, 7.5,614,81.86666666666666 +6.461538461538462,5,a-sust-i4,2023-24,Scituate - Hatherly Elementary,02640010, 0.4, .8, .0, .0, .0, .1, 1.3,250,192.3076923076923 +6.511111111111111,5,a-sust-i4,2023-24,Scituate - Jenkins Elementary School,02640015, 0.9, .9, .0, .0, .0, .1, 1.8,335,186.11111111111111 +6.8016000000000005,5,a-sust-i4,2023-24,Scituate - Scituate High School,02640505, 0.0, .0, .0, 3.7, .0, 1.3, 5.0,749,149.8 +5.976470588235293,5,a-sust-i4,2023-24,Scituate - Wampatuck Elementary,02640020, 0.8, .8, .0, .0, .0, .1, 1.7,430,252.94117647058823 +5.944,5,a-sust-i4,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, .0, 2.0, .0, .0, .0, 2.0,514,257.0 +6.216,5,a-sust-i4,2023-24,Seekonk - George R Martin,02650007, 1.0, 1.0, .0, .0, .0, .0, 2.0,446,223.0 +6.0,5,a-sust-i4,2023-24,Seekonk - Mildred Aitken School,02650015, 1.3, .9, .0, .0, .0, .0, 2.3,575,250.00000000000003 +6.613333333333333,5,a-sust-i4,2023-24,Seekonk - Seekonk High,02650505, 0.0, .0, .0, 3.0, .0, .0, 3.0,520,173.33333333333334 +-Infinity,1,a-sust-i4,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, .0, .0, .0, .0, .0, 0.0,6,Infinity +6.536666666666666,5,a-sust-i4,2023-24,Sharon - Cottage Street,02660005, 0.8, 1.6, .0, .0, .0, .0, 2.4,439,182.91666666666669 +6.614285714285714,5,a-sust-i4,2023-24,Sharon - East Elementary,02660010, 1.0, 1.8, .0, .0, .0, .0, 2.8,485,173.21428571428572 +6.451428571428572,5,a-sust-i4,2023-24,Sharon - Heights Elementary,02660015, 1.0, 1.8, .0, .0, .0, .0, 2.8,542,193.57142857142858 +-Infinity,1,a-sust-i4,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, .0, .0, .0, .0, .0, 0.0,31,Infinity +6.585,5,a-sust-i4,2023-24,Sharon - Sharon High,02660505, 0.0, .0, .0, .1, 6.3, .0, 6.4,1132,176.875 +6.867368421052632,5,a-sust-i4,2023-24,Sharon - Sharon Middle,02660305, 0.0, .0, 5.7, .0, .0, .0, 5.7,807,141.57894736842104 +-Infinity,1,a-sust-i4,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, .0, .0, .0, .0, .0, 0.0,1306,Infinity +6.217777777777777,5,a-sust-i4,2023-24,Sherborn - Pine Hill,02690010, 0.9, .9, .0, .0, .0, .0, 1.8,401,222.77777777777777 +6.354285714285714,5,a-sust-i4,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.8, .6, .0, .0, .0, .0, 1.4,288,205.71428571428572 +6.332307692307692,5,a-sust-i4,2023-24,Shrewsbury - Floral Street School,02710020, 1.5, 1.1, .0, .0, .0, .0, 2.6,542,208.46153846153845 +6.72,5,a-sust-i4,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 2.0, 1.7, .0, .0, .0, .0, 3.8,608,160.0 +4.863333333333333,4.86,a-sust-i4,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, .0, 2.4, .0, .0, .0, 2.4,941,392.08333333333337 +-Infinity,1,a-sust-i4,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, .0, .0, .0, .0, .0, 0.0,199,Infinity +6.615849056603773,5,a-sust-i4,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 2.5, 2.8, .0, .0, .0, 5.3,917,173.0188679245283 +5.821449275362319,5,a-sust-i4,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, .0, .0, .3, 6.6, .0, 6.9,1879,272.3188405797101 +6.417142857142857,5,a-sust-i4,2023-24,Shrewsbury - Spring Street School,02710035, 0.8, .6, .0, .0, .0, .0, 1.4,277,197.85714285714286 +6.457142857142857,5,a-sust-i4,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.7, .7, .0, .0, .0, .0, 1.4,270,192.85714285714286 +6.89,5,a-sust-i4,2023-24,Shutesbury - Shutesbury Elementary,02720005, 0.4, .3, .1, .0, .0, .0, 0.8,111,138.75 +6.045714285714286,5,a-sust-i4,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.0, .0, .0, .0, 4.0, .2, 4.2,1026,244.28571428571428 +6.3914285714285715,5,a-sust-i4,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, .0, 1.8, .0, 1.0, .0, 2.8,563,201.07142857142858 +6.728421052631579,5,a-sust-i4,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, .0, .8, 1.1, .0, .0, 1.9,302,158.94736842105263 +5.781818181818182,5,a-sust-i4,2023-24,Somerset - Chace Street,02730005, 0.2, .7, .0, .0, .0, .3, 1.1,305,277.27272727272725 +5.525333333333334,5,a-sust-i4,2023-24,Somerset - North Elementary,02730008, 0.8, .4, .0, .0, .0, .3, 1.5,464,309.3333333333333 +7.094399999999999,5,a-sust-i4,2023-24,Somerset - Somerset Middle School,02730305, 0.0, .0, 5.0, .0, .0, .0, 5.0,566,113.2 +6.387692307692308,5,a-sust-i4,2023-24,Somerset - South,02730015, 0.3, .6, .0, .0, .0, .4, 1.3,262,201.53846153846152 +6.88695652173913,5,a-sust-i4,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, .0, .0, 6.9, .0, .0, 6.9,960,139.1304347826087 +6.843076923076923,5,a-sust-i4,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 1.4, 1.0, 1.3, .0, .0, .1, 3.9,564,144.6153846153846 +3.14,3.14,a-sust-i4,2023-24,Somerville - Arthur D Healey,02740075, 0.3, .3, .3, .0, .0, .0, 0.8,486,607.5 +6.8,5,a-sust-i4,2023-24,Somerville - Benjamin G Brown,02740015, 0.7, .8, .0, .0, .0, .0, 1.5,225,150.0 +4.933333333333333,4.93,a-sust-i4,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.6, .0, .0, .0, .0, .0, 0.6,230,383.33333333333337 +6.018666666666667,5,a-sust-i4,2023-24,Somerville - E Somerville Community,02740111, 0.9, .8, 1.1, .0, .0, .1, 3.0,743,247.66666666666666 +7.698823529411765,5,a-sust-i4,2023-24,Somerville - Full Circle High School,02740510, 0.0, .0, .0, .0, .0, 1.7, 1.7,64,37.64705882352941 +6.293333333333334,5,a-sust-i4,2023-24,Somerville - John F Kennedy,02740083, 0.5, .6, 1.0, .0, .0, .0, 2.1,448,213.33333333333331 +7.930666666666666,5,a-sust-i4,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, .0, .0, .0, .0, 1.5, 1.5,13,8.666666666666666 +6.751818181818182,5,a-sust-i4,2023-24,Somerville - Somerville High,02740505, 0.0, .0, .0, 8.3, .0, .5, 8.8,1373,156.02272727272725 +5.984,5,a-sust-i4,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.6, .6, .2, .0, .0, .0, 1.5,378,252.0 +7.051764705882353,5,a-sust-i4,2023-24,Somerville - Winter Hill Community,02740120, 0.5, .5, 2.3, .0, .0, .1, 3.4,403,118.52941176470588 +5.848421052631578,5,a-sust-i4,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, .0, 1.9, .0, .0, .0, 1.9,511,268.94736842105266 +6.08,5,a-sust-i4,2023-24,South Hadley - Mosier,02780020, 0.6, .9, .0, .0, .0, .0, 1.5,360,240.0 +5.88,5,a-sust-i4,2023-24,South Hadley - Plains Elementary,02780015, 1.0, .0, .0, .0, .0, .0, 1.0,265,265.0 +6.494814814814815,5,a-sust-i4,2023-24,South Hadley - South Hadley High,02780505, 0.0, .0, .0, .6, 1.9, .2, 2.7,508,188.14814814814812 +5.419259259259259,5,a-sust-i4,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, .0, .0, .3, 2.4, .0, 2.7,871,322.59259259259255 +3.78,3.78,a-sust-i4,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, .0, .0, .0, .0, 2.0, 2.0,1055,527.5 +-Infinity,1,a-sust-i4,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, .0, .0, .0, .0, .0, 0.0,667,Infinity +6.116,5,a-sust-i4,2023-24,Southampton - William E Norris,02750005, 0.9, .8, .3, .0, .0, .0, 2.0,471,235.5 +6.682666666666667,5,a-sust-i4,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.3, .8, .0, .0, .5, .0, 1.5,247,164.66666666666666 +7.24,5,a-sust-i4,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 2.9, .0, .0, .1, .0, 3.0,285,95.0 +6.053333333333333,5,a-sust-i4,2023-24,Southborough - Mary E Finn School,02760008, 1.5, .0, .0, .0, .0, .0, 1.5,365,243.33333333333334 +6.794074074074074,5,a-sust-i4,2023-24,Southborough - P Brent Trottier,02760305, 0.0, .0, 2.2, .0, .5, .0, 2.7,407,150.74074074074073 +7.1292307692307695,5,a-sust-i4,2023-24,Southbridge - Charlton Street,02770005, 0.8, 1.9, .0, .0, .0, .0, 2.6,283,108.84615384615384 +6.62,5,a-sust-i4,2023-24,Southbridge - Eastford Road,02770010, 2.0, .0, .0, .0, .0, .0, 2.0,345,172.5 +7.712,5,a-sust-i4,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, .0, .0, .0, .0, 1.0, 1.0,36,36.0 +6.937142857142857,5,a-sust-i4,2023-24,Southbridge - Southbridge High School,02770515, 0.0, .0, .0, 2.0, .0, 1.5, 3.5,465,132.85714285714286 +6.6304,5,a-sust-i4,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, .0, 1.0, .0, .0, 1.5, 2.5,428,171.2 +6.688,5,a-sust-i4,2023-24,Southbridge - West Street,02770020, 0.3, .7, .0, .0, .0, 1.0, 2.0,328,164.0 +-Infinity,1,a-sust-i4,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, .0, .0, .0, .0, .0, 0.0,1597,Infinity +7.27483870967742,5,a-sust-i4,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, .0, 1.1, 2.0, .0, .0, 3.1,281,90.64516129032258 +7.133333333333333,5,a-sust-i4,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.3, .3, .0, .0, .0, .0, 0.6,65,108.33333333333334 +-Infinity,1,a-sust-i4,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, .0, .0, .0, .0, .0, 0.0,11,Infinity +7.020952380952381,5,a-sust-i4,2023-24,Southern Berkshire - Undermountain,07650035, 0.7, 1.4, .0, .0, .0, .0, 2.1,257,122.38095238095238 +-Infinity,1,a-sust-i4,2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, .0, .0, .0, .0, .0, 0.0,1193,Infinity +6.827692307692308,5,a-sust-i4,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.1, 1.8, .7, .0, .0, .0, 2.6,381,146.53846153846155 +6.511515151515152,5,a-sust-i4,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, .0, .9, 2.4, .0, .0, 3.3,614,186.06060606060606 +6.72,5,a-sust-i4,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 2.0, .0, .0, .0, .0, .0, 2.0,320,160.0 +6.234666666666667,5,a-sust-i4,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0.0, .0, .0, .6, .8, .0, 1.5,331,220.66666666666666 +6.765,5,a-sust-i4,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 1.1, .3, .1, .0, .0, .0, 1.6,247,154.375 +6.962666666666667,5,a-sust-i4,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, .5, 1.6, .0, 1.0, .0, 3.0,389,129.66666666666666 +6.196,5,a-sust-i4,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 1.2, .8, .0, .0, .0, .0, 2.0,451,225.5 +6.3,5,a-sust-i4,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.5, .8, .7, .0, .0, .0, 2.0,425,212.5 +5.568,5,a-sust-i4,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.4, .6, .0, .0, .0, .0, 1.0,304,304.0 +6.88,5,a-sust-i4,2023-24,Springfield - Arthur T Talmadge,02810165, 0.5, .8, .0, .0, .3, .0, 1.6,224,140.0 +-Infinity,1,a-sust-i4,2023-24,Springfield - Balliet Preschool,02810003, 0.0, .0, .0, .0, .0, .0, 0.0,131,Infinity +6.264347826086956,5,a-sust-i4,2023-24,Springfield - Benjamin Swan Elementary,02810085, 1.1, 1.2, .0, .0, .0, .0, 2.3,499,216.95652173913047 +6.08,5,a-sust-i4,2023-24,Springfield - Brightwood,02810025, 0.7, 1.1, .0, .0, .2, .0, 2.0,480,240.0 +6.645333333333333,5,a-sust-i4,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, .0, 1.1, .0, .4, .0, 1.5,254,169.33333333333334 +7.627076923076923,5,a-sust-i4,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, .0, 2.9, 1.1, 1.8, .7, 6.5,303,46.61538461538461 +6.927272727272727,5,a-sust-i4,2023-24,Springfield - Daniel B Brunton,02810035, 1.1, 1.1, .0, .0, .0, .0, 2.2,295,134.0909090909091 +-Infinity,1,a-sust-i4,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, .0, .0, .0, .0, .0, 0.0,188,Infinity +5.784,5,a-sust-i4,2023-24,Springfield - Edward P. Boland School,02810010, 0.9, 1.1, .0, .0, .0, .0, 2.0,554,277.0 +6.949090909090909,5,a-sust-i4,2023-24,Springfield - Elias Brookings,02810030, 0.7, 1.0, .0, .0, .5, .0, 2.2,289,131.36363636363635 +5.69,5,a-sust-i4,2023-24,Springfield - Emergence Academy,02810318, 0.0, .0, .0, .2, .0, .6, 0.8,231,288.75 +-Infinity,1,a-sust-i4,2023-24,Springfield - Forest Park Middle,02810325, 0.0, .0, .0, .0, .0, .0, 0.0,284,Infinity +-Infinity,1,a-sust-i4,2023-24,Springfield - Frank H Freedman,02810075, 0.0, .0, .0, .0, .0, .0, 0.0,267,Infinity +5.952,5,a-sust-i4,2023-24,Springfield - Frederick Harris,02810080, 0.7, 1.0, .0, .0, .3, .0, 2.0,512,256.0 +-Infinity,1,a-sust-i4,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, .0, .0, .0, .0, .0, 0.0,28,Infinity +-Infinity,1,a-sust-i4,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, .0, .0, .0, .0, .0, 0.0,25,Infinity +5.508,5,a-sust-i4,2023-24,Springfield - German Gerena Community School,02810195, 0.6, .9, .0, .0, .5, .0, 2.0,623,311.5 +6.970434782608696,5,a-sust-i4,2023-24,Springfield - Glenwood,02810065, 0.8, 1.2, .0, .0, .4, .0, 2.3,296,128.69565217391306 +6.673684210526316,5,a-sust-i4,2023-24,Springfield - Glickman Elementary,02810068, 0.5, .7, .0, .0, .7, .0, 1.9,315,165.78947368421052 +5.931707317073171,5,a-sust-i4,2023-24,Springfield - High School Of Commerce,02810510, 0.0, .0, .0, 1.3, 2.8, .0, 4.1,1060,258.5365853658537 +6.892,5,a-sust-i4,2023-24,Springfield - Hiram L Dorman,02810050, 0.7, 1.0, .0, .0, .3, .0, 2.0,277,138.5 +6.204444444444444,5,a-sust-i4,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.0, .0, .9, .0, .0, .0, 0.9,202,224.44444444444443 +3.48,3.48,a-sust-i4,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.4, .4, .0, .0, .2, .0, 1.0,565,565.0 +3.805714285714285,3.81,a-sust-i4,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, .0, .7, .0, .0, .0, 0.7,367,524.2857142857143 +5.109565217391304,5,a-sust-i4,2023-24,Springfield - John J Duggan Academy,02810320, 0.0, .0, 1.0, .4, .5, .5, 2.3,831,361.304347826087 +6.602666666666667,5,a-sust-i4,2023-24,Springfield - Kensington International School,02810110, 0.5, 1.0, .0, .0, .0, .0, 1.5,262,174.66666666666666 +-14.96,1,a-sust-i4,2023-24,Springfield - Kiley Academy,02810316, 0.0, .0, .1, .0, .0, .0, 0.1,287,2870.0 +3.792,3.79,a-sust-i4,2023-24,Springfield - Kiley Prep,02810315, 0.0, .0, .5, .0, .0, .0, 0.5,263,526.0 +6.688,5,a-sust-i4,2023-24,Springfield - Liberty,02810115, 0.6, .9, .0, .0, .0, .0, 1.5,246,164.0 +7.44,5,a-sust-i4,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, .0, .0, .0, .1, .0, 0.1,7,70.0 +6.270476190476191,5,a-sust-i4,2023-24,Springfield - Lincoln,02810120, 0.8, 1.3, .0, .0, .0, .0, 2.1,454,216.19047619047618 +-Infinity,1,a-sust-i4,2023-24,Springfield - Margaret C Ells,02810060, 0.0, .0, .0, .0, .0, .0, 0.0,138,Infinity +5.890909090909091,5,a-sust-i4,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.5, .6, .0, .0, .0, .0, 1.1,290,263.6363636363636 +6.794666666666667,5,a-sust-i4,2023-24,Springfield - Mary M Lynch,02810140, 0.5, 1.0, .0, .0, .0, .0, 1.5,226,150.66666666666666 +7.17,5,a-sust-i4,2023-24,Springfield - Mary M Walsh,02810155, 0.8, 1.1, .0, .0, .5, .0, 2.4,249,103.75 +6.536,5,a-sust-i4,2023-24,Springfield - Mary O Pottenger,02810145, 0.7, 1.3, .0, .0, .0, .0, 2.0,366,183.0 +6.510476190476191,5,a-sust-i4,2023-24,Springfield - Milton Bradley School,02810023, 0.6, .8, .0, .0, .8, .0, 2.1,391,186.19047619047618 +5.733333333333334,5,a-sust-i4,2023-24,Springfield - Rebecca M Johnson,02810055, 0.7, 1.0, .0, .0, .4, .0, 2.1,595,283.3333333333333 +5.12,5,a-sust-i4,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, .0, .6, .0, .0, .0, 0.6,216,360.0 +4.312,4.31,a-sust-i4,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, .0, .0, 2.0, 1.0, .0, 3.0,1383,461.0 +6.469333333333333,5,a-sust-i4,2023-24,Springfield - STEM Middle Academy,02810350, 0.0, .0, 1.5, .0, .0, .0, 1.5,287,191.33333333333334 +7.270588235294117,5,a-sust-i4,2023-24,Springfield - Samuel Bowles,02810020, 1.6, 1.4, .0, .0, .4, .0, 3.4,310,91.17647058823529 +6.488,5,a-sust-i4,2023-24,Springfield - South End Middle School,02810355, 0.0, .0, 1.0, .0, .0, .0, 1.0,189,189.0 +6.262127659574468,5,a-sust-i4,2023-24,Springfield - Springfield Central High,02810500, 0.0, .0, .0, 4.1, 4.6, .6, 9.4,2042,217.23404255319147 +7.069473684210527,5,a-sust-i4,2023-24,Springfield - Springfield High School,02810570, 0.0, .0, .0, .9, 1.0, .0, 1.9,221,116.31578947368422 +6.244800000000001,5,a-sust-i4,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, .0, .0, 1.5, 3.2, .3, 5.0,1097,219.4 +7.1466666666666665,5,a-sust-i4,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, .3, .0, .0, .0, .0, 0.3,32,106.66666666666667 +5.12,5,a-sust-i4,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, .0, .0, .1, .1, .0, 0.2,72,360.0 +-Infinity,1,a-sust-i4,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, .0, .0, .0, .0, .0, 0.0,355,Infinity +7.626666666666666,5,a-sust-i4,2023-24,Springfield - Springfield Middle School,02810360, 0.0, .0, .3, .0, .0, .0, 0.3,14,46.66666666666667 +7.772307692307693,5,a-sust-i4,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, .0, .0, .0, 1.3, .0, 1.3,37,28.46153846153846 +-Infinity,1,a-sust-i4,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, .0, .0, .0, .0, .0, 0.0,78,Infinity +7.302857142857143,5,a-sust-i4,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, .0, .7, .0, .0, .0, 0.7,61,87.14285714285715 +6.231111111111112,5,a-sust-i4,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, .0, .9, .0, .0, .0, 0.9,199,221.11111111111111 +-Infinity,1,a-sust-i4,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, .0, .0, .0, .0, .0, 0.0,115,Infinity +6.048,5,a-sust-i4,2023-24,Springfield - Sumner Avenue,02810160, 0.6, .9, .0, .0, .5, .0, 2.0,488,244.0 +6.195555555555556,5,a-sust-i4,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, .0, 1.4, 1.0, .0, .3, 2.7,609,225.55555555555554 +7.24,5,a-sust-i4,2023-24,Springfield - The Springfield Virtual School,02810705, 0.2, 1.1, .0, .1, 1.7, .0, 3.2,304,95.0 +6.1466666666666665,5,a-sust-i4,2023-24,Springfield - Thomas M Balliet,02810015, 0.5, .7, .0, .0, .0, .0, 1.2,278,231.66666666666669 +5.984,5,a-sust-i4,2023-24,Springfield - Van Sickle Academy,02810485, 0.0, .0, 1.0, .0, .0, .0, 1.0,252,252.0 +6.730666666666667,5,a-sust-i4,2023-24,Springfield - Warner,02810180, 0.6, .9, .0, .0, .0, .0, 1.5,238,158.66666666666666 +6.778461538461539,5,a-sust-i4,2023-24,Springfield - Washington,02810185, 0.9, 1.4, .0, .0, .3, .0, 2.6,397,152.69230769230768 +6.432,5,a-sust-i4,2023-24,Springfield - White Street,02810190, 0.8, 1.2, .0, .0, .0, .0, 2.0,392,196.0 +6.304,5,a-sust-i4,2023-24,Springfield - William N. DeBerry,02810045, 0.7, 1.0, .0, .0, .3, .0, 2.0,424,212.0 +5.961379310344828,5,a-sust-i4,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, .0, .0, .0, .0, 5.8, 5.8,1478,254.82758620689657 +5.003076923076923,5,a-sust-i4,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, .0, .0, .0, .0, 1.3, 1.3,487,374.6153846153846 +5.43,5,a-sust-i4,2023-24,Stoneham - Colonial Park,02840005, 0.5, .3, .0, .0, .0, .0, 0.8,257,321.25 +5.38,5,a-sust-i4,2023-24,Stoneham - Robin Hood,02840025, 0.8, .5, .0, .0, .0, .0, 1.2,393,327.5 +6.334117647058823,5,a-sust-i4,2023-24,Stoneham - South,02840030, 1.0, .7, .0, .0, .0, .0, 1.7,354,208.23529411764707 +6.6,5,a-sust-i4,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.1, 2.9, .0, .0, .0, 4.0,700,175.0 +6.768421052631579,5,a-sust-i4,2023-24,Stoneham - Stoneham High,02840505, 0.0, .0, .0, .0, 3.8, .0, 3.8,585,153.94736842105263 +-Infinity,1,a-sust-i4,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, .0, .0, .0, .0, .0, 0.0,113,Infinity +6.167272727272728,5,a-sust-i4,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.3, .3, .0, .0, .5, .0, 1.1,252,229.09090909090907 +6.567619047619048,5,a-sust-i4,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.8, .8, .0, .0, .5, .0, 2.1,376,179.04761904761904 +6.755199999999999,5,a-sust-i4,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 1.1, .9, .0, .0, .5, .0, 2.5,389,155.6 +5.850322580645161,5,a-sust-i4,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.0, .0, 3.1, .0, .0, .0, 3.1,833,268.7096774193548 +6.731428571428571,5,a-sust-i4,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.9, .7, .0, .0, .5, .0, 2.1,333,158.57142857142856 +6.196923076923077,5,a-sust-i4,2023-24,Stoughton - South Elementary,02850015, 0.4, .4, .0, .0, .5, .0, 1.3,293,225.3846153846154 +6.9297560975609755,5,a-sust-i4,2023-24,Stoughton - Stoughton High,02850505, 0.0, .0, .0, .0, 8.2, .0, 8.2,1097,133.78048780487805 +5.594666666666666,5,a-sust-i4,2023-24,Sturbridge - Burgess Elementary,02870005, 0.7, 1.0, 1.3, .0, .0, .0, 3.0,902,300.6666666666667 +6.9675,5,a-sust-i4,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, .0, .0, 6.4, .0, .0, 6.4,826,129.0625 +5.24,5,a-sust-i4,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.0, .0, 2.4, .0, .0, .0, 2.4,828,345.0 +6.515555555555555,5,a-sust-i4,2023-24,Sudbury - General John Nixon Elementary,02880025, 0.7, 1.1, .0, .0, .0, .0, 1.8,334,185.55555555555554 +6.549565217391304,5,a-sust-i4,2023-24,Sudbury - Israel Loring School,02880015, 1.0, 1.3, .0, .0, .0, .0, 2.3,417,181.30434782608697 +6.444,5,a-sust-i4,2023-24,Sudbury - Josiah Haynes,02880010, 0.8, 1.2, .0, .0, .0, .0, 2.0,389,194.5 +6.096666666666666,5,a-sust-i4,2023-24,Sudbury - Peter Noyes,02880030, 1.0, 1.4, .0, .0, .0, .0, 2.4,571,237.91666666666669 +7.268,5,a-sust-i4,2023-24,Sunderland - Sunderland Elementary,02890005, 0.3, 1.3, .3, .0, .0, .0, 2.0,183,91.5 +4.986666666666666,4.99,a-sust-i4,2023-24,Sutton - Sutton Early Learning,02900003, 0.9, .0, .0, .0, .0, .0, 0.9,339,376.6666666666667 +6.807619047619048,5,a-sust-i4,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 2.1, .0, .0, .0, .0, 2.1,313,149.04761904761904 +6.883076923076922,5,a-sust-i4,2023-24,Sutton - Sutton High School,02900510, 0.0, .0, .0, 2.6, .0, .0, 2.6,363,139.6153846153846 +5.854545454545454,5,a-sust-i4,2023-24,Sutton - Sutton Middle School,02900305, 0.0, .0, 1.1, .0, .0, .0, 1.1,295,268.1818181818182 +5.94,5,a-sust-i4,2023-24,Swampscott - Clarke,02910005, 0.5, .3, .0, .0, .0, .0, 0.8,206,257.5 +6.417777777777777,5,a-sust-i4,2023-24,Swampscott - Hadley,02910010, 1.2, .6, .0, .0, .0, .0, 1.8,356,197.77777777777777 +6.551111111111111,5,a-sust-i4,2023-24,Swampscott - Stanley,02910020, 0.4, .4, .0, .0, .0, .0, 0.9,163,181.11111111111111 +6.597894736842105,5,a-sust-i4,2023-24,Swampscott - Swampscott High,02910505, 0.0, .0, .0, 3.8, .0, .0, 3.8,666,175.26315789473685 +5.501818181818182,5,a-sust-i4,2023-24,Swampscott - Swampscott Middle,02910305, 0.0, .7, 1.5, .0, .0, .0, 2.2,687,312.27272727272725 +5.26,5,a-sust-i4,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, .8, .0, .0, .0, .0, 0.8,274,342.5 +6.036363636363636,5,a-sust-i4,2023-24,Swansea - Gardner,02920015, 1.1, .0, .0, .0, .0, .0, 1.1,270,245.45454545454544 +6.7915789473684205,5,a-sust-i4,2023-24,Swansea - Joseph Case High,02920505, 0.0, .0, .0, 3.7, .0, .2, 3.8,574,151.05263157894737 +6.02,5,a-sust-i4,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, .0, 2.0, .0, .0, .0, 2.0,495,247.5 +6.408888888888889,5,a-sust-i4,2023-24,Swansea - Joseph G Luther,02920020, 0.0, .9, .0, .0, .0, .0, 0.9,179,198.88888888888889 +5.7155555555555555,5,a-sust-i4,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.9, .0, .0, .0, .0, .0, 0.9,257,285.55555555555554 +4.187540983606557,4.19,a-sust-i4,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.8, 1.2, 2.5, 1.6, .0, .0, 6.1,2907,476.55737704918033 +6.506666666666667,5,a-sust-i4,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, .0, 3.0, .0, .0, .0, 3.0,560,186.66666666666666 +7.08551724137931,5,a-sust-i4,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, .0, .0, .2, 5.6, .0, 5.8,663,114.3103448275862 +-Infinity,1,a-sust-i4,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, .0, .0, .0, .0, .0, 0.0,536,Infinity +6.09103448275862,5,a-sust-i4,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, .9, 2.0, .0, .0, .0, 2.9,692,238.6206896551724 +4.426666666666666,4.43,a-sust-i4,2023-24,Taunton - East Taunton Elementary,02930010, 0.8, .4, .0, .0, .0, .0, 1.2,536,446.6666666666667 +6.184615384615385,5,a-sust-i4,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.7, .6, .0, .0, .0, .0, 1.3,295,226.9230769230769 +-Infinity,1,a-sust-i4,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, .0, .0, .0, .0, .0, 0.0,261,Infinity +4.789333333333334,4.79,a-sust-i4,2023-24,Taunton - Elizabeth Pole,02930027, 0.9, .6, .0, .0, .0, .0, 1.5,602,401.3333333333333 +5.21,5,a-sust-i4,2023-24,Taunton - H H Galligan,02930057, 0.5, .3, .0, .0, .0, .0, 0.8,279,348.75 +4.286315789473684,4.29,a-sust-i4,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 1.2, .7, .0, .0, .0, .0, 1.9,882,464.2105263157895 +5.6,5,a-sust-i4,2023-24,Taunton - John F Parker Middle,02930305, 0.0, .5, 1.2, .0, .0, .0, 1.7,510,300.0 +5.545,5,a-sust-i4,2023-24,Taunton - Joseph C Chamberlain,02930008, 0.9, .7, .0, .0, .0, .0, 1.6,491,306.875 +6.272,5,a-sust-i4,2023-24,Taunton - Joseph H Martin,02930042, 0.0, 1.2, 1.8, .0, .0, .0, 3.0,648,216.0 +-Infinity,1,a-sust-i4,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, .0, .0, .0, .0, .0, 0.0,85,Infinity +4.739393939393939,4.74,a-sust-i4,2023-24,Taunton - Taunton High,02930505, 0.0, .0, 1.6, 2.4, 2.6, .0, 6.6,2690,407.5757575757576 +-Infinity,1,a-sust-i4,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +4.932,4.93,a-sust-i4,2023-24,Tewksbury - Center Elementary School,02950030, 0.7, 1.3, .0, .0, .0, .0, 2.0,767,383.5 +5.52,5,a-sust-i4,2023-24,Tewksbury - Heath-Brook,02950010, 1.0, .0, .0, .0, .0, .0, 1.0,310,310.0 +6.012,5,a-sust-i4,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 1.0, 1.0, .0, .0, .0, 2.0,497,248.5 +5.92,5,a-sust-i4,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, .0, 2.0, .0, .0, .0, 2.0,520,260.0 +4.864,4.86,a-sust-i4,2023-24,Tewksbury - L F Dewing,02950001, 1.0, .0, .0, .0, .0, .0, 1.0,392,392.0 +6.749565217391304,5,a-sust-i4,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, .0, .0, 4.2, .0, .4, 4.6,719,156.30434782608697 +7.3225,5,a-sust-i4,2023-24,Tisbury - Tisbury Elementary,02960005, 0.7, .7, .6, .0, 1.2, .0, 3.2,271,84.6875 +6.871111111111111,5,a-sust-i4,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, .7, 1.1, .0, .0, .0, 1.8,254,141.11111111111111 +5.403636363636364,5,a-sust-i4,2023-24,Topsfield - Steward Elementary,02980010, 0.8, .3, .0, .0, .0, .0, 1.1,357,324.5454545454545 +0.288,1,a-sust-i4,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, .0, .0, 1.0, .0, .0, 1.0,964,964.0 +6.737777777777778,5,a-sust-i4,2023-24,Triton - Newbury Elementary,07730020, 1.0, 1.5, .2, .0, .0, .0, 2.7,426,157.77777777777777 +6.117894736842105,5,a-sust-i4,2023-24,Triton - Pine Grove,07730025, 0.7, .9, .4, .0, .0, .0, 1.9,447,235.26315789473685 +6.605217391304348,5,a-sust-i4,2023-24,Triton - Salisbury Elementary,07730015, 0.8, 1.3, .3, .0, .0, .0, 2.3,401,174.34782608695653 +6.704,5,a-sust-i4,2023-24,Triton - Triton Regional High School,07730505, 0.0, .0, .1, 2.3, .0, 1.1, 3.5,567,162.0 +6.744,5,a-sust-i4,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, .0, 2.0, .0, .0, .0, 2.0,314,157.0 +7.545,5,a-sust-i4,2023-24,Truro - Truro Central,03000005, 0.6, 1.0, .0, .0, .0, .0, 1.6,91,56.875 +1.976,1.98,a-sust-i4,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.5, .5, .0, .0, .0, .0, 1.0,753,753.0 +5.415384615384616,5,a-sust-i4,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, .0, .0, .0, 1.3, .0, 1.3,420,323.07692307692304 +6.906666666666667,5,a-sust-i4,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, .0, 2.7, .0, .0, .0, 2.7,369,136.66666666666666 +7.336,5,a-sust-i4,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0.0, .0, 2.0, .0, .0, .0, 2.0,166,83.0 +5.688,5,a-sust-i4,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.7, .6, .7, .0, .0, .0, 2.0,578,289.0 +7.416,5,a-sust-i4,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.1, .0, .0, .0, .9, .0, 1.0,73,73.0 +7.037037037037036,5,a-sust-i4,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.7, .7, .3, .0, 1.0, .0, 2.7,325,120.37037037037037 +-Infinity,1,a-sust-i4,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, .0, .0, .0, .0, .0, 0.0,826,Infinity +-Infinity,1,a-sust-i4,2023-24,Uxbridge - Gateway to College,03040515, 0.0, .0, .0, .0, .0, .0, 0.0,41,Infinity +5.868,5,a-sust-i4,2023-24,Uxbridge - Taft Early Learning Center,03040005, 1.5, .5, .0, .0, .0, .0, 2.0,533,266.5 +5.975652173913043,5,a-sust-i4,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, .0, .7, 1.6, .0, .0, 2.3,582,253.0434782608696 +6.730666666666667,5,a-sust-i4,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 2.1, .9, .0, .0, .0, 3.0,476,158.66666666666666 +7.105454545454546,5,a-sust-i4,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 1.7, .0, .0, 3.8, .0, 5.5,615,111.81818181818181 +6.48,5,a-sust-i4,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, .0, 2.0, .0, .0, .0, 2.0,380,190.0 +6.786666666666667,5,a-sust-i4,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, .4, 1.3, .0, .0, .0, 1.8,273,151.66666666666666 +6.48,5,a-sust-i4,2023-24,Wachusett - Davis Hill Elementary,07750018, 1.3, 1.2, .0, .0, .0, .0, 2.5,475,190.0 +6.048,5,a-sust-i4,2023-24,Wachusett - Dawson,07750020, 1.1, .8, .0, .0, .0, .0, 2.0,488,244.0 +-Infinity,1,a-sust-i4,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, .0, .0, .0, .0, .0, 0.0,140,Infinity +6.608,5,a-sust-i4,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 2.0, .0, .0, .0, .0, 2.0,348,174.0 +6.728,5,a-sust-i4,2023-24,Wachusett - Houghton Elementary,07750027, 1.2, .7, .0, .0, .0, .0, 2.0,318,159.0 +6.084,5,a-sust-i4,2023-24,Wachusett - Leroy E.Mayo,07750032, 1.0, 1.0, .0, .0, .0, .0, 2.0,479,239.5 +6.887407407407407,5,a-sust-i4,2023-24,Wachusett - Mountview Middle,07750305, 0.0, .0, 5.4, .0, .0, .0, 5.4,751,139.07407407407408 +6.488,5,a-sust-i4,2023-24,Wachusett - Naquag Elementary School,07750005, 2.0, .0, .0, .0, .0, .0, 2.0,378,189.0 +6.272,5,a-sust-i4,2023-24,Wachusett - Paxton Center,07750040, 0.7, .6, .8, .0, .0, .0, 2.0,432,216.0 +6.991428571428572,5,a-sust-i4,2023-24,Wachusett - Thomas Prince,07750045, 0.9, .9, .9, .0, .0, .0, 2.8,353,126.07142857142858 +6.449166666666666,5,a-sust-i4,2023-24,Wachusett - Wachusett Regional High,07750505, 0.0, .0, .0, 5.5, 4.1, .0, 9.6,1861,193.85416666666669 +5.896470588235294,5,a-sust-i4,2023-24,Wakefield - Dolbeare,03050005, 1.0, .7, .0, .0, .0, .0, 1.7,447,262.94117647058823 +-Infinity,1,a-sust-i4,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, .0, .0, .0, .0, .0, 0.0,135,Infinity +6.548965517241379,5,a-sust-i4,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 1.6, 4.2, .0, .0, .0, 5.8,1052,181.3793103448276 +5.72,5,a-sust-i4,2023-24,Wakefield - Greenwood,03050020, 0.5, .3, .0, .0, .0, .0, 0.8,228,285.0 +7.138461538461539,5,a-sust-i4,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, .0, .0, 6.1, 1.8, .0, 7.8,840,107.6923076923077 +5.87,5,a-sust-i4,2023-24,Wakefield - Walton,03050040, 0.5, .3, .0, .0, .0, .0, 0.8,213,266.25 +5.88235294117647,5,a-sust-i4,2023-24,Wakefield - Woodville School,03050015, 1.0, .7, .0, .0, .0, .0, 1.7,450,264.70588235294116 +7.713846153846155,5,a-sust-i4,2023-24,Wales - Wales Elementary,03060005, 0.5, 1.8, .3, .0, .0, .0, 2.6,93,35.76923076923077 +7.085714285714286,5,a-sust-i4,2023-24,Walpole - Bird Middle,03070305, 0.0, .0, 3.5, .0, .0, .0, 3.5,400,114.28571428571429 +6.294736842105263,5,a-sust-i4,2023-24,Walpole - Boyden,03070010, 1.1, .8, .0, .0, .0, .0, 1.9,405,213.1578947368421 +-Infinity,1,a-sust-i4,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +7.051428571428572,5,a-sust-i4,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, .0, 3.5, .0, .0, .0, 3.5,415,118.57142857142857 +6.216,5,a-sust-i4,2023-24,Walpole - Elm Street School,03070005, 1.1, .9, .0, .0, .0, .0, 2.0,446,223.0 +6.108,5,a-sust-i4,2023-24,Walpole - Fisher,03070015, 0.9, 1.1, .0, .0, .0, .0, 2.0,473,236.5 +6.124,5,a-sust-i4,2023-24,Walpole - Old Post Road,03070018, 1.0, 1.0, .0, .0, .0, .0, 2.0,469,234.5 +6.853333333333333,5,a-sust-i4,2023-24,Walpole - Walpole High,03070505, 0.0, .0, .0, 6.6, .0, .0, 6.6,946,143.33333333333334 +7.191489361702128,5,a-sust-i4,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 2.0, 2.4, .0, .0, .0, .3, 4.7,475,101.06382978723404 +7.418666666666666,5,a-sust-i4,2023-24,Waltham - Dual Language School,03080001, 0.7, 1.6, .0, .0, .0, .8, 3.0,218,72.66666666666667 +7.187368421052632,5,a-sust-i4,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 1.7, 2.1, .0, .0, .0, .0, 3.8,386,101.57894736842105 +7.167058823529412,5,a-sust-i4,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 1.7, 1.6, .0, .0, .0, .0, 3.4,354,104.11764705882354 +6.677894736842105,5,a-sust-i4,2023-24,Waltham - John F Kennedy Middle,03080404, 0.0, .0, 2.4, .0, .0, 1.4, 3.8,628,165.26315789473685 +6.926222222222223,5,a-sust-i4,2023-24,Waltham - John W. McDevitt Middle School,03080415, 0.0, .0, 4.0, .0, .0, .4, 4.5,604,134.22222222222223 +7.166666666666666,5,a-sust-i4,2023-24,Waltham - Northeast Elementary School,03080040, 1.7, 2.1, .0, .0, .0, .9, 4.8,500,104.16666666666667 +7.277948717948718,5,a-sust-i4,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 1.9, 1.9, .0, .0, .0, .1, 3.9,352,90.25641025641026 +6.856062992125985,5,a-sust-i4,2023-24,Waltham - Waltham Sr High,03080505, 0.0, .0, .0, 9.5, .0, 3.2, 12.7,1816,142.99212598425197 +7.36,5,a-sust-i4,2023-24,Waltham - William F. Stanley Elementary School,03080005, 1.8, 2.1, .0, .0, .0, .8, 4.7,376,80.0 +6.444,5,a-sust-i4,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 1.5, .5, .0, .0, .0, .0, 2.0,389,194.5 +6.116,5,a-sust-i4,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, .0, .4, 1.6, .0, .0, 2.0,471,235.5 +6.944,5,a-sust-i4,2023-24,Ware - Ware Middle School,03090305, 0.0, 1.3, .7, .0, .0, .0, 2.0,264,132.0 +-Infinity,1,a-sust-i4,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, .0, .0, .0, .0, .0, 0.0,30,Infinity +6.134,5,a-sust-i4,2023-24,Wareham - Wareham Elementary School,03100017, 2.5, 1.5, .0, .0, .0, .0, 4.0,933,233.25 +5.69142857142857,5,a-sust-i4,2023-24,Wareham - Wareham Middle,03100305, 0.0, .6, .7, .0, .0, .0, 1.4,404,288.5714285714286 +6.804102564102564,5,a-sust-i4,2023-24,Wareham - Wareham Senior High,03100505, 0.0, .0, .1, 1.7, .2, 1.9, 3.9,583,149.4871794871795 +7.82,5,a-sust-i4,2023-24,Warwick - Warwick Community School,03120020, 0.4, .0, .0, .0, .8, .0, 1.2,27,22.5 +6.6947368421052635,5,a-sust-i4,2023-24,Watertown - Cunniff,03140015, 0.9, 1.0, .0, .0, .0, .0, 1.9,310,163.1578947368421 +6.2,5,a-sust-i4,2023-24,Watertown - Hosmer,03140020, 2.1, 1.1, .0, .0, .0, .0, 3.2,720,225.0 +6.632727272727273,5,a-sust-i4,2023-24,Watertown - James Russell Lowell,03140025, 1.1, 1.1, .0, .0, .0, .0, 2.2,376,170.9090909090909 +6.586046511627907,5,a-sust-i4,2023-24,Watertown - Watertown High,03140505, 0.0, .0, .0, .0, 4.1, .2, 4.3,760,176.74418604651163 +5.900952380952382,5,a-sust-i4,2023-24,Watertown - Watertown Middle,03140305, 0.0, .0, 1.6, .0, .4, .0, 2.1,551,262.38095238095235 +6.602857142857143,5,a-sust-i4,2023-24,Wayland - Claypit Hill School,03150005, 1.0, 1.8, .0, .0, .0, .0, 2.8,489,174.64285714285717 +6.5473684210526315,5,a-sust-i4,2023-24,Wayland - Happy Hollow School,03150015, 0.7, 1.2, .0, .0, .0, .0, 1.9,345,181.57894736842107 +6.3244444444444445,5,a-sust-i4,2023-24,Wayland - Loker School,03150020, 0.7, 1.1, .0, .0, .0, .0, 1.8,377,209.44444444444443 +-Infinity,1,a-sust-i4,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, .0, .0, .0, .0, .0, 0.0,47,Infinity +6.573913043478261,5,a-sust-i4,2023-24,Wayland - Wayland High School,03150505, 0.0, .0, .0, 4.6, .0, .0, 4.6,820,178.2608695652174 +6.84,5,a-sust-i4,2023-24,Wayland - Wayland Middle School,03150305, 0.0, .0, 4.6, .0, .0, .0, 4.6,667,145.0 +7.234871794871795,5,a-sust-i4,2023-24,Webster - Bartlett High School,03160505, 0.0, .0, .0, .7, .3, 2.9, 3.9,373,95.64102564102565 +5.064,5,a-sust-i4,2023-24,Webster - Park Avenue Elementary,03160015, 1.3, .8, .0, .0, .0, .0, 2.0,734,367.0 +6.421333333333333,5,a-sust-i4,2023-24,Webster - Webster Middle School,03160315, 0.0, .8, 2.3, .0, .0, .0, 3.0,592,197.33333333333334 +7.295,5,a-sust-i4,2023-24,Wellesley - Ernest F Upham,03170050, 0.8, .8, .0, .0, .0, .0, 1.6,141,88.125 +6.769230769230769,5,a-sust-i4,2023-24,Wellesley - Hunnewell,03170025, 0.7, .6, .0, .0, .0, .0, 1.3,200,153.84615384615384 +6.5,5,a-sust-i4,2023-24,Wellesley - John D Hardy,03170020, 0.6, .6, .0, .0, .0, .0, 1.2,225,187.5 +6.736,5,a-sust-i4,2023-24,Wellesley - Joseph E Fiske,03170015, 1.1, .9, .0, .0, .0, .0, 2.0,316,158.0 +6.554285714285713,5,a-sust-i4,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.7, .6, .0, .0, .0, .0, 1.4,253,180.71428571428572 +-Infinity,1,a-sust-i4,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, .0, .0, .0, .0, .0, 0.0,97,Infinity +6.671111111111111,5,a-sust-i4,2023-24,Wellesley - Schofield,03170045, 0.8, .9, .0, .0, .0, .0, 1.8,299,166.11111111111111 +6.437333333333333,5,a-sust-i4,2023-24,Wellesley - Sprague Elementary School,03170048, 0.7, .8, .0, .0, .0, .0, 1.5,293,195.33333333333334 +7.183111111111112,5,a-sust-i4,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, .0, 8.7, .0, .0, .3, 9.0,919,102.11111111111111 +6.844255319148936,5,a-sust-i4,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, .0, .0, 1.3, 1.4, 6.7, 9.4,1358,144.46808510638297 +7.44,5,a-sust-i4,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.5, .7, .0, .0, .0, .0, 1.3,91,70.0 +5.2,5,a-sust-i4,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.5, .8, .0, .0, .0, .0, 1.3,455,350.0 +6.8053333333333335,5,a-sust-i4,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, .0, 1.3, .0, 1.8, .0, 3.0,448,149.33333333333334 +6.098461538461539,5,a-sust-i4,2023-24,West Bridgewater - Howard School,03230305, 0.0, .6, .3, .0, .0, .5, 1.3,309,237.69230769230768 +4.74,4.74,a-sust-i4,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.5, .3, .0, .0, .0, .0, 0.8,326,407.5 +5.04,5,a-sust-i4,2023-24,West Bridgewater - Spring Street School,03230005, 0.4, .0, .0, .0, .0, .0, 0.4,148,370.0 +6.820952380952381,5,a-sust-i4,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, .0, .0, .0, .0, 4.2, 4.2,619,147.38095238095238 +4.736,4.74,a-sust-i4,2023-24,West Springfield - John Ashley,03320005, 0.5, .0, .0, .0, .0, .0, 0.5,204,408.0 +6.381818181818182,5,a-sust-i4,2023-24,West Springfield - John R Fausey,03320010, 0.8, 1.4, .0, .0, .0, .0, 2.2,445,202.27272727272725 +6.151111111111112,5,a-sust-i4,2023-24,West Springfield - Memorial,03320025, 0.3, .6, .0, .0, .0, .0, 0.9,208,231.11111111111111 +6.88,5,a-sust-i4,2023-24,West Springfield - Mittineague,03320030, 0.3, .7, .0, .0, .0, .0, 1.0,140,140.0 +5.916363636363636,5,a-sust-i4,2023-24,West Springfield - Philip G Coburn,03320007, 0.9, 1.3, .0, .0, .0, .0, 2.2,573,260.45454545454544 +6.502857142857144,5,a-sust-i4,2023-24,West Springfield - Tatham,03320040, 0.4, 1.0, .0, .0, .0, .0, 1.4,262,187.14285714285717 +6.657777777777778,5,a-sust-i4,2023-24,West Springfield - West Springfield High,03320505, 0.0, .0, .0, .0, 4.0, 3.2, 7.2,1208,167.77777777777777 +6.148,5,a-sust-i4,2023-24,West Springfield - West Springfield Middle,03320305, 0.0, .0, 4.0, .0, .0, .0, 4.0,926,231.5 +4.228571428571429,4.23,a-sust-i4,2023-24,Westborough - Annie E Fales,03210010, 0.5, .2, .0, .0, .0, .0, 0.7,330,471.42857142857144 +5.817777777777778,5,a-sust-i4,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 1.2, .6, .0, .0, .0, .0, 1.8,491,272.77777777777777 +6.065,5,a-sust-i4,2023-24,Westborough - J Harding Armstrong,03210005, 1.1, .5, .0, .0, .0, .0, 1.6,387,241.875 +7.026666666666667,5,a-sust-i4,2023-24,Westborough - Mill Pond School,03210045, 0.0, 5.3, 1.9, .0, .0, .0, 7.2,876,121.66666666666666 +6.734736842105264,5,a-sust-i4,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, .0, 3.6, .0, .2, .0, 3.8,601,158.1578947368421 +5.086060606060606,5,a-sust-i4,2023-24,Westborough - Westborough High,03210505, 0.0, .0, .0, .0, 3.3, .0, 3.3,1202,364.24242424242425 +6.355555555555556,5,a-sust-i4,2023-24,Westfield - Abner Gibbs,03250020, 0.5, .4, .0, .0, .1, .0, 0.9,185,205.55555555555554 +-Infinity,1,a-sust-i4,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, .0, .0, .0, .0, .0, 0.0,147,Infinity +6.453333333333334,5,a-sust-i4,2023-24,Westfield - Franklin Ave,03250015, 0.5, .4, .0, .0, .1, .0, 0.9,174,193.33333333333331 +6.6780952380952385,5,a-sust-i4,2023-24,Westfield - Highland,03250025, 1.2, .8, .0, .0, .1, .0, 2.1,347,165.23809523809524 +6.36,5,a-sust-i4,2023-24,Westfield - Munger Hill,03250033, 0.9, .6, .0, .0, .1, .0, 1.6,328,205.0 +6.669473684210526,5,a-sust-i4,2023-24,Westfield - Paper Mill,03250036, 1.2, .7, .0, .0, .0, .0, 1.9,316,166.31578947368422 +6.475,5,a-sust-i4,2023-24,Westfield - Southampton Road,03250040, 0.9, .6, .0, .0, .1, .0, 1.6,305,190.625 +6.635932203389831,5,a-sust-i4,2023-24,Westfield - Westfield High,03250505, 0.0, .0, .0, .4, 5.5, .0, 5.9,1006,170.50847457627117 +6.905600000000001,5,a-sust-i4,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, .8, .5, .0, 3.7, .0, 5.0,684,136.8 +6.117333333333333,5,a-sust-i4,2023-24,Westfield - Westfield Middle School,03250310, 0.0, .0, 3.0, .0, .0, .0, 3.0,706,235.33333333333334 +-0.768,1,a-sust-i4,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, .0, .0, .0, .5, .0, 0.5,548,1096.0 +7.549090909090909,5,a-sust-i4,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, .0, .3, .0, .8, .0, 1.1,62,56.36363636363636 +6.433684210526316,5,a-sust-i4,2023-24,Westford - Abbot Elementary,03260004, 0.0, 1.9, .0, .0, .0, .0, 1.9,372,195.78947368421055 +6.4714285714285715,5,a-sust-i4,2023-24,Westford - Blanchard Middle,03260310, 0.0, .0, 2.8, .0, .0, .0, 2.8,535,191.07142857142858 +5.966666666666666,5,a-sust-i4,2023-24,Westford - Col John Robinson,03260025, 1.2, .0, .0, .0, .0, .0, 1.2,305,254.16666666666669 +5.847272727272728,5,a-sust-i4,2023-24,Westford - Day Elementary,03260007, 0.0, 1.1, .0, .0, .0, .0, 1.1,296,269.09090909090907 +5.969230769230769,5,a-sust-i4,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 1.3, .0, .0, .0, .0, 1.3,330,253.84615384615384 +5.966666666666666,5,a-sust-i4,2023-24,Westford - Nabnasset,03260015, 1.2, .0, .0, .0, .0, .0, 1.2,305,254.16666666666669 +5.776,5,a-sust-i4,2023-24,Westford - Rita E. Miller Elementary School,03260055, 1.0, .0, .0, .0, .0, .0, 1.0,278,278.0 +6.535,5,a-sust-i4,2023-24,Westford - Stony Brook School,03260330, 0.0, .0, 3.2, .0, .0, .0, 3.2,586,183.125 +6.48,5,a-sust-i4,2023-24,Westford - Westford Academy,03260505, 0.0, .0, .0, .8, 6.5, .3, 7.6,1444,190.0 +7.584,5,a-sust-i4,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.9, .9, .3, .0, .0, .0, 2.0,104,52.0 +6.41,5,a-sust-i4,2023-24,Weston - Country,03300010, 0.9, .7, .0, .0, .0, .0, 1.6,318,198.75 +6.72,5,a-sust-i4,2023-24,Weston - Field Elementary School,03300012, 0.0, 1.9, .0, .0, .0, .0, 1.9,304,160.0 +6.8966666666666665,5,a-sust-i4,2023-24,Weston - Weston High,03300505, 0.0, .0, .0, .3, .0, 4.5, 4.8,662,137.91666666666669 +6.895483870967743,5,a-sust-i4,2023-24,Weston - Weston Middle,03300305, 0.0, .0, 2.7, .0, .1, .4, 3.1,428,138.06451612903226 +7.04,5,a-sust-i4,2023-24,Weston - Woodland,03300015, 0.9, 1.8, .0, .0, .0, .0, 2.7,324,119.99999999999999 +5.152,5,a-sust-i4,2023-24,Westport - Alice A Macomber,03310015, 0.5, .0, .0, .0, .0, .0, 0.5,178,356.0 +5.243076923076924,5,a-sust-i4,2023-24,Westport - Westport Elementary,03310030, 0.6, .8, .0, .0, .0, .0, 1.3,448,344.6153846153846 +6.592,5,a-sust-i4,2023-24,Westport - Westport Middle-High School,03310515, 0.0, .8, 1.8, .0, 2.5, .0, 5.0,880,176.0 +6.803809523809524,5,a-sust-i4,2023-24,Westwood - Downey,03350012, 0.9, 1.2, .0, .0, .0, .0, 2.1,314,149.52380952380952 +7.244571428571429,5,a-sust-i4,2023-24,Westwood - E W Thurston Middle,03350305, 0.0, .0, 7.0, .0, .0, .0, 7.0,661,94.42857142857143 +6.9523809523809526,5,a-sust-i4,2023-24,Westwood - Martha Jones,03350017, 0.8, 1.3, .0, .0, .0, .0, 2.1,275,130.95238095238093 +6.877333333333333,5,a-sust-i4,2023-24,Westwood - Pine Hill Elementary School,03350030, 1.2, 1.8, .0, .0, .0, .0, 3.0,421,140.33333333333334 +6.872258064516129,5,a-sust-i4,2023-24,Westwood - Westwood High,03350505, 0.0, .0, .0, 6.2, .0, .0, 6.2,874,140.96774193548387 +-Infinity,1,a-sust-i4,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, .0, .0, .0, .0, .0, 0.0,36,Infinity +6.857142857142857,5,a-sust-i4,2023-24,Westwood - William E Sheehan,03350025, 0.8, 1.2, .0, .0, .0, .0, 2.1,300,142.85714285714286 +5.541818181818182,5,a-sust-i4,2023-24,Weymouth - Academy Avenue,03360005, 0.5, .6, .0, .0, .0, .0, 1.1,338,307.27272727272725 +5.941818181818182,5,a-sust-i4,2023-24,Weymouth - Frederick C Murphy,03360050, 0.5, .6, .0, .0, .0, .0, 1.1,283,257.27272727272725 +-Infinity,1,a-sust-i4,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, .0, .0, .0, .0, .0, 0.0,204,Infinity +6.065454545454546,5,a-sust-i4,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.5, .6, .0, .0, .0, .0, 1.1,266,241.81818181818178 +6.813,5,a-sust-i4,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, .1, 7.9, .0, .0, .0, 8.0,1187,148.375 +5.84,5,a-sust-i4,2023-24,Weymouth - Ralph Talbot,03360085, 0.3, .4, .0, .0, .0, .5, 1.1,297,270.0 +6.167272727272728,5,a-sust-i4,2023-24,Weymouth - Thomas V Nash,03360060, 0.5, .6, .0, .0, .0, .0, 1.1,252,229.09090909090907 +5.447272727272728,5,a-sust-i4,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.5, .6, .0, .0, .0, .0, 1.1,351,319.09090909090907 +5.614545454545455,5,a-sust-i4,2023-24,Weymouth - Wessagusset,03360110, 0.3, .3, .0, .0, .0, .5, 1.1,328,298.18181818181813 +5.1983999999999995,5,a-sust-i4,2023-24,Weymouth - Weymouth High School,03360505, 0.0, .0, .3, 3.8, .0, 1.0, 5.0,1751,350.2 +5.207272727272728,5,a-sust-i4,2023-24,Weymouth - William Seach,03360080, 0.5, .6, .0, .0, .0, .0, 1.1,384,349.09090909090907 +7.565217391304348,5,a-sust-i4,2023-24,Whately - Whately Elementary,03370005, 0.6, 1.5, .3, .0, .0, .0, 2.3,125,54.34782608695652 +6.586666666666666,5,a-sust-i4,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.0, .6, 1.8, .0, .0, .0, 2.4,424,176.66666666666669 +6.008,5,a-sust-i4,2023-24,Whitman-Hanson - Indian Head,07800035, 1.2, .8, .0, .0, .0, .0, 2.0,498,249.0 +6.26,5,a-sust-i4,2023-24,Whitman-Hanson - John H Duval,07800030, 1.0, 1.0, .0, .0, .0, .0, 2.0,435,217.5 +6.1,5,a-sust-i4,2023-24,Whitman-Hanson - Louise A Conley,07800010, 1.0, 1.0, .0, .0, .0, .0, 2.0,475,237.5 +-Infinity,1,a-sust-i4,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, .0, .0, .0, .0, .0, 0.0,105,Infinity +5.812631578947368,5,a-sust-i4,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, .0, .0, .0, 1.2, 2.6, 3.8,1039,273.42105263157896 +6.31,5,a-sust-i4,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, .0, 2.4, .0, .0, .0, 2.4,507,211.25 +-2.232,1,a-sust-i4,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, .0, .0, .0, 1.0, .0, 1.0,1279,1279.0 +7.508,5,a-sust-i4,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.9, .9, .3, .0, .0, .0, 2.0,123,61.5 +5.12,5,a-sust-i4,2023-24,Wilmington - Boutwell,03420005, 0.4, .0, .0, .0, .0, .0, 0.4,144,360.0 +7.094545454545454,5,a-sust-i4,2023-24,Wilmington - North Intermediate,03420060, 0.0, 2.2, .0, .0, .0, .0, 2.2,249,113.18181818181817 +6.632,5,a-sust-i4,2023-24,Wilmington - Shawsheen Elementary,03420025, 1.3, .7, .0, .0, .0, .0, 2.0,342,171.0 +6.908,5,a-sust-i4,2023-24,Wilmington - West Intermediate,03420080, 0.3, 1.7, .0, .0, .0, .0, 2.0,273,136.5 +6.674594594594595,5,a-sust-i4,2023-24,Wilmington - Wilmington High,03420505, 0.0, .0, .0, 3.7, .0, .0, 3.7,613,165.67567567567568 +6.611555555555555,5,a-sust-i4,2023-24,Wilmington - Wilmington Middle School,03420330, 0.4, .0, 4.1, .0, .0, .0, 4.5,781,173.55555555555554 +6.568,5,a-sust-i4,2023-24,Wilmington - Woburn Street,03420020, 1.4, .6, .0, .0, .0, .0, 2.0,358,179.0 +7.708915662650603,5,a-sust-i4,2023-24,Winchendon - Memorial,03430040, 8.3, .0, .0, .0, .0, .0, 8.3,302,36.3855421686747 +-Infinity,1,a-sust-i4,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, .0, .0, .0, .0, .0, 0.0,20,Infinity +6.992,5,a-sust-i4,2023-24,Winchendon - Murdock High School,03430515, 0.0, .0, .0, .0, 2.0, .0, 2.0,252,126.0 +6.84,5,a-sust-i4,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, .0, 2.0, .0, .0, .0, 2.0,290,145.0 +6.896,5,a-sust-i4,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 2.0, .0, .0, .0, .0, 2.0,276,138.0 +-Infinity,1,a-sust-i4,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, .0, .0, .0, .0, .0, 0.0,79,Infinity +4.936,4.94,a-sust-i4,2023-24,Winchester - Ambrose Elementary,03440045, 0.4, .6, .0, .0, .0, .0, 1.0,383,383.0 +6.255,5,a-sust-i4,2023-24,Winchester - Lincoln Elementary,03440005, 0.7, 1.0, .0, .0, .0, .0, 1.6,349,218.125 +4.90909090909091,4.91,a-sust-i4,2023-24,Winchester - Lynch Elementary,03440020, 0.4, .7, .0, .0, .0, .0, 1.1,425,386.3636363636363 +6.961,5,a-sust-i4,2023-24,Winchester - McCall Middle,03440305, 0.0, .0, .5, .0, .0, 7.5, 8.0,1039,129.875 +6.576842105263158,5,a-sust-i4,2023-24,Winchester - Muraco Elementary,03440040, 0.7, 1.2, .0, .0, .0, .0, 1.9,338,177.89473684210526 +6.111111111111112,5,a-sust-i4,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.3, .7, .0, .0, .0, .8, 1.8,425,236.11111111111111 +6.229677419354839,5,a-sust-i4,2023-24,Winchester - Winchester High School,03440505, 0.0, .0, .0, .3, .0, 5.8, 6.2,1372,221.29032258064515 +6.228,5,a-sust-i4,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 2.0, .0, .0, .0, .0, 2.0,443,221.5 +5.984,5,a-sust-i4,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.7, .0, .0, .0, .0, .3, 2.0,504,252.0 +5.733333333333334,5,a-sust-i4,2023-24,Winthrop - Winthrop High School,03460505, 0.0, .0, .0, .1, .0, 1.9, 2.1,595,283.3333333333333 +6.872,5,a-sust-i4,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, .0, 3.0, .0, .0, .0, 3.0,423,141.0 +5.04,5,a-sust-i4,2023-24,Woburn - Clyde Reeves,03470040, 0.6, .7, .0, .0, .0, .0, 1.2,444,370.0 +6.685714285714285,5,a-sust-i4,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, .0, 2.4, .0, .0, .4, 2.8,460,164.2857142857143 +5.827692307692308,5,a-sust-i4,2023-24,Woburn - Goodyear Elementary School,03470005, 0.7, .7, .0, .0, .0, .0, 1.3,353,271.53846153846155 +5.4461538461538455,5,a-sust-i4,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.7, .6, .0, .0, .0, .0, 1.3,415,319.2307692307692 +6.141818181818182,5,a-sust-i4,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, .0, 2.2, .0, .0, .0, 2.2,511,232.27272727272725 +6.04,5,a-sust-i4,2023-24,Woburn - Linscott-Rumford,03470025, 0.4, .3, .0, .0, .0, .0, 0.8,196,245.0 +6.0685714285714285,5,a-sust-i4,2023-24,Woburn - Malcolm White,03470055, 0.7, .7, .0, .0, .0, .0, 1.4,338,241.42857142857144 +5.28,5,a-sust-i4,2023-24,Woburn - Mary D Altavesta,03470065, 0.3, .3, .0, .0, .0, .0, 0.6,204,340.0 +4.857142857142857,4.86,a-sust-i4,2023-24,Woburn - Shamrock,03470043, 0.3, .4, .0, .0, .0, .0, 0.7,275,392.8571428571429 +6.213818181818182,5,a-sust-i4,2023-24,Woburn - Woburn High,03470505, 0.0, .0, .0, .5, 2.5, 2.5, 5.5,1228,223.27272727272728 +5.668,5,a-sust-i4,2023-24,Worcester - Belmont Street Community,03480020, 1.0, .8, .2, .0, .0, .0, 2.0,583,291.5 +7.340722891566266,5,a-sust-i4,2023-24,Worcester - Burncoat Middle School,03480405, 0.0, .0, 7.5, .0, .2, .7, 8.3,684,82.40963855421685 +7.082448979591836,5,a-sust-i4,2023-24,Worcester - Burncoat Senior High,03480503, 0.0, .0, .0, 9.0, .0, .8, 9.8,1124,114.6938775510204 +6.46,5,a-sust-i4,2023-24,Worcester - Burncoat Street,03480035, 0.5, .5, .2, .0, .0, .0, 1.2,231,192.5 +6.085714285714285,5,a-sust-i4,2023-24,Worcester - Canterbury,03480045, 0.7, .5, .2, .0, .0, .0, 1.4,335,239.2857142857143 +6.570434782608696,5,a-sust-i4,2023-24,Worcester - Chandler Elementary Community,03480050, 0.8, 1.1, .4, .0, .0, .0, 2.3,411,178.69565217391306 +6.376296296296297,5,a-sust-i4,2023-24,Worcester - Chandler Magnet,03480052, 1.1, 1.3, .3, .0, .0, .0, 2.7,548,202.96296296296296 +6.268,5,a-sust-i4,2023-24,Worcester - City View,03480053, 0.9, .8, .4, .0, .0, .0, 2.0,433,216.5 +6.406666666666666,5,a-sust-i4,2023-24,Worcester - Claremont Academy,03480350, 0.0, .0, .4, 2.0, .0, .0, 2.4,478,199.16666666666669 +6.508571428571428,5,a-sust-i4,2023-24,Worcester - Clark St Community,03480055, 0.3, .8, .3, .0, .0, .0, 1.4,261,186.42857142857144 +5.0,5.0,a-sust-i4,2023-24,Worcester - Columbus Park,03480060, 0.5, .4, .1, .0, .0, .0, 1.0,375,375.0 +6.071724137931034,5,a-sust-i4,2023-24,Worcester - Doherty Memorial High,03480512, 0.0, .0, .0, 5.8, .0, .0, 5.8,1398,241.0344827586207 +6.044444444444444,5,a-sust-i4,2023-24,Worcester - Elm Park Community,03480095, 0.8, .8, .3, .0, .0, .0, 1.8,440,244.44444444444443 +5.936,5,a-sust-i4,2023-24,Worcester - Flagg Street,03480090, 0.8, .5, .2, .0, .0, .0, 1.5,387,258.0 +6.6736,5,a-sust-i4,2023-24,Worcester - Forest Grove Middle,03480415, 0.0, .0, 4.0, .0, .0, 1.0, 5.0,829,165.8 +6.811428571428571,5,a-sust-i4,2023-24,Worcester - Francis J McGrath Elementary,03480177, 0.7, .5, .2, .0, .0, .0, 1.4,208,148.57142857142858 +5.812,5,a-sust-i4,2023-24,Worcester - Gates Lane,03480110, 1.0, .7, .3, .0, .0, .0, 2.0,547,273.5 +6.56,5,a-sust-i4,2023-24,Worcester - Goddard School/Science Technical,03480100, 1.2, .6, .3, .0, .0, .0, 2.1,378,180.0 +5.346666666666666,5,a-sust-i4,2023-24,Worcester - Grafton Street,03480115, 0.6, .6, .1, .0, .0, .0, 1.2,398,331.6666666666667 +-Infinity,1,a-sust-i4,2023-24,Worcester - Head Start,03480002, 0.0, .0, .0, .0, .0, .0, 0.0,376,Infinity +6.326666666666666,5,a-sust-i4,2023-24,Worcester - Heard Street,03480136, 0.4, .7, .1, .0, .0, .0, 1.2,251,209.16666666666669 +6.476,5,a-sust-i4,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 1.2, .6, .2, .0, .0, .0, 2.0,381,190.5 +6.728888888888888,5,a-sust-i4,2023-24,Worcester - Lake View,03480145, 1.0, .6, .2, .0, .0, .0, 1.8,286,158.88888888888889 +6.853333333333333,5,a-sust-i4,2023-24,Worcester - Lincoln Street,03480160, 0.4, .8, .3, .0, .0, .0, 1.5,215,143.33333333333334 +6.04,5,a-sust-i4,2023-24,Worcester - May Street,03480175, 0.7, .4, .1, .0, .0, .0, 1.2,294,245.0 +7.048,5,a-sust-i4,2023-24,Worcester - Midland Street,03480185, 0.4, 1.2, .5, .0, .0, .0, 2.0,238,119.0 +6.251851851851852,5,a-sust-i4,2023-24,Worcester - Nelson Place,03480200, 1.1, 1.3, .3, .0, .0, .0, 2.7,590,218.5185185185185 +6.036,5,a-sust-i4,2023-24,Worcester - Norrback Avenue,03480202, 0.8, .9, .3, .0, .0, .0, 2.0,491,245.5 +5.772549019607843,5,a-sust-i4,2023-24,Worcester - North High,03480515, 0.0, .0, .0, 5.1, .0, .0, 5.1,1420,278.4313725490196 +5.881481481481481,5,a-sust-i4,2023-24,Worcester - Quinsigamond,03480210, 1.2, 1.1, .4, .0, .0, .0, 2.7,715,264.8148148148148 +6.062222222222223,5,a-sust-i4,2023-24,Worcester - Rice Square,03480215, 0.8, .7, .3, .0, .0, .0, 1.8,436,242.22222222222223 +6.013333333333333,5,a-sust-i4,2023-24,Worcester - Roosevelt,03480220, 1.2, 1.0, .2, .0, .0, .0, 2.4,596,248.33333333333334 +5.795692307692308,5,a-sust-i4,2023-24,Worcester - South High Community,03480520, 0.0, .0, .0, 6.4, .1, .0, 6.5,1791,275.53846153846155 +6.124444444444444,5,a-sust-i4,2023-24,Worcester - Sullivan Middle,03480423, 0.0, .0, 3.6, .0, .0, .0, 3.6,844,234.44444444444443 +6.618181818181818,5,a-sust-i4,2023-24,Worcester - Tatnuck,03480230, 0.9, 1.2, .2, .0, .0, .0, 2.2,380,172.72727272727272 +6.775652173913043,5,a-sust-i4,2023-24,Worcester - Thorndyke Road,03480235, 0.6, 1.2, .5, .0, .0, .0, 2.3,352,153.0434782608696 +6.524,5,a-sust-i4,2023-24,Worcester - Union Hill School,03480240, 0.8, 1.0, .2, .0, .0, .0, 2.0,369,184.5 +6.698666666666667,5,a-sust-i4,2023-24,Worcester - University Pk Campus School,03480285, 0.0, .0, .5, 1.0, .0, .0, 1.5,244,162.66666666666666 +5.831111111111111,5,a-sust-i4,2023-24,Worcester - Vernon Hill School,03480280, 0.9, .7, .3, .0, .0, .0, 1.8,488,271.1111111111111 +6.5,5,a-sust-i4,2023-24,Worcester - Wawecus Road School,03480026, 0.3, .4, .1, .0, .0, .0, 0.8,150,187.5 +5.338181818181818,5,a-sust-i4,2023-24,Worcester - West Tatnuck,03480260, 0.5, .5, .2, .0, .0, .0, 1.1,366,332.7272727272727 +6.044,5,a-sust-i4,2023-24,Worcester - Woodland Academy,03480030, 0.9, .8, .3, .0, .0, .0, 2.0,489,244.5 +6.985,5,a-sust-i4,2023-24,Worcester - Worcester Arts Magnet School,03480225, 1.3, .9, 1.0, .0, .0, .0, 3.2,406,126.875 +6.61,5,a-sust-i4,2023-24,Worcester - Worcester East Middle,03480420, 0.0, .0, 4.0, .0, .0, .0, 4.0,695,173.75 +-107.12,1,a-sust-i4,2023-24,Worcester - Worcester Technical High,03480605, 0.0, .0, .0, .1, .0, .0, 0.1,1439,14390.0 +-Infinity,1,a-sust-i4,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, .0, .0, .0, .0, .0, 0.0,136,Infinity +7.513333333333334,5,a-sust-i4,2023-24,Worthington - R. H. Conwell,03490010, 0.5, .5, .2, .0, .0, .0, 1.2,73,60.833333333333336 +6.442105263157895,5,a-sust-i4,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, .5, .3, .0, .0, 1.0, 1.9,370,194.73684210526318 +5.556,5,a-sust-i4,2023-24,Wrentham - Delaney,03500003, 1.6, .4, .0, .0, .0, .0, 2.0,611,305.5 6.707272727272728,5,a-sust-i4,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.5, 1.6, 2.7, 3.1, .0, .0, 8.8,1422,161.59090909090907 -Infinity,1,a-sust-i4,2022-23,Abington - Abington Early Education Program,00010001, 0.0, .0, .0, .0, .0, .0, 0.0,87,Infinity 6.376296296296297,5,a-sust-i4,2022-23,Abington - Abington High,00010505, 0.0, .0, .0, 2.7, .0, .0, 2.7,548,202.96296296296296 diff --git a/data/admin_data/dese/3B_1_advcoursecomprate.csv b/data/admin_data/dese/3B_1_advcoursecomprate.csv index d5dfe065..a3928f66 100644 --- a/data/admin_data/dese/3B_1_advcoursecomprate.csv +++ b/data/admin_data/dese/3B_1_advcoursecomprate.csv @@ -1,4 +1,412 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Grade 11 and 12 Students,# Students Completing Advanced,% Students Completing Advanced,% ELA,% Math,% Science and Technology,% Computer and Information Science,% History and Social Sciences,% Arts,% All Other Subjects,% All Other Subjects +11.16,5,a-curv-i2,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 178, 149, 83.7, 35.4, 66.3, 30.3, 0.0, 33.1, 13.5, 24.2, 0.0 +11.16,5,a-curv-i2,2022-23,Abington-Abington High,00010505, 282, 236, 83.7, 14.9, 83.7, 5.0, 0.0, 11.3, 0.7, 0.0, 0.0 +10.946666666666665,5,a-curv-i2,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 117, 96, 82.1, 0.0, 44.4, 34.2, 17.9, 64.1, 0.0, 8.5, 0.0 +9.866666666666667,5,a-curv-i2,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 869, 643, 74.0, 20.0, 65.0, 40.7, 7.1, 44.0, 0.0, 10.7, 0.0 +12.533333333333333,5,a-curv-i2,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 267, 251, 94.0, 5.6, 89.9, 27.0, 9.4, 46.4, 1.9, 5.2, 0.0 +8.093333333333334,5,a-curv-i2,2022-23,Agawam-Agawam High,00050505, 484, 294, 60.7, 28.3, 48.8, 31.2, 4.3, 16.3, 0.0, 0.0, 0.0 +10.28,5,a-curv-i2,2022-23,Amesbury-Amesbury High,00070505, 218, 168, 77.1, 17.0, 54.6, 21.6, 0.0, 41.3, 4.6, 6.4, 0.0 +0.0,1,a-curv-i2,2022-23,Amesbury-Amesbury Innovation High School,00070515, 20, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.04,5,a-curv-i2,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 433, 261, 60.3, 0.7, 52.7, 19.2, 2.1, 15.7, 0.0, 11.3, 0.0 +10.413333333333332,5,a-curv-i2,2022-23,Andover-Andover High,00090505, 841, 657, 78.1, 43.3, 71.8, 34.5, 6.1, 27.1, 3.1, 8.3, 0.0 +7.48,5,a-curv-i2,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 98, 55, 56.1, 36.7, 33.7, 0.0, 0.0, 24.5, 12.2, 36.7, 0.0 +11.093333333333334,5,a-curv-i2,2022-23,Arlington-Arlington High,00100505, 772, 642, 83.2, 39.8, 75.3, 32.0, 9.8, 44.9, 2.5, 12.4, 0.0 +9.4,5,a-curv-i2,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 319, 225, 70.5, 23.5, 63.3, 6.0, 0.0, 9.4, 0.0, 4.4, 0.0 +9.293333333333333,5,a-curv-i2,2022-23,Ashland-Ashland High,00140505, 399, 278, 69.7, 12.3, 65.4, 24.6, 12.8, 0.3, 0.0, 0.0, 0.0 +10.813333333333333,5,a-curv-i2,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 534, 433, 81.1, 5.2, 50.2, 17.8, 0.0, 3.9, 0.0, 28.8, 28.1 +8.466666666666667,5,a-curv-i2,2022-23,Athol-Royalston-Athol High,06150505, 178, 113, 63.5, 20.8, 35.4, 7.9, 0.6, 32.6, 0.0, 0.0, 0.0 +10.186666666666667,5,a-curv-i2,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 140, 107, 76.4, 24.3, 60.7, 36.4, 0.0, 27.9, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Attleboro-Attleboro Community Academy,00160515, 52, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.546666666666667,5,a-curv-i2,2022-23,Attleboro-Attleboro High,00160505, 832, 471, 56.6, 12.0, 40.1, 8.4, 9.0, 33.7, 0.8, 0.1, 0.0 +5.7733333333333325,5,a-curv-i2,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 30, 13, 43.3, 3.3, 43.3, 3.3, 0.0, 0.0, 0.0, 0.0, 0.0 +7.573333333333333,5,a-curv-i2,2022-23,Auburn-Auburn Senior High,00170505, 368, 209, 56.8, 11.7, 44.8, 20.1, 2.7, 24.2, 2.2, 3.5, 0.0 +8.693333333333333,5,a-curv-i2,2022-23,Avon-Avon Middle High School,00180510, 92, 60, 65.2, 9.8, 64.1, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0 +8.306666666666667,5,a-curv-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 183, 114, 62.3, 23.5, 48.1, 20.2, 7.1, 8.2, 0.0, 4.4, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Barnstable-Barnstable High,00200505, 652, 326, 50.0, 12.0, 39.4, 10.3, 4.1, 23.2, 2.0, 5.1, 0.0 +13.053333333333335,5,a-curv-i2,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 97, 95, 97.9, 0.0, 48.5, 49.5, 0.0, 0.0, 0.0, 0.0, 0.0 +9.826666666666666,5,a-curv-i2,2022-23,Bedford-Bedford High,00230505, 392, 289, 73.7, 15.3, 71.4, 25.8, 3.8, 0.0, 0.0, 3.3, 0.0 +8.906666666666666,5,a-curv-i2,2022-23,Belchertown-Belchertown High,00240505, 337, 225, 66.8, 7.1, 49.9, 15.4, 3.6, 23.1, 0.0, 0.3, 0.0 +11.360000000000001,5,a-curv-i2,2022-23,Bellingham-Bellingham High School,00250505, 271, 231, 85.2, 21.0, 77.1, 46.5, 0.0, 1.1, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Bellingham-Keough Memorial Academy,00250510, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +11.479999999999999,5,a-curv-i2,2022-23,Belmont-Belmont High,00260505, 648, 558, 86.1, 7.9, 77.5, 70.5, 12.7, 42.6, 5.9, 1.2, 0.0 +8.613333333333333,5,a-curv-i2,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 65, 42, 64.6, 43.1, 29.2, 4.6, 9.2, 18.5, 3.1, 7.7, 0.0 +8.4,5,a-curv-i2,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 219, 138, 63.0, 35.6, 38.4, 26.0, 10.0, 5.9, 7.8, 5.0, 0.0 +9.813333333333333,5,a-curv-i2,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 140, 103, 73.6, 43.6, 65.7, 7.1, 7.1, 20.7, 0.0, 0.0, 0.0 +6.653333333333333,5,a-curv-i2,2022-23,Beverly-Beverly High,00300505, 629, 314, 49.9, 13.0, 37.4, 8.1, 0.0, 14.9, 1.9, 16.1, 0.0 +10.639999999999999,5,a-curv-i2,2022-23,Billerica-Billerica Memorial High School,00310505, 545, 435, 79.8, 16.3, 70.1, 24.8, 29.7, 22.8, 0.0, 9.4, 0.0 +9.026666666666667,5,a-curv-i2,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 603, 408, 67.7, 14.4, 50.2, 19.7, 1.2, 16.3, 1.5, 0.5, 23.2 +8.653333333333334,5,a-curv-i2,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 185, 120, 64.9, 21.1, 37.8, 40.5, 3.2, 5.9, 0.5, 0.0, 0.0 +8.946666666666665,5,a-curv-i2,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 431, 289, 67.1, 9.0, 58.2, 26.9, 0.0, 5.6, 0.0, 0.0, 18.3 +12.133333333333333,5,a-curv-i2,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 145, 132, 91.0, 31.0, 84.1, 67.6, 13.1, 22.1, 11.7, 6.9, 0.0 +2.1599999999999997,2.16,a-curv-i2,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 315, 51, 16.2, 1.0, 12.7, 4.8, 0.0, 0.0, 0.3, 0.3, 0.0 +7.493333333333334,5,a-curv-i2,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 137, 77, 56.2, 27.7, 35.8, 52.6, 0.0, 14.6, 0.0, 4.4, 0.0 +11.333333333333334,5,a-curv-i2,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 173, 147, 85.0, 42.2, 68.8, 66.5, 12.1, 28.3, 0.0, 7.5, 0.0 +11.24,5,a-curv-i2,2022-23,Boston-Another Course To College,00350541, 121, 102, 84.3, 32.2, 62.0, 28.9, 52.1, 33.9, 13.2, 6.6, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Boston Adult Tech Academy,00350548, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.546666666666667,5,a-curv-i2,2022-23,Boston-Boston Arts Academy,00350546, 226, 111, 49.1, 0.9, 45.6, 10.6, 0.0, 2.2, 0.4, 0.9, 0.0 +1.84,1.84,a-curv-i2,2022-23,Boston-Boston Collaborative High School,00350755, 123, 17, 13.8, 0.8, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.1866666666666665,5,a-curv-i2,2022-23,Boston-Boston Community Leadership Academy,00350558, 206, 111, 53.9, 29.6, 35.9, 0.0, 0.0, 0.0, 0.0, 14.1, 0.0 +5.6,5,a-curv-i2,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 157, 66, 42.0, 0.0, 39.5, 0.0, 6.4, 8.9, 0.0, 0.0, 0.0 +13.24,5,a-curv-i2,2022-23,Boston-Boston Latin Academy,00350545, 582, 578, 99.3, 21.8, 93.8, 16.7, 18.4, 66.7, 0.0, 6.5, 0.0 +13.32,5,a-curv-i2,2022-23,Boston-Boston Latin School,00350560, 797, 796, 99.9, 35.0, 96.5, 52.7, 26.5, 52.6, 6.4, 19.7, 0.0 +9.76,5,a-curv-i2,2022-23,Boston-Brighton High School,00350505, 254, 186, 73.2, 9.4, 55.1, 37.0, 3.1, 5.5, 2.4, 7.5, 0.0 +7.933333333333334,5,a-curv-i2,2022-23,Boston-Burke High School,00350525, 168, 100, 59.5, 17.9, 57.7, 0.0, 9.5, 16.7, 0.6, 1.8, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Carter School,00350036, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.213333333333334,5,a-curv-i2,2022-23,Boston-Charlestown High School,00350515, 356, 166, 46.6, 5.9, 42.1, 8.1, 3.4, 11.5, 0.3, 7.9, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Community Academy,00350518, 33, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.453333333333333,5,a-curv-i2,2022-23,Boston-Community Academy of Science and Health,00350581, 149, 61, 40.9, 22.8, 29.5, 5.4, 0.0, 6.7, 0.0, 0.0, 0.0 +8.586666666666668,5,a-curv-i2,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 163, 105, 64.4, 8.6, 39.9, 5.5, 22.7, 5.5, 3.7, 8.0, 0.0 +4.413333333333333,4.41,a-curv-i2,2022-23,Boston-East Boston High School,00350530, 532, 176, 33.1, 3.6, 6.4, 2.3, 22.4, 2.3, 0.0, 0.2, 0.0 +7.253333333333333,5,a-curv-i2,2022-23,Boston-English High School,00350535, 272, 148, 54.4, 10.3, 50.0, 8.5, 0.0, 7.0, 0.0, 0.0, 0.0 +6.239999999999999,5,a-curv-i2,2022-23,Boston-Excel High School,00350522, 205, 96, 46.8, 20.5, 38.5, 5.4, 13.2, 0.0, 0.0, 0.0, 0.0 +10.96,5,a-curv-i2,2022-23,Boston-Fenway High School,00350540, 174, 143, 82.2, 28.7, 44.3, 1.1, 4.0, 0.0, 0.0, 12.1, 0.0 +1.24,1.24,a-curv-i2,2022-23,Boston-Greater Egleston High School,00350543, 75, 7, 9.3, 0.0, 0.0, 0.0, 9.3, 0.0, 0.0, 0.0, 0.0 +6.466666666666667,5,a-curv-i2,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 132, 64, 48.5, 18.2, 34.8, 13.6, 7.6, 21.2, 0.8, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 8, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +13.08,5,a-curv-i2,2022-23,Boston-Lyon High School,00350655, 53, 52, 98.1, 96.2, 45.3, 0.0, 0.0, 41.5, 0.0, 0.0, 0.0 +6.706666666666666,5,a-curv-i2,2022-23,Boston-Madison Park Technical Vocational High School,00350537, 459, 231, 50.3, 8.1, 47.3, 9.6, 0.9, 5.4, 0.7, 5.7, 8.5 +11.626666666666667,5,a-curv-i2,2022-23,Boston-Margarita Muniz Academy,00350549, 133, 116, 87.2, 0.0, 54.1, 0.0, 0.0, 0.0, 0.0, 34.6, 0.0 +0.0,1,a-curv-i2,2022-23,Boston-McKinley Schools,00350363, 42, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.08,5,a-curv-i2,2022-23,Boston-New Mission High School,00350542, 212, 192, 90.6, 42.5, 88.2, 10.8, 11.3, 22.2, 0.0, 12.3, 0.0 +13.133333333333333,5,a-curv-i2,2022-23,Boston-O'Bryant School of Math & Science,00350575, 610, 601, 98.5, 52.6, 81.5, 41.6, 20.2, 49.5, 0.0, 16.2, 0.0 +13.186666666666667,5,a-curv-i2,2022-23,Boston-Quincy Upper School,00350565, 94, 93, 98.9, 98.9, 97.9, 98.9, 23.4, 97.9, 98.9, 96.8, 0.0 +9.746666666666666,5,a-curv-i2,2022-23,Boston-Snowden International High School,00350690, 201, 147, 73.1, 40.8, 61.7, 29.4, 0.0, 32.8, 15.9, 42.8, 0.0 +5.053333333333333,5,a-curv-i2,2022-23,Boston-TechBoston Academy,00350657, 282, 107, 37.9, 7.1, 27.7, 8.2, 5.3, 5.7, 5.7, 1.1, 0.0 +9.133333333333333,5,a-curv-i2,2022-23,Bourne-Bourne High School,00360505, 181, 124, 68.5, 12.7, 54.1, 11.0, 7.2, 25.4, 0.0, 0.6, 0.0 +9.32,5,a-curv-i2,2022-23,Braintree-Braintree High,00400505, 783, 547, 69.9, 8.8, 67.8, 20.9, 7.4, 27.6, 2.6, 5.5, 0.0 +7.760000000000001,5,a-curv-i2,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 639, 372, 58.2, 20.3, 51.0, 16.0, 0.0, 14.9, 0.9, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 5,"","","","","","","","","","" +4.1466666666666665,4.15,a-curv-i2,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 209, 65, 31.1, 0.0, 17.7, 22.5, 0.0, 0.0, 0.0, 0.0, 6.2 +9.28,5,a-curv-i2,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 635, 442, 69.6, 9.0, 17.2, 0.0, 0.0, 0.0, 0.0, 44.7, 33.1 +0.3466666666666667,1,a-curv-i2,2022-23,Brockton-Brockton Champion High School,00440515, 39, 1, 2.6, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.333333333333333,5,a-curv-i2,2022-23,Brockton-Brockton High,00440505," 1,508", 830, 55.0, 12.3, 49.5, 10.6, 4.1, 10.1, 3.1, 8.7, 0.0 +3.3333333333333335,3.33,a-curv-i2,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 32, 8, 25.0, 0.0, 25.0, 0.0, 0.0, 3.1, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Brockton-Edison Academy,00440520, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 12, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.906666666666666,5,a-curv-i2,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 218, 211, 96.8, 53.7, 75.7, 75.7, 54.6, 0.0, 0.0, 27.1, 0.0 +12.386666666666667,5,a-curv-i2,2022-23,Brookline-Brookline High,00460505, 991, 921, 92.9, 0.0, 90.6, 55.8, 6.6, 19.6, 3.1, 10.7, 0.0 +9.866666666666667,5,a-curv-i2,2022-23,Burlington-Burlington High,00480505, 439, 325, 74.0, 23.9, 59.5, 34.6, 23.7, 31.0, 1.1, 3.9, 0.0 +9.453333333333335,5,a-curv-i2,2022-23,Cambridge-Cambridge Rindge and Latin,00490506, 899, 637, 70.9, 25.4, 53.7, 31.8, 14.3, 35.9, 3.8, 10.0, 3.0 +10.493333333333334,5,a-curv-i2,2022-23,Canton-Canton High,00500505, 414, 326, 78.7, 44.4, 60.6, 20.3, 3.1, 27.5, 2.4, 2.9, 0.0 +12.533333333333333,5,a-curv-i2,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 318, 299, 94.0, 11.0, 11.9, 0.0, 0.0, 9.4, 0.0, 92.8, 34.3 +8.96,5,a-curv-i2,2022-23,Carver-Carver Middle/High School,00520405, 192, 129, 67.2, 9.9, 51.0, 30.2, 9.4, 12.5, 0.0, 0.0, 0.0 +9.4,5,a-curv-i2,2022-23,Central Berkshire-Wahconah Regional High,06350505, 241, 170, 70.5, 22.4, 61.4, 17.8, 0.0, 17.4, 2.9, 3.7, 0.0 +9.546666666666665,5,a-curv-i2,2022-23,Chelmsford-Chelmsford High,00560505, 661, 473, 71.6, 18.8, 62.3, 23.0, 9.7, 28.6, 0.2, 13.2, 0.0 +8.506666666666666,5,a-curv-i2,2022-23,Chelsea-Chelsea High,00570505, 661, 422, 63.8, 25.1, 52.2, 6.5, 0.6, 16.5, 0.8, 14.5, 0.0 +0.92,1,a-curv-i2,2022-23,Chelsea-Chelsea Opportunity Academy,00570515, 72, 5, 6.9, 0.0, 0.0, 6.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.4,5,a-curv-i2,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 25, 12, 48.0, 0.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.333333333333333,5,a-curv-i2,2022-23,Chicopee-Chicopee Academy,00610021, 30, 12, 40.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.053333333333333,5,a-curv-i2,2022-23,Chicopee-Chicopee Comprehensive High School,00610510, 565, 214, 37.9, 9.7, 31.9, 5.3, 0.0, 10.1, 0.0, 2.1, 0.5 +6.133333333333334,5,a-curv-i2,2022-23,Chicopee-Chicopee High,00610505, 413, 190, 46.0, 12.1, 36.3, 8.5, 0.0, 24.5, 0.0, 5.8, 0.0 +4.8133333333333335,4.81,a-curv-i2,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 83, 30, 36.1, 18.1, 36.1, 0.0, 0.0, 9.6, 0.0, 0.0, 0.0 +4.293333333333334,4.29,a-curv-i2,2022-23,Clinton-Clinton Senior High,00640505, 258, 83, 32.2, 14.0, 16.3, 11.6, 5.0, 8.5, 0.0, 3.5, 0.0 +9.333333333333334,5,a-curv-i2,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 60, 42, 70.0, 46.7, 58.3, 43.3, 15.0, 0.0, 0.0, 0.0, 0.0 +12.093333333333334,5,a-curv-i2,2022-23,Cohasset-Cohasset High School,00650505, 215, 195, 90.7, 50.2, 80.9, 26.0, 0.0, 40.5, 0.0, 5.1, 0.0 +4.826666666666667,4.83,a-curv-i2,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 58, 21, 36.2, 36.2, 12.1, 13.8, 0.0, 0.0, 0.0, 0.0, 0.0 +10.986666666666668,5,a-curv-i2,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 74, 61, 82.4, 17.6, 70.3, 21.6, 20.3, 29.7, 0.0, 0.0, 0.0 +12.32,5,a-curv-i2,2022-23,Concord-Carlisle-Concord Carlisle High,06400505, 669, 618, 92.4, 8.5, 90.3, 26.6, 0.1, 1.6, 3.1, 12.0, 0.0 +10.746666666666666,5,a-curv-i2,2022-23,Danvers-Danvers High,00710505, 403, 325, 80.6, 23.6, 54.1, 48.4, 7.7, 39.5, 8.9, 1.7, 0.0 +8.933333333333334,5,a-curv-i2,2022-23,Dartmouth-Dartmouth High,00720505, 497, 333, 67.0, 19.3, 52.7, 15.7, 9.3, 19.5, 3.0, 0.0, 0.0 +8.96,5,a-curv-i2,2022-23,Dedham-Dedham High,00730505, 344, 231, 67.2, 13.1, 59.9, 16.6, 4.1, 22.1, 6.1, 6.4, 0.0 +9.093333333333334,5,a-curv-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 308, 210, 68.2, 30.8, 47.1, 22.4, 7.8, 24.0, 7.1, 6.5, 0.0 +7.306666666666667,5,a-curv-i2,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 330, 181, 54.8, 22.1, 46.1, 23.0, 0.9, 23.6, 4.8, 0.0, 0.0 +6.746666666666667,5,a-curv-i2,2022-23,Douglas-Douglas High School,00770505, 180, 91, 50.6, 19.4, 40.6, 23.3, 0.0, 16.7, 0.0, 0.0, 0.0 +12.479999999999999,5,a-curv-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 326, 305, 93.6, 38.7, 91.4, 35.6, 4.0, 46.9, 3.4, 8.6, 0.0 +8.08,5,a-curv-i2,2022-23,Dracut-Dracut Senior High,00790505, 391, 237, 60.6, 14.6, 51.4, 26.1, 0.0, 13.6, 0.0, 2.0, 0.0 +8.453333333333333,5,a-curv-i2,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 426, 270, 63.4, 14.6, 47.4, 35.2, 2.8, 6.1, 0.5, 4.7, 0.0 +11.666666666666666,5,a-curv-i2,2022-23,Duxbury-Duxbury High,00820505, 464, 406, 87.5, 25.0, 81.9, 21.3, 0.0, 44.2, 3.2, 8.4, 0.0 +9.013333333333332,5,a-curv-i2,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 299, 202, 67.6, 30.8, 57.5, 21.1, 0.0, 2.7, 1.7, 0.0, 0.0 +10.186666666666667,5,a-curv-i2,2022-23,East Longmeadow-East Longmeadow High,00870505, 423, 323, 76.4, 17.5, 71.4, 11.6, 5.9, 20.6, 0.0, 0.7, 0.2 +6.8133333333333335,5,a-curv-i2,2022-23,Easthampton-Easthampton High,00860505, 182, 93, 51.1, 47.3, 15.9, 1.1, 1.1, 12.6, 0.0, 1.6, 0.0 +8.48,5,a-curv-i2,2022-23,Easton-Oliver Ames High,00880505, 547, 348, 63.6, 8.2, 52.8, 23.2, 2.7, 31.8, 2.4, 1.8, 0.0 +9.613333333333333,5,a-curv-i2,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 179, 129, 72.1, 43.6, 60.3, 13.4, 0.0, 0.0, 0.0, 0.0, 0.0 +10.573333333333332,5,a-curv-i2,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 791, 627, 79.3, 5.8, 55.4, 16.7, 0.0, 32.4, 0.0, 0.0, 43.5 +0.0,1,a-curv-i2,2022-23,Everett-Devens School,00930030, 8, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.733333333333333,5,a-curv-i2,2022-23,Everett-Everett High,00930505," 1,017", 590, 58.0, 13.5, 49.2, 5.9, 9.1, 7.1, 0.0, 0.0, 0.0 +12.92,5,a-curv-i2,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 318, 308, 96.9, 72.3, 92.8, 37.1, 5.0, 55.0, 2.5, 16.7, 0.0 +8.146666666666667,5,a-curv-i2,2022-23,Fairhaven-Fairhaven High,00940505, 316, 193, 61.1, 17.4, 55.4, 14.6, 0.0, 16.5, 0.0, 0.0, 0.0 +9.066666666666666,5,a-curv-i2,2022-23,Fall River-B M C Durfee High,00950505," 1,075", 731, 68.0, 20.0, 54.2, 34.7, 2.1, 15.4, 1.1, 12.9, 0.0 +2.76,2.76,a-curv-i2,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 82, 17, 20.7, 0.0, 0.0, 20.7, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Fall River-Stone PK-12 School,00950340, 14, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +9.653333333333334,5,a-curv-i2,2022-23,Falmouth-Falmouth High,00960505, 370, 268, 72.4, 13.0, 64.6, 21.1, 7.3, 44.9, 6.8, 8.4, 0.0 +8.0,5,a-curv-i2,2022-23,Fitchburg-Fitchburg High,00970505, 567, 340, 60.0, 31.2, 44.6, 16.0, 8.6, 26.6, 2.6, 13.1, 0.0 +3.4266666666666667,3.43,a-curv-i2,2022-23,Fitchburg-Goodrich Academy,00970510, 175, 45, 25.7, 0.6, 7.4, 18.9, 0.0, 0.6, 0.0, 0.6, 0.0 +0.0,1,a-curv-i2,2022-23,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 0,"","","","","","","","","","" +9.346666666666666,5,a-curv-i2,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 174, 122, 70.1, 31.0, 37.9, 34.5, 6.3, 30.5, 3.4, 10.3, 0.0 +8.906666666666666,5,a-curv-i2,2022-23,Foxborough-Foxborough High,00990505, 377, 252, 66.8, 22.0, 51.7, 12.7, 4.8, 40.3, 2.9, 9.8, 0.0 +7.760000000000001,5,a-curv-i2,2022-23,Framingham-Framingham High School,01000515," 1,187", 691, 58.2, 14.7, 43.6, 15.4, 1.5, 22.3, 3.5, 1.4, 0.0 +11.76,5,a-curv-i2,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 119, 105, 88.2, 0.0, 80.7, 53.8, 2.5, 5.9, 0.0, 2.5, 0.0 +6.96,5,a-curv-i2,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 272, 142, 52.2, 15.8, 26.5, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0 +10.266666666666667,5,a-curv-i2,2022-23,Franklin-Franklin High,01010505, 835, 643, 77.0, 15.0, 71.3, 25.9, 4.2, 38.0, 3.8, 7.5, 0.0 +7.88,5,a-curv-i2,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 367, 217, 59.1, 29.2, 48.0, 20.4, 3.3, 34.3, 1.1, 5.2, 0.0 +8.786666666666667,5,a-curv-i2,2022-23,Frontier-Frontier Regional,06700505, 182, 120, 65.9, 25.3, 59.3, 23.6, 0.0, 13.7, 0.0, 4.4, 0.0 +9.08,5,a-curv-i2,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 91, 62, 68.1, 28.6, 54.9, 16.5, 7.7, 41.8, 11.0, 65.9, 0.0 +9.586666666666668,5,a-curv-i2,2022-23,Gardner-Gardner High,01030505, 267, 192, 71.9, 36.3, 69.3, 25.5, 5.6, 23.2, 1.5, 16.5, 0.0 +6.293333333333334,5,a-curv-i2,2022-23,Gateway-Gateway Regional High,06720505, 89, 42, 47.2, 23.6, 31.5, 20.2, 0.0, 13.5, 0.0, 1.1, 0.0 +8.8,5,a-curv-i2,2022-23,Georgetown-Georgetown High School,01050505, 150, 99, 66.0, 9.3, 61.3, 11.3, 2.7, 24.7, 0.0, 0.7, 0.0 +7.706666666666666,5,a-curv-i2,2022-23,Gill-Montague-Turners Fall High,06740505, 90, 52, 57.8, 21.1, 40.0, 23.3, 2.2, 17.8, 7.8, 20.0, 0.0 +8.893333333333334,5,a-curv-i2,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 69, 46, 66.7, 21.7, 62.3, 1.4, 1.4, 17.4, 0.0, 1.4, 0.0 +5.52,5,a-curv-i2,2022-23,Gloucester-Gloucester High,01070505, 391, 162, 41.4, 9.2, 33.5, 19.7, 1.5, 4.9, 0.0, 0.0, 0.0 +8.306666666666667,5,a-curv-i2,2022-23,Grafton-Grafton High School,01100505, 430, 268, 62.3, 46.3, 45.8, 23.5, 6.5, 16.5, 0.0, 1.6, 0.0 +8.893333333333334,5,a-curv-i2,2022-23,Granby-Granby Jr Sr High School,01110505, 105, 70, 66.7, 23.8, 44.8, 0.0, 24.8, 14.3, 0.0, 19.0, 0.0 +4.733333333333333,4.73,a-curv-i2,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 349, 124, 35.5, 10.9, 29.2, 5.2, 0.6, 8.3, 1.4, 4.0, 0.0 +8.12,5,a-curv-i2,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 663, 404, 60.9, 9.0, 33.0, 9.8, 0.0, 0.0, 0.0, 3.0, 43.9 +8.346666666666668,5,a-curv-i2,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 821, 514, 62.6, 6.1, 49.5, 56.4, 0.0, 6.0, 0.0, 0.0, 33.9 +11.173333333333334,5,a-curv-i2,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 1,108", 929, 83.8, 7.9, 46.1, 24.0, 1.8, 0.0, 0.7, 52.3, 33.6 +4.72,4.72,a-curv-i2,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 970, 343, 35.4, 5.2, 16.7, 0.0, 0.0, 1.9, 0.0, 0.0, 25.2 +6.133333333333334,5,a-curv-i2,2022-23,Greenfield-Greenfield High,01140505, 150, 69, 46.0, 32.0, 30.0, 26.7, 0.0, 16.7, 0.0, 4.0, 0.0 +10.386666666666667,5,a-curv-i2,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 349, 272, 77.9, 22.3, 70.8, 37.8, 0.0, 9.5, 3.7, 1.7, 0.0 +9.520000000000001,5,a-curv-i2,2022-23,Hadley-Hopkins Academy,01170505, 84, 60, 71.4, 11.9, 57.1, 48.8, 1.2, 19.0, 2.4, 0.0, 0.0 +11.360000000000001,5,a-curv-i2,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 237, 202, 85.2, 11.4, 77.2, 26.6, 3.0, 41.8, 0.0, 21.5, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 130, 130, 100.0, 40.0, 66.9, 55.4, 8.5, 33.1, 0.0, 21.5, 0.0 +12.973333333333333,5,a-curv-i2,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 75, 73, 97.3, 42.7, 57.3, 69.3, 2.7, 34.7, 0.0, 25.3, 0.0 +8.626666666666667,5,a-curv-i2,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 467, 302, 64.7, 17.8, 61.2, 11.8, 5.4, 15.2, 2.6, 2.6, 0.9 +10.386666666666667,5,a-curv-i2,2022-23,Hampshire-Hampshire Regional High,06830505, 199, 155, 77.9, 7.5, 49.2, 44.7, 7.0, 21.6, 2.0, 15.1, 0.0 +10.053333333333335,5,a-curv-i2,2022-23,Hanover-Hanover High,01220505, 350, 264, 75.4, 11.1, 72.0, 13.1, 0.0, 20.3, 3.4, 8.6, 0.0 +11.986666666666668,5,a-curv-i2,2022-23,Harvard-Bromfield,01250505, 159, 143, 89.9, 18.2, 86.2, 33.3, 6.9, 42.1, 0.0, 3.1, 0.0 +10.546666666666665,5,a-curv-i2,2022-23,Hatfield-Smith Academy,01270505, 43, 34, 79.1, 0.0, 79.1, 41.9, 0.0, 14.0, 2.3, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 3,"","","","","","","","","","" +1.9066666666666667,1.91,a-curv-i2,2022-23,Haverhill-Gateway Academy,01280515, 21, 3, 14.3, 0.0, 0.0, 14.3, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Haverhill-Greenleaf Academy,01280033, 7, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.946666666666667,5,a-curv-i2,2022-23,Haverhill-Haverhill High,01280505, 848, 505, 59.6, 22.2, 44.8, 12.5, 4.2, 19.3, 0.1, 2.6, 0.0 +11.706666666666667,5,a-curv-i2,2022-23,Hingham-Hingham High,01310505, 599, 526, 87.8, 12.2, 87.3, 26.4, 2.7, 8.3, 1.0, 18.7, 0.0 +5.346666666666667,5,a-curv-i2,2022-23,Holbrook-Holbrook Middle High School,01330505, 162, 65, 40.1, 9.9, 37.7, 4.3, 0.0, 4.3, 0.0, 0.0, 0.0 +10.479999999999999,5,a-curv-i2,2022-23,Holliston-Holliston High,01360505, 388, 305, 78.6, 21.1, 67.0, 32.7, 10.6, 40.7, 2.1, 14.2, 0.0 +6.6,5,a-curv-i2,2022-23,Holyoke-Holyoke High,01370505, 738, 365, 49.5, 12.5, 26.2, 4.7, 0.1, 16.1, 1.2, 24.1, 3.0 +6.8133333333333335,5,a-curv-i2,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 92, 47, 51.1, 19.6, 27.2, 6.5, 0.0, 33.7, 0.0, 0.0, 0.0 +10.853333333333333,5,a-curv-i2,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 145, 118, 81.4, 40.7, 64.8, 15.9, 11.0, 39.3, 0.0, 2.1, 0.0 +10.973333333333333,5,a-curv-i2,2022-23,Hopkinton-Hopkinton High,01390505, 593, 488, 82.3, 20.6, 67.6, 35.2, 10.6, 59.5, 6.7, 3.9, 0.0 +9.453333333333335,5,a-curv-i2,2022-23,Hudson-Hudson High,01410505, 313, 222, 70.9, 28.4, 50.5, 42.5, 0.0, 14.7, 1.3, 9.9, 0.0 +10.520000000000001,5,a-curv-i2,2022-23,Hull-Hull High,01420505, 114, 90, 78.9, 31.6, 69.3, 23.7, 7.0, 67.5, 0.0, 1.8, 0.0 +7.28,5,a-curv-i2,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 174, 95, 54.6, 0.0, 50.6, 18.4, 1.1, 0.0, 0.0, 0.0, 0.0 +9.306666666666667,5,a-curv-i2,2022-23,Ipswich-Ipswich High,01440505, 248, 173, 69.8, 23.8, 52.8, 27.4, 10.9, 33.5, 0.0, 9.3, 0.0 +11.44,5,a-curv-i2,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 233, 200, 85.8, 51.1, 58.4, 37.8, 12.0, 30.5, 4.3, 27.5, 0.0 +11.04,5,a-curv-i2,2022-23,King Philip-King Philip Regional High,06900505, 559, 463, 82.8, 45.3, 78.4, 25.4, 7.9, 48.7, 3.9, 4.7, 0.0 +7.706666666666666,5,a-curv-i2,2022-23,Lawrence-High School Learning Center,01490536, 187, 108, 57.8, 0.0, 33.2, 34.8, 0.0, 0.0, 0.0, 0.0, 0.0 +10.466666666666667,5,a-curv-i2,2022-23,Lawrence-Lawrence High School,01490515," 1,324"," 1,040", 78.5, 19.0, 52.9, 21.7, 9.4, 26.1, 1.1, 25.5, 0.0 +5.613333333333333,5,a-curv-i2,2022-23,Lawrence-RISE Academy,01490615, 38, 16, 42.1, 0.0, 0.0, 42.1, 0.0, 0.0, 0.0, 0.0, 0.0 +3.64,3.64,a-curv-i2,2022-23,Lawrence-School for Exceptional Studies,01490537, 11, 3, 27.3, 0.0, 0.0, 27.3, 0.0, 0.0, 0.0, 0.0, 0.0 +9.093333333333334,5,a-curv-i2,2022-23,Lee-Lee Middle/High School,01500505, 110, 75, 68.2, 33.6, 57.3, 21.8, 9.1, 8.2, 0.0, 7.3, 0.0 +8.346666666666668,5,a-curv-i2,2022-23,Leicester-Leicester High,01510505, 211, 132, 62.6, 14.7, 58.8, 3.3, 1.9, 9.0, 0.0, 0.0, 0.0 +10.493333333333334,5,a-curv-i2,2022-23,Lenox-Lenox Memorial High,01520505, 127, 100, 78.7, 0.0, 71.7, 38.6, 10.2, 0.0, 2.4, 5.5, 0.0 +7.373333333333333,5,a-curv-i2,2022-23,Leominster-Center For Technical Education Innovation,01530605, 284, 157, 55.3, 4.2, 28.2, 3.2, 0.0, 19.4, 0.0, 0.0, 27.5 +0.0,1,a-curv-i2,2022-23,Leominster-Leominster Center for Excellence,01530515, 25, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.4,5,a-curv-i2,2022-23,Leominster-Leominster High School,01530505, 615, 295, 48.0, 16.6, 34.5, 9.8, 0.5, 21.5, 0.3, 2.8, 0.0 +12.026666666666667,5,a-curv-i2,2022-23,Lexington-Lexington High,01550505," 1,119"," 1,009", 90.2, 0.0, 84.3, 31.6, 14.4, 62.2, 5.8, 7.0, 0.0 +11.04,5,a-curv-i2,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 711, 589, 82.8, 0.0, 82.1, 14.8, 6.2, 0.3, 2.1, 0.0, 0.0 +10.093333333333334,5,a-curv-i2,2022-23,Littleton-Littleton High School,01580505, 226, 171, 75.7, 6.6, 68.6, 16.8, 8.8, 40.7, 2.2, 13.3, 0.0 +9.933333333333334,5,a-curv-i2,2022-23,Longmeadow-Longmeadow High,01590505, 436, 325, 74.5, 22.7, 62.2, 49.3, 6.4, 20.9, 6.9, 7.6, 0.0 +0.0,1,a-curv-i2,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 62, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 4,"","","","","","","","","","" +0.0,1,a-curv-i2,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 12, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.36,5,a-curv-i2,2022-23,Lowell-Lowell High,01600505," 1,358", 750, 55.2, 5.3, 30.6, 35.8, 0.0, 11.3, 0.0, 1.3, 0.0 +0.32,1,a-curv-i2,2022-23,Lowell-The Career Academy,01600515, 41, 1, 2.4, 0.0, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.173333333333334,5,a-curv-i2,2022-23,Ludlow-Ludlow Senior High,01610505, 362, 222, 61.3, 29.6, 48.1, 29.0, 0.0, 17.7, 0.0, 0.0, 0.0 +8.0,5,a-curv-i2,2022-23,Lunenburg-Lunenburg High,01620505, 210, 126, 60.0, 35.7, 29.0, 11.4, 3.8, 27.6, 6.7, 0.5, 0.0 +5.64,5,a-curv-i2,2022-23,Lynn-Classical High,01630505, 795, 336, 42.3, 16.0, 26.3, 10.6, 7.9, 17.9, 1.9, 19.5, 0.0 +3.3333333333333335,3.33,a-curv-i2,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 36, 9, 25.0, 2.8, 22.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.386666666666667,4.39,a-curv-i2,2022-23,Lynn-Lynn English High,01630510, 907, 298, 32.9, 13.3, 18.5, 7.6, 2.2, 14.7, 0.1, 14.8, 0.0 +5.2,5,a-curv-i2,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 523, 204, 39.0, 10.5, 18.0, 6.9, 0.0, 9.6, 0.0, 13.6, 12.2 +11.853333333333333,5,a-curv-i2,2022-23,Lynnfield-Lynnfield High,01640505, 287, 255, 88.9, 32.8, 88.2, 20.2, 11.1, 55.4, 1.4, 14.6, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 98, 98, 100.0, 51.0, 100.0, 36.7, 33.7, 43.9, 8.2, 10.2, 0.0 +9.653333333333334,5,a-curv-i2,2022-23,Malden-Malden High,01650505, 874, 633, 72.4, 10.0, 68.2, 15.0, 1.4, 17.8, 1.5, 3.1, 0.0 +10.146666666666667,5,a-curv-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 209, 159, 76.1, 28.7, 61.7, 37.8, 1.9, 44.5, 0.0, 20.6, 0.0 +8.72,5,a-curv-i2,2022-23,Mansfield-Mansfield High,01670505, 583, 381, 65.4, 17.7, 48.9, 14.1, 5.0, 32.2, 3.4, 3.4, 0.0 +3.2666666666666666,3.27,a-curv-i2,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 159, 39, 24.5, 2.5, 20.1, 3.8, 0.0, 0.0, 0.0, 0.0, 0.0 +9.906666666666666,5,a-curv-i2,2022-23,Marblehead-Marblehead High,01680505, 444, 330, 74.3, 25.9, 67.1, 10.4, 11.9, 0.0, 0.0, 5.0, 0.0 +7.173333333333333,5,a-curv-i2,2022-23,Marlborough-Marlborough High,01700505, 563, 303, 53.8, 29.0, 38.7, 9.6, 0.0, 22.2, 0.7, 2.0, 0.0 +9.373333333333333,5,a-curv-i2,2022-23,Marshfield-Marshfield High,01710505, 556, 391, 70.3, 13.7, 64.6, 24.5, 5.6, 29.1, 9.5, 3.8, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 16, 16, 100.0, 100.0, 100.0, 68.8, 0.0, 75.0, 75.0, 0.0, 0.0 +8.373333333333333,5,a-curv-i2,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 344, 216, 62.8, 26.2, 50.6, 16.6, 3.5, 27.3, 2.0, 14.5, 0.0 +9.8,5,a-curv-i2,2022-23,Masconomet-Masconomet Regional High School,07050505, 517, 380, 73.5, 9.5, 66.2, 23.4, 13.2, 26.5, 4.4, 9.5, 0.0 +9.933333333333334,5,a-curv-i2,2022-23,Mashpee-Mashpee Middle-High School,01720505, 204, 152, 74.5, 20.1, 70.6, 28.9, 1.5, 31.4, 11.3, 6.4, 0.0 +12.546666666666665,5,a-curv-i2,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 135, 127, 94.1, 46.7, 93.3, 26.7, 28.9, 61.5, 0.0, 18.5, 0.0 +9.106666666666666,5,a-curv-i2,2022-23,Maynard-Maynard High,01740505, 145, 99, 68.3, 22.1, 61.4, 23.4, 2.8, 17.2, 0.0, 7.6, 0.0 +11.186666666666667,5,a-curv-i2,2022-23,Medfield-Medfield Senior High,01750505, 386, 324, 83.9, 18.4, 66.6, 17.9, 0.0, 57.0, 7.0, 15.8, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Medford-Curtis-Tufts,01760510, 8, 4, 50.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.28,5,a-curv-i2,2022-23,Medford-Medford High,01760505, 599, 327, 54.6, 15.5, 42.7, 4.8, 12.2, 17.0, 1.0, 3.7, 0.0 +12.04,5,a-curv-i2,2022-23,Medway-Medway High,01770505, 308, 278, 90.3, 26.3, 84.1, 41.6, 3.6, 45.1, 0.3, 10.7, 0.0 +10.946666666666665,5,a-curv-i2,2022-23,Melrose-Melrose High,01780505, 447, 367, 82.1, 52.1, 55.5, 36.7, 3.1, 25.3, 0.0, 20.6, 0.0 +9.946666666666665,5,a-curv-i2,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 299, 223, 74.6, 25.8, 61.2, 14.7, 5.4, 36.5, 4.3, 6.0, 0.0 +6.706666666666666,5,a-curv-i2,2022-23,Methuen-Methuen High,01810505, 953, 479, 50.3, 10.4, 39.8, 8.0, 9.0, 17.6, 0.4, 1.4, 0.0 +9.653333333333334,5,a-curv-i2,2022-23,Middleborough-Middleborough High,01820505, 398, 288, 72.4, 12.3, 58.0, 26.1, 8.8, 16.6, 2.0, 9.5, 0.0 +8.266666666666667,5,a-curv-i2,2022-23,Milford-Milford High,01850505, 598, 371, 62.0, 23.1, 49.3, 27.1, 5.2, 16.7, 1.5, 4.7, 0.0 +8.76,5,a-curv-i2,2022-23,Millbury-Millbury Junior/Senior High,01860505, 239, 157, 65.7, 14.6, 54.4, 15.5, 4.6, 1.3, 1.3, 0.0, 0.0 +11.653333333333334,5,a-curv-i2,2022-23,Millis-Millis High School,01870505, 167, 146, 87.4, 12.0, 86.2, 15.6, 17.4, 35.3, 2.4, 16.8, 0.0 +12.866666666666667,5,a-curv-i2,2022-23,Milton-Milton High,01890505, 547, 528, 96.5, 32.2, 96.3, 12.4, 4.9, 44.1, 3.5, 19.4, 0.0 +6.84,5,a-curv-i2,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 316, 162, 51.3, 11.1, 35.1, 33.9, 0.0, 15.5, 0.0, 0.0, 0.0 +9.106666666666666,5,a-curv-i2,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 63, 43, 68.3, 33.3, 54.0, 30.2, 0.0, 19.0, 0.0, 0.0, 0.0 +9.32,5,a-curv-i2,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 239, 167, 69.9, 21.8, 49.4, 19.7, 7.5, 46.0, 2.1, 4.6, 0.0 +5.026666666666667,5,a-curv-i2,2022-23,Monson-Monson High School,01910505, 77, 29, 37.7, 14.3, 19.5, 14.3, 1.3, 0.0, 0.0, 2.6, 0.0 +13.146666666666667,5,a-curv-i2,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 664, 655, 98.6, 18.7, 48.0, 50.5, 1.4, 0.0, 0.0, 93.5, 35.1 +11.373333333333333,5,a-curv-i2,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 184, 157, 85.3, 37.5, 72.8, 14.7, 8.2, 50.5, 1.6, 16.3, 0.0 +13.013333333333332,5,a-curv-i2,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 169, 165, 97.6, 79.9, 83.4, 87.6, 0.0, 85.2, 7.7, 55.6, 0.0 +8.626666666666667,5,a-curv-i2,2022-23,Nantucket-Nantucket High,01970505, 269, 174, 64.7, 17.8, 59.1, 12.3, 0.0, 14.5, 0.4, 0.0, 0.0 +6.92,5,a-curv-i2,2022-23,Narragansett-Narragansett Regional High,07200505, 133, 69, 51.9, 16.5, 33.8, 23.3, 1.5, 30.1, 0.0, 0.0, 0.0 +10.733333333333333,5,a-curv-i2,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 333, 268, 80.5, 18.9, 54.4, 9.6, 0.0, 17.7, 0.0, 44.7, 32.1 +11.16,5,a-curv-i2,2022-23,Nashoba-Nashoba Regional,07250505, 416, 348, 83.7, 8.4, 82.9, 18.0, 16.1, 41.3, 1.7, 2.2, 0.0 +9.546666666666665,5,a-curv-i2,2022-23,Natick-Natick High,01980505, 771, 552, 71.6, 19.5, 58.8, 17.9, 7.3, 37.5, 0.4, 3.8, 0.0 +9.666666666666666,5,a-curv-i2,2022-23,Nauset-Nauset Regional High,06600505, 389, 282, 72.5, 21.1, 59.1, 27.0, 1.8, 37.5, 7.5, 5.4, 0.0 +12.813333333333333,5,a-curv-i2,2022-23,Needham-Needham High,01990505, 798, 767, 96.1, 21.8, 94.6, 16.0, 0.0, 37.3, 1.8, 9.0, 0.0 +8.48,5,a-curv-i2,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 129, 82, 63.6, 30.2, 48.8, 23.3, 0.0, 20.9, 0.0, 2.3, 0.0 +6.12,5,a-curv-i2,2022-23,New Bedford-New Bedford High,02010505," 1,248", 573, 45.9, 8.0, 34.4, 7.6, 2.5, 10.5, 2.2, 7.4, 0.0 +0.0,1,a-curv-i2,2022-23,New Bedford-Trinity Day Academy,02010510, 18, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 70, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.146666666666667,5,a-curv-i2,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 179, 163, 91.1, 48.6, 41.3, 30.2, 14.5, 56.4, 5.6, 73.7, 0.0 +10.066666666666666,5,a-curv-i2,2022-23,Newburyport-Newburyport High,02040505, 421, 318, 75.5, 29.7, 57.5, 39.9, 1.4, 17.3, 3.1, 6.2, 0.0 +11.253333333333334,5,a-curv-i2,2022-23,Newton-Newton North High,02070505," 1,019", 860, 84.4, 21.6, 82.5, 21.4, 0.0, 33.9, 0.9, 7.5, 0.0 +9.466666666666667,5,a-curv-i2,2022-23,Newton-Newton South High,02070510, 920, 653, 71.0, 9.7, 61.1, 17.0, 0.0, 43.5, 2.2, 5.4, 0.0 +6.72,5,a-curv-i2,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 274, 138, 50.4, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 12.8, 0.0 +9.866666666666667,5,a-curv-i2,2022-23,North Adams-Drury High,02090505, 131, 97, 74.0, 45.0, 42.7, 29.8, 7.6, 33.6, 3.8, 0.0, 0.0 +9.04,5,a-curv-i2,2022-23,North Andover-North Andover High,02110505, 658, 446, 67.8, 17.9, 58.4, 21.7, 8.8, 33.0, 2.3, 7.6, 0.0 +8.746666666666666,5,a-curv-i2,2022-23,North Attleborough-North Attleboro High,02120505, 576, 378, 65.6, 15.3, 58.7, 14.8, 5.4, 27.8, 0.0, 0.2, 0.0 +5.333333333333333,5,a-curv-i2,2022-23,North Brookfield-North Brookfield High,02150505, 50, 20, 40.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.093333333333334,5,a-curv-i2,2022-23,North Middlesex-North Middlesex Regional,07350505, 355, 322, 90.7, 2.0, 86.5, 40.0, 6.2, 13.0, 0.6, 2.8, 0.0 +9.76,5,a-curv-i2,2022-23,North Reading-North Reading High,02170505, 306, 224, 73.2, 14.4, 63.4, 24.2, 3.3, 30.4, 0.0, 2.6, 0.0 +9.933333333333334,5,a-curv-i2,2022-23,Northampton-Northampton High,02100505, 444, 331, 74.5, 41.0, 58.3, 46.2, 6.8, 35.1, 0.0, 5.0, 0.0 +6.693333333333333,5,a-curv-i2,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 267, 134, 50.2, 13.5, 25.8, 13.1, 0.0, 0.0, 0.0, 0.0, 21.7 +9.746666666666666,5,a-curv-i2,2022-23,Northboro-Southboro-Algonquin Regional High,07300505, 633, 463, 73.1, 34.4, 63.0, 26.2, 2.5, 42.2, 4.4, 6.2, 0.0 +4.226666666666667,4.23,a-curv-i2,2022-23,Northbridge-Northbridge High,02140505, 230, 73, 31.7, 10.0, 20.0, 4.8, 0.0, 10.0, 0.0, 0.0, 0.0 +6.973333333333333,5,a-curv-i2,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 591, 309, 52.3, 3.9, 30.6, 3.6, 1.0, 1.7, 0.0, 4.9, 28.4 +13.333333333333334,5,a-curv-i2,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 243, 243, 100.0, 71.2, 87.7, 56.4, 2.9, 59.7, 0.0, 54.3, 26.7 +5.386666666666667,5,a-curv-i2,2022-23,Norton-Norton High,02180505, 329, 133, 40.4, 0.0, 21.9, 5.2, 2.7, 32.2, 0.9, 1.5, 0.0 +12.893333333333334,5,a-curv-i2,2022-23,Norwell-Norwell High,02190505, 303, 293, 96.7, 16.8, 96.4, 17.2, 5.9, 53.8, 8.6, 15.8, 0.0 +11.346666666666666,5,a-curv-i2,2022-23,Norwood-Norwood High,02200505, 503, 428, 85.1, 16.9, 84.9, 27.0, 3.2, 34.8, 2.4, 11.7, 0.0 +12.906666666666666,5,a-curv-i2,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 278, 269, 96.8, 25.2, 56.8, 4.0, 2.5, 0.0, 0.0, 50.0, 45.3 +10.706666666666667,5,a-curv-i2,2022-23,Old Rochester-Old Rochester Regional High,07400505, 319, 256, 80.3, 15.7, 73.7, 23.2, 16.0, 17.9, 2.5, 13.2, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Oxford-Oxford High,02260505, 170, 85, 50.0, 20.0, 34.1, 5.3, 8.8, 14.1, 3.5, 4.1, 0.0 +8.546666666666665,5,a-curv-i2,2022-23,Palmer-Palmer High,02270505, 128, 82, 64.1, 25.8, 32.8, 42.2, 0.0, 19.5, 9.4, 2.3, 0.0 +6.1066666666666665,5,a-curv-i2,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 286, 131, 45.8, 11.5, 21.3, 3.1, 7.0, 17.8, 0.0, 0.7, 14.3 +5.2266666666666675,5,a-curv-i2,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 143, 56, 39.2, 0.0, 37.8, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0 +5.093333333333334,5,a-curv-i2,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 34, 13, 38.2, 0.0, 35.3, 0.0, 0.0, 35.3, 0.0, 0.0, 0.0 +5.8,5,a-curv-i2,2022-23,Peabody-Peabody Veterans Memorial High,02290510, 724, 315, 43.5, 18.0, 30.2, 20.6, 1.7, 18.8, 1.4, 2.1, 0.1 +10.853333333333333,5,a-curv-i2,2022-23,Pembroke-Pembroke High School,02310505, 366, 298, 81.4, 14.8, 77.3, 18.9, 8.2, 35.8, 3.0, 7.7, 0.0 +10.213333333333333,5,a-curv-i2,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 303, 232, 76.6, 17.2, 66.0, 23.8, 7.6, 28.4, 0.3, 3.3, 0.0 +0.0,1,a-curv-i2,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 26, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 29, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 53, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +12.426666666666668,5,a-curv-i2,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 88, 82, 93.2, 30.7, 83.0, 48.9, 9.1, 20.5, 0.0, 4.5, 0.0 +12.04,5,a-curv-i2,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 93, 84, 90.3, 35.5, 62.4, 40.9, 25.8, 33.3, 10.8, 12.9, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 41, 41, 100.0, 100.0, 100.0, 100.0, 0.0, 100.0, 22.0, 100.0, 0.0 +8.386666666666667,5,a-curv-i2,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 116, 73, 62.9, 6.9, 62.9, 1.7, 0.9, 0.9, 0.9, 0.0, 0.0 +12.733333333333333,5,a-curv-i2,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 88, 84, 95.5, 27.3, 95.5, 20.5, 0.0, 17.0, 1.1, 2.3, 0.0 +7.906666666666666,5,a-curv-i2,2022-23,Pittsfield-Pittsfield High,02360505, 332, 197, 59.3, 22.6, 47.3, 11.4, 5.1, 21.7, 4.5, 11.1, 0.0 +0.9466666666666667,1,a-curv-i2,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 28, 2, 7.1, 0.0, 7.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.786666666666666,5,a-curv-i2,2022-23,Pittsfield-Taconic High,02360510, 381, 194, 50.9, 12.6, 37.8, 6.8, 0.0, 15.5, 1.6, 6.0, 8.1 +8.28,5,a-curv-i2,2022-23,Plymouth-Plymouth North High,02390505, 614, 381, 62.1, 8.1, 58.1, 17.6, 5.9, 15.8, 2.8, 2.0, 0.0 +8.0,5,a-curv-i2,2022-23,Plymouth-Plymouth South High,02390515, 498, 299, 60.0, 19.1, 54.0, 20.1, 7.2, 25.1, 2.0, 1.8, 0.0 +11.24,5,a-curv-i2,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 134, 113, 84.3, 17.9, 64.9, 49.3, 15.7, 0.0, 0.0, 6.0, 0.0 +12.413333333333332,5,a-curv-i2,2022-23,Quabbin-Quabbin Regional High School,07530505, 275, 256, 93.1, 92.0, 61.8, 20.0, 0.0, 23.3, 0.0, 34.2, 0.0 +8.813333333333333,5,a-curv-i2,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 183, 121, 66.1, 50.3, 43.2, 37.2, 2.2, 24.0, 3.8, 0.0, 0.0 +9.386666666666667,5,a-curv-i2,2022-23,Quincy-North Quincy High,02430510, 712, 501, 70.4, 33.7, 58.0, 24.7, 7.0, 33.8, 1.5, 3.1, 0.0 +7.12,5,a-curv-i2,2022-23,Quincy-Quincy High,02430505, 753, 402, 53.4, 19.5, 42.2, 10.8, 2.0, 24.3, 1.1, 2.1, 0.0 +5.8,5,a-curv-i2,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 138, 60, 43.5, 29.0, 26.1, 26.1, 0.0, 15.2, 5.1, 1.4, 0.0 +9.613333333333333,5,a-curv-i2,2022-23,Randolph-Randolph High,02440505, 272, 196, 72.1, 4.0, 22.4, 43.4, 25.7, 11.8, 2.2, 0.0, 0.0 +9.093333333333334,5,a-curv-i2,2022-23,Reading-Reading Memorial High,02460505, 585, 399, 68.2, 11.6, 56.4, 35.6, 9.1, 25.3, 1.7, 6.2, 0.0 +7.1066666666666665,5,a-curv-i2,2022-23,Revere-CityLab Innovation High School,02480520, 30, 16, 53.3, 36.7, 13.3, 10.0, 6.7, 0.0, 3.3, 6.7, 0.0 +10.333333333333334,5,a-curv-i2,2022-23,Revere-Revere High,02480505, 906, 702, 77.5, 18.5, 74.9, 14.6, 4.9, 14.9, 0.0, 10.5, 0.0 +9.973333333333333,5,a-curv-i2,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 119, 89, 74.8, 0.0, 70.6, 25.2, 6.7, 12.6, 0.0, 0.0, 0.0 +9.2,5,a-curv-i2,2022-23,Rockland-Rockland Senior High,02510505, 258, 178, 69.0, 25.6, 41.9, 45.0, 0.4, 26.0, 0.4, 1.9, 0.0 +10.933333333333334,5,a-curv-i2,2022-23,Rockport-Rockport High,02520510, 128, 105, 82.0, 14.1, 73.4, 39.1, 4.7, 50.8, 0.0, 0.8, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 223, 223, 100.0, 80.7, 55.2, 31.8, 0.0, 97.8, 0.0, 72.2, 0.0 +11.346666666666666,5,a-curv-i2,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 134, 114, 85.1, 47.8, 50.0, 50.7, 0.0, 64.9, 9.0, 0.0, 0.0 +6.253333333333333,5,a-curv-i2,2022-23,Salem-New Liberty Innovation School,02580510, 32, 15, 46.9, 0.0, 0.0, 46.9, 0.0, 0.0, 0.0, 0.0, 0.0 +6.973333333333333,5,a-curv-i2,2022-23,Salem-Salem High,02580505, 413, 216, 52.3, 16.5, 25.4, 15.0, 6.3, 22.8, 7.7, 9.7, 2.4 +1.9066666666666667,1.91,a-curv-i2,2022-23,Salem-Salem Prep High School,02580515, 7, 1, 14.3, 0.0, 0.0, 0.0, 14.3, 0.0, 0.0, 0.0, 0.0 +8.946666666666665,5,a-curv-i2,2022-23,Sandwich-Sandwich Middle High School,02610505, 298, 200, 67.1, 28.5, 59.1, 19.8, 13.4, 28.5, 0.0, 2.0, 0.0 +11.573333333333332,5,a-curv-i2,2022-23,Saugus-Saugus High,02620505, 356, 309, 86.8, 22.2, 64.9, 39.9, 11.8, 23.0, 0.0, 52.8, 0.0 +11.466666666666667,5,a-curv-i2,2022-23,Scituate-Scituate High School,02640505, 401, 345, 86.0, 44.9, 83.3, 43.6, 7.5, 35.2, 3.2, 11.0, 0.0 +8.68,5,a-curv-i2,2022-23,Seekonk-Seekonk High,02650505, 261, 170, 65.1, 8.4, 58.6, 27.6, 8.8, 27.2, 0.8, 0.8, 0.0 +10.026666666666667,5,a-curv-i2,2022-23,Sharon-Sharon High,02660505, 565, 425, 75.2, 10.1, 70.3, 19.5, 10.6, 43.9, 2.5, 3.5, 0.0 +9.573333333333332,5,a-curv-i2,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 621, 446, 71.8, 5.6, 47.2, 1.6, 0.0, 0.0, 0.0, 0.0, 58.5 +12.360000000000001,5,a-curv-i2,2022-23,Shrewsbury-Shrewsbury High School,02710505, 885, 820, 92.7, 20.7, 92.2, 47.1, 1.7, 29.4, 1.4, 3.7, 0.0 +7.533333333333333,5,a-curv-i2,2022-23,Silver Lake-Silver Lake Regional High,07600505, 506, 286, 56.5, 24.1, 48.4, 30.4, 4.5, 30.4, 0.0, 1.2, 4.9 +6.026666666666667,5,a-curv-i2,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 93, 42, 45.2, 29.0, 24.7, 3.2, 3.2, 9.7, 1.1, 1.1, 0.0 +7.693333333333333,5,a-curv-i2,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 492, 284, 57.7, 35.4, 44.9, 19.5, 4.7, 26.0, 3.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Somerville-Full Circle High School,02740510, 24, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.013333333333334,5,a-curv-i2,2022-23,Somerville-Somerville High,02740505, 589, 354, 60.1, 20.5, 55.2, 17.7, 2.4, 21.7, 0.0, 4.9, 3.4 +5.8533333333333335,5,a-curv-i2,2022-23,South Hadley-South Hadley High,02780505, 253, 111, 43.9, 16.6, 33.6, 13.4, 3.6, 15.8, 1.6, 0.0, 0.4 +6.053333333333333,5,a-curv-i2,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 381, 173, 45.4, 11.5, 19.2, 24.4, 3.1, 3.1, 0.0, 0.0, 17.6 +10.946666666666665,5,a-curv-i2,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 145, 119, 82.1, 24.8, 71.0, 5.5, 12.4, 22.1, 0.0, 0.0, 0.0 +9.026666666666667,5,a-curv-i2,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 313, 212, 67.7, 0.0, 50.8, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0 +0.0,1,a-curv-i2,2022-23,Southbridge-Southbridge Academy,02770525, 1,"","","","","","","","","","" +8.026666666666667,5,a-curv-i2,2022-23,Southbridge-Southbridge High School,02770515, 206, 124, 60.2, 5.8, 46.1, 12.1, 14.6, 15.5, 0.0, 0.0, 0.0 +12.32,5,a-curv-i2,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 751, 694, 92.4, 21.0, 58.5, 30.2, 0.0, 9.6, 2.7, 60.6, 50.1 +10.520000000000001,5,a-curv-i2,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 76, 60, 78.9, 34.2, 65.8, 2.6, 0.0, 35.5, 7.9, 26.3, 0.0 +7.04,5,a-curv-i2,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 553, 292, 52.8, 13.2, 26.9, 12.7, 0.0, 0.0, 0.0, 0.0, 31.1 +4.346666666666667,4.35,a-curv-i2,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 190, 62, 32.6, 1.6, 21.1, 16.3, 5.8, 5.8, 0.0, 1.1, 0.0 +10.146666666666667,5,a-curv-i2,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 163, 124, 76.1, 35.0, 76.1, 0.0, 0.0, 20.9, 0.0, 0.0, 0.0 +6.96,5,a-curv-i2,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 184, 96, 52.2, 27.2, 21.7, 19.6, 0.0, 29.9, 0.0, 0.0, 0.0 +6.026666666666667,5,a-curv-i2,2022-23,Springfield-Conservatory of the Arts,02810475, 84, 38, 45.2, 27.4, 14.3, 1.2, 0.0, 0.0, 13.1, 13.1, 0.0 +3.1733333333333333,3.17,a-curv-i2,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 21, 5, 23.8, 4.8, 19.0, 4.8, 0.0, 4.8, 0.0, 0.0, 0.0 +13.333333333333334,5,a-curv-i2,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 17, 17, 100.0, 0.0, 29.4, 11.8, 0.0, 17.6, 11.8, 29.4, 0.0 +8.52,5,a-curv-i2,2022-23,Springfield-High School Of Commerce,02810510, 452, 289, 63.9, 12.6, 38.5, 9.7, 2.2, 21.2, 10.6, 17.9, 0.0 +8.213333333333333,5,a-curv-i2,2022-23,Springfield-John J Duggan Academy,02810320, 138, 85, 61.6, 21.7, 52.2, 0.0, 12.3, 15.9, 0.0, 1.4, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-Liberty Preparatory Academy,02810560, 6, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +6.386666666666667,5,a-curv-i2,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 622, 298, 47.9, 9.8, 37.8, 2.6, 1.4, 6.3, 1.8, 1.8, 10.1 +4.760000000000001,4.76,a-curv-i2,2022-23,Springfield-Springfield Central High,02810500, 855, 305, 35.7, 21.9, 21.5, 6.9, 1.5, 13.0, 0.6, 1.3, 0.0 +1.24,1.24,a-curv-i2,2022-23,Springfield-Springfield High School,02810570, 43, 4, 9.3, 0.0, 9.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.319999999999999,4.32,a-curv-i2,2022-23,Springfield-Springfield High School of Science and Technology,02810530, 429, 139, 32.4, 13.8, 14.0, 7.5, 0.7, 9.1, 5.8, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-Springfield Public Day High School,02810550, 23, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.266666666666667,5,a-curv-i2,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 137, 85, 62.0, 31.4, 55.5, 11.7, 1.5, 24.8, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Springfield-The Springfield Virtual School,02810705, 48, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +9.786666666666667,5,a-curv-i2,2022-23,Stoneham-Stoneham High,02840505, 297, 218, 73.4, 44.1, 63.6, 26.3, 3.7, 20.2, 0.0, 6.1, 0.0 +7.373333333333333,5,a-curv-i2,2022-23,Stoughton-Stoughton High,02850505, 503, 278, 55.3, 7.6, 48.5, 13.9, 10.9, 12.5, 0.0, 0.0, 0.0 +13.293333333333333,5,a-curv-i2,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 392, 391, 99.7, 99.7, 99.7, 96.2, 8.7, 99.5, 39.5, 87.0, 0.0 +11.32,5,a-curv-i2,2022-23,Sutton-Sutton High School,02900510, 186, 158, 84.9, 67.2, 65.1, 21.0, 0.0, 8.1, 0.0, 8.1, 0.0 +9.293333333333333,5,a-curv-i2,2022-23,Swampscott-Swampscott High,02910505, 310, 216, 69.7, 32.6, 54.8, 20.6, 6.5, 43.5, 6.1, 3.9, 0.0 +4.626666666666667,4.63,a-curv-i2,2022-23,Swansea-Joseph Case High,02920505, 262, 91, 34.7, 7.6, 8.0, 21.8, 10.7, 3.8, 2.7, 0.0, 0.0 +2.8266666666666667,2.83,a-curv-i2,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 886, 188, 21.2, 5.0, 17.6, 1.1, 0.6, 3.0, 0.0, 0.2, 0.0 +9.520000000000001,5,a-curv-i2,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 336, 240, 71.4, 36.9, 65.8, 22.0, 0.6, 18.5, 3.9, 1.2, 0.0 +3.6533333333333333,3.65,a-curv-i2,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 223, 61, 27.4, 5.4, 24.2, 2.2, 0.0, 1.3, 0.0, 0.0, 0.0 +1.0933333333333333,1.09,a-curv-i2,2022-23,Taunton-Taunton Alternative High School,02930525, 73, 6, 8.2, 0.0, 0.0, 8.2, 0.0, 0.0, 0.0, 0.0, 0.0 +6.293333333333334,5,a-curv-i2,2022-23,Taunton-Taunton High,02930505, 998, 471, 47.2, 10.7, 42.6, 9.9, 3.1, 16.6, 0.4, 2.8, 0.0 +9.533333333333333,5,a-curv-i2,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 386, 276, 71.5, 20.7, 58.8, 29.3, 4.9, 29.8, 0.0, 4.1, 0.0 +11.653333333333334,5,a-curv-i2,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 444, 388, 87.4, 5.6, 60.4, 26.1, 0.0, 13.3, 0.0, 64.9, 39.2 +7.933333333333334,5,a-curv-i2,2022-23,Triton-Triton Regional High School,07730505, 316, 188, 59.5, 7.6, 54.7, 19.0, 1.6, 14.2, 0.0, 6.3, 0.0 +10.2,5,a-curv-i2,2022-23,Tyngsborough-Tyngsborough High School,03010505, 200, 153, 76.5, 11.5, 67.0, 16.0, 20.0, 5.0, 0.0, 2.5, 0.0 +7.973333333333333,5,a-curv-i2,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 333, 199, 59.8, 4.8, 39.9, 0.0, 0.0, 0.0, 0.0, 0.0, 40.8 +0.36000000000000004,1,a-curv-i2,2022-23,Uxbridge-Gateway to College,03040515, 37, 1, 2.7, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +10.479999999999999,5,a-curv-i2,2022-23,Uxbridge-Uxbridge High,03040505, 215, 169, 78.6, 40.9, 54.4, 47.9, 4.2, 15.3, 0.0, 19.1, 0.0 +8.666666666666666,5,a-curv-i2,2022-23,Wachusett-Wachusett Regional High,07750505, 973, 632, 65.0, 12.0, 60.2, 6.3, 4.5, 26.5, 1.6, 2.5, 0.0 +10.173333333333334,5,a-curv-i2,2022-23,Wakefield-Wakefield Memorial High,03050505, 393, 300, 76.3, 21.1, 69.5, 20.1, 5.1, 23.2, 2.8, 1.0, 0.0 +8.04,5,a-curv-i2,2022-23,Walpole-Walpole High,03070505, 501, 302, 60.3, 19.2, 45.1, 7.8, 8.6, 19.6, 0.0, 2.6, 0.0 +7.2,5,a-curv-i2,2022-23,Waltham-Waltham Sr High,03080505, 816, 441, 54.0, 17.6, 29.0, 11.8, 4.5, 32.0, 1.7, 7.0, 1.6 +6.2266666666666675,5,a-curv-i2,2022-23,Ware-Ware Junior/Senior High School,03090505, 120, 56, 46.7, 15.8, 44.2, 15.0, 0.8, 0.8, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.7733333333333325,5,a-curv-i2,2022-23,Wareham-Wareham Senior High,03100505, 180, 78, 43.3, 28.9, 24.4, 11.7, 1.7, 23.3, 11.1, 7.8, 0.0 +8.133333333333333,5,a-curv-i2,2022-23,Watertown-Watertown High,03140505, 333, 203, 61.0, 7.5, 58.3, 26.7, 5.4, 10.8, 1.5, 2.1, 0.0 +11.453333333333335,5,a-curv-i2,2022-23,Wayland-Wayland High School,03150505, 397, 341, 85.9, 11.8, 80.9, 17.6, 15.1, 25.4, 2.3, 0.0, 0.0 +6.239999999999999,5,a-curv-i2,2022-23,Webster-Bartlett High School,03160505, 158, 74, 46.8, 10.1, 19.6, 31.0, 6.3, 9.5, 0.0, 2.5, 0.0 +12.226666666666667,5,a-curv-i2,2022-23,Wellesley-Wellesley Sr High,03170505, 708, 649, 91.7, 0.3, 85.9, 64.1, 6.6, 30.2, 0.3, 9.3, 0.0 +9.413333333333332,5,a-curv-i2,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 119, 84, 70.6, 13.4, 65.5, 42.0, 1.7, 10.9, 5.9, 0.0, 0.0 +10.413333333333332,5,a-curv-i2,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 201, 157, 78.1, 26.9, 68.7, 34.3, 6.5, 2.0, 0.0, 1.0, 0.0 +8.360000000000001,5,a-curv-i2,2022-23,West Springfield-West Springfield High,03320505, 547, 343, 62.7, 27.8, 42.0, 34.9, 0.9, 24.3, 2.7, 4.4, 1.1 +8.8,5,a-curv-i2,2022-23,Westborough-Westborough High,03210505, 553, 365, 66.0, 5.4, 60.0, 28.6, 7.4, 21.7, 4.3, 4.9, 0.0 +7.8133333333333335,5,a-curv-i2,2022-23,Westfield-Westfield High,03250505, 483, 283, 58.6, 30.4, 42.7, 14.1, 2.7, 24.2, 0.6, 3.5, 0.0 +1.9333333333333333,1.93,a-curv-i2,2022-23,Westfield-Westfield Technical Academy,03250605, 249, 36, 14.5, 7.6, 3.6, 0.0, 0.0, 6.8, 0.0, 0.0, 0.0 +0.0,1,a-curv-i2,2022-23,Westfield-Westfield Virtual School,03250705, 11, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +9.226666666666667,5,a-curv-i2,2022-23,Westford-Westford Academy,03260505, 798, 552, 69.2, 16.4, 59.8, 28.8, 5.6, 33.6, 4.9, 0.5, 0.0 +12.866666666666667,5,a-curv-i2,2022-23,Weston-Weston High,03300505, 314, 303, 96.5, 5.4, 93.0, 55.4, 8.0, 74.2, 4.8, 16.6, 0.0 +6.666666666666667,5,a-curv-i2,2022-23,Westport-Westport Middle-High School,03310515, 154, 77, 50.0, 16.2, 39.6, 15.6, 3.2, 3.2, 0.0, 0.6, 0.0 +10.266666666666667,5,a-curv-i2,2022-23,Westwood-Westwood High,03350505, 488, 376, 77.0, 21.7, 65.4, 23.6, 10.0, 51.4, 8.0, 4.7, 0.0 +7.586666666666667,5,a-curv-i2,2022-23,Weymouth-Weymouth High School,03360505, 867, 493, 56.9, 11.0, 51.7, 11.3, 4.3, 16.5, 0.6, 4.6, 2.0 +3.1199999999999997,3.12,a-curv-i2,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505, 548, 128, 23.4, 18.6, 16.1, 9.7, 0.0, 8.9, 0.0, 0.0, 0.0 +13.306666666666667,5,a-curv-i2,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 639, 638, 99.8, 32.1, 99.5, 1.6, 1.7, 18.3, 0.0, 58.8, 57.7 +9.360000000000001,5,a-curv-i2,2022-23,Wilmington-Wilmington High,03420505, 359, 252, 70.2, 22.0, 61.0, 32.9, 2.2, 33.7, 0.0, 6.1, 0.0 +0.0,1,a-curv-i2,2022-23,Winchendon-Murdock Academy for Success,03430405, 19, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.413333333333333,5,a-curv-i2,2022-23,Winchendon-Murdock High School,03430515, 101, 41, 40.6, 24.8, 22.8, 8.9, 5.9, 4.0, 0.0, 0.0, 0.0 +12.866666666666667,5,a-curv-i2,2022-23,Winchester-Winchester High School,03440505, 688, 664, 96.5, 25.3, 94.9, 69.3, 8.9, 35.9, 0.0, 13.8, 0.0 +11.106666666666666,5,a-curv-i2,2022-23,Winthrop-Winthrop High School,03460505, 275, 229, 83.3, 34.9, 71.6, 26.5, 1.8, 37.8, 0.0, 0.0, 0.0 +8.04,5,a-curv-i2,2022-23,Woburn-Woburn High,03470505, 557, 336, 60.3, 11.0, 45.8, 17.4, 5.2, 28.9, 0.9, 12.4, 0.0 +6.293333333333334,5,a-curv-i2,2022-23,Worcester-Burncoat Senior High,03480503, 570, 269, 47.2, 20.5, 26.7, 9.8, 3.3, 17.5, 8.4, 8.1, 0.0 +7.426666666666667,5,a-curv-i2,2022-23,Worcester-Claremont Academy,03480350, 149, 83, 55.7, 10.7, 24.2, 18.8, 2.0, 26.8, 0.7, 12.8, 0.0 +6.48,5,a-curv-i2,2022-23,Worcester-Doherty Memorial High,03480512, 621, 302, 48.6, 13.8, 30.6, 15.1, 4.5, 19.6, 3.7, 11.9, 0.0 +5.506666666666666,5,a-curv-i2,2022-23,Worcester-North High,03480515, 624, 258, 41.3, 14.1, 19.6, 7.2, 3.7, 6.1, 5.9, 4.2, 0.0 +6.16,5,a-curv-i2,2022-23,Worcester-South High Community,03480520, 770, 356, 46.2, 13.9, 29.2, 19.6, 6.2, 16.4, 1.6, 5.8, 0.0 +10.626666666666667,5,a-curv-i2,2022-23,Worcester-University Pk Campus School,03480285, 74, 59, 79.7, 54.1, 29.7, 20.3, 24.3, 32.4, 1.4, 24.3, 0.0 +5.88,5,a-curv-i2,2022-23,Worcester-Worcester Technical High,03480605, 690, 304, 44.1, 19.3, 27.0, 5.8, 1.2, 11.4, 1.4, 9.0, 0.0 11.213333333333333,5,a-curv-i2,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 182, 153, 84.1, 31.9, 68.1, 28.0, 0.0, 35.7, 16.5, 30.8, 0.0 10.520000000000001,5,a-curv-i2,2021-22,Abington-Abington High,00010505, 294, 232, 78.9, 13.6, 78.2, 6.8, 0.0, 14.3, 0.7, 0.0, 0.0 11.360000000000001,5,a-curv-i2,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 115, 98, 85.2, 1.7, 51.3, 35.7, 23.5, 60.0, 2.6, 37.4, 0.0 diff --git a/data/admin_data/dese/3B_1_ap.csv b/data/admin_data/dese/3B_1_ap.csv index 57fc9404..920b1114 100644 --- a/data/admin_data/dese/3B_1_ap.csv +++ b/data/admin_data/dese/3B_1_ap.csv @@ -1,4 +1,342 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,Tests Taken,Score=1,Score=2,Score=3,Score=4,Score=5,% Score 1-2,% Score 3-5 +9.14,5,a-curv-i3,2022-23,Abington - Abington High,00010505, 164, 40, 49, 51, 21, 3, 54.3, 45.7 +1.16,1.16,a-curv-i3,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 154, 120, 25, 5, 3, 1, 94.2, 5.8 +18.6,5,a-curv-i3,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,442", 22, 79, 229, 473, 639, 7.0, 93.0 +16.48,5,a-curv-i3,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 387, 17, 51, 87, 118, 114, 17.6, 82.4 +12.24,5,a-curv-i3,2022-23,Agawam - Agawam High,00050505, 423, 60, 104, 140, 82, 37, 38.8, 61.2 +16.8,5,a-curv-i3,2022-23,Amesbury - Amesbury High,00070505, 100, 4, 12, 31, 27, 26, 16.0, 84.0 +16.78,5,a-curv-i3,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 224, 7, 29, 58, 79, 51, 16.1, 83.9 +16.22,5,a-curv-i3,2022-23,Andover - Andover High,00090505," 1,173", 55, 167, 281, 378, 292, 18.9, 81.1 +15.62,5,a-curv-i3,2022-23,Arlington - Arlington High,00100505," 1,408", 94, 215, 379, 397, 323, 21.9, 78.1 +11.9,5,a-curv-i3,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 195, 21, 58, 62, 35, 19, 40.5, 59.5 +18.4,5,a-curv-i3,2022-23,Ashland - Ashland High,00140505, 436, 10, 25, 78, 146, 177, 8.0, 92.0 +7.459999999999999,5,a-curv-i3,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 110, 32, 37, 31, 9, 1, 62.7, 37.3 +6.0600000000000005,5,a-curv-i3,2022-23,Athol-Royalston - Athol High,06150505, 99, 56, 13, 18, 9, 3, 69.7, 30.3 +3.1,3.1,a-curv-i3,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 116, 67, 31, 14, 4, 0, 84.5, 15.5 +8.6,5,a-curv-i3,2022-23,Attleboro - Attleboro High,00160505, 646, 187, 181, 152, 99, 27, 57.0, 43.0 +10.0,5,a-curv-i3,2022-23,Auburn - Auburn Senior High,00170505, 352, 70, 106, 109, 43, 24, 50.0, 50.0 +9.559999999999999,5,a-curv-i3,2022-23,Avon - Avon Middle High School,00180510, 23, 3, 9, 6, 5, 0, 52.2, 47.8 +13.219999999999999,5,a-curv-i3,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 118, 12, 28, 33, 35, 10, 33.9, 66.1 +8.6,5,a-curv-i3,2022-23,Barnstable - Barnstable High,00200505, 565, 146, 176, 125, 85, 33, 57.0, 43.0 +1.8199999999999998,1.82,a-curv-i3,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 22, 14, 6, 1, 1, 0, 90.9, 9.1 +17.78,5,a-curv-i3,2022-23,Bedford - Bedford High,00230505, 478, 13, 40, 88, 139, 198, 11.1, 88.9 +13.34,5,a-curv-i3,2022-23,Belchertown - Belchertown High,00240505, 111, 6, 31, 32, 24, 18, 33.3, 66.7 +8.84,5,a-curv-i3,2022-23,Bellingham - Bellingham High School,00250505, 163, 45, 46, 43, 23, 6, 55.8, 44.2 +18.5,5,a-curv-i3,2022-23,Belmont - Belmont High,00260505," 1,391", 16, 88, 232, 448, 607, 7.5, 92.5 +14.280000000000001,5,a-curv-i3,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28, 5, 3, 12, 7, 1, 28.6, 71.4 +14.219999999999999,5,a-curv-i3,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 90, 5, 21, 24, 17, 23, 28.9, 71.1 +13.48,5,a-curv-i3,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 144, 11, 36, 60, 22, 15, 32.6, 67.4 +12.64,5,a-curv-i3,2022-23,Beverly - Beverly High,00300505, 456, 67, 101, 135, 98, 55, 36.8, 63.2 +10.92,5,a-curv-i3,2022-23,Billerica - Billerica Memorial High School,00310505, 599, 127, 145, 163, 102, 62, 45.4, 54.6 +9.74,5,a-curv-i3,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 374, 82, 110, 89, 68, 25, 51.3, 48.7 +14.8,5,a-curv-i3,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 77, 3, 17, 31, 17, 9, 26.0, 74.0 +14.52,5,a-curv-i3,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 62, 3, 14, 24, 16, 5, 27.4, 72.6 +1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Another Course To College,00350541, 118, 97, 14, 3, 4, 0, 94.1, 5.9 +1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Boston Arts Academy,00350546, 34, 28, 4, 2, 0, 0, 94.1, 5.9 +0.0,1,a-curv-i3,2022-23,Boston - Boston Collaborative High School,00350755, 1,"","","","","","","" +3.5,3.5,a-curv-i3,2022-23,Boston - Boston Community Leadership Academy,00350558, 120, 59, 40, 21, 0, 0, 82.5, 17.5 +3.34,3.34,a-curv-i3,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 30, 18, 7, 4, 1, 0, 83.3, 16.7 +10.459999999999999,5,a-curv-i3,2022-23,Boston - Boston Latin Academy,00350545," 1,107", 198, 330, 332, 160, 87, 47.7, 52.3 +16.84,5,a-curv-i3,2022-23,Boston - Boston Latin School,00350560," 2,341", 111, 259, 585, 709, 677, 15.8, 84.2 +5.42,5,a-curv-i3,2022-23,Boston - Brighton High School,00350505, 70, 40, 11, 5, 3, 11, 72.9, 27.1 +1.1800000000000002,1.18,a-curv-i3,2022-23,Boston - Burke High School,00350525, 68, 59, 5, 4, 0, 0, 94.1, 5.9 +2.8,2.8,a-curv-i3,2022-23,Boston - Charlestown High School,00350515, 93, 64, 16, 12, 1, 0, 86.0, 14.0 +2.98,2.98,a-curv-i3,2022-23,Boston - Community Academy of Science and Health,00350581, 47, 28, 12, 6, 0, 1, 85.1, 14.9 +0.0,1,a-curv-i3,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 36, 26, 10, 0, 0, 0, 100.0, .0 +3.18,3.18,a-curv-i3,2022-23,Boston - East Boston High School,00350530, 88, 56, 18, 5, 4, 5, 84.1, 15.9 +1.7,1.7,a-curv-i3,2022-23,Boston - English High School,00350535, 82, 58, 17, 4, 2, 1, 91.5, 8.5 +3.8200000000000003,3.82,a-curv-i3,2022-23,Boston - Excel High School,00350522, 94, 48, 28, 12, 5, 1, 80.9, 19.1 +10.28,5,a-curv-i3,2022-23,Boston - Fenway High School,00350540, 35, 11, 6, 11, 5, 2, 48.6, 51.4 +2.32,2.32,a-curv-i3,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 86, 49, 27, 6, 3, 1, 88.4, 11.6 +0.0,1,a-curv-i3,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 1,"","","","","","","" +2.3,2.3,a-curv-i3,2022-23,Boston - Lyon High School,00350655, 26, 17, 6, 2, 1, 0, 88.5, 11.5 +0.64,1,a-curv-i3,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 31, 15, 15, 1, 0, 0, 96.8, 3.2 +13.34,5,a-curv-i3,2022-23,Boston - Margarita Muniz Academy,00350549, 42, 5, 9, 22, 1, 5, 33.3, 66.7 +2.6,2.6,a-curv-i3,2022-23,Boston - New Mission High School,00350542, 192, 122, 45, 16, 4, 5, 87.0, 13.0 +9.14,5,a-curv-i3,2022-23,Boston - O'Bryant School of Math & Science,00350575," 1,288", 279, 421, 351, 162, 75, 54.3, 45.7 +0.0,1,a-curv-i3,2022-23,Boston - Snowden International High School,00350690, 3,"","","","","","","" +6.6,5,a-curv-i3,2022-23,Boston - TechBoston Academy,00350657, 112, 28, 47, 27, 10, 0, 67.0, 33.0 +6.0,5,a-curv-i3,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 223, 91, 65, 42, 18, 7, 70.0, 30.0 +1.98,1.98,a-curv-i3,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 71, 47, 17, 6, 1, 0, 90.1, 9.9 +3.54,3.54,a-curv-i3,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 175, 90, 54, 24, 2, 5, 82.3, 17.7 +7.5,5,a-curv-i3,2022-23,Bourne - Bourne High School,00360505, 128, 47, 33, 24, 17, 7, 62.5, 37.5 +16.7,5,a-curv-i3,2022-23,Braintree - Braintree High,00400505, 771, 25, 102, 192, 235, 217, 16.5, 83.5 +11.4,5,a-curv-i3,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 440, 77, 112, 123, 80, 48, 43.0, 57.0 +13.580000000000002,5,a-curv-i3,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 81, 7, 19, 31, 20, 4, 32.1, 67.9 +5.24,5,a-curv-i3,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 61, 24, 21, 5, 11, 0, 73.8, 26.2 +6.840000000000001,5,a-curv-i3,2022-23,Brockton - Brockton High,00440505, 407, 124, 144, 99, 32, 8, 65.8, 34.2 +5.16,5,a-curv-i3,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 597, 262, 181, 92, 44, 18, 74.2, 25.8 +18.64,5,a-curv-i3,2022-23,Brookline - Brookline High,00460505," 1,109", 9, 66, 225, 316, 493, 6.8, 93.2 +13.12,5,a-curv-i3,2022-23,Burlington - Burlington High,00480505, 462, 70, 89, 106, 111, 86, 34.4, 65.6 +16.1,5,a-curv-i3,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 841, 53, 111, 209, 209, 259, 19.5, 80.5 +13.680000000000001,5,a-curv-i3,2022-23,Canton - Canton High,00500505, 500, 48, 110, 149, 128, 65, 31.6, 68.4 +7.94,5,a-curv-i3,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 58, 3, 32, 18, 5, 0, 60.3, 39.7 +10.0,5,a-curv-i3,2022-23,Carver - Carver Middle/High School,00520405, 130, 30, 35, 32, 26, 7, 50.0, 50.0 +9.68,5,a-curv-i3,2022-23,Central Berkshire - Wahconah Regional High,06350505, 157, 25, 56, 42, 27, 7, 51.6, 48.4 +14.459999999999999,5,a-curv-i3,2022-23,Chelmsford - Chelmsford High,00560505, 552, 42, 111, 187, 140, 72, 27.7, 72.3 +7.140000000000001,5,a-curv-i3,2022-23,Chelsea - Chelsea High,00570505, 367, 120, 116, 67, 42, 22, 64.3, 35.7 +0.0,1,a-curv-i3,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 2,"","","","","","","" +8.98,5,a-curv-i3,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 225, 46, 78, 55, 32, 14, 55.1, 44.9 +10.5,5,a-curv-i3,2022-23,Chicopee - Chicopee High,00610505, 122, 17, 41, 46, 13, 5, 47.5, 52.5 +2.2199999999999998,2.22,a-curv-i3,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 27, 16, 8, 3, 0, 0, 88.9, 11.1 +7.42,5,a-curv-i3,2022-23,Clinton - Clinton Senior High,00640505, 167, 66, 39, 36, 18, 8, 62.9, 37.1 +0.0,1,a-curv-i3,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 61, 59, 2, 0, 0, 0, 100.0, .0 +15.940000000000001,5,a-curv-i3,2022-23,Cohasset - Cohasset High School,00650505, 409, 34, 49, 107, 105, 114, 20.3, 79.7 +8.48,5,a-curv-i3,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 33, 6, 13, 8, 4, 2, 57.6, 42.4 +6.959999999999999,5,a-curv-i3,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 69, 23, 22, 13, 6, 5, 65.2, 34.8 +18.1,5,a-curv-i3,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 783, 15, 59, 138, 263, 308, 9.5, 90.5 +10.459999999999999,5,a-curv-i3,2022-23,Danvers - Danvers High,00710505, 486, 90, 142, 119, 99, 36, 47.7, 52.3 +13.559999999999999,5,a-curv-i3,2022-23,Dartmouth - Dartmouth High,00720505, 550, 65, 112, 159, 140, 74, 32.2, 67.8 +12.72,5,a-curv-i3,2022-23,Dedham - Dedham High,00730505, 382, 63, 76, 109, 78, 56, 36.4, 63.6 +10.6,5,a-curv-i3,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 315, 55, 93, 74, 70, 23, 47.0, 53.0 +13.5,5,a-curv-i3,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 197, 15, 49, 58, 49, 26, 32.5, 67.5 +11.84,5,a-curv-i3,2022-23,Douglas - Douglas High School,00770505, 157, 17, 47, 54, 30, 9, 40.8, 59.2 +18.98,5,a-curv-i3,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 534, 1, 26, 105, 183, 219, 5.1, 94.9 +10.559999999999999,5,a-curv-i3,2022-23,Dracut - Dracut Senior High,00790505, 265, 42, 83, 73, 51, 16, 47.2, 52.8 +12.120000000000001,5,a-curv-i3,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 325, 66, 62, 79, 72, 46, 39.4, 60.6 +13.52,5,a-curv-i3,2022-23,Duxbury - Duxbury High,00820505, 749, 98, 145, 222, 167, 117, 32.4, 67.6 +11.559999999999999,5,a-curv-i3,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 268, 40, 73, 90, 48, 17, 42.2, 57.8 +13.02,5,a-curv-i3,2022-23,East Longmeadow - East Longmeadow High,00870505, 335, 40, 77, 92, 76, 50, 34.9, 65.1 +12.459999999999999,5,a-curv-i3,2022-23,Easthampton - Easthampton High,00860505, 167, 25, 38, 64, 21, 19, 37.7, 62.3 +15.52,5,a-curv-i3,2022-23,Easton - Oliver Ames High,00880505, 575, 27, 102, 161, 171, 114, 22.4, 77.6 +2.18,2.18,a-curv-i3,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 101, 47, 43, 8, 2, 1, 89.1, 10.9 +13.52,5,a-curv-i3,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 148, 17, 31, 43, 36, 21, 32.4, 67.6 +8.58,5,a-curv-i3,2022-23,Everett - Everett High,00930505, 476, 136, 136, 133, 43, 28, 57.1, 42.9 +6.7,5,a-curv-i3,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 768, 321, 190, 156, 72, 29, 66.5, 33.5 +12.440000000000001,5,a-curv-i3,2022-23,Fairhaven - Fairhaven High,00940505, 275, 35, 69, 87, 54, 30, 37.8, 62.2 +8.8,5,a-curv-i3,2022-23,Fall River - B M C Durfee High,00950505, 614, 148, 196, 188, 54, 28, 56.0, 44.0 +14.36,5,a-curv-i3,2022-23,Falmouth - Falmouth High,00960505, 372, 32, 73, 100, 95, 72, 28.2, 71.8 +6.540000000000001,5,a-curv-i3,2022-23,Fitchburg - Fitchburg High,00970505, 520, 203, 147, 101, 38, 31, 67.3, 32.7 +0.0,1,a-curv-i3,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 3,"","","","","","","" +14.12,5,a-curv-i3,2022-23,Foxborough - Foxborough High,00990505, 480, 35, 106, 148, 123, 68, 29.4, 70.6 +10.040000000000001,5,a-curv-i3,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 255, 58, 69, 76, 34, 18, 49.8, 50.2 +15.52,5,a-curv-i3,2022-23,Framingham - Framingham High School,01000515, 924, 69, 138, 233, 272, 212, 22.4, 77.6 +18.0,5,a-curv-i3,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 20, 0, 2, 8, 6, 4, 10.0, 90.0 +14.959999999999999,5,a-curv-i3,2022-23,Franklin - Franklin High,01010505," 1,157", 90, 201, 345, 297, 224, 25.2, 74.8 +5.88,5,a-curv-i3,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 51, 15, 21, 12, 3, 0, 70.6, 29.4 +16.0,5,a-curv-i3,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 365, 15, 58, 116, 116, 60, 20.0, 80.0 +16.56,5,a-curv-i3,2022-23,Frontier - Frontier Regional,06700505, 157, 1, 26, 47, 38, 45, 17.2, 82.8 +8.36,5,a-curv-i3,2022-23,Gardner - Gardner High,01030505, 67, 17, 22, 17, 6, 5, 58.2, 41.8 +11.0,5,a-curv-i3,2022-23,Gateway - Gateway Regional High,06720505, 40, 6, 12, 11, 8, 3, 45.0, 55.0 +17.18,5,a-curv-i3,2022-23,Georgetown - Georgetown High School,01050505, 99, 3, 11, 21, 39, 25, 14.1, 85.9 +11.42,5,a-curv-i3,2022-23,Gill-Montague - Turners Fall High,06740505, 21, 2, 7, 1, 8, 3, 42.9, 57.1 +0.0,1,a-curv-i3,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 1,"","","","","","","" +10.559999999999999,5,a-curv-i3,2022-23,Gloucester - Gloucester High,01070505, 246, 58, 58, 63, 40, 27, 47.2, 52.8 +15.440000000000001,5,a-curv-i3,2022-23,Grafton - Grafton High School,01100505, 337, 26, 51, 90, 122, 48, 22.8, 77.2 +8.8,5,a-curv-i3,2022-23,Granby - Granby Jr Sr High School,01110505, 50, 9, 19, 12, 8, 2, 56.0, 44.0 +14.540000000000001,5,a-curv-i3,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 11, 2, 1, 2, 3, 3, 27.3, 72.7 +6.659999999999999,5,a-curv-i3,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 114, 32, 44, 29, 7, 2, 66.7, 33.3 +7.359999999999999,5,a-curv-i3,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 223, 62, 79, 56, 21, 5, 63.2, 36.8 +7.12,5,a-curv-i3,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 104, 35, 32, 20, 17, 0, 64.4, 35.6 +11.879999999999999,5,a-curv-i3,2022-23,Greenfield - Greenfield High,01140505, 96, 14, 25, 35, 15, 7, 40.6, 59.4 +14.86,5,a-curv-i3,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 335, 20, 66, 87, 84, 78, 25.7, 74.3 +11.82,5,a-curv-i3,2022-23,Hadley - Hopkins Academy,01170505, 44, 6, 12, 12, 9, 5, 40.9, 59.1 +16.740000000000002,5,a-curv-i3,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 331, 17, 37, 107, 98, 72, 16.3, 83.7 +10.84,5,a-curv-i3,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 192, 44, 44, 46, 37, 21, 45.8, 54.2 +0.0,1,a-curv-i3,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 4,"","","","","","","" +15.1,5,a-curv-i3,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 298, 24, 49, 85, 86, 54, 24.5, 75.5 +15.040000000000001,5,a-curv-i3,2022-23,Hampshire - Hampshire Regional High,06830505, 157, 7, 32, 46, 49, 23, 24.8, 75.2 +15.38,5,a-curv-i3,2022-23,Hanover - Hanover High,01220505, 428, 26, 73, 134, 139, 56, 23.1, 76.9 +18.82,5,a-curv-i3,2022-23,Harvard - Bromfield,01250505, 237, 5, 9, 41, 77, 105, 5.9, 94.1 +7.779999999999999,5,a-curv-i3,2022-23,Hatfield - Smith Academy,01270505, 18, 2, 9, 6, 1, 0, 61.1, 38.9 +11.18,5,a-curv-i3,2022-23,Haverhill - Haverhill High,01280505, 406, 60, 119, 104, 81, 42, 44.1, 55.9 +18.78,5,a-curv-i3,2022-23,Hingham - Hingham High,01310505, 588, 7, 29, 144, 184, 224, 6.1, 93.9 +14.6,5,a-curv-i3,2022-23,Holbrook - Holbrook Middle High School,01330505, 37, 4, 6, 9, 14, 4, 27.0, 73.0 +14.940000000000001,5,a-curv-i3,2022-23,Holliston - Holliston High,01360505, 423, 36, 71, 112, 118, 86, 25.3, 74.7 +5.62,5,a-curv-i3,2022-23,Holyoke - Holyoke High,01370505, 196, 72, 69, 38, 14, 3, 71.9, 28.1 +5.46,5,a-curv-i3,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 121, 50, 38, 25, 8, 0, 72.7, 27.3 +15.62,5,a-curv-i3,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 192, 18, 24, 71, 53, 26, 21.9, 78.1 +18.080000000000002,5,a-curv-i3,2022-23,Hopkinton - Hopkinton High,01390505," 1,236", 26, 93, 227, 387, 503, 9.6, 90.4 +10.18,5,a-curv-i3,2022-23,Hudson - Hudson High,01410505, 334, 67, 97, 102, 39, 29, 49.1, 50.9 +14.64,5,a-curv-i3,2022-23,Hull - Hull High,01420505, 138, 11, 26, 36, 38, 27, 26.8, 73.2 +2.2199999999999998,2.22,a-curv-i3,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 18, 10, 6, 1, 1, 0, 88.9, 11.1 +18.14,5,a-curv-i3,2022-23,Ipswich - Ipswich High,01440505, 302, 4, 24, 83, 111, 80, 9.3, 90.7 +8.86,5,a-curv-i3,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 246, 66, 71, 66, 32, 11, 55.7, 44.3 +13.2,5,a-curv-i3,2022-23,King Philip - King Philip Regional High,06900505, 987, 145, 191, 260, 226, 165, 34.0, 66.0 +5.32,5,a-curv-i3,2022-23,Lawrence - Lawrence High School,01490515, 925, 540, 139, 121, 74, 51, 73.4, 26.6 +12.26,5,a-curv-i3,2022-23,Lee - Lee Middle/High School,01500505, 93, 14, 22, 40, 13, 4, 38.7, 61.3 +15.0,5,a-curv-i3,2022-23,Leicester - Leicester High,01510505, 100, 6, 19, 42, 20, 13, 25.0, 75.0 +8.74,5,a-curv-i3,2022-23,Lenox - Lenox Memorial High,01520505, 119, 34, 33, 23, 15, 14, 56.3, 43.7 +11.7,5,a-curv-i3,2022-23,Leominster - Center For Technical Education Innovation,01530605, 41, 3, 14, 8, 13, 3, 41.5, 58.5 +12.379999999999999,5,a-curv-i3,2022-23,Leominster - Leominster High School,01530505, 226, 34, 52, 61, 62, 17, 38.1, 61.9 +18.28,5,a-curv-i3,2022-23,Lexington - Lexington High,01550505," 2,555", 52, 169, 402, 744," 1,188", 8.6, 91.4 +4.4799999999999995,4.48,a-curv-i3,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 76, 49, 10, 10, 6, 1, 77.6, 22.4 +18.98,5,a-curv-i3,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 530, 11, 16, 89, 161, 253, 5.1, 94.9 +15.440000000000001,5,a-curv-i3,2022-23,Littleton - Littleton High School,01580505, 237, 22, 32, 56, 72, 55, 22.8, 77.2 +18.16,5,a-curv-i3,2022-23,Longmeadow - Longmeadow High,01590505, 444, 6, 35, 121, 144, 138, 9.2, 90.8 +9.2,5,a-curv-i3,2022-23,Lowell - Lowell High,01600505, 389, 99, 111, 95, 56, 28, 54.0, 46.0 +13.080000000000002,5,a-curv-i3,2022-23,Ludlow - Ludlow Senior High,01610505, 315, 36, 73, 91, 74, 41, 34.6, 65.4 +15.16,5,a-curv-i3,2022-23,Lunenburg - Lunenburg High,01620505, 165, 8, 32, 63, 43, 19, 24.2, 75.8 +7.06,5,a-curv-i3,2022-23,Lynn - Classical High,01630505, 371, 144, 96, 81, 36, 14, 64.7, 35.3 +7.1,5,a-curv-i3,2022-23,Lynn - Lynn English High,01630510, 287, 117, 68, 58, 29, 15, 64.5, 35.5 +7.62,5,a-curv-i3,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 21, 7, 6, 5, 3, 0, 61.9, 38.1 +14.459999999999999,5,a-curv-i3,2022-23,Lynnfield - Lynnfield High,01640505, 488, 52, 83, 148, 125, 80, 27.7, 72.3 +17.46,5,a-curv-i3,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 142, 7, 11, 24, 43, 57, 12.7, 87.3 +12.02,5,a-curv-i3,2022-23,Malden - Malden High,01650505, 594, 101, 136, 159, 113, 85, 39.9, 60.1 +16.44,5,a-curv-i3,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 349, 13, 49, 106, 105, 76, 17.8, 82.2 +15.559999999999999,5,a-curv-i3,2022-23,Mansfield - Mansfield High,01670505, 553, 33, 90, 151, 176, 103, 22.2, 77.8 +13.88,5,a-curv-i3,2022-23,Marblehead - Marblehead High,01680505, 677, 72, 135, 191, 177, 102, 30.6, 69.4 +10.02,5,a-curv-i3,2022-23,Marlborough - Marlborough High,01700505, 359, 82, 97, 93, 51, 36, 49.9, 50.1 +14.74,5,a-curv-i3,2022-23,Marshfield - Marshfield High,01710505, 520, 36, 101, 185, 119, 79, 26.3, 73.7 +12.32,5,a-curv-i3,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 323, 53, 71, 84, 81, 34, 38.4, 61.6 +17.48,5,a-curv-i3,2022-23,Masconomet - Masconomet Regional High School,07050505, 437, 14, 41, 117, 150, 115, 12.6, 87.4 +10.66,5,a-curv-i3,2022-23,Mashpee - Mashpee Middle-High School,01720505, 246, 57, 58, 75, 46, 10, 46.7, 53.3 +4.8,4.8,a-curv-i3,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 304, 157, 74, 48, 20, 5, 76.0, 24.0 +15.180000000000001,5,a-curv-i3,2022-23,Maynard - Maynard High,01740505, 158, 18, 20, 44, 43, 33, 24.1, 75.9 +15.280000000000001,5,a-curv-i3,2022-23,Medfield - Medfield Senior High,01750505, 538, 46, 81, 155, 148, 108, 23.6, 76.4 +15.36,5,a-curv-i3,2022-23,Medford - Medford High,01760505, 332, 34, 43, 98, 89, 68, 23.2, 76.8 +13.14,5,a-curv-i3,2022-23,Medway - Medway High,01770505, 568, 66, 129, 147, 118, 108, 34.3, 65.7 +12.4,5,a-curv-i3,2022-23,Melrose - Melrose High,01780505, 747, 94, 190, 190, 180, 93, 38.0, 62.0 +15.280000000000001,5,a-curv-i3,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 368, 24, 63, 91, 103, 87, 23.6, 76.4 +11.959999999999999,5,a-curv-i3,2022-23,Methuen - Methuen High,01810505, 570, 99, 130, 193, 111, 37, 40.2, 59.8 +11.14,5,a-curv-i3,2022-23,Middleborough - Middleborough High,01820505, 253, 49, 63, 69, 49, 23, 44.3, 55.7 +10.14,5,a-curv-i3,2022-23,Milford - Milford High,01850505, 458, 101, 125, 129, 75, 28, 49.3, 50.7 +12.620000000000001,5,a-curv-i3,2022-23,Millbury - Millbury Junior/Senior High,01860505, 130, 18, 30, 46, 30, 6, 36.9, 63.1 +12.98,5,a-curv-i3,2022-23,Millis - Millis High School,01870505, 194, 37, 31, 47, 43, 36, 35.1, 64.9 +16.68,5,a-curv-i3,2022-23,Milton - Milton High,01890505, 819, 51, 85, 219, 294, 170, 16.6, 83.4 +9.26,5,a-curv-i3,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 67, 18, 18, 18, 6, 7, 53.7, 46.3 +13.959999999999999,5,a-curv-i3,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 53, 0, 16, 18, 15, 4, 30.2, 69.8 +10.66,5,a-curv-i3,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 317, 53, 95, 97, 52, 20, 46.7, 53.3 +8.7,5,a-curv-i3,2022-23,Monson - Monson High School,01910505, 23, 7, 6, 6, 3, 1, 56.5, 43.5 +11.32,5,a-curv-i3,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 244, 34, 72, 80, 40, 18, 43.4, 56.6 +13.8,5,a-curv-i3,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 352, 43, 66, 108, 84, 51, 31.0, 69.0 +11.959999999999999,5,a-curv-i3,2022-23,Nantucket - Nantucket High,01970505, 164, 27, 39, 48, 30, 20, 40.2, 59.8 +6.94,5,a-curv-i3,2022-23,Narragansett - Narragansett Regional High,07200505, 101, 27, 39, 25, 8, 2, 65.3, 34.7 +15.52,5,a-curv-i3,2022-23,Nashoba - Nashoba Regional,07250505, 460, 34, 69, 112, 150, 95, 22.4, 77.6 +4.16,4.16,a-curv-i3,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 77, 36, 25, 12, 3, 1, 79.2, 20.8 +17.68,5,a-curv-i3,2022-23,Natick - Natick High,01980505," 1,053", 29, 93, 227, 328, 376, 11.6, 88.4 +14.780000000000001,5,a-curv-i3,2022-23,Nauset - Nauset Regional High,06600505, 501, 41, 90, 154, 134, 82, 26.1, 73.9 +17.96,5,a-curv-i3,2022-23,Needham - Needham High,01990505, 958, 20, 78, 194, 299, 367, 10.2, 89.8 +3.78,3.78,a-curv-i3,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 90, 51, 22, 16, 1, 0, 81.1, 18.9 +11.24,5,a-curv-i3,2022-23,New Bedford - New Bedford High,02010505, 553, 95, 147, 172, 92, 47, 43.8, 56.2 +16.34,5,a-curv-i3,2022-23,Newburyport - Newburyport High,02040505, 416, 17, 59, 124, 140, 76, 18.3, 81.7 +16.44,5,a-curv-i3,2022-23,Newton - Newton North High,02070505," 1,237", 55, 165, 275, 369, 373, 17.8, 82.2 +17.32,5,a-curv-i3,2022-23,Newton - Newton South High,02070510," 1,118", 35, 115, 234, 347, 387, 13.4, 86.6 +9.1,5,a-curv-i3,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 11, 0, 6, 2, 3, 0, 54.5, 45.5 +4.46,4.46,a-curv-i3,2022-23,North Adams - Drury High,02090505, 179, 103, 36, 34, 5, 1, 77.7, 22.3 +14.8,5,a-curv-i3,2022-23,North Andover - North Andover High,02110505, 543, 40, 101, 159, 146, 97, 26.0, 74.0 +14.2,5,a-curv-i3,2022-23,North Attleborough - North Attleboro High,02120505, 573, 44, 122, 162, 161, 84, 29.0, 71.0 +3.44,3.44,a-curv-i3,2022-23,North Brookfield - North Brookfield High,02150505, 29, 8, 16, 4, 1, 0, 82.8, 17.2 +13.14,5,a-curv-i3,2022-23,North Middlesex - North Middlesex Regional,07350505, 204, 18, 52, 69, 41, 24, 34.3, 65.7 +16.06,5,a-curv-i3,2022-23,North Reading - North Reading High,02170505, 319, 15, 48, 65, 117, 74, 19.7, 80.3 +14.34,5,a-curv-i3,2022-23,Northampton - Northampton High,02100505, 484, 31, 106, 147, 131, 69, 28.3, 71.7 +2.3,2.3,a-curv-i3,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 61, 41, 13, 5, 2, 0, 88.5, 11.5 +16.94,5,a-curv-i3,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 962, 56, 91, 224, 284, 307, 15.3, 84.7 +12.78,5,a-curv-i3,2022-23,Northbridge - Northbridge High,02140505, 158, 27, 30, 46, 31, 24, 36.1, 63.9 +3.38,3.38,a-curv-i3,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 136, 82, 31, 18, 3, 2, 83.1, 16.9 +4.4799999999999995,4.48,a-curv-i3,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 49, 23, 15, 3, 8, 0, 77.6, 22.4 +14.2,5,a-curv-i3,2022-23,Norton - Norton High,02180505, 338, 27, 71, 115, 85, 40, 29.0, 71.0 +15.98,5,a-curv-i3,2022-23,Norwell - Norwell High,02190505, 433, 20, 67, 131, 125, 90, 20.1, 79.9 +11.08,5,a-curv-i3,2022-23,Norwood - Norwood High,02200505, 527, 87, 148, 172, 85, 35, 44.6, 55.4 +9.9,5,a-curv-i3,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 97, 11, 38, 28, 17, 3, 50.5, 49.5 +13.080000000000002,5,a-curv-i3,2022-23,Old Rochester - Old Rochester Regional High,07400505, 332, 53, 62, 104, 72, 41, 34.6, 65.4 +7.7,5,a-curv-i3,2022-23,Oxford - Oxford High,02260505, 78, 16, 32, 14, 9, 7, 61.5, 38.5 +9.120000000000001,5,a-curv-i3,2022-23,Palmer - Palmer High,02270505, 103, 26, 30, 20, 25, 2, 54.4, 45.6 +3.5200000000000005,3.52,a-curv-i3,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 136, 68, 44, 19, 5, 0, 82.4, 17.6 +0.0,1,a-curv-i3,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 10, 9, 1, 0, 0, 0, 100.0, .0 +13.02,5,a-curv-i3,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 564, 56, 141, 178, 137, 52, 34.9, 65.1 +13.040000000000001,5,a-curv-i3,2022-23,Pembroke - Pembroke High School,02310505, 428, 53, 96, 130, 81, 68, 34.8, 65.2 +15.02,5,a-curv-i3,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 297, 30, 44, 87, 97, 39, 24.9, 75.1 +12.040000000000001,5,a-curv-i3,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 123, 19, 30, 36, 26, 12, 39.8, 60.2 +14.9,5,a-curv-i3,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 161, 16, 25, 56, 44, 20, 25.5, 74.5 +7.92,5,a-curv-i3,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 48, 16, 13, 8, 7, 4, 60.4, 39.6 +0.0,1,a-curv-i3,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8,"","","","","","","" +10.18,5,a-curv-i3,2022-23,Pittsfield - Pittsfield High,02360505, 344, 72, 97, 99, 51, 25, 49.1, 50.9 +6.840000000000001,5,a-curv-i3,2022-23,Pittsfield - Taconic High,02360510, 184, 62, 59, 42, 16, 5, 65.8, 34.2 +14.059999999999999,5,a-curv-i3,2022-23,Plymouth - Plymouth North High,02390505, 367, 30, 79, 110, 93, 55, 29.7, 70.3 +12.379999999999999,5,a-curv-i3,2022-23,Plymouth - Plymouth South High,02390515, 428, 64, 99, 124, 88, 53, 38.1, 61.9 +5.779999999999999,5,a-curv-i3,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 142, 71, 30, 23, 14, 4, 71.1, 28.9 +12.14,5,a-curv-i3,2022-23,Quabbin - Quabbin Regional High School,07530505, 122, 18, 30, 39, 20, 15, 39.3, 60.7 +13.34,5,a-curv-i3,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 207, 22, 47, 68, 44, 26, 33.3, 66.7 +14.8,5,a-curv-i3,2022-23,Quincy - North Quincy High,02430510, 739, 91, 101, 213, 200, 134, 26.0, 74.0 +11.68,5,a-curv-i3,2022-23,Quincy - Quincy High,02430505, 461, 76, 116, 107, 104, 58, 41.6, 58.4 +11.64,5,a-curv-i3,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 55, 12, 11, 15, 12, 5, 41.8, 58.2 +5.96,5,a-curv-i3,2022-23,Randolph - Randolph High,02440505, 168, 79, 39, 36, 9, 5, 70.2, 29.8 +12.459999999999999,5,a-curv-i3,2022-23,Reading - Reading Memorial High,02460505, 616, 98, 134, 157, 129, 98, 37.7, 62.3 +8.8,5,a-curv-i3,2022-23,Revere - Revere High,02480505, 639, 189, 169, 129, 86, 66, 56.0, 44.0 +8.24,5,a-curv-i3,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 34, 8, 12, 9, 4, 1, 58.8, 41.2 +9.14,5,a-curv-i3,2022-23,Rockland - Rockland Senior High,02510505, 232, 41, 85, 69, 24, 13, 54.3, 45.7 +9.68,5,a-curv-i3,2022-23,Rockport - Rockport High,02520510, 159, 25, 57, 46, 23, 8, 51.6, 48.4 +3.8600000000000003,3.86,a-curv-i3,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 876, 443, 264, 140, 27, 2, 80.7, 19.3 +9.28,5,a-curv-i3,2022-23,Salem - Salem High,02580505, 207, 68, 43, 44, 39, 13, 53.6, 46.4 +7.2,5,a-curv-i3,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 333, 120, 93, 66, 42, 12, 64.0, 36.0 +14.16,5,a-curv-i3,2022-23,Sandwich - Sandwich Middle High School,02610505, 367, 40, 67, 106, 102, 52, 29.2, 70.8 +8.66,5,a-curv-i3,2022-23,Saugus - Saugus High,02620505, 270, 86, 67, 59, 41, 17, 56.7, 43.3 +13.680000000000001,5,a-curv-i3,2022-23,Scituate - Scituate High School,02640505, 585, 61, 124, 182, 145, 73, 31.6, 68.4 +9.72,5,a-curv-i3,2022-23,Seekonk - Seekonk High,02650505, 249, 64, 64, 58, 39, 24, 51.4, 48.6 +18.2,5,a-curv-i3,2022-23,Sharon - Sharon High,02660505, 800, 20, 52, 163, 228, 337, 9.0, 91.0 +16.8,5,a-curv-i3,2022-23,Shrewsbury - Shrewsbury High School,02710505, 909, 35, 110, 198, 285, 281, 16.0, 84.0 +13.419999999999998,5,a-curv-i3,2022-23,Silver Lake - Silver Lake Regional High,07600505, 431, 46, 96, 130, 99, 60, 32.9, 67.1 +8.879999999999999,5,a-curv-i3,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 18, 5, 5, 3, 3, 2, 55.6, 44.4 +15.059999999999999,5,a-curv-i3,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 465, 39, 76, 139, 149, 62, 24.7, 75.3 +12.059999999999999,5,a-curv-i3,2022-23,Somerville - Somerville High,02740505, 605, 106, 134, 136, 123, 106, 39.7, 60.3 +16.2,5,a-curv-i3,2022-23,South Hadley - South Hadley High,02780505, 158, 8, 22, 41, 52, 35, 19.0, 81.0 +9.379999999999999,5,a-curv-i3,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 113, 28, 32, 31, 10, 12, 53.1, 46.9 +10.059999999999999,5,a-curv-i3,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 145, 26, 46, 30, 27, 16, 49.7, 50.3 +0.0,1,a-curv-i3,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 8,"","","","","","","" +5.42,5,a-curv-i3,2022-23,Southbridge - Southbridge High School,02770515, 59, 22, 21, 10, 3, 3, 72.9, 27.1 +9.92,5,a-curv-i3,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 268, 63, 72, 106, 20, 7, 50.4, 49.6 +15.34,5,a-curv-i3,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 30, 3, 4, 12, 7, 4, 23.3, 76.7 +9.28,5,a-curv-i3,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 183, 46, 52, 44, 32, 9, 53.6, 46.4 +11.0,5,a-curv-i3,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 120, 19, 35, 23, 28, 15, 45.0, 55.0 +10.08,5,a-curv-i3,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 119, 33, 26, 28, 16, 16, 49.6, 50.4 +3.84,3.84,a-curv-i3,2022-23,Springfield - Conservatory of the Arts,02810475, 26, 12, 9, 3, 2, 0, 80.8, 19.2 +6.44,5,a-curv-i3,2022-23,Springfield - High School Of Commerce,02810510, 171, 66, 50, 43, 9, 3, 67.8, 32.2 +3.9,3.9,a-curv-i3,2022-23,Springfield - John J Duggan Academy,02810320, 87, 48, 22, 15, 2, 0, 80.5, 19.5 +4.0,4.0,a-curv-i3,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 115, 52, 40, 16, 7, 0, 80.0, 20.0 +7.62,5,a-curv-i3,2022-23,Springfield - Springfield Central High,02810500, 412, 144, 111, 103, 42, 12, 61.9, 38.1 +2.48,2.48,a-curv-i3,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 145, 89, 38, 16, 2, 0, 87.6, 12.4 +4.0,4.0,a-curv-i3,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 130, 78, 26, 15, 8, 3, 80.0, 20.0 +4.279999999999999,4.28,a-curv-i3,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 131, 72, 31, 17, 10, 1, 78.6, 21.4 +10.8,5,a-curv-i3,2022-23,Stoneham - Stoneham High,02840505, 337, 59, 96, 100, 59, 23, 46.0, 54.0 +10.72,5,a-curv-i3,2022-23,Stoughton - Stoughton High,02850505, 321, 75, 74, 77, 56, 39, 46.4, 53.6 +10.459999999999999,5,a-curv-i3,2022-23,Sutton - Sutton High School,02900510, 279, 50, 83, 74, 50, 22, 47.7, 52.3 +13.919999999999998,5,a-curv-i3,2022-23,Swampscott - Swampscott High,02910505, 438, 45, 88, 125, 114, 66, 30.4, 69.6 +10.98,5,a-curv-i3,2022-23,Swansea - Joseph Case High,02920505, 162, 30, 43, 48, 31, 10, 45.1, 54.9 +12.059999999999999,5,a-curv-i3,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 68, 13, 14, 20, 10, 11, 39.7, 60.3 +16.5,5,a-curv-i3,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 246, 6, 37, 83, 69, 51, 17.5, 82.5 +12.0,5,a-curv-i3,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 15, 0, 6, 4, 4, 1, 40.0, 60.0 +9.2,5,a-curv-i3,2022-23,Taunton - Taunton High,02930505, 641, 178, 168, 175, 90, 30, 54.0, 46.0 +13.36,5,a-curv-i3,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 416, 45, 93, 122, 88, 68, 33.2, 66.8 +7.6,5,a-curv-i3,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 142, 42, 46, 31, 17, 6, 62.0, 38.0 +12.9,5,a-curv-i3,2022-23,Triton - Triton Regional High School,07730505, 203, 21, 51, 55, 48, 28, 35.5, 64.5 +14.48,5,a-curv-i3,2022-23,Tyngsborough - Tyngsborough High School,03010505, 105, 6, 23, 31, 24, 21, 27.6, 72.4 +14.66,5,a-curv-i3,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 15, 2, 2, 10, 1, 0, 26.7, 73.3 +11.2,5,a-curv-i3,2022-23,Uxbridge - Uxbridge High,03040505, 116, 20, 31, 37, 18, 10, 44.0, 56.0 +16.64,5,a-curv-i3,2022-23,Wachusett - Wachusett Regional High,07750505, 786, 22, 110, 192, 237, 225, 16.8, 83.2 +10.36,5,a-curv-i3,2022-23,Wakefield - Wakefield Memorial High,03050505, 409, 116, 81, 89, 79, 44, 48.2, 51.8 +17.36,5,a-curv-i3,2022-23,Walpole - Walpole High,03070505, 425, 11, 45, 102, 152, 115, 13.2, 86.8 +10.74,5,a-curv-i3,2022-23,Waltham - Waltham Sr High,03080505, 620, 118, 169, 151, 108, 74, 46.3, 53.7 +11.48,5,a-curv-i3,2022-23,Ware - Ware Junior/Senior High School,03090505, 47, 7, 13, 17, 9, 1, 42.6, 57.4 +4.1,4.1,a-curv-i3,2022-23,Wareham - Wareham Senior High,03100505, 73, 37, 21, 9, 6, 0, 79.5, 20.5 +14.74,5,a-curv-i3,2022-23,Watertown - Watertown High,03140505, 281, 32, 42, 79, 76, 52, 26.3, 73.7 +18.36,5,a-curv-i3,2022-23,Wayland - Wayland High School,03150505, 561, 11, 35, 111, 183, 221, 8.2, 91.8 +9.42,5,a-curv-i3,2022-23,Webster - Bartlett High School,03160505, 68, 18, 18, 15, 13, 4, 52.9, 47.1 +18.16,5,a-curv-i3,2022-23,Wellesley - Wellesley Sr High,03170505, 925, 16, 69, 151, 322, 367, 9.2, 90.8 +15.559999999999999,5,a-curv-i3,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 72, 5, 11, 27, 17, 12, 22.2, 77.8 +8.66,5,a-curv-i3,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 203, 29, 86, 60, 19, 9, 56.7, 43.3 +12.42,5,a-curv-i3,2022-23,West Springfield - West Springfield High,03320505, 480, 73, 109, 167, 88, 43, 37.9, 62.1 +17.580000000000002,5,a-curv-i3,2022-23,Westborough - Westborough High,03210505, 628, 10, 66, 118, 224, 210, 12.1, 87.9 +8.98,5,a-curv-i3,2022-23,Westfield - Westfield High,03250505, 216, 56, 63, 50, 33, 14, 55.1, 44.9 +18.16,5,a-curv-i3,2022-23,Westford - Westford Academy,03260505," 1,063", 21, 77, 192, 359, 414, 9.2, 90.8 +17.32,5,a-curv-i3,2022-23,Weston - Weston High,03300505, 610, 21, 61, 137, 162, 229, 13.4, 86.6 +10.48,5,a-curv-i3,2022-23,Westport - Westport Middle-High School,03310515, 82, 20, 19, 23, 13, 7, 47.6, 52.4 +17.580000000000002,5,a-curv-i3,2022-23,Westwood - Westwood High,03350505, 841, 17, 85, 190, 255, 294, 12.1, 87.9 +14.66,5,a-curv-i3,2022-23,Weymouth - Weymouth High School,03360505, 555, 54, 94, 169, 164, 74, 26.7, 73.3 +12.1,5,a-curv-i3,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 458, 61, 120, 127, 106, 44, 39.5, 60.5 +7.92,5,a-curv-i3,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 48, 14, 15, 15, 3, 1, 60.4, 39.6 +13.64,5,a-curv-i3,2022-23,Wilmington - Wilmington High,03420505, 403, 45, 83, 108, 94, 73, 31.8, 68.2 +10.18,5,a-curv-i3,2022-23,Winchendon - Murdock High School,03430515, 53, 10, 16, 10, 14, 3, 49.1, 50.9 +17.54,5,a-curv-i3,2022-23,Winchester - Winchester High School,03440505," 1,165", 28, 115, 289, 365, 368, 12.3, 87.7 +5.4,5,a-curv-i3,2022-23,Winthrop - Winthrop High School,03460505, 319, 157, 76, 54, 29, 3, 73.0, 27.0 +11.379999999999999,5,a-curv-i3,2022-23,Woburn - Woburn High,03470505, 397, 103, 68, 108, 79, 39, 43.1, 56.9 +7.08,5,a-curv-i3,2022-23,Worcester - Burncoat Senior High,03480503, 396, 160, 96, 70, 49, 21, 64.6, 35.4 +3.4200000000000004,3.42,a-curv-i3,2022-23,Worcester - Claremont Academy,03480350, 117, 95, 2, 10, 6, 4, 82.9, 17.1 +8.82,5,a-curv-i3,2022-23,Worcester - Doherty Memorial High,03480512, 513, 176, 111, 118, 71, 37, 55.9, 44.1 +3.3,3.3,a-curv-i3,2022-23,Worcester - North High,03480515, 249, 141, 67, 26, 12, 3, 83.5, 16.5 +10.459999999999999,5,a-curv-i3,2022-23,Worcester - South High Community,03480520, 618, 153, 142, 156, 101, 66, 47.7, 52.3 +5.84,5,a-curv-i3,2022-23,Worcester - University Pk Campus School,03480285, 72, 33, 18, 16, 4, 1, 70.8, 29.2 +5.92,5,a-curv-i3,2022-23,Worcester - Worcester Technical High,03480605, 318, 102, 122, 50, 34, 10, 70.4, 29.6 12.88,5,a-curv-i3,2021-22,Abington - Abington High,00010505, 149, 15, 38, 50, 33, 13, 35.6, 64.4 1.48,1.48,a-curv-i3,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 135, 110, 15, 9, 1, 0, 92.6, 7.4 18.740000000000002,5,a-curv-i3,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505," 1,134", 19, 52, 145, 337, 581, 6.3, 93.7 diff --git a/data/admin_data/dese/3B_1_masscore.csv b/data/admin_data/dese/3B_1_masscore.csv index a517d3c4..6f7fc7f2 100644 --- a/data/admin_data/dese/3B_1_masscore.csv +++ b/data/admin_data/dese/3B_1_masscore.csv @@ -1,4 +1,396 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Graduated,# Completed MassCore,% Completed MassCore +4.444444444444445,4.44,a-curv-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 88, 88, 100.0 +1.9066666666666665,1.91,a-curv-i1,2022-23,Abington - Abington High,00010505, 133, 57, 42.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 52, 52, 100.0 +3.9466666666666663,3.95,a-curv-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 445, 395, 88.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 138, 138, 100.0 +3.897777777777778,3.9,a-curv-i1,2022-23,Agawam - Agawam High,00050505, 235, 206, 87.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Amesbury - Amesbury High,00070505, 104, 104, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 202, 202, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Andover - Andover High,00090505, 420, 420, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 43, 43, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Arlington - Arlington High,00100505, 368, 368, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 163, 163, 100.0 +3.6711111111111108,3.67,a-curv-i1,2022-23,Ashland - Ashland High,00140505, 178, 147, 82.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 256, 256, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Athol-Royalston - Athol High,06150505, 73, 73, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 77, 77, 100.0 +2.6,2.6,a-curv-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 41, 24, 58.5 +3.982222222222222,3.98,a-curv-i1,2022-23,Attleboro - Attleboro High,00160505, 383, 343, 89.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 12, 12, 100.0 +4.004444444444444,4.0,a-curv-i1,2022-23,Auburn - Auburn Senior High,00170505, 192, 173, 90.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Avon - Avon Middle High School,00180510, 45, 45, 100.0 +4.342222222222222,4.34,a-curv-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 86, 84, 97.7 +4.431111111111111,4.43,a-curv-i1,2022-23,Barnstable - Barnstable High,00200505, 328, 327, 99.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 47, 47, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Bedford - Bedford High,00230505, 199, 199, 100.0 +3.7644444444444445,3.76,a-curv-i1,2022-23,Belchertown - Belchertown High,00240505, 170, 144, 84.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Bellingham - Bellingham High School,00250505, 117, 117, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Belmont - Belmont High,00260505, 314, 314, 100.0 +3.493333333333333,3.49,a-curv-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28, 22, 78.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 109, 109, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 60, 60, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Beverly - Beverly High,00300505, 317, 317, 100.0 +4.102222222222222,4.1,a-curv-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 274, 253, 92.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 294, 294, 100.0 +4.395555555555556,4.4,a-curv-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 95, 94, 98.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 206, 206, 100.0 +2.373333333333333,2.37,a-curv-i1,2022-23,Boston - Another Course To College,00350541, 58, 31, 53.4 +0.21333333333333332,1,a-curv-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 105, 5, 4.8 +2.8577777777777778,2.86,a-curv-i1,2022-23,Boston - Boston Arts Academy,00350546, 98, 63, 64.3 +0.26222222222222225,1,a-curv-i1,2022-23,Boston - Boston Collaborative High School,00350755, 85, 5, 5.9 +1.5066666666666666,1.51,a-curv-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 112, 38, 33.9 +0.05777777777777778,1,a-curv-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 75, 1, 1.3 +2.608888888888889,2.61,a-curv-i1,2022-23,Boston - Boston Latin Academy,00350545, 300, 176, 58.7 +3.2844444444444445,3.28,a-curv-i1,2022-23,Boston - Boston Latin School,00350560, 410, 303, 73.9 +1.6622222222222223,1.66,a-curv-i1,2022-23,Boston - Brighton High School,00350505, 107, 40, 37.4 +0.28444444444444444,1,a-curv-i1,2022-23,Boston - Burke High School,00350525, 78, 5, 6.4 +1.0044444444444445,1.0,a-curv-i1,2022-23,Boston - Charlestown High School,00350515, 137, 31, 22.6 +0.0,1,a-curv-i1,2022-23,Boston - Community Academy,00350518, 18, 0, 0.0 +0.6933333333333334,1,a-curv-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 45, 7, 15.6 +0.3644444444444444,1,a-curv-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 73, 6, 8.2 +2.2533333333333334,2.25,a-curv-i1,2022-23,Boston - East Boston High School,00350530, 229, 116, 50.7 +2.3644444444444446,2.36,a-curv-i1,2022-23,Boston - English High School,00350535, 126, 67, 53.2 +1.7066666666666666,1.71,a-curv-i1,2022-23,Boston - Excel High School,00350522, 86, 33, 38.4 +1.8222222222222222,1.82,a-curv-i1,2022-23,Boston - Fenway High School,00350540, 83, 34, 41.0 +0.1288888888888889,1,a-curv-i1,2022-23,Boston - Greater Egleston High School,00350543, 34, 1, 2.9 +2.7333333333333334,2.73,a-curv-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 65, 40, 61.5 +1.7377777777777779,1.74,a-curv-i1,2022-23,Boston - Lyon High School,00350655, 23, 9, 39.1 +2.8177777777777777,2.82,a-curv-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 183, 116, 63.4 +0.0,1,a-curv-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 65, 0, 0.0 +0.0,1,a-curv-i1,2022-23,Boston - McKinley Schools,00350363, 13, 0, 0.0 +2.1555555555555554,2.16,a-curv-i1,2022-23,Boston - New Mission High School,00350542, 97, 47, 48.5 +4.208888888888889,4.21,a-curv-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 318, 301, 94.7 +3.728888888888889,3.73,a-curv-i1,2022-23,Boston - Quincy Upper School,00350565, 31, 26, 83.9 +1.7866666666666668,1.79,a-curv-i1,2022-23,Boston - Snowden International High School,00350690, 92, 37, 40.2 +1.2844444444444443,1.28,a-curv-i1,2022-23,Boston - TechBoston Academy,00350657, 128, 37, 28.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 76, 76, 100.0 +0.0,1,a-curv-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 49, 0, 0.0 +0.15555555555555556,1,a-curv-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 57, 2, 3.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 69, 69, 100.0 +3.1333333333333333,3.13,a-curv-i1,2022-23,Bourne - Bourne High School,00360505, 88, 62, 70.5 +4.253333333333334,4.25,a-curv-i1,2022-23,Braintree - Braintree High,00400505, 399, 382, 95.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 315, 315, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 102, 102, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 311, 311, 100.0 +0.0,1,a-curv-i1,2022-23,Brockton - Brockton Champion High School,00440515, 25, 0, 0.0 +1.8711111111111112,1.87,a-curv-i1,2022-23,Brockton - Brockton High,00440505, 760, 320, 42.1 +1.2133333333333334,1.21,a-curv-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 11, 3, 27.3 +0.0,1,a-curv-i1,2022-23,Brockton - Edison Academy,00440520, 153, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 98, 98, 100.0 +4.248888888888889,4.25,a-curv-i1,2022-23,Brookline - Brookline High,00460505, 478, 457, 95.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Burlington - Burlington High,00480505, 217, 217, 100.0 +4.355555555555555,4.36,a-curv-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 461, 452, 98.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Canton - Canton High,00500505, 205, 205, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 156, 156, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Carver - Carver Middle/High School,00520405, 88, 88, 100.0 +3.151111111111111,3.15,a-curv-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 110, 78, 70.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelmsford - Chelmsford High,00560505, 309, 309, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea High,00570505, 271, 271, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 33, 33, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 15, 15, 100.0 +1.9466666666666665,1.95,a-curv-i1,2022-23,Chicopee - Chicopee Academy,00610021, 16, 7, 43.8 +1.702222222222222,1.7,a-curv-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 253, 97, 38.3 +1.271111111111111,1.27,a-curv-i1,2022-23,Chicopee - Chicopee High,00610505, 185, 53, 28.6 +4.444444444444445,4.44,a-curv-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 35, 35, 100.0 +4.1288888888888895,4.13,a-curv-i1,2022-23,Clinton - Clinton Senior High,00640505, 112, 104, 92.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 27, 27, 100.0 +4.404444444444445,4.4,a-curv-i1,2022-23,Cohasset - Cohasset High School,00650505, 114, 113, 99.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 27, 27, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 27, 27, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 336, 336, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Danvers - Danvers High,00710505, 190, 190, 100.0 +4.346666666666667,4.35,a-curv-i1,2022-23,Dartmouth - Dartmouth High,00720505, 232, 227, 97.8 +2.688888888888889,2.69,a-curv-i1,2022-23,Dedham - Dedham High,00730505, 172, 104, 60.5 +4.413333333333333,4.41,a-curv-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 148, 147, 99.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 153, 153, 100.0 +4.12,4.12,a-curv-i1,2022-23,Douglas - Douglas High School,00770505, 82, 76, 92.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 149, 149, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Dracut - Dracut Senior High,00790505, 188, 188, 100.0 +3.04,3.04,a-curv-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 212, 145, 68.4 +4.426666666666667,4.43,a-curv-i1,2022-23,Duxbury - Duxbury High,00820505, 226, 225, 99.6 +4.444444444444445,4.44,a-curv-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 158, 158, 100.0 +0.4444444444444444,1,a-curv-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 211, 21, 10.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Easthampton - Easthampton High,00860505, 93, 93, 100.0 +3.7022222222222223,3.7,a-curv-i1,2022-23,Easton - Oliver Ames High,00880505, 270, 225, 83.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 83, 83, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 393, 393, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Everett - Everett High,00930505, 436, 436, 100.0 +1.7955555555555556,1.8,a-curv-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 161, 65, 40.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Fairhaven - Fairhaven High,00940505, 163, 163, 100.0 +3.577777777777778,3.58,a-curv-i1,2022-23,Fall River - B M C Durfee High,00950505, 483, 389, 80.5 +0.36,1,a-curv-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 37, 3, 8.1 +3.813333333333333,3.81,a-curv-i1,2022-23,Falmouth - Falmouth High,00960505, 190, 163, 85.8 +4.137777777777777,4.14,a-curv-i1,2022-23,Fitchburg - Fitchburg High,00970505, 261, 243, 93.1 +0.42666666666666664,1,a-curv-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 135, 13, 9.6 +3.791111111111111,3.79,a-curv-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 34, 29, 85.3 +3.013333333333333,3.01,a-curv-i1,2022-23,Foxborough - Foxborough High,00990505, 177, 120, 67.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 86, 86, 100.0 +3.7688888888888887,3.77,a-curv-i1,2022-23,Framingham - Framingham High School,01000515, 545, 462, 84.8 +4.013333333333334,4.01,a-curv-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 62, 56, 90.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Franklin - Franklin High,01010505, 421, 421, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 124, 124, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 184, 184, 100.0 +4.2444444444444445,4.24,a-curv-i1,2022-23,Frontier - Frontier Regional,06700505, 88, 84, 95.5 +2.102222222222222,2.1,a-curv-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 55, 26, 47.3 +3.066666666666667,3.07,a-curv-i1,2022-23,Gardner - Gardner High,01030505, 126, 87, 69.0 +3.466666666666667,3.47,a-curv-i1,2022-23,Gateway - Gateway Regional High,06720505, 41, 32, 78.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Georgetown - Georgetown High School,01050505, 78, 78, 100.0 +3.728888888888889,3.73,a-curv-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 31, 26, 83.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 43, 43, 100.0 +2.7022222222222223,2.7,a-curv-i1,2022-23,Gloucester - Gloucester High,01070505, 181, 110, 60.8 +4.426666666666667,4.43,a-curv-i1,2022-23,Grafton - Grafton High School,01100505, 228, 227, 99.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 56, 56, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 132, 132, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 315, 315, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 402, 402, 100.0 +0.0,1,a-curv-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 525, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 448, 448, 100.0 +2.351111111111111,2.35,a-curv-i1,2022-23,Greenfield - Greenfield High,01140505, 68, 36, 52.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 168, 168, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hadley - Hopkins Academy,01170505, 37, 37, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 118, 118, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 64, 64, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 25, 25, 100.0 +3.7422222222222223,3.74,a-curv-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 221, 186, 84.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 98, 98, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hanover - Hanover High,01220505, 167, 167, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Harvard - Bromfield,01250505, 76, 76, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hatfield - Smith Academy,01270505, 24, 24, 100.0 +0.0,1,a-curv-i1,2022-23,Haverhill - Gateway Academy,01280515, 10, 0, 0.0 +2.04,2.04,a-curv-i1,2022-23,Haverhill - Haverhill High,01280505, 405, 186, 45.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Hingham - Hingham High,01310505, 317, 317, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 78, 78, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Holliston - Holliston High,01360505, 194, 194, 100.0 +1.4133333333333333,1.41,a-curv-i1,2022-23,Holyoke - Holyoke High,01370505, 318, 101, 31.8 +2.631111111111111,2.63,a-curv-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 49, 29, 59.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 62, 62, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hopkinton - Hopkinton High,01390505, 310, 310, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hudson - Hudson High,01410505, 153, 153, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Hull - Hull High,01420505, 60, 60, 100.0 +3.9644444444444447,3.96,a-curv-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 83, 74, 89.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Ipswich - Ipswich High,01440505, 120, 120, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 107, 107, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,King Philip - King Philip Regional High,06900505, 265, 265, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - High School Learning Center,01490536, 107, 107, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - Lawrence High School,01490515, 589, 589, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lawrence - RISE Academy,01490615, 11, 11, 100.0 +2.8355555555555556,2.84,a-curv-i1,2022-23,Lee - Lee Middle/High School,01500505, 58, 37, 63.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Leicester - Leicester High,01510505, 97, 97, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lenox - Lenox Memorial High,01520505, 63, 63, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 130, 130, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 10, 10, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Leominster - Leominster High School,01530505, 289, 289, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lexington - Lexington High,01550505, 572, 572, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 358, 358, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Littleton - Littleton High School,01580505, 105, 105, 100.0 +2.6133333333333333,2.61,a-curv-i1,2022-23,Longmeadow - Longmeadow High,01590505, 211, 124, 58.8 +1.0577777777777777,1.06,a-curv-i1,2022-23,Lowell - Lowell High,01600505, 585, 139, 23.8 +0.0,1,a-curv-i1,2022-23,Lowell - The Career Academy,01600515, 49, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 31, 31, 100.0 +3.7688888888888887,3.77,a-curv-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 191, 162, 84.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Lunenburg - Lunenburg High,01620505, 97, 97, 100.0 +0.21333333333333332,1,a-curv-i1,2022-23,Lynn - Classical High,01630505, 414, 20, 4.8 +0.23555555555555555,1,a-curv-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 19, 1, 5.3 +0.24444444444444444,1,a-curv-i1,2022-23,Lynn - Lynn English High,01630510, 384, 21, 5.5 +1.24,1.24,a-curv-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 251, 70, 27.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Lynnfield - Lynnfield High,01640505, 134, 134, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 50, 50, 100.0 +2.373333333333333,2.37,a-curv-i1,2022-23,Malden - Malden High,01650505, 401, 214, 53.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 123, 123, 100.0 +4.413333333333333,4.41,a-curv-i1,2022-23,Mansfield - Mansfield High,01670505, 290, 288, 99.3 +1.8933333333333333,1.89,a-curv-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 54, 23, 42.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Marblehead - Marblehead High,01680505, 220, 220, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Marlborough - Marlborough High,01700505, 263, 263, 100.0 +4.431111111111111,4.43,a-curv-i1,2022-23,Marshfield - Marshfield High,01710505, 297, 296, 99.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 179, 179, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 9, 9, 100.0 +2.9555555555555557,2.96,a-curv-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 266, 177, 66.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 109, 109, 100.0 +0.0,1,a-curv-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 59, 0, 0.0 +3.9511111111111115,3.95,a-curv-i1,2022-23,Maynard - Maynard High,01740505, 72, 64, 88.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Medfield - Medfield Senior High,01750505, 198, 198, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Medford - Medford High,01760505, 307, 307, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Medway - Medway High,01770505, 161, 161, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Melrose - Melrose High,01780505, 218, 218, 100.0 +2.888888888888889,2.89,a-curv-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 140, 91, 65.0 +3.4444444444444446,3.44,a-curv-i1,2022-23,Methuen - Methuen High,01810505, 462, 358, 77.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Middleborough - Middleborough High,01820505, 194, 194, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Milford - Milford High,01850505, 287, 287, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 124, 124, 100.0 +4.382222222222222,4.38,a-curv-i1,2022-23,Millis - Millis High School,01870505, 73, 72, 98.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Milton - Milton High,01890505, 266, 266, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 148, 148, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 25, 25, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 118, 118, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Monson - Monson High School,01910505, 35, 35, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 317, 317, 100.0 +2.7644444444444445,2.76,a-curv-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 82, 51, 62.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 72, 72, 100.0 +4.413333333333333,4.41,a-curv-i1,2022-23,Nantucket - Nantucket High,01970505, 145, 144, 99.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 62, 62, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Nashoba - Nashoba Regional,07250505, 192, 192, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 160, 160, 100.0 +4.293333333333333,4.29,a-curv-i1,2022-23,Natick - Natick High,01980505, 377, 364, 96.6 +4.444444444444445,4.44,a-curv-i1,2022-23,Nauset - Nauset Regional High,06600505, 198, 198, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Needham - Needham High,01990505, 375, 375, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 55, 55, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - New Bedford High,02010505, 570, 570, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 9, 9, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 41, 41, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 80, 80, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Newburyport - Newburyport High,02040505, 207, 207, 100.0 +3.9466666666666663,3.95,a-curv-i1,2022-23,Newton - Newton North High,02070505, 491, 436, 88.8 +3.9466666666666663,3.95,a-curv-i1,2022-23,Newton - Newton South High,02070510, 475, 422, 88.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 132, 132, 100.0 +3.204444444444444,3.2,a-curv-i1,2022-23,North Adams - Drury High,02090505, 61, 44, 72.1 +4.444444444444445,4.44,a-curv-i1,2022-23,North Andover - North Andover High,02110505, 302, 302, 100.0 +4.359999999999999,4.36,a-curv-i1,2022-23,North Attleborough - North Attleboro High,02120505, 257, 252, 98.1 +4.444444444444445,4.44,a-curv-i1,2022-23,North Brookfield - North Brookfield High,02150505, 13, 13, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 171, 171, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,North Reading - North Reading High,02170505, 173, 173, 100.0 +0.017777777777777778,1,a-curv-i1,2022-23,Northampton - Northampton High,02100505, 233, 1, 0.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 128, 128, 100.0 +2.28,2.28,a-curv-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 312, 160, 51.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Northbridge - Northbridge High,02140505, 125, 125, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 281, 281, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 123, 123, 100.0 +3.9555555555555557,3.96,a-curv-i1,2022-23,Norton - Norton High,02180505, 163, 145, 89.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Norwell - Norwell High,02190505, 149, 149, 100.0 +2.2666666666666666,2.27,a-curv-i1,2022-23,Norwood - Norwood High,02200505, 257, 131, 51.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 140, 140, 100.0 +3.911111111111111,3.91,a-curv-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 167, 147, 88.0 +4.391111111111111,4.39,a-curv-i1,2022-23,Oxford - Oxford High,02260505, 80, 79, 98.8 +4.008888888888889,4.01,a-curv-i1,2022-23,Palmer - Palmer High,02270505, 61, 55, 90.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 125, 125, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 47, 47, 100.0 +3.7022222222222223,3.7,a-curv-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 12, 10, 83.3 +3.1333333333333333,3.13,a-curv-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 346, 244, 70.5 +4.444444444444445,4.44,a-curv-i1,2022-23,Pembroke - Pembroke High School,02310505, 195, 195, 100.0 +3.7511111111111113,3.75,a-curv-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 154, 130, 84.4 +4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 7, 7, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 12, 12, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 9, 9, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 44, 44, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 46, 46, 100.0 +4.262222222222222,4.26,a-curv-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 49, 47, 95.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 19, 19, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 57, 57, 100.0 +3.7111111111111112,3.71,a-curv-i1,2022-23,Pittsfield - Pittsfield High,02360505, 139, 116, 83.5 +2.2222222222222223,2.22,a-curv-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 12, 6, 50.0 +3.2977777777777777,3.3,a-curv-i1,2022-23,Pittsfield - Taconic High,02360510, 178, 132, 74.2 +3.684444444444445,3.68,a-curv-i1,2022-23,Plymouth - Plymouth North High,02390505, 292, 242, 82.9 +3.6799999999999997,3.68,a-curv-i1,2022-23,Plymouth - Plymouth South High,02390515, 238, 197, 82.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 64, 64, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 127, 127, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 94, 94, 100.0 +1.6444444444444444,1.64,a-curv-i1,2022-23,Quincy - North Quincy High,02430510, 332, 123, 37.0 +2.697777777777778,2.7,a-curv-i1,2022-23,Quincy - Quincy High,02430505, 379, 230, 60.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 77, 77, 100.0 +2.2933333333333334,2.29,a-curv-i1,2022-23,Randolph - Randolph High,02440505, 128, 66, 51.6 +4.262222222222222,4.26,a-curv-i1,2022-23,Reading - Reading Memorial High,02460505, 294, 282, 95.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Revere - CityLab Innovation High School,02480520, 14, 14, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Revere - Revere High,02480505, 433, 433, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 64, 64, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Rockland - Rockland Senior High,02510505, 133, 133, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Rockport - Rockport High,02520510, 61, 61, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 107, 107, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem - New Liberty Innovation School,02580510, 13, 13, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem - Salem High,02580505, 218, 218, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem - Salem Prep High School,02580515, 6, 6, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 65, 65, 100.0 +4.386666666666667,4.39,a-curv-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 157, 155, 98.7 +3.902222222222222,3.9,a-curv-i1,2022-23,Saugus - Saugus High,02620505, 172, 151, 87.8 +4.111111111111111,4.11,a-curv-i1,2022-23,Scituate - Scituate High School,02640505, 187, 173, 92.5 +2.088888888888889,2.09,a-curv-i1,2022-23,Seekonk - Seekonk High,02650505, 134, 63, 47.0 +3.7511111111111113,3.75,a-curv-i1,2022-23,Sharon - Sharon High,02660505, 289, 244, 84.4 +0.8933333333333334,1,a-curv-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 283, 57, 20.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 440, 440, 100.0 +4.342222222222222,4.34,a-curv-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 256, 250, 97.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 38, 38, 100.0 +3.3244444444444445,3.32,a-curv-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 226, 169, 74.8 +3.888888888888889,3.89,a-curv-i1,2022-23,Somerville - Full Circle High School,02740510, 8, 7, 87.5 +3.0577777777777775,3.06,a-curv-i1,2022-23,Somerville - Somerville High,02740505, 266, 183, 68.8 +2.7022222222222223,2.7,a-curv-i1,2022-23,South Hadley - South Hadley High,02780505, 125, 76, 60.8 +4.115555555555555,4.12,a-curv-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 175, 162, 92.6 +2.7688888888888887,2.77,a-curv-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 77, 48, 62.3 +4.444444444444445,4.44,a-curv-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 154, 154, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Southbridge - Southbridge High School,02770515, 87, 87, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 364, 364, 100.0 +3.48,3.48,a-curv-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 46, 36, 78.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 267, 267, 100.0 +3.7022222222222223,3.7,a-curv-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 90, 75, 83.3 +4.444444444444445,4.44,a-curv-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 67, 67, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 37, 37, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 15, 15, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 19, 19, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - High School Of Commerce,02810510, 195, 195, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - John J Duggan Academy,02810320, 81, 81, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 313, 313, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield Central High,02810500, 465, 465, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield High School,02810570, 34, 34, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 247, 247, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 13, 13, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 11, 11, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 72, 72, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 20, 20, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 84, 84, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Stoneham - Stoneham High,02840505, 141, 141, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Stoughton - Stoughton High,02850505, 217, 217, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 207, 207, 100.0 +3.9955555555555557,4.0,a-curv-i1,2022-23,Sutton - Sutton High School,02900510, 89, 80, 89.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Swampscott - Swampscott High,02910505, 150, 150, 100.0 +0.0,1,a-curv-i1,2022-23,Swansea - Joseph Case High,02920505, 106, 0, 0.0 +4.444444444444445,4.44,a-curv-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 339, 339, 100.0 +4.1466666666666665,4.15,a-curv-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 165, 154, 93.3 +2.9466666666666663,2.95,a-curv-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 101, 67, 66.3 +0.39111111111111113,1,a-curv-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 34, 3, 8.8 +3.9511111111111115,3.95,a-curv-i1,2022-23,Taunton - Taunton High,02930505, 458, 407, 88.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 189, 189, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 211, 211, 100.0 +3.9466666666666663,3.95,a-curv-i1,2022-23,Triton - Triton Regional High School,07730505, 169, 150, 88.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 103, 103, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 152, 152, 100.0 +3.457777777777778,3.46,a-curv-i1,2022-23,Uxbridge - Gateway to College,03040515, 9, 7, 77.8 +3.6711111111111108,3.67,a-curv-i1,2022-23,Uxbridge - Uxbridge High,03040505, 109, 90, 82.6 +3.817777777777778,3.82,a-curv-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 467, 401, 85.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 198, 198, 100.0 +2.7688888888888887,2.77,a-curv-i1,2022-23,Walpole - Walpole High,03070505, 244, 152, 62.3 +3.795555555555556,3.8,a-curv-i1,2022-23,Waltham - Waltham Sr High,03080505, 363, 310, 85.4 +4.444444444444445,4.44,a-curv-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 54, 54, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 12, 12, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Wareham - Wareham Senior High,03100505, 81, 81, 100.0 +3.3422222222222224,3.34,a-curv-i1,2022-23,Watertown - Watertown High,03140505, 149, 112, 75.2 +3.471111111111111,3.47,a-curv-i1,2022-23,Wayland - Wayland High School,03150505, 187, 146, 78.1 +3.4755555555555557,3.48,a-curv-i1,2022-23,Webster - Bartlett High School,03160505, 78, 61, 78.2 +2.2044444444444444,2.2,a-curv-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 351, 174, 49.6 +4.444444444444445,4.44,a-curv-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 60, 60, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 99, 99, 100.0 +2.9422222222222225,2.94,a-curv-i1,2022-23,West Springfield - West Springfield High,03320505, 269, 178, 66.2 +4.444444444444445,4.44,a-curv-i1,2022-23,Westborough - Westborough High,03210505, 259, 259, 100.0 +2.8311111111111114,2.83,a-curv-i1,2022-23,Westfield - Westfield High,03250505, 215, 137, 63.7 +4.444444444444445,4.44,a-curv-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 126, 126, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Westfield - Westfield Virtual School,03250705, 9, 9, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Westford - Westford Academy,03260505, 418, 418, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Weston - Weston High,03300505, 154, 154, 100.0 +3.008888888888889,3.01,a-curv-i1,2022-23,Westport - Westport Middle-High School,03310515, 65, 44, 67.7 +4.248888888888889,4.25,a-curv-i1,2022-23,Westwood - Westwood High,03350505, 248, 237, 95.6 +2.0,2.0,a-curv-i1,2022-23,Weymouth - Weymouth High School,03360505, 409, 184, 45.0 +4.1288888888888895,4.13,a-curv-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 282, 262, 92.9 +4.444444444444445,4.44,a-curv-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 319, 319, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Wilmington - Wilmington High,03420505, 191, 191, 100.0 +4.0,4.0,a-curv-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 10, 9, 90.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Winchendon - Murdock High School,03430515, 45, 45, 100.0 +3.9155555555555552,3.92,a-curv-i1,2022-23,Winchester - Winchester High School,03440505, 337, 297, 88.1 +4.444444444444445,4.44,a-curv-i1,2022-23,Winthrop - Winthrop High School,03460505, 128, 128, 100.0 +4.444444444444445,4.44,a-curv-i1,2022-23,Woburn - Woburn High,03470505, 264, 264, 100.0 +4.177777777777778,4.18,a-curv-i1,2022-23,Worcester - Burncoat Senior High,03480503, 265, 249, 94.0 +4.142222222222222,4.14,a-curv-i1,2022-23,Worcester - Claremont Academy,03480350, 73, 68, 93.2 +4.053333333333334,4.05,a-curv-i1,2022-23,Worcester - Doherty Memorial High,03480512, 294, 268, 91.2 +4.102222222222222,4.1,a-curv-i1,2022-23,Worcester - North High,03480515, 272, 251, 92.3 +3.8577777777777778,3.86,a-curv-i1,2022-23,Worcester - South High Community,03480520, 318, 276, 86.8 +4.444444444444445,4.44,a-curv-i1,2022-23,Worcester - University Pk Campus School,03480285, 39, 39, 100.0 +4.404444444444445,4.4,a-curv-i1,2022-23,Worcester - Worcester Technical High,03480605, 347, 344, 99.1 4.444444444444445,4.44,a-curv-i1,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 91, 91, 100.0 2.8044444444444445,2.8,a-curv-i1,2021-22,Abington - Abington High,00010505, 149, 94, 63.1 4.368888888888889,4.37,a-curv-i1,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 59, 58, 98.3 diff --git a/data/admin_data/dese/3B_2_student_by_race_and_gender.csv b/data/admin_data/dese/3B_2_student_by_race_and_gender.csv index f7b39e6b..80702cad 100644 --- a/data/admin_data/dese/3B_2_student_by_race_and_gender.csv +++ b/data/admin_data/dese/3B_2_student_by_race_and_gender.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,Non-White Teachers %,Non-White Students %,School Name,DESE ID,African American,Asian,Hispanic,White,Native American,Native Hawaiian or Pacific Islander,Multi-Race or Non-Hispanic,Males,Females,Non-Binary,Students of color (%) +1.3984108967082862,1.4,a-cure-i1,2023-24,7.7,88.1,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 56.8, 3.0, 23.3, 11.9, 0.4, 0.1, 4.6, 45.6, 54.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.200000000000003,Abington - Abington Early Education Program,00010001, 5.1, 7.7, 9.0, 71.8, 1.3, 0.0, 5.1, 61.5, 38.5, 0.0 +1,1,a-cure-i1,2023-24,2.4,27.599999999999994,Abington - Abington High,00010505, 6.2, 2.1, 17.5, 72.4, 0.0, 0.2, 1.6, 54.9, 44.7, 0.4 +3.627530364372469,3.63,a-cure-i1,2023-24,5.6,24.700000000000003,Abington - Abington Middle School,00010405, 6.3, 2.4, 13.1, 75.3, 0.6, 0.0, 2.4, 49.4, 50.3, 0.3 +1,1,a-cure-i1,2023-24,3.9,29.400000000000006,Abington - Beaver Brook Elementary,00010020, 5.5, 2.8, 16.8, 70.6, 0.4, 0.2, 3.8, 52.0, 48.0, 0.0 +3.767918088737202,3.77,a-cure-i1,2023-24,6.9,29.299999999999997,Abington - Woodsdale Elementary School,00010015, 7.1, 2.0, 15.6, 70.7, 0.6, 0.0, 4.0, 48.0, 51.7, 0.3 +6.926118626430802,5,a-cure-i1,2023-24,41.6,96.1,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 64.3, 0.0, 28.6, 3.9, 0.2, 0.0, 3.0, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,4.199999999999999,52.9,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 3.2, 37.8, 8.1, 47.1, 0.3, 0.2, 3.3, 52.0, 47.5, 0.5 +1.847422680412371,1.85,a-cure-i1,2023-24,5.6,48.5,Acton-Boxborough - Blanchard Memorial School,06000005, 3.2, 29.0, 9.3, 51.5, 0.2, 0.0, 6.9, 50.9, 48.5, 0.6 +1,1,a-cure-i1,2023-24,1.4,37.6,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 2.5, 14.5, 11.3, 62.4, 0.0, 0.0, 9.3, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,59.6,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 6.4, 36.7, 8.3, 40.4, 0.9, 0.0, 7.3, 64.2, 35.8, 0.0 +2.0869565217391304,2.09,a-cure-i1,2023-24,9.6,73.6,Acton-Boxborough - Luther Conant School,06000030, 2.9, 56.4, 7.7, 26.4, 0.0, 0.0, 6.5, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,3.9,32.2,Acton-Boxborough - McCarthy-Towne School,06000015, 3.4, 10.4, 12.9, 67.8, 0.0, 0.0, 5.4, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,34.900000000000006,Acton-Boxborough - Merriam School,06000010, 2.2, 16.6, 8.2, 65.1, 0.0, 0.0, 7.9, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,3.1,71.6,Acton-Boxborough - Paul P Gates Elementary School,06000025, 1.7, 56.5, 6.2, 28.4, 0.0, 0.0, 7.3, 51.7, 48.3, 0.0 +2.4201680672268906,2.42,a-cure-i1,2023-24,7.2,47.6,Acton-Boxborough - Raymond J Grey Junior High,06000405, 2.0, 33.5, 7.3, 52.4, 0.0, 0.0, 4.9, 49.4, 50.2, 0.4 +1,1,a-cure-i1,2023-24,2.9,12.799999999999997,Acushnet - Acushnet Elementary School,00030025, 1.4, 0.4, 7.7, 87.2, 0.8, 0.0, 2.5, 54.9, 45.1, 0.0 +1,1,a-cure-i1,2023-24,3.5,10.700000000000003,Acushnet - Albert F Ford Middle School,00030305, 1.0, 1.0, 4.5, 89.3, 0.5, 0.0, 3.8, 49.3, 50.7, 0.0 +5.2825396825396815,5,a-cure-i1,2023-24,10.399999999999999,31.5,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 2.7, 10.6, 11.0, 68.5, 0.1, 0.1, 7.0, 53.0, 46.0, 1.0 +1,1,a-cure-i1,2023-24,0.0,27.299999999999997,Agawam - Agawam Early Childhood Center,00050003, 3.3, 4.0, 18.0, 72.7, 0.0, 0.0, 2.0, 63.3, 36.7, 0.0 +1,1,a-cure-i1,2023-24,2.0,21.0,Agawam - Agawam High,00050505, 3.0, 4.0, 11.0, 79.0, 0.0, 0.0, 2.9, 53.9, 45.5, 0.6 +1,1,a-cure-i1,2023-24,0.0,18.099999999999994,Agawam - Agawam Junior High,00050405, 2.7, 2.4, 10.3, 81.9, 0.2, 0.2, 2.4, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.099999999999994,Agawam - Benjamin J Phelps,00050020, 2.6, 4.2, 9.4, 79.9, 0.3, 0.0, 3.6, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.5,Agawam - Clifford M Granger,00050010, 0.6, 2.3, 18.1, 76.5, 0.6, 0.0, 2.0, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.400000000000006,Agawam - James Clark School,00050030, 2.0, 4.3, 15.8, 74.6, 0.3, 0.0, 3.0, 54.8, 45.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.200000000000003,Agawam - Roberta G. Doering School,00050303, 2.4, 3.6, 11.5, 79.8, 0.0, 0.2, 2.6, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.200000000000003,Agawam - William P. Sapelli Elementary,00050025, 2.8, 2.1, 14.7, 76.8, 0.0, 0.0, 3.5, 43.9, 56.1, 0.0 +5.685785536159601,5,a-cure-i1,2023-24,28.500000000000004,80.2,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 14.8, 0.6, 60.1, 19.8, 0.7, 0.0, 4.0, 47.1, 52.9, 0.0 +5.773195876288658,5,a-cure-i1,2023-24,7.0,19.400000000000006,Amesbury - Amesbury High,00070505, 1.7, 1.9, 11.4, 80.6, 0.2, 0.0, 4.1, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.599999999999994,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 9.8, 78.4, 0.0, 0.0, 11.8, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,2.7,19.5,Amesbury - Amesbury Middle,00070013, 2.2, 1.2, 11.3, 80.5, 0.2, 0.0, 4.6, 54.1, 45.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.799999999999997,Amesbury - Charles C Cashman Elementary,00070010, 2.0, 0.0, 13.3, 81.2, 0.3, 0.3, 3.0, 50.5, 49.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.099999999999994,Amesbury - Shay Elementary,00070005, 2.3, 0.4, 12.5, 81.9, 0.2, 0.0, 2.7, 52.0, 48.0, 0.0 +2.3771428571428572,2.38,a-cure-i1,2023-24,7.8,52.5,Amherst - Crocker Farm Elementary,00080009, 11.0, 12.3, 20.6, 47.5, 0.0, 0.3, 8.3, 46.6, 51.8, 1.5 +7.717314487632509,5,a-cure-i1,2023-24,27.3,56.6,Amherst - Fort River Elementary,00080020, 6.6, 10.1, 34.1, 43.4, 0.3, 0.0, 5.5, 55.2, 44.8, 0.0 +13.050279329608939,5,a-cure-i1,2023-24,43.800000000000004,53.7,Amherst - Wildwood Elementary,00080050, 14.5, 13.8, 18.0, 46.3, 0.3, 0.0, 7.1, 48.9, 50.2, 1.0 +7.479518072289156,5,a-cure-i1,2023-24,19.4,41.5,Amherst-Pelham - Amherst Regional High,06050505, 6.8, 8.6, 18.0, 58.5, 0.0, 0.0, 8.2, 50.4, 47.1, 2.5 +9.020134228187919,5,a-cure-i1,2023-24,25.2,44.7,Amherst-Pelham - Amherst Regional Middle School,06050405, 10.0, 11.9, 16.8, 55.3, 0.5, 0.3, 5.1, 53.4, 45.5, 1.1 +5.04812834224599,5,a-cure-i1,2023-24,11.8,37.4,Andover - Andover High,00090505, 3.0, 21.5, 9.3, 62.6, 0.2, 0.1, 3.2, 50.1, 49.8, 0.1 +1,1,a-cure-i1,2023-24,2.8,33.7,Andover - Andover West Middle,00090310, 2.8, 18.7, 10.1, 66.3, 0.0, 0.0, 2.0, 46.9, 52.9, 0.2 +1,1,a-cure-i1,2023-24,0.0,25.700000000000003,Andover - Bancroft Elementary,00090003, 1.0, 8.0, 10.3, 74.3, 0.0, 0.0, 6.3, 49.8, 50.2, 0.0 +9.326633165829143,5,a-cure-i1,2023-24,11.6,19.900000000000006,Andover - Doherty Middle,00090305, 1.7, 8.4, 5.4, 80.1, 0.0, 0.0, 4.3, 51.1, 48.7, 0.2 +1,1,a-cure-i1,2023-24,0.0,42.5,Andover - Henry C Sanborn Elementary,00090010, 3.3, 22.5, 9.0, 57.5, 0.6, 0.0, 7.2, 54.8, 45.2, 0.0 +1,1,a-cure-i1,2023-24,4.2,51.7,Andover - High Plain Elementary,00090004, 3.9, 27.0, 13.8, 48.3, 0.0, 0.2, 6.8, 50.7, 49.3, 0.0 +3.686635944700461,3.69,a-cure-i1,2023-24,10.0,43.4,Andover - Shawsheen School,00090005, 6.0, 15.7, 12.0, 56.6, 0.0, 0.0, 9.6, 59.0, 41.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,33.099999999999994,Andover - South Elementary,00090020, 1.2, 18.5, 6.3, 66.9, 0.0, 0.0, 7.2, 54.6, 45.4, 0.0 +1,1,a-cure-i1,2023-24,1.7,35.900000000000006,Andover - West Elementary,00090025, 4.1, 16.6, 8.8, 64.1, 0.2, 0.0, 6.2, 52.6, 47.4, 0.0 +2.3170254403131114,2.32,a-cure-i1,2023-24,7.4,51.1,Andover - Wood Hill Middle School,00090350, 3.3, 30.8, 12.4, 48.9, 0.3, 0.0, 4.2, 58.3, 41.7, 0.0 +6.6476578411405285,5,a-cure-i1,2023-24,20.4,49.1,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 14.5, 2.3, 25.6, 50.9, 0.7, 0.2, 5.9, 53.3, 46.3, 0.3 +4.931506849315068,4.93,a-cure-i1,2023-24,9.0,29.200000000000003,Arlington - Arlington High,00100505, 3.2, 10.6, 8.8, 70.8, 0.1, 0.1, 6.4, 49.2, 49.0, 1.7 +4.1337386018237074,4.13,a-cure-i1,2023-24,8.5,32.900000000000006,Arlington - Brackett,00100010, 1.2, 11.1, 5.7, 67.1, 0.0, 0.0, 14.9, 53.7, 46.1, 0.2 +5.552941176470589,5,a-cure-i1,2023-24,11.8,34.0,Arlington - Cyrus E Dallin,00100025, 1.2, 14.4, 7.1, 66.0, 0.0, 0.0, 11.2, 47.4, 52.3, 0.2 +1,1,a-cure-i1,2023-24,2.5999999999999996,31.400000000000006,Arlington - Gibbs School,00100305, 3.2, 10.3, 7.3, 68.6, 0.0, 0.0, 10.7, 46.8, 52.4, 0.9 +1,1,a-cure-i1,2023-24,4.6,35.5,Arlington - Hardy,00100030, 2.9, 13.8, 6.8, 64.5, 0.0, 0.0, 12.0, 51.2, 48.6, 0.3 +1,1,a-cure-i1,2023-24,0.6,33.0,Arlington - John A Bishop,00100005, 2.3, 11.3, 6.9, 67.0, 0.0, 0.0, 12.5, 50.1, 49.9, 0.0 +3.1067961165048543,3.11,a-cure-i1,2023-24,8.0,41.2,Arlington - M Norcross Stratton,00100055, 3.0, 19.7, 7.8, 58.8, 0.0, 0.0, 10.8, 52.6, 46.9, 0.5 +1,1,a-cure-i1,2023-24,0.0,49.4,Arlington - Menotomy Preschool,00100038, 2.5, 19.0, 8.9, 50.6, 1.3, 0.0, 17.7, 59.5, 40.5, 0.0 +5.718032786885246,5,a-cure-i1,2023-24,10.9,30.5,Arlington - Ottoson Middle,00100410, 3.3, 14.0, 7.9, 69.5, 0.0, 0.2, 5.1, 49.9, 49.0, 1.1 +5.9335038363171355,5,a-cure-i1,2023-24,14.5,39.1,Arlington - Peirce,00100045, 6.3, 16.1, 10.4, 60.9, 0.0, 0.0, 6.3, 54.9, 44.8, 0.3 +1,1,a-cure-i1,2023-24,0.5,39.3,Arlington - Thompson,00100050, 5.4, 13.0, 9.0, 60.7, 0.2, 0.0, 11.7, 49.2, 50.6, 0.2 +7.999999999999997,5,a-cure-i1,2023-24,6.1,12.200000000000003,Ashburnham-Westminster - Briggs Elementary,06100025, 2.0, 0.8, 6.5, 87.8, 0.0, 0.0, 2.8, 48.6, 51.2, 0.2 +1,1,a-cure-i1,2023-24,0.0,8.700000000000003,Ashburnham-Westminster - Meetinghouse School,06100010, 2.6, 0.0, 4.1, 91.3, 0.0, 0.0, 2.1, 48.7, 51.3, 0.0 +7.5354838709677425,5,a-cure-i1,2023-24,7.300000000000001,15.5,Ashburnham-Westminster - Oakmont Regional High School,06100505, 1.4, 1.4, 8.7, 84.5, 0.2, 0.0, 3.8, 51.9, 46.4, 1.7 +1,1,a-cure-i1,2023-24,3.0,12.5,Ashburnham-Westminster - Overlook Middle School,06100305, 1.1, 0.6, 8.2, 87.5, 0.0, 0.0, 2.6, 49.9, 49.7, 0.4 +1,1,a-cure-i1,2023-24,0.0,11.5,Ashburnham-Westminster - Westminster Elementary,06100005, 1.5, 0.7, 6.4, 88.5, 0.0, 0.0, 2.9, 48.8, 51.0, 0.2 +1,1,a-cure-i1,2023-24,1.7,36.7,Ashland - Ashland High,00140505, 2.6, 13.4, 17.1, 63.3, 0.7, 0.0, 2.8, 50.5, 49.4, 0.1 +1,1,a-cure-i1,2023-24,4.2,43.2,Ashland - Ashland Middle,00140405, 3.4, 16.2, 19.6, 56.8, 0.0, 0.0, 4.0, 51.4, 48.5, 0.1 +1,1,a-cure-i1,2023-24,4.5,47.2,Ashland - David Mindess,00140015, 3.0, 20.4, 19.6, 52.8, 0.1, 0.1, 3.9, 55.0, 44.8, 0.1 +1,1,a-cure-i1,2023-24,2.2,49.1,Ashland - Henry E Warren Elementary,00140010, 2.6, 22.9, 19.5, 50.9, 0.2, 0.0, 3.9, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,53.9,Ashland - William Pittaway Elementary,00140005, 1.3, 31.6, 17.1, 46.1, 0.0, 0.0, 3.9, 60.5, 39.5, 0.0 +1,1,a-cure-i1,2023-24,4.4,36.5,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 2.5, 0.3, 29.9, 63.5, 0.4, 0.0, 3.5, 52.7, 46.9, 0.4 +1,1,a-cure-i1,2023-24,3.0,21.900000000000006,Athol-Royalston - Athol Community Elementary School,06150020, 2.3, 1.8, 13.0, 78.1, 0.0, 0.0, 4.9, 52.5, 47.3, 0.2 +1,1,a-cure-i1,2023-24,3.5,27.799999999999997,Athol-Royalston - Athol High,06150505, 4.1, 1.9, 19.6, 72.2, 0.2, 0.0, 1.9, 55.1, 44.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.700000000000003,Athol-Royalston - Athol-Royalston Middle School,06150305, 1.5, 0.6, 16.6, 77.3, 0.0, 0.0, 3.9, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.099999999999994,Athol-Royalston - Royalston Community School,06150050, 0.7, 0.0, 6.1, 89.9, 0.0, 0.0, 3.4, 55.4, 44.6, 0.0 +2.7555555555555555,2.76,a-cure-i1,2023-24,6.2,36.0,Atlantis Charter (District) - Atlantis Charter School,04910550, 6.9, 2.1, 19.5, 64.0, 0.2, 0.1, 7.2, 47.8, 52.1, 0.1 +1,1,a-cure-i1,2023-24,4.6,34.7,Attleboro - A. Irvin Studley Elementary School,00160001, 7.4, 4.0, 17.5, 65.3, 0.6, 0.3, 4.9, 53.6, 46.4, 0.0 +1,1,a-cure-i1,2023-24,1.5,41.2,Attleboro - Attleboro Community Academy,00160515, 11.8, 4.4, 14.7, 58.8, 0.0, 0.0, 10.3, 45.6, 52.9, 1.5 +3.103274559193955,3.1,a-cure-i1,2023-24,7.700000000000001,39.7,Attleboro - Attleboro High,00160505, 10.2, 4.7, 18.0, 60.3, 0.2, 0.1, 6.4, 53.1, 46.5, 0.4 +1,1,a-cure-i1,2023-24,0.0,22.599999999999994,Attleboro - Attleboro Virtual Academy,00160705, 6.5, 3.2, 9.7, 77.4, 0.0, 0.0, 3.2, 90.3, 9.7, 0.0 +1,1,a-cure-i1,2023-24,2.6,40.3,Attleboro - Cyril K. Brennan Middle School,00160315, 11.1, 2.6, 19.7, 59.7, 0.3, 0.0, 6.5, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,42.0,Attleboro - Early Learning Center,00160008, 16.4, 3.5, 18.1, 58.0, 0.9, 0.0, 3.1, 58.0, 42.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,40.4,Attleboro - Hill-Roberts Elementary School,00160045, 8.4, 7.2, 18.4, 59.6, 0.0, 0.0, 6.5, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,4.2,41.1,Attleboro - Hyman Fine Elementary School,00160040, 7.4, 3.5, 21.0, 58.9, 0.0, 0.2, 9.0, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,3.3,44.3,Attleboro - Peter Thacher Elementary School,00160050, 10.2, 5.2, 22.0, 55.7, 0.5, 0.0, 6.4, 53.4, 46.4, 0.2 +1,1,a-cure-i1,2023-24,0.0,35.7,Attleboro - Robert J. Coelho Middle School,00160305, 9.0, 5.2, 14.0, 64.3, 0.2, 0.2, 7.1, 55.1, 44.7, 0.2 +1,1,a-cure-i1,2023-24,0.0,41.0,Attleboro - Thomas Willett Elementary School,00160035, 10.2, 3.2, 19.8, 59.0, 0.5, 0.3, 7.0, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,3.1,39.3,Attleboro - Wamsutta Middle School,00160320, 6.9, 5.7, 17.8, 60.7, 0.0, 0.2, 8.8, 49.1, 50.7, 0.2 +1,1,a-cure-i1,2023-24,2.4,23.5,Auburn - Auburn Middle,00170305, 3.2, 4.3, 12.4, 76.5, 0.0, 0.0, 3.5, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,1.7,25.900000000000006,Auburn - Auburn Senior High,00170505, 5.3, 6.9, 11.3, 74.1, 0.0, 0.0, 2.5, 49.3, 50.6, 0.1 +1,1,a-cure-i1,2023-24,0.0,26.5,Auburn - Bryn Mawr,00170010, 5.1, 4.3, 15.2, 73.5, 0.0, 0.4, 1.6, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.5,Auburn - Pakachoag School,00170025, 6.1, 4.1, 15.6, 70.5, 0.8, 0.0, 2.9, 54.1, 45.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.599999999999994,Auburn - Swanson Road Intermediate School,00170030, 1.8, 3.0, 11.8, 80.4, 0.4, 0.2, 2.5, 50.6, 49.4, 0.0 +2.876132930513595,2.88,a-cure-i1,2023-24,11.9,66.2,Avon - Avon Middle High School,00180510, 40.9, 4.4, 14.7, 33.8, 0.7, 0.0, 5.4, 52.2, 47.5, 0.2 +2.3208191126279862,2.32,a-cure-i1,2023-24,8.5,58.6,Avon - Ralph D Butler,00180010, 32.4, 4.0, 14.2, 41.4, 0.3, 0.0, 7.7, 51.2, 48.8, 0.0 +3.1351351351351355,3.14,a-cure-i1,2023-24,5.8,29.599999999999994,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 6.3, 3.9, 15.5, 70.4, 1.0, 0.5, 2.4, 56.1, 43.4, 0.5 +4.879432624113474,4.88,a-cure-i1,2023-24,8.6,28.200000000000003,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 4.5, 3.2, 14.2, 71.8, 0.5, 0.3, 5.5, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,24.200000000000003,Ayer Shirley School District - Lura A. White Elementary School,06160001, 5.9, 2.2, 11.2, 75.8, 0.8, 0.0, 3.9, 55.6, 44.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,33.900000000000006,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 6.5, 6.1, 12.6, 66.1, 0.4, 0.0, 8.3, 52.8, 47.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,70.6,Barnstable - Barnstable Community Innovation School,00200012, 10.0, 1.9, 50.8, 29.4, 0.0, 0.0, 7.8, 51.8, 48.2, 0.0 +3.1999999999999997,3.2,a-cure-i1,2023-24,9.7,48.5,Barnstable - Barnstable High,00200505, 10.5, 1.8, 29.7, 51.5, 0.6, 0.1, 5.9, 52.7, 46.9, 0.4 +1,1,a-cure-i1,2023-24,2.1,49.9,Barnstable - Barnstable Intermediate School,00200315, 10.0, 2.7, 29.4, 50.1, 0.0, 0.0, 7.8, 51.5, 48.2, 0.3 +2.0826446280991737,2.08,a-cure-i1,2023-24,6.300000000000001,48.4,Barnstable - Barnstable United Elementary School,00200050, 9.1, 2.1, 28.2, 51.6, 0.6, 0.0, 8.5, 49.9, 50.1, 0.0 +3.045317220543807,3.05,a-cure-i1,2023-24,6.3,33.099999999999994,Barnstable - Centerville Elementary,00200010, 6.5, 1.9, 16.2, 66.9, 0.0, 0.0, 8.5, 58.5, 41.2, 0.4 +1,1,a-cure-i1,2023-24,0.0,61.4,Barnstable - Enoch Cobb Early Learning Center,00200001, 10.5, 4.6, 34.6, 38.6, 0.0, 0.0, 11.8, 62.1, 37.9, 0.0 +3.1959026888604356,3.2,a-cure-i1,2023-24,15.6,78.1,Barnstable - Hyannis West Elementary,00200025, 13.2, 1.8, 55.0, 21.9, 0.6, 0.0, 7.6, 51.8, 48.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,41.9,Barnstable - West Barnstable Elementary,00200005, 3.6, 3.2, 20.9, 58.1, 0.0, 0.0, 14.2, 56.9, 43.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.599999999999994,Barnstable - West Villages Elementary School,00200045, 4.3, 1.5, 14.0, 69.4, 0.0, 0.0, 10.8, 55.1, 44.9, 0.0 +9.808049535603715,5,a-cure-i1,2023-24,59.400000000000006,96.9,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 24.4, 0.7, 70.0, 3.1, 0.0, 0.7, 1.0, 48.3, 51.7, 0.0 +2.5633074935400515,2.56,a-cure-i1,2023-24,6.2,38.7,Bedford - Bedford High,00230505, 7.0, 17.6, 10.2, 61.3, 0.0, 0.0, 3.9, 50.7, 48.8, 0.5 +1,1,a-cure-i1,2023-24,2.4,43.8,Bedford - John Glenn Middle,00230305, 8.0, 21.6, 6.7, 56.2, 0.0, 0.0, 7.5, 47.7, 52.3, 0.0 +3.4310722100656457,3.43,a-cure-i1,2023-24,9.8,45.7,Bedford - Lt Eleazer Davis,00230010, 8.0, 22.2, 5.7, 54.3, 0.0, 0.0, 9.8, 52.4, 47.6, 0.0 +3.3488372093023253,3.35,a-cure-i1,2023-24,9.899999999999999,47.3,Bedford - Lt Job Lane School,00230012, 6.3, 25.4, 7.9, 52.7, 0.0, 0.2, 7.5, 56.4, 43.6, 0.0 +1,1,a-cure-i1,2023-24,4.2,14.799999999999997,Belchertown - Belchertown High,00240505, 1.8, 1.5, 7.6, 85.2, 0.0, 0.3, 3.5, 47.3, 51.8, 0.8 +1,1,a-cure-i1,2023-24,0.0,16.400000000000006,Belchertown - Chestnut Hill Community School,00240006, 0.6, 1.6, 9.6, 83.6, 0.2, 0.0, 4.3, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.5,Belchertown - Cold Spring,00240005, 0.0, 3.2, 11.1, 81.5, 0.0, 0.0, 4.2, 49.2, 50.8, 0.0 +1,1,a-cure-i1,2023-24,3.5,14.400000000000006,Belchertown - Jabish Middle School,00240025, 2.1, 1.8, 6.6, 85.6, 0.3, 0.0, 3.6, 50.2, 49.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.599999999999994,Belchertown - Swift River Elementary,00240018, 1.1, 1.1, 10.7, 81.4, 0.4, 0.0, 5.3, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.599999999999994,Bellingham - Bellingham Early Childhood Center,00250003, 4.6, 7.3, 11.9, 73.4, 0.0, 0.0, 2.8, 59.6, 40.4, 0.0 +1,1,a-cure-i1,2023-24,1.8,19.900000000000006,Bellingham - Bellingham High School,00250505, 2.3, 3.7, 10.7, 80.1, 0.4, 0.0, 2.8, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.299999999999997,Bellingham - Bellingham Memorial School,00250315, 2.2, 2.0, 14.0, 77.7, 0.0, 1.0, 3.0, 50.1, 49.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.200000000000003,Bellingham - Joseph F DiPietro Elementary School,00250020, 3.0, 3.0, 15.6, 73.8, 0.3, 0.0, 4.3, 49.0, 51.0, 0.0 +25.14285714285713,5,a-cure-i1,2023-24,12.1,7.700000000000003,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 7.7, 92.3, 0.0, 0.0, 0.0, 38.5, 61.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.299999999999997,Bellingham - Stall Brook,00250025, 2.3, 1.4, 18.8, 73.7, 0.0, 0.0, 3.8, 54.0, 46.0, 0.0 +6.12853470437018,5,a-cure-i1,2023-24,14.9,38.9,Belmont - Belmont High,00260505, 3.8, 22.0, 6.0, 61.1, 0.1, 0.1, 6.8, 49.5, 49.8, 0.7 +7.336585365853659,5,a-cure-i1,2023-24,18.8,41.0,Belmont - Belmont Middle School,00260315, 4.8, 22.4, 3.5, 59.0, 0.2, 0.2, 10.1, 50.3, 48.6, 1.1 +4.058394160583942,4.06,a-cure-i1,2023-24,13.900000000000002,54.8,Belmont - Daniel Butler,00260015, 2.2, 32.1, 11.2, 45.2, 0.0, 0.0, 9.3, 49.8, 49.8, 0.3 +2.4293193717277486,2.43,a-cure-i1,2023-24,5.8,38.2,Belmont - Mary Lee Burbank,00260010, 3.4, 24.5, 4.3, 61.8, 0.0, 0.0, 5.9, 49.1, 50.0, 0.9 +1,1,a-cure-i1,2023-24,4.8,41.0,Belmont - Roger E Wellington,00260035, 7.1, 18.4, 6.1, 59.0, 0.0, 0.0, 9.4, 50.2, 49.4, 0.4 +4.0262582056892775,4.03,a-cure-i1,2023-24,11.5,45.7,Belmont - Winn Brook,00260005, 4.1, 28.7, 4.3, 54.3, 0.0, 0.0, 8.6, 46.7, 53.3, 0.0 +5.12621359223301,5,a-cure-i1,2023-24,13.200000000000001,41.2,Belmont - Winthrop L Chenery Upper Elementary,00260305, 3.4, 24.8, 3.9, 58.8, 0.0, 0.0, 9.1, 52.7, 46.8, 0.4 +9.88671472708548,5,a-cure-i1,2023-24,60.0,97.1,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 82.9, 2.6, 6.6, 2.9, 0.0, 0.0, 4.9, 48.6, 51.2, 0.3 +1,1,a-cure-i1,2023-24,4.0,40.0,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 3.3, 23.1, 6.5, 60.0, 1.0, 0.8, 5.3, 50.1, 49.9, 0.0 +1,1,a-cure-i1,2023-24,3.1,11.5,Berkley - Berkley Community School,00270010, 1.9, 0.0, 4.0, 88.5, 0.2, 0.0, 5.3, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,7.700000000000003,Berkley - Berkley Middle School,00270305, 0.5, 1.1, 2.2, 92.3, 0.0, 0.3, 3.6, 48.2, 51.8, 0.0 +5.578947368421051,5,a-cure-i1,2023-24,10.6,30.400000000000006,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 9.6, 0.8, 14.8, 69.6, 0.0, 0.0, 5.2, 49.6, 47.4, 3.0 +6.5108225108225115,5,a-cure-i1,2023-24,9.399999999999999,23.099999999999994,Berkshire Hills - Monument Mt Regional High,06180505, 2.0, 2.4, 14.6, 76.9, 0.0, 0.2, 3.8, 55.2, 43.9, 0.9 +1,1,a-cure-i1,2023-24,2.9,31.799999999999997,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 3.7, 3.2, 17.9, 68.2, 0.0, 0.0, 7.1, 49.7, 50.0, 0.3 +1,1,a-cure-i1,2023-24,4.0,24.099999999999994,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 2.3, 2.0, 14.1, 75.9, 0.0, 0.0, 5.7, 47.1, 52.0, 0.9 +1,1,a-cure-i1,2023-24,0.0,16.200000000000003,Berlin-Boylston - Berlin Memorial School,06200005, 0.5, 1.8, 9.9, 83.8, 1.4, 0.0, 2.7, 50.9, 48.6, 0.5 +3.791469194312797,3.79,a-cure-i1,2023-24,5.0,21.099999999999994,Berlin-Boylston - Boylston Elementary School,06200010, 1.5, 4.5, 11.6, 78.9, 0.3, 0.0, 3.3, 53.6, 46.4, 0.0 +1,1,a-cure-i1,2023-24,3.6,20.799999999999997,Berlin-Boylston - Tahanto Regional High,06200505, 2.2, 4.3, 8.5, 79.2, 0.2, 0.2, 5.4, 49.8, 49.8, 0.4 +1,1,a-cure-i1,2023-24,0.0,17.0,Beverly - Ayers/Ryal Side School,00300055, 2.3, 1.5, 10.3, 83.0, 0.0, 0.0, 2.8, 50.3, 49.7, 0.0 +1,1,a-cure-i1,2023-24,2.6,27.799999999999997,Beverly - Beverly High,00300505, 3.3, 2.2, 18.7, 72.2, 0.1, 0.1, 3.4, 49.0, 50.6, 0.4 +1,1,a-cure-i1,2023-24,4.4,27.0,Beverly - Beverly Middle School,00300305, 3.8, 1.8, 17.0, 73.0, 0.0, 0.0, 4.5, 52.6, 47.1, 0.3 +1,1,a-cure-i1,2023-24,0.0,30.200000000000003,Beverly - Centerville Elementary,00300010, 3.4, 1.9, 16.8, 69.8, 0.0, 0.0, 8.1, 55.5, 44.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.400000000000006,Beverly - Cove Elementary,00300015, 3.0, 1.0, 21.0, 69.6, 0.2, 0.0, 5.2, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.599999999999994,Beverly - Hannah Elementary,00300033, 1.6, 3.4, 10.9, 78.4, 0.3, 0.0, 5.3, 50.6, 49.1, 0.3 +1,1,a-cure-i1,2023-24,0.0,29.099999999999994,Beverly - McKeown School,00300002, 7.3, 4.5, 13.6, 70.9, 0.0, 0.0, 3.6, 60.0, 40.0, 0.0 +1,1,a-cure-i1,2023-24,4.5,21.599999999999994,Beverly - North Beverly Elementary,00300040, 3.2, 2.9, 11.2, 78.4, 0.0, 0.3, 4.0, 57.3, 42.7, 0.0 +1,1,a-cure-i1,2023-24,3.4000000000000004,33.400000000000006,Billerica - Billerica Memorial High School,00310505, 7.1, 11.0, 11.1, 66.6, 0.4, 0.1, 3.7, 50.9, 48.9, 0.2 +1,1,a-cure-i1,2023-24,0.0,35.8,Billerica - Frederick J Dutile,00310007, 8.1, 14.5, 7.8, 64.2, 0.0, 0.0, 5.4, 54.7, 44.9, 0.3 +1,1,a-cure-i1,2023-24,0.0,34.0,Billerica - Hajjar Elementary,00310026, 5.8, 9.4, 14.9, 66.0, 0.5, 0.0, 3.4, 46.1, 53.7, 0.3 +1,1,a-cure-i1,2023-24,0.0,18.599999999999994,Billerica - John F Kennedy,00310012, 1.2, 5.2, 8.5, 81.4, 1.2, 0.0, 2.4, 48.2, 51.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.0,Billerica - Locke Middle,00310310, 2.6, 9.7, 8.7, 74.0, 0.0, 0.0, 5.0, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,4.2,30.700000000000003,Billerica - Marshall Middle School,00310305, 7.0, 9.0, 11.4, 69.3, 0.2, 0.0, 3.2, 46.6, 53.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,38.5,Billerica - Parker,00310015, 10.5, 16.4, 8.3, 61.5, 1.2, 0.0, 2.1, 45.6, 54.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,33.599999999999994,Billerica - Thomas Ditson,00310005, 4.5, 14.2, 10.3, 66.4, 0.4, 0.0, 4.2, 50.5, 49.4, 0.2 +1,1,a-cure-i1,2023-24,2.9,19.200000000000003,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 3.0, 2.0, 11.8, 80.8, 0.0, 0.0, 2.5, 55.3, 43.7, 1.0 +1,1,a-cure-i1,2023-24,0.0,20.200000000000003,Blackstone-Millville - A F Maloney,06220015, 2.9, 1.3, 12.2, 79.8, 0.0, 0.0, 3.8, 49.6, 50.4, 0.0 +7.953757225433527,5,a-cure-i1,2023-24,8.6,17.299999999999997,Blackstone-Millville - Blackstone Millville RHS,06220505, 2.1, 1.8, 8.9, 82.7, 0.0, 0.0, 4.5, 52.4, 46.3, 1.3 +8.389189189189189,5,a-cure-i1,2023-24,9.7,18.5,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 1.1, 0.5, 11.4, 81.5, 0.0, 0.0, 5.4, 53.1, 46.6, 0.3 +1,1,a-cure-i1,2023-24,0.0,13.900000000000006,Blackstone-Millville - John F Kennedy Elementary,06220008, 2.6, 0.9, 7.8, 86.1, 0.0, 0.0, 2.6, 56.5, 43.5, 0.0 +1,1,a-cure-i1,2023-24,4.3,14.900000000000006,Blackstone-Millville - Millville Elementary,06220010, 3.2, 2.3, 5.7, 85.1, 0.0, 0.0, 3.7, 44.8, 55.2, 0.0 +2.052104208416834,2.05,a-cure-i1,2023-24,6.4,49.9,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 21.8, 3.3, 17.4, 50.1, 0.7, 0.0, 6.8, 51.2, 48.8, 0.0 +3.6165680473372785,3.62,a-cure-i1,2023-24,19.1,84.5,Boston - Adams Elementary School,00350302, 4.8, 1.6, 74.9, 15.5, 0.0, 0.0, 3.2, 54.6, 45.4, 0.0 +21.876543209876544,5,a-cure-i1,2023-24,88.6,64.8,Boston - Alighieri Dante Montessori School,00350066, 2.8, 1.9, 53.7, 35.2, 0.0, 0.0, 6.5, 55.6, 44.4, 0.0 +8.96794208893485,5,a-cure-i1,2023-24,54.2,96.7,Boston - Another Course To College,00350541, 43.3, 0.0, 49.2, 3.3, 0.8, 0.0, 3.3, 57.9, 41.3, 0.8 +7.582938388625592,5,a-cure-i1,2023-24,40.0,84.4,Boston - Baldwin Early Learning Pilot Academy,00350003, 12.5, 25.0, 38.0, 15.6, 0.0, 0.0, 8.9, 57.3, 42.7, 0.0 +7.785330948121646,5,a-cure-i1,2023-24,27.2,55.9,Boston - Bates Elementary School,00350278, 21.9, 3.2, 26.2, 44.1, 0.4, 0.0, 4.3, 58.1, 41.6, 0.4 +3.372972972972973,3.37,a-cure-i1,2023-24,15.600000000000001,74.0,Boston - Beethoven Elementary School,00350021, 29.8, 3.1, 35.1, 26.0, 0.0, 0.0, 6.1, 51.5, 48.1, 0.4 +5.455683003128259,5,a-cure-i1,2023-24,32.7,95.9,Boston - Blackstone Elementary School,00350390, 28.4, 2.2, 63.7, 4.1, 0.2, 0.0, 1.4, 51.3, 48.7, 0.0 +13.479674796747968,5,a-cure-i1,2023-24,82.9,98.4,Boston - Boston Adult Tech Academy,00350548, 38.9, 4.9, 53.5, 1.6, 0.0, 0.0, 1.1, 51.9, 48.1, 0.0 +9.96994219653179,5,a-cure-i1,2023-24,53.89999999999999,86.5,Boston - Boston Arts Academy,00350546, 34.5, 1.7, 45.9, 13.5, 0.2, 0.0, 4.2, 31.1, 66.8, 2.1 +7.094496365524404,5,a-cure-i1,2023-24,42.7,96.3,Boston - Boston Collaborative High School,00350755, 36.7, 1.4, 55.0, 3.7, 0.5, 0.5, 2.3, 49.5, 50.5, 0.0 +8.625792811839323,5,a-cure-i1,2023-24,51.0,94.6,Boston - Boston Community Leadership Academy,00350558, 27.9, 3.7, 61.0, 5.4, 0.2, 0.0, 1.8, 49.6, 50.1, 0.4 +7.18935516888434,5,a-cure-i1,2023-24,43.900000000000006,97.7,Boston - Boston International High School & Newcomers Academy,00350507, 29.0, 5.8, 62.1, 2.3, 0.0, 0.2, 0.6, 60.3, 39.7, 0.0 +10.060130718954248,5,a-cure-i1,2023-24,48.1,76.5,Boston - Boston Latin Academy,00350545, 25.4, 15.7, 30.5, 23.5, 0.2, 0.1, 4.5, 43.2, 56.6, 0.2 +6.970542635658914,5,a-cure-i1,2023-24,28.099999999999998,64.5,Boston - Boston Latin School,00350560, 13.8, 29.6, 16.2, 35.5, 0.1, 0.1, 4.6, 46.5, 53.1, 0.4 +7.771428571428572,5,a-cure-i1,2023-24,35.7,73.5,Boston - Boston Teachers Union K-8 Pilot,00350012, 25.0, 0.4, 39.0, 26.5, 0.0, 0.4, 8.8, 48.5, 51.5, 0.0 +5.288135593220339,5,a-cure-i1,2023-24,19.5,59.0,Boston - Bradley Elementary School,00350215, 6.0, 6.7, 42.3, 41.0, 0.0, 0.7, 3.3, 45.7, 54.3, 0.0 +5.925925925925926,5,a-cure-i1,2023-24,35.0,94.5,Boston - Brighton High School,00350505, 24.5, 2.7, 65.2, 5.5, 0.7, 0.0, 1.4, 52.6, 47.3, 0.2 +8.494845360824742,5,a-cure-i1,2023-24,51.5,97.0,Boston - Burke High School,00350525, 53.9, 2.5, 37.0, 3.0, 0.8, 0.0, 2.8, 60.0, 40.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,87.1,Boston - Carter School,00350036, 48.4, 0.0, 35.5, 12.9, 0.0, 3.2, 0.0, 54.8, 45.2, 0.0 +6.5070118662351675,5,a-cure-i1,2023-24,37.7,92.7,Boston - Channing Elementary School,00350360, 41.7, 2.6, 45.3, 7.3, 0.0, 0.0, 3.1, 62.0, 38.0, 0.0 +6.06423982869379,5,a-cure-i1,2023-24,35.4,93.4,Boston - Charlestown High School,00350515, 22.4, 6.6, 63.1, 6.6, 0.1, 0.0, 1.1, 58.8, 41.1, 0.1 +5.836691410392365,5,a-cure-i1,2023-24,34.4,94.3,Boston - Chittick Elementary School,00350154, 55.3, 0.9, 33.8, 5.7, 0.0, 0.0, 4.4, 53.1, 46.9, 0.0 +5.026467203682393,5,a-cure-i1,2023-24,27.3,86.9,Boston - Clap Elementary School,00350298, 33.8, 6.2, 42.3, 13.1, 0.0, 0.0, 4.6, 61.5, 38.5, 0.0 +16.393442622950822,5,a-cure-i1,2023-24,100.0,97.6,Boston - Community Academy,00350518, 56.1, 0.0, 41.5, 2.4, 0.0, 0.0, 0.0, 63.4, 34.1, 2.4 +8.462809917355372,5,a-cure-i1,2023-24,51.2,96.8,Boston - Community Academy of Science and Health,00350581, 53.1, 6.7, 33.1, 3.2, 0.0, 0.6, 3.2, 50.4, 49.6, 0.0 +6.081447963800905,5,a-cure-i1,2023-24,33.6,88.4,Boston - Condon K-8 School,00350146, 31.6, 4.7, 47.4, 11.6, 1.0, 0.5, 3.3, 55.2, 44.8, 0.0 +5.247524752475248,5,a-cure-i1,2023-24,26.5,80.8,Boston - Conley Elementary School,00350122, 24.5, 0.7, 48.3, 19.2, 1.3, 2.0, 4.0, 55.0, 45.0, 0.0 +4.561194029850746,4.56,a-cure-i1,2023-24,19.1,67.0,Boston - Curley K-8 School,00350020, 17.4, 4.4, 37.8, 33.0, 0.0, 0.1, 7.2, 57.6, 42.4, 0.0 +7.430894308943088,5,a-cure-i1,2023-24,45.699999999999996,98.4,Boston - Dearborn 6-12 STEM Academy,00350074, 60.8, 0.5, 33.5, 1.6, 0.0, 0.5, 3.1, 50.8, 49.0, 0.2 +9.554083885209716,5,a-cure-i1,2023-24,54.10000000000001,90.6,Boston - Dever Elementary School,00350268, 19.7, 2.7, 66.5, 9.4, 0.2, 0.2, 1.2, 55.7, 44.3, 0.0 +11.549668874172186,5,a-cure-i1,2023-24,54.5,75.5,Boston - East Boston Early Education Center,00350009, 5.6, 1.0, 60.7, 24.5, 0.0, 0.5, 7.7, 48.0, 52.0, 0.0 +5.607142857142858,5,a-cure-i1,2023-24,31.4,89.6,Boston - East Boston High School,00350530, 5.2, 1.3, 82.0, 10.4, 0.0, 0.0, 1.1, 55.5, 44.4, 0.2 +8.250871080139373,5,a-cure-i1,2023-24,44.4,86.1,Boston - Edison K-8 School,00350375, 16.8, 9.1, 56.5, 13.9, 0.3, 0.2, 3.3, 53.9, 46.1, 0.0 +17.0840108401084,5,a-cure-i1,2023-24,39.4,36.9,Boston - Eliot K-8 Innovation School,00350096, 6.2, 9.3, 14.6, 63.1, 0.0, 0.1, 6.6, 52.7, 47.3, 0.0 +11.114375655823716,5,a-cure-i1,2023-24,66.2,95.3,Boston - Ellis Elementary School,00350072, 27.4, 0.3, 65.3, 4.7, 0.0, 0.0, 2.4, 49.4, 50.6, 0.0 +12.320328542094455,5,a-cure-i1,2023-24,75.0,97.4,Boston - Ellison-Parks Early Education School,00350008, 50.8, 3.2, 38.6, 2.6, 0.0, 0.0, 4.8, 55.6, 44.4, 0.0 +6.923879040667361,5,a-cure-i1,2023-24,41.5,95.9,Boston - English High School,00350535, 32.0, 1.2, 60.6, 4.1, 0.0, 0.0, 2.2, 55.1, 44.7, 0.1 +6.852097130242826,5,a-cure-i1,2023-24,38.8,90.6,Boston - Everett Elementary School,00350088, 42.8, 12.2, 32.0, 9.4, 1.1, 0.0, 2.5, 53.6, 46.4, 0.0 +10.500556173526139,5,a-cure-i1,2023-24,59.0,89.9,Boston - Excel High School,00350522, 32.6, 15.5, 36.2, 10.1, 0.0, 0.3, 5.4, 57.6, 42.1, 0.3 +9.38219895287958,5,a-cure-i1,2023-24,56.0,95.5,Boston - Fenway High School,00350540, 30.1, 2.7, 61.2, 4.5, 0.0, 0.0, 1.6, 48.7, 51.3, 0.0 +9.016393442622952,5,a-cure-i1,2023-24,55.00000000000001,97.6,Boston - Frederick Pilot Middle School,00350383, 33.3, 4.3, 58.1, 2.4, 0.6, 0.3, 0.9, 52.3, 47.7, 0.0 +9.492468134414834,5,a-cure-i1,2023-24,51.2,86.3,Boston - Gardner Pilot Academy,00350326, 11.1, 5.4, 65.2, 13.7, 0.0, 0.0, 4.6, 50.7, 49.1, 0.3 +7.68,5,a-cure-i1,2023-24,48.0,100.0,Boston - Greater Egleston High School,00350543, 34.2, 3.9, 56.6, 0.0, 0.0, 0.0, 5.3, 52.6, 47.4, 0.0 +9.977619532044761,5,a-cure-i1,2023-24,61.3,98.3,Boston - Greenwood Sarah K-8 School,00350308, 11.1, 0.3, 85.8, 1.7, 0.3, 0.0, 0.8, 48.5, 51.5, 0.0 +13.243243243243244,5,a-cure-i1,2023-24,73.5,88.8,Boston - Grew Elementary School,00350135, 38.1, 0.5, 41.1, 11.2, 1.0, 0.0, 8.1, 56.9, 43.1, 0.0 +3.9320498301245754,3.93,a-cure-i1,2023-24,21.7,88.3,Boston - Guild Elementary School,00350062, 3.6, 0.4, 83.0, 11.7, 0.0, 0.0, 1.2, 52.6, 47.4, 0.0 +12.309111880046137,5,a-cure-i1,2023-24,66.7,86.7,Boston - Hale Elementary School,00350243, 44.6, 7.8, 27.1, 13.3, 0.0, 0.0, 7.2, 50.0, 50.0, 0.0 +11.150259067357512,5,a-cure-i1,2023-24,53.8,77.2,Boston - Haley Pilot School,00350077, 40.4, 0.5, 32.3, 22.8, 0.3, 0.0, 3.7, 54.9, 44.9, 0.3 +7.477124183006535,5,a-cure-i1,2023-24,28.599999999999998,61.2,Boston - Harvard-Kent Elementary School,00350200, 14.4, 14.1, 27.9, 38.8, 0.0, 0.0, 4.7, 53.5, 46.5, 0.0 +10.716666666666667,5,a-cure-i1,2023-24,64.3,96.0,Boston - Haynes Early Education Center,00350010, 46.0, 2.5, 45.5, 4.0, 0.0, 0.0, 2.0, 47.5, 52.5, 0.0 +8.367491166077738,5,a-cure-i1,2023-24,44.4,84.9,Boston - Henderson K-12 Inclusion School Lower,00350266, 30.3, 14.2, 29.4, 15.1, 0.0, 2.3, 8.7, 53.7, 46.3, 0.0 +6.290748898678415,5,a-cure-i1,2023-24,35.7,90.8,Boston - Henderson K-12 Inclusion School Upper,00350426, 47.4, 6.6, 31.6, 9.2, 0.3, 0.2, 4.7, 52.3, 47.7, 0.0 +5.970893970893971,5,a-cure-i1,2023-24,35.9,96.2,Boston - Hennigan K-8 School,00350153, 25.0, 4.0, 65.0, 3.8, 0.0, 0.2, 2.2, 54.1, 45.9, 0.0 +14.530232558139534,5,a-cure-i1,2023-24,78.1,86.0,Boston - Hernandez K-8 School,00350691, 3.4, 0.0, 79.1, 14.0, 0.0, 0.0, 3.4, 47.4, 52.6, 0.0 +12.34658511722732,5,a-cure-i1,2023-24,75.7,98.1,Boston - Higginson Inclusion K0-2 School,00350015, 30.6, 1.3, 62.4, 1.9, 0.0, 0.0, 3.8, 58.6, 41.4, 0.0 +8.080971659919028,5,a-cure-i1,2023-24,49.9,98.8,Boston - Higginson-Lewis K-8 School,00350377, 34.3, 1.2, 57.4, 1.2, 0.0, 0.0, 5.9, 55.6, 44.4, 0.0 +8.825331971399386,5,a-cure-i1,2023-24,54.0,97.9,Boston - Holmes Elementary School,00350138, 53.7, 1.0, 38.3, 2.1, 0.3, 0.0, 4.5, 57.1, 42.9, 0.0 +1.149478563151796,1.15,a-cure-i1,2023-24,6.2,86.3,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 31.5, 8.2, 45.2, 13.7, 0.0, 0.0, 1.4, 71.2, 28.8, 0.0 +13.796653796653796,5,a-cure-i1,2023-24,67.0,77.7,Boston - Hurley K-8 School,00350182, 4.9, 1.4, 67.9, 22.3, 0.3, 0.0, 3.2, 46.4, 53.3, 0.3 +7.591933570581258,5,a-cure-i1,2023-24,40.0,84.3,Boston - Kennedy John F Elementary School,00350166, 18.2, 1.3, 58.1, 15.7, 0.3, 0.0, 6.6, 50.5, 49.5, 0.0 +4.371308016877637,4.37,a-cure-i1,2023-24,25.9,94.8,Boston - Kennedy Patrick J Elementary School,00350264, 2.2, 1.1, 91.0, 5.2, 0.0, 0.0, 0.4, 53.6, 46.4, 0.0 +10.653113087674713,5,a-cure-i1,2023-24,52.4,78.7,Boston - Kenny Elementary School,00350328, 32.0, 11.2, 27.8, 21.3, 0.0, 0.0, 7.7, 55.0, 44.7, 0.3 +7.820895522388059,5,a-cure-i1,2023-24,26.2,53.6,Boston - Kilmer K-8 School,00350190, 18.6, 5.7, 23.7, 46.4, 0.0, 0.0, 5.7, 52.0, 48.0, 0.0 +10.705759162303664,5,a-cure-i1,2023-24,63.9,95.5,Boston - King Elementary School,00350376, 52.8, 1.1, 38.7, 4.5, 0.4, 0.0, 2.6, 55.5, 44.5, 0.0 +6.7368421052631575,5,a-cure-i1,2023-24,40.0,95.0,Boston - Lee Academy,00350001, 45.0, 1.5, 41.5, 5.0, 0.0, 0.0, 7.0, 56.0, 44.0, 0.0 +5.68177028451001,5,a-cure-i1,2023-24,33.7,94.9,Boston - Lee K-8 School,00350183, 50.1, 3.2, 36.4, 5.1, 0.8, 0.2, 4.2, 58.1, 41.9, 0.0 +9.06422018348624,5,a-cure-i1,2023-24,24.700000000000003,43.6,Boston - Lyndon K-8 School,00350262, 10.6, 4.9, 22.2, 56.4, 0.2, 0.0, 5.7, 49.4, 50.6, 0.0 +3.745075318655852,3.75,a-cure-i1,2023-24,20.2,86.3,Boston - Lyon High School,00350655, 20.6, 5.9, 51.0, 13.7, 0.0, 0.0, 8.8, 53.9, 45.1, 1.0 +3.505507955936353,3.51,a-cure-i1,2023-24,17.900000000000002,81.7,Boston - Lyon K-8 School,00350004, 22.5, 6.7, 43.3, 18.3, 0.8, 0.0, 8.3, 55.0, 45.0, 0.0 +8.18833162743091,5,a-cure-i1,2023-24,50.0,97.7,Boston - Madison Park Technical Vocational High School,00350537, 39.5, 1.3, 54.0, 2.3, 0.3, 0.1, 2.6, 59.5, 40.4, 0.2 +1,1,a-cure-i1,2023-24,0.2,44.4,Boston - Manning Elementary School,00350184, 15.4, 4.1, 16.0, 55.6, 0.0, 0.0, 8.9, 49.1, 50.9, 0.0 +9.842424242424242,5,a-cure-i1,2023-24,60.9,99.0,Boston - Margarita Muniz Academy,00350549, 6.5, 0.0, 91.6, 1.0, 0.0, 0.3, 0.6, 44.5, 55.5, 0.0 +7.142268041237113,5,a-cure-i1,2023-24,43.3,97.0,Boston - Mario Umana Academy,00350656, 2.4, 0.5, 92.9, 3.0, 0.2, 0.0, 1.1, 51.6, 48.4, 0.0 +5.795407098121086,5,a-cure-i1,2023-24,34.7,95.8,Boston - Mason Elementary School,00350304, 55.0, 0.0, 36.0, 4.2, 0.0, 0.0, 4.8, 54.0, 45.5, 0.5 +9.444561774023231,5,a-cure-i1,2023-24,55.900000000000006,94.7,Boston - Mather Elementary School,00350227, 38.3, 31.5, 20.0, 5.3, 0.9, 0.2, 3.7, 47.4, 52.6, 0.0 +7.01123595505618,5,a-cure-i1,2023-24,42.900000000000006,97.9,Boston - Mattahunt Elementary School,00350016, 67.8, 0.8, 25.8, 2.1, 0.2, 0.0, 3.3, 60.0, 40.0, 0.0 +4.688453159041395,4.69,a-cure-i1,2023-24,26.900000000000002,91.8,Boston - McKay K-8 School,00350080, 3.4, 0.7, 87.0, 8.2, 0.0, 0.0, 0.6, 52.2, 47.8, 0.0 +4.341621621621622,4.34,a-cure-i1,2023-24,25.099999999999998,92.5,Boston - Melvin H. King South End Academy,00350363, 44.8, 2.2, 41.8, 7.5, 0.7, 0.0, 3.0, 70.9, 29.1, 0.0 +16.023121387283236,5,a-cure-i1,2023-24,69.3,69.2,Boston - Mendell Elementary School,00350100, 27.6, 3.6, 30.5, 30.8, 0.3, 0.0, 7.1, 52.6, 47.4, 0.0 +9.49124613800206,5,a-cure-i1,2023-24,57.6,97.1,Boston - Mildred Avenue K-8 School,00350378, 57.3, 0.8, 35.3, 2.9, 0.3, 0.2, 3.2, 51.2, 48.8, 0.0 +5.00374531835206,5,a-cure-i1,2023-24,16.7,53.4,Boston - Mozart Elementary School,00350237, 22.5, 3.4, 19.1, 46.6, 0.6, 0.0, 7.9, 53.9, 46.1, 0.0 +6.522522522522523,5,a-cure-i1,2023-24,36.2,88.8,Boston - Murphy K-8 School,00350240, 17.0, 50.1, 17.6, 11.2, 0.4, 0.2, 3.5, 52.2, 47.7, 0.1 +7.8705501618122975,5,a-cure-i1,2023-24,45.6,92.7,Boston - New Mission High School,00350542, 46.9, 3.0, 40.4, 7.3, 0.4, 0.3, 1.6, 53.7, 46.1, 0.1 +10.321995464852607,5,a-cure-i1,2023-24,56.9,88.2,Boston - O'Bryant School of Math & Science,00350575, 31.5, 17.4, 36.5, 11.8, 0.1, 0.1, 2.5, 49.7, 50.1, 0.2 +6.592202318229714,5,a-cure-i1,2023-24,39.099999999999994,94.9,Boston - O'Donnell Elementary School,00350141, 2.9, 2.2, 89.1, 5.1, 0.0, 0.0, 0.7, 49.5, 50.5, 0.0 +6.2608695652173925,5,a-cure-i1,2023-24,32.400000000000006,82.8,Boston - Ohrenberger School,00350258, 33.9, 2.9, 43.1, 17.2, 0.2, 0.0, 2.7, 53.8, 46.0, 0.2 +5.771839671120247,5,a-cure-i1,2023-24,35.1,97.3,Boston - Orchard Gardens K-8 School,00350257, 54.8, 0.9, 39.1, 2.7, 0.6, 0.6, 1.3, 51.9, 48.1, 0.0 +3.0552763819095476,3.06,a-cure-i1,2023-24,15.2,79.6,Boston - Otis Elementary School,00350156, 2.2, 1.7, 73.4, 20.4, 0.0, 0.0, 2.2, 49.3, 50.7, 0.0 +6.7808676307007785,5,a-cure-i1,2023-24,38.1,89.9,Boston - Perkins Elementary School,00350231, 33.6, 6.7, 43.6, 10.1, 0.7, 0.0, 5.4, 55.0, 45.0, 0.0 +11.52876712328767,5,a-cure-i1,2023-24,26.299999999999997,36.5,Boston - Perry Elementary School,00350255, 13.8, 5.0, 14.9, 63.5, 0.0, 0.0, 2.8, 53.0, 47.0, 0.0 +9.57060849598163,5,a-cure-i1,2023-24,52.1,87.1,Boston - Philbrick Elementary School,00350172, 35.6, 3.0, 40.2, 12.9, 0.8, 0.0, 7.6, 44.7, 55.3, 0.0 +11.648616125150422,5,a-cure-i1,2023-24,60.5,83.1,Boston - Quincy Elementary School,00350286, 13.4, 52.7, 10.0, 16.9, 0.0, 0.0, 7.1, 47.2, 52.8, 0.0 +10.55863539445629,5,a-cure-i1,2023-24,61.900000000000006,93.8,Boston - Quincy Upper School,00350565, 19.0, 49.1, 22.9, 6.2, 0.2, 0.0, 2.6, 49.6, 50.2, 0.2 +5.88034188034188,5,a-cure-i1,2023-24,30.1,81.9,Boston - Roosevelt K-8 School,00350116, 36.9, 3.3, 35.6, 18.1, 0.3, 0.0, 5.7, 53.2, 46.8, 0.0 +5.6570820021299255,5,a-cure-i1,2023-24,33.2,93.9,Boston - Russell Elementary School,00350366, 32.4, 2.6, 57.5, 6.1, 0.0, 0.6, 0.9, 52.6, 47.4, 0.0 +8.998984771573605,5,a-cure-i1,2023-24,55.400000000000006,98.5,Boston - Shaw Elementary School,00350014, 58.7, 0.0, 35.3, 1.5, 0.5, 0.0, 4.0, 48.8, 51.2, 0.0 +7.735325506937032,5,a-cure-i1,2023-24,45.3,93.7,Boston - Snowden International High School,00350690, 29.4, 3.4, 58.0, 6.3, 0.0, 0.0, 2.9, 49.4, 50.6, 0.0 +5.779548472775565,5,a-cure-i1,2023-24,27.2,75.3,Boston - Sumner Elementary School,00350052, 15.5, 2.1, 53.3, 24.7, 0.3, 0.0, 4.1, 53.4, 46.6, 0.0 +11.18712273641851,5,a-cure-i1,2023-24,69.5,99.4,Boston - Taylor Elementary School,00350054, 77.6, 1.2, 19.2, 0.6, 0.9, 0.0, 0.6, 53.6, 46.4, 0.0 +8.040941658137154,5,a-cure-i1,2023-24,49.1,97.7,Boston - TechBoston Academy,00350657, 57.6, 1.8, 34.0, 2.3, 0.3, 0.0, 3.9, 53.4, 46.6, 0.0 +7.562700964630224,5,a-cure-i1,2023-24,44.099999999999994,93.3,Boston - Tobin K-8 School,00350229, 25.1, 4.3, 62.1, 6.7, 0.0, 0.0, 1.9, 52.3, 47.7, 0.0 +11.266666666666666,5,a-cure-i1,2023-24,67.6,96.0,Boston - Trotter Elementary School,00350370, 53.0, 2.0, 35.3, 4.0, 0.3, 1.7, 3.7, 54.3, 45.7, 0.0 +7.405275779376499,5,a-cure-i1,2023-24,38.6,83.4,Boston - Tynan Elementary School,00350181, 33.7, 6.8, 35.1, 16.6, 0.0, 0.0, 7.8, 59.0, 41.0, 0.0 +6.137435897435897,5,a-cure-i1,2023-24,37.4,97.5,Boston - UP Academy Holland,00350167, 47.2, 2.3, 43.5, 2.5, 1.2, 0.4, 3.0, 47.2, 52.8, 0.0 +8.099255583126551,5,a-cure-i1,2023-24,20.4,40.3,Boston - Warren-Prescott K-8 School,00350346, 11.2, 5.6, 19.0, 59.7, 0.0, 0.0, 4.4, 52.7, 47.3, 0.0 +7.159322033898305,5,a-cure-i1,2023-24,39.6,88.5,Boston - West Zone Early Learning Center,00350006, 24.8, 8.8, 51.3, 11.5, 0.0, 0.0, 3.5, 54.9, 45.1, 0.0 +9.504950495049505,5,a-cure-i1,2023-24,42.0,70.7,Boston - Winship Elementary School,00350374, 10.4, 17.1, 35.7, 29.3, 0.0, 0.0, 7.5, 47.2, 52.5, 0.3 +6.419855222337125,5,a-cure-i1,2023-24,38.8,96.7,Boston - Winthrop Elementary School,00350180, 48.5, 2.1, 43.2, 3.3, 0.4, 0.4, 2.1, 51.0, 49.0, 0.0 +7.74245472837022,5,a-cure-i1,2023-24,48.099999999999994,99.4,Boston - Young Achievers K-8 School,00350380, 38.6, 0.4, 56.9, 0.6, 0.6, 0.4, 2.4, 53.0, 46.8, 0.2 +13.742160278745645,5,a-cure-i1,2023-24,49.300000000000004,57.4,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 26.7, 3.5, 22.2, 42.6, 0.0, 0.0, 4.9, 51.0, 48.7, 0.3 +10.655737704918034,5,a-cure-i1,2023-24,65.0,97.6,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 52.2, 0.3, 43.7, 2.4, 0.7, 0.0, 0.7, 41.0, 58.4, 0.7 +6.946681175190424,5,a-cure-i1,2023-24,39.9,91.9,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 45.8, 1.5, 40.7, 8.1, 0.7, 0.0, 3.3, 50.8, 49.2, 0.0 +7.732522796352582,5,a-cure-i1,2023-24,47.699999999999996,98.7,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 61.2, 0.3, 31.1, 1.3, 0.4, 0.9, 4.9, 49.6, 50.4, 0.0 +1.967479674796748,1.97,a-cure-i1,2023-24,12.100000000000001,98.4,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 55.9, 0.0, 39.1, 1.6, 0.0, 0.0, 3.4, 48.6, 51.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.799999999999997,Bourne - Bourne High School,00360505, 2.1, 3.3, 6.0, 81.2, 1.2, 0.0, 6.3, 47.5, 52.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.799999999999997,Bourne - Bourne Intermediate School,00360030, 2.5, 3.1, 8.9, 77.2, 0.6, 0.3, 7.5, 49.6, 50.4, 0.0 +5.626373626373626,5,a-cure-i1,2023-24,6.4,18.200000000000003,Bourne - Bourne Middle School,00360325, 3.0, 1.1, 6.8, 81.8, 0.7, 0.2, 6.4, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.799999999999997,Bourne - Bournedale Elementary School,00360005, 3.5, 1.4, 9.8, 76.2, 0.2, 0.2, 8.6, 53.4, 46.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.599999999999994,Boxford - Harry Lee Cole,00380005, 1.1, 1.1, 4.8, 88.4, 0.0, 0.0, 4.5, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,3.8,9.900000000000006,Boxford - Spofford Pond,00380013, 0.2, 2.2, 3.2, 90.1, 0.0, 0.0, 4.2, 52.6, 47.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,55.2,Braintree - Archie T Morrison,00400033, 9.0, 29.1, 11.0, 44.8, 0.0, 0.3, 5.7, 48.5, 51.5, 0.0 +1,1,a-cure-i1,2023-24,3.6,42.4,Braintree - Braintree High,00400505, 6.4, 27.2, 6.7, 57.6, 0.1, 0.1, 1.9, 51.0, 48.9, 0.1 +1,1,a-cure-i1,2023-24,0.0,52.0,Braintree - Donald Ross,00400050, 13.4, 24.0, 11.2, 48.0, 0.6, 0.0, 2.8, 45.8, 54.2, 0.0 +1,1,a-cure-i1,2023-24,1.3,44.6,Braintree - East Middle School,00400305, 5.9, 27.9, 7.4, 55.4, 0.2, 0.1, 3.1, 52.8, 47.1, 0.1 +1,1,a-cure-i1,2023-24,0.0,28.900000000000006,Braintree - Highlands,00400015, 1.7, 20.6, 5.4, 71.1, 0.0, 0.0, 1.1, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,45.3,Braintree - Hollis,00400005, 6.2, 27.6, 7.5, 54.7, 0.3, 0.0, 3.7, 50.0, 49.7, 0.3 +1,1,a-cure-i1,2023-24,0.0,48.5,Braintree - Liberty,00400025, 6.1, 31.4, 6.5, 51.5, 0.3, 0.3, 3.9, 55.7, 44.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,45.6,Braintree - Mary E Flaherty School,00400020, 2.5, 28.5, 7.5, 54.4, 0.0, 0.0, 7.1, 55.9, 44.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,51.9,Braintree - Monatiquot Kindergarten Center,00400009, 5.5, 30.6, 10.4, 48.1, 0.0, 0.5, 4.9, 53.6, 46.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,37.8,Braintree - South Middle School,00400310, 3.3, 26.6, 4.9, 62.2, 0.2, 0.5, 2.4, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.900000000000006,Brewster - Eddy Elementary,00410010, 2.4, 2.0, 12.7, 76.1, 0.0, 0.0, 6.8, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.599999999999994,Brewster - Stony Brook Elementary,00410005, 5.2, 1.3, 11.8, 73.4, 0.0, 0.0, 8.3, 46.3, 53.7, 0.0 +7.319838056680163,5,a-cure-i1,2023-24,45.2,98.8,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 62.6, 1.2, 31.4, 1.2, 0.0, 0.3, 3.3, 47.6, 52.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.099999999999994,Bridgewater-Raynham - Bridgewater Middle School,06250320, 11.7, 1.7, 5.0, 76.9, 0.1, 0.1, 4.6, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,2.3,27.0,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 14.3, 2.6, 4.3, 73.0, 0.1, 0.1, 5.5, 50.2, 49.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,24.200000000000003,Bridgewater-Raynham - Laliberte Elementary School,06250050, 9.4, 3.1, 6.1, 75.8, 0.0, 0.0, 5.5, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.299999999999997,Bridgewater-Raynham - Merrill Elementary School,06250020, 10.1, 5.2, 8.7, 70.7, 0.3, 0.3, 4.6, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.599999999999994,Bridgewater-Raynham - Mitchell Elementary School,06250002, 10.5, 2.0, 9.5, 71.4, 0.2, 0.1, 6.2, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.700000000000003,Bridgewater-Raynham - Raynham Middle School,06250315, 11.4, 2.4, 4.7, 77.3, 0.0, 0.0, 4.2, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,1.9,9.099999999999994,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 9.1, 90.9, 0.0, 0.0, 0.0, 36.4, 63.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.400000000000006,Bridgewater-Raynham - Williams Intermediate School,06250300, 11.4, 2.0, 9.6, 71.6, 0.0, 0.1, 5.2, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.099999999999994,Brimfield - Brimfield Elementary,00430005, 0.4, 1.1, 3.9, 91.9, 0.7, 0.0, 2.1, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,2.6,16.900000000000006,Bristol County Agricultural - Bristol County Agricultural High,09100705, 2.9, 0.0, 12.7, 83.1, 0.7, 0.0, 0.7, 32.4, 67.4, 0.2 +1,1,a-cure-i1,2023-24,4.1,18.700000000000003,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 5.7, 0.8, 7.7, 81.3, 0.3, 0.1, 4.2, 57.2, 42.6, 0.2 +1,1,a-cure-i1,2023-24,3.8,77.9,Brockton - Ashfield Middle School,00440421, 58.6, 1.9, 14.5, 22.1, 0.4, 0.0, 2.5, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,90.2,Brockton - Barrett Russell Early Childhood Center,00440008, 61.9, 1.9, 22.3, 9.8, 0.4, 0.0, 3.8, 58.9, 41.1, 0.0 +4.958002270147561,4.96,a-cure-i1,2023-24,27.300000000000004,88.1,Brockton - Brockton High,00440505, 61.4, 2.6, 19.7, 11.9, 0.1, 0.2, 4.1, 55.1, 44.8, 0.1 +1,1,a-cure-i1,2023-24,0.0,81.8,Brockton - Brockton Virtual Learning Academy,00440705, 51.6, 2.5, 17.0, 18.2, 0.6, 0.0, 10.1, 47.2, 52.8, 0.0 +1.4275092936802973,1.43,a-cure-i1,2023-24,7.2,80.7,Brockton - Brookfield,00440010, 52.3, 1.1, 20.2, 19.3, 0.9, 0.0, 6.2, 53.7, 46.3, 0.0 +1,1,a-cure-i1,2023-24,2.7,87.1,Brockton - Downey,00440110, 59.4, 1.7, 18.2, 12.9, 0.5, 0.3, 7.0, 51.9, 48.1, 0.0 +1.500526870389884,1.5,a-cure-i1,2023-24,8.9,94.9,Brockton - Dr W Arnone Community School,00440001, 61.3, 0.3, 27.3, 5.1, 0.3, 0.5, 5.2, 51.8, 48.2, 0.0 +2.707692307692308,2.71,a-cure-i1,2023-24,14.3,84.5,Brockton - East Middle School,00440405, 63.2, 0.9, 16.7, 15.5, 0.7, 0.0, 3.0, 56.0, 44.0, 0.0 +1.7092511013215859,1.71,a-cure-i1,2023-24,9.7,90.8,Brockton - Edgar B Davis,00440023, 64.0, 0.5, 19.6, 9.2, 0.5, 0.1, 6.0, 51.1, 48.9, 0.0 +1.8937198067632852,1.89,a-cure-i1,2023-24,9.8,82.8,Brockton - Edison Day Academy,00440535, 54.6, 0.0, 19.6, 17.2, 0.0, 0.0, 8.6, 51.5, 47.9, 0.6 +11.610471204188482,5,a-cure-i1,2023-24,69.3,95.5,Brockton - Edison Evening Academy,00440520, 62.1, 2.0, 28.8, 4.5, 0.5, 0.0, 2.0, 56.1, 43.9, 0.0 +3.057113187954309,3.06,a-cure-i1,2023-24,18.4,96.3,Brockton - Gilmore Elementary School,00440055, 72.5, 0.0, 20.4, 3.7, 0.5, 0.0, 3.0, 54.2, 45.8, 0.0 +3.331719128329298,3.33,a-cure-i1,2023-24,17.2,82.6,Brockton - Hancock,00440045, 51.5, 1.7, 24.9, 17.4, 0.2, 0.2, 4.2, 48.5, 51.5, 0.0 +2.0843672456575684,2.08,a-cure-i1,2023-24,10.5,80.6,Brockton - Huntington Therapeutic Day School,00440400, 52.8, 0.0, 19.4, 19.4, 0.0, 0.0, 8.3, 52.8, 47.2, 0.0 +3.4299401197604786,3.43,a-cure-i1,2023-24,17.9,83.5,Brockton - John F Kennedy,00440017, 55.5, 1.4, 22.5, 16.5, 0.8, 0.0, 3.4, 46.9, 53.1, 0.0 +2.0730270906949353,2.07,a-cure-i1,2023-24,11.0,84.9,Brockton - Louis F Angelo Elementary,00440065, 53.8, 2.9, 24.0, 15.1, 0.8, 0.0, 3.5, 56.4, 43.6, 0.0 +1.2972972972972974,1.3,a-cure-i1,2023-24,7.5,92.5,Brockton - Manthala George Jr. School,00440003, 55.3, 0.6, 31.9, 7.5, 0.1, 0.3, 4.4, 47.9, 52.1, 0.0 +1.665859564164649,1.67,a-cure-i1,2023-24,8.6,82.6,Brockton - Mary E. Baker School,00440002, 50.7, 1.7, 21.7, 17.4, 0.6, 0.3, 7.7, 47.8, 52.2, 0.0 +2.384449244060475,2.38,a-cure-i1,2023-24,13.799999999999999,92.6,Brockton - North Middle School,00440410, 72.4, 1.5, 12.1, 7.4, 1.0, 0.2, 5.4, 51.5, 48.5, 0.0 +2.089171974522293,2.09,a-cure-i1,2023-24,12.3,94.2,Brockton - Oscar F Raymond,00440078, 77.6, 0.6, 12.6, 5.8, 0.4, 0.4, 2.7, 52.7, 47.3, 0.0 +5.1498335183129855,5,a-cure-i1,2023-24,29.0,90.1,Brockton - Plouffe Middle School,00440422, 39.6, 1.4, 44.7, 9.9, 0.0, 0.0, 4.5, 46.3, 53.7, 0.0 +0.8918617614269788,1,a-cure-i1,2023-24,5.0,89.7,Brockton - PROMISE College and Career Academy,00440525, 59.8, 1.0, 23.7, 10.3, 1.0, 0.0, 4.1, 56.7, 43.3, 0.0 +5.60730593607306,5,a-cure-i1,2023-24,30.700000000000003,87.6,Brockton - South Middle School,00440415, 65.8, 2.1, 15.4, 12.4, 0.4, 0.0, 3.8, 55.1, 44.9, 0.0 +4.472049689440993,4.47,a-cure-i1,2023-24,22.5,80.5,Brockton - West Middle School,00440420, 55.9, 1.2, 17.3, 19.5, 0.2, 0.0, 5.9, 50.4, 49.6, 0.0 +9.007284079084288,5,a-cure-i1,2023-24,54.1,96.1,Brooke Charter School (District) - Brooke Charter School,04280305, 49.5, 1.4, 41.9, 3.9, 0.3, 0.1, 2.8, 48.4, 51.4, 0.2 +1,1,a-cure-i1,2023-24,0.0,13.900000000000006,Brookfield - Brookfield Elementary,00450005, 2.6, 0.3, 5.6, 86.1, 0.0, 0.0, 5.3, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,54.3,Brookline - Brookline Early Education Program at Beacon,00460001, 4.3, 30.4, 8.7, 45.7, 0.0, 0.0, 10.9, 67.4, 32.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,69.7,Brookline - Brookline Early Education Program at Clark Road,00460003, 3.0, 21.2, 21.2, 30.3, 0.0, 0.0, 24.2, 42.4, 57.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,47.6,Brookline - Brookline Early Education Program at Putterham,00460002, 9.5, 23.8, 2.4, 52.4, 0.0, 0.0, 11.9, 64.3, 35.7, 0.0 +5.503184713375797,5,a-cure-i1,2023-24,16.200000000000003,47.1,Brookline - Brookline High,00460505, 6.2, 17.6, 13.3, 52.9, 0.1, 0.0, 9.9, 49.1, 49.9, 1.0 +4.643356643356643,4.64,a-cure-i1,2023-24,16.6,57.2,Brookline - Edith C Baker,00460005, 7.0, 29.7, 11.0, 42.8, 0.2, 0.0, 9.3, 49.4, 50.6, 0.0 +3.221006564551422,3.22,a-cure-i1,2023-24,9.2,45.7,Brookline - Florida Ruffin Ridley School,00460015, 5.9, 18.0, 11.4, 54.3, 0.0, 0.0, 10.4, 51.1, 48.9, 0.0 +2.0125786163522013,2.01,a-cure-i1,2023-24,6.0,47.7,Brookline - Heath,00460025, 5.3, 17.7, 12.9, 52.3, 0.0, 0.0, 11.8, 53.7, 46.3, 0.0 +1.8842975206611572,1.88,a-cure-i1,2023-24,5.7,48.4,Brookline - John D Runkle,00460045, 3.1, 14.1, 15.7, 51.6, 0.0, 0.0, 15.5, 55.3, 44.3, 0.4 +4.075213675213675,4.08,a-cure-i1,2023-24,14.9,58.5,Brookline - Lawrence,00460030, 4.6, 33.3, 9.3, 41.5, 0.0, 0.2, 11.2, 48.6, 51.4, 0.0 +3.8461538461538463,3.85,a-cure-i1,2023-24,12.5,52.0,Brookline - Michael Driscoll,00460020, 5.5, 19.8, 13.1, 48.0, 0.0, 0.0, 13.5, 53.5, 46.3, 0.2 +6.136200716845879,5,a-cure-i1,2023-24,21.400000000000002,55.8,Brookline - Pierce,00460040, 5.8, 26.8, 10.6, 44.2, 0.0, 0.0, 12.6, 49.4, 50.3, 0.3 +4.574496644295302,4.57,a-cure-i1,2023-24,21.3,74.5,Brookline - The Lynch Center,00460060, 20.0, 29.1, 9.1, 25.5, 0.0, 0.0, 16.4, 50.9, 49.1, 0.0 +3.2101105845181674,3.21,a-cure-i1,2023-24,12.7,63.3,Brookline - William H Lincoln,00460035, 11.4, 26.8, 12.9, 36.7, 0.4, 0.0, 11.8, 50.0, 50.0, 0.0 +3.608200455580866,3.61,a-cure-i1,2023-24,9.9,43.9,Burlington - Burlington High,00480505, 8.9, 19.5, 12.7, 56.1, 0.3, 0.0, 2.5, 51.5, 47.8, 0.7 +1,1,a-cure-i1,2023-24,0.0,34.900000000000006,Burlington - Fox Hill,00480007, 6.2, 15.2, 8.4, 65.1, 0.2, 0.0, 5.1, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,3.2,39.3,Burlington - Francis Wyman Elementary,00480035, 10.7, 13.2, 9.7, 60.7, 0.0, 0.0, 5.8, 49.8, 50.2, 0.0 +2.6730310262529833,2.67,a-cure-i1,2023-24,7.0,41.9,Burlington - Marshall Simonds Middle,00480303, 7.1, 17.9, 11.1, 58.1, 0.3, 0.0, 5.5, 49.4, 50.5, 0.1 +1,1,a-cure-i1,2023-24,3.5,39.7,Burlington - Memorial,00480015, 4.2, 18.8, 10.4, 60.3, 0.0, 0.0, 6.3, 48.8, 51.2, 0.0 +1,1,a-cure-i1,2023-24,4.0,41.0,Burlington - Pine Glen Elementary,00480020, 6.6, 22.5, 8.7, 59.0, 0.0, 0.0, 3.3, 52.4, 47.6, 0.0 +12.926829268292684,5,a-cure-i1,2023-24,53.0,65.6,Cambridge - Amigos School,00490006, 5.0, 3.1, 49.5, 34.4, 0.0, 0.0, 7.9, 49.8, 50.0, 0.2 +7.161904761904761,5,a-cure-i1,2023-24,28.2,63.0,Cambridge - Cambridge Rindge and Latin,00490506, 25.9, 11.9, 14.5, 37.0, 0.3, 0.0, 10.4, 50.9, 48.2, 0.9 +9.171974522292993,5,a-cure-i1,2023-24,36.0,62.8,Cambridge - Cambridge Street Upper School,00490305, 29.3, 9.9, 12.5, 37.2, 0.0, 0.0, 11.2, 48.4, 50.3, 1.3 +8.727272727272727,5,a-cure-i1,2023-24,31.2,57.2,Cambridge - Cambridgeport,00490007, 18.6, 13.3, 11.6, 42.8, 0.0, 0.4, 13.3, 50.5, 49.5, 0.0 +5.624454148471616,5,a-cure-i1,2023-24,32.2,91.6,Cambridge - Fletcher/Maynard Academy,00490090, 52.2, 8.8, 20.3, 8.4, 0.4, 0.0, 10.0, 55.8, 44.2, 0.0 +2.7686116700201207,2.77,a-cure-i1,2023-24,8.6,49.7,Cambridge - Graham and Parks,00490080, 13.9, 21.5, 7.1, 50.3, 0.0, 0.0, 7.3, 54.3, 45.7, 0.0 +10.102564102564102,5,a-cure-i1,2023-24,39.4,62.4,Cambridge - Haggerty,00490020, 20.5, 22.3, 11.4, 37.6, 0.4, 0.0, 7.9, 48.5, 51.5, 0.0 +4.978369384359401,4.98,a-cure-i1,2023-24,18.7,60.1,Cambridge - John M Tobin,00490065, 22.1, 19.0, 8.0, 39.9, 0.0, 0.0, 11.0, 51.8, 48.2, 0.0 +2.5852417302798982,2.59,a-cure-i1,2023-24,12.7,78.6,Cambridge - Kennedy-Longfellow,00490040, 25.5, 23.2, 22.7, 21.4, 0.0, 0.0, 7.3, 54.1, 45.9, 0.0 +7.029185867895546,5,a-cure-i1,2023-24,28.599999999999998,65.1,Cambridge - King Open,00490035, 25.6, 11.4, 14.2, 34.9, 0.0, 0.0, 14.0, 53.2, 46.8, 0.0 +10.20952380952381,5,a-cure-i1,2023-24,26.8,42.0,Cambridge - Maria L. Baldwin,00490005, 9.7, 10.8, 8.2, 58.0, 0.0, 0.0, 13.4, 49.7, 50.3, 0.0 +8.512820512820513,5,a-cure-i1,2023-24,41.5,78.0,Cambridge - Martin Luther King Jr.,00490030, 12.2, 36.0, 3.7, 22.0, 0.0, 0.0, 26.2, 48.2, 51.5, 0.3 +2.972222222222222,2.97,a-cure-i1,2023-24,10.7,57.6,Cambridge - Morse,00490045, 23.2, 14.6, 9.6, 42.4, 0.0, 0.0, 10.3, 54.3, 45.7, 0.0 +5.925925925925926,5,a-cure-i1,2023-24,21.0,56.7,Cambridge - Peabody,00490050, 25.9, 13.1, 7.8, 43.3, 0.0, 0.0, 10.0, 52.0, 47.7, 0.3 +7.106082036775105,5,a-cure-i1,2023-24,31.4,70.7,Cambridge - Putnam Avenue Upper School,00490310, 27.0, 18.9, 10.0, 29.3, 0.4, 0.0, 14.4, 54.1, 45.9, 0.0 +8.95617529880478,5,a-cure-i1,2023-24,28.099999999999998,50.2,Cambridge - Rindge Avenue Upper School,00490315, 19.7, 8.7, 12.5, 49.8, 0.0, 0.0, 9.3, 45.0, 54.7, 0.3 +3.6202531645569622,3.62,a-cure-i1,2023-24,14.3,63.2,Cambridge - Vassal Lane Upper School,00490320, 24.0, 17.8, 12.8, 36.8, 0.4, 0.0, 8.1, 53.1, 46.9, 0.0 +3.588390501319261,3.59,a-cure-i1,2023-24,8.5,37.9,Canton - Canton High,00500505, 15.6, 11.6, 5.3, 62.1, 0.2, 0.4, 4.8, 45.5, 54.4, 0.1 +1,1,a-cure-i1,2023-24,3.3,37.3,Canton - Dean S Luce,00500020, 10.7, 10.3, 7.5, 62.7, 0.2, 0.0, 8.6, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.299999999999997,Canton - John F Kennedy,00500017, 6.6, 7.9, 5.7, 70.7, 0.0, 0.0, 9.2, 52.3, 47.7, 0.0 +2.503667481662592,2.5,a-cure-i1,2023-24,6.4,40.9,Canton - Lt Peter M Hansen,00500012, 11.6, 11.4, 8.4, 59.1, 0.2, 0.2, 9.1, 52.2, 47.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,43.3,Canton - Rodman Early Childhood Center,00500010, 9.0, 17.9, 10.4, 56.7, 0.0, 0.0, 6.0, 55.2, 44.8, 0.0 +2.694736842105263,2.69,a-cure-i1,2023-24,6.4,38.0,Canton - Wm H Galvin Middle,00500305, 12.5, 10.2, 9.3, 62.0, 0.0, 0.1, 5.8, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,12.0,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 3.2, 1.6, 5.2, 88.0, 0.0, 0.0, 2.0, 46.6, 53.4, 0.0 +1,1,a-cure-i1,2023-24,1.3,21.400000000000006,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 5.7, 0.8, 9.7, 78.6, 0.6, 0.3, 4.4, 62.3, 37.7, 0.0 +1,1,a-cure-i1,2023-24,3.6,27.0,Carlisle - Carlisle School,00510025, 0.3, 11.5, 6.4, 73.0, 0.0, 0.5, 8.2, 50.2, 49.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.099999999999994,Carver - Carver Elementary School,00520015, 1.7, 0.5, 4.3, 88.9, 0.4, 0.0, 4.3, 49.7, 50.3, 0.0 +10.666666666666666,5,a-cure-i1,2023-24,6.0,9.0,Carver - Carver Middle/High School,00520405, 2.4, 0.8, 3.5, 91.0, 0.4, 0.0, 1.8, 52.3, 47.5, 0.1 +1,1,a-cure-i1,2023-24,0.0,12.099999999999994,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 5.5, 87.9, 0.0, 0.0, 6.6, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.099999999999994,Central Berkshire - Craneville,06350025, 1.5, 1.1, 9.1, 81.9, 0.2, 0.0, 6.2, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,7.299999999999997,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 4.5, 92.7, 0.0, 0.0, 2.8, 48.6, 51.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.799999999999997,Central Berkshire - Nessacus Regional Middle School,06350305, 0.3, 1.1, 5.0, 90.2, 0.0, 0.0, 3.4, 46.6, 53.1, 0.3 +1,1,a-cure-i1,2023-24,0.0,10.400000000000006,Central Berkshire - Wahconah Regional High,06350505, 1.0, 0.8, 4.4, 89.6, 0.0, 0.0, 4.1, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,35.5,Chelmsford - Byam School,00560030, 4.0, 14.0, 12.3, 64.5, 0.0, 0.4, 4.9, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,35.2,Chelmsford - Center Elementary School,00560005, 4.3, 21.0, 5.6, 64.8, 0.2, 0.0, 4.1, 51.9, 47.9, 0.2 +1,1,a-cure-i1,2023-24,0.0,44.0,Chelmsford - Charles D Harrington,00560025, 4.6, 18.9, 15.1, 56.0, 0.6, 0.2, 4.6, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,4.0,35.7,Chelmsford - Chelmsford High,00560505, 4.5, 18.9, 8.2, 64.3, 0.1, 0.2, 3.8, 53.6, 45.9, 0.5 +1,1,a-cure-i1,2023-24,1.6,36.3,Chelmsford - Col Moses Parker School,00560305, 3.1, 21.8, 7.3, 63.7, 0.1, 0.0, 3.9, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,46.0,Chelmsford - Community Education Center,00560001, 5.5, 28.0, 7.0, 54.0, 0.5, 0.5, 4.5, 58.0, 42.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,35.7,Chelmsford - McCarthy Middle School,00560310, 4.5, 17.0, 9.7, 64.3, 0.1, 0.1, 4.2, 51.3, 48.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,35.3,Chelmsford - South Row,00560015, 3.2, 17.4, 8.0, 64.7, 0.2, 0.0, 6.5, 51.0, 49.0, 0.0 +5.428872497365648,5,a-cure-i1,2023-24,32.2,94.9,Chelsea - Chelsea High,00570505, 3.8, 1.1, 89.2, 5.1, 0.2, 0.0, 0.6, 54.3, 45.5, 0.1 +4.80672268907563,4.81,a-cure-i1,2023-24,28.6,95.2,Chelsea - Chelsea Opportunity Academy,00570515, 1.6, 1.6, 92.0, 4.8, 0.0, 0.0, 0.0, 62.4, 37.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,90.0,Chelsea - Chelsea Virtual Learning Academy,00570705, 3.3, 1.7, 83.3, 10.0, 0.0, 0.0, 1.7, 31.7, 68.3, 0.0 +1.761006289308176,1.76,a-cure-i1,2023-24,10.5,95.4,Chelsea - Clark Avenue School,00570050, 2.8, 0.0, 91.4, 4.6, 0.1, 0.0, 1.0, 50.1, 49.9, 0.0 +4.824561403508771,4.82,a-cure-i1,2023-24,27.5,91.2,Chelsea - Edgar F. Hooks Elementary,00570030, 5.3, 0.7, 84.3, 8.8, 0.4, 0.0, 0.4, 60.5, 39.5, 0.0 +3.4820457018498367,3.48,a-cure-i1,2023-24,20.0,91.9,Chelsea - Eugene Wright Science and Technology Academy,00570045, 6.5, 0.2, 84.7, 8.1, 0.0, 0.0, 0.5, 49.4, 50.6, 0.0 +1.7241379310344829,1.72,a-cure-i1,2023-24,10.0,92.8,Chelsea - Frank M Sokolowski Elementary,00570040, 4.4, 0.2, 87.9, 7.2, 0.2, 0.0, 0.0, 47.7, 52.3, 0.0 +11.856115107913668,5,a-cure-i1,2023-24,72.1,97.3,Chelsea - George F. Kelly Elementary,00570035, 1.0, 0.2, 96.1, 2.7, 0.0, 0.0, 0.0, 47.9, 52.1, 0.0 +8.614072494669509,5,a-cure-i1,2023-24,50.5,93.8,Chelsea - Joseph A. Browne School,00570055, 7.0, 0.8, 85.4, 6.2, 0.4, 0.0, 0.2, 51.3, 48.7, 0.0 +3.4519956850053934,3.45,a-cure-i1,2023-24,20.0,92.7,Chelsea - Shurtleff Early Childhood,00570003, 4.6, 1.0, 87.1, 7.3, 0.0, 0.0, 0.0, 52.4, 47.6, 0.0 +3.4297606659729447,3.43,a-cure-i1,2023-24,20.599999999999998,96.1,Chelsea - William A Berkowitz Elementary,00570025, 6.4, 0.9, 88.0, 3.9, 0.5, 0.0, 0.2, 45.3, 54.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,4.299999999999997,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 1.4, 0.0, 2.2, 95.7, 0.0, 0.0, 0.7, 57.6, 42.4, 0.0 +1,1,a-cure-i1,2023-24,4.3,50.8,Chicopee - Barry,00610003, 9.1, 1.4, 36.7, 49.2, 0.0, 0.6, 3.0, 55.2, 44.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,59.8,Chicopee - Belcher,00610010, 8.7, 0.4, 45.0, 40.2, 0.0, 0.4, 5.2, 47.2, 52.8, 0.0 +1,1,a-cure-i1,2023-24,1.4,52.6,Chicopee - Bellamy Middle,00610305, 5.6, 1.3, 42.1, 47.4, 0.0, 0.1, 3.4, 52.6, 47.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,75.8,Chicopee - Bowe,00610015, 4.8, 2.2, 63.6, 24.2, 0.0, 0.0, 5.3, 50.7, 49.3, 0.0 +4.298507462686567,4.3,a-cure-i1,2023-24,10.8,40.2,Chicopee - Bowie,00610020, 5.8, 2.7, 27.8, 59.8, 0.0, 0.0, 3.8, 48.8, 51.2, 0.0 +3.1904047976011993,3.19,a-cure-i1,2023-24,13.3,66.7,Chicopee - Chicopee Academy,00610021, 8.7, 1.4, 50.7, 33.3, 0.0, 0.0, 5.8, 71.0, 29.0, 0.0 +2.896551724137931,2.9,a-cure-i1,2023-24,8.4,46.4,Chicopee - Chicopee Comprehensive High School,00610510, 3.2, 1.2, 38.3, 53.6, 0.2, 0.0, 3.5, 59.5, 40.1, 0.4 +2.184049079754601,2.18,a-cure-i1,2023-24,8.9,65.2,Chicopee - Chicopee High,00610505, 5.9, 2.9, 52.9, 34.8, 0.1, 0.0, 3.4, 46.2, 53.4, 0.3 +3.5428571428571423,3.54,a-cure-i1,2023-24,12.399999999999999,56.0,Chicopee - Dupont Middle,00610310, 5.0, 1.8, 45.4, 44.0, 0.1, 0.0, 3.7, 52.9, 46.9, 0.1 +1.6894409937888197,1.69,a-cure-i1,2023-24,6.8,64.4,Chicopee - Fairview Elementary,00610050, 10.7, 1.1, 48.5, 35.6, 0.3, 0.0, 3.8, 54.5, 45.5, 0.0 +1.149171270718232,1.15,a-cure-i1,2023-24,5.2,72.4,Chicopee - Gen John J Stefanik,00610090, 5.4, 1.8, 60.9, 27.6, 0.0, 0.0, 4.3, 54.0, 46.0, 0.0 +1,1,a-cure-i1,2023-24,1.1,46.0,Chicopee - Lambert-Lavoie,00610040, 4.4, 1.8, 34.5, 54.0, 0.0, 0.0, 5.3, 56.2, 43.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,53.8,Chicopee - Litwin,00610022, 7.3, 1.5, 41.3, 46.2, 0.0, 0.0, 3.8, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,1.0,44.6,Chicopee - Streiber Memorial School,00610065, 5.6, 4.3, 32.6, 55.4, 0.0, 0.0, 2.1, 55.8, 44.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,54.6,Chicopee - Szetela Early Childhood Center,00610001, 6.7, 1.7, 41.7, 45.4, 0.8, 0.0, 3.8, 55.8, 44.2, 0.0 +8.569395017793594,5,a-cure-i1,2023-24,30.1,56.2,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 10.4, 4.2, 32.6, 43.8, 1.4, 0.0, 7.6, 55.9, 43.4, 0.7 +6.006153846153846,5,a-cure-i1,2023-24,36.6,97.5,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 68.8, 0.0, 27.6, 2.5, 0.5, 0.0, 0.5, 46.7, 53.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,5.299999999999997,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.5, 2.9, 94.7, 0.0, 0.0, 1.9, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,2.5,48.1,Clinton - Clinton Elementary,00640050, 2.9, 0.8, 41.3, 51.9, 0.1, 0.0, 3.0, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,4.8,45.9,Clinton - Clinton Middle School,00640305, 2.5, 0.5, 40.8, 54.1, 0.0, 0.2, 1.9, 51.3, 48.7, 0.0 +3.6042105263157893,3.6,a-cure-i1,2023-24,10.7,47.5,Clinton - Clinton Senior High,00640505, 3.8, 0.9, 41.5, 52.5, 0.0, 0.2, 1.2, 57.0, 42.7, 0.3 +8.255999999999998,5,a-cure-i1,2023-24,51.599999999999994,100.0,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 69.9, 0.0, 28.0, 0.0, 0.0, 0.0, 2.1, 49.1, 50.9, 0.0 +1,1,a-cure-i1,2023-24,2.6,9.099999999999994,Cohasset - Cohasset High School,00650505, 3.2, 1.7, 1.2, 90.9, 0.0, 0.0, 3.0, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,6.900000000000006,Cohasset - Cohasset Middle School,00650305, 3.1, 1.7, 1.0, 93.1, 0.0, 0.0, 1.0, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.0,Cohasset - Deer Hill,00650005, 3.1, 0.3, 3.4, 90.0, 0.3, 0.0, 2.8, 49.2, 50.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.700000000000003,Cohasset - Joseph Osgood,00650010, 1.0, 1.0, 2.8, 91.3, 0.0, 0.0, 3.9, 51.7, 48.3, 0.0 +5.425165562913907,5,a-cure-i1,2023-24,25.6,75.5,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 21.9, 24.4, 23.9, 24.5, 2.3, 0.1, 3.0, 47.0, 52.9, 0.1 +5.9893955461293755,5,a-cure-i1,2023-24,35.300000000000004,94.3,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 65.5, 5.0, 18.0, 5.7, 0.0, 0.4, 5.4, 44.1, 55.9, 0.0 +4.883011190233978,4.88,a-cure-i1,2023-24,30.0,98.3,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 1.3, 0.3, 95.7, 1.7, 0.3, 0.0, 0.8, 49.2, 50.8, 0.0 +5.546012269938652,5,a-cure-i1,2023-24,11.3,32.599999999999994,Concord - Alcott,00670005, 10.0, 6.5, 9.3, 67.4, 0.0, 0.0, 6.7, 49.1, 50.9, 0.0 +8.514285714285714,5,a-cure-i1,2023-24,14.9,28.0,Concord - Concord Middle,00670305, 4.7, 8.0, 8.3, 72.0, 0.2, 0.0, 6.9, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,4.1,29.799999999999997,Concord - Thoreau,00670020, 1.6, 10.8, 7.3, 70.2, 0.2, 0.0, 9.9, 51.4, 48.6, 0.0 +8.076923076923078,5,a-cure-i1,2023-24,10.5,20.799999999999997,Concord - Willard,00670030, 1.8, 6.0, 7.1, 79.2, 0.0, 0.0, 6.0, 50.3, 49.7, 0.0 +6.581132075471698,5,a-cure-i1,2023-24,10.9,26.5,Concord-Carlisle - Concord Carlisle High,06400505, 3.7, 8.7, 6.3, 73.5, 0.1, 0.2, 7.6, 53.3, 46.4, 0.3 +5.422314911366006,5,a-cure-i1,2023-24,32.5,95.9,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 49.1, 1.6, 42.3, 4.1, 0.2, 0.0, 2.7, 46.4, 53.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,6.900000000000006,Conway - Conway Grammar,00680005, 0.0, 0.0, 2.8, 93.1, 0.0, 0.0, 4.2, 54.2, 45.1, 0.7 +1,1,a-cure-i1,2023-24,2.7,21.900000000000006,Danvers - Danvers High,00710505, 2.9, 2.9, 13.5, 78.1, 0.0, 0.0, 2.6, 49.5, 49.6, 0.9 +1,1,a-cure-i1,2023-24,0.0,25.700000000000003,Danvers - Great Oak,00710015, 6.7, 1.7, 14.0, 74.3, 0.0, 0.0, 3.3, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.0,Danvers - Highlands,00710010, 5.3, 3.4, 15.0, 75.0, 0.3, 0.0, 1.1, 54.7, 45.3, 0.0 +1,1,a-cure-i1,2023-24,3.4,21.599999999999994,Danvers - Holten Richmond Middle School,00710305, 3.2, 2.6, 12.7, 78.4, 0.0, 0.0, 3.1, 50.5, 49.3, 0.3 +1,1,a-cure-i1,2023-24,4.7,20.299999999999997,Danvers - Ivan G Smith,00710032, 5.7, 2.2, 11.1, 79.7, 0.0, 0.0, 1.4, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.099999999999994,Danvers - Riverside,00710030, 2.8, 1.9, 12.0, 82.9, 0.0, 0.0, 0.3, 51.9, 48.1, 0.0 +8.903225806451609,5,a-cure-i1,2023-24,6.9,12.400000000000006,Danvers - Willis E Thorpe,00710045, 1.2, 1.2, 9.5, 87.6, 0.0, 0.0, 0.6, 47.3, 52.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.400000000000006,Dartmouth - Andrew B. Cushman School,00720005, 1.9, 2.6, 7.7, 80.6, 0.0, 0.0, 7.1, 58.1, 41.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.099999999999994,Dartmouth - Dartmouth High,00720505, 2.2, 0.8, 7.6, 80.9, 0.0, 0.1, 8.3, 46.0, 53.8, 0.1 +1,1,a-cure-i1,2023-24,0.0,13.700000000000003,Dartmouth - Dartmouth Middle,00720050, 1.3, 1.4, 4.7, 86.3, 0.0, 0.1, 6.2, 54.6, 45.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.299999999999997,Dartmouth - George H Potter,00720030, 0.2, 1.2, 8.6, 83.7, 0.0, 0.0, 6.2, 48.0, 52.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.099999999999994,Dartmouth - James M. Quinn School,00720040, 1.4, 2.1, 7.4, 81.9, 0.0, 0.0, 7.2, 53.1, 46.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.799999999999997,Dartmouth - Joseph Demello,00720015, 2.7, 1.2, 6.9, 82.2, 0.3, 0.0, 6.6, 51.1, 48.6, 0.3 +1,1,a-cure-i1,2023-24,0.0,47.5,Dedham - Avery,00730010, 9.6, 1.6, 30.1, 52.5, 0.0, 0.0, 6.2, 56.2, 43.8, 0.0 +1,1,a-cure-i1,2023-24,1.9,34.3,Dedham - Dedham High,00730505, 10.7, 3.0, 17.2, 65.7, 0.1, 0.0, 3.3, 52.8, 46.8, 0.4 +1,1,a-cure-i1,2023-24,1.9,39.4,Dedham - Dedham Middle School,00730305, 11.2, 1.7, 21.0, 60.6, 0.2, 0.0, 5.3, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,35.2,Dedham - Early Childhood Center,00730005, 7.6, 4.7, 18.0, 64.8, 0.0, 0.0, 4.9, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,24.200000000000003,Dedham - Greenlodge,00730025, 2.3, 1.9, 12.3, 75.8, 0.0, 0.0, 7.7, 52.3, 47.4, 0.3 +1,1,a-cure-i1,2023-24,0.0,28.900000000000006,Dedham - Oakdale,00730030, 8.6, 0.8, 12.9, 71.1, 0.0, 0.0, 6.6, 44.9, 55.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,31.099999999999994,Dedham - Riverdale,00730045, 6.7, 3.1, 14.5, 68.9, 0.0, 0.0, 6.7, 45.1, 54.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,12.799999999999997,Deerfield - Deerfield Elementary,00740015, 1.3, 0.6, 5.1, 87.2, 0.0, 0.0, 5.8, 56.2, 43.8, 0.0 +1,1,a-cure-i1,2023-24,2.0,33.7,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 10.4, 3.5, 14.1, 66.3, 0.4, 0.2, 5.1, 49.6, 50.4, 0.0 +2.9132947976878616,2.91,a-cure-i1,2023-24,6.3,34.599999999999994,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 11.5, 2.0, 11.7, 65.4, 2.5, 0.9, 6.1, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,4.9,38.9,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 14.3, 2.4, 13.1, 61.1, 1.5, 0.1, 7.5, 50.3, 49.3, 0.3 +1,1,a-cure-i1,2023-24,4.2,40.3,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 14.3, 2.2, 16.0, 59.7, 1.4, 0.3, 6.2, 52.9, 47.1, 0.0 +1,1,a-cure-i1,2023-24,4.0,37.5,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 14.2, 2.5, 16.4, 62.5, 1.8, 0.0, 2.5, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,35.0,Dennis-Yarmouth - Station Avenue Elementary,06450025, 11.6, 1.2, 15.7, 65.0, 0.9, 0.0, 5.6, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.0,Dighton-Rehoboth - Dighton Elementary,06500005, 3.5, 1.9, 6.5, 84.0, 0.0, 0.0, 4.1, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,4.9,17.400000000000006,Dighton-Rehoboth - Dighton Middle School,06500305, 2.2, 1.6, 8.2, 82.6, 0.0, 0.0, 5.4, 52.0, 48.0, 0.0 +1,1,a-cure-i1,2023-24,1.7,14.799999999999997,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.8, 2.2, 6.0, 85.2, 0.2, 0.0, 4.6, 52.3, 47.4, 0.3 +6.628571428571428,5,a-cure-i1,2023-24,5.8,14.0,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 1.3, 1.3, 6.5, 86.0, 0.2, 0.0, 4.8, 53.6, 46.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.799999999999997,Dighton-Rehoboth - Palmer River,06500010, 1.7, 1.4, 6.1, 88.2, 0.0, 0.0, 2.7, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.599999999999994,Douglas - Douglas Elementary School,00770015, 0.8, 0.3, 5.7, 90.4, 0.0, 0.0, 2.8, 54.4, 45.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.900000000000006,Douglas - Douglas High School,00770505, 1.0, 1.3, 5.6, 90.1, 0.0, 0.0, 2.0, 50.2, 49.5, 0.3 +1,1,a-cure-i1,2023-24,0.0,15.599999999999994,Douglas - Douglas Middle School,00770305, 1.0, 1.4, 8.0, 84.4, 0.0, 0.0, 5.2, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.5,Douglas - Douglas Primary School,00770005, 1.4, 0.0, 10.2, 86.5, 0.0, 0.0, 1.9, 56.3, 43.7, 0.0 +1,1,a-cure-i1,2023-24,2.7,26.799999999999997,Dover - Chickering,00780005, 3.0, 12.3, 4.6, 73.2, 0.2, 0.0, 6.6, 51.7, 48.3, 0.0 +4.602739726027397,4.6,a-cure-i1,2023-24,8.4,29.200000000000003,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.8, 13.7, 5.7, 70.8, 0.2, 0.0, 6.8, 50.2, 49.5, 0.3 +5.255474452554743,5,a-cure-i1,2023-24,9.0,27.400000000000006,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 2.8, 11.8, 5.3, 72.6, 0.2, 0.0, 7.2, 51.4, 48.4, 0.2 +1,1,a-cure-i1,2023-24,0.0,40.8,Dracut - Brookside Elementary,00790035, 10.8, 11.0, 16.6, 59.2, 0.0, 0.0, 2.4, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,2.3,36.2,Dracut - Dracut Senior High,00790505, 9.3, 10.5, 14.3, 63.8, 0.1, 0.1, 1.9, 51.0, 48.3, 0.8 +1,1,a-cure-i1,2023-24,0.0,39.1,Dracut - George H. Englesby Elementary School,00790045, 5.4, 10.8, 19.9, 60.9, 0.2, 0.0, 2.8, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,43.9,Dracut - Greenmont Avenue,00790030, 9.6, 9.1, 21.7, 56.1, 0.0, 0.0, 3.5, 49.6, 50.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.900000000000006,Dracut - Joseph A Campbell Elementary,00790020, 8.7, 9.7, 10.2, 71.1, 0.2, 0.0, 0.2, 54.2, 45.8, 0.0 +2.5762711864406773,2.58,a-cure-i1,2023-24,5.699999999999999,35.400000000000006,Dracut - Justus C. Richardson Middle School,00790410, 8.3, 9.5, 15.7, 64.6, 0.0, 0.0, 2.0, 51.2, 48.8, 0.0 +9.876543209876543,5,a-cure-i1,2023-24,60.0,97.2,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 60.1, 0.7, 35.8, 2.8, 0.3, 0.0, 0.3, 46.5, 53.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.5,Dudley-Charlton Reg - Charlton Elementary,06580020, 1.2, 0.6, 11.0, 84.5, 0.3, 0.0, 2.4, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,1.9,15.599999999999994,Dudley-Charlton Reg - Charlton Middle School,06580310, 1.5, 0.8, 8.5, 84.4, 0.0, 0.2, 4.6, 54.2, 45.6, 0.2 +5.84738955823293,5,a-cure-i1,2023-24,9.1,24.900000000000006,Dudley-Charlton Reg - Dudley Elementary,06580005, 4.2, 0.6, 15.3, 75.1, 0.3, 0.0, 4.5, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.0,Dudley-Charlton Reg - Dudley Middle School,06580305, 4.2, 0.9, 15.0, 77.0, 0.0, 0.0, 2.9, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,4.1,17.200000000000003,Dudley-Charlton Reg - Heritage School,06580030, 1.6, 0.9, 10.9, 82.8, 0.0, 0.0, 3.8, 50.4, 49.6, 0.0 +7.529411764705883,5,a-cure-i1,2023-24,11.2,23.799999999999997,Dudley-Charlton Reg - Mason Road School,06580010, 1.7, 0.9, 18.2, 76.2, 0.0, 0.0, 3.0, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,4.8,18.700000000000003,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 3.6, 0.9, 10.8, 81.3, 0.1, 0.0, 3.3, 50.7, 49.0, 0.3 +1,1,a-cure-i1,2023-24,0.0,9.200000000000003,Duxbury - Alden School,00820004, 1.0, 1.4, 2.7, 90.8, 0.0, 0.0, 4.0, 51.9, 48.0, 0.2 +1,1,a-cure-i1,2023-24,2.7,10.299999999999997,Duxbury - Chandler Elementary,00820006, 0.6, 0.8, 4.6, 89.7, 0.5, 0.0, 3.9, 50.1, 49.9, 0.0 +1,1,a-cure-i1,2023-24,3.4,9.700000000000003,Duxbury - Duxbury High,00820505, 0.5, 1.9, 3.0, 90.3, 0.2, 0.0, 4.2, 50.2, 49.5, 0.2 +1,1,a-cure-i1,2023-24,0.0,7.099999999999994,Duxbury - Duxbury Middle,00820305, 0.8, 0.3, 2.9, 92.9, 0.2, 0.2, 2.7, 50.1, 49.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.0,East Bridgewater - Central,00830005, 6.4, 1.2, 6.2, 80.0, 0.2, 0.0, 6.0, 52.2, 47.8, 0.0 +1,1,a-cure-i1,2023-24,1.5,18.400000000000006,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 7.2, 0.6, 5.8, 81.6, 0.6, 0.1, 4.1, 55.4, 44.4, 0.2 +1,1,a-cure-i1,2023-24,0.0,18.0,East Bridgewater - Gordon W. Mitchell School,00830010, 7.1, 0.6, 7.1, 82.0, 0.5, 0.0, 2.6, 47.1, 52.9, 0.0 +3.3333333333333326,3.33,a-cure-i1,2023-24,5.5,26.400000000000006,East Longmeadow - Birchland Park,00870305, 2.1, 5.9, 13.0, 73.6, 0.3, 0.2, 4.9, 54.2, 45.6, 0.2 +4.451612903225807,4.45,a-cure-i1,2023-24,6.8999999999999995,24.799999999999997,East Longmeadow - East Longmeadow High,00870505, 4.9, 6.4, 10.0, 75.2, 0.1, 0.0, 3.4, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,31.400000000000006,East Longmeadow - Mapleshade,00870010, 5.6, 5.9, 17.1, 68.6, 0.0, 0.0, 2.8, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.799999999999997,East Longmeadow - Meadow Brook,00870013, 3.6, 4.3, 17.3, 69.2, 0.0, 0.0, 5.7, 56.8, 43.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.700000000000003,East Longmeadow - Mountain View,00870015, 4.0, 2.9, 12.8, 77.3, 0.0, 0.0, 2.9, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.400000000000006,Eastham - Eastham Elementary,00850005, 11.9, 0.0, 5.7, 71.6, 0.0, 0.0, 10.8, 57.4, 42.6, 0.0 +1,1,a-cure-i1,2023-24,2.5,26.299999999999997,Easthampton - Easthampton High,00860505, 0.8, 4.3, 17.4, 73.7, 0.3, 0.0, 3.5, 49.6, 48.5, 1.9 +1,1,a-cure-i1,2023-24,3.2,24.299999999999997,Easthampton - Mountain View School,00860415, 1.1, 2.1, 15.3, 75.7, 0.2, 0.3, 5.4, 51.2, 48.5, 0.3 +1,1,a-cure-i1,2023-24,0.0,31.599999999999994,Easton - Blanche A. Ames Elementary School,00880015, 9.1, 4.1, 12.5, 68.4, 0.0, 0.0, 5.9, 55.7, 44.3, 0.0 +1,1,a-cure-i1,2023-24,3.4,25.5,Easton - Easton Middle School,00880405, 9.0, 2.8, 8.9, 74.5, 0.6, 0.1, 4.0, 50.4, 49.6, 0.0 +5.5929203539823025,5,a-cure-i1,2023-24,7.9,22.599999999999994,Easton - Oliver Ames High,00880505, 8.1, 3.7, 7.2, 77.4, 0.2, 0.2, 3.3, 50.1, 49.6, 0.3 +3.224806201550388,3.22,a-cure-i1,2023-24,5.2,25.799999999999997,Easton - Richardson Olmsted School,00880025, 7.5, 4.2, 9.0, 74.2, 0.0, 0.0, 5.2, 50.7, 49.3, 0.0 +2.088772845953003,2.09,a-cure-i1,2023-24,5.0,38.3,Edgartown - Edgartown Elementary,00890005, 4.7, 0.3, 26.7, 61.7, 2.3, 0.0, 4.4, 50.8, 49.2, 0.0 +8.351378958120529,5,a-cure-i1,2023-24,51.099999999999994,97.9,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 38.4, 2.4, 53.6, 2.1, 0.0, 0.3, 3.2, 33.1, 66.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.799999999999997,Erving - Erving Elementary,00910030, 0.0, 0.0, 7.3, 86.2, 0.0, 0.0, 6.5, 55.3, 44.7, 0.0 +1,1,a-cure-i1,2023-24,3.3,23.799999999999997,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 2.6, 2.1, 15.7, 76.2, 0.1, 0.0, 3.4, 43.6, 56.1, 0.3 +1,1,a-cure-i1,2023-24,0.0,87.1,Everett - Adams School,00930003, 16.6, 14.1, 54.0, 12.9, 0.6, 0.0, 1.8, 47.9, 52.1, 0.0 +1.77319587628866,1.77,a-cure-i1,2023-24,8.6,77.6,Everett - Devens School,00930030, 18.4, 4.1, 53.1, 22.4, 0.0, 0.0, 2.0, 71.4, 26.5, 2.0 +2.315294117647059,2.32,a-cure-i1,2023-24,12.3,85.0,Everett - Everett High,00930505, 14.0, 4.8, 64.3, 15.0, 0.2, 0.1, 1.6, 50.5, 49.5, 0.0 +1.225305216426193,1.23,a-cure-i1,2023-24,6.8999999999999995,90.1,Everett - George Keverian School,00930028, 11.5, 3.7, 73.3, 9.9, 0.1, 0.1, 1.5, 49.5, 50.4, 0.1 +1.304964539007092,1.3,a-cure-i1,2023-24,6.8999999999999995,84.6,Everett - Lafayette School,00930038, 14.6, 7.0, 61.6, 15.4, 0.1, 0.0, 1.3, 50.6, 49.4, 0.0 +1.0442890442890442,1.04,a-cure-i1,2023-24,5.6,85.8,Everett - Madeline English School,00930018, 13.6, 4.1, 66.5, 14.2, 0.1, 0.0, 1.4, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,3.7,92.7,Everett - Parlin School,00930058, 9.8, 3.6, 79.0, 7.3, 0.0, 0.0, 0.4, 48.7, 51.3, 0.0 +1.1746384872080087,1.17,a-cure-i1,2023-24,6.6,89.9,Everett - Sumner G. Whittier School,00930010, 8.4, 2.8, 76.5, 10.1, 0.8, 0.0, 1.5, 51.1, 48.9, 0.0 +2.6824085005903187,2.68,a-cure-i1,2023-24,14.2,84.7,Everett - Webster Extension,00930001, 13.1, 19.4, 51.4, 15.3, 0.0, 0.0, 0.9, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,1.1,80.6,Everett - Webster School,00930015, 11.7, 4.4, 63.6, 19.4, 0.0, 0.0, 0.9, 54.3, 45.7, 0.0 +7.61904761904762,5,a-cure-i1,2023-24,42.00000000000001,88.2,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 4.8, 1.2, 80.2, 11.8, 0.4, 0.4, 1.2, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.299999999999997,Fairhaven - East Fairhaven,00940010, 1.3, 1.6, 10.5, 79.7, 0.7, 0.0, 6.2, 48.7, 51.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.200000000000003,Fairhaven - Fairhaven High,00940505, 1.7, 2.4, 8.1, 83.8, 0.3, 0.0, 3.7, 51.8, 48.1, 0.2 +1,1,a-cure-i1,2023-24,2.6,15.400000000000006,Fairhaven - Hastings Middle,00940305, 3.0, 2.1, 5.6, 84.6, 0.7, 0.0, 4.0, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.700000000000003,Fairhaven - Leroy Wood,00940030, 2.3, 2.8, 8.1, 81.3, 0.0, 0.0, 5.5, 49.8, 50.2, 0.0 +2.2816399286987523,2.28,a-cure-i1,2023-24,8.0,56.1,Fall River - B M C Durfee High,00950505, 11.2, 4.0, 32.2, 43.9, 0.2, 0.0, 8.4, 48.8, 51.0, 0.2 +1,1,a-cure-i1,2023-24,1.9,63.1,Fall River - Carlton M. Viveiros Elementary School,00950009, 11.0, 2.7, 41.0, 36.9, 0.1, 0.1, 8.0, 49.8, 50.2, 0.0 +4.530693069306931,4.53,a-cure-i1,2023-24,14.3,50.5,Fall River - Early Learning Center,00950001, 8.4, 3.2, 29.5, 49.5, 0.0, 0.0, 9.5, 61.1, 38.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,52.8,Fall River - FRPS Early Learning Center,00950002, 2.8, 3.7, 38.9, 47.2, 0.0, 0.0, 7.4, 60.2, 39.8, 0.0 +2.154351395730706,2.15,a-cure-i1,2023-24,8.2,60.9,Fall River - Henry Lord Community School,00950017, 12.0, 1.8, 36.8, 39.1, 0.1, 0.1, 10.0, 53.1, 46.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,40.2,Fall River - James Tansey,00950140, 7.8, 3.3, 19.0, 59.8, 0.0, 0.0, 10.1, 50.7, 49.0, 0.3 +1,1,a-cure-i1,2023-24,0.6,60.3,Fall River - John J Doran,00950045, 13.3, 0.2, 34.1, 39.7, 0.0, 0.0, 12.7, 55.0, 45.0, 0.0 +1,1,a-cure-i1,2023-24,3.3,59.1,Fall River - Letourneau Elementary School,00950013, 10.8, 2.3, 38.3, 40.9, 0.3, 0.3, 7.0, 52.3, 47.7, 0.0 +3.30791788856305,3.31,a-cure-i1,2023-24,14.100000000000001,68.2,Fall River - Mary Fonseca Elementary School,00950011, 16.1, 1.7, 41.5, 31.8, 0.0, 0.0, 8.9, 50.0, 50.0, 0.0 +3.0862944162436547,3.09,a-cure-i1,2023-24,11.4,59.1,Fall River - Matthew J Kuss Middle,00950320, 12.2, 4.2, 34.0, 40.9, 0.3, 0.0, 8.4, 52.6, 47.4, 0.0 +2.8693957115009745,2.87,a-cure-i1,2023-24,9.2,51.3,Fall River - Morton Middle,00950315, 12.5, 2.9, 25.8, 48.7, 0.1, 0.0, 9.9, 54.6, 45.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,48.0,Fall River - North End Elementary,00950005, 12.2, 1.2, 22.5, 52.0, 0.2, 0.0, 11.9, 50.9, 49.1, 0.0 +1.2730109204368174,1.27,a-cure-i1,2023-24,5.1,64.1,Fall River - Resiliency Preparatory Academy,00950525, 18.5, 0.5, 34.2, 35.9, 0.0, 0.0, 10.9, 59.8, 40.2, 0.0 +3.447368421052632,3.45,a-cure-i1,2023-24,13.1,60.8,Fall River - Samuel Watson,00950145, 17.0, 0.8, 29.4, 39.2, 0.0, 0.4, 13.2, 49.4, 50.6, 0.0 +2.446680080482897,2.45,a-cure-i1,2023-24,7.6,49.7,Fall River - Spencer Borden,00950130, 13.3, 5.7, 22.3, 50.3, 0.0, 0.0, 8.3, 55.9, 44.1, 0.0 +6.088495575221239,5,a-cure-i1,2023-24,17.2,45.2,Fall River - Stone PK-12 School,00950340, 11.3, 0.0, 22.6, 54.8, 1.6, 0.0, 9.7, 74.2, 25.8, 0.0 +5.856905158069884,5,a-cure-i1,2023-24,22.0,60.1,Fall River - Talbot Innovation School,00950305, 10.4, 2.7, 39.0, 39.9, 0.4, 0.2, 7.5, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,2.9,63.2,Fall River - William S Greene,00950065, 10.3, 3.1, 40.2, 36.8, 0.4, 0.3, 8.9, 50.2, 49.8, 0.0 +4.616393442622951,4.62,a-cure-i1,2023-24,8.8,30.5,Falmouth - East Falmouth Elementary,00960005, 7.7, 3.0, 9.7, 69.5, 1.0, 0.0, 9.1, 58.1, 41.9, 0.0 +1,1,a-cure-i1,2023-24,4.0,24.099999999999994,Falmouth - Falmouth High,00960505, 7.0, 1.2, 8.9, 75.9, 1.5, 0.0, 5.4, 51.7, 47.9, 0.4 +1,1,a-cure-i1,2023-24,4.2,25.299999999999997,Falmouth - Lawrence,00960405, 4.8, 0.9, 10.2, 74.7, 1.7, 0.0, 7.6, 50.3, 49.5, 0.2 +3.4909090909090907,3.49,a-cure-i1,2023-24,6.0,27.5,Falmouth - Morse Pond School,00960305, 5.8, 1.7, 12.1, 72.5, 0.6, 0.0, 7.3, 51.7, 48.1, 0.2 +1,1,a-cure-i1,2023-24,3.2,26.900000000000006,Falmouth - Mullen-Hall,00960020, 1.6, 2.7, 13.8, 73.1, 1.1, 0.0, 7.7, 51.6, 48.4, 0.0 +13.3953488372093,5,a-cure-i1,2023-24,14.399999999999999,17.200000000000003,Falmouth - North Falmouth Elementary,00960030, 1.3, 1.3, 7.7, 82.8, 0.7, 0.0, 6.1, 45.8, 54.2, 0.0 +3.18819188191882,3.19,a-cure-i1,2023-24,5.4,27.099999999999994,Falmouth - Teaticket,00960015, 5.5, 1.6, 11.0, 72.9, 0.8, 0.0, 8.2, 58.0, 40.8, 1.2 +1,1,a-cure-i1,2023-24,4.9,6.200000000000003,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 5.4, 93.8, 0.0, 0.0, 0.8, 48.1, 51.9, 0.0 +1.7708333333333335,1.77,a-cure-i1,2023-24,8.5,76.8,Fitchburg - Arthur M Longsjo Middle School,00970315, 8.5, 4.2, 55.9, 23.2, 0.4, 0.0, 7.8, 54.3, 45.7, 0.0 +1.7919999999999996,1.79,a-cure-i1,2023-24,8.399999999999999,75.0,Fitchburg - Crocker Elementary,00970016, 7.9, 3.2, 56.0, 25.0, 0.3, 0.0, 7.6, 48.7, 51.3, 0.0 +4.141414141414141,4.14,a-cure-i1,2023-24,20.5,79.2,Fitchburg - Fitchburg High,00970505, 8.3, 5.6, 58.6, 20.8, 0.1, 0.0, 6.6, 48.6, 50.8, 0.5 +4.1659513590844055,4.17,a-cure-i1,2023-24,18.2,69.9,Fitchburg - Goodrich Academy,00970510, 5.8, 1.8, 57.5, 30.1, 0.0, 0.0, 4.9, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,4.1,81.5,Fitchburg - McKay Elementary School,00970340, 6.0, 4.3, 64.0, 18.5, 0.3, 0.0, 6.8, 52.4, 47.6, 0.0 +1.7165562913907289,1.72,a-cure-i1,2023-24,8.100000000000001,75.5,Fitchburg - Memorial Middle School,00970048, 6.1, 4.1, 57.2, 24.5, 0.0, 0.0, 8.0, 52.6, 47.2, 0.2 +2.2823179791976225,2.28,a-cure-i1,2023-24,9.6,67.3,Fitchburg - Reingold Elementary,00970043, 4.2, 4.7, 53.3, 32.7, 0.0, 0.0, 5.1, 55.7, 44.3, 0.0 +2.9379128137384414,2.94,a-cure-i1,2023-24,13.900000000000002,75.7,Fitchburg - South Street Early Learning Center,00970060, 7.1, 5.0, 57.4, 24.3, 0.0, 0.2, 6.1, 55.8, 44.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,1.2000000000000028,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 51.8, 48.2, 0.0 +14.235294117647065,5,a-cure-i1,2023-24,12.1,13.599999999999994,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 1.4, 0.9, 7.0, 86.4, 0.0, 0.0, 4.2, 50.0, 47.2, 2.8 +1,1,a-cure-i1,2023-24,3.4,21.400000000000006,Foxborough - Charles Taylor Elementary,00990050, 5.4, 5.0, 6.1, 78.6, 0.0, 0.0, 5.0, 58.9, 41.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.599999999999994,Foxborough - Foxborough High,00990505, 10.0, 4.2, 8.5, 74.4, 0.3, 0.0, 2.6, 51.1, 48.7, 0.1 +1,1,a-cure-i1,2023-24,3.5,29.700000000000003,Foxborough - John J Ahern,00990405, 8.2, 7.0, 8.9, 70.3, 0.3, 0.1, 5.2, 52.1, 47.9, 0.0 +3.163498098859316,3.16,a-cure-i1,2023-24,5.2,26.299999999999997,Foxborough - Mabelle M Burrell,00990015, 6.9, 5.7, 9.1, 73.7, 0.0, 0.0, 4.5, 55.0, 45.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,31.200000000000003,Foxborough - Vincent M Igo Elementary,00990020, 9.4, 7.8, 9.9, 68.8, 0.0, 0.0, 4.0, 56.5, 43.5, 0.0 +3.6576787807737396,3.66,a-cure-i1,2023-24,19.5,85.3,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 70.3, 5.5, 4.8, 14.7, 0.4, 0.1, 4.2, 47.2, 52.8, 0.0 +12.306264501160092,5,a-cure-i1,2023-24,66.3,86.2,Framingham - Barbieri Elementary,01000035, 1.5, 0.2, 80.7, 13.8, 0.0, 0.0, 3.8, 47.3, 52.7, 0.0 +6.438502673796792,5,a-cure-i1,2023-24,30.1,74.8,Framingham - Brophy,01000006, 5.7, 4.3, 59.6, 25.2, 0.2, 0.0, 5.1, 53.3, 46.5, 0.2 +7.127012522361359,5,a-cure-i1,2023-24,24.9,55.9,Framingham - Cameron Middle School,01000302, 8.2, 2.7, 40.8, 44.1, 0.0, 0.0, 4.3, 54.8, 45.2, 0.0 +7.258687258687259,5,a-cure-i1,2023-24,23.5,51.8,Framingham - Charlotte A Dunning,01000007, 5.7, 7.8, 32.6, 48.2, 0.0, 0.0, 5.7, 51.6, 48.4, 0.0 +4.830188679245284,4.83,a-cure-i1,2023-24,17.6,58.3,Framingham - Framingham High School,01000515, 6.5, 4.4, 43.5, 41.7, 0.0, 0.0, 3.9, 50.1, 49.3, 0.6 +6.197991391678622,5,a-cure-i1,2023-24,27.0,69.7,Framingham - Fuller Middle,01000305, 6.7, 1.8, 56.7, 30.3, 0.0, 0.0, 4.4, 49.3, 50.5, 0.2 +5.455797933409874,5,a-cure-i1,2023-24,29.7,87.1,Framingham - Harmony Grove Elementary,01000055, 7.8, 0.8, 76.5, 12.9, 0.0, 0.0, 1.9, 53.5, 46.3, 0.2 +1,1,a-cure-i1,2023-24,4.0,53.7,Framingham - Hemenway,01000015, 6.3, 10.0, 28.0, 46.3, 0.0, 0.0, 9.4, 52.6, 47.2, 0.2 +3.6684303350970016,3.67,a-cure-i1,2023-24,13.0,56.7,Framingham - Juniper Hill School,01000001, 3.2, 5.8, 39.7, 43.3, 0.0, 0.0, 7.9, 60.6, 39.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,57.0,Framingham - King Elementary School,01000005, 4.9, 7.6, 37.9, 43.0, 0.0, 0.0, 6.6, 49.6, 49.6, 0.7 +1.7376586741889986,1.74,a-cure-i1,2023-24,7.7,70.9,Framingham - Mary E Stapleton Elementary,01000045, 9.0, 4.2, 52.8, 29.1, 0.0, 0.0, 4.8, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,3.6999999999999997,72.8,Framingham - Miriam F McCarthy School,01000050, 7.9, 2.0, 55.8, 27.2, 0.0, 0.0, 7.1, 53.6, 46.4, 0.0 +1.3075780089153046,1.31,a-cure-i1,2023-24,5.5,67.3,Framingham - Potter Road,01000039, 4.3, 1.5, 57.0, 32.7, 0.0, 0.0, 4.5, 50.7, 49.3, 0.0 +5.700516351118761,5,a-cure-i1,2023-24,20.700000000000003,58.1,Framingham - Walsh Middle,01000310, 5.4, 4.1, 43.6, 41.9, 0.0, 0.0, 5.0, 47.8, 51.7, 0.5 +17.13475177304965,5,a-cure-i1,2023-24,15.1,14.099999999999994,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 2.4, 1.9, 4.6, 85.9, 0.0, 0.0, 5.1, 43.8, 50.3, 5.9 +1,1,a-cure-i1,2023-24,1.2,18.299999999999997,Franklin - Annie Sullivan Middle School,01010040, 5.6, 3.4, 5.9, 81.7, 0.0, 0.6, 2.8, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,42.8,Franklin - Franklin Early Childhood Development Center,01010003, 5.9, 26.3, 5.3, 57.2, 2.0, 1.3, 2.0, 61.8, 38.2, 0.0 +1,1,a-cure-i1,2023-24,1.7999999999999998,21.900000000000006,Franklin - Franklin High,01010505, 3.4, 8.8, 6.8, 78.1, 0.1, 0.3, 2.5, 51.5, 48.0, 0.5 +1,1,a-cure-i1,2023-24,0.0,17.400000000000006,Franklin - Helen Keller Elementary,01010012, 3.4, 5.0, 7.0, 82.6, 0.0, 0.4, 1.6, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,1.1,17.099999999999994,Franklin - Horace Mann,01010405, 1.3, 8.3, 4.9, 82.9, 0.3, 0.5, 1.8, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.299999999999997,Franklin - J F Kennedy Memorial,01010013, 1.2, 10.6, 4.2, 80.7, 0.0, 0.6, 2.7, 55.9, 43.8, 0.3 +1,1,a-cure-i1,2023-24,0.0,21.599999999999994,Franklin - Jefferson Elementary,01010010, 2.1, 5.7, 7.8, 78.4, 0.0, 0.3, 5.7, 55.3, 44.1, 0.6 +1,1,a-cure-i1,2023-24,4.2,23.599999999999994,Franklin - Oak Street Elementary,01010030, 3.6, 8.0, 7.8, 76.4, 0.3, 0.5, 3.4, 51.3, 48.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,27.5,Franklin - Parmenter,01010032, 5.2, 7.2, 12.0, 72.5, 0.7, 0.3, 2.1, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,4.4,27.599999999999994,Franklin - Remington Middle,01010310, 6.8, 7.1, 9.4, 72.4, 0.0, 0.9, 3.4, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,2.8,10.599999999999994,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.6, 0.2, 6.1, 89.4, 0.2, 0.3, 3.2, 56.5, 43.0, 0.5 +1,1,a-cure-i1,2023-24,3.5,7.299999999999997,Freetown-Lakeville - Apponequet Regional High,06650505, 2.0, 1.2, 2.3, 92.7, 0.0, 0.0, 1.8, 47.6, 52.0, 0.4 +1,1,a-cure-i1,2023-24,0.0,11.700000000000003,Freetown-Lakeville - Assawompset Elementary School,06650002, 4.1, 1.3, 3.0, 88.3, 0.0, 0.2, 3.2, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.200000000000003,Freetown-Lakeville - Freetown Elementary School,06650001, 0.8, 1.1, 3.4, 90.8, 0.3, 0.0, 3.7, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,4.7,11.200000000000003,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 3.8, 1.1, 3.5, 88.8, 0.0, 0.0, 2.7, 49.9, 50.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.400000000000006,Freetown-Lakeville - George R Austin Intermediate School,06650015, 1.9, 0.4, 5.2, 88.6, 0.0, 0.0, 3.9, 53.0, 46.8, 0.2 +1,1,a-cure-i1,2023-24,2.0,19.799999999999997,Frontier - Frontier Regional,06700505, 2.0, 3.5, 7.3, 80.2, 0.0, 0.0, 7.1, 51.7, 47.3, 1.0 +1,1,a-cure-i1,2023-24,0.0,37.8,Gardner - Gardner Academy for Learning and Technology,01030515, 7.9, 0.8, 20.5, 62.2, 0.0, 0.0, 8.7, 43.3, 55.9, 0.8 +1,1,a-cure-i1,2023-24,3.5999999999999996,43.1,Gardner - Gardner Elementary School,01030001, 3.7, 1.1, 31.1, 56.9, 0.3, 0.0, 6.8, 54.0, 45.9, 0.1 +3.278048780487805,3.28,a-cure-i1,2023-24,8.4,41.0,Gardner - Gardner High,01030505, 4.7, 1.7, 26.8, 59.0, 0.2, 0.0, 7.5, 50.3, 48.2, 1.5 +1,1,a-cure-i1,2023-24,0.0,41.4,Gardner - Gardner Middle School,01030405, 4.1, 1.2, 29.0, 58.6, 0.4, 0.0, 6.6, 50.7, 48.9, 0.4 +1,1,a-cure-i1,2023-24,0.0,3.4000000000000057,Gateway - Chester Elementary,06720059, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 51.3, 48.7, 0.0 +7.804878048780489,5,a-cure-i1,2023-24,6.0,12.299999999999997,Gateway - Gateway Regional High,06720505, 1.9, 0.0, 9.3, 87.7, 0.6, 0.0, 0.6, 50.0, 50.0, 0.0 +19.12195121951219,5,a-cure-i1,2023-24,9.8,8.200000000000003,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.5, 5.1, 91.8, 0.0, 0.0, 2.6, 52.0, 47.4, 0.5 +10.29885057471264,5,a-cure-i1,2023-24,5.6,8.700000000000003,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 5.8, 91.3, 0.0, 0.4, 2.5, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,4.9,14.200000000000003,Georgetown - Georgetown High School,01050505, 1.0, 1.0, 10.0, 85.8, 0.0, 0.7, 1.4, 50.5, 49.5, 0.0 +1,1,a-cure-i1,2023-24,2.1,8.5,Georgetown - Georgetown Middle School,01050305, 1.6, 1.1, 3.7, 91.5, 0.0, 0.0, 2.1, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,7.5,Georgetown - Penn Brook,01050010, 0.4, 0.7, 3.7, 92.5, 0.0, 0.0, 2.6, 52.0, 48.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,4.5,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.1, 95.5, 0.0, 0.0, 3.4, 56.8, 43.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.799999999999997,Gill-Montague - Gill Elementary,06740005, 0.9, 0.9, 7.0, 84.2, 0.0, 0.0, 7.0, 52.6, 47.4, 0.0 +4.965517241379311,4.97,a-cure-i1,2023-24,6.300000000000001,20.299999999999997,Gill-Montague - Great Falls Middle,06740310, 0.8, 0.0, 14.3, 79.7, 0.0, 0.4, 4.6, 56.5, 42.2, 1.3 +1,1,a-cure-i1,2023-24,0.0,29.900000000000006,Gill-Montague - Hillcrest Elementary School,06740015, 0.7, 1.5, 19.7, 70.1, 0.7, 0.0, 7.3, 51.1, 48.9, 0.0 +3.908794788273615,3.91,a-cure-i1,2023-24,7.5,30.700000000000003,Gill-Montague - Sheffield Elementary School,06740050, 1.9, 0.5, 20.8, 69.3, 0.0, 0.0, 7.5, 57.1, 42.9, 0.0 +3.3817034700315456,3.38,a-cure-i1,2023-24,6.7,31.700000000000003,Gill-Montague - Turners Fall High,06740505, 2.0, 0.5, 18.8, 68.3, 0.5, 0.0, 9.9, 52.5, 47.0, 0.5 +4.578241430700447,4.58,a-cure-i1,2023-24,19.2,67.1,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 13.7, 1.2, 47.8, 32.9, 0.2, 0.0, 4.2, 46.6, 53.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.299999999999997,Gloucester - Beeman Memorial,01070010, 2.4, 1.0, 23.0, 69.7, 0.0, 0.0, 3.8, 46.7, 53.3, 0.0 +3.5976331360946747,3.6,a-cure-i1,2023-24,7.6,33.8,Gloucester - East Veterans Elementary School,01070030, 2.7, 2.9, 22.4, 66.2, 0.0, 0.4, 5.3, 49.6, 50.4, 0.0 +1,1,a-cure-i1,2023-24,0.5,21.099999999999994,Gloucester - Gloucester High,01070505, 1.1, 1.7, 15.1, 78.9, 0.6, 0.1, 2.4, 52.3, 47.2, 0.5 +1,1,a-cure-i1,2023-24,0.0,20.200000000000003,Gloucester - Gloucester PreSchool,01070025, 1.8, 3.5, 11.4, 79.8, 0.0, 0.0, 3.5, 57.0, 43.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.5,Gloucester - Plum Cove School,01070042, 1.9, 0.0, 4.8, 86.5, 0.0, 0.0, 6.7, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.5,Gloucester - Ralph B O'Maley Middle,01070305, 1.9, 0.6, 15.2, 77.5, 0.2, 0.3, 4.3, 47.9, 52.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.099999999999994,Gloucester - West Parish,01070050, 0.8, 0.8, 7.8, 84.9, 0.3, 0.8, 4.6, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,100.0,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +3.526530612244898,3.53,a-cure-i1,2023-24,5.4,24.5,Grafton - Grafton High School,01100505, 2.4, 10.5, 8.6, 75.5, 0.4, 0.1, 2.4, 51.1, 48.7, 0.2 +3.4705882352941173,3.47,a-cure-i1,2023-24,5.9,27.200000000000003,Grafton - Grafton Middle,01100305, 2.2, 13.5, 6.8, 72.8, 0.4, 0.2, 4.1, 53.6, 46.2, 0.2 +1,1,a-cure-i1,2023-24,2.8,29.700000000000003,Grafton - Millbury Street Elementary School,01100200, 2.7, 15.4, 8.5, 70.3, 0.5, 0.0, 2.5, 53.8, 46.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,34.5,Grafton - North Grafton Elementary,01100025, 4.0, 17.9, 7.9, 65.5, 1.2, 0.0, 3.6, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.799999999999997,Grafton - North Street Elementary School,01100030, 3.5, 16.4, 6.5, 70.2, 0.7, 0.0, 2.6, 50.4, 49.5, 0.2 +1,1,a-cure-i1,2023-24,0.0,31.599999999999994,Grafton - South Grafton Elementary,01100005, 2.4, 17.5, 7.2, 68.4, 1.0, 0.0, 3.4, 50.2, 49.5, 0.3 +1,1,a-cure-i1,2023-24,0.0,18.200000000000003,Granby - East Meadow,01110004, 0.7, 2.5, 10.0, 81.8, 0.2, 0.0, 4.7, 52.0, 48.0, 0.0 +1,1,a-cure-i1,2023-24,4.7,18.599999999999994,Granby - Granby Jr Sr High School,01110505, 0.0, 1.7, 13.4, 81.4, 0.3, 0.0, 3.1, 52.6, 47.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,48.1,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 7.6, 5.9, 26.3, 51.9, 0.1, 0.3, 8.0, 45.0, 53.8, 1.2 +1,1,a-cure-i1,2023-24,2.9000000000000004,30.0,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 3.9, 2.5, 17.2, 70.0, 0.3, 0.0, 6.2, 57.3, 42.0, 0.7 +3.169811320754717,3.17,a-cure-i1,2023-24,16.8,84.8,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.8, 0.8, 81.6, 15.2, 0.0, 0.0, 0.6, 46.7, 53.1, 0.2 +1.7476923076923077,1.75,a-cure-i1,2023-24,7.1,65.0,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 7.6, 20.0, 33.4, 35.0, 0.2, 0.0, 3.8, 50.6, 48.4, 1.0 +2.905908096280087,2.91,a-cure-i1,2023-24,8.299999999999999,45.7,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 9.5, 0.7, 29.2, 54.3, 0.3, 0.1, 6.0, 51.2, 48.7, 0.1 +1,1,a-cure-i1,2023-24,0.0,15.200000000000003,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 11.9, 84.8, 0.0, 0.0, 3.3, 57.1, 42.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,33.5,Greenfield - Federal Street School,01140010, 2.7, 1.1, 24.7, 66.5, 0.0, 0.0, 4.9, 49.5, 50.5, 0.0 +3.5801104972375692,3.58,a-cure-i1,2023-24,8.100000000000001,36.2,Greenfield - Greenfield High,01140505, 4.5, 2.0, 24.1, 63.8, 0.0, 0.0, 5.6, 49.8, 50.2, 0.0 +5.962732919254658,5,a-cure-i1,2023-24,12.0,32.2,Greenfield - Greenfield Middle,01140305, 3.7, 2.3, 20.3, 67.8, 0.3, 0.0, 5.6, 55.8, 44.2, 0.0 +2.6666666666666665,2.67,a-cure-i1,2023-24,7.1,42.6,Greenfield - Newton School,01140035, 6.0, 0.0, 31.1, 57.4, 0.0, 1.1, 4.4, 46.4, 53.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.900000000000006,Greenfield - The Academy of Early Learning at North Parish,01140005, 2.2, 1.1, 17.8, 71.1, 0.0, 0.0, 7.8, 55.6, 44.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.299999999999997,Groton-Dunstable - Boutwell School,06730001, 4.0, 2.7, 2.7, 86.7, 0.0, 0.0, 4.0, 61.3, 38.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.299999999999997,Groton-Dunstable - Florence Roche School,06730010, 2.0, 9.4, 4.1, 78.7, 0.4, 0.2, 5.1, 49.0, 51.0, 0.0 +1,1,a-cure-i1,2023-24,2.4,14.700000000000003,Groton-Dunstable - Groton Dunstable Regional,06730505, 1.7, 7.7, 2.8, 85.3, 0.1, 0.1, 2.2, 50.2, 49.3, 0.4 +1,1,a-cure-i1,2023-24,2.1,19.099999999999994,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 2.2, 8.0, 3.9, 80.9, 0.4, 0.1, 4.3, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.799999999999997,Groton-Dunstable - Swallow/Union School,06730005, 0.6, 7.2, 6.9, 82.2, 0.0, 0.0, 3.1, 56.3, 43.8, 0.0 +7.924528301886792,5,a-cure-i1,2023-24,10.5,21.200000000000003,Hadley - Hadley Elementary,01170015, 3.4, 5.5, 9.6, 78.8, 0.0, 0.0, 2.7, 52.7, 47.3, 0.0 +4.971428571428571,4.97,a-cure-i1,2023-24,8.7,28.0,Hadley - Hopkins Academy,01170505, 4.3, 4.7, 12.8, 72.0, 0.5, 2.4, 3.3, 55.5, 44.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.700000000000003,Halifax - Halifax Elementary,01180005, 1.5, 0.0, 5.3, 91.3, 0.2, 0.0, 1.8, 53.4, 46.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.799999999999997,Hamilton-Wenham - Bessie Buker Elementary,06750007, 1.2, 4.2, 8.9, 84.2, 0.0, 0.0, 1.5, 54.1, 45.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.799999999999997,Hamilton-Wenham - Cutler School,06750010, 0.0, 1.2, 6.3, 90.2, 0.0, 0.0, 2.4, 49.8, 50.2, 0.0 +10.992366412213745,5,a-cure-i1,2023-24,9.0,13.099999999999994,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.7, 4.5, 4.1, 86.9, 0.0, 0.7, 3.2, 46.8, 52.9, 0.2 +15.05185185185185,5,a-cure-i1,2023-24,12.7,13.5,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 4.8, 5.0, 86.5, 0.0, 0.0, 3.7, 43.7, 56.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.900000000000006,Hamilton-Wenham - Winthrop School,06750015, 0.9, 4.8, 5.7, 86.1, 0.0, 0.0, 2.4, 51.4, 48.6, 0.0 +2.503259452411995,2.5,a-cure-i1,2023-24,12.0,76.7,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 26.8, 4.0, 42.0, 23.3, 0.5, 0.2, 3.3, 53.9, 45.8, 0.4 +4.038240917782027,4.04,a-cure-i1,2023-24,13.200000000000001,52.3,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 12.7, 2.8, 34.5, 47.7, 0.5, 0.0, 1.8, 57.1, 42.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.0,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.5, 0.4, 9.8, 83.0, 0.0, 0.0, 4.3, 50.0, 50.0, 0.0 +4.930232558139534,4.93,a-cure-i1,2023-24,5.3,17.200000000000003,Hampden-Wilbraham - Mile Tree Elementary,06800025, 5.0, 0.8, 5.6, 82.8, 0.3, 0.0, 5.6, 56.9, 43.1, 0.0 +1,1,a-cure-i1,2023-24,1.3,24.400000000000006,Hampden-Wilbraham - Minnechaug Regional High,06800505, 4.3, 3.3, 11.6, 75.6, 0.1, 0.0, 5.1, 49.1, 50.8, 0.1 +1,1,a-cure-i1,2023-24,0.0,19.200000000000003,Hampden-Wilbraham - Soule Road,06800030, 3.1, 2.5, 8.0, 80.8, 0.0, 0.6, 5.0, 52.6, 47.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.799999999999997,Hampden-Wilbraham - Stony Hill School,06800050, 2.7, 1.7, 7.9, 84.2, 0.0, 0.0, 3.4, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.299999999999997,Hampden-Wilbraham - Wilbraham Middle,06800310, 3.1, 2.8, 10.2, 80.7, 0.0, 0.0, 3.1, 51.8, 48.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.700000000000003,Hampshire - Hampshire Regional High,06830505, 0.7, 1.3, 4.5, 90.3, 0.1, 0.0, 3.0, 47.4, 51.6, 1.0 +1,1,a-cure-i1,2023-24,0.0,15.5,Hancock - Hancock Elementary,01210005, 1.7, 3.4, 8.6, 84.5, 0.0, 0.0, 1.7, 31.0, 69.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.799999999999997,Hanover - Cedar Elementary,01220004, 1.6, 1.8, 3.1, 90.2, 0.0, 0.0, 3.3, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,3.2,8.099999999999994,Hanover - Center Elementary,01220005, 1.9, 1.6, 3.2, 91.9, 0.2, 0.0, 1.3, 48.6, 51.3, 0.2 +1,1,a-cure-i1,2023-24,4.0,7.599999999999994,Hanover - Hanover High,01220505, 1.8, 2.3, 2.5, 92.4, 0.0, 0.0, 1.0, 50.1, 49.7, 0.1 +1,1,a-cure-i1,2023-24,3.6,7.0,Hanover - Hanover Middle,01220305, 0.4, 2.3, 2.9, 93.0, 0.0, 0.0, 1.5, 53.1, 46.9, 0.0 +1,1,a-cure-i1,2023-24,3.3,31.700000000000003,Harvard - Hildreth Elementary School,01250005, 2.7, 15.2, 5.2, 68.3, 0.2, 0.0, 8.4, 54.8, 45.2, 0.0 +6.095238095238096,5,a-cure-i1,2023-24,9.600000000000001,25.200000000000003,Harvard - The Bromfield High School,01250505, 1.8, 14.5, 4.3, 74.8, 0.0, 0.0, 4.6, 46.5, 53.2, 0.3 +1,1,a-cure-i1,2023-24,0.0,27.400000000000006,Harvard - The Bromfield Middle School,01250305, 4.4, 14.3, 4.0, 72.6, 0.0, 0.0, 4.8, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.700000000000003,Hatfield - Hatfield Elementary,01270005, 0.5, 1.0, 2.0, 91.3, 0.0, 0.0, 5.1, 48.5, 51.5, 0.0 +20.4,5,a-cure-i1,2023-24,5.1,4.0,Hatfield - Smith Academy,01270505, 0.0, 0.8, 1.6, 96.0, 0.0, 0.0, 1.6, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,65.9,Haverhill - Bartlett School and Assessment Center,01280073, 12.2, 2.4, 48.8, 34.1, 0.0, 0.0, 2.4, 78.0, 22.0, 0.0 +3.8591549295774654,3.86,a-cure-i1,2023-24,13.700000000000001,56.8,Haverhill - Bradford Elementary,01280008, 5.2, 1.5, 48.4, 43.2, 0.0, 0.0, 1.7, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,3.4,40.1,Haverhill - Caleb Dustin Hunking School,01280030, 5.1, 2.0, 30.2, 59.9, 0.0, 0.0, 2.9, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,4.2,66.3,Haverhill - Consentino Middle School,01280100, 5.0, 1.6, 57.1, 33.7, 0.0, 0.0, 2.7, 50.0, 50.0, 0.0 +2.9952,3.0,a-cure-i1,2023-24,11.700000000000001,62.5,Haverhill - Dr Paul Nettle,01280050, 3.8, 2.3, 53.3, 37.5, 0.0, 0.0, 3.2, 51.0, 49.0, 0.0 +5.840776699029126,5,a-cure-i1,2023-24,18.8,51.5,Haverhill - Gateway Academy,01280515, 1.0, 1.0, 48.5, 48.5, 0.0, 0.0, 1.0, 50.5, 47.6, 1.9 +1,1,a-cure-i1,2023-24,0.0,54.2,Haverhill - Golden Hill,01280026, 5.3, 1.3, 45.2, 45.8, 0.2, 0.0, 2.3, 48.5, 51.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,61.8,Haverhill - Greenleaf Academy,01280033, 11.8, 0.0, 47.1, 38.2, 0.0, 0.0, 2.9, 73.5, 26.5, 0.0 +3.4174757281553396,3.42,a-cure-i1,2023-24,11.0,51.5,Haverhill - Haverhill High,01280505, 5.7, 1.8, 41.7, 48.5, 0.3, 0.2, 1.9, 51.9, 47.9, 0.3 +1,1,a-cure-i1,2023-24,3.8,58.0,Haverhill - John G Whittier,01280085, 7.0, 1.0, 46.2, 42.0, 0.6, 0.0, 3.2, 50.0, 49.8, 0.2 +1,1,a-cure-i1,2023-24,2.1,63.4,Haverhill - Moody,01280045, 8.5, 3.3, 49.7, 36.6, 0.7, 0.7, 0.7, 59.5, 40.5, 0.0 +1,1,a-cure-i1,2023-24,4.1,68.2,Haverhill - Moody Preschool Extension,01280001, 8.1, 0.7, 57.4, 31.8, 0.7, 0.0, 1.4, 57.4, 42.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,62.9,Haverhill - Pentucket Lake Elementary,01280054, 7.8, 0.6, 51.5, 37.1, 0.4, 0.2, 2.4, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,3.8,69.6,Haverhill - Silver Hill Elementary School,01280067, 8.2, 2.3, 56.9, 30.4, 0.0, 0.0, 2.3, 48.8, 51.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,72.9,Haverhill - Tilton,01280075, 4.5, 0.4, 64.6, 27.1, 0.2, 0.4, 2.7, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,4.3,46.3,Haverhill - Walnut Square,01280080, 8.5, 1.2, 34.8, 53.7, 0.0, 0.0, 1.8, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,7.099999999999994,Hawlemont - Hawlemont Regional,06850005, 0.0, 1.8, 1.8, 92.9, 1.8, 0.0, 1.8, 48.2, 51.8, 0.0 +9.904000000000002,5,a-cure-i1,2023-24,61.900000000000006,100.0,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 72.6, 0.0, 24.2, 0.0, 0.0, 0.0, 3.2, 56.8, 43.2, 0.0 +2.7072243346007605,2.71,a-cure-i1,2023-24,8.9,52.6,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 6.9, 0.0, 38.5, 47.4, 0.0, 0.0, 7.2, 48.0, 52.0, 0.0 +1,1,a-cure-i1,2023-24,3.0,19.700000000000003,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 2.8, 7.3, 80.3, 0.0, 0.0, 9.6, 54.1, 43.1, 2.8 +1,1,a-cure-i1,2023-24,3.1,7.5,Hingham - East Elementary School,01310005, 1.5, 1.5, 1.7, 92.5, 0.2, 0.0, 2.5, 54.7, 45.3, 0.0 +1,1,a-cure-i1,2023-24,1.0,13.099999999999994,Hingham - Hingham High,01310505, 2.2, 3.1, 4.5, 86.9, 0.1, 0.0, 3.2, 50.7, 48.6, 0.6 +7.608391608391611,5,a-cure-i1,2023-24,6.800000000000001,14.299999999999997,Hingham - Hingham Middle School,01310410, 1.2, 3.1, 5.2, 85.7, 0.0, 0.0, 4.8, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.0,Hingham - Plymouth River,01310019, 3.9, 1.7, 5.9, 86.0, 0.0, 0.0, 2.5, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,3.9,9.900000000000006,Hingham - South Elementary,01310020, 2.4, 4.9, 1.4, 90.1, 0.0, 0.0, 1.2, 50.5, 49.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,12.799999999999997,Hingham - Wm L Foster Elementary,01310010, 1.0, 2.3, 2.8, 87.2, 0.0, 0.3, 6.4, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,1.0,60.6,Holbrook - Holbrook Middle High School,01330505, 27.7, 8.0, 17.5, 39.4, 0.3, 0.0, 7.2, 53.4, 46.3, 0.3 +1,1,a-cure-i1,2023-24,3.7,54.7,Holbrook - John F Kennedy,01330018, 22.9, 4.6, 18.1, 45.3, 0.6, 0.1, 8.4, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,12.400000000000006,Holland - Holland Elementary,01350005, 1.3, 1.3, 7.1, 87.6, 0.4, 0.0, 2.2, 47.8, 52.2, 0.0 +1,1,a-cure-i1,2023-24,3.8,21.5,Holliston - Holliston High,01360505, 0.7, 8.7, 8.5, 78.5, 0.1, 0.2, 3.2, 49.3, 49.7, 1.0 +8.291497975708502,5,a-cure-i1,2023-24,12.8,24.700000000000003,Holliston - Miller School,01360007, 1.7, 9.5, 7.8, 75.3, 0.0, 0.0, 5.7, 53.6, 46.2, 0.2 +1,1,a-cure-i1,2023-24,4.5,27.700000000000003,Holliston - Placentino Elementary,01360010, 1.3, 8.0, 10.1, 72.3, 0.3, 0.0, 8.0, 53.6, 46.1, 0.3 +5.586206896551723,5,a-cure-i1,2023-24,8.1,23.200000000000003,Holliston - Robert H. Adams Middle School,01360305, 0.8, 9.0, 7.5, 76.8, 0.2, 0.2, 5.6, 50.7, 48.9, 0.5 +14.184696569920845,5,a-cure-i1,2023-24,67.2,75.8,Holyoke - E N White Elementary,01370045, 1.6, 0.2, 71.2, 24.2, 0.0, 0.0, 2.9, 52.1, 47.9, 0.0 +3.0715835140997836,3.07,a-cure-i1,2023-24,17.700000000000003,92.2,Holyoke - H.B. Lawrence School,01370070, 6.0, 0.3, 84.1, 7.8, 0.0, 0.0, 1.8, 55.7, 44.3, 0.0 +4.136674259681094,4.14,a-cure-i1,2023-24,22.7,87.8,Holyoke - Holyoke High,01370505, 3.4, 0.6, 82.3, 12.2, 0.0, 0.0, 1.4, 52.6, 47.3, 0.1 +3.5359116022099446,3.54,a-cure-i1,2023-24,20.0,90.5,Holyoke - Holyoke STEM Academy,01370320, 6.3, 1.0, 80.9, 9.5, 0.0, 0.0, 2.3, 53.0, 47.0, 0.0 +2.5365853658536586,2.54,a-cure-i1,2023-24,14.3,90.2,Holyoke - Joseph Metcalf School,01370003, 3.9, 1.5, 83.4, 9.8, 0.0, 0.0, 1.5, 56.6, 43.4, 0.0 +8.48356309650053,5,a-cure-i1,2023-24,50.0,94.3,Holyoke - Kelly Elementary,01370040, 3.5, 0.0, 90.2, 5.7, 0.0, 0.0, 0.7, 51.4, 48.6, 0.0 +8.74859075535513,5,a-cure-i1,2023-24,48.5,88.7,Holyoke - Lt Clayre Sullivan Elementary,01370055, 4.5, 0.6, 82.0, 11.3, 0.0, 0.0, 1.6, 53.8, 46.2, 0.0 +1,1,a-cure-i1,2023-24,4.5,78.9,Holyoke - Lt Elmer J McMahon Elementary,01370015, 4.5, 1.2, 69.8, 21.1, 0.0, 0.0, 3.3, 56.2, 43.8, 0.0 +2.745995423340961,2.75,a-cure-i1,2023-24,15.0,87.4,Holyoke - Maurice A Donahue Elementary,01370060, 4.9, 0.5, 79.5, 12.6, 0.0, 0.2, 2.3, 54.2, 45.8, 0.0 +4.23728813559322,4.24,a-cure-i1,2023-24,25.0,94.4,Holyoke - Morgan Full Service Community School,01370025, 5.3, 0.0, 86.4, 5.6, 0.0, 0.0, 2.8, 51.7, 48.3, 0.0 +4.545073375262055,4.55,a-cure-i1,2023-24,27.1,95.4,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.3, 0.6, 92.3, 4.6, 0.0, 0.0, 1.2, 45.7, 54.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.599999999999994,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 2.4, 1.4, 5.4, 85.4, 0.0, 0.3, 5.1, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.700000000000003,Hoosac Valley Regional - Hoosac Valley High School,06030505, 6.0, 0.0, 5.4, 86.3, 0.7, 0.0, 1.7, 45.2, 54.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.700000000000003,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 1.6, 0.3, 5.2, 89.3, 0.0, 0.0, 3.6, 55.0, 45.0, 0.0 +4.194174757281555,4.19,a-cure-i1,2023-24,5.4,20.599999999999994,Hopedale - Hopedale Jr Sr High,01380505, 1.8, 1.6, 14.1, 79.4, 0.2, 0.2, 2.7, 51.0, 48.8, 0.2 +1,1,a-cure-i1,2023-24,0.0,23.0,Hopedale - Memorial,01380010, 0.7, 2.2, 13.3, 77.0, 0.5, 0.0, 6.2, 53.6, 46.2, 0.2 +1,1,a-cure-i1,2023-24,0.0,22.599999999999994,Hopedale - Park Street School,01380003, 0.0, 3.8, 12.3, 77.4, 0.0, 0.0, 6.6, 56.6, 43.4, 0.0 +2.747826086956522,2.75,a-cure-i1,2023-24,7.9,46.0,Hopkinton - Elmwood,01390010, 0.6, 32.6, 5.8, 54.0, 0.3, 0.0, 6.7, 55.7, 44.1, 0.2 +2.1196581196581197,2.12,a-cure-i1,2023-24,6.2,46.8,Hopkinton - Hopkins Elementary School,01390015, 0.6, 34.0, 5.5, 53.2, 0.1, 0.0, 6.6, 50.5, 49.5, 0.0 +3.606936416184972,3.61,a-cure-i1,2023-24,7.800000000000001,34.599999999999994,Hopkinton - Hopkinton High,01390505, 0.9, 23.1, 5.8, 65.4, 0.3, 0.0, 4.5, 51.6, 48.0, 0.4 +1,1,a-cure-i1,2023-24,4.4,42.2,Hopkinton - Hopkinton Middle School,01390305, 0.4, 32.8, 4.7, 57.8, 0.2, 0.0, 4.1, 49.5, 50.4, 0.1 +1,1,a-cure-i1,2023-24,0.0,55.2,Hopkinton - Hopkinton Pre-School,01390003, 1.0, 37.5, 8.3, 44.8, 0.0, 0.0, 8.3, 62.5, 37.5, 0.0 +1.890295358649789,1.89,a-cure-i1,2023-24,5.6,47.4,Hopkinton - Marathon Elementary School,01390005, 1.4, 32.6, 5.4, 52.6, 0.2, 0.0, 7.8, 50.2, 49.7, 0.2 +1,1,a-cure-i1,2023-24,4.8,35.5,Hudson - C A Farley,01410030, 4.1, 0.9, 27.8, 64.5, 0.0, 0.0, 2.7, 51.6, 48.4, 0.0 +4.132450331125828,4.13,a-cure-i1,2023-24,7.8,30.200000000000003,Hudson - David J. Quinn Middle School,01410410, 3.1, 1.2, 22.5, 69.8, 0.0, 0.0, 3.3, 49.6, 50.3, 0.2 +1,1,a-cure-i1,2023-24,0.0,28.0,Hudson - Forest Avenue Elementary,01410015, 3.2, 1.1, 21.1, 72.0, 0.4, 0.0, 2.2, 50.5, 49.5, 0.0 +5.740458015267175,5,a-cure-i1,2023-24,9.4,26.200000000000003,Hudson - Hudson High,01410505, 3.2, 1.9, 18.7, 73.8, 0.0, 0.0, 2.5, 47.5, 52.4, 0.1 +1,1,a-cure-i1,2023-24,0.0,28.299999999999997,Hudson - Mulready Elementary,01410007, 4.2, 0.8, 20.3, 71.7, 0.0, 0.0, 3.0, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.0,Hull - Hull High,01420505, 1.7, 1.3, 3.9, 91.0, 0.0, 0.0, 2.1, 52.4, 46.8, 0.9 +1,1,a-cure-i1,2023-24,0.0,11.799999999999997,Hull - Lillian M Jacobs,01420015, 2.6, 1.4, 3.6, 88.2, 0.2, 0.0, 3.8, 56.0, 44.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.299999999999997,Hull - Memorial Middle,01420305, 1.9, 2.8, 4.7, 88.7, 0.9, 0.0, 0.9, 46.2, 53.8, 0.0 +7.3689567430025456,5,a-cure-i1,2023-24,18.1,39.3,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 8.4, 8.8, 15.4, 60.7, 0.6, 0.0, 6.2, 47.5, 51.9, 0.6 +1,1,a-cure-i1,2023-24,0.0,16.400000000000006,Ipswich - Ipswich High,01440505, 1.5, 2.7, 8.5, 83.6, 0.2, 0.0, 3.5, 46.3, 53.7, 0.0 +1,1,a-cure-i1,2023-24,3.8,15.400000000000006,Ipswich - Ipswich Middle School,01440305, 1.3, 0.3, 9.7, 84.6, 0.3, 0.0, 3.9, 49.2, 50.8, 0.0 +6.545454545454543,5,a-cure-i1,2023-24,6.3,15.400000000000006,Ipswich - Paul F Doyon Memorial,01440007, 0.5, 0.8, 9.2, 84.6, 0.3, 0.0, 4.6, 52.0, 48.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.700000000000003,Ipswich - Winthrop,01440015, 0.8, 2.2, 10.6, 81.3, 0.3, 0.0, 4.9, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,2.0,17.799999999999997,King Philip - King Philip Middle School,06900510, 3.4, 2.4, 6.9, 82.2, 0.3, 0.0, 4.8, 52.6, 46.7, 0.7 +1,1,a-cure-i1,2023-24,4.7,15.900000000000006,King Philip - King Philip Regional High,06900505, 3.0, 3.9, 5.3, 84.1, 0.3, 0.0, 3.5, 51.1, 48.5, 0.4 +1,1,a-cure-i1,2023-24,0.0,11.099999999999994,Kingston - Kingston Elementary,01450005, 3.5, 0.6, 4.5, 88.9, 0.8, 0.2, 1.5, 56.8, 43.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.799999999999997,Kingston - Kingston Intermediate,01450020, 1.6, 0.8, 5.4, 90.2, 0.2, 0.0, 1.8, 49.3, 50.7, 0.0 +10.070493454179257,5,a-cure-i1,2023-24,62.50000000000001,99.3,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 59.9, 0.2, 36.5, 0.7, 0.8, 0.0, 1.9, 49.6, 50.4, 0.0 +9.001051524710832,5,a-cure-i1,2023-24,53.5,95.1,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 15.5, 4.0, 72.9, 4.9, 0.3, 0.1, 2.2, 49.1, 50.8, 0.1 +2.6288032454361057,2.63,a-cure-i1,2023-24,16.2,98.6,Lawrence - Alexander B Bruce,01490015, 2.4, 0.7, 95.0, 1.4, 0.0, 0.0, 0.5, 51.9, 47.6, 0.5 +2.5040650406504064,2.5,a-cure-i1,2023-24,15.4,98.4,Lawrence - Arlington Elementary,01490009, 0.5, 0.0, 97.5, 1.6, 0.2, 0.2, 0.0, 53.2, 46.2, 0.5 +3.0437436419125135,3.04,a-cure-i1,2023-24,18.700000000000003,98.3,Lawrence - Arlington Middle School,01490017, 0.3, 0.0, 97.4, 1.7, 0.0, 0.0, 0.5, 50.0, 49.8, 0.2 +1.3761658031088084,1.38,a-cure-i1,2023-24,8.3,96.5,Lawrence - Edward F. Parthum,01490053, 2.2, 0.3, 93.4, 3.5, 0.0, 0.0, 0.6, 52.7, 47.1, 0.1 +3.4028629856850716,3.4,a-cure-i1,2023-24,20.8,97.8,Lawrence - Emily G Wetherbee,01490080, 0.8, 1.6, 95.2, 2.2, 0.0, 0.0, 0.2, 49.3, 50.5, 0.2 +2.98989898989899,2.99,a-cure-i1,2023-24,18.5,99.0,Lawrence - Francis M Leahy,01490040, 1.5, 0.0, 97.5, 1.0, 0.0, 0.0, 0.0, 57.3, 42.7, 0.0 +2.912169312169312,2.91,a-cure-i1,2023-24,17.2,94.5,Lawrence - Frost Middle School,01490525, 2.0, 2.8, 88.6, 5.5, 0.0, 0.0, 1.0, 50.3, 49.3, 0.4 +1.2687950566426365,1.27,a-cure-i1,2023-24,7.699999999999999,97.1,Lawrence - Gerard A. Guilmette,01490022, 1.0, 1.0, 93.9, 2.9, 0.2, 0.4, 0.4, 53.7, 46.3, 0.0 +3.2974619289340104,3.3,a-cure-i1,2023-24,20.3,98.5,Lawrence - Guilmette Middle School,01490025, 1.9, 1.5, 94.8, 1.5, 0.0, 0.0, 0.2, 51.1, 48.9, 0.0 +4.800000000000001,4.8,a-cure-i1,2023-24,29.700000000000003,99.0,Lawrence - High School Learning Center,01490536, 1.0, 0.5, 97.4, 1.0, 0.0, 0.0, 0.0, 54.9, 44.6, 0.5 +3.666314677930306,3.67,a-cure-i1,2023-24,21.7,94.7,Lawrence - James F Hennessey,01490020, 3.2, 0.4, 90.8, 5.3, 0.0, 0.0, 0.4, 57.8, 42.2, 0.0 +1.931321540062435,1.93,a-cure-i1,2023-24,11.6,96.1,Lawrence - John Breen School,01490003, 2.7, 0.8, 92.6, 3.9, 0.0, 0.0, 0.0, 59.3, 40.7, 0.0 +2.290422245108136,2.29,a-cure-i1,2023-24,13.9,97.1,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 96.7, 2.9, 0.0, 0.0, 0.4, 55.8, 44.2, 0.0 +3.248730964467005,3.25,a-cure-i1,2023-24,20.0,98.5,Lawrence - Lawlor Early Childhood Center,01490002, 1.5, 0.5, 96.1, 1.5, 0.0, 0.5, 0.0, 51.5, 48.5, 0.0 +5.333333333333332,5,a-cure-i1,2023-24,32.3,96.9,Lawrence - Lawrence Family Public Academy,01490011, 1.6, 0.5, 94.8, 3.1, 0.0, 0.0, 0.0, 49.2, 50.8, 0.0 +5.791411042944786,5,a-cure-i1,2023-24,35.4,97.8,Lawrence - Lawrence High School,01490515, 1.4, 1.3, 94.9, 2.2, 0.0, 0.0, 0.1, 53.0, 46.6, 0.4 +5.6016096579476855,5,a-cure-i1,2023-24,34.8,99.4,Lawrence - Leonard Middle School,01490090, 1.9, 0.0, 97.5, 0.6, 0.0, 0.0, 0.0, 54.8, 45.2, 0.0 +4.410986775178027,4.41,a-cure-i1,2023-24,27.1,98.3,Lawrence - Oliver Elementary School,01490048, 1.5, 0.2, 96.1, 1.7, 0.0, 0.0, 0.4, 50.9, 49.1, 0.0 +2.9623601220752795,2.96,a-cure-i1,2023-24,18.2,98.3,Lawrence - Oliver Middle School,01490049, 1.4, 0.6, 96.2, 1.7, 0.0, 0.0, 0.0, 50.3, 49.4, 0.3 +2.661157024793389,2.66,a-cure-i1,2023-24,16.1,96.8,Lawrence - Parthum Middle School,01490027, 1.4, 0.3, 94.9, 3.2, 0.0, 0.0, 0.2, 54.7, 45.3, 0.0 +5.3604060913705585,5,a-cure-i1,2023-24,33.0,98.5,Lawrence - RISE Academy,01490615, 0.0, 0.0, 97.0, 1.5, 0.0, 0.0, 1.5, 76.1, 23.9, 0.0 +1.618945102260495,1.62,a-cure-i1,2023-24,9.4,92.9,Lawrence - Robert Frost,01490018, 1.5, 3.5, 86.8, 7.1, 0.0, 0.2, 0.9, 51.5, 48.4, 0.2 +4.711758584807493,4.71,a-cure-i1,2023-24,28.3,96.1,Lawrence - Rollins Early Childhood Center,01490001, 1.3, 0.0, 94.1, 3.9, 0.7, 0.0, 0.0, 58.8, 41.2, 0.0 +8.234800838574424,5,a-cure-i1,2023-24,49.1,95.4,Lawrence - School for Exceptional Studies,01490537, 4.6, 0.0, 90.7, 4.6, 0.0, 0.0, 0.0, 83.3, 16.7, 0.0 +1.7759506680369992,1.78,a-cure-i1,2023-24,10.8,97.3,Lawrence - South Lawrence East Elementary School,01490004, 1.7, 2.0, 93.2, 2.7, 0.0, 0.0, 0.5, 49.5, 50.3, 0.2 +4.2898550724637685,4.29,a-cure-i1,2023-24,25.9,96.6,Lawrence - Spark Academy,01490085, 1.1, 0.7, 94.8, 3.4, 0.0, 0.0, 0.0, 52.1, 47.9, 0.0 +5.279515640766903,5,a-cure-i1,2023-24,32.7,99.1,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.8, 0.0, 98.3, 0.9, 0.0, 0.0, 0.0, 43.6, 56.4, 0.0 +3.2916224814422055,3.29,a-cure-i1,2023-24,19.4,94.3,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 46.0, 1.0, 45.4, 5.7, 0.1, 0.0, 1.6, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,2.8,17.5,Lee - Lee Elementary,01500025, 1.2, 2.7, 10.7, 82.5, 0.0, 0.3, 2.7, 50.9, 49.1, 0.0 +4.512820512820513,4.51,a-cure-i1,2023-24,5.5,19.5,Lee - Lee Middle/High School,01500505, 1.0, 3.6, 11.7, 80.5, 0.3, 0.0, 2.9, 52.6, 47.1, 0.3 +1,1,a-cure-i1,2023-24,0.0,37.9,Leicester - Leicester Elementary,01510005, 6.6, 3.8, 23.2, 62.1, 0.0, 0.0, 4.3, 48.1, 51.9, 0.0 +4.501529051987767,4.5,a-cure-i1,2023-24,9.2,32.7,Leicester - Leicester High,01510505, 6.3, 3.3, 19.9, 67.3, 0.0, 0.0, 3.3, 55.4, 44.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.5,Leicester - Leicester Integrated Preschool,01510001, 10.2, 2.0, 10.2, 73.5, 0.0, 0.0, 4.1, 69.4, 30.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.0,Leicester - Leicester Middle,01510015, 5.7, 3.7, 17.2, 70.0, 0.5, 0.0, 3.0, 52.0, 47.8, 0.2 +1,1,a-cure-i1,2023-24,2.2,19.5,Lenox - Lenox Memorial High,01520505, 0.7, 4.9, 9.4, 80.5, 0.0, 0.0, 4.5, 51.8, 48.0, 0.2 +1,1,a-cure-i1,2023-24,0.0,26.400000000000006,Lenox - Morris,01520015, 1.8, 7.1, 10.7, 73.6, 0.0, 0.9, 5.9, 54.9, 45.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,51.7,Leominster - Bennett,01530003, 10.1, 2.2, 31.5, 48.3, 0.0, 0.0, 7.9, 56.2, 43.8, 0.0 +1,1,a-cure-i1,2023-24,2.9,56.3,Leominster - Center For Technical Education Innovation,01530605, 9.0, 2.7, 41.0, 43.7, 0.0, 0.1, 3.3, 63.7, 36.2, 0.1 +2.047244094488189,2.05,a-cure-i1,2023-24,6.5,50.8,Leominster - Fall Brook,01530007, 8.7, 2.7, 34.3, 49.2, 0.0, 0.0, 5.1, 54.9, 44.9, 0.2 +1,1,a-cure-i1,2023-24,0.0,64.5,Leominster - Frances Drake School,01530010, 9.9, 3.7, 46.6, 35.5, 0.0, 0.0, 4.3, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,3.0,54.8,Leominster - Johnny Appleseed,01530025, 10.8, 3.2, 36.0, 45.2, 0.0, 0.0, 4.7, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,81.2,Leominster - Leominster Academy,01530705, 6.3, 0.0, 62.5, 18.8, 0.0, 0.0, 12.5, 50.0, 50.0, 0.0 +9.169373549883991,5,a-cure-i1,2023-24,24.7,43.1,Leominster - Leominster Center for Excellence,01530515, 4.6, 0.0, 35.4, 56.9, 0.0, 0.0, 3.1, 43.1, 49.2, 7.7 +1.4369602763385148,1.44,a-cure-i1,2023-24,5.2,57.9,Leominster - Leominster High School,01530505, 9.1, 3.9, 41.0, 42.1, 0.2, 0.0, 3.6, 44.0, 55.5, 0.5 +1,1,a-cure-i1,2023-24,0.0,70.0,Leominster - Lincoln School,01530005, 7.5, 5.0, 47.5, 30.0, 0.0, 0.0, 10.0, 72.5, 27.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,66.2,Leominster - Northwest,01530030, 9.1, 3.6, 49.6, 33.8, 0.0, 0.0, 3.9, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,69.1,Leominster - Priest Street,01530040, 16.5, 5.0, 40.3, 30.9, 0.7, 0.0, 6.5, 48.2, 51.8, 0.0 +2.094240837696335,2.09,a-cure-i1,2023-24,7.5,57.3,Leominster - Samoset School,01530045, 8.8, 2.8, 40.2, 42.7, 0.0, 0.0, 5.6, 58.3, 41.7, 0.0 +1,1,a-cure-i1,2023-24,3.7,64.0,Leominster - Sky View Middle School,01530320, 10.0, 2.2, 46.5, 36.0, 0.2, 0.0, 5.1, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.799999999999997,Leverett - Leverett Elementary,01540005, 0.0, 0.7, 2.8, 85.2, 0.0, 0.0, 11.3, 51.4, 48.6, 0.0 +6.238993710691824,5,a-cure-i1,2023-24,24.8,63.6,Lexington - Bowman,01550008, 3.7, 43.7, 5.1, 36.4, 0.0, 0.0, 11.0, 53.0, 47.0, 0.0 +1.8823529411764708,1.88,a-cure-i1,2023-24,8.8,74.8,Lexington - Bridge,01550006, 5.8, 49.3, 9.0, 25.2, 0.0, 0.0, 10.7, 51.0, 49.0, 0.0 +2.3734729493891797,2.37,a-cure-i1,2023-24,8.5,57.3,Lexington - Fiske,01550015, 3.6, 39.4, 5.4, 42.7, 0.3, 0.0, 8.7, 53.7, 46.3, 0.0 +3.190404797601199,3.19,a-cure-i1,2023-24,13.299999999999999,66.7,Lexington - Harrington,01550030, 7.7, 46.3, 4.8, 33.3, 0.0, 0.0, 7.9, 44.4, 55.6, 0.0 +3.3131313131313136,3.31,a-cure-i1,2023-24,12.3,59.4,Lexington - Jonas Clarke Middle,01550305, 4.6, 42.3, 5.6, 40.6, 0.0, 0.0, 6.9, 48.6, 51.4, 0.0 +2.3929618768328442,2.39,a-cure-i1,2023-24,10.2,68.2,Lexington - Joseph Estabrook,01550010, 4.3, 47.3, 6.0, 31.8, 0.0, 0.0, 10.6, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,73.7,Lexington - Lexington Children's Place,01550001, 5.3, 53.9, 11.8, 26.3, 0.0, 0.0, 2.6, 57.9, 42.1, 0.0 +3.61038961038961,3.61,a-cure-i1,2023-24,13.899999999999999,61.6,Lexington - Lexington High,01550505, 4.3, 46.1, 4.1, 38.4, 0.0, 0.0, 7.0, 49.5, 50.3, 0.2 +5.379509379509379,5,a-cure-i1,2023-24,23.299999999999997,69.3,Lexington - Maria Hastings,01550035, 3.0, 49.4, 8.1, 30.7, 0.0, 0.0, 8.7, 49.9, 50.1, 0.0 +3.5072,3.51,a-cure-i1,2023-24,13.700000000000001,62.5,Lexington - Wm Diamond Middle,01550310, 3.3, 44.2, 6.0, 37.5, 0.0, 0.1, 8.7, 54.2, 45.8, 0.0 +7.57807652533609,5,a-cure-i1,2023-24,45.8,96.7,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 12.1, 1.0, 80.3, 3.3, 0.2, 0.0, 3.1, 49.1, 50.9, 0.0 +2.1287553648068664,2.13,a-cure-i1,2023-24,6.199999999999999,46.6,Lincoln - Hanscom School,01570305, 5.1, 4.0, 24.9, 53.4, 0.4, 0.2, 11.9, 51.8, 48.2, 0.0 +3.5799086757990866,3.58,a-cure-i1,2023-24,9.799999999999999,43.8,Lincoln - Lincoln School,01570025, 9.3, 8.9, 12.4, 56.2, 0.0, 0.0, 13.2, 49.7, 49.9, 0.4 +5.91186440677966,5,a-cure-i1,2023-24,10.899999999999999,29.5,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 5.3, 9.0, 6.8, 70.5, 0.1, 0.2, 8.1, 50.5, 49.0, 0.5 +4.102564102564101,4.1,a-cure-i1,2023-24,6.0,23.400000000000006,Littleton - Littleton High School,01580505, 2.3, 14.0, 4.3, 76.6, 0.2, 0.2, 2.5, 47.4, 52.6, 0.0 +1,1,a-cure-i1,2023-24,4.2,21.599999999999994,Littleton - Littleton Middle School,01580305, 0.5, 13.9, 5.2, 78.4, 0.0, 0.5, 1.5, 45.4, 54.1, 0.5 +1,1,a-cure-i1,2023-24,0.0,23.599999999999994,Littleton - Russell St Elementary,01580015, 0.8, 18.0, 2.0, 76.4, 0.0, 0.8, 2.0, 56.2, 43.8, 0.0 +5.105058365758754,5,a-cure-i1,2023-24,8.2,25.700000000000003,Littleton - Shaker Lane Elementary,01580005, 1.1, 15.6, 4.5, 74.3, 0.0, 0.2, 4.3, 54.6, 45.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.299999999999997,Longmeadow - Blueberry Hill,01590005, 2.7, 14.1, 5.9, 70.7, 0.0, 0.0, 6.7, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.0,Longmeadow - Center,01590010, 3.9, 4.2, 8.3, 80.0, 0.0, 0.0, 3.7, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.099999999999994,Longmeadow - Glenbrook Middle,01590017, 5.6, 9.7, 6.9, 71.9, 0.0, 0.0, 5.9, 54.7, 45.3, 0.0 +1,1,a-cure-i1,2023-24,4.9,27.599999999999994,Longmeadow - Longmeadow High,01590505, 3.5, 11.3, 8.8, 72.4, 0.0, 0.3, 3.6, 51.0, 48.4, 0.5 +1,1,a-cure-i1,2023-24,4.9,28.700000000000003,Longmeadow - Williams Middle,01590305, 2.3, 11.9, 8.1, 71.3, 0.0, 0.0, 6.5, 52.9, 46.8, 0.3 +1,1,a-cure-i1,2023-24,0.0,27.0,Longmeadow - Wolf Swamp Road,01590025, 4.2, 10.9, 8.0, 73.0, 0.0, 0.0, 3.8, 53.1, 46.9, 0.0 +1.816118047673099,1.82,a-cure-i1,2023-24,10.0,88.1,Lowell - Abraham Lincoln,01600020, 5.1, 39.9, 37.8, 11.9, 0.2, 0.2, 4.9, 50.9, 49.1, 0.0 +6.364532019704432,5,a-cure-i1,2023-24,32.3,81.2,Lowell - B.F. Butler Middle School,01600310, 7.9, 30.7, 39.0, 18.8, 0.0, 0.0, 3.6, 48.5, 51.5, 0.0 +1.4242774566473988,1.42,a-cure-i1,2023-24,7.699999999999999,86.5,Lowell - Bartlett Community Partnership,01600090, 10.4, 34.0, 37.9, 13.5, 0.4, 0.0, 3.8, 49.2, 50.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,87.5,Lowell - Cardinal O'Connell Early Learning Center,01600001, 18.3, 22.1, 40.4, 12.5, 0.0, 0.0, 6.7, 63.5, 36.5, 0.0 +1.377123442808607,1.38,a-cure-i1,2023-24,7.6,88.3,Lowell - Charles W Morey,01600030, 5.6, 56.9, 20.3, 11.7, 0.6, 0.2, 4.6, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,86.2,Lowell - Charlotte M Murkland Elementary,01600080, 9.2, 24.1, 48.2, 13.8, 0.5, 0.5, 3.9, 47.5, 52.5, 0.0 +2.062415196743555,2.06,a-cure-i1,2023-24,9.5,73.7,Lowell - Dr An Wang School,01600345, 7.6, 22.5, 39.4, 26.3, 0.0, 0.0, 4.3, 52.9, 47.0, 0.2 +1,1,a-cure-i1,2023-24,3.8,77.2,Lowell - Dr Gertrude Bailey,01600002, 5.9, 38.1, 27.5, 22.8, 0.0, 0.0, 5.6, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,69.0,Lowell - Dr. Janice Adie Day School,01600605, 12.1, 13.8, 36.2, 31.0, 1.7, 0.0, 5.2, 75.9, 24.1, 0.0 +1.2661870503597121,1.27,a-cure-i1,2023-24,6.6,83.4,Lowell - Greenhalge,01600015, 12.0, 10.1, 57.8, 16.6, 0.0, 0.0, 3.5, 50.8, 49.2, 0.0 +5.347204161248374,5,a-cure-i1,2023-24,25.700000000000003,76.9,Lowell - Henry J Robinson Middle,01600330, 8.3, 9.8, 55.2, 23.1, 0.3, 0.0, 3.2, 51.7, 48.3, 0.0 +1.6467598475222365,1.65,a-cure-i1,2023-24,8.100000000000001,78.7,Lowell - James S Daley Middle School,01600315, 5.1, 50.6, 18.7, 21.3, 0.0, 0.0, 4.3, 51.0, 49.0, 0.0 +1.7297297297297298,1.73,a-cure-i1,2023-24,7.6,70.3,Lowell - James Sullivan Middle School,01600340, 5.3, 12.6, 49.1, 29.7, 0.2, 0.2, 2.9, 48.5, 51.5, 0.0 +1.4292803970223327,1.43,a-cure-i1,2023-24,7.2,80.6,Lowell - John J Shaughnessy,01600050, 5.8, 25.2, 44.3, 19.4, 0.2, 0.0, 5.1, 55.4, 44.6, 0.0 +1.5876288659793816,1.59,a-cure-i1,2023-24,7.7,77.6,Lowell - Joseph McAvinnue,01600010, 9.1, 15.2, 48.5, 22.4, 0.0, 0.2, 4.7, 51.3, 48.7, 0.0 +1.330254041570439,1.33,a-cure-i1,2023-24,7.2,86.6,Lowell - Kathryn P. Stoklosa Middle School,01600360, 5.0, 41.6, 37.0, 13.4, 0.3, 0.3, 2.4, 53.4, 46.6, 0.0 +4.736,4.74,a-cure-i1,2023-24,22.2,75.0,Lowell - Laura Lee Therapeutic Day School,01600085, 6.3, 6.3, 43.8, 25.0, 0.0, 0.0, 18.8, 87.5, 12.5, 0.0 +3.6941529235382307,3.69,a-cure-i1,2023-24,15.4,66.7,Lowell - Leblanc Therapeutic Day School,01600320, 11.1, 2.8, 41.7, 33.3, 0.0, 0.0, 11.1, 72.2, 27.8, 0.0 +3.5141104294478533,3.51,a-cure-i1,2023-24,17.900000000000002,81.5,Lowell - Lowell High,01600505, 8.6, 28.5, 40.5, 18.5, 0.1, 0.0, 3.8, 53.6, 46.2, 0.1 +1.4930362116991645,1.49,a-cure-i1,2023-24,6.7,71.8,Lowell - Moody Elementary,01600027, 7.3, 8.5, 52.4, 28.2, 0.4, 0.8, 2.4, 48.8, 51.2, 0.0 +1.831187410586552,1.83,a-cure-i1,2023-24,8.0,69.9,Lowell - Pawtucketville Memorial,01600036, 8.2, 25.0, 31.2, 30.1, 0.0, 0.0, 5.5, 52.9, 47.1, 0.0 +2.2816901408450705,2.28,a-cure-i1,2023-24,8.1,56.8,Lowell - Peter W Reilly,01600040, 4.8, 9.8, 35.8, 43.2, 0.2, 0.0, 6.3, 50.3, 49.7, 0.0 +1.5579598145285933,1.56,a-cure-i1,2023-24,6.3,64.7,Lowell - Pyne Arts,01600018, 4.5, 16.4, 39.2, 35.3, 0.0, 0.0, 4.5, 52.8, 47.2, 0.0 +2.103194103194103,2.1,a-cure-i1,2023-24,10.7,81.4,Lowell - Rogers STEM Academy,01600005, 8.0, 19.6, 49.5, 18.6, 0.6, 0.1, 3.5, 52.1, 47.9, 0.0 +1.7367706919945725,1.74,a-cure-i1,2023-24,8.0,73.7,Lowell - S Christa McAuliffe Elementary,01600075, 7.9, 9.3, 53.3, 26.3, 0.2, 0.0, 2.9, 48.8, 51.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,77.2,Lowell - The Career Academy,01600515, 7.6, 14.1, 50.0, 22.8, 0.0, 0.0, 5.4, 62.0, 38.0, 0.0 +1.1484184914841848,1.15,a-cure-i1,2023-24,5.9,82.2,Lowell - Washington,01600055, 5.4, 40.1, 27.3, 17.8, 0.0, 0.4, 9.1, 55.8, 44.2, 0.0 +4.055853920515575,4.06,a-cure-i1,2023-24,23.599999999999998,93.1,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 25.3, 16.5, 47.1, 6.9, 0.1, 0.0, 4.0, 48.5, 51.4, 0.1 +9.774058577405857,5,a-cure-i1,2023-24,43.8,71.7,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 2.8, 7.5, 56.6, 28.3, 0.0, 0.0, 4.7, 39.6, 59.4, 0.9 +1,1,a-cure-i1,2023-24,0.0,25.099999999999994,Ludlow - East Street Elementary School,01610010, 1.7, 3.3, 16.2, 74.9, 0.0, 0.0, 3.9, 56.8, 43.2, 0.0 +1,1,a-cure-i1,2023-24,2.2,25.099999999999994,Ludlow - Harris Brook Elementary School,01610665, 2.1, 2.3, 16.5, 74.9, 0.0, 0.0, 4.2, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.5,Ludlow - Ludlow Senior High,01610505, 1.6, 0.5, 13.2, 82.5, 0.0, 0.0, 2.1, 50.8, 49.1, 0.1 +1,1,a-cure-i1,2023-24,2.4,24.799999999999997,Ludlow - Paul R Baird Middle,01610305, 2.1, 1.3, 19.4, 75.2, 0.0, 0.0, 2.1, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.299999999999997,Lunenburg - Advanced Community Experience Program,01620605, 14.3, 0.0, 0.0, 85.7, 0.0, 0.0, 0.0, 42.9, 57.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.799999999999997,Lunenburg - Lunenburg High,01620505, 2.0, 1.1, 9.1, 82.2, 0.4, 0.7, 4.5, 50.8, 49.0, 0.2 +1,1,a-cure-i1,2023-24,0.0,22.900000000000006,Lunenburg - Lunenburg Middle School,01620305, 3.3, 2.8, 12.9, 77.1, 0.0, 0.0, 3.9, 50.1, 49.6, 0.3 +1,1,a-cure-i1,2023-24,0.0,24.299999999999997,Lunenburg - Lunenburg Primary School,01620010, 4.6, 0.8, 14.3, 75.7, 0.0, 0.5, 4.1, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.900000000000006,Lunenburg - Turkey Hill Elementary School,01620025, 4.3, 0.5, 8.6, 84.1, 0.0, 0.3, 2.2, 50.3, 49.7, 0.0 +1.0505920344456403,1.05,a-cure-i1,2023-24,6.1,92.9,Lynn - A Drewicz Elementary,01630016, 4.1, 6.9, 79.7, 7.1, 0.6, 0.0, 1.6, 49.0, 51.0, 0.0 +1.6770538243626065,1.68,a-cure-i1,2023-24,7.4,70.6,Lynn - Aborn,01630011, 6.1, 11.0, 47.4, 29.4, 0.4, 0.4, 5.3, 49.1, 50.9, 0.0 +2.6812705366922236,2.68,a-cure-i1,2023-24,15.3,91.3,Lynn - Breed Middle School,01630405, 7.3, 7.9, 73.3, 8.7, 0.1, 0.0, 2.7, 49.9, 50.1, 0.0 +4.140350877192983,4.14,a-cure-i1,2023-24,23.6,91.2,Lynn - Brickett Elementary,01630020, 7.6, 8.5, 70.3, 8.8, 0.6, 0.0, 4.1, 55.5, 44.5, 0.0 +3.5792592592592594,3.58,a-cure-i1,2023-24,15.1,67.5,Lynn - Capt William G Shoemaker,01630090, 12.4, 7.1, 42.9, 32.5, 0.3, 0.0, 4.7, 61.2, 38.8, 0.0 +2.4824462061155153,2.48,a-cure-i1,2023-24,13.7,88.3,Lynn - Classical High,01630505, 7.2, 7.3, 71.2, 11.7, 0.2, 0.0, 2.2, 54.8, 45.0, 0.1 +1.379876796714579,1.38,a-cure-i1,2023-24,8.4,97.4,Lynn - Cobbet Elementary,01630035, 7.2, 3.0, 85.1, 2.6, 0.5, 0.0, 1.6, 55.5, 44.5, 0.0 +2.3586358635863585,2.36,a-cure-i1,2023-24,13.4,90.9,Lynn - E J Harrington,01630045, 8.2, 3.6, 76.7, 9.1, 0.3, 0.0, 2.1, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,3.4,74.2,Lynn - Edward A Sisson,01630095, 6.3, 9.6, 54.3, 25.8, 0.5, 0.0, 3.5, 50.1, 49.9, 0.0 +1.9795918367346936,1.98,a-cure-i1,2023-24,9.7,78.4,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 4.5, 1.1, 68.2, 21.6, 2.3, 0.0, 2.3, 59.1, 38.6, 2.3 +3.0540827147401908,3.05,a-cure-i1,2023-24,18.0,94.3,Lynn - Fredrick Douglass Collegiate Academy,01630575, 7.6, 4.5, 78.3, 5.7, 0.0, 0.0, 3.8, 49.0, 50.3, 0.6 +3.9437837837837844,3.94,a-cure-i1,2023-24,22.800000000000004,92.5,Lynn - Hood,01630055, 6.7, 8.4, 75.2, 7.5, 0.6, 0.0, 1.6, 52.5, 47.5, 0.0 +1.3333333333333335,1.33,a-cure-i1,2023-24,7.9,94.8,Lynn - Ingalls,01630060, 7.4, 4.9, 81.1, 5.2, 0.6, 0.0, 0.9, 51.6, 48.4, 0.0 +1.753424657534247,1.75,a-cure-i1,2023-24,9.600000000000001,87.6,Lynn - Julia F Callahan,01630030, 10.4, 7.9, 66.2, 12.4, 0.0, 0.0, 3.0, 53.6, 46.4, 0.0 +1,1,a-cure-i1,2023-24,3.6,81.5,Lynn - Lincoln-Thomson,01630070, 4.2, 10.2, 62.0, 18.5, 0.9, 0.0, 4.2, 46.8, 53.2, 0.0 +3.0762620837808807,3.08,a-cure-i1,2023-24,17.9,93.1,Lynn - Lynn English High,01630510, 8.7, 6.9, 74.5, 6.9, 0.5, 0.0, 2.5, 51.9, 47.9, 0.2 +1.8058690744920998,1.81,a-cure-i1,2023-24,10.000000000000002,88.6,Lynn - Lynn Vocational Technical Institute,01630605, 5.7, 4.0, 75.8, 11.4, 0.4, 0.0, 2.6, 52.1, 47.8, 0.1 +1,1,a-cure-i1,2023-24,0.0,57.8,Lynn - Lynn Woods,01630075, 1.9, 5.0, 47.2, 42.2, 0.6, 0.0, 3.1, 47.2, 52.8, 0.0 +2.6531645569620252,2.65,a-cure-i1,2023-24,13.1,79.0,Lynn - Pickering Middle,01630420, 4.8, 11.8, 56.7, 21.0, 0.7, 0.0, 5.0, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,3.6,94.5,Lynn - Robert L Ford,01630050, 8.6, 3.6, 80.1, 5.5, 0.5, 0.0, 1.7, 47.4, 52.6, 0.0 +0.9976019184652278,1,a-cure-i1,2023-24,5.2,83.4,Lynn - Sewell-Anderson,01630085, 9.2, 4.8, 63.1, 16.6, 1.5, 0.0, 4.8, 42.4, 57.6, 0.0 +4.301639344262295,4.3,a-cure-i1,2023-24,24.599999999999998,91.5,Lynn - Thurgood Marshall Mid,01630305, 8.4, 6.7, 73.7, 8.5, 0.5, 0.0, 2.2, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,1.9,96.8,Lynn - Tracy,01630100, 3.4, 3.2, 88.9, 3.2, 0.5, 0.0, 0.8, 53.9, 46.1, 0.0 +2.611042944785276,2.61,a-cure-i1,2023-24,13.3,81.5,Lynn - Virginia Barton Early Childhood Center,01630004, 14.8, 8.6, 55.6, 18.5, 0.0, 0.0, 2.5, 70.4, 29.6, 0.0 +1.1162790697674418,1.12,a-cure-i1,2023-24,6.6,94.6,Lynn - Washington Elementary School,01630005, 16.1, 3.4, 73.4, 5.4, 0.0, 0.0, 1.8, 49.0, 51.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,87.5,Lynn - William R Fallon,01630080, 20.8, 4.2, 45.8, 12.5, 0.0, 0.0, 16.7, 79.2, 20.8, 0.0 +2.616977225672878,2.62,a-cure-i1,2023-24,15.8,96.6,Lynn - Wm P Connery,01630040, 5.6, 6.3, 82.5, 3.4, 0.4, 0.0, 1.8, 46.0, 54.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,27.799999999999997,Lynnfield - Huckleberry Hill,01640010, 3.1, 11.1, 7.6, 72.2, 0.0, 0.0, 6.0, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.900000000000006,Lynnfield - Lynnfield High,01640505, 1.8, 8.2, 9.1, 78.1, 0.0, 0.0, 2.8, 49.9, 50.1, 0.0 +1,1,a-cure-i1,2023-24,0.2,20.900000000000006,Lynnfield - Lynnfield Middle School,01640405, 2.3, 7.6, 6.6, 79.1, 0.0, 0.0, 4.4, 50.4, 49.5, 0.1 +23.064935064935067,5,a-cure-i1,2023-24,33.3,23.099999999999994,Lynnfield - Lynnfield Preschool,01640005, 2.6, 5.1, 7.7, 76.9, 0.0, 0.0, 7.7, 61.5, 38.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.400000000000006,Lynnfield - Summer Street,01640020, 1.2, 4.3, 2.9, 86.6, 0.0, 0.0, 5.0, 52.6, 47.4, 0.0 +3.8668596237337196,3.87,a-cure-i1,2023-24,16.7,69.1,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 4.1, 59.8, 4.1, 30.9, 0.0, 1.0, 0.0, 51.5, 48.5, 0.0 +1.1675675675675676,1.17,a-cure-i1,2023-24,5.4,74.0,Malden - Beebe,01650003, 12.4, 31.6, 23.5, 26.0, 0.9, 0.2, 5.3, 50.5, 49.5, 0.0 +1.4527112232030266,1.45,a-cure-i1,2023-24,7.2,79.3,Malden - Ferryway,01650013, 18.3, 19.1, 37.9, 20.7, 0.7, 0.1, 3.2, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,62.9,Malden - Forestdale,01650027, 14.9, 13.3, 25.8, 37.1, 0.2, 0.0, 8.7, 55.1, 44.9, 0.0 +3.8174706649282912,3.82,a-cure-i1,2023-24,18.299999999999997,76.7,Malden - Linden,01650047, 20.4, 25.3, 25.3, 23.3, 0.7, 0.2, 4.7, 52.4, 47.5, 0.1 +1,1,a-cure-i1,2023-24,0.0,65.3,Malden - Malden Early Learning Center,01650049, 17.9, 33.9, 11.6, 34.7, 0.0, 0.0, 2.0, 60.6, 39.4, 0.0 +2.68051948051948,2.68,a-cure-i1,2023-24,12.899999999999999,77.0,Malden - Malden High,01650505, 21.2, 20.4, 31.3, 23.0, 0.2, 0.0, 3.9, 49.9, 50.0, 0.1 +3.6577017114914434,3.66,a-cure-i1,2023-24,18.700000000000003,81.8,Malden - Salemwood,01650057, 21.8, 13.0, 43.4, 18.2, 0.5, 0.0, 3.1, 50.1, 49.8, 0.1 +1,1,a-cure-i1,2023-24,0.0,4.799999999999997,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 3.9, 95.2, 0.0, 0.0, 0.9, 45.4, 54.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,4.700000000000003,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.0, 2.5, 95.3, 0.0, 0.0, 1.3, 50.3, 49.8, 0.0 +1,1,a-cure-i1,2023-24,4.0,3.5999999999999943,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.7, 2.2, 96.4, 0.0, 0.0, 0.7, 46.7, 53.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,6.400000000000006,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 1.7, 1.7, 93.6, 0.0, 0.0, 3.0, 45.8, 54.2, 0.0 +1,1,a-cure-i1,2023-24,2.5,23.900000000000006,Mansfield - Everett W Robinson,01670007, 4.2, 7.6, 7.2, 76.1, 0.1, 0.0, 4.8, 50.7, 49.3, 0.0 +3.014492753623189,3.01,a-cure-i1,2023-24,5.2,27.599999999999994,Mansfield - Harold L Qualters Middle,01670035, 5.2, 9.5, 6.6, 72.4, 0.1, 0.0, 6.1, 52.8, 47.1, 0.1 +1,1,a-cure-i1,2023-24,2.9,25.700000000000003,Mansfield - Jordan/Jackson Elementary,01670014, 4.7, 7.7, 7.9, 74.3, 0.3, 0.1, 5.0, 50.0, 49.9, 0.1 +5.675213675213675,5,a-cure-i1,2023-24,8.3,23.400000000000006,Mansfield - Mansfield High,01670505, 6.1, 8.2, 6.0, 76.6, 0.1, 0.0, 3.0, 54.0, 45.8, 0.2 +1,1,a-cure-i1,2023-24,0.0,34.0,Mansfield - Roland Green School,01670003, 7.0, 10.0, 9.0, 66.0, 0.0, 0.0, 8.0, 61.0, 39.0, 0.0 +9.99209486166008,5,a-cure-i1,2023-24,15.799999999999999,25.299999999999997,Map Academy Charter School (District) - Map Academy Charter School,35170505, 4.0, 0.7, 10.5, 74.7, 1.1, 0.4, 8.7, 53.8, 42.6, 3.6 +1,1,a-cure-i1,2023-24,0.0,17.400000000000006,Marblehead - Glover,01680020, 1.6, 1.2, 8.7, 82.6, 0.0, 0.0, 5.9, 56.4, 43.6, 0.0 +1,1,a-cure-i1,2023-24,2.9,16.5,Marblehead - Lucretia and Joseph Brown School,01680030, 0.2, 1.1, 9.5, 83.5, 0.0, 0.0, 5.7, 53.6, 46.4, 0.0 +6.9818181818181815,5,a-cure-i1,2023-24,7.199999999999999,16.5,Marblehead - Marblehead High,01680505, 3.4, 1.3, 8.6, 83.5, 0.1, 0.0, 3.1, 50.9, 48.2, 0.9 +1,1,a-cure-i1,2023-24,4.800000000000001,16.700000000000003,Marblehead - Marblehead Veterans Middle School,01680300, 2.7, 1.4, 8.1, 83.3, 0.0, 0.0, 4.5, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.900000000000006,Marblehead - Village School,01680016, 3.5, 1.7, 7.3, 83.1, 0.0, 0.0, 4.5, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,32.0,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 6.9, 2.3, 16.6, 68.0, 0.0, 0.6, 5.7, 50.3, 49.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.299999999999997,Marion - Sippican,01690005, 3.6, 1.8, 5.7, 81.7, 0.3, 0.0, 6.9, 51.4, 48.6, 0.0 +1.841095890410959,1.84,a-cure-i1,2023-24,8.4,73.0,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 4.8, 1.2, 64.7, 27.0, 0.0, 0.0, 2.3, 52.8, 47.2, 0.0 +1,1,a-cure-i1,2023-24,3.9,62.3,Marlborough - Charles Jaworek School,01700030, 4.6, 1.2, 52.1, 37.7, 0.0, 0.0, 4.4, 52.8, 47.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,47.6,Marlborough - Early Childhood Center,01700006, 7.8, 2.2, 27.7, 52.4, 0.0, 0.0, 10.0, 55.8, 43.7, 0.4 +2.3367697594501715,2.34,a-cure-i1,2023-24,8.5,58.2,Marlborough - Francis J Kane,01700008, 6.3, 0.4, 46.5, 41.8, 0.2, 0.0, 4.9, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,1.7,64.8,Marlborough - Goodnow Brothers Elementary School,01700020, 4.4, 0.5, 56.4, 35.2, 0.0, 0.0, 3.5, 54.6, 45.4, 0.0 +1.2782369146005512,1.28,a-cure-i1,2023-24,5.800000000000001,72.6,Marlborough - Marlborough High,01700505, 5.0, 1.0, 62.8, 27.4, 0.0, 0.0, 3.8, 54.1, 45.7, 0.2 +1,1,a-cure-i1,2023-24,2.8,74.6,Marlborough - Richer,01700025, 3.8, 1.6, 62.5, 25.4, 0.0, 0.0, 6.7, 50.3, 49.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.700000000000003,Marshfield - Daniel Webster,01710015, 3.0, 1.1, 3.3, 89.3, 0.0, 1.8, 1.5, 54.2, 45.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,5.299999999999997,Marshfield - Eames Way School,01710005, 0.0, 0.0, 3.5, 94.7, 0.0, 0.0, 1.8, 48.7, 51.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.400000000000006,Marshfield - Furnace Brook Middle,01710310, 1.2, 1.3, 4.5, 89.6, 0.4, 0.4, 2.7, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,6.200000000000003,Marshfield - Gov Edward Winslow,01710020, 0.3, 0.6, 3.4, 93.8, 0.0, 0.0, 2.0, 58.6, 41.4, 0.0 +1,1,a-cure-i1,2023-24,2.5,9.099999999999994,Marshfield - Marshfield High,01710505, 1.2, 1.0, 4.5, 90.9, 0.3, 0.1, 2.0, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.700000000000003,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 5.0, 0.0, 2.5, 88.3, 0.0, 0.0, 4.2, 59.2, 40.8, 0.0 +1,1,a-cure-i1,2023-24,3.9,12.400000000000006,Marshfield - Martinson Elementary,01710025, 3.8, 0.9, 4.6, 87.6, 0.0, 0.0, 3.1, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,4.799999999999997,Marshfield - South River,01710010, 1.2, 1.2, 0.4, 95.2, 0.0, 0.0, 2.0, 49.0, 51.0, 0.0 +3.349862258953168,3.35,a-cure-i1,2023-24,7.6,36.3,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 4.0, 0.4, 26.1, 63.7, 1.5, 0.0, 4.3, 49.0, 50.8, 0.1 +9.90134529147982,5,a-cure-i1,2023-24,13.799999999999999,22.299999999999997,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 3.4, 0.6, 8.0, 77.7, 1.1, 0.0, 9.1, 39.4, 60.6, 0.0 +9.237613751263902,5,a-cure-i1,2023-24,57.1,98.9,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 28.4, 1.7, 65.7, 1.1, 1.1, 0.0, 2.0, 48.3, 51.7, 0.0 +1,1,a-cure-i1,2023-24,1.5,11.099999999999994,Masconomet - Masconomet Regional High School,07050505, 0.8, 3.5, 4.1, 88.9, 0.1, 0.1, 2.5, 46.6, 53.3, 0.1 +8.330578512396698,5,a-cure-i1,2023-24,6.300000000000001,12.099999999999994,Masconomet - Masconomet Regional Middle School,07050405, 0.9, 2.7, 5.0, 87.9, 0.2, 0.0, 3.4, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.599999999999994,Mashpee - Kenneth Coombs School,01720005, 2.2, 0.7, 11.4, 69.4, 3.2, 0.0, 12.9, 51.2, 48.8, 0.0 +3.764705882352942,3.76,a-cure-i1,2023-24,7.2,30.599999999999994,Mashpee - Mashpee Middle-High School,01720505, 4.7, 1.8, 9.2, 69.4, 6.0, 0.0, 9.0, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,1.1,36.0,Mashpee - Quashnet School,01720035, 4.4, 2.2, 10.0, 64.0, 4.2, 0.5, 14.7, 56.1, 43.9, 0.0 +6.347914547304171,5,a-cure-i1,2023-24,39.0,98.3,Match Charter Public School (District) - Match Charter Public School,04690505, 48.7, 0.3, 47.3, 1.7, 0.2, 0.2, 1.7, 50.4, 49.5, 0.1 +1,1,a-cure-i1,2023-24,0.0,10.900000000000006,Mattapoisett - Center,01730005, 1.3, 0.9, 5.7, 89.1, 0.0, 0.0, 3.0, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.900000000000006,Mattapoisett - Old Hammondtown,01730010, 0.6, 1.2, 7.1, 84.1, 0.0, 0.0, 7.1, 53.5, 46.5, 0.0 +8.927038626609443,5,a-cure-i1,2023-24,13.0,23.299999999999997,Maynard - Fowler School,01740305, 2.5, 0.8, 15.8, 76.7, 0.0, 0.0, 4.2, 51.1, 48.5, 0.4 +9.611510791366907,5,a-cure-i1,2023-24,16.7,27.799999999999997,Maynard - Green Meadow,01740010, 4.0, 2.8, 15.0, 72.2, 0.5, 0.0, 5.6, 49.5, 50.2, 0.2 +1,1,a-cure-i1,2023-24,2.4,22.900000000000006,Maynard - Maynard High,01740505, 2.7, 2.4, 14.5, 77.1, 0.0, 0.0, 3.4, 46.1, 52.5, 1.3 +1,1,a-cure-i1,2023-24,3.3,11.900000000000006,Medfield - Dale Street,01750005, 1.0, 4.2, 3.2, 88.1, 0.2, 0.0, 3.2, 50.5, 49.5, 0.0 +1,1,a-cure-i1,2023-24,2.0,15.700000000000003,Medfield - Medfield Senior High,01750505, 1.1, 3.5, 6.1, 84.3, 0.6, 0.0, 4.4, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,1.0,14.099999999999994,Medfield - Memorial School,01750003, 2.2, 3.4, 4.4, 85.9, 0.0, 0.0, 4.1, 52.4, 47.6, 0.0 +10.947368421052634,5,a-cure-i1,2023-24,9.1,13.299999999999997,Medfield - Ralph Wheelock School,01750007, 2.0, 3.3, 4.5, 86.7, 0.3, 0.0, 3.3, 49.0, 51.0, 0.0 +1,1,a-cure-i1,2023-24,3.4000000000000004,16.599999999999994,Medfield - Thomas Blake Middle,01750305, 2.6, 4.6, 5.6, 83.4, 0.0, 0.0, 3.8, 50.9, 48.9, 0.2 +1,1,a-cure-i1,2023-24,0.0,23.799999999999997,Medford - Brooks School,01760130, 4.5, 4.7, 6.7, 76.2, 0.4, 0.0, 7.6, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,46.7,Medford - Curtis-Tufts,01760510, 13.3, 0.0, 26.7, 53.3, 0.0, 0.0, 6.7, 53.3, 46.7, 0.0 +3.1999999999999997,3.2,a-cure-i1,2023-24,12.1,60.5,Medford - John J McGlynn Elementary School,01760068, 13.4, 16.8, 26.9, 39.5, 0.4, 0.0, 3.0, 51.1, 48.7, 0.2 +1,1,a-cure-i1,2023-24,4.8999999999999995,45.8,Medford - John J. McGlynn Middle School,01760320, 13.0, 10.0, 16.9, 54.2, 0.5, 0.0, 5.6, 54.6, 44.9, 0.5 +2.6096256684491976,2.61,a-cure-i1,2023-24,6.1,37.4,Medford - Madeleine Dugger Andrews,01760315, 10.2, 7.5, 11.7, 62.6, 1.3, 0.2, 6.4, 48.5, 51.1, 0.4 +1,1,a-cure-i1,2023-24,4.6,44.9,Medford - Medford High,01760505, 14.3, 9.5, 16.0, 55.1, 0.3, 0.1, 4.8, 53.1, 46.1, 0.8 +1,1,a-cure-i1,2023-24,0.0,38.4,Medford - Milton Fuller Roberts,01760150, 7.4, 10.5, 12.4, 61.6, 0.7, 0.0, 7.4, 48.5, 51.3, 0.2 +1,1,a-cure-i1,2023-24,2.9,41.0,Medford - Missituk Elementary School,01760140, 8.9, 7.6, 16.7, 59.0, 0.7, 0.0, 7.1, 49.7, 49.7, 0.7 +1,1,a-cure-i1,2023-24,0.0,21.200000000000003,Medway - Burke/Memorial Elementary School,01770015, 1.8, 5.7, 10.0, 78.8, 0.0, 0.0, 3.7, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,4.3,23.900000000000006,Medway - John D Mc Govern Elementary,01770013, 2.1, 4.5, 10.9, 76.1, 0.3, 0.0, 6.1, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,2.4,19.599999999999994,Medway - Medway High,01770505, 2.5, 4.0, 9.2, 80.4, 0.3, 0.3, 3.3, 48.4, 50.9, 0.7 +1,1,a-cure-i1,2023-24,0.0,16.5,Medway - Medway Middle,01770305, 2.6, 4.1, 7.7, 83.5, 0.2, 0.2, 2.0, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,1.9,23.299999999999997,Melrose - Early Childhood Center,01780003, 2.3, 10.9, 4.3, 76.7, 0.8, 0.0, 5.0, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.099999999999994,Melrose - Herbert Clark Hoover,01780017, 6.4, 7.8, 8.1, 73.9, 0.0, 0.0, 3.9, 48.8, 51.2, 0.0 +1,1,a-cure-i1,2023-24,2.7,15.400000000000006,Melrose - Horace Mann,01780025, 3.4, 1.1, 5.6, 84.6, 0.0, 0.0, 5.3, 50.8, 48.9, 0.4 +1,1,a-cure-i1,2023-24,1.4,40.5,Melrose - Lincoln,01780020, 7.3, 15.5, 8.0, 59.5, 0.2, 0.0, 9.5, 49.0, 51.0, 0.0 +1,1,a-cure-i1,2023-24,4.2,27.200000000000003,Melrose - Melrose High,01780505, 9.4, 6.3, 6.9, 72.8, 0.1, 0.1, 4.5, 47.7, 51.9, 0.4 +4.437500000000001,4.44,a-cure-i1,2023-24,7.1,25.599999999999994,Melrose - Melrose Middle,01780305, 5.5, 5.8, 7.1, 74.4, 0.0, 0.0, 7.1, 50.1, 49.7, 0.2 +1,1,a-cure-i1,2023-24,0.0,17.599999999999994,Melrose - Roosevelt,01780035, 2.7, 4.2, 3.7, 82.4, 0.2, 0.0, 6.7, 50.1, 49.1, 0.7 +1,1,a-cure-i1,2023-24,4.3,17.0,Melrose - Winthrop,01780050, 3.0, 3.7, 4.2, 83.0, 0.0, 0.0, 6.0, 49.1, 50.1, 0.7 +1,1,a-cure-i1,2023-24,4.9,10.599999999999994,Mendon-Upton - Henry P Clough,07100179, 0.8, 1.3, 7.7, 89.4, 0.3, 0.0, 0.5, 51.1, 48.9, 0.0 +7.172413793103446,5,a-cure-i1,2023-24,7.8,17.400000000000006,Mendon-Upton - Memorial School,07100001, 1.8, 4.6, 8.4, 82.6, 0.0, 0.0, 2.6, 46.5, 53.5, 0.0 +1,1,a-cure-i1,2023-24,2.4,12.299999999999997,Mendon-Upton - Miscoe Hill School,07100015, 1.1, 3.1, 6.0, 87.7, 0.0, 0.0, 2.0, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,2.6,13.400000000000006,Mendon-Upton - Nipmuc Regional High,07100510, 0.9, 2.0, 7.7, 86.6, 0.0, 0.0, 2.9, 47.9, 51.7, 0.4 +1,1,a-cure-i1,2023-24,3.1,63.6,Methuen - Comprehensive Grammar School,01810050, 8.9, 3.8, 49.0, 36.4, 0.0, 0.0, 1.9, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,2.9,67.9,Methuen - Donald P Timony Grammar,01810060, 7.0, 2.9, 56.0, 32.1, 0.2, 0.1, 1.8, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,76.2,Methuen - Early Childhood Center,01810001, 9.1, 3.5, 58.7, 23.8, 0.0, 0.0, 4.9, 67.1, 32.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,54.6,Methuen - Marsh Grammar School,01810030, 6.0, 2.5, 42.3, 45.4, 0.1, 0.1, 3.6, 55.9, 44.1, 0.0 +1.4382022471910112,1.44,a-cure-i1,2023-24,5.6,62.3,Methuen - Methuen High,01810505, 6.3, 4.0, 50.2, 37.7, 0.0, 0.0, 1.9, 52.6, 47.2, 0.2 +1,1,a-cure-i1,2023-24,3.7,73.9,Methuen - Tenney Grammar School,01810055, 4.3, 2.4, 64.8, 26.1, 0.0, 0.1, 2.4, 49.1, 50.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.599999999999994,Middleborough - Henry B. Burkland Elementary School,01820008, 3.4, 1.4, 5.3, 83.4, 0.5, 0.5, 5.5, 49.0, 51.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.200000000000003,Middleborough - John T. Nichols Middle,01820305, 4.2, 1.6, 3.9, 82.8, 0.3, 0.0, 7.2, 48.7, 51.3, 0.0 +1,1,a-cure-i1,2023-24,3.0,17.5,Middleborough - Mary K. Goode Elementary School,01820010, 3.6, 1.8, 5.4, 82.5, 0.7, 0.0, 6.1, 48.3, 51.6, 0.2 +1,1,a-cure-i1,2023-24,0.0,21.700000000000003,Middleborough - Memorial Early Childhood Center,01820011, 6.4, 0.4, 8.6, 78.3, 0.4, 0.0, 6.0, 53.9, 45.3, 0.7 +1,1,a-cure-i1,2023-24,1.6,16.599999999999994,Middleborough - Middleborough High,01820505, 5.3, 1.0, 3.5, 83.4, 0.8, 0.1, 5.8, 49.5, 50.1, 0.5 +1,1,a-cure-i1,2023-24,0.0,13.299999999999997,Middleton - Fuller Meadow,01840003, 1.1, 2.1, 6.0, 86.7, 0.4, 0.4, 3.5, 56.5, 43.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.5,Middleton - Howe-Manning,01840005, 1.1, 5.5, 5.3, 83.5, 1.4, 0.0, 3.2, 50.3, 49.7, 0.0 +1,1,a-cure-i1,2023-24,3.5,51.3,Milford - Brookside,01850065, 3.5, 0.9, 42.7, 48.7, 1.2, 0.0, 3.0, 54.1, 45.9, 0.0 +1,1,a-cure-i1,2023-24,1.6,47.7,Milford - Memorial,01850010, 3.2, 2.0, 38.7, 52.3, 1.1, 0.0, 2.7, 52.9, 47.1, 0.0 +1,1,a-cure-i1,2023-24,4.2,47.3,Milford - Milford High,01850505, 3.9, 1.5, 35.6, 52.7, 2.5, 0.1, 3.5, 54.7, 45.3, 0.1 +1,1,a-cure-i1,2023-24,0.0,51.3,Milford - Shining Star Early Childhood Center,01850075, 7.1, 5.8, 31.8, 48.7, 2.6, 0.6, 3.2, 60.4, 39.6, 0.0 +2.495412844036697,2.5,a-cure-i1,2023-24,6.8,43.6,Milford - Stacy Middle,01850305, 4.0, 1.1, 34.4, 56.4, 0.7, 0.3, 3.0, 52.6, 47.4, 0.0 +2.4504504504504503,2.45,a-cure-i1,2023-24,6.8,44.4,Milford - Woodland,01850090, 3.9, 1.8, 35.1, 55.6, 1.3, 0.0, 2.2, 50.9, 49.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,27.5,Millbury - Elmwood Street,01860017, 6.7, 5.4, 9.7, 72.5, 0.2, 0.0, 5.4, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,1.8,28.400000000000006,Millbury - Millbury Junior/Senior High,01860505, 4.7, 4.4, 12.6, 71.6, 0.0, 0.1, 6.5, 54.6, 44.4, 1.0 +1,1,a-cure-i1,2023-24,0.0,22.299999999999997,Millbury - Raymond E. Shaw Elementary,01860025, 4.3, 4.1, 8.4, 77.7, 0.0, 0.0, 5.6, 52.9, 47.1, 0.0 +4.118143459915611,4.12,a-cure-i1,2023-24,6.1,23.700000000000003,Millis - Clyde F Brown,01870005, 1.7, 3.5, 12.4, 76.3, 0.5, 0.0, 5.5, 49.1, 50.9, 0.0 +1,1,a-cure-i1,2023-24,3.5,19.599999999999994,Millis - Millis High School,01870505, 0.6, 3.2, 10.4, 80.4, 0.3, 0.0, 5.0, 49.2, 50.5, 0.3 +1,1,a-cure-i1,2023-24,1.8,19.400000000000006,Millis - Millis Middle,01870020, 1.1, 2.2, 10.8, 80.6, 0.4, 0.4, 4.5, 46.6, 53.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.700000000000003,Millis - TIES,01870515, 16.7, 0.0, 0.0, 83.3, 0.0, 0.0, 0.0, 16.7, 83.3, 0.0 +3.335211267605634,3.34,a-cure-i1,2023-24,7.4,35.5,Milton - Charles S Pierce Middle,01890410, 14.1, 9.3, 5.9, 64.5, 0.1, 0.0, 6.1, 48.5, 51.4, 0.1 +6.449612403100776,5,a-cure-i1,2023-24,10.4,25.799999999999997,Milton - Collicot,01890005, 3.2, 12.6, 3.9, 74.2, 0.0, 0.0, 6.0, 47.8, 52.2, 0.0 +4.744827586206896,4.74,a-cure-i1,2023-24,8.6,29.0,Milton - Cunningham School,01890007, 4.4, 10.3, 6.7, 71.0, 0.0, 0.3, 7.2, 51.2, 48.8, 0.0 +5.963636363636363,5,a-cure-i1,2023-24,8.2,22.0,Milton - Glover,01890010, 5.3, 4.8, 5.6, 78.0, 0.5, 0.0, 5.8, 46.1, 53.9, 0.0 +1,1,a-cure-i1,2023-24,4.7,33.599999999999994,Milton - Milton High,01890505, 14.7, 7.1, 7.4, 66.4, 0.2, 0.0, 4.3, 52.3, 47.1, 0.6 +4.777947932618683,4.78,a-cure-i1,2023-24,19.5,65.3,Milton - Tucker,01890020, 33.4, 8.2, 10.9, 34.7, 0.0, 0.0, 12.7, 54.6, 45.4, 0.0 +1,1,a-cure-i1,2023-24,3.9000000000000004,27.400000000000006,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 5.0, 4.0, 11.7, 72.6, 0.1, 0.0, 6.6, 62.7, 35.1, 2.2 +1,1,a-cure-i1,2023-24,0.0,12.799999999999997,Mohawk Trail - Buckland-Shelburne Regional,07170005, 1.1, 0.4, 6.8, 87.2, 0.0, 0.0, 4.5, 44.7, 54.9, 0.4 +1,1,a-cure-i1,2023-24,0.0,10.700000000000003,Mohawk Trail - Colrain Central,07170010, 2.9, 0.0, 5.8, 89.3, 0.0, 0.0, 1.9, 60.2, 39.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.400000000000006,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.7, 0.7, 5.0, 89.6, 0.0, 0.0, 4.0, 47.2, 51.8, 1.0 +1,1,a-cure-i1,2023-24,0.0,5.099999999999994,Mohawk Trail - Sanderson Academy,07170020, 2.9, 0.0, 1.4, 94.9, 0.7, 0.0, 0.0, 52.9, 47.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,34.2,Monomoy Regional School District - Chatham Elementary School,07120001, 6.7, 0.7, 16.8, 65.8, 0.7, 0.0, 9.4, 56.4, 43.6, 0.0 +1,1,a-cure-i1,2023-24,4.4,26.5,Monomoy Regional School District - Harwich Elementary School,07120002, 6.5, 3.2, 9.1, 73.5, 0.2, 0.2, 7.3, 56.7, 43.3, 0.0 +5.184,5,a-cure-i1,2023-24,8.1,25.0,Monomoy Regional School District - Monomoy Regional High School,07120515, 8.1, 1.5, 9.9, 75.0, 0.8, 0.1, 4.6, 48.1, 51.3, 0.6 +1,1,a-cure-i1,2023-24,2.4,24.599999999999994,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 5.8, 1.0, 10.6, 75.4, 0.5, 0.2, 6.5, 53.9, 45.9, 0.2 +1,1,a-cure-i1,2023-24,3.1,14.5,Monson - Granite Valley School,01910030, 1.0, 1.6, 9.3, 85.5, 0.5, 0.0, 2.1, 47.0, 53.0, 0.0 +1,1,a-cure-i1,2023-24,2.9,17.299999999999997,Monson - Monson High School,01910505, 1.7, 1.0, 9.5, 82.7, 0.3, 0.3, 4.4, 46.8, 52.5, 0.7 +18.000000000000007,5,a-cure-i1,2023-24,9.9,8.799999999999997,Monson - Quarry Hill Community School,01910010, 1.6, 0.8, 5.6, 91.2, 0.0, 0.0, 0.8, 50.4, 49.6, 0.0 +6.891385767790261,5,a-cure-i1,2023-24,11.5,26.700000000000003,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 3.0, 1.3, 17.5, 73.3, 0.0, 0.1, 4.8, 52.2, 46.8, 1.0 +1,1,a-cure-i1,2023-24,0.0,14.799999999999997,Mount Greylock - Lanesborough Elementary,07150005, 2.2, 3.1, 7.4, 85.2, 0.0, 0.4, 1.7, 50.7, 49.3, 0.0 +7.613793103448276,5,a-cure-i1,2023-24,6.9,14.5,Mount Greylock - Mt Greylock Regional High,07150505, 2.7, 1.3, 6.7, 85.5, 0.0, 0.0, 3.8, 49.9, 49.2, 0.9 +1,1,a-cure-i1,2023-24,3.2,22.299999999999997,Mount Greylock - Williamstown Elementary,07150010, 4.6, 3.7, 7.0, 77.7, 0.0, 0.0, 7.0, 53.4, 45.9, 0.7 +4.54380664652568,4.54,a-cure-i1,2023-24,18.8,66.2,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 17.9, 31.0, 12.6, 33.8, 0.2, 0.1, 4.4, 49.1, 50.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.400000000000006,Nahant - Johnson,01960010, 0.0, 0.7, 11.4, 84.6, 0.0, 0.0, 3.4, 59.1, 40.9, 0.0 +4.215053763440861,4.22,a-cure-i1,2023-24,14.700000000000001,55.8,Nantucket - Cyrus Peirce,01970010, 8.5, 0.6, 41.1, 44.2, 0.0, 0.0, 5.7, 52.7, 47.3, 0.0 +1.7943925233644857,1.79,a-cure-i1,2023-24,7.199999999999999,64.2,Nantucket - Nantucket Elementary,01970005, 9.3, 1.5, 46.9, 35.8, 0.0, 0.0, 6.5, 46.9, 53.1, 0.0 +4.559139784946237,4.56,a-cure-i1,2023-24,15.9,55.8,Nantucket - Nantucket High,01970505, 9.6, 2.4, 40.1, 44.2, 0.0, 0.0, 3.7, 51.4, 48.6, 0.0 +2.2974358974358973,2.3,a-cure-i1,2023-24,8.399999999999999,58.5,Nantucket - Nantucket Intermediate School,01970020, 5.6, 0.9, 47.4, 41.5, 0.0, 0.0, 4.7, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.099999999999994,Narragansett - Narragansett Middle,07200305, 0.5, 1.1, 8.5, 86.9, 0.0, 0.0, 3.0, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,2.9,16.799999999999997,Narragansett - Narragansett Regional High,07200505, 1.3, 1.1, 9.9, 83.2, 0.2, 0.2, 4.2, 55.4, 43.4, 1.3 +1,1,a-cure-i1,2023-24,0.0,18.099999999999994,Narragansett - Templeton Elementary School,07200020, 2.1, 0.7, 11.1, 81.9, 0.0, 0.0, 4.2, 51.8, 48.2, 0.0 +1,1,a-cure-i1,2023-24,3.3,21.400000000000006,Nashoba - Center School,07250020, 0.8, 5.8, 8.0, 78.6, 0.0, 0.0, 6.8, 53.4, 46.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.400000000000006,Nashoba - Florence Sawyer School,07250025, 1.2, 4.3, 5.8, 83.6, 0.0, 0.1, 5.0, 50.9, 49.0, 0.1 +5.017751479289939,5,a-cure-i1,2023-24,5.3,16.900000000000006,Nashoba - Hale,07250310, 0.8, 4.2, 5.9, 83.1, 0.0, 0.0, 5.9, 46.4, 53.2, 0.4 +3.7647058823529425,3.76,a-cure-i1,2023-24,5.2,22.099999999999994,Nashoba - Luther Burbank Middle School,07250305, 1.2, 0.8, 14.5, 77.9, 0.4, 0.0, 5.2, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.299999999999997,Nashoba - Mary Rowlandson Elementary,07250010, 1.7, 2.6, 14.8, 77.7, 0.0, 0.0, 3.3, 51.8, 48.2, 0.0 +1,1,a-cure-i1,2023-24,4.8,18.700000000000003,Nashoba - Nashoba Regional,07250505, 2.5, 4.9, 7.7, 81.3, 0.0, 0.1, 3.4, 47.3, 52.2, 0.5 +1,1,a-cure-i1,2023-24,4.6,21.099999999999994,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 2.3, 1.2, 13.1, 78.9, 0.1, 0.0, 4.4, 60.3, 37.1, 2.6 +3.555555555555555,3.56,a-cure-i1,2023-24,7.2,32.400000000000006,Natick - Bennett-Hemenway,01980005, 1.8, 14.3, 10.0, 67.6, 0.0, 0.0, 6.1, 53.1, 46.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,46.9,Natick - Brown,01980010, 3.3, 23.4, 14.6, 53.1, 0.0, 0.0, 5.5, 53.5, 46.5, 0.0 +2.8333333333333335,2.83,a-cure-i1,2023-24,5.1,28.799999999999997,Natick - J F Kennedy Middle School,01980305, 1.9, 11.3, 9.0, 71.2, 0.3, 0.0, 6.3, 53.2, 46.7, 0.1 +1,1,a-cure-i1,2023-24,0.0,21.599999999999994,Natick - Johnson,01980031, 2.0, 7.8, 9.8, 78.4, 0.0, 0.0, 2.0, 58.8, 41.2, 0.0 +1,1,a-cure-i1,2023-24,3.9,34.900000000000006,Natick - Lilja Elementary,01980035, 2.2, 11.7, 13.2, 65.1, 0.2, 0.0, 7.6, 48.5, 51.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.400000000000006,Natick - Memorial,01980043, 1.4, 7.2, 6.8, 76.6, 0.0, 0.0, 8.1, 50.2, 49.8, 0.0 +3.8326996197718635,3.83,a-cure-i1,2023-24,6.3,26.299999999999997,Natick - Natick High,01980505, 3.6, 9.5, 8.0, 73.7, 0.1, 0.1, 5.0, 53.8, 45.4, 0.7 +1,1,a-cure-i1,2023-24,3.1000000000000005,29.5,Natick - Wilson Middle,01980310, 4.0, 9.2, 8.2, 70.5, 0.1, 0.0, 8.0, 49.7, 50.1, 0.1 +1,1,a-cure-i1,2023-24,2.8,16.5,Nauset - Nauset Regional High,06600505, 5.3, 2.0, 5.6, 83.5, 0.1, 0.0, 3.5, 45.8, 53.7, 0.5 +1,1,a-cure-i1,2023-24,2.4,20.599999999999994,Nauset - Nauset Regional Middle,06600305, 5.2, 1.0, 7.6, 79.4, 0.0, 0.0, 6.8, 49.5, 50.5, 0.0 +5.316770186335403,5,a-cure-i1,2023-24,10.7,32.2,Needham - Broadmeadow,01990005, 2.1, 14.9, 5.9, 67.8, 0.0, 0.0, 9.2, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,2.7,26.799999999999997,Needham - High Rock School,01990410, 3.4, 12.5, 5.4, 73.2, 0.0, 0.0, 5.6, 50.8, 49.0, 0.2 +2.8822170900692843,2.88,a-cure-i1,2023-24,7.8,43.3,Needham - John Eliot,01990020, 4.7, 19.4, 9.2, 56.7, 0.0, 0.0, 10.0, 49.0, 51.0, 0.0 +9.322314049586776,5,a-cure-i1,2023-24,14.1,24.200000000000003,Needham - Needham High,01990505, 2.5, 9.0, 7.9, 75.8, 0.0, 0.1, 4.7, 48.1, 51.0, 0.9 +3.679442508710801,3.68,a-cure-i1,2023-24,6.6,28.700000000000003,Needham - Newman Elementary,01990050, 3.4, 11.9, 7.2, 71.3, 0.0, 0.1, 6.0, 54.9, 45.1, 0.0 +5.6598639455782305,5,a-cure-i1,2023-24,10.4,29.400000000000006,Needham - Pollard Middle,01990405, 3.9, 11.4, 8.0, 70.6, 0.0, 0.0, 6.3, 48.5, 51.5, 0.0 +6.040816326530612,5,a-cure-i1,2023-24,11.100000000000001,29.400000000000006,Needham - Sunita L. Williams Elementary,01990035, 4.3, 11.1, 6.0, 70.6, 0.2, 0.2, 7.5, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,4.4,23.700000000000003,Needham - William Mitchell,01990040, 3.0, 10.5, 4.6, 76.3, 0.0, 0.0, 5.7, 50.8, 49.2, 0.0 +8.642464246424643,5,a-cure-i1,2023-24,49.1,90.9,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 51.8, 2.5, 29.6, 9.1, 0.2, 0.0, 6.9, 50.8, 49.2, 0.0 +1.9358600583090382,1.94,a-cure-i1,2023-24,8.3,68.6,New Bedford - Abraham Lincoln,02010095, 12.4, 0.9, 47.9, 31.4, 0.3, 0.0, 7.1, 54.2, 45.8, 0.0 +4.716553287981859,4.72,a-cure-i1,2023-24,26.0,88.2,New Bedford - Alfred J Gomes,02010063, 14.1, 0.5, 70.2, 11.8, 0.3, 0.0, 3.1, 51.8, 48.2, 0.0 +1,1,a-cure-i1,2023-24,3.4,42.3,New Bedford - Betsey B Winslow,02010140, 10.3, 2.1, 21.4, 57.7, 0.4, 0.0, 8.1, 52.6, 47.0, 0.4 +2.1361256544502614,2.14,a-cure-i1,2023-24,10.2,76.4,New Bedford - Carlos Pacheco,02010105, 15.4, 1.2, 52.4, 23.6, 0.4, 0.0, 7.1, 49.2, 50.8, 0.0 +1,1,a-cure-i1,2023-24,2.4,36.6,New Bedford - Casimir Pulaski,02010123, 7.3, 1.1, 23.0, 63.4, 0.5, 0.2, 4.5, 54.8, 45.2, 0.0 +1,1,a-cure-i1,2023-24,2.7,50.0,New Bedford - Charles S Ashley,02010010, 7.6, 1.1, 32.8, 50.0, 0.0, 0.0, 8.4, 52.3, 47.7, 0.0 +4.9694793536804305,4.97,a-cure-i1,2023-24,17.3,55.7,New Bedford - Elizabeth Carter Brooks,02010015, 14.0, 0.8, 34.5, 44.3, 0.4, 0.0, 6.1, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,65.3,New Bedford - Ellen R Hathaway,02010075, 18.8, 2.0, 40.8, 34.7, 0.0, 0.0, 3.7, 49.4, 50.6, 0.0 +1.4647887323943662,1.46,a-cure-i1,2023-24,5.2,56.8,New Bedford - Elwyn G Campbell,02010020, 12.9, 1.1, 38.1, 43.2, 0.0, 0.0, 4.7, 60.8, 39.2, 0.0 +2.1626794258373208,2.16,a-cure-i1,2023-24,11.3,83.6,New Bedford - Hayden/McFadden,02010078, 13.2, 0.7, 65.8, 16.4, 0.4, 0.0, 3.5, 50.1, 49.9, 0.0 +1.8420348058902274,1.84,a-cure-i1,2023-24,8.6,74.7,New Bedford - Irwin M. Jacobs Elementary School,02010070, 9.7, 0.5, 59.0, 25.3, 0.3, 0.3, 5.0, 48.3, 51.4, 0.3 +2.475873544093178,2.48,a-cure-i1,2023-24,9.3,60.1,New Bedford - James B Congdon,02010040, 15.0, 0.7, 39.9, 39.9, 0.7, 0.0, 4.0, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,48.0,New Bedford - Jireh Swift,02010130, 9.5, 1.8, 30.3, 52.0, 1.4, 0.0, 5.0, 45.7, 54.3, 0.0 +3.933333333333334,3.93,a-cure-i1,2023-24,17.700000000000003,72.0,New Bedford - John Avery Parker,02010115, 18.6, 0.4, 44.7, 28.0, 0.0, 0.0, 8.3, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,74.3,New Bedford - John B Devalles,02010050, 18.5, 0.3, 49.0, 25.7, 0.3, 0.0, 6.2, 51.7, 48.3, 0.0 +4.3475513428120065,4.35,a-cure-i1,2023-24,17.2,63.3,New Bedford - Keith Middle School,02010405, 17.4, 0.7, 37.0, 36.7, 0.5, 0.0, 7.7, 50.3, 49.5, 0.1 +3.965417867435158,3.97,a-cure-i1,2023-24,17.2,69.4,New Bedford - New Bedford High,02010505, 15.6, 0.7, 47.3, 30.6, 0.4, 0.1, 5.4, 53.9, 45.8, 0.3 +2.3428571428571425,2.34,a-cure-i1,2023-24,8.2,56.0,New Bedford - Normandin Middle School,02010410, 9.3, 1.4, 40.5, 44.0, 0.5, 0.2, 4.0, 53.0, 46.9, 0.1 +3.1372549019607843,3.14,a-cure-i1,2023-24,14.0,71.4,New Bedford - Roosevelt Middle School,02010415, 17.1, 0.1, 50.3, 28.6, 0.0, 0.0, 3.9, 53.2, 46.8, 0.0 +3.737062937062937,3.74,a-cure-i1,2023-24,16.7,71.5,New Bedford - Sgt Wm H Carney Academy,02010045, 20.9, 0.7, 40.9, 28.5, 0.2, 0.0, 8.8, 59.1, 40.9, 0.0 +2.899145299145299,2.9,a-cure-i1,2023-24,10.6,58.5,New Bedford - Thomas R Rodman,02010125, 11.2, 1.5, 40.0, 41.5, 0.0, 0.0, 5.9, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,4.3,51.2,New Bedford - Trinity Day Academy,02010510, 10.5, 0.0, 33.7, 48.8, 0.0, 0.0, 7.0, 65.1, 33.7, 1.2 +2.4403183023872677,2.44,a-cure-i1,2023-24,11.5,75.4,New Bedford - Whaling City Junior/Senior High School,02010515, 15.6, 0.6, 49.2, 24.6, 0.0, 0.0, 10.1, 61.5, 38.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,42.5,New Bedford - William H Taylor,02010135, 8.8, 0.4, 23.4, 57.5, 0.0, 0.0, 10.0, 48.7, 51.3, 0.0 +5.93131313131313,5,a-cure-i1,2023-24,36.699999999999996,99.0,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 86.8, 0.4, 7.3, 1.0, 0.1, 0.1, 4.2, 48.4, 51.6, 0.0 +13.548387096774187,5,a-cure-i1,2023-24,10.5,12.400000000000006,New Salem-Wendell - Swift River,07280015, 0.0, 1.5, 5.8, 87.6, 0.0, 0.0, 5.1, 54.7, 45.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.700000000000003,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 2.7, 4.0, 89.3, 0.0, 0.0, 4.0, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,3.6,11.599999999999994,Newburyport - Francis T Bresnahan Elementary,02040005, 0.8, 1.5, 6.6, 88.4, 0.2, 0.0, 2.5, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.299999999999997,Newburyport - Newburyport High,02040505, 1.4, 3.3, 3.4, 89.7, 0.3, 0.0, 1.9, 48.3, 51.7, 0.0 +17.454545454545453,5,a-cure-i1,2023-24,12.0,11.0,Newburyport - Rupert A Nock Middle,02040305, 1.1, 1.9, 7.0, 89.0, 0.0, 0.0, 1.1, 48.4, 51.4, 0.2 +7.494736842105263,5,a-cure-i1,2023-24,17.8,38.0,Newton - A E Angier,02070005, 3.9, 16.9, 4.9, 62.0, 0.0, 0.0, 12.2, 47.4, 51.3, 1.3 +2.970917225950783,2.97,a-cure-i1,2023-24,8.3,44.7,Newton - Bigelow Middle,02070305, 5.1, 15.9, 14.7, 55.3, 0.0, 0.2, 8.7, 45.9, 53.4, 0.7 +9.062937062937062,5,a-cure-i1,2023-24,32.4,57.2,Newton - Bowen,02070015, 2.5, 30.7, 14.1, 42.8, 0.0, 0.0, 9.9, 50.4, 49.6, 0.0 +8.02930402930403,5,a-cure-i1,2023-24,27.4,54.6,Newton - C C Burr,02070020, 5.4, 23.9, 15.2, 45.4, 0.0, 0.0, 10.1, 49.0, 49.6, 1.4 +2.699588477366255,2.7,a-cure-i1,2023-24,8.2,48.6,Newton - Cabot,02070025, 4.4, 17.5, 12.6, 51.4, 0.0, 0.0, 14.0, 51.2, 48.4, 0.5 +2.3244552058111383,2.32,a-cure-i1,2023-24,6.0,41.3,Newton - Charles E Brown Middle,02070310, 3.7, 23.2, 7.8, 58.7, 0.0, 0.0, 6.6, 51.4, 47.8, 0.8 +4.039761431411532,4.04,a-cure-i1,2023-24,12.700000000000001,50.3,Newton - Countryside,02070040, 6.1, 26.1, 8.3, 49.7, 0.0, 0.0, 9.7, 52.5, 47.5, 0.0 +4.2898550724637685,4.29,a-cure-i1,2023-24,11.100000000000001,41.4,Newton - F A Day Middle,02070315, 5.2, 16.5, 8.5, 58.6, 0.1, 0.3, 10.7, 48.4, 51.3, 0.3 +3.603960396039604,3.6,a-cure-i1,2023-24,9.1,40.4,Newton - Franklin,02070055, 3.2, 17.5, 10.6, 59.6, 0.0, 0.0, 9.2, 45.8, 53.3, 0.9 +7.378823529411764,5,a-cure-i1,2023-24,19.599999999999998,42.5,Newton - Horace Mann,02070075, 5.3, 15.6, 10.0, 57.5, 0.0, 0.0, 11.7, 54.2, 45.6, 0.3 +5.107344632768361,5,a-cure-i1,2023-24,11.3,35.400000000000006,Newton - John Ward,02070120, 1.4, 16.5, 7.1, 64.6, 0.0, 0.0, 10.4, 51.9, 48.1, 0.0 +4.521739130434782,4.52,a-cure-i1,2023-24,16.9,59.8,Newton - Lincoln-Eliot,02070070, 6.1, 24.4, 19.8, 40.2, 0.0, 0.0, 9.5, 56.4, 43.6, 0.0 +1,1,a-cure-i1,2023-24,4.6,40.4,Newton - Mason-Rice,02070080, 1.8, 22.2, 6.3, 59.6, 0.0, 0.6, 9.6, 48.5, 51.5, 0.0 +4.7207207207207205,4.72,a-cure-i1,2023-24,13.1,44.4,Newton - Memorial Spaulding,02070105, 4.6, 23.8, 8.4, 55.6, 0.0, 0.0, 7.6, 43.4, 56.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,60.5,Newton - Newton Early Childhood Program,02070108, 7.0, 28.6, 11.9, 39.5, 0.0, 0.0, 13.0, 62.2, 37.8, 0.0 +5.9553349875930515,5,a-cure-i1,2023-24,14.999999999999998,40.3,Newton - Newton North High,02070505, 5.2, 16.2, 11.6, 59.7, 0.0, 0.2, 7.0, 49.9, 49.4, 0.7 +5.186206896551724,5,a-cure-i1,2023-24,14.1,43.5,Newton - Newton South High,02070510, 3.5, 24.7, 8.5, 56.5, 0.3, 0.1, 6.4, 51.2, 48.2, 0.6 +4.784761904761905,4.78,a-cure-i1,2023-24,15.700000000000001,52.5,Newton - Oak Hill Middle,02070320, 6.2, 27.0, 12.5, 47.5, 0.0, 0.0, 6.8, 52.2, 47.7, 0.2 +4.780722891566265,4.78,a-cure-i1,2023-24,12.4,41.5,Newton - Peirce,02070100, 4.2, 16.1, 11.9, 58.5, 0.0, 0.0, 9.3, 51.7, 48.3, 0.0 +5.562724014336918,5,a-cure-i1,2023-24,19.4,55.8,Newton - Underwood,02070115, 6.6, 22.7, 15.3, 44.2, 0.4, 0.0, 10.7, 45.0, 54.5, 0.4 +1.9705882352941178,1.97,a-cure-i1,2023-24,6.7,54.4,Newton - Williams,02070125, 2.3, 36.7, 8.8, 45.6, 0.0, 0.0, 6.5, 49.3, 50.7, 0.0 +2.8368794326241136,2.84,a-cure-i1,2023-24,10.0,56.4,Newton - Zervas,02070130, 7.8, 25.8, 10.3, 43.6, 0.5, 0.5, 11.5, 49.6, 50.1, 0.3 +1,1,a-cure-i1,2023-24,0.0,11.599999999999994,Norfolk - Freeman-Kennedy School,02080005, 2.0, 2.7, 3.3, 88.4, 0.2, 0.0, 3.4, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.400000000000006,Norfolk - H Olive Day,02080015, 1.6, 2.7, 2.5, 90.6, 0.0, 0.0, 2.7, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,2.0,14.5,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 1.5, 0.5, 7.2, 85.5, 0.7, 0.0, 4.6, 28.0, 69.8, 2.2 +1,1,a-cure-i1,2023-24,0.0,22.0,North Adams - Brayton,02090035, 0.9, 1.4, 10.1, 78.0, 0.0, 0.0, 9.6, 60.1, 39.9, 0.0 +1,1,a-cure-i1,2023-24,4.5,22.400000000000006,North Adams - Colegrove Park Elementary,02090008, 4.3, 0.4, 6.3, 77.6, 0.8, 0.0, 10.6, 56.3, 43.3, 0.4 +1,1,a-cure-i1,2023-24,2.8,21.900000000000006,North Adams - Drury High,02090505, 3.4, 0.9, 8.0, 78.1, 0.4, 0.4, 8.8, 47.5, 52.0, 0.4 +1,1,a-cure-i1,2023-24,0.0,22.200000000000003,North Adams - Greylock,02090015, 0.7, 0.0, 8.9, 77.8, 0.0, 0.4, 12.2, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,3.6,32.0,North Andover - Anne Bradstreet Early Childhood Center,02110005, 3.6, 8.0, 16.9, 68.0, 0.0, 0.2, 3.1, 55.4, 44.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.5,North Andover - Annie L Sargent School,02110018, 1.1, 7.9, 6.8, 79.5, 0.2, 0.0, 4.5, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,45.9,North Andover - Atkinson,02110001, 6.0, 4.9, 31.2, 54.1, 0.4, 0.0, 3.4, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.099999999999994,North Andover - Franklin,02110010, 3.4, 8.4, 9.2, 73.9, 0.0, 0.0, 5.0, 52.6, 47.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.700000000000003,North Andover - Kittredge,02110015, 1.8, 2.3, 13.1, 79.3, 0.0, 0.0, 3.6, 53.6, 45.9, 0.5 +1,1,a-cure-i1,2023-24,1.9000000000000001,31.0,North Andover - North Andover High,02110505, 3.6, 7.5, 15.9, 69.0, 0.2, 0.0, 3.8, 50.9, 48.8, 0.3 +1,1,a-cure-i1,2023-24,0.0,30.599999999999994,North Andover - North Andover Middle,02110305, 2.9, 7.4, 16.5, 69.4, 0.1, 0.1, 3.6, 52.5, 47.2, 0.3 +1,1,a-cure-i1,2023-24,0.0,35.3,North Andover - Thomson,02110020, 2.5, 6.9, 23.3, 64.7, 0.0, 0.0, 2.5, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,1.0,37.1,North Attleborough - Amvet Boulevard,02120007, 4.9, 18.9, 7.4, 62.9, 0.5, 0.7, 4.7, 48.6, 51.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,39.9,North Attleborough - Community,02120030, 11.5, 7.3, 13.5, 60.1, 0.3, 0.3, 6.9, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.900000000000006,North Attleborough - Falls,02120010, 5.0, 5.4, 4.6, 77.1, 0.4, 0.0, 7.5, 56.3, 43.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.700000000000003,North Attleborough - Joseph W Martin Jr Elementary,02120013, 4.8, 4.4, 5.9, 81.3, 0.0, 0.0, 3.5, 56.2, 43.6, 0.2 +3.4068441064638786,3.41,a-cure-i1,2023-24,5.6,26.299999999999997,North Attleborough - North Attleboro High,02120505, 5.9, 8.5, 7.5, 73.7, 0.2, 0.4, 3.8, 49.2, 50.3, 0.5 +1,1,a-cure-i1,2023-24,0.0,35.099999999999994,North Attleborough - North Attleborough Early Learning Center,02120020, 9.5, 11.5, 9.5, 64.9, 0.0, 0.0, 4.7, 58.1, 41.9, 0.0 +1,1,a-cure-i1,2023-24,4.5,26.299999999999997,North Attleborough - North Attleborough Middle,02120305, 5.8, 8.5, 7.1, 73.7, 0.1, 0.1, 4.8, 53.6, 46.2, 0.2 +3.983673469387755,3.98,a-cure-i1,2023-24,6.1,24.5,North Attleborough - Roosevelt Avenue,02120015, 7.5, 9.9, 5.1, 75.5, 0.0, 0.0, 2.0, 48.6, 51.4, 0.0 +8.546583850931679,5,a-cure-i1,2023-24,8.6,16.099999999999994,North Brookfield - North Brookfield Elementary,02150015, 2.6, 0.7, 9.5, 83.9, 0.0, 0.0, 3.3, 51.8, 48.2, 0.0 +1,1,a-cure-i1,2023-24,3.0,18.799999999999997,North Brookfield - North Brookfield High,02150505, 3.0, 0.8, 12.0, 81.2, 0.0, 0.0, 3.0, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.599999999999994,North Middlesex - Ashby Elementary,07350010, 0.7, 0.7, 10.6, 85.4, 0.0, 0.0, 2.6, 57.0, 43.0, 0.0 +1,1,a-cure-i1,2023-24,1.7,14.400000000000006,North Middlesex - Hawthorne Brook,07350030, 2.4, 1.3, 7.3, 85.6, 0.0, 0.0, 3.3, 45.4, 54.6, 0.0 +1,1,a-cure-i1,2023-24,1.3,24.700000000000003,North Middlesex - Nissitissit Middle School,07350310, 3.5, 2.9, 12.1, 75.3, 0.2, 0.0, 6.0, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,1.9,16.900000000000006,North Middlesex - North Middlesex Regional,07350505, 2.0, 2.9, 8.2, 83.1, 0.0, 0.1, 3.7, 51.4, 48.3, 0.3 +1,1,a-cure-i1,2023-24,0.0,16.0,North Middlesex - Spaulding Memorial,07350005, 3.5, 1.4, 8.1, 84.0, 0.0, 0.0, 3.0, 49.1, 50.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.900000000000006,North Middlesex - Squannacook Early Childhood Center,07350002, 3.8, 2.8, 9.4, 81.1, 0.0, 0.0, 2.8, 67.0, 33.0, 0.0 +1,1,a-cure-i1,2023-24,3.3,19.299999999999997,North Middlesex - Varnum Brook,07350035, 3.1, 3.8, 8.8, 80.7, 0.3, 0.0, 3.3, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.0,North Reading - E Ethel Little School,02170003, 0.7, 5.1, 6.5, 82.0, 0.0, 0.0, 5.8, 46.9, 53.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.599999999999994,North Reading - J Turner Hood,02170010, 0.5, 5.9, 6.6, 83.4, 0.0, 0.0, 3.7, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,3.7,11.299999999999997,North Reading - L D Batchelder,02170005, 0.9, 4.2, 2.4, 88.7, 0.0, 0.0, 3.8, 55.3, 44.7, 0.0 +1,1,a-cure-i1,2023-24,3.2,14.200000000000003,North Reading - North Reading High,02170505, 0.5, 6.0, 5.2, 85.8, 0.0, 0.0, 2.6, 47.9, 51.5, 0.6 +1,1,a-cure-i1,2023-24,0.0,16.0,North Reading - North Reading Middle,02170305, 0.4, 5.7, 4.2, 84.0, 0.0, 0.2, 5.5, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,46.7,Northampton - Bridge Street,02100005, 4.2, 2.3, 32.4, 53.3, 0.0, 0.0, 7.7, 49.8, 49.8, 0.4 +13.933933933933934,5,a-cure-i1,2023-24,29.0,33.3,Northampton - Jackson Street,02100020, 3.6, 4.0, 18.5, 66.7, 0.0, 0.0, 7.2, 55.1, 44.9, 0.0 +1,1,a-cure-i1,2023-24,1.1,35.2,Northampton - John F Kennedy Middle School,02100410, 4.1, 2.6, 20.3, 64.8, 0.2, 0.0, 8.1, 51.1, 48.5, 0.4 +1,1,a-cure-i1,2023-24,0.0,27.0,Northampton - Leeds,02100025, 1.1, 2.5, 16.9, 73.0, 0.4, 0.0, 6.1, 55.8, 43.5, 0.7 +4.893470790378008,4.89,a-cure-i1,2023-24,8.9,29.099999999999994,Northampton - Northampton High,02100505, 3.3, 3.0, 14.7, 70.9, 0.0, 0.0, 8.2, 49.6, 48.3, 2.1 +5.847715736040608,5,a-cure-i1,2023-24,7.2,19.700000000000003,Northampton - R. K. Finn Ryan Road,02100029, 2.1, 1.3, 12.0, 80.3, 0.0, 0.0, 4.3, 51.9, 47.6, 0.4 +1,1,a-cure-i1,2023-24,0.0,17.900000000000006,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.2, 0.7, 12.7, 82.1, 0.5, 0.2, 2.6, 58.9, 39.7, 1.4 +1,1,a-cure-i1,2023-24,2.2,32.3,Northboro-Southboro - Algonquin Regional High,07300505, 2.0, 15.7, 9.9, 67.7, 0.0, 0.3, 4.4, 47.5, 52.0, 0.5 +1,1,a-cure-i1,2023-24,0.0,42.1,Northborough - Fannie E Proctor,02130015, 6.5, 16.6, 12.6, 57.9, 0.8, 0.0, 5.7, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.400000000000006,Northborough - Lincoln Street,02130003, 1.8, 12.4, 8.5, 71.6, 0.0, 0.4, 5.3, 54.3, 45.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,44.5,Northborough - Marguerite E Peaslee,02130014, 2.1, 13.9, 16.4, 55.5, 0.0, 3.9, 8.2, 52.3, 47.3, 0.4 +1,1,a-cure-i1,2023-24,0.0,39.6,Northborough - Marion E Zeh,02130020, 2.0, 19.2, 14.5, 60.4, 0.0, 0.0, 3.9, 50.2, 49.8, 0.0 +1,1,a-cure-i1,2023-24,4.6,30.400000000000006,Northborough - Robert E. Melican Middle School,02130305, 2.8, 10.7, 9.8, 69.6, 0.5, 2.3, 4.2, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,2.3,18.599999999999994,Northbridge - Northbridge Elementary School,02140001, 2.0, 0.3, 14.4, 81.4, 0.0, 0.0, 2.0, 54.0, 46.0, 0.0 +1,1,a-cure-i1,2023-24,2.7,18.599999999999994,Northbridge - Northbridge High,02140505, 2.1, 1.5, 12.1, 81.4, 0.0, 0.0, 3.0, 51.6, 48.2, 0.2 +1,1,a-cure-i1,2023-24,0.0,16.900000000000006,Northbridge - Northbridge Middle,02140305, 0.5, 1.6, 12.5, 83.1, 0.2, 0.0, 2.1, 50.7, 49.1, 0.2 +1,1,a-cure-i1,2023-24,1.3,53.5,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 4.7, 1.3, 45.7, 46.5, 0.4, 0.1, 1.4, 53.5, 45.8, 0.7 +1,1,a-cure-i1,2023-24,0.0,4.799999999999997,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 1.3, 0.4, 1.5, 95.2, 0.0, 0.4, 1.2, 62.3, 37.5, 0.2 +1,1,a-cure-i1,2023-24,0.0,16.5,Norton - Henri A. Yelle,02180060, 5.7, 0.9, 5.4, 83.5, 0.0, 0.0, 4.5, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.700000000000003,Norton - J C Solmonese,02180015, 4.9, 3.0, 2.9, 83.3, 0.0, 0.0, 5.9, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.200000000000003,Norton - L G Nourse Elementary,02180010, 6.9, 3.0, 3.3, 82.8, 0.0, 0.0, 4.0, 52.8, 47.2, 0.0 +5.971830985915491,5,a-cure-i1,2023-24,5.3,14.200000000000003,Norton - Norton High,02180505, 4.1, 2.6, 3.9, 85.8, 0.4, 0.0, 3.1, 47.7, 52.1, 0.1 +1,1,a-cure-i1,2023-24,0.0,14.0,Norton - Norton Middle,02180305, 3.9, 1.1, 4.5, 86.0, 0.0, 0.0, 4.5, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,3.4,13.099999999999994,Norwell - Grace Farrar Cole,02190005, 1.1, 3.9, 1.5, 86.9, 0.0, 0.0, 6.7, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.400000000000006,Norwell - Norwell High,02190505, 0.2, 2.9, 1.7, 91.6, 0.2, 0.0, 3.5, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,2.7,8.799999999999997,Norwell - Norwell Middle School,02190405, 1.2, 2.6, 1.0, 91.2, 0.0, 0.2, 3.8, 54.2, 45.6, 0.2 +1,1,a-cure-i1,2023-24,0.0,8.599999999999994,Norwell - William G Vinal,02190020, 0.4, 2.2, 1.3, 91.4, 0.0, 0.0, 4.7, 50.7, 49.1, 0.2 +1.2919254658385093,1.29,a-cure-i1,2023-24,5.2,64.4,Norwood - Balch,02200005, 13.4, 6.5, 40.5, 35.6, 0.3, 2.6, 1.0, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,60.0,Norwood - Charles J Prescott,02200025, 15.6, 23.6, 14.4, 40.0, 1.2, 0.8, 4.4, 45.2, 54.8, 0.0 +1,1,a-cure-i1,2023-24,3.5,44.0,Norwood - Cornelius M Callahan,02200010, 12.0, 6.0, 19.2, 56.0, 0.4, 1.7, 4.7, 48.7, 51.3, 0.0 +1.9185520361990949,1.92,a-cure-i1,2023-24,5.3,44.2,Norwood - Dr. Philip O. Coakley Middle School,02200305, 15.3, 5.7, 19.6, 55.8, 0.0, 0.6, 3.0, 48.7, 51.3, 0.0 +1,1,a-cure-i1,2023-24,2.5,33.8,Norwood - F A Cleveland,02200015, 8.8, 3.8, 14.5, 66.2, 0.0, 0.6, 6.0, 50.2, 49.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,50.7,Norwood - George F. Willett,02200075, 11.4, 12.8, 19.7, 49.3, 0.5, 1.4, 5.0, 54.5, 45.5, 0.0 +2.4438040345821324,2.44,a-cure-i1,2023-24,5.3,34.7,Norwood - John P Oldham,02200020, 12.8, 4.7, 11.7, 65.3, 0.4, 1.8, 3.3, 52.2, 47.8, 0.0 +2.9928057553956835,2.99,a-cure-i1,2023-24,7.800000000000001,41.7,Norwood - Norwood High,02200505, 13.1, 5.0, 20.2, 58.3, 0.5, 0.3, 2.5, 48.1, 51.4, 0.5 +1,1,a-cure-i1,2023-24,4.8,47.5,Oak Bluffs - Oak Bluffs Elementary,02210005, 3.1, 1.9, 37.2, 52.5, 0.5, 0.0, 4.8, 55.8, 44.2, 0.0 +1,1,a-cure-i1,2023-24,4.0,9.799999999999997,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 1.1, 1.1, 3.3, 90.2, 0.4, 0.2, 3.8, 61.6, 37.3, 1.1 +1,1,a-cure-i1,2023-24,2.2,11.5,Old Rochester - Old Rochester Regional High,07400505, 2.5, 1.3, 3.1, 88.5, 0.2, 0.0, 4.4, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,12.099999999999994,Old Rochester - Old Rochester Regional Jr High,07400405, 2.1, 0.7, 3.5, 87.9, 0.0, 0.0, 5.8, 52.4, 47.3, 0.2 +1,1,a-cure-i1,2023-24,3.4,34.8,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 4.0, 0.3, 27.3, 65.2, 0.3, 0.3, 2.6, 57.5, 42.5, 0.0 +1,1,a-cure-i1,2023-24,3.1,17.0,Orange - Fisher Hill School,02230010, 0.6, 1.5, 9.4, 83.0, 0.2, 0.2, 5.2, 53.7, 46.1, 0.2 +1,1,a-cure-i1,2023-24,0.0,19.700000000000003,Orleans - Orleans Elementary,02240005, 3.5, 2.1, 9.2, 80.3, 1.4, 0.0, 3.5, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,31.200000000000003,Oxford - Alfred M Chaffee,02260010, 3.7, 1.2, 20.1, 68.8, 0.3, 0.0, 5.9, 48.8, 51.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.200000000000003,Oxford - Clara Barton,02260005, 1.2, 1.6, 18.1, 74.8, 0.6, 0.0, 3.7, 47.7, 52.3, 0.0 +1,1,a-cure-i1,2023-24,2.3,33.3,Oxford - Oxford High,02260505, 5.2, 1.9, 19.9, 66.7, 0.0, 0.0, 6.3, 51.0, 48.6, 0.4 +4.469635627530364,4.47,a-cure-i1,2023-24,6.9,24.700000000000003,Oxford - Oxford Middle,02260405, 3.4, 0.5, 16.4, 75.3, 0.0, 0.0, 4.4, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,2.5,25.200000000000003,Palmer - Old Mill Pond,02270008, 2.1, 1.4, 17.2, 74.8, 0.0, 0.0, 4.5, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,2.3000000000000003,28.700000000000003,Palmer - Palmer High,02270505, 2.0, 3.3, 17.5, 71.3, 0.2, 0.0, 5.7, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.5,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 1.6, 0.6, 10.7, 83.5, 0.0, 0.2, 3.4, 59.4, 40.0, 0.6 +1,1,a-cure-i1,2023-24,0.0,35.099999999999994,Peabody - Captain Samuel Brown,02290005, 4.5, 4.5, 22.3, 64.9, 0.0, 0.3, 3.5, 54.5, 45.2, 0.3 +1,1,a-cure-i1,2023-24,3.9,50.7,Peabody - Center,02290015, 10.9, 2.6, 34.4, 49.3, 0.3, 0.0, 2.6, 53.9, 46.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,32.3,Peabody - J Henry Higgins Middle,02290305, 4.3, 1.9, 23.9, 67.7, 0.2, 0.1, 2.0, 49.9, 50.0, 0.1 +1,1,a-cure-i1,2023-24,0.0,20.299999999999997,Peabody - John E Burke,02290007, 3.1, 0.0, 14.9, 79.7, 0.0, 0.0, 2.4, 48.8, 51.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,40.4,Peabody - John E. McCarthy,02290016, 9.1, 2.9, 22.1, 59.6, 0.8, 0.5, 4.9, 49.0, 51.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,37.8,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 4.1, 4.1, 27.6, 62.2, 1.0, 0.0, 1.0, 46.9, 52.0, 1.0 +1,1,a-cure-i1,2023-24,4.4,37.0,Peabody - Peabody Veterans Memorial High,02290510, 6.3, 2.0, 26.1, 63.0, 0.2, 0.0, 2.5, 51.2, 48.7, 0.1 +1,1,a-cure-i1,2023-24,0.4,27.599999999999994,Peabody - South Memorial,02290035, 3.2, 3.2, 17.1, 72.4, 0.4, 0.0, 3.8, 48.7, 51.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,45.3,Peabody - Thomas Carroll,02290010, 4.7, 2.2, 34.9, 54.7, 0.5, 0.3, 2.6, 48.4, 51.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.200000000000003,Peabody - West Memorial,02290045, 0.7, 1.4, 9.0, 84.8, 0.0, 0.0, 4.0, 46.2, 53.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,64.3,Peabody - William A Welch Sr,02290027, 3.7, 1.7, 55.2, 35.7, 1.0, 0.3, 2.4, 51.5, 48.5, 0.0 +4.679245283018869,4.68,a-cure-i1,2023-24,9.3,31.799999999999997,Pelham - Pelham Elementary,02300005, 6.2, 3.1, 15.5, 68.2, 2.3, 0.0, 4.7, 58.9, 39.5, 1.6 +1,1,a-cure-i1,2023-24,0.0,10.0,Pembroke - Bryantville Elementary,02310003, 0.5, 0.0, 3.2, 90.0, 0.2, 0.0, 6.1, 54.0, 46.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.299999999999997,Pembroke - Hobomock Elementary,02310010, 0.3, 1.8, 3.3, 90.7, 0.0, 0.0, 4.0, 51.3, 48.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.900000000000006,Pembroke - North Pembroke Elementary,02310015, 0.2, 0.4, 5.3, 88.1, 0.2, 0.0, 5.7, 50.1, 49.9, 0.0 +1,1,a-cure-i1,2023-24,3.9,7.200000000000003,Pembroke - Pembroke Community Middle School,02310305, 0.6, 0.8, 1.9, 92.8, 0.6, 0.0, 3.3, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,2.0,5.700000000000003,Pembroke - Pembroke High School,02310505, 0.6, 0.7, 1.4, 94.3, 0.0, 0.0, 3.1, 56.4, 43.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.0,Pentucket - Dr Frederick N Sweetsir,07450020, 1.3, 1.3, 6.5, 87.0, 0.4, 0.0, 3.5, 55.4, 44.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.099999999999994,Pentucket - Dr John C Page School,07450015, 0.3, 1.2, 6.1, 89.9, 0.0, 0.0, 2.5, 53.7, 46.3, 0.0 +1,1,a-cure-i1,2023-24,3.8,13.299999999999997,Pentucket - Elmer S Bagnall,07450005, 0.2, 0.4, 9.5, 86.7, 0.0, 0.0, 3.3, 52.1, 47.9, 0.0 +8.414814814814815,5,a-cure-i1,2023-24,7.1,13.5,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.4, 10.6, 86.5, 0.0, 0.0, 2.4, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,2.0,11.200000000000003,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.3, 8.5, 88.8, 0.0, 0.0, 2.4, 53.8, 46.2, 0.0 +12.610169491525427,5,a-cure-i1,2023-24,9.3,11.799999999999997,Pentucket - Pentucket Regional Sr High,07450505, 0.5, 1.6, 7.7, 88.2, 0.2, 0.2, 1.7, 47.9, 51.4, 0.7 +1,1,a-cure-i1,2023-24,0.0,11.299999999999997,Petersham - Petersham Center,02340005, 2.3, 0.0, 7.5, 88.7, 0.0, 0.0, 1.5, 48.1, 51.9, 0.0 +5.864476386036961,5,a-cure-i1,2023-24,35.7,97.4,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 7.2, 0.0, 87.6, 2.6, 1.5, 0.0, 1.0, 50.0, 49.5, 0.5 +6.586046511627908,5,a-cure-i1,2023-24,35.400000000000006,86.0,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 5.3, 0.0, 78.1, 14.0, 0.9, 0.9, 0.9, 50.9, 48.2, 0.9 +13.440660474716202,5,a-cure-i1,2023-24,81.4,96.9,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 15.7, 0.0, 74.8, 3.1, 2.5, 0.0, 3.8, 51.6, 48.4, 0.0 +4.065573770491803,4.07,a-cure-i1,2023-24,15.5,61.0,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 22.1, 8.1, 27.1, 39.0, 0.5, 0.0, 3.2, 47.5, 52.5, 0.0 +7.293506493506494,5,a-cure-i1,2023-24,35.1,77.0,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 29.5, 17.5, 26.0, 23.0, 0.4, 0.0, 3.7, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,6.799999999999997,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 2.9, 93.2, 0.0, 0.5, 3.4, 50.7, 49.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,6.5,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 2.4, 93.5, 0.0, 0.0, 4.2, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,6.599999999999994,Pioneer Valley - Pioneer Valley Regional,07500505, 0.4, 0.8, 1.7, 93.4, 0.0, 0.0, 3.7, 50.2, 48.1, 1.7 +16.974459724950883,5,a-cure-i1,2023-24,54.0,50.9,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 8.3, 18.5, 8.7, 49.1, 0.0, 0.0, 15.4, 52.7, 46.7, 0.5 +7.158924205378973,5,a-cure-i1,2023-24,18.3,40.9,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 8.3, 1.3, 24.1, 59.1, 0.3, 0.0, 7.0, 32.8, 64.7, 2.5 +1,1,a-cure-i1,2023-24,0.0,51.8,Pittsfield - Allendale,02360010, 16.3, 1.6, 22.3, 48.2, 0.4, 0.0, 11.2, 53.4, 46.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,60.3,Pittsfield - Crosby,02360065, 11.7, 0.0, 34.0, 39.7, 0.0, 0.0, 14.6, 48.6, 51.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,52.4,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 38.1, 47.6, 0.0, 0.0, 14.3, 76.2, 23.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,40.0,Pittsfield - Eagle Education Academy,02360525, 13.3, 0.0, 23.3, 60.0, 0.0, 0.0, 3.3, 70.0, 30.0, 0.0 +1,1,a-cure-i1,2023-24,3.5,42.0,Pittsfield - Egremont,02360035, 7.8, 1.6, 23.1, 58.0, 0.3, 0.0, 9.3, 50.8, 49.2, 0.0 +2.6163522012578615,2.62,a-cure-i1,2023-24,7.8,47.7,Pittsfield - John T Reid Middle,02360305, 11.8, 0.2, 21.3, 52.3, 0.0, 0.0, 14.5, 47.7, 51.8, 0.5 +1,1,a-cure-i1,2023-24,3.6,61.9,Pittsfield - Morningside Community School,02360055, 15.2, 0.6, 32.9, 38.1, 0.3, 0.0, 13.0, 46.1, 53.9, 0.0 +2.766917293233083,2.77,a-cure-i1,2023-24,6.9,39.9,Pittsfield - Pittsfield High,02360505, 12.2, 1.9, 18.8, 60.1, 0.1, 0.0, 6.9, 51.5, 48.1, 0.4 +1,1,a-cure-i1,2023-24,0.0,36.2,Pittsfield - Robert T. Capeless Elementary School,02360045, 6.4, 0.0, 17.0, 63.8, 1.6, 0.0, 11.2, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,3.6,65.5,Pittsfield - Silvio O Conte Community,02360105, 22.7, 0.6, 28.7, 34.5, 0.6, 0.0, 12.9, 48.3, 51.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.599999999999994,Pittsfield - Stearns,02360090, 5.7, 2.4, 9.0, 71.4, 0.5, 0.0, 11.0, 55.7, 44.3, 0.0 +5.061224489795919,5,a-cure-i1,2023-24,12.400000000000002,39.2,Pittsfield - Taconic High,02360510, 11.0, 1.4, 17.3, 60.8, 0.3, 0.0, 9.3, 53.9, 45.6, 0.5 +1,1,a-cure-i1,2023-24,4.2,41.1,Pittsfield - Theodore Herberg Middle,02360310, 11.1, 1.7, 17.3, 58.9, 0.6, 0.2, 10.2, 52.9, 46.5, 0.6 +1,1,a-cure-i1,2023-24,0.0,33.3,Pittsfield - Williams,02360100, 8.4, 4.2, 13.0, 66.7, 0.0, 0.0, 7.7, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.200000000000003,Plainville - Anna Ware Jackson,02380010, 5.3, 2.5, 12.5, 74.8, 0.3, 0.0, 4.7, 56.7, 43.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.299999999999997,Plainville - Beatrice H Wood Elementary,02380005, 5.4, 3.8, 8.0, 78.7, 0.3, 0.0, 3.8, 50.6, 49.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,33.599999999999994,Plymouth - Cold Spring,02390005, 4.5, 0.5, 25.0, 66.4, 0.0, 0.0, 3.6, 47.7, 52.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.099999999999994,Plymouth - Federal Furnace School,02390011, 4.7, 0.5, 8.6, 78.9, 0.0, 0.0, 7.3, 55.9, 44.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,54.1,Plymouth - Hedge,02390010, 5.5, 0.5, 40.4, 45.9, 0.0, 0.0, 7.8, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,3.3,10.299999999999997,Plymouth - Indian Brook,02390012, 0.7, 0.4, 5.7, 89.7, 0.0, 0.2, 3.3, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.0,Plymouth - Manomet Elementary,02390015, 1.8, 0.7, 4.8, 85.0, 0.0, 0.0, 7.7, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.299999999999997,Plymouth - Nathaniel Morton Elementary,02390030, 1.8, 1.0, 11.8, 80.7, 0.2, 0.0, 4.6, 53.8, 46.2, 0.0 +1,1,a-cure-i1,2023-24,1.5,22.299999999999997,Plymouth - Plymouth Commun Intermediate,02390405, 3.0, 1.1, 12.3, 77.7, 0.0, 0.0, 5.9, 49.3, 50.5, 0.2 +1,1,a-cure-i1,2023-24,0.0,20.5,Plymouth - Plymouth Early Childhood Center,02390003, 0.9, 0.5, 14.2, 79.5, 0.0, 0.0, 5.0, 59.4, 40.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.0,Plymouth - Plymouth North High,02390505, 2.8, 1.5, 13.6, 77.0, 0.0, 0.1, 5.0, 50.8, 48.8, 0.3 +1,1,a-cure-i1,2023-24,2.0,10.099999999999994,Plymouth - Plymouth South High,02390515, 1.6, 0.3, 5.2, 89.9, 0.1, 0.0, 2.9, 52.5, 47.4, 0.1 +8.301886792452835,5,a-cure-i1,2023-24,5.5,10.599999999999994,Plymouth - Plymouth South Middle,02390305, 0.8, 0.0, 5.1, 89.4, 0.5, 0.5, 3.6, 53.7, 46.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.5,Plymouth - South Elementary,02390046, 1.4, 1.1, 7.0, 86.5, 0.2, 0.2, 3.7, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,3.9,20.099999999999994,Plymouth - West Elementary,02390047, 2.9, 2.0, 8.2, 79.9, 0.0, 0.0, 7.0, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,4.0,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 3.2, 96.0, 0.0, 0.0, 0.8, 52.2, 47.8, 0.0 +7.308203991130819,5,a-cure-i1,2023-24,41.199999999999996,90.2,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 56.4, 6.7, 22.1, 9.8, 0.2, 0.2, 4.6, 49.0, 51.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,48.2,Provincetown - Provincetown Schools,02420020, 22.6, 0.7, 14.6, 51.8, 0.0, 0.0, 10.2, 46.0, 53.3, 0.7 +1,1,a-cure-i1,2023-24,0.0,13.200000000000003,Quabbin - Hardwick Elementary,07530005, 1.1, 0.0, 8.5, 86.8, 0.0, 0.0, 3.7, 53.4, 46.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.200000000000003,Quabbin - Hubbardston Center,07530010, 0.3, 1.6, 6.7, 89.8, 0.3, 0.0, 1.3, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,5.700000000000003,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 62.9, 37.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.700000000000003,Quabbin - Oakham Center,07530025, 3.8, 0.6, 7.7, 85.3, 0.0, 0.0, 2.6, 53.8, 46.2, 0.0 +1,1,a-cure-i1,2023-24,2.4,11.299999999999997,Quabbin - Quabbin Regional High School,07530505, 0.5, 1.4, 7.4, 88.7, 0.2, 0.0, 1.8, 46.2, 53.8, 0.0 +1,1,a-cure-i1,2023-24,3.1,15.700000000000003,Quabbin - Quabbin Regional Middle School,07530405, 3.2, 1.1, 7.8, 84.3, 0.2, 0.0, 3.4, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.0,Quabbin - Ruggles Lane,07530030, 2.4, 0.3, 5.2, 89.0, 0.0, 0.3, 2.9, 57.0, 43.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.599999999999994,Quaboag Regional - Quaboag Integrated Preschool,07780001, 1.9, 0.0, 20.8, 77.4, 0.0, 0.0, 0.0, 56.6, 43.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.400000000000006,Quaboag Regional - Quaboag Regional High,07780505, 1.2, 0.0, 6.1, 86.6, 0.6, 0.0, 5.5, 47.1, 51.5, 1.5 +1,1,a-cure-i1,2023-24,0.0,19.400000000000006,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.6, 12.9, 80.6, 0.0, 0.0, 5.9, 55.3, 44.1, 0.6 +1,1,a-cure-i1,2023-24,0.0,17.900000000000006,Quaboag Regional - Warren Elementary,07780005, 2.3, 0.3, 11.1, 82.1, 0.3, 0.0, 3.9, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.200000000000003,Quaboag Regional - West Brookfield Elementary,07780010, 1.2, 2.0, 8.6, 84.8, 0.0, 0.0, 3.3, 50.0, 49.6, 0.4 +1,1,a-cure-i1,2023-24,0.0,74.1,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 12.9, 42.4, 10.0, 25.9, 0.0, 0.0, 8.8, 60.0, 40.0, 0.0 +3.338129496402878,3.34,a-cure-i1,2023-24,5.8,27.799999999999997,Quincy - Atherton Hough,02430040, 5.2, 8.9, 6.9, 72.2, 0.0, 0.4, 6.5, 61.7, 38.3, 0.0 +4.35543018335684,4.36,a-cure-i1,2023-24,19.3,70.9,Quincy - Atlantic Middle,02430305, 2.5, 59.8, 6.1, 29.1, 0.0, 0.0, 2.5, 50.0, 50.0, 0.0 +2.066666666666667,2.07,a-cure-i1,2023-24,9.3,72.0,Quincy - Beechwood Knoll Elementary,02430020, 2.7, 59.3, 6.8, 28.0, 0.0, 0.0, 3.2, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,1.5,45.9,Quincy - Broad Meadows Middle,02430310, 8.8, 23.3, 10.4, 54.1, 0.0, 0.0, 3.5, 52.5, 47.5, 0.0 +1.3311148086522462,1.33,a-cure-i1,2023-24,5.0,60.1,Quincy - Central Middle,02430315, 3.0, 48.4, 5.1, 39.9, 0.0, 0.4, 3.3, 56.0, 43.4, 0.6 +1,1,a-cure-i1,2023-24,4.9,42.5,Quincy - Charles A Bernazzani Elementary,02430025, 3.9, 24.9, 6.0, 57.5, 0.0, 0.0, 7.8, 46.7, 53.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,74.9,Quincy - Clifford H Marshall Elementary,02430055, 15.5, 37.8, 15.5, 25.1, 0.2, 0.0, 5.9, 50.3, 49.7, 0.0 +5.111111111111111,5,a-cure-i1,2023-24,25.3,79.2,Quincy - Francis W Parker,02430075, 7.4, 59.8, 6.5, 20.8, 0.0, 0.0, 5.4, 50.6, 49.4, 0.0 +1,1,a-cure-i1,2023-24,2.7,67.2,Quincy - Lincoln-Hancock Community School,02430035, 14.3, 31.0, 12.5, 32.8, 0.5, 0.0, 8.8, 50.4, 49.4, 0.2 +2.5706371191135733,2.57,a-cure-i1,2023-24,5.8,36.1,Quincy - Merrymount,02430060, 4.1, 17.2, 8.2, 63.9, 0.0, 0.0, 6.6, 53.0, 47.0, 0.0 +2.1937106918238993,2.19,a-cure-i1,2023-24,10.9,79.5,Quincy - Montclair,02430065, 4.4, 64.3, 6.1, 20.5, 0.0, 0.0, 4.6, 53.1, 46.9, 0.0 +2.1333333333333333,2.13,a-cure-i1,2023-24,8.8,66.0,Quincy - North Quincy High,02430510, 3.4, 54.2, 4.6, 34.0, 0.3, 0.5, 3.1, 52.5, 47.5, 0.1 +1.9626666666666666,1.96,a-cure-i1,2023-24,9.2,75.0,Quincy - Point Webster Middle,02430325, 20.1, 34.6, 16.9, 25.0, 0.0, 0.0, 3.4, 45.6, 54.2, 0.2 +3.6193895870736084,3.62,a-cure-i1,2023-24,12.6,55.7,Quincy - Quincy High,02430505, 14.2, 22.3, 13.5, 44.3, 0.2, 0.7, 4.8, 51.8, 47.8, 0.4 +1,1,a-cure-i1,2023-24,0.6,70.4,Quincy - Snug Harbor Community School,02430090, 15.2, 30.3, 16.5, 29.6, 0.5, 0.0, 8.0, 58.9, 41.1, 0.0 +1.28,1.28,a-cure-i1,2023-24,5.6,70.0,Quincy - South West Middle School,02430320, 16.9, 29.6, 14.2, 30.0, 0.9, 0.5, 7.9, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,45.6,Quincy - Squantum,02430095, 4.7, 28.3, 6.4, 54.4, 0.6, 0.0, 5.6, 53.9, 46.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,70.5,Quincy - Wollaston School,02430110, 3.2, 60.3, 3.8, 29.5, 0.0, 0.0, 3.2, 56.5, 43.5, 0.0 +1,1,a-cure-i1,2023-24,4.4,15.700000000000003,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.8, 0.8, 9.1, 84.3, 0.0, 0.0, 4.0, 53.0, 45.8, 1.2 +2.58128078817734,2.58,a-cure-i1,2023-24,13.1,81.2,Randolph - Elizabeth G Lyons Elementary,02440020, 43.3, 15.3, 15.7, 18.8, 0.0, 0.8, 6.1, 50.6, 49.4, 0.0 +2.660592255125285,2.66,a-cure-i1,2023-24,14.600000000000001,87.8,Randolph - J F Kennedy Elementary,02440018, 55.2, 13.7, 13.5, 12.2, 0.0, 0.2, 5.3, 52.2, 47.8, 0.0 +2.639910813823857,2.64,a-cure-i1,2023-24,14.8,89.7,Randolph - Margaret L Donovan,02440015, 47.3, 20.6, 17.2, 10.3, 0.5, 0.0, 4.2, 48.3, 51.5, 0.2 +3.921387283236994,3.92,a-cure-i1,2023-24,21.2,86.5,Randolph - Martin E Young Elementary,02440040, 56.0, 6.9, 19.6, 13.5, 0.7, 0.0, 3.3, 48.0, 52.0, 0.0 +5.208472686733558,5,a-cure-i1,2023-24,29.200000000000006,89.7,Randolph - Randolph Community Middle,02440410, 49.0, 18.6, 16.1, 10.3, 1.0, 0.2, 4.8, 51.5, 48.5, 0.0 +2.200873362445415,2.2,a-cure-i1,2023-24,12.600000000000001,91.6,Randolph - Randolph High,02440505, 52.7, 19.4, 16.3, 8.4, 0.2, 0.2, 2.9, 56.6, 43.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,12.900000000000006,Reading - Alice M Barrows,02460002, 2.0, 3.7, 4.5, 87.1, 0.0, 0.0, 2.8, 50.3, 49.7, 0.0 +1,1,a-cure-i1,2023-24,3.7,12.900000000000006,Reading - Arthur W Coolidge Middle,02460305, 2.7, 5.2, 3.2, 87.1, 0.0, 0.0, 1.7, 53.1, 46.7, 0.2 +1,1,a-cure-i1,2023-24,0.0,16.400000000000006,Reading - Birch Meadow,02460005, 3.5, 4.9, 3.5, 83.6, 0.0, 0.0, 4.6, 55.3, 44.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.0,Reading - J Warren Killam,02460017, 4.8, 7.6, 5.5, 81.0, 0.0, 0.0, 1.2, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,4.9,20.700000000000003,Reading - Joshua Eaton,02460010, 1.8, 6.1, 9.7, 79.3, 0.0, 0.0, 3.1, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,1.5,15.0,Reading - Reading Memorial High,02460505, 4.5, 4.6, 3.8, 85.0, 0.3, 0.1, 1.7, 53.5, 46.1, 0.4 +1,1,a-cure-i1,2023-24,0.0,16.400000000000006,Reading - RISE PreSchool,02460001, 0.0, 6.4, 3.6, 83.6, 0.0, 0.0, 6.4, 58.2, 41.8, 0.0 +1,1,a-cure-i1,2023-24,2.6,18.599999999999994,Reading - Walter S Parker Middle,02460310, 3.8, 4.7, 4.4, 81.4, 0.2, 0.0, 5.5, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.299999999999997,Reading - Wood End Elementary School,02460020, 2.0, 6.0, 4.0, 84.7, 0.0, 0.0, 3.2, 51.0, 49.0, 0.0 +1.7031484257871063,1.7,a-cure-i1,2023-24,7.1,66.7,Revere - A. C. Whelan Elementary School,02480003, 1.3, 3.4, 59.8, 33.3, 0.3, 0.0, 1.9, 51.5, 48.5, 0.0 +1.6880733944954127,1.69,a-cure-i1,2023-24,6.9,65.4,Revere - Abraham Lincoln,02480025, 3.0, 4.5, 55.5, 34.6, 0.8, 0.0, 1.7, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,2.8,69.1,Revere - Beachmont Veterans Memorial School,02480013, 4.9, 2.4, 59.9, 30.9, 0.3, 0.3, 1.2, 53.2, 46.8, 0.0 +2.1144414168937327,2.11,a-cure-i1,2023-24,9.7,73.4,Revere - CityLab Innovation High School,02480520, 1.8, 2.8, 64.2, 26.6, 0.0, 0.0, 4.6, 50.5, 48.6, 0.9 +2.0227560050568902,2.02,a-cure-i1,2023-24,10.0,79.1,Revere - Garfield Elementary School,02480056, 3.0, 4.6, 69.9, 20.9, 0.4, 0.0, 1.2, 48.8, 51.2, 0.0 +5.92904073587385,5,a-cure-i1,2023-24,28.2,76.1,Revere - Garfield Middle School,02480057, 3.0, 2.8, 67.8, 23.9, 0.4, 0.0, 2.1, 48.4, 51.6, 0.0 +1,1,a-cure-i1,2023-24,2.7,68.5,Revere - Paul Revere,02480050, 3.0, 3.9, 57.4, 31.5, 1.7, 0.2, 2.4, 52.0, 48.0, 0.0 +3.5649867374005297,3.56,a-cure-i1,2023-24,16.799999999999997,75.4,Revere - Revere High,02480505, 4.2, 3.7, 66.0, 24.6, 0.4, 0.0, 1.1, 52.9, 46.9, 0.1 +1.314447592067989,1.31,a-cure-i1,2023-24,5.800000000000001,70.6,Revere - Rumney Marsh Academy,02480014, 3.5, 4.0, 62.0, 29.4, 0.2, 0.0, 1.0, 54.4, 45.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,78.5,Revere - Staff Sargent James J. Hill Elementary School,02480035, 4.0, 3.4, 70.1, 21.5, 0.0, 0.0, 1.1, 50.8, 49.2, 0.0 +1.2557510148849795,1.26,a-cure-i1,2023-24,5.8,73.9,Revere - Susan B. Anthony Middle School,02480305, 3.5, 4.0, 65.0, 26.1, 0.4, 0.0, 1.1, 48.6, 51.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.900000000000006,Richmond - Richmond Consolidated,02490005, 1.3, 0.0, 6.3, 86.1, 0.0, 0.0, 6.3, 48.1, 51.9, 0.0 +8.973544973544971,5,a-cure-i1,2023-24,10.6,18.900000000000006,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.7, 2.1, 5.3, 81.1, 0.5, 0.0, 8.3, 48.2, 51.2, 0.6 +1,1,a-cure-i1,2023-24,0.0,13.200000000000003,River Valley Charter (District) - River Valley Charter School,04820050, 1.0, 0.3, 6.9, 86.8, 0.0, 0.0, 4.9, 47.6, 52.1, 0.3 +1,1,a-cure-i1,2023-24,0.0,8.5,Rochester - Rochester Memorial,02500005, 0.6, 0.4, 4.5, 91.5, 0.2, 0.0, 2.8, 55.7, 44.3, 0.0 +2.4213649851632044,2.42,a-cure-i1,2023-24,5.1,33.7,Rockland - John W Rogers Middle,02510305, 6.3, 1.7, 19.9, 66.3, 1.0, 0.0, 4.7, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,2.2,36.1,Rockland - Phelps Elementary School,02510060, 5.5, 2.3, 24.4, 63.9, 0.5, 0.0, 3.4, 51.6, 48.4, 0.0 +2.9090909090909083,2.91,a-cure-i1,2023-24,5.8,31.900000000000006,Rockland - R Stewart Esten Early Childhood Center,02510025, 6.2, 1.8, 19.0, 68.1, 0.0, 0.0, 4.9, 54.4, 45.6, 0.0 +5.565217391304347,5,a-cure-i1,2023-24,11.2,32.2,Rockland - Rockland Senior High,02510505, 6.4, 1.9, 20.1, 67.8, 1.4, 0.2, 2.3, 48.7, 51.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.599999999999994,Rockport - Rockport Elementary,02520005, 1.1, 1.5, 3.7, 90.4, 0.0, 0.0, 3.3, 52.6, 47.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.200000000000003,Rockport - Rockport High,02520510, 1.3, 2.7, 3.5, 89.8, 0.0, 0.0, 2.7, 59.7, 39.8, 0.4 +1,1,a-cure-i1,2023-24,0.0,6.400000000000006,Rockport - Rockport Middle,02520305, 0.6, 0.6, 3.5, 93.6, 0.0, 0.6, 1.2, 50.9, 49.1, 0.0 +8.934010152284262,5,a-cure-i1,2023-24,11.0,19.700000000000003,Rowe - Rowe Elementary,02530005, 1.6, 0.0, 3.3, 80.3, 0.0, 0.0, 14.8, 50.8, 49.2, 0.0 +6.986828774062816,5,a-cure-i1,2023-24,43.099999999999994,98.7,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 53.8, 0.7, 40.8, 1.3, 1.4, 0.1, 1.9, 56.1, 43.9, 0.0 +4.288973384030418,4.29,a-cure-i1,2023-24,14.099999999999998,52.6,Salem - Bates,02580003, 7.3, 0.5, 38.3, 47.4, 1.3, 0.5, 4.8, 49.1, 50.6, 0.3 +7.893333333333333,5,a-cure-i1,2023-24,44.4,90.0,Salem - Bentley Academy Innovation School,02580010, 9.6, 1.1, 78.1, 10.0, 0.0, 0.0, 1.1, 47.4, 52.6, 0.0 +4.705882352941177,4.71,a-cure-i1,2023-24,12.5,42.5,Salem - Carlton,02580015, 5.1, 2.0, 31.1, 57.5, 0.0, 0.0, 4.3, 49.2, 50.4, 0.4 +6.707070707070707,5,a-cure-i1,2023-24,24.9,59.4,Salem - Collins Middle,02580305, 7.7, 2.2, 44.6, 40.6, 0.0, 0.3, 4.5, 50.7, 49.3, 0.0 +2.783661119515885,2.78,a-cure-i1,2023-24,11.5,66.1,Salem - Horace Mann Laboratory,02580030, 9.8, 3.9, 49.2, 33.9, 0.0, 0.0, 3.3, 48.5, 51.5, 0.0 +3.286356821589205,3.29,a-cure-i1,2023-24,13.7,66.7,Salem - New Liberty Innovation School,02580510, 4.4, 0.0, 53.3, 33.3, 0.0, 0.0, 8.9, 37.8, 60.0, 2.2 +1,1,a-cure-i1,2023-24,0.0,61.6,Salem - Salem Early Childhood,02580001, 8.9, 5.4, 39.3, 38.4, 0.9, 0.9, 6.3, 58.0, 42.0, 0.0 +4.532924961715161,4.53,a-cure-i1,2023-24,18.5,65.3,Salem - Salem High,02580505, 8.2, 3.1, 49.7, 34.7, 0.1, 0.2, 4.0, 52.8, 46.8, 0.3 +1,1,a-cure-i1,2023-24,0.0,47.1,Salem - Salem Prep High School,02580515, 5.9, 0.0, 41.2, 52.9, 0.0, 0.0, 0.0, 47.1, 52.9, 0.0 +1.4280991735537192,1.43,a-cure-i1,2023-24,5.4,60.5,Salem - Saltonstall School,02580050, 4.9, 0.3, 50.8, 39.5, 0.3, 0.0, 4.4, 52.1, 47.9, 0.0 +2.5611510791366903,2.56,a-cure-i1,2023-24,8.899999999999999,55.6,Salem - Witchcraft Heights,02580070, 7.4, 4.5, 39.7, 44.4, 0.2, 0.2, 3.6, 53.4, 46.6, 0.0 +4.574679943100996,4.57,a-cure-i1,2023-24,20.1,70.3,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 9.4, 4.3, 54.3, 29.7, 0.0, 0.0, 2.3, 48.8, 50.8, 0.4 +1,1,a-cure-i1,2023-24,0.0,12.200000000000003,Sandwich - Forestdale School,02610002, 0.6, 3.1, 5.2, 87.8, 0.2, 0.0, 3.1, 53.6, 46.4, 0.0 +1,1,a-cure-i1,2023-24,2.7,13.900000000000006,Sandwich - Oak Ridge,02610025, 1.6, 2.8, 5.3, 86.1, 0.6, 0.3, 3.3, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,2.6,12.299999999999997,Sandwich - Sandwich Middle High School,02610505, 1.9, 2.7, 5.6, 87.7, 0.1, 0.2, 1.8, 51.9, 47.5, 0.7 +1,1,a-cure-i1,2023-24,0.0,49.2,Saugus - Belmonte STEAM Academy,02620060, 7.1, 6.4, 30.9, 50.8, 0.6, 0.1, 4.1, 54.0, 46.0, 0.0 +1.875,1.88,a-cure-i1,2023-24,6.0,51.2,Saugus - Saugus High,02620505, 7.3, 5.1, 36.0, 48.8, 0.8, 0.6, 1.4, 53.9, 46.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,46.0,Saugus - Saugus Middle School,02620305, 4.9, 7.9, 29.8, 54.0, 0.6, 0.2, 2.6, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,3.7,49.8,Saugus - Veterans Early Learning Center,02620065, 5.4, 8.2, 32.4, 50.2, 0.2, 0.0, 3.6, 57.3, 42.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.5,Savoy - Emma L Miller Elementary School,02630010, 2.1, 0.0, 6.4, 91.5, 0.0, 0.0, 0.0, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.200000000000003,Scituate - Cushing Elementary,02640007, 0.3, 0.8, 3.5, 91.8, 0.0, 0.3, 3.3, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,2.3,8.299999999999997,Scituate - Gates Middle School,02640305, 2.3, 0.5, 2.8, 91.7, 0.0, 0.0, 2.8, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.0,Scituate - Hatherly Elementary,02640010, 2.8, 0.0, 2.4, 92.0, 0.0, 0.0, 2.8, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.599999999999994,Scituate - Jenkins Elementary School,02640015, 3.3, 0.0, 3.3, 88.4, 0.0, 0.0, 5.1, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,1.8,10.700000000000003,Scituate - Scituate High School,02640505, 3.2, 0.8, 3.1, 89.3, 0.1, 0.0, 3.5, 49.7, 49.7, 0.7 +1,1,a-cure-i1,2023-24,0.0,7.700000000000003,Scituate - Wampatuck Elementary,02640020, 1.9, 0.0, 2.8, 92.3, 0.0, 0.0, 3.0, 51.9, 48.1, 0.0 +4.648044692737429,4.65,a-cure-i1,2023-24,5.2,17.900000000000006,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 3.3, 3.7, 7.4, 82.1, 0.0, 0.0, 3.5, 48.4, 51.4, 0.2 +1,1,a-cure-i1,2023-24,0.0,18.599999999999994,Seekonk - George R Martin,02650007, 3.1, 5.2, 7.6, 81.4, 0.0, 0.0, 2.7, 48.2, 51.8, 0.0 +1,1,a-cure-i1,2023-24,2.9,16.5,Seekonk - Mildred Aitken School,02650015, 2.1, 3.8, 5.7, 83.5, 0.2, 0.0, 4.7, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,2.4,16.700000000000003,Seekonk - Seekonk High,02650505, 2.9, 4.0, 6.2, 83.3, 0.0, 0.0, 3.7, 50.8, 48.7, 0.6 +1,1,a-cure-i1,2023-24,0.0,16.700000000000003,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 16.7, 0.0, 83.3, 0.0, 0.0, 0.0, 66.7, 33.3, 0.0 +1,1,a-cure-i1,2023-24,3.5,51.3,Sharon - Cottage Street,02660005, 6.6, 21.0, 11.8, 48.7, 0.0, 0.0, 11.8, 53.8, 46.2, 0.0 +1,1,a-cure-i1,2023-24,3.3,49.5,Sharon - East Elementary,02660010, 4.3, 29.3, 7.2, 50.5, 0.0, 0.0, 8.7, 51.8, 48.0, 0.2 +1,1,a-cure-i1,2023-24,3.2,48.7,Sharon - Heights Elementary,02660015, 5.0, 31.9, 4.6, 51.3, 0.4, 0.0, 6.8, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,61.3,Sharon - Sharon Early Childhood Center,02660001, 0.0, 29.0, 25.8, 38.7, 0.0, 0.0, 6.5, 54.8, 45.2, 0.0 +1.9837398373983737,1.98,a-cure-i1,2023-24,6.1,49.2,Sharon - Sharon High,02660505, 5.2, 32.1, 5.6, 50.8, 0.2, 0.1, 6.1, 52.1, 47.8, 0.1 +1,1,a-cure-i1,2023-24,4.1,52.0,Sharon - Sharon Middle,02660305, 6.3, 32.6, 5.6, 48.0, 0.2, 0.0, 7.3, 48.9, 50.8, 0.2 +1,1,a-cure-i1,2023-24,1.3,15.200000000000003,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 1.7, 0.8, 9.0, 84.8, 0.4, 0.0, 3.3, 61.8, 37.6, 0.6 +4.327868852459015,4.33,a-cure-i1,2023-24,6.6,24.400000000000006,Sherborn - Pine Hill,02690010, 4.5, 9.2, 5.0, 75.6, 0.0, 0.0, 5.7, 49.9, 50.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,64.2,Shrewsbury - Calvin Coolidge School,02710015, 4.9, 31.6, 22.2, 35.8, 0.3, 0.0, 5.2, 47.2, 52.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,69.7,Shrewsbury - Floral Street School,02710020, 6.1, 48.2, 8.1, 30.3, 1.1, 0.0, 6.3, 56.8, 43.2, 0.0 +1.8128078817733992,1.81,a-cure-i1,2023-24,6.9,60.9,Shrewsbury - Major Howard W. Beal School,02710005, 4.1, 38.7, 10.9, 39.1, 0.8, 0.2, 6.3, 52.5, 47.5, 0.0 +2.2285714285714286,2.23,a-cure-i1,2023-24,7.8,56.0,Shrewsbury - Oak Middle School,02710030, 5.0, 35.3, 10.7, 44.0, 0.4, 0.0, 4.6, 52.0, 47.9, 0.1 +1,1,a-cure-i1,2023-24,0.0,64.8,Shrewsbury - Parker Road Preschool,02710040, 8.0, 40.2, 12.1, 35.2, 1.5, 0.0, 3.0, 48.2, 51.8, 0.0 +1.78096947935368,1.78,a-cure-i1,2023-24,6.199999999999999,55.7,Shrewsbury - Sherwood Middle School,02710305, 4.7, 34.8, 9.3, 44.3, 0.9, 0.0, 6.1, 52.2, 47.5, 0.2 +1.9803536345776034,1.98,a-cure-i1,2023-24,6.300000000000001,50.9,Shrewsbury - Shrewsbury High School,02710505, 4.1, 30.2, 11.0, 49.1, 0.4, 0.0, 5.2, 50.2, 49.7, 0.2 +1,1,a-cure-i1,2023-24,0.0,45.5,Shrewsbury - Spring Street School,02710035, 3.6, 29.2, 6.9, 54.5, 0.0, 0.0, 5.8, 50.2, 49.8, 0.0 +2.7214076246334313,2.72,a-cure-i1,2023-24,5.8,34.099999999999994,Shrewsbury - Walter J. Paton School,02710025, 1.9, 15.6, 8.9, 65.9, 0.4, 0.0, 7.4, 51.5, 48.5, 0.0 +8.691358024691358,5,a-cure-i1,2023-24,8.8,16.200000000000003,Shutesbury - Shutesbury Elementary,02720005, 0.9, 0.0, 9.0, 83.8, 0.9, 0.0, 5.4, 44.1, 55.0, 0.9 +1,1,a-cure-i1,2023-24,1.6,10.0,Silver Lake - Silver Lake Regional High,07600505, 1.9, 1.0, 5.0, 90.0, 0.5, 0.0, 1.8, 50.8, 49.1, 0.1 +1,1,a-cure-i1,2023-24,0.0,5.900000000000006,Silver Lake - Silver Lake Regional Middle School,07600405, 1.2, 0.2, 3.0, 94.1, 0.5, 0.2, 0.7, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,3.8,39.1,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 8.6, 1.3, 24.8, 60.9, 0.3, 0.3, 3.6, 48.0, 51.0, 1.0 +1,1,a-cure-i1,2023-24,0.0,13.400000000000006,Somerset - Chace Street,02730005, 1.3, 2.0, 6.6, 86.6, 0.3, 0.0, 3.3, 45.9, 54.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.700000000000003,Somerset - North Elementary,02730008, 1.7, 1.9, 5.8, 85.3, 0.0, 0.2, 5.0, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,2.4,11.299999999999997,Somerset - Somerset Middle School,02730305, 0.9, 2.1, 5.5, 88.7, 0.2, 0.0, 2.7, 54.1, 45.9, 0.0 +5.528795811518326,5,a-cure-i1,2023-24,6.6,19.099999999999994,Somerset - South,02730015, 2.7, 1.9, 7.6, 80.9, 1.1, 0.0, 5.7, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,3.0,12.599999999999994,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 2.1, 1.7, 6.4, 87.4, 0.4, 0.0, 2.1, 49.2, 50.7, 0.1 +2.118067978533095,2.12,a-cure-i1,2023-24,7.4,55.9,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 5.0, 7.4, 34.6, 44.1, 0.4, 0.2, 8.3, 53.2, 46.6, 0.2 +6.633608815426998,5,a-cure-i1,2023-24,30.1,72.6,Somerville - Arthur D Healey,02740075, 13.8, 2.7, 51.0, 27.4, 0.4, 0.2, 4.5, 48.8, 50.8, 0.4 +1,1,a-cure-i1,2023-24,3.6,39.6,Somerville - Benjamin G Brown,02740015, 6.7, 8.0, 6.7, 60.4, 0.0, 0.0, 18.2, 43.1, 56.9, 0.0 +1,1,a-cure-i1,2023-24,4.3,67.0,Somerville - Capuano Early Childhood Center,02740005, 8.7, 11.7, 38.3, 33.0, 0.0, 0.0, 8.3, 60.4, 39.6, 0.0 +3.9501246882793017,3.95,a-cure-i1,2023-24,19.8,80.2,Somerville - E Somerville Community,02740111, 5.9, 5.7, 65.5, 19.8, 0.0, 0.1, 3.0, 54.8, 45.1, 0.1 +1.208706786171575,1.21,a-cure-i1,2023-24,5.9,78.1,Somerville - Full Circle High School,02740510, 18.8, 0.0, 57.8, 21.9, 0.0, 0.0, 1.6, 56.3, 42.2, 1.6 +7.85185185185185,5,a-cure-i1,2023-24,15.9,32.400000000000006,Somerville - John F Kennedy,02740083, 4.2, 6.3, 13.4, 67.6, 0.2, 0.2, 8.0, 52.7, 47.1, 0.2 +7.102439024390243,5,a-cure-i1,2023-24,27.299999999999997,61.5,Somerville - Next Wave Junior High,02740410, 7.7, 0.0, 46.2, 38.5, 0.0, 0.0, 7.7, 84.6, 15.4, 0.0 +4.396946564885496,4.4,a-cure-i1,2023-24,18.0,65.5,Somerville - Somerville High,02740505, 9.5, 5.8, 46.3, 34.5, 0.1, 0.1, 3.7, 53.0, 45.7, 1.3 +3.7078085642317373,3.71,a-cure-i1,2023-24,9.2,39.7,Somerville - West Somerville Neighborhood,02740115, 10.1, 6.1, 9.8, 60.3, 0.0, 0.5, 13.2, 51.1, 48.4, 0.5 +2.721259842519685,2.72,a-cure-i1,2023-24,10.8,63.5,Somerville - Winter Hill Community,02740120, 9.2, 5.0, 45.4, 36.5, 0.0, 0.2, 3.7, 56.1, 43.4, 0.5 +1,1,a-cure-i1,2023-24,0.0,21.5,South Hadley - Michael E. Smith Middle School,02780305, 1.0, 1.4, 16.4, 78.5, 0.0, 0.0, 2.7, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,4.7,26.900000000000006,South Hadley - Mosier,02780020, 2.5, 1.1, 19.4, 73.1, 0.3, 0.0, 3.6, 55.3, 44.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.799999999999997,South Hadley - Plains Elementary,02780015, 1.5, 2.6, 18.5, 70.2, 0.8, 0.0, 6.4, 57.0, 43.0, 0.0 +1,1,a-cure-i1,2023-24,3.6,23.200000000000003,South Hadley - South Hadley High,02780505, 2.8, 2.0, 16.9, 76.8, 0.2, 0.0, 1.4, 51.0, 48.0, 1.0 +2.3197026022304836,2.32,a-cure-i1,2023-24,7.800000000000001,53.8,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 4.7, 1.5, 41.8, 46.2, 1.7, 0.0, 4.1, 55.7, 42.9, 1.4 +3.49185667752443,3.49,a-cure-i1,2023-24,13.4,61.4,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 36.8, 8.2, 8.2, 38.6, 0.9, 0.3, 6.9, 50.6, 48.9, 0.5 +1,1,a-cure-i1,2023-24,4.1,13.900000000000006,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 3.3, 0.1, 8.7, 86.1, 0.0, 0.0, 1.8, 66.0, 33.0, 1.0 +1,1,a-cure-i1,2023-24,0.0,11.5,Southampton - William E Norris,02750005, 0.0, 0.4, 7.9, 88.5, 0.0, 0.0, 3.2, 55.2, 44.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,36.4,Southborough - Albert S. Woodward Memorial School,02760050, 0.8, 27.5, 5.7, 63.6, 0.0, 0.4, 2.0, 48.2, 51.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,32.3,Southborough - Margaret A Neary,02760020, 1.4, 20.7, 5.3, 67.7, 0.0, 0.0, 4.9, 54.4, 45.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,47.1,Southborough - Mary E Finn School,02760008, 2.2, 28.2, 6.8, 52.9, 0.3, 0.0, 9.6, 51.8, 48.2, 0.0 +2.8087774294670838,2.81,a-cure-i1,2023-24,5.6,31.900000000000006,Southborough - P Brent Trottier,02760305, 0.7, 18.9, 5.4, 68.1, 0.2, 0.0, 6.6, 50.1, 49.9, 0.0 +2.2535211267605635,2.25,a-cure-i1,2023-24,10.0,71.0,Southbridge - Charlton Street,02770005, 2.5, 2.1, 64.3, 29.0, 0.4, 0.0, 1.8, 53.0, 47.0, 0.0 +2.8993288590604025,2.9,a-cure-i1,2023-24,13.5,74.5,Southbridge - Eastford Road,02770010, 4.6, 0.6, 65.5, 25.5, 0.9, 0.0, 2.9, 53.6, 46.4, 0.0 +9.989708404802744,5,a-cure-i1,2023-24,36.4,58.3,Southbridge - Southbridge Academy,02770525, 2.8, 0.0, 52.8, 41.7, 0.0, 0.0, 2.8, 66.7, 33.3, 0.0 +3.030640668523677,3.03,a-cure-i1,2023-24,13.6,71.8,Southbridge - Southbridge High School,02770515, 2.6, 1.5, 66.5, 28.2, 0.4, 0.2, 0.6, 57.0, 42.4, 0.6 +6.966618287373004,5,a-cure-i1,2023-24,30.0,68.9,Southbridge - Southbridge Middle School,02770315, 2.1, 1.4, 62.6, 31.1, 0.7, 0.0, 2.1, 50.9, 49.1, 0.0 +1.1614518147684605,1.16,a-cure-i1,2023-24,5.8,79.9,Southbridge - West Street,02770020, 3.7, 0.3, 73.5, 20.1, 0.3, 0.3, 1.8, 49.7, 50.3, 0.0 +3.3279999999999994,3.33,a-cure-i1,2023-24,12.999999999999998,62.5,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 40.8, 1.4, 15.4, 37.5, 0.0, 0.0, 4.9, 46.7, 52.2, 1.1 +1,1,a-cure-i1,2023-24,3.9,20.599999999999994,Southern Berkshire - Mt Everett Regional,07650505, 0.7, 0.7, 11.0, 79.4, 0.7, 0.0, 7.5, 50.9, 48.8, 0.4 +1,1,a-cure-i1,2023-24,2.8,7.700000000000003,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 4.6, 92.3, 0.0, 0.0, 3.1, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,27.299999999999997,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 9.1, 72.7, 0.0, 0.0, 18.2, 27.3, 72.7, 0.0 +1,1,a-cure-i1,2023-24,2.8,21.799999999999997,Southern Berkshire - Undermountain,07650035, 0.4, 1.2, 14.4, 78.2, 0.4, 0.0, 5.4, 48.6, 51.4, 0.0 +14.989473684210527,5,a-cure-i1,2023-24,17.8,19.0,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 1.2, 1.0, 13.7, 81.0, 0.0, 0.0, 3.1, 56.0, 44.0, 0.0 +1,1,a-cure-i1,2023-24,3.8,13.900000000000006,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 1.3, 1.6, 7.9, 86.1, 0.3, 0.0, 2.9, 53.8, 46.2, 0.0 +11.67567567567568,5,a-cure-i1,2023-24,8.1,11.099999999999994,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 1.3, 1.0, 5.9, 88.9, 0.2, 0.0, 2.8, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,13.700000000000003,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.6, 2.2, 7.5, 86.3, 0.3, 0.0, 3.1, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.0,Spencer-E Brookfield - David Prouty High,07670505, 3.3, 2.4, 17.8, 71.0, 0.6, 0.0, 4.8, 53.5, 45.9, 0.6 +1,1,a-cure-i1,2023-24,0.0,21.099999999999994,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.8, 1.6, 11.7, 78.9, 0.8, 0.0, 4.0, 55.1, 44.9, 0.0 +1,1,a-cure-i1,2023-24,3.7,31.099999999999994,Spencer-E Brookfield - Knox Trail Middle School,07670415, 2.8, 0.5, 24.7, 68.9, 0.0, 0.0, 3.1, 53.5, 46.3, 0.3 +1,1,a-cure-i1,2023-24,0.0,32.2,Spencer-E Brookfield - Wire Village School,07670040, 3.5, 2.2, 22.8, 67.8, 0.2, 0.2, 3.1, 53.7, 46.3, 0.0 +2.7644970414201184,2.76,a-cure-i1,2023-24,14.6,84.5,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 18.8, 0.0, 57.6, 15.5, 0.0, 0.0, 8.0, 44.9, 55.1, 0.0 +1,1,a-cure-i1,2023-24,4.8,85.9,Springfield - Alice B Beal Elementary,02810175, 17.4, 7.6, 55.9, 14.1, 0.3, 0.0, 4.6, 56.6, 43.4, 0.0 +1.188470066518847,1.19,a-cure-i1,2023-24,6.7,90.2,Springfield - Arthur T Talmadge,02810165, 17.0, 3.1, 64.3, 9.8, 0.0, 0.0, 5.8, 53.6, 46.4, 0.0 +3.506607929515418,3.51,a-cure-i1,2023-24,19.9,90.8,Springfield - Balliet Preschool,02810003, 17.6, 1.5, 68.7, 9.2, 0.0, 0.0, 3.1, 58.8, 41.2, 0.0 +4.123711340206185,4.12,a-cure-i1,2023-24,25.0,97.0,Springfield - Benjamin Swan Elementary,02810085, 22.2, 0.8, 68.3, 3.0, 0.2, 0.0, 5.4, 48.9, 51.1, 0.0 +4.54054054054054,4.54,a-cure-i1,2023-24,27.299999999999997,96.2,Springfield - Brightwood,02810025, 7.5, 0.2, 87.7, 3.8, 0.0, 0.0, 0.8, 47.5, 52.5, 0.0 +10.630385487528343,5,a-cure-i1,2023-24,58.599999999999994,88.2,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 22.8, 3.1, 59.1, 11.8, 0.0, 0.0, 3.1, 55.9, 44.1, 0.0 +6.696035242290749,5,a-cure-i1,2023-24,38.0,90.8,Springfield - Conservatory of the Arts,02810475, 19.5, 0.3, 69.6, 9.2, 0.0, 0.0, 1.3, 33.3, 66.3, 0.3 +3.7862595419847325,3.79,a-cure-i1,2023-24,18.599999999999998,78.6,Springfield - Daniel B Brunton,02810035, 15.3, 2.0, 54.6, 21.4, 0.0, 0.3, 6.4, 50.2, 49.8, 0.0 +6.357507660878447,5,a-cure-i1,2023-24,38.9,97.9,Springfield - Early Childhood Education Center,02810001, 19.1, 0.5, 70.7, 2.1, 0.0, 0.0, 7.4, 50.5, 49.5, 0.0 +3.6080084299262376,3.61,a-cure-i1,2023-24,21.4,94.9,Springfield - Edward P. Boland School,02810010, 10.6, 1.4, 80.0, 5.1, 0.0, 0.2, 2.7, 57.0, 42.6, 0.4 +5.769152196118488,5,a-cure-i1,2023-24,35.3,97.9,Springfield - Elias Brookings,02810030, 21.8, 0.3, 73.4, 2.1, 0.0, 0.0, 2.4, 50.9, 49.1, 0.0 +11.42354235423542,5,a-cure-i1,2023-24,64.89999999999999,90.9,Springfield - Emergence Academy,02810318, 19.9, 0.4, 67.1, 9.1, 0.0, 0.0, 3.5, 50.6, 48.9, 0.4 +3.148936170212766,3.15,a-cure-i1,2023-24,18.5,94.0,Springfield - Forest Park Middle,02810325, 19.4, 2.8, 68.7, 6.0, 0.0, 0.0, 3.2, 48.6, 51.1, 0.4 +8.330726256983239,5,a-cure-i1,2023-24,46.599999999999994,89.5,Springfield - Frank H Freedman,02810075, 18.0, 2.6, 62.2, 10.5, 0.4, 0.0, 6.4, 47.2, 52.8, 0.0 +2.0571428571428574,2.06,a-cure-i1,2023-24,10.8,84.0,Springfield - Frederick Harris,02810080, 18.9, 4.3, 53.7, 16.0, 0.6, 0.2, 6.3, 52.7, 47.3, 0.0 +17.222820236813778,5,a-cure-i1,2023-24,100.0,92.9,Springfield - Gateway to College at Holyoke Community College,02810575, 25.0, 3.6, 64.3, 7.1, 0.0, 0.0, 0.0, 25.0, 75.0, 0.0 +16.0,5,a-cure-i1,2023-24,100.0,100.0,Springfield - Gateway to College at Springfield Technical Community College,02810580, 32.0, 0.0, 68.0, 0.0, 0.0, 0.0, 0.0, 24.0, 76.0, 0.0 +2.762589928057554,2.76,a-cure-i1,2023-24,16.8,97.3,Springfield - German Gerena Community School,02810195, 14.4, 0.6, 77.5, 2.7, 0.3, 0.0, 4.3, 53.0, 47.0, 0.0 +2.750816104461371,2.75,a-cure-i1,2023-24,15.8,91.9,Springfield - Glenwood,02810065, 9.5, 1.0, 78.4, 8.1, 0.0, 0.0, 3.0, 51.0, 48.6, 0.3 +1,1,a-cure-i1,2023-24,0.3,87.6,Springfield - Glickman Elementary,02810068, 14.0, 2.2, 65.1, 12.4, 0.3, 0.0, 6.0, 53.7, 46.3, 0.0 +9.1528384279476,5,a-cure-i1,2023-24,52.400000000000006,91.6,Springfield - High School Of Commerce,02810510, 15.9, 1.1, 72.4, 8.4, 0.0, 0.0, 2.2, 51.0, 48.7, 0.3 +2.1206896551724137,2.12,a-cure-i1,2023-24,12.299999999999999,92.8,Springfield - Hiram L Dorman,02810050, 13.7, 1.8, 72.9, 7.2, 0.0, 0.0, 4.3, 50.5, 49.5, 0.0 +9.482722513089005,5,a-cure-i1,2023-24,56.6,95.5,Springfield - Impact Prep at Chestnut,02810366, 12.4, 0.0, 80.2, 4.5, 0.5, 0.0, 2.5, 51.0, 49.0, 0.0 +1.4545454545454548,1.45,a-cure-i1,2023-24,8.3,91.3,Springfield - Indian Orchard Elementary,02810100, 18.9, 0.7, 66.0, 8.7, 0.2, 0.0, 5.5, 53.5, 46.5, 0.0 +8.43918191603875,5,a-cure-i1,2023-24,49.0,92.9,Springfield - John F Kennedy Middle,02810328, 21.5, 0.5, 67.3, 7.1, 0.0, 0.0, 3.5, 49.6, 50.4, 0.0 +6.1842696629213485,5,a-cure-i1,2023-24,34.4,89.0,Springfield - John J Duggan Academy,02810320, 24.9, 2.3, 59.0, 11.0, 0.1, 0.0, 2.8, 53.9, 45.8, 0.2 +4.0251572327044025,4.03,a-cure-i1,2023-24,24.0,95.4,Springfield - Kensington International School,02810110, 15.6, 1.1, 74.4, 4.6, 0.0, 0.0, 4.2, 48.5, 51.5, 0.0 +9.786578657865787,5,a-cure-i1,2023-24,55.60000000000001,90.9,Springfield - Kiley Academy,02810316, 24.7, 1.7, 60.6, 9.1, 0.0, 0.0, 3.8, 51.2, 48.8, 0.0 +6.912707182320441,5,a-cure-i1,2023-24,39.099999999999994,90.5,Springfield - Kiley Prep,02810315, 22.8, 1.9, 63.9, 9.5, 0.0, 0.0, 1.9, 51.0, 48.7, 0.4 +2.081587651598677,2.08,a-cure-i1,2023-24,11.8,90.7,Springfield - Liberty,02810115, 9.8, 0.4, 78.9, 9.3, 0.4, 0.0, 1.2, 54.9, 45.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.599999999999994,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 28.6, 71.4, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0 +6.1000000000000005,5,a-cure-i1,2023-24,36.6,96.0,Springfield - Lincoln,02810120, 9.9, 0.2, 84.4, 4.0, 0.0, 0.0, 1.5, 52.4, 47.6, 0.0 +6.2956521739130435,5,a-cure-i1,2023-24,36.2,92.0,Springfield - Margaret C Ells,02810060, 15.2, 1.4, 68.8, 8.0, 0.0, 0.0, 6.5, 55.1, 44.9, 0.0 +2.215384615384615,2.22,a-cure-i1,2023-24,11.7,84.5,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 15.5, 7.6, 56.2, 15.5, 0.3, 0.0, 4.8, 47.6, 52.4, 0.0 +6.812227074235809,5,a-cure-i1,2023-24,39.0,91.6,Springfield - Mary M Lynch,02810140, 22.6, 0.9, 62.4, 8.4, 0.0, 0.0, 5.8, 49.6, 50.4, 0.0 +4.178960096735187,4.18,a-cure-i1,2023-24,21.599999999999998,82.7,Springfield - Mary M Walsh,02810155, 16.1, 0.0, 62.2, 17.3, 0.0, 0.0, 4.4, 53.8, 46.2, 0.0 +5.207708779443254,5,a-cure-i1,2023-24,30.4,93.4,Springfield - Mary O Pottenger,02810145, 11.5, 1.4, 77.6, 6.6, 0.0, 0.0, 3.0, 51.6, 48.4, 0.0 +2.0970072239422084,2.1,a-cure-i1,2023-24,12.7,96.9,Springfield - Milton Bradley School,02810023, 16.6, 0.3, 73.1, 3.1, 0.3, 0.0, 6.6, 50.6, 49.4, 0.0 +5.33882595262616,5,a-cure-i1,2023-24,32.400000000000006,97.1,Springfield - Rebecca M Johnson,02810055, 20.7, 0.0, 74.8, 2.9, 0.2, 0.0, 1.5, 54.8, 45.2, 0.0 +7.498920086393087,5,a-cure-i1,2023-24,43.39999999999999,92.6,Springfield - Rise Academy at Van Sickle,02810480, 20.8, 0.9, 68.1, 7.4, 0.0, 0.0, 2.8, 54.2, 45.8, 0.0 +4.394849785407724,4.39,a-cure-i1,2023-24,25.599999999999998,93.2,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 16.3, 2.5, 72.3, 6.8, 0.1, 0.0, 2.0, 44.7, 55.1, 0.2 +3.9409761634506246,3.94,a-cure-i1,2023-24,21.7,88.1,Springfield - Samuel Bowles,02810020, 14.5, 1.0, 68.7, 11.9, 0.6, 0.3, 2.9, 51.0, 48.7, 0.3 +9.091299677765843,5,a-cure-i1,2023-24,52.9,93.1,Springfield - South End Middle School,02810355, 19.6, 0.0, 69.8, 6.9, 0.0, 0.0, 3.7, 45.5, 54.5, 0.0 +3.948051948051947,3.95,a-cure-i1,2023-24,22.799999999999997,92.4,Springfield - Springfield Central High,02810500, 21.3, 2.4, 65.7, 7.6, 0.0, 0.0, 2.9, 55.8, 44.1, 0.1 +6.136263736263736,5,a-cure-i1,2023-24,34.9,91.0,Springfield - Springfield High School,02810570, 17.6, 0.0, 71.0, 9.0, 0.0, 0.0, 2.3, 56.6, 43.0, 0.5 +5.1240721102863205,5,a-cure-i1,2023-24,30.2,94.3,Springfield - Springfield High School of Science and Technology,02810530, 19.0, 1.0, 71.4, 5.7, 0.0, 0.1, 2.9, 56.8, 43.0, 0.2 +1.1154285714285714,1.12,a-cure-i1,2023-24,6.1,87.5,Springfield - Springfield International Academy at Johnson,02810215, 40.6, 0.0, 40.6, 12.5, 0.0, 0.0, 6.3, 53.1, 46.9, 0.0 +5.598377281947262,5,a-cure-i1,2023-24,34.5,98.6,Springfield - Springfield International Academy at Sci-Tech,02810700, 9.7, 2.8, 84.7, 1.4, 0.0, 0.0, 1.4, 65.3, 34.7, 0.0 +10.580121703853957,5,a-cure-i1,2023-24,65.2,98.6,Springfield - Springfield Legacy Academy,02810317, 7.3, 0.6, 89.9, 1.4, 0.0, 0.0, 0.8, 53.2, 46.8, 0.0 +8.849474912485414,5,a-cure-i1,2023-24,47.4,85.7,Springfield - Springfield Middle School,02810360, 14.3, 0.0, 64.3, 14.3, 0.0, 0.0, 7.1, 71.4, 28.6, 0.0 +4.933196300102775,4.93,a-cure-i1,2023-24,30.0,97.3,Springfield - Springfield Public Day Elementary School,02810005, 24.3, 0.0, 67.6, 2.7, 2.7, 0.0, 2.7, 78.4, 21.6, 0.0 +13.33013205282113,5,a-cure-i1,2023-24,69.4,83.3,Springfield - Springfield Public Day High School,02810550, 11.5, 0.0, 70.5, 16.7, 0.0, 0.0, 1.3, 69.2, 30.8, 0.0 +1.6034858387799564,1.6,a-cure-i1,2023-24,9.2,91.8,Springfield - Springfield Public Day Middle School,02810345, 21.3, 0.0, 67.2, 8.2, 0.0, 0.0, 3.3, 78.7, 21.3, 0.0 +12.016326530612243,5,a-cure-i1,2023-24,73.6,98.0,Springfield - Springfield Realization Academy,02810335, 21.6, 4.5, 68.8, 2.0, 0.0, 0.0, 3.0, 46.2, 53.8, 0.0 +5.6120789779326365,5,a-cure-i1,2023-24,30.2,86.1,Springfield - Springfield Transition Academy,02810675, 16.5, 2.6, 67.0, 13.9, 0.0, 0.0, 0.0, 67.8, 32.2, 0.0 +6.632402234636872,5,a-cure-i1,2023-24,37.1,89.5,Springfield - STEM Middle Academy,02810350, 9.1, 3.8, 72.5, 10.5, 0.7, 0.0, 3.5, 54.4, 45.6, 0.0 +2.9344978165938866,2.93,a-cure-i1,2023-24,16.8,91.6,Springfield - Sumner Avenue,02810160, 18.4, 3.1, 65.8, 8.4, 0.0, 0.0, 4.3, 53.5, 46.5, 0.0 +6.142695356738393,5,a-cure-i1,2023-24,33.900000000000006,88.3,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 20.0, 2.5, 63.7, 11.7, 0.0, 0.0, 2.1, 46.0, 54.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,92.8,Springfield - The Springfield Virtual School,02810705, 14.5, 0.3, 75.0, 7.2, 0.0, 0.0, 3.0, 49.0, 50.7, 0.3 +4.815703380588877,4.82,a-cure-i1,2023-24,27.6,91.7,Springfield - Thomas M Balliet,02810015, 19.4, 3.6, 62.6, 8.3, 0.0, 0.0, 6.1, 52.5, 47.5, 0.0 +5.129770992366412,5,a-cure-i1,2023-24,29.4,91.7,Springfield - Van Sickle Academy,02810485, 9.9, 2.8, 77.8, 8.3, 0.4, 0.0, 0.8, 53.2, 46.8, 0.0 +3.0095642933049955,3.01,a-cure-i1,2023-24,17.700000000000003,94.1,Springfield - Warner,02810180, 24.4, 0.8, 66.0, 5.9, 0.0, 0.0, 2.9, 52.1, 47.9, 0.0 +2.898047722342733,2.9,a-cure-i1,2023-24,16.7,92.2,Springfield - Washington,02810185, 17.9, 4.3, 64.5, 7.8, 0.0, 0.0, 5.5, 49.6, 50.4, 0.0 +1.4303534303534302,1.43,a-cure-i1,2023-24,8.6,96.2,Springfield - White Street,02810190, 18.9, 2.8, 71.9, 3.8, 0.3, 0.0, 2.3, 53.8, 46.2, 0.0 +3.995854922279793,4.0,a-cure-i1,2023-24,24.1,96.5,Springfield - William N. DeBerry,02810045, 21.0, 0.0, 71.5, 3.5, 0.0, 0.0, 4.0, 50.0, 50.0, 0.0 +4.395402298850574,4.4,a-cure-i1,2023-24,23.9,87.0,Springfield International Charter (District) - Springfield International Charter School,04410505, 28.1, 3.1, 49.7, 13.0, 0.1, 0.0, 6.0, 50.6, 49.3, 0.1 +14.405036726128017,5,a-cure-i1,2023-24,85.8,95.3,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 20.5, 2.5, 70.8, 4.7, 0.0, 0.0, 1.4, 50.1, 49.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.799999999999997,Stoneham - Colonial Park,02840005, 2.7, 8.2, 7.4, 78.2, 0.8, 0.0, 2.7, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,3.6,26.5,Stoneham - Robin Hood,02840025, 2.0, 4.8, 12.0, 73.5, 0.8, 0.0, 6.9, 49.1, 50.9, 0.0 +1,1,a-cure-i1,2023-24,4.6,34.2,Stoneham - South,02840030, 4.5, 7.6, 15.5, 65.8, 0.6, 0.3, 5.6, 52.3, 47.5, 0.3 +5.687500000000001,5,a-cure-i1,2023-24,9.1,25.599999999999994,Stoneham - Stoneham Central Middle School,02840405, 2.9, 5.1, 13.1, 74.4, 0.3, 0.0, 4.1, 47.4, 52.6, 0.0 +1,1,a-cure-i1,2023-24,2.2,22.400000000000006,Stoneham - Stoneham High,02840505, 2.2, 6.3, 11.1, 77.6, 0.0, 0.0, 2.7, 49.6, 49.7, 0.7 +1,1,a-cure-i1,2023-24,0.0,69.9,Stoughton - Edwin A Jones Early Childhood Center,02850012, 32.7, 14.2, 12.4, 30.1, 0.0, 0.9, 9.7, 60.2, 39.8, 0.0 +1.6859504132231404,1.69,a-cure-i1,2023-24,5.1,48.4,Stoughton - Helen Hansen Elementary,02850010, 20.2, 6.3, 12.7, 51.6, 0.4, 0.8, 7.9, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,51.6,Stoughton - Joseph H Gibbons,02850025, 23.1, 4.0, 16.8, 48.4, 0.3, 0.3, 7.2, 55.3, 44.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,51.9,Stoughton - Joseph R Dawe Jr Elementary,02850014, 25.2, 5.9, 15.9, 48.1, 0.3, 0.0, 4.6, 54.2, 45.8, 0.0 +3.144827586206896,3.14,a-cure-i1,2023-24,11.399999999999999,58.0,Stoughton - O'Donnell Middle School,02850405, 28.9, 5.3, 17.4, 42.0, 0.4, 0.1, 5.9, 51.5, 48.4, 0.1 +1,1,a-cure-i1,2023-24,0.0,58.3,Stoughton - Richard L. Wilkins Elementary School,02850020, 21.0, 4.5, 24.9, 41.7, 0.3, 0.9, 6.6, 47.1, 52.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,52.2,Stoughton - South Elementary,02850015, 20.8, 9.2, 13.3, 47.8, 0.0, 0.3, 8.5, 49.1, 50.9, 0.0 +2.538324420677362,2.54,a-cure-i1,2023-24,8.9,56.1,Stoughton - Stoughton High,02850505, 28.8, 6.7, 15.0, 43.9, 0.2, 0.6, 4.7, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.200000000000003,Sturbridge - Burgess Elementary,02870005, 1.4, 1.7, 13.7, 77.8, 0.0, 0.0, 5.3, 48.2, 51.6, 0.2 +5.116279069767441,5,a-cure-i1,2023-24,5.5,17.200000000000003,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 2.7, 3.6, 6.1, 82.8, 0.0, 0.1, 4.7, 40.4, 58.2, 1.3 +3.9233716475095792,3.92,a-cure-i1,2023-24,6.3999999999999995,26.099999999999994,Sudbury - Ephraim Curtis Middle,02880305, 4.0, 9.8, 4.8, 73.9, 0.1, 0.1, 7.2, 51.9, 47.9, 0.1 +4.384341637010676,4.38,a-cure-i1,2023-24,7.699999999999999,28.099999999999994,Sudbury - General John Nixon Elementary,02880025, 2.1, 9.3, 5.4, 71.9, 0.0, 0.0, 11.4, 47.6, 52.1, 0.3 +3.877133105802048,3.88,a-cure-i1,2023-24,7.1,29.299999999999997,Sudbury - Israel Loring School,02880015, 2.4, 10.1, 10.8, 70.7, 0.0, 0.0, 6.0, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,2.6,25.400000000000006,Sudbury - Josiah Haynes,02880010, 3.6, 10.8, 5.9, 74.6, 0.3, 0.0, 4.9, 53.2, 46.3, 0.5 +1,1,a-cure-i1,2023-24,3.0,29.400000000000006,Sudbury - Peter Noyes,02880030, 1.9, 10.2, 7.5, 70.6, 0.2, 0.0, 9.6, 50.3, 49.4, 0.4 +2.690690690690691,2.69,a-cure-i1,2023-24,5.6,33.3,Sunderland - Sunderland Elementary,02890005, 2.7, 9.8, 13.1, 66.7, 0.0, 0.0, 7.7, 53.6, 45.9, 0.5 +1,1,a-cure-i1,2023-24,0.0,17.400000000000006,Sutton - Sutton Early Learning,02900003, 4.1, 1.8, 6.8, 82.6, 0.3, 0.0, 4.4, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.5,Sutton - Sutton Elementary,02900005, 3.5, 0.6, 4.8, 88.5, 0.0, 0.0, 2.6, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.799999999999997,Sutton - Sutton High School,02900510, 3.3, 2.8, 5.8, 83.2, 0.0, 0.0, 5.0, 46.3, 53.4, 0.3 +1,1,a-cure-i1,2023-24,0.0,10.799999999999997,Sutton - Sutton Middle School,02900305, 0.7, 2.4, 5.1, 89.2, 0.0, 0.0, 2.7, 46.8, 53.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.200000000000003,Swampscott - Clarke,02910005, 2.4, 2.9, 17.0, 73.8, 0.5, 0.0, 3.4, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.099999999999994,Swampscott - Hadley,02910010, 3.9, 2.0, 18.8, 69.9, 0.8, 0.6, 3.9, 51.4, 48.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.0,Swampscott - Stanley,02910020, 3.7, 3.7, 5.5, 84.0, 0.0, 0.0, 3.1, 55.8, 44.2, 0.0 +3.789473684210527,3.79,a-cure-i1,2023-24,6.3,26.599999999999994,Swampscott - Swampscott High,02910505, 5.1, 3.6, 14.9, 73.4, 0.3, 0.2, 2.6, 51.1, 48.6, 0.3 +1,1,a-cure-i1,2023-24,2.0,23.0,Swampscott - Swampscott Middle,02910305, 3.8, 3.3, 12.7, 77.0, 0.3, 0.0, 2.9, 53.7, 46.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.099999999999994,Swansea - Elizabeth S Brown,02920006, 2.2, 1.1, 2.9, 90.9, 0.7, 0.0, 2.2, 47.8, 52.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,7.0,Swansea - Gardner,02920015, 2.2, 0.7, 1.1, 93.0, 0.4, 0.0, 2.6, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,2.3,7.299999999999997,Swansea - Joseph Case High,02920505, 1.2, 1.0, 2.6, 92.7, 0.5, 0.0, 1.9, 49.3, 50.5, 0.2 +1,1,a-cure-i1,2023-24,3.1,6.900000000000006,Swansea - Joseph Case Jr High,02920305, 1.2, 1.0, 2.2, 93.1, 0.0, 0.0, 2.4, 53.1, 46.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.5,Swansea - Joseph G Luther,02920020, 2.8, 1.1, 2.8, 90.5, 0.0, 0.0, 2.8, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.200000000000003,Swansea - Mark G Hoyle Elementary,02920017, 0.8, 1.6, 1.9, 91.8, 0.4, 0.0, 3.5, 52.5, 47.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.0,Tantasqua - Tantasqua Regional Jr High,07700405, 1.4, 1.3, 8.2, 85.0, 0.0, 0.0, 4.1, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,0.6,14.900000000000006,Tantasqua - Tantasqua Regional Sr High,07700505, 1.4, 1.2, 10.1, 85.1, 0.2, 0.0, 2.1, 48.7, 50.8, 0.5 +8.975609756097557,5,a-cure-i1,2023-24,9.2,16.400000000000006,Tantasqua - Tantasqua Regional Vocational,07700605, 2.6, 1.1, 7.1, 83.6, 0.2, 0.0, 5.4, 62.7, 36.9, 0.4 +1,1,a-cure-i1,2023-24,0.0,39.5,Taunton - Benjamin Friedman Middle,02930315, 18.9, 1.0, 14.2, 60.5, 0.6, 0.0, 4.8, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,38.1,Taunton - East Taunton Elementary,02930010, 20.0, 0.6, 10.3, 61.9, 0.0, 0.0, 7.3, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,38.3,Taunton - Edmund Hatch Bennett,02930007, 17.3, 1.4, 14.6, 61.7, 0.0, 0.0, 5.1, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,38.3,Taunton - Edward F. Leddy Preschool,02930005, 22.2, 2.7, 10.3, 61.7, 0.4, 0.4, 2.3, 59.4, 40.6, 0.0 +1,1,a-cure-i1,2023-24,4.6,54.3,Taunton - Elizabeth Pole,02930027, 28.2, 1.5, 15.8, 45.7, 0.7, 0.3, 7.8, 51.2, 48.8, 0.0 +9.104704097116842,5,a-cure-i1,2023-24,37.5,65.9,Taunton - H H Galligan,02930057, 30.8, 0.4, 26.9, 34.1, 0.4, 0.4, 7.2, 52.3, 47.7, 0.0 +1.825311942959002,1.83,a-cure-i1,2023-24,6.4,56.1,Taunton - James L. Mulcahey Elementary School,02930015, 28.3, 0.8, 18.4, 43.9, 0.3, 0.3, 7.9, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,4.8,59.0,Taunton - John F Parker Middle,02930305, 33.7, 0.4, 15.9, 41.0, 0.0, 0.4, 8.6, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,36.3,Taunton - Joseph C Chamberlain,02930008, 14.7, 1.2, 13.2, 63.7, 0.2, 0.0, 6.9, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,42.1,Taunton - Joseph H Martin,02930042, 24.2, 1.1, 10.8, 57.9, 0.6, 0.2, 5.2, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,51.8,Taunton - Taunton Alternative High School,02930525, 22.4, 0.0, 18.8, 48.2, 1.2, 0.0, 9.4, 56.5, 43.5, 0.0 +2.88,2.88,a-cure-i1,2023-24,8.1,45.0,Taunton - Taunton High,02930505, 23.8, 0.9, 14.1, 55.0, 0.3, 0.3, 5.5, 52.0, 47.9, 0.1 +1,1,a-cure-i1,2023-24,0.0,38.3,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 14.9, 0.0, 17.0, 61.7, 0.0, 2.1, 4.3, 31.9, 68.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,47.5,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 10.8, 3.2, 25.5, 52.5, 0.4, 0.2, 7.4, 42.8, 56.8, 0.4 +1,1,a-cure-i1,2023-24,2.4,22.599999999999994,Tewksbury - Center Elementary School,02950030, 4.8, 5.7, 8.5, 77.4, 0.0, 0.0, 3.5, 51.1, 48.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.599999999999994,Tewksbury - Heath-Brook,02950010, 5.2, 4.2, 8.4, 79.4, 0.0, 0.0, 2.9, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.700000000000003,Tewksbury - John F. Ryan,02950023, 5.0, 4.4, 9.1, 80.3, 0.2, 0.0, 1.0, 48.3, 51.7, 0.0 +1,1,a-cure-i1,2023-24,2.9,19.799999999999997,Tewksbury - John W. Wynn Middle,02950305, 4.6, 4.4, 9.2, 80.2, 0.0, 0.0, 1.5, 48.8, 51.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.599999999999994,Tewksbury - L F Dewing,02950001, 7.4, 8.4, 8.9, 70.4, 0.0, 0.0, 4.8, 46.4, 53.6, 0.0 +1,1,a-cure-i1,2023-24,1.7,21.799999999999997,Tewksbury - Tewksbury Memorial High,02950505, 5.7, 5.6, 9.3, 78.2, 0.1, 0.0, 1.1, 48.4, 51.5, 0.1 +2.6018691588785043,2.6,a-cure-i1,2023-24,8.7,53.5,Tisbury - Tisbury Elementary,02960005, 5.5, 0.0, 40.6, 46.5, 2.2, 0.0, 5.2, 49.8, 50.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,9.400000000000006,Topsfield - Proctor Elementary,02980005, 0.4, 1.2, 4.7, 90.6, 0.8, 0.0, 2.4, 47.2, 52.8, 0.0 +1,1,a-cure-i1,2023-24,3.4,10.900000000000006,Topsfield - Steward Elementary,02980010, 0.3, 2.2, 5.6, 89.1, 0.0, 0.0, 2.8, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,1.4,19.799999999999997,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 2.5, 0.8, 12.1, 80.2, 0.1, 0.1, 4.1, 57.7, 41.2, 1.1 +1,1,a-cure-i1,2023-24,0.0,8.5,Triton - Newbury Elementary,07730020, 0.7, 0.9, 3.5, 91.5, 0.2, 0.0, 3.1, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,8.099999999999994,Triton - Pine Grove,07730025, 0.9, 0.9, 4.3, 91.9, 0.4, 0.0, 1.6, 49.7, 50.1, 0.2 +1,1,a-cure-i1,2023-24,3.9,19.0,Triton - Salisbury Elementary,07730015, 3.7, 1.7, 10.2, 81.0, 0.2, 0.0, 3.0, 48.4, 51.6, 0.0 +1,1,a-cure-i1,2023-24,4.2,12.200000000000003,Triton - Triton Regional High School,07730505, 1.1, 3.2, 6.3, 87.8, 0.0, 0.2, 1.4, 53.8, 45.9, 0.4 +1,1,a-cure-i1,2023-24,3.5,13.700000000000003,Triton - Triton Regional Middle School,07730405, 2.5, 1.9, 5.7, 86.3, 0.0, 0.3, 3.2, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,35.2,Truro - Truro Central,03000005, 6.6, 0.0, 9.9, 64.8, 0.0, 0.0, 18.7, 53.8, 46.2, 0.0 +1,1,a-cure-i1,2023-24,3.1,35.599999999999994,Tyngsborough - Tyngsborough Elementary,03010020, 5.6, 13.0, 11.8, 64.4, 0.1, 0.0, 5.0, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,3.8,27.400000000000006,Tyngsborough - Tyngsborough High School,03010505, 4.8, 10.5, 6.0, 72.6, 0.0, 0.0, 6.2, 53.3, 46.7, 0.0 +1,1,a-cure-i1,2023-24,3.9,29.5,Tyngsborough - Tyngsborough Middle,03010305, 6.2, 7.0, 10.8, 70.5, 0.3, 0.0, 5.1, 55.0, 44.7, 0.3 +5.742738589211618,5,a-cure-i1,2023-24,34.6,96.4,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 47.0, 3.0, 44.6, 3.6, 0.0, 0.0, 1.8, 48.8, 51.2, 0.0 +6.348178137651822,5,a-cure-i1,2023-24,39.2,98.8,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 51.7, 1.6, 42.9, 1.2, 0.2, 0.2, 2.2, 48.4, 51.6, 0.0 +17.401459854014597,5,a-cure-i1,2023-24,14.9,13.700000000000003,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 2.7, 0.0, 86.3, 1.4, 0.0, 9.6, 47.9, 52.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.799999999999997,Up-Island Regional - West Tisbury Elementary,07740020, 1.8, 0.0, 17.5, 70.2, 4.3, 0.0, 6.2, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.900000000000006,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 2.2, 0.8, 7.9, 81.1, 0.7, 0.1, 7.1, 59.6, 39.8, 0.6 +1,1,a-cure-i1,2023-24,0.0,36.6,Uxbridge - Gateway to College,03040515, 4.9, 2.4, 22.0, 63.4, 0.0, 2.4, 4.9, 41.5, 56.1, 2.4 +1,1,a-cure-i1,2023-24,0.0,12.599999999999994,Uxbridge - Taft Early Learning Center,03040005, 0.9, 1.9, 7.3, 87.4, 0.0, 0.2, 2.3, 53.8, 46.2, 0.0 +1,1,a-cure-i1,2023-24,2.3,15.099999999999994,Uxbridge - Uxbridge High,03040505, 0.9, 2.6, 8.4, 84.9, 0.5, 0.0, 2.7, 58.4, 41.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,14.900000000000006,Uxbridge - Whitin Intermediate,03040405, 1.3, 1.3, 8.8, 85.1, 0.4, 0.2, 2.9, 54.6, 45.4, 0.0 +7.958027282266527,5,a-cure-i1,2023-24,47.4,95.3,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 19.2, 1.0, 70.7, 4.7, 0.5, 0.2, 3.7, 46.3, 53.3, 0.3 +1,1,a-cure-i1,2023-24,0.0,16.299999999999997,Wachusett - Central Tree Middle,07750310, 3.7, 1.8, 8.4, 83.7, 0.3, 0.0, 2.1, 47.4, 52.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.599999999999994,Wachusett - Chocksett Middle School,07750315, 3.7, 2.9, 9.2, 82.4, 0.0, 0.0, 1.8, 52.0, 48.0, 0.0 +1,1,a-cure-i1,2023-24,3.3,17.5,Wachusett - Davis Hill Elementary,07750018, 4.6, 1.3, 8.8, 82.5, 0.2, 0.2, 2.3, 52.8, 47.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.5,Wachusett - Dawson,07750020, 3.1, 4.5, 7.8, 79.5, 0.2, 0.2, 4.7, 46.9, 53.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.599999999999994,Wachusett - Early Childhood Center,07750001, 6.4, 6.4, 9.3, 76.4, 0.0, 0.0, 1.4, 55.7, 44.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.5,Wachusett - Glenwood Elementary School,07750060, 5.2, 1.7, 6.3, 82.5, 0.0, 0.0, 4.3, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,24.200000000000003,Wachusett - Houghton Elementary,07750027, 2.2, 3.1, 14.8, 75.8, 0.0, 0.0, 4.1, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.700000000000003,Wachusett - Leroy E.Mayo,07750032, 4.2, 2.9, 8.4, 82.3, 0.0, 0.0, 2.3, 53.9, 46.1, 0.0 +1,1,a-cure-i1,2023-24,2.3,18.400000000000006,Wachusett - Mountview Middle,07750305, 3.6, 3.9, 7.7, 81.6, 0.1, 0.0, 3.1, 50.1, 49.8, 0.1 +1,1,a-cure-i1,2023-24,0.0,19.599999999999994,Wachusett - Naquag Elementary School,07750005, 4.5, 1.9, 10.3, 80.4, 0.0, 0.0, 2.9, 51.9, 48.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,15.299999999999997,Wachusett - Paxton Center,07750040, 1.6, 2.3, 7.2, 84.7, 0.0, 0.2, 3.9, 47.0, 53.0, 0.0 +1,1,a-cure-i1,2023-24,3.9,8.799999999999997,Wachusett - Thomas Prince,07750045, 1.7, 0.3, 5.1, 91.2, 0.0, 0.3, 1.4, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,16.900000000000006,Wachusett - Wachusett Regional High,07750505, 3.5, 3.7, 7.1, 83.1, 0.1, 0.1, 2.4, 47.3, 52.6, 0.1 +1,1,a-cure-i1,2023-24,0.0,16.299999999999997,Wakefield - Dolbeare,03050005, 0.9, 4.3, 8.7, 83.7, 0.0, 0.0, 2.5, 49.2, 50.8, 0.0 +8.290155440414509,5,a-cure-i1,2023-24,10.0,19.299999999999997,Wakefield - Early Childhood Center at the Doyle School,03050001, 2.2, 5.9, 5.9, 80.7, 0.0, 1.5, 3.7, 52.6, 47.4, 0.0 +1,1,a-cure-i1,2023-24,2.1,21.799999999999997,Wakefield - Galvin Middle School,03050310, 2.6, 4.8, 9.8, 78.2, 0.3, 0.5, 3.9, 52.0, 47.8, 0.2 +1,1,a-cure-i1,2023-24,0.0,14.5,Wakefield - Greenwood,03050020, 1.8, 0.4, 5.7, 85.5, 0.0, 0.9, 5.7, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,1.6,20.5,Wakefield - Wakefield Memorial High,03050505, 3.5, 3.8, 9.8, 79.5, 0.2, 0.1, 3.1, 47.5, 52.1, 0.4 +1,1,a-cure-i1,2023-24,0.0,19.200000000000003,Wakefield - Walton,03050040, 2.8, 2.3, 11.3, 80.8, 0.0, 0.0, 2.8, 53.1, 46.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,24.900000000000006,Wakefield - Woodville School,03050015, 3.1, 4.9, 12.4, 75.1, 0.0, 0.7, 3.8, 50.0, 50.0, 0.0 +17.03703703703704,5,a-cure-i1,2023-24,11.5,10.799999999999997,Wales - Wales Elementary,03060005, 2.2, 0.0, 7.5, 89.2, 1.1, 0.0, 0.0, 60.2, 39.8, 0.0 +4.404858299595141,4.4,a-cure-i1,2023-24,6.8,24.700000000000003,Walpole - Bird Middle,03070305, 8.0, 3.5, 8.5, 75.3, 0.8, 0.0, 4.0, 47.0, 52.8, 0.3 +1,1,a-cure-i1,2023-24,0.0,24.200000000000003,Walpole - Boyden,03070010, 7.7, 2.7, 10.4, 75.8, 0.5, 0.0, 3.0, 56.5, 43.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,27.799999999999997,Walpole - Daniel Feeney Preschool Center,03070002, 2.5, 8.9, 6.3, 72.2, 0.0, 0.0, 10.1, 63.3, 36.7, 0.0 +1,1,a-cure-i1,2023-24,3.3,25.5,Walpole - Eleanor N Johnson Middle,03070310, 4.1, 9.9, 8.4, 74.5, 0.2, 0.0, 2.9, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.0,Walpole - Elm Street School,03070005, 4.3, 8.5, 5.2, 78.0, 0.0, 0.0, 4.0, 46.2, 53.6, 0.2 +1,1,a-cure-i1,2023-24,0.0,28.799999999999997,Walpole - Fisher,03070015, 1.5, 14.2, 8.9, 71.2, 0.2, 0.4, 3.6, 48.4, 51.4, 0.2 +1,1,a-cure-i1,2023-24,0.0,22.200000000000003,Walpole - Old Post Road,03070018, 2.8, 3.8, 9.6, 77.8, 0.6, 0.0, 5.3, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,1.4,22.599999999999994,Walpole - Walpole High,03070505, 4.3, 7.8, 7.3, 77.4, 0.2, 0.0, 3.0, 50.2, 49.6, 0.2 +1,1,a-cure-i1,2023-24,0.0,40.0,Waltham - Douglas MacArthur Elementary School,03080032, 4.8, 10.3, 20.4, 60.0, 0.0, 0.2, 4.2, 46.3, 53.3, 0.4 +10.87920298879203,5,a-cure-i1,2023-24,54.6,80.3,Waltham - Dual Language School,03080001, 3.7, 0.9, 70.6, 19.7, 0.0, 0.0, 5.0, 53.2, 46.8, 0.0 +1,1,a-cure-i1,2023-24,3.8,87.3,Waltham - Henry Whittemore Elementary School,03080065, 5.7, 3.6, 76.7, 12.7, 0.0, 0.0, 1.3, 46.9, 53.1, 0.0 +1,1,a-cure-i1,2023-24,3.5,45.8,Waltham - James Fitzgerald Elementary School,03080060, 2.8, 6.2, 31.4, 54.2, 0.0, 0.0, 5.4, 50.8, 49.2, 0.0 +4.432637571157495,4.43,a-cure-i1,2023-24,14.6,52.7,Waltham - John F Kennedy Middle,03080404, 8.9, 4.8, 34.1, 47.3, 0.2, 0.0, 4.8, 54.3, 45.5, 0.2 +3.0172642762284196,3.02,a-cure-i1,2023-24,14.2,75.3,Waltham - John W. McDevitt Middle School,03080415, 7.1, 2.8, 61.9, 24.7, 0.0, 0.3, 3.1, 53.6, 46.4, 0.0 +1.9937694704049844,1.99,a-cure-i1,2023-24,8.0,64.2,Waltham - Northeast Elementary School,03080040, 8.8, 7.8, 44.2, 35.8, 0.2, 0.2, 3.0, 47.2, 52.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,62.5,Waltham - Thomas R Plympton Elementary School,03080050, 15.3, 4.8, 38.1, 37.5, 0.0, 0.0, 4.3, 54.3, 45.7, 0.0 +2.9221556886227544,2.92,a-cure-i1,2023-24,12.2,66.8,Waltham - Waltham Sr High,03080505, 8.4, 3.9, 52.4, 33.2, 0.0, 0.0, 2.1, 54.4, 45.5, 0.1 +1.4189602446483178,1.42,a-cure-i1,2023-24,5.8,65.4,Waltham - William F. Stanley Elementary School,03080005, 12.2, 8.8, 41.8, 34.6, 0.3, 0.3, 2.1, 56.9, 43.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.599999999999994,Ware - Stanley M Koziol Elementary School,03090020, 3.3, 0.3, 19.0, 69.4, 0.5, 0.0, 7.5, 51.2, 48.3, 0.5 +6.980392156862743,5,a-cure-i1,2023-24,8.9,20.400000000000006,Ware - Ware Junior/Senior High School,03090505, 1.9, 0.2, 11.9, 79.6, 0.2, 0.4, 5.7, 52.9, 47.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.700000000000003,Ware - Ware Middle School,03090305, 3.8, 0.4, 11.0, 80.3, 0.8, 0.0, 3.8, 48.5, 51.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.700000000000003,Wareham - Wareham Cooperative Alternative School,03100315, 6.7, 0.0, 3.3, 73.3, 3.3, 0.0, 13.3, 40.0, 60.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.599999999999994,Wareham - Wareham Elementary School,03100017, 6.0, 0.5, 8.4, 74.4, 0.9, 0.1, 9.8, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,3.0,39.4,Wareham - Wareham Middle,03100305, 9.2, 1.2, 11.4, 60.6, 1.5, 0.2, 15.8, 52.5, 47.5, 0.0 +5.538461538461539,5,a-cure-i1,2023-24,12.600000000000001,36.4,Wareham - Wareham Senior High,03100505, 11.3, 0.2, 9.3, 63.6, 1.2, 0.2, 14.2, 51.3, 48.2, 0.5 +1,1,a-cure-i1,2023-24,0.0,11.099999999999994,Warwick - Warwick Community School,03120020, 0.0, 0.0, 3.7, 88.9, 0.0, 0.0, 7.4, 74.1, 25.9, 0.0 +6.259259259259259,5,a-cure-i1,2023-24,16.9,43.2,Watertown - Cunniff,03140015, 2.9, 5.8, 23.5, 56.8, 0.3, 0.0, 10.6, 50.6, 49.4, 0.0 +1,1,a-cure-i1,2023-24,2.0,44.6,Watertown - Hosmer,03140020, 5.0, 9.7, 21.1, 55.4, 0.0, 0.1, 8.6, 53.9, 46.0, 0.1 +4.8,4.8,a-cure-i1,2023-24,13.8,46.0,Watertown - James Russell Lowell,03140025, 2.7, 9.8, 21.8, 54.0, 0.0, 0.0, 11.7, 52.9, 47.1, 0.0 +1,1,a-cure-i1,2023-24,1.8,44.3,Watertown - Watertown High,03140505, 3.9, 7.2, 25.8, 55.7, 0.3, 0.0, 7.1, 53.3, 46.2, 0.5 +1,1,a-cure-i1,2023-24,4.2,42.6,Watertown - Watertown Middle,03140305, 4.2, 7.4, 23.2, 57.4, 0.2, 0.0, 7.6, 49.2, 50.3, 0.5 +1,1,a-cure-i1,2023-24,3.4,29.200000000000003,Wayland - Claypit Hill School,03150005, 4.3, 11.2, 5.3, 70.8, 0.0, 0.0, 8.4, 50.5, 49.5, 0.0 +4.578461538461539,4.58,a-cure-i1,2023-24,9.3,32.5,Wayland - Happy Hollow School,03150015, 2.6, 15.9, 5.5, 67.5, 0.0, 0.0, 8.4, 50.4, 49.6, 0.0 +13.556195965417865,5,a-cure-i1,2023-24,29.4,34.7,Wayland - Loker School,03150020, 2.1, 14.9, 10.1, 65.3, 0.3, 0.0, 7.4, 48.0, 52.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,36.2,Wayland - The Children's Way Preschool,03150025, 2.1, 23.4, 6.4, 63.8, 0.0, 0.0, 4.3, 61.7, 38.3, 0.0 +1,1,a-cure-i1,2023-24,3.2,35.099999999999994,Wayland - Wayland High School,03150505, 5.9, 17.6, 4.9, 64.9, 0.0, 0.1, 6.7, 49.5, 50.4, 0.1 +8.196491228070176,5,a-cure-i1,2023-24,14.600000000000001,28.5,Wayland - Wayland Middle School,03150305, 4.5, 13.9, 4.5, 71.5, 0.0, 0.1, 5.4, 53.1, 46.9, 0.0 +1,1,a-cure-i1,2023-24,3.3,58.4,Webster - Bartlett High School,03160505, 7.8, 2.9, 42.6, 41.6, 0.3, 0.3, 4.6, 57.6, 41.6, 0.8 +1,1,a-cure-i1,2023-24,0.0,53.1,Webster - Park Avenue Elementary,03160015, 7.1, 1.4, 39.9, 46.9, 0.0, 0.0, 4.8, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,54.1,Webster - Webster Middle School,03160315, 6.9, 2.0, 39.4, 45.9, 0.2, 0.0, 5.6, 53.4, 46.6, 0.0 +7.172413793103449,5,a-cure-i1,2023-24,15.600000000000001,34.8,Wellesley - Ernest F Upham,03170050, 5.7, 12.1, 7.8, 65.2, 0.7, 0.0, 8.5, 56.0, 44.0, 0.0 +1,1,a-cure-i1,2023-24,2.6,19.5,Wellesley - Hunnewell,03170025, 1.5, 7.0, 6.0, 80.5, 0.0, 0.0, 5.0, 50.5, 49.5, 0.0 +2.2809917355371905,2.28,a-cure-i1,2023-24,6.9,48.4,Wellesley - John D Hardy,03170020, 2.2, 31.6, 8.4, 51.6, 0.0, 0.0, 6.2, 51.6, 48.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,43.7,Wellesley - Joseph E Fiske,03170015, 4.4, 25.9, 7.0, 56.3, 0.0, 0.0, 6.3, 52.8, 47.2, 0.0 +6.893280632411068,5,a-cure-i1,2023-24,10.9,25.299999999999997,Wellesley - Katharine Lee Bates,03170005, 1.6, 7.9, 6.7, 74.7, 0.0, 0.0, 9.1, 52.2, 47.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,43.3,Wellesley - Preschool at Wellesley Schools,03170001, 4.1, 20.6, 7.2, 56.7, 1.0, 0.0, 10.3, 62.9, 37.1, 0.0 +4.447129909365559,4.45,a-cure-i1,2023-24,9.2,33.099999999999994,Wellesley - Schofield,03170045, 3.3, 16.4, 8.4, 66.9, 0.0, 0.3, 4.7, 44.8, 55.2, 0.0 +1,1,a-cure-i1,2023-24,0.8,46.4,Wellesley - Sprague Elementary School,03170048, 3.1, 19.8, 9.9, 53.6, 0.0, 0.0, 13.7, 57.7, 42.3, 0.0 +3.2160804020100504,3.22,a-cure-i1,2023-24,8.0,39.8,Wellesley - Wellesley Middle,03170305, 4.4, 19.0, 6.7, 60.2, 0.0, 0.0, 9.7, 49.1, 50.9, 0.0 +3.011764705882353,3.01,a-cure-i1,2023-24,6.4,34.0,Wellesley - Wellesley Sr High,03170505, 4.8, 16.4, 7.1, 66.0, 0.0, 0.0, 5.7, 46.2, 53.5, 0.3 +1,1,a-cure-i1,2023-24,0.0,18.700000000000003,Wellfleet - Wellfleet Elementary,03180005, 2.2, 1.1, 5.5, 81.3, 0.0, 0.0, 9.9, 52.7, 47.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.099999999999994,West Boylston - Major Edwards Elementary,03220005, 4.6, 2.6, 11.4, 74.9, 0.2, 0.2, 5.9, 52.1, 47.9, 0.0 +1,1,a-cure-i1,2023-24,2.2,23.700000000000003,West Boylston - West Boylston Junior/Senior High,03220505, 3.3, 3.6, 13.2, 76.3, 0.0, 0.2, 3.3, 48.7, 51.3, 0.0 +4.1626016260162615,4.16,a-cure-i1,2023-24,6.4,24.599999999999994,West Bridgewater - Howard School,03230305, 7.8, 0.6, 8.4, 75.4, 0.0, 0.0, 7.8, 52.4, 47.6, 0.0 +7.430962343096232,5,a-cure-i1,2023-24,11.1,23.900000000000006,West Bridgewater - Rose L Macdonald,03230003, 9.2, 1.2, 9.5, 76.1, 0.6, 0.0, 3.4, 53.7, 46.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.900000000000006,West Bridgewater - Spring Street School,03230005, 6.1, 2.7, 9.5, 79.1, 0.7, 0.0, 2.0, 53.4, 46.6, 0.0 +1,1,a-cure-i1,2023-24,0.6,23.900000000000006,West Bridgewater - West Bridgewater Junior/Senior,03230505, 10.2, 1.1, 7.3, 76.1, 0.2, 0.2, 5.0, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,46.1,West Springfield - John Ashley,03320005, 7.8, 6.9, 25.5, 53.9, 0.0, 0.0, 5.9, 50.0, 50.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,37.1,West Springfield - John R Fausey,03320010, 3.4, 6.1, 22.0, 62.9, 0.0, 0.0, 5.6, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,65.9,West Springfield - Memorial,03320025, 6.3, 8.2, 45.2, 34.1, 0.0, 0.0, 6.3, 56.7, 43.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,37.1,West Springfield - Mittineague,03320030, 0.7, 3.6, 28.6, 62.9, 0.0, 0.0, 4.3, 47.1, 52.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,50.1,West Springfield - Philip G Coburn,03320007, 6.1, 9.2, 26.9, 49.9, 0.2, 0.2, 7.5, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.200000000000003,West Springfield - Tatham,03320040, 7.6, 3.8, 14.5, 69.8, 0.0, 0.0, 4.2, 46.9, 53.1, 0.0 +2.1530343007915564,2.15,a-cure-i1,2023-24,5.1,37.9,West Springfield - West Springfield High,03320505, 4.9, 7.9, 20.7, 62.1, 0.0, 0.1, 4.4, 52.4, 46.7, 0.9 +1,1,a-cure-i1,2023-24,4.4,39.6,West Springfield - West Springfield Middle,03320305, 4.9, 7.0, 22.1, 60.4, 0.0, 0.1, 5.5, 47.6, 52.2, 0.2 +2.766208251473478,2.77,a-cure-i1,2023-24,8.8,50.9,Westborough - Annie E Fales,03210010, 2.4, 37.0, 7.9, 49.1, 0.0, 0.0, 3.6, 51.5, 48.5, 0.0 +1,1,a-cure-i1,2023-24,3.2,60.5,Westborough - Elsie A Hastings Elementary,03210025, 3.9, 33.6, 17.9, 39.5, 0.6, 0.0, 4.5, 50.1, 49.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,54.0,Westborough - J Harding Armstrong,03210005, 4.1, 31.3, 12.4, 46.0, 0.8, 0.0, 5.4, 49.4, 50.6, 0.0 +2.0213523131672595,2.02,a-cure-i1,2023-24,7.1,56.2,Westborough - Mill Pond School,03210045, 3.5, 39.4, 10.2, 43.8, 0.1, 0.1, 2.9, 50.3, 49.7, 0.0 +1.9887005649717513,1.99,a-cure-i1,2023-24,6.6,53.1,Westborough - Sarah W Gibbons Middle,03210305, 3.3, 34.3, 11.6, 46.9, 0.2, 0.0, 3.7, 50.9, 49.1, 0.0 +2.872651356993737,2.87,a-cure-i1,2023-24,8.6,47.9,Westborough - Westborough High,03210505, 3.1, 33.2, 8.8, 52.1, 0.2, 0.0, 2.7, 48.6, 51.0, 0.4 +1,1,a-cure-i1,2023-24,0.0,34.599999999999994,Westfield - Abner Gibbs,03250020, 0.0, 6.5, 25.4, 65.4, 0.0, 0.0, 2.7, 54.6, 45.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,24.5,Westfield - Fort Meadow Early Childhood Center,03250003, 1.4, 4.1, 14.3, 75.5, 0.0, 0.0, 4.8, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,58.0,Westfield - Franklin Ave,03250015, 3.4, 1.7, 44.3, 42.0, 0.0, 0.0, 8.6, 50.6, 49.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.900000000000006,Westfield - Highland,03250025, 0.6, 2.6, 11.5, 80.1, 0.0, 0.0, 5.2, 47.0, 53.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.200000000000003,Westfield - Munger Hill,03250033, 2.1, 3.7, 12.5, 76.8, 0.0, 0.0, 4.9, 55.2, 44.8, 0.0 +1,1,a-cure-i1,2023-24,0.0,34.5,Westfield - Paper Mill,03250036, 1.9, 2.5, 22.5, 65.5, 0.0, 0.0, 7.6, 53.5, 46.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,31.099999999999994,Westfield - Southampton Road,03250040, 1.6, 2.6, 21.3, 68.9, 0.0, 0.0, 5.6, 50.2, 49.8, 0.0 +1,1,a-cure-i1,2023-24,2.0,29.599999999999994,Westfield - Westfield High,03250505, 2.2, 3.1, 20.1, 70.4, 0.2, 0.0, 4.1, 46.5, 53.4, 0.1 +1,1,a-cure-i1,2023-24,1.8,31.400000000000006,Westfield - Westfield Intermediate School,03250075, 2.0, 3.5, 21.9, 68.6, 0.1, 0.0, 3.8, 47.8, 52.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,27.099999999999994,Westfield - Westfield Middle School,03250310, 2.5, 2.3, 18.8, 72.9, 0.0, 0.1, 3.3, 50.4, 49.6, 0.0 +1,1,a-cure-i1,2023-24,1.3,20.299999999999997,Westfield - Westfield Technical Academy,03250605, 1.6, 1.3, 15.5, 79.7, 0.0, 0.0, 1.8, 68.6, 30.8, 0.5 +1,1,a-cure-i1,2023-24,0.0,41.9,Westfield - Westfield Virtual School,03250705, 3.2, 1.6, 32.3, 58.1, 0.0, 0.0, 4.8, 51.6, 46.8, 1.6 +1,1,a-cure-i1,2023-24,0.0,23.900000000000006,Westford - Abbot Elementary,03260004, 0.3, 21.2, 1.3, 76.1, 0.3, 0.0, 0.8, 48.9, 51.1, 0.0 +1,1,a-cure-i1,2023-24,2.4,44.7,Westford - Blanchard Middle,03260310, 1.3, 35.3, 6.5, 55.3, 0.2, 0.0, 1.3, 49.3, 50.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,42.6,Westford - Col John Robinson,03260025, 3.3, 28.5, 6.6, 57.4, 0.0, 0.0, 4.3, 48.5, 51.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,49.0,Westford - Day Elementary,03260007, 2.4, 36.1, 8.4, 51.0, 0.0, 0.7, 1.4, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,43.6,Westford - John A. Crisafulli Elementary School,03260045, 2.1, 35.8, 3.3, 56.4, 0.3, 0.0, 2.1, 54.5, 45.2, 0.3 +1,1,a-cure-i1,2023-24,0.0,28.900000000000006,Westford - Nabnasset,03260015, 1.0, 22.3, 3.9, 71.1, 0.3, 0.0, 1.3, 50.8, 49.2, 0.0 +1.4197952218430034,1.42,a-cure-i1,2023-24,5.2,58.6,Westford - Rita E. Miller Elementary School,03260055, 4.7, 44.6, 9.4, 41.4, 0.0, 0.0, 0.0, 61.2, 38.8, 0.0 +1,1,a-cure-i1,2023-24,4.9,37.7,Westford - Stony Brook School,03260330, 1.0, 31.2, 3.2, 62.3, 0.2, 0.2, 1.9, 51.4, 48.5, 0.2 +1,1,a-cure-i1,2023-24,3.8,39.2,Westford - Westford Academy,03260505, 2.4, 32.8, 3.3, 60.8, 0.5, 0.1, 0.1, 48.3, 51.4, 0.3 +1,1,a-cure-i1,2023-24,0.0,7.700000000000003,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 6.7, 92.3, 0.0, 0.0, 1.0, 57.7, 42.3, 0.0 +3.6090225563909777,3.61,a-cure-i1,2023-24,9.0,39.9,Weston - Country,03300010, 3.8, 21.1, 8.8, 60.1, 0.0, 0.0, 6.3, 50.0, 50.0, 0.0 +2.545454545454545,2.55,a-cure-i1,2023-24,5.6,35.2,Weston - Field Elementary School,03300012, 6.3, 16.1, 6.3, 64.8, 0.0, 0.0, 6.6, 47.7, 52.3, 0.0 +8.74820143884892,5,a-cure-i1,2023-24,22.799999999999997,41.7,Weston - Weston High,03300505, 5.6, 23.1, 6.2, 58.3, 0.0, 0.0, 6.8, 54.1, 45.8, 0.2 +2.5964912280701755,2.6,a-cure-i1,2023-24,7.4,45.6,Weston - Weston Middle,03300305, 6.3, 23.1, 9.3, 54.4, 0.0, 0.2, 6.5, 51.6, 48.1, 0.2 +1,1,a-cure-i1,2023-24,0.0,36.4,Weston - Woodland,03300015, 5.2, 18.2, 7.4, 63.6, 0.0, 0.0, 5.6, 50.6, 49.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.099999999999994,Westport - Alice A Macomber,03310015, 1.1, 0.0, 5.6, 89.9, 0.0, 0.0, 3.4, 45.5, 54.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.700000000000003,Westport - Westport Elementary,03310030, 0.4, 0.9, 6.3, 89.3, 0.0, 0.2, 2.9, 46.9, 53.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,10.0,Westport - Westport Middle-High School,03310515, 1.4, 0.7, 4.4, 90.0, 0.2, 0.0, 3.3, 53.1, 46.8, 0.1 +1,1,a-cure-i1,2023-24,0.6,34.400000000000006,Westwood - Downey,03350012, 0.0, 22.9, 5.1, 65.6, 0.0, 0.3, 6.1, 56.1, 43.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.700000000000003,Westwood - E W Thurston Middle,03350305, 2.3, 13.8, 6.1, 70.3, 0.2, 0.2, 7.3, 52.6, 47.4, 0.0 +4.324324324324324,4.32,a-cure-i1,2023-24,6.0,22.200000000000003,Westwood - Martha Jones,03350017, 0.0, 10.5, 4.0, 77.8, 0.0, 0.0, 7.6, 53.1, 46.9, 0.0 +3.3684210526315788,3.37,a-cure-i1,2023-24,7.6,36.1,Westwood - Pine Hill Elementary School,03350030, 4.0, 14.3, 11.2, 63.9, 0.0, 0.0, 6.7, 52.3, 47.7, 0.0 +5.669291338582676,5,a-cure-i1,2023-24,9.0,25.400000000000006,Westwood - Westwood High,03350505, 2.4, 12.9, 7.2, 74.6, 0.0, 0.1, 2.7, 51.7, 48.1, 0.2 +1,1,a-cure-i1,2023-24,0.0,30.599999999999994,Westwood - Westwood Integrated Preschool,03350050, 0.0, 16.7, 2.8, 69.4, 0.0, 0.0, 11.1, 58.3, 41.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.700000000000003,Westwood - William E Sheehan,03350025, 0.3, 8.3, 4.7, 79.3, 0.0, 0.0, 7.3, 57.0, 43.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,33.099999999999994,Weymouth - Academy Avenue,03360005, 8.9, 5.0, 12.4, 66.9, 0.0, 0.6, 6.2, 50.3, 49.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,37.5,Weymouth - Frederick C Murphy,03360050, 7.1, 6.0, 18.4, 62.5, 0.0, 0.0, 6.0, 51.9, 48.1, 0.0 +3.0853994490358128,3.09,a-cure-i1,2023-24,7.0,36.3,Weymouth - Johnson Early Childhood Center,03360003, 7.4, 13.7, 6.4, 63.7, 0.0, 0.0, 8.8, 57.4, 42.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.099999999999994,Weymouth - Lawrence W Pingree,03360065, 5.6, 4.9, 12.8, 69.9, 0.4, 0.0, 6.4, 44.0, 56.0, 0.0 +1,1,a-cure-i1,2023-24,4.2,35.5,Weymouth - Maria Weston Chapman Middle School,03360020, 8.2, 5.8, 16.2, 64.5, 0.1, 0.0, 5.2, 48.8, 51.1, 0.1 +2.674351585014409,2.67,a-cure-i1,2023-24,5.8,34.7,Weymouth - Ralph Talbot,03360085, 10.1, 6.1, 13.5, 65.3, 0.0, 0.3, 4.7, 54.5, 45.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,28.200000000000003,Weymouth - Thomas V Nash,03360060, 3.2, 7.1, 9.9, 71.8, 0.0, 0.0, 7.9, 52.8, 47.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,33.3,Weymouth - Thomas W. Hamilton Primary School,03360105, 4.0, 11.7, 11.4, 66.7, 0.3, 0.0, 6.0, 53.0, 47.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,32.0,Weymouth - Wessagusset,03360110, 9.5, 9.8, 6.1, 68.0, 0.3, 0.0, 6.4, 50.3, 49.7, 0.0 +3.303834808259587,3.3,a-cure-i1,2023-24,7.000000000000001,33.900000000000006,Weymouth - Weymouth High School,03360505, 8.9, 5.9, 14.7, 66.1, 0.3, 0.2, 4.0, 46.9, 52.8, 0.2 +1,1,a-cure-i1,2023-24,4.5,57.6,Weymouth - William Seach,03360080, 17.7, 6.0, 27.3, 42.4, 0.3, 0.0, 6.3, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,7.200000000000003,Whately - Whately Elementary,03370005, 0.8, 0.0, 4.8, 92.8, 0.0, 0.0, 1.6, 53.6, 46.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,11.099999999999994,Whitman-Hanson - Hanson Middle School,07800315, 1.4, 1.7, 5.2, 88.9, 0.5, 0.2, 2.1, 51.2, 48.8, 0.0 +1,1,a-cure-i1,2023-24,3.6,13.5,Whitman-Hanson - Indian Head,07800035, 3.0, 1.0, 5.0, 86.5, 0.2, 0.2, 4.0, 54.2, 45.8, 0.0 +1,1,a-cure-i1,2023-24,3.9,30.299999999999997,Whitman-Hanson - John H Duval,07800030, 6.2, 1.4, 17.2, 69.7, 0.9, 0.0, 4.6, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,23.599999999999994,Whitman-Hanson - Louise A Conley,07800010, 6.7, 2.9, 9.3, 76.4, 0.0, 0.0, 4.6, 48.6, 51.4, 0.0 +13.973799126637552,5,a-cure-i1,2023-24,20.0,22.900000000000006,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 5.7, 1.9, 10.5, 77.1, 0.0, 0.0, 4.8, 60.0, 40.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,21.799999999999997,Whitman-Hanson - Whitman Hanson Regional,07800505, 6.2, 2.0, 9.8, 78.2, 0.9, 0.2, 2.7, 47.8, 52.2, 0.0 +1,1,a-cure-i1,2023-24,0.0,22.900000000000006,Whitman-Hanson - Whitman Middle,07800310, 6.7, 2.0, 10.3, 77.1, 1.0, 0.0, 3.0, 52.3, 47.7, 0.0 +3.2164948453608253,3.22,a-cure-i1,2023-24,7.800000000000001,38.8,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 3.6, 1.9, 28.6, 61.2, 0.1, 0.1, 4.5, 56.8, 42.1, 1.1 +1,1,a-cure-i1,2023-24,0.0,5.700000000000003,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.8, 4.9, 94.3, 0.0, 0.0, 0.0, 53.7, 46.3, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.0,Wilmington - Boutwell,03420005, 2.1, 6.9, 9.0, 75.0, 0.0, 0.0, 6.9, 47.9, 52.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.5,Wilmington - North Intermediate,03420060, 1.2, 6.4, 7.6, 79.5, 0.4, 0.0, 4.8, 56.6, 43.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,18.700000000000003,Wilmington - Shawsheen Elementary,03420025, 1.8, 7.3, 4.7, 81.3, 0.0, 0.0, 5.0, 49.7, 50.3, 0.0 +1,1,a-cure-i1,2023-24,3.9,21.599999999999994,Wilmington - West Intermediate,03420080, 1.1, 9.5, 6.6, 78.4, 0.0, 0.0, 4.4, 55.3, 44.7, 0.0 +3.9808612440191378,3.98,a-cure-i1,2023-24,5.2,20.900000000000006,Wilmington - Wilmington High,03420505, 1.3, 7.8, 7.5, 79.1, 0.2, 0.0, 4.1, 49.6, 50.1, 0.3 +1,1,a-cure-i1,2023-24,1.4,17.200000000000003,Wilmington - Wilmington Middle School,03420330, 1.5, 6.9, 5.4, 82.8, 0.0, 0.0, 3.3, 50.3, 49.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,19.799999999999997,Wilmington - Woburn Street,03420020, 2.8, 5.0, 6.4, 80.2, 0.3, 0.0, 5.3, 55.3, 44.7, 0.0 +9.904761904761902,5,a-cure-i1,2023-24,11.7,18.900000000000006,Winchendon - Memorial,03430040, 1.3, 1.0, 11.6, 81.1, 0.3, 0.3, 4.3, 51.0, 49.0, 0.0 +1,1,a-cure-i1,2023-24,0.0,20.0,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 15.0, 80.0, 0.0, 0.0, 5.0, 60.0, 35.0, 5.0 +7.871657754010694,5,a-cure-i1,2023-24,9.2,18.700000000000003,Winchendon - Murdock High School,03430515, 2.0, 2.4, 11.5, 81.3, 0.0, 0.4, 2.4, 52.4, 46.8, 0.8 +1,1,a-cure-i1,2023-24,0.0,19.299999999999997,Winchendon - Murdock Middle School,03430315, 2.1, 1.7, 12.4, 80.7, 0.0, 0.3, 2.8, 59.3, 40.3, 0.3 +1,1,a-cure-i1,2023-24,0.0,14.900000000000006,Winchendon - Toy Town Elementary,03430050, 2.5, 0.7, 7.2, 85.1, 0.0, 0.0, 4.3, 52.5, 47.5, 0.0 +16.59751037344399,5,a-cure-i1,2023-24,25.0,24.099999999999994,Winchendon - Winchendon PreSchool Program,03430010, 2.5, 0.0, 13.9, 75.9, 0.0, 0.0, 7.6, 63.3, 36.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,17.799999999999997,Winchester - Ambrose Elementary,03440045, 0.5, 8.6, 2.1, 82.2, 0.0, 0.0, 6.5, 47.5, 52.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,25.799999999999997,Winchester - Lincoln Elementary,03440005, 0.6, 13.2, 3.4, 74.2, 0.0, 0.0, 8.6, 52.4, 47.6, 0.0 +1,1,a-cure-i1,2023-24,3.6,45.6,Winchester - Lynch Elementary,03440020, 1.4, 30.8, 4.7, 54.4, 0.0, 0.0, 8.7, 56.2, 43.8, 0.0 +2.7804878048780486,2.78,a-cure-i1,2023-24,5.699999999999999,32.8,Winchester - McCall Middle,03440305, 1.5, 19.2, 3.6, 67.2, 0.1, 0.0, 8.5, 50.9, 49.0, 0.1 +1,1,a-cure-i1,2023-24,0.0,38.5,Winchester - Muraco Elementary,03440040, 0.9, 25.1, 5.3, 61.5, 0.3, 0.0, 6.8, 46.7, 53.0, 0.3 +3.7674418604651154,3.77,a-cure-i1,2023-24,8.1,34.400000000000006,Winchester - Vinson-Owen Elementary,03440025, 0.5, 23.5, 1.9, 65.6, 0.0, 0.0, 8.5, 50.4, 49.6, 0.0 +4.717325227963524,4.72,a-cure-i1,2023-24,9.7,32.900000000000006,Winchester - Winchester High School,03440505, 2.3, 19.8, 4.5, 67.1, 0.2, 0.0, 6.0, 48.3, 51.6, 0.1 +1,1,a-cure-i1,2023-24,0.0,27.799999999999997,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.8, 0.2, 24.4, 72.2, 0.0, 0.0, 1.4, 44.5, 55.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,29.200000000000003,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 1.6, 0.6, 23.8, 70.8, 0.0, 0.0, 3.2, 52.4, 47.6, 0.0 +4.338028169014083,4.34,a-cure-i1,2023-24,7.699999999999999,28.400000000000006,Winthrop - Winthrop High School,03460505, 1.8, 1.2, 22.7, 71.6, 1.0, 0.2, 1.5, 49.4, 50.4, 0.2 +1,1,a-cure-i1,2023-24,0.0,26.5,Winthrop - Winthrop Middle School,03460305, 2.1, 0.0, 22.5, 73.5, 0.5, 0.0, 1.4, 49.4, 50.6, 0.0 +1,1,a-cure-i1,2023-24,3.5,34.0,Woburn - Clyde Reeves,03470040, 7.9, 8.8, 11.5, 66.0, 2.3, 0.0, 3.6, 53.2, 46.6, 0.2 +1,1,a-cure-i1,2023-24,4.6,32.400000000000006,Woburn - Daniel L Joyce Middle School,03470410, 8.3, 4.3, 15.0, 67.6, 1.1, 0.0, 3.7, 48.3, 51.5, 0.2 +1,1,a-cure-i1,2023-24,0.0,45.3,Woburn - Goodyear Elementary School,03470005, 8.5, 7.4, 24.9, 54.7, 1.1, 0.3, 3.1, 48.4, 51.6, 0.0 +1,1,a-cure-i1,2023-24,0.0,26.5,Woburn - Hurld-Wyman Elementary School,03470020, 4.1, 4.1, 13.7, 73.5, 0.7, 0.2, 3.6, 53.7, 46.3, 0.0 +2.681318681318681,2.68,a-cure-i1,2023-24,6.1,36.4,Woburn - John F Kennedy Middle School,03470405, 8.4, 6.5, 16.0, 63.6, 2.0, 0.2, 3.3, 52.3, 47.7, 0.0 +1,1,a-cure-i1,2023-24,0.0,43.4,Woburn - Linscott-Rumford,03470025, 9.7, 15.3, 13.3, 56.6, 1.0, 0.5, 3.6, 54.6, 45.4, 0.0 +1,1,a-cure-i1,2023-24,0.0,43.5,Woburn - Malcolm White,03470055, 7.1, 5.0, 22.8, 56.5, 3.8, 0.0, 4.7, 44.7, 54.7, 0.6 +1,1,a-cure-i1,2023-24,0.0,52.5,Woburn - Mary D Altavesta,03470065, 18.6, 9.8, 18.6, 47.5, 2.9, 0.0, 2.5, 47.5, 52.5, 0.0 +1,1,a-cure-i1,2023-24,0.0,49.8,Woburn - Shamrock,03470043, 15.3, 6.2, 22.5, 50.2, 1.5, 0.0, 4.4, 54.2, 45.8, 0.0 +1,1,a-cure-i1,2023-24,4.8,37.6,Woburn - Woburn High,03470505, 9.5, 5.8, 18.0, 62.4, 0.9, 0.2, 3.2, 47.4, 52.2, 0.4 +1,1,a-cure-i1,2023-24,2.8,80.6,Worcester - Belmont Street Community,03480020, 18.7, 5.8, 51.5, 19.4, 0.3, 0.0, 4.3, 52.3, 47.7, 0.0 +3.9943899018232822,3.99,a-cure-i1,2023-24,17.8,71.3,Worcester - Burncoat Middle School,03480405, 15.9, 5.0, 46.2, 28.7, 0.0, 0.0, 4.2, 47.1, 52.8, 0.1 +2.405673758865248,2.41,a-cure-i1,2023-24,10.6,70.5,Worcester - Burncoat Senior High,03480503, 21.4, 5.0, 39.5, 29.5, 0.1, 0.1, 4.4, 49.1, 50.9, 0.0 +1,1,a-cure-i1,2023-24,0.0,74.9,Worcester - Burncoat Street,03480035, 12.6, 3.5, 54.5, 25.1, 0.0, 0.0, 4.3, 52.8, 47.2, 0.0 +1.6342042755344417,1.63,a-cure-i1,2023-24,8.6,84.2,Worcester - Canterbury,03480045, 11.6, 10.1, 60.0, 15.8, 0.0, 0.0, 2.4, 52.8, 47.2, 0.0 +1,1,a-cure-i1,2023-24,2.1,85.4,Worcester - Chandler Elementary Community,03480050, 11.2, 9.7, 60.8, 14.6, 0.5, 0.0, 3.2, 54.0, 46.0, 0.0 +9.403019744483158,5,a-cure-i1,2023-24,50.599999999999994,86.1,Worcester - Chandler Magnet,03480052, 4.7, 0.9, 78.1, 13.9, 0.2, 0.0, 2.2, 46.0, 54.0, 0.0 +2.3225806451612905,2.32,a-cure-i1,2023-24,11.700000000000001,80.6,Worcester - City View,03480053, 18.5, 2.8, 54.0, 19.4, 0.5, 0.0, 4.8, 50.1, 49.9, 0.0 +3.8673796791443853,3.87,a-cure-i1,2023-24,22.6,93.5,Worcester - Claremont Academy,03480350, 10.7, 5.6, 75.5, 6.5, 0.2, 0.0, 1.5, 51.5, 48.5, 0.0 +4.4958677685950414,4.5,a-cure-i1,2023-24,23.8,84.7,Worcester - Clark St Community,03480055, 19.9, 7.7, 53.3, 15.3, 0.4, 0.0, 3.4, 49.0, 51.0, 0.0 +1.6936488169364883,1.69,a-cure-i1,2023-24,8.5,80.3,Worcester - Columbus Park,03480060, 10.7, 6.1, 59.2, 19.7, 0.8, 0.0, 3.5, 53.1, 46.9, 0.0 +3.3333333333333335,3.33,a-cure-i1,2023-24,13.0,62.4,Worcester - Doherty Memorial High,03480512, 15.3, 6.0, 35.5, 37.6, 0.3, 0.0, 5.3, 53.2, 46.6, 0.1 +1.5882352941176472,1.59,a-cure-i1,2023-24,8.1,81.6,Worcester - Elm Park Community,03480095, 13.9, 5.2, 59.8, 18.4, 0.0, 0.0, 2.7, 53.9, 46.1, 0.0 +1,1,a-cure-i1,2023-24,0.0,30.200000000000003,Worcester - Flagg Street,03480090, 5.4, 4.1, 16.0, 69.8, 0.3, 0.0, 4.4, 50.6, 49.4, 0.0 +4.855842185128983,4.86,a-cure-i1,2023-24,20.0,65.9,Worcester - Forest Grove Middle,03480415, 13.5, 5.7, 41.7, 34.1, 0.1, 0.0, 4.8, 49.6, 50.4, 0.0 +1,1,a-cure-i1,2023-24,2.3,75.0,Worcester - Francis J McGrath Elementary,03480177, 18.3, 3.8, 47.6, 25.0, 0.0, 0.5, 4.8, 50.0, 50.0, 0.0 +1.492772667542707,1.49,a-cure-i1,2023-24,7.1,76.1,Worcester - Gates Lane,03480110, 13.2, 13.5, 41.9, 23.9, 0.2, 0.4, 6.9, 58.3, 41.7, 0.0 +1.4983277591973245,1.5,a-cure-i1,2023-24,8.4,89.7,Worcester - Goddard School/Science Technical,03480100, 13.8, 8.2, 64.6, 10.3, 1.1, 0.0, 2.1, 53.4, 46.6, 0.0 +1,1,a-cure-i1,2023-24,3.7,76.6,Worcester - Grafton Street,03480115, 18.6, 2.8, 51.0, 23.4, 0.3, 0.0, 4.0, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,4.3,80.9,Worcester - Head Start,03480002, 21.8, 4.5, 54.0, 19.1, 0.3, 0.0, 0.3, 46.3, 53.7, 0.0 +3.1672354948805466,3.17,a-cure-i1,2023-24,11.600000000000001,58.6,Worcester - Heard Street,03480136, 15.9, 8.8, 29.5, 41.4, 0.0, 0.0, 4.4, 50.6, 49.4, 0.0 +1,1,a-cure-i1,2023-24,3.6,86.1,Worcester - Jacob Hiatt Magnet,03480140, 31.5, 4.5, 46.2, 13.9, 0.3, 0.0, 3.7, 49.3, 50.7, 0.0 +3.259720062208398,3.26,a-cure-i1,2023-24,13.1,64.3,Worcester - Lake View,03480145, 20.3, 9.4, 29.4, 35.7, 0.3, 0.3, 4.5, 50.7, 49.3, 0.0 +1.147023086269745,1.15,a-cure-i1,2023-24,5.9,82.3,Worcester - Lincoln Street,03480160, 24.7, 6.0, 45.6, 17.7, 0.0, 0.0, 6.0, 54.4, 45.6, 0.0 +4.707438016528925,4.71,a-cure-i1,2023-24,17.799999999999997,60.5,Worcester - May Street,03480175, 13.9, 8.2, 27.6, 39.5, 0.0, 0.0, 10.9, 51.7, 48.3, 0.0 +2.9642105263157896,2.96,a-cure-i1,2023-24,8.8,47.5,Worcester - Midland Street,03480185, 9.7, 10.9, 19.7, 52.5, 0.0, 0.0, 7.1, 53.4, 46.2, 0.4 +1,1,a-cure-i1,2023-24,4.5,54.1,Worcester - Nelson Place,03480200, 16.3, 7.5, 24.6, 45.9, 0.0, 0.0, 5.8, 58.1, 41.9, 0.0 +3.734087694483734,3.73,a-cure-i1,2023-24,16.5,70.7,Worcester - Norrback Avenue,03480202, 29.1, 3.3, 33.2, 29.3, 0.4, 0.0, 4.7, 54.8, 45.2, 0.0 +3.884057971014493,3.88,a-cure-i1,2023-24,20.1,82.8,Worcester - North High,03480515, 21.3, 4.6, 52.7, 17.2, 0.2, 0.1, 3.9, 51.8, 47.8, 0.4 +3.4966887417218544,3.5,a-cure-i1,2023-24,16.5,75.5,Worcester - Quinsigamond,03480210, 15.4, 5.5, 51.3, 24.5, 0.4, 0.0, 2.9, 50.8, 49.2, 0.0 +4.774869109947644,4.77,a-cure-i1,2023-24,22.8,76.4,Worcester - Rice Square,03480215, 21.3, 8.9, 41.7, 23.6, 0.7, 0.0, 3.7, 47.7, 52.3, 0.0 +1.2201438848920865,1.22,a-cure-i1,2023-24,5.300000000000001,69.5,Worcester - Roosevelt,03480220, 26.5, 5.0, 33.4, 30.5, 0.0, 0.5, 4.0, 57.6, 42.4, 0.0 +2.744063324538259,2.74,a-cure-i1,2023-24,13.000000000000002,75.8,Worcester - South High Community,03480520, 18.8, 10.8, 42.0, 24.2, 0.0, 0.0, 4.2, 52.7, 47.3, 0.0 +2.56,2.56,a-cure-i1,2023-24,12.0,75.0,Worcester - Sullivan Middle,03480423, 14.1, 8.1, 47.9, 25.0, 0.2, 0.0, 4.7, 50.8, 49.2, 0.0 +1,1,a-cure-i1,2023-24,3.8,58.7,Worcester - Tatnuck,03480230, 17.6, 5.0, 29.7, 41.3, 0.3, 0.0, 6.1, 51.8, 48.2, 0.0 +1,1,a-cure-i1,2023-24,4.8,65.1,Worcester - Thorndyke Road,03480235, 16.2, 5.4, 40.3, 34.9, 0.0, 0.0, 3.1, 49.1, 50.9, 0.0 +2.607683352735739,2.61,a-cure-i1,2023-24,14.0,85.9,Worcester - Union Hill School,03480240, 16.3, 3.0, 64.2, 14.1, 0.0, 0.0, 2.4, 50.4, 49.6, 0.0 +1.888641425389755,1.89,a-cure-i1,2023-24,10.6,89.8,Worcester - University Pk Campus School,03480285, 13.9, 10.7, 61.5, 10.2, 0.0, 0.0, 3.7, 55.3, 44.7, 0.0 +2.1853658536585363,2.19,a-cure-i1,2023-24,11.2,82.0,Worcester - Vernon Hill School,03480280, 20.1, 3.7, 55.3, 18.0, 0.0, 0.0, 2.9, 52.9, 47.1, 0.0 +1.8631732168850073,1.86,a-cure-i1,2023-24,8.0,68.7,Worcester - Wawecus Road School,03480026, 14.0, 4.7, 40.7, 31.3, 0.0, 0.0, 9.3, 48.0, 52.0, 0.0 +5.738140417457305,5,a-cure-i1,2023-24,18.9,52.7,Worcester - West Tatnuck,03480260, 14.8, 7.7, 21.6, 47.3, 0.3, 0.0, 8.5, 55.7, 44.3, 0.0 +3.091703056768559,3.09,a-cure-i1,2023-24,17.7,91.6,Worcester - Woodland Academy,03480030, 10.8, 4.7, 73.0, 8.4, 0.2, 0.2, 2.7, 49.5, 50.5, 0.0 +1,1,a-cure-i1,2023-24,1.9,61.6,Worcester - Worcester Arts Magnet School,03480225, 23.9, 8.1, 27.6, 38.4, 0.2, 0.0, 1.7, 50.2, 49.8, 0.0 +3.5705669481302773,3.57,a-cure-i1,2023-24,18.5,82.9,Worcester - Worcester East Middle,03480420, 21.3, 5.3, 53.2, 17.1, 0.3, 0.0, 2.7, 51.9, 48.1, 0.0 +1.713490959666203,1.71,a-cure-i1,2023-24,7.7,71.9,Worcester - Worcester Technical High,03480605, 18.8, 6.3, 42.6, 28.1, 0.3, 0.1, 3.8, 45.9, 54.1, 0.0 +8.891191709844561,5,a-cure-i1,2023-24,42.900000000000006,77.2,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 24.3, 0.0, 47.8, 22.8, 0.7, 0.0, 4.4, 45.6, 53.7, 0.7 +1,1,a-cure-i1,2023-24,0.0,9.599999999999994,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 5.5, 90.4, 0.0, 0.0, 4.1, 63.0, 35.6, 1.4 +1,1,a-cure-i1,2023-24,0.0,18.099999999999994,Wrentham - Charles E Roderick,03500010, 1.9, 2.7, 7.8, 81.9, 0.5, 0.0, 5.1, 48.4, 51.6, 0.0 +1,1,a-cure-i1,2023-24,2.7,19.599999999999994,Wrentham - Delaney,03500003, 2.5, 4.1, 6.7, 80.4, 0.8, 0.3, 5.2, 52.4, 47.6, 0.0 1.2882147024504085,1.29,a-cure-i1,2022-23,6.9,85.7,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 55.4, 2.9, 21.6, 14.3, 0.4, 0.1, 5.3, 46.6, 53.4, 0.0 1,1,a-cure-i1,2022-23,0.0,25.299999999999997,Abington - Abington Early Education Program,00010001, 9.2, 5.7, 8.0, 74.7, 1.1, 0.0, 1.1, 64.4, 35.6, 0.0 1,1,a-cure-i1,2022-23,2.6,23.400000000000006,Abington - Abington High,00010505, 5.3, 2.2, 14.4, 76.6, 0.4, 0.0, 1.1, 51.5, 48.0, 0.5 @@ -1831,6 +3658,7 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,Non-White Teac 1,1,a-cure-i1,2022-23,0.0,7.900000000000006,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 3.9, 92.1, 0.0, 0.0, 3.9, 53.9, 44.7, 1.3 1,1,a-cure-i1,2022-23,0.0,16.799999999999997,Wrentham - Charles E Roderick,03500010, 2.7, 2.4, 7.0, 83.2, 0.3, 0.0, 4.3, 50.1, 49.9, 0.0 1,1,a-cure-i1,2022-23,1.2,17.200000000000003,Wrentham - Delaney,03500003, 1.5, 3.3, 6.5, 82.8, 0.5, 0.3, 5.0, 51.7, 48.3, 0.0 +1,1,a-cure-i1,2022-23,0.0,100.0,Tewksbury - Center Elementary School,02950030, , , , , , , , , , 1.2952380952380953,1.3,a-cure-i1,2021-22,6.8,84.0,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 54.6, 3.0, 20.5, 16.0, 0.5, 0.1, 5.3, 46.1, 53.9, 0.0 1,1,a-cure-i1,2021-22,0.0,30.299999999999997,Abington - Abington Early Education Program,00010001, 10.5, 9.2, 10.5, 69.7, 0.0, 0.0, 0.0, 63.2, 36.8, 0.0 4.153846153846155,4.15,a-cure-i1,2021-22,5.4,20.799999999999997,Abington - Abington High,00010505, 4.9, 2.9, 11.8, 79.2, 0.0, 0.0, 1.2, 52.6, 47.1, 0.3 diff --git a/data/admin_data/dese/3B_2_teacher_by_race_and_gender.csv b/data/admin_data/dese/3B_2_teacher_by_race_and_gender.csv index f8d7fce4..0f3958c2 100644 --- a/data/admin_data/dese/3B_2_teacher_by_race_and_gender.csv +++ b/data/admin_data/dese/3B_2_teacher_by_race_and_gender.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,Teachers of color (%),School Name,DESE ID,African American (%),Asian (%),Hispanic (%),White (%),Native American (%),Native Hawaiian Pacific Islander (%),Multi-Race Non-Hispanic (%),Females (%),Males (%),FTE Count +7.7,5,"",2023-24,7.7,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.0, 2.0, 3.7, 92.4, 0.0, 0.0, 1.0, 70.0, 30.0, 101.8 +0.0,1,"",2023-24,0.0,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 4.0 +2.4,2.4,"",2023-24,2.4,Abington - Abington High,00010505, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 67.0, 33.0, 41.5 +5.6,5,"",2023-24,5.6,Abington - Abington Middle School,00010405, 2.8, 0.0, 2.8, 94.3, 0.0, 0.0, 0.0, 68.6, 31.4, 35.3 +3.9,3.9,"",2023-24,3.9,Abington - Beaver Brook Elementary,00010020, 3.9, 0.0, 0.0, 96.1, 0.0, 0.0, 0.0, 100.0, 0.0, 25.5 +6.9,5,"",2023-24,6.9,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 93.1, 0.0, 0.0, 6.9, 86.2, 13.8, 14.5 +41.6,5,"",2023-24,41.6,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 28.1, 2.2, 9.1, 58.5, 0.0, 0.0, 2.2, 61.1, 38.9, 34.8 +4.199999999999999,4.2,"",2023-24,4.199999999999999,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 2.3, 1.9, 95.9, 0.0, 0.0, 0.0, 65.7, 34.3, 107.6 +5.6,5,"",2023-24,5.6,Acton-Boxborough - Blanchard Memorial School,06000005, 3.4, 2.2, 0.0, 94.4, 0.0, 0.0, 0.0, 93.3, 6.7, 29.7 +1.4,1.4,"",2023-24,1.4,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 91.5, 8.5, 23.7 +0.0,1,"",2023-24,0.0,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.0 +9.6,5,"",2023-24,9.6,Acton-Boxborough - Luther Conant School,06000030, 0.0, 5.5, 4.1, 90.4, 0.0, 0.0, 0.0, 91.8, 8.2, 24.3 +3.9,3.9,"",2023-24,3.9,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 96.1, 3.9, 25.5 +0.0,1,"",2023-24,0.0,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 24.0 +3.1,3.1,"",2023-24,3.1,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 95.3, 4.7, 21.3 +7.2,5,"",2023-24,7.2,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 1.8, 1.8, 92.9, 0.0, 1.8, 1.8, 73.5, 26.5, 56.6 +2.9,2.9,"",2023-24,2.9,Acushnet - Acushnet Elementary School,00030025, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 91.2, 8.8, 34.0 +3.5,3.5,"",2023-24,3.5,Acushnet - Albert F Ford Middle School,00030305, 3.5, 0.0, 0.0, 96.5, 0.0, 0.0, 0.0, 61.8, 38.2, 28.8 +10.399999999999999,5,"",2023-24,10.399999999999999,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 6.8, 2.4, 89.5, 0.0, 0.0, 1.2, 50.4, 49.6, 82.1 +0.0,1,"",2023-24,0.0,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 6.0 +2.0,2.0,"",2023-24,2.0,Agawam - Agawam High,00050505, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 60.4, 39.6, 70.3 +0.0,1,"",2023-24,0.0,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.5, 40.5, 53.1 +0.0,1,"",2023-24,0.0,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 11.5 +0.0,1,"",2023-24,0.0,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.1, 10.9, 18.3 +0.0,1,"",2023-24,0.0,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.3, 16.7, 17.9 +0.0,1,"",2023-24,0.0,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.2, 18.8, 26.7 +0.0,1,"",2023-24,0.0,Agawam - William P. Sapelli Elementary,00050025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 17.5 +28.500000000000004,5,"",2023-24,28.500000000000004,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 8.4, 0.0, 14.8, 71.5, 0.0, 0.0, 5.3, 77.3, 22.7, 31.6 +7.0,5,"",2023-24,7.0,Amesbury - Amesbury High,00070505, 0.0, 0.0, 7.0, 93.0, 0.0, 0.0, 0.0, 69.4, 30.6, 42.7 +0.0,1,"",2023-24,0.0,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 5.6, 94.4, 4.5 +2.7,2.7,"",2023-24,2.7,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 67.1, 32.9, 36.5 +0.0,1,"",2023-24,0.0,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 22.0 +0.0,1,"",2023-24,0.0,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 28.0 +7.8,5,"",2023-24,7.8,Amherst - Crocker Farm Elementary,00080009, 0.0, 3.9, 3.9, 92.1, 0.0, 0.0, 0.0, 75.1, 24.9, 25.4 +27.3,5,"",2023-24,27.3,Amherst - Fort River Elementary,00080020, 3.9, 3.9, 19.5, 72.6, 0.0, 0.0, 0.0, 63.5, 36.5, 25.6 +43.800000000000004,5,"",2023-24,43.800000000000004,Amherst - Wildwood Elementary,00080050, 24.3, 4.9, 9.7, 56.3, 0.0, 0.0, 4.9, 74.1, 25.9, 20.6 +19.4,5,"",2023-24,19.4,Amherst-Pelham - Amherst Regional High,06050505, 8.4, 2.6, 7.4, 80.6, 0.0, 0.0, 1.0, 47.2, 52.8, 65.3 +25.2,5,"",2023-24,25.2,Amherst-Pelham - Amherst Regional Middle School,06050405, 14.3, 3.9, 3.3, 74.8, 0.0, 0.0, 3.7, 56.8, 43.2, 37.6 +11.8,5,"",2023-24,11.8,Andover - Andover High,00090505, 1.0, 2.9, 5.9, 88.2, 0.0, 1.0, 1.0, 64.8, 35.2, 101.8 +2.8,2.8,"",2023-24,2.8,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 97.2, 0.0, 0.0, 2.8, 85.8, 14.2, 35.3 +0.0,1,"",2023-24,0.0,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 29.1 +11.6,5,"",2023-24,11.6,Andover - Doherty Middle,00090305, 0.0, 2.9, 5.8, 88.3, 2.9, 0.0, 0.0, 70.9, 29.1, 34.3 +0.0,1,"",2023-24,0.0,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 18.9 +4.2,4.2,"",2023-24,4.2,Andover - High Plain Elementary,00090004, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 92.3, 7.7, 29.5 +10.0,5,"",2023-24,10.0,Andover - Shawsheen School,00090005, 0.0, 0.0, 10.0, 90.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +0.0,1,"",2023-24,0.0,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 21.0 +1.7,1.7,"",2023-24,1.7,Andover - West Elementary,00090025, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 83.6, 16.4, 35.2 +7.4,5,"",2023-24,7.4,Andover - Wood Hill Middle School,00090350, 0.0, 3.7, 3.7, 92.6, 0.0, 0.0, 0.0, 69.1, 30.9, 27.0 +20.4,5,"",2023-24,20.4,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 8.2, 4.0, 8.2, 79.6, 0.0, 0.0, 0.0, 50.3, 49.7, 25.1 +9.0,5,"",2023-24,9.0,Arlington - Arlington High,00100505, 0.8, 3.5, 3.3, 91.1, 0.0, 0.0, 1.4, 58.5, 41.5, 110.9 +8.5,5,"",2023-24,8.5,Arlington - Brackett,00100010, 0.0, 4.0, 4.5, 91.5, 0.0, 0.0, 0.0, 91.5, 8.5, 25.1 +11.8,5,"",2023-24,11.8,Arlington - Cyrus E Dallin,00100025, 3.9, 7.9, 0.0, 88.2, 0.0, 0.0, 0.0, 84.3, 15.7, 25.4 +2.5999999999999996,2.6,"",2023-24,2.5999999999999996,Arlington - Gibbs School,00100305, 0.0, 1.4, 1.2, 97.4, 0.0, 0.0, 0.0, 76.5, 23.5, 35.5 +4.6,4.6,"",2023-24,4.6,Arlington - Hardy,00100030, 0.0, 4.0, 0.6, 95.4, 0.0, 0.0, 0.0, 95.4, 4.6, 25.1 +0.6,1,"",2023-24,0.6,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 83.1, 16.9, 23.0 +8.0,5,"",2023-24,8.0,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 4.0, 92.1, 0.0, 0.0, 4.0, 96.0, 4.0, 25.2 +0.0,1,"",2023-24,0.0,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.0 +10.9,5,"",2023-24,10.9,Arlington - Ottoson Middle,00100410, 0.0, 7.9, 3.0, 89.1, 0.0, 0.0, 0.0, 76.9, 23.1, 76.0 +14.5,5,"",2023-24,14.5,Arlington - Peirce,00100045, 0.0, 14.5, 0.0, 85.5, 0.0, 0.0, 0.0, 89.1, 10.9, 20.7 +0.5,1,"",2023-24,0.5,Arlington - Thompson,00100050, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 85.3, 14.7, 28.3 +6.1,5,"",2023-24,6.1,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 93.9, 0.0, 0.0, 6.1, 84.7, 15.3, 32.6 +0.0,1,"",2023-24,0.0,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 12.6 +7.300000000000001,5,"",2023-24,7.300000000000001,Ashburnham-Westminster - Oakmont Regional High School,06100505, 4.9, 0.0, 2.4, 92.7, 0.0, 0.0, 0.0, 47.1, 52.9, 40.9 +3.0,3.0,"",2023-24,3.0,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 60.1, 39.9, 32.9 +0.0,1,"",2023-24,0.0,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 24.2 +1.7,1.7,"",2023-24,1.7,Ashland - Ashland High,00140505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 58.3, 41.7, 59.0 +4.2,4.2,"",2023-24,4.2,Ashland - Ashland Middle,00140405, 0.0, 2.1, 2.1, 95.7, 0.0, 0.0, 0.0, 68.0, 32.0, 46.5 +4.5,4.5,"",2023-24,4.5,Ashland - David Mindess,00140015, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 96.8, 3.2, 44.0 +2.2,2.2,"",2023-24,2.2,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 97.8, 2.2, 44.6 +0.0,1,"",2023-24,0.0,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.0 +4.4,4.4,"",2023-24,4.4,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 1.1, 0.0, 3.3, 95.7, 0.0, 0.0, 0.0, 42.7, 57.3, 92.0 +3.0,3.0,"",2023-24,3.0,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 81.8, 18.2, 33.0 +3.5,3.5,"",2023-24,3.5,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 60.3, 39.7, 28.9 +0.0,1,"",2023-24,0.0,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.8, 36.2, 27.6 +0.0,1,"",2023-24,0.0,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 9.2 +6.2,5,"",2023-24,6.2,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.2, 2.5, 2.5, 93.8, 0.0, 0.0, 0.0, 72.9, 27.1, 80.1 +4.6,4.6,"",2023-24,4.6,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 95.4, 4.6, 21.8 +1.5,1.5,"",2023-24,1.5,Attleboro - Attleboro Community Academy,00160515, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 47.7, 52.3, 6.5 +7.700000000000001,5,"",2023-24,7.700000000000001,Attleboro - Attleboro High,00160505, 1.8, 0.6, 4.4, 92.3, 0.0, 0.0, 0.9, 58.9, 41.1, 113.7 +0.0,1,"",2023-24,0.0,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +2.6,2.6,"",2023-24,2.6,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 81.6, 18.4, 38.8 +0.0,1,"",2023-24,0.0,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.0 +0.0,1,"",2023-24,0.0,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 23.0 +4.2,4.2,"",2023-24,4.2,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 91.7, 8.3, 24.0 +3.3,3.3,"",2023-24,3.3,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 96.7, 0.0, 0.0, 3.3, 86.5, 13.5, 30.4 +0.0,1,"",2023-24,0.0,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.3, 22.7, 32.4 +0.0,1,"",2023-24,0.0,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 18.9 +3.1,3.1,"",2023-24,3.1,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 96.9, 3.1, 0.0, 0.0, 83.5, 16.5, 32.4 +2.4,2.4,"",2023-24,2.4,Auburn - Auburn Middle,00170305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 66.2, 33.8, 41.2 +1.7,1.7,"",2023-24,1.7,Auburn - Auburn Senior High,00170505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 55.0, 45.0, 58.5 +0.0,1,"",2023-24,0.0,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 16.0 +0.0,1,"",2023-24,0.0,Auburn - Pakachoag School,00170025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 14.9 +0.0,1,"",2023-24,0.0,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 32.3 +11.9,5,"",2023-24,11.9,Avon - Avon Middle High School,00180510, 7.1, 2.4, 2.4, 88.2, 0.0, 0.0, 0.0, 56.5, 43.5, 42.5 +8.5,5,"",2023-24,8.5,Avon - Ralph D Butler,00180010, 8.5, 0.0, 0.0, 91.5, 0.0, 0.0, 0.0, 83.0, 17.0, 23.5 +5.8,5,"",2023-24,5.8,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 36.1, 63.9, 25.7 +8.6,5,"",2023-24,8.6,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 4.3, 91.4, 0.0, 0.0, 4.3, 62.9, 37.1, 23.3 +0.0,1,"",2023-24,0.0,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 21.0 +0.0,1,"",2023-24,0.0,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 31.8 +0.0,1,"",2023-24,0.0,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 20.7 +9.7,5,"",2023-24,9.7,Barnstable - Barnstable High,00200505, 3.2, 2.2, 3.6, 90.3, 0.0, 0.0, 0.7, 69.9, 30.1, 138.7 +2.1,2.1,"",2023-24,2.1,Barnstable - Barnstable Intermediate School,00200315, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 68.2, 31.8, 47.1 +6.300000000000001,5,"",2023-24,6.300000000000001,Barnstable - Barnstable United Elementary School,00200050, 2.1, 0.0, 0.0, 93.8, 2.1, 0.0, 2.1, 84.7, 15.3, 48.1 +6.3,5,"",2023-24,6.3,Barnstable - Centerville Elementary,00200010, 0.0, 6.3, 0.0, 93.7, 0.0, 0.0, 0.0, 87.6, 12.4, 16.0 +0.0,1,"",2023-24,0.0,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.8 +15.6,5,"",2023-24,15.6,Barnstable - Hyannis West Elementary,00200025, 0.0, 7.8, 7.8, 84.4, 0.0, 0.0, 0.0, 96.1, 3.9, 25.6 +0.0,1,"",2023-24,0.0,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.2, 9.8, 18.2 +0.0,1,"",2023-24,0.0,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.8 +59.400000000000006,5,"",2023-24,59.400000000000006,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 29.4, 2.6, 23.7, 40.6, 0.0, 0.7, 3.0, 65.7, 34.3, 30.6 +6.2,5,"",2023-24,6.2,Bedford - Bedford High,00230505, 0.0, 0.0, 6.2, 93.8, 0.0, 0.0, 0.0, 55.6, 44.4, 61.4 +2.4,2.4,"",2023-24,2.4,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 77.8, 22.2, 41.6 +9.8,5,"",2023-24,9.8,Bedford - Lt Eleazer Davis,00230010, 0.0, 6.5, 3.3, 90.2, 0.0, 0.0, 0.0, 96.7, 3.3, 30.6 +9.899999999999999,5,"",2023-24,9.899999999999999,Bedford - Lt Job Lane School,00230012, 0.0, 6.6, 0.0, 90.1, 0.0, 0.0, 3.3, 86.8, 13.2, 30.3 +4.2,4.2,"",2023-24,4.2,Belchertown - Belchertown High,00240505, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 62.4, 37.6, 47.3 +0.0,1,"",2023-24,0.0,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.0, 14.0, 28.6 +0.0,1,"",2023-24,0.0,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 11.0 +3.5,3.5,"",2023-24,3.5,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 72.0, 28.0, 28.5 +0.0,1,"",2023-24,0.0,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 26.8 +0.0,1,"",2023-24,0.0,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 6.8 +1.8,1.8,"",2023-24,1.8,Bellingham - Bellingham High School,00250505, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 60.9, 39.1, 55.6 +0.0,1,"",2023-24,0.0,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.0, 34.0, 34.5 +0.0,1,"",2023-24,0.0,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.4 +12.1,5,"",2023-24,12.1,Bellingham - Keough Memorial Academy,00250510, 0.0, 12.1, 0.0, 87.9, 0.0, 0.0, 0.0, 11.9, 88.1, 5.9 +0.0,1,"",2023-24,0.0,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 14.7 +14.9,5,"",2023-24,14.9,Belmont - Belmont High,00260505, 2.8, 5.7, 5.0, 85.2, 0.0, 0.0, 1.4, 67.8, 32.2, 72.3 +18.8,5,"",2023-24,18.8,Belmont - Belmont Middle School,00260315, 0.0, 8.8, 2.5, 81.2, 0.0, 0.0, 7.5, 68.7, 31.3, 39.9 +13.900000000000002,5,"",2023-24,13.900000000000002,Belmont - Daniel Butler,00260015, 0.0, 4.9, 0.7, 86.1, 0.0, 0.0, 8.3, 79.8, 20.2, 20.6 +5.8,5,"",2023-24,5.8,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 84.2, 15.8, 20.0 +4.8,4.8,"",2023-24,4.8,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 1.5, 95.2, 0.0, 0.0, 3.3, 88.7, 11.3, 30.5 +11.5,5,"",2023-24,11.5,Belmont - Winn Brook,00260005, 0.0, 3.9, 7.6, 88.5, 0.0, 0.0, 0.0, 87.7, 12.3, 25.7 +13.200000000000001,5,"",2023-24,13.200000000000001,Belmont - Winthrop L Chenery Upper Elementary,00260305, 2.4, 6.0, 2.4, 86.8, 0.0, 0.0, 2.4, 73.7, 26.3, 41.8 +60.0,5,"",2023-24,60.0,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 53.3, 0.0, 6.7, 40.0, 0.0, 0.0, 0.0, 80.0, 20.0, 15.0 +4.0,4.0,"",2023-24,4.0,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 83.2, 16.8, 49.5 +3.1,3.1,"",2023-24,3.1,Berkley - Berkley Community School,00270010, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 96.9, 3.1, 32.5 +0.0,1,"",2023-24,0.0,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.0, 31.0, 20.8 +10.6,5,"",2023-24,10.6,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 3.5, 0.0, 0.0, 89.4, 0.0, 0.0, 7.1, 69.5, 30.5, 28.2 +9.399999999999999,5,"",2023-24,9.399999999999999,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 1.6, 5.1, 90.6, 0.0, 0.0, 2.7, 61.2, 38.8, 37.1 +2.9,2.9,"",2023-24,2.9,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 81.2, 18.8, 34.5 +4.0,4.0,"",2023-24,4.0,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 2.5, 0.0, 1.5, 96.0, 0.0, 0.0, 0.0, 61.1, 38.9, 26.4 +0.0,1,"",2023-24,0.0,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 12.1 +5.0,5.0,"",2023-24,5.0,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 5.0, 92.0, 8.0, 20.1 +3.6,3.6,"",2023-24,3.6,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 2.1, 96.4, 0.0, 0.0, 1.5, 66.0, 34.0, 43.3 +0.0,1,"",2023-24,0.0,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 21.4 +2.6,2.6,"",2023-24,2.6,Beverly - Beverly High,00300505, 1.5, 1.1, 0.0, 97.4, 0.0, 0.0, 0.0, 59.6, 40.4, 93.8 +4.4,4.4,"",2023-24,4.4,Beverly - Beverly Middle School,00300305, 1.1, 1.1, 2.2, 95.6, 0.0, 0.0, 0.0, 75.0, 25.0, 90.1 +0.0,1,"",2023-24,0.0,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 23.5 +0.0,1,"",2023-24,0.0,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 26.0 +0.0,1,"",2023-24,0.0,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 22.0 +0.0,1,"",2023-24,0.0,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.0 +4.5,4.5,"",2023-24,4.5,Beverly - North Beverly Elementary,00300040, 0.0, 4.5, 0.0, 95.5, 0.0, 0.0, 0.0, 100.0, 0.0, 22.0 +3.4000000000000004,3.4,"",2023-24,3.4000000000000004,Billerica - Billerica Memorial High School,00310505, 0.8, 2.6, 0.0, 96.6, 0.0, 0.0, 0.0, 67.7, 32.3, 123.9 +0.0,1,"",2023-24,0.0,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 17.3 +0.0,1,"",2023-24,0.0,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 23.1 +0.0,1,"",2023-24,0.0,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 19.0 +0.0,1,"",2023-24,0.0,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.0, 18.0, 41.6 +4.2,4.2,"",2023-24,4.2,Billerica - Marshall Middle School,00310305, 2.1, 0.0, 2.1, 95.8, 0.0, 0.0, 0.0, 76.6, 23.4, 47.5 +0.0,1,"",2023-24,0.0,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 22.8 +0.0,1,"",2023-24,0.0,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 30.2 +2.9,2.9,"",2023-24,2.9,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 44.5, 55.5, 103.5 +0.0,1,"",2023-24,0.0,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 11.8 +8.6,5,"",2023-24,8.6,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 8.6, 91.4, 0.0, 0.0, 0.0, 64.9, 35.1, 34.8 +9.7,5,"",2023-24,9.7,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 2.8, 6.9, 90.3, 0.0, 0.0, 0.0, 66.1, 33.9, 28.9 +0.0,1,"",2023-24,0.0,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 7.2 +4.3,4.3,"",2023-24,4.3,Blackstone-Millville - Millville Elementary,06220010, 0.0, 4.3, 0.0, 95.7, 0.0, 0.0, 0.0, 96.5, 3.5, 23.3 +6.4,5,"",2023-24,6.4,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 1.6, 1.6, 1.6, 93.4, 0.0, 0.0, 1.6, 50.8, 49.2, 60.8 +19.1,5,"",2023-24,19.1,Boston - Adams Elementary School,00350302, 12.8, 6.3, 0.0, 80.9, 0.0, 0.0, 0.0, 81.0, 19.0, 7.9 +88.6,5,"",2023-24,88.6,Boston - Alighieri Dante Montessori School,00350066, 19.6, 0.4, 68.6, 11.4, 0.0, 0.0, 0.0, 80.0, 20.0, 2.6 +54.2,5,"",2023-24,54.2,Boston - Another Course To College,00350541, 37.5, 8.3, 4.2, 45.8, 0.0, 0.0, 4.2, 58.3, 41.7, 24.0 +40.0,5,"",2023-24,40.0,Boston - Baldwin Early Learning Pilot Academy,00350003, 20.0, 20.0, 0.0, 60.1, 0.0, 0.0, 0.0, 100.0, 0.0, 5.0 +27.2,5,"",2023-24,27.2,Boston - Bates Elementary School,00350278, 27.2, 0.0, 0.0, 72.8, 0.0, 0.0, 0.0, 99.8, 0.2, 5.5 +15.600000000000001,5,"",2023-24,15.600000000000001,Boston - Beethoven Elementary School,00350021, 5.2, 0.0, 10.4, 84.4, 0.0, 0.0, 0.0, 93.8, 6.3, 9.6 +32.7,5,"",2023-24,32.7,Boston - Blackstone Elementary School,00350390, 12.2, 2.4, 18.1, 67.2, 0.0, 0.0, 0.0, 74.6, 25.4, 40.9 +82.9,5,"",2023-24,82.9,Boston - Boston Adult Tech Academy,00350548, 49.6, 27.2, 5.4, 17.1, 0.0, 0.7, 0.0, 55.8, 44.2, 14.7 +53.89999999999999,5,"",2023-24,53.89999999999999,Boston - Boston Arts Academy,00350546, 31.9, 8.7, 13.3, 46.1, 0.0, 0.0, 0.0, 57.6, 42.4, 41.3 +42.7,5,"",2023-24,42.7,Boston - Boston Collaborative High School,00350755, 12.1, 8.0, 22.6, 57.3, 0.0, 0.0, 0.0, 52.0, 48.0, 12.5 +51.0,5,"",2023-24,51.0,Boston - Boston Community Leadership Academy,00350558, 33.0, 7.0, 11.0, 49.0, 0.0, 0.0, 0.0, 63.0, 37.0, 50.1 +43.900000000000006,5,"",2023-24,43.900000000000006,Boston - Boston International High School & Newcomers Academy,00350507, 15.5, 3.3, 25.1, 56.0, 0.0, 0.0, 0.0, 66.2, 33.8, 45.0 +48.1,5,"",2023-24,48.1,Boston - Boston Latin Academy,00350545, 19.2, 19.6, 8.1, 51.9, 1.2, 0.0, 0.0, 59.1, 40.9, 86.6 +28.099999999999998,5,"",2023-24,28.099999999999998,Boston - Boston Latin School,00350560, 15.6, 6.6, 5.1, 71.9, 0.0, 0.8, 0.0, 49.8, 50.2, 117.1 +35.7,5,"",2023-24,35.7,Boston - Boston Teachers Union K-8 Pilot,00350012, 25.5, 0.0, 10.2, 64.3, 0.0, 0.0, 0.0, 71.5, 28.5, 9.8 +19.5,5,"",2023-24,19.5,Boston - Bradley Elementary School,00350215, 0.0, 3.9, 15.6, 80.5, 0.0, 0.0, 0.0, 88.3, 11.7, 12.8 +35.0,5,"",2023-24,35.0,Boston - Brighton High School,00350505, 18.7, 4.9, 11.4, 65.0, 0.0, 0.0, 0.0, 64.2, 35.8, 61.5 +51.5,5,"",2023-24,51.5,Boston - Burke High School,00350525, 36.6, 6.8, 8.1, 48.5, 0.0, 0.0, 0.0, 59.6, 40.4, 36.9 +0.0,1,"",2023-24,0.0,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0 +37.7,5,"",2023-24,37.7,Boston - Channing Elementary School,00350360, 18.9, 3.8, 15.0, 62.3, 0.0, 0.0, 0.0, 71.4, 28.6, 13.3 +35.4,5,"",2023-24,35.4,Boston - Charlestown High School,00350515, 15.9, 16.1, 3.4, 64.5, 0.0, 0.0, 0.0, 64.7, 35.3, 59.0 +34.4,5,"",2023-24,34.4,Boston - Chittick Elementary School,00350154, 22.9, 2.9, 2.9, 65.6, 5.7, 0.0, 0.0, 85.7, 14.3, 17.5 +27.3,5,"",2023-24,27.3,Boston - Clap Elementary School,00350298, 26.7, 0.3, 0.3, 72.7, 0.0, 0.0, 0.0, 86.6, 13.4, 3.7 +100.0,5,"",2023-24,100.0,Boston - Community Academy,00350518, 57.9, 0.0, 42.1, 0.0, 0.0, 0.0, 0.0, 73.7, 26.3, 9.5 +51.2,5,"",2023-24,51.2,Boston - Community Academy of Science and Health,00350581, 32.8, 6.7, 11.7, 48.8, 0.0, 0.0, 0.0, 44.5, 55.5, 29.9 +33.6,5,"",2023-24,33.6,Boston - Condon K-8 School,00350146, 23.0, 2.2, 6.2, 66.5, 2.2, 0.0, 0.0, 74.8, 25.2, 46.5 +26.5,5,"",2023-24,26.5,Boston - Conley Elementary School,00350122, 19.6, 4.9, 2.0, 73.5, 0.0, 0.0, 0.0, 85.3, 14.7, 10.2 +19.1,5,"",2023-24,19.1,Boston - Curley K-8 School,00350020, 9.2, 2.3, 7.6, 81.0, 0.0, 0.0, 0.0, 73.7, 26.3, 43.8 +45.699999999999996,5,"",2023-24,45.699999999999996,Boston - Dearborn 6-12 STEM Academy,00350074, 33.3, 2.5, 9.9, 54.3, 0.0, 0.0, 0.0, 65.4, 34.6, 40.5 +54.10000000000001,5,"",2023-24,54.10000000000001,Boston - Dever Elementary School,00350268, 29.1, 8.3, 16.7, 45.8, 0.0, 0.0, 0.0, 100.0, 0.0, 12.0 +54.5,5,"",2023-24,54.5,Boston - East Boston Early Education Center,00350009, 12.1, 12.1, 24.2, 45.5, 0.0, 6.1, 0.0, 100.0, 0.0, 8.3 +31.4,5,"",2023-24,31.4,Boston - East Boston High School,00350530, 8.4, 9.9, 13.1, 68.6, 0.0, 0.0, 0.0, 51.5, 48.5, 80.4 +44.4,5,"",2023-24,44.4,Boston - Edison K-8 School,00350375, 20.4, 16.4, 6.9, 55.6, 0.0, 0.0, 0.7, 79.6, 20.4, 29.3 +39.4,5,"",2023-24,39.4,Boston - Eliot K-8 Innovation School,00350096, 17.7, 9.3, 9.8, 60.6, 0.0, 0.0, 2.6, 88.1, 11.9, 37.8 +66.2,5,"",2023-24,66.2,Boston - Ellis Elementary School,00350072, 37.1, 8.0, 21.1, 33.8, 0.0, 0.0, 0.0, 85.6, 14.4, 18.9 +75.0,5,"",2023-24,75.0,Boston - Ellison-Parks Early Education School,00350008, 25.0, 0.0, 50.0, 25.0, 0.0, 0.0, 0.0, 75.0, 25.0, 2.0 +41.5,5,"",2023-24,41.5,Boston - English High School,00350535, 17.0, 4.9, 18.0, 58.4, 0.0, 1.6, 0.0, 65.9, 32.5, 61.6 +38.8,5,"",2023-24,38.8,Boston - Everett Elementary School,00350088, 19.4, 9.7, 6.5, 61.3, 0.0, 3.2, 0.0, 83.9, 16.1, 15.5 +59.0,5,"",2023-24,59.0,Boston - Excel High School,00350522, 37.2, 12.3, 6.8, 40.9, 2.7, 0.0, 0.0, 58.4, 41.6, 36.5 +56.0,5,"",2023-24,56.0,Boston - Fenway High School,00350540, 29.8, 3.6, 22.6, 44.1, 0.0, 0.0, 0.0, 64.2, 35.8, 27.9 +55.00000000000001,5,"",2023-24,55.00000000000001,Boston - Frederick Pilot Middle School,00350383, 46.6, 4.2, 4.2, 45.0, 0.0, 0.0, 0.0, 57.9, 42.1, 24.0 +51.2,5,"",2023-24,51.2,Boston - Gardner Pilot Academy,00350326, 23.0, 16.7, 11.5, 48.9, 0.0, 0.0, 0.0, 79.9, 20.1, 17.4 +48.0,5,"",2023-24,48.0,Boston - Greater Egleston High School,00350543, 40.0, 0.0, 8.0, 52.0, 0.0, 0.0, 0.0, 52.2, 47.8, 6.3 +61.3,5,"",2023-24,61.3,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 61.3, 38.7, 0.0, 0.0, 0.0, 76.3, 23.7, 14.8 +73.5,5,"",2023-24,73.5,Boston - Grew Elementary School,00350135, 53.1, 8.2, 12.2, 26.5, 0.0, 0.0, 0.0, 63.3, 36.7, 12.3 +21.7,5,"",2023-24,21.7,Boston - Guild Elementary School,00350062, 11.9, 0.1, 9.7, 78.3, 0.0, 0.0, 0.0, 88.1, 11.9, 9.3 +66.7,5,"",2023-24,66.7,Boston - Hale Elementary School,00350243, 46.7, 0.0, 20.0, 33.3, 0.0, 0.0, 0.0, 86.7, 13.3, 7.5 +53.8,5,"",2023-24,53.8,Boston - Haley Pilot School,00350077, 37.3, 0.0, 16.5, 46.2, 0.0, 0.0, 0.0, 83.3, 16.7, 6.1 +28.599999999999998,5,"",2023-24,28.599999999999998,Boston - Harvard-Kent Elementary School,00350200, 5.7, 17.2, 5.7, 71.3, 0.0, 0.0, 0.0, 80.8, 19.2, 26.1 +64.3,5,"",2023-24,64.3,Boston - Haynes Early Education Center,00350010, 64.3, 0.0, 0.0, 35.7, 0.0, 0.0, 0.0, 82.1, 17.9, 14.0 +44.4,5,"",2023-24,44.4,Boston - Henderson K-12 Inclusion School Lower,00350266, 22.2, 22.2, 0.0, 55.6, 0.0, 0.0, 0.0, 55.6, 44.4, 4.5 +35.7,5,"",2023-24,35.7,Boston - Henderson K-12 Inclusion School Upper,00350426, 22.4, 3.5, 9.8, 64.3, 0.0, 0.0, 0.0, 62.7, 37.3, 25.5 +35.9,5,"",2023-24,35.9,Boston - Hennigan K-8 School,00350153, 16.6, 4.4, 14.9, 64.1, 0.0, 0.0, 0.0, 74.0, 26.0, 30.1 +78.1,5,"",2023-24,78.1,Boston - Hernandez K-8 School,00350691, 8.8, 0.0, 69.3, 21.9, 0.0, 0.0, 0.0, 86.9, 13.1, 11.4 +75.7,5,"",2023-24,75.7,Boston - Higginson Inclusion K0-2 School,00350015, 45.4, 7.6, 22.7, 24.4, 0.0, 0.0, 0.0, 75.8, 24.2, 6.6 +49.9,5,"",2023-24,49.9,Boston - Higginson-Lewis K-8 School,00350377, 34.6, 3.8, 11.5, 50.1, 0.0, 0.0, 0.0, 69.1, 27.0, 13.0 +54.0,5,"",2023-24,54.0,Boston - Holmes Elementary School,00350138, 34.4, 14.6, 5.0, 46.0, 0.0, 0.0, 0.0, 62.9, 37.1, 10.2 +6.2,5,"",2023-24,6.2,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 2.2, 4.0, 93.8, 0.0, 0.0, 0.0, 75.5, 24.5, 22.4 +67.0,5,"",2023-24,67.0,Boston - Hurley K-8 School,00350182, 21.1, 0.0, 45.9, 32.9, 0.0, 0.0, 0.0, 67.2, 32.8, 13.7 +40.0,5,"",2023-24,40.0,Boston - Kennedy John F Elementary School,00350166, 25.0, 0.0, 15.0, 60.0, 0.0, 0.0, 0.0, 77.5, 22.5, 20.0 +25.9,5,"",2023-24,25.9,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 5.4, 20.5, 74.1, 0.0, 0.0, 0.0, 94.6, 5.4, 9.3 +52.4,5,"",2023-24,52.4,Boston - Kenny Elementary School,00350328, 41.2, 5.6, 2.8, 47.5, 0.0, 0.0, 2.8, 86.4, 13.6, 17.7 +26.2,5,"",2023-24,26.2,Boston - Kilmer K-8 School,00350190, 19.9, 0.0, 6.3, 73.9, 0.0, 0.0, 0.0, 70.1, 29.9, 15.9 +63.9,5,"",2023-24,63.9,Boston - King Elementary School,00350376, 42.6, 6.3, 15.0, 36.2, 0.0, 0.0, 0.0, 86.4, 13.6, 28.7 +40.0,5,"",2023-24,40.0,Boston - Lee Academy,00350001, 40.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0, 86.7, 13.3, 7.5 +33.7,5,"",2023-24,33.7,Boston - Lee K-8 School,00350183, 19.7, 6.5, 7.5, 66.3, 0.0, 0.0, 0.0, 83.3, 16.7, 30.7 +24.700000000000003,5,"",2023-24,24.700000000000003,Boston - Lyndon K-8 School,00350262, 15.7, 0.8, 4.1, 75.4, 4.1, 0.0, 0.0, 77.2, 22.8, 24.6 +20.2,5,"",2023-24,20.2,Boston - Lyon High School,00350655, 10.6, 0.0, 9.6, 79.8, 0.0, 0.0, 0.0, 30.9, 69.1, 9.4 +17.900000000000002,5,"",2023-24,17.900000000000002,Boston - Lyon K-8 School,00350004, 17.8, 0.0, 0.1, 82.1, 0.0, 0.0, 0.0, 71.5, 28.5, 8.4 +50.0,5,"",2023-24,50.0,Boston - Madison Park Technical Vocational High School,00350537, 36.9, 1.3, 11.8, 49.9, 0.0, 0.0, 0.0, 38.8, 61.2, 76.4 +0.2,1,"",2023-24,0.2,Boston - Manning Elementary School,00350184, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 95.7, 4.3, 6.1 +60.9,5,"",2023-24,60.9,Boston - Margarita Muniz Academy,00350549, 0.0, 4.3, 56.6, 39.1, 0.0, 0.0, 0.0, 73.0, 27.0, 23.3 +43.3,5,"",2023-24,43.3,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 41.0, 56.7, 2.3, 0.0, 0.0, 87.5, 12.5, 39.3 +34.7,5,"",2023-24,34.7,Boston - Mason Elementary School,00350304, 34.7, 0.0, 0.0, 65.3, 0.0, 0.0, 0.0, 77.3, 22.7, 10.1 +55.900000000000006,5,"",2023-24,55.900000000000006,Boston - Mather Elementary School,00350227, 38.7, 17.2, 0.0, 44.1, 0.0, 0.0, 0.0, 74.2, 25.8, 23.3 +42.900000000000006,5,"",2023-24,42.900000000000006,Boston - Mattahunt Elementary School,00350016, 37.0, 1.2, 4.7, 57.1, 0.0, 0.0, 0.0, 85.2, 14.8, 42.7 +26.900000000000002,5,"",2023-24,26.900000000000002,Boston - McKay K-8 School,00350080, 5.0, 0.0, 18.8, 73.1, 0.0, 0.0, 3.1, 65.5, 34.5, 16.0 +25.099999999999998,5,"",2023-24,25.099999999999998,Boston - Melvin H. King South End Academy,00350363, 24.7, 0.0, 0.4, 74.9, 0.0, 0.0, 0.0, 36.5, 63.5, 25.6 +69.3,5,"",2023-24,69.3,Boston - Mendell Elementary School,00350100, 32.5, 6.5, 30.3, 30.7, 0.0, 0.0, 0.0, 87.0, 13.0, 11.5 +57.6,5,"",2023-24,57.6,Boston - Mildred Avenue K-8 School,00350378, 42.1, 3.5, 9.5, 42.3, 2.5, 0.0, 0.0, 74.2, 25.8, 39.9 +16.7,5,"",2023-24,16.7,Boston - Mozart Elementary School,00350237, 4.8, 0.0, 11.9, 83.3, 0.0, 0.0, 0.0, 88.1, 11.9, 4.2 +36.2,5,"",2023-24,36.2,Boston - Murphy K-8 School,00350240, 22.0, 5.2, 9.0, 63.7, 0.0, 0.0, 0.0, 72.8, 27.2, 47.7 +45.6,5,"",2023-24,45.6,Boston - New Mission High School,00350542, 23.1, 5.7, 15.9, 54.4, 0.0, 0.0, 0.9, 57.0, 43.0, 54.6 +56.9,5,"",2023-24,56.9,Boston - O'Bryant School of Math & Science,00350575, 33.2, 9.3, 14.4, 43.1, 0.0, 0.0, 0.0, 54.4, 45.6, 86.0 +39.099999999999994,5,"",2023-24,39.099999999999994,Boston - O'Donnell Elementary School,00350141, 8.7, 0.0, 30.4, 60.9, 0.0, 0.0, 0.0, 91.3, 8.7, 11.5 +32.400000000000006,5,"",2023-24,32.400000000000006,Boston - Ohrenberger School,00350258, 18.6, 4.6, 9.2, 67.6, 0.0, 0.0, 0.0, 72.7, 27.3, 21.7 +35.1,5,"",2023-24,35.1,Boston - Orchard Gardens K-8 School,00350257, 20.4, 0.0, 10.6, 64.9, 0.0, 0.0, 4.1, 72.3, 27.7, 49.0 +15.2,5,"",2023-24,15.2,Boston - Otis Elementary School,00350156, 11.3, 0.7, 3.2, 84.8, 0.0, 0.0, 0.0, 80.6, 19.4, 15.5 +38.1,5,"",2023-24,38.1,Boston - Perkins Elementary School,00350231, 19.7, 11.8, 6.6, 61.9, 0.0, 0.0, 0.0, 93.4, 6.6, 7.6 +26.299999999999997,5,"",2023-24,26.299999999999997,Boston - Perry Elementary School,00350255, 7.4, 2.5, 16.4, 73.7, 0.0, 0.0, 0.0, 90.1, 9.9, 13.4 +52.1,5,"",2023-24,52.1,Boston - Philbrick Elementary School,00350172, 40.6, 11.5, 0.0, 47.8, 0.0, 0.0, 0.0, 59.7, 40.3, 6.9 +60.5,5,"",2023-24,60.5,Boston - Quincy Elementary School,00350286, 5.1, 53.4, 2.0, 39.5, 0.0, 0.0, 0.0, 85.1, 14.9, 48.9 +61.900000000000006,5,"",2023-24,61.900000000000006,Boston - Quincy Upper School,00350565, 20.7, 25.0, 16.2, 38.1, 0.0, 0.0, 0.0, 74.9, 25.1, 34.0 +30.1,5,"",2023-24,30.1,Boston - Roosevelt K-8 School,00350116, 30.1, 0.0, 0.0, 69.9, 0.0, 0.0, 0.0, 78.3, 21.7, 8.3 +33.2,5,"",2023-24,33.2,Boston - Russell Elementary School,00350366, 15.5, 0.0, 17.7, 66.7, 0.0, 0.0, 0.0, 84.5, 15.5, 22.6 +55.400000000000006,5,"",2023-24,55.400000000000006,Boston - Shaw Elementary School,00350014, 44.7, 0.0, 10.7, 44.6, 0.0, 0.0, 0.0, 82.2, 17.8, 11.2 +45.3,5,"",2023-24,45.3,Boston - Snowden International High School,00350690, 23.0, 8.7, 13.6, 54.7, 0.0, 0.0, 0.0, 58.8, 41.2, 36.9 +27.2,5,"",2023-24,27.2,Boston - Sumner Elementary School,00350052, 17.5, 1.9, 7.8, 72.8, 0.0, 0.0, 0.0, 83.5, 16.5, 25.8 +69.5,5,"",2023-24,69.5,Boston - Taylor Elementary School,00350054, 60.6, 5.1, 3.8, 30.5, 0.0, 0.0, 0.0, 98.7, 1.3, 26.3 +49.1,5,"",2023-24,49.1,Boston - TechBoston Academy,00350657, 37.9, 4.2, 7.0, 50.9, 0.0, 0.0, 0.0, 56.5, 43.5, 71.8 +44.099999999999994,5,"",2023-24,44.099999999999994,Boston - Tobin K-8 School,00350229, 22.3, 4.1, 17.7, 55.8, 0.0, 0.0, 0.0, 78.1, 21.9, 24.2 +67.6,5,"",2023-24,67.6,Boston - Trotter Elementary School,00350370, 63.5, 0.0, 0.0, 32.4, 4.1, 0.0, 0.0, 89.6, 10.4, 24.1 +38.6,5,"",2023-24,38.6,Boston - Tynan Elementary School,00350181, 19.0, 0.0, 19.6, 61.4, 0.0, 0.0, 0.0, 79.7, 20.3, 14.8 +37.4,5,"",2023-24,37.4,Boston - UP Academy Holland,00350167, 29.9, 3.0, 4.5, 62.7, 0.0, 0.0, 0.0, 86.6, 13.4, 33.5 +20.4,5,"",2023-24,20.4,Boston - Warren-Prescott K-8 School,00350346, 2.9, 0.0, 17.5, 79.5, 0.0, 0.0, 0.0, 94.2, 5.8, 17.1 +39.6,5,"",2023-24,39.6,Boston - West Zone Early Learning Center,00350006, 19.8, 0.0, 19.8, 60.4, 0.0, 0.0, 0.0, 95.0, 5.0, 10.1 +42.0,5,"",2023-24,42.0,Boston - Winship Elementary School,00350374, 18.3, 9.1, 14.6, 58.0, 0.0, 0.0, 0.0, 79.5, 20.5, 21.9 +38.8,5,"",2023-24,38.8,Boston - Winthrop Elementary School,00350180, 34.0, 4.8, 0.0, 61.2, 0.0, 0.0, 0.0, 90.4, 9.6, 10.4 +48.099999999999994,5,"",2023-24,48.099999999999994,Boston - Young Achievers K-8 School,00350380, 39.8, 0.0, 8.3, 51.9, 0.0, 0.0, 0.0, 75.1, 24.9, 36.2 +49.300000000000004,5,"",2023-24,49.300000000000004,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 22.7, 5.4, 15.0, 50.7, 0.0, 0.0, 6.2, 52.2, 47.8, 43.5 +65.0,5,"",2023-24,65.0,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 35.2, 19.8, 6.3, 35.0, 0.0, 0.0, 3.7, 41.0, 59.0, 15.2 +39.9,5,"",2023-24,39.9,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 14.6, 5.3, 20.0, 60.1, 0.0, 0.0, 0.0, 68.6, 31.4, 41.7 +47.699999999999996,5,"",2023-24,47.699999999999996,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 23.8, 12.0, 9.0, 52.3, 0.0, 0.0, 2.9, 50.9, 49.1, 55.6 +12.100000000000001,5,"",2023-24,12.100000000000001,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 6.3, 2.1, 3.7, 88.0, 0.0, 0.0, 0.0, 79.6, 20.4, 47.9 +0.0,1,"",2023-24,0.0,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.3, 49.7, 30.7 +0.0,1,"",2023-24,0.0,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.0, 14.0, 21.4 +6.4,5,"",2023-24,6.4,Bourne - Bourne Middle School,00360325, 0.0, 3.2, 0.0, 93.7, 0.0, 0.0, 3.2, 88.2, 11.8, 31.6 +0.0,1,"",2023-24,0.0,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 21.4 +0.0,1,"",2023-24,0.0,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 20.6 +3.8,3.8,"",2023-24,3.8,Boxford - Spofford Pond,00380013, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 98.1, 1.9, 26.1 +0.0,1,"",2023-24,0.0,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 4.0, 22.1 +3.6,3.6,"",2023-24,3.6,Braintree - Braintree High,00400505, 0.9, 0.9, 0.9, 96.3, 0.0, 0.0, 0.9, 61.7, 38.3, 109.2 +0.0,1,"",2023-24,0.0,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 13.4 +1.3,1.3,"",2023-24,1.3,Braintree - East Middle School,00400305, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 72.2, 27.8, 78.0 +0.0,1,"",2023-24,0.0,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 19.9 +0.0,1,"",2023-24,0.0,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.4 +0.0,1,"",2023-24,0.0,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.6 +0.0,1,"",2023-24,0.0,Braintree - Mary E Flaherty School,00400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 5.1, 19.6 +0.0,1,"",2023-24,0.0,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 12.0 +0.0,1,"",2023-24,0.0,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.2, 28.8, 56.8 +0.0,1,"",2023-24,0.0,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 15.7 +0.0,1,"",2023-24,0.0,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 19.0 +45.2,5,"",2023-24,45.2,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 29.0, 3.2, 6.5, 54.8, 0.0, 0.0, 6.5, 77.4, 22.6, 31.0 +0.0,1,"",2023-24,0.0,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.0, 22.0, 46.7 +2.3,2.3,"",2023-24,2.3,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 56.6, 43.4, 85.7 +0.0,1,"",2023-24,0.0,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.7, 16.3, 24.6 +0.0,1,"",2023-24,0.0,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 17.0 +0.0,1,"",2023-24,0.0,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 47.4 +0.0,1,"",2023-24,0.0,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.9, 17.1, 41.0 +1.9,1.9,"",2023-24,1.9,Bridgewater-Raynham - Therapeutic Day School,06250415, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 87.6, 12.4, 3.1 +0.0,1,"",2023-24,0.0,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 39.5 +0.0,1,"",2023-24,0.0,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 17.6 +2.6,2.6,"",2023-24,2.6,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 73.1, 26.9, 38.9 +4.1,4.1,"",2023-24,4.1,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 3.3, 95.9, 0.8, 0.0, 0.0, 61.6, 38.4, 61.3 +3.8,3.8,"",2023-24,3.8,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 72.4, 27.6, 23.9 +0.0,1,"",2023-24,0.0,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 12.6 +27.300000000000004,5,"",2023-24,27.300000000000004,Brockton - Brockton High,00440505, 16.6, 3.4, 6.0, 72.8, 0.1, 0.6, 0.6, 60.4, 39.6, 181.5 +0.0,1,"",2023-24,0.0,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.2,5,"",2023-24,7.2,Brockton - Brookfield,00440010, 0.0, 0.0, 3.6, 92.7, 0.0, 0.0, 3.6, 100.0, 0.0, 27.4 +2.7,2.7,"",2023-24,2.7,Brockton - Downey,00440110, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 91.5, 8.5, 37.5 +8.9,5,"",2023-24,8.9,Brockton - Dr W Arnone Community School,00440001, 8.1, 0.0, 0.8, 91.1, 0.0, 0.0, 0.0, 88.0, 12.0, 39.3 +14.3,5,"",2023-24,14.3,Brockton - East Middle School,00440405, 7.3, 7.0, 0.0, 85.7, 0.0, 0.0, 0.0, 68.5, 31.5, 27.3 +9.7,5,"",2023-24,9.7,Brockton - Edgar B Davis,00440023, 3.4, 0.0, 2.1, 90.3, 0.0, 0.0, 4.2, 69.2, 30.8, 47.4 +9.8,5,"",2023-24,9.8,Brockton - Edison Day Academy,00440535, 9.8, 0.0, 0.0, 90.2, 0.0, 0.0, 0.0, 37.8, 62.2, 8.2 +69.3,5,"",2023-24,69.3,Brockton - Edison Evening Academy,00440520, 61.3, 5.3, 2.7, 30.8, 0.0, 0.0, 0.0, 49.4, 50.6, 3.8 +18.4,5,"",2023-24,18.4,Brockton - Gilmore Elementary School,00440055, 14.9, 0.0, 3.5, 81.7, 0.0, 0.0, 0.0, 83.7, 16.3, 20.2 +17.2,5,"",2023-24,17.2,Brockton - Hancock,00440045, 8.6, 0.0, 5.7, 82.8, 2.9, 0.0, 0.0, 88.2, 11.8, 34.8 +10.5,5,"",2023-24,10.5,Brockton - Huntington Therapeutic Day School,00440400, 7.9, 0.0, 2.6, 89.5, 0.0, 0.0, 0.0, 41.8, 58.2, 7.6 +17.9,5,"",2023-24,17.9,Brockton - John F Kennedy,00440017, 7.1, 3.6, 3.6, 82.2, 0.0, 0.0, 3.6, 89.3, 10.7, 28.1 +11.0,5,"",2023-24,11.0,Brockton - Louis F Angelo Elementary,00440065, 4.4, 0.0, 2.2, 88.9, 0.0, 0.0, 4.4, 95.1, 4.9, 45.0 +7.5,5,"",2023-24,7.5,Brockton - Manthala George Jr. School,00440003, 7.5, 0.0, 0.0, 92.5, 0.0, 0.0, 0.0, 75.9, 24.1, 13.3 +8.6,5,"",2023-24,8.6,Brockton - Mary E. Baker School,00440002, 6.8, 0.0, 1.8, 91.3, 0.0, 0.0, 0.0, 97.7, 2.3, 43.8 +13.799999999999999,5,"",2023-24,13.799999999999999,Brockton - North Middle School,00440410, 0.0, 9.2, 0.0, 86.2, 0.0, 0.0, 4.6, 56.9, 43.1, 21.8 +12.3,5,"",2023-24,12.3,Brockton - Oscar F Raymond,00440078, 7.7, 0.0, 4.6, 87.7, 0.0, 0.0, 0.0, 94.4, 5.6, 39.0 +5.0,5.0,"",2023-24,5.0,Brockton - PROMISE College and Career Academy,00440525, 2.5, 0.0, 0.0, 95.0, 0.0, 0.0, 2.5, 31.3, 68.8, 8.0 +29.0,5,"",2023-24,29.0,Brockton - Plouffe Middle School,00440422, 21.1, 2.9, 5.0, 70.9, 0.0, 0.0, 0.0, 84.1, 15.9, 39.6 +30.700000000000003,5,"",2023-24,30.700000000000003,Brockton - South Middle School,00440415, 20.6, 0.0, 6.3, 69.3, 0.0, 0.0, 3.8, 71.5, 28.5, 31.6 +22.5,5,"",2023-24,22.5,Brockton - West Middle School,00440420, 20.2, 0.0, 2.3, 77.6, 0.0, 0.0, 0.0, 65.0, 35.0, 26.3 +54.1,5,"",2023-24,54.1,Brooke Charter School (District) - Brooke Charter School,04280305, 25.4, 4.7, 18.8, 46.0, 0.0, 0.6, 4.6, 70.3, 29.7, 175.5 +0.0,1,"",2023-24,0.0,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 19.0 +0.0,1,"",2023-24,0.0,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 4.9 +0.0,1,"",2023-24,0.0,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 2.9 +0.0,1,"",2023-24,0.0,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 2.0 +16.200000000000003,5,"",2023-24,16.200000000000003,Brookline - Brookline High,00460505, 2.4, 7.6, 4.3, 83.8, 0.8, 0.0, 1.1, 62.3, 37.7, 132.2 +16.6,5,"",2023-24,16.6,Brookline - Edith C Baker,00460005, 2.0, 7.5, 7.1, 83.4, 0.0, 0.0, 0.0, 79.6, 20.4, 50.6 +9.2,5,"",2023-24,9.2,Brookline - Florida Ruffin Ridley School,00460015, 4.9, 0.3, 4.0, 90.7, 0.0, 0.0, 0.0, 78.8, 21.2, 60.7 +6.0,5,"",2023-24,6.0,Brookline - Heath,00460025, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 86.1, 13.9, 33.4 +5.7,5,"",2023-24,5.7,Brookline - John D Runkle,00460045, 2.6, 0.5, 0.0, 94.3, 0.0, 2.6, 0.0, 89.8, 10.2, 38.4 +14.9,5,"",2023-24,14.9,Brookline - Lawrence,00460030, 2.8, 11.0, 0.4, 85.1, 0.0, 0.0, 0.7, 85.1, 14.9, 45.4 +12.5,5,"",2023-24,12.5,Brookline - Michael Driscoll,00460020, 0.0, 7.3, 5.2, 87.5, 0.0, 0.0, 0.0, 88.1, 11.9, 38.4 +21.400000000000002,5,"",2023-24,21.400000000000002,Brookline - Pierce,00460040, 2.2, 13.0, 4.4, 78.6, 0.0, 0.0, 1.8, 85.3, 14.7, 45.4 +21.3,5,"",2023-24,21.3,Brookline - The Lynch Center,00460060, 0.0, 0.0, 21.3, 78.7, 0.0, 0.0, 0.0, 100.0, 0.0, 4.7 +12.7,5,"",2023-24,12.7,Brookline - William H Lincoln,00460035, 4.6, 3.5, 4.6, 87.2, 0.0, 0.0, 0.0, 80.9, 19.1, 43.1 +9.9,5,"",2023-24,9.9,Burlington - Burlington High,00480505, 1.2, 4.9, 3.1, 90.1, 0.0, 0.0, 0.7, 73.1, 26.9, 81.9 +0.0,1,"",2023-24,0.0,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 30.3 +3.2,3.2,"",2023-24,3.2,Burlington - Francis Wyman Elementary,00480035, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 96.8, 3.2, 31.0 +7.0,5,"",2023-24,7.0,Burlington - Marshall Simonds Middle,00480303, 3.1, 3.9, 0.0, 93.0, 0.0, 0.0, 0.0, 76.6, 23.4, 64.1 +3.5,3.5,"",2023-24,3.5,Burlington - Memorial,00480015, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 86.8, 13.2, 28.8 +4.0,4.0,"",2023-24,4.0,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 4.0, 96.0, 4.0, 24.7 +53.0,5,"",2023-24,53.0,Cambridge - Amigos School,00490006, 6.0, 0.0, 47.0, 46.9, 0.0, 0.0, 0.0, 63.1, 36.9, 29.8 +28.2,5,"",2023-24,28.2,Cambridge - Cambridge Rindge and Latin,00490506, 10.1, 6.3, 8.8, 71.9, 0.0, 0.0, 3.0, 54.6, 44.8, 145.3 +36.0,5,"",2023-24,36.0,Cambridge - Cambridge Street Upper School,00490305, 21.1, 5.0, 9.9, 64.0, 0.0, 0.0, 0.0, 75.2, 24.8, 20.1 +31.2,5,"",2023-24,31.2,Cambridge - Cambridgeport,00490007, 26.0, 0.0, 0.0, 68.8, 0.0, 0.0, 5.2, 75.3, 24.7, 19.2 +32.2,5,"",2023-24,32.2,Cambridge - Fletcher/Maynard Academy,00490090, 11.4, 9.4, 11.4, 67.8, 0.0, 0.0, 0.0, 81.1, 18.9, 26.4 +8.6,5,"",2023-24,8.6,Cambridge - Graham and Parks,00490080, 4.3, 0.0, 4.3, 91.4, 0.0, 0.0, 0.0, 95.7, 4.3, 23.3 +39.4,5,"",2023-24,39.4,Cambridge - Haggerty,00490020, 16.9, 11.3, 5.6, 60.6, 0.0, 0.0, 5.6, 83.2, 16.8, 17.8 +18.7,5,"",2023-24,18.7,Cambridge - John M Tobin,00490065, 3.7, 7.5, 3.8, 81.3, 0.0, 0.0, 3.7, 82.3, 17.7, 26.7 +12.7,5,"",2023-24,12.7,Cambridge - Kennedy-Longfellow,00490040, 7.6, 0.0, 5.1, 87.2, 0.0, 0.0, 0.0, 89.8, 10.2, 19.4 +28.599999999999998,5,"",2023-24,28.599999999999998,Cambridge - King Open,00490035, 13.9, 7.0, 7.7, 71.5, 0.0, 0.0, 0.0, 89.6, 10.4, 28.7 +26.8,5,"",2023-24,26.8,Cambridge - Maria L. Baldwin,00490005, 10.3, 8.3, 8.2, 73.2, 0.0, 0.0, 0.0, 76.3, 23.7, 24.2 +41.5,5,"",2023-24,41.5,Cambridge - Martin Luther King Jr.,00490030, 9.0, 23.5, 4.5, 58.5, 0.0, 0.0, 4.5, 95.5, 4.5, 22.2 +10.7,5,"",2023-24,10.7,Cambridge - Morse,00490045, 4.3, 0.0, 2.1, 89.3, 0.0, 0.0, 4.3, 85.1, 14.9, 23.5 +21.0,5,"",2023-24,21.0,Cambridge - Peabody,00490050, 2.6, 10.5, 7.9, 78.9, 0.0, 0.0, 0.0, 84.2, 15.8, 19.0 +31.4,5,"",2023-24,31.4,Cambridge - Putnam Avenue Upper School,00490310, 8.4, 10.5, 8.3, 68.6, 0.0, 0.0, 4.2, 71.1, 28.9, 23.9 +28.099999999999998,5,"",2023-24,28.099999999999998,Cambridge - Rindge Avenue Upper School,00490315, 11.7, 4.7, 11.7, 72.0, 0.0, 0.0, 0.0, 28.1, 71.9, 21.3 +14.3,5,"",2023-24,14.3,Cambridge - Vassal Lane Upper School,00490320, 4.1, 3.4, 3.4, 85.6, 0.0, 0.0, 3.4, 82.9, 17.1, 29.2 +8.5,5,"",2023-24,8.5,Canton - Canton High,00500505, 1.5, 1.5, 0.0, 91.5, 0.0, 0.0, 5.5, 65.6, 34.4, 65.9 +3.3,3.3,"",2023-24,3.3,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 96.7, 0.0, 0.0, 3.3, 95.9, 4.1, 30.1 +0.0,1,"",2023-24,0.0,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 31.3 +6.4,5,"",2023-24,6.4,Canton - Lt Peter M Hansen,00500012, 0.0, 3.2, 3.2, 93.5, 0.0, 0.0, 0.0, 90.3, 9.7, 30.9 +0.0,1,"",2023-24,0.0,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.0 +6.4,5,"",2023-24,6.4,Canton - Wm H Galvin Middle,00500305, 0.0, 0.0, 3.2, 93.6, 0.0, 0.0, 3.2, 76.1, 23.9, 62.4 +0.0,1,"",2023-24,0.0,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.7, 33.3, 22.5 +1.3,1.3,"",2023-24,1.3,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 50.3, 49.7, 46.3 +3.6,3.6,"",2023-24,3.6,Carlisle - Carlisle School,00510025, 2.0, 1.6, 0.0, 96.5, 0.0, 0.0, 0.0, 82.4, 17.6, 51.2 +0.0,1,"",2023-24,0.0,Carver - Carver Elementary School,00520015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 47.0 +6.0,5,"",2023-24,6.0,Carver - Carver Middle/High School,00520405, 1.5, 0.0, 1.5, 94.2, 0.0, 1.5, 1.5, 63.5, 36.5, 68.6 +0.0,1,"",2023-24,0.0,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.3 +0.0,1,"",2023-24,0.0,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 25.0 +0.0,1,"",2023-24,0.0,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.1 +0.0,1,"",2023-24,0.0,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.0, 46.0, 24.4 +0.0,1,"",2023-24,0.0,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.3, 45.7, 37.9 +0.0,1,"",2023-24,0.0,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 28.0 +0.0,1,"",2023-24,0.0,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 25.0 +0.0,1,"",2023-24,0.0,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.0, 12.0, 25.0 +4.0,4.0,"",2023-24,4.0,Chelmsford - Chelmsford High,00560505, 0.0, 1.0, 3.0, 96.0, 0.0, 0.0, 0.0, 60.7, 39.3, 100.0 +1.6,1.6,"",2023-24,1.6,Chelmsford - Col Moses Parker School,00560305, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 85.9, 14.1, 62.4 +0.0,1,"",2023-24,0.0,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.0 +0.0,1,"",2023-24,0.0,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.8, 24.2, 63.1 +0.0,1,"",2023-24,0.0,Chelmsford - South Row,00560015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.0 +32.2,5,"",2023-24,32.2,Chelsea - Chelsea High,00570505, 4.8, 7.6, 18.8, 67.9, 0.0, 1.0, 0.0, 61.1, 38.9, 105.1 +28.6,5,"",2023-24,28.6,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 28.6, 71.4, 0.0, 0.0, 0.0, 57.1, 42.9, 7.0 +0.0,1,"",2023-24,0.0,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +10.5,5,"",2023-24,10.5,Chelsea - Clark Avenue School,00570050, 0.0, 7.9, 2.6, 89.5, 0.0, 0.0, 0.0, 57.2, 42.8, 38.0 +27.5,5,"",2023-24,27.5,Chelsea - Edgar F. Hooks Elementary,00570030, 13.8, 3.4, 10.3, 72.4, 0.0, 0.0, 0.0, 89.7, 10.3, 14.5 +20.0,5,"",2023-24,20.0,Chelsea - Eugene Wright Science and Technology Academy,00570045, 3.3, 0.0, 16.7, 80.0, 0.0, 0.0, 0.0, 73.3, 26.7, 30.0 +10.0,5,"",2023-24,10.0,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 6.7, 3.3, 90.0, 0.0, 0.0, 0.0, 96.7, 3.3, 15.0 +72.1,5,"",2023-24,72.1,Chelsea - George F. Kelly Elementary,00570035, 0.0, 13.2, 58.9, 27.8, 0.0, 0.0, 0.0, 72.2, 27.8, 7.6 +50.5,5,"",2023-24,50.5,Chelsea - Joseph A. Browne School,00570055, 15.0, 3.7, 31.8, 49.5, 0.0, 0.0, 0.0, 58.9, 41.1, 26.8 +20.0,5,"",2023-24,20.0,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 20.0, 80.0, 0.0, 0.0, 0.0, 97.5, 2.5, 40.0 +20.599999999999998,5,"",2023-24,20.599999999999998,Chelsea - William A Berkowitz Elementary,00570025, 3.4, 0.0, 17.2, 79.3, 0.0, 0.0, 0.0, 72.4, 27.6, 14.5 +0.0,1,"",2023-24,0.0,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.4, 29.6, 12.8 +4.3,4.3,"",2023-24,4.3,Chicopee - Barry,00610003, 0.0, 0.0, 0.0, 95.7, 0.0, 0.0, 4.3, 87.2, 12.8, 23.4 +0.0,1,"",2023-24,0.0,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 14.9 +1.4,1.4,"",2023-24,1.4,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 0.0, 98.6, 0.0, 1.4, 0.0, 67.9, 32.1, 70.0 +0.0,1,"",2023-24,0.0,Chicopee - Bowe,00610015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 24.1 +10.8,5,"",2023-24,10.8,Chicopee - Bowie,00610020, 6.0, 4.0, 0.8, 89.2, 0.0, 0.0, 0.0, 90.0, 10.0, 24.9 +13.3,5,"",2023-24,13.3,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 13.3, 86.7, 0.0, 0.0, 0.0, 54.4, 45.6, 15.0 +8.4,5,"",2023-24,8.4,Chicopee - Chicopee Comprehensive High School,00610510, 1.1, 1.1, 6.2, 91.6, 0.0, 0.0, 0.0, 52.6, 47.4, 91.7 +8.9,5,"",2023-24,8.9,Chicopee - Chicopee High,00610505, 0.8, 0.0, 7.2, 91.1, 0.0, 0.0, 0.9, 60.7, 39.3, 66.5 +12.399999999999999,5,"",2023-24,12.399999999999999,Chicopee - Dupont Middle,00610310, 1.5, 0.8, 8.6, 87.5, 0.0, 0.0, 1.5, 62.8, 37.2, 64.9 +6.8,5,"",2023-24,6.8,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 6.8, 93.2, 0.0, 0.0, 0.0, 78.3, 21.7, 28.9 +5.2,5,"",2023-24,5.2,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 5.2, 94.8, 0.0, 0.0, 0.0, 92.3, 7.7, 23.1 +1.1,1.1,"",2023-24,1.1,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 94.4, 5.6, 17.8 +0.0,1,"",2023-24,0.0,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 23.7 +1.0,1.0,"",2023-24,1.0,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 95.0, 5.0, 19.9 +0.0,1,"",2023-24,0.0,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.9, 23.1, 13.0 +30.1,5,"",2023-24,30.1,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 8.0, 8.0, 10.1, 69.8, 4.0, 0.0, 0.0, 40.8, 55.1, 24.9 +36.6,5,"",2023-24,36.6,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 21.2, 0.0, 9.8, 63.4, 0.0, 0.0, 5.6, 44.8, 51.0, 14.3 +0.0,1,"",2023-24,0.0,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.5, 22.5, 15.5 +2.5,2.5,"",2023-24,2.5,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 95.0, 5.0, 40.1 +4.8,4.8,"",2023-24,4.8,Clinton - Clinton Middle School,00640305, 0.0, 2.4, 2.4, 95.3, 0.0, 0.0, 0.0, 76.3, 23.7, 42.3 +10.7,5,"",2023-24,10.7,Clinton - Clinton Senior High,00640505, 2.2, 0.0, 8.5, 89.3, 0.0, 0.0, 0.0, 58.6, 41.4, 45.7 +51.599999999999994,5,"",2023-24,51.599999999999994,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 34.0, 4.8, 6.4, 48.3, 0.0, 0.0, 6.4, 61.5, 38.5, 31.2 +2.6,2.6,"",2023-24,2.6,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 47.9, 52.1, 37.8 +0.0,1,"",2023-24,0.0,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.0, 17.0, 28.3 +0.0,1,"",2023-24,0.0,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 16.9 +0.0,1,"",2023-24,0.0,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 22.0 +25.6,5,"",2023-24,25.6,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 3.4, 5.7, 16.5, 74.3, 0.0, 0.0, 0.0, 57.4, 42.6, 43.9 +35.300000000000004,5,"",2023-24,35.300000000000004,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 16.4, 2.1, 12.6, 64.7, 0.0, 0.0, 4.2, 66.4, 33.6, 23.8 +30.0,5,"",2023-24,30.0,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, 0.0, 27.0, 70.0, 0.0, 0.0, 3.0, 56.2, 43.8, 33.6 +11.3,5,"",2023-24,11.3,Concord - Alcott,00670005, 3.5, 3.5, 4.3, 88.7, 0.0, 0.0, 0.0, 85.8, 14.2, 28.2 +14.9,5,"",2023-24,14.9,Concord - Concord Middle,00670305, 1.9, 7.4, 5.6, 85.1, 0.0, 0.0, 0.0, 76.4, 23.6, 53.7 +4.1,4.1,"",2023-24,4.1,Concord - Thoreau,00670020, 0.0, 3.4, 0.7, 95.9, 0.0, 0.0, 0.0, 100.0, 0.0, 29.2 +10.5,5,"",2023-24,10.5,Concord - Willard,00670030, 3.3, 3.3, 3.9, 89.6, 0.0, 0.0, 0.0, 87.0, 13.0, 30.7 +10.9,5,"",2023-24,10.9,Concord-Carlisle - Concord Carlisle High,06400505, 3.0, 3.7, 4.2, 89.1, 0.0, 0.0, 0.0, 61.1, 38.9, 83.8 +32.5,5,"",2023-24,32.5,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.0, 0.0, 4.5, 67.5, 0.0, 0.0, 0.0, 69.3, 27.0, 30.2 +0.0,1,"",2023-24,0.0,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.2, 19.8, 11.6 +2.7,2.7,"",2023-24,2.7,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 97.2, 0.0, 0.0, 1.7, 47.1, 52.9, 58.1 +0.0,1,"",2023-24,0.0,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 18.4 +0.0,1,"",2023-24,0.0,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.0, 28.0, 21.4 +3.4,3.4,"",2023-24,3.4,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 75.6, 24.4, 58.3 +4.7,4.7,"",2023-24,4.7,Danvers - Ivan G Smith,00710032, 0.0, 4.7, 0.0, 95.3, 0.0, 0.0, 0.0, 90.7, 9.3, 21.4 +0.0,1,"",2023-24,0.0,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.1, 13.9, 14.4 +6.9,5,"",2023-24,6.9,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 6.9, 93.1, 0.0, 0.0, 0.0, 86.3, 13.7, 14.6 +0.0,1,"",2023-24,0.0,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 11.7 +0.0,1,"",2023-24,0.0,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.9, 43.1, 71.8 +0.0,1,"",2023-24,0.0,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.4, 40.6, 67.4 +0.0,1,"",2023-24,0.0,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 22.2 +0.0,1,"",2023-24,0.0,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 37.6 +0.0,1,"",2023-24,0.0,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.5 +0.0,1,"",2023-24,0.0,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 17.6 +1.9,1.9,"",2023-24,1.9,Dedham - Dedham High,00730505, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 68.3, 31.7, 52.6 +1.9,1.9,"",2023-24,1.9,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 72.1, 27.9, 53.6 +0.0,1,"",2023-24,0.0,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 19.7 +0.0,1,"",2023-24,0.0,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 20.5 +0.0,1,"",2023-24,0.0,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 16.7 +0.0,1,"",2023-24,0.0,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 11.8 +0.0,1,"",2023-24,0.0,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.4, 20.6, 24.2 +2.0,2.0,"",2023-24,2.0,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 83.7, 16.3, 24.6 +6.3,5,"",2023-24,6.3,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 3.8, 0.0, 2.5, 93.7, 0.0, 0.0, 0.0, 68.7, 31.3, 31.8 +4.9,4.9,"",2023-24,4.9,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.4, 1.0, 2.5, 95.1, 0.0, 0.0, 0.0, 54.6, 45.4, 81.5 +4.2,4.2,"",2023-24,4.2,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 93.2, 6.8, 23.6 +4.0,4.0,"",2023-24,4.0,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 4.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0, 87.9, 12.1, 14.9 +0.0,1,"",2023-24,0.0,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.1, 16.9, 15.9 +0.0,1,"",2023-24,0.0,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 29.5 +4.9,4.9,"",2023-24,4.9,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 95.1, 0.0, 0.0, 4.9, 57.1, 42.9, 20.5 +1.7,1.7,"",2023-24,1.7,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 64.7, 35.3, 57.7 +5.8,5,"",2023-24,5.8,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 68.1, 31.9, 34.5 +0.0,1,"",2023-24,0.0,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 36.0 +0.0,1,"",2023-24,0.0,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.2, 17.9 +0.0,1,"",2023-24,0.0,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.1, 43.9, 34.1 +0.0,1,"",2023-24,0.0,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 21.2 +0.0,1,"",2023-24,0.0,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 11.6 +2.7,2.7,"",2023-24,2.7,Dover - Chickering,00780005, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 87.2, 12.8, 37.5 +8.4,5,"",2023-24,8.4,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 3.5, 4.9, 91.6, 0.0, 0.0, 0.0, 61.1, 38.9, 51.2 +9.0,5,"",2023-24,9.0,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 2.6, 6.4, 91.0, 0.0, 0.0, 0.0, 79.6, 20.4, 39.1 +0.0,1,"",2023-24,0.0,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 27.4 +2.3,2.3,"",2023-24,2.3,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 66.1, 33.9, 53.1 +0.0,1,"",2023-24,0.0,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 29.4 +0.0,1,"",2023-24,0.0,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.2, 13.8, 14.5 +0.0,1,"",2023-24,0.0,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 33.6 +5.699999999999999,5,"",2023-24,5.699999999999999,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 3.8, 1.9, 94.3, 0.0, 0.0, 0.0, 73.3, 26.7, 52.4 +60.0,5,"",2023-24,60.0,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 46.7, 0.0, 13.3, 40.0, 0.0, 0.0, 0.0, 100.0, 0.0, 15.0 +0.0,1,"",2023-24,0.0,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.8 +1.9,1.9,"",2023-24,1.9,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 70.4, 29.6, 41.6 +9.1,5,"",2023-24,9.1,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 3.4, 90.9, 5.7, 0.0, 0.0, 89.8, 10.2, 17.6 +0.0,1,"",2023-24,0.0,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.5, 21.5, 37.6 +4.1,4.1,"",2023-24,4.1,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 100.0, 0.0, 24.1 +11.2,5,"",2023-24,11.2,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 3.2, 88.8, 8.0, 0.0, 0.0, 93.6, 6.4, 12.5 +4.8,4.8,"",2023-24,4.8,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 51.8, 48.2, 63.1 +0.0,1,"",2023-24,0.0,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.2, 14.8, 26.2 +2.7,2.7,"",2023-24,2.7,Duxbury - Chandler Elementary,00820006, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 91.9, 8.1, 36.9 +3.4,3.4,"",2023-24,3.4,Duxbury - Duxbury High,00820505, 0.0, 1.4, 1.4, 96.6, 0.0, 0.0, 0.6, 59.4, 40.6, 71.0 +0.0,1,"",2023-24,0.0,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.8, 25.2, 39.2 +0.0,1,"",2023-24,0.0,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 34.0 +1.5,1.5,"",2023-24,1.5,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 60.5, 39.5, 68.1 +0.0,1,"",2023-24,0.0,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.0, 14.0, 43.0 +5.5,5,"",2023-24,5.5,East Longmeadow - Birchland Park,00870305, 2.2, 2.2, 1.1, 94.5, 0.0, 0.0, 0.0, 67.1, 32.9, 45.2 +6.8999999999999995,5,"",2023-24,6.8999999999999995,East Longmeadow - East Longmeadow High,00870505, 0.0, 1.8, 1.5, 93.3, 0.0, 1.8, 1.8, 55.1, 44.9, 56.9 +0.0,1,"",2023-24,0.0,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.1, 10.9, 18.4 +0.0,1,"",2023-24,0.0,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 27.8 +0.0,1,"",2023-24,0.0,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 14.8 +0.0,1,"",2023-24,0.0,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.7, 1.3, 15.8 +2.5,2.5,"",2023-24,2.5,Easthampton - Easthampton High,00860505, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 44.4, 55.6, 33.9 +3.2,3.2,"",2023-24,3.2,Easthampton - Mountain View School,00860415, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 74.5, 25.5, 61.9 +0.0,1,"",2023-24,0.0,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 47.6 +3.4,3.4,"",2023-24,3.4,Easton - Easton Middle School,00880405, 0.0, 1.7, 1.7, 96.7, 0.0, 0.0, 0.0, 72.8, 27.2, 59.7 +7.9,5,"",2023-24,7.9,Easton - Oliver Ames High,00880505, 0.0, 2.4, 5.5, 92.1, 0.0, 0.0, 0.0, 53.3, 46.7, 83.9 +5.2,5,"",2023-24,5.2,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 2.6, 94.9, 0.0, 0.0, 2.6, 87.2, 12.8, 39.0 +5.0,5.0,"",2023-24,5.0,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 5.0, 95.0, 0.0, 0.0, 0.0, 78.6, 21.4, 39.9 +51.099999999999994,5,"",2023-24,51.099999999999994,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 39.8, 3.0, 8.3, 48.9, 0.0, 0.0, 0.0, 56.9, 43.1, 33.3 +0.0,1,"",2023-24,0.0,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.3, 16.7, 12.0 +3.3,3.3,"",2023-24,3.3,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.5, 1.6, 1.2, 96.8, 0.0, 0.0, 0.0, 53.9, 46.1, 85.7 +0.0,1,"",2023-24,0.0,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.0 +8.6,5,"",2023-24,8.6,Everett - Devens School,00930030, 8.6, 0.0, 0.0, 91.4, 0.0, 0.0, 0.0, 48.3, 51.7, 11.6 +12.3,5,"",2023-24,12.3,Everett - Everett High,00930505, 4.2, 3.0, 5.1, 87.6, 0.0, 0.0, 0.0, 54.3, 45.7, 119.4 +6.8999999999999995,5,"",2023-24,6.8999999999999995,Everett - George Keverian School,00930028, 5.6, 0.0, 1.3, 93.1, 0.0, 0.0, 0.0, 78.1, 21.9, 32.0 +6.8999999999999995,5,"",2023-24,6.8999999999999995,Everett - Lafayette School,00930038, 0.4, 1.4, 5.1, 93.0, 0.0, 0.0, 0.0, 78.6, 21.4, 46.8 +5.6,5,"",2023-24,5.6,Everett - Madeline English School,00930018, 2.8, 2.8, 0.0, 94.4, 0.0, 0.0, 0.0, 86.5, 13.5, 36.0 +3.7,3.7,"",2023-24,3.7,Everett - Parlin School,00930058, 3.7, 0.0, 0.0, 96.3, 0.0, 0.0, 0.0, 69.7, 30.3, 27.1 +6.6,5,"",2023-24,6.6,Everett - Sumner G. Whittier School,00930010, 6.6, 0.0, 0.0, 93.4, 0.0, 0.0, 0.0, 83.5, 16.5, 19.7 +14.2,5,"",2023-24,14.2,Everett - Webster Extension,00930001, 0.0, 0.0, 7.1, 85.7, 0.0, 0.0, 7.1, 100.0, 0.0, 14.0 +1.1,1.1,"",2023-24,1.1,Everett - Webster School,00930015, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 80.9, 19.1, 17.8 +42.00000000000001,5,"",2023-24,42.00000000000001,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 11.1, 4.7, 23.6, 58.0, 0.5, 0.0, 2.1, 66.3, 32.7, 105.8 +0.0,1,"",2023-24,0.0,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 28.5 +0.0,1,"",2023-24,0.0,Fairhaven - Fairhaven High,00940505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.3, 48.7, 46.8 +2.6,2.6,"",2023-24,2.6,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 68.1, 31.9, 30.3 +0.0,1,"",2023-24,0.0,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 29.5 +8.0,5,"",2023-24,8.0,Fall River - B M C Durfee High,00950505, 2.7, 0.4, 3.0, 92.0, 0.0, 0.0, 1.9, 58.8, 41.2, 182.2 +1.9,1.9,"",2023-24,1.9,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 88.1, 11.9, 33.6 +14.3,5,"",2023-24,14.3,Fall River - Early Learning Center,00950001, 0.0, 0.0, 14.3, 85.7, 0.0, 0.0, 0.0, 100.0, 0.0, 7.0 +0.0,1,"",2023-24,0.0,Fall River - FRPS Early Learning Center,00950002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.0 +8.2,5,"",2023-24,8.2,Fall River - Henry Lord Community School,00950017, 2.2, 0.0, 6.0, 91.8, 0.0, 0.0, 0.0, 84.5, 15.5, 45.3 +0.0,1,"",2023-24,0.0,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.6 +0.6,1,"",2023-24,0.6,Fall River - John J Doran,00950045, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 81.8, 18.2, 30.8 +3.3,3.3,"",2023-24,3.3,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 91.8, 8.2, 26.9 +14.100000000000001,5,"",2023-24,14.100000000000001,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 3.4, 6.9, 85.9, 0.0, 0.0, 3.8, 86.9, 13.1, 26.2 +11.4,5,"",2023-24,11.4,Fall River - Matthew J Kuss Middle,00950320, 3.7, 0.0, 3.7, 88.7, 0.0, 1.9, 2.1, 61.2, 38.8, 47.9 +9.2,5,"",2023-24,9.2,Fall River - Morton Middle,00950315, 5.0, 0.0, 2.0, 90.8, 0.0, 0.0, 2.2, 58.3, 39.4, 45.6 +0.0,1,"",2023-24,0.0,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 38.4 +5.1,5,"",2023-24,5.1,Fall River - Resiliency Preparatory Academy,00950525, 5.1, 0.0, 0.0, 94.9, 0.0, 0.0, 0.0, 52.2, 47.8, 15.6 +13.1,5,"",2023-24,13.1,Fall River - Samuel Watson,00950145, 13.1, 0.0, 0.0, 86.9, 0.0, 0.0, 0.0, 86.9, 13.1, 15.3 +7.6,5,"",2023-24,7.6,Fall River - Spencer Borden,00950130, 2.9, 1.4, 3.3, 92.4, 0.0, 0.0, 0.0, 100.0, 0.0, 30.6 +17.2,5,"",2023-24,17.2,Fall River - Stone PK-12 School,00950340, 8.6, 0.0, 8.6, 82.7, 0.0, 0.0, 0.0, 69.3, 30.7, 11.6 +22.0,5,"",2023-24,22.0,Fall River - Talbot Innovation School,00950305, 2.2, 4.2, 12.9, 77.9, 0.0, 0.0, 2.7, 73.8, 26.2, 44.8 +2.9,2.9,"",2023-24,2.9,Fall River - William S Greene,00950065, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 89.8, 10.2, 34.8 +8.8,5,"",2023-24,8.8,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 4.4, 91.2, 0.0, 0.0, 4.4, 86.8, 13.2, 22.8 +4.0,4.0,"",2023-24,4.0,Falmouth - Falmouth High,00960505, 0.0, 0.8, 3.2, 96.0, 0.0, 0.0, 0.0, 63.8, 36.2, 63.3 +4.2,4.2,"",2023-24,4.2,Falmouth - Lawrence,00960405, 0.0, 2.1, 2.1, 95.8, 0.0, 0.0, 0.0, 74.7, 25.3, 47.8 +6.0,5,"",2023-24,6.0,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 94.1, 3.0, 0.0, 3.0, 85.2, 14.8, 33.8 +3.2,3.2,"",2023-24,3.2,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 96.0, 4.0, 24.8 +14.399999999999999,5,"",2023-24,14.399999999999999,Falmouth - North Falmouth Elementary,00960030, 4.8, 4.8, 4.8, 85.6, 0.0, 0.0, 0.0, 90.4, 9.6, 20.8 +5.4,5,"",2023-24,5.4,Falmouth - Teaticket,00960015, 0.0, 5.4, 0.0, 94.6, 0.0, 0.0, 0.0, 100.0, 0.0, 18.6 +4.9,4.9,"",2023-24,4.9,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 70.5, 29.5, 12.2 +8.5,5,"",2023-24,8.5,Fitchburg - Arthur M Longsjo Middle School,00970315, 2.1, 0.0, 6.4, 91.5, 0.0, 0.0, 0.0, 63.8, 36.2, 47.0 +8.399999999999999,5,"",2023-24,8.399999999999999,Fitchburg - Crocker Elementary,00970016, 2.8, 2.8, 2.8, 91.7, 0.0, 0.0, 0.0, 88.9, 11.1, 36.0 +20.5,5,"",2023-24,20.5,Fitchburg - Fitchburg High,00970505, 5.4, 1.1, 14.0, 79.5, 0.0, 0.0, 0.0, 61.7, 38.3, 92.7 +18.2,5,"",2023-24,18.2,Fitchburg - Goodrich Academy,00970510, 9.1, 0.0, 9.1, 81.8, 0.0, 0.0, 0.0, 63.6, 36.4, 11.0 +4.1,4.1,"",2023-24,4.1,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 85.7, 14.3, 49.0 +8.100000000000001,5,"",2023-24,8.100000000000001,Fitchburg - Memorial Middle School,00970048, 2.7, 0.0, 5.4, 91.9, 0.0, 0.0, 0.0, 70.3, 29.7, 37.0 +9.6,5,"",2023-24,9.6,Fitchburg - Reingold Elementary,00970043, 2.4, 0.0, 4.8, 90.5, 0.0, 0.0, 2.4, 76.2, 23.8, 42.0 +13.900000000000002,5,"",2023-24,13.900000000000002,Fitchburg - South Street Early Learning Center,00970060, 8.3, 2.8, 2.8, 86.1, 0.0, 0.0, 0.0, 94.4, 5.6, 36.0 +0.0,1,"",2023-24,0.0,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.6, 19.4, 15.5 +12.1,5,"",2023-24,12.1,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 12.1, 87.9, 0.0, 0.0, 0.0, 70.0, 30.0, 16.5 +3.4,3.4,"",2023-24,3.4,Foxborough - Charles Taylor Elementary,00990050, 3.4, 0.0, 0.0, 96.6, 0.0, 0.0, 0.0, 100.0, 0.0, 17.7 +0.0,1,"",2023-24,0.0,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.2, 37.8, 55.2 +3.5,3.5,"",2023-24,3.5,Foxborough - John J Ahern,00990405, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 73.0, 27.0, 57.7 +5.2,5,"",2023-24,5.2,Foxborough - Mabelle M Burrell,00990015, 0.0, 5.2, 0.0, 94.8, 0.0, 0.0, 0.0, 94.8, 5.2, 19.2 +0.0,1,"",2023-24,0.0,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 21.3 +19.5,5,"",2023-24,19.5,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 6.7, 1.0, 10.8, 80.5, 0.0, 1.0, 0.0, 69.0, 31.0, 99.2 +66.3,5,"",2023-24,66.3,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 66.3, 33.7, 0.0, 0.0, 0.0, 95.6, 4.4, 20.2 +30.1,5,"",2023-24,30.1,Framingham - Brophy,01000006, 0.0, 0.0, 30.1, 69.9, 0.0, 0.0, 0.0, 93.3, 6.7, 29.9 +24.9,5,"",2023-24,24.9,Framingham - Cameron Middle School,01000302, 0.0, 2.9, 22.0, 75.1, 0.0, 0.0, 0.0, 64.4, 35.6, 34.6 +23.5,5,"",2023-24,23.5,Framingham - Charlotte A Dunning,01000007, 3.9, 0.0, 19.6, 76.5, 0.0, 0.0, 0.0, 84.3, 15.7, 25.5 +17.6,5,"",2023-24,17.6,Framingham - Framingham High School,01000515, 1.8, 1.7, 13.5, 82.4, 0.6, 0.0, 0.0, 66.9, 33.1, 166.4 +27.0,5,"",2023-24,27.0,Framingham - Fuller Middle,01000305, 6.5, 0.0, 20.3, 72.9, 0.2, 0.0, 0.0, 75.8, 24.2, 42.3 +29.7,5,"",2023-24,29.7,Framingham - Harmony Grove Elementary,01000055, 0.0, 6.5, 23.2, 70.3, 0.0, 0.0, 0.0, 88.7, 11.3, 16.8 +4.0,4.0,"",2023-24,4.0,Framingham - Hemenway,01000015, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 90.0, 10.0, 34.9 +13.0,5,"",2023-24,13.0,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 13.0, 87.0, 0.0, 0.0, 0.0, 95.7, 4.3, 23.0 +0.0,1,"",2023-24,0.0,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 26.3 +7.7,5,"",2023-24,7.7,Framingham - Mary E Stapleton Elementary,01000045, 4.4, 0.0, 3.3, 92.3, 0.0, 0.0, 0.0, 100.0, 0.0, 18.2 +3.6999999999999997,3.7,"",2023-24,3.6999999999999997,Framingham - Miriam F McCarthy School,01000050, 0.3, 0.0, 3.4, 96.3, 0.0, 0.0, 0.0, 93.2, 6.8, 29.5 +5.5,5,"",2023-24,5.5,Framingham - Potter Road,01000039, 0.0, 0.0, 5.5, 94.5, 0.0, 0.0, 0.0, 100.0, 0.0, 18.0 +20.700000000000003,5,"",2023-24,20.700000000000003,Framingham - Walsh Middle,01000310, 1.8, 2.6, 16.3, 79.3, 0.0, 0.0, 0.0, 72.8, 27.2, 56.6 +15.1,5,"",2023-24,15.1,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 2.9, 0.0, 12.2, 84.9, 0.0, 0.0, 0.0, 63.4, 36.6, 34.5 +1.2,1.2,"",2023-24,1.2,Franklin - Annie Sullivan Middle School,01010040, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 70.6, 29.4, 28.6 +0.0,1,"",2023-24,0.0,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.8 +1.7999999999999998,1.8,"",2023-24,1.7999999999999998,Franklin - Franklin High,01010505, 0.6, 1.2, 0.0, 98.2, 0.0, 0.0, 0.0, 65.8, 34.2, 83.2 +0.0,1,"",2023-24,0.0,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 32.1 +1.1,1.1,"",2023-24,1.1,Franklin - Horace Mann,01010405, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 68.6, 31.4, 29.3 +0.0,1,"",2023-24,0.0,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 18.5 +0.0,1,"",2023-24,0.0,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 22.5 +4.2,4.2,"",2023-24,4.2,Franklin - Oak Street Elementary,01010030, 0.0, 4.2, 0.0, 95.8, 0.0, 0.0, 0.0, 88.6, 11.4, 23.8 +0.0,1,"",2023-24,0.0,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 17.3 +4.4,4.4,"",2023-24,4.4,Franklin - Remington Middle,01010310, 1.1, 0.0, 3.3, 95.7, 0.0, 0.0, 0.0, 68.5, 31.5, 30.7 +2.8,2.8,"",2023-24,2.8,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.9, 97.2, 0.0, 0.0, 1.9, 35.7, 64.3, 53.5 +3.5,3.5,"",2023-24,3.5,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 60.8, 39.2, 50.6 +0.0,1,"",2023-24,0.0,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 28.0 +0.0,1,"",2023-24,0.0,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 28.0 +4.7,4.7,"",2023-24,4.7,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.1, 0.0, 2.6, 95.3, 0.0, 0.0, 0.0, 60.5, 39.5, 38.0 +0.0,1,"",2023-24,0.0,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 25.0 +2.0,2.0,"",2023-24,2.0,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 98.0, 2.0, 0.0, 0.0, 57.0, 43.0, 50.2 +0.0,1,"",2023-24,0.0,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 55.7, 44.3, 4.5 +3.5999999999999996,3.6,"",2023-24,3.5999999999999996,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 2.3, 96.3, 0.0, 0.0, 1.3, 80.6, 19.4, 42.6 +8.4,5,"",2023-24,8.4,Gardner - Gardner High,01030505, 0.0, 4.2, 3.9, 91.6, 0.0, 0.0, 0.3, 53.5, 46.5, 43.8 +0.0,1,"",2023-24,0.0,Gardner - Gardner Middle School,01030405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.7, 35.3, 26.0 +0.0,1,"",2023-24,0.0,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 9.6 +6.0,5,"",2023-24,6.0,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 94.0, 0.0, 1.3, 4.7, 67.6, 32.4, 21.4 +9.8,5,"",2023-24,9.8,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 90.2, 0.0, 4.1, 5.7, 61.1, 38.9, 17.7 +5.6,5,"",2023-24,5.6,Gateway - Littleville Elementary School,06720143, 0.0, 5.6, 0.0, 94.4, 0.0, 0.0, 0.0, 89.7, 10.3, 18.0 +4.9,4.9,"",2023-24,4.9,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 3.8, 95.0, 0.0, 1.1, 0.0, 49.0, 51.0, 26.2 +2.1,2.1,"",2023-24,2.1,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 97.9, 0.0, 2.1, 0.0, 74.8, 25.2, 14.5 +0.0,1,"",2023-24,0.0,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.2, 23.8, 18.6 +0.0,1,"",2023-24,0.0,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.2 +0.0,1,"",2023-24,0.0,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.9 +6.300000000000001,5,"",2023-24,6.300000000000001,Gill-Montague - Great Falls Middle,06740310, 4.2, 0.0, 2.1, 93.7, 0.0, 0.0, 0.0, 77.1, 22.9, 24.0 +0.0,1,"",2023-24,0.0,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.2 +7.5,5,"",2023-24,7.5,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 7.5, 92.5, 0.0, 0.0, 0.0, 92.5, 7.5, 13.3 +6.7,5,"",2023-24,6.7,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 2.2, 93.3, 0.0, 0.0, 4.5, 76.1, 23.9, 22.4 +19.2,5,"",2023-24,19.2,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 4.8, 2.4, 12.0, 80.8, 0.0, 0.0, 0.0, 61.2, 38.8, 41.8 +0.0,1,"",2023-24,0.0,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.7, 14.3, 21.0 +7.6,5,"",2023-24,7.6,Gloucester - East Veterans Elementary School,01070030, 0.0, 3.8, 3.8, 92.3, 0.0, 0.0, 0.0, 100.0, 0.0, 26.0 +0.5,1,"",2023-24,0.5,Gloucester - Gloucester High,01070505, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 54.2, 45.8, 69.0 +0.0,1,"",2023-24,0.0,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.0 +0.0,1,"",2023-24,0.0,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 13.6 +0.0,1,"",2023-24,0.0,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.8, 34.2, 43.8 +0.0,1,"",2023-24,0.0,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 23.0 +0.0,1,"",2023-24,0.0,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.4,5,"",2023-24,5.4,Grafton - Grafton High School,01100505, 0.0, 2.6, 0.0, 94.6, 0.0, 0.0, 2.8, 65.3, 34.7, 61.8 +5.9,5,"",2023-24,5.9,Grafton - Grafton Middle,01100305, 0.0, 5.9, 0.0, 94.1, 0.0, 0.0, 0.0, 58.1, 41.9, 30.8 +2.8,2.8,"",2023-24,2.8,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 95.8, 4.2, 36.1 +0.0,1,"",2023-24,0.0,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 15.7 +0.0,1,"",2023-24,0.0,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 27.7 +0.0,1,"",2023-24,0.0,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.3 +0.0,1,"",2023-24,0.0,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.2, 16.8, 23.8 +4.7,4.7,"",2023-24,4.7,Granby - Granby Jr Sr High School,01110505, 0.0, 4.7, 0.0, 95.3, 0.0, 0.0, 0.0, 61.1, 38.9, 21.2 +0.0,1,"",2023-24,0.0,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 2.7 +2.9000000000000004,2.9,"",2023-24,2.9000000000000004,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 2.2, 0.0, 0.7, 97.0, 0.0, 0.0, 0.0, 37.8, 62.2, 134.6 +16.8,5,"",2023-24,16.8,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.6, 0.8, 12.1, 83.3, 0.8, 0.0, 1.5, 52.3, 47.7, 123.6 +7.1,5,"",2023-24,7.1,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.3, 2.4, 2.9, 92.9, 0.5, 0.0, 0.0, 54.0, 46.0, 193.3 +8.299999999999999,5,"",2023-24,8.299999999999999,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 3.4, 0.6, 3.1, 91.7, 1.2, 0.0, 0.0, 47.1, 52.9, 162.5 +0.0,1,"",2023-24,0.0,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 16.2 +0.0,1,"",2023-24,0.0,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 12.8 +8.100000000000001,5,"",2023-24,8.100000000000001,Greenfield - Greenfield High,01140505, 0.0, 2.7, 2.7, 91.9, 0.0, 2.7, 0.0, 60.6, 39.4, 37.0 +12.0,5,"",2023-24,12.0,Greenfield - Greenfield Middle,01140305, 0.0, 4.0, 8.0, 87.9, 0.0, 0.0, 0.0, 87.7, 12.1, 24.9 +7.1,5,"",2023-24,7.1,Greenfield - Newton School,01140035, 0.0, 0.0, 7.1, 92.9, 0.0, 0.0, 0.0, 95.2, 4.8, 14.0 +0.0,1,"",2023-24,0.0,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 5.5 +0.0,1,"",2023-24,0.0,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 5.0 +0.0,1,"",2023-24,0.0,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.1, 13.9, 28.8 +2.4,2.4,"",2023-24,2.4,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 97.6, 2.4, 0.0, 0.0, 58.4, 41.6, 42.2 +2.1,2.1,"",2023-24,2.1,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 73.2, 26.8, 47.2 +0.0,1,"",2023-24,0.0,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.5 +10.5,5,"",2023-24,10.5,Hadley - Hadley Elementary,01170015, 0.0, 10.5, 0.0, 89.5, 0.0, 0.0, 0.0, 79.0, 21.0, 19.0 +8.7,5,"",2023-24,8.7,Hadley - Hopkins Academy,01170505, 8.7, 0.0, 0.0, 91.3, 0.0, 0.0, 0.0, 69.6, 30.4, 23.0 +0.0,1,"",2023-24,0.0,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 34.6 +0.0,1,"",2023-24,0.0,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 14.9 +0.0,1,"",2023-24,0.0,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 15.6 +9.0,5,"",2023-24,9.0,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 5.6, 0.0, 91.0, 0.0, 0.0, 3.4, 61.5, 38.5, 35.7 +12.7,5,"",2023-24,12.7,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 3.7, 4.5, 87.3, 0.0, 0.0, 4.5, 72.4, 27.6, 26.8 +0.0,1,"",2023-24,0.0,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 22.1 +12.0,5,"",2023-24,12.0,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 2.4, 7.2, 2.4, 88.0, 0.0, 0.0, 0.0, 69.9, 30.1, 41.5 +13.200000000000001,5,"",2023-24,13.200000000000001,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 5.9, 2.9, 4.4, 86.8, 0.0, 0.0, 0.0, 57.5, 42.5, 34.1 +0.0,1,"",2023-24,0.0,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 15.5 +5.3,5,"",2023-24,5.3,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 92.1, 7.9, 19.0 +1.3,1.3,"",2023-24,1.3,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 62.9, 37.1, 59.5 +0.0,1,"",2023-24,0.0,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 17.0 +0.0,1,"",2023-24,0.0,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 15.0 +0.0,1,"",2023-24,0.0,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.1, 29.9, 38.5 +0.0,1,"",2023-24,0.0,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.6, 39.4, 61.8 +0.0,1,"",2023-24,0.0,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 7.8 +0.0,1,"",2023-24,0.0,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 26.1 +3.2,3.2,"",2023-24,3.2,Hanover - Center Elementary,01220005, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 93.5, 6.5, 31.0 +4.0,4.0,"",2023-24,4.0,Hanover - Hanover High,01220505, 2.0, 0.0, 2.0, 96.1, 0.0, 0.0, 0.0, 56.6, 43.4, 50.8 +3.6,3.6,"",2023-24,3.6,Hanover - Hanover Middle,01220305, 0.0, 0.0, 1.8, 96.4, 1.8, 0.0, 0.0, 75.1, 24.9, 55.2 +3.3,3.3,"",2023-24,3.3,Harvard - Hildreth Elementary School,01250005, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 90.2, 9.8, 30.5 +9.600000000000001,5,"",2023-24,9.600000000000001,Harvard - The Bromfield High School,01250505, 0.0, 3.2, 6.4, 90.4, 0.0, 0.0, 0.0, 67.2, 32.8, 31.3 +0.0,1,"",2023-24,0.0,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.5, 35.5, 22.6 +0.0,1,"",2023-24,0.0,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.0, 20.0, 20.0 +5.1,5,"",2023-24,5.1,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 94.9, 0.0, 0.0, 5.1, 68.7, 31.3, 19.5 +0.0,1,"",2023-24,0.0,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.9, 20.1, 6.4 +13.700000000000001,5,"",2023-24,13.700000000000001,Haverhill - Bradford Elementary,01280008, 0.0, 3.4, 10.3, 86.2, 0.0, 0.0, 0.0, 89.7, 10.3, 29.0 +3.4,3.4,"",2023-24,3.4,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 1.7, 1.7, 96.6, 0.0, 0.0, 0.0, 78.3, 21.7, 59.6 +4.2,4.2,"",2023-24,4.2,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 81.0, 19.0, 47.4 +11.700000000000001,5,"",2023-24,11.700000000000001,Haverhill - Dr Paul Nettle,01280050, 0.0, 2.9, 5.9, 88.2, 0.0, 2.9, 0.0, 55.9, 44.1, 34.0 +18.8,5,"",2023-24,18.8,Haverhill - Gateway Academy,01280515, 9.4, 9.4, 0.0, 81.1, 0.0, 0.0, 0.0, 38.7, 61.3, 10.6 +0.0,1,"",2023-24,0.0,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 30.0 +0.0,1,"",2023-24,0.0,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 48.6, 51.4, 7.2 +11.0,5,"",2023-24,11.0,Haverhill - Haverhill High,01280505, 3.0, 2.1, 5.9, 89.0, 0.0, 0.0, 0.0, 57.9, 42.1, 135.2 +3.8,3.8,"",2023-24,3.8,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 96.2, 3.8, 0.0, 0.0, 69.2, 30.8, 26.0 +2.1,2.1,"",2023-24,2.1,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 97.2, 2.8, 14.2 +4.1,4.1,"",2023-24,4.1,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 95.9, 0.0, 0.0, 4.1, 98.5, 1.5, 7.2 +0.0,1,"",2023-24,0.0,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 30.0 +3.8,3.8,"",2023-24,3.8,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 84.6, 15.4, 26.0 +0.0,1,"",2023-24,0.0,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.0 +4.3,4.3,"",2023-24,4.3,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 95.7, 0.0, 0.0, 4.3, 89.4, 10.6, 9.4 +0.0,1,"",2023-24,0.0,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 9.0 +61.900000000000006,5,"",2023-24,61.900000000000006,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 44.2, 17.7, 0.0, 38.1, 0.0, 0.0, 0.0, 60.2, 39.8, 11.3 +8.9,5,"",2023-24,8.9,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 8.9, 91.1, 0.0, 0.0, 0.0, 90.3, 9.7, 18.7 +3.0,3.0,"",2023-24,3.0,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 67.5, 32.5, 20.3 +3.1,3.1,"",2023-24,3.1,Hingham - East Elementary School,01310005, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 89.0, 11.0, 31.8 +1.0,1.0,"",2023-24,1.0,Hingham - Hingham High,01310505, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 62.8, 37.2, 83.6 +6.800000000000001,5,"",2023-24,6.800000000000001,Hingham - Hingham Middle School,01310410, 0.0, 0.3, 4.9, 93.1, 0.0, 0.0, 1.6, 70.9, 29.1, 61.1 +0.0,1,"",2023-24,0.0,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 24.1 +3.9,3.9,"",2023-24,3.9,Hingham - South Elementary,01310020, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 96.1, 3.9, 25.4 +0.0,1,"",2023-24,0.0,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.1, 12.9, 23.3 +1.0,1.0,"",2023-24,1.0,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 64.2, 35.8, 38.6 +3.7,3.7,"",2023-24,3.7,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 96.3, 3.7, 27.0 +0.0,1,"",2023-24,0.0,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.9, 14.1, 14.1 +3.8,3.8,"",2023-24,3.8,Holliston - Holliston High,01360505, 0.0, 0.0, 1.9, 96.3, 0.0, 0.0, 1.9, 56.8, 43.2, 53.9 +12.8,5,"",2023-24,12.8,Holliston - Miller School,01360007, 0.0, 0.0, 6.1, 87.2, 0.0, 1.3, 5.4, 85.6, 14.4, 37.3 +4.5,4.5,"",2023-24,4.5,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 3.2, 95.5, 0.0, 1.3, 0.0, 94.7, 5.3, 37.6 +8.1,5,"",2023-24,8.1,Holliston - Robert H. Adams Middle School,01360305, 1.2, 0.0, 4.5, 92.0, 0.0, 0.0, 2.4, 77.1, 22.9, 42.4 +67.2,5,"",2023-24,67.2,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 67.2, 32.8, 0.0, 0.0, 0.0, 88.2, 11.8, 27.5 +17.700000000000003,5,"",2023-24,17.700000000000003,Holyoke - H.B. Lawrence School,01370070, 4.4, 0.0, 13.3, 82.2, 0.0, 0.0, 0.0, 86.7, 13.3, 22.5 +22.7,5,"",2023-24,22.7,Holyoke - Holyoke High,01370505, 4.3, 2.2, 16.2, 77.3, 0.0, 0.0, 0.0, 48.2, 51.8, 92.2 +20.0,5,"",2023-24,20.0,Holyoke - Holyoke STEM Academy,01370320, 13.3, 0.0, 6.7, 80.0, 0.0, 0.0, 0.0, 46.7, 53.3, 15.0 +14.3,5,"",2023-24,14.3,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 14.3, 85.7, 0.0, 0.0, 0.0, 73.8, 26.2, 14.0 +50.0,5,"",2023-24,50.0,Holyoke - Kelly Elementary,01370040, 0.0, 0.0, 50.0, 50.0, 0.0, 0.0, 0.0, 84.6, 11.5, 26.0 +48.5,5,"",2023-24,48.5,Holyoke - Lt Clayre Sullivan Elementary,01370055, 7.4, 3.4, 37.7, 51.5, 0.0, 0.0, 0.0, 78.9, 21.1, 29.1 +4.5,4.5,"",2023-24,4.5,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 86.4, 13.6, 22.0 +15.0,5,"",2023-24,15.0,Holyoke - Maurice A Donahue Elementary,01370060, 3.4, 3.4, 4.8, 84.8, 3.4, 0.0, 0.0, 85.8, 14.2, 29.0 +25.0,5,"",2023-24,25.0,Holyoke - Morgan Full Service Community School,01370025, 8.3, 0.0, 16.7, 75.0, 0.0, 0.0, 0.0, 95.8, 4.2, 24.0 +27.1,5,"",2023-24,27.1,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0.0, 0.0, 27.1, 72.9, 0.0, 0.0, 0.0, 68.6, 31.4, 35.0 +0.0,1,"",2023-24,0.0,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 26.0 +0.0,1,"",2023-24,0.0,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.9, 37.1, 26.9 +0.0,1,"",2023-24,0.0,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.6, 45.4, 27.6 +5.4,5,"",2023-24,5.4,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 5.4, 94.6, 0.0, 0.0, 0.0, 63.9, 36.1, 37.1 +0.0,1,"",2023-24,0.0,Hopedale - Memorial,01380010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 21.0 +0.0,1,"",2023-24,0.0,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 6.2 +7.9,5,"",2023-24,7.9,Hopkinton - Elmwood,01390010, 0.0, 5.3, 2.6, 92.1, 0.0, 0.0, 0.0, 92.1, 7.9, 38.0 +6.2,5,"",2023-24,6.2,Hopkinton - Hopkins Elementary School,01390015, 0.0, 3.1, 3.1, 93.8, 0.0, 0.0, 0.0, 88.5, 11.5, 32.2 +7.800000000000001,5,"",2023-24,7.800000000000001,Hopkinton - Hopkinton High,01390505, 1.1, 2.7, 4.0, 92.3, 0.0, 0.0, 0.0, 57.2, 42.8, 75.2 +4.4,4.4,"",2023-24,4.4,Hopkinton - Hopkinton Middle School,01390305, 0.0, 2.7, 1.7, 95.6, 0.0, 0.0, 0.0, 78.2, 21.8, 59.7 +0.0,1,"",2023-24,0.0,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 6.3 +5.6,5,"",2023-24,5.6,Hopkinton - Marathon Elementary School,01390005, 2.8, 2.8, 0.0, 94.5, 0.0, 0.0, 0.0, 94.5, 5.5, 36.2 +4.8,4.8,"",2023-24,4.8,Hudson - C A Farley,01410030, 0.0, 4.8, 0.0, 95.2, 0.0, 0.0, 0.0, 95.2, 4.8, 21.0 +7.8,5,"",2023-24,7.8,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 7.8, 92.2, 0.0, 0.0, 0.0, 79.3, 20.7, 38.6 +0.0,1,"",2023-24,0.0,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 19.8 +9.4,5,"",2023-24,9.4,Hudson - Hudson High,01410505, 3.7, 1.5, 4.2, 90.6, 0.0, 0.0, 0.0, 69.1, 30.9, 67.0 +0.0,1,"",2023-24,0.0,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 18.2 +0.0,1,"",2023-24,0.0,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.5, 49.5, 19.8 +0.0,1,"",2023-24,0.0,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.2, 19.8, 30.3 +0.0,1,"",2023-24,0.0,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 40.0, 60.0, 11.7 +18.1,5,"",2023-24,18.1,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 2.2, 2.1, 11.7, 81.9, 0.0, 0.0, 2.1, 64.9, 33.4, 57.5 +0.0,1,"",2023-24,0.0,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.8, 38.2, 45.0 +3.8,3.8,"",2023-24,3.8,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 72.4, 27.6, 30.4 +6.3,5,"",2023-24,6.3,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 93.8, 6.2, 31.7 +0.0,1,"",2023-24,0.0,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 30.4 +62.50000000000001,5,"",2023-24,62.50000000000001,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 48.2, 0.0, 10.7, 37.5, 0.0, 0.0, 3.6, 80.4, 19.6, 28.0 +53.5,5,"",2023-24,53.5,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 24.2, 7.6, 16.1, 46.6, 1.0, 0.0, 4.6, 64.3, 34.7, 98.6 +2.0,2.0,"",2023-24,2.0,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 81.4, 18.6, 49.4 +4.7,4.7,"",2023-24,4.7,King Philip - King Philip Regional High,06900505, 0.0, 1.2, 2.3, 95.4, 0.0, 0.0, 1.2, 60.9, 39.1, 86.9 +0.0,1,"",2023-24,0.0,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 34.4 +0.0,1,"",2023-24,0.0,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.0, 20.0, 35.0 +16.2,5,"",2023-24,16.2,Lawrence - Alexander B Bruce,01490015, 6.5, 3.2, 6.5, 83.9, 0.0, 0.0, 0.0, 58.1, 41.9, 31.0 +15.4,5,"",2023-24,15.4,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 15.4, 84.6, 0.0, 0.0, 0.0, 76.9, 23.1, 13.0 +18.700000000000003,5,"",2023-24,18.700000000000003,Lawrence - Arlington Middle School,01490017, 6.4, 0.0, 12.3, 81.4, 0.0, 0.0, 0.0, 56.0, 44.0, 28.3 +8.3,5,"",2023-24,8.3,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 8.3, 91.7, 0.0, 0.0, 0.0, 88.9, 11.1, 36.0 +20.8,5,"",2023-24,20.8,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 20.8, 79.2, 0.0, 0.0, 0.0, 77.8, 22.2, 37.5 +18.5,5,"",2023-24,18.5,Lawrence - Francis M Leahy,01490040, 7.4, 0.0, 11.1, 81.5, 0.0, 0.0, 0.0, 82.7, 17.3, 27.0 +17.2,5,"",2023-24,17.2,Lawrence - Frost Middle School,01490525, 8.2, 0.0, 9.0, 82.8, 0.0, 0.0, 0.0, 69.5, 30.5, 24.5 +7.699999999999999,5,"",2023-24,7.699999999999999,Lawrence - Gerard A. Guilmette,01490022, 2.6, 0.0, 5.1, 92.3, 0.0, 0.0, 0.0, 94.9, 5.1, 38.9 +20.3,5,"",2023-24,20.3,Lawrence - Guilmette Middle School,01490025, 2.4, 0.0, 15.4, 79.7, 2.5, 0.0, 0.0, 69.2, 30.8, 40.5 +29.700000000000003,5,"",2023-24,29.700000000000003,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 9.9, 70.4, 9.9, 0.0, 9.9, 46.8, 53.2, 10.2 +21.7,5,"",2023-24,21.7,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 21.7, 78.3, 0.0, 0.0, 0.0, 100.0, 0.0, 23.0 +11.6,5,"",2023-24,11.6,Lawrence - John Breen School,01490003, 0.0, 0.0, 11.6, 88.4, 0.0, 0.0, 0.0, 100.0, 0.0, 17.2 +13.9,5,"",2023-24,13.9,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 13.9, 86.1, 0.0, 0.0, 0.0, 94.4, 5.6, 18.0 +20.0,5,"",2023-24,20.0,Lawrence - Lawlor Early Childhood Center,01490002, 10.0, 0.0, 10.0, 80.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +32.3,5,"",2023-24,32.3,Lawrence - Lawrence Family Public Academy,01490011, 6.5, 0.0, 25.8, 67.7, 0.0, 0.0, 0.0, 100.0, 0.0, 15.5 +35.4,5,"",2023-24,35.4,Lawrence - Lawrence High School,01490515, 4.0, 0.5, 30.4, 64.6, 0.5, 0.0, 0.0, 55.7, 43.8, 201.8 +34.8,5,"",2023-24,34.8,Lawrence - Leonard Middle School,01490090, 6.4, 0.0, 28.4, 65.2, 0.0, 0.0, 0.0, 52.7, 47.3, 15.7 +27.1,5,"",2023-24,27.1,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 27.1, 72.9, 0.0, 0.0, 0.0, 84.5, 15.5, 25.9 +18.2,5,"",2023-24,18.2,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 18.2, 81.8, 0.0, 0.0, 0.0, 77.3, 22.7, 22.0 +16.1,5,"",2023-24,16.1,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 12.9, 83.9, 3.2, 0.0, 0.0, 67.7, 32.3, 31.0 +33.0,5,"",2023-24,33.0,Lawrence - RISE Academy,01490615, 0.0, 0.0, 33.0, 67.0, 0.0, 0.0, 0.0, 56.2, 43.8, 9.2 +9.4,5,"",2023-24,9.4,Lawrence - Robert Frost,01490018, 3.1, 0.0, 6.3, 90.6, 0.0, 0.0, 0.0, 90.6, 9.4, 32.0 +28.3,5,"",2023-24,28.3,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 28.3, 71.7, 0.0, 0.0, 0.0, 100.0, 0.0, 12.7 +49.1,5,"",2023-24,49.1,Lawrence - School for Exceptional Studies,01490537, 18.5, 4.0, 26.6, 51.0, 0.0, 0.0, 0.0, 57.8, 42.2, 25.3 +10.8,5,"",2023-24,10.8,Lawrence - South Lawrence East Elementary School,01490004, 2.7, 2.7, 2.7, 89.2, 0.0, 0.0, 2.7, 81.1, 18.9, 37.0 +25.9,5,"",2023-24,25.9,Lawrence - Spark Academy,01490085, 4.9, 0.0, 21.0, 74.1, 0.0, 0.0, 0.0, 78.2, 21.8, 38.1 +32.7,5,"",2023-24,32.7,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 0.0, 1.7, 27.6, 67.2, 0.0, 0.0, 3.4, 87.9, 12.1, 58.0 +19.4,5,"",2023-24,19.4,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 9.7, 3.2, 6.5, 80.6, 0.0, 0.0, 0.0, 80.6, 19.4, 31.0 +2.8,2.8,"",2023-24,2.8,Lee - Lee Elementary,01500025, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 88.9, 11.1, 36.1 +5.5,5,"",2023-24,5.5,Lee - Lee Middle/High School,01500505, 0.0, 5.5, 0.0, 94.5, 0.0, 0.0, 0.0, 80.7, 19.3, 36.2 +0.0,1,"",2023-24,0.0,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 28.8 +9.2,5,"",2023-24,9.2,Leicester - Leicester High,01510505, 0.0, 3.5, 2.8, 90.9, 0.0, 0.0, 2.9, 46.1, 53.9, 28.9 +0.0,1,"",2023-24,0.0,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 3.0 +0.0,1,"",2023-24,0.0,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.9, 23.1, 28.7 +2.2,2.2,"",2023-24,2.2,Lenox - Lenox Memorial High,01520505, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 59.5, 40.5, 44.7 +0.0,1,"",2023-24,0.0,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 21.7 +0.0,1,"",2023-24,0.0,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 6.2 +2.9,2.9,"",2023-24,2.9,Leominster - Center For Technical Education Innovation,01530605, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 16.8, 83.2, 33.7 +6.5,5,"",2023-24,6.5,Leominster - Fall Brook,01530007, 0.0, 0.0, 6.5, 93.5, 0.0, 0.0, 0.0, 100.0, 0.0, 31.0 +0.0,1,"",2023-24,0.0,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 28.9 +3.0,3.0,"",2023-24,3.0,Leominster - Johnny Appleseed,01530025, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 94.0, 6.0, 33.1 +0.0,1,"",2023-24,0.0,Leominster - Leominster Academy,01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +24.7,5,"",2023-24,24.7,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 24.7, 75.3, 0.0, 0.0, 0.0, 50.3, 49.7, 4.0 +5.2,5,"",2023-24,5.2,Leominster - Leominster High School,01530505, 2.1, 2.1, 1.0, 94.7, 0.0, 0.0, 0.0, 59.1, 40.9, 94.4 +0.0,1,"",2023-24,0.0,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 4.0 +0.0,1,"",2023-24,0.0,Leominster - Northwest,01530030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 30.0 +0.0,1,"",2023-24,0.0,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.6 +7.5,5,"",2023-24,7.5,Leominster - Samoset School,01530045, 2.5, 2.5, 2.5, 92.4, 0.0, 0.0, 0.0, 75.9, 24.1, 39.5 +3.7,3.7,"",2023-24,3.7,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 76.1, 23.9, 54.4 +0.0,1,"",2023-24,0.0,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.3, 28.7, 10.5 +24.8,5,"",2023-24,24.8,Lexington - Bowman,01550008, 8.0, 16.8, 0.0, 75.1, 0.0, 0.0, 0.0, 70.5, 29.5, 24.9 +8.8,5,"",2023-24,8.8,Lexington - Bridge,01550006, 0.0, 8.8, 0.0, 91.2, 0.0, 0.0, 0.0, 77.5, 22.5, 22.7 +8.5,5,"",2023-24,8.5,Lexington - Fiske,01550015, 0.0, 8.5, 0.0, 91.5, 0.0, 0.0, 0.0, 78.0, 22.0, 21.1 +13.299999999999999,5,"",2023-24,13.299999999999999,Lexington - Harrington,01550030, 4.4, 5.3, 0.0, 86.7, 0.0, 0.0, 3.6, 82.4, 17.6, 22.5 +12.3,5,"",2023-24,12.3,Lexington - Jonas Clarke Middle,01550305, 2.0, 6.3, 3.6, 87.6, 0.0, 0.0, 0.4, 70.7, 29.3, 68.5 +10.2,5,"",2023-24,10.2,Lexington - Joseph Estabrook,01550010, 0.0, 10.2, 0.0, 89.8, 0.0, 0.0, 0.0, 85.8, 14.2, 29.9 +0.0,1,"",2023-24,0.0,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.0 +13.899999999999999,5,"",2023-24,13.899999999999999,Lexington - Lexington High,01550505, 1.5, 6.1, 4.1, 86.1, 0.0, 0.0, 2.2, 68.0, 32.0, 181.6 +23.299999999999997,5,"",2023-24,23.299999999999997,Lexington - Maria Hastings,01550035, 8.7, 11.7, 2.9, 76.7, 0.0, 0.0, 0.0, 89.5, 10.5, 34.5 +13.700000000000001,5,"",2023-24,13.700000000000001,Lexington - Wm Diamond Middle,01550310, 1.3, 4.7, 6.4, 86.3, 0.0, 0.0, 1.3, 66.5, 33.5, 78.2 +45.8,5,"",2023-24,45.8,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 26.3, 8.1, 9.4, 54.2, 0.0, 0.0, 2.0, 41.7, 58.3, 24.8 +6.199999999999999,5,"",2023-24,6.199999999999999,Lincoln - Hanscom School,01570305, 2.3, 0.0, 3.9, 93.8, 0.0, 0.0, 0.0, 88.0, 12.0, 45.6 +9.799999999999999,5,"",2023-24,9.799999999999999,Lincoln - Lincoln School,01570025, 2.3, 6.8, 0.7, 90.2, 0.0, 0.0, 0.0, 81.8, 18.2, 44.2 +10.899999999999999,5,"",2023-24,10.899999999999999,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 4.2, 2.3, 2.7, 89.1, 0.0, 0.0, 1.7, 59.1, 40.9, 110.8 +6.0,5,"",2023-24,6.0,Littleton - Littleton High School,01580505, 0.0, 0.0, 3.0, 94.1, 0.0, 0.0, 3.0, 62.4, 37.6, 33.7 +4.2,4.2,"",2023-24,4.2,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 72.9, 27.1, 24.0 +0.0,1,"",2023-24,0.0,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 19.0 +8.2,5,"",2023-24,8.2,Littleton - Shaker Lane Elementary,01580005, 0.0, 4.1, 0.0, 91.8, 0.0, 0.0, 4.1, 95.9, 4.1, 24.3 +0.0,1,"",2023-24,0.0,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 25.5 +0.0,1,"",2023-24,0.0,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 30.4 +0.0,1,"",2023-24,0.0,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.6, 29.4, 20.4 +4.9,4.9,"",2023-24,4.9,Longmeadow - Longmeadow High,01590505, 1.5, 0.0, 3.4, 95.1, 0.0, 0.0, 0.0, 56.7, 43.3, 65.0 +4.9,4.9,"",2023-24,4.9,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 67.6, 32.4, 20.4 +0.0,1,"",2023-24,0.0,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 27.2 +10.0,5,"",2023-24,10.0,Lowell - Abraham Lincoln,01600020, 0.0, 6.7, 3.3, 90.0, 0.0, 0.0, 0.0, 86.6, 13.4, 29.9 +32.3,5,"",2023-24,32.3,Lowell - B.F. Butler Middle School,01600310, 6.1, 6.8, 19.4, 67.7, 0.0, 0.0, 0.0, 69.1, 30.9, 29.5 +7.699999999999999,5,"",2023-24,7.699999999999999,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.9, 3.4, 92.3, 3.4, 0.0, 0.0, 84.9, 15.1, 29.2 +0.0,1,"",2023-24,0.0,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.9 +7.6,5,"",2023-24,7.6,Lowell - Charles W Morey,01600030, 0.0, 3.8, 3.8, 92.3, 0.0, 0.0, 0.0, 96.2, 3.8, 26.0 +0.0,1,"",2023-24,0.0,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.7, 9.3, 27.0 +9.5,5,"",2023-24,9.5,Lowell - Dr An Wang School,01600345, 0.0, 5.0, 4.5, 90.5, 0.0, 0.0, 0.0, 87.5, 12.5, 40.0 +3.8,3.8,"",2023-24,3.8,Lowell - Dr Gertrude Bailey,01600002, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 96.2, 3.8, 26.0 +0.0,1,"",2023-24,0.0,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.8, 18.2, 11.0 +6.6,5,"",2023-24,6.6,Lowell - Greenhalge,01600015, 3.3, 0.0, 3.3, 93.4, 0.0, 0.0, 0.0, 93.4, 6.6, 30.5 +25.700000000000003,5,"",2023-24,25.700000000000003,Lowell - Henry J Robinson Middle,01600330, 0.0, 10.3, 15.4, 74.4, 0.0, 0.0, 0.0, 59.0, 41.0, 39.0 +8.100000000000001,5,"",2023-24,8.100000000000001,Lowell - James S Daley Middle School,01600315, 0.0, 5.4, 2.7, 91.9, 0.0, 0.0, 0.0, 78.5, 21.5, 37.2 +7.6,5,"",2023-24,7.6,Lowell - James Sullivan Middle School,01600340, 3.8, 0.0, 3.8, 92.5, 0.0, 0.0, 0.0, 76.8, 23.2, 42.4 +7.2,5,"",2023-24,7.2,Lowell - John J Shaughnessy,01600050, 3.6, 0.0, 0.0, 92.9, 3.6, 0.0, 0.0, 96.4, 3.6, 28.0 +7.7,5,"",2023-24,7.7,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 7.7, 92.3, 0.0, 0.0, 0.0, 96.2, 3.8, 26.0 +7.2,5,"",2023-24,7.2,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 7.2, 0.0, 92.8, 0.0, 0.0, 0.0, 61.4, 38.6, 41.5 +22.2,5,"",2023-24,22.2,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 22.2, 77.8, 0.0, 0.0, 0.0, 77.8, 22.2, 4.5 +15.4,5,"",2023-24,15.4,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 15.4, 0.0, 84.6, 0.0, 0.0, 0.0, 69.2, 30.8, 6.5 +17.900000000000002,5,"",2023-24,17.900000000000002,Lowell - Lowell High,01600505, 2.9, 7.6, 6.6, 82.0, 0.0, 0.0, 0.8, 59.5, 40.5, 222.6 +6.7,5,"",2023-24,6.7,Lowell - Moody Elementary,01600027, 0.0, 0.0, 6.7, 93.3, 0.0, 0.0, 0.0, 86.7, 13.3, 15.0 +8.0,5,"",2023-24,8.0,Lowell - Pawtucketville Memorial,01600036, 4.0, 4.0, 0.0, 92.0, 0.0, 0.0, 0.0, 92.0, 8.0, 25.0 +8.1,5,"",2023-24,8.1,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 8.1, 91.9, 0.0, 0.0, 0.0, 95.9, 4.1, 24.6 +6.3,5,"",2023-24,6.3,Lowell - Pyne Arts,01600018, 0.0, 6.3, 0.0, 93.7, 0.0, 0.0, 0.0, 72.3, 27.7, 31.8 +10.7,5,"",2023-24,10.7,Lowell - Rogers STEM Academy,01600005, 4.1, 2.5, 4.1, 89.3, 0.0, 0.0, 0.0, 76.9, 23.1, 48.4 +8.0,5,"",2023-24,8.0,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 4.0, 4.0, 92.0, 0.0, 0.0, 0.0, 92.0, 8.0, 25.0 +0.0,1,"",2023-24,0.0,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 39.9, 60.1, 9.2 +5.9,5,"",2023-24,5.9,Lowell - Washington,01600055, 0.0, 0.0, 5.9, 94.1, 0.0, 0.0, 0.0, 88.2, 11.8, 17.0 +23.599999999999998,5,"",2023-24,23.599999999999998,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 4.2, 3.9, 13.6, 76.4, 0.0, 0.0, 1.9, 70.2, 29.8, 51.6 +43.8,5,"",2023-24,43.8,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 14.6, 0.0, 29.2, 56.2, 0.0, 0.0, 0.0, 41.7, 58.3, 6.9 +0.0,1,"",2023-24,0.0,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 27.1 +2.2,2.2,"",2023-24,2.2,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 91.1, 8.9, 45.0 +0.0,1,"",2023-24,0.0,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.4, 35.6, 61.8 +2.4,2.4,"",2023-24,2.4,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 68.4, 31.6, 41.5 +0.0,1,"",2023-24,0.0,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 1.0 +0.0,1,"",2023-24,0.0,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.6, 48.4, 37.0 +0.0,1,"",2023-24,0.0,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.5, 14.5, 27.7 +0.0,1,"",2023-24,0.0,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 25.5 +0.0,1,"",2023-24,0.0,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.2, 22.8, 21.9 +6.1,5,"",2023-24,6.1,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 98.5, 1.5, 33.0 +7.4,5,"",2023-24,7.4,Lynn - Aborn,01630011, 0.0, 0.0, 7.4, 92.6, 0.0, 0.0, 0.0, 81.3, 18.7, 13.5 +15.3,5,"",2023-24,15.3,Lynn - Breed Middle School,01630405, 2.9, 3.7, 6.1, 84.8, 1.3, 0.0, 1.3, 52.6, 47.4, 79.6 +23.6,5,"",2023-24,23.6,Lynn - Brickett Elementary,01630020, 0.0, 10.1, 13.5, 76.4, 0.0, 0.0, 0.0, 85.8, 14.2, 22.1 +15.1,5,"",2023-24,15.1,Lynn - Capt William G Shoemaker,01630090, 0.0, 5.0, 10.1, 84.9, 0.0, 0.0, 0.0, 92.3, 7.7, 19.9 +13.7,5,"",2023-24,13.7,Lynn - Classical High,01630505, 2.8, 1.8, 7.0, 86.3, 0.4, 0.0, 1.7, 52.9, 47.1, 86.7 +8.4,5,"",2023-24,8.4,Lynn - Cobbet Elementary,01630035, 0.0, 5.3, 3.1, 91.6, 0.0, 0.0, 0.0, 90.4, 9.6, 46.0 +13.4,5,"",2023-24,13.4,Lynn - E J Harrington,01630045, 0.0, 0.0, 13.4, 86.6, 0.0, 0.0, 0.0, 92.9, 7.1, 44.7 +3.4,3.4,"",2023-24,3.4,Lynn - Edward A Sisson,01630095, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 89.1, 10.9, 29.2 +9.7,5,"",2023-24,9.7,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 9.7, 0.0, 0.0, 90.3, 0.0, 0.0, 0.0, 32.6, 67.4, 28.5 +18.0,5,"",2023-24,18.0,Lynn - Fredrick Douglass Collegiate Academy,01630575, 8.5, 0.0, 9.5, 82.0, 0.0, 0.0, 0.0, 63.2, 36.8, 10.5 +22.800000000000004,5,"",2023-24,22.800000000000004,Lynn - Hood,01630055, 2.1, 2.3, 15.3, 77.1, 0.0, 0.0, 3.1, 87.4, 12.6, 31.8 +7.9,5,"",2023-24,7.9,Lynn - Ingalls,01630060, 0.0, 0.0, 6.3, 92.1, 0.0, 0.0, 1.6, 92.4, 7.6, 47.6 +9.600000000000001,5,"",2023-24,9.600000000000001,Lynn - Julia F Callahan,01630030, 3.2, 0.0, 6.4, 90.4, 0.0, 0.0, 0.0, 88.5, 11.5, 31.2 +3.6,3.6,"",2023-24,3.6,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 90.1, 9.9, 15.7 +17.9,5,"",2023-24,17.9,Lynn - Lynn English High,01630510, 2.8, 1.8, 11.2, 82.1, 0.0, 0.0, 2.1, 47.9, 52.1, 111.5 +10.000000000000002,5,"",2023-24,10.000000000000002,Lynn - Lynn Vocational Technical Institute,01630605, 0.2, 1.6, 6.9, 90.0, 1.0, 0.0, 0.3, 50.4, 49.6, 103.0 +0.0,1,"",2023-24,0.0,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.0, 22.0, 11.9 +13.1,5,"",2023-24,13.1,Lynn - Pickering Middle,01630420, 5.0, 0.0, 8.1, 87.0, 0.0, 0.0, 0.0, 56.6, 43.4, 35.4 +3.6,3.6,"",2023-24,3.6,Lynn - Robert L Ford,01630050, 3.6, 0.0, 0.0, 96.4, 0.0, 0.0, 0.0, 93.8, 6.2, 27.7 +5.2,5,"",2023-24,5.2,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 5.2, 94.8, 0.0, 0.0, 0.0, 78.7, 21.3, 19.3 +24.599999999999998,5,"",2023-24,24.599999999999998,Lynn - Thurgood Marshall Mid,01630305, 7.1, 3.8, 12.4, 75.5, 0.0, 0.0, 1.3, 54.0, 46.0, 79.3 +1.9,1.9,"",2023-24,1.9,Lynn - Tracy,01630100, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 96.3, 3.7, 27.0 +13.3,5,"",2023-24,13.3,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 13.3, 0.0, 86.7, 0.0, 0.0, 0.0, 81.6, 18.4, 7.5 +6.6,5,"",2023-24,6.6,Lynn - Washington Elementary School,01630005, 3.3, 3.3, 0.0, 93.3, 0.0, 0.0, 0.0, 86.7, 13.3, 30.0 +0.0,1,"",2023-24,0.0,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 8.1 +15.8,5,"",2023-24,15.8,Lynn - Wm P Connery,01630040, 2.6, 0.0, 7.9, 84.2, 5.3, 0.0, 0.0, 92.1, 7.9, 38.0 +0.0,1,"",2023-24,0.0,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 21.2 +0.0,1,"",2023-24,0.0,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.3, 38.7, 41.6 +0.2,1,"",2023-24,0.2,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 99.8, 0.2, 0.0, 0.0, 64.4, 35.6, 42.7 +33.3,5,"",2023-24,33.3,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 66.7, 0.0, 0.0, 33.3, 100.0, 0.0, 3.0 +0.0,1,"",2023-24,0.0,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.6, 12.4, 19.6 +16.7,5,"",2023-24,16.7,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 83.3, 0.0, 0.0, 16.7, 83.3, 16.7, 6.0 +5.4,5,"",2023-24,5.4,Malden - Beebe,01650003, 0.0, 1.8, 3.6, 94.6, 0.0, 0.0, 0.0, 76.6, 23.4, 55.7 +7.2,5,"",2023-24,7.2,Malden - Ferryway,01650013, 1.8, 3.6, 1.8, 92.9, 0.0, 0.0, 0.0, 82.1, 17.9, 56.0 +0.0,1,"",2023-24,0.0,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.1, 15.9, 40.8 +18.299999999999997,5,"",2023-24,18.299999999999997,Malden - Linden,01650047, 10.2, 6.1, 2.0, 81.7, 0.0, 0.0, 0.0, 75.6, 24.4, 49.3 +0.0,1,"",2023-24,0.0,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.0 +12.899999999999999,5,"",2023-24,12.899999999999999,Malden - Malden High,01650505, 3.2, 4.0, 3.5, 87.2, 0.0, 0.0, 2.2, 61.5, 38.5, 113.8 +18.700000000000003,5,"",2023-24,18.700000000000003,Malden - Salemwood,01650057, 2.9, 7.0, 4.4, 81.3, 0.0, 0.0, 4.4, 82.3, 16.2, 68.5 +0.0,1,"",2023-24,0.0,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.5, 24.5, 15.5 +0.0,1,"",2023-24,0.0,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 55.2, 44.8, 38.8 +4.0,4.0,"",2023-24,4.0,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 4.0, 0.0, 96.0, 0.0, 0.0, 0.0, 67.5, 32.5, 25.2 +0.0,1,"",2023-24,0.0,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 21.7 +2.5,2.5,"",2023-24,2.5,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 97.5, 0.0, 0.0, 2.5, 89.7, 10.3, 39.9 +5.2,5,"",2023-24,5.2,Mansfield - Harold L Qualters Middle,01670035, 1.6, 1.8, 1.8, 94.8, 0.0, 0.0, 0.0, 73.4, 26.6, 55.7 +2.9,2.9,"",2023-24,2.9,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 95.4, 4.6, 34.6 +8.3,5,"",2023-24,8.3,Mansfield - Mansfield High,01670505, 1.3, 0.0, 7.0, 91.7, 0.0, 0.0, 0.0, 63.0, 37.0, 85.5 +0.0,1,"",2023-24,0.0,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.0 +15.799999999999999,5,"",2023-24,15.799999999999999,Map Academy Charter School (District) - Map Academy Charter School,35170505, 2.6, 0.0, 13.2, 84.2, 0.0, 0.0, 0.0, 70.3, 29.7, 18.9 +0.0,1,"",2023-24,0.0,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 30.0 +2.9,2.9,"",2023-24,2.9,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 97.1, 0.0, 0.0, 2.9, 97.1, 2.9, 34.6 +7.199999999999999,5,"",2023-24,7.199999999999999,Marblehead - Marblehead High,01680505, 0.0, 2.4, 2.8, 92.7, 0.0, 0.0, 2.0, 54.9, 45.1, 73.8 +4.800000000000001,4.8,"",2023-24,4.800000000000001,Marblehead - Marblehead Veterans Middle School,01680300, 2.7, 2.1, 0.0, 95.2, 0.0, 0.0, 0.0, 61.8, 38.2, 37.7 +0.0,1,"",2023-24,0.0,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.2, 15.8, 38.9 +0.0,1,"",2023-24,0.0,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.3, 46.7, 15.0 +0.0,1,"",2023-24,0.0,Marion - Sippican,01690005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 24.3 +8.4,5,"",2023-24,8.4,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 3.6, 91.5, 0.0, 0.0, 4.8, 68.6, 31.4, 82.8 +3.9,3.9,"",2023-24,3.9,Marlborough - Charles Jaworek School,01700030, 0.0, 0.0, 2.3, 96.1, 0.0, 0.0, 1.6, 99.1, 0.9, 43.2 +0.0,1,"",2023-24,0.0,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 13.8 +8.5,5,"",2023-24,8.5,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 6.2, 91.5, 0.0, 0.0, 2.3, 90.2, 9.8, 32.5 +1.7,1.7,"",2023-24,1.7,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 99.6, 0.4, 45.1 +5.800000000000001,5,"",2023-24,5.800000000000001,Marlborough - Marlborough High,01700505, 0.5, 0.0, 3.2, 94.2, 0.0, 0.0, 2.1, 66.8, 33.2, 86.7 +2.8,2.8,"",2023-24,2.8,Marlborough - Richer,01700025, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 99.4, 0.6, 35.1 +0.0,1,"",2023-24,0.0,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 20.5 +0.0,1,"",2023-24,0.0,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.9, 22.1, 14.9 +0.0,1,"",2023-24,0.0,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.4, 29.6, 64.2 +0.0,1,"",2023-24,0.0,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 21.3 +2.5,2.5,"",2023-24,2.5,Marshfield - Marshfield High,01710505, 0.0, 1.0, 0.0, 97.5, 0.0, 0.5, 1.0, 66.7, 33.3, 99.1 +0.0,1,"",2023-24,0.0,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 4.0 +3.9,3.9,"",2023-24,3.9,Marshfield - Martinson Elementary,01710025, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 97.7, 2.3, 25.8 +0.0,1,"",2023-24,0.0,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 16.3 +7.6,5,"",2023-24,7.6,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 2.0, 0.0, 5.6, 92.4, 0.0, 0.0, 0.0, 58.5, 41.5, 75.5 +13.799999999999999,5,"",2023-24,13.799999999999999,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 4.6, 4.6, 4.6, 86.3, 0.0, 0.0, 0.0, 77.0, 23.0, 21.8 +57.1,5,"",2023-24,57.1,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 38.1, 0.0, 19.0, 42.9, 0.0, 0.0, 0.0, 81.0, 19.0, 21.0 +1.5,1.5,"",2023-24,1.5,Masconomet - Masconomet Regional High School,07050505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 53.4, 46.6, 68.7 +6.300000000000001,5,"",2023-24,6.300000000000001,Masconomet - Masconomet Regional Middle School,07050405, 2.6, 3.7, 0.0, 93.7, 0.0, 0.0, 0.0, 59.7, 40.3, 38.0 +0.0,1,"",2023-24,0.0,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 29.0 +7.2,5,"",2023-24,7.2,Mashpee - Mashpee Middle-High School,01720505, 1.8, 1.8, 0.0, 92.8, 3.6, 0.0, 0.0, 65.0, 35.0, 55.7 +1.1,1.1,"",2023-24,1.1,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 98.9, 1.1, 0.0, 0.0, 85.0, 15.0, 30.0 +39.0,5,"",2023-24,39.0,Match Charter Public School (District) - Match Charter Public School,04690505, 22.8, 8.8, 4.8, 60.9, 0.0, 0.0, 2.6, 72.6, 27.4, 75.8 +0.0,1,"",2023-24,0.0,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 12.7 +0.0,1,"",2023-24,0.0,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.7, 25.3, 9.6 +13.0,5,"",2023-24,13.0,Maynard - Fowler School,01740305, 2.6, 0.0, 10.4, 87.0, 0.0, 0.0, 0.0, 74.6, 25.4, 38.6 +16.7,5,"",2023-24,16.7,Maynard - Green Meadow,01740010, 0.0, 0.0, 16.7, 83.3, 0.0, 0.0, 0.0, 90.0, 10.0, 30.0 +2.4,2.4,"",2023-24,2.4,Maynard - Maynard High,01740505, 0.0, 0.0, 1.7, 97.7, 0.0, 0.0, 0.7, 51.3, 48.7, 30.2 +3.3,3.3,"",2023-24,3.3,Medfield - Dale Street,01750005, 0.0, 2.4, 0.9, 96.7, 0.0, 0.0, 0.0, 91.9, 8.1, 27.1 +2.0,2.0,"",2023-24,2.0,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.3, 98.0, 0.0, 0.0, 1.7, 69.3, 30.7, 57.4 +1.0,1.0,"",2023-24,1.0,Medfield - Memorial School,01750003, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 93.1, 6.9, 24.6 +9.1,5,"",2023-24,9.1,Medfield - Ralph Wheelock School,01750007, 0.0, 1.5, 3.8, 90.9, 0.0, 3.8, 0.0, 88.7, 11.3, 26.5 +3.4000000000000004,3.4,"",2023-24,3.4000000000000004,Medfield - Thomas Blake Middle,01750305, 0.0, 1.3, 2.1, 96.6, 0.0, 0.0, 0.0, 69.7, 30.3, 46.6 +0.0,1,"",2023-24,0.0,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.1, 11.9, 33.6 +0.0,1,"",2023-24,0.0,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 41.3, 58.7, 3.6 +12.1,5,"",2023-24,12.1,Medford - John J McGlynn Elementary School,01760068, 0.0, 9.1, 0.0, 87.9, 0.0, 0.0, 3.0, 93.9, 6.1, 33.0 +4.8999999999999995,4.9,"",2023-24,4.8999999999999995,Medford - John J. McGlynn Middle School,01760320, 3.1, 1.2, 0.0, 95.1, 0.0, 0.0, 0.6, 67.0, 33.0, 32.6 +6.1,5,"",2023-24,6.1,Medford - Madeleine Dugger Andrews,01760315, 0.0, 2.9, 3.2, 93.9, 0.0, 0.0, 0.0, 61.9, 38.1, 31.2 +4.6,4.6,"",2023-24,4.6,Medford - Medford High,01760505, 0.0, 1.3, 3.3, 95.4, 0.0, 0.0, 0.0, 58.5, 41.5, 88.1 +0.0,1,"",2023-24,0.0,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 36.9 +2.9,2.9,"",2023-24,2.9,Medford - Missituk Elementary School,01760140, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 91.9, 8.1, 34.9 +0.0,1,"",2023-24,0.0,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 29.9 +4.3,4.3,"",2023-24,4.3,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 95.7, 4.3, 23.2 +2.4,2.4,"",2023-24,2.4,Medway - Medway High,01770505, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 65.3, 34.7, 41.9 +0.0,1,"",2023-24,0.0,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.3, 21.7, 46.6 +1.9,1.9,"",2023-24,1.9,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 99.4, 0.6, 17.0 +0.0,1,"",2023-24,0.0,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 15.8 +2.7,2.7,"",2023-24,2.7,Melrose - Horace Mann,01780025, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 96.3, 3.7, 12.0 +1.4,1.4,"",2023-24,1.4,Melrose - Lincoln,01780020, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 93.7, 6.3, 23.7 +4.2,4.2,"",2023-24,4.2,Melrose - Melrose High,01780505, 0.0, 1.5, 2.7, 95.8, 0.0, 0.0, 0.0, 61.6, 38.4, 66.8 +7.1,5,"",2023-24,7.1,Melrose - Melrose Middle,01780305, 0.0, 0.3, 5.1, 92.8, 0.0, 0.0, 1.7, 79.8, 20.2, 58.3 +0.0,1,"",2023-24,0.0,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 17.4 +4.3,4.3,"",2023-24,4.3,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 95.7, 0.0, 0.0, 4.3, 95.7, 4.3, 23.2 +4.9,4.9,"",2023-24,4.9,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 95.1, 4.9, 20.5 +7.8,5,"",2023-24,7.8,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 7.8, 92.2, 0.0, 0.0, 0.0, 84.3, 15.7, 25.5 +2.4,2.4,"",2023-24,2.4,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 73.8, 26.2, 42.4 +2.6,2.6,"",2023-24,2.6,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 62.6, 37.4, 39.0 +3.1,3.1,"",2023-24,3.1,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 84.4, 15.6, 64.0 +2.9,2.9,"",2023-24,2.9,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 77.0, 23.0, 69.5 +0.0,1,"",2023-24,0.0,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 13.0 +0.0,1,"",2023-24,0.0,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.9, 14.1, 71.0 +5.6,5,"",2023-24,5.6,Methuen - Methuen High,01810505, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 57.2, 42.8, 135.7 +3.7,3.7,"",2023-24,3.7,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 86.6, 13.4, 81.4 +0.0,1,"",2023-24,0.0,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.3, 15.7, 31.9 +0.0,1,"",2023-24,0.0,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.9, 35.1, 46.2 +3.0,3.0,"",2023-24,3.0,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 97.0, 3.0, 0.0, 0.0, 91.2, 8.8, 33.8 +0.0,1,"",2023-24,0.0,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 16.0 +1.6,1.6,"",2023-24,1.6,Middleborough - Middleborough High,01820505, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 54.1, 45.9, 60.6 +0.0,1,"",2023-24,0.0,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 21.2 +0.0,1,"",2023-24,0.0,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 28.2 +3.5,3.5,"",2023-24,3.5,Milford - Brookside,01850065, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 97.7, 2.3, 39.5 +1.6,1.6,"",2023-24,1.6,Milford - Memorial,01850010, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 97.5, 2.5, 31.5 +4.2,4.2,"",2023-24,4.2,Milford - Milford High,01850505, 0.2, 0.0, 2.0, 95.8, 0.0, 0.0, 2.0, 59.1, 40.9, 100.3 +0.0,1,"",2023-24,0.0,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +6.8,5,"",2023-24,6.8,Milford - Stacy Middle,01850305, 0.0, 0.0, 6.8, 93.2, 0.0, 0.0, 0.0, 63.8, 36.2, 73.8 +6.8,5,"",2023-24,6.8,Milford - Woodland,01850090, 0.0, 2.7, 4.1, 93.2, 0.0, 0.0, 0.0, 85.0, 15.0, 66.7 +0.0,1,"",2023-24,0.0,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 27.3 +1.8,1.8,"",2023-24,1.8,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 52.5, 47.5, 55.1 +0.0,1,"",2023-24,0.0,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.3, 19.7, 26.7 +6.1,5,"",2023-24,6.1,Millis - Clyde F Brown,01870005, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 84.7, 15.3, 29.5 +3.5,3.5,"",2023-24,3.5,Millis - Millis High School,01870505, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 57.3, 42.7, 28.6 +1.8,1.8,"",2023-24,1.8,Millis - Millis Middle,01870020, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 78.3, 21.7, 18.8 +0.0,1,"",2023-24,0.0,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.4,5,"",2023-24,7.4,Milton - Charles S Pierce Middle,01890410, 2.7, 0.0, 3.8, 92.6, 0.0, 0.0, 0.9, 70.0, 30.0, 75.3 +10.4,5,"",2023-24,10.4,Milton - Collicot,01890005, 0.0, 3.1, 7.3, 89.6, 0.0, 0.0, 0.0, 89.7, 10.3, 32.0 +8.6,5,"",2023-24,8.6,Milton - Cunningham School,01890007, 0.0, 3.6, 5.0, 91.4, 0.0, 0.0, 0.0, 96.9, 3.1, 27.9 +8.2,5,"",2023-24,8.2,Milton - Glover,01890010, 3.9, 3.2, 1.1, 91.8, 0.0, 0.0, 0.0, 91.3, 8.7, 25.1 +4.7,4.7,"",2023-24,4.7,Milton - Milton High,01890505, 1.7, 0.0, 2.6, 95.4, 0.0, 0.0, 0.4, 62.7, 37.3, 78.2 +19.5,5,"",2023-24,19.5,Milton - Tucker,01890020, 12.1, 3.4, 4.0, 80.5, 0.0, 0.0, 0.0, 90.9, 9.1, 24.8 +3.9000000000000004,3.9,"",2023-24,3.9000000000000004,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 2.6, 1.3, 96.1, 0.0, 0.0, 0.0, 48.3, 51.7, 76.9 +0.0,1,"",2023-24,0.0,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 17.6 +0.0,1,"",2023-24,0.0,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 9.1 +0.0,1,"",2023-24,0.0,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.4, 29.3, 30.6 +0.0,1,"",2023-24,0.0,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 10.3 +0.0,1,"",2023-24,0.0,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 18.6 +4.4,4.4,"",2023-24,4.4,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 2.2, 95.6, 0.0, 0.0, 2.2, 93.4, 6.6, 45.0 +8.1,5,"",2023-24,8.1,Monomoy Regional School District - Monomoy Regional High School,07120515, 1.7, 4.7, 1.7, 91.9, 0.0, 0.0, 0.0, 63.8, 36.2, 59.0 +2.4,2.4,"",2023-24,2.4,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 79.0, 21.0, 41.7 +3.1,3.1,"",2023-24,3.1,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 96.9, 0.0, 3.1, 0.0, 91.0, 9.0, 31.9 +2.9,2.9,"",2023-24,2.9,Monson - Monson High School,01910505, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 49.5, 50.5, 34.0 +9.9,5,"",2023-24,9.9,Monson - Quarry Hill Community School,01910010, 9.9, 0.0, 0.0, 90.1, 0.0, 0.0, 0.0, 98.6, 1.4, 10.1 +11.5,5,"",2023-24,11.5,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 0.0, 6.8, 88.5, 0.0, 0.0, 4.7, 55.7, 44.3, 54.6 +0.0,1,"",2023-24,0.0,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.4, 29.6, 18.2 +6.9,5,"",2023-24,6.9,Mount Greylock - Mt Greylock Regional High,07150505, 2.2, 0.0, 4.7, 93.1, 0.0, 0.0, 0.0, 58.3, 41.7, 46.4 +3.2,3.2,"",2023-24,3.2,Mount Greylock - Williamstown Elementary,07150010, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 93.7, 6.3, 31.6 +18.8,5,"",2023-24,18.8,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.5, 11.1, 7.2, 81.2, 0.0, 0.0, 0.0, 66.7, 33.3, 69.6 +0.0,1,"",2023-24,0.0,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 10.5 +14.700000000000001,5,"",2023-24,14.700000000000001,Nantucket - Cyrus Peirce,01970010, 9.4, 0.0, 2.2, 85.2, 0.0, 0.0, 3.1, 74.8, 25.2, 31.8 +7.199999999999999,5,"",2023-24,7.199999999999999,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 4.8, 92.9, 0.0, 0.0, 2.4, 94.0, 6.0, 42.0 +15.9,5,"",2023-24,15.9,Nantucket - Nantucket High,01970505, 8.4, 2.1, 5.4, 84.1, 0.0, 0.0, 0.0, 45.9, 54.1, 47.7 +8.399999999999999,5,"",2023-24,8.399999999999999,Nantucket - Nantucket Intermediate School,01970020, 2.8, 0.0, 5.6, 91.5, 0.0, 0.0, 0.0, 88.7, 11.3, 35.5 +0.0,1,"",2023-24,0.0,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.0, 21.0, 22.2 +2.9,2.9,"",2023-24,2.9,Narragansett - Narragansett Regional High,07200505, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 59.8, 40.2, 34.0 +0.0,1,"",2023-24,0.0,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 29.4 +3.3,3.3,"",2023-24,3.3,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 96.7, 0.0, 3.3, 0.0, 90.2, 9.8, 30.7 +0.0,1,"",2023-24,0.0,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.8, 17.2, 44.6 +5.3,5,"",2023-24,5.3,Nashoba - Hale,07250310, 0.0, 5.3, 0.0, 94.7, 0.0, 0.0, 0.0, 68.4, 31.6, 19.0 +5.2,5,"",2023-24,5.2,Nashoba - Luther Burbank Middle School,07250305, 5.2, 0.0, 0.0, 94.8, 0.0, 0.0, 0.0, 89.6, 10.4, 19.2 +0.0,1,"",2023-24,0.0,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.3, 12.7, 30.5 +4.8,4.8,"",2023-24,4.8,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 56.2, 43.8, 62.6 +4.6,4.6,"",2023-24,4.6,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 4.6, 0.0, 95.4, 0.0, 0.0, 0.0, 57.1, 42.9, 43.9 +7.2,5,"",2023-24,7.2,Natick - Bennett-Hemenway,01980005, 0.0, 3.6, 0.0, 92.9, 0.0, 3.6, 0.0, 92.9, 7.1, 28.0 +0.0,1,"",2023-24,0.0,Natick - Brown,01980010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 31.0 +5.1,5,"",2023-24,5.1,Natick - J F Kennedy Middle School,01980305, 0.0, 3.5, 0.0, 94.9, 1.6, 0.0, 0.0, 69.0, 31.0, 47.0 +0.0,1,"",2023-24,0.0,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.8, 17.2, 5.8 +3.9,3.9,"",2023-24,3.9,Natick - Lilja Elementary,01980035, 3.9, 0.0, 0.0, 96.1, 0.0, 0.0, 0.0, 88.6, 11.4, 26.0 +0.0,1,"",2023-24,0.0,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 24.0 +6.3,5,"",2023-24,6.3,Natick - Natick High,01980505, 0.0, 4.6, 0.8, 93.7, 0.0, 0.0, 0.9, 64.5, 35.5, 127.6 +3.1000000000000005,3.1,"",2023-24,3.1000000000000005,Natick - Wilson Middle,01980310, 1.8, 1.1, 0.0, 96.9, 0.0, 0.0, 0.2, 64.2, 35.8, 54.3 +2.8,2.8,"",2023-24,2.8,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 60.9, 39.1, 70.4 +2.4,2.4,"",2023-24,2.4,Nauset - Nauset Regional Middle,06600305, 0.0, 2.0, 0.4, 97.6, 0.0, 0.0, 0.0, 71.5, 28.5, 49.2 +10.7,5,"",2023-24,10.7,Needham - Broadmeadow,01990005, 0.0, 10.7, 0.0, 89.3, 0.0, 0.0, 0.0, 94.4, 5.6, 29.1 +2.7,2.7,"",2023-24,2.7,Needham - High Rock School,01990410, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 71.5, 28.5, 36.5 +7.8,5,"",2023-24,7.8,Needham - John Eliot,01990020, 3.9, 0.0, 0.0, 92.2, 0.0, 0.0, 3.9, 90.6, 9.4, 25.7 +14.1,5,"",2023-24,14.1,Needham - Needham High,01990505, 3.4, 4.9, 4.1, 85.9, 0.0, 0.0, 1.7, 60.2, 39.8, 116.2 +6.6,5,"",2023-24,6.6,Needham - Newman Elementary,01990050, 2.3, 2.3, 2.0, 93.5, 0.0, 0.0, 0.0, 95.3, 4.7, 44.1 +10.4,5,"",2023-24,10.4,Needham - Pollard Middle,01990405, 0.3, 1.7, 4.4, 89.6, 0.0, 0.0, 4.0, 73.0, 27.0, 74.9 +11.100000000000001,5,"",2023-24,11.100000000000001,Needham - Sunita L. Williams Elementary,01990035, 0.0, 1.1, 6.7, 88.9, 0.0, 0.0, 3.3, 86.6, 13.4, 29.9 +4.4,4.4,"",2023-24,4.4,Needham - William Mitchell,01990040, 0.0, 0.7, 3.7, 95.6, 0.0, 0.0, 0.0, 87.5, 12.5, 26.9 +49.1,5,"",2023-24,49.1,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 23.6, 12.4, 7.6, 50.9, 0.0, 0.0, 5.5, 71.9, 28.1, 72.6 +8.3,5,"",2023-24,8.3,New Bedford - Abraham Lincoln,02010095, 2.8, 0.0, 5.5, 91.7, 0.0, 0.0, 0.0, 96.9, 3.1, 36.2 +26.0,5,"",2023-24,26.0,New Bedford - Alfred J Gomes,02010063, 7.7, 0.0, 13.3, 74.0, 0.0, 0.0, 5.0, 77.1, 22.9, 37.6 +3.4,3.4,"",2023-24,3.4,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 75.9, 24.1, 14.5 +10.2,5,"",2023-24,10.2,New Bedford - Carlos Pacheco,02010105, 5.8, 0.0, 4.4, 89.8, 0.0, 0.0, 0.0, 90.9, 9.1, 17.2 +2.4,2.4,"",2023-24,2.4,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 93.8, 6.2, 36.5 +2.7,2.7,"",2023-24,2.7,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 91.5, 8.5, 15.8 +17.3,5,"",2023-24,17.3,New Bedford - Elizabeth Carter Brooks,02010015, 12.8, 0.0, 4.5, 82.7, 0.0, 0.0, 0.0, 89.8, 10.2, 15.7 +0.0,1,"",2023-24,0.0,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 18.5 +5.2,5,"",2023-24,5.2,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 94.8, 0.0, 0.0, 5.2, 93.5, 6.5, 19.2 +11.3,5,"",2023-24,11.3,New Bedford - Hayden/McFadden,02010078, 2.3, 0.0, 9.0, 88.7, 0.0, 0.0, 0.0, 86.9, 13.1, 44.4 +8.6,5,"",2023-24,8.6,New Bedford - Irwin M. Jacobs Elementary School,02010070, 4.3, 0.0, 4.3, 91.5, 0.0, 0.0, 0.0, 95.7, 4.3, 23.5 +9.3,5,"",2023-24,9.3,New Bedford - James B Congdon,02010040, 0.0, 0.0, 9.3, 90.7, 0.0, 0.0, 0.0, 95.3, 4.7, 21.4 +0.0,1,"",2023-24,0.0,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 16.3 +17.700000000000003,5,"",2023-24,17.700000000000003,New Bedford - John Avery Parker,02010115, 11.8, 0.0, 5.9, 82.4, 0.0, 0.0, 0.0, 88.2, 11.8, 17.0 +0.0,1,"",2023-24,0.0,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 17.7 +17.2,5,"",2023-24,17.2,New Bedford - Keith Middle School,02010405, 13.1, 0.0, 4.1, 82.8, 0.0, 0.0, 0.0, 56.4, 43.6, 73.3 +17.2,5,"",2023-24,17.2,New Bedford - New Bedford High,02010505, 6.5, 2.2, 6.9, 82.8, 0.0, 0.0, 1.6, 52.7, 47.3, 183.1 +8.2,5,"",2023-24,8.2,New Bedford - Normandin Middle School,02010410, 2.7, 0.0, 4.1, 91.8, 0.0, 0.0, 1.4, 64.2, 35.8, 73.0 +14.0,5,"",2023-24,14.0,New Bedford - Roosevelt Middle School,02010415, 5.1, 1.7, 5.9, 86.1, 0.0, 0.0, 1.3, 72.6, 25.7, 59.3 +16.7,5,"",2023-24,16.7,New Bedford - Sgt Wm H Carney Academy,02010045, 2.5, 5.0, 6.7, 83.4, 0.0, 0.0, 2.5, 93.7, 6.3, 40.1 +10.6,5,"",2023-24,10.6,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 10.6, 89.4, 0.0, 0.0, 0.0, 81.7, 18.3, 14.2 +4.3,4.3,"",2023-24,4.3,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 95.7, 0.0, 0.0, 4.3, 34.2, 65.8, 11.7 +11.5,5,"",2023-24,11.5,New Bedford - Whaling City Junior/Senior High School,02010515, 6.2, 0.0, 0.0, 88.5, 0.0, 0.0, 5.3, 60.4, 39.6, 18.9 +0.0,1,"",2023-24,0.0,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 15.7 +36.699999999999996,5,"",2023-24,36.699999999999996,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 27.0, 2.8, 4.6, 63.2, 0.0, 0.0, 2.3, 68.7, 31.3, 43.1 +10.5,5,"",2023-24,10.5,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 89.5, 0.0, 0.0, 10.5, 83.2, 16.8, 9.5 +0.0,1,"",2023-24,0.0,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 25.4 +3.6,3.6,"",2023-24,3.6,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 1.8, 1.8, 96.4, 0.0, 0.0, 0.0, 91.1, 8.9, 55.8 +0.0,1,"",2023-24,0.0,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.3, 37.7, 62.0 +12.0,5,"",2023-24,12.0,Newburyport - Rupert A Nock Middle,02040305, 2.0, 2.0, 8.0, 88.0, 0.0, 0.0, 0.0, 67.9, 32.1, 49.9 +17.8,5,"",2023-24,17.8,Newton - A E Angier,02070005, 4.8, 8.7, 4.3, 82.2, 0.0, 0.0, 0.0, 82.2, 17.8, 23.0 +8.3,5,"",2023-24,8.3,Newton - Bigelow Middle,02070305, 0.0, 2.7, 5.6, 91.8, 0.0, 0.0, 0.0, 59.4, 40.6, 37.6 +32.4,5,"",2023-24,32.4,Newton - Bowen,02070015, 0.0, 13.9, 13.9, 67.7, 0.0, 0.0, 4.6, 90.8, 9.2, 21.6 +27.4,5,"",2023-24,27.4,Newton - C C Burr,02070020, 0.0, 13.7, 9.1, 72.6, 0.0, 0.0, 4.6, 95.4, 4.6, 21.9 +8.2,5,"",2023-24,8.2,Newton - Cabot,02070025, 0.0, 4.1, 4.1, 91.9, 0.0, 0.0, 0.0, 79.7, 20.3, 24.6 +6.0,5,"",2023-24,6.0,Newton - Charles E Brown Middle,02070310, 0.0, 3.5, 0.7, 94.0, 0.0, 0.0, 1.8, 66.5, 33.5, 57.0 +12.700000000000001,5,"",2023-24,12.700000000000001,Newton - Countryside,02070040, 4.4, 4.4, 0.0, 87.4, 0.0, 0.0, 3.9, 91.7, 8.3, 23.0 +11.100000000000001,5,"",2023-24,11.100000000000001,Newton - F A Day Middle,02070315, 4.0, 1.4, 4.4, 88.8, 0.0, 0.0, 1.3, 61.2, 38.8, 74.9 +9.1,5,"",2023-24,9.1,Newton - Franklin,02070055, 0.0, 9.1, 0.0, 90.9, 0.0, 0.0, 0.0, 95.4, 4.6, 21.9 +19.599999999999998,5,"",2023-24,19.599999999999998,Newton - Horace Mann,02070075, 17.4, 2.2, 0.0, 80.4, 0.0, 0.0, 0.0, 87.0, 13.0, 22.4 +11.3,5,"",2023-24,11.3,Newton - John Ward,02070120, 0.0, 0.0, 11.3, 88.7, 0.0, 0.0, 0.0, 94.4, 5.6, 14.2 +16.9,5,"",2023-24,16.9,Newton - Lincoln-Eliot,02070070, 0.0, 4.3, 8.7, 83.1, 0.0, 0.0, 3.9, 92.2, 7.8, 23.1 +4.6,4.6,"",2023-24,4.6,Newton - Mason-Rice,02070080, 0.0, 4.6, 0.0, 95.4, 0.0, 0.0, 0.0, 100.0, 0.0, 21.9 +13.1,5,"",2023-24,13.1,Newton - Memorial Spaulding,02070105, 4.4, 0.0, 8.7, 86.9, 0.0, 0.0, 0.0, 95.6, 4.4, 22.9 +0.0,1,"",2023-24,0.0,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 12.3 +14.999999999999998,5,"",2023-24,14.999999999999998,Newton - Newton North High,02070505, 2.4, 7.8, 3.7, 85.0, 0.0, 0.0, 1.1, 54.2, 45.2, 176.2 +14.1,5,"",2023-24,14.1,Newton - Newton South High,02070510, 2.1, 8.5, 3.5, 85.8, 0.0, 0.0, 0.0, 63.2, 36.4, 141.1 +15.700000000000001,5,"",2023-24,15.700000000000001,Newton - Oak Hill Middle,02070320, 1.9, 6.4, 4.8, 84.2, 0.0, 0.0, 2.6, 76.8, 23.2, 62.3 +12.4,5,"",2023-24,12.4,Newton - Peirce,02070100, 6.2, 0.0, 0.0, 87.7, 0.0, 0.0, 6.2, 93.8, 6.2, 16.2 +19.4,5,"",2023-24,19.4,Newton - Underwood,02070115, 0.0, 12.9, 6.5, 80.6, 0.0, 0.0, 0.0, 81.3, 18.7, 15.5 +6.7,5,"",2023-24,6.7,Newton - Williams,02070125, 0.0, 0.0, 0.0, 93.3, 0.0, 0.0, 6.7, 82.7, 17.3, 15.0 +10.0,5,"",2023-24,10.0,Newton - Zervas,02070130, 0.0, 6.0, 4.0, 90.1, 0.0, 0.0, 0.0, 79.4, 20.6, 25.2 +0.0,1,"",2023-24,0.0,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 32.9 +0.0,1,"",2023-24,0.0,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.2, 9.8, 27.5 +2.0,2.0,"",2023-24,2.0,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 49.8, 50.2, 46.9 +0.0,1,"",2023-24,0.0,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.7, 16.3, 20.5 +4.5,4.5,"",2023-24,4.5,North Adams - Colegrove Park Elementary,02090008, 4.5, 0.0, 0.0, 95.5, 0.0, 0.0, 0.0, 93.9, 6.1, 22.0 +2.8,2.8,"",2023-24,2.8,North Adams - Drury High,02090505, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 50.0, 50.0, 35.3 +0.0,1,"",2023-24,0.0,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.9, 12.1, 19.3 +3.6,3.6,"",2023-24,3.6,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 100.0, 0.0, 27.5 +0.0,1,"",2023-24,0.0,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 24.4 +0.0,1,"",2023-24,0.0,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 18.1 +0.0,1,"",2023-24,0.0,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 21.9 +0.0,1,"",2023-24,0.0,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.0, 14.0, 14.7 +1.9000000000000001,1.9,"",2023-24,1.9000000000000001,North Andover - North Andover High,02110505, 0.0, 1.1, 0.0, 98.1, 0.0, 0.0, 0.8, 60.1, 39.9, 88.1 +0.0,1,"",2023-24,0.0,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.4, 31.6, 69.6 +0.0,1,"",2023-24,0.0,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 18.2 +1.0,1.0,"",2023-24,1.0,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 99.0, 1.0, 21.0 +0.0,1,"",2023-24,0.0,North Attleborough - Community,02120030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 14.9 +0.0,1,"",2023-24,0.0,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 12.5 +0.0,1,"",2023-24,0.0,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 22.6 +5.6,5,"",2023-24,5.6,North Attleborough - North Attleboro High,02120505, 1.4, 0.0, 2.8, 94.4, 0.0, 0.0, 1.4, 67.2, 32.8, 71.0 +0.0,1,"",2023-24,0.0,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.0 +4.5,4.5,"",2023-24,4.5,North Attleborough - North Attleborough Middle,02120305, 1.5, 0.0, 3.0, 95.5, 0.0, 0.0, 0.0, 66.4, 33.6, 66.4 +6.1,5,"",2023-24,6.1,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 78.6, 21.4, 13.1 +8.6,5,"",2023-24,8.6,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 8.6, 91.4, 0.0, 0.0, 0.0, 80.2, 19.8, 18.7 +3.0,3.0,"",2023-24,3.0,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 44.8, 55.2, 13.4 +0.0,1,"",2023-24,0.0,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 8.8 +1.7,1.7,"",2023-24,1.7,North Middlesex - Hawthorne Brook,07350030, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 66.9, 33.1, 29.6 +1.3,1.3,"",2023-24,1.3,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 72.3, 27.7, 38.3 +1.9,1.9,"",2023-24,1.9,North Middlesex - North Middlesex Regional,07350505, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 58.4, 41.6, 52.4 +0.0,1,"",2023-24,0.0,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.3, 14.7, 23.2 +0.0,1,"",2023-24,0.0,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 6.2 +3.3,3.3,"",2023-24,3.3,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 96.7, 0.0, 0.0, 3.3, 96.7, 3.3, 30.0 +0.0,1,"",2023-24,0.0,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.3, 19.7, 19.5 +0.0,1,"",2023-24,0.0,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 22.3 +3.7,3.7,"",2023-24,3.7,North Reading - L D Batchelder,02170005, 0.0, 3.7, 0.0, 96.3, 0.0, 0.0, 0.0, 100.0, 0.0, 26.8 +3.2,3.2,"",2023-24,3.2,North Reading - North Reading High,02170505, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 40.0, 60.0, 56.7 +0.0,1,"",2023-24,0.0,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.5, 20.5, 38.4 +0.0,1,"",2023-24,0.0,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.3, 21.7, 15.8 +29.0,5,"",2023-24,29.0,Northampton - Jackson Street,02100020, 5.8, 5.8, 5.8, 71.0, 0.0, 0.0, 11.6, 88.4, 11.6, 17.2 +1.1,1.1,"",2023-24,1.1,Northampton - John F Kennedy Middle School,02100410, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 68.7, 31.3, 46.9 +0.0,1,"",2023-24,0.0,Northampton - Leeds,02100025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.2, 19.8, 18.1 +8.9,5,"",2023-24,8.9,Northampton - Northampton High,02100505, 3.9, 2.0, 1.0, 91.2, 0.0, 0.0, 2.0, 51.1, 48.9, 51.1 +7.2,5,"",2023-24,7.2,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 7.2, 0.0, 92.8, 0.0, 0.0, 0.0, 92.8, 7.2, 13.9 +0.0,1,"",2023-24,0.0,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 45.3, 54.7, 64.0 +2.2,2.2,"",2023-24,2.2,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 71.5, 28.5, 104.8 +0.0,1,"",2023-24,0.0,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.2, 13.8, 14.5 +0.0,1,"",2023-24,0.0,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 16.4 +0.0,1,"",2023-24,0.0,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 16.5 +0.0,1,"",2023-24,0.0,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 13.6 +4.6,4.6,"",2023-24,4.6,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 83.0, 17.0, 43.3 +2.3,2.3,"",2023-24,2.3,Northbridge - Northbridge Elementary School,02140001, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 97.7, 2.3, 43.8 +2.7,2.7,"",2023-24,2.7,Northbridge - Northbridge High,02140505, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 50.1, 49.9, 37.6 +0.0,1,"",2023-24,0.0,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.4, 26.6, 33.8 +1.3,1.3,"",2023-24,1.3,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 47.3, 52.7, 75.5 +0.0,1,"",2023-24,0.0,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.7, 36.3, 27.8 +0.0,1,"",2023-24,0.0,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 18.7 +0.0,1,"",2023-24,0.0,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 32.5 +0.0,1,"",2023-24,0.0,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 17.3 +5.3,5,"",2023-24,5.3,Norton - Norton High,02180505, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 70.4, 29.6, 47.3 +0.0,1,"",2023-24,0.0,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.9, 48.1, 29.8 +3.4,3.4,"",2023-24,3.4,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 96.6, 0.0, 0.0, 3.4, 91.2, 8.8, 29.6 +0.0,1,"",2023-24,0.0,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.6, 40.4, 45.5 +2.7,2.7,"",2023-24,2.7,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 66.3, 33.7, 36.5 +0.0,1,"",2023-24,0.0,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 29.6 +5.2,5,"",2023-24,5.2,Norwood - Balch,02200005, 0.0, 0.0, 5.2, 94.8, 0.0, 0.0, 0.0, 95.9, 4.1, 19.4 +0.0,1,"",2023-24,0.0,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 15.2 +3.5,3.5,"",2023-24,3.5,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 88.8, 11.2, 13.9 +5.3,5,"",2023-24,5.3,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.3, 1.7, 3.3, 94.6, 0.0, 0.0, 0.0, 61.2, 38.8, 59.8 +2.5,2.5,"",2023-24,2.5,Norwood - F A Cleveland,02200015, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 95.3, 4.7, 21.2 +0.0,1,"",2023-24,0.0,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.2, 0.8, 23.7 +5.3,5,"",2023-24,5.3,Norwood - John P Oldham,02200020, 0.0, 5.3, 0.0, 94.7, 0.0, 0.0, 0.0, 82.8, 17.2, 18.9 +7.800000000000001,5,"",2023-24,7.800000000000001,Norwood - Norwood High,02200505, 1.4, 0.0, 6.4, 92.1, 0.0, 0.0, 0.0, 59.2, 40.8, 77.7 +4.8,4.8,"",2023-24,4.8,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 0.0, 95.2, 0.0, 0.0, 4.8, 88.9, 11.1, 41.6 +4.0,4.0,"",2023-24,4.0,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 2.0, 0.0, 95.9, 0.0, 0.0, 2.0, 47.2, 52.8, 49.2 +2.2,2.2,"",2023-24,2.2,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 54.3, 45.7, 45.8 +0.0,1,"",2023-24,0.0,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.3, 36.7, 30.0 +3.4,3.4,"",2023-24,3.4,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 3.4, 0.0, 0.0, 96.6, 0.0, 0.0, 0.0, 74.4, 25.6, 20.3 +3.1,3.1,"",2023-24,3.1,Orange - Fisher Hill School,02230010, 0.0, 0.0, 0.0, 96.9, 0.0, 0.0, 3.1, 72.3, 27.7, 32.5 +0.0,1,"",2023-24,0.0,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.0, 17.0, 15.3 +0.0,1,"",2023-24,0.0,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 17.5 +0.0,1,"",2023-24,0.0,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 17.5 +2.3,2.3,"",2023-24,2.3,Oxford - Oxford High,02260505, 1.9, 0.4, 0.0, 97.7, 0.0, 0.0, 0.0, 58.7, 41.3, 32.4 +6.9,5,"",2023-24,6.9,Oxford - Oxford Middle,02260405, 0.0, 3.1, 3.8, 93.2, 0.0, 0.0, 0.0, 78.1, 21.9, 26.5 +2.5,2.5,"",2023-24,2.5,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 89.9, 10.1, 39.5 +2.3000000000000003,2.3,"",2023-24,2.3000000000000003,Palmer - Palmer High,02270505, 0.0, 0.0, 2.2, 97.7, 0.0, 0.0, 0.1, 49.7, 50.3, 44.9 +0.0,1,"",2023-24,0.0,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 45.5, 54.5, 60.4 +0.0,1,"",2023-24,0.0,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 19.0 +3.9,3.9,"",2023-24,3.9,Peabody - Center,02290015, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 83.9, 16.1, 20.5 +0.0,1,"",2023-24,0.0,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.6, 37.4, 85.5 +0.0,1,"",2023-24,0.0,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 18.1 +0.0,1,"",2023-24,0.0,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 21.0 +0.0,1,"",2023-24,0.0,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +4.4,4.4,"",2023-24,4.4,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.9, 2.6, 95.6, 0.0, 0.0, 0.9, 57.4, 42.6, 113.4 +0.4,1,"",2023-24,0.4,Peabody - South Memorial,02290035, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 90.7, 9.3, 24.8 +0.0,1,"",2023-24,0.0,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 31.0 +0.0,1,"",2023-24,0.0,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 17.0 +0.0,1,"",2023-24,0.0,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 17.0 +9.3,5,"",2023-24,9.3,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 9.3, 90.7, 0.0, 0.0, 0.0, 72.2, 27.8, 10.8 +0.0,1,"",2023-24,0.0,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.3, 15.7, 26.5 +0.0,1,"",2023-24,0.0,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 24.8 +0.0,1,"",2023-24,0.0,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 31.5 +3.9,3.9,"",2023-24,3.9,Pembroke - Pembroke Community Middle School,02310305, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 80.6, 19.4, 25.9 +2.0,2.0,"",2023-24,2.0,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 67.8, 32.2, 49.4 +0.0,1,"",2023-24,0.0,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 14.5 +0.0,1,"",2023-24,0.0,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 19.9 +3.8,3.8,"",2023-24,3.8,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 96.2, 0.0, 0.0, 3.8, 100.0, 0.0, 26.6 +7.1,5,"",2023-24,7.1,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 7.1, 92.9, 0.0, 0.0, 0.0, 92.9, 7.1, 14.1 +2.0,2.0,"",2023-24,2.0,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 62.5, 37.5, 19.7 +9.3,5,"",2023-24,9.3,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 7.2, 90.7, 0.0, 0.0, 2.1, 58.3, 41.7, 41.9 +0.0,1,"",2023-24,0.0,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 4.5 +35.7,5,"",2023-24,35.7,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 35.7, 0.0, 64.3, 0.0, 0.0, 0.0, 100.0, 0.0, 2.8 +35.400000000000006,5,"",2023-24,35.400000000000006,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 15.6, 4.6, 6.9, 64.5, 0.0, 0.0, 8.3, 49.3, 50.7, 4.8 +81.4,5,"",2023-24,81.4,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 43.3, 19.7, 9.2, 18.5, 0.0, 0.0, 9.2, 48.1, 51.9, 2.7 +15.5,5,"",2023-24,15.5,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 4.6, 3.0, 7.9, 84.5, 0.0, 0.0, 0.0, 67.2, 32.8, 65.9 +35.1,5,"",2023-24,35.1,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 17.4, 10.9, 4.6, 65.0, 0.0, 2.2, 0.0, 66.2, 33.8, 46.0 +0.0,1,"",2023-24,0.0,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 14.6 +0.0,1,"",2023-24,0.0,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 14.0 +0.0,1,"",2023-24,0.0,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.4, 35.6, 23.6 +54.0,5,"",2023-24,54.0,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 2.0, 49.8, 2.2, 46.0, 0.0, 0.0, 0.0, 74.2, 25.8, 45.5 +18.3,5,"",2023-24,18.3,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 2.6, 2.6, 7.9, 81.5, 2.6, 0.0, 2.6, 44.7, 55.3, 37.9 +0.0,1,"",2023-24,0.0,Pittsfield - Allendale,02360010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 22.6 +0.0,1,"",2023-24,0.0,Pittsfield - Crosby,02360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 21.3 +0.0,1,"",2023-24,0.0,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 1.0 +0.0,1,"",2023-24,0.0,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 37.9, 62.1, 7.3 +3.5,3.5,"",2023-24,3.5,Pittsfield - Egremont,02360035, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 96.5, 3.5, 28.4 +7.8,5,"",2023-24,7.8,Pittsfield - John T Reid Middle,02360305, 0.0, 0.5, 7.3, 92.2, 0.0, 0.0, 0.0, 53.9, 46.1, 41.0 +3.6,3.6,"",2023-24,3.6,Pittsfield - Morningside Community School,02360055, 3.6, 0.0, 0.0, 96.4, 0.0, 0.0, 0.0, 90.1, 9.9, 28.0 +6.9,5,"",2023-24,6.9,Pittsfield - Pittsfield High,02360505, 1.6, 0.8, 4.5, 93.2, 0.0, 0.0, 0.0, 67.7, 32.3, 64.2 +0.0,1,"",2023-24,0.0,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 14.7 +3.6,3.6,"",2023-24,3.6,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.0, 0.0, 96.4, 0.0, 0.0, 3.6, 92.9, 7.1, 28.0 +0.0,1,"",2023-24,0.0,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 6.4 +12.400000000000002,5,"",2023-24,12.400000000000002,Pittsfield - Taconic High,02360510, 1.3, 2.4, 7.4, 87.6, 0.0, 0.0, 1.3, 49.2, 50.8, 74.7 +4.2,4.2,"",2023-24,4.2,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 2.1, 2.1, 95.7, 0.0, 0.0, 0.0, 65.1, 34.9, 46.7 +0.0,1,"",2023-24,0.0,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 20.3 +0.0,1,"",2023-24,0.0,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 14.6 +0.0,1,"",2023-24,0.0,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 16.5 +0.0,1,"",2023-24,0.0,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 16.4 +0.0,1,"",2023-24,0.0,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.2, 22.8, 26.0 +0.0,1,"",2023-24,0.0,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.1, 10.9, 15.1 +3.3,3.3,"",2023-24,3.3,Plymouth - Indian Brook,02390012, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 93.1, 6.9, 30.6 +0.0,1,"",2023-24,0.0,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.9 +0.0,1,"",2023-24,0.0,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 27.7 +1.5,1.5,"",2023-24,1.5,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 77.5, 22.5, 67.5 +0.0,1,"",2023-24,0.0,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.3 +0.0,1,"",2023-24,0.0,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 55.4, 44.6, 92.6 +2.0,2.0,"",2023-24,2.0,Plymouth - Plymouth South High,02390515, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 60.3, 39.7, 81.3 +5.5,5,"",2023-24,5.5,Plymouth - Plymouth South Middle,02390305, 0.0, 2.5, 3.0, 94.6, 0.0, 0.0, 0.0, 70.2, 29.8, 40.6 +0.0,1,"",2023-24,0.0,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 39.1 +3.9,3.9,"",2023-24,3.9,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 96.1, 0.0, 3.9, 0.0, 92.3, 7.7, 25.8 +0.0,1,"",2023-24,0.0,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.7, 1.3, 15.7 +41.199999999999996,5,"",2023-24,41.199999999999996,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 23.4, 2.7, 11.1, 58.9, 0.0, 1.3, 2.7, 69.6, 30.4, 74.8 +0.0,1,"",2023-24,0.0,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.2, 30.8, 13.0 +0.0,1,"",2023-24,0.0,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 11.8 +0.0,1,"",2023-24,0.0,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 14.4 +0.0,1,"",2023-24,0.0,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 1.0 +0.0,1,"",2023-24,0.0,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 10.4 +2.4,2.4,"",2023-24,2.4,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 60.4, 39.6, 42.2 +3.1,3.1,"",2023-24,3.1,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 65.1, 34.9, 32.1 +0.0,1,"",2023-24,0.0,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 20.0 +0.0,1,"",2023-24,0.0,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 2.0 +0.0,1,"",2023-24,0.0,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 55.0, 45.0, 33.3 +0.0,1,"",2023-24,0.0,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.1, 36.9, 14.2 +0.0,1,"",2023-24,0.0,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 16.8 +0.0,1,"",2023-24,0.0,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.4, 10.6, 14.0 +0.0,1,"",2023-24,0.0,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 14.0 +5.8,5,"",2023-24,5.8,Quincy - Atherton Hough,02430040, 0.0, 5.8, 0.0, 94.2, 0.0, 0.0, 0.0, 87.5, 12.5, 20.7 +19.3,5,"",2023-24,19.3,Quincy - Atlantic Middle,02430305, 2.3, 11.4, 2.8, 80.7, 0.0, 0.0, 2.8, 77.3, 22.7, 35.2 +9.3,5,"",2023-24,9.3,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 9.3, 0.0, 90.7, 0.0, 0.0, 0.0, 100.0, 0.0, 21.5 +1.5,1.5,"",2023-24,1.5,Quincy - Broad Meadows Middle,02430310, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 62.6, 37.4, 27.0 +5.0,5.0,"",2023-24,5.0,Quincy - Central Middle,02430315, 0.0, 2.5, 2.5, 95.1, 0.0, 0.0, 0.0, 68.4, 31.6, 40.5 +4.9,4.9,"",2023-24,4.9,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 4.9, 0.0, 95.1, 0.0, 0.0, 0.0, 92.2, 7.8, 20.5 +0.0,1,"",2023-24,0.0,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 31.3 +25.3,5,"",2023-24,25.3,Quincy - Francis W Parker,02430075, 0.0, 25.3, 0.0, 74.7, 0.0, 0.0, 0.0, 96.9, 3.1, 25.7 +2.7,2.7,"",2023-24,2.7,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 95.2, 4.8, 37.5 +5.8,5,"",2023-24,5.8,Quincy - Merrymount,02430060, 0.0, 5.8, 0.0, 94.2, 0.0, 0.0, 0.0, 94.2, 5.8, 20.7 +10.9,5,"",2023-24,10.9,Quincy - Montclair,02430065, 0.0, 10.9, 0.0, 89.1, 0.0, 0.0, 0.0, 96.0, 4.0, 27.5 +8.8,5,"",2023-24,8.8,Quincy - North Quincy High,02430510, 0.0, 4.1, 1.0, 91.1, 0.0, 0.0, 3.7, 57.6, 42.4, 96.9 +9.2,5,"",2023-24,9.2,Quincy - Point Webster Middle,02430325, 0.0, 9.2, 0.0, 90.8, 0.0, 0.0, 0.0, 83.2, 16.8, 32.7 +12.6,5,"",2023-24,12.6,Quincy - Quincy High,02430505, 1.7, 6.9, 3.5, 87.3, 0.0, 0.0, 0.5, 57.3, 42.7, 115.4 +0.6,1,"",2023-24,0.6,Quincy - Snug Harbor Community School,02430090, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 91.2, 8.8, 32.8 +5.6,5,"",2023-24,5.6,Quincy - South West Middle School,02430320, 0.0, 2.8, 2.8, 94.4, 0.0, 0.0, 0.0, 79.5, 20.5, 35.6 +0.0,1,"",2023-24,0.0,Quincy - Squantum,02430095, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 25.6 +0.0,1,"",2023-24,0.0,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 20.9 +4.4,4.4,"",2023-24,4.4,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 2.3, 2.1, 95.6, 0.0, 0.0, 0.0, 51.8, 48.2, 47.7 +13.1,5,"",2023-24,13.1,Randolph - Elizabeth G Lyons Elementary,02440020, 13.1, 0.0, 0.0, 86.9, 0.0, 0.0, 0.0, 76.4, 23.6, 21.2 +14.600000000000001,5,"",2023-24,14.600000000000001,Randolph - J F Kennedy Elementary,02440018, 5.4, 2.7, 5.4, 85.3, 0.0, 0.0, 1.1, 90.2, 9.8, 36.8 +14.8,5,"",2023-24,14.8,Randolph - Margaret L Donovan,02440015, 7.4, 3.7, 3.7, 85.2, 0.0, 0.0, 0.0, 96.7, 3.3, 27.0 +21.2,5,"",2023-24,21.2,Randolph - Martin E Young Elementary,02440040, 8.5, 4.2, 0.0, 78.8, 0.0, 0.0, 8.5, 92.5, 7.5, 23.6 +29.200000000000006,5,"",2023-24,29.200000000000006,Randolph - Randolph Community Middle,02440410, 20.8, 2.1, 0.0, 70.7, 2.1, 2.1, 2.1, 60.5, 39.5, 46.9 +12.600000000000001,5,"",2023-24,12.600000000000001,Randolph - Randolph High,02440505, 8.1, 2.7, 1.8, 87.4, 0.0, 0.0, 0.0, 65.3, 34.7, 46.7 +0.0,1,"",2023-24,0.0,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.6 +3.7,3.7,"",2023-24,3.7,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 73.8, 26.2, 20.0 +0.0,1,"",2023-24,0.0,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.9, 14.1, 14.2 +0.0,1,"",2023-24,0.0,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 24.0 +4.9,4.9,"",2023-24,4.9,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 95.1, 0.0, 0.0, 4.9, 91.9, 8.1, 20.5 +0.0,1,"",2023-24,0.0,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 8.8 +1.5,1.5,"",2023-24,1.5,Reading - Reading Memorial High,02460505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 59.5, 40.5, 66.3 +2.6,2.6,"",2023-24,2.6,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 65.0, 35.0, 26.5 +0.0,1,"",2023-24,0.0,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 13.6 +7.1,5,"",2023-24,7.1,Revere - A. C. Whelan Elementary School,02480003, 1.8, 0.0, 5.3, 92.9, 0.0, 0.0, 0.0, 92.4, 7.6, 56.7 +6.9,5,"",2023-24,6.9,Revere - Abraham Lincoln,02480025, 0.0, 2.0, 4.9, 93.2, 0.0, 0.0, 0.0, 94.1, 5.9, 51.2 +2.8,2.8,"",2023-24,2.8,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 86.2, 13.8, 35.6 +9.7,5,"",2023-24,9.7,Revere - CityLab Innovation High School,02480520, 0.0, 9.7, 0.0, 90.3, 0.0, 0.0, 0.0, 37.6, 62.4, 9.0 +10.0,5,"",2023-24,10.0,Revere - Garfield Elementary School,02480056, 0.0, 3.3, 6.7, 90.0, 0.0, 0.0, 0.0, 96.7, 3.3, 60.1 +28.2,5,"",2023-24,28.2,Revere - Garfield Middle School,02480057, 2.3, 9.1, 14.5, 71.9, 0.0, 0.0, 2.3, 58.5, 41.5, 44.1 +2.7,2.7,"",2023-24,2.7,Revere - Paul Revere,02480050, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 91.1, 8.9, 37.5 +16.799999999999997,5,"",2023-24,16.799999999999997,Revere - Revere High,02480505, 4.0, 3.6, 8.2, 83.1, 0.0, 0.0, 1.0, 53.7, 46.3, 140.5 +5.800000000000001,5,"",2023-24,5.800000000000001,Revere - Rumney Marsh Academy,02480014, 0.0, 2.1, 3.7, 94.3, 0.0, 0.0, 0.0, 63.2, 36.8, 48.6 +0.0,1,"",2023-24,0.0,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 59.6 +5.8,5,"",2023-24,5.8,Revere - Susan B. Anthony Middle School,02480305, 2.9, 2.9, 0.0, 94.2, 0.0, 0.0, 0.0, 59.1, 40.9, 34.4 +0.0,1,"",2023-24,0.0,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.6, 17.4, 19.4 +10.6,5,"",2023-24,10.6,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.8, 2.0, 5.8, 89.4, 0.0, 0.0, 0.0, 63.5, 36.5, 50.2 +0.0,1,"",2023-24,0.0,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.9, 28.1, 19.2 +0.0,1,"",2023-24,0.0,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 30.1 +5.1,5,"",2023-24,5.1,Rockland - John W Rogers Middle,02510305, 3.4, 0.0, 1.7, 94.9, 0.0, 0.0, 0.0, 79.0, 21.0, 59.2 +2.2,2.2,"",2023-24,2.2,Rockland - Phelps Elementary School,02510060, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 95.6, 4.4, 45.2 +5.8,5,"",2023-24,5.8,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 100.0, 0.0, 17.3 +11.2,5,"",2023-24,11.2,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 9.1, 88.8, 0.0, 0.0, 2.1, 56.2, 43.8, 48.1 +0.0,1,"",2023-24,0.0,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 18.0 +0.0,1,"",2023-24,0.0,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.5, 46.5, 22.1 +0.0,1,"",2023-24,0.0,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.4, 34.6, 17.8 +11.0,5,"",2023-24,11.0,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 11.0, 89.0, 0.0, 0.0, 0.0, 72.6, 27.4, 9.1 +43.099999999999994,5,"",2023-24,43.099999999999994,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 17.6, 3.0, 16.2, 56.9, 0.0, 0.0, 6.3, 46.6, 53.4, 45.0 +14.099999999999998,5,"",2023-24,14.099999999999998,Salem - Bates,02580003, 5.1, 4.8, 4.2, 86.0, 0.0, 0.0, 0.0, 77.7, 22.3, 23.7 +44.4,5,"",2023-24,44.4,Salem - Bentley Academy Innovation School,02580010, 0.5, 0.4, 43.5, 55.7, 0.0, 0.0, 0.0, 94.6, 5.4, 20.7 +12.5,5,"",2023-24,12.5,Salem - Carlton,02580015, 12.1, 0.4, 0.0, 87.5, 0.0, 0.0, 0.0, 88.0, 12.0, 18.7 +24.9,5,"",2023-24,24.9,Salem - Collins Middle,02580305, 4.2, 5.6, 15.1, 75.1, 0.0, 0.0, 0.0, 62.5, 37.5, 49.8 +11.5,5,"",2023-24,11.5,Salem - Horace Mann Laboratory,02580030, 1.0, 5.8, 4.7, 88.5, 0.0, 0.0, 0.0, 88.0, 12.0, 19.5 +13.7,5,"",2023-24,13.7,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 13.7, 86.3, 0.0, 0.0, 0.0, 79.6, 20.4, 4.1 +0.0,1,"",2023-24,0.0,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +18.5,5,"",2023-24,18.5,Salem - Salem High,02580505, 4.2, 3.3, 11.0, 81.4, 0.0, 0.0, 0.0, 64.8, 35.1, 89.6 +0.0,1,"",2023-24,0.0,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.2, 27.8, 4.0 +5.4,5,"",2023-24,5.4,Salem - Saltonstall School,02580050, 0.3, 0.7, 4.4, 94.5, 0.0, 0.0, 0.0, 81.5, 18.5, 22.5 +8.899999999999999,5,"",2023-24,8.899999999999999,Salem - Witchcraft Heights,02580070, 1.4, 0.4, 7.1, 91.1, 0.0, 0.0, 0.0, 91.0, 9.0, 28.2 +20.1,5,"",2023-24,20.1,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 2.5, 17.6, 79.9, 0.0, 0.0, 0.0, 58.3, 41.7, 33.7 +0.0,1,"",2023-24,0.0,Sandwich - Forestdale School,02610002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 31.1 +2.7,2.7,"",2023-24,2.7,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 91.9, 8.1, 37.2 +2.6,2.6,"",2023-24,2.6,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 60.8, 39.2, 77.1 +0.0,1,"",2023-24,0.0,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 44.5 +6.0,5,"",2023-24,6.0,Saugus - Saugus High,02620505, 2.0, 0.0, 4.0, 94.0, 0.0, 0.0, 0.0, 42.2, 57.8, 50.1 +0.0,1,"",2023-24,0.0,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.5, 40.5, 41.1 +3.7,3.7,"",2023-24,3.7,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 96.3, 0.0, 3.7, 0.0, 100.0, 0.0, 26.8 +0.0,1,"",2023-24,0.0,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 6.1 +0.0,1,"",2023-24,0.0,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.4, 26.6, 21.4 +2.3,2.3,"",2023-24,2.3,Scituate - Gates Middle School,02640305, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 77.9, 22.1, 44.2 +0.0,1,"",2023-24,0.0,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.1, 18.9, 12.2 +0.0,1,"",2023-24,0.0,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 21.0 +1.8,1.8,"",2023-24,1.8,Scituate - Scituate High School,02640505, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 62.9, 37.1, 54.4 +0.0,1,"",2023-24,0.0,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 23.5 +5.2,5,"",2023-24,5.2,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 2.6, 2.6, 0.0, 94.7, 0.0, 0.0, 0.0, 72.1, 27.9, 38.0 +0.0,1,"",2023-24,0.0,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 27.2 +2.9,2.9,"",2023-24,2.9,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 97.1, 0.0, 0.0, 2.9, 88.3, 11.7, 34.3 +2.4,2.4,"",2023-24,2.4,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 60.0, 40.0, 41.4 +0.0,1,"",2023-24,0.0,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 1.0 +3.5,3.5,"",2023-24,3.5,Sharon - Cottage Street,02660005, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 93.4, 6.6, 28.2 +3.3,3.3,"",2023-24,3.3,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 96.7, 0.0, 0.0, 3.3, 91.7, 8.3, 29.9 +3.2,3.2,"",2023-24,3.2,Sharon - Heights Elementary,02660015, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 91.4, 8.6, 30.8 +0.0,1,"",2023-24,0.0,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 4.0 +6.1,5,"",2023-24,6.1,Sharon - Sharon High,02660505, 1.0, 5.1, 0.0, 93.9, 0.0, 0.0, 0.0, 69.4, 30.6, 98.2 +4.1,4.1,"",2023-24,4.1,Sharon - Sharon Middle,02660305, 0.0, 2.7, 0.0, 95.9, 0.0, 1.4, 0.0, 85.5, 14.5, 73.1 +1.3,1.3,"",2023-24,1.3,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 50.9, 49.1, 99.0 +6.6,5,"",2023-24,6.6,Sherborn - Pine Hill,02690010, 2.8, 0.0, 3.8, 93.4, 0.0, 0.0, 0.0, 93.2, 6.8, 26.3 +0.0,1,"",2023-24,0.0,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 16.2 +0.0,1,"",2023-24,0.0,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 28.7 +6.9,5,"",2023-24,6.9,Shrewsbury - Major Howard W. Beal School,02710005, 2.9, 1.4, 2.6, 93.1, 0.0, 0.0, 0.0, 97.1, 2.9, 34.6 +7.8,5,"",2023-24,7.8,Shrewsbury - Oak Middle School,02710030, 0.0, 3.3, 3.0, 92.2, 0.0, 1.5, 0.0, 67.7, 32.3, 65.8 +0.0,1,"",2023-24,0.0,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.0 +6.199999999999999,5,"",2023-24,6.199999999999999,Shrewsbury - Sherwood Middle School,02710305, 1.6, 1.4, 1.6, 93.8, 0.0, 1.6, 0.0, 84.4, 15.6, 61.7 +6.300000000000001,5,"",2023-24,6.300000000000001,Shrewsbury - Shrewsbury High School,02710505, 0.9, 1.9, 2.6, 93.8, 0.0, 0.9, 0.0, 69.0, 31.0, 116.3 +0.0,1,"",2023-24,0.0,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 16.2 +5.8,5,"",2023-24,5.8,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 94.2, 0.0, 0.0, 5.8, 89.5, 10.5, 17.2 +8.8,5,"",2023-24,8.8,Shutesbury - Shutesbury Elementary,02720005, 0.0, 8.8, 0.0, 91.2, 0.0, 0.0, 0.0, 82.5, 17.5, 11.4 +1.6,1.6,"",2023-24,1.6,Silver Lake - Silver Lake Regional High,07600505, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 64.9, 35.1, 64.4 +0.0,1,"",2023-24,0.0,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 57.6, 42.4, 35.4 +3.8,3.8,"",2023-24,3.8,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.5, 0.0, 3.3, 96.1, 0.0, 0.0, 0.0, 59.5, 40.5, 29.9 +0.0,1,"",2023-24,0.0,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 8.3 +0.0,1,"",2023-24,0.0,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 23.3 +2.4,2.4,"",2023-24,2.4,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 62.9, 37.1, 31.0 +6.6,5,"",2023-24,6.6,Somerset - South,02730015, 0.0, 6.6, 0.0, 93.4, 0.0, 0.0, 0.0, 100.0, 0.0, 4.5 +3.0,3.0,"",2023-24,3.0,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 56.8, 43.2, 66.6 +7.4,5,"",2023-24,7.4,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 7.4, 92.6, 0.0, 0.0, 0.0, 84.6, 15.4, 20.3 +30.1,5,"",2023-24,30.1,Somerville - Arthur D Healey,02740075, 11.1, 3.1, 15.9, 69.9, 0.0, 0.0, 0.0, 78.3, 21.7, 12.6 +3.6,3.6,"",2023-24,3.6,Somerville - Benjamin G Brown,02740015, 3.6, 0.0, 0.0, 96.4, 0.0, 0.0, 0.0, 78.6, 21.4, 14.0 +4.3,4.3,"",2023-24,4.3,Somerville - Capuano Early Childhood Center,02740005, 0.0, 4.3, 0.0, 95.7, 0.0, 0.0, 0.0, 95.7, 4.3, 23.1 +19.8,5,"",2023-24,19.8,Somerville - E Somerville Community,02740111, 0.0, 0.2, 19.6, 80.1, 0.0, 0.0, 0.0, 78.8, 21.2, 28.5 +5.9,5,"",2023-24,5.9,Somerville - Full Circle High School,02740510, 0.0, 0.0, 5.9, 94.1, 0.0, 0.0, 0.0, 79.4, 20.6, 8.5 +15.9,5,"",2023-24,15.9,Somerville - John F Kennedy,02740083, 0.0, 4.0, 7.9, 84.1, 0.0, 0.0, 4.0, 76.2, 23.8, 25.2 +27.299999999999997,5,"",2023-24,27.299999999999997,Somerville - Next Wave Junior High,02740410, 15.6, 0.0, 11.7, 72.8, 0.0, 0.0, 0.0, 63.3, 36.7, 6.4 +18.0,5,"",2023-24,18.0,Somerville - Somerville High,02740505, 3.9, 2.0, 11.0, 82.1, 0.0, 0.0, 1.1, 53.3, 45.6, 93.3 +9.2,5,"",2023-24,9.2,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 9.2, 90.8, 0.0, 0.0, 0.0, 73.1, 26.9, 17.5 +10.8,5,"",2023-24,10.8,Somerville - Winter Hill Community,02740120, 2.7, 2.7, 5.4, 89.3, 0.0, 0.0, 0.0, 89.5, 10.5, 37.2 +0.0,1,"",2023-24,0.0,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.9, 22.1, 34.3 +4.7,4.7,"",2023-24,4.7,South Hadley - Mosier,02780020, 0.0, 4.7, 0.0, 95.3, 0.0, 0.0, 0.0, 90.7, 9.3, 21.5 +0.0,1,"",2023-24,0.0,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 23.0 +3.6,3.6,"",2023-24,3.6,South Hadley - South Hadley High,02780505, 0.0, 0.5, 3.1, 96.4, 0.0, 0.0, 0.0, 58.4, 41.6, 42.4 +7.800000000000001,5,"",2023-24,7.800000000000001,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.7, 1.7, 4.4, 92.2, 0.0, 0.0, 0.0, 54.1, 45.9, 57.7 +13.4,5,"",2023-24,13.4,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 7.5, 5.9, 0.0, 86.6, 0.0, 0.0, 0.0, 68.3, 31.7, 32.6 +4.1,4.1,"",2023-24,4.1,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 43.6, 56.4, 49.2 +0.0,1,"",2023-24,0.0,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.6, 15.4, 25.9 +0.0,1,"",2023-24,0.0,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 15.5 +0.0,1,"",2023-24,0.0,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 12.0 +0.0,1,"",2023-24,0.0,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 24.5 +5.6,5,"",2023-24,5.6,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 72.1, 27.9, 35.7 +10.0,5,"",2023-24,10.0,Southbridge - Charlton Street,02770005, 5.0, 0.0, 5.0, 90.0, 0.0, 0.0, 0.0, 80.0, 20.0, 20.0 +13.5,5,"",2023-24,13.5,Southbridge - Eastford Road,02770010, 5.4, 0.0, 8.1, 86.5, 0.0, 0.0, 0.0, 89.2, 10.8, 18.5 +36.4,5,"",2023-24,36.4,Southbridge - Southbridge Academy,02770525, 18.2, 0.0, 18.2, 63.6, 0.0, 0.0, 0.0, 27.3, 72.7, 5.5 +13.6,5,"",2023-24,13.6,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 13.6, 86.4, 0.0, 0.0, 0.0, 53.3, 46.7, 33.0 +30.0,5,"",2023-24,30.0,Southbridge - Southbridge Middle School,02770315, 6.3, 3.1, 20.6, 70.0, 0.0, 0.0, 0.0, 59.1, 40.9, 32.0 +5.8,5,"",2023-24,5.8,Southbridge - West Street,02770020, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 94.2, 5.8, 17.3 +12.999999999999998,5,"",2023-24,12.999999999999998,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 7.1, 3.5, 1.2, 87.1, 0.0, 0.0, 1.2, 59.4, 40.6, 85.0 +3.9,3.9,"",2023-24,3.9,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 2.5, 1.4, 96.0, 0.0, 0.0, 0.0, 52.3, 47.7, 39.6 +2.8,2.8,"",2023-24,2.8,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 80.3, 19.7, 7.1 +0.0,1,"",2023-24,0.0,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 1.0 +2.8,2.8,"",2023-24,2.8,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 90.9, 9.1, 18.7 +17.8,5,"",2023-24,17.8,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 17.8, 0.0, 0.0, 82.2, 0.0, 0.0, 0.0, 49.6, 50.4, 114.9 +3.8,3.8,"",2023-24,3.8,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 86.5, 13.5, 26.6 +8.1,5,"",2023-24,8.1,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 6.1, 91.8, 0.0, 0.0, 2.0, 51.0, 49.0, 49.0 +0.0,1,"",2023-24,0.0,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 23.8 +0.0,1,"",2023-24,0.0,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.3, 45.7, 24.4 +0.0,1,"",2023-24,0.0,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.0, 12.0, 16.6 +3.7,3.7,"",2023-24,3.7,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 96.3, 3.7, 0.0, 0.0, 70.3, 29.7, 26.9 +0.0,1,"",2023-24,0.0,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 26.7 +14.6,5,"",2023-24,14.6,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 7.3, 0.0, 7.3, 85.4, 0.0, 0.0, 0.0, 85.3, 14.7, 27.3 +4.8,4.8,"",2023-24,4.8,Springfield - Alice B Beal Elementary,02810175, 0.0, 4.8, 0.0, 95.2, 0.0, 0.0, 0.0, 95.2, 4.8, 21.0 +6.7,5,"",2023-24,6.7,Springfield - Arthur T Talmadge,02810165, 0.0, 6.7, 0.0, 93.3, 0.0, 0.0, 0.0, 100.0, 0.0, 15.0 +19.9,5,"",2023-24,19.9,Springfield - Balliet Preschool,02810003, 19.9, 0.0, 0.0, 80.1, 0.0, 0.0, 0.0, 100.0, 0.0, 10.1 +25.0,5,"",2023-24,25.0,Springfield - Benjamin Swan Elementary,02810085, 16.7, 0.0, 8.3, 75.0, 0.0, 0.0, 0.0, 91.7, 8.3, 24.0 +27.299999999999997,5,"",2023-24,27.299999999999997,Springfield - Brightwood,02810025, 0.0, 0.0, 19.7, 72.7, 0.0, 0.0, 7.6, 80.9, 19.1, 26.2 +58.599999999999994,5,"",2023-24,58.599999999999994,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 35.1, 0.0, 17.7, 41.4, 0.0, 0.0, 5.8, 55.7, 44.3, 17.3 +38.0,5,"",2023-24,38.0,Springfield - Conservatory of the Arts,02810475, 17.5, 0.0, 17.1, 62.0, 0.0, 0.0, 3.4, 75.9, 24.1, 29.2 +18.599999999999998,5,"",2023-24,18.599999999999998,Springfield - Daniel B Brunton,02810035, 4.8, 0.0, 9.1, 81.5, 0.0, 0.0, 4.7, 90.9, 9.1, 22.1 +38.9,5,"",2023-24,38.9,Springfield - Early Childhood Education Center,02810001, 33.3, 0.0, 5.6, 61.1, 0.0, 0.0, 0.0, 94.4, 5.6, 18.0 +21.4,5,"",2023-24,21.4,Springfield - Edward P. Boland School,02810010, 7.2, 2.3, 11.9, 78.6, 0.0, 0.0, 0.0, 81.5, 18.5, 43.3 +35.3,5,"",2023-24,35.3,Springfield - Elias Brookings,02810030, 25.3, 10.0, 0.0, 64.7, 0.0, 0.0, 0.0, 94.8, 5.2, 20.1 +64.89999999999999,5,"",2023-24,64.89999999999999,Springfield - Emergence Academy,02810318, 17.4, 8.7, 38.8, 35.0, 0.0, 0.0, 0.0, 60.4, 39.6, 23.0 +18.5,5,"",2023-24,18.5,Springfield - Forest Park Middle,02810325, 7.4, 0.0, 11.1, 81.5, 0.0, 0.0, 0.0, 74.1, 25.9, 27.0 +46.599999999999994,5,"",2023-24,46.599999999999994,Springfield - Frank H Freedman,02810075, 33.3, 0.0, 13.3, 53.3, 0.0, 0.0, 0.0, 93.3, 6.7, 15.0 +10.8,5,"",2023-24,10.8,Springfield - Frederick Harris,02810080, 2.7, 0.0, 8.1, 89.2, 0.0, 0.0, 0.0, 89.2, 10.8, 37.0 +100.0,5,"",2023-24,100.0,Springfield - Gateway to College at Holyoke Community College,02810575, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 +100.0,5,"",2023-24,100.0,Springfield - Gateway to College at Springfield Technical Community College,02810580, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 +16.8,5,"",2023-24,16.8,Springfield - German Gerena Community School,02810195, 2.4, 0.0, 14.4, 83.2, 0.0, 0.0, 0.0, 92.9, 7.1, 42.3 +15.8,5,"",2023-24,15.8,Springfield - Glenwood,02810065, 15.8, 0.0, 0.0, 84.2, 0.0, 0.0, 0.0, 100.0, 0.0, 19.0 +0.3,1,"",2023-24,0.3,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 94.3, 5.7, 17.7 +52.400000000000006,5,"",2023-24,52.400000000000006,Springfield - High School Of Commerce,02810510, 31.1, 3.6, 17.7, 47.5, 0.0, 0.0, 0.0, 54.1, 45.0, 110.4 +12.299999999999999,5,"",2023-24,12.299999999999999,Springfield - Hiram L Dorman,02810050, 11.7, 0.0, 0.6, 87.7, 0.0, 0.0, 0.0, 88.3, 11.7, 17.1 +56.6,5,"",2023-24,56.6,Springfield - Impact Prep at Chestnut,02810366, 44.0, 0.0, 12.6, 43.4, 0.0, 0.0, 0.0, 84.3, 15.7, 15.9 +8.3,5,"",2023-24,8.3,Springfield - Indian Orchard Elementary,02810100, 2.8, 0.0, 5.5, 91.7, 0.0, 0.0, 0.0, 88.9, 11.1, 36.1 +49.0,5,"",2023-24,49.0,Springfield - John F Kennedy Middle,02810328, 34.6, 0.0, 8.7, 51.1, 0.0, 0.0, 5.7, 60.1, 39.9, 35.3 +34.4,5,"",2023-24,34.4,Springfield - John J Duggan Academy,02810320, 17.1, 1.4, 14.4, 65.6, 0.0, 0.0, 1.5, 65.8, 34.2, 70.5 +24.0,5,"",2023-24,24.0,Springfield - Kensington International School,02810110, 4.0, 0.0, 20.0, 76.0, 0.0, 0.0, 0.0, 88.0, 12.0, 25.1 +55.60000000000001,5,"",2023-24,55.60000000000001,Springfield - Kiley Academy,02810316, 42.7, 0.0, 6.5, 44.3, 3.2, 0.0, 3.2, 65.3, 34.7, 30.9 +39.099999999999994,5,"",2023-24,39.099999999999994,Springfield - Kiley Prep,02810315, 34.3, 0.0, 4.8, 60.8, 0.0, 0.0, 0.0, 69.2, 30.8, 20.7 +11.8,5,"",2023-24,11.8,Springfield - Liberty,02810115, 5.9, 0.0, 5.9, 88.2, 0.0, 0.0, 0.0, 88.2, 11.8, 16.9 +0.0,1,"",2023-24,0.0,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 36.7, 63.3, 3.3 +36.6,5,"",2023-24,36.6,Springfield - Lincoln,02810120, 16.6, 0.0, 20.0, 63.4, 0.0, 0.0, 0.0, 86.7, 13.3, 30.1 +36.2,5,"",2023-24,36.2,Springfield - Margaret C Ells,02810060, 22.0, 0.0, 14.2, 63.8, 0.0, 0.0, 0.0, 92.9, 7.1, 14.1 +11.7,5,"",2023-24,11.7,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 0.0, 11.7, 88.3, 0.0, 0.0, 0.0, 93.9, 6.1, 17.1 +39.0,5,"",2023-24,39.0,Springfield - Mary M Lynch,02810140, 19.2, 6.4, 13.1, 60.9, 0.0, 0.0, 0.3, 74.4, 25.6, 15.6 +21.599999999999998,5,"",2023-24,21.599999999999998,Springfield - Mary M Walsh,02810155, 4.3, 4.3, 8.7, 78.3, 0.0, 0.0, 4.3, 100.0, 0.0, 23.0 +30.4,5,"",2023-24,30.4,Springfield - Mary O Pottenger,02810145, 13.0, 0.0, 17.4, 69.6, 0.0, 0.0, 0.0, 100.0, 0.0, 23.0 +12.7,5,"",2023-24,12.7,Springfield - Milton Bradley School,02810023, 8.4, 0.0, 4.3, 87.3, 0.0, 0.0, 0.0, 95.9, 4.1, 24.4 +32.400000000000006,5,"",2023-24,32.400000000000006,Springfield - Rebecca M Johnson,02810055, 21.6, 0.0, 10.8, 67.6, 0.0, 0.0, 0.0, 83.8, 16.2, 37.1 +43.39999999999999,5,"",2023-24,43.39999999999999,Springfield - Rise Academy at Van Sickle,02810480, 19.4, 0.0, 19.2, 56.6, 0.0, 0.0, 4.8, 63.6, 36.4, 20.9 +25.599999999999998,5,"",2023-24,25.599999999999998,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 8.2, 5.4, 10.2, 74.4, 0.0, 0.0, 1.8, 45.7, 54.3, 110.2 +37.1,5,"",2023-24,37.1,Springfield - STEM Middle Academy,02810350, 9.9, 0.0, 27.2, 62.9, 0.0, 0.0, 0.0, 67.6, 32.4, 22.3 +21.7,5,"",2023-24,21.7,Springfield - Samuel Bowles,02810020, 8.7, 4.3, 8.7, 78.3, 0.0, 0.0, 0.0, 87.0, 13.0, 23.1 +52.9,5,"",2023-24,52.9,Springfield - South End Middle School,02810355, 23.5, 5.9, 17.6, 47.1, 0.0, 0.0, 5.9, 88.2, 11.8, 17.0 +22.799999999999997,5,"",2023-24,22.799999999999997,Springfield - Springfield Central High,02810500, 10.1, 3.2, 7.6, 77.2, 0.0, 0.0, 1.9, 50.9, 49.1, 158.0 +34.9,5,"",2023-24,34.9,Springfield - Springfield High School,02810570, 23.3, 0.0, 11.6, 65.2, 0.0, 0.0, 0.0, 59.8, 40.2, 17.3 +30.2,5,"",2023-24,30.2,Springfield - Springfield High School of Science and Technology,02810530, 16.5, 1.2, 11.5, 69.8, 0.0, 0.0, 1.0, 54.8, 45.2, 82.9 +6.1,5,"",2023-24,6.1,Springfield - Springfield International Academy at Johnson,02810215, 6.1, 0.0, 0.0, 93.9, 0.0, 0.0, 0.0, 100.0, 0.0, 2.3 +34.5,5,"",2023-24,34.5,Springfield - Springfield International Academy at Sci-Tech,02810700, 5.1, 0.0, 27.2, 65.5, 0.0, 0.0, 2.2, 71.8, 28.2, 6.4 +65.2,5,"",2023-24,65.2,Springfield - Springfield Legacy Academy,02810317, 13.0, 4.3, 47.9, 34.7, 0.0, 0.0, 0.0, 65.1, 34.9, 23.1 +47.4,5,"",2023-24,47.4,Springfield - Springfield Middle School,02810360, 26.7, 0.0, 20.7, 52.6, 0.0, 0.0, 0.0, 52.6, 47.4, 4.8 +30.0,5,"",2023-24,30.0,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 30.0, 70.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +69.4,5,"",2023-24,69.4,Springfield - Springfield Public Day High School,02810550, 39.2, 0.0, 30.2, 30.7, 0.0, 0.0, 0.0, 50.4, 49.6, 10.3 +9.2,5,"",2023-24,9.2,Springfield - Springfield Public Day Middle School,02810345, 9.2, 0.0, 0.0, 90.8, 0.0, 0.0, 0.0, 80.5, 19.5, 8.8 +73.6,5,"",2023-24,73.6,Springfield - Springfield Realization Academy,02810335, 26.2, 0.0, 47.4, 26.4, 0.0, 0.0, 0.0, 63.1, 36.9, 19.1 +30.2,5,"",2023-24,30.2,Springfield - Springfield Transition Academy,02810675, 30.2, 0.0, 0.0, 69.8, 0.0, 0.0, 0.0, 55.8, 44.2, 7.2 +16.8,5,"",2023-24,16.8,Springfield - Sumner Avenue,02810160, 8.3, 2.8, 5.7, 83.2, 0.0, 0.0, 0.0, 88.9, 11.1, 36.1 +33.900000000000006,5,"",2023-24,33.900000000000006,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 18.6, 0.0, 11.1, 66.1, 0.0, 2.1, 2.1, 74.6, 25.4, 47.4 +0.0,1,"",2023-24,0.0,Springfield - The Springfield Virtual School,02810705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +27.6,5,"",2023-24,27.6,Springfield - Thomas M Balliet,02810015, 0.0, 0.0, 27.6, 72.4, 0.0, 0.0, 0.0, 91.0, 9.0, 11.1 +29.4,5,"",2023-24,29.4,Springfield - Van Sickle Academy,02810485, 4.2, 0.0, 25.2, 70.7, 0.0, 0.0, 0.0, 75.1, 24.9, 24.1 +17.700000000000003,5,"",2023-24,17.700000000000003,Springfield - Warner,02810180, 4.4, 4.4, 8.9, 82.2, 0.0, 0.0, 0.0, 91.1, 8.9, 22.5 +16.7,5,"",2023-24,16.7,Springfield - Washington,02810185, 9.6, 0.0, 7.1, 83.3, 0.0, 0.0, 0.0, 96.8, 3.2, 31.2 +8.6,5,"",2023-24,8.6,Springfield - White Street,02810190, 4.3, 0.0, 4.3, 91.3, 0.0, 0.0, 0.0, 100.0, 0.0, 23.0 +24.1,5,"",2023-24,24.1,Springfield - William N. DeBerry,02810045, 16.0, 0.0, 8.1, 75.9, 0.0, 0.0, 0.0, 88.1, 11.9, 25.3 +23.9,5,"",2023-24,23.9,Springfield International Charter (District) - Springfield International Charter School,04410505, 11.1, 2.8, 10.0, 76.2, 0.0, 0.0, 0.0, 64.3, 35.7, 79.1 +85.8,5,"",2023-24,85.8,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 42.9, 0.0, 42.9, 14.2, 0.0, 0.0, 0.0, 57.1, 42.9, 2.3 +0.0,1,"",2023-24,0.0,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.5, 1.5, 19.8 +3.6,3.6,"",2023-24,3.6,Stoneham - Robin Hood,02840025, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 92.8, 7.2, 27.8 +4.6,4.6,"",2023-24,4.6,Stoneham - South,02840030, 0.0, 0.0, 0.0, 95.4, 0.0, 0.0, 4.6, 86.2, 13.8, 21.7 +9.1,5,"",2023-24,9.1,Stoneham - Stoneham Central Middle School,02840405, 1.5, 1.5, 1.5, 90.9, 0.0, 0.0, 4.6, 63.5, 36.5, 65.7 +2.2,2.2,"",2023-24,2.2,Stoneham - Stoneham High,02840505, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 66.9, 33.1, 44.6 +0.0,1,"",2023-24,0.0,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.0 +5.1,5,"",2023-24,5.1,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 5.1, 94.9, 0.0, 0.0, 0.0, 74.3, 25.7, 19.5 +0.0,1,"",2023-24,0.0,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 23.6 +0.0,1,"",2023-24,0.0,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 29.4 +11.399999999999999,5,"",2023-24,11.399999999999999,Stoughton - O'Donnell Middle School,02850405, 6.9, 1.7, 2.8, 88.7, 0.0, 0.0, 0.0, 83.9, 16.1, 72.5 +0.0,1,"",2023-24,0.0,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 19.6 +0.0,1,"",2023-24,0.0,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 19.6 +8.9,5,"",2023-24,8.9,Stoughton - Stoughton High,02850505, 2.9, 2.4, 3.6, 91.1, 0.0, 0.0, 0.0, 65.3, 34.7, 102.5 +0.0,1,"",2023-24,0.0,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 46.6 +5.5,5,"",2023-24,5.5,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 1.7, 3.7, 94.5, 0.0, 0.0, 0.1, 61.5, 38.5, 86.9 +6.3999999999999995,5,"",2023-24,6.3999999999999995,Sudbury - Ephraim Curtis Middle,02880305, 1.7, 0.0, 3.4, 93.6, 0.0, 0.0, 1.3, 60.5, 39.5, 59.7 +7.699999999999999,5,"",2023-24,7.699999999999999,Sudbury - General John Nixon Elementary,02880025, 4.8, 0.0, 2.9, 92.3, 0.0, 0.0, 0.0, 84.6, 15.4, 20.8 +7.1,5,"",2023-24,7.1,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 3.9, 92.9, 0.0, 0.0, 3.2, 87.4, 12.6, 25.3 +2.6,2.6,"",2023-24,2.6,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 87.1, 12.9, 23.2 +3.0,3.0,"",2023-24,3.0,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 84.3, 15.7, 33.1 +5.6,5,"",2023-24,5.6,Sunderland - Sunderland Elementary,02890005, 0.0, 5.6, 0.0, 94.4, 0.0, 0.0, 0.0, 89.9, 10.1, 17.9 +0.0,1,"",2023-24,0.0,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 19.8 +0.0,1,"",2023-24,0.0,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 16.6 +0.0,1,"",2023-24,0.0,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.2, 46.8, 28.6 +0.0,1,"",2023-24,0.0,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.5, 35.5, 20.3 +0.0,1,"",2023-24,0.0,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 14.3 +0.0,1,"",2023-24,0.0,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 20.8 +0.0,1,"",2023-24,0.0,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.6, 24.4, 10.2 +6.3,5,"",2023-24,6.3,Swampscott - Swampscott High,02910505, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 56.5, 43.5, 48.0 +2.0,2.0,"",2023-24,2.0,Swampscott - Swampscott Middle,02910305, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 85.7, 14.3, 50.2 +0.0,1,"",2023-24,0.0,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 12.9 +0.0,1,"",2023-24,0.0,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 14.6 +2.3,2.3,"",2023-24,2.3,Swansea - Joseph Case High,02920505, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 46.0, 54.0, 42.9 +3.1,3.1,"",2023-24,3.1,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 63.9, 36.1, 32.6 +0.0,1,"",2023-24,0.0,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.2, 18.8, 12.0 +0.0,1,"",2023-24,0.0,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.1, 10.9, 14.9 +0.0,1,"",2023-24,0.0,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,"",2023-24,0.0,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.2, 26.8, 41.8 +0.6,1,"",2023-24,0.6,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 55.1, 44.9, 81.1 +9.2,5,"",2023-24,9.2,Tantasqua - Tantasqua Regional Vocational,07700605, 9.2, 0.0, 0.0, 90.8, 0.0, 0.0, 0.0, 31.4, 68.6, 10.8 +0.0,1,"",2023-24,0.0,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.2, 26.8, 31.0 +0.0,1,"",2023-24,0.0,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 20.2 +0.0,1,"",2023-24,0.0,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 8.2 +0.0,1,"",2023-24,0.0,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +4.6,4.6,"",2023-24,4.6,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 87.3, 12.7, 21.5 +37.5,5,"",2023-24,37.5,Taunton - H H Galligan,02930057, 25.0, 0.0, 12.5, 62.5, 0.0, 0.0, 0.0, 84.4, 15.6, 8.0 +6.4,5,"",2023-24,6.4,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 3.2, 3.2, 93.7, 0.0, 0.0, 0.0, 91.1, 8.9, 31.7 +4.8,4.8,"",2023-24,4.8,Taunton - John F Parker Middle,02930305, 2.4, 0.0, 0.0, 95.1, 0.0, 0.0, 2.4, 78.9, 21.1, 20.5 +0.0,1,"",2023-24,0.0,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.1, 7.8, 19.4 +0.0,1,"",2023-24,0.0,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.2, 13.6, 31.2 +0.0,1,"",2023-24,0.0,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 42.3, 57.7, 3.0 +8.1,5,"",2023-24,8.1,Taunton - Taunton High,02930505, 1.9, 1.0, 3.1, 92.0, 0.0, 0.0, 2.1, 54.7, 45.3, 146.2 +0.0,1,"",2023-24,0.0,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +2.4,2.4,"",2023-24,2.4,Tewksbury - Center Elementary School,02950030, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 97.6, 2.4, 41.0 +0.0,1,"",2023-24,0.0,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 19.5 +0.0,1,"",2023-24,0.0,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.8, 21.2, 36.4 +2.9,2.9,"",2023-24,2.9,Tewksbury - John W. Wynn Middle,02950305, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 70.9, 29.1, 34.9 +0.0,1,"",2023-24,0.0,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 22.5 +1.7,1.7,"",2023-24,1.7,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 56.8, 41.5, 58.8 +8.7,5,"",2023-24,8.7,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 8.7, 91.3, 0.0, 0.0, 0.0, 82.7, 17.3, 34.6 +0.0,1,"",2023-24,0.0,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 19.6 +3.4,3.4,"",2023-24,3.4,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 96.6, 3.4, 22.3 +1.4,1.4,"",2023-24,1.4,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 59.5, 40.5, 72.4 +0.0,1,"",2023-24,0.0,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.6, 18.4, 27.2 +0.0,1,"",2023-24,0.0,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 28.2 +3.9,3.9,"",2023-24,3.9,Triton - Salisbury Elementary,07730015, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 84.6, 15.4, 25.9 +4.2,4.2,"",2023-24,4.2,Triton - Triton Regional High School,07730505, 2.1, 0.0, 2.1, 95.8, 0.0, 0.0, 0.0, 56.0, 44.0, 47.9 +3.5,3.5,"",2023-24,3.5,Triton - Triton Regional Middle School,07730405, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 64.0, 36.0, 28.5 +0.0,1,"",2023-24,0.0,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 9.6 +3.1,3.1,"",2023-24,3.1,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 91.7, 8.3, 35.9 +3.8,3.8,"",2023-24,3.8,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 49.7, 50.3, 28.9 +3.9,3.9,"",2023-24,3.9,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 59.8, 40.2, 27.9 +34.6,5,"",2023-24,34.6,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 23.1, 7.7, 3.8, 65.4, 0.0, 0.0, 0.0, 69.2, 30.8, 26.0 +39.2,5,"",2023-24,39.2,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 31.6, 2.5, 5.1, 60.8, 0.0, 0.0, 0.0, 74.7, 25.3, 39.5 +14.9,5,"",2023-24,14.9,Up-Island Regional - Chilmark Elementary,07740010, 14.9, 0.0, 0.0, 85.1, 0.0, 0.0, 0.0, 93.6, 6.4, 6.7 +0.0,1,"",2023-24,0.0,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.1, 18.9, 26.9 +0.0,1,"",2023-24,0.0,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 35.8, 64.2, 59.0 +0.0,1,"",2023-24,0.0,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,"",2023-24,0.0,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 34.3 +2.3,2.3,"",2023-24,2.3,Uxbridge - Uxbridge High,03040505, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 63.4, 36.6, 43.9 +0.0,1,"",2023-24,0.0,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.1, 21.9, 32.0 +47.4,5,"",2023-24,47.4,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 18.3, 7.3, 14.5, 52.6, 0.0, 0.0, 7.3, 78.0, 22.0, 27.5 +0.0,1,"",2023-24,0.0,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.9, 25.1, 23.1 +0.0,1,"",2023-24,0.0,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.2, 20.8, 21.6 +3.3,3.3,"",2023-24,3.3,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 83.6, 16.4, 30.3 +0.0,1,"",2023-24,0.0,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 32.4 +0.0,1,"",2023-24,0.0,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.0 +0.0,1,"",2023-24,0.0,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.1, 22.9, 21.8 +0.0,1,"",2023-24,0.0,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 23.6 +0.0,1,"",2023-24,0.0,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.7, 10.3, 29.0 +2.3,2.3,"",2023-24,2.3,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 79.9, 20.1, 42.9 +0.0,1,"",2023-24,0.0,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 22.5 +0.0,1,"",2023-24,0.0,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.9, 28.1, 32.0 +3.9,3.9,"",2023-24,3.9,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 96.1, 0.0, 3.9, 0.0, 88.4, 11.6, 25.9 +0.0,1,"",2023-24,0.0,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.0, 39.0, 129.7 +0.0,1,"",2023-24,0.0,Wakefield - Dolbeare,03050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 18.4 +10.0,5,"",2023-24,10.0,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 10.0, 0.0, 90.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.0 +2.1,2.1,"",2023-24,2.1,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 70.4, 29.6, 48.6 +0.0,1,"",2023-24,0.0,Wakefield - Greenwood,03050020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.5, 22.5, 9.2 +1.6,1.6,"",2023-24,1.6,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 59.5, 40.5, 62.6 +0.0,1,"",2023-24,0.0,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.9, 15.1, 10.0 +0.0,1,"",2023-24,0.0,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 22.9 +11.5,5,"",2023-24,11.5,Wales - Wales Elementary,03060005, 0.0, 0.0, 11.5, 88.5, 0.0, 0.0, 0.0, 100.0, 0.0, 8.7 +6.8,5,"",2023-24,6.8,Walpole - Bird Middle,03070305, 3.4, 3.4, 0.0, 93.3, 0.0, 0.0, 0.0, 61.6, 38.4, 29.7 +0.0,1,"",2023-24,0.0,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 27.9 +0.0,1,"",2023-24,0.0,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.0 +3.3,3.3,"",2023-24,3.3,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 76.6, 23.4, 29.9 +0.0,1,"",2023-24,0.0,Walpole - Elm Street School,03070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 26.0 +0.0,1,"",2023-24,0.0,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 26.0 +0.0,1,"",2023-24,0.0,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.2, 14.8, 27.0 +1.4,1.4,"",2023-24,1.4,Walpole - Walpole High,03070505, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 56.1, 43.9, 72.1 +0.0,1,"",2023-24,0.0,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 37.9 +54.6,5,"",2023-24,54.6,Waltham - Dual Language School,03080001, 0.0, 0.6, 54.0, 45.4, 0.0, 0.0, 0.0, 93.0, 7.0, 16.7 +3.8,3.8,"",2023-24,3.8,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.9, 2.9, 96.2, 0.0, 0.0, 0.0, 83.9, 16.1, 35.0 +3.5,3.5,"",2023-24,3.5,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 89.1, 10.9, 28.4 +14.6,5,"",2023-24,14.6,Waltham - John F Kennedy Middle,03080404, 3.3, 1.7, 9.6, 85.5, 0.0, 0.0, 0.0, 76.3, 23.7, 60.2 +14.2,5,"",2023-24,14.2,Waltham - John W. McDevitt Middle School,03080415, 4.3, 2.7, 5.7, 85.8, 0.0, 0.0, 1.5, 52.1, 47.9, 65.7 +8.0,5,"",2023-24,8.0,Waltham - Northeast Elementary School,03080040, 0.0, 3.1, 2.8, 92.0, 0.0, 0.0, 2.1, 90.8, 9.2, 43.0 +0.0,1,"",2023-24,0.0,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 28.0 +12.2,5,"",2023-24,12.2,Waltham - Waltham Sr High,03080505, 1.2, 4.8, 5.5, 87.8, 0.0, 0.0, 0.7, 62.1, 37.9, 162.8 +5.8,5,"",2023-24,5.8,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 2.9, 94.2, 0.0, 0.0, 2.9, 85.0, 15.0, 34.8 +0.0,1,"",2023-24,0.0,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 22.7 +8.9,5,"",2023-24,8.9,Ware - Ware Junior/Senior High School,03090505, 5.9, 0.0, 3.0, 91.1, 0.0, 0.0, 0.0, 55.7, 44.3, 33.8 +0.0,1,"",2023-24,0.0,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.8, 31.3, 16.0 +0.0,1,"",2023-24,0.0,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 2.7 +0.0,1,"",2023-24,0.0,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.0, 12.0, 56.5 +3.0,3.0,"",2023-24,3.0,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 74.1, 25.9, 33.8 +12.600000000000001,5,"",2023-24,12.600000000000001,Wareham - Wareham Senior High,03100505, 6.4, 0.2, 1.8, 87.4, 0.0, 0.0, 4.2, 57.6, 42.4, 49.2 +0.0,1,"",2023-24,0.0,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 5.2 +16.9,5,"",2023-24,16.9,Watertown - Cunniff,03140015, 4.1, 0.0, 12.8, 83.1, 0.0, 0.0, 0.0, 89.0, 11.0, 24.2 +2.0,2.0,"",2023-24,2.0,Watertown - Hosmer,03140020, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 89.2, 10.8, 57.3 +13.8,5,"",2023-24,13.8,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 13.8, 86.2, 0.0, 0.0, 0.0, 92.7, 7.3, 29.6 +1.8,1.8,"",2023-24,1.8,Watertown - Watertown High,03140505, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 45.0, 55.0, 63.6 +4.2,4.2,"",2023-24,4.2,Watertown - Watertown Middle,03140305, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 68.2, 31.8, 47.7 +3.4,3.4,"",2023-24,3.4,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 0.0, 96.6, 0.0, 0.0, 3.4, 100.0, 0.0, 29.0 +9.3,5,"",2023-24,9.3,Wayland - Happy Hollow School,03150015, 0.0, 9.3, 0.0, 90.7, 0.0, 0.0, 0.0, 95.8, 4.2, 21.4 +29.4,5,"",2023-24,29.4,Wayland - Loker School,03150020, 0.0, 4.7, 19.7, 70.6, 0.0, 0.0, 5.0, 92.3, 7.7, 20.1 +0.0,1,"",2023-24,0.0,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 5.0 +3.2,3.2,"",2023-24,3.2,Wayland - Wayland High School,03150505, 1.6, 1.6, 0.0, 96.8, 0.0, 0.0, 0.0, 69.8, 30.2, 62.0 +14.600000000000001,5,"",2023-24,14.600000000000001,Wayland - Wayland Middle School,03150305, 0.0, 4.2, 10.4, 85.4, 0.0, 0.0, 0.0, 63.1, 36.9, 47.7 +3.3,3.3,"",2023-24,3.3,Webster - Bartlett High School,03160505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 56.7, 43.3, 30.6 +0.0,1,"",2023-24,0.0,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 43.3 +0.0,1,"",2023-24,0.0,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.7, 22.3, 34.7 +15.600000000000001,5,"",2023-24,15.600000000000001,Wellesley - Ernest F Upham,03170050, 0.0, 9.4, 6.2, 84.4, 0.0, 0.0, 0.0, 95.2, 4.8, 10.7 +2.6,2.6,"",2023-24,2.6,Wellesley - Hunnewell,03170025, 0.0, 0.0, 1.1, 97.4, 0.0, 0.0, 1.5, 93.9, 6.1, 15.5 +6.9,5,"",2023-24,6.9,Wellesley - John D Hardy,03170020, 0.0, 0.0, 6.9, 93.1, 0.0, 0.0, 0.0, 89.8, 10.2, 14.6 +0.0,1,"",2023-24,0.0,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 23.1 +10.9,5,"",2023-24,10.9,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 6.2, 89.1, 0.0, 0.0, 4.7, 100.0, 0.0, 16.1 +0.0,1,"",2023-24,0.0,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.5 +9.2,5,"",2023-24,9.2,Wellesley - Schofield,03170045, 0.0, 4.6, 4.6, 90.8, 0.0, 0.0, 0.0, 86.2, 13.8, 21.7 +0.8,1,"",2023-24,0.8,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 96.2, 3.8, 20.0 +8.0,5,"",2023-24,8.0,Wellesley - Wellesley Middle,03170305, 0.2, 5.3, 1.1, 92.1, 0.0, 0.0, 1.4, 72.5, 27.5, 94.5 +6.4,5,"",2023-24,6.4,Wellesley - Wellesley Sr High,03170505, 1.2, 1.6, 2.0, 93.7, 0.0, 0.0, 1.6, 60.7, 39.3, 101.6 +0.0,1,"",2023-24,0.0,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.7, 26.3, 8.4 +0.0,1,"",2023-24,0.0,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 24.1 +2.2,2.2,"",2023-24,2.2,West Boylston - West Boylston Junior/Senior High,03220505, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 65.0, 35.0, 33.9 +6.4,5,"",2023-24,6.4,West Bridgewater - Howard School,03230305, 0.0, 0.0, 6.4, 93.6, 0.0, 0.0, 0.0, 87.8, 12.2, 15.5 +11.1,5,"",2023-24,11.1,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 11.1, 88.9, 0.0, 0.0, 0.0, 92.2, 7.8, 18.0 +0.0,1,"",2023-24,0.0,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 8.5 +0.6,1,"",2023-24,0.6,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.6, 0.0, 0.0, 99.4, 0.0, 0.0, 0.0, 68.8, 31.2, 49.7 +0.0,1,"",2023-24,0.0,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.4, 14.6, 12.9 +0.0,1,"",2023-24,0.0,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 17.2 +0.0,1,"",2023-24,0.0,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.5, 25.5, 13.0 +0.0,1,"",2023-24,0.0,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 9.9 +0.0,1,"",2023-24,0.0,West Springfield - Philip G Coburn,03320007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 42.3 +0.0,1,"",2023-24,0.0,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 16.5 +5.1,5,"",2023-24,5.1,West Springfield - West Springfield High,03320505, 0.0, 0.0, 5.1, 94.9, 0.0, 0.0, 0.0, 61.4, 38.6, 76.9 +4.4,4.4,"",2023-24,4.4,West Springfield - West Springfield Middle,03320305, 0.0, 1.9, 0.6, 95.5, 0.0, 0.0, 1.9, 63.2, 36.8, 52.0 +8.8,5,"",2023-24,8.8,Westborough - Annie E Fales,03210010, 0.0, 0.0, 8.8, 91.2, 0.0, 0.0, 0.0, 99.0, 1.0, 22.7 +3.2,3.2,"",2023-24,3.2,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 94.3, 5.7, 31.3 +0.0,1,"",2023-24,0.0,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.7 +7.1,5,"",2023-24,7.1,Westborough - Mill Pond School,03210045, 1.8, 5.3, 0.0, 92.9, 0.0, 0.0, 0.0, 90.2, 9.8, 56.4 +6.6,5,"",2023-24,6.6,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 2.5, 4.1, 93.4, 0.0, 0.0, 0.0, 72.4, 27.6, 48.6 +8.6,5,"",2023-24,8.6,Westborough - Westborough High,03210505, 1.0, 5.4, 1.1, 91.3, 0.0, 1.1, 0.0, 65.8, 34.2, 87.7 +0.0,1,"",2023-24,0.0,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 13.3 +0.0,1,"",2023-24,0.0,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.1 +0.0,1,"",2023-24,0.0,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.3 +0.0,1,"",2023-24,0.0,Westfield - Highland,03250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 23.4 +0.0,1,"",2023-24,0.0,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 28.5 +0.0,1,"",2023-24,0.0,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 20.1 +0.0,1,"",2023-24,0.0,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 19.8 +2.0,2.0,"",2023-24,2.0,Westfield - Westfield High,03250505, 0.0, 0.0, 1.5, 98.0, 0.5, 0.0, 0.0, 64.9, 35.1, 67.1 +1.8,1.8,"",2023-24,1.8,Westfield - Westfield Intermediate School,03250075, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 86.2, 13.8, 56.5 +0.0,1,"",2023-24,0.0,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.8, 35.2, 42.7 +1.3,1.3,"",2023-24,1.3,Westfield - Westfield Technical Academy,03250605, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 50.1, 49.9, 26.5 +0.0,1,"",2023-24,0.0,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +0.0,1,"",2023-24,0.0,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 23.3 +2.4,2.4,"",2023-24,2.4,Westford - Blanchard Middle,03260310, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 90.3, 9.7, 41.1 +0.0,1,"",2023-24,0.0,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 21.9 +0.0,1,"",2023-24,0.0,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.4, 19.6, 15.3 +0.0,1,"",2023-24,0.0,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.7 +0.0,1,"",2023-24,0.0,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 20.2 +5.2,5,"",2023-24,5.2,Westford - Rita E. Miller Elementary School,03260055, 0.0, 5.2, 0.0, 94.8, 0.0, 0.0, 0.0, 94.8, 5.2, 19.2 +4.9,4.9,"",2023-24,4.9,Westford - Stony Brook School,03260330, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 87.8, 12.2, 41.1 +3.8,3.8,"",2023-24,3.8,Westford - Westford Academy,03260505, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 57.1, 42.9, 104.6 +0.0,1,"",2023-24,0.0,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.0, 25.0, 12.0 +9.0,5,"",2023-24,9.0,Weston - Country,03300010, 0.0, 0.0, 4.5, 91.1, 0.0, 0.0, 4.5, 88.7, 11.3, 22.4 +5.6,5,"",2023-24,5.6,Weston - Field Elementary School,03300012, 0.0, 5.6, 0.0, 94.4, 0.0, 0.0, 0.0, 79.5, 20.5, 17.9 +22.799999999999997,5,"",2023-24,22.799999999999997,Weston - Weston High,03300505, 1.7, 16.7, 3.5, 77.1, 0.0, 0.0, 0.9, 61.8, 38.2, 56.7 +7.4,5,"",2023-24,7.4,Weston - Weston Middle,03300305, 2.2, 3.7, 0.0, 92.5, 0.0, 0.0, 1.5, 70.6, 29.4, 33.6 +0.0,1,"",2023-24,0.0,Weston - Woodland,03300015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 21.3 +0.0,1,"",2023-24,0.0,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 11.0 +0.0,1,"",2023-24,0.0,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 26.4 +0.0,1,"",2023-24,0.0,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.0, 39.0, 67.6 +0.6,1,"",2023-24,0.6,Westwood - Downey,03350012, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 96.4, 3.6, 19.6 +0.0,1,"",2023-24,0.0,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.9, 30.1, 53.2 +6.0,5,"",2023-24,6.0,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 94.0, 0.0, 0.0, 6.0, 81.9, 18.1, 16.6 +7.6,5,"",2023-24,7.6,Westwood - Pine Hill Elementary School,03350030, 0.0, 7.6, 0.0, 92.4, 0.0, 0.0, 0.0, 93.5, 6.5, 26.4 +9.0,5,"",2023-24,9.0,Westwood - Westwood High,03350505, 0.0, 4.5, 1.5, 90.9, 0.0, 0.0, 3.0, 65.3, 34.7, 66.2 +0.0,1,"",2023-24,0.0,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 3.0 +0.0,1,"",2023-24,0.0,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 16.7 +0.0,1,"",2023-24,0.0,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 20.1 +0.0,1,"",2023-24,0.0,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 14.1 +7.0,5,"",2023-24,7.0,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 7.0, 93.0, 0.0, 0.0, 0.0, 100.0, 0.0, 14.2 +0.0,1,"",2023-24,0.0,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 16.1 +4.2,4.2,"",2023-24,4.2,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 2.1, 2.1, 95.8, 0.0, 0.0, 0.0, 57.1, 42.9, 94.8 +5.8,5,"",2023-24,5.8,Weymouth - Ralph Talbot,03360085, 5.8, 0.0, 0.0, 94.2, 0.0, 0.0, 0.0, 97.1, 2.9, 17.1 +0.0,1,"",2023-24,0.0,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.4, 18.6, 16.1 +0.0,1,"",2023-24,0.0,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 20.1 +0.0,1,"",2023-24,0.0,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 21.1 +7.000000000000001,5,"",2023-24,7.000000000000001,Weymouth - Weymouth High School,03360505, 2.2, 1.1, 3.0, 92.9, 0.0, 0.0, 0.7, 56.7, 43.3, 133.5 +4.5,4.5,"",2023-24,4.5,Weymouth - William Seach,03360080, 4.5, 0.0, 0.0, 95.5, 0.0, 0.0, 0.0, 95.5, 4.5, 22.1 +0.0,1,"",2023-24,0.0,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 12.7 +0.0,1,"",2023-24,0.0,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.4, 26.6, 26.3 +3.6,3.6,"",2023-24,3.6,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 91.1, 8.9, 28.0 +3.9,3.9,"",2023-24,3.9,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 95.1, 4.9, 25.8 +0.0,1,"",2023-24,0.0,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 27.5 +20.0,5,"",2023-24,20.0,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 20.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 100.0, 0.0, 5.0 +0.0,1,"",2023-24,0.0,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.8, 43.2, 66.4 +0.0,1,"",2023-24,0.0,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.5, 27.5, 30.9 +7.800000000000001,5,"",2023-24,7.800000000000001,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 2.6, 1.3, 3.9, 92.2, 0.0, 0.0, 0.0, 47.1, 52.9, 77.2 +0.0,1,"",2023-24,0.0,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.3, 16.7, 12.0 +0.0,1,"",2023-24,0.0,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.9 +0.0,1,"",2023-24,0.0,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.0 +0.0,1,"",2023-24,0.0,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 20.7 +3.9,3.9,"",2023-24,3.9,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 96.1, 0.0, 0.0, 3.9, 94.5, 5.5, 25.6 +5.2,5,"",2023-24,5.2,Wilmington - Wilmington High,03420505, 0.0, 2.6, 2.6, 94.8, 0.0, 0.0, 0.0, 64.1, 35.9, 61.7 +1.4,1.4,"",2023-24,1.4,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 75.8, 24.2, 71.5 +0.0,1,"",2023-24,0.0,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 25.8 +11.7,5,"",2023-24,11.7,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 88.3, 0.0, 0.0, 11.7, 100.0, 0.0, 8.5 +0.0,1,"",2023-24,0.0,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.4, 46.6, 0.3 +9.2,5,"",2023-24,9.2,Winchendon - Murdock High School,03430515, 4.6, 0.0, 4.6, 90.8, 0.0, 0.0, 0.0, 57.6, 42.4, 21.7 +0.0,1,"",2023-24,0.0,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.6, 48.4, 16.0 +0.0,1,"",2023-24,0.0,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.0, 25.0, 16.0 +25.0,5,"",2023-24,25.0,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 25.0, 75.0, 0.0, 0.0, 0.0, 100.0, 0.0, 4.0 +0.0,1,"",2023-24,0.0,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 21.8 +0.0,1,"",2023-24,0.0,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 19.6 +3.6,3.6,"",2023-24,3.6,Winchester - Lynch Elementary,03440020, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 89.1, 7.3, 27.6 +5.699999999999999,5,"",2023-24,5.699999999999999,Winchester - McCall Middle,03440305, 0.0, 2.8, 2.9, 94.3, 0.0, 0.0, 0.0, 64.9, 35.1, 67.9 +0.0,1,"",2023-24,0.0,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 19.7 +8.1,5,"",2023-24,8.1,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 91.9, 0.0, 0.0, 8.1, 87.4, 12.6, 22.7 +9.7,5,"",2023-24,9.7,Winchester - Winchester High School,03440505, 0.7, 7.8, 1.2, 90.3, 0.0, 0.0, 0.0, 60.5, 39.5, 83.6 +0.0,1,"",2023-24,0.0,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 25.5 +0.0,1,"",2023-24,0.0,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 31.3 +7.699999999999999,5,"",2023-24,7.699999999999999,Winthrop - Winthrop High School,03460505, 0.0, 5.1, 2.6, 92.3, 0.0, 0.0, 0.0, 46.4, 53.6, 38.9 +0.0,1,"",2023-24,0.0,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.7, 34.3, 32.6 +3.5,3.5,"",2023-24,3.5,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 96.5, 3.5, 0.0, 0.0, 96.6, 3.4, 28.3 +4.6,4.6,"",2023-24,4.6,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 3.8, 0.8, 95.5, 0.0, 0.0, 0.0, 70.3, 29.7, 53.2 +0.0,1,"",2023-24,0.0,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 23.6 +0.0,1,"",2023-24,0.0,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.5 +6.1,5,"",2023-24,6.1,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 66.8, 33.2, 42.8 +0.0,1,"",2023-24,0.0,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 12.4 +0.0,1,"",2023-24,0.0,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 23.5 +0.0,1,"",2023-24,0.0,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 13.6 +0.0,1,"",2023-24,0.0,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 23.7 +4.8,4.8,"",2023-24,4.8,Woburn - Woburn High,03470505, 0.8, 1.0, 3.0, 95.1, 0.0, 0.0, 0.0, 60.2, 39.8, 98.8 +2.8,2.8,"",2023-24,2.8,Worcester - Belmont Street Community,03480020, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 97.2, 2.8, 35.1 +17.8,5,"",2023-24,17.8,Worcester - Burncoat Middle School,03480405, 1.9, 0.0, 15.9, 82.1, 0.0, 0.0, 0.0, 63.3, 36.7, 51.5 +10.6,5,"",2023-24,10.6,Worcester - Burncoat Senior High,03480503, 2.5, 0.0, 8.1, 89.4, 0.0, 0.0, 0.0, 55.8, 44.2, 90.9 +0.0,1,"",2023-24,0.0,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 19.4 +8.6,5,"",2023-24,8.6,Worcester - Canterbury,03480045, 4.3, 0.0, 4.3, 91.4, 0.0, 0.0, 0.0, 95.2, 4.8, 23.1 +2.1,2.1,"",2023-24,2.1,Worcester - Chandler Elementary Community,03480050, 0.0, 1.8, 0.3, 97.9, 0.0, 0.0, 0.0, 89.6, 10.4, 33.8 +50.599999999999994,5,"",2023-24,50.599999999999994,Worcester - Chandler Magnet,03480052, 2.6, 2.2, 45.8, 49.4, 0.0, 0.0, 0.0, 97.3, 2.7, 45.5 +11.700000000000001,5,"",2023-24,11.700000000000001,Worcester - City View,03480053, 5.9, 2.9, 2.9, 88.3, 0.0, 0.0, 0.0, 93.8, 6.2, 34.2 +22.6,5,"",2023-24,22.6,Worcester - Claremont Academy,03480350, 6.4, 7.7, 8.5, 77.4, 0.0, 0.0, 0.0, 62.5, 37.5, 38.9 +23.8,5,"",2023-24,23.8,Worcester - Clark St Community,03480055, 0.0, 4.8, 19.0, 76.2, 0.0, 0.0, 0.0, 80.9, 19.1, 21.0 +8.5,5,"",2023-24,8.5,Worcester - Columbus Park,03480060, 6.8, 0.0, 1.7, 91.5, 0.0, 0.0, 0.0, 90.7, 9.3, 29.3 +13.0,5,"",2023-24,13.0,Worcester - Doherty Memorial High,03480512, 1.1, 0.0, 11.9, 87.0, 0.0, 0.0, 0.0, 52.8, 47.2, 101.8 +8.1,5,"",2023-24,8.1,Worcester - Elm Park Community,03480095, 0.0, 0.0, 8.1, 91.9, 0.0, 0.0, 0.0, 94.7, 5.3, 30.7 +0.0,1,"",2023-24,0.0,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.2, 24.2 +20.0,5,"",2023-24,20.0,Worcester - Forest Grove Middle,03480415, 2.9, 3.8, 11.9, 80.0, 0.0, 0.0, 1.4, 69.9, 30.1, 69.1 +2.3,2.3,"",2023-24,2.3,Worcester - Francis J McGrath Elementary,03480177, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 90.4, 9.6, 17.0 +7.1,5,"",2023-24,7.1,Worcester - Gates Lane,03480110, 0.0, 4.7, 2.4, 92.9, 0.0, 0.0, 0.0, 95.3, 4.7, 42.5 +8.4,5,"",2023-24,8.4,Worcester - Goddard School/Science Technical,03480100, 3.4, 0.0, 5.0, 91.6, 0.0, 0.0, 0.0, 91.6, 8.4, 29.8 +3.7,3.7,"",2023-24,3.7,Worcester - Grafton Street,03480115, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 78.7, 21.3, 26.8 +4.3,4.3,"",2023-24,4.3,Worcester - Head Start,03480002, 0.0, 4.3, 0.0, 95.7, 0.0, 0.0, 0.0, 100.0, 0.0, 23.0 +11.600000000000001,5,"",2023-24,11.600000000000001,Worcester - Heard Street,03480136, 0.0, 0.0, 6.2, 88.4, 0.0, 0.0, 5.4, 93.8, 6.2, 16.2 +3.6,3.6,"",2023-24,3.6,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 96.7, 3.3, 28.1 +13.1,5,"",2023-24,13.1,Worcester - Lake View,03480145, 4.7, 1.4, 7.0, 86.9, 0.0, 0.0, 0.0, 81.1, 18.9, 21.4 +5.9,5,"",2023-24,5.9,Worcester - Lincoln Street,03480160, 0.0, 0.0, 5.9, 94.1, 0.0, 0.0, 0.0, 84.2, 15.8, 17.0 +17.799999999999997,5,"",2023-24,17.799999999999997,Worcester - May Street,03480175, 4.4, 5.3, 8.1, 82.3, 0.0, 0.0, 0.0, 86.7, 13.3, 17.1 +8.8,5,"",2023-24,8.8,Worcester - Midland Street,03480185, 0.0, 0.0, 8.8, 91.2, 0.0, 0.0, 0.0, 85.1, 14.9, 17.0 +4.5,4.5,"",2023-24,4.5,Worcester - Nelson Place,03480200, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 92.8, 7.2, 44.0 +16.5,5,"",2023-24,16.5,Worcester - Norrback Avenue,03480202, 0.0, 2.4, 9.4, 83.5, 0.0, 0.0, 4.7, 95.8, 4.2, 42.5 +20.1,5,"",2023-24,20.1,Worcester - North High,03480515, 4.8, 2.1, 12.1, 79.9, 0.0, 0.0, 1.1, 64.1, 35.9, 93.6 +16.5,5,"",2023-24,16.5,Worcester - Quinsigamond,03480210, 0.0, 6.0, 8.5, 83.6, 0.0, 0.0, 2.0, 90.3, 9.7, 50.4 +22.8,5,"",2023-24,22.8,Worcester - Rice Square,03480215, 3.3, 6.0, 13.5, 77.2, 0.0, 0.0, 0.0, 87.3, 12.7, 30.4 +5.300000000000001,5,"",2023-24,5.300000000000001,Worcester - Roosevelt,03480220, 0.0, 0.4, 4.9, 94.7, 0.0, 0.0, 0.0, 97.1, 2.9, 40.9 +13.000000000000002,5,"",2023-24,13.000000000000002,Worcester - South High Community,03480520, 3.4, 0.8, 7.9, 86.9, 0.0, 0.0, 0.9, 65.8, 34.2, 119.4 +12.0,5,"",2023-24,12.0,Worcester - Sullivan Middle,03480423, 1.3, 2.7, 8.0, 88.0, 0.0, 0.0, 0.0, 62.2, 37.8, 75.1 +3.8,3.8,"",2023-24,3.8,Worcester - Tatnuck,03480230, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 86.1, 13.9, 26.6 +4.8,4.8,"",2023-24,4.8,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 82.0, 18.0, 20.7 +14.0,5,"",2023-24,14.0,Worcester - Union Hill School,03480240, 0.0, 3.5, 10.5, 86.0, 0.0, 0.0, 0.0, 93.0, 7.0, 28.5 +10.6,5,"",2023-24,10.6,Worcester - University Pk Campus School,03480285, 0.0, 2.5, 8.1, 89.4, 0.0, 0.0, 0.0, 70.1, 24.8, 19.8 +11.2,5,"",2023-24,11.2,Worcester - Vernon Hill School,03480280, 11.2, 0.0, 0.0, 88.8, 0.0, 0.0, 0.0, 85.6, 14.4, 35.7 +8.0,5,"",2023-24,8.0,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 8.0, 92.0, 0.0, 0.0, 0.0, 75.1, 24.9, 12.5 +18.9,5,"",2023-24,18.9,Worcester - West Tatnuck,03480260, 0.0, 4.4, 10.1, 81.1, 0.0, 0.0, 4.4, 90.6, 9.4, 22.8 +17.7,5,"",2023-24,17.7,Worcester - Woodland Academy,03480030, 2.5, 0.0, 15.2, 82.2, 0.0, 0.0, 0.0, 82.0, 18.0, 39.4 +1.9,1.9,"",2023-24,1.9,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 84.3, 15.7, 26.2 +18.5,5,"",2023-24,18.5,Worcester - Worcester East Middle,03480420, 7.7, 0.0, 9.0, 81.5, 0.0, 0.0, 1.8, 59.5, 40.5, 55.6 +7.7,5,"",2023-24,7.7,Worcester - Worcester Technical High,03480605, 1.7, 0.0, 5.1, 92.3, 0.0, 0.0, 0.9, 44.4, 55.6, 116.4 +42.900000000000006,5,"",2023-24,42.900000000000006,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 28.6, 0.0, 0.0, 57.1, 0.0, 0.0, 14.3, 85.7, 14.3, 7.0 +0.0,1,"",2023-24,0.0,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.8, 31.2, 6.4 +0.0,1,"",2023-24,0.0,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 24.8 +2.7,2.7,"",2023-24,2.7,Wrentham - Delaney,03500003, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 97.0, 3.0, 36.7 6.9,5,"",2022-23,6.9,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 1.0, 1.0, 3.9, 93.1, 0.0, 0.0, 1.0, 73.3, 26.7, 102.0 0.0,1,"",2022-23,0.0,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 4.0 2.6,2.6,"",2022-23,2.6,Abington - Abington High,00010505, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 67.3, 32.7, 39.1 diff --git a/data/admin_data/dese/4A_1_grade_nine_course_pass.csv b/data/admin_data/dese/4A_1_grade_nine_course_pass.csv index faa58c6e..0e887e9a 100644 --- a/data/admin_data/dese/4A_1_grade_nine_course_pass.csv +++ b/data/admin_data/dese/4A_1_grade_nine_course_pass.csv @@ -1,4 +1,409 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Grade Nine Students,# Passing All Courses,% Passing All Courses +3.4063157894736844,3.41,a-ovpe-i1,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 89, 72, 80.9 +3.263157894736842,3.26,a-ovpe-i1,2022-23,Abington-Abington High,00010505, 138, 107, 77.5 +3.8821052631578947,3.88,a-ovpe-i1,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 64, 59, 92.2 +4.109473684210526,4.11,a-ovpe-i1,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505, 418, 408, 97.6 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 137, 129, 94.2 +3.216842105263158,3.22,a-ovpe-i1,2022-23,Agawam-Agawam High,00050505, 314, 240, 76.4 +3.6042105263157893,3.6,a-ovpe-i1,2022-23,Amesbury-Amesbury High,00070505, 125, 107, 85.6 +1.296842105263158,1.3,a-ovpe-i1,2022-23,Amesbury-Amesbury Innovation High School,00070515, 13, 4, 30.8 +3.528421052631579,3.53,a-ovpe-i1,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 229, 192, 83.8 +4.037894736842105,4.04,a-ovpe-i1,2022-23,Andover-Andover High,00090505, 411, 394, 95.9 +2.6989473684210523,2.7,a-ovpe-i1,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 92, 59, 64.1 +4.025263157894736,4.03,a-ovpe-i1,2022-23,Arlington-Arlington High,00100505, 383, 366, 95.6 +3.9157894736842107,3.92,a-ovpe-i1,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 172, 160, 93.0 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Ashland-Ashland High,00140505, 230, 213, 92.6 +3.7936842105263158,3.79,a-ovpe-i1,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605, 302, 272, 90.1 +2.7578947368421054,2.76,a-ovpe-i1,2022-23,Athol-Royalston-Athol High,06150505, 113, 74, 65.5 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 82, 63, 76.8 +NA,NA,a-ovpe-i1,2022-23,Attleboro-Attleboro Community Academy,00160515, 2,"","" +3.8105263157894735,3.81,a-ovpe-i1,2022-23,Attleboro-Attleboro High,00160505, 515, 466, 90.5 +NA,NA,a-ovpe-i1,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 3,"","" +3.7263157894736842,3.73,a-ovpe-i1,2022-23,Auburn-Auburn Senior High,00170505, 191, 169, 88.5 +3.2757894736842106,3.28,a-ovpe-i1,2022-23,Avon-Avon Middle High School,00180510, 54, 42, 77.8 +3.877894736842105,3.88,a-ovpe-i1,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 101, 93, 92.1 +3.1073684210526316,3.11,a-ovpe-i1,2022-23,Barnstable-Barnstable High,00200505, 359, 265, 73.8 +3.8063157894736843,3.81,a-ovpe-i1,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 52, 47, 90.4 +4.042105263157895,4.04,a-ovpe-i1,2022-23,Bedford-Bedford High,00230505, 225, 216, 96.0 +3.6378947368421053,3.64,a-ovpe-i1,2022-23,Belchertown-Belchertown High,00240505, 147, 127, 86.4 +3.6842105263157894,3.68,a-ovpe-i1,2022-23,Bellingham-Bellingham High School,00250505, 160, 140, 87.5 +2.1052631578947367,2.11,a-ovpe-i1,2022-23,Bellingham-Keough Memorial Academy,00250510, 8, 4, 50.0 +4.105263157894737,4.11,a-ovpe-i1,2022-23,Belmont-Belmont High,00260505, 360, 351, 97.5 +2.778947368421053,2.78,a-ovpe-i1,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 50, 33, 66.0 +3.6294736842105264,3.63,a-ovpe-i1,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 123, 106, 86.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 74, 74, 100.0 +3.3557894736842107,3.36,a-ovpe-i1,2022-23,Beverly-Beverly High,00300505, 340, 271, 79.7 +3.528421052631579,3.53,a-ovpe-i1,2022-23,Billerica-Billerica Memorial High School,00310505, 327, 274, 83.8 +3.9789473684210526,3.98,a-ovpe-i1,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605, 307, 290, 94.5 +3.8947368421052633,3.89,a-ovpe-i1,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 107, 99, 92.5 +4.105263157894737,4.11,a-ovpe-i1,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 241, 235, 97.5 +2.7621052631578946,2.76,a-ovpe-i1,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 96, 63, 65.6 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 58, 58, 100.0 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 82, 63, 76.8 +3.873684210526316,3.87,a-ovpe-i1,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 125, 115, 92.0 +2.143157894736842,2.14,a-ovpe-i1,2022-23,Boston-Another Course To College,00350541, 53, 27, 50.9 +2.8968421052631577,2.9,a-ovpe-i1,2022-23,Boston-Boston Arts Academy,00350546, 141, 97, 68.8 +NA,NA,a-ovpe-i1,2022-23,Boston-Boston Collaborative High School,00350755, 2,"","" +3.191578947368421,3.19,a-ovpe-i1,2022-23,Boston-Boston Community Leadership Academy,00350558, 124, 94, 75.8 +2.778947368421053,2.78,a-ovpe-i1,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 215, 142, 66.0 +3.663157894736842,3.66,a-ovpe-i1,2022-23,Boston-Boston Latin Academy,00350545, 323, 281, 87.0 +3.9747368421052633,3.97,a-ovpe-i1,2022-23,Boston-Boston Latin School,00350560, 412, 389, 94.4 +2.7705263157894735,2.77,a-ovpe-i1,2022-23,Boston-Brighton High School,00350505, 117, 77, 65.8 +3.3263157894736843,3.33,a-ovpe-i1,2022-23,Boston-Burke High School,00350525, 81, 64, 79.0 +NA,NA,a-ovpe-i1,2022-23,Boston-Carter School,00350036, 4,"","" +2.517894736842105,2.52,a-ovpe-i1,2022-23,Boston-Charlestown High School,00350515, 174, 104, 59.8 +NA,NA,a-ovpe-i1,2022-23,Boston-Community Academy,00350518, 3,"","" +1.8778947368421053,1.88,a-ovpe-i1,2022-23,Boston-Community Academy of Science and Health,00350581, 74, 33, 44.6 +2.0336842105263155,2.03,a-ovpe-i1,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 89, 43, 48.3 +3.8610526315789473,3.86,a-ovpe-i1,2022-23,Boston-East Boston High School,00350530, 228, 209, 91.7 +1.8526315789473684,1.85,a-ovpe-i1,2022-23,Boston-English High School,00350535, 141, 62, 44.0 +2.210526315789474,2.21,a-ovpe-i1,2022-23,Boston-Excel High School,00350522, 99, 52, 52.5 +3.002105263157895,3.0,a-ovpe-i1,2022-23,Boston-Fenway High School,00350540, 94, 67, 71.3 +NA,NA,a-ovpe-i1,2022-23,Boston-Greater Egleston High School,00350543, 2,"","" +1.7473684210526317,1.75,a-ovpe-i1,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 65, 27, 41.5 +NA,NA,a-ovpe-i1,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 1,"","" +3.9115789473684215,3.91,a-ovpe-i1,2022-23,Boston-Lyon High School,00350655, 28, 26, 92.9 +0.7663157894736842,1,a-ovpe-i1,2022-23,Boston-Madison Park Technical Vocational High School,00350537, 269, 49, 18.2 +2.64,2.64,a-ovpe-i1,2022-23,Boston-Margarita Muniz Academy,00350549, 83, 52, 62.7 +1.7347368421052634,1.73,a-ovpe-i1,2022-23,Boston-McKinley Schools,00350363, 17, 7, 41.2 +3.2042105263157894,3.2,a-ovpe-i1,2022-23,Boston-New Mission High School,00350542, 134, 102, 76.1 +3.5199999999999996,3.52,a-ovpe-i1,2022-23,Boston-O'Bryant School of Math & Science,00350575, 323, 270, 83.6 +2.526315789473684,2.53,a-ovpe-i1,2022-23,Boston-Quincy Upper School,00350565, 70, 42, 60.0 +1.7726315789473686,1.77,a-ovpe-i1,2022-23,Boston-Snowden International High School,00350690, 121, 51, 42.1 +2.6315789473684212,2.63,a-ovpe-i1,2022-23,Boston-TechBoston Academy,00350657, 160, 100, 62.5 +3.5663157894736845,3.57,a-ovpe-i1,2022-23,Bourne-Bourne High School,00360505, 85, 72, 84.7 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Braintree-Braintree High,00400505, 408, 408, 100.0 +3.8273684210526318,3.83,a-ovpe-i1,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505, 361, 328, 90.9 +NA,NA,a-ovpe-i1,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 1,"","" +3.5663157894736845,3.57,a-ovpe-i1,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 170, 144, 84.7 +4.0884210526315785,4.09,a-ovpe-i1,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605, 346, 336, 97.1 +1.376842105263158,1.38,a-ovpe-i1,2022-23,Brockton-Brockton Champion High School,00440515, 52, 17, 32.7 +1.8736842105263158,1.87,a-ovpe-i1,2022-23,Brockton-Brockton High,00440505," 1,172", 521, 44.5 +0.648421052631579,1,a-ovpe-i1,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 26, 4, 15.4 +2.2610526315789476,2.26,a-ovpe-i1,2022-23,Brockton-Edison Academy,00440520, 41, 22, 53.7 +NA,NA,a-ovpe-i1,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 4,"","" +3.7557894736842106,3.76,a-ovpe-i1,2022-23,Brockton-PROMISE College and Career Academy,00440525, 37, 33, 89.2 +3.477894736842105,3.48,a-ovpe-i1,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 155, 128, 82.6 +3.8821052631578947,3.88,a-ovpe-i1,2022-23,Brookline-Brookline High,00460505, 515, 475, 92.2 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Burlington-Burlington High,00480505, 226, 213, 94.2 +3.7263157894736842,3.73,a-ovpe-i1,2022-23,Cambridge-Cambridge Rindge and Latin,00490506, 497, 440, 88.5 +4.067368421052631,4.07,a-ovpe-i1,2022-23,Canton-Canton High,00500505, 261, 252, 96.6 +3.6757894736842105,3.68,a-ovpe-i1,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 181, 158, 87.3 +3.389473684210526,3.39,a-ovpe-i1,2022-23,Carver-Carver Middle/High School,00520405, 82, 66, 80.5 +3.6042105263157893,3.6,a-ovpe-i1,2022-23,Central Berkshire-Wahconah Regional High,06350505, 111, 95, 85.6 +4.0,4.0,a-ovpe-i1,2022-23,Chelmsford-Chelmsford High,00560505, 361, 343, 95.0 +2.0589473684210526,2.06,a-ovpe-i1,2022-23,Chelsea-Chelsea High,00570505, 554, 271, 48.9 +NA,NA,a-ovpe-i1,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 4,"","" +NA,NA,a-ovpe-i1,2022-23,Chicopee-Chicopee Academy,00610021, 9, 0, .0 +3.1789473684210527,3.18,a-ovpe-i1,2022-23,Chicopee-Chicopee Comprehensive High School,00610510, 330, 249, 75.5 +2.2778947368421054,2.28,a-ovpe-i1,2022-23,Chicopee-Chicopee High,00610505, 266, 144, 54.1 +2.4463157894736844,2.45,a-ovpe-i1,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 43, 25, 58.1 +3.4610526315789474,3.46,a-ovpe-i1,2022-23,Clinton-Clinton Senior High,00640505, 174, 143, 82.2 +2.9221052631578948,2.92,a-ovpe-i1,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 36, 25, 69.4 +4.172631578947368,4.17,a-ovpe-i1,2022-23,Cohasset-Cohasset High School,00650505, 114, 113, 99.1 +2.4210526315789473,2.42,a-ovpe-i1,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 73, 42, 57.5 +3.9621052631578944,3.96,a-ovpe-i1,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 34, 32, 94.1 +4.197894736842105,4.2,a-ovpe-i1,2022-23,Concord-Carlisle-Concord Carlisle High,06400505, 323, 322, 99.7 +3.7936842105263158,3.79,a-ovpe-i1,2022-23,Danvers-Danvers High,00710505, 181, 163, 90.1 +3.3473684210526318,3.35,a-ovpe-i1,2022-23,Dartmouth-Dartmouth High,00720505, 244, 194, 79.5 +3.7473684210526317,3.75,a-ovpe-i1,2022-23,Dedham-Dedham High,00730505, 182, 162, 89.0 +3.023157894736842,3.02,a-ovpe-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 195, 140, 71.8 +3.3010526315789477,3.3,a-ovpe-i1,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 162, 127, 78.4 +3.8105263157894735,3.81,a-ovpe-i1,2022-23,Douglas-Douglas High School,00770505, 74, 67, 90.5 +4.189473684210526,4.19,a-ovpe-i1,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 184, 183, 99.5 +3.2294736842105265,3.23,a-ovpe-i1,2022-23,Dracut-Dracut Senior High,00790505, 240, 184, 76.7 +3.3810526315789473,3.38,a-ovpe-i1,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 289, 232, 80.3 +4.1557894736842105,4.16,a-ovpe-i1,2022-23,Duxbury-Duxbury High,00820505, 226, 223, 98.7 +3.663157894736842,3.66,a-ovpe-i1,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 154, 134, 87.0 +3.76,3.76,a-ovpe-i1,2022-23,East Longmeadow-East Longmeadow High,00870505, 205, 183, 89.3 +3.2294736842105265,3.23,a-ovpe-i1,2022-23,Easthampton-Easthampton High,00860505, 90, 69, 76.7 +4.037894736842105,4.04,a-ovpe-i1,2022-23,Easton-Oliver Ames High,00880505, 243, 233, 95.9 +2.6357894736842105,2.64,a-ovpe-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 107, 67, 62.6 +3.953684210526316,3.95,a-ovpe-i1,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505, 446, 419, 93.9 +NA,NA,a-ovpe-i1,2022-23,Everett-Devens School,00930030, 4,"","" +2.3073684210526313,2.31,a-ovpe-i1,2022-23,Everett-Everett High,00930505, 637, 349, 54.8 +3.945263157894737,3.95,a-ovpe-i1,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205, 175, 164, 93.7 +3.3305263157894736,3.33,a-ovpe-i1,2022-23,Fairhaven-Fairhaven High,00940505, 158, 125, 79.1 +1.9157894736842105,1.92,a-ovpe-i1,2022-23,Fall River-B M C Durfee High,00950505, 708, 322, 45.5 +4.054736842105263,4.05,a-ovpe-i1,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 27, 26, 96.3 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Fall River-Stone PK-12 School,00950340, 12, 12, 100.0 +3.0694736842105264,3.07,a-ovpe-i1,2022-23,Falmouth-Falmouth High,00960505, 177, 129, 72.9 +2.610526315789474,2.61,a-ovpe-i1,2022-23,Fitchburg-Fitchburg High,00970505, 321, 199, 62.0 +1.6378947368421053,1.64,a-ovpe-i1,2022-23,Fitchburg-Goodrich Academy,00970510, 18, 7, 38.9 +3.6757894736842105,3.68,a-ovpe-i1,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 102, 89, 87.3 +3.6378947368421053,3.64,a-ovpe-i1,2022-23,Foxborough-Foxborough High,00990505, 206, 178, 86.4 +2.383157894736842,2.38,a-ovpe-i1,2022-23,Framingham-Framingham High School,01000515, 742, 420, 56.6 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 66, 66, 100.0 +4.16,4.16,a-ovpe-i1,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 161, 159, 98.8 +4.037894736842105,4.04,a-ovpe-i1,2022-23,Franklin-Franklin High,01010505, 392, 376, 95.9 +3.68,3.68,a-ovpe-i1,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 174, 152, 87.4 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Frontier-Frontier Regional,06700505, 92, 85, 92.4 +1.806315789473684,1.81,a-ovpe-i1,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 7, 3, 42.9 +2.9894736842105263,2.99,a-ovpe-i1,2022-23,Gardner-Gardner High,01030505, 169, 120, 71.0 +3.313684210526316,3.31,a-ovpe-i1,2022-23,Gateway-Gateway Regional High,06720505, 47, 37, 78.7 +3.7978947368421054,3.8,a-ovpe-i1,2022-23,Georgetown-Georgetown High School,01050505, 82, 74, 90.2 +3.705263157894737,3.71,a-ovpe-i1,2022-23,Gill-Montague-Turners Fall High,06740505, 50, 44, 88.0 +3.4526315789473685,3.45,a-ovpe-i1,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 50, 41, 82.0 +2.858947368421053,2.86,a-ovpe-i1,2022-23,Gloucester-Gloucester High,01070505, 212, 144, 67.9 +3.7936842105263158,3.79,a-ovpe-i1,2022-23,Grafton-Grafton High School,01100505, 213, 192, 90.1 +4.042105263157895,4.04,a-ovpe-i1,2022-23,Granby-Granby Jr Sr High School,01110505, 50, 48, 96.0 +1.2505263157894737,1.25,a-ovpe-i1,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 165, 49, 29.7 +3.9747368421052633,3.97,a-ovpe-i1,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605, 377, 356, 94.4 +3.654736842105263,3.65,a-ovpe-i1,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605, 438, 380, 86.8 +4.016842105263158,4.02,a-ovpe-i1,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605, 587, 560, 95.4 +3.9242105263157896,3.92,a-ovpe-i1,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605, 560, 522, 93.2 +2.8547368421052632,2.85,a-ovpe-i1,2022-23,Greenfield-Greenfield High,01140505, 90, 61, 67.8 +4.134736842105263,4.13,a-ovpe-i1,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 164, 161, 98.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Hadley-Hopkins Academy,01170505, 31, 31, 100.0 +4.168421052631579,4.17,a-ovpe-i1,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 104, 103, 99.0 +3.473684210526316,3.47,a-ovpe-i1,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 80, 66, 82.5 +3.2926315789473684,3.29,a-ovpe-i1,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 55, 43, 78.2 +4.021052631578947,4.02,a-ovpe-i1,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 267, 255, 95.5 +4.130526315789473,4.13,a-ovpe-i1,2022-23,Hampshire-Hampshire Regional High,06830505, 103, 101, 98.1 +4.1557894736842105,4.16,a-ovpe-i1,2022-23,Hanover-Hanover High,01220505, 150, 148, 98.7 +4.008421052631579,4.01,a-ovpe-i1,2022-23,Harvard-Bromfield,01250505, 84, 80, 95.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Hatfield-Smith Academy,01270505, 21, 21, 100.0 +NA,NA,a-ovpe-i1,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 2,"","" +0.3831578947368421,1,a-ovpe-i1,2022-23,Haverhill-Gateway Academy,01280515, 11, 1, 9.1 +2.1052631578947367,2.11,a-ovpe-i1,2022-23,Haverhill-Greenleaf Academy,01280033, 6, 3, 50.0 +2.113684210526316,2.11,a-ovpe-i1,2022-23,Haverhill-Haverhill High,01280505, 611, 307, 50.2 +4.016842105263158,4.02,a-ovpe-i1,2022-23,Hingham-Hingham High,01310505, 284, 271, 95.4 +3.1578947368421053,3.16,a-ovpe-i1,2022-23,Holbrook-Holbrook Middle High School,01330505, 72, 54, 75.0 +3.734736842105263,3.73,a-ovpe-i1,2022-23,Holliston-Holliston High,01360505, 213, 189, 88.7 +2.4210526315789473,2.42,a-ovpe-i1,2022-23,Holyoke-Holyoke High,01370505, 393, 226, 57.5 +2.656842105263158,2.66,a-ovpe-i1,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 84, 53, 63.1 +4.143157894736842,4.14,a-ovpe-i1,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 62, 61, 98.4 +4.117894736842105,4.12,a-ovpe-i1,2022-23,Hopkinton-Hopkinton High,01390505, 316, 309, 97.8 +3.166315789473684,3.17,a-ovpe-i1,2022-23,Hudson-Hudson High,01410505, 165, 124, 75.2 +3.823157894736842,3.82,a-ovpe-i1,2022-23,Hull-Hull High,01420505, 65, 59, 90.8 +3.0189473684210526,3.02,a-ovpe-i1,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 106, 76, 71.7 +3.776842105263158,3.78,a-ovpe-i1,2022-23,Ipswich-Ipswich High,01440505, 116, 104, 89.7 +3.823157894736842,3.82,a-ovpe-i1,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 131, 119, 90.8 +4.029473684210527,4.03,a-ovpe-i1,2022-23,King Philip-King Philip Regional High,06900505, 301, 288, 95.7 +2.8126315789473684,2.81,a-ovpe-i1,2022-23,Lawrence-Lawrence High School,01490515, 960, 641, 66.8 +NA,NA,a-ovpe-i1,2022-23,Lawrence-School for Exceptional Studies,01490537, 5,"","" +3.2842105263157895,3.28,a-ovpe-i1,2022-23,Lee-Lee Middle/High School,01500505, 41, 32, 78.0 +3.3010526315789477,3.3,a-ovpe-i1,2022-23,Leicester-Leicester High,01510505, 116, 91, 78.4 +4.008421052631579,4.01,a-ovpe-i1,2022-23,Lenox-Lenox Memorial High,01520505, 63, 60, 95.2 +3.3305263157894736,3.33,a-ovpe-i1,2022-23,Leominster-Center For Technical Education Innovation,01530605, 292, 231, 79.1 +3.886315789473684,3.89,a-ovpe-i1,2022-23,Leominster-Leominster Center for Excellence,01530515, 13, 12, 92.3 +3.389473684210526,3.39,a-ovpe-i1,2022-23,Leominster-Leominster High School,01530505, 154, 124, 80.5 +4.143157894736842,4.14,a-ovpe-i1,2022-23,Lexington-Lexington High,01550505, 608, 598, 98.4 +3.9326315789473685,3.93,a-ovpe-i1,2022-23,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 76, 71, 93.4 +4.0,4.0,a-ovpe-i1,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505, 379, 360, 95.0 +3.8526315789473684,3.85,a-ovpe-i1,2022-23,Littleton-Littleton High School,01580505, 129, 118, 91.5 +4.0884210526315785,4.09,a-ovpe-i1,2022-23,Longmeadow-Longmeadow High,01590505, 239, 232, 97.1 +0.7536842105263157,1,a-ovpe-i1,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 28, 5, 17.9 +1.9157894736842105,1.92,a-ovpe-i1,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 11, 5, 45.5 +2.1178947368421053,2.12,a-ovpe-i1,2022-23,Lowell-Lowell High,01600505," 1,003", 505, 50.3 +0.13473684210526315,1,a-ovpe-i1,2022-23,Lowell-The Career Academy,01600515, 31, 1, 3.2 +3.246315789473684,3.25,a-ovpe-i1,2022-23,Ludlow-Ludlow Senior High,01610505, 218, 168, 77.1 +3.6168421052631583,3.62,a-ovpe-i1,2022-23,Lunenburg-Lunenburg High,01620505, 128, 110, 85.9 +2.7157894736842105,2.72,a-ovpe-i1,2022-23,Lynn-Classical High,01630505, 581, 375, 64.5 +2.2273684210526317,2.23,a-ovpe-i1,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 17, 9, 52.9 +2.749473684210526,2.75,a-ovpe-i1,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575, 72, 47, 65.3 +2.3789473684210525,2.38,a-ovpe-i1,2022-23,Lynn-Lynn English High,01630510, 621, 351, 56.5 +3.1242105263157898,3.12,a-ovpe-i1,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 287, 213, 74.2 +4.08421052631579,4.08,a-ovpe-i1,2022-23,Lynnfield-Lynnfield High,01640505, 133, 129, 97.0 +2.6189473684210527,2.62,a-ovpe-i1,2022-23,Malden-Malden High,01650505, 519, 323, 62.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 93, 93, 100.0 +3.9368421052631577,3.94,a-ovpe-i1,2022-23,Mansfield-Mansfield High,01670505, 263, 246, 93.5 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 47, 47, 100.0 +4.126315789473685,4.13,a-ovpe-i1,2022-23,Marblehead-Marblehead High,01680505, 197, 193, 98.0 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Marlborough-Marlborough High,01700505, 272, 209, 76.8 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Marshfield-Marshfield High,01710505, 291, 269, 92.4 +3.928421052631579,3.93,a-ovpe-i1,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 15, 14, 93.3 +3.663157894736842,3.66,a-ovpe-i1,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 215, 187, 87.0 +4.050526315789474,4.05,a-ovpe-i1,2022-23,Masconomet-Masconomet Regional High School,07050505, 265, 255, 96.2 +3.5873684210526315,3.59,a-ovpe-i1,2022-23,Mashpee-Mashpee Middle-High School,01720505, 108, 92, 85.2 +2.808421052631579,2.81,a-ovpe-i1,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 75, 50, 66.7 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Maynard-Maynard High,01740505, 81, 75, 92.6 +3.928421052631579,3.93,a-ovpe-i1,2022-23,Medfield-Medfield Senior High,01750505, 178, 166, 93.3 +NA,NA,a-ovpe-i1,2022-23,Medford-Curtis-Tufts,01760510, 2,"","" +3.208421052631579,3.21,a-ovpe-i1,2022-23,Medford-Medford High,01760505, 349, 266, 76.2 +3.9242105263157896,3.92,a-ovpe-i1,2022-23,Medway-Medway High,01770505, 148, 138, 93.2 +3.9789473684210526,3.98,a-ovpe-i1,2022-23,Melrose-Melrose High,01780505, 235, 222, 94.5 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 135, 125, 92.6 +3.023157894736842,3.02,a-ovpe-i1,2022-23,Methuen-Methuen High,01810505, 525, 377, 71.8 +3.094736842105263,3.09,a-ovpe-i1,2022-23,Middleborough-Middleborough High,01820505, 230, 169, 73.5 +3.0442105263157893,3.04,a-ovpe-i1,2022-23,Milford-Milford High,01850505, 400, 289, 72.3 +3.76,3.76,a-ovpe-i1,2022-23,Millbury-Millbury Junior/Senior High,01860505, 112, 100, 89.3 +3.957894736842105,3.96,a-ovpe-i1,2022-23,Millis-Millis High School,01870505, 67, 63, 94.0 +4.092631578947368,4.09,a-ovpe-i1,2022-23,Milton-Milton High,01890505, 246, 239, 97.2 +1.9326315789473683,1.93,a-ovpe-i1,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 183, 84, 45.9 +2.606315789473684,2.61,a-ovpe-i1,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 42, 26, 61.9 +3.612631578947368,3.61,a-ovpe-i1,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 141, 121, 85.8 +3.427368421052632,3.43,a-ovpe-i1,2022-23,Monson-Monson High School,01910505, 43, 35, 81.4 +4.00421052631579,4.0,a-ovpe-i1,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605, 366, 348, 95.1 +3.9242105263157896,3.92,a-ovpe-i1,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 73, 68, 93.2 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 103, 103, 100.0 +3.418947368421053,3.42,a-ovpe-i1,2022-23,Nantucket-Nantucket High,01970505, 170, 138, 81.2 +3.0989473684210522,3.1,a-ovpe-i1,2022-23,Narragansett-Narragansett Regional High,07200505, 106, 78, 73.6 +4.092631578947368,4.09,a-ovpe-i1,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 214, 208, 97.2 +4.021052631578947,4.02,a-ovpe-i1,2022-23,Nashoba-Nashoba Regional,07250505, 202, 193, 95.5 +3.9368421052631577,3.94,a-ovpe-i1,2022-23,Natick-Natick High,01980505, 429, 401, 93.5 +3.76,3.76,a-ovpe-i1,2022-23,Nauset-Nauset Regional High,06600505, 169, 151, 89.3 +4.109473684210526,4.11,a-ovpe-i1,2022-23,Needham-Needham High,01990505, 415, 405, 97.6 +2.24,2.24,a-ovpe-i1,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 79, 42, 53.2 +2.025263157894737,2.03,a-ovpe-i1,2022-23,New Bedford-New Bedford High,02010505, 807, 388, 48.1 +1.8694736842105262,1.87,a-ovpe-i1,2022-23,New Bedford-Trinity Day Academy,02010510, 18, 8, 44.4 +1.3473684210526315,1.35,a-ovpe-i1,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 25, 8, 32.0 +3.2294736842105265,3.23,a-ovpe-i1,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 116, 89, 76.7 +3.8821052631578947,3.88,a-ovpe-i1,2022-23,Newburyport-Newburyport High,02040505, 193, 178, 92.2 +3.983157894736842,3.98,a-ovpe-i1,2022-23,Newton-Newton North High,02070505, 514, 486, 94.6 +4.130526315789473,4.13,a-ovpe-i1,2022-23,Newton-Newton South High,02070510, 467, 458, 98.1 +4.130526315789473,4.13,a-ovpe-i1,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 155, 152, 98.1 +2.8421052631578947,2.84,a-ovpe-i1,2022-23,North Adams-Drury High,02090505, 80, 54, 67.5 +3.7136842105263157,3.71,a-ovpe-i1,2022-23,North Andover-North Andover High,02110505, 348, 307, 88.2 +3.823157894736842,3.82,a-ovpe-i1,2022-23,North Attleborough-North Attleboro High,02120505, 239, 217, 90.8 +1.8863157894736842,1.89,a-ovpe-i1,2022-23,North Brookfield-North Brookfield High,02150505, 29, 13, 44.8 +3.9368421052631577,3.94,a-ovpe-i1,2022-23,North Middlesex-North Middlesex Regional,07350505, 185, 173, 93.5 +4.185263157894737,4.19,a-ovpe-i1,2022-23,North Reading-North Reading High,02170505, 175, 174, 99.4 +4.054736842105263,4.05,a-ovpe-i1,2022-23,Northampton-Northampton High,02100505, 218, 210, 96.3 +3.7431578947368425,3.74,a-ovpe-i1,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 153, 136, 88.9 +4.105263157894737,4.11,a-ovpe-i1,2022-23,Northboro-Southboro-Algonquin Regional High,07300505, 277, 270, 97.5 +3.317894736842105,3.32,a-ovpe-i1,2022-23,Northbridge-Northbridge High,02140505, 156, 123, 78.8 +3.4947368421052634,3.49,a-ovpe-i1,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605, 358, 297, 83.0 +3.2884210526315787,3.29,a-ovpe-i1,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 146, 114, 78.1 +3.848421052631579,3.85,a-ovpe-i1,2022-23,Norton-Norton High,02180505, 185, 169, 91.4 +4.181052631578948,4.18,a-ovpe-i1,2022-23,Norwell-Norwell High,02190505, 145, 144, 99.3 +3.5747368421052634,3.57,a-ovpe-i1,2022-23,Norwood-Norwood High,02200505, 218, 185, 84.9 +4.0884210526315785,4.09,a-ovpe-i1,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 138, 134, 97.1 +3.873684210526316,3.87,a-ovpe-i1,2022-23,Old Rochester-Old Rochester Regional High,07400505, 150, 138, 92.0 +2.8968421052631577,2.9,a-ovpe-i1,2022-23,Oxford-Oxford High,02260505, 109, 75, 68.8 +2.3410526315789473,2.34,a-ovpe-i1,2022-23,Palmer-Palmer High,02270505, 63, 35, 55.6 +3.4357894736842103,3.44,a-ovpe-i1,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 179, 146, 81.6 +1.4778947368421054,1.48,a-ovpe-i1,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 57, 20, 35.1 +1.6842105263157894,1.68,a-ovpe-i1,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 10, 4, 40.0 +2.454736842105263,2.45,a-ovpe-i1,2022-23,Peabody-Peabody Veterans Memorial High,02290510, 367, 214, 58.3 +4.08421052631579,4.08,a-ovpe-i1,2022-23,Pembroke-Pembroke High School,02310505, 168, 163, 97.0 +4.08,4.08,a-ovpe-i1,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 130, 126, 96.9 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 9, 9, 100.0 +0.11368421052631579,1,a-ovpe-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 75, 2, 2.7 +0.14736842105263157,1,a-ovpe-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 85, 3, 3.5 +3.877894736842105,3.88,a-ovpe-i1,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 63, 58, 92.1 +3.4610526315789474,3.46,a-ovpe-i1,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 73, 60, 82.2 +3.6715789473684213,3.67,a-ovpe-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 39, 34, 87.2 +3.667368421052631,3.67,a-ovpe-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 70, 61, 87.1 +3.8273684210526318,3.83,a-ovpe-i1,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 22, 20, 90.9 +NA,NA,a-ovpe-i1,2022-23,Pittsfield-Eagle Education Academy,02360525, 3,"","" +3.431578947368421,3.43,a-ovpe-i1,2022-23,Pittsfield-Pittsfield High,02360505, 151, 123, 81.5 +2.4042105263157896,2.4,a-ovpe-i1,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 7, 4, 57.1 +2.425263157894737,2.43,a-ovpe-i1,2022-23,Pittsfield-Taconic High,02360510, 250, 144, 57.6 +2.9810526315789474,2.98,a-ovpe-i1,2022-23,Plymouth-Plymouth North High,02390505, 322, 228, 70.8 +3.76,3.76,a-ovpe-i1,2022-23,Plymouth-Plymouth South High,02390515, 261, 233, 89.3 +3.2336842105263157,3.23,a-ovpe-i1,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 82, 63, 76.8 +2.008421052631579,2.01,a-ovpe-i1,2022-23,Quabbin-Quabbin Regional High School,07530505, 172, 82, 47.7 +3.4610526315789474,3.46,a-ovpe-i1,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 90, 74, 82.2 +3.705263157894737,3.71,a-ovpe-i1,2022-23,Quincy-North Quincy High,02430510, 384, 338, 88.0 +3.1789473684210527,3.18,a-ovpe-i1,2022-23,Quincy-Quincy High,02430505, 372, 281, 75.5 +2.383157894736842,2.38,a-ovpe-i1,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 113, 64, 56.6 +2.1347368421052635,2.13,a-ovpe-i1,2022-23,Randolph-Randolph High,02440505, 219, 111, 50.7 +4.029473684210527,4.03,a-ovpe-i1,2022-23,Reading-Reading Memorial High,02460505, 258, 247, 95.7 +1.305263157894737,1.31,a-ovpe-i1,2022-23,Revere-CityLab Innovation High School,02480520, 42, 13, 31.0 +2.096842105263158,2.1,a-ovpe-i1,2022-23,Revere-Revere High,02480505, 621, 309, 49.8 +3.322105263157895,3.32,a-ovpe-i1,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 76, 60, 78.9 +3.1747368421052635,3.17,a-ovpe-i1,2022-23,Rockland-Rockland Senior High,02510505, 175, 132, 75.4 +4.134736842105263,4.13,a-ovpe-i1,2022-23,Rockport-Rockport High,02520510, 55, 54, 98.2 +3.8147368421052628,3.81,a-ovpe-i1,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505, 160, 145, 90.6 +4.092631578947368,4.09,a-ovpe-i1,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 71, 69, 97.2 +NA,NA,a-ovpe-i1,2022-23,Salem-New Liberty Innovation School,02580510, 3,"","" +2.522105263157895,2.52,a-ovpe-i1,2022-23,Salem-Salem High,02580505, 262, 157, 59.9 +NA,NA,a-ovpe-i1,2022-23,Salem-Salem Prep High School,02580515, 2,"","" +3.7978947368421054,3.8,a-ovpe-i1,2022-23,Sandwich-Sandwich Middle High School,02610505, 132, 119, 90.2 +3.082105263157895,3.08,a-ovpe-i1,2022-23,Saugus-Saugus High,02620505, 194, 142, 73.2 +4.1557894736842105,4.16,a-ovpe-i1,2022-23,Scituate-Scituate High School,02640505, 159, 157, 98.7 +3.5789473684210527,3.58,a-ovpe-i1,2022-23,Seekonk-Seekonk High,02650505, 120, 102, 85.0 +3.9157894736842107,3.92,a-ovpe-i1,2022-23,Sharon-Sharon High,02660505, 300, 279, 93.0 +3.9326315789473685,3.93,a-ovpe-i1,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605, 334, 312, 93.4 +3.8610526315789473,3.86,a-ovpe-i1,2022-23,Shrewsbury-Shrewsbury High School,02710505, 496, 455, 91.7 +3.595789473684211,3.6,a-ovpe-i1,2022-23,Silver Lake-Silver Lake Regional High,07600505, 261, 223, 85.4 +3.418947368421053,3.42,a-ovpe-i1,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 69, 56, 81.2 +3.427368421052632,3.43,a-ovpe-i1,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 264, 215, 81.4 +NA,NA,a-ovpe-i1,2022-23,Somerville-Full Circle High School,02740510, 12, 0, .0 +3.4021052631578947,3.4,a-ovpe-i1,2022-23,Somerville-Somerville High,02740505, 354, 286, 80.8 +3.351578947368421,3.35,a-ovpe-i1,2022-23,South Hadley-South Hadley High,02780505, 108, 86, 79.6 +3.7010526315789476,3.7,a-ovpe-i1,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 240, 211, 87.9 +3.9705263157894737,3.97,a-ovpe-i1,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 87, 82, 94.3 +4.058947368421053,4.06,a-ovpe-i1,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 165, 159, 96.4 +2.6315789473684212,2.63,a-ovpe-i1,2022-23,Southbridge-Southbridge Academy,02770525, 8, 5, 62.5 +2.471578947368421,2.47,a-ovpe-i1,2022-23,Southbridge-Southbridge High School,02770515, 138, 81, 58.7 +4.008421052631579,4.01,a-ovpe-i1,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605, 415, 395, 95.2 +3.545263157894737,3.55,a-ovpe-i1,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 38, 32, 84.2 +3.351578947368421,3.35,a-ovpe-i1,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605, 318, 253, 79.6 +3.8694736842105266,3.87,a-ovpe-i1,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 111, 102, 91.9 +2.008421052631579,2.01,a-ovpe-i1,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 107, 51, 47.7 +2.808421052631579,2.81,a-ovpe-i1,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 111, 74, 66.7 +3.6842105263157894,3.68,a-ovpe-i1,2022-23,Springfield-Conservatory of the Arts,02810475, 48, 42, 87.5 +3.709473684210526,3.71,a-ovpe-i1,2022-23,Springfield-Emergence Academy,02810318, 59, 52, 88.1 +NA,NA,a-ovpe-i1,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 1,"","" +NA,NA,a-ovpe-i1,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 1,"","" +2.130526315789474,2.13,a-ovpe-i1,2022-23,Springfield-High School Of Commerce,02810510, 257, 130, 50.6 +2.4,2.4,a-ovpe-i1,2022-23,Springfield-John J Duggan Academy,02810320, 79, 45, 57.0 +NA,NA,a-ovpe-i1,2022-23,Springfield-Liberty Preparatory Academy,02810560, 1,"","" +3.221052631578947,3.22,a-ovpe-i1,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620, 366, 280, 76.5 +1.545263157894737,1.55,a-ovpe-i1,2022-23,Springfield-Springfield Central High,02810500, 645, 237, 36.7 +2.1052631578947367,2.11,a-ovpe-i1,2022-23,Springfield-Springfield High School,02810570, 12, 6, 50.0 +1.806315789473684,1.81,a-ovpe-i1,2022-23,Springfield-Springfield High School of Science and Technology,02810530, 331, 142, 42.9 +3.7978947368421054,3.8,a-ovpe-i1,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 41, 37, 90.2 +1.6842105263157894,1.68,a-ovpe-i1,2022-23,Springfield-Springfield Public Day High School,02810550, 10, 4, 40.0 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 92, 85, 92.4 +1.3389473684210527,1.34,a-ovpe-i1,2022-23,Springfield-The Springfield Virtual School,02810705, 44, 14, 31.8 +4.063157894736842,4.06,a-ovpe-i1,2022-23,Stoneham-Stoneham High,02840505, 171, 165, 96.5 +2.6442105263157893,2.64,a-ovpe-i1,2022-23,Stoughton-Stoughton High,02850505, 290, 182, 62.8 +4.113684210526316,4.11,a-ovpe-i1,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 215, 210, 97.7 +4.16421052631579,4.16,a-ovpe-i1,2022-23,Sutton-Sutton High School,02900510, 91, 90, 98.9 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Swampscott-Swampscott High,02910505, 172, 162, 94.2 +3.3684210526315788,3.37,a-ovpe-i1,2022-23,Swansea-Joseph Case High,02920505, 145, 116, 80.0 +1.654736842105263,1.65,a-ovpe-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 499, 196, 39.3 +3.789473684210526,3.79,a-ovpe-i1,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 160, 144, 90.0 +3.334736842105263,3.33,a-ovpe-i1,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 144, 114, 79.2 +2.8294736842105266,2.83,a-ovpe-i1,2022-23,Taunton-Taunton High,02930505, 573, 385, 67.2 +3.987368421052632,3.99,a-ovpe-i1,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 188, 178, 94.7 +3.642105263157895,3.64,a-ovpe-i1,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 275, 238, 86.5 +3.4652631578947366,3.47,a-ovpe-i1,2022-23,Triton-Triton Regional High School,07730505, 158, 130, 82.3 +3.9621052631578944,3.96,a-ovpe-i1,2022-23,Tyngsborough-Tyngsborough High School,03010505, 119, 112, 94.1 +4.172631578947368,4.17,a-ovpe-i1,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 219, 217, 99.1 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Uxbridge-Uxbridge High,03040505, 105, 97, 92.4 +NA,NA,a-ovpe-i1,2022-23,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 90, 0, .0 +3.8947368421052633,3.89,a-ovpe-i1,2022-23,Wachusett-Wachusett Regional High,07750505, 451, 417, 92.5 +3.3642105263157895,3.36,a-ovpe-i1,2022-23,Wakefield-Wakefield Memorial High,03050505, 224, 179, 79.9 +3.890526315789474,3.89,a-ovpe-i1,2022-23,Walpole-Walpole High,03070505, 236, 218, 92.4 +2.863157894736842,2.86,a-ovpe-i1,2022-23,Waltham-Waltham Sr High,03080505, 535, 364, 68.0 +2.218947368421053,2.22,a-ovpe-i1,2022-23,Ware-Ware Junior/Senior High School,03090505, 91, 48, 52.7 +NA,NA,a-ovpe-i1,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 2,"","" +2.0631578947368423,2.06,a-ovpe-i1,2022-23,Wareham-Wareham Senior High,03100505, 143, 70, 49.0 +3.1157894736842104,3.12,a-ovpe-i1,2022-23,Watertown-Watertown High,03140505, 215, 159, 74.0 +4.147368421052631,4.15,a-ovpe-i1,2022-23,Wayland-Wayland High School,03150505, 204, 201, 98.5 +1.9663157894736842,1.97,a-ovpe-i1,2022-23,Webster-Bartlett High School,03160505, 105, 49, 46.7 +4.126315789473685,4.13,a-ovpe-i1,2022-23,Wellesley-Wellesley Sr High,03170505, 358, 351, 98.0 +3.945263157894737,3.95,a-ovpe-i1,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 63, 59, 93.7 +3.6884210526315786,3.69,a-ovpe-i1,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 113, 99, 87.6 +2.7663157894736843,2.77,a-ovpe-i1,2022-23,West Springfield-West Springfield High,03320505, 344, 226, 65.7 +4.042105263157895,4.04,a-ovpe-i1,2022-23,Westborough-Westborough High,03210505, 301, 289, 96.0 +3.0442105263157893,3.04,a-ovpe-i1,2022-23,Westfield-Westfield High,03250505, 253, 183, 72.3 +4.0,4.0,a-ovpe-i1,2022-23,Westfield-Westfield Technical Academy,03250605, 140, 133, 95.0 +3.608421052631579,3.61,a-ovpe-i1,2022-23,Westfield-Westfield Virtual School,03250705, 7, 6, 85.7 +4.126315789473685,4.13,a-ovpe-i1,2022-23,Westford-Westford Academy,03260505, 353, 346, 98.0 +4.2105263157894735,4.21,a-ovpe-i1,2022-23,Weston-Weston High,03300505, 159, 159, 100.0 +3.3936842105263154,3.39,a-ovpe-i1,2022-23,Westport-Westport Middle-High School,03310515, 72, 58, 80.6 +4.021052631578947,4.02,a-ovpe-i1,2022-23,Westwood-Westwood High,03350505, 202, 193, 95.5 +3.023157894736842,3.02,a-ovpe-i1,2022-23,Weymouth-Weymouth High School,03360505, 507, 364, 71.8 +3.4652631578947366,3.47,a-ovpe-i1,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505, 260, 214, 82.3 +3.8442105263157895,3.84,a-ovpe-i1,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605, 322, 294, 91.3 +3.8442105263157895,3.84,a-ovpe-i1,2022-23,Wilmington-Wilmington High,03420505, 160, 146, 91.3 +NA,NA,a-ovpe-i1,2022-23,Winchendon-Murdock Academy for Success,03430405, 2,"","" +3.216842105263158,3.22,a-ovpe-i1,2022-23,Winchendon-Murdock High School,03430515, 89, 68, 76.4 +4.16421052631579,4.16,a-ovpe-i1,2022-23,Winchester-Winchester High School,03440505, 361, 357, 98.9 +3.0610526315789475,3.06,a-ovpe-i1,2022-23,Winthrop-Winthrop High School,03460505, 172, 125, 72.7 +3.8105263157894735,3.81,a-ovpe-i1,2022-23,Woburn-Woburn High,03470505, 294, 266, 90.5 +3.191578947368421,3.19,a-ovpe-i1,2022-23,Worcester-Burncoat Senior High,03480503, 318, 241, 75.8 +3.246315789473684,3.25,a-ovpe-i1,2022-23,Worcester-Claremont Academy,03480350, 70, 54, 77.1 +3.9663157894736845,3.97,a-ovpe-i1,2022-23,Worcester-Doherty Memorial High,03480512, 381, 359, 94.2 +2.9557894736842107,2.96,a-ovpe-i1,2022-23,Worcester-North High,03480515, 359, 252, 70.2 +3.9494736842105262,3.95,a-ovpe-i1,2022-23,Worcester-South High Community,03480520, 468, 439, 93.8 +3.8694736842105266,3.87,a-ovpe-i1,2022-23,Worcester-University Pk Campus School,03480285, 37, 34, 91.9 +3.8989473684210525,3.9,a-ovpe-i1,2022-23,Worcester-Worcester Technical High,03480605, 378, 350, 92.6 3.7010526315789476,3.7,a-ovpe-i1,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 91, 80, 87.9 3.250526315789474,3.25,a-ovpe-i1,2021-22,Abington-Abington High,00010505, 136, 105, 77.2 3.4989473684210526,3.5,a-ovpe-i1,2021-22,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 71, 59, 83.1 diff --git a/data/admin_data/dese/4B_2_retention.csv b/data/admin_data/dese/4B_2_retention.csv index cd98c2ef..d6dbcf10 100644 --- a/data/admin_data/dese/4B_2_retention.csv +++ b/data/admin_data/dese/4B_2_retention.csv @@ -1,143 +1,1871 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,# Enrolled,# Retained,% Retained,01,02,03,04,05,06,07,08,09,10,11,12 +8.0,5,a-degr-i2,2023-24,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105," 1,300", 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Abington-Woodsdale Elementary School,00010015, 352, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Abington-Abington High,00010505, 553, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Abington-Beaver Brook Elementary,00010020, 329, 1, 0.3, 0.6, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Abington-Abington Middle School,00010405, 636, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 440, 1, 0.2,"","","","", 0.0, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Blanchard Memorial School,06000005, 451, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Merriam School,06000010, 365, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-McCarthy-Towne School,06000015, 381, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Acton-Boxborough-Paul P Gates Elementary School,06000025, 297, 1, 0.3, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Acton-Boxborough-Luther Conant School,06000030, 353, 1, 0.3, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Acton-Boxborough-Raymond J Grey Junior High,06000405, 813, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Acton-Boxborough-Acton-Boxborough Regional High,06000505," 1,646", 8, 0.5,"","","","","","","","", 0.0, 0.7, 0.0, 1.2 +7.6,5,a-degr-i2,2023-24,Acushnet-Albert F Ford Middle School,00030305, 420, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.9,"","","","" +7.0,5,a-degr-i2,2023-24,Acushnet-Acushnet Elementary School,00030025, 378, 2, 0.5, 1.1, 1.1, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 966, 2, 0.2,"","","","","", 0.7, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,Agawam-Clifford M Granger,00050010, 283, 1, 0.4, 1.7, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Agawam-Benjamin J Phelps,00050020, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Agawam-William P. Sapelli Elementary,00050025, 231, 1, 0.4, 0.0, 2.0, 0.0, 0.0,"","","","","","","","" +4.0,4.0,a-degr-i2,2023-24,Agawam-Agawam High,00050505," 1,046", 21, 2.0,"","","","","","","","", 7.4, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Agawam-Roberta G. Doering School,00050303, 504, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Agawam-Agawam Junior High,00050405, 551, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" +6.4,5,a-degr-i2,2023-24,Agawam-James Clark School,00050030, 250, 2, 0.8, 1.5, 0.0, 1.7, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 941, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Amesbury-Amesbury Middle,00070013, 416, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-3.8000000000000007,1,a-degr-i2,2023-24,Amesbury-Amesbury Innovation High School,00070515, 51, 3, 5.9,"","","","","","","","", 0.0, 6.7, 0.0, 12.5 +5.4,5,a-degr-i2,2023-24,Amesbury-Amesbury High,00070505, 461, 6, 1.3,"","","","","","","","", 0.7, 1.7, 2.9, 0.0 +7.4,5,a-degr-i2,2023-24,Amesbury-Charles C Cashman Elementary,00070010, 398, 1, 0.3,"","", 0.7, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Amesbury-Shay Elementary,00070005, 279, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Amherst-Wildwood Elementary,00080050, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Amherst-Fort River Elementary,00080020, 298, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 2.8,"","","","","","" +7.2,5,a-degr-i2,2023-24,Amherst-Crocker Farm Elementary,00080009, 235, 1, 0.4, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Amherst-Pelham-Amherst Regional High,06050505, 837, 4, 0.5,"","","","","","","","", 0.0, 0.0, 0.0, 1.9 +8.0,5,a-degr-i2,2023-24,Amherst-Pelham-Amherst Regional Middle School,06050405, 369, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Andover-Bancroft Elementary,00090003, 449, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Andover-High Plain Elementary,00090004, 462, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Andover-Henry C Sanborn Elementary,00090010, 295, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Andover-South Elementary,00090020, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Andover-Andover High,00090505," 1,650", 9, 0.5,"","","","","","","","", 0.5, 0.7, 0.7, 0.2 +8.0,5,a-degr-i2,2023-24,Andover-Doherty Middle,00090305, 462, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Andover-Andover West Middle,00090310, 493, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Andover-Wood Hill Middle School,00090350, 331, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Andover-West Elementary,00090025, 488, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +0.5999999999999996,1,a-degr-i2,2023-24,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 574, 21, 3.7,"","","","","", 1.0, 0.0, 0.0, 13.5, 2.5, 0.0, 11.5 +8.0,5,a-degr-i2,2023-24,Arlington-Brackett,00100010, 363, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Arlington-Cyrus E Dallin,00100025, 354, 1, 0.3, 0.0, 0.0, 1.5, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Arlington-Hardy,00100030, 320, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Arlington-Arlington High,00100505," 1,609", 6, 0.4,"","","","","","","","", 0.0, 0.3, 0.3, 1.0 +8.0,5,a-degr-i2,2023-24,Arlington-Thompson,00100050, 436, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Arlington-M Norcross Stratton,00100055, 368, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Arlington-Gibbs School,00100305, 468, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Arlington-Ottoson Middle,00100410, 941, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Arlington-John A Bishop,00100005, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Arlington-Peirce,00100045, 294, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Ashburnham-Westminster-Overlook Middle School,06100305, 535, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Ashburnham-Westminster-Oakmont Regional High School,06100505, 631, 2, 0.3,"","","","","","","","", 0.6, 0.0, 0.0, 0.6 +7.0,5,a-degr-i2,2023-24,Ashburnham-Westminster-Briggs Elementary,06100025, 378, 2, 0.5, 2.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2023-24,Ashburnham-Westminster-Meetinghouse School,06100010, 84, 2, 2.4, 2.4,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Ashburnham-Westminster-Westminster Elementary,06100005, 408, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Ashland-Ashland High,00140505, 870, 4, 0.5,"","","","","","","","", 0.0, 1.8, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Ashland-David Mindess,00140015, 667, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Ashland-Henry E Warren Elementary,00140010, 392, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Ashland-Ashland Middle,00140405, 679, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605," 1,130", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.0,5,a-degr-i2,2023-24,Athol-Royalston-Athol Community Elementary School,06150020, 413, 2, 0.5, 2.0, 0.0, 0.0, 0.0,"","","","","","","","" +-1.1999999999999993,1,a-degr-i2,2023-24,Athol-Royalston-Athol High,06150505, 410, 19, 4.6,"","","","","","","","", 10.3, 4.0, 2.7, 1.1 +7.6,5,a-degr-i2,2023-24,Athol-Royalston-Athol-Royalston Middle School,06150305, 463, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.8,"","","","" +8.0,5,a-degr-i2,2023-24,Athol-Royalston-Royalston Community School,06150050, 110, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Atlantis Charter (District)-Atlantis Charter School,04910550," 1,148", 11, 1.0, 0.9, 0.9, 0.0, 0.0, 0.0, 0.9, 1.8, 0.9, 3.3, 4.4, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Attleboro-Cyril K. Brennan Middle School,00160315, 613, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Attleboro-Wamsutta Middle School,00160320, 580, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Attleboro-Attleboro High,00160505," 1,900", 10, 0.5,"","","","","","","","", 0.8, 0.4, 0.6, 0.2 +-6.800000000000001,1,a-degr-i2,2023-24,Attleboro-Attleboro Community Academy,00160515, 68, 5, 7.4,"","","","","","","", 0.0, 28.6, 7.7, 10.0, 0.0 +1.5999999999999996,1.6,a-degr-i2,2023-24,Attleboro-Attleboro Virtual Academy,00160705, 31, 1, 3.2,"","","","","","","","","","", 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,Attleboro-Robert J. Coelho Middle School,00160305, 577, 1, 0.2,"","","","", 0.0, 0.8, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Attleboro-Peter Thacher Elementary School,00160050, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2023-24,Attleboro-Hyman Fine Elementary School,00160040, 371, 3, 0.8, 3.2, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Attleboro-Thomas Willett Elementary School,00160035, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Attleboro-A. Irvin Studley Elementary School,00160001, 279, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Attleboro-Hill-Roberts Elementary School,00160045, 340, 1, 0.3, 0.0, 0.0, 1.3, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2023-24,Auburn-Bryn Mawr,00170010, 185, 1, 0.5, 0.0, 1.1,"","","","","","","","","","" +6.8,5,a-degr-i2,2023-24,Auburn-Pakachoag School,00170025, 170, 1, 0.6, 1.2, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Auburn-Auburn Senior High,00170505, 708, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Auburn-Auburn Middle,00170305, 622, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Auburn-Swanson Road Intermediate School,00170030, 561, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2023-24,Avon-Avon Middle High School,00180510, 405, 5, 1.2,"","","","","", 0.0, 0.0, 1.6, 4.1, 0.0, 3.1, 0.0 +8.0,5,a-degr-i2,2023-24,Avon-Ralph D Butler,00180010, 262, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Lura A. White Elementary School,06160001, 298, 3, 1.0, 3.4, 0.0, 0.0, 0.0, 1.9,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 412, 2, 0.5,"","","","","","","","", 2.1, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 379, 1, 0.3,"","","","","", 0.7, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 391, 2, 0.5, 1.2, 0.0, 1.9, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Barnstable-Hyannis West Elementary,00200025, 250, 1, 0.4, 0.0, 1.3, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Barnstable-West Barnstable Elementary,00200005, 201, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Barnstable-Centerville Elementary,00200010, 199, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Barnstable-Barnstable Community Innovation School,00200012, 229, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +0.20000000000000018,1,a-degr-i2,2023-24,Barnstable-Barnstable High,00200505," 1,742", 68, 3.9,"","","","","","","", 0.3, 5.7, 2.0, 5.3, 6.5 +7.4,5,a-degr-i2,2023-24,Barnstable-West Villages Elementary School,00200045, 313, 1, 0.3, 1.0, 0.0, 0.0,"","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Barnstable-Barnstable United Elementary School,00200050, 706, 1, 0.1,"","","", 0.3, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Barnstable-Barnstable Intermediate School,00200315, 639, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" +4.6,4.6,a-degr-i2,2023-24,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 414, 7, 1.7,"","","","","", 1.7, 0.0, 1.4, 1.6, 3.5, 3.2, 0.0 +7.4,5,a-degr-i2,2023-24,Bedford-Bedford High,00230505, 866, 3, 0.3,"","","","","","","","", 0.9, 0.5, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Bedford-Lt Eleazer Davis,00230010, 311, 1, 0.3, 0.0, 0.7,"","","","","","","","","","" +7.6,5,a-degr-i2,2023-24,Bedford-John Glenn Middle,00230305, 612, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Bedford-Lt Job Lane School,00230012, 571, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +2.5999999999999996,2.6,a-degr-i2,2023-24,Belchertown-Belchertown High,00240505, 597, 16, 2.7,"","","","","","","","", 4.2, 5.2, 0.7, 0.7 +7.4,5,a-degr-i2,2023-24,Belchertown-Jabish Middle School,00240025, 333, 1, 0.3,"","","","","","", 0.0, 0.6,"","","","" +7.6,5,a-degr-i2,2023-24,Belchertown-Swift River Elementary,00240018, 468, 1, 0.2, 0.0, 0.6, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Belchertown-Chestnut Hill Community School,00240006, 489, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +-7.4,1,a-degr-i2,2023-24,Bellingham-Keough Memorial Academy,00250510, 26, 2, 7.7,"","","","","","","", 16.7, 0.0, 12.5,"","" +6.4,5,a-degr-i2,2023-24,Bellingham-Bellingham High School,00250505, 742, 6, 0.8,"","","","","","","", 0.0, 0.6, 1.3, 1.4, 0.7 +7.0,5,a-degr-i2,2023-24,Bellingham-Bellingham Memorial School,00250315, 591, 3, 0.5,"","","", 0.0, 0.0, 0.0, 1.9,"","","","","" +8.0,5,a-degr-i2,2023-24,Bellingham-Stall Brook,00250025, 171, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Bellingham-Joseph F DiPietro Elementary School,00250020, 217, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Belmont-Winthrop L Chenery Upper Elementary,00260305, 713, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Belmont-Belmont Middle School,00260315, 666, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Belmont-Belmont High,00260505," 1,462", 13, 0.9,"","","","","","","","", 1.3, 1.1, 0.8, 0.3 +8.0,5,a-degr-i2,2023-24,Belmont-Winn Brook,00260005, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Belmont-Roger E Wellington,00260035, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Belmont-Mary Lee Burbank,00260010, 269, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Belmont-Daniel Butler,00260015, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2023-24,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 281, 3, 1.1, 6.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 788, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Berkley-Berkley Community School,00270010, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Berkley-Berkley Middle School,00270305, 365, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.2,5,a-degr-i2,2023-24,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 365, 5, 1.4,"","","","","", 0.0, 0.0, 1.5, 5.8, 0.0, 0.0, 3.4 +6.4,5,a-degr-i2,2023-24,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 265, 2, 0.8, 1.8, 0.0, 1.4, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 348, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2023-24,Berkshire Hills-Monument Mt Regional High,06180505, 447, 3, 0.7,"","","","","","","","", 0.0, 0.0, 0.7, 1.9 +8.0,5,a-degr-i2,2023-24,Berlin-Boylston-Tahanto Regional High,06200505, 554, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Berlin-Boylston-Berlin Memorial School,06200005, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Berlin-Boylston-Boylston Elementary School,06200010, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Beverly-Cove Elementary,00300015, 323, 1, 0.3, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2023-24,Beverly-Centerville Elementary,00300010, 265, 2, 0.8, 1.4, 1.7, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Beverly-North Beverly Elementary,00300040, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Beverly-Hannah Elementary,00300033, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Beverly-Ayers/Ryal Side School,00300055, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2023-24,Beverly-Beverly High,00300505," 1,246", 27, 2.2,"","","","","","","","", 4.2, 1.8, 1.7, 0.7 +8.0,5,a-degr-i2,2023-24,Beverly-Beverly Middle School,00300305," 1,356", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Billerica-Thomas Ditson,00310005, 446, 1, 0.2, 0.0, 0.0, 0.9, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Billerica-Frederick J Dutile,00310007, 236, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Billerica-John F Kennedy,00310012, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +4.6,4.6,a-degr-i2,2023-24,Billerica-Billerica Memorial High School,00310505," 1,592", 27, 1.7,"","","","","","","", 0.0, 3.9, 4.5, 0.0, 0.4 +8.0,5,a-degr-i2,2023-24,Billerica-Hajjar Elementary,00310026, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Billerica-Marshall Middle School,00310305, 599, 1, 0.2,"","","","", 0.0, 0.0, 0.5,"","","","","" +8.0,5,a-degr-i2,2023-24,Billerica-Locke Middle,00310310, 503, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2023-24,Billerica-Parker,00310015, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2023-24,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605," 1,250", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Blackstone-Millville-Millville Elementary,06220010, 179, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Blackstone-Millville-John F Kennedy Elementary,06220008, 115, 0, 0.0,"","", 0.0,"","","","","","","","","" +7.0,5,a-degr-i2,2023-24,Blackstone-Millville-Blackstone Millville RHS,06220505, 377, 2, 0.5,"","","","","","","","", 1.0, 1.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Blackstone-Millville-A F Maloney,06220015, 238, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 367, 1, 0.3,"","","","","", 0.0, 0.0, 0.7,"","","","" +7.6,5,a-degr-i2,2023-24,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 918, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.5, 0.0 +7.2,5,a-degr-i2,2023-24,Boston-Roosevelt K-8 School,00350116, 256, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.2,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Conley Elementary School,00350122, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Grew Elementary School,00350135, 159, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Holmes Elementary School,00350138, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-O'Donnell Elementary School,00350141, 222, 1, 0.5, 0.0, 2.6, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Boston-Condon K-8 School,00350146, 497, 1, 0.2, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Boston-Hennigan K-8 School,00350153, 478, 3, 0.6, 2.5, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","" +5.4,5,a-degr-i2,2023-24,Boston-Chittick Elementary School,00350154, 156, 2, 1.3, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Manning Elementary School,00350184, 137, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Kilmer K-8 School,00350190, 292, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.7,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Harvard-Kent Elementary School,00350200, 254, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Bradley Elementary School,00350215, 229, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Mather Elementary School,00350227, 343, 1, 0.3, 0.0, 0.0, 0.0, 1.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Tobin K-8 School,00350229, 327, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Perkins Elementary School,00350231, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Mozart Elementary School,00350237, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Murphy K-8 School,00350240, 722, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Hale Elementary School,00350243, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Perry Elementary School,00350255, 127, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Boston-Orchard Gardens K-8 School,00350257, 573, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0,"","","","" +6.0,5,a-degr-i2,2023-24,Boston-Lee Academy,00350001, 101, 1, 1.0, 2.9, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Baldwin Early Learning Pilot Academy,00350003, 53, 0, 0.0, 0.0,"","","","","","","","","","","" +7.6,5,a-degr-i2,2023-24,Boston-Ohrenberger School,00350258, 448, 1, 0.2,"","", 0.0, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Lyndon K-8 School,00350262, 407, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Kennedy Patrick J Elementary School,00350264, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2023-24,Boston-Henderson K-12 Inclusion School Lower,00350266, 70, 1, 1.4, 1.4,"","","","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Dever Elementary School,00350268, 332, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-Bates Elementary School,00350278, 217, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Boston-Quincy Elementary School,00350286, 563, 2, 0.4, 0.9, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Clap Elementary School,00350298, 98, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.4000000000000004,2.4,a-degr-i2,2023-24,Boston-Lyon K-8 School,00350004, 107, 3, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.3, 18.2,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-West Zone Early Learning Center,00350006, 30, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 57, 0, 0.0,"","", 0.0,"","","", 0.0,"", 0.0,"", 0.0,"" +-85.0,1,a-degr-i2,2023-24,Boston-Boston Collaborative High School,00350755, 217, 101, 46.5,"","","","","","","","", 85.7, 47.6, 44.6, 45.1 +4.4,4.4,a-degr-i2,2023-24,Boston-O'Bryant School of Math & Science,00350575," 1,538", 28, 1.8,"","","","","","", 4.1, 0.7, 1.9, 1.5, 2.7, 0.4 +-12.0,1,a-degr-i2,2023-24,Boston-Community Academy of Science and Health,00350581, 311, 31, 10.0,"","","","","","","","", 20.6, 8.3, 9.2, 3.8 +0.20000000000000018,1,a-degr-i2,2023-24,Boston-Lyon High School,00350655, 102, 4, 3.9,"","","","","","","","", 3.6, 3.4, 6.7, 3.3 +7.2,5,a-degr-i2,2023-24,Boston-Mario Umana Academy,00350656, 525, 2, 0.4, 1.5, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","" +3.0,3.0,a-degr-i2,2023-24,Boston-TechBoston Academy,00350657, 870, 22, 2.5,"","","","","", 2.6, 4.6, 3.6, 3.4, 1.8, 1.3, 1.4 +-4.199999999999999,1,a-degr-i2,2023-24,Boston-Snowden International High School,00350690, 445, 27, 6.1,"","","","","","","","", 8.2, 5.8, 3.7, 6.5 +8.0,5,a-degr-i2,2023-24,Boston-Hernandez K-8 School,00350691, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Boston-Otis Elementary School,00350156, 311, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Kennedy John F Elementary School,00350166, 317, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Boston-UP Academy Holland,00350167, 446, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Philbrick Elementary School,00350172, 97, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2023-24,Boston-Winthrop Elementary School,00350180, 175, 2, 1.1, 3.3, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Tynan Elementary School,00350181, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Hurley K-8 School,00350182, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Lee K-8 School,00350183, 414, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-16.2,1,a-degr-i2,2023-24,Boston-Brighton High School,00350505, 572, 69, 12.1,"","","","","","", 3.3, 2.5, 19.6, 10.3, 8.3, 18.5 +-12.600000000000001,1,a-degr-i2,2023-24,Boston-Boston International High School & Newcomers Academy,00350507, 486, 50, 10.3,"","","","","","","","", 21.9, 5.4, 4.8, 3.8 +-12.0,1,a-degr-i2,2023-24,Boston-Charlestown High School,00350515, 738, 74, 10.0,"","","","","","", 0.0, 2.8, 17.9, 7.1, 8.7, 11.2 +-21.2,1,a-degr-i2,2023-24,Boston-Community Academy,00350518, 41, 6, 14.6,"","","","","","","","","","", 7.1, 17.6 +-27.4,1,a-degr-i2,2023-24,Boston-Excel High School,00350522, 384, 68, 17.7,"","","","","","","","", 24.0, 19.3, 21.8, 5.6 +-1.4000000000000004,1,a-degr-i2,2023-24,Boston-Burke High School,00350525, 383, 18, 4.7,"","","","","","", 0.0, 0.0, 17.8, 1.4, 0.0, 4.5 +4.0,4.0,a-degr-i2,2023-24,Boston-East Boston High School,00350530," 1,271", 26, 2.0,"","","","","","", 0.0, 0.0, 0.4, 0.4, 2.0, 6.3 +-0.5999999999999996,1,a-degr-i2,2023-24,Boston-English High School,00350535, 667, 29, 4.3,"","","","","","", 4.5, 0.0, 13.9, 0.0, 0.0, 3.1 +-2.5999999999999996,1,a-degr-i2,2023-24,Boston-Madison Park Technical Vocational High School,00350537," 1,023", 54, 5.3,"","","","","","","","", 5.9, 5.9, 5.5, 3.1 +2.5999999999999996,2.6,a-degr-i2,2023-24,Boston-Fenway High School,00350540, 367, 10, 2.7,"","","","","","","","", 2.9, 5.5, 2.3, 0.0 +-12.0,1,a-degr-i2,2023-24,Boston-Another Course To College,00350541, 240, 24, 10.0,"","","","","","","","", 12.5, 14.1, 6.5, 6.9 +7.2,5,a-degr-i2,2023-24,Boston-New Mission High School,00350542, 668, 3, 0.4,"","","","","","", 0.0, 0.0, 0.0, 1.5, 0.7, 0.0 +-85.4,1,a-degr-i2,2023-24,Boston-Greater Egleston High School,00350543, 75, 35, 46.7,"","","","","","","","", 81.8, 62.5, 45.0, 33.3 +5.2,5,a-degr-i2,2023-24,Boston-Boston Latin Academy,00350545," 1,693", 24, 1.4,"","","","","","", 1.5, 2.0, 2.6, 1.3, 1.1, 0.0 +3.4000000000000004,3.4,a-degr-i2,2023-24,Boston-Boston Arts Academy,00350546, 472, 11, 2.3,"","","","","","","","", 1.7, 0.8, 1.7, 5.6 +-43.0,1,a-degr-i2,2023-24,Boston-Boston Adult Tech Academy,00350548, 184, 47, 25.5,"","","","","","","","","","", 16.7, 36.6 +4.2,4.2,a-degr-i2,2023-24,Boston-Margarita Muniz Academy,00350549, 308, 6, 1.9,"","","","","","","","", 0.0, 2.3, 1.3, 4.9 +4.0,4.0,a-degr-i2,2023-24,Boston-Boston Community Leadership Academy,00350558, 557, 11, 2.0,"","","","","","", 0.0, 1.4, 5.5, 2.4, 0.0, 1.1 +5.8,5,a-degr-i2,2023-24,Boston-Boston Latin School,00350560," 2,400", 26, 1.1,"","","","","","", 3.5, 1.2, 1.2, 0.5, 0.0, 0.0 +0.40000000000000036,1,a-degr-i2,2023-24,Boston-Quincy Upper School,00350565, 528, 20, 3.8,"","","","","", 0.0, 3.6, 1.3, 8.6, 9.5, 4.5, 3.3 +6.0,5,a-degr-i2,2023-24,Boston-Ellison-Parks Early Education School,00350008, 99, 1, 1.0, 0.0, 0.0, 3.2,"","","","","","","","","" +4.0,4.0,a-degr-i2,2023-24,Boston-East Boston Early Education Center,00350009, 50, 1, 2.0, 2.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Haynes Early Education Center,00350010, 76, 0, 0.0, 0.0,"","","","","","","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-Boston Teachers Union K-8 Pilot,00350012, 222, 1, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.9, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Shaw Elementary School,00350014, 122, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.0,3.0,a-degr-i2,2023-24,Boston-Higginson Inclusion K0-2 School,00350015, 81, 2, 2.5, 4.8, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Mattahunt Elementary School,00350016, 343, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2023-24,Boston-Curley K-8 School,00350020, 730, 1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.3, 0.0,"","","","" +5.4,5,a-degr-i2,2023-24,Boston-Beethoven Elementary School,00350021, 154, 2, 1.3, 0.0, 2.5,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Adams Elementary School,00350302, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Mason Elementary School,00350304, 144, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Boston-Greenwood Sarah K-8 School,00350308, 282, 1, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2023-24,Boston-Gardner Pilot Academy,00350326, 304, 6, 2.0, 7.5, 5.6, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Kenny Elementary School,00350328, 270, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Boston-Warren-Prescott K-8 School,00350346, 381, 4, 1.0, 2.9, 1.7, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Channing Elementary School,00350360, 126, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-24.200000000000003,1,a-degr-i2,2023-24,Boston-Melvin H. King South End Academy,00350363, 124, 20, 16.1,"","","","","", 14.3, 16.7, 5.6, 25.0, 25.0, 10.0, 21.1 +8.0,5,a-degr-i2,2023-24,Boston-Russell Elementary School,00350366, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-Trotter Elementary School,00350370, 219, 1, 0.5, 0.0, 0.0, 2.8, 0.0, 0.0, 0.0,"","","","","","" +-27.799999999999997,1,a-degr-i2,2023-24,Boston-Carter School,00350036, 28, 5, 17.9,"","","","","","","","","","","", 45.5 +8.0,5,a-degr-i2,2023-24,Boston-Sumner Elementary School,00350052, 438, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Taylor Elementary School,00350054, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Boston-Guild Elementary School,00350062, 183, 1, 0.5, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Alighieri Dante Montessori School,00350066, 66, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Ellis Elementary School,00350072, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +0.7999999999999998,1,a-degr-i2,2023-24,Boston-Dearborn 6-12 STEM Academy,00350074, 553, 20, 3.6,"","","","","", 0.0, 1.4, 3.2, 7.0, 7.9, 2.0, 1.3 +7.4,5,a-degr-i2,2023-24,Boston-Haley Pilot School,00350077, 304, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Boston-McKay K-8 School,00350080, 596, 3, 0.5, 1.7, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Winship Elementary School,00350374, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Edison K-8 School,00350375, 528, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Boston-King Elementary School,00350376, 320, 3, 0.9, 1.7, 1.7, 0.0, 0.0, 1.9, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Boston-Higginson-Lewis K-8 School,00350377, 169, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Boston-Mildred Avenue K-8 School,00350378, 500, 3, 0.6, 2.5, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,"","","","" +7.4,5,a-degr-i2,2023-24,Boston-Young Achievers K-8 School,00350380, 372, 1, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +1.2000000000000002,1.2,a-degr-i2,2023-24,Boston-Frederick Pilot Middle School,00350383, 327, 11, 3.4,"","","","","", 0.0, 0.9, 8.0,"","","","" +7.0,5,a-degr-i2,2023-24,Boston-Blackstone Elementary School,00350390, 430, 2, 0.5, 1.4, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Boston-Henderson K-12 Inclusion School Upper,00350426, 627, 6, 1.0,"", 0.0, 0.0, 1.8, 2.1, 0.0, 0.0, 0.0, 1.7, 4.5, 0.0, 0.0 +6.2,5,a-degr-i2,2023-24,Boston-Everett Elementary School,00350088, 226, 2, 0.9, 2.6, 0.0, 0.0, 0.0, 2.6, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Boston-Eliot K-8 Innovation School,00350096, 642, 2, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5,"","","","" +8.0,5,a-degr-i2,2023-24,Boston-Mendell Elementary School,00350100, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-0.40000000000000036,1,a-degr-i2,2023-24,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 688, 29, 4.2,"","","","", 0.0, 0.0, 2.3, 2.4, 17.8, 0.0, 5.6, 6.2 +-101.2,1,a-degr-i2,2023-24,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 293, 160, 54.6,"","","","","","","","", 80.0, 16.7,"", 56.2 +6.2,5,a-degr-i2,2023-24,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 446, 4, 0.9,"","","","","", 0.0, 0.0, 0.0, 0.0, 1.3, 1.4, 3.3 +-2.5999999999999996,1,a-degr-i2,2023-24,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 693, 37, 5.3,"","","","","", 0.0, 0.9, 1.0, 23.7, 3.3, 4.3, 0.0 +8.0,5,a-degr-i2,2023-24,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 699, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Bourne-Bournedale Elementary School,00360005, 243, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Bourne-Bourne Intermediate School,00360030, 359, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Bourne-Bourne Middle School,00360325, 440, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Bourne-Bourne High School,00360505, 325, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Boxford-Spofford Pond,00380013, 403, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Boxford-Harry Lee Cole,00380005, 198, 1, 0.5, 0.0, 1.0,"","","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Braintree-Liberty,00400025, 300, 1, 0.3, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Braintree-East Middle School,00400305, 999, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Braintree-South Middle School,00400310, 638, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Braintree-Braintree High,00400505," 1,570", 7, 0.4,"","","","","","","","", 0.6, 0.0, 0.9, 0.3 +8.0,5,a-degr-i2,2023-24,Braintree-Mary E Flaherty School,00400020, 260, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Braintree-Highlands,00400015, 308, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2023-24,Braintree-Archie T Morrison,00400033, 277, 2, 0.7, 1.3, 1.4, 0.0, 0.0,"","","","","","","","" +2.4000000000000004,2.4,a-degr-i2,2023-24,Braintree-Hollis,00400005, 285, 8, 2.8, 9.9, 1.6, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2023-24,Braintree-Donald Ross,00400050, 158, 1, 0.6, 2.4, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2023-24,Brewster-Stony Brook Elementary,00410005, 134, 1, 0.7, 0.0, 1.4,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Brewster-Eddy Elementary,00410010, 205, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 264, 2, 0.8, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-10.2,1,a-degr-i2,2023-24,Bridgewater-Raynham-Therapeutic Day School,06250415, 11, 1, 9.1,"","","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Bridgewater Middle School,06250320, 787, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Raynham Middle School,06250315, 746, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Bridgewater-Raynham-Williams Intermediate School,06250300, 832, 1, 0.1,"","", 0.4, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Bridgewater-Raynham-Laliberte Elementary School,06250050, 508, 1, 0.2,"", 0.0, 0.6, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Merrill Elementary School,06250020, 187, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Bridgewater-Raynham-Mitchell Elementary School,06250002, 533, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +6.4,5,a-degr-i2,2023-24,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505," 1,394", 11, 0.8,"","","","","","","","", 1.3, 0.5, 1.2, 0.0 +8.0,5,a-degr-i2,2023-24,Brimfield-Brimfield Elementary,00430005, 222, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Bristol County Agricultural-Bristol County Agricultural High,09100705, 592, 3, 0.5,"","","","","","","","", 1.8, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605," 1,330", 3, 0.2,"","","","","","","","", 0.3, 0.3, 0.3, 0.0 +-32.2,1,a-degr-i2,2023-24,Brockton-Brockton Virtual Learning Academy,00440705, 159, 32, 20.1,"","", 0.0, 0.0,"", 0.0, 0.0, 0.0, 57.1, 39.3, 23.8, 0.0 +8.0,5,a-degr-i2,2023-24,Brockton-PROMISE College and Career Academy,00440525, 97, 0, 0.0,"","","","","","","","", 0.0, 0.0,"","" +-54.6,1,a-degr-i2,2023-24,Brockton-Edison Day Academy,00440535, 163, 51, 31.3,"","","","","","","","", 73.1, 21.4, 2.9, 0.0 +-25.4,1,a-degr-i2,2023-24,Brockton-Edison Evening Academy,00440520, 198, 33, 16.7,"","","","","","","","", 6.5, 20.3, 19.0, 16.1 +-13.2,1,a-degr-i2,2023-24,Brockton-Brockton High,00440505," 3,522", 375, 10.6,"","","","","","","","", 23.0, 10.4, 2.8, 0.4 +8.0,5,a-degr-i2,2023-24,Brockton-Plouffe Middle School,00440422, 629, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Brockton-Ashfield Middle School,00440421, 517, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2023-24,Brockton-West Middle School,00440420, 492, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Brockton-South Middle School,00440415, 468, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Brockton-North Middle School,00440410, 406, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Brockton-East Middle School,00440405, 432, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" +-19.8,1,a-degr-i2,2023-24,Brockton-Huntington Therapeutic Day School,00440400, 36, 5, 13.9,"","","","","","","","", 11.1,"", 12.5, 20.0 +7.6,5,a-degr-i2,2023-24,Brockton-Dr W Arnone Community School,00440001, 600, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Brockton-Mary E. Baker School,00440002, 607, 4, 0.7, 1.6, 0.8, 0.8, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Brockton-Manthala George Jr. School,00440003, 582, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Brockton-Brookfield,00440010, 339, 2, 0.6, 1.5, 1.3, 0.0, 0.0, 0.0,"","","","","","","" +4.6,4.6,a-degr-i2,2023-24,Brockton-John F Kennedy,00440017, 422, 7, 1.7, 1.0, 5.2, 0.0, 1.6, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Brockton-Edgar B Davis,00440023, 837, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Brockton-Hancock,00440045, 529, 2, 0.4, 0.9, 0.0, 0.0, 1.2, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Brockton-Gilmore Elementary School,00440055, 335, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Brockton-Louis F Angelo Elementary,00440065, 719, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Brockton-Oscar F Raymond,00440078, 665, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Brockton-Downey,00440110, 462, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2023-24,Brooke Charter School (District)-Brooke Charter School,04280305," 2,014", 45, 2.2, 6.7, 1.0, 3.1, 1.6, 1.6, 1.6, 1.2, 1.1, 2.1, 2.8, 2.6, 0.9 +6.4,5,a-degr-i2,2023-24,Brookfield-Brookfield Elementary,00450005, 237, 2, 0.8, 0.0, 2.4, 0.0, 0.0, 2.4, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Brookline-Michael Driscoll,00460020, 432, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Brookline-Brookline High,00460505," 2,155", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 +7.6,5,a-degr-i2,2023-24,Brookline-Lawrence,00460030, 547, 1, 0.2, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Brookline-William H Lincoln,00460035, 422, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Brookline-Pierce,00460040, 600, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Brookline-John D Runkle,00460045, 421, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Brookline-Florida Ruffin Ridley School,00460015, 736, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Brookline-Edith C Baker,00460005, 588, 1, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Brookline-Heath,00460025, 393, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Burlington-Burlington High,00480505, 901, 8, 0.9,"","","","","","","","", 1.3, 1.3, 0.4, 0.5 +8.0,5,a-degr-i2,2023-24,Burlington-Fox Hill,00480007, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Burlington-Marshall Simonds Middle,00480303, 862, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Burlington-Pine Glen Elementary,00480020, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Burlington-Francis Wyman Elementary,00480035, 415, 1, 0.2, 0.0, 0.0, 1.1, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Burlington-Memorial,00480015, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Fletcher/Maynard Academy,00490090, 176, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Graham and Parks,00490080, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Putnam Avenue Upper School,00490310, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Rindge Avenue Upper School,00490315, 289, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Vassal Lane Upper School,00490320, 258, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.6,4.6,a-degr-i2,2023-24,Cambridge-Cambridge Rindge and Latin,00490506," 1,957", 34, 1.7,"","","","","","","","", 2.4, 1.4, 1.4, 1.6 +8.0,5,a-degr-i2,2023-24,Cambridge-Cambridge Street Upper School,00490305, 304, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-John M Tobin,00490065, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Cambridge-Peabody,00490050, 228, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.2,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Morse,00490045, 201, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Kennedy-Longfellow,00490040, 164, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-King Open,00490035, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Cambridge-Martin Luther King Jr.,00490030, 235, 1, 0.4, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Haggerty,00490020, 175, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Cambridge-Cambridgeport,00490007, 198, 1, 0.5, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Amigos School,00490006, 338, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Cambridge-Maria L. Baldwin,00490005, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Canton-Canton High,00500505, 925, 3, 0.3,"","","","","","","","", 0.9, 0.0, 0.5, 0.0 +8.0,5,a-degr-i2,2023-24,Canton-Lt Peter M Hansen,00500012, 458, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Canton-John F Kennedy,00500017, 388, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Canton-Dean S Luce,00500020, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Canton-Wm H Galvin Middle,00500305, 742, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 251, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 663, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Carlisle-Carlisle School,00510025, 524, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Carver-Carver Middle/High School,00520405, 711, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0 +8.0,5,a-degr-i2,2023-24,Carver-Carver Elementary School,00520015, 616, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Central Berkshire-Wahconah Regional High,06350505, 482, 11, 2.3,"","","","","","","","", 3.3, 5.2, 0.8, 0.0 +8.0,5,a-degr-i2,2023-24,Central Berkshire-Becket Washington School,06350005, 72, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Central Berkshire-Craneville,06350025, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Central Berkshire-Kittredge,06350035, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Central Berkshire-Nessacus Regional Middle School,06350305, 358, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chelmsford-Col Moses Parker School,00560305, 797, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Chelmsford-McCarthy Middle School,00560310, 782, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chelmsford-Byam School,00560030, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Chelmsford-Center Elementary School,00560005, 371, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Chelmsford-South Row,00560015, 380, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Chelmsford-Charles D Harrington,00560025, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Chelmsford-Chelmsford High,00560505," 1,413", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.9 +8.0,5,a-degr-i2,2023-24,Chelsea-Shurtleff Early Childhood,00570003, 88, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-William A Berkowitz Elementary,00570025, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-Edgar F. Hooks Elementary,00570030, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Chelsea-George F. Kelly Elementary,00570035, 486, 2, 0.4, 0.0, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-Frank M Sokolowski Elementary,00570040, 497, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-Eugene Wright Science and Technology Academy,00570045, 443, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-Clark Avenue School,00570050, 678, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chelsea-Joseph A. Browne School,00570055, 485, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-3.0,1,a-degr-i2,2023-24,Chelsea-Chelsea High,00570505," 1,675", 92, 5.5,"","","","","","","","", 10.5, 5.2, 0.7, 4.4 +-41.6,1,a-degr-i2,2023-24,Chelsea-Chelsea Opportunity Academy,00570515, 125, 31, 24.8,"","","","","","","","", 33.3, 25.0, 5.6, 33.3 +-28.6,1,a-degr-i2,2023-24,Chelsea-Chelsea Virtual Learning Academy,00570705, 60, 11, 18.3,"","","","","","","", 0.0, 41.7, 12.5, 0.0, 29.4 +8.0,5,a-degr-i2,2023-24,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 103, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Belcher,00610010, 118, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Chicopee-Dupont Middle,00610310, 678, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Bellamy Middle,00610305, 817, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Gen John J Stefanik,00610090, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Streiber Memorial School,00610065, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Chicopee-Chicopee Comprehensive High School,00610510," 1,212", 5, 0.4,"","","","","","","","", 0.0, 0.3, 0.0, 1.4 +7.2,5,a-degr-i2,2023-24,Chicopee-Chicopee High,00610505, 932, 4, 0.4,"","","","","","","","", 0.0, 0.0, 0.4, 1.4 +7.2,5,a-degr-i2,2023-24,Chicopee-Fairview Elementary,00610050, 285, 1, 0.4, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Lambert-Lavoie,00610040, 190, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Litwin,00610022, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2023-24,Chicopee-Chicopee Academy,00610021, 69, 1, 1.4,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 10.0 +8.0,5,a-degr-i2,2023-24,Chicopee-Bowie,00610020, 232, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2023-24,Chicopee-Bowe,00610015, 331, 3, 0.9, 1.8, 1.5, 1.3, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Chicopee-Barry,00610003, 307, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Christa McAuliffe Charter School (District)-Christa McAuliffe Charter School,04180305, 288, 2, 0.7,"","","","","", 2.4, 0.0, 0.0,"","","","" +-14.2,1,a-degr-i2,2023-24,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 199, 22, 11.1,"","","","","","","","", 10.7, 14.8, 10.4, 5.9 +8.0,5,a-degr-i2,2023-24,Clarksburg-Clarksburg Elementary,00630010, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +3.0,3.0,a-degr-i2,2023-24,Clinton-Clinton Senior High,00640505, 557, 14, 2.5,"","","","","","","","", 7.9, 0.0, 0.0, 1.4 +7.6,5,a-degr-i2,2023-24,Clinton-Clinton Middle School,00640305, 571, 1, 0.2,"","","","", 0.0, 0.8, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Clinton-Clinton Elementary,00640050, 582, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2023-24,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 292, 2, 0.7, 0.0, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0, 4.2, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Cohasset-Cohasset High School,00650505, 406, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Cohasset-Cohasset Middle School,00650305, 290, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Cohasset-Joseph Osgood,00650010, 245, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Cohasset-Deer Hill,00650005, 321, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205," 1,111", 8, 0.7, 0.0, 0.8, 1.1, 1.0, 0.0, 0.9, 1.8, 0.0, 2.2, 0.0, 0.0, 0.0 +5.0,5.0,a-degr-i2,2023-24,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 261, 4, 1.5,"","","","","", 0.0, 0.0, 0.0, 6.9, 6.7, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Community Day Charter Public School (District)-Community Day Charter Public School,04400205, 952, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Concord-Concord Middle,00670305, 654, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Concord-Thoreau,00670020, 344, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Concord-Alcott,00670005, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Concord-Willard,00670030, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Concord-Carlisle-Concord Carlisle High,06400505," 1,225", 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.3, 0.0 +5.2,5,a-degr-i2,2023-24,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 348, 5, 1.4, 3.8, 0.0, 1.9, 1.8, 0.0, 2.4, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Conway-Conway Grammar,00680005, 112, 1, 0.9, 0.0, 0.0, 5.3, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Danvers-Great Oak,00710015, 259, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Highlands,00710010, 324, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Riverside,00710030, 219, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Ivan G Smith,00710032, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Willis E Thorpe,00710045, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Danvers-Holten Richmond Middle School,00710305, 741, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Danvers-Danvers High,00710505, 787, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.6, 0.0 +8.0,5,a-degr-i2,2023-24,Dartmouth-George H Potter,00720030, 341, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dartmouth-Joseph Demello,00720015, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dartmouth-James M. Quinn School,00720040, 610, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,Dartmouth-Dartmouth High,00720505, 946, 8, 0.8,"","","","","","","","", 0.9, 2.5, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Dartmouth-Dartmouth Middle,00720050, 787, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Dedham-Avery,00730010, 322, 3, 0.9, 1.8, 0.0, 0.0, 3.3, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dedham-Greenlodge,00730025, 310, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dedham-Oakdale,00730030, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Dedham-Riverdale,00730045, 193, 1, 0.5, 0.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2023-24,Dedham-Dedham High,00730505, 726, 8, 1.1,"","","","","","","","", 2.8, 0.0, 1.5, 0.0 +7.6,5,a-degr-i2,2023-24,Dedham-Dedham Middle School,00730305, 543, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2023-24,Deerfield-Deerfield Elementary,00740015, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 510, 1, 0.2,"","","", 0.0, 0.4,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 445, 1, 0.2,"","","","","", 0.0, 0.4,"","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 922, 21, 2.3,"","","","","","","", 0.0, 1.8, 4.2, 0.5, 6.1 +8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 175, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Station Avenue Elementary,06450025, 321, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 233, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Palmer River,06500010, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dighton Middle School,06500305, 367, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 478, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +2.2,2.2,a-degr-i2,2023-24,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 631, 18, 2.9,"","","","","","","","", 7.2, 1.9, 0.6, 2.3 +8.0,5,a-degr-i2,2023-24,Dighton-Rehoboth-Dighton Elementary,06500005, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2023-24,Douglas-Douglas Middle School,00770305, 289, 2, 0.7,"","","","","", 0.0, 0.0, 2.0,"","","","" +6.0,5,a-degr-i2,2023-24,Douglas-Douglas High School,00770505, 303, 3, 1.0,"","","","","","","","", 1.4, 0.0, 0.0, 2.2 +8.0,5,a-degr-i2,2023-24,Douglas-Douglas Elementary School,00770015, 353, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2023-24,Douglas-Douglas Primary School,00770005, 77, 1, 1.3, 1.3,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dover-Chickering,00780005, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 648, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +8.0,5,a-degr-i2,2023-24,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 457, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.5999999999999996,3.6,a-degr-i2,2023-24,Dracut-Dracut Senior High,00790505, 783, 17, 2.2,"","","","","","","","", 5.6, 3.2, 0.5, 0.0 +8.0,5,a-degr-i2,2023-24,Dracut-Justus C. Richardson Middle School,00790410, 909, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2023-24,Dracut-Brookside Elementary,00790035, 413, 4, 1.0, 1.1, 2.2, 1.4, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Dracut-Greenmont Avenue,00790030, 198, 2, 1.0, 2.7, 0.0, 2.2, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dracut-Joseph A Campbell Elementary,00790020, 461, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Dracut-George H. Englesby Elementary School,00790045, 446, 3, 0.7, 1.4, 0.0, 1.0, 1.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Mason Road School,06580010, 77, 0, 0.0, 0.0,"","","","","","","","","","","" +1.4000000000000004,1.4,a-degr-i2,2023-24,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 933, 31, 3.3,"","","","","","","","", 8.5, 0.8, 2.4, 0.5 +7.6,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Charlton Middle School,06580310, 603, 1, 0.2,"","","","", 0.0, 0.0, 0.7, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Dudley Middle School,06580305, 552, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Dudley Elementary,06580005, 333, 2, 0.6,"", 1.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Charlton Elementary,06580020, 124, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Dudley-Charlton Reg-Heritage School,06580030, 448, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Duxbury-Duxbury High,00820505, 860, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Duxbury-Duxbury Middle,00820305, 623, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Duxbury-Alden School,00820004, 621, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Duxbury-Chandler Elementary,00820006, 405, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2023-24,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 876, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2023-24,East Bridgewater-Gordon W. Mitchell School,00830010, 616, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,East Bridgewater-Central,00830005, 277, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2023-24,East Longmeadow-East Longmeadow High,00870505, 766, 3, 0.4,"","","","","","","","", 1.1, 0.5, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,East Longmeadow-Birchland Park,00870305, 614, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,East Longmeadow-Mountain View,00870015, 273, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,East Longmeadow-Mapleshade,00870010, 287, 1, 0.3,"","", 1.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,East Longmeadow-Meadow Brook,00870013, 348, 1, 0.3, 0.6, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Eastham-Eastham Elementary,00850005, 146, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.5999999999999996,2.6,a-degr-i2,2023-24,Easthampton-Easthampton High,00860505, 372, 10, 2.7,"","","","","","","","", 3.9, 5.8, 0.0, 1.1 +8.0,5,a-degr-i2,2023-24,Easthampton-Mountain View School,00860415, 893, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Easton-Easton Middle School,00880405, 808, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Easton-Blanche A. Ames Elementary School,00880015, 464, 2, 0.4, 0.0, 0.8,"","","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Easton-Oliver Ames High,00880505," 1,066", 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.3, 0.7 +7.8,5,a-degr-i2,2023-24,Easton-Richardson Olmsted School,00880025, 736, 1, 0.1,"","", 0.0, 0.0, 0.4,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Edgartown-Edgartown Elementary,00890005, 335, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +3.8,3.8,a-degr-i2,2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 375, 8, 2.1,"","","","","","","","", 4.9, 2.2, 1.2, 0.0 +8.0,5,a-degr-i2,2023-24,Erving-Erving Elementary,00910030, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505," 1,745", 3, 0.2,"","","","","","","","", 0.0, 0.2, 0.2, 0.3 +7.2,5,a-degr-i2,2023-24,Everett-Parlin School,00930058, 920, 4, 0.4, 0.0, 0.8, 1.6, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Everett-Lafayette School,00930038, 915, 2, 0.2, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Everett-Devens School,00930030, 44, 0, 0.0,"","","","","","","", 0.0,"", 0.0,"","" +7.8,5,a-degr-i2,2023-24,Everett-George Keverian School,00930028, 794, 1, 0.1, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +3.0,3.0,a-degr-i2,2023-24,Everett-Everett High,00930505," 2,285", 58, 2.5,"","","","","","","","", 3.5, 0.9, 4.3, 1.2 +6.6,5,a-degr-i2,2023-24,Everett-Webster School,00930015, 293, 2, 0.7, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Everett-Sumner G. Whittier School,00930010, 554, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Everett-Madeline English School,00930018, 684, 1, 0.1, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Excel Academy Charter (District)-Excel Academy Charter School,04100205," 1,362", 7, 0.5,"","","","", 0.6, 0.6, 0.0, 0.0, 0.0, 0.6, 1.8, 0.7 +2.2,2.2,a-degr-i2,2023-24,Fairhaven-Fairhaven High,00940505, 589, 17, 2.9,"","","","","","","","", 4.3, 6.5, 0.7, 0.0 +4.8,4.8,a-degr-i2,2023-24,Fairhaven-East Fairhaven,00940010, 244, 4, 1.6, 6.3, 0.0, 2.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Fairhaven-Leroy Wood,00940030, 349, 1, 0.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Fairhaven-Hastings Middle,00940305, 428, 2, 0.5,"","","","","", 0.0, 1.4, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Fall River-Stone PK-12 School,00950340, 62, 0, 0.0,"","","", 0.0,"","","", 0.0, 0.0, 0.0,"", 0.0 +-2.8000000000000007,1,a-degr-i2,2023-24,Fall River-Resiliency Preparatory Academy,00950525, 184, 10, 5.4,"","","","","","","", 17.6, 0.0, 3.0, 7.3, 3.5 +6.0,5,a-degr-i2,2023-24,Fall River-B M C Durfee High,00950505," 2,401", 25, 1.0,"","","","","","","","", 1.0, 0.6, 1.7, 1.0 +7.8,5,a-degr-i2,2023-24,Fall River-Matthew J Kuss Middle,00950320, 694, 1, 0.1,"","","","","", 0.5, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Fall River-Morton Middle,00950315, 714, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Fall River-Talbot Innovation School,00950305, 557, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Fall River-Samuel Watson,00950145, 218, 1, 0.5, 0.0, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fall River-James Tansey,00950140, 251, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fall River-Spencer Borden,00950130, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fall River-William S Greene,00950065, 615, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fall River-John J Doran,00950045, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Fall River-Henry Lord Community School,00950017, 678, 4, 0.6, 0.0, 1.0, 0.0, 2.2, 1.1, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Fall River-Letourneau Elementary School,00950013, 527, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fall River-Mary Fonseca Elementary School,00950011, 482, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Fall River-Carlton M. Viveiros Elementary School,00950009, 600, 1, 0.2, 0.0, 0.0, 0.0, 0.8, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fall River-North End Elementary,00950005, 529, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-Mullen-Hall,00960020, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-North Falmouth Elementary,00960030, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-Morse Pond School,00960305, 480, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-Lawrence,00960405, 459, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +-0.8000000000000007,1,a-degr-i2,2023-24,Falmouth-Falmouth High,00960505, 722, 32, 4.4,"","","","","","","","", 9.7, 6.1, 0.0, 1.7 +8.0,5,a-degr-i2,2023-24,Falmouth-East Falmouth Elementary,00960005, 141, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Falmouth-Teaticket,00960015, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.0,5,a-degr-i2,2023-24,Farmington River Reg-Farmington River Elementary,06620020, 96, 1, 1.0, 0.0, 5.6, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Fitchburg-Crocker Elementary,00970016, 620, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fitchburg-Reingold Elementary,00970043, 661, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Fitchburg-Memorial Middle School,00970048, 587, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Fitchburg-Arthur M Longsjo Middle School,00970315, 565, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +8.0,5,a-degr-i2,2023-24,Fitchburg-McKay Elementary School,00970340, 762, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-9.399999999999999,1,a-degr-i2,2023-24,Fitchburg-Goodrich Academy,00970510, 207, 18, 8.7,"","","","","","","","", 43.8, 7.4, 5.1, 5.7 +7.4,5,a-degr-i2,2023-24,Fitchburg-Fitchburg High,00970505," 1,180", 4, 0.3,"","","","","","","","", 0.6, 0.0, 0.7, 0.0 +8.0,5,a-degr-i2,2023-24,Florida-Abbott Memorial,00980005, 66, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 214, 2, 0.9,"","","","","","", 0.0, 0.0, 2.8, 0.0, 0.0, 3.7 +8.0,5,a-degr-i2,2023-24,Foxborough-John J Ahern,00990405, 745, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Foxborough-Foxborough High,00990505, 755, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +8.0,5,a-degr-i2,2023-24,Foxborough-Mabelle M Burrell,00990015, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Foxborough-Vincent M Igo Elementary,00990020, 297, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.2,5,a-degr-i2,2023-24,Foxborough-Charles Taylor Elementary,00990050, 214, 2, 0.9, 0.0, 0.0, 0.0, 3.5,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550," 1,391", 4, 0.3, 0.7, 0.0, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 1.2, 0.0 +-8.600000000000001,1,a-degr-i2,2023-24,Framingham-Framingham High School,01000515," 2,544", 212, 8.3,"","","","","","","","", 15.8, 7.7, 6.7, 0.7 +8.0,5,a-degr-i2,2023-24,Framingham-Charlotte A Dunning,01000007, 373, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Hemenway,01000015, 467, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-King Elementary School,01000005, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Brophy,01000006, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Barbieri Elementary,01000035, 561, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Potter Road,01000039, 447, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Framingham-Mary E Stapleton Elementary,01000045, 301, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Miriam F McCarthy School,01000050, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Harmony Grove Elementary,01000055, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Cameron Middle School,01000302, 564, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Fuller Middle,01000305, 564, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Framingham-Walsh Middle,01000310, 780, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2023-24,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 370, 4, 1.1,"","","","","","", 1.6, 2.7, 0.0, 0.0, 1.7, 0.0 +8.0,5,a-degr-i2,2023-24,Franklin-Jefferson Elementary,01010010, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Franklin-Franklin High,01010505," 1,558", 11, 0.7,"","","","","","","","", 1.9, 0.5, 0.3, 0.2 +8.0,5,a-degr-i2,2023-24,Franklin-Horace Mann,01010405, 387, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Franklin-Remington Middle,01010310, 351, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Franklin-Annie Sullivan Middle School,01010040, 322, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Franklin-Parmenter,01010032, 242, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Franklin-Oak Street Elementary,01010030, 312, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Franklin-Helen Keller Elementary,01010012, 468, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Franklin-J F Kennedy Memorial,01010013, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 621, 1, 0.2,"","","","","","","","", 0.6, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 705, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2023-24,Freetown-Lakeville-George R Austin Intermediate School,06650015, 464, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Freetown-Lakeville-Assawompset Elementary School,06650002, 367, 2, 0.5, 0.9, 0.9, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Freetown-Lakeville-Freetown Elementary School,06650001, 264, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.2,5,a-degr-i2,2023-24,Freetown-Lakeville-Apponequet Regional High,06650505, 681, 6, 0.9,"","","","","","","","", 1.3, 1.7, 0.6, 0.0 +6.6,5,a-degr-i2,2023-24,Frontier-Frontier Regional,06700505, 598, 4, 0.7,"","","","","","", 0.0, 0.0, 0.0, 0.0, 2.0, 2.1 +3.8,3.8,a-degr-i2,2023-24,Gardner-Gardner High,01030505, 806, 17, 2.1,"","","","","","","", 0.0, 4.8, 4.3, 1.1, 0.0 +8.0,5,a-degr-i2,2023-24,Gardner-Gardner Middle School,01030405, 483, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2023-24,Gardner-Gardner Elementary School,01030001, 764, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +-28.200000000000003,1,a-degr-i2,2023-24,Gardner-Gardner Academy for Learning and Technology,01030515, 127, 23, 18.1,"","","","","","","","", 53.8, 26.1, 8.3, 12.7 +8.0,5,a-degr-i2,2023-24,Gateway-Chester Elementary,06720059, 71, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Gateway-Littleville Elementary School,06720143, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Gateway-Gateway Regional High,06720505, 160, 5, 3.1,"","","","","","","","", 4.1, 2.7, 6.5, 0.0 +7.0,5,a-degr-i2,2023-24,Gateway-Gateway Regional Middle School,06720405, 196, 1, 0.5,"","","","","", 0.0, 0.0, 1.6,"","","","" +8.0,5,a-degr-i2,2023-24,Georgetown-Penn Brook,01050010, 608, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2023-24,Georgetown-Georgetown High School,01050505, 289, 4, 1.4,"","","","","","","","", 4.0, 0.0, 0.0, 1.4 +8.0,5,a-degr-i2,2023-24,Georgetown-Georgetown Middle School,01050305, 189, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2023-24,Gill-Montague-Hillcrest Elementary School,06740015, 50, 1, 2.0, 2.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Gill-Montague-Turners Fall High,06740505, 198, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Gill-Montague-Gill Elementary,06740005, 100, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.2,3.2,a-degr-i2,2023-24,Gill-Montague-Sheffield Elementary School,06740050, 212, 5, 2.4,"", 2.9, 4.9, 2.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Gill-Montague-Great Falls Middle,06740310, 237, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 502, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Gloucester-Ralph B O'Maley Middle,01070305, 626, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Gloucester-West Parish,01070050, 309, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.8,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Gloucester-Plum Cove School,01070042, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Gloucester-East Veterans Elementary School,01070030, 366, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Gloucester-Beeman Memorial,01070010, 241, 1, 0.4, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-2.1999999999999993,1,a-degr-i2,2023-24,Gloucester-Gloucester High,01070505, 800, 41, 5.1,"","","","","","","","", 6.8, 8.9, 4.2, 0.5 +6.2,5,a-degr-i2,2023-24,Grafton-Grafton High School,01100505, 885, 8, 0.9,"","","","","","","","", 1.6, 1.4, 0.5, 0.0 +8.0,5,a-degr-i2,2023-24,Grafton-Millbury Street Elementary School,01100200, 589, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Grafton-North Street Elementary School,01100030, 568, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Grafton-North Grafton Elementary,01100025, 100, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Grafton-South Grafton Elementary,01100005, 119, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Grafton-Grafton Middle,01100305, 459, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +4.6,4.6,a-degr-i2,2023-24,Granby-Granby Jr Sr High School,01110505, 291, 5, 1.7,"","","","","","", 2.1, 1.8, 0.0, 2.1, 1.9, 2.0 +7.4,5,a-degr-i2,2023-24,Granby-East Meadow,01110004, 329, 1, 0.3, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-13.8,1,a-degr-i2,2023-24,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900," 1,135", 124, 10.9, 0.0, 0.0, 0.0, 5.5, 0.0, 4.1, 0.0, 0.9, 27.5, 19.4, 11.0, 15.1 +8.0,5,a-degr-i2,2023-24,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605," 1,442", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605," 1,774", 1, 0.1,"","","","","","","","", 0.2, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 2,293", 2, 0.1,"","","","","","","","", 0.2, 0.2, 0.0, 0.0 +6.6,5,a-degr-i2,2023-24,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605," 2,147", 16, 0.7,"","","","","","","","", 1.1, 1.5, 0.4, 0.0 +8.0,5,a-degr-i2,2023-24,Greenfield-Greenfield Middle,01140305, 301, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +5.4,5,a-degr-i2,2023-24,Greenfield-Federal Street School,01140010, 152, 2, 1.3, 2.2, 0.0, 0.0, 2.9,"","","","","","","","" +6.8,5,a-degr-i2,2023-24,Greenfield-Discovery School at Four Corners,01140025, 178, 1, 0.6, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Greenfield-Newton School,01140035, 156, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2023-24,Greenfield-Greenfield High,01140505, 440, 15, 3.4,"","","","","","","", 0.0, 10.6, 6.0, 1.1, 0.0 +8.0,5,a-degr-i2,2023-24,Groton-Dunstable-Florence Roche School,06730010, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Groton-Dunstable-Swallow/Union School,06730005, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2023-24,Groton-Dunstable-Groton Dunstable Regional,06730505, 684, 1, 0.1,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 713, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hadley-Hopkins Academy,01170505, 211, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Hadley-Hadley Elementary,01170015, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Halifax-Halifax Elementary,01180005, 459, 1, 0.2, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 442, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Miles River Middle,06750310, 378, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Cutler School,06750010, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Hamilton-Wenham-Bessie Buker Elementary,06750007, 223, 1, 0.4, 0.0, 0.0, 2.6, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hamilton-Wenham-Winthrop School,06750015, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.8,4.8,a-degr-i2,2023-24,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 553, 9, 1.6,"","","","","", 0.0, 1.1, 3.3, 2.6, 3.9, 0.0, 0.0 +5.0,5.0,a-degr-i2,2023-24,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 394, 6, 1.5,"","","","","", 1.6, 4.3, 0.0, 1.8, 1.6, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Hampden-Wilbraham-Stony Hill School,06800050, 291, 1, 0.3,"", 0.0, 0.7,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hampden-Wilbraham-Wilbraham Middle,06800310, 606, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Hampden-Wilbraham-Minnechaug Regional High,06800505, 981, 3, 0.3,"","","","","","","","", 0.0, 0.4, 0.4, 0.4 +6.8,5,a-degr-i2,2023-24,Hampden-Wilbraham-Mile Tree Elementary,06800025, 154, 1, 0.6, 0.6,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hampden-Wilbraham-Green Meadows Elementary,06800005, 217, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hampden-Wilbraham-Soule Road,06800030, 323, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Hampshire-Hampshire Regional High,06830505, 689, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 +8.0,5,a-degr-i2,2023-24,Hancock-Hancock Elementary,01210005, 38, 0, 0.0, 0.0,"", 0.0, 0.0,"", 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Hanover-Center Elementary,01220005, 628, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hanover-Hanover Middle,01220305, 800, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hanover-Cedar Elementary,01220004, 182, 0, 0.0, 0.0,"","","","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Hanover-Hanover High,01220505, 684, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.6, 0.0 +8.0,5,a-degr-i2,2023-24,Harvard-Hildreth Elementary School,01250005, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Harvard-The Bromfield Middle School,01250305, 252, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Harvard-The Bromfield High School,01250505, 323, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Hatfield-Hatfield Elementary,01270005, 145, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Hatfield-Smith Academy,01270505, 126, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +2.2,2.2,a-degr-i2,2023-24,Haverhill-Greenleaf Academy,01280033, 34, 1, 2.9,"","","","","","","","", 0.0, 0.0,"","" +7.2,5,a-degr-i2,2023-24,Haverhill-Dr Paul Nettle,01280050, 531, 2, 0.4,"","","","", 0.0, 0.0, 0.0, 1.4,"","","","" +7.6,5,a-degr-i2,2023-24,Haverhill-Pentucket Lake Elementary,01280054, 426, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Haverhill-Silver Hill Elementary School,01280067, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Haverhill-Bartlett School and Assessment Center,01280073, 34, 0, 0.0,"","","","", 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Haverhill-Tilton,01280075, 338, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Haverhill-Walnut Square,01280080, 122, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Haverhill-John G Whittier,01280085, 498, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Haverhill-Consentino Middle School,01280100, 828, 2, 0.2,"","","","", 0.0, 0.0, 0.0, 1.0,"","","","" +-4.800000000000001,1,a-degr-i2,2023-24,Haverhill-Haverhill High,01280505," 1,960", 125, 6.4,"","","","","","","","", 11.4, 7.5, 3.8, 1.5 +0.20000000000000018,1,a-degr-i2,2023-24,Haverhill-Gateway Academy,01280515, 103, 4, 3.9,"","","","","","", 0.0, 7.7, 5.3, 3.1, 4.3, 0.0 +8.0,5,a-degr-i2,2023-24,Haverhill-Bradford Elementary,01280008, 395, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2023-24,Haverhill-Golden Hill,01280026, 373, 2, 0.5, 1.0, 1.1, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2023-24,Haverhill-Caleb Dustin Hunking School,01280030, 981, 1, 0.1, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hawlemont-Hawlemont Regional,06850005, 45, 0, 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2023-24,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 95, 1, 1.1,"","","","","", 0.0, 0.0, 3.1,"","","","" +8.0,5,a-degr-i2,2023-24,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 269, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 198, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Hingham-East Elementary School,01310005, 378, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Hingham-Hingham High,01310505," 1,095", 4, 0.4,"","","","","","","","", 0.0, 0.0, 1.5, 0.0 +8.0,5,a-degr-i2,2023-24,Hingham-Hingham Middle School,01310410, 846, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Hingham-South Elementary,01310020, 421, 1, 0.2, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hingham-Plymouth River,01310019, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hingham-Wm L Foster Elementary,01310010, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Holbrook-John F Kennedy,01330018, 530, 3, 0.6, 0.9, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Holbrook-Holbrook Middle High School,01330505, 637, 2, 0.3,"","","","","", 0.9, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Holland-Holland Elementary,01350005, 172, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Holliston-Holliston High,01360505, 800, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Holliston-Robert H. Adams Middle School,01360305, 655, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Holliston-Placentino Elementary,01360010, 433, 1, 0.2, 0.5, 0.0,"","","","","","","","","","" +7.6,5,a-degr-i2,2023-24,Holliston-Miller School,01360007, 580, 1, 0.2,"","", 0.0, 0.0, 0.6,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Holyoke-Lt Elmer J McMahon Elementary,01370015, 271, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Holyoke-Holyoke High,01370505," 1,567", 48, 3.1,"","","","","","","","", 0.0, 0.0, 0.3, 11.5 +6.6,5,a-degr-i2,2023-24,Holyoke-Holyoke STEM Academy,01370320, 304, 2, 0.7,"","","","","", 1.0, 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Holyoke-H.B. Lawrence School,01370070, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Holyoke-Maurice A Donahue Elementary,01370060, 295, 2, 0.7, 0.0, 1.5, 0.0, 0.0, 1.5,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Holyoke-Lt Clayre Sullivan Elementary,01370055, 494, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Holyoke-E N White Elementary,01370045, 345, 2, 0.6, 0.0, 2.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Holyoke-Kelly Elementary,01370040, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Holyoke-Morgan Full Service Community School,01370025, 215, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Holyoke-Joseph Metcalf School,01370003, 205, 2, 1.0,"","","","","", 1.6, 0.0, 1.3,"","","","" +2.2,2.2,a-degr-i2,2023-24,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 619, 18, 2.9, 1.3, 1.2, 8.1, 3.3, 3.5, 6.4, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley High School,06030505, 299, 0, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 309, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +7.2,5,a-degr-i2,2023-24,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 238, 1, 0.4, 1.3, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hopedale-Memorial,01380010, 484, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Hopedale-Hopedale Jr Sr High,01380505, 446, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Hopkinton-Marathon Elementary School,01390005, 302, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hopkinton-Elmwood,01390010, 639, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Hopkinton-Hopkins Elementary School,01390015, 677, 2, 0.3,"","","", 0.3, 0.3,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Hopkinton-Hopkinton Middle School,01390305, 960, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Hopkinton-Hopkinton High,01390505," 1,236", 3, 0.2,"","","","","","","","", 0.3, 0.3, 0.0, 0.4 +4.4,4.4,a-degr-i2,2023-24,Hudson-Mulready Elementary,01410007, 171, 3, 1.8, 4.8, 2.6, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hudson-Forest Avenue Elementary,01410015, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Hudson-C A Farley,01410030, 335, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Hudson-David J. Quinn Middle School,01410410, 573, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Hudson-Hudson High,01410505, 809, 19, 2.3,"","","","","","","", 0.0, 5.5, 4.8, 2.3, 0.0 +8.0,5,a-degr-i2,2023-24,Hull-Memorial Middle,01420305, 106, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Hull-Lillian M Jacobs,01420015, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Hull-Hull High,01420505, 233, 1, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.9 +3.4000000000000004,3.4,a-degr-i2,2023-24,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 788, 18, 2.3,"","","","", 1.0, 0.0, 1.0, 0.0, 6.0, 4.1, 3.9, 2.3 +8.0,5,a-degr-i2,2023-24,Ipswich-Winthrop,01440015, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Ipswich-Ipswich High,01440505, 476, 1, 0.2,"","","","","","","","", 0.0, 0.9, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,Ipswich-Paul F Doyon Memorial,01440007, 284, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Ipswich-Ipswich Middle School,01440305, 382, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 531, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010," 1,492", 3, 0.2, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0 +7.8,5,a-degr-i2,2023-24,King Philip-King Philip Middle School,06900510, 707, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" +5.8,5,a-degr-i2,2023-24,King Philip-King Philip Regional High,06900505," 1,137", 12, 1.1,"","","","","","","","", 1.9, 1.3, 0.8, 0.3 +8.0,5,a-degr-i2,2023-24,Kingston-Kingston Elementary,01450005, 347, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Kingston-Kingston Intermediate,01450020, 613, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Lawrence-South Lawrence East Elementary School,01490004, 660, 3, 0.5, 0.0, 1.6, 0.7, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Arlington Elementary,01490009, 457, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Alexander B Bruce,01490015, 416, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Arlington Middle School,01490017, 588, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Lawrence-Robert Frost,01490018, 441, 2, 0.5, 1.0, 0.9, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-James F Hennessey,01490020, 148, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2023-24,Lawrence-Gerard A. Guilmette,01490022, 479, 2, 0.4, 0.0, 1.5, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Guilmette Middle School,01490025, 464, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Parthum Middle School,01490027, 590, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Lawrence-Francis M Leahy,01490040, 418, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Oliver Elementary School,01490048, 462, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Oliver Middle School,01490049, 346, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Lawrence-Edward F. Parthum,01490053, 569, 2, 0.4, 0.7, 0.7, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-John K Tarbox,01490075, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Lawrence-Emily G Wetherbee,01490080, 450, 1, 0.2, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Spark Academy,01490085, 445, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lawrence-Leonard Middle School,01490090, 321, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.0,5.0,a-degr-i2,2023-24,Lawrence-Lawrence High School,01490515," 3,217", 47, 1.5,"","","","","","","","", 4.2, 1.5, 0.1, 0.0 +7.6,5,a-degr-i2,2023-24,Lawrence-Frost Middle School,01490525, 493, 1, 0.2,"","","","", 0.0, 0.0, 0.8, 0.0,"","","","" +-50.4,1,a-degr-i2,2023-24,Lawrence-High School Learning Center,01490536, 195, 57, 29.2,"","","","","","","","","", 43.8, 3.1, 32.4 +8.0,5,a-degr-i2,2023-24,Lawrence-School for Exceptional Studies,01490537, 99, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +-36.8,1,a-degr-i2,2023-24,Lawrence-RISE Academy,01490615, 67, 15, 22.4,"","","","","","","","","", 7.1, 11.8, 42.9 +7.8,5,a-degr-i2,2023-24,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 671, 1, 0.1, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 592, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Lee-Lee Elementary,01500025, 275, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.8,2.8,a-degr-i2,2023-24,Lee-Lee Middle/High School,01500505, 306, 8, 2.6,"","","","","","", 0.0, 5.2, 3.5, 4.9, 0.0, 1.7 +8.0,5,a-degr-i2,2023-24,Leicester-Leicester Elementary,01510005, 393, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Leicester-Leicester Middle,01510015, 406, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.4,5,a-degr-i2,2023-24,Leicester-Leicester High,01510505, 396, 5, 1.3,"","","","","","","","", 3.6, 1.8, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Lenox-Morris,01520015, 264, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lenox-Lenox Memorial High,01520505, 443, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +-29.6,1,a-degr-i2,2023-24,Leominster-Leominster Academy,01530705, 16, 3, 18.8,"","","","","","","","","", 42.9,"","" +8.0,5,a-degr-i2,2023-24,Leominster-Center For Technical Education Innovation,01530605, 807, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +-4.4,1,a-degr-i2,2023-24,Leominster-Leominster Center for Excellence,01530515, 65, 4, 6.2,"","","","","","","","", 9.1, 0.0, 9.1, 6.7 +3.4000000000000004,3.4,a-degr-i2,2023-24,Leominster-Leominster High School,01530505," 1,064", 24, 2.3,"","","","","","","","", 3.1, 2.4, 0.3, 3.6 +8.0,5,a-degr-i2,2023-24,Leominster-Sky View Middle School,01530320, 874, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Leominster-Samoset School,01530045, 468, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Leominster-Frances Drake School,01530010, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Leominster-Johnny Appleseed,01530025, 580, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Leominster-Northwest,01530030, 669, 3, 0.4, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Leominster-Fall Brook,01530007, 560, 1, 0.2, 0.0, 0.0, 0.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Leverett-Leverett Elementary,01540005, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Lexington-Harrington,01550030, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Lexington-Lexington High,01550505," 2,318", 3, 0.1,"","","","","","","","", 0.0, 0.2, 0.0, 0.4 +7.8,5,a-degr-i2,2023-24,Lexington-Jonas Clarke Middle,01550305, 810, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lexington-Wm Diamond Middle,01550310, 927, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lexington-Maria Hastings,01550035, 552, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Lexington-Bridge,01550006, 315, 1, 0.3, 0.0, 0.0, 1.5, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Lexington-Bowman,01550008, 359, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lexington-Joseph Estabrook,01550010, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lexington-Fiske,01550015, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 519, 5, 1.0,"","","","","", 1.1, 1.0, 0.0, 2.2, 1.5, 0.0,"" +8.0,5,a-degr-i2,2023-24,Lincoln-Lincoln School,01570025, 460, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lincoln-Hanscom School,01570305, 363, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2023-24,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505," 1,459", 12, 0.8,"","","","","","","","", 0.9, 0.8, 1.3, 0.3 +8.0,5,a-degr-i2,2023-24,Littleton-Russell St Elementary,01580015, 356, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Littleton-Littleton Middle School,01580305, 388, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Littleton-Littleton High School,01580505, 483, 2, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.6 +8.0,5,a-degr-i2,2023-24,Littleton-Shaker Lane Elementary,01580005, 265, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Longmeadow-Wolf Swamp Road,01590025, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Longmeadow-Glenbrook Middle,01590017, 320, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Longmeadow-Center,01590010, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Longmeadow-Longmeadow High,01590505, 911, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Longmeadow-Williams Middle,01590305, 310, 1, 0.3,"","","","","", 0.0, 0.0, 1.1,"","","","" +8.0,5,a-degr-i2,2023-24,Longmeadow-Blueberry Hill,01590005, 320, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lowell-Laura Lee Therapeutic Day School,01600085, 16, 0, 0.0,"","","","","","", 0.0,"","","","","" +7.0,5,a-degr-i2,2023-24,Lowell-Bartlett Community Partnership,01600090, 405, 2, 0.5, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lowell-B.F. Butler Middle School,01600310, 505, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lowell-James S Daley Middle School,01600315, 680, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-8.600000000000001,1,a-degr-i2,2023-24,Lowell-Leblanc Therapeutic Day School,01600320, 36, 3, 8.3,"","","","","","","","", 28.6, 0.0, 0.0, 11.1 +7.4,5,a-degr-i2,2023-24,Lowell-Henry J Robinson Middle,01600330, 592, 2, 0.3,"","","","", 1.3, 0.0, 0.0, 0.0,"","","","" +5.0,5.0,a-degr-i2,2023-24,Lowell-James Sullivan Middle School,01600340, 617, 9, 1.5,"","","","", 0.6, 2.8, 1.3, 1.3,"","","","" +7.0,5,a-degr-i2,2023-24,Lowell-Dr An Wang School,01600345, 658, 3, 0.5,"","","","", 0.0, 0.0, 1.8, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lowell-Kathryn P. Stoklosa Middle School,01600360, 625, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-2.1999999999999993,1,a-degr-i2,2023-24,Lowell-Lowell High,01600505," 3,381", 172, 5.1,"","","","","","","","", 9.2, 4.6, 2.7, 2.6 +-39.8,1,a-degr-i2,2023-24,Lowell-The Career Academy,01600515, 92, 22, 23.9,"","","","","","","","", 21.1, 9.1, 10.5, 43.8 +8.0,5,a-degr-i2,2023-24,Lowell-Dr. Janice Adie Day School,01600605, 54, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Lowell-Dr Gertrude Bailey,01600002, 327, 1, 0.3, 0.0, 0.0, 0.0, 1.2,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Lowell-Rogers STEM Academy,01600005, 781, 2, 0.3, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Lowell-Joseph McAvinnue,01600010, 327, 2, 0.6, 1.3, 1.2, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Lowell-Greenhalge,01600015, 340, 1, 0.3, 0.0, 0.0, 0.0, 1.2,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Lowell-Pyne Arts,01600018, 394, 1, 0.3, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Lowell-Abraham Lincoln,01600020, 351, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2023-24,Lowell-Moody Elementary,01600027, 183, 2, 1.1, 0.0, 4.2, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lowell-Charles W Morey,01600030, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lowell-Pawtucketville Memorial,01600036, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2023-24,Lowell-Peter W Reilly,01600040, 355, 2, 0.6, 0.0, 1.1, 1.1, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lowell-John J Shaughnessy,01600050, 351, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2023-24,Lowell-Washington,01600055, 176, 2, 1.1, 0.0, 2.2, 0.0, 2.5,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lowell-S Christa McAuliffe Elementary,01600075, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2023-24,Lowell-Charlotte M Murkland Elementary,01600080, 314, 2, 0.6, 1.4, 1.2, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2023-24,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 677, 1, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-60.0,1,a-degr-i2,2023-24,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 106, 36, 34.0,"","","","","","","","", 81.0, 31.3, 16.7, 17.1 +8.0,5,a-degr-i2,2023-24,Ludlow-Harris Brook Elementary School,01610665, 617, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.5999999999999996,2.6,a-degr-i2,2023-24,Ludlow-Ludlow Senior High,01610505, 745, 20, 2.7,"","","","","","","","", 6.1, 1.5, 1.6, 1.8 +7.6,5,a-degr-i2,2023-24,Ludlow-Paul R Baird Middle,01610305, 532, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Ludlow-East Street Elementary School,01610010, 128, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lunenburg-Lunenburg Primary School,01620010, 239, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +6.6,5,a-degr-i2,2023-24,Lunenburg-Lunenburg High,01620505, 449, 3, 0.7,"","","","","","","","", 1.7, 0.0, 1.0, 0.0 +6.4,5,a-degr-i2,2023-24,Lunenburg-Lunenburg Middle School,01620305, 363, 3, 0.8,"","","","","", 0.0, 0.0, 2.3,"","","","" +8.0,5,a-degr-i2,2023-24,Lunenburg-Turkey Hill Elementary School,01620025, 370, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Lynn-Robert L Ford,01630050, 418, 4, 1.0, 1.0, 4.1, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Lynn-E J Harrington,01630045, 475, 2, 0.4, 0.0, 1.0, 0.0, 1.1, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Wm P Connery,01630040, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Cobbet Elementary,01630035, 508, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Julia F Callahan,01630030, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Brickett Elementary,01630020, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Lynn-A Drewicz Elementary,01630016, 409, 2, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Aborn,01630011, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Washington Elementary School,01630005, 384, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Hood,01630055, 406, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Lynn-Lynn Vocational Technical Institute,01630605," 1,435", 2, 0.1, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.4 +8.0,5,a-degr-i2,2023-24,Lynn-Fredrick Douglass Collegiate Academy,01630575, 157, 0, 0.0,"","","","","","","","", 0.0, 0.0,"","" +-10.2,1,a-degr-i2,2023-24,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 88, 8, 9.1,"","","","","","","", 14.3, 22.2, 15.0, 11.1, 0.0 +8.0,5,a-degr-i2,2023-24,Lynn-Ingalls,01630060, 527, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Lincoln-Thomson,01630070, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Lynn-Lynn Woods,01630075, 138, 1, 0.7, 4.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-William R Fallon,01630080, 23, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Sewell-Anderson,01630085, 166, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Capt William G Shoemaker,01630090, 264, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Edward A Sisson,01630095, 368, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Tracy,01630100, 380, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Thurgood Marshall Mid,01630305," 1,280", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Lynn-Breed Middle School,01630405," 1,253", 2, 0.2,"","","","","", 0.0, 0.2, 0.3,"","","","" +8.0,5,a-degr-i2,2023-24,Lynn-Pickering Middle,01630420, 543, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Lynn-Classical High,01630505," 1,877", 59, 3.1,"","","","","","","","", 6.1, 3.5, 1.8, 0.6 +-1.4000000000000004,1,a-degr-i2,2023-24,Lynn-Lynn English High,01630510," 2,072", 98, 4.7,"","","","","","","","", 5.4, 10.4, 2.1, 0.2 +7.4,5,a-degr-i2,2023-24,Lynnfield-Summer Street,01640020, 351, 1, 0.3, 1.1, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Lynnfield-Huckleberry Hill,01640010, 358, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Lynnfield-Lynnfield Middle School,01640405, 709, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Lynnfield-Lynnfield High,01640505, 571, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 97, 0, 0.0,"","","","","","","","","","", 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Malden-Linden,01650047, 740, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Malden-Forestdale,01650027, 499, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Malden-Ferryway,01650013, 809, 1, 0.1, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Malden-Salemwood,01650057, 864, 3, 0.3, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,"","","","" +-1.8000000000000007,1,a-degr-i2,2023-24,Malden-Malden High,01650505," 1,883", 92, 4.9,"","","","","","","","", 9.6, 5.2, 3.0, 1.4 +7.0,5,a-degr-i2,2023-24,Malden-Beebe,01650003, 811, 4, 0.5, 0.9, 0.0, 0.0, 0.0, 0.0, 1.1, 1.0, 1.1,"","","","" +8.0,5,a-degr-i2,2023-24,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 399, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 274, 1, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Manchester Essex Regional-Essex Elementary,06980020, 193, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Mansfield-Mansfield High,01670505," 1,019", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Mansfield-Jordan/Jackson Elementary,01670014, 738, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Mansfield-Harold L Qualters Middle,01670035, 786, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2023-24,Mansfield-Everett W Robinson,01670007, 499, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +-78.6,1,a-degr-i2,2023-24,Map Academy Charter School (District)-Map Academy Charter School,35170505, 277, 120, 43.3,"","","","","","","","", 54.0, 46.7, 47.6, 27.1 +8.0,5,a-degr-i2,2023-24,Marblehead-Village School,01680016, 537, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Marblehead-Marblehead High,01680505, 874, 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.8, 0.5 +8.0,5,a-degr-i2,2023-24,Marblehead-Marblehead Veterans Middle School,01680300, 443, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Marblehead-Lucretia and Joseph Brown School,01680030, 305, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2023-24,Marblehead-Glover,01680020, 234, 1, 0.4, 1.1, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 175, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Marion-Sippican,01690005, 330, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Marlborough-Richer,01700025, 474, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Marlborough-Charles Jaworek School,01700030, 551, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2023-24,Marlborough-Marlborough High,01700505," 1,003", 14, 1.4,"","","","","","","","", 1.0, 1.1, 0.4, 3.3 +8.0,5,a-degr-i2,2023-24,Marlborough-Francis J Kane,01700008, 437, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Marlborough-Goodnow Brothers Elementary School,01700020, 668, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Marlborough-1 LT Charles W. Whitcomb School,01700045, 944, 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Marshfield-Marshfield High,01710505," 1,147", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.8 +8.0,5,a-degr-i2,2023-24,Marshfield-Furnace Brook Middle,01710310, 849, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Marshfield-Martinson Elementary,01710025, 385, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Marshfield-Gov Edward Winslow,01710020, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Marshfield-Daniel Webster,01710015, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Marshfield-Eames Way School,01710005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Marshfield-South River,01710010, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 677, 21, 3.1,"","","","","","","","", 8.5, 4.3, 0.5, 0.6 +8.0,5,a-degr-i2,2023-24,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 163, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0 +6.0,5,a-degr-i2,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District)-Martin Luther King, Jr. Charter School of Excellence",04920005, 292, 3, 1.0, 3.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Masconomet-Masconomet Regional Middle School,07050405, 560, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Masconomet-Masconomet Regional High School,07050505, 975, 5, 0.5,"","","","","","","","", 0.4, 0.0, 0.5, 1.2 +4.4,4.4,a-degr-i2,2023-24,Mashpee-Kenneth Coombs School,01720005, 217, 4, 1.8, 3.6, 0.0,"","","","","","","","","","" +4.8,4.8,a-degr-i2,2023-24,Mashpee-Mashpee Middle-High School,01720505, 620, 10, 1.6,"","","","","","", 0.0, 0.0, 2.9, 3.1, 1.8, 2.2 +8.0,5,a-degr-i2,2023-24,Mashpee-Quashnet School,01720035, 408, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.0,4.0,a-degr-i2,2023-24,Match Charter Public School (District)-Match Charter Public School,04690505," 1,049", 21, 2.0, 1.0, 1.0, 1.0, 0.0, 0.0, 2.1, 1.1, 0.0, 4.0, 9.1, 3.3, 5.0 +8.0,5,a-degr-i2,2023-24,Mattapoisett-Center,01730005, 161, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Mattapoisett-Old Hammondtown,01730010, 170, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Maynard-Fowler School,01740305, 476, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Maynard-Green Meadow,01740010, 272, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Maynard-Maynard High,01740505, 297, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Medfield-Medfield Senior High,01750505, 699, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +8.0,5,a-degr-i2,2023-24,Medfield-Thomas Blake Middle,01750305, 585, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Medfield-Ralph Wheelock School,01750007, 389, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Medfield-Memorial School,01750003, 177, 0, 0.0, 0.0,"","","","","","","","","","","" +7.6,5,a-degr-i2,2023-24,Medfield-Dale Street,01750005, 404, 1, 0.2,"","","", 0.0, 0.5,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Medford-Madeleine Dugger Andrews,01760315, 452, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Medford-John J. McGlynn Middle School,01760320, 432, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +3.2,3.2,a-degr-i2,2023-24,Medford-Medford High,01760505," 1,180", 28, 2.4,"","","","","","","","", 4.2, 2.6, 1.8, 0.7 +-18.6,1,a-degr-i2,2023-24,Medford-Curtis-Tufts,01760510, 15, 2, 13.3,"","","","","","","","","","","","" +7.6,5,a-degr-i2,2023-24,Medford-Milton Fuller Roberts,01760150, 445, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Medford-Missituk Elementary School,01760140, 338, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Medford-John J McGlynn Elementary School,01760068, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Medford-Brooks School,01760130, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Medway-Medway Middle,01770305, 665, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Medway-John D Mc Govern Elementary,01770013, 169, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Medway-Burke/Memorial Elementary School,01770015, 510, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +5.4,5,a-degr-i2,2023-24,Medway-Medway High,01770505, 607, 8, 1.3,"","","","","","","","", 2.7, 1.3, 0.6, 0.7 +7.8,5,a-degr-i2,2023-24,Melrose-Melrose High,01780505, 954, 1, 0.1,"","","","","","","","", 0.4, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,Melrose-Melrose Middle,01780305, 910, 2, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" +8.0,5,a-degr-i2,2023-24,Melrose-Winthrop,01780050, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Melrose-Roosevelt,01780035, 347, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Melrose-Lincoln,01780020, 355, 1, 0.3, 0.0, 0.0, 1.2, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Melrose-Herbert Clark Hoover,01780017, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Melrose-Horace Mann,01780025, 226, 1, 0.4, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Mendon-Upton-Memorial School,07100001, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Mendon-Upton-Miscoe Hill School,07100015, 636, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Mendon-Upton-Henry P Clough,07100179, 271, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.2,5,a-degr-i2,2023-24,Mendon-Upton-Nipmuc Regional High,07100510, 556, 8, 1.4,"","","","","","","","", 1.7, 2.3, 1.3, 0.7 +7.8,5,a-degr-i2,2023-24,Methuen-Donald P Timony Grammar,01810060," 1,052", 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Methuen-Tenney Grammar School,01810055," 1,152", 3, 0.3, 0.7, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.6,"","","","" +7.6,5,a-degr-i2,2023-24,Methuen-Comprehensive Grammar School,01810050, 933, 2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 0.8,"","","","" +4.2,4.2,a-degr-i2,2023-24,Methuen-Methuen High,01810505," 1,898", 37, 1.9,"","","","","","","","", 3.1, 4.3, 0.4, 0.0 +8.0,5,a-degr-i2,2023-24,Methuen-Marsh Grammar School,01810030, 924, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Middleborough-Henry B. Burkland Elementary School,01820008, 584, 3, 0.5, 0.8, 0.9, 0.8, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Middleborough-Mary K. Goode Elementary School,01820010, 611, 2, 0.3, 0.9, 0.8, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Middleborough-John T. Nichols Middle,01820305, 709, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-0.40000000000000036,1,a-degr-i2,2023-24,Middleborough-Middleborough High,01820505, 826, 35, 4.2,"","","","","","","","", 11.3, 2.0, 1.9, 1.0 +8.0,5,a-degr-i2,2023-24,Middleton-Fuller Meadow,01840003, 199, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Middleton-Howe-Manning,01840005, 382, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2023-24,Milford-Memorial,01850010, 300, 2, 0.7, 1.5, 0.0,"","","","","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Milford-Milford High,01850505," 1,296", 40, 3.1,"","","","","","","","", 4.6, 1.8, 1.5, 4.7 +8.0,5,a-degr-i2,2023-24,Milford-Stacy Middle,01850305, 971, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Milford-Brookside,01850065, 380, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Milford-Woodland,01850090, 978, 1, 0.1,"","", 0.3, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Millbury-Raymond E. Shaw Elementary,01860025, 467, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Millbury-Elmwood Street,01860017, 261, 1, 0.4, 0.7, 0.0,"","","","","","","","","","" +5.0,5.0,a-degr-i2,2023-24,Millbury-Millbury Junior/Senior High,01860505, 718, 11, 1.5,"","","","","","", 0.9, 0.0, 2.9, 3.5, 1.6, 0.0 +8.0,5,a-degr-i2,2023-24,Millis-Millis Middle,01870020, 268, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.2,4.2,a-degr-i2,2023-24,Millis-Millis High School,01870505, 317, 6, 1.9,"","","","","","","","", 2.4, 1.5, 2.5, 1.1 +8.0,5,a-degr-i2,2023-24,Millis-Clyde F Brown,01870005, 456, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Milton-Collicot,01890005, 500, 2, 0.4, 0.9, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Milton-Cunningham School,01890007, 439, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Milton-Glover,01890010, 533, 1, 0.2, 0.0, 0.0, 1.1, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Milton-Tucker,01890020, 351, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Milton-Charles S Pierce Middle,01890410, 960, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2023-24,Milton-Milton High,01890505," 1,083", 8, 0.7,"","","","","","","","", 0.7, 0.4, 0.7, 1.1 +7.8,5,a-degr-i2,2023-24,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 683, 1, 0.1,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Mohawk Trail-Sanderson Academy,07170020, 90, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Mohawk Trail-Mohawk Trail Regional School,07170505, 299, 7, 2.3,"","","","","","", 0.0, 0.0, 13.6, 3.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Mohawk Trail-Colrain Central,07170010, 73, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Mohawk Trail-Buckland-Shelburne Regional,07170005, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Monomoy Regional School District-Harwich Elementary School,07120002, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Monomoy Regional School District-Monomoy Regional High School,07120515, 713, 3, 0.4,"","","","","","","", 0.0, 0.7, 0.0, 0.0, 1.7 +8.0,5,a-degr-i2,2023-24,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 414, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2023-24,Monomoy Regional School District-Chatham Elementary School,07120001, 119, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Monson-Monson High School,01910505, 290, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.0,5,a-degr-i2,2023-24,Monson-Granite Valley School,01910030, 387, 2, 0.5, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2023-24,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605," 1,428", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 +7.0,5,a-degr-i2,2023-24,Mount Greylock-Mt Greylock Regional High,07150505, 552, 3, 0.5,"","","","","","", 0.9, 0.0, 1.1, 0.0, 1.4, 0.0 +8.0,5,a-degr-i2,2023-24,Mount Greylock-Lanesborough Elementary,07150005, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Mount Greylock-Williamstown Elementary,07150010, 353, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2023-24,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105," 1,486", 12, 0.8, 1.3, 0.0, 1.3, 1.4, 0.0, 2.1, 1.8, 0.9, 0.0, 0.0, 0.0, 0.0 +5.8,5,a-degr-i2,2023-24,Nahant-Johnson,01960010, 88, 1, 1.1, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Nantucket-Nantucket Elementary,01970005, 246, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2023-24,Nantucket-Nantucket High,01970505, 589, 13, 2.2,"","","","","","","","", 3.1, 1.9, 2.6, 0.9 +8.0,5,a-degr-i2,2023-24,Nantucket-Nantucket Intermediate School,01970020, 340, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Nantucket-Cyrus Peirce,01970010, 353, 1, 0.3,"","","","","", 0.0, 0.0, 0.8,"","","","" +6.4,5,a-degr-i2,2023-24,Narragansett-Narragansett Regional High,07200505, 473, 4, 0.8,"","","","","","","", 0.0, 2.9, 0.0, 1.1, 0.0 +7.0,5,a-degr-i2,2023-24,Narragansett-Templeton Elementary School,07200020, 430, 2, 0.5, 0.9, 0.0, 0.0, 0.8,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Narragansett-Narragansett Middle,07200305, 366, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +7.6,5,a-degr-i2,2023-24,Nashoba-Nashoba Regional,07250505, 832, 2, 0.2,"","","","","","","","", 0.5, 0.0, 0.0, 0.5 +8.0,5,a-degr-i2,2023-24,Nashoba-Hale,07250310, 237, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Nashoba-Mary Rowlandson Elementary,07250010, 364, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Nashoba-Luther Burbank Middle School,07250305, 249, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Nashoba-Florence Sawyer School,07250025, 659, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Nashoba-Center School,07250020, 393, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 773, 4, 0.5,"","","","","","","","", 0.9, 0.0, 0.5, 0.6 +6.8,5,a-degr-i2,2023-24,Natick-Natick High,01980505," 1,619", 9, 0.6,"","","","","","","","", 0.5, 0.0, 0.0, 1.9 +8.0,5,a-degr-i2,2023-24,Natick-Wilson Middle,01980310, 748, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Natick-Bennett-Hemenway,01980005, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2023-24,Natick-Brown,01980010, 413, 2, 0.5, 1.0, 0.9, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Natick-Johnson,01980031, 51, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Natick-Lilja Elementary,01980035, 328, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Natick-Memorial,01980043, 364, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Natick-J F Kennedy Middle School,01980305, 911, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Nauset-Nauset Regional Middle,06600305, 485, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.4,5,a-degr-i2,2023-24,Nauset-Nauset Regional High,06600505, 748, 10, 1.3,"","","","","","","","", 2.8, 0.6, 0.5, 1.6 +7.8,5,a-degr-i2,2023-24,Needham-Needham High,01990505," 1,622", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.2 +8.0,5,a-degr-i2,2023-24,Needham-High Rock School,01990410, 447, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Needham-Newman Elementary,01990050, 520, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Needham-Pollard Middle,01990405, 880, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Needham-Broadmeadow,01990005, 441, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Needham-William Mitchell,01990040, 373, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Needham-Sunita L. Williams Elementary,01990035, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Needham-John Eliot,01990020, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2023-24,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 780, 19, 2.4, 2.5, 0.0, 0.0, 0.0, 0.0, 0.0, 2.8, 0.0, 6.6, 5.6, 6.6, 0.0 +5.6,5,a-degr-i2,2023-24,New Bedford-Trinity Day Academy,02010510, 86, 1, 1.2,"","","","", 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 9.1 +-13.2,1,a-degr-i2,2023-24,New Bedford-Whaling City Junior/Senior High School,02010515, 179, 19, 10.6,"","","","","","","", 0.0, 27.6, 6.5, 13.6, 0.0 +4.8,4.8,a-degr-i2,2023-24,New Bedford-New Bedford High,02010505," 2,893", 45, 1.6,"","","","","","","","", 0.3, 1.7, 0.8, 3.8 +8.0,5,a-degr-i2,2023-24,New Bedford-Roosevelt Middle School,02010415, 788, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,New Bedford-Normandin Middle School,02010410," 1,038", 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" +7.0,5,a-degr-i2,2023-24,New Bedford-Keith Middle School,02010405, 872, 4, 0.5,"","","","","", 0.0, 1.0, 0.4,"","","","" +8.0,5,a-degr-i2,2023-24,New Bedford-Betsey B Winslow,02010140, 202, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,New Bedford-William H Taylor,02010135, 194, 2, 1.0, 2.8, 2.2, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,New Bedford-Jireh Swift,02010130, 152, 1, 0.7, 0.0, 0.0, 3.3, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,New Bedford-Thomas R Rodman,02010125, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,New Bedford-Casimir Pulaski,02010123, 395, 1, 0.3, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,New Bedford-John Avery Parker,02010115, 191, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,New Bedford-Carlos Pacheco,02010105, 217, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,New Bedford-Abraham Lincoln,02010095, 561, 4, 0.7, 0.8, 1.9, 0.9, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,New Bedford-Hayden/McFadden,02010078, 513, 3, 0.6, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,New Bedford-Ellen R Hathaway,02010075, 161, 1, 0.6, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,New Bedford-Irwin M. Jacobs Elementary School,02010070, 288, 1, 0.3, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,New Bedford-Alfred J Gomes,02010063, 463, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,New Bedford-John B Devalles,02010050, 237, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,New Bedford-Sgt Wm H Carney Academy,02010045, 444, 2, 0.5, 1.1, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,New Bedford-James B Congdon,02010040, 257, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,New Bedford-Elwyn G Campbell,02010020, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.5999999999999996,3.6,a-degr-i2,2023-24,New Bedford-Elizabeth Carter Brooks,02010015, 224, 5, 2.2, 2.6, 4.3, 3.8, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,New Bedford-Charles S Ashley,02010010, 235, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.8,3.8,a-degr-i2,2023-24,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 730, 15, 2.1,"","","","","", 4.5, 4.5, 0.0, 1.0, 1.9, 0.9, 1.1 +6.2,5,a-degr-i2,2023-24,New Salem-Wendell-Swift River,07280015, 106, 1, 0.9, 8.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2023-24,Newburyport-Francis T Bresnahan Elementary,02040005, 395, 3, 0.8, 1.7, 0.0, 0.7,"","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Newburyport-Newburyport High,02040505, 782, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Newburyport-Rupert A Nock Middle,02040305, 473, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Newburyport-Edward G. Molin Elementary School,02040030, 300, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Charles E Brown Middle,02070310, 732, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Newton-C C Burr,02070020, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Zervas,02070130, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Williams,02070125, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-John Ward,02070120, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Underwood,02070115, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Memorial Spaulding,02070105, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Peirce,02070100, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Mason-Rice,02070080, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Horace Mann,02070075, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Lincoln-Eliot,02070070, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Franklin,02070055, 305, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Countryside,02070040, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Newton-Cabot,02070025, 374, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-F A Day Middle,02070315, 868, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Newton-Oak Hill Middle,02070320, 648, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2023-24,Newton-Newton North High,02070505," 2,085", 14, 0.7,"","","","","","","","", 0.2, 0.6, 1.0, 1.0 +7.4,5,a-degr-i2,2023-24,Newton-Newton South High,02070510," 1,859", 5, 0.3,"","","","","","","","", 0.0, 0.0, 0.2, 0.9 +8.0,5,a-degr-i2,2023-24,Newton-Bowen,02070015, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Newton-A E Angier,02070005, 320, 2, 0.6, 3.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Newton-Bigelow Middle,02070305, 414, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Norfolk-Freeman-Kennedy School,02080005, 552, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2023-24,Norfolk-H Olive Day,02080015, 261, 2, 0.8, 0.9, 0.7,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 586, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +5.6,5,a-degr-i2,2023-24,North Adams-Brayton,02090035, 166, 2, 1.2, 0.0, 0.0, 0.0, 0.0, 5.3, 0.0,"","","","","","" +-8.0,1,a-degr-i2,2023-24,North Adams-Drury High,02090505, 461, 37, 8.0,"","","","","","", 1.3, 2.5, 9.8, 15.0, 13.7, 2.1 +8.0,5,a-degr-i2,2023-24,North Adams-Colegrove Park Elementary,02090008, 187, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,North Adams-Greylock,02090015, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,North Andover-Annie L Sargent School,02110018, 468, 3, 0.6, 1.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Andover-Thomson,02110020, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,North Andover-North Andover Middle,02110305," 1,017", 1, 0.1,"","","","","", 0.3, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,North Andover-North Andover High,02110505," 1,380", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +7.0,5,a-degr-i2,2023-24,North Andover-Franklin,02110010, 380, 2, 0.5, 1.4, 0.0, 1.5, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,North Andover-Kittredge,02110015, 222, 1, 0.5, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,North Andover-Atkinson,02110001, 266, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 1.8,"","","","","","","" +4.0,4.0,a-degr-i2,2023-24,North Attleborough-North Attleboro High,02120505," 1,062", 21, 2.0,"","","","","","","","", 2.7, 4.1, 1.0, 0.7 +7.6,5,a-degr-i2,2023-24,North Attleborough-North Attleborough Middle,02120305, 964, 2, 0.2,"","","","","", 0.0, 0.3, 0.3,"","","","" +6.4,5,a-degr-i2,2023-24,North Attleborough-Community,02120030, 239, 2, 0.8, 0.0, 0.0, 2.1, 2.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Attleborough-Roosevelt Avenue,02120015, 217, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Attleborough-Falls,02120010, 201, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Attleborough-Joseph W Martin Jr Elementary,02120013, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Attleborough-Amvet Boulevard,02120007, 353, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Brookfield-North Brookfield Elementary,02150015, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.0,5.0,a-degr-i2,2023-24,North Brookfield-North Brookfield High,02150505, 133, 2, 1.5,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 6.5 +8.0,5,a-degr-i2,2023-24,North Middlesex-Hawthorne Brook,07350030, 452, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,North Middlesex-Ashby Elementary,07350010, 117, 1, 0.9, 4.5, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,North Middlesex-Squannacook Early Childhood Center,07350002, 11, 0, 0.0,"","","","","","","","","","","","" +6.2,5,a-degr-i2,2023-24,North Middlesex-North Middlesex Regional,07350505, 745, 7, 0.9,"","","","","","","","", 2.3, 0.5, 0.9, 0.0 +7.6,5,a-degr-i2,2023-24,North Middlesex-Varnum Brook,07350035, 500, 1, 0.2, 0.0, 0.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,North Middlesex-Nissitissit Middle School,07350310, 486, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,North Middlesex-Spaulding Memorial,07350005, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,North Reading-E Ethel Little School,02170003, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,North Reading-L D Batchelder,02170005, 377, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Reading-J Turner Hood,02170010, 326, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,North Reading-North Reading Middle,02170305, 543, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,North Reading-North Reading High,02170505, 613, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Northampton-John F Kennedy Middle School,02100410, 542, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Northampton-Northampton High,02100505, 898, 4, 0.4,"","","","","","","","", 0.4, 0.0, 0.9, 0.5 +8.0,5,a-degr-i2,2023-24,Northampton-R. K. Finn Ryan Road,02100029, 198, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northampton-Leeds,02100025, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northampton-Jackson Street,02100020, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Northampton-Bridge Street,02100005, 197, 1, 0.5, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 569, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,Northboro-Southboro-Algonquin Regional High,07300505," 1,179", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +7.2,5,a-degr-i2,2023-24,Northborough-Fannie E Proctor,02130015, 224, 1, 0.4, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Northborough-Marion E Zeh,02130020, 213, 1, 0.5, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northborough-Robert E. Melican Middle School,02130305, 569, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Northborough-Lincoln Street,02130003, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northborough-Marguerite E Peaslee,02130014, 241, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Northbridge-Northbridge Elementary School,02140001, 697, 1, 0.1, 0.0, 0.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Northbridge-Northbridge Middle,02140305, 432, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Northbridge-Northbridge High,02140505, 473, 11, 2.3,"","","","","","","","", 6.4, 2.2, 0.0, 0.0 +7.8,5,a-degr-i2,2023-24,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605," 1,343", 1, 0.1,"","","","","","","","", 0.0, 0.3, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 520, 2, 0.4,"","","","","","","","", 0.8, 0.0, 0.7, 0.0 +5.6,5,a-degr-i2,2023-24,Norton-Norton High,02180505, 682, 8, 1.2,"","","","","","","","", 3.0, 1.1, 0.6, 0.0 +8.0,5,a-degr-i2,2023-24,Norton-Norton Middle,02180305, 559, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Norton-J C Solmonese,02180015, 320, 1, 0.3, 1.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Norton-Henri A. Yelle,02180060, 333, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2023-24,Norton-L G Nourse Elementary,02180010, 223, 2, 0.9, 3.1, 0.0, 0.0,"","","","","","","","","" +7.6,5,a-degr-i2,2023-24,Norwell-Norwell High,02190505, 596, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2023-24,Norwell-Grace Farrar Cole,02190005, 427, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Norwell-William G Vinal,02190020, 448, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Norwell-Norwell Middle School,02190405, 500, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Norwood-Charles J Prescott,02200025, 242, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,Norwood-Norwood High,02200505, 946, 8, 0.8,"","","","","","","","", 2.4, 0.9, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Norwood-John P Oldham,02200020, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Norwood-F A Cleveland,02200015, 317, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Norwood-Cornelius M Callahan,02200010, 234, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Norwood-Balch,02200005, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Norwood-Dr. Philip O. Coakley Middle School,02200305, 791, 2, 0.3,"","","","","", 0.4, 0.4, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Oak Bluffs-Oak Bluffs Elementary,02210005, 362, 2, 0.6, 2.2, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 549, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Old Rochester-Old Rochester Regional Jr High,07400405, 431, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Old Rochester-Old Rochester Regional High,07400505, 604, 3, 0.5,"","","","","","","","", 0.6, 1.4, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 308, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Orange-Fisher Hill School,02230010, 409, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Orleans-Orleans Elementary,02240005, 113, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-3.4000000000000004,1,a-degr-i2,2023-24,Oxford-Oxford High,02260505, 404, 23, 5.7,"","","","","","","","", 5.6, 6.0, 8.3, 2.3 +7.2,5,a-degr-i2,2023-24,Oxford-Alfred M Chaffee,02260010, 223, 1, 0.4, 0.9, 0.0,"","","","","","","","","","" +6.8,5,a-degr-i2,2023-24,Oxford-Clara Barton,02260005, 321, 2, 0.6,"","", 2.3, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Oxford-Oxford Middle,02260405, 385, 2, 0.5,"","","","","", 0.0, 0.7, 0.8,"","","","" +8.0,5,a-degr-i2,2023-24,Palmer-Old Mill Pond,02270008, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Palmer-Palmer High,02270505, 508, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.7 +6.2,5,a-degr-i2,2023-24,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 643, 6, 0.9,"","","","","","","","", 2.3, 1.2, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Peabody-Center,02290015, 304, 1, 0.3, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Peabody-John E. McCarthy,02290016, 218, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Peabody-William A Welch Sr,02290027, 235, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2023-24,Peabody-South Memorial,02290035, 350, 4, 1.1, 4.3, 1.5, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Peabody-J Henry Higgins Middle,02290305," 1,283", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-13.2,1,a-degr-i2,2023-24,Peabody-Peabody Veterans Memorial High,02290510," 1,410", 149, 10.6,"","","","","","","","", 9.0, 12.4, 15.2, 4.3 +-65.4,1,a-degr-i2,2023-24,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 98, 36, 36.7,"","","","","","","", 12.5, 37.5, 60.0, 57.9, 47.4 +7.6,5,a-degr-i2,2023-24,Peabody-Thomas Carroll,02290010, 480, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Peabody-John E Burke,02290007, 249, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Peabody-Captain Samuel Brown,02290005, 298, 2, 0.7, 0.0, 0.0, 0.0, 3.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Peabody-West Memorial,02290045, 193, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pelham-Pelham Elementary,02300005, 112, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pembroke-Bryantville Elementary,02310003, 380, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pembroke-Hobomock Elementary,02310010, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pembroke-North Pembroke Elementary,02310015, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pembroke-Pembroke Community Middle School,02310305, 360, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2023-24,Pembroke-Pembroke High School,02310505, 704, 6, 0.9,"","","","","","","","", 1.1, 2.3, 0.0, 0.0 +6.2,5,a-degr-i2,2023-24,Pentucket-Pentucket Regional Sr High,07450505, 574, 5, 0.9,"","","","","","","","", 0.7, 0.0, 1.9, 0.7 +8.0,5,a-degr-i2,2023-24,Pentucket-Pentucket Regional Middle,07450405, 331, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Pentucket-Dr Frederick N Sweetsir,07450020, 136, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Pentucket-Dr John C Page School,07450015, 258, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pentucket-Helen R Donaghue School,07450010, 245, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pentucket-Elmer S Bagnall,07450005, 411, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Petersham-Petersham Center,02340005, 114, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-103.4,1,a-degr-i2,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 194, 108, 55.7,"","","","","","","","", 58.6,"", 65.0, 20.0 +-106.0,1,a-degr-i2,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 114, 65, 57.0,"","","","","","","","", 64.5,"", 35.7, 0.0 +-122.80000000000001,1,a-degr-i2,2023-24,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 159, 104, 65.4,"","","","","","","","", 76.9,"", 62.3, 0.0 +6.4,5,a-degr-i2,2023-24,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 717, 6, 0.8, 1.6, 1.6, 1.6, 0.0, 1.6, 1.6, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0 +6.8,5,a-degr-i2,2023-24,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 516, 3, 0.6, 0.0, 0.0, 0.0,"","","", 0.0, 1.4, 1.4, 1.5, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Pioneer Valley-Pioneer Valley Regional,07500505, 241, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Pioneer Valley-Bernardston Elementary,07500006, 167, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pioneer Valley-Northfield Elementary,07500008, 121, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 507, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 399, 1, 0.3,"","","","","","", 0.0, 0.0, 0.0, 0.0, 1.5, 0.0 +7.6,5,a-degr-i2,2023-24,Pittsfield-Theodore Herberg Middle,02360310, 531, 1, 0.2,"","","","","", 0.5, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-John T Reid Middle,02360305, 442, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2023-24,Pittsfield-Silvio O Conte Community,02360105, 275, 3, 1.1, 3.1, 0.0, 0.0, 2.1, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Williams,02360100, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Stearns,02360090, 172, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Pittsfield-Crosby,02360065, 174, 1, 0.6, 0.0, 0.0, 0.0, 0.0, 2.9,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Allendale,02360010, 201, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Pittsfield-Robert T. Capeless Elementary School,02360045, 142, 1, 0.7, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Egremont,02360035, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Pittsfield-Crosby Educational Academy,02360030, 21, 0, 0.0,"","","", 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Pittsfield-Morningside Community School,02360055, 279, 1, 0.4, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" +-2.4000000000000004,1,a-degr-i2,2023-24,Pittsfield-Pittsfield High,02360505, 711, 37, 5.2,"","","","","","","","", 12.6, 5.5, 2.2, 0.5 +-18.6,1,a-degr-i2,2023-24,Pittsfield-Eagle Education Academy,02360525, 30, 4, 13.3,"","","","","", 0.0,"","", 22.2,"","","" +4.4,4.4,a-degr-i2,2023-24,Pittsfield-Taconic High,02360510, 875, 16, 1.8,"","","","","","","","", 0.0, 3.4, 3.3, 0.5 +8.0,5,a-degr-i2,2023-24,Plainville-Beatrice H Wood Elementary,02380005, 314, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Plainville-Anna Ware Jackson,02380010, 174, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Plymouth South Middle,02390305, 605, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Plymouth-Plymouth Commun Intermediate,02390405, 871, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" +2.2,2.2,a-degr-i2,2023-24,Plymouth-Plymouth North High,02390505," 1,247", 36, 2.9,"","","","","","","","", 8.2, 3.1, 0.3, 0.0 +6.4,5,a-degr-i2,2023-24,Plymouth-Plymouth South High,02390515," 1,003", 8, 0.8,"","","","","","","","", 2.0, 1.2, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Plymouth-Cold Spring,02390005, 180, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Hedge,02390010, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Federal Furnace School,02390011, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Indian Brook,02390012, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-Manomet Elementary,02390015, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Plymouth-Nathaniel Morton Elementary,02390030, 423, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-South Elementary,02390046, 532, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Plymouth-West Elementary,02390047, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Plympton-Dennett Elementary,02400010, 219, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2023-24,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 823, 6, 0.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 3.1, 4.9 +8.0,5,a-degr-i2,2023-24,Provincetown-Provincetown Schools,02420020, 98, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Quabbin-Quabbin Regional Middle School,07530405, 527, 3, 0.6,"","","","","", 0.5, 0.0, 1.1,"","","","" +8.0,5,a-degr-i2,2023-24,Quabbin-Hardwick Elementary,07530005, 145, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2023-24,Quabbin-Hubbardston Center,07530010, 230, 2, 0.9, 0.0, 2.7, 1.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quabbin-Oakham Center,07530025, 133, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-6.4,1,a-degr-i2,2023-24,Quabbin-Quabbin Regional High School,07530505, 567, 41, 7.2,"","","","","","","","", 16.3, 3.6, 2.6, 1.7 +8.0,5,a-degr-i2,2023-24,Quabbin-Ruggles Lane,07530030, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quaboag Regional-Warren Elementary,07780005, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2023-24,Quaboag Regional-West Brookfield Elementary,07780010, 215, 3, 1.4, 6.5, 0.0, 3.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 170, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +2.8,2.8,a-degr-i2,2023-24,Quaboag Regional-Quaboag Regional High,07780505, 344, 9, 2.6,"","","","","","","","", 6.3, 3.4, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Quincy-Atlantic Middle,02430305, 560, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Broad Meadows Middle,02430310, 318, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Central Middle,02430315, 670, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Quincy-South West Middle School,02430320, 443, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Point Webster Middle,02430325, 353, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.6,5,a-degr-i2,2023-24,Quincy-Quincy High,02430505," 1,473", 17, 1.2,"","","","","","","","", 1.4, 0.5, 1.8, 0.8 +5.4,5,a-degr-i2,2023-24,Quincy-North Quincy High,02430510," 1,479", 19, 1.3,"","","","","","","","", 2.6, 1.1, 1.4, 0.0 +8.0,5,a-degr-i2,2023-24,Quincy-Wollaston School,02430110, 268, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Squantum,02430095, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Snug Harbor Community School,02430090, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Francis W Parker,02430075, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Montclair,02430065, 361, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Merrymount,02430060, 265, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Clifford H Marshall Elementary,02430055, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.0,5,a-degr-i2,2023-24,Quincy-Atherton Hough,02430040, 209, 2, 1.0, 2.4, 3.2, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Lincoln-Hancock Community School,02430035, 459, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Beechwood Knoll Elementary,02430020, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Quincy-Charles A Bernazzani Elementary,02430025, 280, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-2.4000000000000004,1,a-degr-i2,2023-24,Ralph C Mahar-Ralph C Mahar Regional,07550505, 504, 26, 5.2,"","","","","","", 0.0, 0.0, 24.7, 0.0, 1.3, 1.8 +-7.4,1,a-degr-i2,2023-24,Randolph-Randolph High,02440505, 662, 51, 7.7,"","","","","","","","", 17.5, 4.9, 4.4, 2.2 +7.4,5,a-degr-i2,2023-24,Randolph-Randolph Community Middle,02440410, 602, 2, 0.3,"","","","","", 0.4, 0.5, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Randolph-Martin E Young Elementary,02440040, 235, 1, 0.4, 0.0, 1.9, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Randolph-Margaret L Donovan,02440015, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2023-24,Randolph-J F Kennedy Elementary,02440018, 286, 4, 1.4, 3.1, 3.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Randolph-Elizabeth G Lyons Elementary,02440020, 217, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Reading-Reading Memorial High,02460505," 1,097", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 +8.0,5,a-degr-i2,2023-24,Reading-Birch Meadow,02460005, 306, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Reading-Joshua Eaton,02460010, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Reading-Alice M Barrows,02460002, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Reading-Wood End Elementary School,02460020, 206, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Reading-Arthur W Coolidge Middle,02460305, 403, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Reading-Walter S Parker Middle,02460310, 451, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Reading-J Warren Killam,02460017, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-23.2,1,a-degr-i2,2023-24,Revere-CityLab Innovation High School,02480520, 109, 17, 15.6,"","","","","","","","", 31.0, 7.7, 0.0, 5.6 +-7.0,1,a-degr-i2,2023-24,Revere-Revere High,02480505," 2,083", 157, 7.5,"","","","","","","","", 9.6, 11.4, 6.8, 0.7 +8.0,5,a-degr-i2,2023-24,Revere-Susan B. Anthony Middle School,02480305, 568, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Revere-Garfield Middle School,02480057, 566, 1, 0.2,"","","","","", 0.5, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Revere-Garfield Elementary School,02480056, 540, 1, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Revere-Paul Revere,02480050, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Revere-Abraham Lincoln,02480025, 469, 2, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Revere-Rumney Marsh Academy,02480014, 579, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Revere-Beachmont Veterans Memorial School,02480013, 245, 1, 0.4, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Revere-A. C. Whelan Elementary School,02480003, 608, 4, 0.7, 0.9, 1.9, 0.8, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2023-24,Revere-Staff Sargent James J. Hill Elementary School,02480035, 555, 7, 1.3, 2.0, 2.7, 1.8, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Richmond-Richmond Consolidated,02490005, 129, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 623, 4, 0.6,"","","","", 0.0, 0.0, 0.0, 1.0, 0.0, 2.9, 1.6, 0.0 +7.2,5,a-degr-i2,2023-24,River Valley Charter (District)-River Valley Charter School,04820050, 256, 1, 0.4, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Rochester-Rochester Memorial,02500005, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,Rockland-Phelps Elementary School,02510060, 640, 4, 0.6, 0.0, 1.9, 0.0, 0.6,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Rockland-John W Rogers Middle,02510305, 697, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 1.0,"","","","" +-1.1999999999999993,1,a-degr-i2,2023-24,Rockland-Rockland Senior High,02510505, 571, 26, 4.6,"","","","","","","","", 10.5, 3.8, 1.7, 0.0 +8.0,5,a-degr-i2,2023-24,Rockport-Rockport High,02520510, 226, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Rockport-Rockport Middle,02520305, 173, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Rockport-Rockport Elementary,02520005, 214, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Rowe-Rowe Elementary,02530005, 48, 0, 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.8,3.8,a-degr-i2,2023-24,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505," 1,138", 24, 2.1,"","","","", 4.1, 0.7, 4.9, 3.3, 0.5, 0.8, 1.8, 0.0 +8.0,5,a-degr-i2,2023-24,Salem-Bates,02580003, 299, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Salem-Bentley Academy Innovation School,02580010, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-3.8000000000000007,1,a-degr-i2,2023-24,Salem-Salem Prep High School,02580515, 17, 1, 5.9,"","","","","","","","","", 0.0, 0.0,"" +-14.2,1,a-degr-i2,2023-24,Salem-New Liberty Innovation School,02580510, 45, 5, 11.1,"","","","","","","","", 0.0,"", 0.0, 22.7 +-9.0,1,a-degr-i2,2023-24,Salem-Salem High,02580505, 940, 80, 8.5,"","","","","","","","", 16.6, 8.8, 2.9, 3.3 +7.6,5,a-degr-i2,2023-24,Salem-Collins Middle,02580305, 625, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Salem-Witchcraft Heights,02580070, 375, 2, 0.5, 0.0, 0.0, 1.4, 1.2, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Salem-Saltonstall School,02580050, 351, 2, 0.6, 0.0, 0.0, 2.2, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Salem-Horace Mann Laboratory,02580030, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Salem-Carlton,02580015, 212, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2023-24,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 488, 9, 1.8,"","","","","", 0.0, 0.0, 0.0, 5.1, 1.8, 1.4, 4.6 +8.0,5,a-degr-i2,2023-24,Sandwich-Oak Ridge,02610025, 674, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Sandwich-Sandwich Middle High School,02610505, 910, 3, 0.3,"","","","","","", 0.0, 0.0, 1.7, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2023-24,Sandwich-Forestdale School,02610002, 311, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.0,5,a-degr-i2,2023-24,Saugus-Veterans Early Learning Center,02620065, 203, 1, 0.5, 0.5,"","","","","","","","","","","" +7.6,5,a-degr-i2,2023-24,Saugus-Saugus Middle School,02620305, 617, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +5.0,5.0,a-degr-i2,2023-24,Saugus-Saugus High,02620505, 724, 11, 1.5,"","","","","","","","", 1.7, 0.6, 3.1, 0.6 +7.4,5,a-degr-i2,2023-24,Saugus-Belmonte STEAM Academy,02620060, 800, 2, 0.3,"", 1.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Savoy-Emma L Miller Elementary School,02630010, 34, 0, 0.0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Scituate-Cushing Elementary,02640007, 308, 1, 0.3, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Scituate-Hatherly Elementary,02640010, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2023-24,Scituate-Scituate High School,02640505, 748, 8, 1.1,"","","","","","","","", 0.0, 0.0, 0.0, 3.8 +7.4,5,a-degr-i2,2023-24,Scituate-Wampatuck Elementary,02640020, 308, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Scituate-Gates Middle School,02640305, 614, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Scituate-Jenkins Elementary School,02640015, 287, 1, 0.3, 0.0, 0.0, 0.0, 1.6, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Seekonk-George R Martin,02650007, 369, 1, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" +4.6,4.6,a-degr-i2,2023-24,Seekonk-Seekonk High,02650505, 520, 9, 1.7,"","","","","","","","", 5.4, 1.8, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 514, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2023-24,Seekonk-Mildred Aitken School,02650015, 458, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2023-24,Sharon-Sharon High,02660505," 1,132", 14, 1.2,"","","","","","","","", 0.0, 0.0, 0.0, 5.1 +8.0,5,a-degr-i2,2023-24,Sharon-Sharon Middle,02660305, 807, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Sharon-Cottage Street,02660005, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Sharon-East Elementary,02660010, 427, 1, 0.2, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Sharon-Heights Elementary,02660015, 469, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605," 1,306", 2, 0.2,"","","","","","","","", 0.6, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2023-24,Sherborn-Pine Hill,02690010, 339, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Shrewsbury-Shrewsbury High School,02710505," 1,862", 1, 0.1,"","","","","","","","", 0.0, 0.2, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,Shrewsbury-Spring Street School,02710035, 227, 1, 0.4, 0.0, 0.0, 0.0, 1.5,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Shrewsbury-Sherwood Middle School,02710305, 917, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,Shrewsbury-Major Howard W. Beal School,02710005, 491, 3, 0.6, 0.0, 2.7, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Shrewsbury-Calvin Coolidge School,02710015, 235, 1, 0.4, 1.7, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Shrewsbury-Floral Street School,02710020, 447, 1, 0.2, 0.0, 0.0, 0.0, 0.8,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Shrewsbury-Walter J. Paton School,02710025, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Shrewsbury-Oak Middle School,02710030, 941, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Shutesbury-Shutesbury Elementary,02720005, 82, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Silver Lake-Silver Lake Regional Middle School,07600405, 563, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2023-24,Silver Lake-Silver Lake Regional High,07600505," 1,015", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.4, 0.0 +5.4,5,a-degr-i2,2023-24,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 302, 4, 1.3,"","","","","","", 2.0, 1.5, 4.1, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Somerset-Somerset Middle School,02730305, 566, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Somerset-South,02730015, 224, 1, 0.4, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Somerset-North Elementary,02730008, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Somerset-Chace Street,02730005, 265, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 950, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 +2.8,2.8,a-degr-i2,2023-24,Somerville-Somerville High,02740505," 1,363", 36, 2.6,"","","","","","","","", 3.7, 3.8, 0.8, 2.2 +-17.4,1,a-degr-i2,2023-24,Somerville-Full Circle High School,02740510, 63, 8, 12.7,"","","","","","","","", 19.0, 21.4, 0.0, 11.1 +8.0,5,a-degr-i2,2023-24,Somerville-Next Wave Junior High,02740410, 13, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Somerville-Winter Hill Community,02740120, 355, 2, 0.6, 2.1, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Somerville-West Somerville Neighborhood,02740115, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Somerville-E Somerville Community,02740111, 660, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 481, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Somerville-John F Kennedy,02740083, 382, 2, 0.5, 2.1, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Somerville-Arthur D Healey,02740075, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Somerville-Benjamin G Brown,02740015, 180, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,South Hadley-Plains Elementary,02780015, 109, 0, 0.0, 0.0,"","","","","","","","","","","" +6.4,5,a-degr-i2,2023-24,South Hadley-Michael E. Smith Middle School,02780305, 511, 4, 0.8,"","","","", 1.4, 0.8, 0.0, 0.9,"","","","" +7.4,5,a-degr-i2,2023-24,South Hadley-Mosier,02780020, 360, 1, 0.3,"", 0.0, 1.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2023-24,South Hadley-South Hadley High,02780505, 506, 3, 0.6,"","","","","","","","", 1.5, 0.9, 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 871, 2, 0.2,"","","","","","","","", 0.0, 0.0, 1.0, 0.0 +7.4,5,a-degr-i2,2023-24,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 979, 3, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.4, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 667, 3, 0.4,"","","","","","","","", 1.1, 0.6, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Southampton-William E Norris,02750005, 359, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2023-24,Southborough-Mary E Finn School,02760008, 149, 1, 0.7, 0.7,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Southborough-P Brent Trottier,02760305, 407, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Southborough-Albert S. Woodward Memorial School,02760050, 247, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2023-24,Southborough-Margaret A Neary,02760020, 285, 1, 0.4,"","","", 0.0, 0.8,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Southbridge-Charlton Street,02770005, 267, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Southbridge-West Street,02770020, 328, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Southbridge-Southbridge Middle School,02770315, 428, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" +-1.8000000000000007,1,a-degr-i2,2023-24,Southbridge-Southbridge High School,02770515, 465, 23, 4.9,"","","","","","","","", 9.0, 4.1, 3.5, 2.8 +-25.4,1,a-degr-i2,2023-24,Southbridge-Southbridge Academy,02770525, 36, 6, 16.7,"","","","","","","","", 37.5, 14.3, 11.1,"" +8.0,5,a-degr-i2,2023-24,Southbridge-Eastford Road,02770010, 139, 0, 0.0, 0.0,"","","","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605," 1,597", 2, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 +2.8,2.8,a-degr-i2,2023-24,Southern Berkshire-New Marlborough Central,07650018, 39, 1, 2.6, 0.0, 0.0, 11.1,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Southern Berkshire-Undermountain,07650035, 192, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2023-24,Southern Berkshire-Mt Everett Regional,07650505, 281, 3, 1.1,"","","","","", 0.0, 2.2, 0.0, 0.0, 0.0, 0.0, 6.3 +7.6,5,a-degr-i2,2023-24,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605," 1,193", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.7, 0.0 +7.0,5,a-degr-i2,2023-24,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 613, 3, 0.5,"","","","","","", 0.0, 1.7, 1.1, 0.0, 0.0, 0.0 +7.0,5,a-degr-i2,2023-24,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 192, 1, 0.5, 0.0, 1.1,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 381, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Spencer-E Brookfield-Knox Trail Middle School,07670415, 389, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2023-24,Spencer-E Brookfield-Wire Village School,07670040, 362, 3, 0.8, 2.5, 0.0, 1.2, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Spencer-E Brookfield-East Brookfield Elementary,07670008, 114, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-9.0,1,a-degr-i2,2023-24,Spencer-E Brookfield-David Prouty High,07670505, 328, 28, 8.5,"","","","","","","","", 13.4, 7.5, 8.3, 4.4 +3.5999999999999996,3.6,a-degr-i2,2023-24,Springfield-Edward P. Boland School,02810010, 366, 8, 2.2, 3.9, 4.1, 2.3, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2023-24,Springfield-Thomas M Balliet,02810015, 203, 2, 1.0, 4.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2023-24,Springfield-Samuel Bowles,02810020, 212, 2, 0.9, 0.0, 3.6, 2.1, 0.0, 0.0,"","","","","","","" +2.4000000000000004,2.4,a-degr-i2,2023-24,Springfield-Milton Bradley School,02810023, 290, 8, 2.8, 5.3, 3.8, 3.7, 1.6, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Springfield-Brightwood,02810025, 356, 2, 0.6, 1.7, 1.3, 0.0, 0.0, 0.0,"","","","","","","" +4.0,4.0,a-degr-i2,2023-24,Springfield-Elias Brookings,02810030, 205, 4, 2.0, 0.0, 6.0, 0.0, 2.2, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Springfield-Daniel B Brunton,02810035, 194, 1, 0.5, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-3.0,1,a-degr-i2,2023-24,Springfield-William N. DeBerry,02810045, 308, 17, 5.5, 12.0, 7.7, 7.6, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2023-24,Springfield-Hiram L Dorman,02810050, 205, 5, 2.4, 4.8, 4.5, 0.0, 2.4, 0.0,"","","","","","","" +2.2,2.2,a-degr-i2,2023-24,Springfield-Rebecca M Johnson,02810055, 441, 13, 2.9, 4.3, 4.7, 3.5, 0.0, 2.1,"","","","","","","" +2.8,2.8,a-degr-i2,2023-24,Springfield-Glenwood,02810065, 230, 6, 2.6, 4.1, 3.6, 5.6, 0.0, 0.0,"","","","","","","" +3.8,3.8,a-degr-i2,2023-24,Springfield-Glickman Elementary,02810068, 237, 5, 2.1, 5.9, 2.0, 2.3, 1.8, 0.0,"","","","","","","" +2.5999999999999996,2.6,a-degr-i2,2023-24,Springfield-Frank H Freedman,02810075, 183, 5, 2.7, 8.6, 2.8, 2.6, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Springfield-Frederick Harris,02810080, 384, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Springfield Public Day Elementary School,02810005, 35, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2023-24,Springfield-Benjamin Swan Elementary,02810085, 371, 3, 0.8, 0.0, 1.4, 2.5, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +4.4,4.4,a-degr-i2,2023-24,Springfield-Indian Orchard Elementary,02810100, 399, 7, 1.8, 1.9, 2.4, 3.1, 1.2, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Springfield-Kensington International School,02810110, 194, 1, 0.5, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","","","","" +-20.6,1,a-degr-i2,2023-24,Springfield-Liberty Preparatory Academy,02810560, 7, 1, 14.3,"","","","","","","","","","","","" +-55.4,1,a-degr-i2,2023-24,Springfield-Springfield High School,02810570, 221, 70, 31.7,"","","","","","","","", 38.0, 18.8, 9.3, 42.7 +0.7999999999999998,1,a-degr-i2,2023-24,Springfield-Gateway to College at Holyoke Community College,02810575, 28, 1, 3.6,"","","","","","","","","","", 9.1, 0.0 +-24.0,1,a-degr-i2,2023-24,Springfield-Gateway to College at Springfield Technical Community College,02810580, 25, 4, 16.0,"","","","","","","","","","", 9.1, 18.2 +7.0,5,a-degr-i2,2023-24,Springfield-Roger L. Putnam Vocational Technical Academy,02810620," 1,383", 7, 0.5,"","","","","","","","", 0.8, 1.1, 0.0, 0.0 +2.4000000000000004,2.4,a-degr-i2,2023-24,Springfield-Springfield International Academy at Sci-Tech,02810700, 72, 2, 2.8,"","","","","","","","", 0.0, 6.3, 0.0,"" +-9.2,1,a-degr-i2,2023-24,Springfield-The Springfield Virtual School,02810705, 304, 26, 8.6,"", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.9, 24.6, 26.7, 0.0, 14.3 +8.0,5,a-degr-i2,2023-24,Springfield-Liberty,02810115, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Springfield-Lincoln,02810120, 330, 1, 0.3, 0.0, 0.0, 1.3, 0.0, 0.0,"","","","","","","" +4.2,4.2,a-degr-i2,2023-24,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 216, 4, 1.9, 2.0, 7.0, 0.0, 0.0, 0.0,"","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2023-24,Springfield-Mary M Lynch,02810140, 175, 6, 3.4, 4.4, 0.0, 5.6, 5.7, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Springfield-Mary O Pottenger,02810145, 268, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 1.7,"","","","","","","" +3.8,3.8,a-degr-i2,2023-24,Springfield-Mary M Walsh,02810155, 192, 4, 2.1, 5.6, 2.5, 0.0, 0.0, 2.2,"","","","","","","" +3.4000000000000004,3.4,a-degr-i2,2023-24,Springfield-Sumner Avenue,02810160, 353, 8, 2.3, 3.4, 2.9, 3.2, 1.3, 1.1,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Springfield-Arthur T Talmadge,02810165, 176, 1, 0.6, 0.0, 0.0, 0.0, 2.6, 0.0,"","","","","","","" +2.8,2.8,a-degr-i2,2023-24,Springfield-Alice B Beal Elementary,02810175, 229, 6, 2.6, 8.3, 4.3, 0.0, 0.0, 0.0,"","","","","","","" +4.2,4.2,a-degr-i2,2023-24,Springfield-Warner,02810180, 160, 3, 1.9, 0.0, 3.8, 5.6, 0.0, 0.0,"","","","","","","" +3.0,3.0,a-degr-i2,2023-24,Springfield-Washington,02810185, 283, 7, 2.5, 2.8, 2.9, 4.9, 0.0, 2.3,"","","","","","","" +4.8,4.8,a-degr-i2,2023-24,Springfield-White Street,02810190, 322, 5, 1.6, 4.5, 3.1, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,Springfield-German Gerena Community School,02810195, 455, 3, 0.7, 2.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 609, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0 +1.7999999999999998,1.8,a-degr-i2,2023-24,Springfield-Springfield International Academy at Johnson,02810215, 32, 1, 3.1,"","", 0.0, 8.3, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Springfield-Kiley Prep,02810315, 263, 1, 0.4,"","","","","", 0.0, 0.0, 1.2,"","","","" +-0.40000000000000036,1,a-degr-i2,2023-24,Springfield-Kiley Academy,02810316, 287, 12, 4.2,"","","","","", 8.6, 2.0, 2.8,"","","","" +7.4,5,a-degr-i2,2023-24,Springfield-Springfield Legacy Academy,02810317, 355, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" +5.4,5,a-degr-i2,2023-24,Springfield-Emergence Academy,02810318, 231, 3, 1.3,"","","","","", 0.0, 4.2, 0.0, 2.4, 0.0,"","" +6.0,5,a-degr-i2,2023-24,Springfield-John J Duggan Academy,02810320, 831, 8, 1.0,"","","","","", 2.2, 0.6, 0.6, 0.0, 1.3, 1.3, 0.0 +8.0,5,a-degr-i2,2023-24,Springfield-Forest Park Middle,02810325, 284, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Springfield-John F Kennedy Middle,02810328, 367, 2, 0.5,"","","","","", 0.0, 0.9, 0.7,"","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Springfield Realization Academy,02810335, 199, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Springfield Public Day Middle School,02810345, 61, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.6,5,a-degr-i2,2023-24,Springfield-STEM Middle Academy,02810350, 287, 2, 0.7,"","","","","", 0.0, 1.0, 1.0,"","","","" +8.0,5,a-degr-i2,2023-24,Springfield-South End Middle School,02810355, 189, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-20.6,1,a-degr-i2,2023-24,Springfield-Springfield Middle School,02810360, 14, 2, 14.3,"","","","","","","", 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Impact Prep at Chestnut,02810366, 202, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 254, 1, 0.4,"","","","","", 0.0, 1.2, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Springfield-Conservatory of the Arts,02810475, 303, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Springfield-Rise Academy at Van Sickle,02810480, 216, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Springfield-Van Sickle Academy,02810485, 252, 1, 0.4,"","","","","", 1.2, 0.0, 0.0,"","","","" +-10.2,1,a-degr-i2,2023-24,Springfield-Springfield Central High,02810500," 2,042", 186, 9.1,"","","","","","","","", 20.8, 10.5, 0.0, 0.0 +3.8,3.8,a-degr-i2,2023-24,Springfield-High School Of Commerce,02810510," 1,060", 22, 2.1,"","","","","","","","", 4.0, 1.9, 0.6, 2.1 +-14.2,1,a-degr-i2,2023-24,Springfield-Springfield High School of Science and Technology,02810530," 1,097", 122, 11.1,"","","","","","","","", 18.9, 12.6, 7.1, 0.0 +-10.0,1,a-degr-i2,2023-24,Springfield-Springfield Public Day High School,02810550, 78, 7, 9.0,"","","","","","","","", 7.5, 25.0, 0.0, 0.0 +4.4,4.4,a-degr-i2,2023-24,Springfield International Charter (District)-Springfield International Charter School,04410505," 1,387", 25, 1.8, 3.8, 1.9, 0.8, 1.7, 1.8, 0.7, 1.6, 0.0, 5.0, 2.1, 1.9, 0.0 +6.6,5,a-degr-i2,2023-24,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 433, 3, 0.7, 1.9, 1.9, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Stoneham-Stoneham High,02840505, 582, 3, 0.5,"","","","","","","","", 0.0, 0.6, 0.0, 1.3 +7.8,5,a-degr-i2,2023-24,Stoneham-Stoneham Central Middle School,02840405, 700, 1, 0.1,"","","","", 0.6, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Stoneham-South,02840030, 256, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Stoneham-Robin Hood,02840025, 285, 1, 0.4, 1.4, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Stoneham-Colonial Park,02840005, 177, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2023-24,Stoughton-Richard L. Wilkins Elementary School,02850020, 262, 3, 1.1, 1.3, 3.2, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Stoughton-O'Donnell Middle School,02850405, 833, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Stoughton-Joseph R Dawe Jr Elementary,02850014, 320, 2, 0.6, 1.4, 0.0, 0.0, 1.7, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Stoughton-Helen Hansen Elementary,02850010, 217, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Stoughton-Joseph H Gibbons,02850025, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Stoughton-South Elementary,02850015, 246, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-4.6,1,a-degr-i2,2023-24,Stoughton-Stoughton High,02850505," 1,094", 69, 6.3,"","","","","","","","", 13.4, 6.5, 3.7, 1.5 +8.0,5,a-degr-i2,2023-24,Sturbridge-Burgess Elementary,02870005, 717, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 826, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Sudbury-General John Nixon Elementary,02880025, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Sudbury-Peter Noyes,02880030, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Sudbury-Israel Loring School,02880015, 357, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Sudbury-Josiah Haynes,02880010, 313, 1, 0.3, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Sudbury-Ephraim Curtis Middle,02880305, 828, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Sunderland-Sunderland Elementary,02890005, 138, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Sutton-Sutton High School,02900510, 363, 1, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 +6.6,5,a-degr-i2,2023-24,Sutton-Sutton Middle School,02900305, 295, 2, 0.7,"","","","","", 1.0, 1.1, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Sutton-Sutton Elementary,02900005, 313, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Sutton-Sutton Early Learning,02900003, 193, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Swampscott-Stanley,02910020, 163, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2023-24,Swampscott-Clarke,02910005, 168, 1, 0.6, 2.3, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Swampscott-Hadley,02910010, 263, 1, 0.4, 0.0, 0.0, 1.7, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Swampscott-Swampscott Middle,02910305, 627, 1, 0.2,"","","","", 0.7, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Swampscott-Swampscott High,02910505, 662, 3, 0.5,"","","","","","","","", 0.0, 0.6, 0.0, 1.3 +1.4000000000000004,1.4,a-degr-i2,2023-24,Swansea-Joseph Case High,02920505, 569, 19, 3.3,"","","","","","","","", 7.4, 5.1, 0.8, 0.0 +7.6,5,a-degr-i2,2023-24,Swansea-Joseph Case Jr High,02920305, 495, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Swansea-Joseph G Luther,02920020, 179, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Swansea-Elizabeth S Brown,02920006, 274, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Swansea-Gardner,02920015, 181, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Swansea-Mark G Hoyle Elementary,02920017, 138, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +-22.0,1,a-degr-i2,2023-24,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900," 2,858", 428, 15.0, 0.0, 2.2, 1.2, 1.0, 0.7, 2.4, 1.8, 5.2, 38.2, 25.7, 16.9, 11.6 +7.2,5,a-degr-i2,2023-24,Tantasqua-Tantasqua Regional Jr High,07700405, 560, 2, 0.4,"","","","","","", 0.3, 0.4,"","","","" +8.0,5,a-degr-i2,2023-24,Tantasqua-Tantasqua Regional Sr High,07700505, 652, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,Tantasqua-Tantasqua Regional Vocational,07700605, 536, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.8, 0.0 +8.0,5,a-degr-i2,2023-24,Taunton-Taunton High,02930505," 2,675", 0, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0 +-20.2,1,a-degr-i2,2023-24,Taunton-Taunton Alternative High School,02930525, 85, 12, 14.1,"","","","","","","","","","","", 15.0 +-0.5999999999999996,1,a-degr-i2,2023-24,Taunton-Taunton Public Virtual Academy (TPVA),02930705, 47, 2, 4.3,"","","","","","","","", 0.0, 0.0, 5.9, 16.7 +7.4,5,a-degr-i2,2023-24,Taunton-Benjamin Friedman Middle,02930315, 692, 2, 0.3,"","","","", 0.0, 0.8, 0.0,"","","","","" +7.6,5,a-degr-i2,2023-24,Taunton-John F Parker Middle,02930305, 510, 1, 0.2,"","","","", 0.0, 0.6, 0.0,"","","","","" +8.0,5,a-degr-i2,2023-24,Taunton-H H Galligan,02930057, 211, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2023-24,Taunton-Joseph H Martin,02930042, 648, 2, 0.3,"","","","", 0.0, 0.0, 0.9,"","","","","" +8.0,5,a-degr-i2,2023-24,Taunton-Elizabeth Pole,02930027, 490, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Taunton-James L. Mulcahey Elementary School,02930015, 661, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Taunton-East Taunton Elementary,02930010, 428, 1, 0.2, 0.0, 0.0, 0.0, 1.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Taunton-Joseph C Chamberlain,02930008, 363, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Taunton-Edmund Hatch Bennett,02930007, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-Center Elementary School,02950030, 767, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-John W. Wynn Middle,02950305, 520, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-Heath-Brook,02950010, 140, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-John F. Ryan,02950023, 497, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Tewksbury-Tewksbury Memorial High,02950505, 715, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Tewksbury-L F Dewing,02950001, 162, 0, 0.0, 0.0,"","","","","","","","","","","" +7.2,5,a-degr-i2,2023-24,Tisbury-Tisbury Elementary,02960005, 234, 1, 0.4, 0.0, 0.0, 0.0, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Topsfield-Steward Elementary,02980010, 244, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Topsfield-Proctor Elementary,02980005, 254, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2023-24,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 964, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +7.4,5,a-degr-i2,2023-24,Triton-Salisbury Elementary,07730015, 308, 1, 0.3, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +1.5999999999999996,1.6,a-degr-i2,2023-24,Triton-Triton Regional High School,07730505, 566, 18, 3.2,"","","","","","","","", 4.8, 0.7, 5.7, 1.5 +8.0,5,a-degr-i2,2023-24,Triton-Pine Grove,07730025, 349, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Triton-Newbury Elementary,07730020, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Triton-Triton Regional Middle School,07730405, 314, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Truro-Truro Central,03000005, 57, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Tyngsborough-Tyngsborough Middle,03010305, 369, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Tyngsborough-Tyngsborough High School,03010505, 420, 2, 0.5,"","","","","","","","", 0.0, 0.0, 0.0, 2.1 +8.0,5,a-degr-i2,2023-24,Tyngsborough-Tyngsborough Elementary,03010020, 585, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 166, 1, 0.6,"","","","","", 0.0, 1.6, 0.0,"","","","" +3.8,3.8,a-degr-i2,2023-24,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 467, 10, 2.1, 4.5, 1.6, 3.0, 1.5, 0.0, 3.3, 2.3, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Up-Island Regional-West Tisbury Elementary,07740020, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Up-Island Regional-Chilmark Elementary,07740010, 63, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 826, 1, 0.1,"","","","","","","","", 0.4, 0.0, 0.0, 0.0 +3.8,3.8,a-degr-i2,2023-24,Uxbridge-Uxbridge High,03040505, 582, 12, 2.1,"","","","","","","", 0.0, 2.5, 6.3, 1.8, 0.0 +7.6,5,a-degr-i2,2023-24,Uxbridge-Whitin Intermediate,03040405, 476, 1, 0.2,"","","", 0.9, 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2023-24,Uxbridge-Taft Early Learning Center,03040005, 336, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +-50.6,1,a-degr-i2,2023-24,Uxbridge-Gateway to College,03040515, 41, 12, 29.3,"","","","","","","","","","", 33.3, 24.0 +5.8,5,a-degr-i2,2023-24,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 615, 7, 1.1,"","","","", 2.0, 1.9, 0.0, 0.9, 0.0, 2.1,"","" +7.6,5,a-degr-i2,2023-24,Wachusett-Leroy E.Mayo,07750032, 407, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Wachusett-Paxton Center,07750040, 393, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Houghton Elementary,07750027, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2023-24,Wachusett-Dawson,07750020, 417, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Wachusett-Davis Hill Elementary,07750018, 397, 2, 0.5, 0.0, 1.3, 0.0, 0.0, 1.1,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Naquag Elementary School,07750005, 256, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Wachusett-Wachusett Regional High,07750505," 1,839", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 +7.2,5,a-degr-i2,2023-24,Wachusett-Chocksett Middle School,07750315, 273, 1, 0.4,"","","","", 0.0, 0.0, 1.7, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Central Tree Middle,07750310, 380, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Mountview Middle,07750305, 751, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Glenwood Elementary School,07750060, 348, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wachusett-Thomas Prince,07750045, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Wakefield-Woodville School,03050015, 329, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Wakefield-Greenwood,03050020, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Wakefield-Walton,03050040, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Wakefield-Galvin Middle School,03050310," 1,052", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Wakefield-Wakefield Memorial High,03050505, 840, 3, 0.4,"","","","","","","","", 0.9, 0.5, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Wakefield-Dolbeare,03050005, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +5.4,5,a-degr-i2,2023-24,Wales-Wales Elementary,03060005, 76, 1, 1.3, 6.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,Walpole-Walpole High,03070505, 940, 6, 0.6,"","","","","","","","", 0.0, 0.8, 0.8, 0.8 +8.0,5,a-degr-i2,2023-24,Walpole-Boyden,03070010, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Fisher,03070015, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Eleanor N Johnson Middle,03070310, 415, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Bird Middle,03070305, 400, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Old Post Road,03070018, 396, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Walpole-Elm Street School,03070005, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2023-24,Waltham-Waltham Sr High,03080505," 1,805", 44, 2.4,"","","","","","","","", 5.5, 1.6, 1.5, 1.4 +7.4,5,a-degr-i2,2023-24,Waltham-John W. McDevitt Middle School,03080415, 604, 2, 0.3,"","","","","", 1.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Waltham-John F Kennedy Middle,03080404, 628, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Waltham-Henry Whittemore Elementary School,03080065, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Waltham-Dual Language School,03080001, 178, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Waltham-William F. Stanley Elementary School,03080005, 262, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2023-24,Waltham-Douglas MacArthur Elementary School,03080032, 407, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2023-24,Waltham-Northeast Elementary School,03080040, 373, 4, 1.1, 3.5, 0.0, 0.0, 1.2, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Waltham-Thomas R Plympton Elementary School,03080050, 297, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.5,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Waltham-James Fitzgerald Elementary School,03080060, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Ware-Ware Middle School,03090305, 264, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2023-24,Ware-Stanley M Koziol Elementary School,03090020, 227, 2, 0.9, 1.4, 1.3, 0.0,"","","","","","","","","" +2.0,2.0,a-degr-i2,2023-24,Ware-Ware Junior/Senior High School,03090505, 464, 14, 3.0,"","","","","","", 0.0, 0.0, 15.6, 3.0, 0.0, 0.0 +-9.8,1,a-degr-i2,2023-24,Wareham-Wareham Senior High,03100505, 571, 51, 8.9,"","","","","","","", 11.6, 14.9, 9.3, 3.8, 0.0 +-45.4,1,a-degr-i2,2023-24,Wareham-Wareham Cooperative Alternative School,03100315, 30, 8, 26.7,"","","","","","","","", 28.6, 50.0, 12.5, 14.3 +7.6,5,a-degr-i2,2023-24,Wareham-Wareham Middle,03100305, 404, 1, 0.2,"","","","", 0.0, 0.0, 0.8,"","","","","" +6.6,5,a-degr-i2,2023-24,Wareham-Wareham Elementary School,03100017, 681, 5, 0.7, 2.2, 0.6, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Warwick-Warwick Community School,03120020, 23, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Watertown-Hosmer,03140020, 486, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Watertown-Cunniff,03140015, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2023-24,Watertown-Watertown High,03140505, 756, 7, 0.9,"","","","","","","","", 0.6, 0.5, 1.0, 1.7 +8.0,5,a-degr-i2,2023-24,Watertown-Watertown Middle,03140305, 551, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2023-24,Watertown-James Russell Lowell,03140025, 299, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wayland-Claypit Hill School,03150005, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wayland-Happy Hollow School,03150015, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wayland-Loker School,03150020, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wayland-Wayland Middle School,03150305, 667, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wayland-Wayland High School,03150505, 820, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2023-24,Webster-Park Avenue Elementary,03160015, 558, 1, 0.2, 0.0, 0.0, 0.7, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2023-24,Webster-Webster Middle School,03160315, 592, 4, 0.7,"","","","", 0.0, 0.0, 0.6, 2.0,"","","","" +-2.4000000000000004,1,a-degr-i2,2023-24,Webster-Bartlett High School,03160505, 367, 19, 5.2,"","","","","","","","", 9.2, 8.0, 0.0, 1.6 +8.0,5,a-degr-i2,2023-24,Wellesley-Sprague Elementary School,03170048, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Wellesley-Schofield,03170045, 267, 1, 0.4, 0.0, 0.0, 1.7, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Ernest F Upham,03170050, 120, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Wellesley Middle,03170305, 919, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Hunnewell,03170025, 171, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2023-24,Wellesley-Wellesley Sr High,03170505," 1,349", 8, 0.6,"","","","","","","","", 0.3, 0.6, 0.0, 1.4 +8.0,5,a-degr-i2,2023-24,Wellesley-John D Hardy,03170020, 188, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Joseph E Fiske,03170015, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellesley-Katharine Lee Bates,03170005, 215, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wellfleet-Wellfleet Elementary,03180005, 84, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,West Boylston-Major Edwards Elementary,03220005, 350, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,West Boylston-West Boylston Junior/Senior High,03220505, 447, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,West Bridgewater-West Bridgewater Junior/Senior,03230505, 619, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,West Bridgewater-Howard School,03230305, 309, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,West Bridgewater-Rose L Macdonald,03230003, 326, 2, 0.6, 1.9, 0.0, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2023-24,West Springfield-West Springfield Middle,03320305, 926, 4, 0.4,"","","","","", 0.0, 0.6, 0.6,"","","","" +4.4,4.4,a-degr-i2,2023-24,West Springfield-West Springfield High,03320505," 1,189", 21, 1.8,"","","","","","","","", 5.7, 0.3, 0.0, 0.4 +7.2,5,a-degr-i2,2023-24,West Springfield-Tatham,03320040, 262, 1, 0.4, 0.0, 2.6, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2023-24,West Springfield-Mittineague,03320030, 140, 1, 0.7, 0.0, 0.0, 0.0, 3.3, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,West Springfield-Memorial,03320025, 207, 1, 0.5, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,West Springfield-John R Fausey,03320010, 445, 2, 0.4, 1.1, 1.2, 0.0, 0.0, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2023-24,West Springfield-Philip G Coburn,03320007, 408, 5, 1.2, 3.8, 2.3, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westborough-J Harding Armstrong,03210005, 299, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westborough-Annie E Fales,03210010, 251, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westborough-Elsie A Hastings Elementary,03210025, 258, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.8,5,a-degr-i2,2023-24,Westborough-Mill Pond School,03210045, 876, 1, 0.1,"","","", 0.0, 0.0, 0.3,"","","","","","" +7.6,5,a-degr-i2,2023-24,Westborough-Sarah W Gibbons Middle,03210305, 601, 1, 0.2,"","","","","","", 0.3, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Westborough-Westborough High,03210505," 1,192", 7, 0.6,"","","","","","","","", 0.0, 0.0, 1.2, 1.0 +-5.0,1,a-degr-i2,2023-24,Westfield-Westfield Virtual School,03250705, 62, 4, 6.5,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 26.7 +6.6,5,a-degr-i2,2023-24,Westfield-Franklin Ave,03250015, 144, 1, 0.7, 3.6, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westfield-Abner Gibbs,03250020, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Westfield-Highland,03250025, 271, 1, 0.4, 1.6, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westfield-Munger Hill,03250033, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westfield-Paper Mill,03250036, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2023-24,Westfield-Southampton Road,03250040, 227, 1, 0.4, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2023-24,Westfield-Westfield Intermediate School,03250075, 684, 1, 0.1,"","","","", 0.0, 0.3,"","","","","","" +7.8,5,a-degr-i2,2023-24,Westfield-Westfield Middle School,03250310, 706, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" +7.4,5,a-degr-i2,2023-24,Westfield-Westfield High,03250505, 994, 3, 0.3,"","","","","","","","", 0.0, 0.4, 0.0, 0.8 +8.0,5,a-degr-i2,2023-24,Westfield-Westfield Technical Academy,03250605, 548, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2023-24,Westford-Abbot Elementary,03260004, 372, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westford-Day Elementary,03260007, 296, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Westford-Westford Academy,03260505," 1,443", 4, 0.3,"","","","","","","","", 0.8, 0.0, 0.0, 0.3 +8.0,5,a-degr-i2,2023-24,Westford-Stony Brook School,03260330, 586, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Westford-Blanchard Middle,03260310, 535, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2023-24,Westford-Rita E. Miller Elementary School,03260055, 173, 1, 0.6, 1.2, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westford-John A. Crisafulli Elementary School,03260045, 330, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Westford-Nabnasset,03260015, 206, 1, 0.5, 0.0, 1.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westford-Col John Robinson,03260025, 221, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Westhampton-Westhampton Elementary School,03270005, 81, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Weston-Weston Middle,03300305, 428, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2023-24,Weston-Weston High,03300505, 662, 5, 0.8,"","","","","","","","", 0.6, 0.6, 1.2, 0.6 +8.0,5,a-degr-i2,2023-24,Weston-Field Elementary School,03300012, 304, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Weston-Woodland,03300015, 246, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2023-24,Weston-Country,03300010, 245, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.8,5,a-degr-i2,2023-24,Westport-Westport Middle-High School,03310515, 878, 5, 0.6,"","","","", 0.0, 0.8, 0.0, 0.0, 0.9, 1.2, 0.0, 2.3 +7.6,5,a-degr-i2,2023-24,Westport-Westport Elementary,03310030, 448, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2023-24,Westwood-Westwood High,03350505, 874, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 +7.2,5,a-degr-i2,2023-24,Westwood-Downey,03350012, 262, 1, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westwood-Martha Jones,03350017, 220, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westwood-William E Sheehan,03350025, 246, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westwood-Pine Hill Elementary School,03350030, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Westwood-E W Thurston Middle,03350305, 661, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Wessagusset,03360110, 284, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-1.0,1,a-degr-i2,2023-24,Weymouth-Weymouth High School,03360505," 1,737", 79, 4.5,"","","","","","","","", 11.6, 3.8, 1.4, 0.7 +7.8,5,a-degr-i2,2023-24,Weymouth-Maria Weston Chapman Middle School,03360020," 1,187", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Thomas W. Hamilton Primary School,03360105, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Ralph Talbot,03360085, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Weymouth-William Seach,03360080, 315, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Lawrence W Pingree,03360065, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Academy Avenue,03360005, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Weymouth-Frederick C Murphy,03360050, 237, 1, 0.4, 0.0, 0.0, 0.0, 1.9, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Weymouth-Thomas V Nash,03360060, 206, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Whately-Whately Elementary,03370005, 95, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Louise A Conley,07800010, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Whitman-Hanson-John H Duval,07800030, 355, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Indian Head,07800035, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Whitman Middle,07800310, 507, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Whitman-Hanson-Hanson Middle School,07800315, 424, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +4.2,4.2,a-degr-i2,2023-24,Whitman-Hanson-Whitman Hanson Regional,07800505," 1,028", 20, 1.9,"","","","","","","","", 0.4, 0.0, 0.0, 7.1 +7.8,5,a-degr-i2,2023-24,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605," 1,279", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.3, 0.0 +8.0,5,a-degr-i2,2023-24,Williamsburg-Anne T. Dunphy School,03400020, 97, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Wilmington-Wilmington Middle School,03420330, 702, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2023-24,Wilmington-Wilmington High,03420505, 613, 3, 0.5,"","","","","","","","", 0.0, 0.0, 0.7, 1.2 +8.0,5,a-degr-i2,2023-24,Wilmington-North Intermediate,03420060, 249, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wilmington-West Intermediate,03420080, 208, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Wilmington-Shawsheen Elementary,03420025, 342, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2023-24,Wilmington-Woburn Street,03420020, 358, 1, 0.3, 0.0, 0.8, 0.0,"","","","","","","","","" +-42.0,1,a-degr-i2,2023-24,Winchendon-Murdock Academy for Success,03430405, 20, 5, 25.0,"","","","","","","","","","","", 12.5 +6.2,5,a-degr-i2,2023-24,Winchendon-Memorial,03430040, 223, 2, 0.9, 0.9, 0.9,"","","","","","","","","","" +-5.0,1,a-degr-i2,2023-24,Winchendon-Murdock High School,03430515, 247, 16, 6.5,"","","","","","","","", 10.8, 8.8, 3.3, 0.0 +8.0,5,a-degr-i2,2023-24,Winchendon-Toy Town Elementary,03430050, 276, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Winchendon-Murdock Middle School,03430315, 290, 1, 0.3,"","","","","", 0.0, 0.0, 1.1,"","","","" +8.0,5,a-degr-i2,2023-24,Winchester-McCall Middle,03440305," 1,039", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Winchester-Lynch Elementary,03440020, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2023-24,Winchester-Winchester High School,03440505," 1,367", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 +7.2,5,a-degr-i2,2023-24,Winchester-Lincoln Elementary,03440005, 279, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Winchester-Vinson-Owen Elementary,03440025, 342, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Winchester-Muraco Elementary,03440040, 284, 1, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Winchester-Ambrose Elementary,03440045, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 309, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Winthrop-Winthrop High School,03460505, 588, 18, 3.1,"","","","","","","","", 7.0, 0.7, 3.7, 0.7 +8.0,5,a-degr-i2,2023-24,Winthrop-Winthrop Middle School,03460305, 423, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Winthrop-Arthur T. Cummings Elementary School,03460020, 443, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Woburn-John F Kennedy Middle School,03470405, 511, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Woburn-Mary D Altavesta,03470065, 172, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Woburn-Malcolm White,03470055, 285, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2023-24,Woburn-Shamrock,03470043, 204, 1, 0.5, 0.0, 0.0, 2.2, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Woburn-Woburn High,03470505," 1,216", 4, 0.3,"","","","","","","","", 0.0, 1.4, 0.0, 0.0 +6.8,5,a-degr-i2,2023-24,Woburn-Linscott-Rumford,03470025, 166, 1, 0.6, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Woburn-Hurld-Wyman Elementary School,03470020, 339, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2023-24,Woburn-Goodyear Elementary School,03470005, 294, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2023-24,Woburn-Daniel L Joyce Middle School,03470410, 460, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2023-24,Woburn-Clyde Reeves,03470040, 258, 2, 0.8, 1.7, 2.3, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2023-24,Worcester-Burncoat Middle School,03480405, 684, 3, 0.4,"","","","","","", 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Forest Grove Middle,03480415, 829, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2023-24,Worcester-Worcester East Middle,03480420, 695, 3, 0.4,"","","","","","", 0.6, 0.3,"","","","" +7.8,5,a-degr-i2,2023-24,Worcester-Sullivan Middle,03480423, 844, 1, 0.1,"","","","","", 0.0, 0.2, 0.0,"","","","" +1.2000000000000002,1.2,a-degr-i2,2023-24,Worcester-Burncoat Senior High,03480503," 1,106", 38, 3.4,"","","","","","","","", 9.1, 0.8, 0.8, 2.6 +3.4000000000000004,3.4,a-degr-i2,2023-24,Worcester-Doherty Memorial High,03480512," 1,391", 32, 2.3,"","","","","","","","", 4.4, 2.4, 0.6, 1.3 +2.2,2.2,a-degr-i2,2023-24,Worcester-North High,03480515," 1,399", 41, 2.9,"","","","","","","","", 2.0, 6.2, 1.8, 1.5 +2.8,2.8,a-degr-i2,2023-24,Worcester-South High Community,03480520," 1,778", 47, 2.6,"","","","","","","","", 4.5, 2.4, 1.6, 2.1 +6.8,5,a-degr-i2,2023-24,Worcester-Worcester Technical High,03480605," 1,424", 8, 0.6,"","","","","","","","", 1.9, 0.0, 0.0, 0.3 +6.0,5,a-degr-i2,2023-24,Worcester-Woodland Academy,03480030, 421, 4, 1.0, 4.5, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Worcester-Burncoat Street,03480035, 205, 1, 0.5, 3.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2023-24,Worcester-Canterbury,03480045, 245, 2, 0.8, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.0,5.0,a-degr-i2,2023-24,Worcester-Chandler Elementary Community,03480050, 341, 5, 1.5, 9.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Chandler Magnet,03480052, 438, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2023-24,Worcester-City View,03480053, 334, 3, 0.9, 0.0, 4.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Clark St Community,03480055, 198, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Worcester-Columbus Park,03480060, 302, 3, 1.0, 4.0, 0.0, 0.0, 0.0, 2.3, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,Worcester-Flagg Street,03480090, 324, 2, 0.6, 1.5, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Elm Park Community,03480095, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2023-24,Worcester-Goddard School/Science Technical,03480100, 297, 1, 0.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2023-24,Worcester-Gates Lane,03480110, 397, 3, 0.8, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.8,2.8,a-degr-i2,2023-24,Worcester-Grafton Street,03480115, 345, 9, 2.6, 8.3, 2.8, 1.9, 0.0, 1.8, 0.0,"","","","","","" +4.4,4.4,a-degr-i2,2023-24,Worcester-Heard Street,03480136, 217, 4, 1.8, 6.7, 3.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Jacob Hiatt Magnet,03480140, 263, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2023-24,Worcester-Lake View,03480145, 249, 3, 1.2, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.6,4.6,a-degr-i2,2023-24,Worcester-Lincoln Street,03480160, 181, 3, 1.7, 3.2, 2.4, 0.0, 4.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2023-24,Worcester-May Street,03480175, 254, 3, 1.2, 6.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2023-24,Worcester-Francis J McGrath Elementary,03480177, 166, 1, 0.6, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Midland Street,03480185, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2023-24,Worcester-Nelson Place,03480200, 457, 4, 0.9, 4.7, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2023-24,Worcester-Norrback Avenue,03480202, 389, 2, 0.5, 1.5, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2023-24,Worcester-Quinsigamond,03480210, 600, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2023-24,Worcester-Claremont Academy,03480350, 475, 5, 1.1,"","","","","","", 0.0, 0.0, 3.9, 0.0, 1.2, 1.4 +5.6,5,a-degr-i2,2023-24,Worcester-University Pk Campus School,03480285, 244, 3, 1.2,"","","","","","", 4.5, 0.0, 2.6, 0.0, 0.0, 0.0 +6.8,5,a-degr-i2,2023-24,Worcester-Vernon Hill School,03480280, 360, 2, 0.6, 1.8, 0.0, 0.0, 1.6, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2023-24,Worcester-West Tatnuck,03480260, 279, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +1.7999999999999998,1.8,a-degr-i2,2023-24,Worcester-Union Hill School,03480240, 319, 10, 3.1, 6.0, 3.6, 1.7, 7.5, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Worcester-Thorndyke Road,03480235, 311, 3, 1.0, 0.0, 1.6, 0.0, 2.1, 2.2, 0.0,"","","","","","" +6.0,5,a-degr-i2,2023-24,Worcester-Tatnuck,03480230, 287, 3, 1.0, 0.0, 4.3, 2.0, 0.0, 0.0, 0.0,"","","","","","" +4.8,4.8,a-degr-i2,2023-24,Worcester-Worcester Arts Magnet School,03480225, 317, 5, 1.6, 1.8, 4.5, 2.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Wawecus Road School,03480026, 130, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester-Rice Square,03480215, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2023-24,Worcester-Roosevelt,03480220, 420, 6, 1.4, 5.3, 0.0, 1.4, 0.0, 1.4, 0.0,"","","","","","" +5.8,5,a-degr-i2,2023-24,Worcester-Belmont Street Community,03480020, 451, 5, 1.1, 2.6, 4.2, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Worcester Cultural Academy Charter Public School (District)-Worcester Cultural Academy Charter Public School,35190205, 95, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2023-24,Worthington-R. H. Conwell,03490010, 51, 0, 0.0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Wrentham-Charles E Roderick,03500010, 370, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2023-24,Wrentham-Delaney,03500003, 393, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105," 1,302", 2, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Abington-Woodsdale Elementary School,00010015, 335, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Abington-Abington Middle School,00010405, 647, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Abington-Beaver Brook Elementary,00010020, 361, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Abington-Abington Middle School,00010405, 647, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Abington-Abington High,00010505, 541, 2, 0.4,"","","","","","","","", 0.7, 0.0, 0.0, 0.8 7.2,5,a-degr-i2,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530, 467, 2, 0.4,"","","","", 2.8, 0.0, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505," 1,682", 4, 0.2,"","","","","","","","", 0.2, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Raymond J Grey Junior High,06000405, 825, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Luther Conant School,06000030, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 323, 2, 0.6, 1.6, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-McCarthy-Towne School,06000015, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Merriam School,06000010, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Blanchard Memorial School,06000005, 448, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Luther Conant School,06000030, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Paul P Gates Elementary School,06000025, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Acton-Boxborough-Merriam School,06000010, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.6,5,a-degr-i2,2022-23,Acushnet-Acushnet Elementary School,00030025, 406, 5, 1.2, 2.3, 2.8, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Acushnet-Albert F Ford Middle School,00030305, 407, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305, 966, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7 -5.0,5.0,a-degr-i2,2022-23,Agawam-Agawam High,00050505," 1,047", 16, 1.5,"","","","","","","","", 4.8, 0.0, 0.4, 0.0 -7.2,5,a-degr-i2,2022-23,Agawam-Clifford M Granger,00050010, 278, 1, 0.4, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Agawam-Benjamin J Phelps,00050020, 242, 1, 0.4, 0.0, 0.0, 1.5, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Agawam-Robinson Park,00050025, 231, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Agawam-Benjamin J Phelps,00050020, 242, 1, 0.4, 0.0, 0.0, 1.5, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Agawam-Clifford M Granger,00050010, 278, 1, 0.4, 1.3, 0.0, 0.0, 0.0,"","","","","","","","" 5.6,5,a-degr-i2,2022-23,Agawam-James Clark School,00050030, 242, 3, 1.2, 1.5, 0.0, 3.8, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Agawam-Roberta G. Doering School,00050303, 512, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +5.0,5.0,a-degr-i2,2022-23,Agawam-Agawam High,00050505," 1,047", 16, 1.5,"","","","","","","","", 4.8, 0.0, 0.4, 0.0 7.6,5,a-degr-i2,2022-23,Agawam-Agawam Junior High,00050405, 518, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2022-23,Agawam-Roberta G. Doering School,00050303, 512, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 936, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Elementary,00070005, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Amesbury-Charles C Cashman Elementary,00070010, 280, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Middle,00070013, 584, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Elementary,00070005, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Amesbury-Amesbury High,00070505, 448, 2, 0.4,"","","","","","","","", 0.0, 1.0, 0.0, 0.9 8.0,5,a-degr-i2,2022-23,Amesbury-Amesbury Innovation High School,00070515, 45, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Amesbury-Charles C Cashman Elementary,00070010, 280, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Amherst-Crocker Farm Elementary,00080009, 254, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Amherst-Wildwood Elementary,00080050, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Amherst-Fort River Elementary,00080020, 324, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Amherst-Wildwood Elementary,00080050, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Amherst-Pelham-Amherst Regional Middle School,06050405, 372, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Amherst-Pelham-Amherst Regional High,06050505, 855, 5, 0.6,"","","","","","","","", 0.0, 0.5, 1.4, 0.5 -6.8,5,a-degr-i2,2022-23,Andover-Andover High,00090505," 1,663", 10, 0.6,"","","","","","","","", 0.5, 0.2, 0.5, 1.2 -8.0,5,a-degr-i2,2022-23,Andover-West Elementary,00090025, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Andover-South Elementary,00090020, 388, 2, 0.5, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Andover-Henry C Sanborn Elementary,00090010, 279, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Andover-High Plain Elementary,00090004, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Andover-Bancroft Elementary,00090003, 456, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Andover-High Plain Elementary,00090004, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Andover-Henry C Sanborn Elementary,00090010, 279, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Andover-South Elementary,00090020, 388, 2, 0.5, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Andover-West Elementary,00090025, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Andover-Doherty Middle,00090305, 461, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Andover-Andover West Middle,00090310, 518, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Andover-Wood Hill Middle School,00090350, 338, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Andover-Doherty Middle,00090305, 461, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Andover-Andover High,00090505," 1,663", 10, 0.6,"","","","","","","","", 0.5, 0.2, 0.5, 1.2 -1.8000000000000007,1,a-degr-i2,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305, 553, 27, 4.9,"","","","","", 1.0, 0.0, 2.1, 15.6, 7.4, 8.0, 2.0 -8.0,5,a-degr-i2,2022-23,Arlington-Peirce,00100045, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Arlington-Thompson,00100050, 414, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Arlington-M Norcross Stratton,00100055, 385, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-Gibbs School,00100305, 511, 0, 0.0,"","","","","", 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Arlington-Ottoson Middle,00100410, 922, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Arlington-John A Bishop,00100005, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-Brackett,00100010, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Arlington-Cyrus E Dallin,00100025, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Arlington-Hardy,00100030, 326, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Arlington-Thompson,00100050, 414, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Gibbs School,00100305, 511, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Peirce,00100045, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Arlington-Arlington High,00100505," 1,527", 4, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 +7.4,5,a-degr-i2,2022-23,Arlington-Hardy,00100030, 326, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Cyrus E Dallin,00100025, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-Brackett,00100010, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Arlington-John A Bishop,00100005, 340, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Westminster Elementary,06100005, 389, 2, 0.5,"", 1.1, 0.0, 0.9, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505, 650, 3, 0.5,"","","","","","","","", 1.2, 0.0, 0.0, 0.6 8.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Overlook Middle School,06100305, 549, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Briggs Elementary,06100025, 397, 2, 0.5, 0.0, 1.4, 1.4, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Westminster Elementary,06100005, 389, 2, 0.5,"", 1.1, 0.0, 0.9, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Meetinghouse School,06100010, 83, 0, 0.0, 0.0,"","","","","","","","","","","" +7.0,5,a-degr-i2,2022-23,Ashburnham-Westminster-Briggs Elementary,06100025, 397, 2, 0.5, 0.0, 1.4, 1.4, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Ashland-David Mindess,00140015, 644, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Ashland-Henry E Warren Elementary,00140010, 467, 1, 0.2, 0.0, 0.4,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Ashland-Ashland Middle,00140405, 682, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Ashland-Ashland High,00140505, 840, 2, 0.2,"","","","","","","","", 0.4, 0.5, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Ashland-Ashland Middle,00140405, 682, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605," 1,128", 1, 0.1,"","","","","","","","", 0.0, 0.3, 0.0, 0.0 -7.6,5,a-degr-i2,2022-23,Athol-Royalston-Athol Community Elementary School,06150020, 420, 1, 0.2, 0.8, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Athol-Royalston-Athol-Royalston Middle School,06150305, 429, 1, 0.2,"","","","", 1.0, 0.0, 0.0, 0.0,"","","","" --1.4000000000000004,1,a-degr-i2,2022-23,Athol-Royalston-Athol High,06150505, 402, 19, 4.7,"","","","","","","","", 9.6, 4.5, 1.0, 2.6 +7.6,5,a-degr-i2,2022-23,Athol-Royalston-Athol Community Elementary School,06150020, 420, 1, 0.2, 0.8, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Athol-Royalston-Royalston Community School,06150050, 116, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-1.4000000000000004,1,a-degr-i2,2022-23,Athol-Royalston-Athol High,06150505, 402, 19, 4.7,"","","","","","","","", 9.6, 4.5, 1.0, 2.6 7.2,5,a-degr-i2,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550," 1,173", 5, 0.4, 1.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 1.2, 1.6, 0.0 +8.0,5,a-degr-i2,2022-23,Attleboro-Hill-Roberts Elementary School,00160045, 343, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Attleboro-Hyman Fine Elementary School,00160040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2022-23,Attleboro-Thomas Willett Elementary School,00160035, 298, 2, 0.7, 1.4, 0.0, 1.4, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Attleboro-Peter Thacher Elementary School,00160050, 348, 1, 0.3, 1.1, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Attleboro-Attleboro Virtual Academy,00160705, 40, 0, 0.0,"","","","","","","","","", 0.0, 0.0, 0.0 -6.199999999999999,1,a-degr-i2,2022-23,Attleboro-Attleboro Community Academy,00160515, 56, 4, 7.1,"","","","","","","","","", 16.7, 9.1, 3.7 5.0,5.0,a-degr-i2,2022-23,Attleboro-Attleboro High,00160505," 1,830", 28, 1.5,"","","","","","","","", 1.8, 1.4, 0.7, 2.3 8.0,5,a-degr-i2,2022-23,Attleboro-Wamsutta Middle School,00160320, 576, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Attleboro-Cyril K. Brennan Middle School,00160315, 623, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.6,"","","","" 8.0,5,a-degr-i2,2022-23,Attleboro-Robert J. Coelho Middle School,00160305, 573, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Attleboro-Hyman Fine Elementary School,00160040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Attleboro-Hill-Roberts Elementary School,00160045, 343, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Attleboro-Peter Thacher Elementary School,00160050, 348, 1, 0.3, 1.1, 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2022-23,Attleboro-A. Irvin Studley Elementary School,00160001, 278, 2, 0.7, 1.3, 1.7, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Auburn-Auburn Middle,00170305, 652, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Auburn-Bryn Mawr,00170010, 174, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Auburn-Pakachoag School,00170025, 165, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Auburn-Swanson Road Intermediate School,00170030, 554, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Auburn-Auburn Middle,00170305, 652, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Auburn-Auburn Senior High,00170505, 722, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Avon-Ralph D Butler,00180010, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Auburn-Pakachoag School,00170025, 165, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Auburn-Bryn Mawr,00170010, 174, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 5.6,5,a-degr-i2,2022-23,Avon-Avon Middle High School,00180510, 334, 4, 1.2,"","","","","","", 1.5, 0.0, 1.9, 3.1, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Avon-Ralph D Butler,00180010, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 379, 2, 0.5, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Ayer Shirley School District-Lura A. White Elementary School,06160001, 287, 3, 1.0, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 394, 3, 0.8,"","","","","","","","", 3.1, 0.0, 0.0, 0.0 7.4,5,a-degr-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305, 367, 1, 0.3,"","","","","", 0.0, 0.9, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Barnstable-Centerville Elementary,00200010, 186, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +6.4,5,a-degr-i2,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505, 394, 3, 0.8,"","","","","","","","", 3.1, 0.0, 0.0, 0.0 +6.0,5,a-degr-i2,2022-23,Ayer Shirley School District-Lura A. White Elementary School,06160001, 287, 3, 1.0, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 0.40000000000000036,1,a-degr-i2,2022-23,Barnstable-Barnstable High,00200505," 1,762", 67, 3.8,"","","","","","","", 0.0, 8.0, 1.1, 3.6, 6.5 8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable Intermediate School,00200315, 651, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" -8.0,5,a-degr-i2,2022-23,Barnstable-Hyannis West Elementary,00200025, 249, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable United Elementary School,00200050, 735, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable Community Innovation School,00200012, 211, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Barnstable-West Villages Elementary School,00200045, 309, 1, 0.3, 0.0, 0.9, 0.0,"","","","","","","","","" 7.0,5,a-degr-i2,2022-23,Barnstable-West Barnstable Elementary,00200005, 193, 1, 0.5, 1.5, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Barnstable-Hyannis West Elementary,00200025, 249, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Barnstable-Barnstable Community Innovation School,00200012, 211, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Barnstable-Centerville Elementary,00200010, 186, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405, 402, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Bedford-Lt Eleazer Davis,00230010, 329, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Bedford-Lt Job Lane School,00230012, 587, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Bedford-John Glenn Middle,00230305, 597, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Bedford-Bedford High,00230505, 841, 3, 0.4,"","","","","","","","", 0.9, 0.4, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Bedford-John Glenn Middle,00230305, 597, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Bedford-Lt Job Lane School,00230012, 587, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Bedford-Lt Eleazer Davis,00230010, 329, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Belchertown-Chestnut Hill Community School,00240006, 482, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 0.20000000000000018,1,a-degr-i2,2022-23,Belchertown-Belchertown High,00240505, 635, 25, 3.9,"","","","","","","","", 7.4, 5.1, 3.2, 0.6 8.0,5,a-degr-i2,2022-23,Belchertown-Jabish Middle School,00240025, 338, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Belchertown-Swift River Elementary,00240018, 474, 2, 0.4, 0.6, 0.0, 0.7,"","","","","","","","","" -7.2,5,a-degr-i2,2022-23,Bellingham-Bellingham High School,00250505, 740, 3, 0.4,"","","","","","","", 0.0, 1.9, 0.0, 0.0, 0.0 -7.4,5,a-degr-i2,2022-23,Bellingham-Bellingham Memorial School,00250315, 587, 2, 0.3,"","","", 0.0, 0.0, 0.6, 0.7,"","","","","" 6.8,5,a-degr-i2,2022-23,Bellingham-Stall Brook,00250025, 181, 1, 0.6, 0.0, 1.7, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Bellingham-Joseph F DiPietro Elementary School,00250020, 223, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -6.199999999999999,1,a-degr-i2,2022-23,Bellingham-Keough Memorial Academy,00250510, 28, 2, 7.1,"","","","","","","","", 0.0,"","", 14.3 -7.2,5,a-degr-i2,2022-23,Belmont-Belmont High,00260505," 1,364", 5, 0.4,"","","","","","","","", 0.0, 0.6, 0.6, 0.3 -8.0,5,a-degr-i2,2022-23,Belmont-Winthrop L Chenery Middle,00260305," 1,371", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Belmont-Daniel Butler,00260015, 269, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Belmont-Mary Lee Burbank,00260010, 283, 1, 0.4, 1.6, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Bellingham-Bellingham High School,00250505, 740, 3, 0.4,"","","","","","","", 0.0, 1.9, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2022-23,Bellingham-Bellingham Memorial School,00250315, 587, 2, 0.3,"","","", 0.0, 0.0, 0.6, 0.7,"","","","","" 8.0,5,a-degr-i2,2022-23,Belmont-Winn Brook,00260005, 358, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Belmont-Mary Lee Burbank,00260010, 283, 1, 0.4, 1.6, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Belmont-Roger E Wellington,00260035, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Belmont-Winthrop L Chenery Middle,00260305," 1,371", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Belmont-Belmont High,00260505," 1,364", 5, 0.4,"","","","","","","","", 0.0, 0.6, 0.6, 0.3 +8.0,5,a-degr-i2,2022-23,Belmont-Daniel Butler,00260015, 269, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 268, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 767, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Berkley-Berkley Community School,00270010, 335, 1, 0.3, 0.0, 0.0, 1.1, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Berkley-Berkley Middle School,00270305, 373, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 5.4,5,a-degr-i2,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305, 316, 4, 1.3,"","","","","", 0.0, 0.0, 1.5, 6.4, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -5.4,5,a-degr-i2,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 470, 6, 1.3,"","","","","","","","", 0.0, 0.7, 1.9, 2.7 8.0,5,a-degr-i2,2022-23,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310, 325, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Berlin-Boylston-Boylston Elementary School,06200010, 260, 1, 0.4, 0.0, 0.0, 1.7, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,Berkshire Hills-Monument Mt Regional High,06180505, 470, 6, 1.3,"","","","","","","","", 0.0, 0.7, 1.9, 2.7 8.0,5,a-degr-i2,2022-23,Berlin-Boylston-Tahanto Regional High,06200505, 515, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2022-23,Berlin-Boylston-Boylston Elementary School,06200010, 260, 1, 0.4, 0.0, 0.0, 1.7, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Berlin-Boylston-Berlin Memorial School,06200005, 160, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Beverly-Beverly Middle School,00300305," 1,367", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Beverly-Ayers/Ryal Side School,00300055, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Beverly-North Beverly Elementary,00300040, 283, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Beverly-Hannah Elementary,00300033, 268, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Beverly-North Beverly Elementary,00300040, 283, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Beverly-Ayers/Ryal Side School,00300055, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +2.2,2.2,a-degr-i2,2022-23,Beverly-Beverly High,00300505," 1,279", 37, 2.9,"","","","","","","","", 5.6, 2.9, 1.0, 1.8 +8.0,5,a-degr-i2,2022-23,Beverly-Beverly Middle School,00300305," 1,367", 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 5.0,5.0,a-degr-i2,2022-23,Beverly-Cove Elementary,00300015, 340, 5, 1.5, 2.5, 3.3, 0.0, 0.0,"","","","","","","","" 6.4,5,a-degr-i2,2022-23,Beverly-Centerville Elementary,00300010, 241, 2, 0.8, 3.8, 0.0, 0.0, 0.0,"","","","","","","","" -2.2,2.2,a-degr-i2,2022-23,Beverly-Beverly High,00300505," 1,279", 37, 2.9,"","","","","","","","", 5.6, 2.9, 1.0, 1.8 -5.8,5,a-degr-i2,2022-23,Billerica-Billerica Memorial High School,00310505," 1,535", 17, 1.1,"","","","","","","", 0.0, 3.7, 1.7, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Billerica-Thomas Ditson,00310005, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Billerica-Frederick J Dutile,00310007, 218, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Billerica-John F Kennedy,00310012, 254, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" @@ -145,16 +1873,24 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.6,5,a-degr-i2,2022-23,Billerica-Hajjar Elementary,00310026, 301, 2, 0.7, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Billerica-Marshall Middle School,00310305, 604, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" 8.0,5,a-degr-i2,2022-23,Billerica-Locke Middle,00310310, 549, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +5.8,5,a-degr-i2,2022-23,Billerica-Billerica Memorial High School,00310505," 1,535", 17, 1.1,"","","","","","","", 0.0, 3.7, 1.7, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605," 1,230", 3, 0.2,"","","","","","","","", 0.6, 0.0, 0.3, 0.0 -7.2,5,a-degr-i2,2022-23,Blackstone-Millville-A F Maloney,06220015, 256, 1, 0.4,"","","", 0.8, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Blackstone-Millville-Millville Elementary,06220010, 195, 1, 0.5, 0.0, 0.9,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Blackstone-Millville-John F Kennedy Elementary,06220008, 109, 0, 0.0,"","", 0.0,"","","","","","","","","" 7.0,5,a-degr-i2,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505, 390, 2, 0.5,"","","","","","","","", 0.9, 1.1, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Blackstone-Millville-John F Kennedy Elementary,06220008, 109, 0, 0.0,"","", 0.0,"","","","","","","","","" +7.0,5,a-degr-i2,2022-23,Blackstone-Millville-Millville Elementary,06220010, 195, 1, 0.5, 0.0, 0.9,"","","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Blackstone-Millville-A F Maloney,06220015, 256, 1, 0.4,"","","", 0.8, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405, 343, 1, 0.3,"","","","","", 0.0, 0.0, 0.9,"","","","" 7.6,5,a-degr-i2,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605, 920, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.5 6.0,5,a-degr-i2,2022-23,Boston-Lee Academy,00350001, 97, 1, 1.0, 0.0, 2.9, 0.0,"","","","","","","","","" 3.0,3.0,a-degr-i2,2022-23,Boston-Baldwin Early Learning Pilot Academy,00350003, 40, 1, 2.5, 2.5,"","","","","","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Boston-Lyon K-8 School,00350004, 115, 2, 1.7, 0.0, 0.0, 8.3, 0.0, 0.0, 0.0, 6.7, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Boston-Hennigan K-8 School,00350153, 473, 2, 0.4, 0.0, 0.0, 0.0, 1.4, 0.0, 1.3, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2022-23,Boston-Chittick Elementary School,00350154, 153, 3, 2.0, 0.0, 6.9, 3.7, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2022-23,Boston-Otis Elementary School,00350156, 315, 3, 1.0, 3.2, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2022-23,Boston-Kennedy John F Elementary School,00350166, 304, 3, 1.0, 3.6, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Boston-UP Academy Holland,00350167, 493, 6, 1.2, 2.6, 3.2, 0.9, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Philbrick Elementary School,00350172, 83, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.6,4.6,a-degr-i2,2022-23,Boston-Winthrop Elementary School,00350180, 176, 3, 1.7, 5.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Kilmer K-8 School,00350190, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Boston-Harvard-Kent Elementary School,00350200, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Bradley Elementary School,00350215, 218, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -163,9 +1899,53 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Boston-Perkins Elementary School,00350231, 129, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Boston-Mozart Elementary School,00350237, 128, 1, 0.8, 0.0, 0.0, 0.0, 0.0, 4.8, 0.0,"","","","","","" 7.4,5,a-degr-i2,2022-23,Boston-Murphy K-8 School,00350240, 734, 2, 0.3, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0,"","","","" +-2.0,1,a-degr-i2,2022-23,Boston-Brighton High School,00350505, 520, 26, 5.0,"","","","","","", 0.0, 5.3, 7.2, 4.6, 3.3, 6.0 +-6.800000000000001,1,a-degr-i2,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 471, 35, 7.4,"","","","","","","","", 14.7, 4.5, 2.0, 3.9 +-15.600000000000001,1,a-degr-i2,2022-23,Boston-Charlestown High School,00350515, 736, 87, 11.8,"","","","","","", 0.0, 0.0, 9.4, 9.8, 17.1, 15.3 +-3.0,1,a-degr-i2,2022-23,Boston-Community Academy,00350518, 55, 3, 5.5,"","","","","","","","","", 0.0, 6.3, 0.0 +-19.2,1,a-degr-i2,2022-23,Boston-Excel High School,00350522, 434, 59, 13.6,"","","","","","","","", 11.4, 16.5, 7.4, 20.0 +3.2,3.2,a-degr-i2,2022-23,Boston-Burke High School,00350525, 411, 10, 2.4,"","","","","","", 0.0, 0.0, 8.8, 1.2, 1.2, 1.0 +6.8,5,a-degr-i2,2022-23,Boston-East Boston High School,00350530," 1,260", 7, 0.6,"","","","","","", 1.7, 0.0, 0.5, 0.0, 0.7, 0.8 +-2.0,1,a-degr-i2,2022-23,Boston-English High School,00350535, 642, 32, 5.0,"","","","","","", 0.0, 6.7, 15.2, 0.8, 1.6, 2.5 +1.7999999999999998,1.8,a-degr-i2,2022-23,Boston-West Zone Early Learning Center,00350006, 32, 1, 3.1, 3.1,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Ellison-Parks Early Education School,00350008, 99, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-East Boston Early Education Center,00350009, 44, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Haynes Early Education Center,00350010, 74, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Boston Teachers Union K-8 Pilot,00350012, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Shaw Elementary School,00350014, 99, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Higginson Inclusion K0-2 School,00350015, 61, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Mattahunt Elementary School,00350016, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Curley K-8 School,00350020, 745, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Boston-Beethoven Elementary School,00350021, 156, 1, 0.6, 0.0, 1.2,"","","","","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Boston-O'Bryant School of Math & Science,00350575," 1,567", 23, 1.5,"","","","","","", 1.8, 3.5, 1.2, 1.0, 2.7, 0.0 +-15.2,1,a-degr-i2,2022-23,Boston-Community Academy of Science and Health,00350581, 319, 37, 11.6,"","","","","","","","", 15.6, 2.3, 17.3, 10.5 +1.2000000000000002,1.2,a-degr-i2,2022-23,Boston-Lyon High School,00350655, 116, 4, 3.4,"","","","","","","","", 9.4, 4.0, 0.0, 0.0 +6.4,5,a-degr-i2,2022-23,Boston-Mario Umana Academy,00350656, 493, 4, 0.8, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","" +5.0,5.0,a-degr-i2,2022-23,Boston-TechBoston Academy,00350657, 871, 13, 1.5,"","","","","", 0.0, 0.0, 2.3, 1.3, 2.0, 2.5, 0.7 +-4.6,1,a-degr-i2,2022-23,Boston-Snowden International High School,00350690, 463, 29, 6.3,"","","","","","","","", 9.3, 6.8, 1.8, 6.6 +7.4,5,a-degr-i2,2022-23,Boston-Hernandez K-8 School,00350691, 330, 1, 0.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 55, 0, 0.0,"","","","","","","", 0.0,"", 0.0,"","" +4.0,4.0,a-degr-i2,2022-23,Boston-Warren-Prescott K-8 School,00350346, 391, 8, 2.0, 6.7, 0.0, 4.0, 0.0, 1.9, 0.0, 0.0, 2.6,"","","","" +6.4,5,a-degr-i2,2022-23,Boston-Channing Elementary School,00350360, 119, 1, 0.8, 0.0, 0.0, 0.0, 0.0, 6.3, 0.0,"","","","","","" +-26.0,1,a-degr-i2,2022-23,Boston-McKinley Schools,00350363, 147, 25, 17.0,"","","","", 0.0, 0.0, 0.0, 0.0, 28.6, 25.0, 32.0, 18.2 +-14.2,1,a-degr-i2,2022-23,Boston-Carter School,00350036, 18, 2, 11.1,"","","","","","","","","","","", 33.3 +7.0,5,a-degr-i2,2022-23,Boston-Sumner Elementary School,00350052, 400, 2, 0.5, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Taylor Elementary School,00350054, 286, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2022-23,Boston-Guild Elementary School,00350062, 191, 1, 0.5, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Alighieri Dante Montessori School,00350066, 68, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Boston-Ellis Elementary School,00350072, 238, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Eliot K-8 Innovation School,00350096, 670, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Boston-Mendell Elementary School,00350100, 242, 2, 0.8, 2.4, 0.0, 2.3, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Roosevelt K-8 School,00350116, 287, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Conley Elementary School,00350122, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2022-23,Boston-Grew Elementary School,00350135, 168, 1, 0.6, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Boston-Holmes Elementary School,00350138, 224, 1, 0.4, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-O'Donnell Elementary School,00350141, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Boston-Condon K-8 School,00350146, 529, 2, 0.4, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.4,5,a-degr-i2,2022-23,Boston-Hale Elementary School,00350243, 132, 1, 0.8, 4.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Perry Elementary School,00350255, 123, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Orchard Gardens K-8 School,00350257, 610, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-Tynan Elementary School,00350181, 152, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.6,5,a-degr-i2,2022-23,Boston-Ohrenberger School,00350258, 451, 3, 0.7,"","", 0.0, 3.8, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Boston-Lyndon K-8 School,00350262, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Boston-Kennedy Patrick J Elementary School,00350264, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -174,56 +1954,15 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Boston-Bates Elementary School,00350278, 219, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 3.4000000000000004,3.4,a-degr-i2,2022-23,Boston-Quincy Elementary School,00350286, 559, 13, 2.3, 2.6, 5.0, 1.8, 2.5, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Clap Elementary School,00350298, 83, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.8,5,a-degr-i2,2022-23,Boston-East Boston High School,00350530," 1,260", 7, 0.6,"","","","","","", 1.7, 0.0, 0.5, 0.0, 0.7, 0.8 --2.0,1,a-degr-i2,2022-23,Boston-English High School,00350535, 642, 32, 5.0,"","","","","","", 0.0, 6.7, 15.2, 0.8, 1.6, 2.5 +2.0,2.0,a-degr-i2,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 541, 16, 3.0,"","","","","", 0.0, 1.1, 4.7, 3.4, 5.6, 3.6, 0.0 +5.4,5,a-degr-i2,2022-23,Boston-Haley Pilot School,00350077, 312, 4, 1.3, 7.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Boston-McKay K-8 School,00350080, 611, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2022-23,Boston-Everett Elementary School,00350088, 219, 1, 0.5, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","" -2.4000000000000004,1,a-degr-i2,2022-23,Boston-Madison Park Technical Vocational High School,00350537," 1,057", 55, 5.2,"","","","","","","","", 3.5, 3.4, 7.4, 7.2 -4.8,4.8,a-degr-i2,2022-23,Boston-Fenway High School,00350540, 376, 6, 1.6,"","","","","","","","", 2.1, 1.0, 1.1, 2.2 --7.6,1,a-degr-i2,2022-23,Boston-Another Course To College,00350541, 230, 18, 7.8,"","","","","","","","", 10.2, 12.3, 5.2, 3.4 -6.6,5,a-degr-i2,2022-23,Boston-New Mission High School,00350542, 614, 4, 0.7,"","","","","","", 0.0, 0.0, 0.0, 0.8, 0.0, 2.9 --78.6,1,a-degr-i2,2022-23,Boston-Greater Egleston High School,00350543, 90, 39, 43.3,"","","","","","","","","", 55.6, 20.8, 52.7 -5.6,5,a-degr-i2,2022-23,Boston-Boston Latin Academy,00350545," 1,723", 21, 1.2,"","","","","","", 1.1, 0.8, 1.9, 2.1, 0.7, 0.6 -0.5999999999999996,1,a-degr-i2,2022-23,Boston-Boston Arts Academy,00350546, 493, 18, 3.7,"","","","","","","","", 2.8, 3.4, 5.7, 2.8 --48.2,1,a-degr-i2,2022-23,Boston-Boston Adult Tech Academy,00350548, 121, 34, 28.1,"","","","","","","","","","", 21.2, 30.7 -5.4,5,a-degr-i2,2022-23,Boston-Margarita Muniz Academy,00350549, 314, 4, 1.3,"","","","","","","","", 3.5, 0.0, 0.0, 1.3 -4.2,4.2,a-degr-i2,2022-23,Boston-Boston Community Leadership Academy,00350558, 573, 11, 1.9,"","","","","","", 4.5, 3.4, 0.9, 1.8, 0.9, 1.9 -6.6,5,a-degr-i2,2022-23,Boston-Boston Latin School,00350560," 2,422", 16, 0.7,"","","","","","", 2.1, 0.5, 1.0, 0.0, 0.3, 0.0 -6.8,5,a-degr-i2,2022-23,Boston-Quincy Upper School,00350565, 524, 3, 0.6,"","","","","", 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 6.1 -8.0,5,a-degr-i2,2022-23,Boston-Eliot K-8 Innovation School,00350096, 670, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Boston-Mendell Elementary School,00350100, 242, 2, 0.8, 2.4, 0.0, 2.3, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Roosevelt K-8 School,00350116, 287, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-Conley Elementary School,00350122, 118, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.8,5,a-degr-i2,2022-23,Boston-Grew Elementary School,00350135, 168, 1, 0.6, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Boston-Holmes Elementary School,00350138, 224, 1, 0.4, 2.8, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-O'Donnell Elementary School,00350141, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Boston-Condon K-8 School,00350146, 529, 2, 0.4, 3.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Boston-Hennigan K-8 School,00350153, 473, 2, 0.4, 0.0, 0.0, 0.0, 1.4, 0.0, 1.3, 0.0, 0.0,"","","","" -4.0,4.0,a-degr-i2,2022-23,Boston-Chittick Elementary School,00350154, 153, 3, 2.0, 0.0, 6.9, 3.7, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Boston-Otis Elementary School,00350156, 315, 3, 1.0, 3.2, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Boston-Kennedy John F Elementary School,00350166, 304, 3, 1.0, 3.6, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2022-23,Boston-UP Academy Holland,00350167, 493, 6, 1.2, 2.6, 3.2, 0.9, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Philbrick Elementary School,00350172, 83, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.6,4.6,a-degr-i2,2022-23,Boston-Winthrop Elementary School,00350180, 176, 3, 1.7, 5.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Tynan Elementary School,00350181, 152, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.6,5,a-degr-i2,2022-23,Boston-Hurley K-8 School,00350182, 281, 2, 0.7, 2.1, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 1.7999999999999998,1.8,a-degr-i2,2022-23,Boston-Lee K-8 School,00350183, 426, 13, 3.1, 10.7, 1.8, 0.0, 3.3, 0.0, 0.0, 7.0, 1.9,"","","","" 6.4,5,a-degr-i2,2022-23,Boston-Manning Elementary School,00350184, 128, 1, 0.8, 0.0, 4.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.0,5.0,a-degr-i2,2022-23,Boston-O'Bryant School of Math & Science,00350575," 1,567", 23, 1.5,"","","","","","", 1.8, 3.5, 1.2, 1.0, 2.7, 0.0 --15.2,1,a-degr-i2,2022-23,Boston-Community Academy of Science and Health,00350581, 319, 37, 11.6,"","","","","","","","", 15.6, 2.3, 17.3, 10.5 -1.2000000000000002,1.2,a-degr-i2,2022-23,Boston-Lyon High School,00350655, 116, 4, 3.4,"","","","","","","","", 9.4, 4.0, 0.0, 0.0 -6.4,5,a-degr-i2,2022-23,Boston-Mario Umana Academy,00350656, 493, 4, 0.8, 3.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","" -5.0,5.0,a-degr-i2,2022-23,Boston-TechBoston Academy,00350657, 871, 13, 1.5,"","","","","", 0.0, 0.0, 2.3, 1.3, 2.0, 2.5, 0.7 --4.6,1,a-degr-i2,2022-23,Boston-Snowden International High School,00350690, 463, 29, 6.3,"","","","","","","","", 9.3, 6.8, 1.8, 6.6 -7.4,5,a-degr-i2,2022-23,Boston-Hernandez K-8 School,00350691, 330, 1, 0.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 55, 0, 0.0,"","","","","","","", 0.0,"", 0.0,"","" -66.2,1,a-degr-i2,2022-23,Boston-Boston Collaborative High School,00350755, 178, 66, 37.1,"","","","","","","","","", 25.0, 31.1, 41.5 -8.0,5,a-degr-i2,2022-23,Boston-Adams Elementary School,00350302, 190, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Mason Elementary School,00350304, 140, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Boston-Greenwood Sarah K-8 School,00350308, 277, 3, 1.1, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2022-23,Boston-Gardner Pilot Academy,00350326, 322, 3, 0.9, 0.0, 2.5, 0.0, 2.4, 0.0, 0.0, 2.6, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Boston-Kenny Elementary School,00350328, 253, 2, 0.8, 0.0, 2.4, 2.2, 0.0, 0.0, 0.0,"","","","","","" -4.0,4.0,a-degr-i2,2022-23,Boston-Warren-Prescott K-8 School,00350346, 391, 8, 2.0, 6.7, 0.0, 4.0, 0.0, 1.9, 0.0, 0.0, 2.6,"","","","" -6.4,5,a-degr-i2,2022-23,Boston-Channing Elementary School,00350360, 119, 1, 0.8, 0.0, 0.0, 0.0, 0.0, 6.3, 0.0,"","","","","","" --26.0,1,a-degr-i2,2022-23,Boston-McKinley Schools,00350363, 147, 25, 17.0,"","","","", 0.0, 0.0, 0.0, 0.0, 28.6, 25.0, 32.0, 18.2 8.0,5,a-degr-i2,2022-23,Boston-Russell Elementary School,00350366, 244, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Trotter Elementary School,00350370, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Boston-Winship Elementary School,00350374, 244, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -235,378 +1974,368 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 4.2,4.2,a-degr-i2,2022-23,Boston-Frederick Pilot Middle School,00350383, 323, 6, 1.9,"","","","","", 0.0, 0.0, 4.3,"","","","" 8.0,5,a-degr-i2,2022-23,Boston-Blackstone Elementary School,00350390, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426, 653, 5, 0.8,"", 0.0, 1.9, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 1.7, 3.2, 0.0 -1.7999999999999998,1.8,a-degr-i2,2022-23,Boston-West Zone Early Learning Center,00350006, 32, 1, 3.1, 3.1,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Ellison-Parks Early Education School,00350008, 99, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-East Boston Early Education Center,00350009, 44, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Haynes Early Education Center,00350010, 74, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Boston Teachers Union K-8 Pilot,00350012, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-Shaw Elementary School,00350014, 99, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Higginson Inclusion K0-2 School,00350015, 61, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Mattahunt Elementary School,00350016, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Curley K-8 School,00350020, 745, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Boston-Beethoven Elementary School,00350021, 156, 1, 0.6, 0.0, 1.2,"","","","","","","","","","" --14.2,1,a-degr-i2,2022-23,Boston-Carter School,00350036, 18, 2, 11.1,"","","","","","","","","","","", 33.3 -7.0,5,a-degr-i2,2022-23,Boston-Sumner Elementary School,00350052, 400, 2, 0.5, 2.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Taylor Elementary School,00350054, 286, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2022-23,Boston-Guild Elementary School,00350062, 191, 1, 0.5, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Boston-Alighieri Dante Montessori School,00350066, 68, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Boston-Ellis Elementary School,00350072, 238, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -2.0,2.0,a-degr-i2,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074, 541, 16, 3.0,"","","","","", 0.0, 1.1, 4.7, 3.4, 5.6, 3.6, 0.0 -5.4,5,a-degr-i2,2022-23,Boston-Haley Pilot School,00350077, 312, 4, 1.3, 7.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Boston-McKay K-8 School,00350080, 611, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.0,5,a-degr-i2,2022-23,Boston-Everett Elementary School,00350088, 219, 1, 0.5, 0.0, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","" --2.0,1,a-degr-i2,2022-23,Boston-Brighton High School,00350505, 520, 26, 5.0,"","","","","","", 0.0, 5.3, 7.2, 4.6, 3.3, 6.0 --6.800000000000001,1,a-degr-i2,2022-23,Boston-Boston International High School & Newcomers Academy,00350507, 471, 35, 7.4,"","","","","","","","", 14.7, 4.5, 2.0, 3.9 --15.600000000000001,1,a-degr-i2,2022-23,Boston-Charlestown High School,00350515, 736, 87, 11.8,"","","","","","", 0.0, 0.0, 9.4, 9.8, 17.1, 15.3 --3.0,1,a-degr-i2,2022-23,Boston-Community Academy,00350518, 55, 3, 5.5,"","","","","","","","","", 0.0, 6.3, 0.0 --19.2,1,a-degr-i2,2022-23,Boston-Excel High School,00350522, 434, 59, 13.6,"","","","","","","","", 11.4, 16.5, 7.4, 20.0 -3.2,3.2,a-degr-i2,2022-23,Boston-Burke High School,00350525, 411, 10, 2.4,"","","","","","", 0.0, 0.0, 8.8, 1.2, 1.2, 1.0 -2.5999999999999996,2.6,a-degr-i2,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 698, 19, 2.7,"","","","", 0.0, 0.0, 1.2, 1.1, 6.7, 4.5, 2.9, 6.3 --96.6,1,a-degr-i2,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 321, 168, 52.3,"","","","","","","","", 70.3, 36.4,"", 50.5 -5.8,5,a-degr-i2,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 463, 5, 1.1,"","","","","", 0.0, 0.0, 1.6, 3.6, 0.0, 0.0, 1.5 -2.0,2.0,a-degr-i2,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 695, 21, 3.0,"","","","","", 0.0, 1.0, 2.0, 4.8, 2.9, 3.0, 7.6 -8.0,5,a-degr-i2,2022-23,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 690, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Bourne-Bournedale Elementary School,00360005, 226, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -4.4,4.4,a-degr-i2,2022-23,Bourne-Bourne High School,00360505, 341, 6, 1.8,"","","","","","","","", 4.9, 1.3, 1.1, 0.0 -8.0,5,a-degr-i2,2022-23,Bourne-Bourne Intermediate School,00360030, 370, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Bourne-Bourne Middle School,00360325, 431, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2022-23,Boxford-Harry Lee Cole,00380005, 213, 2, 0.9, 1.0, 0.9,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Boxford-Spofford Pond,00380013, 384, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2022-23,Braintree-Archie T Morrison,00400033, 278, 2, 0.7, 2.8, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Braintree-South Middle School,00400310, 514, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -4.6,4.6,a-degr-i2,2022-23,Braintree-Hollis,00400005, 292, 5, 1.7, 1.7, 4.8, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Braintree-Braintree High,00400505," 1,612", 6, 0.4,"","","","","","","","", 0.0, 0.2, 1.1, 0.2 -6.4,5,a-degr-i2,2022-23,Braintree-Liberty,00400025, 371, 3, 0.8, 3.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Braintree-East Middle School,00400305, 971, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Braintree-Highlands,00400015, 388, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Adams Elementary School,00350302, 190, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Boston-Mason Elementary School,00350304, 140, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Boston-Greenwood Sarah K-8 School,00350308, 277, 3, 1.1, 6.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Boston-Gardner Pilot Academy,00350326, 322, 3, 0.9, 0.0, 2.5, 0.0, 2.4, 0.0, 0.0, 2.6, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Boston-Kenny Elementary School,00350328, 253, 2, 0.8, 0.0, 2.4, 2.2, 0.0, 0.0, 0.0,"","","","","","" +4.8,4.8,a-degr-i2,2022-23,Boston-Fenway High School,00350540, 376, 6, 1.6,"","","","","","","","", 2.1, 1.0, 1.1, 2.2 +-7.6,1,a-degr-i2,2022-23,Boston-Another Course To College,00350541, 230, 18, 7.8,"","","","","","","","", 10.2, 12.3, 5.2, 3.4 +6.6,5,a-degr-i2,2022-23,Boston-New Mission High School,00350542, 614, 4, 0.7,"","","","","","", 0.0, 0.0, 0.0, 0.8, 0.0, 2.9 +-78.6,1,a-degr-i2,2022-23,Boston-Greater Egleston High School,00350543, 90, 39, 43.3,"","","","","","","","","", 55.6, 20.8, 52.7 +5.6,5,a-degr-i2,2022-23,Boston-Boston Latin Academy,00350545," 1,723", 21, 1.2,"","","","","","", 1.1, 0.8, 1.9, 2.1, 0.7, 0.6 +0.5999999999999996,1,a-degr-i2,2022-23,Boston-Boston Arts Academy,00350546, 493, 18, 3.7,"","","","","","","","", 2.8, 3.4, 5.7, 2.8 +-48.2,1,a-degr-i2,2022-23,Boston-Boston Adult Tech Academy,00350548, 121, 34, 28.1,"","","","","","","","","","", 21.2, 30.7 +5.4,5,a-degr-i2,2022-23,Boston-Margarita Muniz Academy,00350549, 314, 4, 1.3,"","","","","","","","", 3.5, 0.0, 0.0, 1.3 +4.2,4.2,a-degr-i2,2022-23,Boston-Boston Community Leadership Academy,00350558, 573, 11, 1.9,"","","","","","", 4.5, 3.4, 0.9, 1.8, 0.9, 1.9 +6.6,5,a-degr-i2,2022-23,Boston-Boston Latin School,00350560," 2,422", 16, 0.7,"","","","","","", 2.1, 0.5, 1.0, 0.0, 0.3, 0.0 +6.8,5,a-degr-i2,2022-23,Boston-Quincy Upper School,00350565, 524, 3, 0.6,"","","","","", 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 6.1 +2.5999999999999996,2.6,a-degr-i2,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305, 698, 19, 2.7,"","","","", 0.0, 0.0, 1.2, 1.1, 6.7, 4.5, 2.9, 6.3 +-96.6,1,a-degr-i2,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505, 321, 168, 52.3,"","","","","","","","", 70.3, 36.4,"", 50.5 +5.8,5,a-degr-i2,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305, 463, 5, 1.1,"","","","","", 0.0, 0.0, 1.6, 3.6, 0.0, 0.0, 1.5 +2.0,2.0,a-degr-i2,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305, 695, 21, 3.0,"","","","","", 0.0, 1.0, 2.0, 4.8, 2.9, 3.0, 7.6 +8.0,5,a-degr-i2,2022-23,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 690, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Bourne-Bournedale Elementary School,00360005, 226, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +4.4,4.4,a-degr-i2,2022-23,Bourne-Bourne High School,00360505, 341, 6, 1.8,"","","","","","","","", 4.9, 1.3, 1.1, 0.0 +8.0,5,a-degr-i2,2022-23,Bourne-Bourne Intermediate School,00360030, 370, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Bourne-Bourne Middle School,00360325, 431, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Boxford-Harry Lee Cole,00380005, 213, 2, 0.9, 1.0, 0.9,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Boxford-Spofford Pond,00380013, 384, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.6,5,a-degr-i2,2022-23,Braintree-Mary E Flaherty School,00400020, 268, 2, 0.7, 1.2, 0.0, 0.0, 1.6,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Braintree-Donald Ross,00400050, 170, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Brewster-Eddy Elementary,00410010, 201, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Braintree-East Middle School,00400305, 971, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +4.6,4.6,a-degr-i2,2022-23,Braintree-Hollis,00400005, 292, 5, 1.7, 1.7, 4.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Braintree-Highlands,00400015, 388, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,Braintree-Archie T Morrison,00400033, 278, 2, 0.7, 2.8, 0.0, 0.0, 0.0,"","","","","","","","" +6.4,5,a-degr-i2,2022-23,Braintree-Liberty,00400025, 371, 3, 0.8, 3.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Braintree-Braintree High,00400505," 1,612", 6, 0.4,"","","","","","","","", 0.0, 0.2, 1.1, 0.2 +8.0,5,a-degr-i2,2022-23,Braintree-South Middle School,00400310, 514, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.0,5.0,a-degr-i2,2022-23,Brewster-Stony Brook Elementary,00410005, 131, 2, 1.5, 1.5, 1.5,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Brewster-Eddy Elementary,00410010, 201, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 266, 3, 1.1, 2.7, 5.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Mitchell Elementary School,06250002, 552, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -5.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Merrill Elementary School,06250020, 174, 2, 1.1, 1.1,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Laliberte Elementary School,06250050, 501, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 5.6,5,a-degr-i2,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505," 1,377", 17, 1.2,"","","","","","","","", 1.1, 1.3, 1.8, 0.6 -6.199999999999999,1,a-degr-i2,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415, 14, 1, 7.1,"","","","","","","","","","","","" +7.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Bridgewater Middle School,06250320, 742, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Laliberte Elementary School,06250050, 501, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Merrill Elementary School,06250020, 174, 2, 1.1, 1.1,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Mitchell Elementary School,06250002, 552, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Williams Intermediate School,06250300, 801, 1, 0.1,"","", 0.4, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Bridgewater-Raynham-Raynham Middle School,06250315, 725, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Bridgewater-Raynham-Bridgewater Middle School,06250320, 742, 1, 0.1,"","","","","", 0.0, 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Brimfield-Brimfield Elementary,00430005, 221, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705, 549, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605," 1,310", 2, 0.2,"","","","","","","","", 0.0, 0.3, 0.0, 0.3 +7.2,5,a-degr-i2,2022-23,Brockton-Downey,00440110, 455, 2, 0.4, 1.0, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Brockton-Oscar F Raymond,00440078, 615, 3, 0.5, 0.8, 0.0, 0.0, 1.7, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Brockton-Edgar B Davis,00440023, 838, 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Brockton-Hancock,00440045, 484, 4, 0.8, 1.0, 1.8, 0.0, 0.0, 1.1,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Brockton-Gilmore Elementary School,00440055, 343, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Brockton-Louis F Angelo Elementary,00440065, 693, 1, 0.1, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Brockton-John F Kennedy,00440017, 416, 2, 0.5, 0.0, 2.2, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Brockton-Brookfield,00440010, 340, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Brockton-Manthala George Jr. School,00440003, 579, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Brockton-Mary E. Baker School,00440002, 565, 2, 0.4, 0.8, 0.0, 0.9, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Brockton-Dr W Arnone Community School,00440001, 569, 3, 0.5, 0.8, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -19.8,1,a-degr-i2,2022-23,Brockton-Brockton Virtual Learning Academy,00440705, 173, 24, 13.9,"", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 54.3, 18.8, 10.5, 0.0 -8.0,5,a-degr-i2,2022-23,Brockton-PROMISE College and Career Academy,00440525, 38, 0, 0.0,"","","","","","","","", 0.0,"","","" --36.0,1,a-degr-i2,2022-23,Brockton-Edison Academy,00440520, 241, 53, 22.0,"","","","","","","","", 17.6, 36.1, 15.8, 22.7 --48.6,1,a-degr-i2,2022-23,Brockton-Brockton Champion High School,00440515, 138, 39, 28.3,"","","","","","","","", 64.7, 8.7, 8.7, 0.0 --14.2,1,a-degr-i2,2022-23,Brockton-Brockton High,00440505," 3,617", 401, 11.1,"","","","","","","","", 25.1, 7.4, 4.8, 0.1 -7.6,5,a-degr-i2,2022-23,Brockton-Plouffe Middle School,00440422, 652, 1, 0.2,"","","","","", 0.0, 0.0, 0.4,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-Ashfield Middle School,00440421, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-West Middle School,00440420, 557, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-South Middle School,00440415, 518, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brockton-North Middle School,00440410, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Brockton-East Middle School,00440405, 452, 1, 0.2,"","","","","", 0.6, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Brockton-Edgar B Davis,00440023, 838, 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Brockton-Hancock,00440045, 484, 4, 0.8, 1.0, 1.8, 0.0, 0.0, 1.1,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Brockton-Gilmore Elementary School,00440055, 343, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Brockton-Louis F Angelo Elementary,00440065, 693, 1, 0.1, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Brockton-Oscar F Raymond,00440078, 615, 3, 0.5, 0.8, 0.0, 0.0, 1.7, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Brockton-Downey,00440110, 455, 2, 0.4, 1.0, 0.9, 0.0, 0.0, 0.0,"","","","","","","" -0.1999999999999993,1,a-degr-i2,2022-23,Brockton-Huntington Therapeutic Day School,00440400, 49, 2, 4.1,"","","","","","","", 0.0, 12.5, 7.7, 0.0,"" +7.6,5,a-degr-i2,2022-23,Brockton-East Middle School,00440405, 452, 1, 0.2,"","","","","", 0.6, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-North Middle School,00440410, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-South Middle School,00440415, 518, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-West Middle School,00440420, 557, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brockton-Ashfield Middle School,00440421, 448, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Brockton-Plouffe Middle School,00440422, 652, 1, 0.2,"","","","","", 0.0, 0.0, 0.4,"","","","" +-14.2,1,a-degr-i2,2022-23,Brockton-Brockton High,00440505," 3,617", 401, 11.1,"","","","","","","","", 25.1, 7.4, 4.8, 0.1 +-48.6,1,a-degr-i2,2022-23,Brockton-Brockton Champion High School,00440515, 138, 39, 28.3,"","","","","","","","", 64.7, 8.7, 8.7, 0.0 +-36.0,1,a-degr-i2,2022-23,Brockton-Edison Academy,00440520, 241, 53, 22.0,"","","","","","","","", 17.6, 36.1, 15.8, 22.7 +8.0,5,a-degr-i2,2022-23,Brockton-PROMISE College and Career Academy,00440525, 38, 0, 0.0,"","","","","","","","", 0.0,"","","" 3.0,3.0,a-degr-i2,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305," 2,033", 51, 2.5, 7.7, 4.7, 2.6, 2.1, 4.1, 1.1, 1.7, 0.0, 1.9, 0.7, 0.8, 0.0 6.2,5,a-degr-i2,2022-23,Brookfield-Brookfield Elementary,00450005, 231, 2, 0.9, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.6,5,a-degr-i2,2022-23,Brookline-Pierce,00460040, 632, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brookline-Edith C Baker,00460005, 604, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Brookline-Lawrence,00460030, 540, 1, 0.2, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Brookline-Heath,00460025, 419, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Brookline-Michael Driscoll,00460020, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Brookline-Florida Ruffin Ridley School,00460015, 732, 1, 0.1, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brookline-Edith C Baker,00460005, 604, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brookline-William H Lincoln,00460035, 431, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Brookline-John D Runkle,00460045, 444, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Brookline-Michael Driscoll,00460020, 405, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Brookline-Brookline High,00460505," 2,066", 13, 0.6,"","","","","","","","", 0.4, 0.0, 0.2, 2.0 -8.0,5,a-degr-i2,2022-23,Brookline-William H Lincoln,00460035, 431, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Brookline-Lawrence,00460030, 540, 1, 0.2, 0.0, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Brookline-Pierce,00460040, 632, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2022-23,Brookline-Florida Ruffin Ridley School,00460015, 732, 1, 0.1, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Burlington-Fox Hill,00480007, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Burlington-Memorial,00480015, 345, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2022-23,Burlington-Burlington High,00480505, 879, 7, 0.8,"","","","","","","","", 0.5, 1.3, 0.5, 0.9 8.0,5,a-degr-i2,2022-23,Burlington-Francis Wyman Elementary,00480035, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Burlington-Marshall Simonds Middle,00480303, 817, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Burlington-Pine Glen Elementary,00480020, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Cambridge-Peabody,00490050, 229, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Haggerty,00490020, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Cambridge-Cambridgeport,00490007, 192, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Cambridge Street Upper School,00490305, 293, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.8,5,a-degr-i2,2022-23,Cambridge-Fletcher/Maynard Academy,00490090, 184, 2, 1.1, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Cambridge-Graham and Parks,00490080, 277, 1, 0.4, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Cambridge-John M Tobin,00490065, 174, 1, 0.6, 0.0, 2.8, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Amigos School,00490006, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Maria L. Baldwin,00490005, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.0,4.0,a-degr-i2,2022-23,Cambridge-Cambridge Rindge and Latin,00490506," 1,848", 37, 2.0,"","","","","","","","", 2.5, 1.9, 1.4, 2.2 8.0,5,a-degr-i2,2022-23,Cambridge-Vassal Lane Upper School,00490320, 273, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Cambridge-Rindge Avenue Upper School,00490315, 274, 1, 0.4,"","","","","", 0.0, 1.1, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Maria L. Baldwin,00490005, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Amigos School,00490006, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.4,5,a-degr-i2,2022-23,Cambridge-Putnam Avenue Upper School,00490310, 251, 2, 0.8,"","","","","", 2.3, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Cambridge-Haggerty,00490020, 181, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Cambridge-Cambridge Street Upper School,00490305, 293, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Cambridge-Martin Luther King Jr.,00490030, 238, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.2,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Cambridge-King Open,00490035, 269, 1, 0.4, 0.0, 0.0, 0.0, 2.1, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Cambridge-Kennedy-Longfellow,00490040, 149, 1, 0.7, 4.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Cambridge-Morse,00490045, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Cambridge-Peabody,00490050, 229, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Canton-Lt Peter M Hansen,00500012, 461, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Canton-John F Kennedy,00500017, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Cambridge-John M Tobin,00490065, 174, 1, 0.6, 0.0, 2.8, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Cambridge-Graham and Parks,00490080, 277, 1, 0.4, 0.0, 1.5, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Cambridge-Fletcher/Maynard Academy,00490090, 184, 2, 1.1, 4.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Canton-Dean S Luce,00500020, 378, 2, 0.5, 1.4, 0.0, 0.0, 0.0, 1.4,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Canton-Wm H Galvin Middle,00500305, 753, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Canton-John F Kennedy,00500017, 399, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Canton-Lt Peter M Hansen,00500012, 461, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Canton-Canton High,00500505, 895, 10, 1.1,"","","","","","","","", 1.2, 1.8, 1.4, 0.0 +8.0,5,a-degr-i2,2022-23,Canton-Wm H Galvin Middle,00500305, 753, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530, 250, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605, 666, 3, 0.5,"","","","","","","","", 0.0, 0.0, 0.6, 1.2 7.6,5,a-degr-i2,2022-23,Carlisle-Carlisle School,00510025, 526, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Carver-Carver Middle/High School,00520405, 749, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 7.4,5,a-degr-i2,2022-23,Carver-Carver Elementary School,00520015, 595, 2, 0.3, 0.0, 0.0, 0.0, 0.0, 2.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Carver-Carver Middle/High School,00520405, 749, 1, 0.1,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 1.5999999999999996,1.6,a-degr-i2,2022-23,Central Berkshire-Becket Washington School,06350005, 63, 2, 3.2, 8.3, 12.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Central Berkshire-Craneville,06350025, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2022-23,Central Berkshire-Kittredge,06350035, 107, 1, 0.9, 0.0, 0.0, 4.8, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Central Berkshire-Nessacus Regional Middle School,06350305, 345, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 4.2,4.2,a-degr-i2,2022-23,Central Berkshire-Wahconah Regional High,06350505, 485, 9, 1.9,"","","","","","","","", 4.3, 2.3, 0.8, 0.0 -8.0,5,a-degr-i2,2022-23,Chelmsford-Byam School,00560030, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Central Berkshire-Nessacus Regional Middle School,06350305, 345, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Central Berkshire-Kittredge,06350035, 107, 1, 0.9, 0.0, 0.0, 4.8, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Chelmsford-Center Elementary School,00560005, 403, 1, 0.2, 0.0, 1.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelmsford-Charles D Harrington,00560025, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelmsford-South Row,00560015, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Chelmsford-Chelmsford High,00560505," 1,367", 5, 0.4,"","","","","","","","", 0.0, 0.3, 0.0, 1.3 7.8,5,a-degr-i2,2022-23,Chelmsford-McCarthy Middle School,00560310, 844, 1, 0.1,"","","","", 0.5, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Chelmsford-Col Moses Parker School,00560305, 723, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Chelmsford-Charles D Harrington,00560025, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Chelmsford-South Row,00560015, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Chelmsford-Center Elementary School,00560005, 403, 1, 0.2, 0.0, 1.0, 0.0, 0.0,"","","","","","","","" --58.0,1,a-degr-i2,2022-23,Chelsea-Chelsea Opportunity Academy,00570515, 115, 38, 33.0,"","","","","","","","","", 55.6, 0.0, 50.0 -8.0,5,a-degr-i2,2022-23,Chelsea-Shurtleff Early Childhood,00570003, 103, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Chelsea-William A Berkowitz Elementary,00570025, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Chelsea-Edgar A Hooks Elementary,00570030, 498, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelmsford-Byam School,00560030, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.8,5,a-degr-i2,2022-23,Chelsea-George F. Kelly Elementary,00570035, 478, 3, 0.6, 0.9, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2022-23,Chelsea-Frank M Sokolowski Elementary,00570040, 495, 1, 0.2, 0.0, 0.7, 0.0, 0.0,"","","","","","","","" -13.2,1,a-degr-i2,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705, 47, 5, 10.6,"","","","","","","","","", 11.1, 9.1, 12.5 +7.6,5,a-degr-i2,2022-23,Chelsea-Edgar A Hooks Elementary,00570030, 498, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelsea-William A Berkowitz Elementary,00570025, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelsea-Shurtleff Early Childhood,00570003, 103, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Chelsea-Eugene Wright Science and Technology Academy,00570045, 451, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Chelsea-Clark Avenue School,00570050, 671, 2, 0.3,"","","","", 0.6, 0.0, 0.6, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Chelsea-Joseph A. Browne School,00570055, 511, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-58.0,1,a-degr-i2,2022-23,Chelsea-Chelsea Opportunity Academy,00570515, 115, 38, 33.0,"","","","","","","","","", 55.6, 0.0, 50.0 0.5999999999999996,1,a-degr-i2,2022-23,Chelsea-Chelsea High,00570505," 1,605", 60, 3.7,"","","","","","","","", 6.9, 4.3, 0.9, 0.9 -7.4,5,a-degr-i2,2022-23,Chelsea-Clark Avenue School,00570050, 671, 2, 0.3,"","","","", 0.6, 0.0, 0.6, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Chelsea-Eugene Wright Science and Technology Academy,00570045, 451, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Chelsea-Frank M Sokolowski Elementary,00570040, 495, 1, 0.2, 0.0, 0.7, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 103, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Chicopee-Litwin,00610022, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Chicopee-Lambert-Lavoie,00610040, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2022-23,Chicopee-Fairview Elementary,00610050, 284, 2, 0.7, 1.8, 1.7, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Chicopee-Streiber Memorial School,00610065, 179, 1, 0.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Chicopee-Gen John J Stefanik,00610090, 339, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Chicopee-Bellamy Middle,00610305, 776, 2, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Chicopee-Dupont Middle,00610310, 696, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Chicopee-Chicopee High,00610505, 914, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 +7.4,5,a-degr-i2,2022-23,Chicopee-Gen John J Stefanik,00610090, 339, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Chicopee-Chicopee Comprehensive High School,00610510," 1,206", 5, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.8 +6.6,5,a-degr-i2,2022-23,Chicopee-Fairview Elementary,00610050, 284, 2, 0.7, 1.8, 1.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Chicopee-Lambert-Lavoie,00610040, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Chicopee-Streiber Memorial School,00610065, 179, 1, 0.6, 2.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Chicopee-Barry,00610003, 301, 1, 0.3, 0.0, 1.7, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Chicopee-Belcher,00610010, 137, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Chicopee-Bowe,00610015, 349, 6, 1.7, 6.3, 2.7, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Chicopee-Bowie,00610020, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -1.1999999999999993,1,a-degr-i2,2022-23,Chicopee-Chicopee Academy,00610021, 87, 4, 4.6,"","","","","","", 0.0, 0.0, 0.0, 4.8, 6.3, 11.1 +8.0,5,a-degr-i2,2022-23,Chicopee-Litwin,00610022, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Chicopee-Dupont Middle,00610310, 696, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2022-23,Chicopee-Chicopee High,00610505, 914, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 8.0,5,a-degr-i2,2022-23,Christa McAuliffe Charter School (District)-Christa McAuliffe Charter School,04180305, 329, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -1.8000000000000007,1,a-degr-i2,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505, 183, 9, 4.9,"","","","","","","","", 10.8, 1.7, 4.2, 5.1 8.0,5,a-degr-i2,2022-23,Clarksburg-Clarksburg Elementary,00630010, 159, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -4.0,4.0,a-degr-i2,2022-23,Clinton-Clinton Senior High,00640505, 563, 11, 2.0,"","","","","","","","", 4.5, 1.6, 0.7, 0.0 8.0,5,a-degr-i2,2022-23,Clinton-Clinton Middle School,00640305, 545, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2022-23,Clinton-Clinton Senior High,00640505, 563, 11, 2.0,"","","","","","","","", 4.5, 1.6, 0.7, 0.0 7.6,5,a-degr-i2,2022-23,Clinton-Clinton Elementary,00640050, 621, 1, 0.2, 0.6, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 294, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Cohasset-Cohasset Middle School,00650305, 295, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Cohasset-Cohasset High School,00650505, 431, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -6.2,5,a-degr-i2,2022-23,Cohasset-Joseph Osgood,00650010, 235, 2, 0.9, 0.8, 0.9,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Cohasset-Cohasset Middle School,00650305, 295, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Cohasset-Deer Hill,00650005, 304, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2022-23,Cohasset-Joseph Osgood,00650010, 235, 2, 0.9, 0.8, 0.9,"","","","","","","","","","" 7.2,5,a-degr-i2,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205," 1,086", 4, 0.4, 2.4, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.4,5,a-degr-i2,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305, 253, 2, 0.8,"","","","","", 0.0, 0.0, 0.0, 6.5, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Community Day Charter Public School (District)-Community Day Charter Public School,04400205, 957, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Concord-Concord Middle,00670305, 650, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Concord-Thoreau,00670020, 361, 1, 0.3, 0.0, 0.0, 0.0, 1.3, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Concord-Willard,00670030, 361, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Concord-Alcott,00670005, 333, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Concord-Concord Middle,00670305, 650, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Concord-Willard,00670030, 361, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2022-23,Concord-Carlisle-Concord Carlisle High,06400505," 1,303", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 5.8,5,a-degr-i2,2022-23,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 355, 4, 1.1, 2.0, 1.9, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Conway-Conway Grammar,00680005, 101, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Danvers-Riverside,00710030, 227, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Danvers-Ivan G Smith,00710032, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.2,5,a-degr-i2,2022-23,Danvers-Danvers High,00710505, 769, 7, 0.9,"","","","","","","","", 0.6, 0.6, 0.0, 2.5 -8.0,5,a-degr-i2,2022-23,Danvers-Holten Richmond Middle School,00710305, 772, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Danvers-Highlands,00710010, 329, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Danvers-Great Oak,00710015, 262, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Danvers-Ivan G Smith,00710032, 274, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Danvers-Riverside,00710030, 227, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.6,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Danvers-Willis E Thorpe,00710045, 232, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Danvers-Highlands,00710010, 329, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Danvers-Holten Richmond Middle School,00710305, 772, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Dartmouth-Joseph Demello,00720015, 351, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Dartmouth-James M. Quinn School,00720040, 588, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Dartmouth-George H Potter,00720030, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Dartmouth-Dartmouth Middle,00720050, 804, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Dartmouth-James M. Quinn School,00720040, 588, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Dartmouth-Dartmouth High,00720505, 979, 17, 1.7,"","","","","","","","", 0.8, 2.8, 1.5, 1.7 -8.0,5,a-degr-i2,2022-23,Dedham-Greenlodge,00730025, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.6,5,a-degr-i2,2022-23,Dedham-Oakdale,00730030, 245, 3, 1.2, 1.9, 4.3, 0.0, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Dedham-Riverdale,00730045, 174, 2, 1.1, 2.4, 0.0, 0.0, 2.3, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Dedham-Dedham Middle School,00730305, 540, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.8,5,a-degr-i2,2022-23,Dedham-Dedham High,00730505, 710, 8, 1.1,"","","","","","","","", 2.3, 0.0, 1.8, 0.6 +8.0,5,a-degr-i2,2022-23,Dartmouth-George H Potter,00720030, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Dedham-Avery,00730010, 297, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Dedham-Dedham High,00730505, 710, 8, 1.1,"","","","","","","","", 2.3, 0.0, 1.8, 0.6 +8.0,5,a-degr-i2,2022-23,Dedham-Dedham Middle School,00730305, 540, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2022-23,Dedham-Riverdale,00730045, 174, 2, 1.1, 2.4, 0.0, 0.0, 2.3, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2022-23,Dedham-Oakdale,00730030, 245, 3, 1.2, 1.9, 4.3, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Dedham-Greenlodge,00730025, 277, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Deerfield-Deerfield Elementary,00740015, 260, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 454, 1, 0.2,"","","", 0.0, 0.5,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505, 888, 24, 2.7,"","","","","","","", 0.0, 4.8, 1.1, 1.3, 6.6 +7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 476, 1, 0.2,"","","","","", 0.4, 0.0,"","","","","" 6.2,5,a-degr-i2,2022-23,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 215, 2, 0.9, 0.0, 3.2, 0.0,"","","","","","","","","" 6.8,5,a-degr-i2,2022-23,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 167, 1, 0.6, 1.7, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Dennis-Yarmouth-Station Avenue Elementary,06450025, 301, 1, 0.3, 0.0, 0.0, 1.0,"","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305, 476, 1, 0.2,"","","","","", 0.4, 0.0,"","","","","" -8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton Elementary,06500005, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050, 454, 1, 0.2,"","","", 0.0, 0.5,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505, 667, 18, 2.7,"","","","","","","","", 4.3, 1.2, 2.3, 3.1 -7.6,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 446, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.9,"","","","" 8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton Middle School,06500305, 366, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Palmer River,06500010, 462, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Douglas-Douglas Middle School,00770305, 298, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dighton Elementary,06500005, 347, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Dighton-Rehoboth-Dorothy L Beckwith,06500310, 446, 1, 0.2,"","","","", 0.0, 0.0, 0.0, 0.9,"","","","" 6.8,5,a-degr-i2,2022-23,Douglas-Douglas High School,00770505, 323, 2, 0.6,"","","","","","","","", 0.0, 0.0, 0.0, 2.3 +8.0,5,a-degr-i2,2022-23,Douglas-Douglas Middle School,00770305, 298, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Douglas-Douglas Elementary School,00770015, 344, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Douglas-Douglas Primary School,00770005, 85, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Dover-Chickering,00780005, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 669, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405, 482, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -2.5999999999999996,2.6,a-degr-i2,2022-23,Dracut-Dracut Senior High,00790505, 841, 23, 2.7,"","","","","","","","", 3.4, 3.7, 2.0, 1.6 +7.8,5,a-degr-i2,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505, 669, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Dracut-Justus C. Richardson Middle School,00790410, 848, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +2.5999999999999996,2.6,a-degr-i2,2022-23,Dracut-Dracut Senior High,00790505, 841, 23, 2.7,"","","","","","","","", 3.4, 3.7, 2.0, 1.6 +7.2,5,a-degr-i2,2022-23,Dracut-George H. Englesby Elementary School,00790045, 463, 2, 0.4, 0.0, 0.0, 1.0, 1.1, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Dracut-Brookside Elementary,00790035, 398, 2, 0.5, 1.2, 1.3, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Dracut-Greenmont Avenue,00790030, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.2,5,a-degr-i2,2022-23,Dracut-Joseph A Campbell Elementary,00790020, 490, 7, 1.4, 4.3, 2.0, 0.0, 0.0, 1.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Dracut-George H. Englesby Elementary School,00790045, 463, 2, 0.4, 0.0, 0.0, 1.0, 1.1, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 205, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -2.2,2.2,a-degr-i2,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 918, 27, 2.9,"","","","","","","","", 6.1, 2.4, 2.2, 0.0 -8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Charlton Middle School,06580310, 592, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Dudley Middle School,06580305, 547, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -6.6,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Heritage School,06580030, 453, 3, 0.7,"", 0.0, 0.6, 1.3,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Mason Road School,06580010, 105, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Dudley Elementary,06580005, 343, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Heritage School,06580030, 453, 3, 0.7,"", 0.0, 0.6, 1.3,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Dudley Middle School,06580305, 547, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Charlton Elementary,06580020, 142, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Duxbury-Alden School,00820004, 603, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Duxbury-Chandler Elementary,00820006, 401, 4, 1.0, 1.6, 0.5,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Duxbury-Duxbury Middle,00820305, 623, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Mason Road School,06580010, 105, 0, 0.0, 0.0,"","","","","","","","","","","" +2.2,2.2,a-degr-i2,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505, 918, 27, 2.9,"","","","","","","","", 6.1, 2.4, 2.2, 0.0 +8.0,5,a-degr-i2,2022-23,Dudley-Charlton Reg-Charlton Middle School,06580310, 592, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Duxbury-Duxbury High,00820505, 924, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 -7.8,5,a-degr-i2,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 902, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.6 -8.0,5,a-degr-i2,2022-23,East Bridgewater-Gordon W. Mitchell School,00830010, 633, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Duxbury-Duxbury Middle,00820305, 623, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.0,5,a-degr-i2,2022-23,Duxbury-Chandler Elementary,00820006, 401, 4, 1.0, 1.6, 0.5,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Duxbury-Alden School,00820004, 603, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,East Bridgewater-Central,00830005, 299, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -7.4,5,a-degr-i2,2022-23,East Longmeadow-Birchland Park,00870305, 598, 2, 0.3,"","","","","", 0.0, 0.5, 0.5,"","","","" -8.0,5,a-degr-i2,2022-23,East Longmeadow-Mountain View,00870015, 269, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,East Longmeadow-Meadow Brook,00870013, 341, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,East Bridgewater-Gordon W. Mitchell School,00830010, 633, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505, 902, 1, 0.1,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.6 8.0,5,a-degr-i2,2022-23,East Longmeadow-Mapleshade,00870010, 292, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,East Longmeadow-Meadow Brook,00870013, 341, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,East Longmeadow-Mountain View,00870015, 269, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,East Longmeadow-Birchland Park,00870305, 598, 2, 0.3,"","","","","", 0.0, 0.5, 0.5,"","","","" 8.0,5,a-degr-i2,2022-23,East Longmeadow-East Longmeadow High,00870505, 812, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Eastham-Eastham Elementary,00850005, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Easthampton-Mountain View School,00860415, 911, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Easthampton-Easthampton High,00860505, 367, 10, 2.7,"","","","","","","","", 2.4, 3.9, 1.2, 3.2 -7.6,5,a-degr-i2,2022-23,Easton-Blanche A. Ames Elementary School,00880015, 464, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Easton-Oliver Ames High,00880505," 1,070", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.2,5,a-degr-i2,2022-23,Easton-Richardson Olmsted School,00880025, 760, 3, 0.4,"","", 0.4, 0.8, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Easton-Blanche A. Ames Elementary School,00880015, 464, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Easton-Easton Middle School,00880405, 821, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Easton-Oliver Ames High,00880505," 1,070", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Edgartown-Edgartown Elementary,00890005, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 3.5999999999999996,3.6,a-degr-i2,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 364, 8, 2.2,"","","","","","","","", 5.1, 0.0, 3.2, 0.0 8.0,5,a-degr-i2,2022-23,Erving-Erving Elementary,00910030, 94, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.8,5,a-degr-i2,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505," 1,694", 2, 0.1,"","","","","","","","", 0.0, 0.2, 0.2, 0.0 -7.4,5,a-degr-i2,2022-23,Everett-Parlin School,00930058, 914, 3, 0.3, 0.0, 0.0, 0.8, 0.8, 0.0, 0.9, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Everett-George Keverian School,00930028, 838, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Everett-Lafayette School,00930038, 932, 3, 0.3, 1.1, 0.0, 0.9, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","" 3.5999999999999996,3.6,a-degr-i2,2022-23,Everett-Devens School,00930030, 45, 1, 2.2,"","","","", 0.0,"","","","", 16.7, 0.0,"" --0.40000000000000036,1,a-degr-i2,2022-23,Everett-Everett High,00930505," 2,231", 94, 4.2,"","","","","","","","", 2.8, 3.7, 7.1, 3.1 +7.4,5,a-degr-i2,2022-23,Everett-Parlin School,00930058, 914, 3, 0.3, 0.0, 0.0, 0.8, 0.8, 0.0, 0.9, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Everett-Madeline English School,00930018, 690, 2, 0.3, 1.4, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 1.4000000000000004,1.4,a-degr-i2,2022-23,Everett-Webster School,00930015, 276, 9, 3.3, 4.6, 5.6, 3.3, 2.0, 0.0,"","","","","","","" +-0.40000000000000036,1,a-degr-i2,2022-23,Everett-Everett High,00930505," 2,231", 94, 4.2,"","","","","","","","", 2.8, 3.7, 7.1, 3.1 +8.0,5,a-degr-i2,2022-23,Everett-George Keverian School,00930028, 838, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Everett-Sumner G. Whittier School,00930010, 573, 4, 0.7, 5.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205," 1,362", 3, 0.2,"","","","", 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6 7.2,5,a-degr-i2,2022-23,Fairhaven-East Fairhaven,00940010, 247, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2022-23,Fairhaven-Leroy Wood,00940030, 363, 3, 0.8, 3.1, 0.0, 1.3, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Fairhaven-Hastings Middle,00940305, 438, 2, 0.5,"","","","","", 0.0, 0.0, 1.3,"","","","" 3.8,3.8,a-degr-i2,2022-23,Fairhaven-Fairhaven High,00940505, 632, 13, 2.1,"","","","","","","","", 3.8, 3.2, 1.4, 0.0 -8.0,5,a-degr-i2,2022-23,Fall River-Stone PK-12 School,00950340, 74, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -7.8,5,a-degr-i2,2022-23,Fall River-Matthew J Kuss Middle,00950320, 682, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Fairhaven-Leroy Wood,00940030, 363, 3, 0.8, 3.1, 0.0, 1.3, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Fall River-Henry Lord Community School,00950017, 690, 4, 0.6, 0.0, 2.2, 0.0, 1.2, 1.3, 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Fall River-Letourneau Elementary School,00950013, 480, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Fall River-Mary Fonseca Elementary School,00950011, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Fall River-Carlton M. Viveiros Elementary School,00950009, 602, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Fall River-North End Elementary,00950005, 529, 2, 0.4, 0.0, 1.0, 0.8, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Fall River-Spencer Borden,00950130, 470, 2, 0.4, 1.1, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Fall River-William S Greene,00950065, 579, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,Fall River-John J Doran,00950045, 434, 3, 0.7, 3.6, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","" -3.1999999999999993,1,a-degr-i2,2022-23,Fall River-Resiliency Preparatory Academy,00950525, 197, 11, 5.6,"","","","","","", 0.0, 0.0, 0.0, 10.0, 5.1, 10.8 -5.4,5,a-degr-i2,2022-23,Fall River-B M C Durfee High,00950505," 2,458", 31, 1.3,"","","","","","","","", 0.0, 0.0, 0.6, 4.9 -7.2,5,a-degr-i2,2022-23,Fall River-Morton Middle,00950315, 690, 3, 0.4,"","","","","", 0.0, 0.9, 0.5,"","","","" -7.6,5,a-degr-i2,2022-23,Fall River-Talbot Innovation School,00950305, 533, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" -8.0,5,a-degr-i2,2022-23,Fall River-Samuel Watson,00950145, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Fall River-James Tansey,00950140, 231, 1, 0.4, 1.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Fall River-Spencer Borden,00950130, 470, 2, 0.4, 1.1, 1.1, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Fall River-William S Greene,00950065, 579, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2022-23,Fall River-John J Doran,00950045, 434, 3, 0.7, 3.6, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Fall River-North End Elementary,00950005, 529, 2, 0.4, 0.0, 1.0, 0.8, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Fall River-Carlton M. Viveiros Elementary School,00950009, 602, 1, 0.2, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Fall River-Mary Fonseca Elementary School,00950011, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Fall River-Letourneau Elementary School,00950013, 480, 1, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Fall River-Henry Lord Community School,00950017, 690, 4, 0.6, 0.0, 2.2, 0.0, 1.2, 1.3, 0.0, 0.0, 0.0,"","","","" -1.2000000000000002,1.2,a-degr-i2,2022-23,Falmouth-Falmouth High,00960505, 762, 26, 3.4,"","","","","","","","", 6.0, 5.3, 2.2, 0.0 -7.6,5,a-degr-i2,2022-23,Falmouth-Lawrence,00960405, 477, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" +8.0,5,a-degr-i2,2022-23,Fall River-Samuel Watson,00950145, 189, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Fall River-Talbot Innovation School,00950305, 533, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +7.2,5,a-degr-i2,2022-23,Fall River-Morton Middle,00950315, 690, 3, 0.4,"","","","","", 0.0, 0.9, 0.5,"","","","" +7.8,5,a-degr-i2,2022-23,Fall River-Matthew J Kuss Middle,00950320, 682, 1, 0.1,"","","","","", 0.4, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Fall River-Stone PK-12 School,00950340, 74, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +5.4,5,a-degr-i2,2022-23,Fall River-B M C Durfee High,00950505," 2,458", 31, 1.3,"","","","","","","","", 0.0, 0.0, 0.6, 4.9 8.0,5,a-degr-i2,2022-23,Falmouth-Morse Pond School,00960305, 482, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Falmouth-East Falmouth Elementary,00960005, 152, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Falmouth-Teaticket,00960015, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Falmouth-Mullen-Hall,00960020, 311, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Falmouth-North Falmouth Elementary,00960030, 263, 1, 0.4, 0.0, 1.9, 0.0, 0.0,"","","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2022-23,Falmouth-Falmouth High,00960505, 762, 26, 3.4,"","","","","","","","", 6.0, 5.3, 2.2, 0.0 +7.6,5,a-degr-i2,2022-23,Falmouth-Lawrence,00960405, 477, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Farmington River Reg-Farmington River Elementary,06620020, 90, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Fitchburg-Crocker Elementary,00970016, 616, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Fitchburg-Reingold Elementary,00970043, 651, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.7,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Fitchburg-Memorial Middle School,00970048, 581, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -20.6,1,a-degr-i2,2022-23,Fitchburg-Goodrich Academy,00970510, 182, 26, 14.3,"","","","","","","","", 69.2, 29.4, 4.1, 9.7 -8.0,5,a-degr-i2,2022-23,Fitchburg-Fitchburg High,00970505," 1,243", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2022-23,Fitchburg-McKay Elementary School,00970340, 727, 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Fitchburg-Fitchburg High,00970505," 1,243", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Fitchburg-Arthur M Longsjo Middle School,00970315, 588, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Fitchburg-Memorial Middle School,00970048, 581, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Fitchburg-Reingold Elementary,00970043, 651, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.7,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Fitchburg-Crocker Elementary,00970016, 616, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Florida-Abbott Memorial,00980005, 75, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Four Rivers Charter Public (District)-Four Rivers Charter Public School,04130505, 219, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Foxborough-Mabelle M Burrell,00990015, 196, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Foxborough-Vincent M Igo Elementary,00990020, 290, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Foxborough-Mabelle M Burrell,00990015, 196, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Foxborough-Foxborough High,00990505, 776, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 8.0,5,a-degr-i2,2022-23,Foxborough-Charles Taylor Elementary,00990050, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Foxborough-John J Ahern,00990405, 733, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Foxborough-Foxborough High,00990505, 776, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.1 8.0,5,a-degr-i2,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550," 1,429", 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 --1.5999999999999996,1,a-degr-i2,2022-23,Framingham-Framingham High School,01000515," 2,566", 123, 4.8,"","","","","","","","", 8.7, 6.6, 1.7, 1.0 8.0,5,a-degr-i2,2022-23,Framingham-Walsh Middle,01000310, 789, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Fuller Middle,01000305, 616, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Framingham-Cameron Middle School,01000302, 553, 2, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Harmony Grove Elementary,01000055, 419, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Miriam F McCarthy School,01000050, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Framingham-Potter Road,01000039, 459, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-1.5999999999999996,1,a-degr-i2,2022-23,Framingham-Framingham High School,01000515," 2,566", 123, 4.8,"","","","","","","","", 8.7, 6.6, 1.7, 1.0 8.0,5,a-degr-i2,2022-23,Framingham-King Elementary School,01000005, 330, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Brophy,01000006, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Charlotte A Dunning,01000007, 364, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Hemenway,01000015, 461, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Framingham-Barbieri Elementary,01000035, 583, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Framingham-Potter Road,01000039, 459, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Fuller Middle,01000305, 616, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Framingham-Cameron Middle School,01000302, 553, 2, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Harmony Grove Elementary,01000055, 419, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Miriam F McCarthy School,01000050, 452, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Framingham-Mary E Stapleton Elementary,01000045, 286, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Framingham-Barbieri Elementary,01000035, 583, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505, 388, 1, 0.3,"","","","","","", 0.0, 1.4, 0.0, 0.0, 0.0, 0.0 -7.6,5,a-degr-i2,2022-23,Franklin-Franklin High,01010505," 1,614", 4, 0.2,"","","","","","","","", 0.5, 0.5, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Franklin-Horace Mann,01010405, 376, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Franklin-Remington Middle,01010310, 367, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Franklin-Franklin High,01010505," 1,614", 4, 0.2,"","","","","","","","", 0.5, 0.5, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Franklin-Annie Sullivan Middle School,01010040, 318, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Franklin-Parmenter,01010032, 243, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Franklin-Oak Street Elementary,01010030, 307, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Franklin-Remington Middle,01010310, 367, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Franklin-J F Kennedy Memorial,01010013, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Franklin-Jefferson Elementary,01010010, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Franklin-Helen Keller Elementary,01010012, 449, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Franklin-Jefferson Elementary,01010010, 302, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Franklin-Oak Street Elementary,01010030, 307, 1, 0.3, 1.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605, 602, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 675, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +3.4000000000000004,3.4,a-degr-i2,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 726, 17, 2.3,"","","","","","","","", 5.1, 3.3, 1.1, 0.0 6.6,5,a-degr-i2,2022-23,Freetown-Lakeville-Freetown Elementary School,06650001, 298, 2, 0.7, 1.0, 1.1, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-Assawompset Elementary School,06650002, 379, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-George R Austin Intermediate School,06650015, 453, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305, 675, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -3.4000000000000004,3.4,a-degr-i2,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505, 726, 17, 2.3,"","","","","","","","", 5.1, 3.3, 1.1, 0.0 7.6,5,a-degr-i2,2022-23,Frontier-Frontier Regional,06700505, 599, 1, 0.2,"","","","","","", 0.0, 0.0, 0.0, 0.0, 1.0, 0.0 +8.0,5,a-degr-i2,2022-23,Gardner-Gardner Middle School,01030405, 489, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +4.0,4.0,a-degr-i2,2022-23,Gardner-Gardner High,01030505, 799, 16, 2.0,"","","","","","","", 0.0, 8.1, 0.0, 1.4, 0.0 7.8,5,a-degr-i2,2022-23,Gardner-Gardner Elementary School,01030001, 711, 1, 0.1, 0.0, 0.5, 0.0, 0.0,"","","","","","","","" -68.0,1,a-degr-i2,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515, 108, 41, 38.0,"","","","","","","","", 50.0, 26.3, 38.1, 40.5 -4.0,4.0,a-degr-i2,2022-23,Gardner-Gardner High,01030505, 799, 16, 2.0,"","","","","","","", 0.0, 8.1, 0.0, 1.4, 0.0 -8.0,5,a-degr-i2,2022-23,Gardner-Gardner Middle School,01030405, 489, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -4.2,4.2,a-degr-i2,2022-23,Gateway-Gateway Regional High,06720505, 161, 3, 1.9,"","","","","","","","", 2.3, 6.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Gateway-Gateway Regional Middle School,06720405, 188, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Gateway-Littleville Elementary School,06720143, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Gateway-Chester Elementary,06720059, 76, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Georgetown-Georgetown Middle School,01050305, 186, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +4.2,4.2,a-degr-i2,2022-23,Gateway-Gateway Regional High,06720505, 161, 3, 1.9,"","","","","","","","", 2.3, 6.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Georgetown-Penn Brook,01050010, 597, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.6,5,a-degr-i2,2022-23,Georgetown-Georgetown High School,01050505, 299, 2, 0.7,"","","","","","","","", 1.2, 1.5, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Gill-Montague-Turners Fall High,06740505, 189, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Georgetown-Georgetown Middle School,01050305, 186, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 5.8,5,a-degr-i2,2022-23,Gill-Montague-Gill Elementary,06740005, 95, 1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 8.3,"","","","","","" 8.0,5,a-degr-i2,2022-23,Gill-Montague-Hillcrest Elementary School,06740015, 59, 0, 0.0, 0.0,"","","","","","","","","","","" -6.2,5,a-degr-i2,2022-23,Gill-Montague-Sheffield Elementary School,06740050, 211, 2, 0.9,"", 0.0, 2.2, 1.8, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Gill-Montague-Turners Fall High,06740505, 189, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.0,5,a-degr-i2,2022-23,Gill-Montague-Great Falls Middle,06740310, 207, 1, 0.5,"","","","","", 0.0, 1.2, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Gill-Montague-Sheffield Elementary School,06740050, 211, 2, 0.9,"", 0.0, 2.2, 1.8, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305, 499, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,Gloucester-West Parish,01070050, 316, 2, 0.6, 0.0, 0.0, 0.0, 0.0, 2.7,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Gloucester-Ralph B O'Maley Middle,01070305, 622, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" -11.600000000000001,1,a-degr-i2,2022-23,Gloucester-Gloucester High,01070505, 796, 78, 9.8,"","","","","","","","", 12.6, 20.3, 4.0, 0.6 -8.0,5,a-degr-i2,2022-23,Gloucester-Veterans Memorial,01070045, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Gloucester-Plum Cove School,01070042, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Gloucester-East Gloucester Elementary,01070020, 151, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Gloucester-Veterans Memorial,01070045, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Gloucester-Beeman Memorial,01070010, 258, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Grafton-Grafton High School,01100505, 868, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Grafton-Grafton Middle,01100305, 524, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Grafton-North Street Elementary School,01100030, 548, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2022-23,Grafton-North Grafton Elementary,01100025, 114, 1, 0.9, 0.9,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Gloucester-East Gloucester Elementary,01070020, 151, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Grafton-South Grafton Elementary,01100005, 125, 0, 0.0, 0.0,"","","","","","","","","","","" +6.2,5,a-degr-i2,2022-23,Grafton-North Grafton Elementary,01100025, 114, 1, 0.9, 0.9,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Grafton-North Street Elementary School,01100030, 548, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Grafton-Grafton Middle,01100305, 524, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Grafton-Millbury Street Elementary School,01100200, 595, 1, 0.2,"", 0.0, 0.0, 1.1, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2022-23,Grafton-Grafton High School,01100505, 868, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 8.0,5,a-degr-i2,2022-23,Granby-Granby Jr Sr High School,01110505, 311, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Granby-East Meadow,01110004, 339, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -9.600000000000001,1,a-degr-i2,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900," 1,125", 99, 8.8, 4.9, 2.3, 0.0, 0.0, 1.7, 1.3, 3.9, 2.7, 24.1, 16.6, 9.8, 8.3 @@ -614,56 +2343,56 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605," 1,692", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605," 2,282", 4, 0.2,"","","","","","","","", 0.2, 0.0, 0.3, 0.2 5.0,5.0,a-degr-i2,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605," 2,095", 31, 1.5,"","","","","","","","", 1.1, 2.8, 1.7, 0.0 -5.8,5,a-degr-i2,2022-23,Greenfield-Greenfield High,01140505, 445, 5, 1.1,"","","","","","","", 0.0, 2.2, 3.0, 0.0, 0.0 6.6,5,a-degr-i2,2022-23,Greenfield-Federal Street School,01140010, 145, 1, 0.7, 2.6, 0.0, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Greenfield-Discovery School at Four Corners,01140025, 179, 2, 1.1, 2.2, 2.0, 0.0, 0.0,"","","","","","","","" -5.6,5,a-degr-i2,2022-23,Greenfield-Newton School,01140035, 161, 2, 1.2, 5.3, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Greenfield-Greenfield Middle,01140305, 300, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +5.8,5,a-degr-i2,2022-23,Greenfield-Greenfield High,01140505, 445, 5, 1.1,"","","","","","","", 0.0, 2.2, 3.0, 0.0, 0.0 +5.6,5,a-degr-i2,2022-23,Greenfield-Newton School,01140035, 161, 2, 1.2, 5.3, 0.0, 0.0, 0.0,"","","","","","","","" 7.2,5,a-degr-i2,2022-23,Groton-Dunstable-Swallow/Union School,06730005, 260, 1, 0.4, 0.0, 1.8, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Florence Roche School,06730010, 446, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505, 675, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Groton Dunstable Regional Middle,06730305, 723, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Groton-Dunstable-Florence Roche School,06730010, 446, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hadley-Hopkins Academy,01170505, 223, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Hadley-Hadley Elementary,01170015, 196, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Halifax-Halifax Elementary,01180005, 492, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505, 450, 1, 0.2,"","","","","","","","", 0.9, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Miles River Middle,06750310, 371, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Winthrop School,06750015, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Cutler School,06750010, 214, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Miles River Middle,06750310, 371, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Bessie Buker Elementary,06750007, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Hamilton-Wenham-Cutler School,06750010, 214, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 4.4,4.4,a-degr-i2,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305, 549, 10, 1.8,"","","","","", 0.0, 3.4, 0.0, 3.9, 2.5, 1.6, 1.5 3.0,3.0,a-degr-i2,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305, 367, 9, 2.5,"","","","","", 8.5, 0.0, 3.3, 1.9, 1.8, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Soule Road,06800030, 310, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Mile Tree Elementary,06800025, 141, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Green Meadows Elementary,06800005, 252, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Stony Hill School,06800050, 303, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Wilbraham Middle,06800310, 599, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505, 984, 7, 0.7,"","","","","","","","", 1.5, 0.8, 0.4, 0.0 +8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Wilbraham Middle,06800310, 599, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Stony Hill School,06800050, 303, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Hampden-Wilbraham-Green Meadows Elementary,06800005, 252, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Hampshire-Hampshire Regional High,06830505, 658, 1, 0.2,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.0 8.0,5,a-degr-i2,2022-23,Hancock-Hancock Elementary,01210005, 40, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Hanover-Center Elementary,01220005, 641, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Hanover-Cedar Elementary,01220004, 185, 0, 0.0, 0.0,"","","","","","","","","","","" -7.8,5,a-degr-i2,2022-23,Hanover-Hanover Middle,01220305, 801, 1, 0.1,"","","","", 0.0, 0.0, 0.0, 0.5,"","","","" 7.4,5,a-degr-i2,2022-23,Hanover-Hanover High,01220505, 667, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.5, 0.6 -8.0,5,a-degr-i2,2022-23,Harvard-Bromfield,01250505, 560, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2022-23,Hanover-Hanover Middle,01220305, 801, 1, 0.1,"","","","", 0.0, 0.0, 0.0, 0.5,"","","","" +8.0,5,a-degr-i2,2022-23,Hanover-Cedar Elementary,01220004, 185, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Hanover-Center Elementary,01220005, 641, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,Harvard-Hildreth Elementary School,01250005, 364, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Harvard-Bromfield,01250505, 560, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,Hatfield-Hatfield Elementary,01270005, 163, 1, 0.6, 0.0, 5.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Hatfield-Smith Academy,01270505, 133, 1, 0.8,"","","","","","", 0.0, 3.2, 0.0, 0.0, 0.0, 0.0 --7.4,1,a-degr-i2,2022-23,Haverhill-Haverhill High,01280505," 1,914", 148, 7.7,"","","","","","","","", 16.5, 6.2, 4.0, 1.0 -7.6,5,a-degr-i2,2022-23,Haverhill-Bradford Elementary,01280008, 412, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" -6.4,5,a-degr-i2,2022-23,Haverhill-Golden Hill,01280026, 380, 3, 0.8, 1.0, 1.2, 1.0, 0.0,"","","","","","","","" -7.8,5,a-degr-i2,2022-23,Haverhill-Caleb Dustin Hunking School,01280030, 990, 1, 0.1, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Haverhill-Tilton Upper Middle School,01280105, 171, 1, 0.6,"","","", 0.0, 1.4,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Haverhill-Consentino Middle School,01280100, 700, 1, 0.1,"","","","", 0.0, 0.5, 0.0, 0.0,"","","","" +5.6,5,a-degr-i2,2022-23,Haverhill-Gateway Academy,01280515, 81, 1, 1.2,"","","","","","", 0.0, 0.0, 0.0, 3.7, 0.0, 0.0 -4.6,1,a-degr-i2,2022-23,Haverhill-Greenleaf Academy,01280033, 32, 2, 6.3,"","","","","","","", 11.1,"","", 0.0,"" +7.8,5,a-degr-i2,2022-23,Haverhill-Caleb Dustin Hunking School,01280030, 990, 1, 0.1, 0.0, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Haverhill-Golden Hill,01280026, 380, 3, 0.8, 1.0, 1.2, 1.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Haverhill-Bradford Elementary,01280008, 412, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Haverhill-Walnut Square,01280080, 79, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Haverhill-John G Whittier,01280085, 484, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-7.4,1,a-degr-i2,2022-23,Haverhill-Haverhill High,01280505," 1,914", 148, 7.7,"","","","","","","","", 16.5, 6.2, 4.0, 1.0 8.0,5,a-degr-i2,2022-23,Haverhill-Dr Paul Nettle,01280050, 570, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Haverhill-Pentucket Lake Elementary,01280054, 447, 1, 0.2, 0.0, 1.2, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Haverhill-Silver Hill Elementary School,01280067, 392, 1, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Haverhill-Bartlett School and Assessment Center,01280073, 29, 0, 0.0,"","","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Haverhill-Tilton,01280075, 240, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Haverhill-Walnut Square,01280080, 79, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Haverhill-John G Whittier,01280085, 484, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.8,5,a-degr-i2,2022-23,Haverhill-Consentino Middle School,01280100, 700, 1, 0.1,"","","","", 0.0, 0.5, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Haverhill-Tilton Upper Middle School,01280105, 171, 1, 0.6,"","","", 0.0, 1.4,"","","","","","","" -5.6,5,a-degr-i2,2022-23,Haverhill-Gateway Academy,01280515, 81, 1, 1.2,"","","","","","", 0.0, 0.0, 0.0, 3.7, 0.0, 0.0 5.0,5.0,a-degr-i2,2022-23,Hawlemont-Hawlemont Regional,06850005, 65, 1, 1.5, 0.0, 8.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" 2.8,2.8,a-degr-i2,2022-23,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305, 114, 3, 2.6,"","","","","", 3.1, 2.9, 2.1,"","","","" 8.0,5,a-degr-i2,2022-23,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 270, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" @@ -674,36 +2403,36 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.8,5,a-degr-i2,2022-23,Hingham-Hingham High,01310505," 1,166", 7, 0.6,"","","","","","","","", 0.7, 0.7, 0.3, 0.6 8.0,5,a-degr-i2,2022-23,Hingham-East Elementary School,01310005, 344, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Hingham-Wm L Foster Elementary,01310010, 342, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Holbrook-John F Kennedy,01330018, 523, 1, 0.2, 0.0, 0.0, 0.0, 0.8, 0.0,"","","","","","","" 6.2,5,a-degr-i2,2022-23,Holbrook-Holbrook Middle High School,01330505, 633, 6, 0.9,"","","","","", 0.0, 0.9, 1.0, 1.4, 2.8, 1.3, 0.0 +7.6,5,a-degr-i2,2022-23,Holbrook-John F Kennedy,01330018, 523, 1, 0.2, 0.0, 0.0, 0.0, 0.8, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Holland-Holland Elementary,01350005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Holliston-Robert H. Adams Middle School,01360305, 655, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holliston-Placentino Elementary,01360010, 426, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Holliston-Miller School,01360007, 604, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Holliston-Robert H. Adams Middle School,01360305, 655, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Holliston-Holliston High,01360505, 806, 5, 0.6,"","","","","","","","", 1.4, 0.0, 0.0, 1.0 -2.2,2.2,a-degr-i2,2022-23,Holyoke-Holyoke High,01370505," 1,515", 44, 2.9,"","","","","","","","", 0.0, 0.0, 0.0, 11.0 -4.8,4.8,a-degr-i2,2022-23,Holyoke-H.B. Lawrence School,01370070, 124, 2, 1.6, 0.0, 3.7, 0.0,"","","","","","","","","" -6.6,5,a-degr-i2,2022-23,Holyoke-Holyoke Middle School,01370325, 281, 2, 0.7,"","","","","", 1.2, 1.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Holyoke-Holyoke STEM Academy,01370320, 290, 1, 0.3,"","","","","", 0.0, 0.0, 1.0,"","","","" -4.0,4.0,a-degr-i2,2022-23,Holyoke-Joseph Metcalf School,01370003, 300, 6, 2.0, 2.4, 9.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-Lt Elmer J McMahon Elementary,01370015, 291, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +4.0,4.0,a-degr-i2,2022-23,Holyoke-Joseph Metcalf School,01370003, 300, 6, 2.0, 2.4, 9.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-Morgan Full Service Community School,01370025, 183, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-William R. Peck School,01370030, 192, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-Kelly Elementary,01370040, 259, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Holyoke-E N White Elementary,01370045, 267, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Holyoke-Lt Clayre Sullivan Elementary,01370055, 334, 1, 0.3, 2.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 5.8,5,a-degr-i2,2022-23,Holyoke-Maurice A Donahue Elementary,01370060, 282, 3, 1.1, 5.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.8,4.8,a-degr-i2,2022-23,Holyoke-H.B. Lawrence School,01370070, 124, 2, 1.6, 0.0, 3.7, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2022-23,Holyoke-Holyoke STEM Academy,01370320, 290, 1, 0.3,"","","","","", 0.0, 0.0, 1.0,"","","","" +6.6,5,a-degr-i2,2022-23,Holyoke-Holyoke Middle School,01370325, 281, 2, 0.7,"","","","","", 1.2, 1.0, 0.0,"","","","" +2.2,2.2,a-degr-i2,2022-23,Holyoke-Holyoke High,01370505," 1,515", 44, 2.9,"","","","","","","","", 0.0, 0.0, 0.0, 11.0 2.0,2.0,a-degr-i2,2022-23,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 607, 18, 3.0, 2.7, 7.0, 7.1, 2.3, 1.3, 2.3, 1.3, 0.0,"","","","" 0.5999999999999996,1,a-degr-i2,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505, 323, 12, 3.7,"","","","","","","", 0.0, 9.8, 8.2, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 257, 6, 2.3, 4.1, 1.5, 1.1,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hoosac Valley Regional-Hoosac Valley Middle School,06030315, 288, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" 8.0,5,a-degr-i2,2022-23,Hopedale-Memorial,01380010, 474, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Hopedale-Hopedale Jr Sr High,01380505, 436, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2022-23,Hopkinton-Hopkinton High,01390505," 1,229", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.4, 0.3 7.4,5,a-degr-i2,2022-23,Hopkinton-Marathon Elementary School,01390005, 295, 1, 0.3, 0.3,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hopkinton-Elmwood,01390010, 627, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hopkinton-Hopkins Elementary School,01390015, 639, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Hopkinton-Hopkinton Middle School,01390305, 972, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Hopkinton-Hopkinton High,01390505," 1,229", 2, 0.2,"","","","","","","","", 0.0, 0.0, 0.4, 0.3 7.0,5,a-degr-i2,2022-23,Hudson-Mulready Elementary,01410007, 183, 1, 0.5, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hudson-Forest Avenue Elementary,01410015, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Hudson-C A Farley,01410030, 331, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" @@ -714,128 +2443,121 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Hull-Memorial Middle,01420305, 172, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305, 793, 7, 0.9,"","","","", 0.0, 0.0, 0.0, 0.0, 1.9, 0.9, 1.1, 3.5 8.0,5,a-degr-i2,2022-23,Ipswich-Winthrop,01440015, 291, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Ipswich-Ipswich High,01440505, 496, 3, 0.6,"","","","","","","","", 1.8, 0.0, 0.0, 0.8 8.0,5,a-degr-i2,2022-23,Ipswich-Paul F Doyon Memorial,01440007, 290, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Ipswich-Ipswich High,01440505, 496, 3, 0.6,"","","","","","","","", 1.8, 0.0, 0.0, 0.8 8.0,5,a-degr-i2,2022-23,Ipswich-Ipswich Middle School,01440305, 362, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 511, 3, 0.6, 0.0, 0.0, 1.4, 1.4, 0.0, 0.0, 0.0, 1.9,"","","","" 7.2,5,a-degr-i2,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010," 1,487", 6, 0.4, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0, 0.8, 0.0 -6.8,5,a-degr-i2,2022-23,King Philip-King Philip Regional High,06900505," 1,136", 7, 0.6,"","","","","","","","", 0.3, 0.7, 1.0, 0.4 8.0,5,a-degr-i2,2022-23,King Philip-King Philip Middle School,06900510, 670, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,King Philip-King Philip Regional High,06900505," 1,136", 7, 0.6,"","","","","","","","", 0.3, 0.7, 1.0, 0.4 8.0,5,a-degr-i2,2022-23,Kingston-Kingston Elementary,01450005, 318, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Kingston-Kingston Intermediate,01450020, 593, 1, 0.2,"","", 0.0, 0.7, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2022-23,Lawrence-James F Hennessey,01490020, 146, 1, 0.7, 1.4, 0.0,"","","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Lawrence-Alexander B Bruce,01490015, 409, 1, 0.2,"","", 1.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Gerard A. Guilmette,01490022, 481, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Guilmette Middle School,01490025, 459, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Parthum Middle School,01490027, 568, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Lawrence-Francis M Leahy,01490040, 380, 1, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Lawrence-Oliver Elementary School,01490048, 433, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lawrence-Oliver Middle School,01490049, 351, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.2,5,a-degr-i2,2022-23,Lawrence-Edward F. Parthum,01490053, 571, 8, 1.4, 3.3, 1.4, 0.7, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-John K Tarbox,01490075, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lawrence-Emily G Wetherbee,01490080, 457, 1, 0.2, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Spark Academy,01490085, 437, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Lawrence-Leonard Middle School,01490090, 327, 1, 0.3,"","","","","", 0.0, 0.9, 0.0,"","","","" -6.4,5,a-degr-i2,2022-23,Lawrence-Lawrence High School,01490515," 3,061", 23, 0.8,"","","","","","","","", 2.2, 0.2, 0.0, 0.1 -8.0,5,a-degr-i2,2022-23,Lawrence-Frost Middle School,01490525, 514, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" --32.8,1,a-degr-i2,2022-23,Lawrence-High School Learning Center,01490536, 309, 63, 20.4,"","","","","","","","","", 16.7, 0.0, 27.7 -8.0,5,a-degr-i2,2022-23,Lawrence-School for Exceptional Studies,01490537, 91, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"" +8.0,5,a-degr-i2,2022-23,Lawrence-Guilmette Middle School,01490025, 459, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Gerard A. Guilmette,01490022, 481, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Lawrence-James F Hennessey,01490020, 146, 1, 0.7, 1.4, 0.0,"","","","","","","","","","" -24.200000000000003,1,a-degr-i2,2022-23,Lawrence-RISE Academy,01490615, 56, 9, 16.1,"","","","","","","","","", 0.0, 5.3, 36.4 -7.2,5,a-degr-i2,2022-23,Lawrence-Robert Frost,01490018, 474, 2, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lawrence-Arlington Middle School,01490017, 575, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-School for Exceptional Studies,01490537, 91, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"" +-32.8,1,a-degr-i2,2022-23,Lawrence-High School Learning Center,01490536, 309, 63, 20.4,"","","","","","","","","", 16.7, 0.0, 27.7 +8.0,5,a-degr-i2,2022-23,Lawrence-Frost Middle School,01490525, 514, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +6.4,5,a-degr-i2,2022-23,Lawrence-Lawrence High School,01490515," 3,061", 23, 0.8,"","","","","","","","", 2.2, 0.2, 0.0, 0.1 +7.4,5,a-degr-i2,2022-23,Lawrence-Leonard Middle School,01490090, 327, 1, 0.3,"","","","","", 0.0, 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Spark Academy,01490085, 437, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Lawrence-Emily G Wetherbee,01490080, 457, 1, 0.2, 0.0, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-John K Tarbox,01490075, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2022-23,Lawrence-Edward F. Parthum,01490053, 571, 8, 1.4, 3.3, 1.4, 0.7, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2022-23,Lawrence-South Lawrence East Elementary School,01490004, 653, 3, 0.5, 1.6, 0.0, 0.8, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lawrence-Arlington Elementary,01490009, 466, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Lawrence-Alexander B Bruce,01490015, 409, 1, 0.2,"","", 1.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Arlington Middle School,01490017, 575, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Lawrence-Robert Frost,01490018, 474, 2, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Lawrence-Oliver Elementary School,01490048, 433, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lawrence-Parthum Middle School,01490027, 568, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 650, 3, 0.5, 1.0, 2.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 592, 1, 0.2, 1.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Lee-Lee Elementary,01500025, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,Lee-Lee Middle/High School,01500505, 320, 2, 0.6,"","","","","","", 1.8, 0.0, 2.4, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Lee-Lee Elementary,01500025, 272, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.6,5,a-degr-i2,2022-23,Leicester-Leicester High,01510505, 414, 1, 0.2,"","","","","","","","", 0.9, 0.0, 0.0, 0.0 6.0,5,a-degr-i2,2022-23,Leicester-Leicester Elementary,01510005, 402, 4, 1.0, 1.8, 1.1, 0.0, 1.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Leicester-Leicester Middle,01510015, 409, 1, 0.2,"","","","", 0.0, 0.0, 1.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Leicester-Leicester High,01510505, 414, 1, 0.2,"","","","","","","","", 0.9, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Lenox-Lenox Memorial High,01520505, 428, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0 8.0,5,a-degr-i2,2022-23,Lenox-Morris,01520015, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-16.0,1,a-degr-i2,2022-23,Leominster-Leominster Center for Excellence,01530515, 50, 6, 12.0,"","","","","","","","", 0.0, 36.4, 6.7, 10.0 +8.0,5,a-degr-i2,2022-23,Leominster-Samoset School,01530045, 504, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Leominster-Sky View Middle School,01530320, 886, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Leominster-Northwest,01530030, 688, 3, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Leominster-Fall Brook,01530007, 551, 1, 0.2, 0.0, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2022-23,Leominster-Leominster High School,01530505," 1,034", 9, 0.9,"","","","","","","","", 2.2, 0.7, 0.7, 0.7 7.4,5,a-degr-i2,2022-23,Leominster-Center For Technical Education Innovation,01530605, 788, 2, 0.3,"","","","","","","","", 0.3, 0.0, 0.0, 0.7 7.4,5,a-degr-i2,2022-23,Leominster-Frances Drake School,01530010, 400, 1, 0.3, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Leominster-Johnny Appleseed,01530025, 576, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Leominster-Northwest,01530030, 688, 3, 0.4, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Leominster-Samoset School,01530045, 504, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Leominster-Sky View Middle School,01530320, 886, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2022-23,Leominster-Leominster High School,01530505," 1,034", 9, 0.9,"","","","","","","","", 2.2, 0.7, 0.7, 0.7 --16.0,1,a-degr-i2,2022-23,Leominster-Leominster Center for Excellence,01530515, 50, 6, 12.0,"","","","","","","","", 0.0, 36.4, 6.7, 10.0 8.0,5,a-degr-i2,2022-23,Leverett-Leverett Elementary,01540005, 111, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Lexington High,01550505," 2,303", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Lexington-Bridge,01550006, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Bowman,01550008, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Joseph Estabrook,01550010, 472, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Lexington-Fiske,01550015, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Harrington,01550030, 344, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Maria Hastings,01550035, 531, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Jonas Clarke Middle,01550305, 823, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Bridge,01550006, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Bowman,01550008, 387, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lexington-Wm Diamond Middle,01550310, 942, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Lexington High,01550505," 2,303", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Lexington-Joseph Estabrook,01550010, 472, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lexington-Fiske,01550015, 298, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305, 411, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","" +8.0,5,a-degr-i2,2022-23,Lincoln-Lincoln School,01570025, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Lincoln-Hanscom Middle,01570305, 224, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Lincoln-Hanscom Primary,01570006, 147, 1, 0.7, 1.9, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lincoln-Lincoln School,01570025, 465, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505," 1,479", 4, 0.3,"","","","","","","","", 0.5, 0.3, 0.3, 0.0 -8.0,5,a-degr-i2,2022-23,Littleton-Littleton Middle School,01580305, 385, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Littleton-Littleton High School,01580505, 476, 2, 0.4,"","","","","","","","", 0.8, 0.0, 0.0, 0.9 8.0,5,a-degr-i2,2022-23,Littleton-Shaker Lane Elementary,01580005, 248, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Littleton-Littleton High School,01580505, 476, 2, 0.4,"","","","","","","","", 0.8, 0.0, 0.0, 0.9 7.4,5,a-degr-i2,2022-23,Littleton-Russell St Elementary,01580015, 389, 1, 0.3,"","", 0.8, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Longmeadow-Blueberry Hill,01590005, 331, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Longmeadow-Center,01590010, 358, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Longmeadow-Wolf Swamp Road,01590025, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Littleton-Littleton Middle School,01580305, 385, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Longmeadow-Williams Middle,01590305, 282, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Longmeadow-Longmeadow High,01590505, 904, 3, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.4 +8.0,5,a-degr-i2,2022-23,Longmeadow-Wolf Swamp Road,01590025, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Longmeadow-Glenbrook Middle,01590017, 332, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Longmeadow-Center,01590010, 358, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Longmeadow-Blueberry Hill,01590005, 331, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lowell-Laura Lee Therapeutic Day School,01600085, 14, 0, 0.0,"","","","","","","","","","","","" +-69.2,1,a-degr-i2,2022-23,Lowell-The Career Academy,01600515, 88, 34, 38.6,"","","","","","","","", 48.4, 10.0, 23.1, 44.1 +4.2,4.2,a-degr-i2,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 54, 1, 1.9,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Kathryn P. Stoklosa Middle School,01600360, 633, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 1.1,"","","","" +6.2,5,a-degr-i2,2022-23,Lowell-Dr An Wang School,01600345, 659, 6, 0.9,"","","","", 0.0, 1.2, 1.9, 0.6,"","","","" +6.8,5,a-degr-i2,2022-23,Lowell-Abraham Lincoln,01600020, 363, 2, 0.6, 2.3, 0.0, 0.0, 0.0,"","","","","","","","" +5.8,5,a-degr-i2,2022-23,Lowell-Moody Elementary,01600027, 178, 2, 1.1, 0.0, 0.0, 2.3, 2.3,"","","","","","","","" +6.8,5,a-degr-i2,2022-23,Lowell-Charles W Morey,01600030, 350, 2, 0.6, 0.0, 1.2, 1.2, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Lowell-Pyne Arts,01600018, 427, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Greenhalge,01600015, 351, 1, 0.3, 0.0, 0.0, 1.2, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Lowell-James Sullivan Middle School,01600340, 592, 2, 0.3,"","","","", 0.8, 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2022-23,Lowell-Henry J Robinson Middle,01600330, 603, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Pawtucketville Memorial,01600036, 348, 1, 0.3, 0.0, 0.0, 0.0, 1.0,"","","","","","","","" +5.8,5,a-degr-i2,2022-23,Lowell-Peter W Reilly,01600040, 372, 4, 1.1, 2.1, 2.2, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lowell-John J Shaughnessy,01600050, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Lowell-Washington,01600055, 174, 2, 1.1, 2.6, 0.0, 2.4, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lowell-S Christa McAuliffe Elementary,01600075, 363, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 3.2,3.2,a-degr-i2,2022-23,Lowell-Charlotte M Murkland Elementary,01600080, 332, 8, 2.4, 1.2, 7.5, 1.3, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Lowell-Laura Lee Therapeutic Day School,01600085, 14, 0, 0.0,"","","","","","","","","","","","" +-2.1999999999999993,1,a-degr-i2,2022-23,Lowell-Lowell High,01600505," 3,142", 159, 5.1,"","","","","","","","", 10.1, 4.0, 1.9, 2.4 7.6,5,a-degr-i2,2022-23,Lowell-Bartlett Community Partnership,01600090, 410, 1, 0.2, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Lowell-B.F. Butler Middle School,01600310, 514, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Lowell-James S Daley Middle School,01600315, 674, 3, 0.4,"","","","", 0.0, 0.6, 0.0, 1.1,"","","","" -10.2,1,a-degr-i2,2022-23,Lowell-Leblanc Therapeutic Day School,01600320, 33, 3, 9.1,"","","","","","","","", 16.7, 0.0,"", 16.7 --69.2,1,a-degr-i2,2022-23,Lowell-The Career Academy,01600515, 88, 34, 38.6,"","","","","","","","", 48.4, 10.0, 23.1, 44.1 --2.1999999999999993,1,a-degr-i2,2022-23,Lowell-Lowell High,01600505," 3,142", 159, 5.1,"","","","","","","","", 10.1, 4.0, 1.9, 2.4 -7.4,5,a-degr-i2,2022-23,Lowell-Kathryn P. Stoklosa Middle School,01600360, 633, 2, 0.3,"","","","", 0.0, 0.0, 0.0, 1.1,"","","","" -8.0,5,a-degr-i2,2022-23,Lowell-Henry J Robinson Middle,01600330, 603, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Lowell-James Sullivan Middle School,01600340, 592, 2, 0.3,"","","","", 0.8, 0.0, 0.0, 0.6,"","","","" -5.8,5,a-degr-i2,2022-23,Lowell-Peter W Reilly,01600040, 372, 4, 1.1, 2.1, 2.2, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Lowell-Pawtucketville Memorial,01600036, 348, 1, 0.3, 0.0, 0.0, 0.0, 1.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Lowell-Charles W Morey,01600030, 350, 2, 0.6, 0.0, 1.2, 1.2, 0.0,"","","","","","","","" -6.2,5,a-degr-i2,2022-23,Lowell-Dr An Wang School,01600345, 659, 6, 0.9,"","","","", 0.0, 1.2, 1.9, 0.6,"","","","" -6.8,5,a-degr-i2,2022-23,Lowell-Abraham Lincoln,01600020, 363, 2, 0.6, 2.3, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Lowell-Pyne Arts,01600018, 427, 1, 0.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","" -7.4,5,a-degr-i2,2022-23,Lowell-Greenhalge,01600015, 351, 1, 0.3, 0.0, 0.0, 1.2, 0.0,"","","","","","","","" -6.2,5,a-degr-i2,2022-23,Lowell-Joseph McAvinnue,01600010, 332, 3, 0.9, 1.2, 1.2, 0.0, 1.1,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Lowell-Rogers STEM Academy,01600005, 773, 2, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Lowell-Dr Gertrude Bailey,01600002, 344, 2, 0.6, 2.4, 0.0, 0.0, 0.0,"","","","","","","","" -4.2,4.2,a-degr-i2,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 54, 1, 1.9,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" -5.8,5,a-degr-i2,2022-23,Lowell-Moody Elementary,01600027, 178, 2, 1.1, 0.0, 0.0, 2.3, 2.3,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Lowell-Rogers STEM Academy,01600005, 773, 2, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.9, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Lowell-Joseph McAvinnue,01600010, 332, 3, 0.9, 1.2, 1.2, 0.0, 1.1,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 674, 2, 0.3, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -25.799999999999997,1,a-degr-i2,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505, 83, 14, 16.9,"","","","","","","","", 76.9, 6.7, 13.6, 0.0 1.7999999999999998,1.8,a-degr-i2,2022-23,Ludlow-Ludlow Senior High,01610505, 794, 25, 3.1,"","","","","","","","", 8.8, 2.5, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Ludlow-Paul R Baird Middle,01610305, 516, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Ludlow-East Street Elementary School,01610010, 134, 0, 0.0, 0.0,"","","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Ludlow-Harris Brook Elementary School,01610665, 642, 1, 0.2,"", 0.0, 0.6, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Ludlow-East Street Elementary School,01610010, 134, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Ludlow-Paul R Baird Middle,01610305, 516, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Lunenburg-Lunenburg Primary School,01620010, 236, 1, 0.4, 0.8, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lunenburg-Turkey Hill Elementary School,01620025, 353, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Lunenburg-Lunenburg Middle School,01620305, 380, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Lunenburg-Lunenburg High,01620505, 440, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 1.0 +7.4,5,a-degr-i2,2022-23,Lunenburg-Lunenburg Middle School,01620305, 380, 1, 0.3,"","","","","", 0.8, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Lynn-Washington Elementary School,01630005, 362, 2, 0.6, 0.0, 0.0, 1.3, 0.0, 1.4,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynn-Aborn,01630011, 186, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lynn-Lynn Vocational Technical Institute,01630605," 1,402", 3, 0.2,"","","","","","","", 0.0, 0.0, 0.3, 0.4, 0.4 -8.0,5,a-degr-i2,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575, 73, 0, 0.0,"","","","","","","","", 0.0,"","","" -2.8,2.8,a-degr-i2,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 78, 2, 2.6,"","","","","","", 0.0, 0.0, 5.9, 0.0, 0.0, 4.8 7.4,5,a-degr-i2,2022-23,Lynn-A Drewicz Elementary,01630016, 383, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynn-Brickett Elementary,01630020, 271, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Lynn-Julia F Callahan,01630030, 273, 2, 0.7, 1.9, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lynn-Cobbet Elementary,01630035, 503, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Lynn-Wm P Connery,01630040, 436, 6, 1.4, 0.0, 1.3, 2.4, 3.8, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Lynn-E J Harrington,01630045, 462, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Lynn-Robert L Ford,01630050, 404, 6, 1.5, 2.7, 2.6, 1.3, 1.3, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Lynn-Hood,01630055, 372, 2, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Lynn-Ingalls,01630060, 524, 1, 0.2, 0.0, 0.8, 0.0, 0.0, 0.0,"","","","","","","" 5.4,5,a-degr-i2,2022-23,Lynn-Lincoln-Thomson,01630070, 158, 2, 1.3, 0.0, 5.9, 0.0, 0.0, 0.0,"","","","","","","" @@ -850,97 +2572,104 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.6,5,a-degr-i2,2022-23,Lynn-Pickering Middle,01630420, 552, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" 4.6,4.6,a-degr-i2,2022-23,Lynn-Classical High,01630505," 1,818", 30, 1.7,"","","","","","","","", 2.5, 2.1, 1.7, 0.0 -4.4,1,a-degr-i2,2022-23,Lynn-Lynn English High,01630510," 2,175", 135, 6.2,"","","","","","","","", 5.2, 8.8, 7.4, 1.2 -7.8,5,a-degr-i2,2022-23,Lynnfield-Lynnfield Middle School,01640405, 713, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" +2.8,2.8,a-degr-i2,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525, 78, 2, 2.6,"","","","","","", 0.0, 0.0, 5.9, 0.0, 0.0, 4.8 +7.6,5,a-degr-i2,2022-23,Lynn-Cobbet Elementary,01630035, 503, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575, 73, 0, 0.0,"","","","","","","","", 0.0,"","","" +7.6,5,a-degr-i2,2022-23,Lynn-Lynn Vocational Technical Institute,01630605," 1,402", 3, 0.2,"","","","","","","", 0.0, 0.0, 0.3, 0.4, 0.4 +5.2,5,a-degr-i2,2022-23,Lynn-Wm P Connery,01630040, 436, 6, 1.4, 0.0, 1.3, 2.4, 3.8, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Lynn-E J Harrington,01630045, 462, 1, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Lynn-Robert L Ford,01630050, 404, 6, 1.5, 2.7, 2.6, 1.3, 1.3, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynnfield-Summer Street,01640020, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,Lynnfield-Huckleberry Hill,01640010, 374, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Lynnfield-Lynnfield High,01640505, 565, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.8,5,a-degr-i2,2022-23,Lynnfield-Lynnfield Middle School,01640405, 713, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505, 100, 0, 0.0,"","","","","","","","","","", 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Malden-Forestdale,01650027, 533, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +-2.0,1,a-degr-i2,2022-23,Malden-Malden High,01650505," 1,844", 93, 5.0,"","","","","","","","", 6.0, 4.9, 5.9, 3.1 8.0,5,a-degr-i2,2022-23,Malden-Linden,01650047, 738, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Malden-Beebe,01650003, 789, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Malden-Forestdale,01650027, 533, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Malden-Ferryway,01650013, 795, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Malden-Beebe,01650003, 789, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Malden-Salemwood,01650057, 928, 2, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0,"","","","" --2.0,1,a-degr-i2,2022-23,Malden-Malden High,01650505," 1,844", 93, 5.0,"","","","","","","","", 6.0, 4.9, 5.9, 3.1 -8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 283, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Essex Elementary,06980020, 197, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 219, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510, 416, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Mansfield-Jordan/Jackson Elementary,01670014, 704, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030, 283, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.0,5,a-degr-i2,2022-23,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 219, 1, 0.5, 2.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Mansfield-Everett W Robinson,01670007, 518, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Mansfield-Harold L Qualters Middle,01670035, 790, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Mansfield-Jordan/Jackson Elementary,01670014, 704, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Mansfield-Mansfield High,01670505," 1,086", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.7 -7.6,5,a-degr-i2,2022-23,Mansfield-Everett W Robinson,01670007, 518, 1, 0.2, 0.4, 0.0,"","","","","","","","","","" -74.0,1,a-degr-i2,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505, 251, 103, 41.0,"","","","","","","","", 36.1, 41.8, 43.2, 40.0 8.0,5,a-degr-i2,2022-23,Marblehead-Glover,01680020, 215, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Marblehead-Marblehead High,01680505, 877, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Marblehead-Marblehead Veterans Middle School,01680300, 418, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Marblehead-Lucretia and Joseph Brown School,01680030, 314, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Marblehead-Marblehead Veterans Middle School,01680300, 418, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +7.6,5,a-degr-i2,2022-23,Marblehead-Marblehead High,01680505, 877, 2, 0.2,"","","","","","","","", 0.0, 0.4, 0.0, 0.4 8.0,5,a-degr-i2,2022-23,Marblehead-Village School,01680016, 555, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 6.2,5,a-degr-i2,2022-23,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305, 224, 2, 0.9,"","","", 0.0, 0.0, 2.0, 2.8, 0.0,"","","","" 6.2,5,a-degr-i2,2022-23,Marion-Sippican,01690005, 331, 3, 0.9, 0.0, 3.8, 1.9, 0.0, 0.0, 0.0,"","","","","","" 6.0,5,a-degr-i2,2022-23,Marlborough-Marlborough High,01700505," 1,060", 11, 1.0,"","","","","","","","", 0.9, 1.0, 1.2, 1.0 -8.0,5,a-degr-i2,2022-23,Marlborough-1 LT Charles W. Whitcomb School,01700045," 1,044", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Marlborough-Charles Jaworek School,01700030, 548, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Marlborough-Richer,01700025, 453, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Marlborough-Goodnow Brothers Elementary School,01700020, 663, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Marlborough-Francis J Kane,01700008, 412, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Marshfield-Eames Way School,01710005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Marshfield-Marshfield High,01710505," 1,187", 6, 0.5,"","","","","","","","", 1.0, 0.3, 0.4, 0.3 -7.0,5,a-degr-i2,2022-23,Marshfield-South River,01710010, 204, 1, 0.5, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Marlborough-Richer,01700025, 453, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Marlborough-Charles Jaworek School,01700030, 548, 1, 0.2, 0.0, 0.0, 0.0, 0.9, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Marlborough-1 LT Charles W. Whitcomb School,01700045," 1,044", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Marshfield-Daniel Webster,01710015, 227, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Marshfield-South River,01710010, 204, 1, 0.5, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Marshfield-Gov Edward Winslow,01710020, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Marshfield-Martinson Elementary,01710025, 388, 2, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Marshfield-Marshfield High,01710505," 1,187", 6, 0.5,"","","","","","","","", 1.0, 0.3, 0.4, 0.3 8.0,5,a-degr-i2,2022-23,Marshfield-Furnace Brook Middle,01710310, 868, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Marshfield-Eames Way School,01710005, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505, 753, 8, 1.1,"","","","","","","","", 2.9, 0.0, 0.0, 1.1 5.6,5,a-degr-i2,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 170, 2, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 10.0, 11.1 6.6,5,a-degr-i2,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District)-Martin Luther King, Jr. Charter School of Excellence",04920005, 298, 2, 0.7, 0.0, 2.9, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Masconomet-Masconomet Regional Middle School,07050405, 559, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Masconomet-Masconomet Regional High School,07050505, 990, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Mashpee-Quashnet School,01720035, 398, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Masconomet-Masconomet Regional Middle School,07050405, 559, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 5.6,5,a-degr-i2,2022-23,Mashpee-Mashpee Middle-High School,01720505, 655, 8, 1.2,"","","","","","", 0.0, 0.0, 1.9, 1.7, 2.2, 1.8 7.0,5,a-degr-i2,2022-23,Mashpee-Kenneth Coombs School,01720005, 204, 1, 0.5, 1.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Mashpee-Quashnet School,01720035, 398, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.0,5,a-degr-i2,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505," 1,044", 10, 1.0, 2.1, 1.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.4, 3.9, 1.4, 2.9 8.0,5,a-degr-i2,2022-23,Mattapoisett-Center,01730005, 159, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Mattapoisett-Old Hammondtown,01730010, 192, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Maynard-Green Meadow,01740010, 272, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Maynard-Maynard High,01740505, 315, 1, 0.3,"","","","","","","","", 1.2, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Maynard-Fowler School,01740305, 459, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Medfield-Memorial School,01750003, 205, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Medfield-Dale Street,01750005, 389, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Medfield-Ralph Wheelock School,01750007, 380, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Medfield-Thomas Blake Middle,01750305, 582, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Medfield-Medfield Senior High,01750505, 740, 3, 0.4,"","","","","","","","", 1.1, 0.6, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Medford-John J McGlynn Elementary School,01760068, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Medford-Brooks School,01760130, 420, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Medford-Missituk Elementary School,01760140, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Medford-Milton Fuller Roberts,01760150, 435, 5, 1.1, 2.9, 0.0, 1.3, 1.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medfield-Memorial School,01750003, 205, 0, 0.0, 0.0,"","","","","","","","","","","" +-47.6,1,a-degr-i2,2022-23,Medford-Curtis-Tufts,01760510, 18, 5, 27.8,"","","","","","","","","","","", 50.0 7.6,5,a-degr-i2,2022-23,Medford-Madeleine Dugger Andrews,01760315, 456, 1, 0.2,"","","","","", 0.0, 0.0, 0.7,"","","","" 8.0,5,a-degr-i2,2022-23,Medford-John J. McGlynn Middle School,01760320, 461, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" --47.6,1,a-degr-i2,2022-23,Medford-Curtis-Tufts,01760510, 18, 5, 27.8,"","","","","","","","","","","", 50.0 3.5999999999999996,3.6,a-degr-i2,2022-23,Medford-Medford High,01760505," 1,250", 27, 2.2,"","","","","","","","", 2.6, 3.0, 2.7, 0.3 -8.0,5,a-degr-i2,2022-23,Medway-John D Mc Govern Elementary,01770013, 153, 0, 0.0, 0.0,"","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Medway-Medway Middle,01770305, 653, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +5.8,5,a-degr-i2,2022-23,Medford-Milton Fuller Roberts,01760150, 435, 5, 1.1, 2.9, 0.0, 1.3, 1.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medford-Missituk Elementary School,01760140, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medford-Brooks School,01760130, 420, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medford-John J McGlynn Elementary School,01760068, 404, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Medway-Burke/Memorial Elementary School,01770015, 484, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2022-23,Medway-Medway High,01770505, 613, 3, 0.5,"","","","","","","","", 1.4, 0.0, 0.7, 0.0 -8.0,5,a-degr-i2,2022-23,Melrose-Herbert Clark Hoover,01780017, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Melrose-Lincoln,01780020, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Melrose-Melrose High,01780505, 921, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 -8.0,5,a-degr-i2,2022-23,Melrose-Melrose Middle,01780305, 869, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Melrose-Winthrop,01780050, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Medway-John D Mc Govern Elementary,01770013, 153, 0, 0.0, 0.0,"","","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Medway-Medway Middle,01770305, 653, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Melrose-Roosevelt,01780035, 352, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Melrose-Horace Mann,01780025, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Mendon-Upton-Memorial School,07100001, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Winthrop,01780050, 348, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Melrose Middle,01780305, 869, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Lincoln,01780020, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Melrose-Herbert Clark Hoover,01780017, 266, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Melrose-Melrose High,01780505, 921, 2, 0.2,"","","","","","","","", 0.4, 0.0, 0.0, 0.4 6.0,5,a-degr-i2,2022-23,Mendon-Upton-Nipmuc Regional High,07100510, 595, 6, 1.0,"","","","","","","","", 1.5, 0.6, 1.9, 0.0 -6.6,5,a-degr-i2,2022-23,Mendon-Upton-Henry P Clough,07100179, 272, 2, 0.7, 1.2, 1.5, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Mendon-Upton-Miscoe Hill School,07100015, 635, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Methuen-Donald P Timony Grammar,01810060," 1,091", 2, 0.2, 0.7, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Mendon-Upton-Memorial School,07100001, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Mendon-Upton-Henry P Clough,07100179, 272, 2, 0.7, 1.2, 1.5, 0.0, 0.0,"","","","","","","","" 7.8,5,a-degr-i2,2022-23,Methuen-Marsh Grammar School,01810030, 936, 1, 0.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Methuen-Comprehensive Grammar School,01810050, 831, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -3.8,3.8,a-degr-i2,2022-23,Methuen-Methuen High,01810505," 1,911", 41, 2.1,"","","","","","","","", 2.6, 3.5, 2.0, 0.2 7.8,5,a-degr-i2,2022-23,Methuen-Tenney Grammar School,01810055," 1,116", 1, 0.1, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -6.6,5,a-degr-i2,2022-23,Middleborough-Henry B. Burkland Elementary School,01820008, 569, 4, 0.7, 2.6, 0.9, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Methuen-Donald P Timony Grammar,01810060," 1,091", 2, 0.2, 0.7, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.0,"","","","" +3.8,3.8,a-degr-i2,2022-23,Methuen-Methuen High,01810505," 1,911", 41, 2.1,"","","","","","","","", 2.6, 3.5, 2.0, 0.2 7.0,5,a-degr-i2,2022-23,Middleborough-Mary K. Goode Elementary School,01820010, 627, 3, 0.5, 0.8, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Middleborough-John T. Nichols Middle,01820305, 708, 3, 0.4,"","","","","", 0.4, 0.0, 0.8,"","","","" +6.6,5,a-degr-i2,2022-23,Middleborough-Henry B. Burkland Elementary School,01820008, 569, 4, 0.7, 2.6, 0.9, 0.0, 0.0, 0.0,"","","","","","","" -5.4,1,a-degr-i2,2022-23,Middleborough-Middleborough High,01820505, 847, 57, 6.7,"","","","","","","","", 15.6, 4.0, 2.6, 2.5 +7.2,5,a-degr-i2,2022-23,Middleborough-John T. Nichols Middle,01820305, 708, 3, 0.4,"","","","","", 0.4, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Middleton-Howe-Manning,01840005, 371, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Middleton-Fuller Meadow,01840003, 191, 1, 0.5, 1.0, 0.0,"","","","","","","","","","" 3.2,3.2,a-degr-i2,2022-23,Milford-Milford High,01850505," 1,324", 32, 2.4,"","","","","","","","", 4.8, 1.2, 2.7, 0.6 @@ -948,68 +2677,82 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Milford-Woodland,01850090, 943, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Milford-Brookside,01850065, 337, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Milford-Memorial,01850010, 340, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -5.6,5,a-degr-i2,2022-23,Millbury-Millbury Junior/Senior High,01860505, 737, 9, 1.2,"","","","","","", 0.0, 0.0, 4.5, 2.3, 0.0, 0.8 4.6,4.6,a-degr-i2,2022-23,Millbury-Elmwood Street,01860017, 233, 4, 1.7, 3.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Millbury-Raymond E. Shaw Elementary,01860025, 458, 1, 0.2,"","", 0.8, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Millbury-Millbury Junior/Senior High,01860505, 737, 9, 1.2,"","","","","","", 0.0, 0.0, 4.5, 2.3, 0.0, 0.8 6.0,5,a-degr-i2,2022-23,Millis-Millis High School,01870505, 313, 3, 1.0,"","","","","","","","", 3.0, 0.0, 1.1, 0.0 8.0,5,a-degr-i2,2022-23,Millis-Millis Middle,01870020, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Millis-Clyde F Brown,01870005, 453, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Milton-Collicot,01890005, 482, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Milton-Charles S Pierce Middle,01890410, 956, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Milton-Tucker,01890020, 356, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Milton-Collicot,01890005, 482, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Milton-Cunningham School,01890007, 447, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Milton-Glover,01890010, 546, 1, 0.2, 0.9, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2022-23,Milton-Milton High,01890505," 1,055", 8, 0.8,"","","","","","","","", 0.4, 1.1, 0.4, 1.1 +8.0,5,a-degr-i2,2022-23,Milton-Charles S Pierce Middle,01890410, 956, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605, 691, 5, 0.7,"","","","","","","","", 0.0, 0.5, 1.8, 0.7 7.0,5,a-degr-i2,2022-23,Mohawk Trail-Buckland-Shelburne Regional,07170005, 217, 1, 0.5, 0.0, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","" 0.5999999999999996,1,a-degr-i2,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505, 270, 10, 3.7,"","","","","","", 1.4, 0.0, 18.4, 3.0, 2.9, 0.0 -8.0,5,a-degr-i2,2022-23,Mohawk Trail-Sanderson Academy,07170020, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Mohawk Trail-Colrain Central,07170010, 74, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Mohawk Trail-Sanderson Academy,07170020, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Monomoy Regional School District-Harwich Elementary School,07120002, 353, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Monomoy Regional School District-Chatham Elementary School,07120001, 124, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 696, 4, 0.6,"","","","","","","", 0.6, 0.7, 0.0, 0.9, 0.8 8.0,5,a-degr-i2,2022-23,Monomoy Regional School District-Monomoy Regional Middle School,07120315, 439, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -7.4,5,a-degr-i2,2022-23,Monomoy Regional School District-Harwich Elementary School,07120002, 353, 1, 0.3, 1.2, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515, 696, 4, 0.6,"","","","","","","", 0.6, 0.7, 0.0, 0.9, 0.8 7.0,5,a-degr-i2,2022-23,Monson-Granite Valley School,01910030, 396, 2, 0.5, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.2,5,a-degr-i2,2022-23,Monson-Monson High School,01910505, 291, 4, 1.4,"","","","","","", 0.0, 0.0, 9.5, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605," 1,409", 1, 0.1,"","","","","","","","", 0.3, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Mount Greylock-Williamstown Elementary,07150010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Mount Greylock-Lanesborough Elementary,07150005, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Mount Greylock-Williamstown Elementary,07150010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Mount Greylock-Mt Greylock Regional High,07150505, 535, 1, 0.2,"","","","","","", 0.0, 0.0, 1.4, 0.0, 0.0, 0.0 6.0,5,a-degr-i2,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105," 1,442", 14, 1.0, 1.9, 1.3, 0.7, 0.7, 0.0, 2.6, 2.7, 0.9, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Nahant-Johnson,01960010, 99, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Nantucket-Cyrus Peirce,01970010, 380, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Nantucket-Nantucket Intermediate School,01970020, 340, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 0.40000000000000036,1,a-degr-i2,2022-23,Nantucket-Nantucket High,01970505, 582, 22, 3.8,"","","","","","","","", 6.7, 2.9, 3.3, 1.4 +8.0,5,a-degr-i2,2022-23,Nantucket-Nantucket Intermediate School,01970020, 340, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Nantucket-Cyrus Peirce,01970010, 380, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.6,5,a-degr-i2,2022-23,Nantucket-Nantucket Elementary,01970005, 249, 3, 1.2, 1.5, 0.8,"","","","","","","","","","" -7.0,5,a-degr-i2,2022-23,Narragansett-Templeton Elementary School,07200020, 444, 2, 0.5, 1.1, 0.9, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Narragansett-Narragansett Middle,07200305, 359, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" 3.8,3.8,a-degr-i2,2022-23,Narragansett-Narragansett Regional High,07200505, 466, 10, 2.1,"","","","","","","", 0.0, 6.5, 3.1, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Narragansett-Narragansett Middle,07200305, 359, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" +7.0,5,a-degr-i2,2022-23,Narragansett-Templeton Elementary School,07200020, 444, 2, 0.5, 1.1, 0.9, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Nashoba-Hale,07250310, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Nashoba-Mary Rowlandson Elementary,07250010, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Nashoba-Center School,07250020, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Nashoba-Luther Burbank Middle School,07250305, 243, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Nashoba-Florence Sawyer School,07250025, 639, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Nashoba-Center School,07250020, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Nashoba-Mary Rowlandson Elementary,07250010, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Nashoba-Hale,07250310, 270, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Nashoba-Nashoba Regional,07250505, 824, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605, 750, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Natick-Johnson,01980031, 136, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Wilson Middle,01980310, 778, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Natick-Natick High,01980505," 1,589", 5, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.3 -7.0,5,a-degr-i2,2022-23,Natick-Bennett-Hemenway,01980005, 407, 2, 0.5, 0.0, 2.2, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Brown,01980010, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Lilja Elementary,01980035, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Natick-Memorial,01980043, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.8,5,a-degr-i2,2022-23,Natick-J F Kennedy Middle School,01980305, 884, 1, 0.1,"","","","", 0.0, 0.4, 0.0, 0.0,"","","","" -6.0,5,a-degr-i2,2022-23,Nauset-Nauset Regional High,06600505, 776, 8, 1.0,"","","","","","","","", 1.1, 1.4, 0.0, 1.5 +8.0,5,a-degr-i2,2022-23,Natick-Memorial,01980043, 346, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Lilja Elementary,01980035, 314, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Johnson,01980031, 136, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Brown,01980010, 398, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Natick-Bennett-Hemenway,01980005, 407, 2, 0.5, 0.0, 2.2, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Natick-Wilson Middle,01980310, 778, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Nauset-Nauset Regional Middle,06600305, 528, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +6.0,5,a-degr-i2,2022-23,Nauset-Nauset Regional High,06600505, 776, 8, 1.0,"","","","","","","","", 1.1, 1.4, 0.0, 1.5 +8.0,5,a-degr-i2,2022-23,Needham-High Rock School,01990410, 446, 0, 0.0,"","","","","", 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Needham-Newman Elementary,01990050, 513, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Needham-William Mitchell,01990040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Needham-Sunita L. Williams Elementary,01990035, 441, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Needham-John Eliot,01990020, 360, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Needham-Broadmeadow,01990005, 432, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Needham-Sunita L. Williams Elementary,01990035, 441, 2, 0.5, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Needham-William Mitchell,01990040, 367, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Needham-Needham High,01990505," 1,645", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Needham-Pollard Middle,01990405, 818, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Needham-High Rock School,01990410, 446, 0, 0.0,"","","","","", 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Needham-Newman Elementary,01990050, 513, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 2.0,2.0,a-degr-i2,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 689, 21, 3.0, 2.4, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.4, 6.6, 9.9, 6.6, 0.0 +7.0,5,a-degr-i2,2022-23,New Bedford-Alfred J Gomes,02010063, 395, 2, 0.5, 0.0, 1.3, 0.0, 1.2, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,New Bedford-Irwin M. Jacobs Elementary School,02010070, 299, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,New Bedford-Ellen R Hathaway,02010075, 174, 2, 1.1, 0.0, 5.7, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,New Bedford-Hayden/McFadden,02010078, 502, 2, 0.4, 0.8, 0.0, 1.4, 0.0, 0.0,"","","","","","","" +5.8,5,a-degr-i2,2022-23,New Bedford-Abraham Lincoln,02010095, 531, 6, 1.1, 4.1, 2.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-Sgt Wm H Carney Academy,02010045, 464, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-John B Devalles,02010050, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,New Bedford-Carlos Pacheco,02010105, 243, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2022-23,New Bedford-Charles S Ashley,02010010, 229, 2, 0.9, 0.0, 2.1, 0.0, 1.9, 0.0,"","","","","","","" +4.0,4.0,a-degr-i2,2022-23,New Bedford-Elizabeth Carter Brooks,02010015, 244, 5, 2.0, 4.8, 3.6, 2.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-Elwyn G Campbell,02010020, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,New Bedford-James B Congdon,02010040, 276, 2, 0.7, 0.0, 0.0, 4.3, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-John Avery Parker,02010115, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,New Bedford-Casimir Pulaski,02010123, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,New Bedford-Renaissance Community Innovation School,02010124, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2022-23,New Bedford-Thomas R Rodman,02010125, 176, 1, 0.6, 0.0, 0.0, 3.3, 0.0, 0.0,"","","","","","","" 2.4000000000000004,2.4,a-degr-i2,2022-23,New Bedford-Jireh Swift,02010130, 142, 4, 2.8, 5.6, 6.9, 0.0, 0.0, 0.0,"","","","","","","" @@ -1018,30 +2761,22 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.4,5,a-degr-i2,2022-23,New Bedford-Keith Middle School,02010405, 870, 7, 0.8,"","","","","", 0.0, 2.2, 0.3,"","","","" 7.8,5,a-degr-i2,2022-23,New Bedford-Normandin Middle School,02010410," 1,051", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,New Bedford-Roosevelt Middle School,02010415, 778, 2, 0.3,"","","","","", 0.0, 0.8, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-Sgt Wm H Carney Academy,02010045, 464, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,New Bedford-New Bedford High,02010505," 2,898", 37, 1.3,"","","","","","","","", 1.2, 0.4, 0.6, 3.2 3.2,3.2,a-degr-i2,2022-23,New Bedford-Trinity Day Academy,02010510, 83, 2, 2.4,"","","","", 0.0,"", 0.0, 0.0, 6.3, 0.0, 0.0, 8.3 -12.8,1,a-degr-i2,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515, 135, 14, 10.4,"","","","","","","","", 50.0, 0.0, 8.3, 0.0 -8.0,5,a-degr-i2,2022-23,New Bedford-Casimir Pulaski,02010123, 397, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-John Avery Parker,02010115, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,New Bedford-Carlos Pacheco,02010105, 243, 1, 0.4, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,New Bedford-Abraham Lincoln,02010095, 531, 6, 1.1, 4.1, 2.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,New Bedford-Hayden/McFadden,02010078, 502, 2, 0.4, 0.8, 0.0, 1.4, 0.0, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,New Bedford-Ellen R Hathaway,02010075, 174, 2, 1.1, 0.0, 5.7, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,New Bedford-Irwin M. Jacobs Elementary School,02010070, 299, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,New Bedford-Alfred J Gomes,02010063, 395, 2, 0.5, 0.0, 1.3, 0.0, 1.2, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-John B Devalles,02010050, 253, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.4,5,a-degr-i2,2022-23,New Bedford-New Bedford High,02010505," 2,898", 37, 1.3,"","","","","","","","", 1.2, 0.4, 0.6, 3.2 -6.6,5,a-degr-i2,2022-23,New Bedford-James B Congdon,02010040, 276, 2, 0.7, 0.0, 0.0, 4.3, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,New Bedford-Elwyn G Campbell,02010020, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -4.0,4.0,a-degr-i2,2022-23,New Bedford-Elizabeth Carter Brooks,02010015, 244, 5, 2.0, 4.8, 3.6, 2.0, 0.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2022-23,New Bedford-Charles S Ashley,02010010, 229, 2, 0.9, 0.0, 2.1, 0.0, 1.9, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305, 741, 3, 0.4,"","","","","", 0.0, 0.0, 0.9, 1.7, 0.0, 0.0, 0.0 6.0,5,a-degr-i2,2022-23,New Salem-Wendell-Swift River,07280015, 101, 1, 1.0, 0.0, 5.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Newburyport-Francis T Bresnahan Elementary,02040005, 419, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Newburyport-Edward G. Molin Elementary School,02040030, 279, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newburyport-Rupert A Nock Middle,02040305, 481, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Newburyport-Edward G. Molin Elementary School,02040030, 279, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newburyport-Francis T Bresnahan Elementary,02040005, 419, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 7.8,5,a-degr-i2,2022-23,Newburyport-Newburyport High,02040505, 816, 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.5 7.2,5,a-degr-i2,2022-23,Newton-Newton South High,02070510," 1,832", 7, 0.4,"","","","","","","","", 0.0, 0.0, 0.5, 1.0 +7.4,5,a-degr-i2,2022-23,Newton-A E Angier,02070005, 333, 1, 0.3, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Bowen,02070015, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-C C Burr,02070020, 310, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Cabot,02070025, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Countryside,02070040, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Newton-Franklin,02070055, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newton-Lincoln-Eliot,02070070, 283, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newton-Horace Mann,02070075, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Newton-Mason-Rice,02070080, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -1056,53 +2791,47 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Newton-F A Day Middle,02070315, 920, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Newton-Oak Hill Middle,02070320, 657, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.6,5,a-degr-i2,2022-23,Newton-Newton North High,02070505," 2,063", 14, 0.7,"","","","","","","","", 0.8, 0.7, 0.0, 1.2 -7.4,5,a-degr-i2,2022-23,Newton-A E Angier,02070005, 333, 1, 0.3, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Bowen,02070015, 309, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-C C Burr,02070020, 310, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Cabot,02070025, 370, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Countryside,02070040, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Newton-Franklin,02070055, 323, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Norfolk-H Olive Day,02080015, 303, 1, 0.3, 0.7, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Norfolk-Freeman-Kennedy School,02080005, 527, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705, 580, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.7, 0.0 -4.8,4.8,a-degr-i2,2022-23,North Adams-Drury High,02090505, 488, 8, 1.6,"","","","","","", 0.0, 2.2, 3.6, 3.2, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,North Adams-Brayton,02090035, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,North Adams-Greylock,02090015, 187, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,North Adams-Colegrove Park Elementary,02090008, 177, 1, 0.6, 3.2, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.8,5,a-degr-i2,2022-23,North Andover-North Andover High,02110505," 1,336", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 +4.8,4.8,a-degr-i2,2022-23,North Adams-Drury High,02090505, 488, 8, 1.6,"","","","","","", 0.0, 2.2, 3.6, 3.2, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,North Adams-Brayton,02090035, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,North Andover-North Andover Middle,02110305," 1,035", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.8,5,a-degr-i2,2022-23,North Andover-North Andover High,02110505," 1,336", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.6 8.0,5,a-degr-i2,2022-23,North Andover-Thomson,02110020, 301, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,North Andover-Annie L Sargent School,02110018, 467, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,North Andover-Kittredge,02110015, 226, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,North Andover-Franklin,02110010, 381, 1, 0.3, 0.0, 1.6, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,North Andover-Atkinson,02110001, 274, 1, 0.4, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -4.4,4.4,a-degr-i2,2022-23,North Attleborough-North Attleboro High,02120505," 1,107", 20, 1.8,"","","","","","","","", 0.9, 0.3, 0.3, 5.7 7.8,5,a-degr-i2,2022-23,North Attleborough-North Attleborough Middle,02120305, 956, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" -8.0,5,a-degr-i2,2022-23,North Attleborough-Community,02120030, 241, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,North Attleborough-Roosevelt Avenue,02120015, 213, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,North Attleborough-Joseph W Martin Jr Elementary,02120013, 456, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,North Attleborough-Falls,02120010, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,North Attleborough-Joseph W Martin Jr Elementary,02120013, 456, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,North Attleborough-Roosevelt Avenue,02120015, 213, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,North Attleborough-Community,02120030, 241, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,North Attleborough-Amvet Boulevard,02120007, 359, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2022-23,North Attleborough-North Attleboro High,02120505," 1,107", 20, 1.8,"","","","","","","","", 0.9, 0.3, 0.3, 5.7 7.2,5,a-degr-i2,2022-23,North Brookfield-North Brookfield Elementary,02150015, 247, 1, 0.4, 0.0, 0.0, 0.0, 2.4, 0.0, 0.0,"","","","","","" 2.2,2.2,a-degr-i2,2022-23,North Brookfield-North Brookfield High,02150505, 136, 4, 2.9,"","","","","","", 0.0, 0.0, 4.2, 0.0, 0.0, 15.8 -7.6,5,a-degr-i2,2022-23,North Middlesex-Varnum Brook,07350035, 508, 1, 0.2, 0.0, 0.0, 0.0, 0.8,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,North Middlesex-Hawthorne Brook,07350030, 464, 1, 0.2,"","","","", 0.0, 0.0, 0.9, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,North Middlesex-Ashby Elementary,07350010, 119, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.4,5,a-degr-i2,2022-23,North Middlesex-Spaulding Memorial,07350005, 348, 1, 0.3, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" --17.0,1,a-degr-i2,2022-23,North Middlesex-Squannacook Early Childhood Center,07350002, 8, 1, 12.5,"","","","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,North Middlesex-Nissitissit Middle School,07350310, 481, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 6.0,5,a-degr-i2,2022-23,North Middlesex-North Middlesex Regional,07350505, 769, 8, 1.0,"","","","","","","","", 2.6, 0.5, 0.0, 1.1 -8.0,5,a-degr-i2,2022-23,North Reading-L D Batchelder,02170005, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,North Reading-J Turner Hood,02170010, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,North Middlesex-Varnum Brook,07350035, 508, 1, 0.2, 0.0, 0.0, 0.0, 0.8,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,North Middlesex-Hawthorne Brook,07350030, 464, 1, 0.2,"","","","", 0.0, 0.0, 0.9, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,North Middlesex-Nissitissit Middle School,07350310, 481, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +-17.0,1,a-degr-i2,2022-23,North Middlesex-Squannacook Early Childhood Center,07350002, 8, 1, 12.5,"","","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,North Reading-North Reading Middle,02170305, 541, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,North Reading-North Reading High,02170505, 643, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +7.4,5,a-degr-i2,2022-23,North Reading-J Turner Hood,02170010, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,North Reading-E Ethel Little School,02170003, 235, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Northampton-R. K. Finn Ryan Road,02100029, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Northampton-Northampton High,02100505, 892, 4, 0.4,"","","","","","","","", 0.5, 0.0, 1.0, 0.4 +8.0,5,a-degr-i2,2022-23,North Reading-L D Batchelder,02170005, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Northampton-Bridge Street,02100005, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Northampton-John F Kennedy Middle School,02100410, 583, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Northampton-Leeds,02100025, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Northampton-Northampton High,02100505, 892, 4, 0.4,"","","","","","","","", 0.5, 0.0, 1.0, 0.4 7.2,5,a-degr-i2,2022-23,Northampton-Jackson Street,02100020, 239, 1, 0.4, 0.0, 0.0, 1.9, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Northampton-Bridge Street,02100005, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Northampton-R. K. Finn Ryan Road,02100029, 200, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Northampton-Leeds,02100025, 223, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705, 566, 1, 0.2,"","","","","","","","", 0.7, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Northboro-Southboro-Algonquin Regional High,07300505," 1,201", 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Northborough-Lincoln Street,02130003, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -1110,27 +2839,27 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.0,5,a-degr-i2,2022-23,Northborough-Fannie E Proctor,02130015, 213, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Northborough-Marion E Zeh,02130020, 212, 1, 0.5, 2.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Northborough-Robert E. Melican Middle School,02130305, 537, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Northbridge-Northbridge Middle,02140305, 481, 3, 0.6,"","","","","", 0.0, 0.6, 1.2,"","","","" -0.5999999999999996,1,a-degr-i2,2022-23,Northbridge-Northbridge High,02140505, 513, 22, 4.3,"","","","","","","","", 5.7, 5.6, 3.7, 1.6 +6.8,5,a-degr-i2,2022-23,Northbridge-Northbridge Middle,02140305, 481, 3, 0.6,"","","","","", 0.0, 0.6, 1.2,"","","","" 6.6,5,a-degr-i2,2022-23,Northbridge-Northbridge Elementary School,02140001, 709, 5, 0.7, 1.3, 0.6, 1.4, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605," 1,292", 3, 0.2,"","","","","","","","", 0.0, 0.6, 0.3, 0.0 7.6,5,a-degr-i2,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605, 537, 1, 0.2,"","","","","","","","", 0.7, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Norton-L G Nourse Elementary,02180010, 226, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Norton-Henri A. Yelle,02180060, 333, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Norton-J C Solmonese,02180015, 311, 2, 0.6, 2.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Norton-Norton Middle,02180305, 553, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Norton-J C Solmonese,02180015, 311, 2, 0.6, 2.0, 0.0, 0.0,"","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Norton-Norton High,02180505, 675, 2, 0.3,"","","","","","","","", 0.6, 0.6, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Norton-L G Nourse Elementary,02180010, 226, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.6,5,a-degr-i2,2022-23,Norwell-Norwell High,02190505, 602, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Norwell-William G Vinal,02190020, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Norwell-Norwell Middle School,02190405, 498, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Norwell-Grace Farrar Cole,02190005, 431, 1, 0.2, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Norwell-William G Vinal,02190020, 430, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Norwell-Norwell High,02190505, 602, 1, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 +6.2,5,a-degr-i2,2022-23,Norwood-Norwood High,02200505, 937, 8, 0.9,"","","","","","","","", 0.5, 2.1, 0.4, 0.4 +8.0,5,a-degr-i2,2022-23,Norwood-Dr. Philip O. Coakley Middle School,02200305, 776, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Norwood-Charles J Prescott,02200025, 239, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Norwood-John P Oldham,02200020, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Norwood-F A Cleveland,02200015, 313, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Norwood-Cornelius M Callahan,02200010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Norwood-Balch,02200005, 312, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Norwood-Dr. Philip O. Coakley Middle School,02200305, 776, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.2,5,a-degr-i2,2022-23,Norwood-Norwood High,02200505, 937, 8, 0.9,"","","","","","","","", 0.5, 2.1, 0.4, 0.4 +8.0,5,a-degr-i2,2022-23,Norwood-John P Oldham,02200020, 275, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Oak Bluffs-Oak Bluffs Elementary,02210005, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605, 561, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Old Rochester-Old Rochester Regional Jr High,07400405, 424, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" @@ -1139,89 +2868,89 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Orange-Dexter Park,02230010, 294, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Orange-Fisher Hill,02230015, 127, 1, 0.8, 1.3, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Orleans-Orleans Elementary,02240005, 128, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Oxford-Clara Barton,02260005, 218, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Oxford-Oxford High,02260505, 378, 4, 1.1,"","","","","","","","", 0.0, 0.0, 4.4, 0.0 8.0,5,a-degr-i2,2022-23,Oxford-Oxford Middle,02260405, 504, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Oxford-Clara Barton,02260005, 218, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" 7.0,5,a-degr-i2,2022-23,Oxford-Alfred M Chaffee,02260010, 188, 1, 0.5, 0.0, 1.2,"","","","","","","","","","" -7.2,5,a-degr-i2,2022-23,Palmer-Old Mill Pond,02270008, 462, 2, 0.4, 0.0, 1.0, 1.4, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Palmer-Palmer High,02270505, 532, 1, 0.2,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 0.0 +7.2,5,a-degr-i2,2022-23,Palmer-Old Mill Pond,02270008, 462, 2, 0.4, 0.0, 1.0, 1.4, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605, 640, 7, 1.1,"","","","","","","","", 1.6, 1.8, 0.0, 0.8 -30.4,1,a-degr-i2,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505, 261, 50, 19.2,"","","","","","","","", 12.8, 35.5, 12.5, 12.2 --0.5999999999999996,1,a-degr-i2,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 93, 4, 4.3,"", 0.0,"", 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 30.8 -4.8,4.8,a-degr-i2,2022-23,Peabody-Peabody Veterans Memorial High,02290510," 1,465", 24, 1.6,"","","","","","","","", 0.3, 0.0, 0.3, 5.7 -8.0,5,a-degr-i2,2022-23,Peabody-J Henry Higgins Middle,02290305," 1,346", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -6.8,5,a-degr-i2,2022-23,Peabody-South Memorial,02290035, 340, 2, 0.6, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Peabody-John E Burke,02290007, 214, 1, 0.5, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Peabody-Thomas Carroll,02290010, 504, 1, 0.2, 0.0, 0.0, 1.2, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Peabody-West Memorial,02290045, 188, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Peabody-William A Welch Sr,02290027, 157, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Peabody-John E. McCarthy,02290016, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Peabody-Center,02290015, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.6,5,a-degr-i2,2022-23,Peabody-Thomas Carroll,02290010, 504, 1, 0.2, 0.0, 0.0, 1.2, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Peabody-John E Burke,02290007, 214, 1, 0.5, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Peabody-William A Welch Sr,02290027, 157, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Peabody-Captain Samuel Brown,02290005, 322, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Peabody-J Henry Higgins Middle,02290305," 1,346", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +4.8,4.8,a-degr-i2,2022-23,Peabody-Peabody Veterans Memorial High,02290510," 1,465", 24, 1.6,"","","","","","","","", 0.3, 0.0, 0.3, 5.7 +-0.5999999999999996,1,a-degr-i2,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 93, 4, 4.3,"", 0.0,"", 0.0,"","", 0.0, 0.0, 0.0, 0.0, 0.0, 30.8 +8.0,5,a-degr-i2,2022-23,Peabody-Center,02290015, 379, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Peabody-South Memorial,02290035, 340, 2, 0.6, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Pelham-Pelham Elementary,02300005, 114, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Pembroke-Bryantville Elementary,02310003, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Pembroke-Hobomock Elementary,02310010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.0,5.0,a-degr-i2,2022-23,Pembroke-Pembroke High School,02310505, 724, 11, 1.5,"","","","","","","","", 1.2, 3.1, 1.7, 0.0 -8.0,5,a-degr-i2,2022-23,Pembroke-Pembroke Community Middle School,02310305, 405, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Pembroke-North Pembroke Elementary,02310015, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Pentucket-Pentucket Regional Middle,07450405, 358, 1, 0.3,"","","","","","", 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Pembroke-Pembroke Community Middle School,02310305, 405, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +5.0,5.0,a-degr-i2,2022-23,Pembroke-Pembroke High School,02310505, 724, 11, 1.5,"","","","","","","","", 1.2, 3.1, 1.7, 0.0 +8.0,5,a-degr-i2,2022-23,Pembroke-Hobomock Elementary,02310010, 345, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Pembroke-Bryantville Elementary,02310003, 377, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Pentucket-Pentucket Regional Sr High,07450505, 591, 3, 0.5,"","","","","","","","", 0.0, 0.6, 0.7, 0.6 +7.4,5,a-degr-i2,2022-23,Pentucket-Pentucket Regional Middle,07450405, 358, 1, 0.3,"","","","","","", 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Pentucket-Dr Frederick N Sweetsir,07450020, 121, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Pentucket-Dr John C Page School,07450015, 250, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Pentucket-Elmer S Bagnall,07450005, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Pentucket-Helen R Donaghue School,07450010, 250, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Pentucket-Dr John C Page School,07450015, 250, 1, 0.4, 0.0, 0.0, 0.0, 0.0, 2.4, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Pentucket-Dr Frederick N Sweetsir,07450020, 121, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 6.2,5,a-degr-i2,2022-23,Petersham-Petersham Center,02340005, 109, 1, 0.9, 0.0, 0.0, 0.0, 0.0, 8.3, 0.0,"","","","","","" -70.8,1,a-degr-i2,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505, 203, 80, 39.4,"","","","","","","","", 46.7,"", 15.4, 40.0 -112.0,1,a-degr-i2,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505, 125, 75, 60.0,"","","","","","","","", 58.5,"", 65.7,"" -94.4,1,a-degr-i2,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505, 166, 85, 51.2,"","","","","","","","", 68.8,"", 27.1, 33.3 6.8,5,a-degr-i2,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 720, 4, 0.6, 1.6, 3.1, 0.0, 0.0, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 5.6,5,a-degr-i2,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 422, 5, 1.2, 0.0, 0.0,"","","","", 0.0, 2.7, 2.8, 1.9, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 256, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -6.8,5,a-degr-i2,2022-23,Pioneer Valley-Bernardston Elementary,07500006, 155, 1, 0.6, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Pioneer Valley-Northfield Elementary,07500008, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.8,5,a-degr-i2,2022-23,Pioneer Valley-Bernardston Elementary,07500006, 155, 1, 0.6, 3.7, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505, 256, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 7.2,5,a-degr-i2,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 505, 2, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0 7.0,5,a-degr-i2,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505, 390, 2, 0.5,"","","","","","", 0.0, 0.0, 1.4, 0.0, 0.0, 1.7 -8.0,5,a-degr-i2,2022-23,Pittsfield-Egremont,02360035, 315, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Pittsfield-Robert T. Capeless Elementary School,02360045, 131, 2, 1.5, 0.0, 4.3, 0.0, 0.0, 3.1,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Pittsfield-Crosby Educational Academy,02360030, 17, 0, 0.0,"","","","", 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Pittsfield-Allendale,02360010, 209, 1, 0.5, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Pittsfield-Theodore Herberg Middle,02360310, 496, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" -3.5999999999999996,1,a-degr-i2,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705, 104, 6, 5.8,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 16.7, 25.0, 7.1, 0.0 --44.2,1,a-degr-i2,2022-23,Pittsfield-Eagle Education Academy,02360525, 23, 6, 26.1,"","","","","","","","","", 50.0,"","" --1.8000000000000007,1,a-degr-i2,2022-23,Pittsfield-Taconic High,02360510, 860, 42, 4.9,"","","","","","","","", 8.6, 4.2, 4.4, 1.1 -0.7999999999999998,1,a-degr-i2,2022-23,Pittsfield-Pittsfield High,02360505, 639, 23, 3.6,"","","","","","","","", 9.4, 3.6, 1.1, 0.7 -8.0,5,a-degr-i2,2022-23,Pittsfield-John T Reid Middle,02360305, 450, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 5.0,5.0,a-degr-i2,2022-23,Pittsfield-Silvio O Conte Community,02360105, 270, 4, 1.5, 3.6, 1.9, 2.3, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Pittsfield-Williams,02360100, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.8,5,a-degr-i2,2022-23,Pittsfield-Stearns,02360090, 183, 2, 1.1, 0.0, 0.0, 0.0, 4.5, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Pittsfield-Crosby,02360065, 208, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Pittsfield-Morningside Community School,02360055, 273, 2, 0.7, 3.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Pittsfield-John T Reid Middle,02360305, 450, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +0.7999999999999998,1,a-degr-i2,2022-23,Pittsfield-Pittsfield High,02360505, 639, 23, 3.6,"","","","","","","","", 9.4, 3.6, 1.1, 0.7 +-1.8000000000000007,1,a-degr-i2,2022-23,Pittsfield-Taconic High,02360510, 860, 42, 4.9,"","","","","","","","", 8.6, 4.2, 4.4, 1.1 +-44.2,1,a-degr-i2,2022-23,Pittsfield-Eagle Education Academy,02360525, 23, 6, 26.1,"","","","","","","","","", 50.0,"","" +7.0,5,a-degr-i2,2022-23,Pittsfield-Allendale,02360010, 209, 1, 0.5, 3.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Pittsfield-Crosby Educational Academy,02360030, 17, 0, 0.0,"","","","", 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Pittsfield-Egremont,02360035, 315, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Pittsfield-Robert T. Capeless Elementary School,02360045, 131, 2, 1.5, 0.0, 4.3, 0.0, 0.0, 3.1,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Plainville-Beatrice H Wood Elementary,02380005, 355, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Plainville-Anna Ware Jackson,02380010, 148, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.6,5,a-degr-i2,2022-23,Plymouth-Plymouth Commun Intermediate,02390405, 878, 2, 0.2,"","","","","", 0.0, 0.4, 0.3,"","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Plymouth South Middle,02390305, 620, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Plymouth-West Elementary,02390047, 277, 1, 0.4, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -3.5999999999999996,3.6,a-degr-i2,2022-23,Plymouth-Plymouth North High,02390505," 1,301", 28, 2.2,"","","","","","","","", 4.8, 1.9, 1.3, 0.3 -8.0,5,a-degr-i2,2022-23,Plymouth-Manomet Elementary,02390015, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.4,5,a-degr-i2,2022-23,Plymouth-Plymouth South High,02390515," 1,028", 13, 1.3,"","","","","","","","", 2.3, 2.3, 0.4, 0.0 +7.4,5,a-degr-i2,2022-23,Plymouth-Federal Furnace School,02390011, 337, 1, 0.3, 0.0, 0.0, 1.6, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Hedge,02390010, 169, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Plymouth-Cold Spring,02390005, 185, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Plymouth-Plymouth South Middle,02390305, 620, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Plymouth-Nathaniel Morton Elementary,02390030, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Plymouth-South Elementary,02390046, 526, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Nathaniel Morton Elementary,02390030, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Plymouth-Manomet Elementary,02390015, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Plymouth-Indian Brook,02390012, 484, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Plymouth-Federal Furnace School,02390011, 337, 1, 0.3, 0.0, 0.0, 1.6, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Plymouth-Hedge,02390010, 169, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,Plymouth-Plymouth South High,02390515," 1,028", 13, 1.3,"","","","","","","","", 2.3, 2.3, 0.4, 0.0 +3.5999999999999996,3.6,a-degr-i2,2022-23,Plymouth-Plymouth North High,02390505," 1,301", 28, 2.2,"","","","","","","","", 4.8, 1.9, 1.3, 0.3 8.0,5,a-degr-i2,2022-23,Plympton-Dennett Elementary,02400010, 204, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.0,5,a-degr-i2,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 901, 9, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.8, 1.4, 6.0, 1.4 6.2,5,a-degr-i2,2022-23,Provincetown-Provincetown Schools,02420020, 107, 1, 0.9, 7.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Quabbin-Quabbin Regional Middle School,07530405, 517, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Quabbin-Hardwick Elementary,07530005, 144, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Quabbin-Hubbardston Center,07530010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Quabbin-Oakham Center,07530025, 156, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --8.0,1,a-degr-i2,2022-23,Quabbin-Quabbin Regional High School,07530505, 566, 45, 8.0,"","","","","","","","", 18.6, 6.1, 0.8, 2.2 7.4,5,a-degr-i2,2022-23,Quabbin-Ruggles Lane,07530030, 287, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-8.0,1,a-degr-i2,2022-23,Quabbin-Quabbin Regional High School,07530505, 566, 45, 8.0,"","","","","","","","", 18.6, 6.1, 0.8, 2.2 +7.6,5,a-degr-i2,2022-23,Quabbin-Quabbin Regional Middle School,07530405, 517, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Quaboag Regional-West Brookfield Elementary,07780010, 228, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 4.6,4.6,a-degr-i2,2022-23,Quaboag Regional-Quaboag Regional High,07780505, 354, 6, 1.7,"","","","","","","","", 4.3, 0.0, 2.3, 0.0 8.0,5,a-degr-i2,2022-23,Quaboag Regional-Warren Elementary,07780005, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Quaboag Regional-West Brookfield Elementary,07780010, 228, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305, 203, 1, 0.5,"","","","","","", 1.1, 0.0,"","","","" 5.2,5,a-degr-i2,2022-23,Quincy-North Quincy High,02430510," 1,450", 21, 1.4,"","","","","","","","", 2.4, 1.7, 0.3, 1.5 8.0,5,a-degr-i2,2022-23,Quincy-Beechwood Knoll Elementary,02430020, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" @@ -1242,21 +2971,20 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 6.4,5,a-degr-i2,2022-23,Quincy-Montclair,02430065, 363, 3, 0.8, 1.6, 1.4, 0.0, 1.2, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Quincy-Francis W Parker,02430075, 274, 1, 0.4, 0.0, 0.0, 0.0, 1.6, 0.0,"","","","","","","" -3.0,1,a-degr-i2,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505, 523, 29, 5.5,"","","","","","", 1.1, 1.0, 13.4, 2.5, 11.7, 1.5 -7.2,5,a-degr-i2,2022-23,Randolph-Randolph Community Middle,02440410, 566, 2, 0.4,"","","","","", 0.0, 1.1, 0.0,"","","","" --16.4,1,a-degr-i2,2022-23,Randolph-Randolph High,02440505, 617, 75, 12.2,"","","","","","","","", 20.8, 9.7, 9.4, 3.4 +5.2,5,a-degr-i2,2022-23,Randolph-Martin E Young Elementary,02440040, 210, 3, 1.4, 1.9, 4.9, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Randolph-Margaret L Donovan,02440015, 356, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -1.7999999999999998,1.8,a-degr-i2,2022-23,Randolph-J F Kennedy Elementary,02440018, 257, 8, 3.1, 3.4, 4.5, 3.8, 3.8, 0.0,"","","","","","","" 4.8,4.8,a-degr-i2,2022-23,Randolph-Elizabeth G Lyons Elementary,02440020, 246, 4, 1.6, 3.8, 4.5, 0.0, 0.0, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Randolph-Martin E Young Elementary,02440040, 210, 3, 1.4, 1.9, 4.9, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Reading-Reading Memorial High,02460505," 1,096", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 -7.2,5,a-degr-i2,2022-23,Reading-Walter S Parker Middle,02460310, 464, 2, 0.4,"","","","","", 0.0, 0.0, 1.1,"","","","" -8.0,5,a-degr-i2,2022-23,Reading-Arthur W Coolidge Middle,02460305, 429, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Reading-Wood End Elementary School,02460020, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Reading-Alice M Barrows,02460002, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Reading-Birch Meadow,02460005, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +1.7999999999999998,1.8,a-degr-i2,2022-23,Randolph-J F Kennedy Elementary,02440018, 257, 8, 3.1, 3.4, 4.5, 3.8, 3.8, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Randolph-Randolph Community Middle,02440410, 566, 2, 0.4,"","","","","", 0.0, 1.1, 0.0,"","","","" +-16.4,1,a-degr-i2,2022-23,Randolph-Randolph High,02440505, 617, 75, 12.2,"","","","","","","","", 20.8, 9.7, 9.4, 3.4 8.0,5,a-degr-i2,2022-23,Reading-J Warren Killam,02460017, 344, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Reading-Wood End Elementary School,02460020, 212, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Reading-Joshua Eaton,02460010, 328, 1, 0.3, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","","" --42.6,1,a-degr-i2,2022-23,Revere-CityLab Innovation High School,02480520, 95, 24, 25.3,"","","","","","","","", 31.9, 29.4, 21.4, 5.9 +8.0,5,a-degr-i2,2022-23,Reading-Birch Meadow,02460005, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Reading-Alice M Barrows,02460002, 303, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Reading-Arthur W Coolidge Middle,02460305, 429, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Reading-Walter S Parker Middle,02460310, 464, 2, 0.4,"","","","","", 0.0, 0.0, 1.1,"","","","" +7.8,5,a-degr-i2,2022-23,Reading-Reading Memorial High,02460505," 1,096", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.3 -3.5999999999999996,1,a-degr-i2,2022-23,Revere-Revere High,02480505," 2,069", 121, 5.8,"","","","","","","","", 10.0, 5.8, 5.9, 0.0 8.0,5,a-degr-i2,2022-23,Revere-Susan B. Anthony Middle School,02480305, 557, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Revere-Garfield Middle School,02480057, 546, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" @@ -1267,109 +2995,110 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Revere-Beachmont Veterans Memorial School,02480013, 238, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Revere-A. C. Whelan Elementary School,02480003, 625, 2, 0.3, 1.1, 0.7, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Revere-Paul Revere,02480050, 379, 1, 0.3, 1.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-42.6,1,a-degr-i2,2022-23,Revere-CityLab Innovation High School,02480520, 95, 24, 25.3,"","","","","","","","", 31.9, 29.4, 21.4, 5.9 8.0,5,a-degr-i2,2022-23,Richmond-Richmond Consolidated,02490005, 131, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305, 634, 3, 0.5,"","","","", 0.0, 0.0, 0.0, 0.0, 2.6, 1.4, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,River Valley Charter (District)-River Valley Charter School,04820050, 256, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Rochester-Rochester Memorial,02500005, 415, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -1.0,1.0,a-degr-i2,2022-23,Rockland-Rockland Senior High,02510505, 576, 20, 3.5,"","","","","","","","", 8.6, 3.0, 0.0, 0.7 -8.0,5,a-degr-i2,2022-23,Rockland-Memorial Park,02510020, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2022-23,Rockland-John W Rogers Middle,02510305, 715, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Rockland-Jefferson Elementary School,02510060, 195, 1, 0.5, 0.0, 2.1, 0.0, 0.0,"","","","","","","","" 5.8,5,a-degr-i2,2022-23,Rockland-R Stewart Esten,02510025, 271, 3, 1.1, 2.7, 0.0, 1.4, 0.0,"","","","","","","","" -7.8,5,a-degr-i2,2022-23,Rockland-John W Rogers Middle,02510305, 715, 1, 0.1,"","","","", 0.0, 0.0, 0.5, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Rockland-Memorial Park,02510020, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +1.0,1.0,a-degr-i2,2022-23,Rockland-Rockland Senior High,02510505, 576, 20, 3.5,"","","","","","","","", 8.6, 3.0, 0.0, 0.7 8.0,5,a-degr-i2,2022-23,Rockport-Rockport High,02520510, 231, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Rockport-Rockport Middle,02520305, 195, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Rockport-Rockport Elementary,02520005, 240, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Rockport-Rockport Middle,02520305, 195, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Rowe-Rowe Elementary,02530005, 52, 0, 0.0,"", 0.0, 0.0,"", 0.0, 0.0,"","","","","","" 2.8,2.8,a-degr-i2,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505," 1,295", 34, 2.6,"","","","", 2.7, 1.1, 2.3, 0.9, 6.7, 3.5, 2.5, 1.8 -8.0,5,a-degr-i2,2022-23,Salem-Bates,02580003, 284, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --6.199999999999999,1,a-degr-i2,2022-23,Salem-Salem Prep High School,02580515, 14, 1, 7.1,"","","","","","","","","","","", 16.7 -0.7999999999999998,1,a-degr-i2,2022-23,Salem-New Liberty Innovation School,02580510, 56, 2, 3.6,"","","","","","","","","", 0.0, 0.0, 7.7 -2.5999999999999996,2.6,a-degr-i2,2022-23,Salem-Salem High,02580505, 882, 24, 2.7,"","","","","","","","", 4.1, 4.0, 1.0, 1.4 7.6,5,a-degr-i2,2022-23,Salem-Collins Middle,02580305, 612, 1, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" +2.5999999999999996,2.6,a-degr-i2,2022-23,Salem-Salem High,02580505, 882, 24, 2.7,"","","","","","","","", 4.1, 4.0, 1.0, 1.4 8.0,5,a-degr-i2,2022-23,Salem-Witchcraft Heights,02580070, 386, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Salem-Saltonstall School,02580050, 356, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Salem-Horace Mann Laboratory,02580030, 225, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2022-23,Salem-Carlton,02580015, 204, 2, 1.0, 0.0, 4.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Salem-Bentley Academy Innovation School,02580010, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Salem-Bates,02580003, 284, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +-6.199999999999999,1,a-degr-i2,2022-23,Salem-Salem Prep High School,02580515, 14, 1, 7.1,"","","","","","","","","","","", 16.7 +0.7999999999999998,1,a-degr-i2,2022-23,Salem-New Liberty Innovation School,02580510, 56, 2, 3.6,"","","","","","","","","", 0.0, 0.0, 7.7 8.0,5,a-degr-i2,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485, 489, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Sandwich-Forestdale School,02610002, 310, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.8,5,a-degr-i2,2022-23,Sandwich-Oak Ridge,02610025, 674, 1, 0.1,"","", 0.7, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Sandwich-Forestdale School,02610002, 310, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Sandwich-Sandwich Middle High School,02610505, 928, 3, 0.3,"","","","","","", 0.0, 0.0, 0.8, 0.0, 0.0, 1.3 -3.2,3.2,a-degr-i2,2022-23,Saugus-Veterans Early Learning Center,02620065, 170, 4, 2.4, 2.4,"","","","","","","","","","","" -6.4,5,a-degr-i2,2022-23,Saugus-Saugus High,02620505, 709, 6, 0.8,"","","","","","","","", 1.1, 0.0, 2.2, 0.0 7.6,5,a-degr-i2,2022-23,Saugus-Saugus Middle School,02620305, 598, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +6.4,5,a-degr-i2,2022-23,Saugus-Saugus High,02620505, 709, 6, 0.8,"","","","","","","","", 1.1, 0.0, 2.2, 0.0 5.4,5,a-degr-i2,2022-23,Saugus-Belmonte STEAM Academy,02620060, 780, 10, 1.3,"", 2.4, 1.1, 1.0, 0.5,"","","","","","","" +3.2,3.2,a-degr-i2,2022-23,Saugus-Veterans Early Learning Center,02620065, 170, 4, 2.4, 2.4,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Savoy-Emma L Miller Elementary School,02630010, 31, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Scituate-Cushing Elementary,02640007, 283, 1, 0.4, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Scituate-Hatherly Elementary,02640010, 211, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Scituate-Scituate High School,02640505, 762, 11, 1.4,"","","","","","","","", 0.0, 0.0, 0.0, 5.6 7.4,5,a-degr-i2,2022-23,Scituate-Wampatuck Elementary,02640020, 304, 1, 0.3, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Scituate-Gates Middle School,02640305, 605, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +5.2,5,a-degr-i2,2022-23,Scituate-Scituate High School,02640505, 762, 11, 1.4,"","","","","","","","", 0.0, 0.0, 0.0, 5.6 +7.0,5,a-degr-i2,2022-23,Scituate-Hatherly Elementary,02640010, 211, 1, 0.5, 0.0, 2.5, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Scituate-Jenkins Elementary School,02640015, 276, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Scituate-Cushing Elementary,02640007, 283, 1, 0.4, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Seekonk-George R Martin,02650007, 386, 2, 0.5, 1.4, 0.0, 1.2, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2022-23,Seekonk-Seekonk High,02650505, 533, 9, 1.7,"","","","","","","","", 4.2, 1.9, 0.8, 0.0 8.0,5,a-degr-i2,2022-23,Seekonk-Dr. Kevin M. Hurley Middle School,02650405, 490, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.6,5,a-degr-i2,2022-23,Seekonk-Mildred Aitken School,02650015, 439, 1, 0.2, 1.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Sharon-Heights Elementary,02660015, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Sharon-East Elementary,02660010, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Sharon-Cottage Street,02660005, 368, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2022-23,Sharon-Sharon Middle,02660305, 845, 1, 0.1,"","","","","", 0.0, 0.4, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Sharon-Heights Elementary,02660015, 477, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Sharon-East Elementary,02660010, 423, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.2,5,a-degr-i2,2022-23,Sharon-Sharon High,02660505," 1,143", 16, 1.4,"","","","","","","","", 0.0, 0.0, 0.0, 5.3 7.6,5,a-degr-i2,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605," 1,292", 2, 0.2,"","","","","","","","", 0.0, 0.6, 0.0, 0.0 7.4,5,a-degr-i2,2022-23,Sherborn-Pine Hill,02690010, 334, 1, 0.3, 0.0, 0.0, 0.0, 1.4, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Shrewsbury-Floral Street School,02710020, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Shrewsbury-Calvin Coolidge School,02710015, 199, 1, 0.5, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Shrewsbury-Major Howard W. Beal School,02710005, 488, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Shrewsbury-Walter J. Paton School,02710025, 241, 1, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" 7.8,5,a-degr-i2,2022-23,Shrewsbury-Shrewsbury High School,02710505," 1,821", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.2, 0.0 8.0,5,a-degr-i2,2022-23,Shrewsbury-Sherwood Middle School,02710305, 948, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Shrewsbury-Spring Street School,02710035, 260, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Shrewsbury-Oak Middle School,02710030, 944, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" -7.2,5,a-degr-i2,2022-23,Shrewsbury-Walter J. Paton School,02710025, 241, 1, 0.4, 1.8, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Shrewsbury-Floral Street School,02710020, 428, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.0,5,a-degr-i2,2022-23,Shrewsbury-Calvin Coolidge School,02710015, 199, 1, 0.5, 1.9, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Shrewsbury-Major Howard W. Beal School,02710005, 488, 1, 0.2, 1.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Shutesbury-Shutesbury Elementary,02720005, 94, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Silver Lake-Silver Lake Regional Middle School,07600405, 528, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Silver Lake-Silver Lake Regional High,07600505," 1,037", 1, 0.1,"","","","","","","","", 0.0, 0.0, 0.4, 0.0 8.0,5,a-degr-i2,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505, 344, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Somerset-North Elementary,02730008, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Somerset-Chace Street,02730005, 283, 1, 0.4, 0.0, 2.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Somerset-Somerset Middle School,02730305, 575, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.2,5,a-degr-i2,2022-23,Somerset-South,02730015, 220, 2, 0.9, 2.2, 2.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Somerset-North Elementary,02730008, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505, 994, 4, 0.4,"","","","","","","","", 0.0, 0.0, 0.0, 1.7 -8.0,5,a-degr-i2,2022-23,Somerville-E Somerville Community,02740111, 656, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Somerville-Winter Hill Community,02740120, 368, 1, 0.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Somerville-Next Wave Junior High,02740410, 15, 0, 0.0,"","","","","","","", 0.0,"","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Somerville-Somerville High,02740505," 1,296", 35, 2.7,"","","","","","","","", 3.5, 2.1, 1.6, 3.6 8.0,5,a-degr-i2,2022-23,Somerville-Full Circle High School,02740510, 53, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 471, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Somerville-John F Kennedy,02740083, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Somerville-Arthur D Healey,02740075, 435, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 6.8,5,a-degr-i2,2022-23,Somerville-Benjamin G Brown,02740015, 168, 1, 0.6, 2.2, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Somerville-Next Wave Junior High,02740410, 15, 0, 0.0,"","","","","","","", 0.0,"","","","" +7.4,5,a-degr-i2,2022-23,Somerville-Winter Hill Community,02740120, 368, 1, 0.3, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 471, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Somerville-E Somerville Community,02740111, 656, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Somerville-Capuano Early Childhood Center,02740005, 9, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Somerville-West Somerville Neighborhood,02740115, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,South Hadley-South Hadley High,02780505, 495, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,South Hadley-Michael E. Smith Middle School,02780305, 526, 1, 0.2,"","","","", 0.8, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,South Hadley-South Hadley High,02780505, 495, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,South Hadley-Mosier,02780020, 345, 0, 0.0,"", 0.0, 0.0, 0.0,"","","","","","","","" 6.6,5,a-degr-i2,2022-23,South Hadley-Plains Elementary,02780015, 142, 1, 0.7, 0.7,"","","","","","","","","","","" 4.6,4.6,a-degr-i2,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605, 842, 14, 1.7,"","","","","","","","", 1.7, 0.5, 3.3, 1.1 7.0,5,a-degr-i2,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 980, 5, 0.5, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.2, 1.1, 1.4, 0.0 8.0,5,a-degr-i2,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605, 653, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Southampton-William E Norris,02750005, 374, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Southborough-Albert S. Woodward Memorial School,02760050, 268, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Southborough-P Brent Trottier,02760305, 385, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Southborough-Mary E Finn School,02760008, 118, 0, 0.0, 0.0,"","","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Southborough-Margaret A Neary,02760020, 267, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Southborough-Albert S. Woodward Memorial School,02760050, 268, 0, 0.0,"", 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Southborough-Mary E Finn School,02760008, 118, 0, 0.0, 0.0,"","","","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Southbridge-West Street,02770020, 335, 1, 0.3,"", 0.0, 0.0, 0.0, 1.1,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Southbridge-Southbridge Middle School,02770315, 405, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.2,5,a-degr-i2,2022-23,Southbridge-Charlton Street,02770005, 249, 1, 0.4,"", 1.7, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Southbridge-Eastford Road,02770010, 141, 0, 0.0, 0.0,"","","","","","","","","","","" -28.4,1,a-degr-i2,2022-23,Southbridge-Southbridge Academy,02770525, 33, 6, 18.2,"","","","","","","","", 36.4, 33.3,"","" -2.5999999999999996,1,a-degr-i2,2022-23,Southbridge-Southbridge High School,02770515, 457, 24, 5.3,"","","","","","","","", 13.0, 1.7, 3.7, 0.0 +8.0,5,a-degr-i2,2022-23,Southbridge-Southbridge Middle School,02770315, 405, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605," 1,558", 5, 0.3,"","","","","","","","", 0.2, 0.8, 0.3, 0.0 -7.4,5,a-degr-i2,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 294, 1, 0.3,"","","","","", 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Southern Berkshire-New Marlborough Central,07650018, 40, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Southern Berkshire-Undermountain,07650035, 183, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Southern Berkshire-New Marlborough Central,07650018, 40, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +7.4,5,a-degr-i2,2022-23,Southern Berkshire-Mt Everett Regional,07650505, 294, 1, 0.3,"","","","","", 0.0, 0.0, 0.0, 0.0, 2.1, 0.0, 0.0 7.6,5,a-degr-i2,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605," 1,185", 2, 0.2,"","","","","","","","", 0.6, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 624, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 176, 1, 0.6, 1.2, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505, 624, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315, 384, 0, 0.0,"","", 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Spencer-E Brookfield-East Brookfield Elementary,07670008, 112, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 6.8,5,a-degr-i2,2022-23,Spencer-E Brookfield-David Prouty High,07670505, 352, 2, 0.6,"","","","","","","","", 0.0, 1.1, 0.0, 1.4 @@ -1378,19 +3107,12 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 7.8,5,a-degr-i2,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620," 1,360", 2, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700, 88, 2, 2.3,"","","","","","","","", 6.1, 0.0, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield-The Springfield Virtual School,02810705, 430, 10, 2.3, 0.0, 0.0, 0.0, 2.7, 0.0, 0.0, 0.0, 0.0, 11.6, 7.0, 3.0, 0.0 -8.0,5,a-degr-i2,2022-23,Springfield-Impact Prep at Chestnut,02810366, 206, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -5.4,5,a-degr-i2,2022-23,Springfield-Homer Street,02810085, 302, 4, 1.3, 4.0, 0.0, 1.8, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -1.0,1.0,a-degr-i2,2022-23,Springfield-Indian Orchard Elementary,02810100, 372, 13, 3.5, 6.6, 4.5, 5.6, 0.0, 0.0,"","","","","","","" -1.2000000000000002,1.2,a-degr-i2,2022-23,Springfield-Kensington International School,02810110, 178, 6, 3.4, 10.0, 7.4, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Liberty,02810115, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Springfield-Lincoln,02810120, 345, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -2.2,2.2,a-degr-i2,2022-23,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 208, 6, 2.9, 4.5, 10.5, 0.0, 0.0, 0.0,"","","","","","","" --0.5999999999999996,1,a-degr-i2,2022-23,Springfield-Mary M Lynch,02810140, 164, 7, 4.3, 12.1, 0.0, 6.7, 3.0, 0.0,"","","","","","","" -6.2,5,a-degr-i2,2022-23,Springfield-Mary O Pottenger,02810145, 316, 3, 0.9, 5.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Springfield-Mary M Walsh,02810155, 200, 3, 1.5, 5.3, 2.8, 0.0, 0.0, 0.0,"","","","","","","" -5.0,5.0,a-degr-i2,2022-23,Springfield-Sumner Avenue,02810160, 334, 5, 1.5, 4.9, 1.5, 0.0, 1.2, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Arthur T Talmadge,02810165, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2022-23,Springfield-Thomas M Balliet,02810015, 199, 2, 1.0, 1.9, 2.1, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Springfield-Samuel Bowles,02810020, 180, 1, 0.6, 0.0, 0.0, 2.5, 0.0, 0.0,"","","","","","","" +1.5999999999999996,1.6,a-degr-i2,2022-23,Springfield-Milton Bradley School,02810023, 372, 12, 3.2, 4.4, 5.7, 5.6, 1.3, 0.0,"","","","","","","" +6.4,5,a-degr-i2,2022-23,Springfield-Brightwood,02810025, 354, 3, 0.8, 1.5, 1.3, 1.5, 0.0, 0.0,"","","","","","","" +7.0,5,a-degr-i2,2022-23,Springfield-Elias Brookings,02810030, 200, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Daniel B Brunton,02810035, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield-Alice B Beal Elementary,02810175, 214, 5, 2.3, 4.3, 4.3, 0.0, 1.9, 0.0,"","","","","","","" -2.0,1,a-degr-i2,2022-23,Springfield-Warner,02810180, 160, 8, 5.0, 10.3, 5.9, 7.9, 0.0, 0.0,"","","","","","","" 1.2000000000000002,1.2,a-degr-i2,2022-23,Springfield-Washington,02810185, 295, 10, 3.4, 8.0, 6.1, 1.7, 0.0, 0.0,"","","","","","","" @@ -1398,6 +3120,14 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 4.2,4.2,a-degr-i2,2022-23,Springfield-German Gerena Community School,02810195, 419, 8, 1.9, 6.4, 3.2, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205, 631, 1, 0.2,"","","","","", 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0 1.5999999999999996,1.6,a-degr-i2,2022-23,Springfield-Springfield International Academy at Johnson,02810215, 31, 1, 3.2,"","", 0.0, 0.0, 9.1,"","","","","","","" +5.8,5,a-degr-i2,2022-23,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 274, 3, 1.1,"","","","","", 0.0, 1.1, 1.9,"","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Conservatory of the Arts,02810475, 322, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 +7.2,5,a-degr-i2,2022-23,Springfield-Rise Academy at Van Sickle,02810480, 241, 1, 0.4,"","","","","", 0.0, 0.0, 1.3,"","","","" +7.2,5,a-degr-i2,2022-23,Springfield-Van Sickle Academy,02810485, 256, 1, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" +6.2,5,a-degr-i2,2022-23,Springfield-Mary O Pottenger,02810145, 316, 3, 0.9, 5.8, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Springfield-Mary M Walsh,02810155, 200, 3, 1.5, 5.3, 2.8, 0.0, 0.0, 0.0,"","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Springfield-Sumner Avenue,02810160, 334, 5, 1.5, 4.9, 1.5, 0.0, 1.2, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Arthur T Talmadge,02810165, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Springfield-Kiley Prep,02810315, 266, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 4.8,4.8,a-degr-i2,2022-23,Springfield-Kiley Academy,02810316, 315, 5, 1.6,"","","","","", 3.4, 0.9, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Springfield-Springfield Legacy Academy,02810317, 321, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" @@ -1407,28 +3137,6 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.4,5,a-degr-i2,2022-23,Springfield-John F Kennedy Middle,02810328, 390, 5, 1.3,"","","","","", 0.0, 3.6, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Springfield-Springfield Realization Academy,02810335, 133, 0, 0.0,"","","","","", 0.0, 0.0,"","","","","" 4.0,4.0,a-degr-i2,2022-23,Springfield-Springfield Public Day Middle School,02810345, 51, 1, 2.0,"","","","","", 0.0, 9.1, 0.0,"","","","" -6.6,5,a-degr-i2,2022-23,Springfield-STEM Middle Academy,02810350, 297, 2, 0.7,"","","","","", 1.0, 1.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Springfield-South End Middle School,02810355, 187, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" --22.0,1,a-degr-i2,2022-23,Springfield-Springfield Middle School,02810360, 20, 3, 15.0,"","","","","","", 0.0, 10.0,"","","","" --10.8,1,a-degr-i2,2022-23,Springfield-Springfield Public Day Elementary School,02810005, 32, 3, 9.4,"","","", 0.0, 6.3,"","","","","","","" -0.20000000000000018,1,a-degr-i2,2022-23,Springfield-Edward P. Boland School,02810010, 357, 14, 3.9, 9.2, 8.0, 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Springfield-Thomas M Balliet,02810015, 199, 2, 1.0, 1.9, 2.1, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Springfield-Samuel Bowles,02810020, 180, 1, 0.6, 0.0, 0.0, 2.5, 0.0, 0.0,"","","","","","","" -1.5999999999999996,1.6,a-degr-i2,2022-23,Springfield-Milton Bradley School,02810023, 372, 12, 3.2, 4.4, 5.7, 5.6, 1.3, 0.0,"","","","","","","" -6.4,5,a-degr-i2,2022-23,Springfield-Brightwood,02810025, 354, 3, 0.8, 1.5, 1.3, 1.5, 0.0, 0.0,"","","","","","","" -7.0,5,a-degr-i2,2022-23,Springfield-Elias Brookings,02810030, 200, 1, 0.5, 2.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Daniel B Brunton,02810035, 255, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -4.0,4.0,a-degr-i2,2022-23,Springfield-William N. DeBerry,02810045, 200, 4, 2.0, 4.7, 2.7, 2.3, 0.0, 0.0,"","","","","","","" -5.2,5,a-degr-i2,2022-23,Springfield-Hiram L Dorman,02810050, 208, 3, 1.4, 4.3, 2.5, 0.0, 0.0, 0.0,"","","","","","","" -5.6,5,a-degr-i2,2022-23,Springfield-Rebecca M Johnson,02810055, 421, 5, 1.2, 2.1, 3.8, 0.0, 0.0, 0.0,"","","","","","","" -4.4,4.4,a-degr-i2,2022-23,Springfield-Glenwood,02810065, 224, 4, 1.8, 2.0, 9.1, 0.0, 0.0, 0.0,"","","","","","","" -3.0,3.0,a-degr-i2,2022-23,Springfield-Glickman Elementary,02810068, 239, 6, 2.5, 7.7, 7.9, 0.0, 0.0, 0.0,"","","","","","","" -3.2,3.2,a-degr-i2,2022-23,Springfield-Frank H Freedman,02810075, 206, 5, 2.4, 8.0, 0.0, 2.4, 0.0, 0.0,"","","","","","","" -4.2,4.2,a-degr-i2,2022-23,Springfield-Frederick Harris,02810080, 431, 8, 1.9, 3.7, 4.9, 0.0, 1.1, 0.0,"","","","","","","" -5.8,5,a-degr-i2,2022-23,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367, 274, 3, 1.1,"","","","","", 0.0, 1.1, 1.9,"","","","" -8.0,5,a-degr-i2,2022-23,Springfield-Conservatory of the Arts,02810475, 322, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -7.2,5,a-degr-i2,2022-23,Springfield-Rise Academy at Van Sickle,02810480, 241, 1, 0.4,"","","","","", 0.0, 0.0, 1.3,"","","","" -7.2,5,a-degr-i2,2022-23,Springfield-Van Sickle Academy,02810485, 256, 1, 0.4,"","","","","", 1.1, 0.0, 0.0,"","","","" -9.399999999999999,1,a-degr-i2,2022-23,Springfield-Springfield Central High,02810500," 2,095", 183, 8.7,"","","","","","","","", 18.4, 9.2, 0.0, 2.0 6.4,5,a-degr-i2,2022-23,Springfield-High School Of Commerce,02810510," 1,103", 9, 0.8,"","","","","","","","", 0.4, 1.2, 0.8, 0.8 -7.0,1,a-degr-i2,2022-23,Springfield-Springfield High School of Science and Technology,02810530," 1,087", 82, 7.5,"","","","","","","","", 16.3, 8.4, 0.0, 0.0 @@ -1437,288 +3145,279 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE -39.2,1,a-degr-i2,2022-23,Springfield-Springfield High School,02810570, 203, 48, 23.6,"","","","","","","","", 0.0, 6.9, 7.5, 36.8 -38.2,1,a-degr-i2,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575, 26, 6, 23.1,"","","","","","","","","", 14.3, 44.4, 0.0 -58.599999999999994,1,a-degr-i2,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580, 30, 10, 33.3,"","","","","","","","","", 16.7, 53.8, 12.5 +4.0,4.0,a-degr-i2,2022-23,Springfield-William N. DeBerry,02810045, 200, 4, 2.0, 4.7, 2.7, 2.3, 0.0, 0.0,"","","","","","","" +5.2,5,a-degr-i2,2022-23,Springfield-Hiram L Dorman,02810050, 208, 3, 1.4, 4.3, 2.5, 0.0, 0.0, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2022-23,Springfield-Rebecca M Johnson,02810055, 421, 5, 1.2, 2.1, 3.8, 0.0, 0.0, 0.0,"","","","","","","" +4.4,4.4,a-degr-i2,2022-23,Springfield-Glenwood,02810065, 224, 4, 1.8, 2.0, 9.1, 0.0, 0.0, 0.0,"","","","","","","" +3.0,3.0,a-degr-i2,2022-23,Springfield-Glickman Elementary,02810068, 239, 6, 2.5, 7.7, 7.9, 0.0, 0.0, 0.0,"","","","","","","" +3.2,3.2,a-degr-i2,2022-23,Springfield-Frank H Freedman,02810075, 206, 5, 2.4, 8.0, 0.0, 2.4, 0.0, 0.0,"","","","","","","" +4.2,4.2,a-degr-i2,2022-23,Springfield-Frederick Harris,02810080, 431, 8, 1.9, 3.7, 4.9, 0.0, 1.1, 0.0,"","","","","","","" +5.4,5,a-degr-i2,2022-23,Springfield-Homer Street,02810085, 302, 4, 1.3, 4.0, 0.0, 1.8, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 317, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +1.0,1.0,a-degr-i2,2022-23,Springfield-Indian Orchard Elementary,02810100, 372, 13, 3.5, 6.6, 4.5, 5.6, 0.0, 0.0,"","","","","","","" +1.2000000000000002,1.2,a-degr-i2,2022-23,Springfield-Kensington International School,02810110, 178, 6, 3.4, 10.0, 7.4, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Liberty,02810115, 184, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Springfield-Lincoln,02810120, 345, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +2.2,2.2,a-degr-i2,2022-23,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 208, 6, 2.9, 4.5, 10.5, 0.0, 0.0, 0.0,"","","","","","","" +-0.5999999999999996,1,a-degr-i2,2022-23,Springfield-Mary M Lynch,02810140, 164, 7, 4.3, 12.1, 0.0, 6.7, 3.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,Springfield-STEM Middle Academy,02810350, 297, 2, 0.7,"","","","","", 1.0, 1.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Springfield-South End Middle School,02810355, 187, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-22.0,1,a-degr-i2,2022-23,Springfield-Springfield Middle School,02810360, 20, 3, 15.0,"","","","","","", 0.0, 10.0,"","","","" +8.0,5,a-degr-i2,2022-23,Springfield-Impact Prep at Chestnut,02810366, 206, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +-10.8,1,a-degr-i2,2022-23,Springfield-Springfield Public Day Elementary School,02810005, 32, 3, 9.4,"","","", 0.0, 6.3,"","","","","","","" +0.20000000000000018,1,a-degr-i2,2022-23,Springfield-Edward P. Boland School,02810010, 357, 14, 3.9, 9.2, 8.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505," 1,425", 10, 0.7, 1.9, 0.9, 1.5, 0.8, 0.6, 0.8, 0.0, 0.6, 0.9, 0.0, 0.0, 0.0 3.4000000000000004,3.4,a-degr-i2,2022-23,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 433, 10, 2.3, 5.6, 3.6, 1.9, 3.7, 0.0, 1.9, 0.0, 1.9,"","","","" -8.0,5,a-degr-i2,2022-23,Stoneham-Colonial Park,02840005, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Stoneham-Robin Hood,02840025, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 6.4,5,a-degr-i2,2022-23,Stoneham-South,02840030, 246, 2, 0.8, 1.5, 0.0, 1.9, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoneham-Robin Hood,02840025, 289, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoneham-Colonial Park,02840005, 179, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Stoneham-Stoneham Central Middle School,02840405, 678, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.0,5,a-degr-i2,2022-23,Stoneham-Stoneham High,02840505, 614, 3, 0.5,"","","","","","","","", 0.6, 0.7, 0.7, 0.0 -8.0,5,a-degr-i2,2022-23,Stoughton-Helen Hansen Elementary,02850010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Stoughton-Joseph R Dawe Jr Elementary,02850014, 308, 2, 0.6, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoughton-O'Donnell Middle School,02850405, 815, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 1.0,1.0,a-degr-i2,2022-23,Stoughton-Stoughton High,02850505," 1,069", 37, 3.5,"","","","","","","","", 7.9, 3.0, 2.2, 0.0 8.0,5,a-degr-i2,2022-23,Stoughton-South Elementary,02850015, 234, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Stoughton-Helen Hansen Elementary,02850010, 224, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Stoughton-Joseph R Dawe Jr Elementary,02850014, 308, 2, 0.6, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 2.5999999999999996,2.6,a-degr-i2,2022-23,Stoughton-Richard L. Wilkins Elementary School,02850020, 225, 6, 2.7, 6.1, 4.8, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Stoughton-Joseph H Gibbons,02850025, 295, 1, 0.3, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Stoughton-O'Donnell Middle School,02850405, 815, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Sturbridge-Burgess Elementary,02870005, 705, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 5.6,5,a-degr-i2,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505, 830, 10, 1.2,"","","","","","","","", 2.3, 1.4, 1.0, 0.0 -8.0,5,a-degr-i2,2022-23,Sudbury-Josiah Haynes,02880010, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Sudbury-Israel Loring School,02880015, 346, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Sudbury-General John Nixon Elementary,02880025, 273, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Sudbury-Peter Noyes,02880030, 420, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Sudbury-Ephraim Curtis Middle,02880305, 850, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Sudbury-General John Nixon Elementary,02880025, 273, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Sudbury-Israel Loring School,02880015, 346, 1, 0.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Sudbury-Josiah Haynes,02880010, 316, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.4,5,a-degr-i2,2022-23,Sunderland-Sunderland Elementary,02890005, 129, 1, 0.8, 5.9, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Sutton-Sutton High School,02900510, 369, 1, 0.3,"","","","","","","","", 0.0, 0.0, 1.0, 0.0 +7.4,5,a-degr-i2,2022-23,Sutton-Sutton Middle School,02900305, 296, 1, 0.3,"","","","","", 0.0, 1.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Sutton-Sutton Early Learning,02900003, 185, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 7.4,5,a-degr-i2,2022-23,Sutton-Sutton Elementary,02900005, 304, 1, 0.3,"","", 0.0, 0.9, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Sutton-Sutton Middle School,02900305, 296, 1, 0.3,"","","","","", 0.0, 1.0, 0.0,"","","","" -7.4,5,a-degr-i2,2022-23,Sutton-Sutton High School,02900510, 369, 1, 0.3,"","","","","","","","", 0.0, 0.0, 1.0, 0.0 -7.4,5,a-degr-i2,2022-23,Swampscott-Swampscott High,02910505, 636, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.6, 0.7 +6.8,5,a-degr-i2,2022-23,Swampscott-Clarke,02910005, 162, 1, 0.6, 0.0, 2.6, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Swampscott-Hadley,02910010, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Swampscott-Swampscott Middle,02910305, 618, 1, 0.2,"","","","", 0.0, 0.7, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Swampscott-Stanley,02910020, 161, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Swampscott-Hadley,02910010, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Swampscott-Clarke,02910005, 162, 1, 0.6, 0.0, 2.6, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Swansea-Joseph Case Jr High,02920305, 498, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Swansea-Joseph G Luther,02920020, 178, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Swansea-Mark G Hoyle Elementary,02920017, 126, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.4,5,a-degr-i2,2022-23,Swampscott-Swampscott High,02910505, 636, 2, 0.3,"","","","","","","","", 0.0, 0.0, 0.6, 0.7 +8.0,5,a-degr-i2,2022-23,Swansea-Elizabeth S Brown,02920006, 289, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 6.8,5,a-degr-i2,2022-23,Swansea-Gardner,02920015, 173, 1, 0.6, 1.1, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Swansea-Mark G Hoyle Elementary,02920017, 126, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Swansea-Joseph G Luther,02920020, 178, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Swansea-Joseph Case Jr High,02920305, 498, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -0.1999999999999993,1,a-degr-i2,2022-23,Swansea-Joseph Case High,02920505, 533, 22, 4.1,"","","","","","","","", 7.0, 8.6, 0.6, 0.0 -8.0,5,a-degr-i2,2022-23,Swansea-Elizabeth S Brown,02920006, 289, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -13.399999999999999,1,a-degr-i2,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900," 2,872", 308, 10.7, 0.0, 1.4, 2.2, 1.9, 1.4, 1.2, 2.6, 2.6, 24.5, 18.7, 14.7, 7.7 8.0,5,a-degr-i2,2022-23,Tantasqua-Tantasqua Regional Jr High,07700405, 551, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" 6.0,5,a-degr-i2,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505, 667, 7, 1.0,"","","","","","","","", 0.6, 0.6, 2.4, 0.6 7.6,5,a-degr-i2,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605, 524, 1, 0.2,"","","","","","","","", 0.0, 0.0, 0.8, 0.0 +8.0,5,a-degr-i2,2022-23,Taunton-Edmund Hatch Bennett,02930007, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +-29.6,1,a-degr-i2,2022-23,Taunton-Taunton Alternative High School,02930525, 69, 13, 18.8,"","","","","","","","","","", 0.0, 36.1 8.0,5,a-degr-i2,2022-23,Taunton-Taunton High,02930505," 2,751", 1, 0.0,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.2 7.2,5,a-degr-i2,2022-23,Taunton-Benjamin Friedman Middle,02930315, 730, 3, 0.4,"","","","", 0.0, 0.4, 0.8,"","","","","" 8.0,5,a-degr-i2,2022-23,Taunton-John F Parker Middle,02930305, 494, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -8.0,5,a-degr-i2,2022-23,Taunton-Edmund Hatch Bennett,02930007, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -6.8,5,a-degr-i2,2022-23,Taunton-Joseph C Chamberlain,02930008, 360, 2, 0.6, 0.0, 0.0, 2.1, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Taunton-East Taunton Elementary,02930010, 402, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" --29.6,1,a-degr-i2,2022-23,Taunton-Taunton Alternative High School,02930525, 69, 13, 18.8,"","","","","","","","","","", 0.0, 36.1 -7.2,5,a-degr-i2,2022-23,Taunton-Elizabeth Pole,02930027, 464, 2, 0.4, 0.0, 1.7, 0.0, 0.0,"","","","","","","","" -7.0,5,a-degr-i2,2022-23,Taunton-James L. Mulcahey Elementary School,02930015, 646, 3, 0.5, 0.0, 0.0, 1.9, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Taunton-H H Galligan,02930057, 195, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Taunton-Joseph H Martin,02930042, 642, 0, 0.0,"","","","", 0.0, 0.0, 0.0,"","","","","" -5.4,5,a-degr-i2,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 748, 10, 1.3,"","","","","","","","", 1.1, 2.2, 0.5, 1.6 -7.6,5,a-degr-i2,2022-23,Tewksbury-John W. Wynn Middle,02950305, 496, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" -7.6,5,a-degr-i2,2022-23,Tewksbury-John F. Ryan,02950023, 510, 1, 0.2,"","","","", 0.4, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Taunton-Elizabeth Pole,02930027, 464, 2, 0.4, 0.0, 1.7, 0.0, 0.0,"","","","","","","","" +7.0,5,a-degr-i2,2022-23,Taunton-James L. Mulcahey Elementary School,02930015, 646, 3, 0.5, 0.0, 0.0, 1.9, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Taunton-East Taunton Elementary,02930010, 402, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.8,5,a-degr-i2,2022-23,Taunton-Joseph C Chamberlain,02930008, 360, 2, 0.6, 0.0, 0.0, 2.1, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Tewksbury-Louise Davy Trahan,02950025, 216, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Tewksbury-North Street,02950020, 283, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" +5.4,5,a-degr-i2,2022-23,Tewksbury-Tewksbury Memorial High,02950505, 748, 10, 1.3,"","","","","","","","", 1.1, 2.2, 0.5, 1.6 8.0,5,a-degr-i2,2022-23,Tewksbury-Heath-Brook,02950010, 193, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 6.0,5,a-degr-i2,2022-23,Tewksbury-L F Dewing,02950001, 298, 3, 1.0, 1.4, 0.6,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Tewksbury-North Street,02950020, 283, 0, 0.0,"","", 0.0, 0.0,"","","","","","","","" +7.6,5,a-degr-i2,2022-23,Tewksbury-John F. Ryan,02950023, 510, 1, 0.2,"","","","", 0.4, 0.0,"","","","","","" +7.6,5,a-degr-i2,2022-23,Tewksbury-John W. Wynn Middle,02950305, 496, 1, 0.2,"","","","","","", 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Tisbury-Tisbury Elementary,02960005, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Topsfield-Proctor Elementary,02980005, 259, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 7.2,5,a-degr-i2,2022-23,Topsfield-Steward Elementary,02980010, 253, 1, 0.4, 0.0, 1.2, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Topsfield-Proctor Elementary,02980005, 259, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605, 957, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 -6.8,5,a-degr-i2,2022-23,Triton-Salisbury Elementary,07730015, 330, 2, 0.6, 0.0, 0.0, 3.2, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Triton-Newbury Elementary,07730020, 295, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 4.0,4.0,a-degr-i2,2022-23,Triton-Triton Regional High School,07730505, 647, 13, 2.0,"","","","","","","","", 3.8, 2.4, 1.4, 0.6 8.0,5,a-degr-i2,2022-23,Triton-Pine Grove,07730025, 334, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Triton-Triton Regional Middle School,07730405, 320, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +6.8,5,a-degr-i2,2022-23,Triton-Salisbury Elementary,07730015, 330, 2, 0.6, 0.0, 0.0, 3.2, 0.0, 0.0, 0.0,"","","","","","" 5.0,5.0,a-degr-i2,2022-23,Truro-Truro Central,03000005, 67, 1, 1.5, 0.0, 0.0, 7.7, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough Middle,03010305, 400, 1, 0.3,"","","","","", 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough Elementary,03010020, 589, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough Middle,03010305, 400, 1, 0.3,"","","","","", 0.0, 0.0, 0.8,"","","","" 8.0,5,a-degr-i2,2022-23,Tyngsborough-Tyngsborough High School,03010505, 414, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 2.4000000000000004,2.4,a-degr-i2,2022-23,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405, 213, 6, 2.8,"","","","","", 3.3, 2.7, 2.5,"","","","" 2.8,2.8,a-degr-i2,2022-23,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 497, 13, 2.6, 7.6, 7.5, 3.0, 0.0, 1.4, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Up-Island Regional-Chilmark Elementary,07740010, 52, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Up-Island Regional-West Tisbury Elementary,07740020, 304, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Up-Island Regional-Chilmark Elementary,07740010, 52, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.8,5,a-degr-i2,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605, 769, 1, 0.1,"","","","","","","","", 0.0, 0.5, 0.0, 0.0 -5.0,5.0,a-degr-i2,2022-23,Uxbridge-Uxbridge High,03040505, 589, 9, 1.5,"","","","","","","", 0.0, 5.9, 2.6, 0.0, 0.0 -55.2,1,a-degr-i2,2022-23,Uxbridge-Gateway to College,03040515, 38, 12, 31.6,"","","","","","","","","", 50.0, 36.4, 21.1 -8.0,5,a-degr-i2,2022-23,Uxbridge-Taft Early Learning Center,03040005, 357, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +5.0,5.0,a-degr-i2,2022-23,Uxbridge-Uxbridge High,03040505, 589, 9, 1.5,"","","","","","","", 0.0, 5.9, 2.6, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Uxbridge-Whitin Intermediate,03040405, 495, 0, 0.0,"","","", 0.0, 0.0, 0.0, 0.0,"","","","","" +8.0,5,a-degr-i2,2022-23,Uxbridge-Taft Early Learning Center,03040005, 357, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405, 501, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0, 0.0,"","","" -8.0,5,a-degr-i2,2022-23,Wachusett-Naquag Elementary School,07750005, 264, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -7.8,5,a-degr-i2,2022-23,Wachusett-Wachusett Regional High,07750505," 1,912", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 +7.2,5,a-degr-i2,2022-23,Wachusett-Houghton Elementary,07750027, 267, 1, 0.4, 0.0, 0.0, 1.3, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Chocksett Middle School,07750315, 279, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Wachusett-Davis Hill Elementary,07750018, 381, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wachusett-Dawson,07750020, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Central Tree Middle,07750310, 371, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Mountview Middle,07750305, 772, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 7.4,5,a-degr-i2,2022-23,Wachusett-Glenwood Elementary School,07750060, 333, 1, 0.3,"","", 0.9, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Thomas Prince,07750045, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Wachusett-Davis Hill Elementary,07750018, 381, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wachusett-Dawson,07750020, 413, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Wachusett-Houghton Elementary,07750027, 267, 1, 0.4, 0.0, 0.0, 1.3, 0.0,"","","","","","","","" -6.6,5,a-degr-i2,2022-23,Wachusett-Leroy E.Mayo,07750032, 413, 3, 0.7, 0.0, 1.0, 0.0, 1.2, 1.2,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wachusett-Paxton Center,07750040, 401, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Wakefield-Woodville School,03050015, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Wachusett-Leroy E.Mayo,07750032, 413, 3, 0.7, 0.0, 1.0, 0.0, 1.2, 1.2,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wachusett-Naquag Elementary School,07750005, 264, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2022-23,Wachusett-Wachusett Regional High,07750505," 1,912", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.0, 0.4 8.0,5,a-degr-i2,2022-23,Wakefield-Walton,03050040, 174, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.6,5,a-degr-i2,2022-23,Wakefield-Galvin Middle School,03050310," 1,065", 2, 0.2,"","","","", 0.4, 0.0, 0.0, 0.4,"","","","" -7.8,5,a-degr-i2,2022-23,Wakefield-Wakefield Memorial High,03050505, 822, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Wakefield-Greenwood,03050020, 176, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +7.8,5,a-degr-i2,2022-23,Wakefield-Wakefield Memorial High,03050505, 822, 1, 0.1,"","","","","","","","", 0.5, 0.0, 0.0, 0.0 +7.6,5,a-degr-i2,2022-23,Wakefield-Galvin Middle School,03050310," 1,065", 2, 0.2,"","","","", 0.4, 0.0, 0.0, 0.4,"","","","" 8.0,5,a-degr-i2,2022-23,Wakefield-Dolbeare,03050005, 355, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Wakefield-Woodville School,03050015, 337, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Wales-Wales Elementary,03060005, 75, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Walpole-Boyden,03070010, 327, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Walpole-Elm Street School,03070005, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Walpole-Bird Middle,03070305, 377, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Eleanor N Johnson Middle,03070310, 417, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 6.4,5,a-degr-i2,2022-23,Walpole-Walpole High,03070505, 983, 8, 0.8,"","","","","","","","", 0.0, 0.4, 1.6, 1.2 -8.0,5,a-degr-i2,2022-23,Walpole-Fisher,03070015, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Bird Middle,03070305, 377, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Walpole-Old Post Road,03070018, 403, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Walpole-Eleanor N Johnson Middle,03070310, 417, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Fisher,03070015, 390, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Boyden,03070010, 327, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Walpole-Elm Street School,03070005, 369, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-Thomas R Plympton Elementary School,03080050, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.4,5,a-degr-i2,2022-23,Waltham-Northeast Elementary School,03080040, 371, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-Douglas MacArthur Elementary School,03080032, 391, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.6,5,a-degr-i2,2022-23,Waltham-William F. Stanley Elementary School,03080005, 274, 2, 0.7, 1.7, 1.7, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-Waltham Public Schools Dual Language Program,03080001, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-James Fitzgerald Elementary School,03080060, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Waltham-John W. McDevitt Middle School,03080415, 595, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 2.4000000000000004,2.4,a-degr-i2,2022-23,Waltham-Waltham Sr High,03080505," 1,747", 49, 2.8,"","","","","","","","", 5.0, 1.7, 1.8, 2.5 7.6,5,a-degr-i2,2022-23,Waltham-John F Kennedy Middle,03080404, 600, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" -8.0,5,a-degr-i2,2022-23,Waltham-John W. McDevitt Middle School,03080415, 595, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Waltham-Henry Whittemore Elementary School,03080065, 330, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-Waltham Public Schools Dual Language Program,03080001, 173, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.6,5,a-degr-i2,2022-23,Waltham-William F. Stanley Elementary School,03080005, 274, 2, 0.7, 1.7, 1.7, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-Douglas MacArthur Elementary School,03080032, 391, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Waltham-Northeast Elementary School,03080040, 371, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-Thomas R Plympton Elementary School,03080050, 293, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Waltham-James Fitzgerald Elementary School,03080060, 321, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Ware-Ware Middle School,03090305, 248, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 6.4,5,a-degr-i2,2022-23,Ware-Stanley M Koziol Elementary School,03090020, 237, 2, 0.8, 2.7, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Ware-Ware Middle School,03090305, 248, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" -1.0,1,a-degr-i2,2022-23,Ware-Ware Junior/Senior High School,03090505, 491, 22, 4.5,"","","","","","", 0.0, 0.0, 17.9, 5.4, 1.5, 1.8 -10.600000000000001,1,a-degr-i2,2022-23,Wareham-Wareham Senior High,03100505, 614, 57, 9.3,"","","","","","","", 14.4, 13.1, 6.1, 4.2, 0.0 -28.4,1,a-degr-i2,2022-23,Wareham-Wareham Cooperative Alternative School,03100315, 33, 6, 18.2,"","","","","","","","","", 12.5, 11.1, 16.7 -6.2,5,a-degr-i2,2022-23,Wareham-Wareham Elementary School,03100017, 670, 6, 0.9, 1.1, 1.9, 0.5, 0.0,"","","","","","","","" 7.6,5,a-degr-i2,2022-23,Wareham-Wareham Middle,03100305, 437, 1, 0.2,"","","","", 0.6, 0.0, 0.0,"","","","","" -7.2,5,a-degr-i2,2022-23,Watertown-Cunniff,03140015, 279, 1, 0.4, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.2,5,a-degr-i2,2022-23,Wareham-Wareham Elementary School,03100017, 670, 6, 0.9, 1.1, 1.9, 0.5, 0.0,"","","","","","","","" 6.2,5,a-degr-i2,2022-23,Watertown-Hosmer,03140020, 469, 4, 0.9, 1.7, 2.4, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,Watertown-Cunniff,03140015, 279, 1, 0.4, 1.5, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Watertown-James Russell Lowell,03140025, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Watertown-Watertown Middle,03140305, 532, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 3.8,3.8,a-degr-i2,2022-23,Watertown-Watertown High,03140505, 729, 15, 2.1,"","","","","","","","", 2.0, 2.9, 2.4, 0.7 -7.6,5,a-degr-i2,2022-23,Wayland-Claypit Hill School,03150005, 425, 1, 0.2, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wayland-Happy Hollow School,03150015, 319, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wayland-Loker School,03150020, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wayland-Wayland Middle School,03150305, 621, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Wayland-Wayland High School,03150505, 824, 0, 0.0,"","","","","","","","", 0.0, 0.0, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Wayland-Loker School,03150020, 332, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Wayland-Claypit Hill School,03150005, 425, 1, 0.2, 0.0, 1.1, 0.0, 0.0, 0.0,"","","","","","","" +6.0,5,a-degr-i2,2022-23,Webster-Webster Middle School,03160315, 590, 6, 1.0,"","","","", 0.0, 0.6, 1.3, 1.9,"","","","" -7.0,1,a-degr-i2,2022-23,Webster-Bartlett High School,03160505, 359, 27, 7.5,"","","","","","","","", 16.7, 6.1, 5.3, 0.0 6.6,5,a-degr-i2,2022-23,Webster-Park Avenue Elementary,03160015, 557, 4, 0.7, 0.8, 1.5, 0.6, 0.0,"","","","","","","","" -6.0,5,a-degr-i2,2022-23,Webster-Webster Middle School,03160315, 590, 6, 1.0,"","","","", 0.0, 0.6, 1.3, 1.9,"","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-Schofield,03170045, 288, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-Sprague Elementary School,03170048, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-Ernest F Upham,03170050, 139, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.8,5,a-degr-i2,2022-23,Wellesley-Wellesley Middle,03170305, 922, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" 7.6,5,a-degr-i2,2022-23,Wellesley-Wellesley Sr High,03170505," 1,412", 3, 0.2,"","","","","","","","", 0.0, 0.0, 0.0, 0.8 8.0,5,a-degr-i2,2022-23,Wellesley-Katharine Lee Bates,03170005, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.8,5,a-degr-i2,2022-23,Wellesley-Hunnewell,03170025, 172, 1, 0.6, 0.0, 0.0, 3.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wellesley-John D Hardy,03170020, 175, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-Ernest F Upham,03170050, 139, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wellesley-Joseph E Fiske,03170015, 236, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Wellesley-Wellesley Middle,03170305, 922, 1, 0.1,"","","","","", 0.0, 0.0, 0.3,"","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-John D Hardy,03170020, 175, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +6.8,5,a-degr-i2,2022-23,Wellesley-Hunnewell,03170025, 172, 1, 0.6, 0.0, 0.0, 3.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-Schofield,03170045, 288, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Wellesley-Sprague Elementary School,03170048, 247, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wellfleet-Wellfleet Elementary,03180005, 85, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,West Boylston-Major Edwards Elementary,03220005, 329, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,West Boylston-West Boylston Junior/Senior High,03220505, 433, 0, 0.0,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 6.8,5,a-degr-i2,2022-23,West Bridgewater-Howard School,03230305, 311, 2, 0.6,"","","", 0.0, 1.0, 0.9,"","","","","","" 4.2,4.2,a-degr-i2,2022-23,West Bridgewater-Rose L Macdonald,03230003, 311, 6, 1.9, 4.9, 0.0, 1.1,"","","","","","","","","" 7.6,5,a-degr-i2,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505, 625, 1, 0.2,"","","","","","", 0.0, 0.0, 0.9, 0.0, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,West Springfield-Mittineague,03320030, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,West Springfield-Tatham,03320040, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 5.0,5.0,a-degr-i2,2022-23,West Springfield-West Springfield High,03320505," 1,174", 18, 1.5,"","","","","","","","", 4.6, 0.3, 0.4, 0.3 +8.0,5,a-degr-i2,2022-23,West Springfield-Tatham,03320040, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.2,5,a-degr-i2,2022-23,West Springfield-West Springfield Middle,03320305, 897, 4, 0.4,"","","","","", 0.6, 0.3, 0.3,"","","","" 5.0,5.0,a-degr-i2,2022-23,West Springfield-Memorial,03320025, 198, 3, 1.5, 5.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" 4.6,4.6,a-degr-i2,2022-23,West Springfield-John R Fausey,03320010, 411, 7, 1.7, 3.8, 3.4, 0.0, 1.3, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,West Springfield-Philip G Coburn,03320007, 442, 2, 0.5, 1.1, 0.0, 0.0, 0.0, 1.1,"","","","","","","" -7.2,5,a-degr-i2,2022-23,West Springfield-West Springfield Middle,03320305, 897, 4, 0.4,"","","","","", 0.6, 0.3, 0.3,"","","","" -8.0,5,a-degr-i2,2022-23,Westborough-Elsie A Hastings Elementary,03210025, 259, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,West Springfield-Mittineague,03320030, 149, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westborough-Annie E Fales,03210010, 258, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westborough-J Harding Armstrong,03210005, 303, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westborough-Elsie A Hastings Elementary,03210025, 259, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westborough-Mill Pond School,03210045, 865, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 7.6,5,a-degr-i2,2022-23,Westborough-Sarah W Gibbons Middle,03210305, 590, 1, 0.2,"","","","","","", 0.0, 0.3,"","","","" 7.4,5,a-degr-i2,2022-23,Westborough-Westborough High,03210505," 1,167", 4, 0.3,"","","","","","","","", 0.0, 0.0, 0.0, 1.5 -8.0,5,a-degr-i2,2022-23,Westborough-Mill Pond School,03210045, 865, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" -7.0,5,a-degr-i2,2022-23,Westfield-Westfield High,03250505," 1,017", 5, 0.5,"","","","","","","","", 0.0, 0.0, 0.4, 1.7 -6.6,5,a-degr-i2,2022-23,Westfield-Westfield Technical Academy,03250605, 543, 4, 0.7,"","","","","","","","", 0.0, 2.7, 0.0, 0.0 +8.0,5,a-degr-i2,2022-23,Westborough-J Harding Armstrong,03210005, 303, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 5.4,5,a-degr-i2,2022-23,Westfield-Westfield Virtual School,03250705, 79, 1, 1.3,"", 0.0,"","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0 -6.6,5,a-degr-i2,2022-23,Westfield-Franklin Ave,03250015, 140, 1, 0.7, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westfield-Abner Gibbs,03250020, 128, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Westfield-Highland,03250025, 305, 1, 0.3, 0.0, 0.0, 1.4, 0.0,"","","","","","","","" -7.4,5,a-degr-i2,2022-23,Westfield-Munger Hill,03250033, 287, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" -7.2,5,a-degr-i2,2022-23,Westfield-Paper Mill,03250036, 259, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" -5.6,5,a-degr-i2,2022-23,Westfield-Southampton Road,03250040, 242, 3, 1.2, 0.0, 1.7, 3.5, 0.0,"","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westfield-Westfield Intermediate School,03250075, 668, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2022-23,Westfield-Westfield Technical Academy,03250605, 543, 4, 0.7,"","","","","","","","", 0.0, 2.7, 0.0, 0.0 +7.0,5,a-degr-i2,2022-23,Westfield-Westfield High,03250505," 1,017", 5, 0.5,"","","","","","","","", 0.0, 0.0, 0.4, 1.7 7.8,5,a-degr-i2,2022-23,Westfield-Westfield Middle School,03250310, 691, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" -8.0,5,a-degr-i2,2022-23,Westford-Abbot Elementary,03260004, 360, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Westford-Day Elementary,03260007, 327, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Westford-Westford Academy,03260505," 1,523", 2, 0.1,"","","","","","","","", 0.3, 0.3, 0.0, 0.0 -8.0,5,a-degr-i2,2022-23,Westford-Stony Brook School,03260330, 612, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Westfield-Westfield Intermediate School,03250075, 668, 0, 0.0,"","","","", 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Westfield-Southampton Road,03250040, 242, 3, 1.2, 0.0, 1.7, 3.5, 0.0,"","","","","","","","" +7.2,5,a-degr-i2,2022-23,Westfield-Paper Mill,03250036, 259, 1, 0.4, 1.5, 0.0, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Westfield-Munger Hill,03250033, 287, 1, 0.3, 0.0, 1.3, 0.0, 0.0,"","","","","","","","" +7.4,5,a-degr-i2,2022-23,Westfield-Highland,03250025, 305, 1, 0.3, 0.0, 0.0, 1.4, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westfield-Abner Gibbs,03250020, 128, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +6.6,5,a-degr-i2,2022-23,Westfield-Franklin Ave,03250015, 140, 1, 0.7, 2.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Westford-Blanchard Middle,03260310, 543, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Westford-Rita E. Miller Elementary School,03260055, 184, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Westford-John A. Crisafulli Elementary School,03260045, 335, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-Stony Brook School,03260330, 612, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Westford-Day Elementary,03260007, 327, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-Abbot Elementary,03260004, 360, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westford-Nabnasset,03260015, 236, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Westford-Col John Robinson,03260025, 207, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-John A. Crisafulli Elementary School,03260045, 335, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westford-Rita E. Miller Elementary School,03260055, 184, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" +7.8,5,a-degr-i2,2022-23,Westford-Westford Academy,03260505," 1,523", 2, 0.1,"","","","","","","","", 0.3, 0.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Westhampton-Westhampton Elementary School,03270005, 80, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.0,5,a-degr-i2,2022-23,Weston-Weston High,03300505, 639, 3, 0.5,"","","","","","","","", 0.0, 0.0, 1.3, 0.6 +8.0,5,a-degr-i2,2022-23,Weston-Woodland,03300015, 219, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Weston-Field Elementary School,03300012, 266, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weston-Country,03300010, 222, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Weston-Weston Middle,03300305, 444, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Weston-Woodland,03300015, 219, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" -7.0,5,a-degr-i2,2022-23,Weston-Weston High,03300505, 639, 3, 0.5,"","","","","","","","", 0.0, 0.0, 1.3, 0.6 -7.6,5,a-degr-i2,2022-23,Westport-Westport Elementary,03310030, 441, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" 6.4,5,a-degr-i2,2022-23,Westport-Westport Middle-High School,03310515, 829, 7, 0.8,"","","","", 1.7, 0.8, 0.0, 0.0, 1.4, 0.0, 2.4, 1.5 -8.0,5,a-degr-i2,2022-23,Westwood-Downey,03350012, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Westwood-Deerfield School,03350010, 162, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.2,5,a-degr-i2,2022-23,Westwood-Westwood High,03350505, 902, 4, 0.4,"","","","","","","","", 0.0, 0.5, 0.9, 0.4 +7.6,5,a-degr-i2,2022-23,Westport-Westport Elementary,03310030, 441, 1, 0.2, 0.9, 0.0, 0.0, 0.0,"","","","","","","","" 8.0,5,a-degr-i2,2022-23,Westwood-E W Thurston Middle,03350305, 661, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +7.2,5,a-degr-i2,2022-23,Westwood-Westwood High,03350505, 902, 4, 0.4,"","","","","","","","", 0.0, 0.5, 0.9, 0.4 8.0,5,a-degr-i2,2022-23,Westwood-William E Sheehan,03350025, 245, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westwood-Martha Jones,03350017, 230, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Westwood-Paul Hanlon,03350015, 194, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westwood-Downey,03350012, 257, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Westwood-Deerfield School,03350010, 162, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Weymouth-Ralph Talbot,03360085, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Thomas W. Hamilton Primary School,03360105, 281, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Wessagusset,03360110, 296, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Weymouth-Ralph Talbot,03360085, 213, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -6.0,5,a-degr-i2,2022-23,Weymouth-William Seach,03360080, 289, 3, 1.0, 1.7, 1.9, 0.0, 1.7, 0.0,"","","","","","","" +-2.5999999999999996,1,a-degr-i2,2022-23,Weymouth-Weymouth High School,03360505," 1,792", 95, 5.3,"","","","","","","","", 11.4, 5.5, 1.4, 1.7 +7.8,5,a-degr-i2,2022-23,Weymouth-Maria Weston Chapman Middle School,03360020," 1,195", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Lawrence W Pingree,03360065, 216, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Weymouth-Thomas V Nash,03360060, 192, 1, 0.5, 0.0, 2.4, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Weymouth-Frederick C Murphy,03360050, 233, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" --2.5999999999999996,1,a-degr-i2,2022-23,Weymouth-Weymouth High School,03360505," 1,792", 95, 5.3,"","","","","","","","", 11.4, 5.5, 1.4, 1.7 7.2,5,a-degr-i2,2022-23,Weymouth-Academy Avenue,03360005, 279, 1, 0.4, 0.0, 1.8, 0.0, 0.0, 0.0,"","","","","","","" -7.8,5,a-degr-i2,2022-23,Weymouth-Maria Weston Chapman Middle School,03360020," 1,195", 1, 0.1,"","","","","", 0.0, 0.3, 0.0,"","","","" +6.0,5,a-degr-i2,2022-23,Weymouth-William Seach,03360080, 289, 3, 1.0, 1.7, 1.9, 0.0, 1.7, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Whately-Whately Elementary,03370005, 92, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Indian Head,07800035, 392, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Louise A Conley,07800010, 412, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.6,5,a-degr-i2,2022-23,Whitman-Hanson-Whitman Middle,07800310, 504, 1, 0.2,"","","","","", 0.0, 0.0, 0.6,"","","","" +8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Indian Head,07800035, 392, 0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","" +8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Hanson Middle School,07800315, 449, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 4.8,4.8,a-degr-i2,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505," 1,081", 17, 1.6,"","","","","","","","", 0.0, 0.0, 0.0, 5.4 -8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Louise A Conley,07800010, 412, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Whitman-Hanson-John H Duval,07800030, 375, 1, 0.3, 0.0, 0.0, 0.0, 0.0, 1.3,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Whitman-Hanson-Hanson Middle School,07800315, 449, 0, 0.0,"","","","", 0.0, 0.0, 0.0, 0.0,"","","","" 7.8,5,a-degr-i2,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605," 1,277", 1, 0.1,"","","","","","","","", 0.0, 0.3, 0.0, 0.0 8.0,5,a-degr-i2,2022-23,Williamsburg-Anne T. Dunphy School,03400020, 104, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,Wilmington-Wilmington High,03420505, 656, 7, 1.1,"","","","","","","","", 2.6, 1.4, 0.6, 0.0 -7.6,5,a-degr-i2,2022-23,Wilmington-Wilmington Middle School,03420330, 631, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" -7.2,5,a-degr-i2,2022-23,Wilmington-West Intermediate,03420080, 230, 1, 0.4,"","","", 0.9, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Wilmington-North Intermediate,03420060, 252, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Wilmington-Shawsheen Elementary,03420025, 329, 0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","" +8.0,5,a-degr-i2,2022-23,Wilmington-North Intermediate,03420060, 252, 0, 0.0,"","","", 0.0, 0.0,"","","","","","","" 7.4,5,a-degr-i2,2022-23,Wilmington-Woburn Street,03420020, 368, 1, 0.3, 0.8, 0.0, 0.0,"","","","","","","","","" +7.2,5,a-degr-i2,2022-23,Wilmington-West Intermediate,03420080, 230, 1, 0.4,"","","", 0.9, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Wilmington-Wilmington Middle School,03420330, 631, 1, 0.2,"","","","","", 0.0, 0.0, 0.5,"","","","" +5.8,5,a-degr-i2,2022-23,Wilmington-Wilmington High,03420505, 656, 7, 1.1,"","","","","","","","", 2.6, 1.4, 0.6, 0.0 +8.0,5,a-degr-i2,2022-23,Winchendon-Murdock Middle School,03430315, 269, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -4.199999999999999,1,a-degr-i2,2022-23,Winchendon-Murdock High School,03430515, 263, 16, 6.1,"","","","","","","","", 8.0, 2.6, 2.0, 12.0 -73.8,1,a-degr-i2,2022-23,Winchendon-Murdock Academy for Success,03430405, 22, 9, 40.9,"","","","","","","","","","", 25.0, 16.7 -8.0,5,a-degr-i2,2022-23,Winchendon-Murdock Middle School,03430315, 269, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Winchendon-Toy Town Elementary,03430050, 294, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" 7.0,5,a-degr-i2,2022-23,Winchendon-Memorial,03430040, 205, 1, 0.5, 0.0, 1.1,"","","","","","","","","","" -8.0,5,a-degr-i2,2022-23,Winchester-McCall Middle,03440305," 1,037", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -8.0,5,a-degr-i2,2022-23,Winchester-Ambrose Elementary,03440045, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +5.6,5,a-degr-i2,2022-23,Winchester-Winchester High School,03440505," 1,383", 16, 1.2,"","","","","","","","", 0.0, 0.0, 0.0, 4.5 8.0,5,a-degr-i2,2022-23,Winchester-Muraco Elementary,03440040, 278, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Winchester-Ambrose Elementary,03440045, 300, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +8.0,5,a-degr-i2,2022-23,Winchester-McCall Middle,03440305," 1,037", 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Winchester-Vinson-Owen Elementary,03440025, 360, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Winchester-Lynch Elementary,03440020, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Winchester-Lincoln Elementary,03440005, 281, 1, 0.4, 2.1, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -5.6,5,a-degr-i2,2022-23,Winchester-Winchester High School,03440505," 1,383", 16, 1.2,"","","","","","","","", 0.0, 0.0, 0.0, 4.5 -8.0,5,a-degr-i2,2022-23,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 292, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" -2.2,2.2,a-degr-i2,2022-23,Winthrop-Winthrop High School,03460505, 587, 17, 2.9,"","","","","","","","", 6.1, 3.3, 0.0, 1.5 +8.0,5,a-degr-i2,2022-23,Winchester-Lynch Elementary,03440020, 378, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Winthrop-Winthrop Middle School,03460305, 425, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Winthrop-Arthur T. Cummings Elementary School,03460020, 431, 0, 0.0,"","", 0.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Woburn-Daniel L Joyce Middle School,03470410, 447, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" -7.6,5,a-degr-i2,2022-23,Woburn-John F Kennedy Middle School,03470405, 514, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" +2.2,2.2,a-degr-i2,2022-23,Winthrop-Winthrop High School,03460505, 587, 17, 2.9,"","","","","","","","", 6.1, 3.3, 0.0, 1.5 +8.0,5,a-degr-i2,2022-23,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 292, 0, 0.0, 0.0, 0.0,"","","","","","","","","","" 8.0,5,a-degr-i2,2022-23,Woburn-Mary D Altavesta,03470065, 168, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 8.0,5,a-degr-i2,2022-23,Woburn-Malcolm White,03470055, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -7.4,5,a-degr-i2,2022-23,Woburn-Woburn High,03470505," 1,173", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2022-23,Woburn-Shamrock,03470043, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 7.2,5,a-degr-i2,2022-23,Woburn-Clyde Reeves,03470040, 240, 1, 0.4, 0.0, 0.0, 2.0, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Woburn-Linscott-Rumford,03470025, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" +7.6,5,a-degr-i2,2022-23,Woburn-John F Kennedy Middle School,03470405, 514, 1, 0.2,"","","","","", 0.0, 0.6, 0.0,"","","","" 8.0,5,a-degr-i2,2022-23,Woburn-Hurld-Wyman Elementary School,03470020, 318, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.6,5,a-degr-i2,2022-23,Woburn-Goodyear Elementary School,03470005, 274, 2, 0.7, 1.5, 0.0, 1.6, 0.0, 0.0,"","","","","","","" -8.0,5,a-degr-i2,2022-23,Woburn-Shamrock,03470043, 209, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" -2.5999999999999996,2.6,a-degr-i2,2022-23,Worcester-Grafton Street,03480115, 371, 10, 2.7, 9.5, 5.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -3.0,3.0,a-degr-i2,2022-23,Worcester-Heard Street,03480136, 204, 5, 2.5, 6.5, 6.8, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.2,5,a-degr-i2,2022-23,Worcester-Jacob Hiatt Magnet,03480140, 261, 1, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.4,5,a-degr-i2,2022-23,Worcester-Lake View,03480145, 262, 2, 0.8, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" --0.5999999999999996,1,a-degr-i2,2022-23,Worcester-Lincoln Street,03480160, 188, 8, 4.3, 12.2, 4.2, 3.0, 0.0, 0.0, 0.0,"","","","","","" -4.8,4.8,a-degr-i2,2022-23,Worcester-May Street,03480175, 246, 4, 1.6, 6.7, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" -3.4000000000000004,3.4,a-degr-i2,2022-23,Worcester-Gates Lane,03480110, 400, 9, 2.3, 9.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Goddard School/Science Technical,03480100, 315, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Elm Park Community,03480095, 351, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Flagg Street,03480090, 292, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -2.8,2.8,a-degr-i2,2022-23,Worcester-Columbus Park,03480060, 313, 8, 2.6, 2.0, 10.0, 3.1, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-Clark St Community,03480055, 207, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,Worcester-City View,03480053, 357, 4, 1.1, 1.4, 5.4, 0.0, 1.7, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Chandler Magnet,03480052, 319, 1, 0.3, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.2,4.2,a-degr-i2,2022-23,Worcester-Chandler Elementary Community,03480050, 368, 7, 1.9, 9.7, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-Burncoat Street,03480035, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -4.0,4.0,a-degr-i2,2022-23,Worcester-Canterbury,03480045, 199, 4, 2.0, 5.4, 7.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2022-23,Worcester-Belmont Street Community,03480020, 458, 4, 0.9, 4.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-La Familia Dual Language School,03480025, 120, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.2,5,a-degr-i2,2022-23,Worcester-Wawecus Road School,03480026, 114, 1, 0.9, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.6,5,a-degr-i2,2022-23,Worcester-Woodland Academy,03480030, 424, 3, 0.7, 0.0, 4.1, 1.4, 0.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2022-23,Worcester-Francis J McGrath Elementary,03480177, 166, 2, 1.2, 8.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.6,5,a-degr-i2,2022-23,Worcester-Midland Street,03480185, 170, 2, 1.2, 2.6, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.8,5,a-degr-i2,2022-23,Worcester-Nelson Place,03480200, 463, 5, 1.1, 4.9, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Norrback Avenue,03480202, 398, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Worcester-Quinsigamond,03480210, 590, 6, 1.0, 2.7, 2.1, 0.9, 0.0, 0.0, 0.0,"","","","","","" -8.0,5,a-degr-i2,2022-23,Worcester-Rice Square,03480215, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -5.2,5,a-degr-i2,2022-23,Worcester-Roosevelt,03480220, 414, 6, 1.4, 7.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -7.4,5,a-degr-i2,2022-23,Worcester-Worcester Arts Magnet School,03480225, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" -6.0,5,a-degr-i2,2022-23,Worcester-Tatnuck,03480230, 301, 3, 1.0, 2.1, 2.0, 1.9, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Woburn-Woburn High,03470505," 1,173", 3, 0.3,"","","","","","","","", 0.4, 0.0, 0.0, 0.7 +8.0,5,a-degr-i2,2022-23,Woburn-Daniel L Joyce Middle School,03470410, 447, 0, 0.0,"","","","","", 0.0, 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Woburn-Linscott-Rumford,03470025, 157, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","" 6.0,5,a-degr-i2,2022-23,Worcester-Thorndyke Road,03480235, 305, 3, 1.0, 1.7, 2.3, 0.0, 2.1, 0.0, 0.0,"","","","","","" 3.8,3.8,a-degr-i2,2022-23,Worcester-Union Hill School,03480240, 337, 7, 2.1, 3.4, 6.5, 0.0, 0.0, 0.0, 1.8,"","","","","","" 8.0,5,a-degr-i2,2022-23,Worcester-West Tatnuck,03480260, 261, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" @@ -1727,13 +3426,43 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 8.0,5,a-degr-i2,2022-23,Worcester-Claremont Academy,03480350, 484, 0, 0.0,"","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 7.8,5,a-degr-i2,2022-23,Worcester-Burncoat Middle School,03480405, 712, 1, 0.1,"","","","","","", 0.0, 0.3,"","","","" 8.0,5,a-degr-i2,2022-23,Worcester-Forest Grove Middle,03480415, 897, 0, 0.0,"","","","","","", 0.0, 0.0,"","","","" +8.0,5,a-degr-i2,2022-23,Worcester-Burncoat Street,03480035, 210, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.0,4.0,a-degr-i2,2022-23,Worcester-Canterbury,03480045, 199, 4, 2.0, 5.4, 7.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +4.2,4.2,a-degr-i2,2022-23,Worcester-Chandler Elementary Community,03480050, 368, 7, 1.9, 9.7, 0.0, 0.0, 1.4, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Chandler Magnet,03480052, 319, 1, 0.3, 0.0, 2.5, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2022-23,Worcester-City View,03480053, 357, 4, 1.1, 1.4, 5.4, 0.0, 1.7, 0.0, 0.0,"","","","","","" 5.8,5,a-degr-i2,2022-23,Worcester-Worcester East Middle,03480420, 740, 8, 1.1,"","","","","","", 0.3, 1.8,"","","","" 7.6,5,a-degr-i2,2022-23,Worcester-Sullivan Middle,03480423, 827, 2, 0.2,"","","","","", 0.0, 0.5, 0.0,"","","","" -0.40000000000000036,1,a-degr-i2,2022-23,Worcester-Burncoat Senior High,03480503," 1,165", 49, 4.2,"","","","","","","","", 9.8, 3.4, 1.7, 1.1 +6.2,5,a-degr-i2,2022-23,Worcester-Belmont Street Community,03480020, 458, 4, 0.9, 4.3, 1.3, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Worcester-Francis J McGrath Elementary,03480177, 166, 2, 1.2, 8.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.6,5,a-degr-i2,2022-23,Worcester-Midland Street,03480185, 170, 2, 1.2, 2.6, 3.4, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.8,5,a-degr-i2,2022-23,Worcester-Nelson Place,03480200, 463, 5, 1.1, 4.9, 0.0, 0.0, 0.0, 0.0, 1.6,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Norrback Avenue,03480202, 398, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.0,5,a-degr-i2,2022-23,Worcester-Quinsigamond,03480210, 590, 6, 1.0, 2.7, 2.1, 0.9, 0.0, 0.0, 0.0,"","","","","","" +7.8,5,a-degr-i2,2022-23,Worcester-Worcester Technical High,03480605," 1,460", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.3, 0.3 +6.0,5,a-degr-i2,2022-23,Worcester-Tatnuck,03480230, 301, 3, 1.0, 2.1, 2.0, 1.9, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Worcester Arts Magnet School,03480225, 295, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +5.2,5,a-degr-i2,2022-23,Worcester-Roosevelt,03480220, 414, 6, 1.4, 7.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Worcester-Rice Square,03480215, 389, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.6,5,a-degr-i2,2022-23,Worcester-Woodland Academy,03480030, 424, 3, 0.7, 0.0, 4.1, 1.4, 0.0, 0.0, 0.0,"","","","","","" +6.2,5,a-degr-i2,2022-23,Worcester-Wawecus Road School,03480026, 114, 1, 0.9, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +8.0,5,a-degr-i2,2022-23,Worcester-La Familia Dual Language School,03480025, 120, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.2,3.2,a-degr-i2,2022-23,Worcester-South High Community,03480520," 1,655", 40, 2.4,"","","","","","","","", 3.5, 2.0, 0.9, 3.2 +4.8,4.8,a-degr-i2,2022-23,Worcester-May Street,03480175, 246, 4, 1.6, 6.7, 2.9, 0.0, 0.0, 0.0, 0.0,"","","","","","" 3.0,3.0,a-degr-i2,2022-23,Worcester-Doherty Memorial High,03480512," 1,335", 34, 2.5,"","","","","","","","", 5.3, 3.3, 0.6, 0.3 0.0,1,a-degr-i2,2022-23,Worcester-North High,03480515," 1,352", 54, 4.0,"","","","","","","","", 5.6, 4.6, 3.3, 1.8 -3.2,3.2,a-degr-i2,2022-23,Worcester-South High Community,03480520," 1,655", 40, 2.4,"","","","","","","","", 3.5, 2.0, 0.9, 3.2 -7.8,5,a-degr-i2,2022-23,Worcester-Worcester Technical High,03480605," 1,460", 2, 0.1,"","","","","","","","", 0.0, 0.0, 0.3, 0.3 +8.0,5,a-degr-i2,2022-23,Worcester-Clark St Community,03480055, 207, 0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.8,2.8,a-degr-i2,2022-23,Worcester-Columbus Park,03480060, 313, 8, 2.6, 2.0, 10.0, 3.1, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Flagg Street,03480090, 292, 1, 0.3, 1.5, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Elm Park Community,03480095, 351, 1, 0.3, 1.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.4,5,a-degr-i2,2022-23,Worcester-Goddard School/Science Technical,03480100, 315, 1, 0.3, 1.4, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.4000000000000004,3.4,a-degr-i2,2022-23,Worcester-Gates Lane,03480110, 400, 9, 2.3, 9.3, 1.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +2.5999999999999996,2.6,a-degr-i2,2022-23,Worcester-Grafton Street,03480115, 371, 10, 2.7, 9.5, 5.7, 0.0, 0.0, 0.0, 0.0,"","","","","","" +3.0,3.0,a-degr-i2,2022-23,Worcester-Heard Street,03480136, 204, 5, 2.5, 6.5, 6.8, 0.0, 0.0, 0.0, 0.0,"","","","","","" +7.2,5,a-degr-i2,2022-23,Worcester-Jacob Hiatt Magnet,03480140, 261, 1, 0.4, 2.3, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +6.4,5,a-degr-i2,2022-23,Worcester-Lake View,03480145, 262, 2, 0.8, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" +-0.5999999999999996,1,a-degr-i2,2022-23,Worcester-Lincoln Street,03480160, 188, 8, 4.3, 12.2, 4.2, 3.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Worthington-R. H. Conwell,03490010, 46, 0, 0.0,"", 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","" 8.0,5,a-degr-i2,2022-23,Wrentham-Charles E Roderick,03500010, 369, 0, 0.0,"","","", 0.0, 0.0, 0.0,"","","","","","" 7.0,5,a-degr-i2,2022-23,Wrentham-Delaney,03500003, 366, 2, 0.5, 0.8, 0.0, 0.9,"","","","","","","","","" diff --git a/data/admin_data/dese/4D_1_plans_of_grads.csv b/data/admin_data/dese/4D_1_plans_of_grads.csv index d15ae76a..158e78fd 100644 --- a/data/admin_data/dese/4D_1_plans_of_grads.csv +++ b/data/admin_data/dese/4D_1_plans_of_grads.csv @@ -2382,3 +2382,409 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DE 5.045333333333334,5,a-cgpr-i1,2021-22,Worcester - South High Community,03480520, 15.6, 18.6, 0.0, 28.7, 5.4, 0.6, 25.7, 2.1, 1.2, 2.1, 334 5.007999999999999,5,a-cgpr-i1,2021-22,Worcester - University Pk Campus School,03480285, 21.2, 39.4, 0.0, 18.2, 0.0, 3.0, 12.1, 3.0, 3.0, 0.0, 33 4.848,4.85,a-cgpr-i1,2021-22,Worcester - Worcester Technical High,03480605, 11.4, 36.1, 0.0, 19.3, 2.8, 1.4, 19.9, 2.3, 0.0, 6.8, 352 +5.157333333333334,5,a-cgpr-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 23.9, 55.7, 0.0, 11.4, 3.4, 0.0, 2.3, 0.0, 3.4, 0.0, 88 +4.458666666666667,4.46,a-cgpr-i1,2022-23,Abington - Abington High,00010505, 28.6, 48.9, 0.0, 3.8, 1.5, 0.8, 0.0, 1.5, 0.0, 15.0, 133 +5.327999999999999,5,a-cgpr-i1,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 34.6, 40.4, 3.8, 9.6, 0.0, 9.6, 1.9, 0.0, 0.0, 0.0, 52 +5.061333333333334,5,a-cgpr-i1,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 45.2, 47.2, 0.0, 1.6, 0.0, 0.2, 0.7, 0.0, 0.9, 4.3, 445 +5.290666666666667,5,a-cgpr-i1,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 46.4, 47.1, 0.0, 3.6, 0.7, 0.0, 1.4, 0.7, 0.0, 0.0, 138 +5.130666666666667,5,a-cgpr-i1,2022-23,Agawam - Agawam High,00050505, 28.1, 31.5, 0.0, 18.7, 0.4, 0.9, 16.6, 1.3, 0.0, 2.6, 235 +4.928,4.93,a-cgpr-i1,2022-23,Amesbury - Amesbury High,00070505, 27.9, 38.5, 0.0, 12.5, 4.8, 1.0, 7.7, 1.0, 5.8, 1.0, 104 +0.0,1,a-cgpr-i1,2022-23,Amesbury - Amesbury Innovation High School,00070515,"","","","","","","","","","", 3 +4.384,4.38,a-cgpr-i1,2022-23,Amherst-Pelham - Amherst Regional High,06050505, 36.6, 29.7, 0.5, 9.4, 2.5, 0.5, 3.0, 0.0, 0.5, 17.3, 202 +5.12,5,a-cgpr-i1,2022-23,Andover - Andover High,00090505, 48.3, 38.8, 0.0, 5.5, 0.5, 0.0, 2.9, 0.0, 1.4, 2.6, 420 +5.210666666666667,5,a-cgpr-i1,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 20.9, 0.0, 60.5, 0.0, 0.0, 16.3, 2.3, 0.0, 0.0, 43 +5.002666666666666,5,a-cgpr-i1,2022-23,Arlington - Arlington High,00100505, 43.2, 41.0, 0.0, 3.3, 1.4, 1.1, 3.8, 0.0, 5.4, 0.8, 368 +5.168,5,a-cgpr-i1,2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 28.8, 43.6, 0.0, 10.4, 1.8, 0.0, 12.3, 1.8, 0.0, 1.2, 163 +5.215999999999999,5,a-cgpr-i1,2022-23,Ashland - Ashland High,00140505, 34.3, 48.3, 0.0, 9.6, 1.1, 0.6, 3.9, 0.6, 1.1, 0.6, 178 +5.104,5,a-cgpr-i1,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 19.1, 15.6, 0.0, 7.8, 1.2, 0.0, 52.0, 2.3, 0.4, 1.6, 256 +5.114666666666667,5,a-cgpr-i1,2022-23,Athol-Royalston - Athol High,06150505, 5.5, 16.4, 0.0, 17.8, 0.0, 0.0, 56.2, 4.1, 0.0, 0.0, 73 +5.061333333333334,5,a-cgpr-i1,2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 15.6, 32.5, 0.0, 29.9, 6.5, 3.9, 6.5, 1.3, 0.0, 3.9, 77 +4.421333333333334,4.42,a-cgpr-i1,2022-23,Attleboro - Attleboro Community Academy,00160515, 0.0, 2.4, 0.0, 12.2, 4.9, 4.9, 58.5, 2.4, 9.8, 4.9, 41 +5.0986666666666665,5,a-cgpr-i1,2022-23,Attleboro - Attleboro High,00160505, 25.6, 26.9, 0.0, 17.8, 4.7, 0.0, 20.6, 2.9, 1.0, 0.5, 383 +2.6666666666666665,2.67,a-cgpr-i1,2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 8.3, 0.0, 0.0, 41.7, 8.3, 41.7, 0.0, 12 +5.024,5,a-cgpr-i1,2022-23,Auburn - Auburn Senior High,00170505, 22.9, 47.9, 0.0, 10.9, 2.6, 0.0, 9.9, 1.0, 0.5, 4.2, 192 +4.976,4.98,a-cgpr-i1,2022-23,Avon - Avon Middle High School,00180510, 2.2, 48.9, 0.0, 22.2, 0.0, 0.0, 20.0, 2.2, 2.2, 2.2, 45 +4.842666666666666,4.84,a-cgpr-i1,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 27.9, 44.2, 0.0, 10.5, 1.2, 1.2, 5.8, 5.8, 1.2, 2.3, 86 +2.1279999999999997,2.13,a-cgpr-i1,2022-23,Barnstable - Barnstable High,00200505, 13.1, 16.2, 1.2, 6.7, 0.9, 0.0, 1.8, 0.9, 0.6, 58.5, 328 +4.992,4.99,a-cgpr-i1,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 48.9, 6.4, 0.0, 29.8, 8.5, 0.0, 0.0, 6.4, 0.0, 0.0, 47 +5.061333333333334,5,a-cgpr-i1,2022-23,Bedford - Bedford High,00230505, 38.7, 47.2, 0.0, 7.0, 0.0, 0.0, 2.0, 0.0, 4.5, 0.5, 199 +5.050666666666666,5,a-cgpr-i1,2022-23,Belchertown - Belchertown High,00240505, 32.4, 26.5, 0.0, 22.9, 3.5, 1.2, 8.2, 0.6, 1.2, 3.5, 170 +4.602666666666667,4.6,a-cgpr-i1,2022-23,Bellingham - Bellingham High School,00250505, 26.5, 41.0, 0.9, 3.4, 3.4, 0.0, 11.1, 3.4, 0.0, 10.3, 117 +0.0,1,a-cgpr-i1,2022-23,Bellingham - Keough Memorial Academy,00250510,"","","","","","","","","","", 5 +5.061333333333334,5,a-cgpr-i1,2022-23,Belmont - Belmont High,00260505, 57.6, 33.1, 0.0, 1.3, 1.0, 0.0, 1.9, 0.3, 4.1, 0.6, 314 +4.954666666666665,4.95,a-cgpr-i1,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 28.6, 50.0, 3.6, 7.1, 3.6, 0.0, 0.0, 0.0, 0.0, 7.1, 28 +4.992,4.99,a-cgpr-i1,2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 33.9, 29.4, 0.0, 9.2, 3.7, 0.0, 17.4, 1.8, 4.6, 0.0, 109 +5.066666666666666,5,a-cgpr-i1,2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 41.7, 38.3, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0, 5.0, 0.0, 60 +4.357333333333333,4.36,a-cgpr-i1,2022-23,Beverly - Beverly High,00300505, 28.1, 39.4, 0.6, 5.0, 0.0, 1.3, 7.3, 0.6, 5.0, 12.6, 317 +5.157333333333335,5,a-cgpr-i1,2022-23,Billerica - Billerica Memorial High School,00310505, 34.7, 37.6, 0.0, 11.3, 4.7, 0.7, 7.7, 1.1, 1.5, 0.7, 274 +5.082666666666668,5,a-cgpr-i1,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 40.5, 32.7, 0.0, 4.4, 1.4, 5.4, 10.9, 2.0, 2.7, 0.0, 294 +5.002666666666667,5,a-cgpr-i1,2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 34.7, 22.1, 1.1, 8.4, 5.3, 1.1, 21.1, 1.1, 5.3, 0.0, 95 +4.949333333333334,4.95,a-cgpr-i1,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 26.2, 27.2, 1.0, 15.5, 1.5, 0.0, 21.4, 2.4, 0.0, 4.9, 206 +4.688000000000001,4.69,a-cgpr-i1,2022-23,Boston - Another Course To College,00350541, 15.5, 29.3, 1.7, 29.3, 5.2, 0.0, 6.9, 1.7, 3.4, 6.9, 58 +2.538666666666667,2.54,a-cgpr-i1,2022-23,Boston - Boston Adult Tech Academy,00350548, 0.0, 7.6, 1.9, 21.9, 7.6, 0.0, 8.6, 4.8, 1.0, 46.7, 105 +4.730666666666667,4.73,a-cgpr-i1,2022-23,Boston - Boston Arts Academy,00350546, 29.6, 35.7, 0.0, 15.3, 2.0, 0.0, 6.1, 0.0, 4.1, 7.1, 98 +1.4453333333333334,1.45,a-cgpr-i1,2022-23,Boston - Boston Collaborative High School,00350755, 0.0, 2.4, 0.0, 5.9, 4.7, 1.2, 12.9, 0.0, 2.4, 70.6, 85 +4.096,4.1,a-cgpr-i1,2022-23,Boston - Boston Community Leadership Academy,00350558, 20.5, 19.6, 0.9, 25.9, 3.6, 0.0, 6.3, 1.8, 3.6, 17.9, 112 +4.1226666666666665,4.12,a-cgpr-i1,2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 18.7, 13.3, 4.0, 17.3, 2.7, 0.0, 21.3, 2.7, 1.3, 18.7, 75 +5.034666666666667,5,a-cgpr-i1,2022-23,Boston - Boston Latin Academy,00350545, 48.7, 38.0, 0.0, 3.7, 1.3, 1.0, 1.7, 0.7, 0.7, 4.3, 300 +5.136000000000001,5,a-cgpr-i1,2022-23,Boston - Boston Latin School,00350560, 58.3, 34.1, 0.2, 0.7, 2.0, 0.0, 1.0, 0.2, 1.0, 2.4, 410 +4.191999999999999,4.19,a-cgpr-i1,2022-23,Boston - Brighton High School,00350505, 6.5, 18.7, 1.9, 29.0, 1.9, 1.9, 18.7, 0.9, 5.6, 15.0, 107 +4.101333333333334,4.1,a-cgpr-i1,2022-23,Boston - Burke High School,00350525, 6.4, 37.2, 0.0, 12.8, 3.8, 2.6, 14.1, 6.4, 3.8, 12.8, 78 +3.6533333333333333,3.65,a-cgpr-i1,2022-23,Boston - Charlestown High School,00350515, 10.2, 19.7, 0.0, 16.8, 5.8, 0.7, 15.3, 2.2, 5.1, 24.1, 137 +2.970666666666667,2.97,a-cgpr-i1,2022-23,Boston - Community Academy,00350518, 5.6, 11.1, 0.0, 0.0, 5.6, 5.6, 27.8, 0.0, 5.6, 38.9, 18 +3.7920000000000003,3.79,a-cgpr-i1,2022-23,Boston - Community Academy of Science and Health,00350581, 4.4, 20.0, 2.2, 31.1, 6.7, 0.0, 6.7, 0.0, 2.2, 26.7, 45 +4.453333333333333,4.45,a-cgpr-i1,2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 8.2, 20.5, 1.4, 24.7, 6.8, 2.7, 19.2, 0.0, 0.0, 16.4, 73 +3.9519999999999995,3.95,a-cgpr-i1,2022-23,Boston - East Boston High School,00350530, 13.5, 14.8, 1.7, 12.2, 6.6, 1.3, 24.0, 0.9, 5.2, 19.7, 229 +4.698666666666666,4.7,a-cgpr-i1,2022-23,Boston - English High School,00350535, 9.5, 24.6, 1.6, 38.9, 2.4, 0.8, 10.3, 1.6, 2.4, 7.9, 126 +3.7813333333333334,3.78,a-cgpr-i1,2022-23,Boston - Excel High School,00350522, 9.3, 18.6, 2.3, 15.1, 5.8, 3.5, 16.3, 4.7, 4.7, 19.8, 86 +4.426666666666667,4.43,a-cgpr-i1,2022-23,Boston - Fenway High School,00350540, 31.3, 24.1, 0.0, 9.6, 8.4, 0.0, 9.6, 0.0, 0.0, 16.9, 83 +1.7226666666666668,1.72,a-cgpr-i1,2022-23,Boston - Greater Egleston High School,00350543, 0.0, 8.8, 0.0, 11.8, 8.8, 0.0, 2.9, 2.9, 0.0, 64.7, 34 +4.757333333333333,4.76,a-cgpr-i1,2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 16.9, 27.7, 4.6, 24.6, 9.2, 0.0, 6.2, 1.5, 0.0, 9.2, 65 +0.0,1,a-cgpr-i1,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750,"","","","","","","","","","", 2 +3.936,3.94,a-cgpr-i1,2022-23,Boston - Lyon High School,00350655, 13.0, 30.4, 0.0, 17.4, 4.3, 0.0, 8.7, 0.0, 0.0, 26.1, 23 +4.1706666666666665,4.17,a-cgpr-i1,2022-23,Boston - Madison Park Technical Vocational High School,00350537, 6.6, 9.8, 1.1, 19.7, 2.2, 4.4, 34.4, 2.7, 4.4, 14.8, 183 +4.181333333333334,4.18,a-cgpr-i1,2022-23,Boston - Margarita Muniz Academy,00350549, 12.3, 41.5, 1.5, 15.4, 1.5, 0.0, 6.2, 3.1, 1.5, 16.9, 65 +2.464,2.46,a-cgpr-i1,2022-23,Boston - McKinley Schools,00350363, 0.0, 7.7, 0.0, 15.4, 0.0, 0.0, 23.1, 0.0, 0.0, 53.8, 13 +5.114666666666667,5,a-cgpr-i1,2022-23,Boston - New Mission High School,00350542, 37.1, 25.8, 0.0, 15.5, 10.3, 0.0, 7.2, 0.0, 1.0, 3.1, 97 +5.109333333333334,5,a-cgpr-i1,2022-23,Boston - O'Bryant School of Math & Science,00350575, 43.4, 33.0, 0.3, 9.7, 6.9, 0.0, 2.5, 1.3, 0.9, 1.9, 318 +4.997333333333334,5.0,a-cgpr-i1,2022-23,Boston - Quincy Upper School,00350565, 22.6, 35.5, 6.5, 12.9, 9.7, 6.5, 0.0, 0.0, 3.2, 3.2, 31 +4.117333333333334,4.12,a-cgpr-i1,2022-23,Boston - Snowden International High School,00350690, 18.5, 30.4, 1.1, 12.0, 6.5, 0.0, 8.7, 0.0, 3.3, 19.6, 92 +4.634666666666667,4.63,a-cgpr-i1,2022-23,Boston - TechBoston Academy,00350657, 16.4, 18.8, 1.6, 25.0, 6.3, 4.7, 14.1, 1.6, 3.1, 8.6, 128 +4.906666666666666,4.91,a-cgpr-i1,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 36.8, 44.7, 0.0, 1.3, 0.0, 3.9, 5.3, 0.0, 7.9, 0.0, 76 +5.008,5,a-cgpr-i1,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 4.1, 8.2, 0.0, 36.7, 10.2, 16.3, 18.4, 0.0, 6.1, 0.0, 49 +4.586666666666666,4.59,a-cgpr-i1,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 33.3, 24.6, 1.8, 10.5, 15.8, 0.0, 0.0, 0.0, 1.8, 12.3, 57 +5.093333333333334,5,a-cgpr-i1,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 23.2, 53.6, 4.3, 13.0, 0.0, 0.0, 1.4, 0.0, 0.0, 4.3, 69 +4.421333333333334,4.42,a-cgpr-i1,2022-23,Bourne - Bourne High School,00360505, 22.7, 38.6, 0.0, 11.4, 0.0, 0.0, 10.2, 3.4, 0.0, 13.6, 88 +5.28,5,a-cgpr-i1,2022-23,Braintree - Braintree High,00400505, 39.1, 37.3, 0.0, 6.8, 5.5, 0.0, 10.3, 0.5, 0.0, 0.5, 399 +4.618666666666666,4.62,a-cgpr-i1,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 34.6, 34.9, 2.2, 7.3, 1.0, 0.6, 6.0, 3.8, 0.0, 9.5, 315 +0.0,1,a-cgpr-i1,2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415,"","","","","","","","","","", 1 +5.12,5,a-cgpr-i1,2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 18.6, 30.4, 0.0, 17.6, 1.0, 0.0, 28.4, 2.0, 2.0, 0.0, 102 +4.816,4.82,a-cgpr-i1,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 11.9, 20.3, 0.6, 8.7, 6.4, 9.6, 32.8, 2.9, 0.3, 6.4, 311 +4.266666666666667,4.27,a-cgpr-i1,2022-23,Brockton - Brockton Champion High School,00440515, 0.0, 8.0, 0.0, 28.0, 20.0, 0.0, 24.0, 8.0, 0.0, 12.0, 25 +4.656,4.66,a-cgpr-i1,2022-23,Brockton - Brockton High,00440505, 14.7, 25.5, 0.3, 27.1, 7.9, 0.1, 11.7, 2.9, 1.6, 8.2, 760 +4.367999999999999,4.37,a-cgpr-i1,2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 36.4, 0.0, 18.2, 9.1, 0.0, 18.2, 0.0, 9.1, 9.1, 11 +4.250666666666667,4.25,a-cgpr-i1,2022-23,Brockton - Edison Academy,00440520, 0.0, 1.3, 0.0, 30.7, 21.6, 0.0, 26.1, 5.2, 0.0, 15.0, 153 +0.0,1,a-cgpr-i1,2022-23,Brockton - Huntington Therapeutic Day School,00440400,"","","","","","","","","","", 1 +4.901333333333333,4.9,a-cgpr-i1,2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 30.6, 43.9, 0.0, 11.2, 0.0, 3.1, 3.1, 0.0, 0.0, 8.2, 98 +5.12,5,a-cgpr-i1,2022-23,Brookline - Brookline High,00460505, 51.7, 33.3, 0.6, 6.9, 0.2, 0.2, 3.1, 0.0, 3.6, 0.4, 478 +4.992000000000001,4.99,a-cgpr-i1,2022-23,Burlington - Burlington High,00480505, 34.1, 44.7, 0.0, 12.0, 2.8, 0.0, 0.0, 0.5, 6.0, 0.0, 217 +5.077333333333333,5,a-cgpr-i1,2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 47.3, 29.7, 0.0, 9.5, 2.6, 1.1, 5.0, 0.2, 2.2, 2.4, 461 +5.258666666666667,5,a-cgpr-i1,2022-23,Canton - Canton High,00500505, 41.0, 48.8, 1.0, 0.0, 0.5, 0.0, 7.3, 1.0, 0.0, 0.5, 205 +2.672,2.67,a-cgpr-i1,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 7.7, 10.3, 0.0, 7.1, 1.9, 0.0, 23.1, 1.9, 4.5, 43.6, 156 +5.029333333333333,5,a-cgpr-i1,2022-23,Carver - Carver Middle/High School,00520405, 25.0, 28.4, 1.1, 11.4, 9.1, 0.0, 19.3, 3.4, 0.0, 2.3, 88 +5.290666666666667,5,a-cgpr-i1,2022-23,Central Berkshire - Wahconah Regional High,06350505, 27.3, 37.3, 0.9, 15.5, 6.4, 0.0, 11.8, 0.9, 0.0, 0.0, 110 +4.501333333333333,4.5,a-cgpr-i1,2022-23,Chelmsford - Chelmsford High,00560505, 45.6, 30.1, 0.6, 2.6, 0.3, 0.0, 5.2, 1.3, 0.3, 13.9, 309 +5.2,5,a-cgpr-i1,2022-23,Chelsea - Chelsea High,00570505, 14.0, 16.6, 0.0, 30.3, 5.2, 3.0, 28.4, 0.7, 0.7, 1.1, 271 +5.333333333333333,5,a-cgpr-i1,2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 3.0, 3.0, 45.5, 9.1, 3.0, 36.4, 0.0, 0.0, 0.0, 33 +5.333333333333333,5,a-cgpr-i1,2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 13.3, 0.0, 13.3, 0.0, 6.7, 66.7, 0.0, 0.0, 0.0, 15 +3.6693333333333333,3.67,a-cgpr-i1,2022-23,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 43.8, 0.0, 0.0, 31.3, 16 +3.76,3.76,a-cgpr-i1,2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 11.5, 19.8, 0.0, 24.5, 2.8, 1.6, 10.3, 2.0, 4.7, 22.9, 253 +4.490666666666666,4.49,a-cgpr-i1,2022-23,Chicopee - Chicopee High,00610505, 20.5, 14.6, 0.0, 32.4, 1.6, 0.0, 15.1, 2.7, 0.0, 13.0, 185 +5.3279999999999985,5,a-cgpr-i1,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 17.1, 25.7, 0.0, 31.4, 0.0, 8.6, 17.1, 0.0, 0.0, 0.0, 35 +5.290666666666666,5,a-cgpr-i1,2022-23,Clinton - Clinton Senior High,00640505, 31.3, 27.7, 2.7, 9.8, 1.8, 0.0, 25.9, 0.0, 0.0, 0.9, 112 +4.933333333333334,4.93,a-cgpr-i1,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 25.9, 44.4, 0.0, 11.1, 7.4, 0.0, 3.7, 3.7, 0.0, 3.7, 27 +5.008,5,a-cgpr-i1,2022-23,Cohasset - Cohasset High School,00650505, 57.0, 36.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9, 0.9, 4.4, 114 +4.5440000000000005,4.54,a-cgpr-i1,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 22.2, 63.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.7, 11.1, 27 +5.136000000000001,5,a-cgpr-i1,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 25.9, 51.9, 0.0, 7.4, 3.7, 0.0, 7.4, 0.0, 3.7, 0.0, 27 +5.205333333333334,5,a-cgpr-i1,2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 61.3, 32.1, 0.0, 2.4, 0.3, 0.0, 1.5, 0.0, 0.6, 1.8, 336 +5.248000000000001,5,a-cgpr-i1,2022-23,Danvers - Danvers High,00710505, 40.0, 34.2, 0.0, 7.4, 0.0, 7.9, 8.9, 0.5, 1.1, 0.0, 190 +4.842666666666667,4.84,a-cgpr-i1,2022-23,Dartmouth - Dartmouth High,00720505, 22.8, 40.9, 0.4, 17.7, 3.0, 0.0, 6.0, 2.6, 3.9, 2.6, 232 +4.368,4.37,a-cgpr-i1,2022-23,Dedham - Dedham High,00730505, 22.7, 47.1, 0.0, 8.7, 1.7, 0.0, 1.7, 1.2, 0.0, 16.9, 172 +4.938666666666666,4.94,a-cgpr-i1,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 25.7, 28.4, 0.0, 18.9, 2.0, 0.7, 16.9, 3.4, 0.7, 3.4, 148 +5.269333333333334,5,a-cgpr-i1,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 20.3, 38.6, 0.7, 14.4, 2.6, 0.0, 22.2, 1.3, 0.0, 0.0, 153 +5.077333333333333,5,a-cgpr-i1,2022-23,Douglas - Douglas High School,00770505, 25.6, 29.3, 0.0, 9.8, 6.1, 0.0, 24.4, 1.2, 0.0, 3.7, 82 +5.301333333333334,5,a-cgpr-i1,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 62.4, 32.9, 0.0, 0.7, 0.7, 0.0, 2.7, 0.0, 0.7, 0.0, 149 +4.912000000000001,4.91,a-cgpr-i1,2022-23,Dracut - Dracut Senior High,00790505, 23.4, 38.8, 1.1, 17.6, 5.3, 0.0, 5.9, 1.6, 4.8, 1.6, 188 +4.922666666666666,4.92,a-cgpr-i1,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 35.8, 29.2, 0.0, 11.3, 4.2, 0.0, 11.8, 2.4, 0.9, 4.2, 212 +5.328000000000001,5,a-cgpr-i1,2022-23,Duxbury - Duxbury High,00820505, 56.6, 36.7, 0.0, 0.9, 1.3, 0.0, 4.4, 0.0, 0.0, 0.0, 226 +5.093333333333334,5,a-cgpr-i1,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 29.7, 40.5, 0.0, 5.7, 8.2, 0.0, 11.4, 0.6, 3.2, 0.6, 158 +4.922666666666665,4.92,a-cgpr-i1,2022-23,East Longmeadow - East Longmeadow High,00870505, 28.4, 26.5, 1.4, 20.9, 3.3, 0.0, 11.8, 2.4, 5.2, 0.0, 211 +4.986666666666666,4.99,a-cgpr-i1,2022-23,Easthampton - Easthampton High,00860505, 4.3, 50.5, 0.0, 12.9, 0.0, 0.0, 25.8, 1.1, 4.3, 1.1, 93 +4.8,4.8,a-cgpr-i1,2022-23,Easton - Oliver Ames High,00880505, 39.3, 43.7, 0.0, 3.3, 3.7, 0.0, 0.0, 1.5, 7.8, 0.7, 270 +5.072,5,a-cgpr-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 21.7, 34.9, 1.2, 26.5, 4.8, 3.6, 2.4, 0.0, 2.4, 2.4, 83 +4.938666666666666,4.94,a-cgpr-i1,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 22.6, 38.4, 0.0, 8.7, 0.0, 0.0, 22.9, 0.8, 6.1, 0.5, 393 +0.0,1,a-cgpr-i1,2022-23,Everett - Devens School,00930030,"","","","","","","","","","", 2 +3.9573333333333336,3.96,a-cgpr-i1,2022-23,Everett - Everett High,00930505, 14.9, 27.5, 0.0, 9.6, 0.0, 7.8, 14.4, 0.0, 0.0, 25.7, 436 +5.168,5,a-cgpr-i1,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 37.9, 19.9, 1.2, 16.8, 9.9, 1.9, 9.3, 2.5, 0.0, 0.6, 161 +5.034666666666667,5,a-cgpr-i1,2022-23,Fairhaven - Fairhaven High,00940505, 20.9, 46.6, 1.2, 14.7, 0.6, 0.0, 10.4, 0.6, 4.9, 0.0, 163 +4.933333333333334,4.93,a-cgpr-i1,2022-23,Fall River - B M C Durfee High,00950505, 9.3, 16.1, 2.3, 31.3, 2.3, 0.6, 30.6, 2.5, 1.2, 3.7, 483 +4.32,4.32,a-cgpr-i1,2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 35.1, 5.4, 5.4, 35.1, 0.0, 2.7, 16.2, 37 +0.0,1,a-cgpr-i1,2022-23,Fall River - Stone PK-12 School,00950340,"","","","","","","","","","", 5 +5.141333333333334,5,a-cgpr-i1,2022-23,Falmouth - Falmouth High,00960505, 31.1, 42.6, 0.0, 7.9, 3.2, 0.0, 11.6, 2.1, 1.6, 0.0, 190 +5.189333333333334,5,a-cgpr-i1,2022-23,Fitchburg - Fitchburg High,00970505, 8.8, 39.1, 0.4, 29.1, 1.9, 0.0, 18.0, 1.5, 0.0, 1.1, 261 +5.247999999999999,5,a-cgpr-i1,2022-23,Fitchburg - Goodrich Academy,00970510, 0.0, 8.1, 0.0, 20.7, 1.5, 0.0, 68.1, 0.0, 0.7, 0.7, 135 +5.024,5,a-cgpr-i1,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 32.4, 32.4, 0.0, 23.5, 5.9, 0.0, 0.0, 0.0, 0.0, 5.9, 34 +5.061333333333334,5,a-cgpr-i1,2022-23,Foxborough - Foxborough High,00990505, 41.8, 43.5, 0.0, 4.5, 1.7, 0.0, 3.4, 0.6, 1.7, 2.8, 177 +5.093333333333334,5,a-cgpr-i1,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 46.5, 38.4, 0.0, 4.7, 4.7, 0.0, 1.2, 1.2, 0.0, 3.5, 86 +5.237333333333334,5,a-cgpr-i1,2022-23,Framingham - Framingham High School,01000515, 20.4, 37.2, 0.2, 11.6, 4.8, 0.0, 24.0, 1.1, 0.6, 0.2, 545 +5.242666666666666,5,a-cgpr-i1,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 50.0, 37.1, 0.0, 1.6, 4.8, 0.0, 4.8, 0.0, 1.6, 0.0, 62 +5.087999999999999,5,a-cgpr-i1,2022-23,Franklin - Franklin High,01010505, 42.0, 46.1, 0.0, 3.8, 0.7, 0.7, 2.1, 0.5, 3.1, 1.0, 421 +4.725333333333333,4.73,a-cgpr-i1,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 4.8, 4.8, 1.6, 12.1, 0.0, 0.0, 65.3, 5.6, 5.6, 0.0, 124 +5.333333333333332,5,a-cgpr-i1,2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 27.2, 38.6, 0.0, 16.3, 3.3, 1.6, 13.0, 0.0, 0.0, 0.0, 184 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Frontier - Frontier Regional,06700505, 31.8, 28.4, 1.1, 18.2, 2.3, 0.0, 11.4, 3.4, 1.1, 2.3, 88 +5.333333333333333,5,a-cgpr-i1,2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 3.6, 23.6, 0.0, 25.5, 0.0, 0.0, 47.3, 0.0, 0.0, 0.0, 55 +4.485333333333334,4.49,a-cgpr-i1,2022-23,Gardner - Gardner High,01030505, 7.9, 32.5, 0.0, 27.0, 4.0, 0.0, 12.7, 2.4, 4.8, 8.7, 126 +5.082666666666666,5,a-cgpr-i1,2022-23,Gateway - Gateway Regional High,06720505, 22.0, 22.0, 0.0, 17.1, 4.9, 0.0, 29.3, 4.9, 0.0, 0.0, 41 +4.714666666666667,4.71,a-cgpr-i1,2022-23,Georgetown - Georgetown High School,01050505, 28.2, 42.3, 0.0, 6.4, 0.0, 0.0, 11.5, 0.0, 2.6, 9.0, 78 +5.1626666666666665,5,a-cgpr-i1,2022-23,Gill-Montague - Turners Fall High,06740505, 32.3, 9.7, 0.0, 25.8, 0.0, 0.0, 29.0, 3.2, 0.0, 0.0, 31 +5.210666666666666,5,a-cgpr-i1,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 9.3, 30.2, 0.0, 32.6, 0.0, 0.0, 25.6, 2.3, 0.0, 0.0, 43 +4.768000000000001,4.77,a-cgpr-i1,2022-23,Gloucester - Gloucester High,01070505, 29.8, 21.0, 0.0, 7.7, 11.0, 0.0, 19.9, 1.7, 1.7, 7.2, 181 +5.216,5,a-cgpr-i1,2022-23,Grafton - Grafton High School,01100505, 33.8, 42.1, 0.0, 7.0, 0.9, 0.0, 14.0, 0.4, 0.4, 1.3, 228 +4.954666666666667,4.95,a-cgpr-i1,2022-23,Granby - Granby Jr Sr High School,01110505, 35.7, 12.5, 0.0, 19.6, 5.4, 3.6, 16.1, 0.0, 0.0, 7.1, 56 +4.0,4.0,a-cgpr-i1,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 13.6, 18.2, 0.0, 16.7, 4.5, 0.0, 22.0, 1.5, 6.8, 16.7, 132 +4.672,4.67,a-cgpr-i1,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 6.0, 23.2, 0.3, 15.2, 1.9, 14.0, 27.0, 4.1, 0.0, 8.3, 315 +5.1786666666666665,5,a-cgpr-i1,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 12.2, 16.2, 0.0, 20.4, 1.7, 19.7, 26.9, 1.5, 0.2, 1.2, 402 +4.522666666666667,4.52,a-cgpr-i1,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 7.2, 20.6, 0.4, 22.1, 4.0, 0.0, 30.5, 3.0, 11.8, 0.4, 525 +5.258666666666667,5,a-cgpr-i1,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 4.9, 29.9, 0.0, 20.5, 2.5, 0.0, 40.8, 1.3, 0.0, 0.0, 448 +5.178666666666667,5,a-cgpr-i1,2022-23,Greenfield - Greenfield High,01140505, 19.1, 8.8, 1.5, 41.2, 0.0, 0.0, 26.5, 1.5, 1.5, 0.0, 68 +5.082666666666667,5,a-cgpr-i1,2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 38.1, 45.2, 0.0, 5.4, 3.0, 0.0, 3.6, 1.2, 1.2, 2.4, 168 +5.184,5,a-cgpr-i1,2022-23,Hadley - Hopkins Academy,01170505, 43.2, 32.4, 0.0, 13.5, 5.4, 0.0, 2.7, 0.0, 2.7, 0.0, 37 +5.200000000000001,5,a-cgpr-i1,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 55.1, 31.4, 0.0, 5.9, 1.7, 0.0, 3.4, 0.0, 0.0, 2.5, 118 +5.253333333333333,5,a-cgpr-i1,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 54.7, 31.3, 0.0, 10.9, 0.0, 0.0, 1.6, 1.6, 0.0, 0.0, 64 +5.333333333333333,5,a-cgpr-i1,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 68.0, 8.0, 0.0, 20.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25 +5.077333333333335,5,a-cgpr-i1,2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 36.7, 26.7, 0.5, 18.1, 1.4, 1.4, 10.4, 0.9, 2.3, 1.8, 221 +4.896,4.9,a-cgpr-i1,2022-23,Hampshire - Hampshire Regional High,06830505, 33.7, 21.4, 0.0, 26.5, 2.0, 0.0, 8.2, 3.1, 4.1, 1.0, 98 +5.013333333333333,5,a-cgpr-i1,2022-23,Hanover - Hanover High,01220505, 44.3, 39.5, 0.6, 3.0, 1.8, 0.0, 4.8, 2.4, 3.0, 0.6, 167 +4.981333333333334,4.98,a-cgpr-i1,2022-23,Harvard - Bromfield,01250505, 44.7, 48.7, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.6, 76 +4.666666666666667,4.67,a-cgpr-i1,2022-23,Hatfield - Smith Academy,01270505, 29.2, 20.8, 0.0, 33.3, 0.0, 0.0, 4.2, 0.0, 0.0, 12.5, 24 +5.333333333333333,5,a-cgpr-i1,2022-23,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 30.0, 20.0, 0.0, 50.0, 0.0, 0.0, 0.0, 10 +5.109333333333334,5,a-cgpr-i1,2022-23,Haverhill - Haverhill High,01280505, 13.3, 17.5, 0.0, 35.1, 8.9, 0.0, 21.0, 2.2, 1.7, 0.2, 405 +5.04,5,a-cgpr-i1,2022-23,Hingham - Hingham High,01310505, 51.1, 39.4, 0.6, 0.0, 0.9, 0.9, 1.6, 0.0, 0.9, 4.4, 317 +5.1946666666666665,5,a-cgpr-i1,2022-23,Holbrook - Holbrook Middle High School,01330505, 14.1, 42.3, 1.3, 5.1, 12.8, 0.0, 21.8, 1.3, 1.3, 0.0, 78 +5.221333333333332,5,a-cgpr-i1,2022-23,Holliston - Holliston High,01360505, 47.9, 42.3, 0.0, 1.0, 2.6, 0.0, 4.1, 0.0, 0.0, 2.1, 194 +4.928,4.93,a-cgpr-i1,2022-23,Holyoke - Holyoke High,01370505, 10.1, 14.8, 0.9, 31.1, 7.2, 0.6, 27.7, 2.5, 0.0, 5.0, 318 +4.458666666666667,4.46,a-cgpr-i1,2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 22.4, 34.7, 2.0, 6.1, 4.1, 0.0, 14.3, 2.0, 2.0, 12.2, 49 +4.218666666666667,4.22,a-cgpr-i1,2022-23,Hopedale - Hopedale Jr Sr High,01380505, 45.2, 27.4, 0.0, 6.5, 0.0, 0.0, 0.0, 4.8, 16.1, 0.0, 62 +4.986666666666666,4.99,a-cgpr-i1,2022-23,Hopkinton - Hopkinton High,01390505, 45.2, 46.1, 0.0, 0.6, 0.6, 0.0, 1.0, 1.0, 4.5, 1.0, 310 +5.269333333333332,5,a-cgpr-i1,2022-23,Hudson - Hudson High,01410505, 35.3, 28.8, 0.0, 11.1, 0.7, 0.0, 22.9, 0.7, 0.7, 0.0, 153 +5.248,5,a-cgpr-i1,2022-23,Hull - Hull High,01420505, 26.7, 45.0, 0.0, 8.3, 10.0, 1.7, 6.7, 0.0, 0.0, 1.7, 60 +5.008,5,a-cgpr-i1,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 33.7, 36.1, 0.0, 10.8, 0.0, 0.0, 13.3, 1.2, 4.8, 0.0, 83 +5.072,5,a-cgpr-i1,2022-23,Ipswich - Ipswich High,01440505, 36.7, 44.2, 0.0, 10.8, 1.7, 0.0, 1.7, 1.7, 0.0, 3.3, 120 +5.237333333333334,5,a-cgpr-i1,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 34.6, 44.9, 0.0, 4.7, 14.0, 0.0, 0.0, 0.0, 0.9, 0.9, 107 +4.794666666666666,4.79,a-cgpr-i1,2022-23,King Philip - King Philip Regional High,06900505, 39.6, 44.9, 0.0, 2.3, 0.8, 0.0, 2.3, 0.8, 0.8, 8.7, 265 +2.6453333333333333,2.65,a-cgpr-i1,2022-23,Lawrence - High School Learning Center,01490536, 0.9, 7.5, 0.0, 15.0, 10.3, 0.0, 15.9, 0.9, 2.8, 46.7, 107 +4.469333333333334,4.47,a-cgpr-i1,2022-23,Lawrence - Lawrence High School,01490515, 9.3, 21.1, 0.2, 26.3, 19.2, 0.2, 7.5, 1.4, 4.4, 10.5, 589 +0.0,1,a-cgpr-i1,2022-23,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 11 +0.0,1,a-cgpr-i1,2022-23,Lawrence - School for Exceptional Studies,01490537,"","","","","","","","","","", 2 +5.237333333333333,5,a-cgpr-i1,2022-23,Lee - Lee Middle/High School,01500505, 13.8, 34.5, 1.7, 13.8, 10.3, 0.0, 24.1, 0.0, 1.7, 0.0, 58 +5.168,5,a-cgpr-i1,2022-23,Leicester - Leicester High,01510505, 32.0, 23.7, 0.0, 15.5, 1.0, 0.0, 24.7, 3.1, 0.0, 0.0, 97 +4.656000000000001,4.66,a-cgpr-i1,2022-23,Lenox - Lenox Memorial High,01520505, 71.4, 0.0, 0.0, 15.9, 0.0, 0.0, 0.0, 0.0, 0.0, 12.7, 63 +4.848,4.85,a-cgpr-i1,2022-23,Leominster - Center For Technical Education Innovation,01530605, 8.5, 25.4, 0.0, 16.2, 0.0, 8.5, 32.3, 5.4, 3.8, 0.0, 130 +3.2,3.2,a-cgpr-i1,2022-23,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 10.0, 10.0, 0.0, 10.0, 30.0, 0.0, 40.0, 0.0, 10 +4.736,4.74,a-cgpr-i1,2022-23,Leominster - Leominster High School,01530505, 14.2, 44.3, 0.0, 15.2, 1.0, 0.3, 13.8, 2.4, 8.7, 0.0, 289 +5.162666666666667,5,a-cgpr-i1,2022-23,Lexington - Lexington High,01550505, 58.0, 36.0, 0.0, 1.7, 0.2, 0.0, 0.9, 0.5, 1.6, 1.0, 572 +5.274666666666667,5,a-cgpr-i1,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 58.4, 34.9, 0.0, 2.8, 0.8, 0.3, 1.7, 0.3, 0.8, 0.0, 358 +5.338666666666668,5,a-cgpr-i1,2022-23,Littleton - Littleton High School,01580505, 44.8, 46.7, 0.0, 2.9, 0.0, 0.0, 5.7, 0.0, 0.0, 0.0, 105 +4.650666666666668,4.65,a-cgpr-i1,2022-23,Longmeadow - Longmeadow High,01590505, 51.2, 25.1, 0.0, 9.0, 1.4, 0.0, 0.5, 1.4, 2.8, 8.5, 211 +0.0,1,a-cgpr-i1,2022-23,Lowell - Leblanc Therapeutic Day School,01600320,"","","","","","","","","","", 4 +5.114666666666667,5,a-cgpr-i1,2022-23,Lowell - Lowell High,01600505, 13.3, 28.7, 0.2, 27.7, 7.5, 3.8, 14.7, 2.1, 1.0, 1.0, 585 +5.114666666666667,5,a-cgpr-i1,2022-23,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 95.9, 2.0, 0.0, 2.0, 49 +2.9226666666666667,2.92,a-cgpr-i1,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 16.1, 0.0, 0.0, 38.7, 0.0, 3.2, 41.9, 31 +4.778666666666667,4.78,a-cgpr-i1,2022-23,Ludlow - Ludlow Senior High,01610505, 30.9, 25.7, 0.0, 20.9, 4.2, 0.0, 7.9, 5.8, 4.7, 0.0, 191 +5.168,5,a-cgpr-i1,2022-23,Lunenburg - Lunenburg High,01620505, 20.6, 53.6, 0.0, 10.3, 0.0, 0.0, 12.4, 1.0, 0.0, 2.1, 97 +5.1466666666666665,5,a-cgpr-i1,2022-23,Lynn - Classical High,01630505, 13.0, 24.6, 0.2, 24.9, 9.2, 0.2, 24.4, 1.0, 1.4, 1.0, 414 +5.056,5,a-cgpr-i1,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 5.3, 5.3, 0.0, 36.8, 0.0, 0.0, 47.4, 0.0, 0.0, 5.3, 19 +4.368,4.37,a-cgpr-i1,2022-23,Lynn - Lynn English High,01630510, 16.4, 20.8, 0.8, 21.9, 1.6, 0.3, 20.1, 0.0, 6.8, 11.5, 384 +5.1466666666666665,5,a-cgpr-i1,2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 10.0, 15.1, 0.0, 23.5, 4.4, 7.6, 35.9, 2.8, 0.4, 0.4, 251 +5.253333333333333,5,a-cgpr-i1,2022-23,Lynnfield - Lynnfield High,01640505, 48.5, 44.8, 0.0, 1.5, 1.5, 0.0, 2.2, 0.0, 0.7, 0.7, 134 +5.333333333333333,5,a-cgpr-i1,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50 +4.794666666666667,4.79,a-cgpr-i1,2022-23,Malden - Malden High,01650505, 18.5, 34.4, 0.5, 17.0, 3.5, 1.0, 15.0, 0.5, 4.7, 5.0, 401 +5.029333333333333,5,a-cgpr-i1,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 46.3, 40.7, 0.8, 0.8, 0.8, 0.0, 4.9, 0.8, 0.8, 4.1, 123 +5.2266666666666675,5,a-cgpr-i1,2022-23,Mansfield - Mansfield High,01670505, 36.2, 44.5, 0.0, 5.2, 4.5, 1.4, 6.2, 0.3, 0.3, 1.4, 290 +5.135999999999999,5,a-cgpr-i1,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 1.9, 0.0, 0.0, 33.3, 31.5, 0.0, 29.6, 1.9, 1.9, 0.0, 54 +4.8693333333333335,4.87,a-cgpr-i1,2022-23,Marblehead - Marblehead High,01680505, 44.5, 39.5, 0.0, 3.2, 1.8, 0.0, 2.3, 0.5, 0.5, 7.7, 220 +4.810666666666666,4.81,a-cgpr-i1,2022-23,Marlborough - Marlborough High,01700505, 16.7, 29.7, 2.7, 16.7, 0.0, 0.8, 23.6, 1.9, 0.4, 7.6, 263 +4.597333333333333,4.6,a-cgpr-i1,2022-23,Marshfield - Marshfield High,01710505, 45.8, 30.3, 1.7, 1.3, 0.7, 2.4, 4.0, 2.4, 1.7, 9.8, 297 +4.981333333333334,4.98,a-cgpr-i1,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 33.0, 33.0, 0.0, 5.0, 2.8, 0.0, 19.6, 1.1, 2.8, 2.8, 179 +4.741333333333333,4.74,a-cgpr-i1,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 55.6, 11.1, 0.0, 0.0, 0.0, 0.0, 22.2, 0.0, 11.1, 0.0, 9 +5.157333333333334,5,a-cgpr-i1,2022-23,Masconomet - Masconomet Regional High School,07050505, 54.9, 33.1, 0.4, 5.3, 1.5, 0.0, 1.5, 0.8, 0.8, 1.9, 266 +4.997333333333333,5.0,a-cgpr-i1,2022-23,Mashpee - Mashpee Middle-High School,01720505, 25.7, 41.3, 0.0, 13.8, 0.0, 2.8, 10.1, 3.7, 2.8, 0.0, 109 +5.157333333333335,5,a-cgpr-i1,2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 45.8, 44.1, 0.0, 3.4, 0.0, 0.0, 3.4, 0.0, 3.4, 0.0, 59 +4.373333333333333,4.37,a-cgpr-i1,2022-23,Maynard - Maynard High,01740505, 26.4, 37.5, 0.0, 5.6, 0.0, 0.0, 12.5, 0.0, 8.3, 9.7, 72 +5.114666666666667,5,a-cgpr-i1,2022-23,Medfield - Medfield Senior High,01750505, 50.5, 43.4, 0.0, 1.5, 0.5, 0.0, 0.0, 0.0, 3.0, 1.0, 198 +0.0,1,a-cgpr-i1,2022-23,Medford - Curtis-Tufts,01760510,"","","","","","","","","","", 2 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Medford - Medford High,01760505, 26.4, 31.6, 0.0, 12.1, 4.2, 0.7, 18.2, 1.0, 3.9, 2.0, 307 +5.135999999999999,5,a-cgpr-i1,2022-23,Medway - Medway High,01770505, 44.1, 38.5, 0.6, 2.5, 2.5, 0.0, 8.1, 0.6, 0.0, 3.1, 161 +4.773333333333334,4.77,a-cgpr-i1,2022-23,Melrose - Melrose High,01780505, 46.8, 37.6, 0.0, 3.7, 1.4, 0.0, 0.0, 0.5, 6.4, 3.7, 218 +4.650666666666666,4.65,a-cgpr-i1,2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 37.9, 40.7, 0.0, 3.6, 0.0, 0.7, 4.3, 0.7, 5.0, 7.1, 140 +4.741333333333333,4.74,a-cgpr-i1,2022-23,Methuen - Methuen High,01810505, 18.2, 23.8, 0.6, 22.5, 8.4, 0.0, 15.4, 2.2, 0.0, 8.9, 462 +4.4479999999999995,4.45,a-cgpr-i1,2022-23,Middleborough - Middleborough High,01820505, 28.4, 34.5, 1.0, 8.2, 7.2, 0.0, 4.1, 0.5, 15.5, 0.5, 194 +3.6373333333333333,3.64,a-cgpr-i1,2022-23,Milford - Milford High,01850505, 22.6, 30.7, 0.0, 8.7, 4.5, 1.4, 0.3, 0.7, 1.4, 29.6, 287 +4.256,4.26,a-cgpr-i1,2022-23,Millbury - Millbury Junior/Senior High,01860505, 26.6, 36.3, 0.0, 14.5, 2.4, 0.0, 0.0, 1.6, 17.7, 0.8, 124 +4.672,4.67,a-cgpr-i1,2022-23,Millis - Millis High School,01870505, 49.3, 34.2, 0.0, 0.0, 0.0, 0.0, 4.1, 0.0, 4.1, 8.2, 73 +0.0,1,a-cgpr-i1,2022-23,Millis - TIES,01870515,"","","","","","","","","","", 1 +5.029333333333333,5,a-cgpr-i1,2022-23,Milton - Milton High,01890505, 45.5, 38.7, 0.0, 5.6, 1.1, 1.5, 1.9, 0.8, 3.0, 1.9, 266 +3.8880000000000003,3.89,a-cgpr-i1,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 20.9, 23.6, 0.0, 14.2, 3.4, 10.8, 0.0, 3.4, 6.1, 17.6, 148 +4.48,4.48,a-cgpr-i1,2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 20.0, 16.0, 0.0, 44.0, 0.0, 4.0, 0.0, 0.0, 12.0, 4.0, 25 +5.0133333333333345,5,a-cgpr-i1,2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 42.4, 18.6, 0.0, 22.9, 4.2, 0.0, 5.9, 4.2, 1.7, 0.0, 118 +3.9626666666666672,3.96,a-cgpr-i1,2022-23,Monson - Monson High School,01910505, 14.3, 22.9, 0.0, 37.1, 0.0, 0.0, 0.0, 5.7, 17.1, 2.9, 35 +4.538666666666666,4.54,a-cgpr-i1,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 12.3, 25.9, 0.9, 15.1, 0.3, 0.3, 30.3, 2.2, 3.8, 8.8, 317 +5.136000000000001,5,a-cgpr-i1,2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 56.1, 25.6, 0.0, 7.3, 2.4, 0.0, 4.9, 1.2, 2.4, 0.0, 82 +5.333333333333333,5,a-cgpr-i1,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 45.8, 54.2, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72 +5.04,5,a-cgpr-i1,2022-23,Nantucket - Nantucket High,01970505, 26.9, 33.8, 2.8, 6.2, 3.4, 0.0, 21.4, 2.1, 3.4, 0.0, 145 +4.725333333333333,4.73,a-cgpr-i1,2022-23,Narragansett - Narragansett Regional High,07200505, 16.1, 30.6, 0.0, 16.1, 11.3, 0.0, 14.5, 1.6, 1.6, 8.1, 62 +5.056,5,a-cgpr-i1,2022-23,Nashoba - Nashoba Regional,07250505, 43.8, 41.1, 0.0, 5.2, 1.6, 0.0, 3.1, 0.0, 4.2, 1.0, 192 +5.103999999999999,5,a-cgpr-i1,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 15.6, 22.5, 1.3, 11.9, 6.3, 10.0, 28.1, 0.0, 0.0, 4.4, 160 +5.173333333333333,5,a-cgpr-i1,2022-23,Natick - Natick High,01980505, 41.4, 45.6, 0.0, 4.2, 0.5, 1.3, 4.0, 0.8, 1.9, 0.3, 377 +4.927999999999999,4.93,a-cgpr-i1,2022-23,Nauset - Nauset Regional High,06600505, 38.9, 34.8, 1.0, 7.6, 0.5, 0.0, 9.6, 1.0, 5.6, 1.0, 198 +5.077333333333333,5,a-cgpr-i1,2022-23,Needham - Needham High,01990505, 53.6, 38.1, 0.3, 1.6, 0.3, 0.5, 0.8, 0.3, 1.3, 3.2, 375 +4.943999999999999,4.94,a-cgpr-i1,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 10.9, 36.4, 1.8, 10.9, 23.6, 0.0, 9.1, 0.0, 0.0, 7.3, 55 +4.826666666666667,4.83,a-cgpr-i1,2022-23,New Bedford - New Bedford High,02010505, 6.8, 18.6, 0.0, 30.4, 7.5, 0.2, 27.0, 2.3, 2.6, 4.6, 570 +5.333333333333333,5,a-cgpr-i1,2022-23,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 66.7, 0.0, 0.0, 33.3, 0.0, 0.0, 0.0, 9 +5.2,5,a-cgpr-i1,2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 17.1, 0.0, 26.8, 2.4, 0.0, 51.2, 0.0, 0.0, 2.4, 41 +5.333333333333333,5,a-cgpr-i1,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 62.5, 0.0, 37.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80 +4.949333333333334,4.95,a-cgpr-i1,2022-23,Newburyport - Newburyport High,02040505, 41.1, 40.6, 0.0, 6.3, 0.5, 0.0, 4.3, 1.4, 4.8, 1.0, 207 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Newton - Newton North High,02070505, 54.0, 34.2, 0.2, 2.6, 0.0, 0.0, 2.2, 0.4, 3.3, 3.1, 491 +4.746666666666666,4.75,a-cgpr-i1,2022-23,Newton - Newton South High,02070510, 59.6, 25.7, 1.1, 1.5, 0.0, 0.0, 1.1, 0.8, 5.3, 5.1, 475 +5.013333333333334,5,a-cgpr-i1,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 22.0, 41.7, 0.0, 9.8, 0.0, 2.3, 18.2, 3.0, 0.8, 2.3, 132 +4.373333333333333,4.37,a-cgpr-i1,2022-23,North Adams - Drury High,02090505, 19.7, 23.0, 1.6, 3.3, 9.8, 0.0, 24.6, 3.3, 9.8, 4.9, 61 +5.050666666666666,5,a-cgpr-i1,2022-23,North Andover - North Andover High,02110505, 35.4, 45.7, 0.3, 5.0, 2.3, 0.0, 6.0, 1.0, 1.7, 2.6, 302 +4.959999999999999,4.96,a-cgpr-i1,2022-23,North Attleborough - North Attleboro High,02120505, 32.3, 44.4, 0.0, 6.6, 0.8, 0.0, 8.9, 1.2, 0.0, 5.8, 257 +4.1066666666666665,4.11,a-cgpr-i1,2022-23,North Brookfield - North Brookfield High,02150505, 0.0, 46.2, 0.0, 30.8, 0.0, 0.0, 0.0, 0.0, 0.0, 23.1, 13 +4.96,4.96,a-cgpr-i1,2022-23,North Middlesex - North Middlesex Regional,07350505, 22.2, 43.3, 0.0, 11.1, 4.7, 0.0, 11.7, 1.8, 0.0, 5.3, 171 +5.2426666666666675,5,a-cgpr-i1,2022-23,North Reading - North Reading High,02170505, 45.7, 41.6, 0.0, 3.5, 2.3, 0.0, 5.2, 0.6, 0.6, 0.6, 173 +4.896,4.9,a-cgpr-i1,2022-23,Northampton - Northampton High,02100505, 39.9, 29.2, 0.0, 12.0, 1.3, 0.0, 9.4, 0.4, 5.6, 2.1, 233 +4.666666666666667,4.67,a-cgpr-i1,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 8.6, 11.7, 0.8, 8.6, 3.1, 0.0, 54.7, 5.5, 0.8, 6.3, 128 +5.296,5,a-cgpr-i1,2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 53.2, 34.3, 0.3, 2.2, 0.6, 0.0, 8.7, 0.3, 0.3, 0.0, 312 +5.290666666666667,5,a-cgpr-i1,2022-23,Northbridge - Northbridge High,02140505, 16.0, 35.2, 0.0, 19.2, 8.0, 0.0, 20.8, 0.8, 0.0, 0.0, 125 +4.938666666666666,4.94,a-cgpr-i1,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 17.8, 15.7, 0.4, 9.6, 4.3, 1.4, 43.4, 1.1, 0.4, 6.0, 281 +5.034666666666667,5,a-cgpr-i1,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 16.3, 29.3, 0.0, 10.6, 1.6, 0.8, 35.8, 4.9, 0.0, 0.8, 123 +4.8053333333333335,4.81,a-cgpr-i1,2022-23,Norton - Norton High,02180505, 36.8, 33.7, 0.0, 6.7, 4.3, 0.0, 8.6, 1.8, 4.9, 3.1, 163 +5.088000000000001,5,a-cgpr-i1,2022-23,Norwell - Norwell High,02190505, 53.7, 35.6, 0.7, 2.7, 2.0, 0.0, 0.7, 1.3, 2.0, 1.3, 149 +5.184,5,a-cgpr-i1,2022-23,Norwood - Norwood High,02200505, 35.4, 33.9, 0.0, 8.9, 8.9, 0.0, 10.1, 1.9, 0.8, 0.0, 257 +5.173333333333333,5,a-cgpr-i1,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 16.4, 32.1, 1.4, 12.1, 0.0, 0.0, 35.0, 1.4, 1.4, 0.0, 140 +4.757333333333333,4.76,a-cgpr-i1,2022-23,Old Rochester - Old Rochester Regional High,07400505, 37.7, 35.3, 1.8, 5.4, 2.4, 1.8, 4.8, 1.2, 3.6, 6.0, 167 +4.613333333333332,4.61,a-cgpr-i1,2022-23,Oxford - Oxford High,02260505, 27.5, 18.8, 0.0, 26.3, 1.3, 1.3, 11.3, 1.3, 2.5, 10.0, 80 +5.253333333333333,5,a-cgpr-i1,2022-23,Palmer - Palmer High,02270505, 14.8, 19.7, 0.0, 27.9, 6.6, 0.0, 29.5, 1.6, 0.0, 0.0, 61 +4.224,4.22,a-cgpr-i1,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 15.2, 12.0, 0.0, 16.0, 0.0, 5.6, 30.4, 2.4, 0.0, 18.4, 125 +4.874666666666666,4.87,a-cgpr-i1,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 23.4, 10.6, 0.0, 53.2, 0.0, 2.1, 2.1, 2.1, 6.4, 0.0, 47 +5.333333333333333,5,a-cgpr-i1,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 25.0, 0.0, 0.0, 33.3, 0.0, 0.0, 41.7, 0.0, 0.0, 0.0, 12 +5.114666666666667,5,a-cgpr-i1,2022-23,Peabody - Peabody Veterans Memorial High,02290510, 28.6, 30.3, 0.0, 14.2, 4.6, 2.0, 16.2, 1.4, 0.0, 2.6, 346 +4.213333333333333,4.21,a-cgpr-i1,2022-23,Pembroke - Pembroke High School,02310505, 44.1, 31.3, 3.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 195 +4.810666666666667,4.81,a-cgpr-i1,2022-23,Pentucket - Pentucket Regional Sr High,07450505, 41.6, 34.4, 0.0, 8.4, 1.3, 0.0, 4.5, 3.2, 3.2, 3.2, 154 +5.333333333333333,5,a-cgpr-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 28.6, 0.0, 14.3, 0.0, 0.0, 57.1, 0.0, 0.0, 0.0, 7 +4.885333333333333,4.89,a-cgpr-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.0, 0.0, 0.0, 8.3, 8.3, 0.0, 75.0, 0.0, 8.3, 0.0, 12 +3.5519999999999996,3.55,a-cgpr-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.0, 33.3, 0.0, 22.2, 0.0, 0.0, 11.1, 11.1, 22.2, 0.0, 9 +5.205333333333333,5,a-cgpr-i1,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 54.5, 38.6, 0.0, 4.5, 0.0, 0.0, 0.0, 0.0, 2.3, 0.0, 44 +5.333333333333333,5,a-cgpr-i1,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 47.8, 41.3, 0.0, 10.9, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46 +4.890666666666667,4.89,a-cgpr-i1,2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 16.3, 26.5, 0.0, 30.6, 6.1, 0.0, 12.2, 0.0, 8.2, 0.0, 49 +5.338666666666668,5,a-cgpr-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 63.2, 31.6, 0.0, 5.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19 +5.242666666666667,5,a-cgpr-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 49.1, 14.0, 0.0, 15.8, 8.8, 1.8, 8.8, 0.0, 1.8, 0.0, 57 +0.0,1,a-cgpr-i1,2022-23,Pittsfield - Eagle Education Academy,02360525,"","","","","","","","","","", 2 +5.0666666666666655,5,a-cgpr-i1,2022-23,Pittsfield - Pittsfield High,02360505, 25.9, 30.2, 0.0, 21.6, 2.2, 0.0, 15.1, 2.2, 0.0, 2.9, 139 +5.327999999999999,5,a-cgpr-i1,2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 8.3, 25.0, 0.0, 8.3, 8.3, 0.0, 50.0, 0.0, 0.0, 0.0, 12 +5.0986666666666665,5,a-cgpr-i1,2022-23,Pittsfield - Taconic High,02360510, 16.9, 15.7, 0.6, 28.7, 8.4, 1.1, 24.2, 1.7, 0.0, 2.8, 178 +5.264000000000001,5,a-cgpr-i1,2022-23,Plymouth - Plymouth North High,02390505, 23.3, 34.6, 0.0, 7.9, 8.2, 0.0, 24.7, 1.4, 0.0, 0.0, 292 +5.013333333333334,5,a-cgpr-i1,2022-23,Plymouth - Plymouth South High,02390515, 25.6, 29.4, 0.0, 9.2, 4.6, 0.4, 24.8, 5.5, 0.4, 0.0, 238 +4.591999999999999,4.59,a-cgpr-i1,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 25.0, 42.2, 1.6, 14.1, 1.6, 0.0, 1.6, 0.0, 1.6, 12.5, 64 +4.112,4.11,a-cgpr-i1,2022-23,Quabbin - Quabbin Regional High School,07530505, 26.8, 22.0, 0.0, 17.3, 0.0, 0.0, 11.0, 2.4, 18.1, 2.4, 127 +4.768,4.77,a-cgpr-i1,2022-23,Quaboag Regional - Quaboag Regional High,07780505, 24.5, 26.6, 0.0, 14.9, 1.1, 0.0, 22.3, 0.0, 0.0, 10.6, 94 +5.007999999999999,5,a-cgpr-i1,2022-23,Quincy - North Quincy High,02430510, 37.0, 43.1, 0.3, 7.5, 1.5, 0.0, 4.5, 0.9, 2.1, 3.0, 332 +4.266666666666667,4.27,a-cgpr-i1,2022-23,Quincy - Quincy High,02430505, 22.2, 29.8, 0.0, 9.0, 0.8, 5.5, 12.7, 5.0, 0.0, 15.0, 379 +4.298666666666667,4.3,a-cgpr-i1,2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 18.2, 22.1, 0.0, 16.9, 0.0, 0.0, 23.4, 5.2, 0.0, 14.3, 77 +4.704,4.7,a-cgpr-i1,2022-23,Randolph - Randolph High,02440505, 15.6, 25.8, 3.9, 14.8, 0.0, 0.0, 28.1, 4.7, 4.7, 2.3, 128 +5.152000000000001,5,a-cgpr-i1,2022-23,Reading - Reading Memorial High,02460505, 42.9, 43.5, 0.0, 4.4, 2.4, 0.0, 3.4, 0.7, 1.4, 1.4, 294 +4.944,4.94,a-cgpr-i1,2022-23,Revere - CityLab Innovation High School,02480520, 0.0, 0.0, 0.0, 7.1, 21.4, 7.1, 57.1, 0.0, 7.1, 0.0, 14 +4.890666666666666,4.89,a-cgpr-i1,2022-23,Revere - Revere High,02480505, 21.2, 22.6, 1.6, 22.9, 2.3, 0.5, 20.6, 0.9, 0.9, 6.5, 433 +4.997333333333333,5.0,a-cgpr-i1,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 48.4, 29.7, 0.0, 7.8, 3.1, 0.0, 4.7, 1.6, 1.6, 3.1, 64 +4.810666666666667,4.81,a-cgpr-i1,2022-23,Rockland - Rockland Senior High,02510505, 25.6, 30.8, 0.8, 10.5, 6.0, 0.0, 16.5, 3.0, 5.3, 1.5, 133 +4.549333333333332,4.55,a-cgpr-i1,2022-23,Rockport - Rockport High,02520510, 32.8, 44.3, 0.0, 1.6, 0.0, 0.0, 6.6, 0.0, 9.8, 4.9, 61 +5.136,5,a-cgpr-i1,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 38.3, 39.3, 7.5, 11.2, 0.0, 0.0, 0.0, 0.9, 2.8, 0.0, 107 +4.517333333333333,4.52,a-cgpr-i1,2022-23,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 38.5, 30.8, 0.0, 15.4, 0.0, 7.7, 7.7, 13 +3.3493333333333335,3.35,a-cgpr-i1,2022-23,Salem - Salem High,02580505, 11.0, 25.2, 0.5, 19.7, 3.2, 2.3, 0.9, 1.8, 16.1, 19.3, 218 +0.8906666666666666,1,a-cgpr-i1,2022-23,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 16.7, 0.0, 0.0, 0.0, 0.0, 16.7, 66.7, 6 +5.242666666666667,5,a-cgpr-i1,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 41.5, 53.8, 0.0, 0.0, 1.5, 0.0, 1.5, 1.5, 0.0, 0.0, 65 +4.992000000000001,4.99,a-cgpr-i1,2022-23,Sandwich - Sandwich Middle High School,02610505, 36.3, 40.1, 0.0, 3.8, 6.4, 0.0, 7.0, 1.3, 0.0, 5.1, 157 +4.933333333333334,4.93,a-cgpr-i1,2022-23,Saugus - Saugus High,02620505, 26.7, 29.1, 0.0, 14.0, 9.3, 0.0, 13.4, 2.9, 2.3, 2.3, 172 +4.9866666666666655,4.99,a-cgpr-i1,2022-23,Scituate - Scituate High School,02640505, 46.0, 40.6, 0.0, 0.5, 2.1, 0.0, 4.3, 1.1, 1.1, 4.3, 187 +5.050666666666666,5,a-cgpr-i1,2022-23,Seekonk - Seekonk High,02650505, 0.0, 34.3, 0.0, 41.0, 6.7, 0.0, 12.7, 0.7, 4.5, 0.0, 134 +4.144,4.14,a-cgpr-i1,2022-23,Sharon - Sharon High,02660505, 39.4, 37.0, 0.0, 1.0, 0.0, 0.0, 0.3, 0.3, 0.0, 21.8, 289 +5.338666666666667,5,a-cgpr-i1,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 16.6, 21.6, 0.4, 12.4, 4.2, 1.8, 43.1, 0.0, 0.0, 0.0, 283 +4.9866666666666655,4.99,a-cgpr-i1,2022-23,Shrewsbury - Shrewsbury High School,02710505, 0.0, 84.3, 0.0, 7.0, 0.0, 1.1, 1.1, 0.5, 2.0, 3.9, 440 +4.922666666666665,4.92,a-cgpr-i1,2022-23,Silver Lake - Silver Lake Regional High,07600505, 38.3, 32.0, 0.8, 4.3, 1.2, 1.6, 14.1, 1.6, 6.3, 0.0, 256 +4.917333333333333,4.92,a-cgpr-i1,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 15.8, 23.7, 0.0, 31.6, 0.0, 0.0, 21.1, 2.6, 5.3, 0.0, 38 +5.077333333333334,5,a-cgpr-i1,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 28.8, 36.3, 0.0, 11.5, 6.2, 0.0, 12.4, 0.9, 1.8, 2.2, 226 +4.666666666666667,4.67,a-cgpr-i1,2022-23,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 37.5, 0.0, 0.0, 12.5, 8 +4.6240000000000006,4.62,a-cgpr-i1,2022-23,Somerville - Somerville High,02740505, 25.9, 23.3, 0.0, 18.0, 8.6, 0.0, 10.9, 0.8, 7.9, 4.5, 266 +4.778666666666667,4.78,a-cgpr-i1,2022-23,South Hadley - South Hadley High,02780505, 20.0, 30.4, 0.0, 20.8, 3.2, 0.0, 15.2, 3.2, 0.8, 6.4, 125 +4.970666666666667,4.97,a-cgpr-i1,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 10.3, 14.3, 0.6, 32.6, 1.7, 0.0, 33.7, 2.3, 0.0, 4.6, 175 +5.269333333333334,5,a-cgpr-i1,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 27.3, 49.4, 0.0, 3.9, 0.0, 1.3, 16.9, 0.0, 1.3, 0.0, 77 +5.12,5,a-cgpr-i1,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 11.7, 17.5, 0.0, 2.6, 1.9, 0.6, 61.7, 3.2, 0.6, 0.0, 154 +0.0,1,a-cgpr-i1,2022-23,Southbridge - Southbridge Academy,02770525,"","","","","","","","","","", 1 +3.6053333333333337,3.61,a-cgpr-i1,2022-23,Southbridge - Southbridge High School,02770515, 5.7, 14.9, 0.0, 33.3, 5.7, 1.1, 6.9, 4.6, 8.0, 19.5, 87 +5.168,5,a-cgpr-i1,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 20.3, 25.0, 0.5, 13.5, 4.9, 2.5, 30.2, 2.2, 0.5, 0.3, 364 +5.104000000000001,5,a-cgpr-i1,2022-23,Southern Berkshire - Mt Everett Regional,07650505, 34.8, 32.6, 0.0, 8.7, 2.2, 0.0, 17.4, 2.2, 2.2, 0.0, 46 +4.794666666666667,4.79,a-cgpr-i1,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 16.5, 18.0, 0.7, 13.9, 4.5, 0.0, 36.3, 3.0, 0.0, 7.1, 267 +4.501333333333334,4.5,a-cgpr-i1,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 25.6, 30.0, 0.0, 12.2, 2.2, 0.0, 14.4, 3.3, 0.0, 12.2, 90 +5.173333333333333,5,a-cgpr-i1,2022-23,Spencer-E Brookfield - David Prouty High,07670505, 16.4, 22.4, 0.0, 13.4, 0.0, 3.0, 41.8, 0.0, 1.5, 1.5, 67 +4.6080000000000005,4.61,a-cgpr-i1,2022-23,Springfield - Conservatory of the Arts,02810475, 24.3, 24.3, 0.0, 10.8, 8.1, 0.0, 18.9, 2.7, 0.0, 10.8, 37 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 53.3, 0.0, 0.0, 46.7, 0.0, 0.0, 0.0, 15 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 10.5, 0.0, 52.6, 5.3, 0.0, 31.6, 0.0, 0.0, 0.0, 19 +4.650666666666667,4.65,a-cgpr-i1,2022-23,Springfield - High School Of Commerce,02810510, 12.8, 15.9, 1.5, 31.8, 6.2, 0.0, 19.0, 1.5, 6.7, 4.6, 195 +5.136,5,a-cgpr-i1,2022-23,Springfield - John J Duggan Academy,02810320, 27.2, 11.1, 3.7, 42.0, 0.0, 0.0, 12.3, 2.5, 0.0, 1.2, 81 +0.0,1,a-cgpr-i1,2022-23,Springfield - Liberty Preparatory Academy,02810560,"","","","","","","","","","", 5 +5.056000000000001,5,a-cgpr-i1,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 20.1, 10.5, 1.0, 33.2, 1.6, 0.0, 28.4, 1.6, 1.0, 2.6, 313 +4.24,4.24,a-cgpr-i1,2022-23,Springfield - Springfield Central High,02810500, 17.6, 8.2, 1.7, 24.9, 2.8, 0.0, 24.3, 2.2, 2.8, 15.5, 465 +4.698666666666667,4.7,a-cgpr-i1,2022-23,Springfield - Springfield High School,02810570, 0.0, 2.9, 2.9, 17.6, 0.0, 0.0, 64.7, 0.0, 2.9, 8.8, 34 +4.341333333333334,4.34,a-cgpr-i1,2022-23,Springfield - Springfield High School of Science and Technology,02810530, 8.9, 5.7, 0.4, 25.1, 5.7, 0.0, 35.6, 2.0, 0.0, 16.6, 247 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 13 +4.362666666666667,4.36,a-cgpr-i1,2022-23,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 54.5, 0.0, 27.3, 0.0, 0.0, 18.2, 11 +5.333333333333333,5,a-cgpr-i1,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 27.8, 19.4, 0.0, 25.0, 12.5, 0.0, 15.3, 0.0, 0.0, 0.0, 72 +4.8,4.8,a-cgpr-i1,2022-23,Springfield - The Springfield Virtual School,02810705, 15.0, 0.0, 0.0, 20.0, 0.0, 0.0, 55.0, 0.0, 5.0, 5.0, 20 +4.954666666666667,4.95,a-cgpr-i1,2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 36.9, 25.0, 1.2, 28.6, 0.0, 0.0, 1.2, 2.4, 0.0, 4.8, 84 +4.352,4.35,a-cgpr-i1,2022-23,Stoneham - Stoneham High,02840505, 27.7, 50.4, 0.0, 1.4, 1.4, 0.0, 0.7, 1.4, 0.0, 17.0, 141 +4.8213333333333335,4.82,a-cgpr-i1,2022-23,Stoughton - Stoughton High,02850505, 32.3, 32.3, 0.9, 12.9, 0.0, 0.9, 11.1, 1.4, 0.5, 7.8, 217 +5.066666666666666,5,a-cgpr-i1,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 47.3, 35.7, 0.0, 7.2, 0.5, 0.0, 4.3, 0.5, 2.4, 1.9, 207 +5.333333333333333,5,a-cgpr-i1,2022-23,Sutton - Sutton High School,02900510, 41.6, 44.9, 1.1, 3.4, 1.1, 0.0, 7.9, 0.0, 0.0, 0.0, 89 +4.976,4.98,a-cgpr-i1,2022-23,Swampscott - Swampscott High,02910505, 50.0, 34.0, 0.0, 3.3, 2.0, 0.0, 4.0, 0.7, 2.7, 3.3, 150 +4.320000000000001,4.32,a-cgpr-i1,2022-23,Swansea - Joseph Case High,02920505, 22.6, 24.5, 0.0, 19.8, 4.7, 0.0, 9.4, 0.9, 0.0, 17.9, 106 +3.6533333333333333,3.65,a-cgpr-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.3, 36.9, 0.0, 12.1, 7.1, 1.5, 10.6, 0.9, 14.2, 16.5, 339 +4.784,4.78,a-cgpr-i1,2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 23.0, 39.4, 0.0, 18.2, 1.2, 0.0, 7.9, 1.2, 3.6, 5.5, 165 +4.917333333333334,4.92,a-cgpr-i1,2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 14.9, 13.9, 0.0, 22.8, 6.9, 0.0, 33.7, 1.0, 3.0, 4.0, 101 +5.333333333333333,5,a-cgpr-i1,2022-23,Taunton - Taunton Alternative High School,02930525, 0.0, 5.9, 0.0, 26.5, 0.0, 0.0, 67.6, 0.0, 0.0, 0.0, 34 +5.290666666666667,5,a-cgpr-i1,2022-23,Taunton - Taunton High,02930505, 16.2, 33.2, 0.0, 19.4, 1.1, 0.0, 29.3, 0.9, 0.0, 0.0, 458 +4.9706666666666655,4.97,a-cgpr-i1,2022-23,Tewksbury - Tewksbury Memorial High,02950505, 42.9, 32.8, 0.0, 6.3, 1.1, 0.0, 10.1, 2.1, 3.7, 1.1, 189 +5.263999999999999,5,a-cgpr-i1,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 19.0, 20.9, 0.0, 9.5, 2.8, 0.5, 46.0, 0.5, 0.0, 0.9, 211 +4.954666666666667,4.95,a-cgpr-i1,2022-23,Triton - Triton Regional High School,07730505, 28.4, 33.7, 0.6, 8.9, 5.9, 0.6, 14.8, 1.2, 5.9, 0.0, 169 +5.2266666666666675,5,a-cgpr-i1,2022-23,Tyngsborough - Tyngsborough High School,03010505, 29.1, 39.8, 1.0, 18.4, 1.9, 0.0, 7.8, 0.0, 0.0, 1.9, 103 +4.842666666666667,4.84,a-cgpr-i1,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 13.8, 16.4, 1.3, 7.9, 0.7, 4.6, 46.1, 7.2, 0.7, 1.3, 152 +5.327999999999999,5,a-cgpr-i1,2022-23,Uxbridge - Gateway to College,03040515, 0.0, 44.4, 0.0, 44.4, 0.0, 0.0, 11.1, 0.0, 0.0, 0.0, 9 +5.189333333333334,5,a-cgpr-i1,2022-23,Uxbridge - Uxbridge High,03040505, 29.4, 33.0, 0.9, 9.2, 3.7, 0.0, 21.1, 2.8, 0.0, 0.0, 109 +5.173333333333334,5,a-cgpr-i1,2022-23,Wachusett - Wachusett Regional High,07750505, 38.5, 40.9, 0.0, 9.9, 1.7, 0.4, 5.6, 1.3, 1.3, 0.4, 467 +4.687999999999999,4.69,a-cgpr-i1,2022-23,Wakefield - Wakefield Memorial High,03050505, 41.4, 33.3, 0.0, 5.1, 0.5, 1.5, 6.1, 0.5, 0.5, 11.1, 198 +4.922666666666667,4.92,a-cgpr-i1,2022-23,Walpole - Walpole High,03070505, 42.2, 40.2, 0.0, 4.1, 2.9, 2.9, 0.0, 1.2, 3.3, 3.3, 244 +5.184,5,a-cgpr-i1,2022-23,Waltham - Waltham Sr High,03080505, 29.8, 25.1, 0.6, 12.7, 2.2, 0.6, 26.2, 1.4, 0.6, 1.1, 363 +5.328,5,a-cgpr-i1,2022-23,Ware - Ware Junior/Senior High School,03090505, 22.2, 37.0, 0.0, 11.1, 0.0, 0.0, 29.6, 0.0, 0.0, 0.0, 54 +2.224,2.22,a-cgpr-i1,2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 41.7, 0.0, 58.3, 0.0, 12 +5.136000000000001,5,a-cgpr-i1,2022-23,Wareham - Wareham Senior High,03100505, 13.6, 48.1, 0.0, 3.7, 7.4, 0.0, 23.5, 1.2, 0.0, 2.5, 81 +4.581333333333333,4.58,a-cgpr-i1,2022-23,Watertown - Watertown High,03140505, 36.2, 38.9, 0.0, 7.4, 0.0, 0.0, 3.4, 0.7, 0.7, 12.8, 149 +5.216,5,a-cgpr-i1,2022-23,Wayland - Wayland High School,03150505, 47.6, 48.1, 0.0, 0.0, 1.6, 0.0, 0.5, 0.0, 0.5, 1.6, 187 +5.1306666666666665,5,a-cgpr-i1,2022-23,Webster - Bartlett High School,03160505, 28.2, 30.8, 0.0, 14.1, 0.0, 0.0, 23.1, 0.0, 2.6, 1.3, 78 +5.226666666666666,5,a-cgpr-i1,2022-23,Wellesley - Wellesley Sr High,03170505, 67.0, 28.2, 0.0, 0.6, 1.1, 0.0, 1.1, 0.0, 0.9, 1.1, 351 +4.976,4.98,a-cgpr-i1,2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 76.7, 0.0, 10.0, 3.3, 0.0, 3.3, 0.0, 3.3, 3.3, 60 +5.167999999999998,5,a-cgpr-i1,2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 33.3, 43.4, 0.0, 6.1, 4.0, 0.0, 10.1, 0.0, 2.0, 1.0, 99 +5.269333333333334,5,a-cgpr-i1,2022-23,West Springfield - West Springfield High,03320505, 22.7, 22.3, 0.0, 29.7, 7.4, 0.0, 16.7, 1.1, 0.0, 0.0, 269 +5.093333333333334,5,a-cgpr-i1,2022-23,Westborough - Westborough High,03210505, 42.1, 45.2, 0.0, 3.5, 0.0, 0.8, 3.9, 0.8, 2.3, 1.5, 259 +5.007999999999999,5,a-cgpr-i1,2022-23,Westfield - Westfield High,03250505, 23.7, 27.9, 0.9, 26.5, 2.8, 0.0, 12.1, 2.8, 1.4, 1.9, 215 +4.784,4.78,a-cgpr-i1,2022-23,Westfield - Westfield Technical Academy,03250605, 4.8, 17.5, 0.0, 12.7, 6.3, 0.0, 48.4, 4.8, 4.0, 1.6, 126 +4.741333333333333,4.74,a-cgpr-i1,2022-23,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 22.2, 0.0, 0.0, 66.7, 0.0, 0.0, 11.1, 9 +5.173333333333333,5,a-cgpr-i1,2022-23,Westford - Westford Academy,03260505, 43.8, 47.4, 0.0, 2.2, 1.0, 0.7, 1.9, 0.0, 0.5, 2.6, 418 +5.301333333333333,5,a-cgpr-i1,2022-23,Weston - Weston High,03300505, 63.0, 31.2, 0.0, 2.6, 1.3, 0.0, 1.3, 0.0, 0.6, 0.0, 154 +5.247999999999999,5,a-cgpr-i1,2022-23,Westport - Westport Middle-High School,03310515, 20.0, 29.2, 1.5, 16.9, 3.1, 0.0, 27.7, 1.5, 0.0, 0.0, 65 +5.178666666666667,5,a-cgpr-i1,2022-23,Westwood - Westwood High,03350505, 53.6, 41.1, 0.4, 1.6, 0.0, 0.0, 0.4, 0.0, 2.8, 0.0, 248 +4.757333333333333,4.76,a-cgpr-i1,2022-23,Weymouth - Weymouth High School,03360505, 28.4, 24.9, 0.0, 11.7, 3.4, 1.5, 19.3, 4.9, 3.2, 2.7, 409 +5.200000000000001,5,a-cgpr-i1,2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 28.4, 30.5, 0.0, 13.1, 6.7, 3.9, 14.9, 2.1, 0.0, 0.4, 282 +4.88,4.88,a-cgpr-i1,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 13.5, 18.5, 0.0, 23.5, 2.5, 0.0, 33.5, 2.5, 6.0, 0.0, 319 +5.221333333333333,5,a-cgpr-i1,2022-23,Wilmington - Wilmington High,03420505, 46.1, 33.5, 0.5, 10.5, 2.1, 0.0, 5.2, 1.0, 0.5, 0.5, 191 +4.8,4.8,a-cgpr-i1,2022-23,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 10.0, 0.0, 10 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Winchendon - Murdock High School,03430515, 13.3, 33.3, 0.0, 24.4, 0.0, 0.0, 22.2, 0.0, 6.7, 0.0, 45 +5.210666666666666,5,a-cgpr-i1,2022-23,Winchester - Winchester High School,03440505, 44.8, 47.8, 0.6, 2.4, 0.6, 0.0, 1.5, 0.0, 1.5, 0.9, 337 +4.5440000000000005,4.54,a-cgpr-i1,2022-23,Winthrop - Winthrop High School,03460505, 38.3, 26.6, 0.8, 7.0, 2.3, 0.0, 10.2, 2.3, 0.8, 11.7, 128 +4.970666666666667,4.97,a-cgpr-i1,2022-23,Woburn - Woburn High,03470505, 31.1, 33.7, 0.0, 9.5, 7.2, 0.0, 11.7, 2.3, 0.0, 4.5, 264 +4.746666666666667,4.75,a-cgpr-i1,2022-23,Worcester - Burncoat Senior High,03480503, 12.1, 20.4, 0.0, 31.7, 7.9, 1.1, 15.8, 0.8, 1.1, 9.1, 265 +5.1146666666666665,5,a-cgpr-i1,2022-23,Worcester - Claremont Academy,03480350, 5.5, 24.7, 0.0, 27.4, 12.3, 0.0, 26.0, 0.0, 1.4, 2.7, 73 +4.933333333333333,4.93,a-cgpr-i1,2022-23,Worcester - Doherty Memorial High,03480512, 22.8, 20.7, 0.3, 26.9, 8.5, 0.0, 13.3, 2.0, 1.7, 3.7, 294 +4.938666666666667,4.94,a-cgpr-i1,2022-23,Worcester - North High,03480515, 12.1, 18.0, 0.0, 33.1, 8.8, 0.4, 20.2, 2.9, 1.1, 3.3, 272 +4.8,4.8,a-cgpr-i1,2022-23,Worcester - South High Community,03480520, 12.3, 25.5, 0.3, 18.9, 13.5, 0.0, 19.5, 2.8, 0.6, 6.6, 318 +5.2,5,a-cgpr-i1,2022-23,Worcester - University Pk Campus School,03480285, 23.1, 51.3, 0.0, 7.7, 2.6, 0.0, 12.8, 0.0, 0.0, 2.6, 39 +5.029333333333333,5,a-cgpr-i1,2022-23,Worcester - Worcester Technical High,03480605, 19.9, 37.8, 0.6, 13.8, 0.3, 1.4, 20.5, 1.7, 0.6, 3.5, 347 diff --git a/data/admin_data/dese/5C_1_art_course.csv b/data/admin_data/dese/5C_1_art_course.csv index 3fdd1b4b..0aa35ef4 100644 --- a/data/admin_data/dese/5C_1_art_course.csv +++ b/data/admin_data/dese/5C_1_art_course.csv @@ -1,4 +1,1762 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,K,01,02,03,04,05,06,07,08,09,10,11,12,All Grades,Total Students +4.856774193548387,4.86,a-picp-i1,2022-23,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 100.0, 100.0, 100.0, 100.0, 100.0, 99.2, 100.0, 100.0, 99.1, 100.0, 96.3, 45.6, 65.9, 94.1," 1,419" +2.565161290322581,2.57,a-picp-i1,2022-23,Abington-Abington High,00010505,"","","","","","","","","", 58.0, 62.4, 30.9, 49.6, 49.7, 553 +5.037419354838709,5,a-picp-i1,2022-23,Abington-Abington Middle School,00010405,"","","","","", 100.0, 99.4, 93.3, 97.2,"","","","", 97.6, 662 +5.161290322580645,5,a-picp-i1,2022-23,Abington-Beaver Brook Elementary,00010020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 530 +5.161290322580645,5,a-picp-i1,2022-23,Abington-Woodsdale Elementary School,00010015,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 343 +4.985806451612903,4.99,a-picp-i1,2022-23,Academy Of the Pacific Rim Charter Public (District)-Academy Of the Pacific Rim Charter Public School,04120530,"","","","","", 100.0, 100.0, 100.0, 98.6, 96.9, 98.3, 96.9, 81.1, 96.6, 467 +2.4929032258064514,2.49,a-picp-i1,2022-23,Acton-Boxborough-Acton-Boxborough Regional High,06000505,"","","","","","","","","", 69.4, 62.3, 28.9, 34.1, 48.3," 1,687" +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Blanchard Memorial School,06000005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 504 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-C.T. Douglas Elementary School,06000020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 385 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Luther Conant School,06000030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 408 +5.150967741935483,5,a-picp-i1,2022-23,Acton-Boxborough-McCarthy-Towne School,06000015, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.8, 452 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Merriam School,06000010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 445 +5.161290322580645,5,a-picp-i1,2022-23,Acton-Boxborough-Paul P Gates Elementary School,06000025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 346 +4.763870967741935,4.76,a-picp-i1,2022-23,Acton-Boxborough-Raymond J Grey Junior High,06000405,"","","","","","","", 91.3, 93.4,"","","","", 92.3, 835 +5.016774193548387,5,a-picp-i1,2022-23,Acushnet-Acushnet Elementary School,00030025, 100.0, 83.3, 100.0, 100.0, 100.0,"","","","","","","","", 97.2, 496 +0.9754838709677419,1,a-picp-i1,2022-23,Acushnet-Albert F Ford Middle School,00030305,"","","","","", 26.2, 22.1, 15.7, 12.6,"","","","", 18.9, 408 +4.08258064516129,4.08,a-picp-i1,2022-23,Advanced Math and Science Academy Charter (District)-Advanced Math and Science Academy Charter School,04300305,"","","","","","", 97.2, 99.3, 100.0, 88.3, 53.1, 40.6, 69.8, 79.1, 957 +2.771612903225807,2.77,a-picp-i1,2022-23,Agawam-Agawam High,00050505,"","","","","","","","","", 60.8, 46.2, 44.9, 61.0, 53.7," 1,049" +4.836129032258064,4.84,a-picp-i1,2022-23,Agawam-Agawam Junior High,00050405,"","","","","","","", 94.8, 92.6,"","","","", 93.7, 537 +5.161290322580645,5,a-picp-i1,2022-23,Agawam-Benjamin J Phelps,00050020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 305 +5.130322580645162,5,a-picp-i1,2022-23,Agawam-Clifford M Granger,00050010, 100.0, 98.7, 100.0, 100.0, 98.4,"","","","","","","","", 99.4, 336 +5.161290322580645,5,a-picp-i1,2022-23,Agawam-James Clark School,00050030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 314 +5.083870967741936,5,a-picp-i1,2022-23,Agawam-Roberta G. Doering School,00050303,"","","","","", 97.5, 99.3,"","","","","","", 98.5, 531 +5.145806451612903,5,a-picp-i1,2022-23,Agawam-Robinson Park,00050025, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 289 +5.135483870967742,5,a-picp-i1,2022-23,Alma del Mar Charter School (District)-Alma del Mar Charter School,04090205, 100.0, 99.0, 100.0, 100.0, 100.0, 99.0, 98.7, 99.3, 100.0,"","","","", 99.5," 1,034" +5.161290322580645,5,a-picp-i1,2022-23,Amesbury-Amesbury Elementary,00070005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 307 +3.958709677419355,3.96,a-picp-i1,2022-23,Amesbury-Amesbury High,00070505,"","","","","","","","","", 69.6, 69.9, 78.4, 89.7, 76.7, 446 +2.8541935483870966,2.85,a-picp-i1,2022-23,Amesbury-Amesbury Innovation High School,00070515,"","","","","","","","","", 46.2, 57.1, 72.7, 44.4, 55.3, 47 +5.047741935483871,5,a-picp-i1,2022-23,Amesbury-Amesbury Middle,00070013,"","","","","", 97.8, 98.5, 99.4, 95.7,"","","","", 97.8, 588 +5.161290322580645,5,a-picp-i1,2022-23,Amesbury-Charles C Cashman Elementary,00070010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 358 +5.161290322580645,5,a-picp-i1,2022-23,Amherst-Crocker Farm Elementary,00080009, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 272 +5.161290322580645,5,a-picp-i1,2022-23,Amherst-Fort River Elementary,00080020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 374 +4.356129032258065,4.36,a-picp-i1,2022-23,Amherst-Pelham-Amherst Regional High,06050505,"","","","","","","","","", 85.2, 79.5, 85.5, 87.3, 84.4, 867 +5.052903225806452,5,a-picp-i1,2022-23,Amherst-Pelham-Amherst Regional Middle School,06050405,"","","","","","","", 99.0, 96.8,"","","","", 97.9, 386 +5.161290322580645,5,a-picp-i1,2022-23,Amherst-Wildwood Elementary,00080050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 316 +3.7316129032258063,3.73,a-picp-i1,2022-23,Andover-Andover High,00090505,"","","","","","","","","", 79.8, 76.0, 54.9, 78.5, 72.3," 1,668" +5.161290322580645,5,a-picp-i1,2022-23,Andover-Andover West Middle,00090310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 523 +5.161290322580645,5,a-picp-i1,2022-23,Andover-Bancroft Elementary,00090003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 545 +5.114838709677419,5,a-picp-i1,2022-23,Andover-Doherty Middle,00090305,"","","","","","", 99.3, 98.2, 100.0,"","","","", 99.1, 462 +5.161290322580645,5,a-picp-i1,2022-23,Andover-Henry C Sanborn Elementary,00090010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 347 +5.161290322580645,5,a-picp-i1,2022-23,Andover-High Plain Elementary,00090004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 535 +5.161290322580645,5,a-picp-i1,2022-23,Andover-South Elementary,00090020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 454 +5.161290322580645,5,a-picp-i1,2022-23,Andover-West Elementary,00090025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 560 +5.130322580645162,5,a-picp-i1,2022-23,Andover-Wood Hill Middle School,00090350,"","","","","","", 99.0, 100.0, 99.2,"","","","", 99.4, 344 +3.91741935483871,3.92,a-picp-i1,2022-23,Argosy Collegiate Charter School (District)-Argosy Collegiate Charter School,35090305,"","","","","","", 100.0, 100.0, 99.0, 31.5, 80.0, 59.6, 25.5, 75.9, 543 +2.590967741935484,2.59,a-picp-i1,2022-23,Arlington-Arlington High,00100505,"","","","","","","","","", 57.4, 51.9, 40.9, 50.7, 50.2," 1,542" +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Brackett,00100010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 421 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Cyrus E Dallin,00100025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 416 +5.130322580645162,5,a-picp-i1,2022-23,Arlington-Gibbs School,00100305,"","","","","","", 99.4,"","","","","","", 99.4, 514 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Hardy,00100030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 391 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-John A Bishop,00100005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 397 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-M Norcross Stratton,00100055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 443 +5.140645161290323,5,a-picp-i1,2022-23,Arlington-Ottoson Middle,00100410,"","","","","","","", 100.0, 99.2,"","","","", 99.6, 933 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Peirce,00100045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 361 +5.161290322580645,5,a-picp-i1,2022-23,Arlington-Thompson,00100050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 513 +5.150967741935483,5,a-picp-i1,2022-23,Ashburnham-Westminster-Briggs Elementary,06100025, 98.8, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 472 +5.161290322580645,5,a-picp-i1,2022-23,Ashburnham-Westminster-Meetinghouse School,06100010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 163 +2.141935483870968,2.14,a-picp-i1,2022-23,Ashburnham-Westminster-Oakmont Regional High School,06100505,"","","","","","","","","", 37.8, 43.9, 31.2, 53.1, 41.5, 648 +5.1251612903225805,5,a-picp-i1,2022-23,Ashburnham-Westminster-Overlook Middle School,06100305,"","","","","","", 98.8, 98.9, 100.0,"","","","", 99.3, 540 +5.161290322580645,5,a-picp-i1,2022-23,Ashburnham-Westminster-Westminster Elementary,06100005,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 387 +3.6129032258064515,3.61,a-picp-i1,2022-23,Ashland-Ashland High,00140505,"","","","","","","","","", 83.9, 73.5, 56.8, 63.7, 70.0, 859 +5.140645161290323,5,a-picp-i1,2022-23,Ashland-Ashland Middle,00140405,"","","","","","", 99.5, 99.6, 99.6,"","","","", 99.6, 699 +5.161290322580645,5,a-picp-i1,2022-23,Ashland-David Mindess,00140015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 650 +5.150967741935483,5,a-picp-i1,2022-23,Ashland-Henry E Warren Elementary,00140010, 100.0, 100.0, 99.6,"","","","","","","","","","", 99.8, 632 +1.9716129032258065,1.97,a-picp-i1,2022-23,Assabet Valley Regional Vocational Technical-Assabet Valley Vocational High School,08010605,"","","","","","","","","", 33.8, 35.1, 44.6, 39.9, 38.2," 1,118" +5.161290322580645,5,a-picp-i1,2022-23,Athol-Royalston-Athol Community Elementary School,06150020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 540 +2.7096774193548385,2.71,a-picp-i1,2022-23,Athol-Royalston-Athol High,06150505,"","","","","","","","","", 53.1, 63.7, 44.4, 45.6, 52.5, 404 +5.047741935483871,5,a-picp-i1,2022-23,Athol-Royalston-Athol-Royalston Middle School,06150305,"","","","","", 98.0, 96.5, 99.2, 97.2,"","","","", 97.8, 445 +5.161290322580645,5,a-picp-i1,2022-23,Athol-Royalston-Royalston Community School,06150050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 129 +4.629677419354839,4.63,a-picp-i1,2022-23,Atlantis Charter (District)-Atlantis Charter School,04910550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.2, 100.0, 35.4, 69.4, 46.0, 75.3, 89.7," 1,296" +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-A. Irvin Studley Elementary School,00160001, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 346 +3.163870967741935,3.16,a-picp-i1,2022-23,Attleboro-Attleboro Community Academy,00160515,"","","","","","","","","", 50.0, 87.5, 92.3, 46.2, 61.3, 62 +3.4374193548387093,3.44,a-picp-i1,2022-23,Attleboro-Attleboro High,00160505,"","","","","","","","","", 74.4, 83.2, 66.8, 35.0, 66.6," 1,853" +4.629677419354839,4.63,a-picp-i1,2022-23,Attleboro-Attleboro Virtual Academy,00160705,"","","","","","","","","", 100.0, 100.0, 83.3, 91.7, 89.7, 39 +5.150967741935483,5,a-picp-i1,2022-23,Attleboro-Cyril K. Brennan Middle School,00160315,"","","","","", 100.0, 100.0, 100.0, 99.4,"","","","", 99.8, 639 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Hill-Roberts Elementary School,00160045, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 411 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Hyman Fine Elementary School,00160040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 457 +5.150967741935483,5,a-picp-i1,2022-23,Attleboro-Peter Thacher Elementary School,00160050, 100.0, 99.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 442 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Robert J. Coelho Middle School,00160305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 583 +5.161290322580645,5,a-picp-i1,2022-23,Attleboro-Thomas Willett Elementary School,00160035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 374 +5.150967741935483,5,a-picp-i1,2022-23,Attleboro-Wamsutta Middle School,00160320,"","","","","", 99.3, 100.0, 100.0, 100.0,"","","","", 99.8, 591 +4.980645161290322,4.98,a-picp-i1,2022-23,Auburn-Auburn Middle,00170305,"","","","","","", 95.2, 96.2, 98.1,"","","","", 96.5, 652 +3.5458064516129033,3.55,a-picp-i1,2022-23,Auburn-Auburn Senior High,00170505,"","","","","","","","","", 45.0, 78.3, 72.7, 79.7, 68.7, 734 +5.161290322580645,5,a-picp-i1,2022-23,Auburn-Bryn Mawr,00170010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 264 +5.140645161290323,5,a-picp-i1,2022-23,Auburn-Pakachoag School,00170025, 98.7, 100.0, 100.0,"","","","","","","","","","", 99.6, 243 +5.114838709677419,5,a-picp-i1,2022-23,Auburn-Swanson Road Intermediate School,00170030,"","","", 100.0, 98.5, 98.8,"","","","","","","", 99.1, 551 +4.190967741935484,4.19,a-picp-i1,2022-23,Avon-Avon Middle High School,00180510,"","","","","","","", 100.0, 100.0, 57.4, 69.4, 59.6, 95.6, 81.2, 335 +5.161290322580645,5,a-picp-i1,2022-23,Avon-Ralph D Butler,00180010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 371 +4.8,4.8,a-picp-i1,2022-23,Ayer Shirley School District-Ayer Shirley Regional High School,06160505,"","","","","","","","","", 98.0, 94.9, 90.3, 87.8, 93.0, 402 +5.109677419354838,5,a-picp-i1,2022-23,Ayer Shirley School District-Ayer Shirley Regional Middle School,06160305,"","","","","","", 99.2, 98.3, 99.2,"","","","", 99.0, 382 +5.161290322580645,5,a-picp-i1,2022-23,Ayer Shirley School District-Lura A. White Elementary School,06160001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 336 +5.161290322580645,5,a-picp-i1,2022-23,Ayer Shirley School District-Page Hilltop Elementary School,06160002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 462 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-Barnstable Community Innovation School,00200012, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 286 +2.80258064516129,2.8,a-picp-i1,2022-23,Barnstable-Barnstable High,00200505,"","","","","","","","", 73.0, 60.4, 51.1, 47.4, 36.8, 54.3," 1,739" +5.078709677419355,5,a-picp-i1,2022-23,Barnstable-Barnstable Intermediate School,00200315,"","","","","","", 100.0, 96.9,"","","","","", 98.4, 682 +5.145806451612903,5,a-picp-i1,2022-23,Barnstable-Barnstable United Elementary School,00200050,"","","","", 100.0, 99.4,"","","","","","","", 99.7, 735 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-Centerville Elementary,00200010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 257 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-Hyannis West Elementary,00200025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 334 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-West Barnstable Elementary,00200005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 270 +5.161290322580645,5,a-picp-i1,2022-23,Barnstable-West Villages Elementary School,00200045, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 394 +3.59741935483871,3.6,a-picp-i1,2022-23,Baystate Academy Charter Public School (District)-Baystate Academy Charter Public School,35020405,"","","","","","", 92.7, 92.5, 95.8, 96.2, 0.0, 0.0, 93.9, 69.7, 399 +3.5045161290322584,3.5,a-picp-i1,2022-23,Bedford-Bedford High,00230505,"","","","","","","","","", 92.0, 66.4, 49.0, 60.5, 67.9, 837 +4.95483870967742,4.95,a-picp-i1,2022-23,Bedford-John Glenn Middle,00230305,"","","","","","", 91.9, 98.0, 97.6,"","","","", 96.0, 594 +3.59741935483871,3.6,a-picp-i1,2022-23,Bedford-Lt Eleazer Davis,00230010, 0.0, 100.0, 100.0,"","","","","","","","","","", 69.7, 476 +5.161290322580645,5,a-picp-i1,2022-23,Bedford-Lt Job Lane School,00230012,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 581 +3.607741935483871,3.61,a-picp-i1,2022-23,Belchertown-Belchertown High,00240505,"","","","","","","","","", 78.2, 73.4, 70.4, 59.6, 69.9, 642 +5.161290322580645,5,a-picp-i1,2022-23,Belchertown-Chestnut Hill Community School,00240006,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 484 +5.161290322580645,5,a-picp-i1,2022-23,Belchertown-Cold Spring,00240005, 100.0,"","","","","","","","","","","","", 100.0, 127 +4.820645161290323,4.82,a-picp-i1,2022-23,Belchertown-Jabish Middle School,00240025,"","","","","","","", 94.0, 92.9,"","","","", 93.4, 350 +5.161290322580645,5,a-picp-i1,2022-23,Belchertown-Swift River Elementary,00240018,"", 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 477 +3.855483870967742,3.86,a-picp-i1,2022-23,Bellingham-Bellingham High School,00250505,"","","","","","","","", 97.5, 64.4, 66.0, 60.9, 86.7, 74.7, 736 +5.109677419354838,5,a-picp-i1,2022-23,Bellingham-Bellingham Memorial School,00250315,"","","","", 100.0, 100.0, 97.5, 98.6,"","","","","", 99.0, 594 +5.161290322580645,5,a-picp-i1,2022-23,Bellingham-Joseph F DiPietro Elementary School,00250020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 300 +5.161290322580645,5,a-picp-i1,2022-23,Bellingham-Keough Memorial Academy,00250510,"","","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 30 +5.161290322580645,5,a-picp-i1,2022-23,Bellingham-Stall Brook,00250025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 245 +2.9832258064516126,2.98,a-picp-i1,2022-23,Belmont-Belmont High,00260505,"","","","","","","","","", 90.6, 51.9, 42.8, 43.0, 57.8," 1,370" +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Daniel Butler,00260015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 325 +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Mary Lee Burbank,00260010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 339 +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Roger E Wellington,00260035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 491 +5.161290322580645,5,a-picp-i1,2022-23,Belmont-Winn Brook,00260005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 436 +5.073548387096774,5,a-picp-i1,2022-23,Belmont-Winthrop L Chenery Middle,00260305,"","","","","", 99.7, 98.0, 98.7, 96.7,"","","","", 98.3," 1,382" +5.161290322580645,5,a-picp-i1,2022-23,Benjamin Banneker Charter Public (District)-Benjamin Banneker Charter Public School,04200205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 308 +5.161290322580645,5,a-picp-i1,2022-23,Benjamin Franklin Classical Charter Public (District)-Benjamin Franklin Classical Charter Public School,04470205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 867 +5.161290322580645,5,a-picp-i1,2022-23,Berkley-Berkley Community School,00270010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 423 +5.161290322580645,5,a-picp-i1,2022-23,Berkley-Berkley Middle School,00270305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 370 +4.6812903225806455,4.68,a-picp-i1,2022-23,Berkshire Arts and Technology Charter Public (District)-Berkshire Arts and Technology Charter Public School,04140305,"","","","","","", 100.0, 100.0, 100.0, 98.0, 66.7, 78.8, 62.5, 90.7, 375 +3.7161290322580647,3.72,a-picp-i1,2022-23,Berkshire Hills-Monument Mt Regional High,06180505,"","","","","","","","","", 89.4, 67.9, 76.2, 54.4, 72.0, 482 +5.145806451612903,5,a-picp-i1,2022-23,Berkshire Hills-Muddy Brook Regional Elementary School,06180035, 98.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 319 +5.0683870967741935,5,a-picp-i1,2022-23,Berkshire Hills-W.E.B. Du Bois Regional Middle School,06180310,"","","","","", 100.0, 98.8, 94.8, 100.0,"","","","", 98.2, 334 +5.135483870967742,5,a-picp-i1,2022-23,Berlin-Boylston-Berlin Memorial School,06200005, 100.0, 100.0, 100.0, 96.7, 100.0, 100.0,"","","","","","","", 99.5, 204 +5.161290322580645,5,a-picp-i1,2022-23,Berlin-Boylston-Boylston Elementary School,06200010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +3.747096774193548,3.75,a-picp-i1,2022-23,Berlin-Boylston-Tahanto Regional High,06200505,"","","","","","", 96.3, 96.5, 82.7, 66.2, 41.8, 45.6, 72.1, 72.6, 521 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-Ayers/Ryal Side School,00300055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 390 +3.489032258064516,3.49,a-picp-i1,2022-23,Beverly-Beverly High,00300505,"","","","","","","","","", 65.9, 84.0, 75.8, 46.4, 67.6," 1,282" +5.099354838709678,5,a-picp-i1,2022-23,Beverly-Beverly Middle School,00300305,"","","","","", 98.0, 98.8, 99.4, 99.2,"","","","", 98.8," 1,385" +5.130322580645162,5,a-picp-i1,2022-23,Beverly-Centerville Elementary,00300010, 100.0, 96.4, 100.0, 100.0, 100.0,"","","","","","","","", 99.4, 322 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-Cove Elementary,00300015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 425 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-Hannah Elementary,00300033, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 322 +5.161290322580645,5,a-picp-i1,2022-23,Beverly-North Beverly Elementary,00300040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 347 +3.6025806451612903,3.6,a-picp-i1,2022-23,Billerica-Billerica Memorial High School,00310505,"","","","","","","","", 69.2, 79.8, 65.9, 55.3, 77.1, 69.8," 1,566" +5.109677419354838,5,a-picp-i1,2022-23,Billerica-Frederick J Dutile,00310007, 98.4, 98.3, 100.0, 97.9, 100.0,"","","","","","","","", 99.0, 288 +5.145806451612903,5,a-picp-i1,2022-23,Billerica-Hajjar Elementary,00310026, 100.0, 100.0, 98.8, 100.0, 100.0,"","","","","","","","", 99.7, 377 +5.161290322580645,5,a-picp-i1,2022-23,Billerica-John F Kennedy,00310012, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 310 +4.96516129032258,4.97,a-picp-i1,2022-23,Billerica-Locke Middle,00310310,"","","","","", 93.2, 98.8, 96.6,"","","","","", 96.2, 552 +4.990967741935484,4.99,a-picp-i1,2022-23,Billerica-Marshall Middle School,00310305,"","","","","", 94.5, 98.1, 97.2,"","","","","", 96.7, 612 +5.150967741935483,5,a-picp-i1,2022-23,Billerica-Parker,00310015, 100.0, 100.0, 100.0, 98.8, 100.0,"","","","","","","","", 99.8, 423 +5.161290322580645,5,a-picp-i1,2022-23,Billerica-Thomas Ditson,00310005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 559 +1.729032258064516,1.73,a-picp-i1,2022-23,Blackstone Valley Regional Vocational Technical-Blackstone Valley,08050605,"","","","","","","","","", 17.6, 14.5, 45.0, 58.2, 33.5," 1,221" +5.161290322580645,5,a-picp-i1,2022-23,Blackstone-Millville-A F Maloney,06220015,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 253 +4.077419354838709,4.08,a-picp-i1,2022-23,Blackstone-Millville-Blackstone Millville RHS,06220505,"","","","","","","","","", 94.4, 75.5, 64.4, 78.6, 79.0, 386 +4.841290322580645,4.84,a-picp-i1,2022-23,Blackstone-Millville-Frederick W. Hartnett Middle School,06220405,"","","","","","", 94.9, 95.3, 90.8,"","","","", 93.8, 356 +5.161290322580645,5,a-picp-i1,2022-23,Blackstone-Millville-John F Kennedy Elementary,06220008,"","","", 100.0,"","","","","","","","","", 100.0, 110 +5.145806451612903,5,a-picp-i1,2022-23,Blackstone-Millville-Millville Elementary,06220010, 100.0, 98.7, 100.0,"","","","","","","","","","", 99.7, 296 +1.2180645161290324,1.22,a-picp-i1,2022-23,Blue Hills Regional Vocational Technical-Blue Hills Regional Vocational Technical,08060605,"","","","","","","","","", 9.1, 11.3, 30.5, 46.6, 23.6, 902 +4.665806451612903,4.67,a-picp-i1,2022-23,Boston Collegiate Charter (District)-Boston Collegiate Charter School,04490305,"","","","","", 96.1, 97.1, 100.0, 100.0, 95.8, 74.0, 89.6, 67.9, 90.4, 712 +0.4645161290322581,1,a-picp-i1,2022-23,Boston Day and Evening Academy Charter (District)-Boston Day and Evening Academy Charter School,04240505,"","","","","","","","","", 12.1, 3.8, 0.0, 9.1, 9.0, 399 +4.118709677419354,4.12,a-picp-i1,2022-23,Boston Green Academy Horace Mann Charter School (District)-Boston Green Academy Horace Mann Charter School,04110305,"","","","","","", 100.0, 96.4, 96.8, 97.6, 96.2, 31.5, 46.9, 79.8, 461 +2.6219354838709674,2.62,a-picp-i1,2022-23,Boston Preparatory Charter Public (District)-Boston Preparatory Charter Public School,04160305,"","","","","","", 75.0, 75.0, 64.3, 27.2, 35.0, 28.0, 63.0, 50.8, 691 +4.949677419354839,4.95,a-picp-i1,2022-23,Boston Renaissance Charter Public (District)-Boston Renaissance Charter Public School,04810550, 97.7, 82.5, 99.3, 98.5, 98.4, 100.0, 97.0,"","","","","","", 95.9, 831 +5.135483870967742,5,a-picp-i1,2022-23,Boston-Adams Elementary School,00350302, 100.0, 100.0, 100.0, 100.0, 100.0, 95.7, 100.0,"","","","","","", 99.5, 216 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Alighieri Dante Montessori School,00350066, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 78 +1.9303225806451612,1.93,a-picp-i1,2022-23,Boston-Another Course To College,00350541,"","","","","","","","","", 47.2, 60.7, 16.4, 26.7, 37.4, 235 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Baldwin Early Learning Pilot Academy,00350003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 81 +4.578064516129032,4.58,a-picp-i1,2022-23,Boston-Bates Elementary School,00350278, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 88.7, 248 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Beethoven Elementary School,00350021, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 228 +5.001290322580646,5,a-picp-i1,2022-23,Boston-Blackstone Elementary School,00350390, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0, 78.9,"","","","","","", 96.9, 518 +0.0,1,a-picp-i1,2022-23,Boston-Boston Adult Tech Academy,00350548,"","","","","","","","","","","", 0.0, 0.0, 0.0, 168 +5.12,5,a-picp-i1,2022-23,Boston-Boston Arts Academy,00350546,"","","","","","","","","", 99.3, 100.0, 99.2, 98.1, 99.2, 484 +0.15483870967741936,1,a-picp-i1,2022-23,Boston-Boston Collaborative High School,00350755,"","","","","","","","","", 0.0, 0.0, 3.1, 3.3, 3.0, 133 +3.2,3.2,a-picp-i1,2022-23,Boston-Boston Community Leadership Academy,00350558,"","","","","","","", 72.3, 77.4, 55.6, 66.7, 49.0, 58.3, 62.0, 587 +1.8064516129032258,1.81,a-picp-i1,2022-23,Boston-Boston International High School & Newcomers Academy,00350507,"","","","","","","","","", 32.1, 36.5, 34.2, 41.0, 35.0, 531 +1.7858064516129033,1.79,a-picp-i1,2022-23,Boston-Boston Latin Academy,00350545,"","","","","","","", 98.1, 6.0, 2.2, 1.8, 33.2, 69.2, 34.6," 1,706" +3.344516129032258,3.34,a-picp-i1,2022-23,Boston-Boston Latin School,00350560,"","","","","","","", 99.5, 98.1, 40.5, 35.2, 48.1, 69.0, 64.8," 2,410" +3.2877419354838713,3.29,a-picp-i1,2022-23,Boston-Boston Teachers Union K-8 Pilot,00350012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 51.6, 2.7, 2.1,"","","","", 63.7, 270 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Bradley Elementary School,00350215, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 249 +3.034838709677419,3.03,a-picp-i1,2022-23,Boston-Brighton High School,00350505,"","","","","","","", 100.0, 97.6, 34.2, 69.7, 52.6, 51.4, 58.8, 614 +2.487741935483871,2.49,a-picp-i1,2022-23,Boston-Burke High School,00350525,"","","","","","","", 0.0, 84.0, 23.5, 38.9, 53.8, 65.9, 48.2, 394 +0.0,1,a-picp-i1,2022-23,Boston-Carter School,00350036,"","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22 +4.789677419354838,4.79,a-picp-i1,2022-23,Boston-Channing Elementary School,00350360, 97.0, 96.8, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 92.8, 152 +1.2696774193548388,1.27,a-picp-i1,2022-23,Boston-Charlestown High School,00350515,"","","","","","","", 34.5, 48.9, 30.5, 22.0, 16.5, 21.3, 24.6, 745 +4.614193548387097,4.61,a-picp-i1,2022-23,Boston-Chittick Elementary School,00350154, 100.0, 94.1, 96.2, 100.0, 100.0, 100.0, 0.0,"","","","","","", 89.4, 180 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Clap Elementary School,00350298, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 91 +2.5238709677419355,2.52,a-picp-i1,2022-23,Boston-Community Academy,00350518,"","","","","","","","","", 33.3, 63.6, 61.5, 35.0, 48.9, 47 +1.4554838709677418,1.46,a-picp-i1,2022-23,Boston-Community Academy of Science and Health,00350581,"","","","","","","","","", 35.1, 27.9, 20.2, 31.7, 28.2, 309 +5.12,5,a-picp-i1,2022-23,Boston-Condon K-8 School,00350146, 100.0, 100.0, 98.1, 95.8, 98.7, 100.0, 100.0, 100.0, 98.9,"","","","", 99.2, 591 +4.113548387096774,4.11,a-picp-i1,2022-23,Boston-Conley Elementary School,00350122, 100.0, 100.0, 100.0, 95.7, 86.7, 86.7, 0.0,"","","","","","", 79.7, 138 +5.156129032258065,5,a-picp-i1,2022-23,Boston-Curley K-8 School,00350020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.8, 100.0,"","","","", 99.9, 825 +3.979354838709677,3.98,a-picp-i1,2022-23,Boston-Dearborn 6-12 STEM Academy,00350074,"","","","","","", 97.6, 95.6, 95.5, 58.4, 59.4, 68.6, 76.6, 77.1, 568 +4.578064516129032,4.58,a-picp-i1,2022-23,Boston-Dever Elementary School,00350268, 100.0, 100.0, 97.7, 100.0, 100.0, 100.0, 29.8,"","","","","","", 88.7, 362 +5.161290322580645,5,a-picp-i1,2022-23,Boston-East Boston Early Education Center,00350009, 100.0, 100.0,"","","","","","","","","","","", 100.0, 95 +1.9200000000000002,1.92,a-picp-i1,2022-23,Boston-East Boston High School,00350530,"","","","","","","", 23.3, 63.5, 2.2, 30.5, 53.6, 51.2, 37.2," 1,274" +4.40258064516129,4.4,a-picp-i1,2022-23,Boston-Edison K-8 School,00350375, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 77.4, 29.5, 33.9,"","","","", 85.3, 585 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Eliot K-8 Innovation School,00350096, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 748 +4.95483870967742,4.95,a-picp-i1,2022-23,Boston-Ellis Elementary School,00350072, 98.0, 100.0, 98.0, 100.0, 72.7, 97.1, 100.0,"","","","","","", 96.0, 298 +5.12,5,a-picp-i1,2022-23,Boston-Ellison-Parks Early Education School,00350008, 100.0, 100.0, 97.2, 100.0,"","","","","","","","","", 99.2, 132 +2.771612903225807,2.77,a-picp-i1,2022-23,Boston-English High School,00350535,"","","","","","","", 100.0, 54.2, 55.3, 45.0, 40.0, 58.6, 53.7, 641 +4.454193548387097,4.45,a-picp-i1,2022-23,Boston-Everett Elementary School,00350088, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 86.3, 262 +3.225806451612903,3.23,a-picp-i1,2022-23,Boston-Excel High School,00350522,"","","","","","","","","", 89.9, 38.6, 51.4, 68.0, 62.5, 392 +1.6516129032258065,1.65,a-picp-i1,2022-23,Boston-Fenway High School,00350540,"","","","","","","","","", 29.8, 49.5, 0.0, 44.6, 32.0, 363 +4.836129032258064,4.84,a-picp-i1,2022-23,Boston-Frederick Pilot Middle School,00350383,"","","","","","", 93.0, 92.1, 95.4,"","","","", 93.7, 365 +2.198709677419355,2.2,a-picp-i1,2022-23,Boston-Gardner Pilot Academy,00350326, 100.0, 97.3, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 42.6, 352 +2.7303225806451614,2.73,a-picp-i1,2022-23,Boston-Greater Egleston High School,00350543,"","","","","","","","","", 100.0, 62.5, 70.0, 43.6, 52.9, 85 +5.145806451612903,5,a-picp-i1,2022-23,Boston-Greenwood Sarah K-8 School,00350308, 100.0, 100.0, 100.0, 97.4, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.7, 342 +4.774193548387097,4.77,a-picp-i1,2022-23,Boston-Grew Elementary School,00350135, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 92.5, 186 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Guild Elementary School,00350062, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 219 +4.418064516129032,4.42,a-picp-i1,2022-23,Boston-Hale Elementary School,00350243, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 85.6, 146 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Haley Pilot School,00350077, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 331 +5.027096774193549,5,a-picp-i1,2022-23,Boston-Harvard-Kent Elementary School,00350200, 100.0, 100.0, 95.5, 100.0, 100.0, 97.5, 0.0,"","","","","","", 97.4, 265 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Haynes Early Education Center,00350010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 145 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Henderson K-12 Inclusion School Lower,00350266, 100.0, 100.0,"","","","","","","","","","","", 100.0, 123 +3.855483870967742,3.86,a-picp-i1,2022-23,Boston-Henderson K-12 Inclusion School Upper,00350426,"","", 100.0, 100.0, 100.0, 100.0, 98.2, 97.0, 97.0, 0.0, 33.8, 88.1, 37.0, 74.7, 664 +5.016774193548387,5,a-picp-i1,2022-23,Boston-Hennigan K-8 School,00350153, 100.0, 100.0, 100.0, 94.5, 97.4, 86.9, 100.0, 97.5, 100.0,"","","","", 97.2, 541 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Hernandez K-8 School,00350691, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 377 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Higginson Inclusion K0-2 School,00350015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 86 +5.135483870967742,5,a-picp-i1,2022-23,Boston-Higginson-Lewis K-8 School,00350377,"","","", 100.0, 100.0, 96.8, 100.0, 100.0, 100.0,"","","","", 99.5, 183 +5.140645161290323,5,a-picp-i1,2022-23,Boston-Holmes Elementary School,00350138, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 96.7,"","","","","","", 99.6, 253 +4.201290322580645,4.2,a-picp-i1,2022-23,Boston-Horace Mann School for the Deaf Hard of Hearing,00350750, 100.0, 100.0, 100.0,"", 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 33.3, 66.7, 40.0, 81.4, 59 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Hurley K-8 School,00350182, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 325 +5.073548387096774,5,a-picp-i1,2022-23,Boston-Kennedy John F Elementary School,00350166, 98.0, 100.0, 98.0, 95.4, 100.0, 100.0, 97.6,"","","","","","", 98.3, 361 +4.758709677419355,4.76,a-picp-i1,2022-23,Boston-Kennedy Patrick J Elementary School,00350264, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 9.5,"","","","","","", 92.2, 243 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Kenny Elementary School,00350328, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 296 +5.114838709677419,5,a-picp-i1,2022-23,Boston-Kilmer K-8 School,00350190, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 91.9, 100.0, 100.0,"","","","", 99.1, 346 +4.072258064516129,4.07,a-picp-i1,2022-23,Boston-King Elementary School,00350376, 86.9, 98.4, 100.0, 26.5, 98.4, 97.6, 0.0,"","","","","","", 78.9, 370 +0.0,1,a-picp-i1,2022-23,Boston-Lee Academy,00350001, 0.0, 0.0, 0.0, 0.0,"","","","","","","","","", 0.0, 130 +3.664516129032258,3.66,a-picp-i1,2022-23,Boston-Lee K-8 School,00350183, 65.4, 90.7, 81.8, 92.2, 91.8, 86.5, 46.5, 48.6, 0.0,"","","","", 71.0, 441 +4.252903225806452,4.25,a-picp-i1,2022-23,Boston-Lyndon K-8 School,00350262, 100.0, 100.0, 100.0, 100.0, 90.8, 95.0, 46.0, 42.1, 21.9,"","","","", 82.4, 511 +4.913548387096775,4.91,a-picp-i1,2022-23,Boston-Lyon High School,00350655,"","","","","","","","","", 100.0, 100.0, 82.8, 100.0, 95.2, 105 +5.078709677419355,5,a-picp-i1,2022-23,Boston-Lyon K-8 School,00350004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 91.7, 96.6,"","","","", 98.4, 129 +0.4696774193548387,1,a-picp-i1,2022-23,Boston-Madison Park Technical Vocational High School,00350537,"","","","","","","","","", 4.8, 6.5, 14.9, 11.6, 9.1," 1,019" +4.4799999999999995,4.48,a-picp-i1,2022-23,Boston-Manning Elementary School,00350184, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 86.8, 144 +4.40258064516129,4.4,a-picp-i1,2022-23,Boston-Margarita Muniz Academy,00350549,"","","","","","","","","", 81.9, 70.1, 96.8, 95.7, 85.3, 293 +5.140645161290323,5,a-picp-i1,2022-23,Boston-Mario Umana Academy,00350656, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3, 98.8,"","","","", 99.6, 570 +4.4232258064516135,4.42,a-picp-i1,2022-23,Boston-Mason Elementary School,00350304, 100.0, 100.0, 100.0, 96.6, 100.0, 0.0,"","","","","","","", 85.7, 161 +4.95483870967742,4.95,a-picp-i1,2022-23,Boston-Mather Elementary School,00350227, 76.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 96.0, 428 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Mattahunt Elementary School,00350016, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 385 +5.161290322580645,5,a-picp-i1,2022-23,Boston-McKay K-8 School,00350080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 654 +5.047741935483871,5,a-picp-i1,2022-23,Boston-McKinley Schools,00350363,"","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 94.7, 91.3, 97.8, 138 +4.495483870967742,4.5,a-picp-i1,2022-23,Boston-Mendell Elementary School,00350100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 87.1, 279 +2.2761290322580647,2.28,a-picp-i1,2022-23,Boston-Mildred Avenue K-8 School,00350378, 0.0, 93.8, 100.0, 95.5, 96.9, 74.7, 20.2, 9.3, 6.5,"","","","", 44.1, 590 +5.089032258064516,5,a-picp-i1,2022-23,Boston-Mozart Elementary School,00350237, 100.0, 100.0, 95.7, 100.0, 100.0, 95.0, 100.0,"","","","","","", 98.6, 147 +4.598709677419355,4.6,a-picp-i1,2022-23,Boston-Murphy K-8 School,00350240, 0.0, 93.8, 98.8, 96.7, 94.3, 99.0, 99.2, 91.7, 95.9,"","","","", 89.1, 787 +3.034838709677419,3.03,a-picp-i1,2022-23,Boston-New Mission High School,00350542,"","","","","","","", 98.2, 100.0, 82.1, 40.2, 31.0, 28.1, 58.8, 599 +3.2929032258064517,3.29,a-picp-i1,2022-23,Boston-O'Bryant School of Math & Science,00350575,"","","","","","","", 97.6, 75.4, 96.9, 41.8, 37.2, 53.1, 63.8," 1,543" +3.3806451612903228,3.38,a-picp-i1,2022-23,Boston-O'Donnell Elementary School,00350141, 0.0, 100.0, 100.0, 100.0, 100.0, 61.0, 0.0,"","","","","","", 65.5, 275 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Ohrenberger School,00350258,"","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 480 +5.094193548387097,5,a-picp-i1,2022-23,Boston-Orchard Gardens K-8 School,00350257, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 94.0, 100.0, 95.6,"","","","", 98.7, 671 +4.438709677419355,4.44,a-picp-i1,2022-23,Boston-Otis Elementary School,00350156, 100.0, 100.0, 100.0, 69.4, 100.0, 100.0, 0.0,"","","","","","", 86.0, 364 +4.418064516129032,4.42,a-picp-i1,2022-23,Boston-Perkins Elementary School,00350231, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 85.6, 146 +4.815483870967742,4.82,a-picp-i1,2022-23,Boston-Perry Elementary School,00350255, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0,"","","","","","", 93.3, 149 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Philbrick Elementary School,00350172, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 101 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Quincy Elementary School,00350286, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 667 +5.130322580645162,5,a-picp-i1,2022-23,Boston-Quincy Upper School,00350565,"","","","","","", 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 96.9, 99.4, 538 +5.078709677419355,5,a-picp-i1,2022-23,Boston-Roosevelt K-8 School,00350116, 100.0, 100.0, 100.0, 100.0, 95.5, 100.0, 97.4, 97.2, 97.7,"","","","", 98.4, 314 +5.1251612903225805,5,a-picp-i1,2022-23,Boston-Russell Elementary School,00350366, 100.0, 96.2, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.3, 307 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Shaw Elementary School,00350014, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 137 +3.509677419354839,3.51,a-picp-i1,2022-23,Boston-Snowden International High School,00350690,"","","","","","","","","", 92.6, 92.0, 57.4, 22.0, 68.0, 435 +4.655483870967742,4.66,a-picp-i1,2022-23,Boston-Sumner Elementary School,00350052, 100.0, 100.0, 100.0, 100.0, 98.8, 95.1, 0.0,"","","","","","", 90.2, 480 +3.5251612903225804,3.53,a-picp-i1,2022-23,Boston-Taylor Elementary School,00350054, 100.0, 100.0, 100.0, 84.4, 37.3, 54.1, 2.6,"","","","","","", 68.3, 347 +3.112258064516129,3.11,a-picp-i1,2022-23,Boston-TechBoston Academy,00350657,"","","","","","", 81.8, 86.7, 85.2, 56.9, 42.4, 38.0, 53.8, 60.3, 892 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Tobin K-8 School,00350229, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 390 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Trotter Elementary School,00350370, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 254 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Tynan Elementary School,00350181, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 167 +5.140645161290323,5,a-picp-i1,2022-23,Boston-UP Academy Holland,00350167, 98.8, 100.0, 100.0, 100.0, 99.0, 100.0,"","","","","","","", 99.6, 555 +4.934193548387096,4.93,a-picp-i1,2022-23,Boston-Warren-Prescott K-8 School,00350346, 91.3, 92.1, 95.5, 96.0, 96.6, 96.2, 100.0, 100.0, 100.0,"","","","", 95.6, 456 +5.161290322580645,5,a-picp-i1,2022-23,Boston-West Zone Early Learning Center,00350006, 100.0, 100.0,"","","","","","","","","","","", 100.0, 57 +5.161290322580645,5,a-picp-i1,2022-23,Boston-Winship Elementary School,00350374, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 287 +5.058064516129032,5,a-picp-i1,2022-23,Boston-Winthrop Elementary School,00350180, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 81.8,"","","","","","", 98.0, 201 +3.6593548387096777,3.66,a-picp-i1,2022-23,Boston-Young Achievers K-8 School,00350380, 100.0, 100.0, 96.1, 100.0, 98.5, 100.0, 0.0, 10.3, 0.0,"","","","", 70.9, 461 +3.0503225806451613,3.05,a-picp-i1,2022-23,Bourne-Bourne High School,00360505,"","","","","","","","","", 78.8, 43.2, 45.2, 69.3, 59.1, 347 +5.161290322580645,5,a-picp-i1,2022-23,Bourne-Bourne Intermediate School,00360030,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 380 +5.078709677419355,5,a-picp-i1,2022-23,Bourne-Bourne Middle School,00360325,"","","","","","", 99.3, 98.7, 97.4,"","","","", 98.4, 444 +5.161290322580645,5,a-picp-i1,2022-23,Bourne-Bournedale Elementary School,00360005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 337 +5.161290322580645,5,a-picp-i1,2022-23,Boxford-Harry Lee Cole,00380005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 309 +5.161290322580645,5,a-picp-i1,2022-23,Boxford-Spofford Pond,00380013,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 384 +5.145806451612903,5,a-picp-i1,2022-23,Braintree-Archie T Morrison,00400033, 100.0, 98.6, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 300 +3.0451612903225804,3.05,a-picp-i1,2022-23,Braintree-Braintree High,00400505,"","","","","","","","","", 50.0, 79.5, 54.6, 50.5, 59.0," 1,620" +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Donald Ross,00400050, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 203 +4.572903225806451,4.57,a-picp-i1,2022-23,Braintree-East Middle School,00400305,"","","","","", 76.3, 95.8, 96.3, 85.2,"","","","", 88.6, 988 +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Highlands,00400015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 411 +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Hollis,00400005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2022-23,Braintree-Liberty,00400025,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 360 +4.567741935483871,4.57,a-picp-i1,2022-23,Braintree-Mary E Flaherty School,00400020, 95.7, 86.9, 89.1, 88.2, 87.7,"","","","","","","","", 88.5, 295 +4.95483870967742,4.95,a-picp-i1,2022-23,Braintree-Monatiquot Kindergarten Center,00400009, 96.0,"","","","","","","","","","","","", 96.0, 200 +4.903225806451613,4.9,a-picp-i1,2022-23,Braintree-South Middle School,00400310,"","","","","","", 96.9, 98.8, 89.7,"","","","", 95.0, 519 +5.161290322580645,5,a-picp-i1,2022-23,Brewster-Eddy Elementary,00410010,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 202 +5.161290322580645,5,a-picp-i1,2022-23,Brewster-Stony Brook Elementary,00410005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 194 +5.161290322580645,5,a-picp-i1,2022-23,Bridge Boston Charter School (District)-Bridge Boston Charter School,04170205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 302 +4.980645161290322,4.98,a-picp-i1,2022-23,Bridgewater-Raynham-Bridgewater Middle School,06250320,"","","","","","", 98.0, 94.2, 97.2,"","","","", 96.5, 763 +1.0838709677419356,1.08,a-picp-i1,2022-23,Bridgewater-Raynham-Bridgewater-Raynham Regional,06250505,"","","","","","","","","", 25.8, 19.1, 14.2, 25.2, 21.0," 1,392" +5.161290322580645,5,a-picp-i1,2022-23,Bridgewater-Raynham-Laliberte Elementary School,06250050,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 498 +5.161290322580645,5,a-picp-i1,2022-23,Bridgewater-Raynham-Merrill Elementary School,06250020, 100.0, 100.0,"","","","","","","","","","","", 100.0, 357 +5.161290322580645,5,a-picp-i1,2022-23,Bridgewater-Raynham-Mitchell Elementary School,06250002, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 813 +5.1251612903225805,5,a-picp-i1,2022-23,Bridgewater-Raynham-Raynham Middle School,06250315,"","","","","", 99.4, 100.0, 99.0, 98.8,"","","","", 99.3, 729 +0.0,1,a-picp-i1,2022-23,Bridgewater-Raynham-Therapeutic Day School,06250415,"","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9 +5.058064516129032,5,a-picp-i1,2022-23,Bridgewater-Raynham-Williams Intermediate School,06250300,"","","", 98.1, 100.0, 95.8,"","","","","","","", 98.0, 803 +4.433548387096774,4.43,a-picp-i1,2022-23,Brimfield-Brimfield Elementary,00430005, 0.0, 94.4, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 85.9, 255 +0.0,1,a-picp-i1,2022-23,Bristol County Agricultural-Bristol County Agricultural High,09100705,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 550 +1.0219354838709678,1.02,a-picp-i1,2022-23,Bristol-Plymouth Regional Vocational Technical-Bristol-Plymouth Vocational Technical,08100605,"","","","","","","","","", 53.2, 7.9, 9.7, 5.7, 19.8," 1,309" +5.130322580645162,5,a-picp-i1,2022-23,Brockton-Ashfield Middle School,00440421,"","","","","","", 99.4, 98.7, 100.0,"","","","", 99.4, 470 +2.6425806451612903,2.64,a-picp-i1,2022-23,Brockton-Brockton Champion High School,00440515,"","","","","","","","","", 55.8, 42.1, 57.1, 52.0, 51.2, 129 +2.9419354838709677,2.94,a-picp-i1,2022-23,Brockton-Brockton High,00440505,"","","","","","","","","", 48.2, 55.0, 58.7, 70.6, 57.0," 3,601" +4.454193548387097,4.45,a-picp-i1,2022-23,Brockton-Brockton Virtual Learning Academy,00440705,"", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 38.5, 68.2, 100.0, 100.0, 86.3, 168 +5.150967741935483,5,a-picp-i1,2022-23,Brockton-Brookfield,00440010, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 411 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Downey,00440110, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 512 +5.145806451612903,5,a-picp-i1,2022-23,Brockton-Dr W Arnone Community School,00440001, 100.0, 100.0, 100.0, 98.2, 100.0, 100.0,"","","","","","","", 99.7, 703 +5.063225806451612,5,a-picp-i1,2022-23,Brockton-East Middle School,00440405,"","","","","","", 97.6, 97.9, 98.8,"","","","", 98.1, 473 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Edgar B Davis,00440023, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 935 +0.3251612903225806,1,a-picp-i1,2022-23,Brockton-Edison Academy,00440520,"","","","","","","","","", 2.4, 7.3, 8.7, 6.7, 6.3, 239 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Gilmore Elementary School,00440055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 407 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Hancock,00440045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 603 +4.572903225806451,4.57,a-picp-i1,2022-23,Brockton-Huntington Therapeutic Day School,00440400,"","","","","","","", 100.0, 100.0, 75.0, 90.0, 88.9, 66.7, 88.6, 35 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-John F Kennedy,00440017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 546 +5.156129032258065,5,a-picp-i1,2022-23,Brockton-Louis F Angelo Elementary,00440065, 100.0, 100.0, 99.2, 100.0, 100.0, 100.0,"","","","","","","", 99.9, 816 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Manthala George Jr. School,00440003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 717 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Mary E. Baker School,00440002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 685 +5.114838709677419,5,a-picp-i1,2022-23,Brockton-North Middle School,00440410,"","","","","","", 98.1, 99.2, 100.0,"","","","", 99.1, 441 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-Oscar F Raymond,00440078, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 764 +5.161290322580645,5,a-picp-i1,2022-23,Brockton-PROMISE College and Career Academy,00440525,"","","","","","","","","", 100.0,"","","", 100.0, 37 +5.094193548387097,5,a-picp-i1,2022-23,Brockton-Plouffe Middle School,00440422,"","","","","","", 98.5, 98.4, 99.2,"","","","", 98.7, 686 +5.104516129032258,5,a-picp-i1,2022-23,Brockton-South Middle School,00440415,"","","","","","", 99.4, 98.9, 98.3,"","","","", 98.9, 527 +5.114838709677419,5,a-picp-i1,2022-23,Brockton-West Middle School,00440420,"","","","","","", 99.4, 99.5, 98.4,"","","","", 99.1, 558 +4.464516129032258,4.46,a-picp-i1,2022-23,Brooke Charter School (District)-Brooke Charter School,04280305, 98.4, 99.5, 99.0, 99.0, 100.0, 99.0, 98.4, 98.9, 100.0, 1.9, 78.8, 21.7, 90.8, 86.5," 2,215" +4.443870967741935,4.44,a-picp-i1,2022-23,Brookfield-Brookfield Elementary,00450005, 0.0, 100.0, 100.0, 100.0, 100.0, 97.5, 100.0,"","","","","","", 86.1, 266 +2.9883870967741935,2.99,a-picp-i1,2022-23,Brookline-Brookline High,00460505,"","","","","","","","","", 67.8, 67.3, 47.8, 47.2, 57.9," 2,062" +5.130322580645162,5,a-picp-i1,2022-23,Brookline-Edith C Baker,00460005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6, 100.0, 96.5,"","","","", 99.4, 677 +5.130322580645162,5,a-picp-i1,2022-23,Brookline-Florida Ruffin Ridley School,00460015, 100.0, 100.0, 100.0, 100.0, 96.4, 100.0, 98.8, 98.9, 100.0,"","","","", 99.4, 821 +5.150967741935483,5,a-picp-i1,2022-23,Brookline-Heath,00460025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.0, 100.0,"","","","", 99.8, 452 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-John D Runkle,00460045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 488 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-Lawrence,00460030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 618 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-Michael Driscoll,00460020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 469 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-Pierce,00460040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 691 +5.161290322580645,5,a-picp-i1,2022-23,Brookline-William H Lincoln,00460035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 478 +1.7393548387096776,1.74,a-picp-i1,2022-23,Burlington-Burlington High,00480505,"","","","","","","","","", 34.1, 37.7, 29.9, 32.9, 33.7, 901 +5.1251612903225805,5,a-picp-i1,2022-23,Burlington-Fox Hill,00480007, 98.4, 100.0, 100.0, 100.0, 97.4, 100.0,"","","","","","","", 99.3, 432 +5.161290322580645,5,a-picp-i1,2022-23,Burlington-Francis Wyman Elementary,00480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 495 +4.975483870967742,4.98,a-picp-i1,2022-23,Burlington-Marshall Simonds Middle,00480303,"","","","","","", 94.9, 96.8, 97.7,"","","","", 96.4, 838 +5.135483870967742,5,a-picp-i1,2022-23,Burlington-Memorial,00480015, 100.0, 98.7, 100.0, 100.0, 98.5, 100.0,"","","","","","","", 99.5, 398 +5.161290322580645,5,a-picp-i1,2022-23,Burlington-Pine Glen Elementary,00480020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Amigos School,00490006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 376 +2.7148387096774194,2.71,a-picp-i1,2022-23,Cambridge-Cambridge Rindge and Latin,00490506,"","","","","","","","","", 57.1, 51.1, 57.0, 45.6, 52.6," 1,889" +5.1251612903225805,5,a-picp-i1,2022-23,Cambridge-Cambridge Street Upper School,00490305,"","","","","","", 100.0, 100.0, 98.0,"","","","", 99.3, 295 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Cambridgeport,00490007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 224 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Fletcher/Maynard Academy,00490090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Graham and Parks,00490080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 340 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Haggerty,00490020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 224 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-John M Tobin,00490065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 205 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Kennedy-Longfellow,00490040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 189 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-King Open,00490035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Maria L. Baldwin,00490005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 303 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Martin Luther King Jr.,00490030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 284 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Morse,00490045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 240 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Peabody,00490050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 271 +5.161290322580645,5,a-picp-i1,2022-23,Cambridge-Putnam Avenue Upper School,00490310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 246 +5.0116129032258065,5,a-picp-i1,2022-23,Cambridge-Rindge Avenue Upper School,00490315,"","","","","","", 99.0, 100.0, 92.2,"","","","", 97.1, 277 +5.140645161290323,5,a-picp-i1,2022-23,Cambridge-Vassal Lane Upper School,00490320,"","","","","","", 99.0, 100.0, 100.0,"","","","", 99.6, 281 +3.938064516129032,3.94,a-picp-i1,2022-23,Canton-Canton High,00500505,"","","","","","","","","", 91.6, 85.3, 55.2, 68.8, 76.3, 899 +5.161290322580645,5,a-picp-i1,2022-23,Canton-Dean S Luce,00500020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 451 +5.161290322580645,5,a-picp-i1,2022-23,Canton-John F Kennedy,00500017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 476 +5.104516129032258,5,a-picp-i1,2022-23,Canton-Lt Peter M Hansen,00500012, 97.6, 97.8, 100.0, 100.0, 97.7, 100.0,"","","","","","","", 98.9, 536 +5.063225806451612,5,a-picp-i1,2022-23,Canton-Wm H Galvin Middle,00500305,"","","","","","", 98.4, 98.1, 97.9,"","","","", 98.1, 749 +5.12,5,a-picp-i1,2022-23,Cape Cod Lighthouse Charter (District)-Cape Cod Lighthouse Charter School,04320530,"","","","","","", 100.0, 100.0, 97.5,"","","","", 99.2, 249 +1.0787096774193548,1.08,a-picp-i1,2022-23,Cape Cod Regional Vocational Technical-Cape Cod Region Vocational Technical,08150605,"","","","","","","","","", 37.0, 25.0, 7.0, 11.8, 20.9, 675 +5.161290322580645,5,a-picp-i1,2022-23,Carlisle-Carlisle School,00510025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 592 +5.161290322580645,5,a-picp-i1,2022-23,Carver-Carver Elementary School,00520015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 722 +3.8193548387096774,3.82,a-picp-i1,2022-23,Carver-Carver Middle/High School,00520405,"","","","","","", 97.9, 98.4, 93.3, 53.7, 52.4, 61.5, 34.1, 74.0, 762 +5.161290322580645,5,a-picp-i1,2022-23,Central Berkshire-Becket Washington School,06350005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 88 +5.161290322580645,5,a-picp-i1,2022-23,Central Berkshire-Craneville,06350025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 442 +5.161290322580645,5,a-picp-i1,2022-23,Central Berkshire-Kittredge,06350035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 123 +5.130322580645162,5,a-picp-i1,2022-23,Central Berkshire-Nessacus Regional Middle School,06350305,"","","","","","", 100.0, 99.1, 99.2,"","","","", 99.4, 349 +2.209032258064516,2.21,a-picp-i1,2022-23,Central Berkshire-Wahconah Regional High,06350505,"","","","","","","","","", 46.8, 36.4, 36.9, 53.2, 42.8, 484 +5.150967741935483,5,a-picp-i1,2022-23,Chelmsford-Byam School,00560030, 99.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 507 +5.140645161290323,5,a-picp-i1,2022-23,Chelmsford-Center Elementary School,00560005, 98.9, 99.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.6, 495 +5.12,5,a-picp-i1,2022-23,Chelmsford-Charles D Harrington,00560025, 96.3, 98.9, 100.0, 100.0, 100.0,"","","","","","","","", 99.2, 472 +3.2361290322580647,3.24,a-picp-i1,2022-23,Chelmsford-Chelmsford High,00560505,"","","","","","","","","", 65.9, 68.6, 57.8, 58.1, 62.7," 1,366" +5.027096774193549,5,a-picp-i1,2022-23,Chelmsford-Col Moses Parker School,00560305,"","","","","", 96.6, 97.2, 97.2, 98.4,"","","","", 97.4, 730 +5.047741935483871,5,a-picp-i1,2022-23,Chelmsford-McCarthy Middle School,00560310,"","","","","", 99.1, 99.1, 98.6, 94.3,"","","","", 97.8, 854 +5.140645161290323,5,a-picp-i1,2022-23,Chelmsford-South Row,00560015, 97.6, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.6, 473 +2.678709677419355,2.68,a-picp-i1,2022-23,Chelsea-Chelsea High,00570505,"","","","","","","","","", 46.9, 55.0, 53.7, 54.0, 51.9," 1,668" +0.0,1,a-picp-i1,2022-23,Chelsea-Chelsea Opportunity Academy,00570515,"","","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 79 +0.11870967741935483,1,a-picp-i1,2022-23,Chelsea-Chelsea Virtual Learning Academy,00570705,"","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.5, 0.0, 2.3, 44 +5.052903225806452,5,a-picp-i1,2022-23,Chelsea-Clark Avenue School,00570050,"","","","","", 98.1, 97.1, 97.7, 98.4,"","","","", 97.9, 699 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-Edgar A Hooks Elementary,00570030,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 502 +4.990967741935484,4.99,a-picp-i1,2022-23,Chelsea-Eugene Wright Science and Technology Academy,00570045,"","","","","", 96.0, 98.0, 97.4, 95.7,"","","","", 96.7, 457 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-Frank M Sokolowski Elementary,00570040,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 497 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-George F. Kelly Elementary,00570035,"", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 478 +4.96,4.96,a-picp-i1,2022-23,Chelsea-Joseph A. Browne School,00570055,"","","","","", 96.1, 97.5, 96.4, 94.7,"","","","", 96.1, 537 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-Shurtleff Early Childhood,00570003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 574 +5.161290322580645,5,a-picp-i1,2022-23,Chelsea-William A Berkowitz Elementary,00570025,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 449 +5.161290322580645,5,a-picp-i1,2022-23,Chesterfield-Goshen-New Hingham Regional Elementary,06320025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 129 +5.145806451612903,5,a-picp-i1,2022-23,Chicopee-Barry,00610003, 100.0, 100.0, 100.0, 100.0, 100.0, 98.5,"","","","","","","", 99.7, 362 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Belcher,00610010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 193 +2.833548387096774,2.83,a-picp-i1,2022-23,Chicopee-Bellamy Middle,00610305,"","","","","","", 69.3, 34.8, 61.8,"","","","", 54.9, 807 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Bowe,00610015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 413 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Bowie,00610020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 273 +3.349677419354839,3.35,a-picp-i1,2022-23,Chicopee-Chicopee Academy,00610021,"","","","","","","", 85.7, 83.3, 88.9, 75.0, 76.9, 11.8, 64.9, 74 +3.241290322580645,3.24,a-picp-i1,2022-23,Chicopee-Chicopee Comprehensive High School,00610510,"","","","","","","","","", 69.7, 65.1, 45.2, 70.5, 62.8," 1,202" +3.7625806451612904,3.76,a-picp-i1,2022-23,Chicopee-Chicopee High,00610505,"","","","","","","","","", 63.5, 80.6, 74.3, 74.9, 72.9, 916 +2.503225806451613,2.5,a-picp-i1,2022-23,Chicopee-Dupont Middle,00610310,"","","","","","", 87.1, 47.5, 8.2,"","","","", 48.5, 699 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Fairview Elementary,00610050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 345 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Gen John J Stefanik,00610090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Lambert-Lavoie,00610040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 235 +5.114838709677419,5,a-picp-i1,2022-23,Chicopee-Litwin,00610022, 100.0, 100.0, 100.0, 97.2, 100.0, 100.0,"","","","","","","", 99.1, 338 +5.161290322580645,5,a-picp-i1,2022-23,Chicopee-Streiber Memorial School,00610065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 227 +4.691612903225807,4.69,a-picp-i1,2022-23,Christa McAuliffe Charter School (District)-Christa McAuliffe Charter School,04180305,"","","","","","", 100.0, 94.5, 78.3,"","","","", 90.9, 329 +1.5741935483870968,1.57,a-picp-i1,2022-23,City on a Hill Charter Public School (District)-City on a Hill Charter Public School,04370505,"","","","","","","","","", 97.7, 4.7, 0.0, 34.2, 30.5, 190 +4.655483870967742,4.66,a-picp-i1,2022-23,Clarksburg-Clarksburg Elementary,00630010, 100.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 90.2, 174 +5.063225806451612,5,a-picp-i1,2022-23,Clinton-Clinton Elementary,00640050, 98.5, 96.8, 98.7, 99.3, 97.6,"","","","","","","","", 98.1, 753 +5.150967741935483,5,a-picp-i1,2022-23,Clinton-Clinton Middle School,00640305,"","","","","", 99.2, 100.0, 100.0, 100.0,"","","","", 99.8, 556 +1.3264516129032258,1.33,a-picp-i1,2022-23,Clinton-Clinton Senior High,00640505,"","","","","","","","","", 17.2, 37.1, 33.1, 16.8, 25.7, 556 +2.4980645161290322,2.5,a-picp-i1,2022-23,Codman Academy Charter Public (District)-Codman Academy Charter Public School,04380505, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 18.9, 3.1, 7.1, 48.4, 318 +4.794838709677419,4.79,a-picp-i1,2022-23,Cohasset-Cohasset High School,00650505,"","","","","","","","","", 97.4, 95.2, 92.9, 86.2, 92.9, 434 +4.985806451612903,4.99,a-picp-i1,2022-23,Cohasset-Cohasset Middle School,00650305,"","","","","","", 93.7, 100.0, 97.0,"","","","", 96.6, 298 +5.161290322580645,5,a-picp-i1,2022-23,Cohasset-Deer Hill,00650005,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 306 +5.161290322580645,5,a-picp-i1,2022-23,Cohasset-Joseph Osgood,00650010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 347 +4.903225806451613,4.9,a-picp-i1,2022-23,Collegiate Charter School of Lowell (District)-Collegiate Charter School of Lowell,35030205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 95.0," 1,169" +2.9832258064516126,2.98,a-picp-i1,2022-23,Community Charter School of Cambridge (District)-Community Charter School of Cambridge,04360305,"","","","","","", 100.0, 95.2, 100.0, 100.0, 2.0, 19.1, 22.2, 57.8, 258 +0.0,1,a-picp-i1,2022-23,Community Day Charter Public School (District)-Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 0.0," 1,085" +5.161290322580645,5,a-picp-i1,2022-23,Concord-Alcott,00670005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 403 +2.5238709677419355,2.52,a-picp-i1,2022-23,Concord-Carlisle-Concord Carlisle High,06400505,"","","","","","","","","", 72.8, 48.8, 32.1, 42.5, 48.9," 1,314" +5.0683870967741935,5,a-picp-i1,2022-23,Concord-Concord Middle,00670305,"","","","","","", 99.5, 97.8, 97.2,"","","","", 98.2, 656 +5.161290322580645,5,a-picp-i1,2022-23,Concord-Thoreau,00670020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 418 +5.161290322580645,5,a-picp-i1,2022-23,Concord-Willard,00670030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 433 +5.145806451612903,5,a-picp-i1,2022-23,Conservatory Lab Charter (District)-Conservatory Lab Charter School,04390050, 100.0, 100.0, 100.0, 100.0, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","", 99.7, 396 +5.161290322580645,5,a-picp-i1,2022-23,Conway-Conway Grammar,00680005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 119 +3.5922580645161286,3.59,a-picp-i1,2022-23,Danvers-Danvers High,00710505,"","","","","","","","","", 69.1, 75.3, 70.6, 63.5, 69.6, 766 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Great Oak,00710015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 305 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Highlands,00710010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 388 +5.073548387096774,5,a-picp-i1,2022-23,Danvers-Holten Richmond Middle School,00710305,"","","","","","", 99.6, 97.6, 97.8,"","","","", 98.3, 781 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Ivan G Smith,00710032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 337 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Riverside,00710030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 260 +5.161290322580645,5,a-picp-i1,2022-23,Danvers-Willis E Thorpe,00710045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 277 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-Andrew B. Cushman School,00720005, 100.0,"","","","","","","","","","","","", 100.0, 54 +3.5509677419354837,3.55,a-picp-i1,2022-23,Dartmouth-Dartmouth High,00720505,"","","","","","","","","", 84.4, 65.9, 53.8, 72.2, 68.8, 990 +4.516129032258065,4.52,a-picp-i1,2022-23,Dartmouth-Dartmouth Middle,00720050,"","","","","","", 92.1, 88.3, 82.3,"","","","", 87.5, 805 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-George H Potter,00720030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 388 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-James M. Quinn School,00720040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 706 +5.161290322580645,5,a-picp-i1,2022-23,Dartmouth-Joseph Demello,00720015,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.1251612903225805,5,a-picp-i1,2022-23,Dedham-Avery,00730010,"", 98.5, 98.6, 100.0, 100.0, 100.0,"","","","","","","", 99.3, 294 +2.6683870967741936,2.67,a-picp-i1,2022-23,Dedham-Dedham High,00730505,"","","","","","","","","", 58.2, 40.3, 43.9, 65.3, 51.7, 722 +4.96,4.96,a-picp-i1,2022-23,Dedham-Dedham Middle School,00730305,"","","","","","", 96.4, 95.3, 96.6,"","","","", 96.1, 565 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Early Childhood Center,00730005, 100.0,"","","","","","","","","","","","", 100.0, 210 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Greenlodge,00730025,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 281 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Oakdale,00730030,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 245 +5.161290322580645,5,a-picp-i1,2022-23,Dedham-Riverdale,00730045,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 182 +5.161290322580645,5,a-picp-i1,2022-23,Deerfield-Deerfield Elementary,00740015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 300 +5.140645161290323,5,a-picp-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Intermediate School,06450050,"","","","", 99.2, 100.0,"","","","","","","", 99.6, 458 +5.161290322580645,5,a-picp-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Middle School,06450305,"","","","","","", 100.0, 100.0,"","","","","", 100.0, 482 +4.139354838709678,4.14,a-picp-i1,2022-23,Dennis-Yarmouth-Dennis-Yarmouth Regional High,06450505,"","","","","","","","", 95.6, 81.0, 78.9, 71.1, 69.3, 80.2, 899 +5.161290322580645,5,a-picp-i1,2022-23,Dennis-Yarmouth-Ezra H Baker Innovation School,06450005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 295 +5.135483870967742,5,a-picp-i1,2022-23,Dennis-Yarmouth-Marguerite E Small Elementary,06450015, 100.0, 100.0, 98.1, 100.0,"","","","","","","","","", 99.5, 220 +5.161290322580645,5,a-picp-i1,2022-23,Dennis-Yarmouth-Station Avenue Elementary,06450025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 417 +5.150967741935483,5,a-picp-i1,2022-23,Dighton-Rehoboth-Dighton Elementary,06500005, 100.0, 98.8, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 433 +5.161290322580645,5,a-picp-i1,2022-23,Dighton-Rehoboth-Dighton Middle School,06500305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 369 +3.303225806451613,3.3,a-picp-i1,2022-23,Dighton-Rehoboth-Dighton-Rehoboth Regional High School,06500505,"","","","","","","","","", 66.7, 63.2, 60.9, 65.2, 64.0, 663 +5.150967741935483,5,a-picp-i1,2022-23,Dighton-Rehoboth-Dorothy L Beckwith,06500310,"","","","","", 100.0, 100.0, 99.1, 100.0,"","","","", 99.8, 452 +5.161290322580645,5,a-picp-i1,2022-23,Dighton-Rehoboth-Palmer River,06500010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 570 +5.161290322580645,5,a-picp-i1,2022-23,Douglas-Douglas Elementary School,00770015,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 346 +3.184516129032258,3.18,a-picp-i1,2022-23,Douglas-Douglas High School,00770505,"","","","","","","","","", 58.1, 60.0, 68.1, 59.6, 61.7, 324 +5.042580645161291,5,a-picp-i1,2022-23,Douglas-Douglas Middle School,00770305,"","","","","","", 98.2, 97.0, 97.9,"","","","", 97.7, 304 +5.161290322580645,5,a-picp-i1,2022-23,Douglas-Douglas Primary School,00770005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 160 +5.161290322580645,5,a-picp-i1,2022-23,Dover-Chickering,00780005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 496 +4.232258064516129,4.23,a-picp-i1,2022-23,Dover-Sherborn-Dover-Sherborn Regional High,06550505,"","","","","","","","","", 94.6, 81.5, 79.1, 70.5, 82.0, 667 +5.150967741935483,5,a-picp-i1,2022-23,Dover-Sherborn-Dover-Sherborn Regional Middle School,06550405,"","","","","","", 100.0, 99.3, 100.0,"","","","", 99.8, 481 +5.150967741935483,5,a-picp-i1,2022-23,Dracut-Brookside Elementary,00790035, 100.0, 100.0, 100.0, 100.0, 98.7, 100.0,"","","","","","","", 99.8, 478 +2.6270967741935483,2.63,a-picp-i1,2022-23,Dracut-Dracut Senior High,00790505,"","","","","","","","","", 48.3, 49.5, 54.1, 52.3, 50.9, 849 +5.161290322580645,5,a-picp-i1,2022-23,Dracut-George H. Englesby Elementary School,00790045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 548 +5.161290322580645,5,a-picp-i1,2022-23,Dracut-Greenmont Avenue,00790030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 235 +4.944516129032258,4.94,a-picp-i1,2022-23,Dracut-Joseph A Campbell Elementary,00790020, 93.5, 95.7, 96.0, 94.7, 96.0, 98.0,"","","","","","","", 95.8, 566 +4.9961290322580645,5.0,a-picp-i1,2022-23,Dracut-Justus C. Richardson Middle School,00790410,"","","","","","", 97.4, 96.5, 96.5,"","","","", 96.8, 874 +0.0,1,a-picp-i1,2022-23,Dudley Street Neighborhood Charter School (District)-Dudley Street Neighborhood Charter School,04070405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","", 0.0, 250 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Charlton Elementary,06580020, 100.0, 100.0,"","","","","","","","","","","", 100.0, 269 +5.145806451612903,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Charlton Middle School,06580310,"","","","","", 100.0, 99.3, 100.0, 99.3,"","","","", 99.7, 604 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Dudley Elementary,06580005,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 342 +5.140645161290323,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Dudley Middle School,06580305,"","","","","", 100.0, 100.0, 99.3, 99.3,"","","","", 99.6, 566 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Heritage School,06580030,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 449 +5.161290322580645,5,a-picp-i1,2022-23,Dudley-Charlton Reg-Mason Road School,06580010, 100.0, 100.0,"","","","","","","","","","","", 100.0, 182 +2.6425806451612903,2.64,a-picp-i1,2022-23,Dudley-Charlton Reg-Shepherd Hill Regional High,06580505,"","","","","","","","","", 50.2, 51.6, 44.8, 58.3, 51.2, 932 +5.161290322580645,5,a-picp-i1,2022-23,Duxbury-Alden School,00820004,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 598 +5.161290322580645,5,a-picp-i1,2022-23,Duxbury-Chandler Elementary,00820006, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 601 +3.52,3.52,a-picp-i1,2022-23,Duxbury-Duxbury High,00820505,"","","","","","","","","", 78.3, 72.6, 55.3, 67.0, 68.2, 920 +4.712258064516129,4.71,a-picp-i1,2022-23,Duxbury-Duxbury Middle,00820305,"","","","","","", 99.5, 96.4, 76.6,"","","","", 91.3, 620 +5.161290322580645,5,a-picp-i1,2022-23,East Bridgewater-Central,00830005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 421 +4.8103225806451615,4.81,a-picp-i1,2022-23,East Bridgewater-East Bridgewater JR./SR. High School,00830505,"","","","","","","", 98.2, 99.4, 99.4, 97.0, 84.2, 80.6, 93.2, 916 +5.114838709677419,5,a-picp-i1,2022-23,East Bridgewater-Gordon W. Mitchell School,00830010,"","","", 100.0, 100.0, 98.2, 98.2,"","","","","","", 99.1, 638 +4.495483870967742,4.5,a-picp-i1,2022-23,East Longmeadow-Birchland Park,00870305,"","","","","","", 84.6, 86.1, 90.8,"","","","", 87.1, 598 +2.3793548387096775,2.38,a-picp-i1,2022-23,East Longmeadow-East Longmeadow High,00870505,"","","","","","","","","", 37.1, 60.1, 50.0, 38.9, 46.1, 811 +5.161290322580645,5,a-picp-i1,2022-23,East Longmeadow-Mapleshade,00870010,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 290 +5.140645161290323,5,a-picp-i1,2022-23,East Longmeadow-Meadow Brook,00870013, 99.4, 100.0, 99.4,"","","","","","","","","","", 99.6, 501 +5.161290322580645,5,a-picp-i1,2022-23,East Longmeadow-Mountain View,00870015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 270 +5.161290322580645,5,a-picp-i1,2022-23,Eastham-Eastham Elementary,00850005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 184 +2.9419354838709677,2.94,a-picp-i1,2022-23,Easthampton-Easthampton High,00860505,"","","","","","","","","", 63.3, 58.0, 53.4, 53.2, 57.0, 372 +5.150967741935483,5,a-picp-i1,2022-23,Easthampton-Mountain View School,00860415, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 100.0, 99.1, 100.0,"","","","", 99.8," 1,007" +5.161290322580645,5,a-picp-i1,2022-23,Easton-Blanche A. Ames Elementary School,00880015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 660 +5.12,5,a-picp-i1,2022-23,Easton-Easton Middle School,00880405,"","","","","","", 99.6, 99.6, 98.3,"","","","", 99.2, 830 +1.9561290322580644,1.96,a-picp-i1,2022-23,Easton-Oliver Ames High,00880505,"","","","","","","","","", 33.3, 34.9, 41.5, 41.5, 37.9," 1,082" +5.161290322580645,5,a-picp-i1,2022-23,Easton-Richardson Olmsted School,00880025,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 767 +5.063225806451612,5,a-picp-i1,2022-23,Edgartown-Edgartown Elementary,00890005, 100.0, 97.0, 100.0, 93.6, 100.0, 97.6, 98.1, 95.5, 100.0,"","","","", 98.1, 414 +5.027096774193549,5,a-picp-i1,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District)-Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505,"","","","","","","","","", 97.2, 95.7, 99.0, 97.6, 97.4, 378 +5.161290322580645,5,a-picp-i1,2022-23,Erving-Erving Elementary,00910030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 105 +0.38193548387096776,1,a-picp-i1,2022-23,Essex North Shore Agricultural and Technical School District-Essex North Shore Agricultural and Technical School,08170505,"","","","","","","","","", 0.0, 4.3, 19.7, 6.8, 7.4," 1,675" +5.037419354838709,5,a-picp-i1,2022-23,Everett-Devens School,00930030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 66.7, 97.6, 41 +2.590967741935484,2.59,a-picp-i1,2022-23,Everett-Everett High,00930505,"","","","","","","","","", 53.1, 52.6, 48.4, 44.9, 50.2," 2,297" +5.156129032258065,5,a-picp-i1,2022-23,Everett-George Keverian School,00930028, 100.0, 100.0, 100.0, 100.0, 98.8, 100.0, 100.0, 100.0, 100.0,"","","","", 99.9, 892 +5.145806451612903,5,a-picp-i1,2022-23,Everett-Lafayette School,00930038, 100.0, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.7," 1,031" +5.161290322580645,5,a-picp-i1,2022-23,Everett-Madeline English School,00930018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 755 +5.12,5,a-picp-i1,2022-23,Everett-Parlin School,00930058, 97.3, 96.9, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3, 100.0,"","","","", 99.2," 1,096" +5.161290322580645,5,a-picp-i1,2022-23,Everett-Sumner G. Whittier School,00930010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 633 +5.161290322580645,5,a-picp-i1,2022-23,Everett-Webster School,00930015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 328 +3.303225806451613,3.3,a-picp-i1,2022-23,Excel Academy Charter (District)-Excel Academy Charter School,04100205,"","","","","", 100.0, 100.0, 100.0, 100.0, 40.6, 31.6, 18.1, 15.3, 64.0," 1,357" +3.4632258064516126,3.46,a-picp-i1,2022-23,Fairhaven-East Fairhaven,00940010, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 67.1, 298 +3.9277419354838705,3.93,a-picp-i1,2022-23,Fairhaven-Fairhaven High,00940505,"","","","","","","","","", 89.2, 86.8, 66.0, 62.7, 76.1, 633 +5.150967741935483,5,a-picp-i1,2022-23,Fairhaven-Hastings Middle,00940305,"","","","","","", 99.3, 100.0, 100.0,"","","","", 99.8, 442 +3.6903225806451614,3.69,a-picp-i1,2022-23,Fairhaven-Leroy Wood,00940030, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 71.5, 421 +2.4567741935483873,2.46,a-picp-i1,2022-23,Fall River-B M C Durfee High,00950505,"","","","","","","","","", 39.4, 49.2, 51.3, 52.6, 47.6," 2,391" +5.161290322580645,5,a-picp-i1,2022-23,Fall River-Carlton M. Viveiros Elementary School,00950009, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 688 +5.1251612903225805,5,a-picp-i1,2022-23,Fall River-Henry Lord Community School,00950017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.7, 96.1, 98.7,"","","","", 99.3, 765 +5.140645161290323,5,a-picp-i1,2022-23,Fall River-James Tansey,00950140, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 273 +5.150967741935483,5,a-picp-i1,2022-23,Fall River-John J Doran,00950045, 100.0, 100.0, 100.0, 100.0, 98.1, 100.0, 100.0, 100.0, 100.0,"","","","", 99.8, 464 +4.898064516129033,4.9,a-picp-i1,2022-23,Fall River-Letourneau Elementary School,00950013, 93.8, 97.2, 87.9, 94.9, 95.8, 99.0,"","","","","","","", 94.9, 585 +5.161290322580645,5,a-picp-i1,2022-23,Fall River-Mary Fonseca Elementary School,00950011, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 575 +5.109677419354838,5,a-picp-i1,2022-23,Fall River-Matthew J Kuss Middle,00950320,"","","","","","", 98.7, 98.2, 100.0,"","","","", 99.0, 680 +4.825806451612904,4.83,a-picp-i1,2022-23,Fall River-Morton Middle,00950315,"","","","","","", 95.9, 91.7, 92.7,"","","","", 93.5, 665 +5.161290322580645,5,a-picp-i1,2022-23,Fall River-North End Elementary,00950005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 629 +2.47741935483871,2.48,a-picp-i1,2022-23,Fall River-Resiliency Preparatory Academy,00950525,"","","","","","","", 72.7, 96.3, 59.3, 32.1, 36.8, 25.0, 48.0, 175 +5.0683870967741935,5,a-picp-i1,2022-23,Fall River-Samuel Watson,00950145, 93.8, 100.0, 100.0, 100.0, 100.0, 97.0,"","","","","","","", 98.2, 228 +5.037419354838709,5,a-picp-i1,2022-23,Fall River-Spencer Borden,00950130, 100.0, 100.0, 94.3, 91.3, 100.0, 100.0,"","","","","","","", 97.6, 541 +4.144516129032258,4.14,a-picp-i1,2022-23,Fall River-Stone PK-12 School,00950340,"", 100.0, 100.0, 85.7, 100.0, 100.0, 100.0, 87.5, 100.0, 91.7, 0.0, 85.7, 57.1, 80.3, 66 +5.063225806451612,5,a-picp-i1,2022-23,Fall River-Talbot Innovation School,00950305,"","","","","","", 95.5, 98.9, 100.0,"","","","", 98.1, 534 +5.145806451612903,5,a-picp-i1,2022-23,Fall River-William S Greene,00950065, 100.0, 100.0, 99.0, 100.0, 99.1, 100.0,"","","","","","","", 99.7, 687 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-East Falmouth Elementary,00960005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 191 +3.1225806451612903,3.12,a-picp-i1,2022-23,Falmouth-Falmouth High,00960505,"","","","","","","","","", 62.1, 55.9, 56.3, 67.9, 60.5, 767 +5.078709677419355,5,a-picp-i1,2022-23,Falmouth-Lawrence,00960405,"","","","","","","", 99.1, 97.6,"","","","", 98.4, 489 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-Morse Pond School,00960305,"","","","","", 100.0, 100.0,"","","","","","", 100.0, 487 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-Mullen-Hall,00960020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 381 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-North Falmouth Elementary,00960030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 312 +5.161290322580645,5,a-picp-i1,2022-23,Falmouth-Teaticket,00960015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 241 +5.161290322580645,5,a-picp-i1,2022-23,Farmington River Reg-Farmington River Elementary,06620020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 107 +4.9393548387096775,4.94,a-picp-i1,2022-23,Fitchburg-Arthur M Longsjo Middle School,00970315,"","","","","","", 98.7, 94.1, 94.0,"","","","", 95.7, 611 +5.150967741935483,5,a-picp-i1,2022-23,Fitchburg-Crocker Elementary,00970016,"", 100.0, 100.0, 99.2, 100.0, 100.0,"","","","","","","", 99.8, 603 +3.0141935483870967,3.01,a-picp-i1,2022-23,Fitchburg-Fitchburg High,00970505,"","","","","","","","","", 52.6, 49.7, 64.4, 68.2, 58.4," 1,194" +0.4593548387096774,1,a-picp-i1,2022-23,Fitchburg-Goodrich Academy,00970510,"","","","","","","","","", 16.7, 35.0, 8.6, 3.4, 8.9, 213 +5.161290322580645,5,a-picp-i1,2022-23,Fitchburg-McKay Elementary School,00970340,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 729 +5.047741935483871,5,a-picp-i1,2022-23,Fitchburg-Memorial Middle School,00970048,"","","","","","", 98.6, 97.9, 97.0,"","","","", 97.8, 595 +5.161290322580645,5,a-picp-i1,2022-23,Fitchburg-Reingold Elementary,00970043,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 655 +5.1251612903225805,5,a-picp-i1,2022-23,Fitchburg-South Street Early Learning Center,00970060, 99.3,"","","","","","","","","","","","", 99.3, 418 +4.588387096774194,4.59,a-picp-i1,2022-23,Florida-Abbott Memorial,00980005, 100.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0, 100.0, 81.8,"","","","", 88.9, 81 +4.211612903225806,4.21,a-picp-i1,2022-23,Foxborough Regional Charter (District)-Foxborough Regional Charter School,04460550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 14.7, 17.2, 23.9, 39.5, 81.6," 1,538" +5.140645161290323,5,a-picp-i1,2022-23,Foxborough-Charles Taylor Elementary,00990050, 100.0, 100.0, 100.0, 98.2, 100.0,"","","","","","","","", 99.6, 257 +2.967741935483871,2.97,a-picp-i1,2022-23,Foxborough-Foxborough High,00990505,"","","","","","","","","", 54.9, 57.0, 58.8, 59.6, 57.5, 783 +5.083870967741936,5,a-picp-i1,2022-23,Foxborough-John J Ahern,00990405,"","","","","", 99.5, 99.0, 96.6, 98.9,"","","","", 98.5, 748 +5.161290322580645,5,a-picp-i1,2022-23,Foxborough-Mabelle M Burrell,00990015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2022-23,Foxborough-Vincent M Igo Elementary,00990020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 362 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Barbieri Elementary,01000035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 671 +5.150967741935483,5,a-picp-i1,2022-23,Framingham-Brophy,01000006, 100.0, 100.0, 100.0, 98.7, 100.0, 100.0,"","","","","","","", 99.8, 475 +5.150967741935483,5,a-picp-i1,2022-23,Framingham-Cameron Middle School,01000302,"","","","","","", 100.0, 100.0, 99.5,"","","","", 99.8, 568 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Charlotte A Dunning,01000007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 431 +2.7406451612903227,2.74,a-picp-i1,2022-23,Framingham-Framingham High School,01000515,"","","","","","","","","", 61.9, 62.6, 44.2, 40.7, 53.1," 2,571" +5.021935483870967,5,a-picp-i1,2022-23,Framingham-Fuller Middle,01000305,"","","","","","", 96.6, 96.8, 98.7,"","","","", 97.3, 674 +5.150967741935483,5,a-picp-i1,2022-23,Framingham-Harmony Grove Elementary,01000055, 100.0, 100.0, 100.0, 98.6, 100.0, 100.0,"","","","","","","", 99.8, 475 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Hemenway,01000015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 546 +4.96516129032258,4.97,a-picp-i1,2022-23,Framingham-King Elementary School,01000005, 100.0, 98.4, 91.9, 95.0, 93.3, 100.0,"","","","","","","", 96.2, 394 +5.145806451612903,5,a-picp-i1,2022-23,Framingham-Mary E Stapleton Elementary,01000045, 100.0, 100.0, 100.0, 100.0, 98.5, 100.0,"","","","","","","", 99.7, 352 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Miriam F McCarthy School,01000050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 524 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Potter Road,01000039, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 538 +5.161290322580645,5,a-picp-i1,2022-23,Framingham-Walsh Middle,01000310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 810 +0.4490322580645161,1,a-picp-i1,2022-23,Francis W. Parker Charter Essential (District)-Francis W. Parker Charter Essential School,04780505,"","","","","","","", 0.0, 0.0, 0.0, 1.6, 32.7, 23.4, 8.7, 391 +0.0,1,a-picp-i1,2022-23,Franklin County Regional Vocational Technical-Franklin County Technical,08180605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 596 +5.083870967741936,5,a-picp-i1,2022-23,Franklin-Annie Sullivan Middle School,01010040,"","","","","","", 96.6, 100.0, 99.0,"","","","", 98.5, 326 +2.9780645161290322,2.98,a-picp-i1,2022-23,Franklin-Franklin High,01010505,"","","","","","","","","", 81.9, 62.9, 43.8, 44.1, 57.7," 1,626" +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Helen Keller Elementary,01010012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 538 +5.135483870967742,5,a-picp-i1,2022-23,Franklin-Horace Mann,01010405,"","","","","","", 100.0, 100.0, 98.4,"","","","", 99.5, 379 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-J F Kennedy Memorial,01010013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 338 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Jefferson Elementary,01010010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Oak Street Elementary,01010030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Franklin-Parmenter,01010032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 293 +5.063225806451612,5,a-picp-i1,2022-23,Franklin-Remington Middle,01010310,"","","","","","", 98.4, 97.4, 98.5,"","","","", 98.1, 377 +3.0038709677419355,3.0,a-picp-i1,2022-23,Freetown-Lakeville-Apponequet Regional High,06650505,"","","","","","","","","", 94.8, 51.4, 32.3, 56.4, 58.2, 720 +5.161290322580645,5,a-picp-i1,2022-23,Freetown-Lakeville-Assawompset Elementary School,06650002, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 491 +5.161290322580645,5,a-picp-i1,2022-23,Freetown-Lakeville-Freetown Elementary School,06650001, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 375 +4.774193548387097,4.77,a-picp-i1,2022-23,Freetown-Lakeville-Freetown-Lakeville Middle School,06650305,"","","","","","", 93.5, 93.5, 90.1,"","","","", 92.5, 676 +5.161290322580645,5,a-picp-i1,2022-23,Freetown-Lakeville-George R Austin Intermediate School,06650015,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 446 +3.184516129032258,3.18,a-picp-i1,2022-23,Frontier-Frontier Regional,06700505,"","","","","","","", 83.2, 65.1, 54.3, 50.5, 50.5, 62.1, 61.7, 595 +0.4748387096774193,1,a-picp-i1,2022-23,Gardner-Gardner Academy for Learning and Technology,01030515,"","","","","","","","","", 0.0, 0.0, 0.0, 16.9, 9.2, 119 +4.9961290322580645,5.0,a-picp-i1,2022-23,Gardner-Gardner Elementary School,01030001, 95.4, 96.0, 97.9, 98.3, 96.9,"","","","","","","","", 96.8, 919 +2.63741935483871,2.64,a-picp-i1,2022-23,Gardner-Gardner High,01030505,"","","","","","","","", 68.7, 64.5, 35.4, 36.6, 40.8, 51.1, 795 +5.047741935483871,5,a-picp-i1,2022-23,Gardner-Gardner Middle School,01030405,"","","","","", 97.6, 96.8, 98.8,"","","","","", 97.8, 496 +5.161290322580645,5,a-picp-i1,2022-23,Gateway-Chester Elementary,06720059, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 91 +2.8438709677419354,2.84,a-picp-i1,2022-23,Gateway-Gateway Regional High,06720505,"","","","","","","","","", 59.6, 48.4, 47.9, 63.4, 55.1, 167 +5.032258064516129,5,a-picp-i1,2022-23,Gateway-Gateway Regional Middle School,06720405,"","","","","","", 98.3, 96.8, 97.4,"","","","", 97.5, 199 +5.161290322580645,5,a-picp-i1,2022-23,Gateway-Littleville Elementary School,06720143, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 265 +4.16,4.16,a-picp-i1,2022-23,Georgetown-Georgetown High School,01050505,"","","","","","","","","", 79.3, 82.1, 70.8, 89.7, 80.6, 299 +4.9961290322580645,5.0,a-picp-i1,2022-23,Georgetown-Georgetown Middle School,01050305,"","","","","","","", 100.0, 93.4,"","","","", 96.8, 189 +5.161290322580645,5,a-picp-i1,2022-23,Georgetown-Penn Brook,01050010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 702 +5.161290322580645,5,a-picp-i1,2022-23,Gill-Montague-Gill Elementary,06740005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 104 +4.846451612903226,4.85,a-picp-i1,2022-23,Gill-Montague-Great Falls Middle,06740310,"","","","","","", 92.9, 97.8, 88.7,"","","","", 93.9, 212 +5.161290322580645,5,a-picp-i1,2022-23,Gill-Montague-Hillcrest Elementary School,06740015, 100.0, 100.0,"","","","","","","","","","","", 100.0, 111 +5.161290322580645,5,a-picp-i1,2022-23,Gill-Montague-Sheffield Elementary School,06740050,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 214 +4.201290322580645,4.2,a-picp-i1,2022-23,Gill-Montague-Turners Fall High,06740505,"","","","","","","","","", 86.0, 85.4, 85.7, 61.8, 81.4, 188 +4.784516129032259,4.78,a-picp-i1,2022-23,Global Learning Charter Public (District)-Global Learning Charter Public School,04960305,"","","","","", 100.0, 100.0, 100.0, 100.0, 76.0, 72.5, 92.3, 74.4, 92.7, 496 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-Beeman Memorial,01070010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-East Gloucester Elementary,01070020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 190 +3.009032258064516,3.01,a-picp-i1,2022-23,Gloucester-Gloucester High,01070505,"","","","","","","","","", 56.1, 62.2, 53.4, 62.0, 58.3, 799 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-Plum Cove School,01070042, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 201 +4.975483870967742,4.98,a-picp-i1,2022-23,Gloucester-Ralph B O'Maley Middle,01070305,"","","","","","", 97.1, 95.5, 96.6,"","","","", 96.4, 634 +5.161290322580645,5,a-picp-i1,2022-23,Gloucester-Veterans Memorial,01070045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 216 +5.145806451612903,5,a-picp-i1,2022-23,Gloucester-West Parish,01070050, 100.0, 98.3, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 371 +3.127741935483871,3.13,a-picp-i1,2022-23,Grafton-Grafton High School,01100505,"","","","","","","","","", 46.5, 46.7, 64.4, 84.2, 60.6, 870 +5.073548387096774,5,a-picp-i1,2022-23,Grafton-Grafton Middle,01100305,"","","","","","","", 98.3, 98.2,"","","","", 98.3, 527 +5.145806451612903,5,a-picp-i1,2022-23,Grafton-Millbury Street Elementary School,01100200,"","", 100.0, 100.0, 100.0, 100.0, 98.5,"","","","","","", 99.7, 595 +5.161290322580645,5,a-picp-i1,2022-23,Grafton-North Grafton Elementary,01100025, 100.0, 100.0,"","","","","","","","","","","", 100.0, 204 +5.161290322580645,5,a-picp-i1,2022-23,Grafton-North Street Elementary School,01100030,"","", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 551 +5.161290322580645,5,a-picp-i1,2022-23,Grafton-South Grafton Elementary,01100005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 239 +5.161290322580645,5,a-picp-i1,2022-23,Granby-East Meadow,01110004, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 374 +3.489032258064516,3.49,a-picp-i1,2022-23,Granby-Granby Jr Sr High School,01110505,"","","","","","","", 79.6, 54.9, 82.0, 79.6, 52.1, 57.9, 67.6, 309 +3.0038709677419355,3.0,a-picp-i1,2022-23,Greater Commonwealth Virtual District-Greater Commonwealth Virtual School,39010900, 100.0, 100.0, 100.0, 98.1, 100.0, 100.0, 81.0, 86.4, 76.5, 19.4, 12.3, 24.3, 56.3, 58.2," 1,276" +0.407741935483871,1,a-picp-i1,2022-23,Greater Fall River Regional Vocational Technical-Diman Regional Vocational Technical High,08210605,"","","","","","","","","", 6.4, 6.6, 8.7, 10.3, 7.9," 1,405" +0.0,1,a-picp-i1,2022-23,Greater Lawrence Regional Vocational Technical-Gr Lawrence Regional Vocational Technical,08230605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0," 1,693" +0.38193548387096776,1,a-picp-i1,2022-23,Greater Lowell Regional Vocational Technical-Gr Lowell Regional Vocational Technical,08280605,"","","","","","","","","", 7.7, 7.3, 7.2, 7.5, 7.4," 2,281" +0.3767741935483871,1,a-picp-i1,2022-23,Greater New Bedford Regional Vocational Technical-Gr New Bedford Vocational Technical,08250605,"","","","","","","","","", 7.0, 7.3, 8.3, 6.4, 7.3," 2,092" +5.135483870967742,5,a-picp-i1,2022-23,Greenfield-Discovery School at Four Corners,01140025, 97.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.5, 215 +5.109677419354838,5,a-picp-i1,2022-23,Greenfield-Federal Street School,01140010, 100.0, 100.0, 97.0, 100.0, 97.8,"","","","","","","","", 99.0, 204 +2.895483870967742,2.9,a-picp-i1,2022-23,Greenfield-Greenfield High,01140505,"","","","","","","","", 93.4, 51.1, 46.9, 43.6, 33.3, 56.1, 442 +5.078709677419355,5,a-picp-i1,2022-23,Greenfield-Greenfield Middle,01140305,"","","","","", 99.1, 97.1, 99.0,"","","","","", 98.4, 309 +5.161290322580645,5,a-picp-i1,2022-23,Greenfield-Newton School,01140035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 211 +4.95483870967742,4.95,a-picp-i1,2022-23,Groton-Dunstable-Florence Roche School,06730010, 100.0, 100.0, 100.0, 100.0, 82.5,"","","","","","","","", 96.0, 526 +3.2774193548387096,3.28,a-picp-i1,2022-23,Groton-Dunstable-Groton Dunstable Regional,06730505,"","","","","","","","","", 67.7, 71.8, 58.4, 56.7, 63.5, 676 +5.006451612903226,5,a-picp-i1,2022-23,Groton-Dunstable-Groton Dunstable Regional Middle,06730305,"","","","","", 97.7, 93.6, 97.4, 99.0,"","","","", 97.0, 723 +5.161290322580645,5,a-picp-i1,2022-23,Groton-Dunstable-Swallow/Union School,06730005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 327 +5.161290322580645,5,a-picp-i1,2022-23,Hadley-Hadley Elementary,01170015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 238 +3.370322580645161,3.37,a-picp-i1,2022-23,Hadley-Hopkins Academy,01170505,"","","","","","","", 73.5, 93.1, 48.4, 56.8, 68.9, 56.4, 65.3, 222 +5.161290322580645,5,a-picp-i1,2022-23,Halifax-Halifax Elementary,01180005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 560 +5.161290322580645,5,a-picp-i1,2022-23,Hamilton-Wenham-Bessie Buker Elementary,06750007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 264 +5.161290322580645,5,a-picp-i1,2022-23,Hamilton-Wenham-Cutler School,06750010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 255 +3.7780645161290325,3.78,a-picp-i1,2022-23,Hamilton-Wenham-Hamilton-Wenham Regional High,06750505,"","","","","","","","","", 80.8, 77.6, 60.5, 75.4, 73.2, 448 +5.12,5,a-picp-i1,2022-23,Hamilton-Wenham-Miles River Middle,06750310,"","","","","","", 99.1, 99.2, 99.3,"","","","", 99.2, 375 +5.161290322580645,5,a-picp-i1,2022-23,Hamilton-Wenham-Winthrop School,06750015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 290 +3.112258064516129,3.11,a-picp-i1,2022-23,Hampden Charter School of Science East (District)-Hampden Charter School of Science East,04990305,"","","","","","", 98.9, 100.0, 100.0, 13.8, 8.9, 14.1, 66.7, 60.3, 551 +3.9277419354838705,3.93,a-picp-i1,2022-23,Hampden Charter School of Science West (District)-Hampden Charter School of Science West,35160305,"","","","","","", 98.4, 100.0, 100.0, 41.8, 49.1, 58.3, 70.4, 76.1, 373 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Green Meadows Elementary,06800005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 298 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Mile Tree Elementary,06800025, 100.0, 100.0,"","","","","","","","","","","", 100.0, 295 +2.48258064516129,2.48,a-picp-i1,2022-23,Hampden-Wilbraham-Minnechaug Regional High,06800505,"","","","","","","","","", 51.3, 49.0, 47.9, 43.7, 48.1, 973 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Soule Road,06800030,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 311 +5.161290322580645,5,a-picp-i1,2022-23,Hampden-Wilbraham-Stony Hill School,06800050,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 303 +4.640000000000001,4.64,a-picp-i1,2022-23,Hampden-Wilbraham-Wilbraham Middle,06800310,"","","","","","", 90.2, 87.0, 92.4,"","","","", 89.9, 605 +3.59741935483871,3.6,a-picp-i1,2022-23,Hampshire-Hampshire Regional High,06830505,"","","","","","","", 97.7, 98.4, 35.0, 61.8, 47.5, 63.3, 69.7, 661 +5.161290322580645,5,a-picp-i1,2022-23,Hancock-Hancock Elementary,01210005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 49 +5.161290322580645,5,a-picp-i1,2022-23,Hanover-Cedar Elementary,01220004, 100.0, 100.0,"","","","","","","","","","","", 100.0, 367 +5.150967741935483,5,a-picp-i1,2022-23,Hanover-Center Elementary,01220005,"","", 99.5, 100.0, 100.0,"","","","","","","","", 99.8, 645 +2.415483870967742,2.42,a-picp-i1,2022-23,Hanover-Hanover High,01220505,"","","","","","","","","", 58.7, 57.5, 31.9, 41.7, 46.8, 667 +5.161290322580645,5,a-picp-i1,2022-23,Hanover-Hanover Middle,01220305,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 809 +4.0,4.0,a-picp-i1,2022-23,Harvard-Bromfield,01250505,"","","","","","", 100.0, 100.0, 98.7, 81.0, 48.8, 51.8, 63.2, 77.5, 560 +5.161290322580645,5,a-picp-i1,2022-23,Harvard-Hildreth Elementary School,01250005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 438 +5.161290322580645,5,a-picp-i1,2022-23,Hatfield-Hatfield Elementary,01270005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 186 +4.23741935483871,4.24,a-picp-i1,2022-23,Hatfield-Smith Academy,01270505,"","","","","","","", 100.0, 100.0, 85.7, 61.1, 68.4, 66.7, 82.1, 134 +0.0,1,a-picp-i1,2022-23,Haverhill-Bartlett School and Assessment Center,01280073,"", 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"", 0.0, 0.0, 28 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Bradford Elementary,01280008, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 513 +5.130322580645162,5,a-picp-i1,2022-23,Haverhill-Caleb Dustin Hunking School,01280030, 100.0, 100.0, 100.0, 100.0, 100.0, 99.4, 100.0, 98.8, 98.3,"","","","", 99.4," 1,067" +5.099354838709678,5,a-picp-i1,2022-23,Haverhill-Consentino Middle School,01280100,"","","","","", 97.4, 98.7, 99.0, 99.1,"","","","", 98.8, 730 +5.037419354838709,5,a-picp-i1,2022-23,Haverhill-Dr Paul Nettle,01280050,"","","","","", 100.0, 97.0, 95.7, 97.6,"","","","", 97.6, 575 +2.6838709677419357,2.68,a-picp-i1,2022-23,Haverhill-Gateway Academy,01280515,"","","","","","","", 100.0, 100.0, 100.0, 30.8, 0.0, 25.0, 52.0, 75 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Golden Hill,01280026, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 460 +1.672258064516129,1.67,a-picp-i1,2022-23,Haverhill-Greenleaf Academy,01280033,"","","","","","", 0.0, 33.3, 22.2, 0.0, 83.3, 60.0, 0.0, 32.4, 34 +2.905806451612903,2.91,a-picp-i1,2022-23,Haverhill-Haverhill High,01280505,"","","","","","","","","", 64.5, 52.4, 49.7, 56.1, 56.3," 1,942" +5.099354838709678,5,a-picp-i1,2022-23,Haverhill-John G Whittier,01280085,"","","","","", 98.9, 100.0, 97.7, 98.4,"","","","", 98.8, 488 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Moody,01280045, 100.0,"","","","","","","","","","","","", 100.0, 8 +5.109677419354838,5,a-picp-i1,2022-23,Haverhill-Pentucket Lake Elementary,01280054, 100.0, 97.0, 100.0, 97.6, 100.0, 100.0,"","","","","","","", 99.0, 525 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Silver Hill Elementary School,01280067, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 480 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Tilton,01280075, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 318 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Tilton Upper Middle School,01280105,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 179 +5.161290322580645,5,a-picp-i1,2022-23,Haverhill-Walnut Square,01280080, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 139 +5.161290322580645,5,a-picp-i1,2022-23,Hawlemont-Hawlemont Regional,06850005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 75 +5.016774193548387,5,a-picp-i1,2022-23,Helen Y. Davis Leadership Academy Charter Public (District)-Helen Y. Davis Leadership Academy Charter Public School,04190305,"","","","","","", 96.8, 96.9, 97.7,"","","","", 97.2, 107 +5.161290322580645,5,a-picp-i1,2022-23,Hill View Montessori Charter Public (District)-Hill View Montessori Charter Public School,04550050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 306 +5.161290322580645,5,a-picp-i1,2022-23,Hilltown Cooperative Charter Public (District)-Hilltown Cooperative Charter Public School,04500105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 218 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-East Elementary School,01310005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 425 +1.7238709677419355,1.72,a-picp-i1,2022-23,Hingham-Hingham High,01310505,"","","","","","","","","", 36.6, 19.1, 28.0, 47.6, 33.4," 1,155" +3.9277419354838705,3.93,a-picp-i1,2022-23,Hingham-Hingham Middle School,01310410,"","","","","","", 99.7, 65.1, 62.0,"","","","", 76.1, 840 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-Plymouth River,01310019, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 382 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-South Elementary,01310020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 503 +5.161290322580645,5,a-picp-i1,2022-23,Hingham-Wm L Foster Elementary,01310010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 405 +3.783225806451613,3.78,a-picp-i1,2022-23,Holbrook-Holbrook Middle High School,01330505,"","","","","","", 36.3, 94.0, 84.0, 81.9, 71.2, 78.3, 75.9, 73.3, 648 +5.161290322580645,5,a-picp-i1,2022-23,Holbrook-John F Kennedy,01330018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 634 +4.15483870967742,4.15,a-picp-i1,2022-23,Holland-Holland Elementary,01350005, 0.0, 93.8, 92.6, 100.0, 93.3, 93.5, 100.0,"","","","","","", 80.5, 200 +3.8761290322580644,3.88,a-picp-i1,2022-23,Holliston-Holliston High,01360505,"","","","","","","","","", 82.6, 67.0, 73.4, 77.0, 75.1, 804 +5.161290322580645,5,a-picp-i1,2022-23,Holliston-Miller School,01360007,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 605 +5.161290322580645,5,a-picp-i1,2022-23,Holliston-Placentino Elementary,01360010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 623 +5.135483870967742,5,a-picp-i1,2022-23,Holliston-Robert H. Adams Middle School,01360305,"","","","","","", 100.0, 99.5, 99.1,"","","","", 99.5, 654 +0.0,1,a-picp-i1,2022-23,Holyoke Community Charter (District)-Holyoke Community Charter School,04530005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","", 0.0, 697 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-E N White Elementary,01370045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 318 +5.099354838709678,5,a-picp-i1,2022-23,Holyoke-H.B. Lawrence School,01370070, 100.0, 94.7, 100.0, 100.0,"","","","","","","","","", 98.8, 164 +2.08,2.08,a-picp-i1,2022-23,Holyoke-Holyoke High,01370505,"","","","","","","","","", 21.9, 51.1, 52.0, 38.0, 40.3," 1,505" +4.9961290322580645,5.0,a-picp-i1,2022-23,Holyoke-Holyoke Middle School,01370325,"","","","","","", 98.8, 98.1, 93.7,"","","","", 96.8, 281 +2.590967741935484,2.59,a-picp-i1,2022-23,Holyoke-Holyoke STEM Academy,01370320,"","","","","","", 46.1, 56.7, 48.1,"","","","", 50.2, 303 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-Joseph Metcalf School,01370003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 350 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-Kelly Elementary,01370040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 305 +3.096774193548387,3.1,a-picp-i1,2022-23,Holyoke-Lt Clayre Sullivan Elementary,01370055, 100.0, 100.0, 100.0, 100.0, 100.0, 97.2, 0.0, 0.0, 0.0,"","","","", 60.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Holyoke-Lt Elmer J McMahon Elementary,01370015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 312 +4.469677419354839,4.47,a-picp-i1,2022-23,Holyoke-Maurice A Donahue Elementary,01370060, 66.7, 78.2, 79.2, 94.0, 100.0, 100.0,"","","","","","","", 86.6, 307 +0.025806451612903226,1,a-picp-i1,2022-23,Holyoke-Morgan Full Service Community School,01370025, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4,"","","","","","","", 0.5, 209 +5.001290322580646,5,a-picp-i1,2022-23,Holyoke-William R. Peck School,01370030,"","","","", 100.0, 100.0, 95.2, 100.0, 89.5,"","","","", 96.9, 195 +5.114838709677419,5,a-picp-i1,2022-23,Hoosac Valley Regional-Hoosac Valley Elementary School,06030020, 100.0, 99.0, 100.0, 97.8,"","","","","","","","","", 99.1, 325 +2.358709677419355,2.36,a-picp-i1,2022-23,Hoosac Valley Regional-Hoosac Valley High School,06030505,"","","","","","","","", 30.8, 66.7, 39.6, 50.0, 44.2, 45.7, 328 +5.042580645161291,5,a-picp-i1,2022-23,Hoosac Valley Regional-Hoosac Valley Middle School,06030315,"","","","", 98.5, 97.5, 95.5, 98.8,"","","","","", 97.7, 298 +4.304516129032258,4.3,a-picp-i1,2022-23,Hopedale-Hopedale Jr Sr High,01380505,"","","","","","","", 95.8, 96.7, 33.9, 90.0, 95.0, 76.9, 83.4, 440 +5.161290322580645,5,a-picp-i1,2022-23,Hopedale-Memorial,01380010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 554 +5.161290322580645,5,a-picp-i1,2022-23,Hopkinton-Elmwood,01390010,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 637 +5.161290322580645,5,a-picp-i1,2022-23,Hopkinton-Hopkins Elementary School,01390015,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 640 +2.900645161290323,2.9,a-picp-i1,2022-23,Hopkinton-Hopkinton High,01390505,"","","","","","","","","", 77.8, 52.4, 45.6, 47.8, 56.2," 1,241" +5.150967741935483,5,a-picp-i1,2022-23,Hopkinton-Hopkinton Middle School,01390305,"","","","","","", 100.0, 100.0, 99.4,"","","","", 99.8, 982 +5.161290322580645,5,a-picp-i1,2022-23,Hopkinton-Marathon Elementary School,01390005, 100.0, 100.0,"","","","","","","","","","","", 100.0, 604 +5.161290322580645,5,a-picp-i1,2022-23,Hudson-C A Farley,01410030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 415 +5.114838709677419,5,a-picp-i1,2022-23,Hudson-David J. Quinn Middle School,01410410,"","","","","", 98.6, 99.4, 99.5,"","","","","", 99.1, 577 +5.161290322580645,5,a-picp-i1,2022-23,Hudson-Forest Avenue Elementary,01410015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 290 +4.0206451612903225,4.02,a-picp-i1,2022-23,Hudson-Hudson High,01410505,"","","","","","","","", 94.0, 85.5, 63.6, 67.3, 80.5, 77.9, 829 +5.161290322580645,5,a-picp-i1,2022-23,Hudson-Mulready Elementary,01410007, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 226 +3.4219354838709677,3.42,a-picp-i1,2022-23,Hull-Hull High,01420505,"","","","","","","","","", 76.9, 67.2, 50.9, 67.2, 66.3, 243 +5.145806451612903,5,a-picp-i1,2022-23,Hull-Lillian M Jacobs,01420015, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 311 +4.944516129032258,4.94,a-picp-i1,2022-23,Hull-Memorial Middle,01420305,"","","","","","", 90.9, 98.1, 98.3,"","","","", 95.8, 167 +4.345806451612903,4.35,a-picp-i1,2022-23,Innovation Academy Charter (District)-Innovation Academy Charter School,04350305,"","","","","", 100.0, 99.0, 99.0, 100.0, 81.1, 72.4, 66.3, 48.2, 84.2, 792 +3.979354838709677,3.98,a-picp-i1,2022-23,Ipswich-Ipswich High,01440505,"","","","","","","","","", 69.8, 82.9, 74.2, 80.8, 77.1, 493 +5.089032258064516,5,a-picp-i1,2022-23,Ipswich-Ipswich Middle School,01440305,"","","","","","", 98.5, 98.3, 99.2,"","","","", 98.6, 365 +5.145806451612903,5,a-picp-i1,2022-23,Ipswich-Paul F Doyon Memorial,01440007, 100.0, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 347 +5.161290322580645,5,a-picp-i1,2022-23,Ipswich-Winthrop,01440015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 338 +3.313548387096774,3.31,a-picp-i1,2022-23,KIPP Academy Boston Charter School (District)-KIPP Academy Boston Charter School,04630205, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 64.2, 576 +4.428387096774194,4.43,a-picp-i1,2022-23,KIPP Academy Lynn Charter (District)-KIPP Academy Lynn Charter School,04290010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 19.7, 95.4, 96.0, 44.0, 55.6, 85.8," 1,604" +3.0193548387096776,3.02,a-picp-i1,2022-23,King Philip-King Philip Middle School,06900510,"","","","","","","", 97.7, 16.3,"","","","", 58.5, 677 +2.4,2.4,a-picp-i1,2022-23,King Philip-King Philip Regional High,06900505,"","","","","","","","","", 34.2, 54.2, 48.6, 50.2, 46.5," 1,131" +5.161290322580645,5,a-picp-i1,2022-23,Kingston-Kingston Elementary,01450005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 509 +5.161290322580645,5,a-picp-i1,2022-23,Kingston-Kingston Intermediate,01450020,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 600 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence Family Development Charter (District)-Lawrence Family Development Charter School,04540205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 749 +5.150967741935483,5,a-picp-i1,2022-23,Lawrence-Alexander B Bruce,01490015,"","","", 100.0, 100.0, 100.0, 100.0, 98.9, 100.0,"","","","", 99.8, 401 +5.037419354838709,5,a-picp-i1,2022-23,Lawrence-Arlington Elementary,01490009, 93.9, 94.3, 100.0, 99.1, 100.0,"","","","","","","","", 97.6, 581 +5.037419354838709,5,a-picp-i1,2022-23,Lawrence-Arlington Middle School,01490017,"","","","","", 93.1, 97.3, 98.8, 100.0,"","","","", 97.6, 588 +5.037419354838709,5,a-picp-i1,2022-23,Lawrence-Edward F. Parthum,01490053, 100.0, 100.0, 99.3, 95.6, 93.6,"","","","","","","","", 97.6, 675 +5.058064516129032,5,a-picp-i1,2022-23,Lawrence-Emily G Wetherbee,01490080, 100.0, 97.8, 87.2, 100.0, 94.5, 100.0, 100.0, 100.0, 100.0,"","","","", 98.0, 494 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Francis M Leahy,01490040,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 390 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Frost Middle School,01490525,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 497 +5.032258064516129,5,a-picp-i1,2022-23,Lawrence-Gerard A. Guilmette,01490022,"", 100.0, 96.9, 97.1, 95.5,"","","","","","","","", 97.5, 475 +4.96,4.96,a-picp-i1,2022-23,Lawrence-Guilmette Middle School,01490025,"","","","","", 95.2, 96.4, 95.4, 97.7,"","","","", 96.1, 431 +0.0,1,a-picp-i1,2022-23,Lawrence-High School Learning Center,01490536,"","","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 198 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-James F Hennessey,01490020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 218 +4.753548387096774,4.75,a-picp-i1,2022-23,Lawrence-John Breen School,01490003, 92.1,"","","","","","","","","","","","", 92.1, 101 +5.016774193548387,5,a-picp-i1,2022-23,Lawrence-John K Tarbox,01490075,"", 100.0, 100.0, 95.8, 97.9, 92.3,"","","","","","","", 97.2, 286 +0.03096774193548387,1,a-picp-i1,2022-23,Lawrence-Lawlor Early Childhood Center,01490002, 0.6,"","","","","","","","","","","","", 0.6, 172 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Lawrence Family Public Academy,01490011, 100.0,"","","","","","","","","","","","", 100.0, 107 +3.4374193548387093,3.44,a-picp-i1,2022-23,Lawrence-Lawrence High School,01490515,"","","","","","","","","", 76.6, 70.9, 62.1, 50.4, 66.6," 3,102" +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Leonard Middle School,01490090,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 328 +4.970322580645161,4.97,a-picp-i1,2022-23,Lawrence-Oliver Elementary School,01490048,"", 100.0, 100.0, 98.9, 89.8, 93.8,"","","","","","","", 96.3, 464 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Oliver Middle School,01490049,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 353 +5.052903225806452,5,a-picp-i1,2022-23,Lawrence-Parthum Middle School,01490027,"","","","","", 97.2, 97.9, 98.6, 97.9,"","","","", 97.9, 526 +0.0,1,a-picp-i1,2022-23,Lawrence-RISE Academy,01490615,"","","","","","", 0.0,"", 0.0,"", 0.0, 0.0, 0.0, 0.0, 53 +5.073548387096774,5,a-picp-i1,2022-23,Lawrence-Robert Frost,01490018, 100.0, 100.0, 100.0, 99.1, 93.7,"","","","","","","","", 98.3, 540 +5.161290322580645,5,a-picp-i1,2022-23,Lawrence-Rollins Early Childhood Center,01490001, 100.0,"","","","","","","","","","","","", 100.0, 75 +1.9870967741935484,1.99,a-picp-i1,2022-23,Lawrence-School for Exceptional Studies,01490537, 100.0, 0.0, 80.0, 60.0, 42.9, 25.0, 71.4, 25.0, 41.7, 0.0, 0.0, 28.6, 25.0, 38.5, 78 +4.929032258064516,4.93,a-picp-i1,2022-23,Lawrence-South Lawrence East Elementary School,01490004,"", 100.0, 100.0, 92.4, 90.8, 93.8,"","","","","","","", 95.5, 665 +0.0,1,a-picp-i1,2022-23,Lawrence-Spark Academy,01490085,"","","","","","", 0.0, 0.0, 0.0,"","","","", 0.0, 446 +5.161290322580645,5,a-picp-i1,2022-23,Learning First Charter Public School (District)-Learning First Charter Public School,04860105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 657 +5.145806451612903,5,a-picp-i1,2022-23,Lee-Lee Elementary,01500025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.8,"","","","","","", 99.7, 325 +3.618064516129032,3.62,a-picp-i1,2022-23,Lee-Lee Middle/High School,01500505,"","","","","","","", 100.0, 91.5, 61.0, 57.1, 49.0, 57.6, 70.1, 321 +5.161290322580645,5,a-picp-i1,2022-23,Leicester-Leicester Elementary,01510005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 487 +3.2516129032258063,3.25,a-picp-i1,2022-23,Leicester-Leicester High,01510505,"","","","","","","","","", 78.4, 64.1, 51.8, 56.6, 63.0, 419 +4.211612903225806,4.21,a-picp-i1,2022-23,Leicester-Leicester Middle,01510015,"","","","","", 82.2, 63.2, 82.7, 95.9,"","","","", 81.6, 412 +3.9690322580645163,3.97,a-picp-i1,2022-23,Lenox-Lenox Memorial High,01520505,"","","","","","", 96.9, 92.1, 97.0, 65.1, 47.5, 71.9, 65.1, 76.9, 442 +5.161290322580645,5,a-picp-i1,2022-23,Lenox-Morris,01520015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 320 +1.3212903225806452,1.32,a-picp-i1,2022-23,Leominster-Center For Technical Education Innovation,01530605,"","","","","","","","","", 44.2, 13.4, 11.9, 14.9, 25.6, 733 +4.629677419354839,4.63,a-picp-i1,2022-23,Leominster-Fall Brook,01530007, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 89.7, 611 +4.134193548387096,4.13,a-picp-i1,2022-23,Leominster-Frances Drake School,01530010, 0.0, 92.1, 95.5, 96.7, 88.8, 94.9,"","","","","","","", 80.1, 458 +4.449032258064516,4.45,a-picp-i1,2022-23,Leominster-Johnny Appleseed,01530025, 0.0, 100.0, 100.0, 100.0, 99.1, 99.1,"","","","","","","", 86.2, 652 +0.0,1,a-picp-i1,2022-23,Leominster-Leominster Center for Excellence,01530515,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 47 +3.4941935483870967,3.49,a-picp-i1,2022-23,Leominster-Leominster High School,01530505,"","","","","","","","","", 77.3, 78.1, 61.4, 58.6, 67.7," 1,079" +4.820645161290323,4.82,a-picp-i1,2022-23,Leominster-Northwest,01530030, 0.0, 99.3, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 93.4, 726 +5.161290322580645,5,a-picp-i1,2022-23,Leominster-Priest Street,01530040, 100.0,"","","","","","","","","","","","", 100.0, 123 +4.990967741935484,4.99,a-picp-i1,2022-23,Leominster-Samoset School,01530045,"","","","","","", 94.2, 97.1, 98.4,"","","","", 96.7, 512 +5.027096774193549,5,a-picp-i1,2022-23,Leominster-Sky View Middle School,01530320,"","","","","","", 98.0, 97.1, 97.1,"","","","", 97.4, 921 +4.908387096774193,4.91,a-picp-i1,2022-23,Leverett-Leverett Elementary,01540005, 53.8, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 95.1, 123 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Bowman,01550008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 444 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Bridge,01550006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 381 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Fiske,01550015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 343 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Harrington,01550030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +5.001290322580646,5,a-picp-i1,2022-23,Lexington-Jonas Clarke Middle,01550305,"","","","","","", 99.3, 97.1, 94.5,"","","","", 96.9, 832 +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Joseph Estabrook,01550010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 549 +4.330322580645162,4.33,a-picp-i1,2022-23,Lexington-Lexington High,01550505,"","","","","","","","","", 86.7, 82.9, 79.2, 86.7, 83.9," 2,323" +5.161290322580645,5,a-picp-i1,2022-23,Lexington-Maria Hastings,01550035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 621 +5.037419354838709,5,a-picp-i1,2022-23,Lexington-Wm Diamond Middle,01550310,"","","","","","", 97.4, 98.7, 96.7,"","","","", 97.6, 963 +0.5625806451612904,1,a-picp-i1,2022-23,Libertas Academy Charter School (District)-Libertas Academy Charter School,35140305,"","","","","","", 0.0, 0.0, 0.0, 17.1, 43.8,"","", 10.9, 439 +5.140645161290323,5,a-picp-i1,2022-23,Lincoln-Hanscom Middle,01570305,"","","","", 100.0, 100.0, 100.0, 97.3, 100.0,"","","","", 99.6, 225 +5.161290322580645,5,a-picp-i1,2022-23,Lincoln-Hanscom Primary,01570006, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 172 +5.161290322580645,5,a-picp-i1,2022-23,Lincoln-Lincoln School,01570025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 508 +3.2516129032258063,3.25,a-picp-i1,2022-23,Lincoln-Sudbury-Lincoln-Sudbury Regional High,06950505,"","","","","","","","","", 82.8, 67.1, 53.0, 47.2, 63.0," 1,482" +3.664516129032258,3.66,a-picp-i1,2022-23,Littleton-Littleton High School,01580505,"","","","","","","","","", 72.1, 89.3, 59.2, 62.3, 71.0, 476 +4.892903225806451,4.89,a-picp-i1,2022-23,Littleton-Littleton Middle School,01580305,"","","","","","", 95.1, 94.7, 94.5,"","","","", 94.8, 382 +5.161290322580645,5,a-picp-i1,2022-23,Littleton-Russell St Elementary,01580015,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 390 +0.0,1,a-picp-i1,2022-23,Littleton-Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0,"","","","","","","","","","", 0.0, 383 +5.161290322580645,5,a-picp-i1,2022-23,Longmeadow-Blueberry Hill,01590005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 394 +5.016774193548387,5,a-picp-i1,2022-23,Longmeadow-Center,01590010, 98.5, 98.6, 95.3, 96.0, 98.7, 95.9,"","","","","","","", 97.2, 425 +5.145806451612903,5,a-picp-i1,2022-23,Longmeadow-Glenbrook Middle,01590017,"","","","","","", 100.0, 99.1, 100.0,"","","","", 99.7, 334 +1.9819354838709677,1.98,a-picp-i1,2022-23,Longmeadow-Longmeadow High,01590505,"","","","","","","","","", 41.4, 46.3, 34.1, 31.0, 38.4, 902 +5.140645161290323,5,a-picp-i1,2022-23,Longmeadow-Williams Middle,01590305,"","","","","","", 100.0, 100.0, 98.9,"","","","", 99.6, 284 +5.161290322580645,5,a-picp-i1,2022-23,Longmeadow-Wolf Swamp Road,01590025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Lowell Community Charter Public (District)-Lowell Community Charter Public School,04560050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 768 +4.547096774193548,4.55,a-picp-i1,2022-23,Lowell Middlesex Academy Charter (District)-Lowell Middlesex Academy Charter School,04580505,"","","","","","","","","", 100.0, 89.3, 82.6, 82.1, 88.1, 118 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Abraham Lincoln,01600020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 428 +5.094193548387097,5,a-picp-i1,2022-23,Lowell-B.F. Butler Middle School,01600310,"","","","","", 100.0, 98.5, 99.2, 97.3,"","","","", 98.7, 526 +5.140645161290323,5,a-picp-i1,2022-23,Lowell-Bartlett Community Partnership,01600090, 97.8, 100.0, 100.0, 100.0, 100.0, 98.0, 100.0, 100.0, 100.0,"","","","", 99.6, 466 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Charles W Morey,01600030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 432 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Charlotte M Murkland Elementary,01600080, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 417 +5.156129032258065,5,a-picp-i1,2022-23,Lowell-Dr An Wang School,01600345,"","","","","", 100.0, 99.4, 100.0, 100.0,"","","","", 99.9, 684 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Dr Gertrude Bailey,01600002, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 430 +3.9948387096774196,3.99,a-picp-i1,2022-23,Lowell-Dr. Janice Adie Day School,01600605, 100.0, 100.0, 100.0, 60.0, 100.0, 100.0, 100.0, 66.7, 100.0,"", 0.0, 0.0, 0.0, 77.4, 53 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Greenhalge,01600015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 434 +5.114838709677419,5,a-picp-i1,2022-23,Lowell-Henry J Robinson Middle,01600330,"","","","","", 98.6, 98.1, 99.4, 100.0,"","","","", 99.1, 640 +4.96516129032258,4.97,a-picp-i1,2022-23,Lowell-James S Daley Middle School,01600315,"","","","","", 97.8, 95.1, 94.0, 97.8,"","","","", 96.2, 688 +5.052903225806452,5,a-picp-i1,2022-23,Lowell-James Sullivan Middle School,01600340,"","","","","", 97.2, 98.0, 96.8, 99.4,"","","","", 97.9, 625 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-John J Shaughnessy,01600050, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 443 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Joseph McAvinnue,01600010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 425 +5.12,5,a-picp-i1,2022-23,Lowell-Kathryn P. Stoklosa Middle School,01600360,"","","","","", 100.0, 98.8, 100.0, 98.3,"","","","", 99.2, 659 +4.794838709677419,4.79,a-picp-i1,2022-23,Lowell-Laura Lee Therapeutic Day School,01600085,"","","", 100.0,"","", 100.0, 100.0, 66.7,"","","","", 92.9, 14 +3.3858064516129027,3.39,a-picp-i1,2022-23,Lowell-Leblanc Therapeutic Day School,01600320,"","","","","","","","","", 72.7, 77.8, 33.3, 66.7, 65.6, 32 +1.8683870967741938,1.87,a-picp-i1,2022-23,Lowell-Lowell High,01600505,"","","","","","","","","", 23.1, 41.7, 40.1, 45.4, 36.2," 3,171" +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Moody Elementary,01600027, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 222 +5.089032258064516,5,a-picp-i1,2022-23,Lowell-Pawtucketville Memorial,01600036, 100.0, 98.9, 94.1, 100.0, 100.0,"","","","","","","","", 98.6, 437 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Peter W Reilly,01600040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 447 +5.130322580645162,5,a-picp-i1,2022-23,Lowell-Pyne Arts,01600018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.3, 96.6, 100.0,"","","","", 99.4, 471 +5.135483870967742,5,a-picp-i1,2022-23,Lowell-Rogers STEM Academy,01600005, 100.0, 97.6, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 99.2,"","","","", 99.5, 876 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-S Christa McAuliffe Elementary,01600075, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 448 +0.8825806451612904,1,a-picp-i1,2022-23,Lowell-The Career Academy,01600515,"","","","","","","","","", 25.8, 20.0, 23.1, 3.6, 17.1, 82 +5.161290322580645,5,a-picp-i1,2022-23,Lowell-Washington,01600055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 218 +5.140645161290323,5,a-picp-i1,2022-23,Ludlow-East Street Elementary School,01610010, 99.2, 100.0,"","","","","","","","","","","", 99.6, 260 +5.161290322580645,5,a-picp-i1,2022-23,Ludlow-Harris Brook Elementary School,01610665,"","", 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 654 +2.704516129032258,2.7,a-picp-i1,2022-23,Ludlow-Ludlow Senior High,01610505,"","","","","","","","","", 69.3, 51.7, 40.7, 44.1, 52.4, 785 +3.3393548387096774,3.34,a-picp-i1,2022-23,Ludlow-Paul R Baird Middle,01610305,"","","","","","", 99.4, 17.0, 77.8,"","","","", 64.7, 519 +3.0812903225806454,3.08,a-picp-i1,2022-23,Lunenburg-Lunenburg High,01620505,"","","","","","","","","", 18.0, 64.2, 82.1, 83.7, 59.7, 447 +5.161290322580645,5,a-picp-i1,2022-23,Lunenburg-Lunenburg Middle School,01620305,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 387 +5.161290322580645,5,a-picp-i1,2022-23,Lunenburg-Lunenburg Primary School,01620010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 341 +5.161290322580645,5,a-picp-i1,2022-23,Lunenburg-Turkey Hill Elementary School,01620025,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 363 +4.774193548387097,4.77,a-picp-i1,2022-23,Lynn-A Drewicz Elementary,01630016, 100.0, 100.0, 59.8, 97.0, 98.7, 100.0,"","","","","","","", 92.5, 506 +4.846451612903226,4.85,a-picp-i1,2022-23,Lynn-Aborn,01630011, 100.0, 100.0, 66.7, 97.2, 100.0, 100.0,"","","","","","","", 93.9, 214 +4.908387096774193,4.91,a-picp-i1,2022-23,Lynn-Breed Middle School,01630405,"","","","","","", 99.6, 96.4, 87.0,"","","","", 95.1," 1,293" +4.918709677419355,4.92,a-picp-i1,2022-23,Lynn-Brickett Elementary,01630020, 100.0, 100.0, 75.0, 100.0, 100.0, 100.0,"","","","","","","", 95.3, 322 +5.0116129032258065,5,a-picp-i1,2022-23,Lynn-Capt William G Shoemaker,01630090, 97.7, 100.0, 82.2, 100.0, 100.0, 100.0,"","","","","","","", 97.1, 311 +2.4516129032258065,2.45,a-picp-i1,2022-23,Lynn-Classical High,01630505,"","","","","","","","","", 60.9, 53.7, 35.9, 31.2, 47.5," 1,933" +4.887741935483871,4.89,a-picp-i1,2022-23,Lynn-Cobbet Elementary,01630035, 100.0, 99.0, 70.4, 100.0, 100.0, 100.0,"","","","","","","", 94.7, 617 +4.918709677419355,4.92,a-picp-i1,2022-23,Lynn-E J Harrington,01630045, 98.8, 99.0, 76.3, 100.0, 98.9, 100.0,"","","","","","","", 95.3, 549 +4.892903225806451,4.89,a-picp-i1,2022-23,Lynn-Edward A Sisson,01630095, 100.0, 100.0, 63.3, 100.0, 100.0, 100.0,"","","","","","","", 94.8, 425 +2.8748387096774195,2.87,a-picp-i1,2022-23,Lynn-Fecteau-Leary Junior/Senior High School,01630525,"","","","","","", 100.0, 40.0, 28.6, 88.2, 83.3, 56.3, 20.0, 55.7, 79 +5.161290322580645,5,a-picp-i1,2022-23,Lynn-Fredrick Douglass Collegiate Academy,01630575,"","","","","","","","","", 100.0,"","","", 100.0, 72 +4.970322580645161,4.97,a-picp-i1,2022-23,Lynn-Hood,01630055, 100.0, 100.0, 79.3, 98.6, 100.0, 100.0,"","","","","","","", 96.3, 488 +4.836129032258064,4.84,a-picp-i1,2022-23,Lynn-Ingalls,01630060, 100.0, 100.0, 65.9, 100.0, 99.1, 99.0,"","","","","","","", 93.7, 701 +4.87225806451613,4.87,a-picp-i1,2022-23,Lynn-Julia F Callahan,01630030, 100.0, 100.0, 71.7, 98.0, 100.0, 100.0,"","","","","","","", 94.4, 322 +4.88258064516129,4.88,a-picp-i1,2022-23,Lynn-Lincoln-Thomson,01630070, 100.0, 100.0, 72.2, 100.0, 97.8, 100.0,"","","","","","","", 94.6, 202 +2.1625806451612903,2.16,a-picp-i1,2022-23,Lynn-Lynn English High,01630510,"","","","","","","","","", 36.7, 49.4, 40.6, 38.2, 41.9," 2,259" +2.136774193548387,2.14,a-picp-i1,2022-23,Lynn-Lynn Vocational Technical Institute,01630605, 88.9, 100.0,"", 100.0, 100.0, 100.0, 0.0,"", 99.6, 11.1, 8.5, 34.2, 54.5, 41.4," 1,383" +4.634838709677419,4.63,a-picp-i1,2022-23,Lynn-Lynn Woods,01630075, 100.0, 100.0, 50.0, 100.0, 100.0, 100.0,"","","","","","","", 89.8, 157 +5.089032258064516,5,a-picp-i1,2022-23,Lynn-Pickering Middle,01630420,"","","","","","", 99.1, 97.5, 99.4,"","","","", 98.6, 568 +4.975483870967742,4.98,a-picp-i1,2022-23,Lynn-Robert L Ford,01630050,"", 100.0, 83.1, 98.8, 98.7, 100.0,"","","","","","","", 96.4, 415 +4.96516129032258,4.97,a-picp-i1,2022-23,Lynn-Sewell-Anderson,01630085, 100.0, 100.0, 75.0, 96.4, 97.1, 100.0,"","","","","","","", 96.2, 291 +4.454193548387097,4.45,a-picp-i1,2022-23,Lynn-Thurgood Marshall Mid,01630305,"","","","","","", 87.3, 92.4, 77.9,"","","","", 86.3," 1,297" +4.851612903225806,4.85,a-picp-i1,2022-23,Lynn-Tracy,01630100,"", 96.4, 73.3, 100.0, 100.0, 100.0,"","","","","","","", 94.0, 384 +5.0116129032258065,5,a-picp-i1,2022-23,Lynn-Washington Elementary School,01630005, 100.0, 100.0, 83.6, 100.0, 98.6, 98.6,"","","","","","","", 97.1, 441 +5.161290322580645,5,a-picp-i1,2022-23,Lynn-William R Fallon,01630080,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 24 +5.0116129032258065,5,a-picp-i1,2022-23,Lynn-Wm P Connery,01630040, 100.0, 100.0, 80.2, 100.0, 100.0, 100.0,"","","","","","","", 97.1, 548 +5.140645161290323,5,a-picp-i1,2022-23,Lynnfield-Huckleberry Hill,01640010, 98.8, 100.0, 99.0, 100.0, 100.0,"","","","","","","","", 99.6, 450 +2.023225806451613,2.02,a-picp-i1,2022-23,Lynnfield-Lynnfield High,01640505,"","","","","","","","","", 72.2, 34.9, 25.7, 26.7, 39.2, 566 +5.12,5,a-picp-i1,2022-23,Lynnfield-Lynnfield Middle School,01640405,"","","","","", 98.9, 98.8, 98.9, 100.0,"","","","", 99.2, 719 +5.161290322580645,5,a-picp-i1,2022-23,Lynnfield-Summer Street,01640020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 422 +0.4748387096774193,1,a-picp-i1,2022-23,Ma Academy for Math and Science-Ma Academy for Math and Science School,04680505,"","","","","","","","","","","", 0.0, 18.0, 9.2, 98 +5.063225806451612,5,a-picp-i1,2022-23,Malden-Beebe,01650003, 100.0, 100.0, 100.0, 100.0, 99.0, 95.7, 94.9, 95.7, 97.0,"","","","", 98.1, 881 +5.109677419354838,5,a-picp-i1,2022-23,Malden-Ferryway,01650013, 99.0, 99.0, 97.0, 100.0, 99.0, 99.0, 100.0, 98.0, 100.0,"","","","", 99.0, 889 +5.145806451612903,5,a-picp-i1,2022-23,Malden-Forestdale,01650027, 98.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.8,"","","","", 99.7, 591 +5.094193548387097,5,a-picp-i1,2022-23,Malden-Linden,01650047, 100.0, 100.0, 100.0, 100.0, 100.0, 98.9, 98.0, 96.0, 95.9,"","","","", 98.7, 838 +2.6477419354838707,2.65,a-picp-i1,2022-23,Malden-Malden High,01650505,"","","","","","","","","", 56.5, 48.5, 48.1, 51.5, 51.3," 1,906" +5.047741935483871,5,a-picp-i1,2022-23,Malden-Salemwood,01650057, 100.0, 99.3, 100.0, 100.0, 100.0, 96.7, 93.8, 94.6, 97.7,"","","","", 97.8," 1,052" +5.161290322580645,5,a-picp-i1,2022-23,Manchester Essex Regional-Essex Elementary,06980020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 228 +2.9212903225806452,2.92,a-picp-i1,2022-23,Manchester Essex Regional-Manchester Essex Regional High School,06980510,"","","","","","","","","", 92.5, 69.0, 32.6, 35.0, 56.6, 415 +5.052903225806452,5,a-picp-i1,2022-23,Manchester Essex Regional-Manchester Essex Regional Middle School,06980030,"","","","","","", 97.9, 96.3, 99.1,"","","","", 97.9, 283 +5.161290322580645,5,a-picp-i1,2022-23,Manchester Essex Regional-Manchester Memorial Elementary,06980010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 258 +5.161290322580645,5,a-picp-i1,2022-23,Mansfield-Everett W Robinson,01670007, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 760 +4.9393548387096775,4.94,a-picp-i1,2022-23,Mansfield-Harold L Qualters Middle,01670035,"","","","","","", 98.5, 96.7, 91.7,"","","","", 95.7, 807 +5.161290322580645,5,a-picp-i1,2022-23,Mansfield-Jordan/Jackson Elementary,01670014,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 704 +3.174193548387097,3.17,a-picp-i1,2022-23,Mansfield-Mansfield High,01670505,"","","","","","","","","", 73.4, 60.5, 60.1, 53.3, 61.5," 1,094" +1.0270967741935484,1.03,a-picp-i1,2022-23,Map Academy Charter School (District)-Map Academy Charter School,35170505,"","","","","","","","","", 29.8, 22.9, 21.4, 9.3, 19.9, 276 +5.161290322580645,5,a-picp-i1,2022-23,Marblehead Community Charter Public (District)-Marblehead Community Charter Public School,04640305,"","","","", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 218 +5.161290322580645,5,a-picp-i1,2022-23,Marblehead-Glover,01680020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 293 +5.161290322580645,5,a-picp-i1,2022-23,Marblehead-Lucretia and Joseph Brown School,01680030, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 415 +3.0451612903225804,3.05,a-picp-i1,2022-23,Marblehead-Marblehead High,01680505,"","","","","","","","","", 81.7, 54.5, 49.3, 53.3, 59.0, 883 +4.727741935483871,4.73,a-picp-i1,2022-23,Marblehead-Marblehead Veterans Middle School,01680300,"","","","","","","", 91.7, 91.5,"","","","", 91.6, 419 +5.150967741935483,5,a-picp-i1,2022-23,Marblehead-Village School,01680016,"","","","", 99.4, 100.0, 100.0,"","","","","","", 99.8, 565 +5.145806451612903,5,a-picp-i1,2022-23,Marion-Sippican,01690005, 100.0, 100.0, 100.0, 98.1, 100.0, 100.0, 100.0,"","","","","","", 99.7, 384 +5.150967741935483,5,a-picp-i1,2022-23,Marlborough-1 LT Charles W. Whitcomb School,01700045,"","","","","","", 100.0, 99.7, 99.7,"","","","", 99.8," 1,104" +5.140645161290323,5,a-picp-i1,2022-23,Marlborough-Charles Jaworek School,01700030, 100.0, 100.0, 100.0, 100.0, 100.0, 97.0,"","","","","","","", 99.6, 698 +5.161290322580645,5,a-picp-i1,2022-23,Marlborough-Francis J Kane,01700008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 491 +5.150967741935483,5,a-picp-i1,2022-23,Marlborough-Goodnow Brothers Elementary School,01700020, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6,"","","","","","","", 99.8, 817 +3.643870967741935,3.64,a-picp-i1,2022-23,Marlborough-Marlborough High,01700505,"","","","","","","","","", 83.1, 78.9, 60.5, 59.3, 70.6," 1,152" +5.1251612903225805,5,a-picp-i1,2022-23,Marlborough-Richer,01700025, 100.0, 100.0, 100.0, 100.0, 100.0, 95.3,"","","","","","","", 99.3, 561 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Daniel Webster,01710015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 276 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Eames Way School,01710005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 211 +5.016774193548387,5,a-picp-i1,2022-23,Marshfield-Furnace Brook Middle,01710310,"","","","","","", 99.7, 97.8, 94.0,"","","","", 97.2, 872 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Gov Edward Winslow,01710020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 354 +2.353548387096774,2.35,a-picp-i1,2022-23,Marshfield-Marshfield High,01710505,"","","","","","","","","", 44.0, 53.7, 42.4, 41.1, 45.6," 1,173" +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-Martinson Elementary,01710025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 462 +5.161290322580645,5,a-picp-i1,2022-23,Marshfield-South River,01710010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 261 +3.8658064516129036,3.87,a-picp-i1,2022-23,Martha's Vineyard Charter Public School (District)-Martha's Vineyard Charter Public School,04660550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 71.4, 77.8, 74.9, 179 +2.689032258064516,2.69,a-picp-i1,2022-23,Martha's Vineyard-Martha's Vineyard Regional High,07000505,"","","","","","","","","", 67.0, 44.8, 56.3, 39.2, 52.1, 762 +5.161290322580645,5,a-picp-i1,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District)-Martin Luther King, Jr. Charter School of Excellence",04920005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 353 +2.2193548387096773,2.22,a-picp-i1,2022-23,Masconomet-Masconomet Regional High School,07050505,"","","","","","","","","", 57.0, 39.2, 37.9, 36.8, 43.0, 991 +5.140645161290323,5,a-picp-i1,2022-23,Masconomet-Masconomet Regional Middle School,07050405,"","","","","","","", 100.0, 99.3,"","","","", 99.6, 561 +5.161290322580645,5,a-picp-i1,2022-23,Mashpee-Kenneth Coombs School,01720005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 326 +3.169032258064516,3.17,a-picp-i1,2022-23,Mashpee-Mashpee Middle-High School,01720505,"","","","","","","", 95.7, 85.0, 46.3, 48.8, 54.3, 33.0, 61.4, 679 +5.099354838709678,5,a-picp-i1,2022-23,Mashpee-Quashnet School,01720035,"","","", 99.0, 97.8, 99.1, 99.0,"","","","","","", 98.8, 412 +4.80516129032258,4.81,a-picp-i1,2022-23,Match Charter Public School (District)-Match Charter Public School,04690505, 100.0, 100.0, 99.0, 100.0, 100.0, 100.0, 98.9, 94.1, 96.9, 100.0, 100.0, 98.5, 1.5, 93.1," 1,132" +5.114838709677419,5,a-picp-i1,2022-23,Mattapoisett-Center,01730005, 96.2, 100.0, 100.0, 100.0,"","","","","","","","","", 99.1, 211 +5.161290322580645,5,a-picp-i1,2022-23,Mattapoisett-Old Hammondtown,01730010,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 188 +5.161290322580645,5,a-picp-i1,2022-23,Maynard-Fowler School,01740305,"","","","", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 462 +5.161290322580645,5,a-picp-i1,2022-23,Maynard-Green Meadow,01740010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 366 +3.5664516129032253,3.57,a-picp-i1,2022-23,Maynard-Maynard High,01740505,"","","","","","","","","", 84.0, 60.2, 67.1, 65.3, 69.1, 314 +5.161290322580645,5,a-picp-i1,2022-23,Medfield-Dale Street,01750005,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 390 +3.344516129032258,3.34,a-picp-i1,2022-23,Medfield-Medfield Senior High,01750505,"","","","","","","","","", 71.9, 71.9, 49.5, 66.5, 64.8, 742 +5.161290322580645,5,a-picp-i1,2022-23,Medfield-Memorial School,01750003, 100.0, 100.0,"","","","","","","","","","","", 100.0, 377 +5.161290322580645,5,a-picp-i1,2022-23,Medfield-Ralph Wheelock School,01750007,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 384 +4.96,4.96,a-picp-i1,2022-23,Medfield-Thomas Blake Middle,01750305,"","","","","","", 97.5, 96.0, 94.6,"","","","", 96.1, 584 +5.161290322580645,5,a-picp-i1,2022-23,Medford-Brooks School,01760130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 504 +1.7187096774193547,1.72,a-picp-i1,2022-23,Medford-Curtis-Tufts,01760510,"","","","","","","","","", 50.0, 0.0, 75.0, 25.0, 33.3, 15 +5.130322580645162,5,a-picp-i1,2022-23,Medford-John J McGlynn Elementary School,01760068, 100.0, 99.0, 98.9, 98.7, 100.0, 100.0,"","","","","","","", 99.4, 481 +5.073548387096774,5,a-picp-i1,2022-23,Medford-John J. McGlynn Middle School,01760320,"","","","","","", 98.1, 99.4, 97.5,"","","","", 98.3, 483 +5.073548387096774,5,a-picp-i1,2022-23,Medford-Madeleine Dugger Andrews,01760315,"","","","","","", 100.0, 98.1, 96.5,"","","","", 98.3, 464 +1.615483870967742,1.62,a-picp-i1,2022-23,Medford-Medford High,01760505,"","","","","","","","","", 21.2, 32.0, 34.9, 38.7, 31.3," 1,242" +5.161290322580645,5,a-picp-i1,2022-23,Medford-Milton Fuller Roberts,01760150, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 527 +5.135483870967742,5,a-picp-i1,2022-23,Medford-Missituk Elementary School,01760140, 100.0, 100.0, 98.4, 100.0, 98.5, 100.0,"","","","","","","", 99.5, 388 +5.161290322580645,5,a-picp-i1,2022-23,Medway-Burke/Memorial Elementary School,01770015,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 495 +5.161290322580645,5,a-picp-i1,2022-23,Medway-John D Mc Govern Elementary,01770013, 100.0, 100.0,"","","","","","","","","","","", 100.0, 321 +3.432258064516129,3.43,a-picp-i1,2022-23,Medway-Medway High,01770505,"","","","","","","","","", 68.9, 64.3, 61.0, 71.6, 66.5, 624 +5.052903225806452,5,a-picp-i1,2022-23,Medway-Medway Middle,01770305,"","","","","", 99.4, 98.0, 97.2, 96.9,"","","","", 97.9, 658 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Early Childhood Center,01780003, 100.0,"","","","","","","","","","","","", 100.0, 79 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Herbert Clark Hoover,01780017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 297 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Horace Mann,01780025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 240 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Lincoln,01780020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 396 +2.1161290322580646,2.12,a-picp-i1,2022-23,Melrose-Melrose High,01780505,"","","","","","","","","", 49.4, 42.1, 39.2, 32.7, 41.0, 915 +4.815483870967742,4.82,a-picp-i1,2022-23,Melrose-Melrose Middle,01780305,"","","","","","", 94.3, 94.3, 91.0,"","","","", 93.3, 877 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Roosevelt,01780035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 409 +5.161290322580645,5,a-picp-i1,2022-23,Melrose-Winthrop,01780050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 381 +5.161290322580645,5,a-picp-i1,2022-23,Mendon-Upton-Henry P Clough,07100179, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 328 +5.150967741935483,5,a-picp-i1,2022-23,Mendon-Upton-Memorial School,07100001, 100.0, 98.9, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 496 +4.8103225806451615,4.81,a-picp-i1,2022-23,Mendon-Upton-Miscoe Hill School,07100015,"","","","","", 98.2, 95.0, 83.1, 96.4,"","","","", 93.2, 643 +2.8438709677419354,2.84,a-picp-i1,2022-23,Mendon-Upton-Nipmuc Regional High,07100510,"","","","","","","","","", 48.1, 65.6, 51.6, 53.5, 55.1, 597 +5.130322580645162,5,a-picp-i1,2022-23,Methuen-Comprehensive Grammar School,01810050, 100.0, 100.0, 98.0, 98.1, 99.1, 100.0, 100.0, 99.2, 100.0,"","","","", 99.4," 1,001" +5.161290322580645,5,a-picp-i1,2022-23,Methuen-Donald P Timony Grammar,01810060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0," 1,196" +5.161290322580645,5,a-picp-i1,2022-23,Methuen-Marsh Grammar School,01810030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0," 1,047" +3.4167741935483873,3.42,a-picp-i1,2022-23,Methuen-Methuen High,01810505,"","","","","","","","","", 63.8, 60.9, 65.8, 74.9, 66.2," 2,005" +5.161290322580645,5,a-picp-i1,2022-23,Methuen-Tenney Grammar School,01810055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0," 1,248" +5.150967741935483,5,a-picp-i1,2022-23,Middleborough-Henry B. Burkland Elementary School,01820008,"", 100.0, 99.2, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 576 +5.073548387096774,5,a-picp-i1,2022-23,Middleborough-John T. Nichols Middle,01820305,"","","","","","", 97.9, 98.3, 98.8,"","","","", 98.3, 722 +5.150967741935483,5,a-picp-i1,2022-23,Middleborough-Mary K. Goode Elementary School,01820010,"", 100.0, 100.0, 99.2, 100.0, 100.0,"","","","","","","", 99.8, 616 +5.161290322580645,5,a-picp-i1,2022-23,Middleborough-Memorial Early Childhood Center,01820011, 100.0,"","","","","","","","","","","","", 100.0, 236 +3.5664516129032253,3.57,a-picp-i1,2022-23,Middleborough-Middleborough High,01820505,"","","","","","","","","", 71.3, 69.7, 68.2, 67.0, 69.1, 849 +5.161290322580645,5,a-picp-i1,2022-23,Middleton-Fuller Meadow,01840003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 295 +5.161290322580645,5,a-picp-i1,2022-23,Middleton-Howe-Manning,01840005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 378 +5.150967741935483,5,a-picp-i1,2022-23,Milford-Brookside,01850065, 99.5, 100.0, 100.0,"","","","","","","","","","", 99.8, 555 +5.130322580645162,5,a-picp-i1,2022-23,Milford-Memorial,01850010, 97.8, 100.0, 100.0,"","","","","","","","","","", 99.4, 481 +2.689032258064516,2.69,a-picp-i1,2022-23,Milford-Milford High,01850505,"","","","","","","","","", 63.5, 50.9, 40.9, 49.0, 52.1," 1,336" +4.861935483870968,4.86,a-picp-i1,2022-23,Milford-Stacy Middle,01850305,"","","","","","", 95.3, 92.3, 94.9,"","","","", 94.2," 1,064" +5.156129032258065,5,a-picp-i1,2022-23,Milford-Woodland,01850090,"","","", 100.0, 100.0, 99.7,"","","","","","","", 99.9, 965 +5.161290322580645,5,a-picp-i1,2022-23,Millbury-Elmwood Street,01860017, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 365 +3.0451612903225804,3.05,a-picp-i1,2022-23,Millbury-Millbury Junior/Senior High,01860505,"","","","","","","", 72.5, 56.6, 39.3, 60.9, 55.3, 68.0, 59.0, 744 +5.161290322580645,5,a-picp-i1,2022-23,Millbury-Raymond E. Shaw Elementary,01860025,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 469 +4.309677419354839,4.31,a-picp-i1,2022-23,Millis-Clyde F Brown,01870005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 547 +2.193548387096774,2.19,a-picp-i1,2022-23,Millis-Millis High School,01870505,"","","","","","","","","", 62.7, 26.6, 40.4, 43.8, 42.5, 313 +5.0683870967741935,5,a-picp-i1,2022-23,Millis-Millis Middle,01870020,"","","","","","", 98.9, 97.6, 98.0,"","","","", 98.2, 273 +4.278709677419355,4.28,a-picp-i1,2022-23,Milton-Charles S Pierce Middle,01890410,"","","","","","", 94.0, 70.2, 81.4,"","","","", 82.9, 951 +4.975483870967742,4.98,a-picp-i1,2022-23,Milton-Collicot,01890005, 97.0, 93.5, 97.1, 95.3, 97.0, 98.1,"","","","","","","", 96.4, 585 +5.161290322580645,5,a-picp-i1,2022-23,Milton-Cunningham School,01890007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 534 +5.161290322580645,5,a-picp-i1,2022-23,Milton-Glover,01890010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 629 +3.3341935483870966,3.33,a-picp-i1,2022-23,Milton-Milton High,01890505,"","","","","","","","","", 66.7, 69.8, 61.5, 60.7, 64.6," 1,058" +5.150967741935483,5,a-picp-i1,2022-23,Milton-Tucker,01890020, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6,"","","","","","","", 99.8, 424 +2.88,2.88,a-picp-i1,2022-23,Minuteman Regional Vocational Technical-Minuteman Regional High,08300605,"","","","","","","","","", 72.7, 44.1, 55.0, 50.3, 55.8, 685 +5.161290322580645,5,a-picp-i1,2022-23,Mohawk Trail-Buckland-Shelburne Regional,07170005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 245 +5.161290322580645,5,a-picp-i1,2022-23,Mohawk Trail-Colrain Central,07170010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 86 +2.270967741935484,2.27,a-picp-i1,2022-23,Mohawk Trail-Mohawk Trail Regional School,07170505,"","","","","","","", 30.6, 37.7, 64.3, 30.6, 59.5, 61.5, 44.0, 282 +5.161290322580645,5,a-picp-i1,2022-23,Mohawk Trail-Sanderson Academy,07170020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 105 +5.161290322580645,5,a-picp-i1,2022-23,Monomoy Regional School District-Chatham Elementary School,07120001, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 145 +5.161290322580645,5,a-picp-i1,2022-23,Monomoy Regional School District-Harwich Elementary School,07120002, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 432 +3.5045161290322584,3.5,a-picp-i1,2022-23,Monomoy Regional School District-Monomoy Regional High School,07120515,"","","","","","","","", 64.5, 66.0, 64.9, 73.3, 73.2, 67.9, 703 +5.150967741935483,5,a-picp-i1,2022-23,Monomoy Regional School District-Monomoy Regional Middle School,07120315,"","","","","", 100.0, 99.3, 100.0,"","","","","", 99.8, 453 +5.135483870967742,5,a-picp-i1,2022-23,Monson-Granite Valley School,01910030,"", 100.0, 100.0, 100.0, 97.1, 100.0, 100.0,"","","","","","", 99.5, 408 +3.6903225806451614,3.69,a-picp-i1,2022-23,Monson-Monson High School,01910505,"","","","","","","", 100.0, 97.2, 53.5, 56.3, 66.7, 10.5, 71.5, 291 +5.161290322580645,5,a-picp-i1,2022-23,Monson-Quarry Hill Community School,01910010, 100.0,"","","","","","","","","","","","", 100.0, 60 +1.0116129032258065,1.01,a-picp-i1,2022-23,Montachusett Regional Vocational Technical-Montachusett Regional Vocational Technical,08320605,"","","","","","","","","", 31.1, 14.9, 13.3, 18.6, 19.6," 1,393" +5.161290322580645,5,a-picp-i1,2022-23,Mount Greylock-Lanesborough Elementary,07150005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 213 +2.8593548387096774,2.86,a-picp-i1,2022-23,Mount Greylock-Mt Greylock Regional High,07150505,"","","","","","","", 37.9, 31.8, 69.9, 57.3, 74.5, 69.5, 55.4, 542 +5.161290322580645,5,a-picp-i1,2022-23,Mount Greylock-Williamstown Elementary,07150010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 404 +4.072258064516129,4.07,a-picp-i1,2022-23,Mystic Valley Regional Charter (District)-Mystic Valley Regional Charter School,04700105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 5.2, 11.1, 78.9," 1,605" +5.027096774193549,5,a-picp-i1,2022-23,Nahant-Johnson,01960010, 100.0, 100.0, 96.7, 100.0, 100.0, 100.0, 88.9,"","","","","","", 97.4, 117 +4.908387096774193,4.91,a-picp-i1,2022-23,Nantucket-Cyrus Peirce,01970010,"","","","","","", 98.1, 94.7, 93.5,"","","","", 95.1, 391 +5.161290322580645,5,a-picp-i1,2022-23,Nantucket-Nantucket Elementary,01970005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 360 +4.098064516129033,4.1,a-picp-i1,2022-23,Nantucket-Nantucket High,01970505,"","","","","","","","","", 78.8, 84.3, 70.8, 81.9, 79.4, 592 +5.161290322580645,5,a-picp-i1,2022-23,Nantucket-Nantucket Intermediate School,01970020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 337 +4.877419354838709,4.88,a-picp-i1,2022-23,Narragansett-Narragansett Middle,07200305,"","","","","", 90.8, 96.6, 96.0,"","","","","", 94.5, 365 +2.2606451612903222,2.26,a-picp-i1,2022-23,Narragansett-Narragansett Regional High,07200505,"","","","","","","","", 9.3, 51.9, 58.2, 64.7, 55.4, 43.8, 466 +5.161290322580645,5,a-picp-i1,2022-23,Narragansett-Templeton Elementary School,07200020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 554 +2.3845161290322583,2.38,a-picp-i1,2022-23,Nashoba Valley Regional Vocational Technical-Nashoba Valley Technical High School,08520605,"","","","","","","","","", 57.0, 46.2, 36.5, 42.3, 46.2, 746 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Center School,07250020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 456 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Florence Sawyer School,07250025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 712 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Hale,07250310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 270 +5.12,5,a-picp-i1,2022-23,Nashoba-Luther Burbank Middle School,07250305,"","","","","","", 98.8, 100.0, 98.8,"","","","", 99.2, 240 +5.161290322580645,5,a-picp-i1,2022-23,Nashoba-Mary Rowlandson Elementary,07250010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 444 +3.2877419354838713,3.29,a-picp-i1,2022-23,Nashoba-Nashoba Regional,07250505,"","","","","","","","","", 58.9, 73.2, 59.6, 63.1, 63.7, 823 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Bennett-Hemenway,01980005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 483 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Brown,01980010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 501 +5.156129032258065,5,a-picp-i1,2022-23,Natick-J F Kennedy Middle School,01980305,"","","","","", 100.0, 100.0, 99.5, 100.0,"","","","", 99.9, 899 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Johnson,01980031,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 136 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Lilja Elementary,01980035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 415 +5.161290322580645,5,a-picp-i1,2022-23,Natick-Memorial,01980043, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 435 +3.5509677419354837,3.55,a-picp-i1,2022-23,Natick-Natick High,01980505,"","","","","","","","","", 91.4, 58.3, 51.5, 71.4, 68.8," 1,596" +5.145806451612903,5,a-picp-i1,2022-23,Natick-Wilson Middle,01980310,"","","","","", 99.0, 100.0, 100.0, 100.0,"","","","", 99.7, 777 +2.8748387096774195,2.87,a-picp-i1,2022-23,Nauset-Nauset Regional High,06600505,"","","","","","","","","", 64.5, 57.6, 54.8, 47.3, 55.7, 768 +3.9690322580645163,3.97,a-picp-i1,2022-23,Nauset-Nauset Regional Middle,06600305,"","","","","","", 98.9, 52.5, 79.3,"","","","", 76.9, 536 +5.161290322580645,5,a-picp-i1,2022-23,Needham-Broadmeadow,01990005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 507 +5.094193548387097,5,a-picp-i1,2022-23,Needham-High Rock School,01990410,"","","","","","", 98.7,"","","","","","", 98.7, 449 +5.161290322580645,5,a-picp-i1,2022-23,Needham-John Eliot,01990020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 421 +4.041290322580645,4.04,a-picp-i1,2022-23,Needham-Needham High,01990505,"","","","","","","","","", 98.8, 96.0, 71.5, 43.2, 78.3," 1,639" +5.161290322580645,5,a-picp-i1,2022-23,Needham-Newman Elementary,01990050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 621 +5.016774193548387,5,a-picp-i1,2022-23,Needham-Pollard Middle,01990405,"","","","","","","", 95.5, 99.2,"","","","", 97.2, 821 +5.161290322580645,5,a-picp-i1,2022-23,Needham-Sunita L. Williams Elementary,01990035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 532 +5.161290322580645,5,a-picp-i1,2022-23,Needham-William Mitchell,01990040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 449 +4.655483870967742,4.66,a-picp-i1,2022-23,Neighborhood House Charter (District)-Neighborhood House Charter School,04440205, 100.0, 100.0, 100.0, 100.0, 100.0, 92.2, 100.0, 92.3, 100.0, 97.5, 96.3, 63.8, 36.7, 90.2, 763 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Abraham Lincoln,02010095, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 647 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Alfred J Gomes,02010063, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 482 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Betsey B Winslow,02010140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 230 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Carlos Pacheco,02010105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 303 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Casimir Pulaski,02010123, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 463 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Charles S Ashley,02010010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 272 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Elizabeth Carter Brooks,02010015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 277 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Ellen R Hathaway,02010075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 197 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Elwyn G Campbell,02010020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 210 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Hayden/McFadden,02010078, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 605 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Irwin M. Jacobs Elementary School,02010070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-James B Congdon,02010040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Jireh Swift,02010130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 186 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-John Avery Parker,02010115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 220 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-John B Devalles,02010050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 288 +4.6090322580645156,4.61,a-picp-i1,2022-23,New Bedford-Keith Middle School,02010405,"","","","","","", 89.9, 93.8, 85.3,"","","","", 89.3, 853 +3.6541935483870964,3.65,a-picp-i1,2022-23,New Bedford-New Bedford High,02010505,"","","","","","","","","", 90.8, 64.3, 69.6, 54.3, 70.8," 2,848" +5.094193548387097,5,a-picp-i1,2022-23,New Bedford-Normandin Middle School,02010410,"","","","","","", 98.2, 98.9, 98.9,"","","","", 98.7," 1,055" +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Renaissance Community Innovation School,02010124, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 101 +4.72258064516129,4.72,a-picp-i1,2022-23,New Bedford-Roosevelt Middle School,02010415,"","","","","","", 92.3, 89.3, 93.0,"","","","", 91.5, 800 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Sgt Wm H Carney Academy,02010045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 545 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-Thomas R Rodman,02010125, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 196 +4.407741935483871,4.41,a-picp-i1,2022-23,New Bedford-Trinity Day Academy,02010510,"","","","","", 100.0, 100.0, 100.0, 100.0, 77.8, 73.3, 75.0, 80.0, 85.4, 82 +2.183225806451613,2.18,a-picp-i1,2022-23,New Bedford-Whaling City Junior/Senior High School,02010515,"","","","","","", 0.0, 0.0, 0.0, 52.0, 50.0, 44.4, 38.2, 42.3, 137 +5.161290322580645,5,a-picp-i1,2022-23,New Bedford-William H Taylor,02010135, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 218 +1.1148387096774195,1.11,a-picp-i1,2022-23,New Heights Charter School of Brockton (District)-New Heights Charter School of Brockton,35130305,"","","","","","", 0.0, 36.2, 1.8, 31.0, 31.5, 28.4, 22.6, 21.6, 746 +5.161290322580645,5,a-picp-i1,2022-23,New Salem-Wendell-Swift River,07280015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 121 +5.145806451612903,5,a-picp-i1,2022-23,Newburyport-Edward G. Molin Elementary School,02040030,"","","","", 99.3, 100.0,"","","","","","","", 99.7, 286 +5.161290322580645,5,a-picp-i1,2022-23,Newburyport-Francis T Bresnahan Elementary,02040005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 526 +2.9522580645161294,2.95,a-picp-i1,2022-23,Newburyport-Newburyport High,02040505,"","","","","","","","","", 65.8, 72.1, 41.7, 50.2, 57.2, 818 +5.140645161290323,5,a-picp-i1,2022-23,Newburyport-Rupert A Nock Middle,02040305,"","","","","","", 100.0, 99.4, 99.4,"","","","", 99.6, 486 +5.161290322580645,5,a-picp-i1,2022-23,Newton-A E Angier,02070005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 376 +5.104516129032258,5,a-picp-i1,2022-23,Newton-Bigelow Middle,02070305,"","","","","","", 100.0, 98.6, 98.2,"","","","", 98.9, 449 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Bowen,02070015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 359 +5.161290322580645,5,a-picp-i1,2022-23,Newton-C C Burr,02070020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Cabot,02070025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 451 +5.104516129032258,5,a-picp-i1,2022-23,Newton-Charles E Brown Middle,02070310,"","","","","","", 98.4, 99.2, 99.2,"","","","", 98.9, 761 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Countryside,02070040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 388 +5.150967741935483,5,a-picp-i1,2022-23,Newton-F A Day Middle,02070315,"","","","","","", 100.0, 99.7, 99.7,"","","","", 99.8, 934 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Franklin,02070055, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 367 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Horace Mann,02070075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 366 +5.161290322580645,5,a-picp-i1,2022-23,Newton-John Ward,02070120, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 196 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Lincoln-Eliot,02070070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 341 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Mason-Rice,02070080, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 333 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Memorial Spaulding,02070105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 395 +2.7148387096774194,2.71,a-picp-i1,2022-23,Newton-Newton North High,02070505,"","","","","","","","","", 60.3, 58.9, 45.5, 45.4, 52.6," 2,073" +2.689032258064516,2.69,a-picp-i1,2022-23,Newton-Newton South High,02070510,"","","","","","","","","", 51.2, 58.7, 54.1, 44.8, 52.1," 1,854" +5.0116129032258065,5,a-picp-i1,2022-23,Newton-Oak Hill Middle,02070320,"","","","","","", 99.6, 91.6, 99.6,"","","","", 97.1, 664 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Peirce,02070100, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 238 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Underwood,02070115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 223 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Williams,02070125, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 231 +5.161290322580645,5,a-picp-i1,2022-23,Newton-Zervas,02070130, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 410 +0.0,1,a-picp-i1,2022-23,Norfolk County Agricultural-Norfolk County Agricultural,09150705,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 585 +5.161290322580645,5,a-picp-i1,2022-23,Norfolk-Freeman-Kennedy School,02080005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 519 +5.161290322580645,5,a-picp-i1,2022-23,Norfolk-H Olive Day,02080015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 429 +5.135483870967742,5,a-picp-i1,2022-23,North Adams-Brayton,02090035, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.5, 201 +5.109677419354838,5,a-picp-i1,2022-23,North Adams-Colegrove Park Elementary,02090008, 100.0, 100.0, 100.0, 97.2, 100.0, 96.0, 100.0,"","","","","","", 99.0, 209 +3.411612903225806,3.41,a-picp-i1,2022-23,North Adams-Drury High,02090505,"","","","","","","", 95.2, 95.9, 48.8, 41.1, 54.5, 53.8, 66.1, 487 +5.140645161290323,5,a-picp-i1,2022-23,North Adams-Greylock,02090015, 100.0, 100.0, 100.0, 100.0, 100.0, 96.8, 100.0,"","","","","","", 99.6, 239 +5.161290322580645,5,a-picp-i1,2022-23,North Andover-Anne Bradstreet Early Childhood Center,02110005, 100.0,"","","","","","","","","","","","", 100.0, 304 +5.150967741935483,5,a-picp-i1,2022-23,North Andover-Annie L Sargent School,02110018,"", 98.9, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 466 +5.1251612903225805,5,a-picp-i1,2022-23,North Andover-Atkinson,02110001,"", 100.0, 100.0, 100.0, 96.6, 100.0,"","","","","","","", 99.3, 276 +5.145806451612903,5,a-picp-i1,2022-23,North Andover-Franklin,02110010,"", 98.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 383 +5.094193548387097,5,a-picp-i1,2022-23,North Andover-Kittredge,02110015,"", 97.5, 100.0, 97.9, 97.8, 100.0,"","","","","","","", 98.7, 228 +3.726451612903226,3.73,a-picp-i1,2022-23,North Andover-North Andover High,02110505,"","","","","","","","","", 81.9, 77.9, 66.2, 61.8, 72.2," 1,336" +5.073548387096774,5,a-picp-i1,2022-23,North Andover-North Andover Middle,02110305,"","","","","","", 98.8, 97.4, 98.7,"","","","", 98.3," 1,066" +5.145806451612903,5,a-picp-i1,2022-23,North Andover-Thomson,02110020,"", 100.0, 98.5, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 309 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Amvet Boulevard,02120007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 410 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Community,02120030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 292 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Falls,02120010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 232 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Joseph W Martin Jr Elementary,02120013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 533 +3.349677419354839,3.35,a-picp-i1,2022-23,North Attleborough-North Attleboro High,02120505,"","","","","","","","","", 64.9, 67.4, 62.7, 64.4, 64.9," 1,122" +5.130322580645162,5,a-picp-i1,2022-23,North Attleborough-North Attleborough Middle,02120305,"","","","","","", 100.0, 98.5, 99.7,"","","","", 99.4, 964 +5.161290322580645,5,a-picp-i1,2022-23,North Attleborough-Roosevelt Avenue,02120015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 251 +5.1251612903225805,5,a-picp-i1,2022-23,North Brookfield-North Brookfield Elementary,02150015, 100.0, 100.0, 100.0, 97.4, 100.0, 100.0, 97.8,"","","","","","", 99.3, 269 +2.8851612903225807,2.89,a-picp-i1,2022-23,North Brookfield-North Brookfield High,02150505,"","","","","","","", 89.5, 7.7, 65.5, 76.2, 63.6, 35.3, 55.9, 145 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Ashby Elementary,07350010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 136 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Hawthorne Brook,07350030,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 470 +5.140645161290323,5,a-picp-i1,2022-23,North Middlesex-Nissitissit Middle School,07350310,"","","","","", 100.0, 100.0, 100.0, 98.4,"","","","", 99.6, 490 +3.6025806451612903,3.6,a-picp-i1,2022-23,North Middlesex-North Middlesex Regional,07350505,"","","","","","","","","", 75.1, 62.3, 70.6, 72.6, 69.8, 755 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Spaulding Memorial,07350005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 417 +0.0,1,a-picp-i1,2022-23,North Middlesex-Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 0.0,"","","","","","","","", 0.0, 10 +5.161290322580645,5,a-picp-i1,2022-23,North Middlesex-Varnum Brook,07350035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 627 +5.161290322580645,5,a-picp-i1,2022-23,North Reading-E Ethel Little School,02170003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 300 +5.161290322580645,5,a-picp-i1,2022-23,North Reading-J Turner Hood,02170010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 357 +5.047741935483871,5,a-picp-i1,2022-23,North Reading-L D Batchelder,02170005, 86.5, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 97.8, 464 +2.838709677419355,2.84,a-picp-i1,2022-23,North Reading-North Reading High,02170505,"","","","","","","","","", 26.9, 46.6, 69.8, 79.7, 55.0, 644 +5.027096774193549,5,a-picp-i1,2022-23,North Reading-North Reading Middle,02170305,"","","","","","", 97.6, 98.0, 96.7,"","","","", 97.4, 542 +4.273548387096774,4.27,a-picp-i1,2022-23,Northampton-Bridge Street,02100005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.8, 244 +4.23741935483871,4.24,a-picp-i1,2022-23,Northampton-Jackson Street,02100020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.1, 290 +4.701935483870967,4.7,a-picp-i1,2022-23,Northampton-John F Kennedy Middle School,02100410,"","","","","","", 85.2, 93.3, 94.8,"","","","", 91.1, 596 +4.309677419354839,4.31,a-picp-i1,2022-23,Northampton-Leeds,02100025, 0.0, 97.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 261 +2.905806451612903,2.91,a-picp-i1,2022-23,Northampton-Northampton High,02100505,"","","","","","","","","", 64.7, 61.0, 55.3, 44.9, 56.3, 893 +4.361290322580645,4.36,a-picp-i1,2022-23,Northampton-R. K. Finn Ryan Road,02100029, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.5, 233 +3.0709677419354837,3.07,a-picp-i1,2022-23,Northampton-Smith Vocational Agricultural-Smith Vocational and Agricultural High,04060705,"","","","","","","","","", 98.0, 99.3, 4.4, 26.2, 59.5, 571 +2.1625806451612903,2.16,a-picp-i1,2022-23,Northboro-Southboro-Algonquin Regional High,07300505,"","","","","","","","","", 54.2, 40.1, 24.9, 49.7, 41.9," 1,212" +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Fannie E Proctor,02130015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Lincoln Street,02130003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 291 +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Marguerite E Peaslee,02130014, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 264 +5.161290322580645,5,a-picp-i1,2022-23,Northborough-Marion E Zeh,02130020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 250 +5.094193548387097,5,a-picp-i1,2022-23,Northborough-Robert E. Melican Middle School,02130305,"","","","","","", 99.5, 98.5, 98.3,"","","","", 98.7, 553 +5.161290322580645,5,a-picp-i1,2022-23,Northbridge-Northbridge Elementary School,02140001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 851 +3.643870967741935,3.64,a-picp-i1,2022-23,Northbridge-Northbridge High,02140505,"","","","","","","","","", 77.6, 68.6, 76.7, 59.1, 70.6, 507 +5.130322580645162,5,a-picp-i1,2022-23,Northbridge-Northbridge Middle,02140305,"","","","","","", 99.3, 98.8, 100.0,"","","","", 99.4, 484 +0.26322580645161286,1,a-picp-i1,2022-23,Northeast Metropolitan Regional Vocational Technical-Northeast Metro Regional Vocational,08530605,"","","","","","","","","", 0.0, 7.0, 7.4, 6.7, 5.1," 1,294" +0.0,1,a-picp-i1,2022-23,Northern Berkshire Regional Vocational Technical-Charles McCann Vocational Technical,08510605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 535 +5.145806451612903,5,a-picp-i1,2022-23,Norton-Henri A. Yelle,02180060,"","","","", 99.3, 100.0,"","","","","","","", 99.7, 334 +5.161290322580645,5,a-picp-i1,2022-23,Norton-J C Solmonese,02180015, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 414 +5.161290322580645,5,a-picp-i1,2022-23,Norton-L G Nourse Elementary,02180010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 293 +2.972903225806452,2.97,a-picp-i1,2022-23,Norton-Norton High,02180505,"","","","","","","","","", 52.4, 55.7, 56.9, 66.0, 57.6, 681 +5.104516129032258,5,a-picp-i1,2022-23,Norton-Norton Middle,02180305,"","","","","","", 99.5, 98.4, 99.0,"","","","", 98.9, 560 +5.161290322580645,5,a-picp-i1,2022-23,Norwell-Grace Farrar Cole,02190005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 501 +3.9070967741935485,3.91,a-picp-i1,2022-23,Norwell-Norwell High,02190505,"","","","","","","","","", 86.9, 85.5, 63.2, 67.5, 75.7, 600 +5.078709677419355,5,a-picp-i1,2022-23,Norwell-Norwell Middle School,02190405,"","","","","","", 96.4, 98.8, 100.0,"","","","", 98.4, 498 +5.161290322580645,5,a-picp-i1,2022-23,Norwell-William G Vinal,02190020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 520 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-Balch,02200005,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 303 +4.949677419354839,4.95,a-picp-i1,2022-23,Norwood-Charles J Prescott,02200025, 0.0, 89.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 95.9, 245 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-Cornelius M Callahan,02200010,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 228 +4.846451612903226,4.85,a-picp-i1,2022-23,Norwood-Dr. Philip O. Coakley Middle School,02200305,"","","","","","", 96.8, 94.7, 89.7,"","","","", 93.9, 804 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-F A Cleveland,02200015,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 307 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-George F. Willett,02200075, 100.0,"","","","","","","","","","","","", 100.0, 273 +5.161290322580645,5,a-picp-i1,2022-23,Norwood-John P Oldham,02200020,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 269 +3.1070967741935487,3.11,a-picp-i1,2022-23,Norwood-Norwood High,02200505,"","","","","","","","","", 82.6, 75.1, 47.1, 39.9, 60.2, 962 +4.980645161290322,4.98,a-picp-i1,2022-23,Oak Bluffs-Oak Bluffs Elementary,02210005, 100.0, 100.0, 100.0, 97.4, 100.0, 91.9, 95.0, 93.1, 92.3,"","","","", 96.5, 426 +0.39741935483870966,1,a-picp-i1,2022-23,Old Colony Regional Vocational Technical-Old Colony Regional Vocational Technical,08550605,"","","","","","","","","", 9.4, 5.7, 6.5, 9.3, 7.7, 556 +3.3548387096774195,3.35,a-picp-i1,2022-23,Old Rochester-Old Rochester Regional High,07400505,"","","","","","","","","", 77.3, 64.9, 57.0, 61.2, 65.0, 620 +5.135483870967742,5,a-picp-i1,2022-23,Old Rochester-Old Rochester Regional Jr High,07400405,"","","","","","","", 100.0, 99.0,"","","","", 99.5, 426 +3.4425806451612906,3.44,a-picp-i1,2022-23,Old Sturbridge Academy Charter Public School (District)-Old Sturbridge Academy Charter Public School,35150205, 100.0, 100.0, 100.0, 100.0, 100.0, 97.6, 0.0, 0.0, 0.0,"","","","", 66.7, 360 +5.104516129032258,5,a-picp-i1,2022-23,Orange-Dexter Park,02230010,"","","", 100.0, 98.5, 100.0, 97.3,"","","","","","", 98.9, 282 +5.135483870967742,5,a-picp-i1,2022-23,Orange-Fisher Hill,02230015, 98.3, 100.0, 100.0,"","","","","","","","","","", 99.5, 186 +5.161290322580645,5,a-picp-i1,2022-23,Orleans-Orleans Elementary,02240005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 145 +5.161290322580645,5,a-picp-i1,2022-23,Oxford-Alfred M Chaffee,02260010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 298 +5.161290322580645,5,a-picp-i1,2022-23,Oxford-Clara Barton,02260005,"","","", 100.0, 100.0,"","","","","","","","", 100.0, 223 +3.855483870967742,3.86,a-picp-i1,2022-23,Oxford-Oxford High,02260505,"","","","","","","","","", 80.7, 76.9, 67.0, 72.0, 74.7, 383 +5.089032258064516,5,a-picp-i1,2022-23,Oxford-Oxford Middle,02260405,"","","","","", 99.1, 99.3, 98.5, 97.6,"","","","", 98.6, 515 +5.083870967741936,5,a-picp-i1,2022-23,Palmer-Old Mill Pond,02270008, 97.6, 97.7, 97.3, 100.0, 100.0, 99.1,"","","","","","","", 98.5, 545 +4.211612903225806,4.21,a-picp-i1,2022-23,Palmer-Palmer High,02270505,"","","","","","", 95.2, 98.7, 95.6, 73.0, 68.1, 59.4, 64.1, 81.6, 537 +1.6258064516129032,1.63,a-picp-i1,2022-23,Pathfinder Regional Vocational Technical-Pathfinder Vocational Technical,08600605,"","","","","","","","","", 0.0, 0.0, 70.5, 67.7, 31.5, 629 +2.96258064516129,2.96,a-picp-i1,2022-23,Paulo Freire Social Justice Charter School (District)-Paulo Freire Social Justice Charter School,35010505,"","","","","","","","","", 47.4, 65.5, 38.2, 73.3, 57.4, 284 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-Captain Samuel Brown,02290005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 376 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-Center,02290015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 425 +5.083870967741936,5,a-picp-i1,2022-23,Peabody-J Henry Higgins Middle,02290305,"","","","","","", 98.7, 97.9, 98.7,"","","","", 98.5," 1,361" +5.161290322580645,5,a-picp-i1,2022-23,Peabody-John E Burke,02290007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 250 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-John E. McCarthy,02290016, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 227 +1.0993548387096774,1.1,a-picp-i1,2022-23,Peabody-Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705,"", 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.3, 89 +2.673548387096774,2.67,a-picp-i1,2022-23,Peabody-Peabody Veterans Memorial High,02290510,"","","","","","","","","", 61.0, 41.4, 52.6, 51.9, 51.8," 1,451" +5.161290322580645,5,a-picp-i1,2022-23,Peabody-South Memorial,02290035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 408 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-Thomas Carroll,02290010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 584 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-West Memorial,02290045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 216 +5.161290322580645,5,a-picp-i1,2022-23,Peabody-William A Welch Sr,02290027, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 222 +5.161290322580645,5,a-picp-i1,2022-23,Pelham-Pelham Elementary,02300005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 132 +5.161290322580645,5,a-picp-i1,2022-23,Pembroke-Bryantville Elementary,02310003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 432 +5.161290322580645,5,a-picp-i1,2022-23,Pembroke-Hobomock Elementary,02310010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 405 +5.161290322580645,5,a-picp-i1,2022-23,Pembroke-North Pembroke Elementary,02310015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 447 +5.109677419354838,5,a-picp-i1,2022-23,Pembroke-Pembroke Community Middle School,02310305,"","","","","","","", 100.0, 98.1,"","","","", 99.0, 406 +3.04,3.04,a-picp-i1,2022-23,Pembroke-Pembroke High School,02310505,"","","","","","","","","", 57.7, 59.4, 48.3, 69.1, 58.9, 721 +5.161290322580645,5,a-picp-i1,2022-23,Pentucket-Dr Frederick N Sweetsir,07450020, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 189 +5.145806451612903,5,a-picp-i1,2022-23,Pentucket-Dr John C Page School,07450015, 100.0, 97.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.7, 295 +5.161290322580645,5,a-picp-i1,2022-23,Pentucket-Elmer S Bagnall,07450005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 452 +5.161290322580645,5,a-picp-i1,2022-23,Pentucket-Helen R Donaghue School,07450010,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 249 +3.5458064516129033,3.55,a-picp-i1,2022-23,Pentucket-Pentucket Regional Middle,07450405,"","","","","","","", 95.9, 43.5,"","","","", 68.7, 358 +3.5251612903225804,3.53,a-picp-i1,2022-23,Pentucket-Pentucket Regional Sr High,07450505,"","","","","","","","","", 72.3, 79.6, 67.6, 54.4, 68.3, 590 +5.161290322580645,5,a-picp-i1,2022-23,Petersham-Petersham Center,02340005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 125 +0.0,1,a-picp-i1,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District)-Phoenix Academy Charter Public High School, Chelsea",04930505,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 39 +0.0,1,a-picp-i1,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District)-Phoenix Academy Public Charter High School, Lawrence",35180505,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 108 +0.0,1,a-picp-i1,2022-23,"Phoenix Academy Public Charter High School, Springfield (District)-Phoenix Academy Public Charter High School, Springfield",35080505,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 146 +4.640000000000001,4.64,a-picp-i1,2022-23,Pioneer Charter School of Science (District)-Pioneer Charter School of Science,04940205, 100.0, 98.5, 100.0, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0, 0.0, 100.0, 72.1, 93.3, 89.9, 792 +3.390967741935484,3.39,a-picp-i1,2022-23,Pioneer Charter School of Science II (District)-Pioneer Charter School of Science II,35060505, 100.0, 100.0, 100.0,"","","","", 100.0, 97.3, 0.0, 0.0, 60.0, 66.7, 65.7, 466 +4.846451612903226,4.85,a-picp-i1,2022-23,Pioneer Valley Chinese Immersion Charter (District)-Pioneer Valley Chinese Immersion Charter School,04970205, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 97.5, 31.8, 10.5, 93.9, 544 +5.161290322580645,5,a-picp-i1,2022-23,Pioneer Valley Performing Arts Charter Public (District)-Pioneer Valley Performing Arts Charter Public School,04790505,"","","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 398 +5.161290322580645,5,a-picp-i1,2022-23,Pioneer Valley-Bernardston Elementary,07500006, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 190 +5.104516129032258,5,a-picp-i1,2022-23,Pioneer Valley-Northfield Elementary,07500008, 100.0, 100.0, 96.7, 100.0, 100.0, 96.4, 100.0,"","","","","","", 98.9, 177 +4.025806451612903,4.03,a-picp-i1,2022-23,Pioneer Valley-Pioneer Valley Regional,07500505,"","","","","","","", 100.0, 100.0, 50.0, 52.6, 52.5, 81.3, 78.0, 259 +5.099354838709678,5,a-picp-i1,2022-23,Pittsfield-Allendale,02360010, 98.0, 100.0, 97.4, 97.7, 100.0, 100.0,"","","","","","","", 98.8, 257 +4.645161290322581,4.65,a-picp-i1,2022-23,Pittsfield-Crosby,02360065, 100.0, 96.2, 87.0, 87.2, 88.9, 84.0,"","","","","","","", 90.0, 239 +0.0,1,a-picp-i1,2022-23,Pittsfield-Crosby Educational Academy,02360030,"", 0.0,"", 0.0, 0.0, 0.0,"","","","","","","", 0.0, 17 +4.056774193548387,4.06,a-picp-i1,2022-23,Pittsfield-Eagle Education Academy,02360525,"","","","","","", 66.7, 100.0, 75.0, 66.7, 100.0,"","", 78.6, 14 +4.949677419354839,4.95,a-picp-i1,2022-23,Pittsfield-Egremont,02360035, 98.1, 100.0, 97.8, 94.8, 96.9, 88.9,"","","","","","","", 95.9, 366 +3.5664516129032253,3.57,a-picp-i1,2022-23,Pittsfield-John T Reid Middle,02360305,"","","","","","", 67.1, 74.6, 66.7,"","","","", 69.1, 460 +4.913548387096775,4.91,a-picp-i1,2022-23,Pittsfield-Morningside Community School,02360055, 100.0, 96.2, 96.2, 100.0, 96.2, 82.4,"","","","","","","", 95.2, 315 +3.3083870967741933,3.31,a-picp-i1,2022-23,Pittsfield-Pittsfield High,02360505,"","","","","","","","","", 65.6, 48.2, 63.4, 81.5, 64.1, 649 +4.887741935483871,4.89,a-picp-i1,2022-23,Pittsfield-Pittsfield Public Virtual Academy,02360705,"", 100.0, 100.0, 100.0, 100.0, 80.0, 100.0, 100.0, 100.0, 100.0, 90.0, 88.2, 90.9, 94.7, 94 +5.130322580645162,5,a-picp-i1,2022-23,Pittsfield-Robert T. Capeless Elementary School,02360045, 100.0, 100.0, 100.0, 100.0, 100.0, 97.0,"","","","","","","", 99.4, 162 +5.099354838709678,5,a-picp-i1,2022-23,Pittsfield-Silvio O Conte Community,02360105, 98.2, 100.0, 100.0, 100.0, 98.4, 96.6,"","","","","","","", 98.8, 330 +5.042580645161291,5,a-picp-i1,2022-23,Pittsfield-Stearns,02360090, 100.0, 96.4, 100.0, 100.0, 92.5, 97.8,"","","","","","","", 97.7, 213 +2.9212903225806452,2.92,a-picp-i1,2022-23,Pittsfield-Taconic High,02360510,"","","","","","","","","", 80.0, 59.0, 35.2, 45.1, 56.6, 843 +4.190967741935484,4.19,a-picp-i1,2022-23,Pittsfield-Theodore Herberg Middle,02360310,"","","","","","", 84.0, 88.1, 73.4,"","","","", 81.2, 490 +5.12,5,a-picp-i1,2022-23,Pittsfield-Williams,02360100, 100.0, 100.0, 100.0, 97.8, 100.0, 97.4,"","","","","","","", 99.2, 239 +5.161290322580645,5,a-picp-i1,2022-23,Plainville-Anna Ware Jackson,02380010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 234 +5.161290322580645,5,a-picp-i1,2022-23,Plainville-Beatrice H Wood Elementary,02380005,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 347 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Cold Spring,02390005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 213 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Federal Furnace School,02390011, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 407 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Hedge,02390010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 217 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Indian Brook,02390012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 578 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Manomet Elementary,02390015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 254 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-Nathaniel Morton Elementary,02390030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 508 +4.990967741935484,4.99,a-picp-i1,2022-23,Plymouth-Plymouth Commun Intermediate,02390405,"","","","","","", 99.0, 93.8, 96.7,"","","","", 96.7, 901 +3.2051612903225806,3.21,a-picp-i1,2022-23,Plymouth-Plymouth North High,02390505,"","","","","","","","","", 63.7, 59.6, 56.3, 69.6, 62.1," 1,290" +2.343225806451613,2.34,a-picp-i1,2022-23,Plymouth-Plymouth South High,02390515,"","","","","","","","","", 39.1, 41.2, 47.3, 55.0, 45.4," 1,019" +5.12,5,a-picp-i1,2022-23,Plymouth-Plymouth South Middle,02390305,"","","","","","", 100.0, 100.0, 97.6,"","","","", 99.2, 624 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-South Elementary,02390046, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 624 +5.161290322580645,5,a-picp-i1,2022-23,Plymouth-West Elementary,02390047, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 314 +5.161290322580645,5,a-picp-i1,2022-23,Plympton-Dennett Elementary,02400010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 239 +1.5019354838709678,1.5,a-picp-i1,2022-23,Prospect Hill Academy Charter (District)-Prospect Hill Academy Charter School,04870550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 98.6, 95.1, 55.1, 6.2, 8.7, 29.1, 938 +5.032258064516129,5,a-picp-i1,2022-23,Provincetown-Provincetown Schools,02420020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 90.0, 87.5, 100.0,"","","","", 97.5, 120 +5.130322580645162,5,a-picp-i1,2022-23,Quabbin-Hardwick Elementary,07530005, 100.0, 97.3, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.4, 172 +5.161290322580645,5,a-picp-i1,2022-23,Quabbin-Hubbardston Center,07530010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 277 +5.161290322580645,5,a-picp-i1,2022-23,Quabbin-Oakham Center,07530025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 178 +3.499354838709677,3.5,a-picp-i1,2022-23,Quabbin-Quabbin Regional High School,07530505,"","","","","","","","","", 79.1, 64.0, 57.4, 67.6, 67.8, 572 +5.140645161290323,5,a-picp-i1,2022-23,Quabbin-Quabbin Regional Middle School,07530405,"","","","","","", 100.0, 99.4, 99.5,"","","","", 99.6, 528 +5.052903225806452,5,a-picp-i1,2022-23,Quabbin-Ruggles Lane,07530030, 96.0, 98.4, 94.7, 98.6, 100.0, 100.0,"","","","","","","", 97.9, 338 +2.8851612903225807,2.89,a-picp-i1,2022-23,Quaboag Regional-Quaboag Regional High,07780505,"","","","","","","","","", 43.3, 43.4, 70.9, 64.9, 55.9, 356 +5.006451612903226,5,a-picp-i1,2022-23,Quaboag Regional-Quaboag Regional Middle Innovation School,07780305,"","","","","","","", 95.7, 98.2,"","","","", 97.0, 203 +5.161290322580645,5,a-picp-i1,2022-23,Quaboag Regional-Warren Elementary,07780005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2022-23,Quaboag Regional-West Brookfield Elementary,07780010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 262 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Atherton Hough,02430040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 253 +5.078709677419355,5,a-picp-i1,2022-23,Quincy-Atlantic Middle,02430305,"","","","","","", 97.5, 99.4, 98.4,"","","","", 98.4, 562 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Beechwood Knoll Elementary,02430020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 332 +5.114838709677419,5,a-picp-i1,2022-23,Quincy-Broad Meadows Middle,02430310,"","","","","","", 98.0, 100.0, 99.1,"","","","", 99.1, 317 +5.12,5,a-picp-i1,2022-23,Quincy-Central Middle,02430315,"","","","","","", 99.5, 100.0, 98.1,"","","","", 99.2, 644 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Charles A Bernazzani Elementary,02430025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Clifford H Marshall Elementary,02430055, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 522 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Francis W Parker,02430075, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 325 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Lincoln-Hancock Community School,02430035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 559 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Merrymount,02430060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 326 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Montclair,02430065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 428 +1.7496774193548386,1.75,a-picp-i1,2022-23,Quincy-North Quincy High,02430510,"","","","","","","","","", 50.8, 30.6, 26.8, 26.3, 33.9," 1,462" +5.058064516129032,5,a-picp-i1,2022-23,Quincy-Point Webster Middle,02430325,"","","","","", 100.0, 96.8, 94.8, 100.0,"","","","", 98.0, 358 +1.8425806451612905,1.84,a-picp-i1,2022-23,Quincy-Quincy High,02430505,"","","","","","","","","", 43.5, 37.3, 36.2, 26.4, 35.7," 1,519" +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Snug Harbor Community School,02430090, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 299 +5.0683870967741935,5,a-picp-i1,2022-23,Quincy-South West Middle School,02430320,"","","","","", 100.0, 100.0, 98.2, 94.7,"","","","", 98.2, 446 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Squantum,02430095, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 346 +5.161290322580645,5,a-picp-i1,2022-23,Quincy-Wollaston School,02430110, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 324 +4.567741935483871,4.57,a-picp-i1,2022-23,Ralph C Mahar-Ralph C Mahar Regional,07550505,"","","","","","","", 93.9, 95.2, 93.8, 80.8, 84.5, 76.3, 88.5, 532 +5.161290322580645,5,a-picp-i1,2022-23,Randolph-Elizabeth G Lyons Elementary,02440020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 298 +5.161290322580645,5,a-picp-i1,2022-23,Randolph-J F Kennedy Elementary,02440018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 335 +5.161290322580645,5,a-picp-i1,2022-23,Randolph-Margaret L Donovan,02440015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 431 +5.058064516129032,5,a-picp-i1,2022-23,Randolph-Martin E Young Elementary,02440040, 100.0, 100.0, 92.9, 95.0, 100.0, 100.0,"","","","","","","", 98.0, 244 +4.541935483870968,4.54,a-picp-i1,2022-23,Randolph-Randolph Community Middle,02440410,"","","","","","", 86.2, 77.3, 99.5,"","","","", 88.0, 594 +3.478709677419355,3.48,a-picp-i1,2022-23,Randolph-Randolph High,02440505,"","","","","","","","","", 57.5, 76.1, 76.5, 64.0, 67.4, 650 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Alice M Barrows,02460002, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 357 +5.052903225806452,5,a-picp-i1,2022-23,Reading-Arthur W Coolidge Middle,02460305,"","","","","","", 97.2, 100.0, 96.6,"","","","", 97.9, 427 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Birch Meadow,02460005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 355 +5.161290322580645,5,a-picp-i1,2022-23,Reading-J Warren Killam,02460017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 414 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Joshua Eaton,02460010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 390 +2.4206451612903224,2.42,a-picp-i1,2022-23,Reading-Reading Memorial High,02460505,"","","","","","","","","", 59.7, 71.6, 28.8, 32.1, 46.9," 1,100" +4.9393548387096775,4.94,a-picp-i1,2022-23,Reading-Walter S Parker Middle,02460310,"","","","","","", 98.4, 99.4, 90.3,"","","","", 95.7, 464 +5.161290322580645,5,a-picp-i1,2022-23,Reading-Wood End Elementary School,02460020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 247 +5.161290322580645,5,a-picp-i1,2022-23,Revere-A. C. Whelan Elementary School,02480003, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 745 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Abraham Lincoln,02480025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 555 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Beachmont Veterans Memorial School,02480013, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 320 +4.08258064516129,4.08,a-picp-i1,2022-23,Revere-CityLab Innovation High School,02480520,"","","","","","","","","", 95.2, 84.2, 87.5, 40.9, 79.1, 91 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Garfield Elementary School,02480056, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 661 +5.114838709677419,5,a-picp-i1,2022-23,Revere-Garfield Middle School,02480057,"","","","","","", 98.4, 99.5, 99.5,"","","","", 99.1, 578 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Paul Revere,02480050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 453 +1.661935483870968,1.66,a-picp-i1,2022-23,Revere-Revere High,02480505,"","","","","","","","","", 4.2, 22.4, 54.0, 63.3, 32.2," 2,193" +5.063225806451612,5,a-picp-i1,2022-23,Revere-Rumney Marsh Academy,02480014,"","","","","","", 99.0, 99.0, 96.4,"","","","", 98.1, 586 +5.161290322580645,5,a-picp-i1,2022-23,Revere-Staff Sargent James J. Hill Elementary School,02480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 670 +5.047741935483871,5,a-picp-i1,2022-23,Revere-Susan B. Anthony Middle School,02480305,"","","","","","", 100.0, 93.6, 100.0,"","","","", 97.8, 602 +5.161290322580645,5,a-picp-i1,2022-23,Richmond-Richmond Consolidated,02490005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 141 +5.027096774193549,5,a-picp-i1,2022-23,Rising Tide Charter Public (District)-Rising Tide Charter Public School,04830305,"","","","","", 100.0, 100.0, 98.9, 100.0, 98.7, 100.0, 81.8, 93.8, 97.4, 627 +5.161290322580645,5,a-picp-i1,2022-23,River Valley Charter (District)-River Valley Charter School,04820050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 287 +5.150967741935483,5,a-picp-i1,2022-23,Rochester-Rochester Memorial,02500005, 100.0, 100.0, 98.4, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.8, 473 +5.161290322580645,5,a-picp-i1,2022-23,Rockland-Jefferson Elementary School,02510060, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 246 +5.1251612903225805,5,a-picp-i1,2022-23,Rockland-John W Rogers Middle,02510305,"","","","","", 100.0, 100.0, 98.5, 99.0,"","","","", 99.3, 726 +5.161290322580645,5,a-picp-i1,2022-23,Rockland-Memorial Park,02510020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 251 +5.161290322580645,5,a-picp-i1,2022-23,Rockland-R Stewart Esten,02510025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 323 +2.343225806451613,2.34,a-picp-i1,2022-23,Rockland-Rockland Senior High,02510505,"","","","","","","","","", 66.3, 34.1, 28.8, 45.1, 45.4, 568 +5.140645161290323,5,a-picp-i1,2022-23,Rockport-Rockport Elementary,02520005, 97.6, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 277 +3.4425806451612906,3.44,a-picp-i1,2022-23,Rockport-Rockport High,02520510,"","","","","","","","","", 56.4, 80.0, 67.6, 65.0, 66.7, 228 +5.135483870967742,5,a-picp-i1,2022-23,Rockport-Rockport Middle,02520305,"","","","","","", 98.1, 100.0, 100.0,"","","","", 99.5, 193 +4.113548387096774,4.11,a-picp-i1,2022-23,Rowe-Rowe Elementary,02530005, 100.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0,"","","","","","", 79.7, 59 +5.156129032258065,5,a-picp-i1,2022-23,Roxbury Preparatory Charter (District)-Roxbury Preparatory Charter School,04840505,"","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 99.9," 1,222" +4.08258064516129,4.08,a-picp-i1,2022-23,Salem Academy Charter (District)-Salem Academy Charter School,04850485,"","","","","","", 100.0, 100.0, 100.0, 40.8, 74.3, 74.2, 63.2, 79.1, 488 +5.145806451612903,5,a-picp-i1,2022-23,Salem-Bates,02580003, 100.0, 98.1, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 365 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Bentley Academy Innovation School,02580010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 281 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Carlton,02580015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 258 +4.96,4.96,a-picp-i1,2022-23,Salem-Collins Middle,02580305,"","","","","","", 95.8, 96.3, 96.3,"","","","", 96.1, 646 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Horace Mann Laboratory,02580030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 261 +0.0,1,a-picp-i1,2022-23,Salem-New Liberty Innovation School,02580510,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 45 +2.6477419354838707,2.65,a-picp-i1,2022-23,Salem-Salem High,02580505,"","","","","","","","","", 43.9, 59.1, 51.3, 51.9, 51.3, 907 +1.104516129032258,1.1,a-picp-i1,2022-23,Salem-Salem Prep High School,02580515,"","","","","","","","","", 50.0, 20.0, 100.0, 0.0, 21.4, 14 +5.083870967741936,5,a-picp-i1,2022-23,Salem-Saltonstall School,02580050, 100.0, 89.2, 100.0, 100.0, 100.0, 100.0, 97.6, 100.0, 98.0,"","","","", 98.5, 388 +5.161290322580645,5,a-picp-i1,2022-23,Salem-Witchcraft Heights,02580070, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 461 +5.161290322580645,5,a-picp-i1,2022-23,Sandwich-Forestdale School,02610002, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 474 +5.161290322580645,5,a-picp-i1,2022-23,Sandwich-Oak Ridge,02610025,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 676 +4.325161290322581,4.33,a-picp-i1,2022-23,Sandwich-Sandwich Middle High School,02610505,"","","","","","","", 100.0, 95.5, 68.2, 82.9, 66.2, 81.1, 83.8, 932 +5.109677419354838,5,a-picp-i1,2022-23,Saugus-Belmonte STEAM Academy,02620060,"","", 99.1, 99.0, 99.5, 98.6,"","","","","","","", 99.0, 826 +2.9522580645161294,2.95,a-picp-i1,2022-23,Saugus-Saugus High,02620505,"","","","","","","","","", 77.8, 52.7, 37.1, 59.6, 57.2, 732 +4.387096774193548,4.39,a-picp-i1,2022-23,Saugus-Saugus Middle School,02620305,"","","","","","", 94.3, 79.4, 81.3,"","","","", 85.0, 627 +4.701935483870967,4.7,a-picp-i1,2022-23,Saugus-Veterans Early Learning Center,02620065, 83.3, 100.0,"","","","","","","","","","","", 91.1, 381 +3.6283870967741936,3.63,a-picp-i1,2022-23,Savoy-Emma L Miller Elementary School,02630010, 0.0, 100.0, 100.0, 0.0, 100.0, 100.0, 100.0,"","","","","","", 70.3, 37 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Cushing Elementary,02640007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 354 +5.042580645161291,5,a-picp-i1,2022-23,Scituate-Gates Middle School,02640305,"","","","","","", 99.5, 98.1, 95.5,"","","","", 97.7, 607 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Hatherly Elementary,02640010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 259 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Jenkins Elementary School,02640015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 330 +3.5664516129032253,3.57,a-picp-i1,2022-23,Scituate-Scituate High School,02640505,"","","","","","","","","", 83.6, 80.6, 59.5, 55.6, 69.1, 761 +5.161290322580645,5,a-picp-i1,2022-23,Scituate-Wampatuck Elementary,02640020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 375 +4.918709677419355,4.92,a-picp-i1,2022-23,Seekonk-Dr. Kevin M. Hurley Middle School,02650405,"","","","","","", 93.3, 96.3, 96.8,"","","","", 95.3, 493 +5.161290322580645,5,a-picp-i1,2022-23,Seekonk-George R Martin,02650007, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 454 +5.161290322580645,5,a-picp-i1,2022-23,Seekonk-Mildred Aitken School,02650015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 523 +3.6283870967741936,3.63,a-picp-i1,2022-23,Seekonk-Seekonk High,02650505,"","","","","","","","","", 67.5, 75.2, 78.0, 60.1, 70.3, 538 +5.104516129032258,5,a-picp-i1,2022-23,Sharon-Cottage Street,02660005, 98.6, 96.8, 98.7, 98.6, 100.0, 100.0,"","","","","","","", 98.9, 445 +5.161290322580645,5,a-picp-i1,2022-23,Sharon-East Elementary,02660010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 493 +5.145806451612903,5,a-picp-i1,2022-23,Sharon-Heights Elementary,02660015, 98.9, 100.0, 100.0, 100.0, 100.0, 98.9,"","","","","","","", 99.7, 574 +3.1948387096774193,3.19,a-picp-i1,2022-23,Sharon-Sharon High,02660505,"","","","","","","","","", 80.7, 77.0, 41.8, 46.7, 61.9," 1,148" +5.150967741935483,5,a-picp-i1,2022-23,Sharon-Sharon Middle,02660305,"","","","","","", 99.6, 99.6, 100.0,"","","","", 99.8, 860 +0.5161290322580645,1,a-picp-i1,2022-23,Shawsheen Valley Regional Vocational Technical-Shawsheen Valley Vocational Technical High School,08710605,"","","","","","","","","", 8.7, 9.6, 11.0, 10.9, 10.0," 1,298" +5.161290322580645,5,a-picp-i1,2022-23,Sherborn-Pine Hill,02690010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 398 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Calvin Coolidge School,02710015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 252 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Floral Street School,02710020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 548 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Major Howard W. Beal School,02710005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 601 +5.058064516129032,5,a-picp-i1,2022-23,Shrewsbury-Oak Middle School,02710030,"","","","","","","", 97.7, 98.4,"","","","", 98.0, 964 +5.140645161290323,5,a-picp-i1,2022-23,Shrewsbury-Sherwood Middle School,02710305,"","","","","", 99.6, 99.6,"","","","","","", 99.6, 974 +2.6632258064516128,2.66,a-picp-i1,2022-23,Shrewsbury-Shrewsbury High School,02710505,"","","","","","","","","", 65.3, 49.4, 37.0, 52.9, 51.6," 1,834" +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Spring Street School,02710035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 305 +5.161290322580645,5,a-picp-i1,2022-23,Shrewsbury-Walter J. Paton School,02710025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 295 +5.161290322580645,5,a-picp-i1,2022-23,Shutesbury-Shutesbury Elementary,02720005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 103 +2.5083870967741935,2.51,a-picp-i1,2022-23,Silver Lake-Silver Lake Regional High,07600505,"","","","","","","","","", 37.5, 47.4, 43.7, 65.5, 48.6," 1,033" +4.5109677419354846,4.51,a-picp-i1,2022-23,Silver Lake-Silver Lake Regional Middle School,07600405,"","","","","","","", 99.6, 73.6,"","","","", 87.4, 533 +3.912258064516129,3.91,a-picp-i1,2022-23,Sizer School: A North Central Charter Essential (District)-Sizer School: A North Central Charter Essential School,04740505,"","","","","","","", 89.5, 83.3, 84.1, 73.1, 60.8, 45.2, 75.8, 368 +3.4219354838709677,3.42,a-picp-i1,2022-23,Somerset Berkley Regional School District-Somerset Berkley Regional High School,07630505,"","","","","","","","","", 62.5, 52.5, 73.6, 76.5, 66.3, 992 +5.161290322580645,5,a-picp-i1,2022-23,Somerset-Chace Street,02730005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 325 +5.161290322580645,5,a-picp-i1,2022-23,Somerset-North Elementary,02730008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 405 +5.114838709677419,5,a-picp-i1,2022-23,Somerset-Somerset Middle School,02730305,"","","","","","", 99.5, 97.7, 100.0,"","","","", 99.1, 583 +5.161290322580645,5,a-picp-i1,2022-23,Somerset-South,02730015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 263 +5.114838709677419,5,a-picp-i1,2022-23,Somerville-Albert F. Argenziano School at Lincoln Park,02740087, 95.3, 98.7, 98.8, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 99.1, 551 +5.140645161290323,5,a-picp-i1,2022-23,Somerville-Arthur D Healey,02740075, 100.0, 98.4, 100.0, 100.0, 100.0, 97.9, 100.0, 100.0, 100.0,"","","","", 99.6, 493 +5.161290322580645,5,a-picp-i1,2022-23,Somerville-Benjamin G Brown,02740015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 212 +4.877419354838709,4.88,a-picp-i1,2022-23,Somerville-Capuano Early Childhood Center,02740005, 93.6, 100.0,"","","","","","","","","","","", 94.5, 55 +5.156129032258065,5,a-picp-i1,2022-23,Somerville-E Somerville Community,02740111, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 98.6,"","","","", 99.9, 701 +4.707096774193548,4.71,a-picp-i1,2022-23,Somerville-Full Circle High School,02740510,"","","","","","","","","", 100.0, 100.0, 80.0, 78.6, 91.2, 57 +5.161290322580645,5,a-picp-i1,2022-23,Somerville-John F Kennedy,02740083, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 422 +5.161290322580645,5,a-picp-i1,2022-23,Somerville-Next Wave Junior High,02740410,"","","","","","","", 100.0, 100.0,"","","","", 100.0, 15 +3.0606451612903225,3.06,a-picp-i1,2022-23,Somerville-Somerville High,02740505,"","","","","","","","","", 70.9, 60.3, 54.2, 48.8, 59.3," 1,316" +5.161290322580645,5,a-picp-i1,2022-23,Somerville-West Somerville Neighborhood,02740115, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 354 +5.1251612903225805,5,a-picp-i1,2022-23,Somerville-Winter Hill Community,02740120, 100.0, 96.8, 98.0, 100.0, 100.0, 96.3, 100.0, 100.0, 100.0,"","","","", 99.3, 420 +5.150967741935483,5,a-picp-i1,2022-23,South Hadley-Michael E. Smith Middle School,02780305,"","","","","", 99.2, 100.0, 100.0, 100.0,"","","","", 99.8, 526 +5.161290322580645,5,a-picp-i1,2022-23,South Hadley-Mosier,02780020,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 343 +2.96258064516129,2.96,a-picp-i1,2022-23,South Hadley-Plains Elementary,02780015, 0.0, 100.0,"","","","","","","","","","","", 57.4, 251 +2.193548387096774,2.19,a-picp-i1,2022-23,South Hadley-South Hadley High,02780505,"","","","","","","","","", 79.6, 50.0, 21.7, 23.4, 42.5, 497 +1.6980645161290322,1.7,a-picp-i1,2022-23,South Middlesex Regional Vocational Technical-Joseph P Keefe Technical High School,08290605,"","","","","","","","","", 15.4, 37.3, 49.8, 31.6, 32.9, 830 +3.92258064516129,3.92,a-picp-i1,2022-23,South Shore Charter Public (District)-South Shore Charter Public School,04880550, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 28.7, 10.2, 23.5, 20.8, 76.0," 1,059" +1.6774193548387097,1.68,a-picp-i1,2022-23,South Shore Regional Vocational Technical-South Shore Vocational Technical High,08730605,"","","","","","","","","", 100.0, 9.1, 10.1, 8.4, 32.5, 643 +5.161290322580645,5,a-picp-i1,2022-23,Southampton-William E Norris,02750005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 434 +5.161290322580645,5,a-picp-i1,2022-23,Southborough-Albert S. Woodward Memorial School,02760050,"","", 100.0, 100.0,"","","","","","","","","", 100.0, 269 +5.140645161290323,5,a-picp-i1,2022-23,Southborough-Margaret A Neary,02760020,"","","","", 100.0, 99.3,"","","","","","","", 99.6, 268 +5.161290322580645,5,a-picp-i1,2022-23,Southborough-Mary E Finn School,02760008, 100.0, 100.0,"","","","","","","","","","","", 100.0, 263 +4.2941935483870965,4.29,a-picp-i1,2022-23,Southborough-P Brent Trottier,02760305,"","","","","","", 99.2, 98.5, 50.0,"","","","", 83.2, 387 +5.140645161290323,5,a-picp-i1,2022-23,Southbridge-Charlton Street,02770005,"", 100.0, 98.4, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 251 +5.145806451612903,5,a-picp-i1,2022-23,Southbridge-Eastford Road,02770010, 99.3, 100.0,"","","","","","","","","","","", 99.7, 288 +2.064516129032258,2.06,a-picp-i1,2022-23,Southbridge-Southbridge Academy,02770525,"","","","","","", 100.0, 100.0, 100.0, 12.5, 0.0,"", 0.0, 40.0, 20 +4.547096774193548,4.55,a-picp-i1,2022-23,Southbridge-Southbridge High School,02770515,"","","","","","","","","", 89.9, 84.3, 85.3, 93.3, 88.1, 471 +4.841290322580645,4.84,a-picp-i1,2022-23,Southbridge-Southbridge Middle School,02770315,"","","","","","", 96.6, 94.4, 90.0,"","","","", 93.8, 418 +5.161290322580645,5,a-picp-i1,2022-23,Southbridge-West Street,02770020,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 338 +0.7329032258064516,1,a-picp-i1,2022-23,Southeastern Regional Vocational Technical-Southeastern Regional Vocational Technical,08720605,"","","","","","","","","", 11.8, 17.5, 14.6, 12.8, 14.2," 1,566" +4.00516129032258,4.01,a-picp-i1,2022-23,Southern Berkshire-Mt Everett Regional,07650505,"","","","","","", 100.0, 97.9, 97.6, 73.7, 52.1, 64.3, 56.3, 77.6, 295 +5.161290322580645,5,a-picp-i1,2022-23,Southern Berkshire-New Marlborough Central,07650018, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 49 +0.0,1,a-picp-i1,2022-23,Southern Berkshire-South Egremont,07650030, 0.0,"","","","","","","","","","","","", 0.0, 13 +5.161290322580645,5,a-picp-i1,2022-23,Southern Berkshire-Undermountain,07650035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 211 +0.3251612903225806,1,a-picp-i1,2022-23,Southern Worcester County Regional Vocational School District-Bay Path Regional Vocational Technical High School,08760605,"","","","","","","","","", 6.3, 5.8, 7.0, 6.3, 6.3," 1,183" +5.161290322580645,5,a-picp-i1,2022-23,Southwick-Tolland-Granville Regional School District-Powder Mill School,07660315,"","","", 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 389 +3.411612903225806,3.41,a-picp-i1,2022-23,Southwick-Tolland-Granville Regional School District-Southwick Regional School,07660505,"","","","","","","", 98.3, 100.0, 45.9, 59.6, 38.4, 40.7, 66.1, 634 +5.161290322580645,5,a-picp-i1,2022-23,Southwick-Tolland-Granville Regional School District-Woodland School,07660010, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 279 +3.8193548387096774,3.82,a-picp-i1,2022-23,Spencer-E Brookfield-David Prouty High,07670505,"","","","","","","","","", 97.2, 60.9, 58.0, 76.0, 74.0, 362 +5.161290322580645,5,a-picp-i1,2022-23,Spencer-E Brookfield-East Brookfield Elementary,07670008, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 135 +4.593548387096774,4.59,a-picp-i1,2022-23,Spencer-E Brookfield-Knox Trail Middle School,07670415,"","","","","", 89.1, 86.5, 90.0, 90.7,"","","","", 89.0, 390 +5.150967741935483,5,a-picp-i1,2022-23,Spencer-E Brookfield-Wire Village School,07670040, 100.0, 99.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 442 +5.140645161290323,5,a-picp-i1,2022-23,Springfield International Charter (District)-Springfield International Charter School,04410505, 100.0, 100.0, 100.0, 99.2, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 96.3, 100.0, 100.0, 99.6," 1,554" +5.0683870967741935,5,a-picp-i1,2022-23,Springfield Preparatory Charter School (District)-Springfield Preparatory Charter School,35100205, 100.0, 98.2, 100.0, 98.2, 96.4, 100.0, 100.0, 94.6, 96.4,"","","","", 98.2, 497 +4.526451612903226,4.53,a-picp-i1,2022-23,Springfield-Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 87.7, 359 +4.330322580645162,4.33,a-picp-i1,2022-23,Springfield-Alice B Beal Elementary,02810175, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.9, 261 +4.252903225806452,4.25,a-picp-i1,2022-23,Springfield-Arthur T Talmadge,02810165, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.4, 205 +4.438709677419355,4.44,a-picp-i1,2022-23,Springfield-Brightwood,02810025, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.0, 408 +4.258064516129032,4.26,a-picp-i1,2022-23,Springfield-Chestnut Accelerated Middle School (Talented and Gifted),02810367,"","","","","","", 81.3, 84.8, 81.7,"","","","", 82.5, 252 +5.078709677419355,5,a-picp-i1,2022-23,Springfield-Conservatory of the Arts,02810475,"","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 95.7, 91.9, 98.4, 311 +4.242580645161291,4.24,a-picp-i1,2022-23,Springfield-Daniel B Brunton,02810035, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.2, 297 +4.283870967741936,4.28,a-picp-i1,2022-23,Springfield-Edward P. Boland School,02810010, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.0, 423 +4.56258064516129,4.56,a-picp-i1,2022-23,Springfield-Elias Brookings,02810030, 9.7, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.4, 241 +1.0425806451612902,1.04,a-picp-i1,2022-23,Springfield-Emergence Academy,02810318,"","","","","","", 0.0, 0.0, 0.0, 62.7,"","","", 20.2, 183 +4.6090322580645156,4.61,a-picp-i1,2022-23,Springfield-Forest Park Middle,02810325,"","","","","","", 91.3, 83.2, 92.8,"","","","", 89.3, 366 +4.190967741935484,4.19,a-picp-i1,2022-23,Springfield-Frank H Freedman,02810075, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 81.2, 250 +4.376774193548387,4.38,a-picp-i1,2022-23,Springfield-Frederick Harris,02810080, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.8, 481 +2.270967741935484,2.27,a-picp-i1,2022-23,Springfield-Gateway to College at Holyoke Community College,02810575,"","","","","","","","","", 0.0, 0.0, 60.0, 50.0, 44.0, 25 +0.6709677419354839,1,a-picp-i1,2022-23,Springfield-Gateway to College at Springfield Technical Community College,02810580,"","","","","","","","","", 0.0, 20.0, 0.0, 14.3, 13.0, 23 +4.2064516129032254,4.21,a-picp-i1,2022-23,Springfield-German Gerena Community School,02810195, 0.0, 94.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 81.5, 508 +4.309677419354839,4.31,a-picp-i1,2022-23,Springfield-Glenwood,02810065, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 261 +4.5109677419354846,4.51,a-picp-i1,2022-23,Springfield-Glickman Elementary,02810068, 2.9, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.4, 262 +3.0451612903225804,3.05,a-picp-i1,2022-23,Springfield-High School Of Commerce,02810510,"","","","","","","","","", 68.9, 47.8, 62.0, 61.9, 59.0," 1,050" +4.376774193548387,4.38,a-picp-i1,2022-23,Springfield-Hiram L Dorman,02810050, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.8, 250 +4.170322580645161,4.17,a-picp-i1,2022-23,Springfield-Homer Street,02810085, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 80.8, 365 +4.418064516129032,4.42,a-picp-i1,2022-23,Springfield-Impact Prep at Chestnut,02810366,"","","","","","", 92.1, 74.3, 90.7,"","","","", 85.6, 208 +4.0929032258064515,4.09,a-picp-i1,2022-23,Springfield-Indian Orchard Elementary,02810100, 0.0, 100.0, 98.4, 100.0, 100.0, 100.0,"","","","","","","", 79.3, 450 +4.87225806451613,4.87,a-picp-i1,2022-23,Springfield-John F Kennedy Middle,02810328,"","","","","","", 93.0, 93.5, 96.9,"","","","", 94.4, 394 +3.5406451612903225,3.54,a-picp-i1,2022-23,Springfield-John J Duggan Academy,02810320,"","","","","","", 63.3, 74.7, 97.5, 1.3, 72.2, 82.0, 62.3, 68.6, 807 +4.299354838709677,4.3,a-picp-i1,2022-23,Springfield-Kensington International School,02810110, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.3, 203 +4.696774193548387,4.7,a-picp-i1,2022-23,Springfield-Kiley Academy,02810316,"","","","","","", 92.9, 89.3, 90.8,"","","","", 91.0, 312 +3.2670967741935484,3.27,a-picp-i1,2022-23,Springfield-Kiley Prep,02810315,"","","","","","", 91.2, 48.1, 50.5,"","","","", 63.3, 275 +4.55741935483871,4.56,a-picp-i1,2022-23,Springfield-Liberty,02810115, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.3, 213 +5.161290322580645,5,a-picp-i1,2022-23,Springfield-Liberty Preparatory Academy,02810560,"","","","","","","","","", 100.0, 100.0, 100.0, 100.0, 100.0, 10 +4.2941935483870965,4.29,a-picp-i1,2022-23,Springfield-Lincoln,02810120, 0.0, 90.6, 98.7, 91.3, 100.0, 100.0,"","","","","","","", 83.2, 381 +4.118709677419354,4.12,a-picp-i1,2022-23,Springfield-Mary A. Dryden Veterans Memorial School,02810125, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 79.8, 252 +4.175483870967742,4.18,a-picp-i1,2022-23,Springfield-Mary M Lynch,02810140, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 80.9, 199 +4.418064516129032,4.42,a-picp-i1,2022-23,Springfield-Mary M Walsh,02810155, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.6, 229 +4.541935483870968,4.54,a-picp-i1,2022-23,Springfield-Mary O Pottenger,02810145, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.0, 359 +4.309677419354839,4.31,a-picp-i1,2022-23,Springfield-Milton Bradley School,02810023, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.5, 412 +4.190967741935484,4.19,a-picp-i1,2022-23,Springfield-Rebecca M Johnson,02810055, 0.0, 100.0, 100.0, 96.3, 98.9, 100.0,"","","","","","","", 81.2, 489 +0.0,1,a-picp-i1,2022-23,Springfield-Rise Academy at Van Sickle,02810480,"","","","","","", 0.0, 0.0, 0.0,"","","","", 0.0, 241 +2.4929032258064514,2.49,a-picp-i1,2022-23,Springfield-Roger L. Putnam Vocational Technical Academy,02810620,"","","","","","","","","", 20.8, 40.5, 46.2, 93.9, 48.3," 1,341" +3.881290322580645,3.88,a-picp-i1,2022-23,Springfield-STEM Middle Academy,02810350,"","","","","","", 68.8, 71.4, 85.0,"","","","", 75.2, 294 +4.526451612903226,4.53,a-picp-i1,2022-23,Springfield-Samuel Bowles,02810020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.7, 195 +4.903225806451613,4.9,a-picp-i1,2022-23,Springfield-South End Middle School,02810355,"","","","","","", 96.9, 96.7, 90.9,"","","","", 95.0, 179 +2.7922580645161292,2.79,a-picp-i1,2022-23,Springfield-Springfield Central High,02810500,"","","","","","","","","", 42.6, 51.7, 68.2, 60.7, 54.1," 2,018" +0.8825806451612904,1,a-picp-i1,2022-23,Springfield-Springfield High School,02810570,"","","","","","","","","", 0.0, 6.7, 46.2, 16.7, 17.1, 70 +3.695483870967742,3.7,a-picp-i1,2022-23,Springfield-Springfield High School of Science and Technology,02810530,"","","","","","","","","", 70.1, 69.6, 83.1, 65.8, 71.6," 1,040" +5.161290322580645,5,a-picp-i1,2022-23,Springfield-Springfield International Academy at Johnson,02810215,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 34 +2.487741935483871,2.49,a-picp-i1,2022-23,Springfield-Springfield International Academy at Sci-Tech,02810700,"","","","","","","","","", 56.1, 28.0, 0.0, 78.6, 48.2, 85 +3.6541935483870964,3.65,a-picp-i1,2022-23,Springfield-Springfield Legacy Academy,02810317,"","","","","","", 2.1, 99.1, 100.0,"","","","", 70.8, 319 +4.588387096774194,4.59,a-picp-i1,2022-23,Springfield-Springfield Middle School,02810360,"","","","","","", 100.0, 100.0, 77.8,"","","","", 88.9, 18 +5.161290322580645,5,a-picp-i1,2022-23,Springfield-Springfield Public Day Elementary School,02810005,"", 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 31 +2.1109677419354838,2.11,a-picp-i1,2022-23,Springfield-Springfield Public Day High School,02810550,"","","","","","","","","", 0.0, 9.1, 90.9, 58.3, 40.9, 44 +4.851612903225806,4.85,a-picp-i1,2022-23,Springfield-Springfield Public Day Middle School,02810345,"","","","","","", 100.0, 90.0, 92.3,"","","","", 94.0, 50 +0.0,1,a-picp-i1,2022-23,Springfield-Springfield Realization Academy,02810335,"","","","","","", 0.0, 0.0,"","","","","", 0.0, 128 +4.428387096774194,4.43,a-picp-i1,2022-23,Springfield-Sumner Avenue,02810160, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.8, 387 +4.242580645161291,4.24,a-picp-i1,2022-23,Springfield-The Springfield Renaissance School an Expeditionary Learning School,02810205,"","","","","","", 96.9, 98.9, 95.2, 0.0, 94.4, 95.5, 100.0, 82.2, 611 +3.468387096774194,3.47,a-picp-i1,2022-23,Springfield-The Springfield Virtual School,02810705,"", 100.0, 100.0, 100.0, 100.0, 100.0, 87.2, 94.7, 100.0, 2.3, 24.4, 8.3, 0.0, 67.2, 387 +4.325161290322581,4.33,a-picp-i1,2022-23,Springfield-Thomas M Balliet,02810015, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.8, 240 +4.944516129032258,4.94,a-picp-i1,2022-23,Springfield-Van Sickle Academy,02810485,"","","","","","", 96.6, 97.7, 93.1,"","","","", 95.8, 263 +4.325161290322581,4.33,a-picp-i1,2022-23,Springfield-Warner,02810180, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 83.8, 191 +4.056774193548387,4.06,a-picp-i1,2022-23,Springfield-Washington,02810185, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 78.6, 359 +4.278709677419355,4.28,a-picp-i1,2022-23,Springfield-White Street,02810190, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 82.9, 385 +4.588387096774194,4.59,a-picp-i1,2022-23,Springfield-William N. DeBerry,02810045, 3.8, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 88.9, 226 +5.161290322580645,5,a-picp-i1,2022-23,Stoneham-Colonial Park,02840005, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 221 +5.161290322580645,5,a-picp-i1,2022-23,Stoneham-Robin Hood,02840025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 355 +5.161290322580645,5,a-picp-i1,2022-23,Stoneham-South,02840030, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 321 +4.9961290322580645,5.0,a-picp-i1,2022-23,Stoneham-Stoneham Central Middle School,02840405,"","","","","", 96.3, 96.3, 97.2, 97.4,"","","","", 96.8, 682 +3.881290322580645,3.88,a-picp-i1,2022-23,Stoneham-Stoneham High,02840505,"","","","","","","","","", 90.1, 75.9, 57.2, 75.9, 75.2, 613 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-Helen Hansen Elementary,02850010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 264 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-Joseph H Gibbons,02850025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 359 +5.145806451612903,5,a-picp-i1,2022-23,Stoughton-Joseph R Dawe Jr Elementary,02850014, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 383 +5.027096774193549,5,a-picp-i1,2022-23,Stoughton-O'Donnell Middle School,02850405,"","","","","","", 98.9, 96.3, 97.1,"","","","", 97.4, 845 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-Richard L. Wilkins Elementary School,02850020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 289 +5.161290322580645,5,a-picp-i1,2022-23,Stoughton-South Elementary,02850015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 283 +3.824516129032258,3.82,a-picp-i1,2022-23,Stoughton-Stoughton High,02850505,"","","","","","","","","", 76.9, 72.3, 68.8, 79.2, 74.1," 1,111" +4.438709677419355,4.44,a-picp-i1,2022-23,Sturbridge-Burgess Elementary,02870005, 0.0, 98.4, 99.0, 99.2, 97.1, 97.5, 100.0,"","","","","","", 86.0, 814 +3.6696774193548385,3.67,a-picp-i1,2022-23,Sturgis Charter Public (District)-Sturgis Charter Public School,04890505,"","","","","","","","","", 99.5, 99.5, 47.0, 32.9, 71.1, 827 +4.784516129032259,4.78,a-picp-i1,2022-23,Sudbury-Ephraim Curtis Middle,02880305,"","","","","","", 93.5, 93.2, 91.4,"","","","", 92.7, 860 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-General John Nixon Elementary,02880025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 328 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-Israel Loring School,02880015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 434 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-Josiah Haynes,02880010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 374 +5.161290322580645,5,a-picp-i1,2022-23,Sudbury-Peter Noyes,02880030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 509 +5.161290322580645,5,a-picp-i1,2022-23,Sunderland-Sunderland Elementary,02890005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 151 +5.161290322580645,5,a-picp-i1,2022-23,Sutton-Sutton Early Learning,02900003, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 273 +5.161290322580645,5,a-picp-i1,2022-23,Sutton-Sutton Elementary,02900005,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +2.900645161290323,2.9,a-picp-i1,2022-23,Sutton-Sutton High School,02900510,"","","","","","","","","", 75.8, 44.1, 33.7, 72.5, 56.2, 370 +4.134193548387096,4.13,a-picp-i1,2022-23,Sutton-Sutton Middle School,02900305,"","","","","","", 98.9, 97.1, 49.1,"","","","", 80.1, 301 +5.135483870967742,5,a-picp-i1,2022-23,Swampscott-Clarke,02910005, 100.0, 100.0, 100.0, 97.9, 100.0,"","","","","","","","", 99.5, 207 +5.161290322580645,5,a-picp-i1,2022-23,Swampscott-Hadley,02910010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 357 +5.161290322580645,5,a-picp-i1,2022-23,Swampscott-Stanley,02910020,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 162 +3.8193548387096774,3.82,a-picp-i1,2022-23,Swampscott-Swampscott High,02910505,"","","","","","","","","", 77.3, 73.1, 67.9, 77.3, 74.0, 642 +5.150967741935483,5,a-picp-i1,2022-23,Swampscott-Swampscott Middle,02910305,"","","","","", 100.0, 100.0, 100.0, 99.4,"","","","", 99.8, 620 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Elizabeth S Brown,02920006,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 288 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Gardner,02920015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 250 +3.086451612903226,3.09,a-picp-i1,2022-23,Swansea-Joseph Case High,02920505,"","","","","","","","","", 61.4, 56.9, 51.0, 73.4, 59.8, 537 +3.303225806451613,3.3,a-picp-i1,2022-23,Swansea-Joseph Case Jr High,02920305,"","","","","","", 98.8, 99.3, 0.0,"","","","", 64.0, 497 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Joseph G Luther,02920020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 181 +5.161290322580645,5,a-picp-i1,2022-23,Swansea-Mark G Hoyle Elementary,02920017, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 191 +2.771612903225807,2.77,a-picp-i1,2022-23,TEC Connections Academy Commonwealth Virtual School District-TEC Connections Academy Commonwealth Virtual School,39020900, 92.1, 93.5, 91.4, 90.6, 92.4, 95.4, 80.8, 97.7, 94.1, 19.6, 27.0, 26.2, 31.9, 53.7," 3,221" +5.042580645161291,5,a-picp-i1,2022-23,Tantasqua-Tantasqua Regional Jr High,07700405,"","","","","","","", 98.5, 96.9,"","","","", 97.7, 556 +3.3961290322580644,3.4,a-picp-i1,2022-23,Tantasqua-Tantasqua Regional Sr High,07700505,"","","","","","","","","", 48.8, 58.7, 79.2, 75.6, 65.8, 663 +1.9509677419354838,1.95,a-picp-i1,2022-23,Tantasqua-Tantasqua Regional Vocational,07700605,"","","","","","","","","", 42.4, 46.1, 23.3, 36.9, 37.8, 508 +5.145806451612903,5,a-picp-i1,2022-23,Taunton-Benjamin Friedman Middle,02930315,"","","","","", 99.6, 100.0, 99.6,"","","","","", 99.7, 738 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-East Taunton Elementary,02930010, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 512 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-Edmund Hatch Bennett,02930007, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 289 +5.150967741935483,5,a-picp-i1,2022-23,Taunton-Elizabeth Pole,02930027, 100.0, 100.0, 100.0, 99.1, 100.0,"","","","","","","","", 99.8, 629 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-H H Galligan,02930057, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 263 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-James L. Mulcahey Elementary School,02930015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 795 +4.9961290322580645,5.0,a-picp-i1,2022-23,Taunton-John F Parker Middle,02930305,"","","","","", 96.5, 96.1, 97.8,"","","","","", 96.8, 536 +5.161290322580645,5,a-picp-i1,2022-23,Taunton-Joseph C Chamberlain,02930008, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 438 +5.104516129032258,5,a-picp-i1,2022-23,Taunton-Joseph H Martin,02930042,"","","","","", 98.6, 100.0, 98.0,"","","","","", 98.9, 642 +0.0,1,a-picp-i1,2022-23,Taunton-Taunton Alternative High School,02930525,"","","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 74 +2.441290322580645,2.44,a-picp-i1,2022-23,Taunton-Taunton High,02930505,"","","","","","","","", 53.5, 48.7, 44.4, 43.5, 44.1, 47.3," 2,802" +5.161290322580645,5,a-picp-i1,2022-23,Tewksbury-Center Elementary School,02950030,"","", 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 12 +2.1006451612903225,2.1,a-picp-i1,2022-23,Tewksbury-Heath-Brook,02950010, 0.0, 100.0,"","","","","","","","","","","", 40.7, 236 +5.150967741935483,5,a-picp-i1,2022-23,Tewksbury-John F. Ryan,02950023,"","","","","", 100.0, 99.6,"","","","","","", 99.8, 520 +5.140645161290323,5,a-picp-i1,2022-23,Tewksbury-John W. Wynn Middle,02950305,"","","","","","","", 99.6, 99.6,"","","","", 99.6, 502 +2.5187096774193547,2.52,a-picp-i1,2022-23,Tewksbury-L F Dewing,02950001, 0.0, 100.0,"","","","","","","","","","","", 48.8, 301 +NA,NA,a-picp-i1,2022-23,Tewksbury-North Street,02950020,"","","","","","","","","","","","","","", 1 +3.9845161290322584,3.98,a-picp-i1,2022-23,Tewksbury-Tewksbury Memorial High,02950505,"","","","","","","","","", 91.5, 80.4, 54.4, 82.9, 77.2, 753 +4.96516129032258,4.97,a-picp-i1,2022-23,Tisbury-Tisbury Elementary,02960005, 93.5, 97.3, 100.0, 96.7, 96.9, 88.9, 96.2, 100.0, 94.7,"","","","", 96.2, 265 +5.161290322580645,5,a-picp-i1,2022-23,Topsfield-Proctor Elementary,02980005,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 258 +5.145806451612903,5,a-picp-i1,2022-23,Topsfield-Steward Elementary,02980010, 98.6, 100.0, 100.0, 100.0,"","","","","","","","","", 99.7, 324 +1.615483870967742,1.62,a-picp-i1,2022-23,Tri-County Regional Vocational Technical-Tri-County Regional Vocational Technical,08780605,"","","","","","","","","", 5.8, 5.9, 66.8, 54.0, 31.3, 956 +5.161290322580645,5,a-picp-i1,2022-23,Triton-Newbury Elementary,07730020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 354 +5.161290322580645,5,a-picp-i1,2022-23,Triton-Pine Grove,07730025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 395 +5.161290322580645,5,a-picp-i1,2022-23,Triton-Salisbury Elementary,07730015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 379 +2.601290322580645,2.6,a-picp-i1,2022-23,Triton-Triton Regional High School,07730505,"","","","","","","","","", 74.1, 34.8, 36.9, 54.3, 50.4, 635 +5.099354838709678,5,a-picp-i1,2022-23,Triton-Triton Regional Middle School,07730405,"","","","","","","", 98.8, 98.7,"","","","", 98.8, 320 +5.161290322580645,5,a-picp-i1,2022-23,Truro-Truro Central,03000005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 79 +5.130322580645162,5,a-picp-i1,2022-23,Tyngsborough-Tyngsborough Elementary,03010020, 98.1, 100.0, 99.1, 100.0, 100.0, 99.1,"","","","","","","", 99.4, 694 +3.4012903225806457,3.4,a-picp-i1,2022-23,Tyngsborough-Tyngsborough High School,03010505,"","","","","","","","","", 59.7, 62.0, 63.3, 78.2, 65.9, 419 +5.0116129032258065,5,a-picp-i1,2022-23,Tyngsborough-Tyngsborough Middle,03010305,"","","","","","", 98.0, 99.2, 94.1,"","","","", 97.1, 407 +5.161290322580645,5,a-picp-i1,2022-23,UP Academy Charter School of Boston (District)-UP Academy Charter School of Boston,04800405,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 203 +5.161290322580645,5,a-picp-i1,2022-23,UP Academy Charter School of Dorchester (District)-UP Academy Charter School of Dorchester,35050405, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 541 +5.161290322580645,5,a-picp-i1,2022-23,Up-Island Regional-Chilmark Elementary,07740010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 69 +3.958709677419355,3.96,a-picp-i1,2022-23,Up-Island Regional-West Tisbury Elementary,07740020, 100.0, 100.0, 97.1, 100.0, 97.6, 100.0, 100.0, 22.2, 12.8,"","","","", 76.7, 335 +0.0,1,a-picp-i1,2022-23,Upper Cape Cod Regional Vocational Technical-Upper Cape Cod Vocational Technical,08790605,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 746 +0.4593548387096774,1,a-picp-i1,2022-23,Uxbridge-Gateway to College,03040515,"","","","","","","","","","", 0.0, 0.0, 18.2, 8.9, 45 +5.161290322580645,5,a-picp-i1,2022-23,Uxbridge-Taft Early Learning Center,03040005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 452 +2.689032258064516,2.69,a-picp-i1,2022-23,Uxbridge-Uxbridge High,03040505,"","","","","","","","", 25.9, 66.7, 59.1, 64.4, 56.8, 52.1, 593 +5.12,5,a-picp-i1,2022-23,Uxbridge-Whitin Intermediate,03040405,"","","","", 100.0, 99.2, 100.0, 97.7,"","","","","", 99.2, 491 +4.670967741935484,4.67,a-picp-i1,2022-23,Veritas Preparatory Charter School (District)-Veritas Preparatory Charter School,04980405,"","","","","", 100.0, 100.0, 100.0, 100.0, 48.9,"","","", 90.5, 484 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Central Tree Middle,07750310,"","","","","","", 100.0, 100.0, 100.0,"","","","", 100.0, 372 +5.032258064516129,5,a-picp-i1,2022-23,Wachusett-Chocksett Middle School,07750315,"","","","","", 98.5, 95.2, 97.6, 98.6,"","","","", 97.5, 281 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Davis Hill Elementary,07750018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 451 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Dawson,07750020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 499 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Glenwood Elementary School,07750060,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 337 +5.145806451612903,5,a-picp-i1,2022-23,Wachusett-Houghton Elementary,07750027, 100.0, 98.4, 100.0, 100.0, 100.0,"","","","","","","","", 99.7, 328 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Leroy E.Mayo,07750032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 487 +5.145806451612903,5,a-picp-i1,2022-23,Wachusett-Mountview Middle,07750305,"","","","","","", 99.3, 100.0, 100.0,"","","","", 99.7, 781 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Naquag Elementary School,07750005, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 367 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Paxton Center,07750040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 447 +5.161290322580645,5,a-picp-i1,2022-23,Wachusett-Thomas Prince,07750045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 343 +2.8180645161290325,2.82,a-picp-i1,2022-23,Wachusett-Wachusett Regional High,07750505,"","","","","","","","","", 75.8, 66.3, 35.3, 42.5, 54.6," 1,919" +5.150967741935483,5,a-picp-i1,2022-23,Wakefield-Dolbeare,03050005, 98.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 99.8, 437 +5.083870967741936,5,a-picp-i1,2022-23,Wakefield-Galvin Middle School,03050310,"","","","","", 98.5, 97.4, 99.2, 98.9,"","","","", 98.5," 1,074" +5.161290322580645,5,a-picp-i1,2022-23,Wakefield-Greenwood,03050020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 218 +3.2516129032258063,3.25,a-picp-i1,2022-23,Wakefield-Wakefield Memorial High,03050505,"","","","","","","","","", 70.5, 66.3, 49.0, 64.7, 63.0, 825 +5.161290322580645,5,a-picp-i1,2022-23,Wakefield-Walton,03050040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 211 +5.1251612903225805,5,a-picp-i1,2022-23,Wakefield-Woodville School,03050015, 100.0, 97.5, 99.0, 100.0, 100.0,"","","","","","","","", 99.3, 406 +4.252903225806452,4.25,a-picp-i1,2022-23,Wales-Wales Elementary,03060005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 82.4, 91 +4.9961290322580645,5.0,a-picp-i1,2022-23,Walpole-Bird Middle,03070305,"","","","","","", 99.3, 96.1, 94.8,"","","","", 96.8, 377 +5.161290322580645,5,a-picp-i1,2022-23,Walpole-Boyden,03070010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 411 +5.047741935483871,5,a-picp-i1,2022-23,Walpole-Eleanor N Johnson Middle,03070310,"","","","","","", 97.9, 97.2, 98.5,"","","","", 97.8, 417 +5.150967741935483,5,a-picp-i1,2022-23,Walpole-Elm Street School,03070005, 100.0, 100.0, 100.0, 98.5, 100.0, 100.0,"","","","","","","", 99.8, 445 +5.161290322580645,5,a-picp-i1,2022-23,Walpole-Fisher,03070015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 471 +5.161290322580645,5,a-picp-i1,2022-23,Walpole-Old Post Road,03070018, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 459 +3.6593548387096777,3.66,a-picp-i1,2022-23,Walpole-Walpole High,03070505,"","","","","","","","","", 61.9, 75.7, 70.5, 75.3, 70.9, 984 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Douglas MacArthur Elementary School,03080032, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 476 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Henry Whittemore Elementary School,03080065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 385 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-James Fitzgerald Elementary School,03080060, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 385 +5.083870967741936,5,a-picp-i1,2022-23,Waltham-John F Kennedy Middle,03080404,"","","","","","", 98.3, 99.0, 98.3,"","","","", 98.5, 612 +5.145806451612903,5,a-picp-i1,2022-23,Waltham-John W. McDevitt Middle School,03080415,"","","","","","", 100.0, 99.0, 100.0,"","","","", 99.7, 605 +5.150967741935483,5,a-picp-i1,2022-23,Waltham-Northeast Elementary School,03080040, 98.9, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.8, 454 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Thomas R Plympton Elementary School,03080050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 348 +5.161290322580645,5,a-picp-i1,2022-23,Waltham-Waltham Public Schools Dual Language Program,03080001, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 210 +3.0606451612903225,3.06,a-picp-i1,2022-23,Waltham-Waltham Sr High,03080505,"","","","","","","","","", 63.9, 71.1, 53.4, 45.5, 59.3," 1,807" +5.161290322580645,5,a-picp-i1,2022-23,Waltham-William F. Stanley Elementary School,03080005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 319 +5.161290322580645,5,a-picp-i1,2022-23,Ware-Stanley M Koziol Elementary School,03090020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 322 +3.6696774193548385,3.67,a-picp-i1,2022-23,Ware-Ware Junior/Senior High School,03090505,"","","","","","","", 95.2, 93.9, 37.4, 58.7, 63.1, 70.9, 71.1, 505 +5.099354838709678,5,a-picp-i1,2022-23,Ware-Ware Middle School,03090305,"","","","", 98.9, 100.0, 97.5,"","","","","","", 98.8, 252 +0.18580645161290324,1,a-picp-i1,2022-23,Wareham-Wareham Cooperative Alternative School,03100315,"","","","","","","","","", 0.0, 14.3, 0.0, 0.0, 3.6, 28 +5.161290322580645,5,a-picp-i1,2022-23,Wareham-Wareham Elementary School,03100017, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 839 +4.949677419354839,4.95,a-picp-i1,2022-23,Wareham-Wareham Middle,03100305,"","","","","", 93.0, 97.6, 97.5,"","","","","", 95.9, 437 +3.7006451612903226,3.7,a-picp-i1,2022-23,Wareham-Wareham Senior High,03100505,"","","","","","","","", 82.4, 75.5, 53.5, 58.5, 77.9, 71.7, 612 +5.161290322580645,5,a-picp-i1,2022-23,Watertown-Cunniff,03140015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 321 +5.161290322580645,5,a-picp-i1,2022-23,Watertown-Hosmer,03140020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 585 +5.161290322580645,5,a-picp-i1,2022-23,Watertown-James Russell Lowell,03140025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 361 +2.9109677419354836,2.91,a-picp-i1,2022-23,Watertown-Watertown High,03140505,"","","","","","","","","", 72.6, 50.0, 50.6, 49.7, 56.4, 762 +5.150967741935483,5,a-picp-i1,2022-23,Watertown-Watertown Middle,03140305,"","","","","","", 99.5, 100.0, 100.0,"","","","", 99.8, 549 +5.161290322580645,5,a-picp-i1,2022-23,Wayland-Claypit Hill School,03150005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 504 +5.161290322580645,5,a-picp-i1,2022-23,Wayland-Happy Hollow School,03150015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 363 +5.161290322580645,5,a-picp-i1,2022-23,Wayland-Loker School,03150020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 387 +2.441290322580645,2.44,a-picp-i1,2022-23,Wayland-Wayland High School,03150505,"","","","","","","","","", 60.3, 51.4, 39.7, 36.7, 47.3, 823 +5.145806451612903,5,a-picp-i1,2022-23,Wayland-Wayland Middle School,03150305,"","","","","","", 99.5, 99.5, 100.0,"","","","", 99.7, 623 +3.6490322580645165,3.65,a-picp-i1,2022-23,Webster-Bartlett High School,03160505,"","","","","","","","","", 61.9, 69.6, 75.3, 78.8, 70.7, 365 +5.161290322580645,5,a-picp-i1,2022-23,Webster-Park Avenue Elementary,03160015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 689 +5.0116129032258065,5,a-picp-i1,2022-23,Webster-Webster Middle School,03160315,"","","","","", 98.5, 95.8, 96.4, 98.2,"","","","", 97.1, 624 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Ernest F Upham,03170050, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 159 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Hunnewell,03170025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 195 +5.135483870967742,5,a-picp-i1,2022-23,Wellesley-John D Hardy,03170020, 100.0, 97.5, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 210 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Joseph E Fiske,03170015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 295 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Katharine Lee Bates,03170005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 266 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Schofield,03170045, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 331 +5.161290322580645,5,a-picp-i1,2022-23,Wellesley-Sprague Elementary School,03170048, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 294 +4.975483870967742,4.98,a-picp-i1,2022-23,Wellesley-Wellesley Middle,03170305,"","","","","","", 98.4, 97.4, 93.5,"","","","", 96.4, 935 +3.096774193548387,3.1,a-picp-i1,2022-23,Wellesley-Wellesley Sr High,03170505,"","","","","","","","","", 63.4, 65.2, 58.0, 53.6, 60.0," 1,405" +5.161290322580645,5,a-picp-i1,2022-23,Wellfleet-Wellfleet Elementary,03180005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 93 +5.161290322580645,5,a-picp-i1,2022-23,West Boylston-Major Edwards Elementary,03220005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 398 +4.572903225806451,4.57,a-picp-i1,2022-23,West Boylston-West Boylston Junior/Senior High,03220505,"","","","","","", 100.0, 97.3, 97.2, 87.3, 79.2, 82.5, 71.0, 88.6, 437 +5.161290322580645,5,a-picp-i1,2022-23,West Bridgewater-Howard School,03230305,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 319 +5.145806451612903,5,a-picp-i1,2022-23,West Bridgewater-Rose L Macdonald,03230003,"", 100.0, 100.0, 99.0,"","","","","","","","","", 99.7, 319 +5.161290322580645,5,a-picp-i1,2022-23,West Bridgewater-Spring Street School,03230005, 100.0,"","","","","","","","","","","","", 100.0, 104 +4.794838709677419,4.79,a-picp-i1,2022-23,West Bridgewater-West Bridgewater Junior/Senior,03230505,"","","","","","","", 100.0, 99.1, 96.5, 91.8, 86.3, 81.8, 92.9, 638 +5.130322580645162,5,a-picp-i1,2022-23,West Springfield-John Ashley,03320005, 99.4,"","","","","","","","","","","","", 99.4, 176 +5.135483870967742,5,a-picp-i1,2022-23,West Springfield-John R Fausey,03320010,"", 100.0, 98.9, 98.8, 100.0, 100.0,"","","","","","","", 99.5, 412 +5.135483870967742,5,a-picp-i1,2022-23,West Springfield-Memorial,03320025,"", 97.5, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 193 +5.1251612903225805,5,a-picp-i1,2022-23,West Springfield-Mittineague,03320030,"", 100.0, 100.0, 100.0, 100.0, 97.3,"","","","","","","", 99.3, 150 +5.037419354838709,5,a-picp-i1,2022-23,West Springfield-Philip G Coburn,03320007, 94.7, 99.0, 95.6, 99.1, 97.6, 98.9,"","","","","","","", 97.6, 572 +5.140645161290323,5,a-picp-i1,2022-23,West Springfield-Tatham,03320040,"", 100.0, 100.0, 97.6, 100.0, 100.0,"","","","","","","", 99.6, 225 +3.556129032258065,3.56,a-picp-i1,2022-23,West Springfield-West Springfield High,03320505,"","","","","","","","","", 71.5, 70.5, 73.0, 60.2, 68.9," 1,203" +4.7380645161290325,4.74,a-picp-i1,2022-23,West Springfield-West Springfield Middle,03320305,"","","","","","", 93.9, 94.2, 87.3,"","","","", 91.8, 953 +5.161290322580645,5,a-picp-i1,2022-23,Westborough-Annie E Fales,03210010, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 335 +4.913548387096775,4.91,a-picp-i1,2022-23,Westborough-Elsie A Hastings Elementary,03210025, 78.1, 100.0, 100.0, 100.0,"","","","","","","","","", 95.2, 332 +5.161290322580645,5,a-picp-i1,2022-23,Westborough-J Harding Armstrong,03210005, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 407 +5.161290322580645,5,a-picp-i1,2022-23,Westborough-Mill Pond School,03210045,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 874 +5.073548387096774,5,a-picp-i1,2022-23,Westborough-Sarah W Gibbons Middle,03210305,"","","","","","","", 99.0, 97.7,"","","","", 98.3, 605 +2.750967741935484,2.75,a-picp-i1,2022-23,Westborough-Westborough High,03210505,"","","","","","","","","", 58.1, 47.6, 49.3, 59.3, 53.3," 1,188" +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Abner Gibbs,03250020, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 180 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Franklin Ave,03250015, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 175 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Highland,03250025, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 359 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Munger Hill,03250033, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 332 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Paper Mill,03250036, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 329 +5.161290322580645,5,a-picp-i1,2022-23,Westfield-Southampton Road,03250040, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 291 +3.370322580645161,3.37,a-picp-i1,2022-23,Westfield-Westfield High,03250505,"","","","","","","","","", 64.0, 75.9, 54.6, 66.4, 65.3, 993 +4.949677419354839,4.95,a-picp-i1,2022-23,Westfield-Westfield Intermediate School,03250075,"","","","","", 93.5, 98.1,"","","","","","", 95.9, 682 +3.576774193548387,3.58,a-picp-i1,2022-23,Westfield-Westfield Middle School,03250310,"","","","","","","", 63.3, 76.2,"","","","", 69.3, 687 +1.001290322580645,1.0,a-picp-i1,2022-23,Westfield-Westfield Technical Academy,03250605,"","","","","","","","","", 15.7, 10.2, 22.8, 31.0, 19.4, 536 +4.794838709677419,4.79,a-picp-i1,2022-23,Westfield-Westfield Virtual School,03250705,"","", 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 80.0, 33.3, 92.9, 70 +5.145806451612903,5,a-picp-i1,2022-23,Westford-Abbot Elementary,03260004,"","","", 100.0, 100.0, 99.2,"","","","","","","", 99.7, 365 +5.140645161290323,5,a-picp-i1,2022-23,Westford-Blanchard Middle,03260310,"","","","","","", 98.9, 100.0, 100.0,"","","","", 99.6, 549 +5.099354838709678,5,a-picp-i1,2022-23,Westford-Col John Robinson,03260025, 99.1, 97.3, 100.0,"","","","","","","","","","", 98.8, 324 +5.114838709677419,5,a-picp-i1,2022-23,Westford-Day Elementary,03260007,"","","", 99.0, 99.0, 99.2,"","","","","","","", 99.1, 329 +5.114838709677419,5,a-picp-i1,2022-23,Westford-John A. Crisafulli Elementary School,03260045,"","","", 100.0, 98.4, 99.2,"","","","","","","", 99.1, 346 +5.104516129032258,5,a-picp-i1,2022-23,Westford-Nabnasset,03260015, 99.1, 99.0, 98.6,"","","","","","","","","","", 98.9, 351 +5.104516129032258,5,a-picp-i1,2022-23,Westford-Rita E. Miller Elementary School,03260055, 97.5, 98.9, 100.0,"","","","","","","","","","", 98.9, 262 +5.145806451612903,5,a-picp-i1,2022-23,Westford-Stony Brook School,03260330,"","","","","","", 100.0, 100.0, 99.1,"","","","", 99.7, 619 +2.7561290322580643,2.76,a-picp-i1,2022-23,Westford-Westford Academy,03260505,"","","","","","","","","", 54.7, 59.0, 47.1, 53.1, 53.4," 1,522" +5.161290322580645,5,a-picp-i1,2022-23,Westhampton-Westhampton Elementary School,03270005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 94 +5.145806451612903,5,a-picp-i1,2022-23,Weston-Country,03300010, 98.9, 100.0, 100.0, 100.0,"","","","","","","","","", 99.7, 311 +5.161290322580645,5,a-picp-i1,2022-23,Weston-Field Elementary School,03300012,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 267 +4.412903225806452,4.41,a-picp-i1,2022-23,Weston-Weston High,03300505,"","","","","","","","","", 99.4, 85.8, 75.0, 81.8, 85.5, 642 +5.140645161290323,5,a-picp-i1,2022-23,Weston-Weston Middle,03300305,"","","","","","", 100.0, 99.4, 99.3,"","","","", 99.6, 448 +5.145806451612903,5,a-picp-i1,2022-23,Weston-Woodland,03300015, 98.8, 100.0, 100.0, 100.0,"","","","","","","","","", 99.7, 302 +5.161290322580645,5,a-picp-i1,2022-23,Westport-Alice A Macomber,03310015, 100.0,"","","","","","","","","","","","", 100.0, 107 +5.161290322580645,5,a-picp-i1,2022-23,Westport-Westport Elementary,03310030,"", 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 445 +4.645161290322581,4.65,a-picp-i1,2022-23,Westport-Westport Middle-High School,03310515,"","","","","", 98.3, 99.2, 100.0, 98.5, 75.0, 78.9, 72.6, 74.3, 90.0, 832 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Deerfield School,03350010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 199 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Downey,03350012, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 308 +5.156129032258065,5,a-picp-i1,2022-23,Westwood-E W Thurston Middle,03350305,"","","","","","", 99.5, 100.0, 100.0,"","","","", 99.9, 667 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Martha Jones,03350017, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 267 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-Paul Hanlon,03350015, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 226 +3.6335483870967744,3.63,a-picp-i1,2022-23,Westwood-Westwood High,03350505,"","","","","","","","","", 79.7, 74.5, 56.5, 72.7, 70.4, 906 +5.161290322580645,5,a-picp-i1,2022-23,Westwood-William E Sheehan,03350025, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 285 +5.130322580645162,5,a-picp-i1,2022-23,Weymouth-Academy Avenue,03360005, 100.0, 98.3, 98.3, 100.0, 100.0, 100.0,"","","","","","","", 99.4, 350 +5.140645161290323,5,a-picp-i1,2022-23,Weymouth-Frederick C Murphy,03360050, 97.8, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 285 +5.161290322580645,5,a-picp-i1,2022-23,Weymouth-Lawrence W Pingree,03360065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 263 +5.109677419354838,5,a-picp-i1,2022-23,Weymouth-Maria Weston Chapman Middle School,03360020,"","","","","", 100.0, 99.8, 99.0, 98.3,"","","","", 99.0," 1,230" +5.042580645161291,5,a-picp-i1,2022-23,Weymouth-Ralph Talbot,03360085, 97.9, 97.7, 95.5, 95.7, 100.0, 100.0,"","","","","","","", 97.7, 265 +5.140645161290323,5,a-picp-i1,2022-23,Weymouth-Thomas V Nash,03360060, 97.9, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.6, 242 +5.145806451612903,5,a-picp-i1,2022-23,Weymouth-Thomas W. Hamilton Primary School,03360105, 98.6, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.7, 358 +5.130322580645162,5,a-picp-i1,2022-23,Weymouth-Wessagusset,03360110, 97.9, 98.7, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.4, 346 +1.5070967741935484,1.51,a-picp-i1,2022-23,Weymouth-Weymouth High School,03360505,"","","","","","","","","", 32.7, 33.7, 24.3, 25.8, 29.2," 1,793" +5.135483870967742,5,a-picp-i1,2022-23,Weymouth-William Seach,03360080, 97.1, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 99.5, 376 +5.161290322580645,5,a-picp-i1,2022-23,Whately-Whately Elementary,03370005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 113 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-Hanson Middle School,07800315,"","","","","", 100.0, 100.0, 100.0, 100.0,"","","","", 100.0, 446 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-Indian Head,07800035, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","","", 100.0, 485 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-John H Duval,07800030, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 434 +5.161290322580645,5,a-picp-i1,2022-23,Whitman-Hanson-Louise A Conley,07800010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 480 +2.126451612903226,2.13,a-picp-i1,2022-23,Whitman-Hanson-Whitman Hanson Regional,07800505,"","","","","","","","","", 31.2, 51.0, 33.6, 48.1, 41.2," 1,065" +4.55741935483871,4.56,a-picp-i1,2022-23,Whitman-Hanson-Whitman Middle,07800310,"","","","","","", 87.0, 97.7, 79.4,"","","","", 88.3, 511 +0.7380645161290323,1,a-picp-i1,2022-23,Whittier Regional Vocational Technical-Whittier Regional Vocational,08850605,"","","","","","","","","", 0.0, 6.9, 13.5, 36.8, 14.3," 1,281" +5.161290322580645,5,a-picp-i1,2022-23,Williamsburg-Anne T. Dunphy School,03400020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 117 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-Boutwell,03420005, 100.0,"","","","","","","","","","","","", 100.0, 101 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-North Intermediate,03420060,"","","","", 100.0, 100.0,"","","","","","","", 100.0, 249 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-Shawsheen Elementary,03420025, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 365 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-West Intermediate,03420080, 100.0,"","","", 100.0, 100.0,"","","","","","","", 100.0, 270 +3.5664516129032253,3.57,a-picp-i1,2022-23,Wilmington-Wilmington High,03420505,"","","","","","","","","", 54.4, 63.9, 73.1, 81.8, 69.1, 663 +4.934193548387096,4.93,a-picp-i1,2022-23,Wilmington-Wilmington Middle School,03420330,"","","","","","", 94.3, 96.6, 95.7,"","","","", 95.6, 638 +5.161290322580645,5,a-picp-i1,2022-23,Wilmington-Woburn Street,03420020, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 424 +5.161290322580645,5,a-picp-i1,2022-23,Winchendon-Memorial,03430040, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 314 +0.0,1,a-picp-i1,2022-23,Winchendon-Murdock Academy for Success,03430405,"","","","","","","","","", 0.0, 0.0, 0.0, 0.0, 0.0, 24 +3.747096774193548,3.75,a-picp-i1,2022-23,Winchendon-Murdock High School,03430515,"","","","","","","","","", 77.5, 75.0, 75.0, 57.1, 72.6, 270 +5.104516129032258,5,a-picp-i1,2022-23,Winchendon-Murdock Middle School,03430315,"","","","","","", 100.0, 98.9, 97.6,"","","","", 98.9, 279 +5.145806451612903,5,a-picp-i1,2022-23,Winchendon-Toy Town Elementary,03430050,"","","", 98.9, 100.0, 100.0,"","","","","","","", 99.7, 292 +4.485161290322581,4.49,a-picp-i1,2022-23,Winchester-Ambrose Elementary,03440045, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 86.9, 344 +4.381935483870968,4.38,a-picp-i1,2022-23,Winchester-Lincoln Elementary,03440005, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 84.9, 332 +4.505806451612903,4.51,a-picp-i1,2022-23,Winchester-Lynch Elementary,03440020, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.3, 426 +5.027096774193549,5,a-picp-i1,2022-23,Winchester-McCall Middle,03440305,"","","","","","", 96.9, 98.3, 97.0,"","","","", 97.4," 1,036" +4.392258064516128,4.39,a-picp-i1,2022-23,Winchester-Muraco Elementary,03440040, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 85.1, 328 +4.505806451612903,4.51,a-picp-i1,2022-23,Winchester-Vinson-Owen Elementary,03440025, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 87.3, 408 +2.7561290322580643,2.76,a-picp-i1,2022-23,Winchester-Winchester High School,03440505,"","","","","","","","","", 68.1, 59.4, 48.4, 37.2, 53.4," 1,379" +5.161290322580645,5,a-picp-i1,2022-23,Winthrop-Arthur T. Cummings Elementary School,03460020,"","","", 100.0, 100.0, 100.0,"","","","","","","", 100.0, 438 +5.161290322580645,5,a-picp-i1,2022-23,Winthrop-William P. Gorman/Fort Banks Elementary,03460015, 100.0, 100.0, 100.0,"","","","","","","","","","", 100.0, 450 +2.5393548387096776,2.54,a-picp-i1,2022-23,Winthrop-Winthrop High School,03460505,"","","","","","","","","", 80.8, 28.6, 39.4, 43.6, 49.2, 608 +5.150967741935483,5,a-picp-i1,2022-23,Winthrop-Winthrop Middle School,03460305,"","","","","","", 100.0, 99.2, 100.0,"","","","", 99.8, 441 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Clyde Reeves,03470040, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 294 +5.150967741935483,5,a-picp-i1,2022-23,Woburn-Daniel L Joyce Middle School,03470410,"","","","","","", 100.0, 100.0, 99.3,"","","","", 99.8, 462 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Goodyear Elementary School,03470005, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 319 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Hurld-Wyman Elementary School,03470020, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 392 +5.037419354838709,5,a-picp-i1,2022-23,Woburn-John F Kennedy Middle School,03470405,"","","","","","", 96.7, 98.2, 97.8,"","","","", 97.6, 533 +5.109677419354838,5,a-picp-i1,2022-23,Woburn-Linscott-Rumford,03470025, 100.0, 97.4, 100.0, 100.0, 96.4, 100.0,"","","","","","","", 99.0, 199 +4.789677419354838,4.79,a-picp-i1,2022-23,Woburn-Malcolm White,03470055, 100.0, 100.0, 93.8, 96.4, 68.4, 100.0,"","","","","","","", 92.8, 318 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Mary D Altavesta,03470065, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 195 +5.161290322580645,5,a-picp-i1,2022-23,Woburn-Shamrock,03470043, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","","", 100.0, 253 +2.4980645161290322,2.5,a-picp-i1,2022-23,Woburn-Woburn High,03470505,"","","","","","","","","", 54.8, 46.4, 53.1, 39.1, 48.4," 1,183" +5.099354838709678,5,a-picp-i1,2022-23,Worcester-Belmont Street Community,03480020, 98.7, 100.0, 100.0, 100.0, 97.0, 96.9, 100.0,"","","","","","", 98.8, 505 +4.815483870967742,4.82,a-picp-i1,2022-23,Worcester-Burncoat Middle School,03480405,"","","","","","","", 89.8, 97.0,"","","","", 93.3, 697 +3.0709677419354837,3.07,a-picp-i1,2022-23,Worcester-Burncoat Senior High,03480503,"","","","","","","","","", 67.6, 53.1, 57.1, 58.7, 59.5," 1,148" +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Burncoat Street,03480035, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 230 +5.1251612903225805,5,a-picp-i1,2022-23,Worcester-Canterbury,03480045, 100.0, 100.0, 100.0, 96.9, 100.0, 97.6, 100.0,"","","","","","", 99.3, 276 +5.058064516129032,5,a-picp-i1,2022-23,Worcester-Chandler Elementary Community,03480050, 98.3, 100.0, 95.9, 98.1, 95.7, 100.0, 98.6,"","","","","","", 98.0, 410 +5.104516129032258,5,a-picp-i1,2022-23,Worcester-Chandler Magnet,03480052, 100.0, 100.0, 97.2, 100.0, 98.3, 96.7, 100.0,"","","","","","", 98.9, 364 +5.058064516129032,5,a-picp-i1,2022-23,Worcester-City View,03480053, 98.2, 98.4, 97.6, 97.7, 96.3, 98.7, 98.4,"","","","","","", 98.0, 397 +3.7780645161290325,3.78,a-picp-i1,2022-23,Worcester-Claremont Academy,03480350,"","","","","","","", 92.5, 49.5, 95.7, 22.0, 98.7, 98.6, 73.2, 485 +5.001290322580646,5,a-picp-i1,2022-23,Worcester-Clark St Community,03480055, 100.0, 97.1, 100.0, 96.0, 91.9, 94.1, 100.0,"","","","","","", 96.9, 223 +4.9961290322580645,5.0,a-picp-i1,2022-23,Worcester-Columbus Park,03480060, 94.0, 97.9, 100.0, 96.8, 93.2, 96.1, 100.0,"","","","","","", 96.8, 347 +2.8645161290322583,2.86,a-picp-i1,2022-23,Worcester-Doherty Memorial High,03480512,"","","","","","","","","", 56.7, 49.9, 59.1, 56.5, 55.5," 1,341" +5.0116129032258065,5,a-picp-i1,2022-23,Worcester-Elm Park Community,03480095, 98.4, 100.0, 98.1, 100.0, 91.5, 94.9, 98.4,"","","","","","", 97.1, 415 +5.12,5,a-picp-i1,2022-23,Worcester-Flagg Street,03480090, 95.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.2, 362 +5.042580645161291,5,a-picp-i1,2022-23,Worcester-Forest Grove Middle,03480415,"","","","","","","", 96.7, 98.5,"","","","", 97.7, 905 +5.109677419354838,5,a-picp-i1,2022-23,Worcester-Francis J McGrath Elementary,03480177, 100.0, 100.0, 100.0, 100.0, 97.2, 97.1, 100.0,"","","","","","", 99.0, 208 +5.037419354838709,5,a-picp-i1,2022-23,Worcester-Gates Lane,03480110, 94.9, 98.8, 100.0, 95.7, 98.1, 97.2, 100.0,"","","","","","", 97.6, 463 +5.099354838709678,5,a-picp-i1,2022-23,Worcester-Goddard School/Science Technical,03480100, 100.0, 100.0, 97.6, 100.0, 97.8, 96.5, 100.0,"","","","","","", 98.8, 345 +5.047741935483871,5,a-picp-i1,2022-23,Worcester-Grafton Street,03480115, 100.0, 100.0, 96.2, 95.0, 93.1, 100.0, 100.0,"","","","","","", 97.8, 416 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Heard Street,03480136, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 248 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Jacob Hiatt Magnet,03480140, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 319 +5.073548387096774,5,a-picp-i1,2022-23,Worcester-La Familia Dual Language School,03480025, 97.4, 97.4, 100.0, 95.2, 100.0, 100.0, 100.0,"","","","","","", 98.3, 173 +5.145806451612903,5,a-picp-i1,2022-23,Worcester-Lake View,03480145, 100.0, 98.2, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.7, 303 +4.9393548387096775,4.94,a-picp-i1,2022-23,Worcester-Lincoln Street,03480160, 97.8, 97.9, 91.3, 100.0, 90.3, 92.9, 96.2,"","","","","","", 95.7, 233 +5.089032258064516,5,a-picp-i1,2022-23,Worcester-May Street,03480175, 100.0, 100.0, 100.0, 100.0, 97.4, 97.8, 95.5,"","","","","","", 98.6, 294 +5.135483870967742,5,a-picp-i1,2022-23,Worcester-Midland Street,03480185, 100.0, 100.0, 100.0, 100.0, 96.9, 100.0, 100.0,"","","","","","", 99.5, 206 +5.109677419354838,5,a-picp-i1,2022-23,Worcester-Nelson Place,03480200, 98.5, 100.0, 100.0, 100.0, 98.8, 100.0, 94.8,"","","","","","", 99.0, 516 +5.083870967741936,5,a-picp-i1,2022-23,Worcester-Norrback Avenue,03480202, 100.0, 100.0, 96.2, 98.6, 96.3, 98.5, 100.0,"","","","","","", 98.5, 453 +3.3341935483870966,3.33,a-picp-i1,2022-23,Worcester-North High,03480515,"","","","","","","","","", 12.5, 88.9, 90.6, 67.2, 64.6," 1,363" +5.099354838709678,5,a-picp-i1,2022-23,Worcester-Quinsigamond,03480210, 100.0, 99.1, 100.0, 100.0, 97.9, 99.0, 95.3,"","","","","","", 98.8, 688 +5.140645161290323,5,a-picp-i1,2022-23,Worcester-Rice Square,03480215, 100.0, 100.0, 98.7, 100.0, 98.0, 100.0, 100.0,"","","","","","", 99.6, 454 +5.042580645161291,5,a-picp-i1,2022-23,Worcester-Roosevelt,03480220, 95.7, 98.7, 91.3, 100.0, 98.7, 100.0, 100.0,"","","","","","", 97.7, 469 +2.6993548387096773,2.7,a-picp-i1,2022-23,Worcester-South High Community,03480520,"","","","","","","","","", 46.8, 41.1, 66.6, 56.3, 52.3," 1,673" +4.670967741935484,4.67,a-picp-i1,2022-23,Worcester-Sullivan Middle,03480423,"","","","","","", 100.0, 92.9, 87.2,"","","","", 90.5, 834 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Tatnuck,03480230, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 360 +5.130322580645162,5,a-picp-i1,2022-23,Worcester-Thorndyke Road,03480235, 96.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.4, 357 +5.094193548387097,5,a-picp-i1,2022-23,Worcester-Union Hill School,03480240, 100.0, 100.0, 98.4, 100.0, 96.2, 96.7, 100.0,"","","","","","", 98.7, 395 +2.895483870967742,2.9,a-picp-i1,2022-23,Worcester-University Pk Campus School,03480285,"","","","","","","", 100.0, 97.4, 100.0, 0.0, 37.1, 2.6, 56.1, 223 +5.104516129032258,5,a-picp-i1,2022-23,Worcester-Vernon Hill School,03480280, 98.2, 100.0, 97.8, 100.0, 98.6, 96.4, 100.0,"","","","","","", 98.9, 441 +5.161290322580645,5,a-picp-i1,2022-23,Worcester-Wawecus Road School,03480026, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 125 +5.130322580645162,5,a-picp-i1,2022-23,Worcester-West Tatnuck,03480260, 100.0, 100.0, 97.7, 97.8, 100.0, 100.0, 100.0,"","","","","","", 99.4, 314 +5.130322580645162,5,a-picp-i1,2022-23,Worcester-Woodland Academy,03480030, 100.0, 100.0, 100.0, 100.0, 98.4, 97.3, 100.0,"","","","","","", 99.4, 493 +5.145806451612903,5,a-picp-i1,2022-23,Worcester-Worcester Arts Magnet School,03480225, 97.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 99.7, 348 +4.851612903225806,4.85,a-picp-i1,2022-23,Worcester-Worcester East Middle,03480420,"","","","","","","", 92.0, 95.8,"","","","", 94.0, 770 +0.29419354838709677,1,a-picp-i1,2022-23,Worcester-Worcester Technical High,03480605,"","","","","","","","","", 5.3, 3.7, 7.8, 6.2, 5.7," 1,444" +5.161290322580645,5,a-picp-i1,2022-23,Worthington-R. H. Conwell,03490010, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0,"","","","","","", 100.0, 58 +5.161290322580645,5,a-picp-i1,2022-23,Wrentham-Charles E Roderick,03500010,"","","","", 100.0, 100.0, 100.0,"","","","","","", 100.0, 376 +5.161290322580645,5,a-picp-i1,2022-23,Wrentham-Delaney,03500003, 100.0, 100.0, 100.0, 100.0,"","","","","","","","","", 100.0, 502 4.934193548387096,4.93,a-picp-i1,2021-22,Abby Kelley Foster Charter Public (District)-Abby Kelley Foster Charter Public School,04450105, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 99.1, 100.0, 100.0, 60.0, 71.7, 95.6," 1,421" 2.5961290322580646,2.6,a-picp-i1,2021-22,Abington-Abington High,00010505,"","","","","","","","","", 46.3, 56.6, 36.7, 60.0, 50.3, 582 5.083870967741936,5,a-picp-i1,2021-22,Abington-Abington Middle School,00010405,"","","","","", 100.0, 100.0, 98.3, 95.8,"","","","", 98.5, 666 diff --git a/data/admin_data/dese/5D_2_age_staffing.csv b/data/admin_data/dese/5D_2_age_staffing.csv index b67c590b..9e165a7f 100644 --- a/data/admin_data/dese/5D_2_age_staffing.csv +++ b/data/admin_data/dese/5D_2_age_staffing.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,<26 yrs (# ),26-32 yrs (#),33-40 yrs (#),41-48 yrs (#),49-56 yrs (#),57-64 yrs (#),Over 64 yrs (#),FTE Count +5.473777777777777,5,a-phya-i1,2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1421,473.6666666666667 +-Infinity,1,a-phya-i1,2023-24,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +6.005333333333334,5,a-phya-i1,2023-24,Abington - Abington High,00010505, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,561,374.0 +4.608,4.61,a-phya-i1,2023-24,Abington - Abington Middle School,00010405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,636,636.0 +5.301333333333333,5,a-phya-i1,2023-24,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,506,506.0 +6.1226666666666665,5,a-phya-i1,2023-24,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 +2.1333333333333333,2.13,a-phya-i1,2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,440,1100.0 +4.002424242424243,4.0,a-phya-i1,2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,1649,749.5454545454545 +5.541818181818181,5,a-phya-i1,2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.1, 1.1,507,460.9090909090909 +5.8293333333333335,5,a-phya-i1,2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,407,407.0 +-Infinity,1,a-phya-i1,2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +5.997575757575757,5,a-phya-i1,2023-24,Acton-Boxborough - Luther Conant School,06000030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 1.1,413,375.45454545454544 +5.861818181818181,5,a-phya-i1,2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.1, 1.1,441,400.9090909090909 +6.041212121212121,5,a-phya-i1,2023-24,Acton-Boxborough - Merriam School,06000010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.1, 1.1,404,367.27272727272725 +6.273939393939394,5,a-phya-i1,2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.1, 1.1,356,323.6363636363636 +5.832,5,a-phya-i1,2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 0.0, 0.0, 1.0, 0.4, 0.6, 0.0, 2.0,813,406.5 +6.621333333333333,5,a-phya-i1,2023-24,Acushnet - Acushnet Elementary School,00030025, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,517,258.5 +5.76,5,a-phya-i1,2023-24,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,420,420.0 +4.32,4.32,a-phya-i1,2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 0.0, 0.0, 0.6, 0.0, 0.8, 0.0, 1.4,966,690.0 +7.2,5,a-phya-i1,2023-24,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,150,150.0 +2.4,2.4,a-phya-i1,2023-24,Agawam - Agawam High,00050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1050,1050.0 +-Infinity,1,a-phya-i1,2023-24,Agawam - Agawam Junior High,00050405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +-Infinity,1,a-phya-i1,2023-24,Agawam - Benjamin J Phelps,00050020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,308,Infinity +6.117333333333334,5,a-phya-i1,2023-24,Agawam - Clifford M Granger,00050010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,353,353.0 +6.384,5,a-phya-i1,2023-24,Agawam - James Clark School,00050030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,303,303.0 +5.312,5,a-phya-i1,2023-24,Agawam - Roberta G. Doering School,00050303, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,504,504.0 +-Infinity,1,a-phya-i1,2023-24,Agawam - William P. Sapelli Elementary,00050025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +7.074666666666666,5,a-phya-i1,2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0.0, 3.0, 1.0, 1.0, 1.0, 0.0, 0.0, 6.0,1041,173.5 +5.52,5,a-phya-i1,2023-24,Amesbury - Amesbury High,00070505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +7.728,5,a-phya-i1,2023-24,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,51,51.0 +5.781333333333333,5,a-phya-i1,2023-24,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,416,416.0 +5.8773333333333335,5,a-phya-i1,2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +5.402666666666667,5,a-phya-i1,2023-24,Amesbury - Shay Elementary,00070005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,487,487.0 +6.261333333333333,5,a-phya-i1,2023-24,Amherst - Crocker Farm Elementary,00080009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,326,326.0 +7.077333333333334,5,a-phya-i1,2023-24,Amherst - Fort River Elementary,00080020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,346,173.0 +6.341333333333333,5,a-phya-i1,2023-24,Amherst - Wildwood Elementary,00080050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,311,311.0 +6.398095238095238,5,a-phya-i1,2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 1.0, 2.8,841,300.3571428571429 +6.032,5,a-phya-i1,2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +3.728253968253968,3.73,a-phya-i1,2023-24,Andover - Andover High,00090505, 0.0, 0.0, 1.0, 0.0, 1.1, 0.0, 0.0, 2.1,1682,800.952380952381 +5.60969696969697,5,a-phya-i1,2023-24,Andover - Andover West Middle,00090310, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,493,448.18181818181813 +5.46909090909091,5,a-phya-i1,2023-24,Andover - Bancroft Elementary,00090003, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,522,474.5454545454545 +5.76,5,a-phya-i1,2023-24,Andover - Doherty Middle,00090305, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,462,419.99999999999994 +6.380606060606061,5,a-phya-i1,2023-24,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 1.1,334,303.6363636363636 +5.362424242424242,5,a-phya-i1,2023-24,Andover - High Plain Elementary,00090004, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,544,494.5454545454545 +7.789206349206348,5,a-phya-i1,2023-24,Andover - Shawsheen School,00090005, 0.0, 1.0, 0.0, 1.0, 0.1, 0.0, 0.0, 2.1,83,39.523809523809526 +5.905454545454545,5,a-phya-i1,2023-24,Andover - South Elementary,00090020, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.5, 1.1,432,392.7272727272727 +6.565079365079365,5,a-phya-i1,2023-24,Andover - West Elementary,00090025, 0.0, 0.0, 0.0, 1.0, 1.1, 0.0, 0.0, 2.1,565,269.04761904761904 +6.395151515151515,5,a-phya-i1,2023-24,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 0.0, 1.0, 0.1, 0.0, 0.0, 1.1,331,300.9090909090909 +5.8133333333333335,5,a-phya-i1,2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0.0, 0.0, 0.7, 0.7, 0.0, 0.0, 0.0, 1.4,574,410.0 +5.616296296296297,5,a-phya-i1,2023-24,Arlington - Arlington High,00100505, 0.0, 2.0, 0.0, 0.6, 1.0, 0.0, 0.0, 3.6,1609,446.94444444444446 +5.744,5,a-phya-i1,2023-24,Arlington - Brackett,00100010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +5.818666666666667,5,a-phya-i1,2023-24,Arlington - Cyrus E Dallin,00100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +6.217142857142857,5,a-phya-i1,2023-24,Arlington - Gibbs School,00100305, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,468,334.28571428571433 +6.978666666666666,5,a-phya-i1,2023-24,Arlington - Hardy,00100030, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,383,191.5 +5.914666666666666,5,a-phya-i1,2023-24,Arlington - John A Bishop,00100005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +6.834666666666666,5,a-phya-i1,2023-24,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,437,218.5 +7.578666666666667,5,a-phya-i1,2023-24,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,79,79.0 +5.490666666666667,5,a-phya-i1,2023-24,Arlington - Ottoson Middle,00100410, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,941,470.5 +6.213333333333333,5,a-phya-i1,2023-24,Arlington - Peirce,00100045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,335,335.0 +3.36,3.36,a-phya-i1,2023-24,Arlington - Thompson,00100050, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,522,870.0 +5.376,5,a-phya-i1,2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,492,492.0 +6.96,5,a-phya-i1,2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,195,195.0 +4.618666666666667,4.62,a-phya-i1,2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,634,634.0 +5.1466666666666665,5,a-phya-i1,2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,535,535.0 +5.824,5,a-phya-i1,2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +4.133333333333334,4.13,a-phya-i1,2023-24,Ashland - Ashland High,00140505, 0.0, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 1.2,870,725.0 +1.964444444444444,1.96,a-phya-i1,2023-24,Ashland - Ashland Middle,00140405, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,679,1131.6666666666667 +6.221333333333333,5,a-phya-i1,2023-24,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,667,333.5 +6.370666666666667,5,a-phya-i1,2023-24,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,611,305.5 +7.594666666666667,5,a-phya-i1,2023-24,Ashland - William Pittaway Elementary,00140005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,76,76.0 +4.986666666666666,4.99,a-phya-i1,2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1130,565.0 +-Infinity,1,a-phya-i1,2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +-Infinity,1,a-phya-i1,2023-24,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,414,Infinity +5.530666666666667,5,a-phya-i1,2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,463,463.0 +7.210666666666667,5,a-phya-i1,2023-24,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,148,148.0 +5.765333333333333,5,a-phya-i1,2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,1257,419.0 +6.1386666666666665,5,a-phya-i1,2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +-Infinity,1,a-phya-i1,2023-24,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,68,Infinity +4.051282051282051,4.05,a-phya-i1,2023-24,Attleboro - Attleboro High,00160505, 0.0, 0.0, 1.0, 1.0, 0.6, 0.0, 0.0, 2.6,1925,740.3846153846154 +-Infinity,1,a-phya-i1,2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,31,Infinity +4.730666666666667,4.73,a-phya-i1,2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,613,613.0 +-Infinity,1,a-phya-i1,2023-24,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +5.770666666666667,5,a-phya-i1,2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,418,418.0 +5.562666666666667,5,a-phya-i1,2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,457,457.0 +7.022222222222221,5,a-phya-i1,2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 0.0, 0.0, 0.4, 2.0, 0.0, 0.0, 2.4,440,183.33333333333334 +6.076666666666667,5,a-phya-i1,2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 0.0, 1.6,577,360.625 +6.010666666666666,5,a-phya-i1,2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,373,373.0 +4.906666666666666,4.91,a-phya-i1,2023-24,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,580,580.0 +6.724102564102564,5,a-phya-i1,2023-24,Auburn - Auburn Middle,00170305, 0.0, 1.0, 0.0, 0.6, 1.0, 0.0, 0.0, 2.6,622,239.23076923076923 +6.551111111111111,5,a-phya-i1,2023-24,Auburn - Auburn Senior High,00170505, 0.6, 0.0, 0.0, 2.0, 0.4, 0.0, 0.0, 3.0,815,271.6666666666667 +6.629333333333333,5,a-phya-i1,2023-24,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,257,257.0 +6.698666666666667,5,a-phya-i1,2023-24,Auburn - Pakachoag School,00170025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,244,244.0 +6.504,5,a-phya-i1,2023-24,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,561,280.5 +5.824,5,a-phya-i1,2023-24,Avon - Avon Middle High School,00180510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +7.136,5,a-phya-i1,2023-24,Avon - Ralph D Butler,00180010, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,324,162.0 +5.802666666666667,5,a-phya-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +5.978666666666666,5,a-phya-i1,2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,379,379.0 +6.101333333333334,5,a-phya-i1,2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +5.12,5,a-phya-i1,2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,540,540.0 +6.626666666666667,5,a-phya-i1,2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 1.2,309,257.5 +4.253866666666667,4.25,a-phya-i1,2023-24,Barnstable - Barnstable High,00200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.5, 0.0, 2.5,1756,702.4 +6.296,5,a-phya-i1,2023-24,Barnstable - Barnstable Intermediate School,00200315, 0.0, 0.0, 1.5, 0.0, 0.0, 0.5, 0.0, 2.0,639,319.5 +6.117333333333334,5,a-phya-i1,2023-24,Barnstable - Barnstable United Elementary School,00200050, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,706,353.0 +6.844444444444444,5,a-phya-i1,2023-24,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,260,216.66666666666669 +7.184,5,a-phya-i1,2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,153,153.0 +7.170909090909091,5,a-phya-i1,2023-24,Barnstable - Hyannis West Elementary,00200025, 0.0, 1.0, 0.2, 1.0, 0.0, 0.0, 0.0, 2.2,342,155.45454545454544 +6.875555555555555,5,a-phya-i1,2023-24,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,253,210.83333333333334 +4.96,4.96,a-phya-i1,2023-24,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.2, 0.5, 0.0, 0.0, 0.0, 0.7,399,570.0 +5.792,5,a-phya-i1,2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,414,414.0 +4.920888888888888,4.92,a-phya-i1,2023-24,Bedford - Bedford High,00230505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 1.5,866,577.3333333333334 +2.56,2.56,a-phya-i1,2023-24,Bedford - John Glenn Middle,00230305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,612,1020.0 +6.3,5,a-phya-i1,2023-24,Bedford - Lt Eleazer Davis,00230010, 0.0, 0.6, 0.0, 1.0, 0.0, 0.0, 0.0, 1.6,510,318.75 +-Infinity,1,a-phya-i1,2023-24,Bedford - Lt Job Lane School,00230012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,571,Infinity +5.706666666666667,5,a-phya-i1,2023-24,Belchertown - Belchertown High,00240505, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,602,430.0 +6.137142857142858,5,a-phya-i1,2023-24,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,489,349.28571428571433 +7.28,5,a-phya-i1,2023-24,Belchertown - Cold Spring,00240005, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 0.0, 1.4,189,135.0 +6.731428571428571,5,a-phya-i1,2023-24,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,333,237.85714285714286 +6.217142857142857,5,a-phya-i1,2023-24,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,468,334.28571428571433 +-Infinity,1,a-phya-i1,2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,109,Infinity +4.005333333333334,4.01,a-phya-i1,2023-24,Bellingham - Bellingham High School,00250505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,749,749.0 +4.848,4.85,a-phya-i1,2023-24,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,591,591.0 +6.389333333333333,5,a-phya-i1,2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,302,302.0 +-Infinity,1,a-phya-i1,2023-24,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,26,Infinity +6.864,5,a-phya-i1,2023-24,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,213,213.0 +4.101333333333334,4.1,a-phya-i1,2023-24,Belmont - Belmont High,00260505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1462,731.0 +5.462857142857143,5,a-phya-i1,2023-24,Belmont - Belmont Middle School,00260315, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 0.0, 1.4,666,475.7142857142857 +6.288,5,a-phya-i1,2023-24,Belmont - Daniel Butler,00260015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,321,321.0 +6.282666666666667,5,a-phya-i1,2023-24,Belmont - Mary Lee Burbank,00260010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,322,322.0 +6.453333333333333,5,a-phya-i1,2023-24,Belmont - Roger E Wellington,00260035, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.4, 1.8,522,290.0 +5.770666666666667,5,a-phya-i1,2023-24,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,418,418.0 +6.0986666666666665,5,a-phya-i1,2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,713,356.5 +-Infinity,1,a-phya-i1,2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,346,Infinity +5.632,5,a-phya-i1,2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,888,444.0 +2.976,2.98,a-phya-i1,2023-24,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,471,942.0 +4.1066666666666665,4.11,a-phya-i1,2023-24,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,365,730.0 +6.053333333333334,5,a-phya-i1,2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +5.594666666666667,5,a-phya-i1,2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,451,451.0 +5.973333333333334,5,a-phya-i1,2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,380,380.0 +6.144,5,a-phya-i1,2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,348,348.0 +7.0892307692307694,5,a-phya-i1,2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,222,170.76923076923077 +6.621538461538461,5,a-phya-i1,2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 0.3, 1.0, 0.0, 0.0, 1.3,336,258.46153846153845 +-1.8488888888888892,1,a-phya-i1,2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,554,1846.6666666666667 +6.408205128205128,5,a-phya-i1,2023-24,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 0.0, 1.3,388,298.46153846153845 +6.443410852713178,5,a-phya-i1,2023-24,Beverly - Beverly High,00300505, 0.0, 0.0, 1.1, 0.0, 1.6, 1.6, 0.0, 4.3,1255,291.8604651162791 +2.436923076923077,2.44,a-phya-i1,2023-24,Beverly - Beverly Middle School,00300305, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 0.0, 1.3,1356,1043.076923076923 +6.683076923076923,5,a-phya-i1,2023-24,Beverly - Centerville Elementary,00300010, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,321,246.9230769230769 +7.060869565217392,5,a-phya-i1,2023-24,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.1, 0.0, 1.1, 1.0, 0.0, 2.3,405,176.08695652173915 +6.687179487179487,5,a-phya-i1,2023-24,Beverly - Hannah Elementary,00300033, 1.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 1.3,320,246.15384615384613 +2.1333333333333333,2.13,a-phya-i1,2023-24,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1,110,1100.0 +6.576410256410257,5,a-phya-i1,2023-24,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 0.0, 1.3,347,266.9230769230769 +4.762666666666667,4.76,a-phya-i1,2023-24,Billerica - Billerica Memorial High School,00310505, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,1821,607.0 +-Infinity,1,a-phya-i1,2023-24,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,296,Infinity +5.962666666666666,5,a-phya-i1,2023-24,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,382,382.0 +6.250666666666667,5,a-phya-i1,2023-24,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +5.317333333333333,5,a-phya-i1,2023-24,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,503,503.0 +6.402666666666667,5,a-phya-i1,2023-24,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,599,299.5 +5.754666666666667,5,a-phya-i1,2023-24,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,421,421.0 +-Infinity,1,a-phya-i1,2023-24,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,551,Infinity +-Infinity,1,a-phya-i1,2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1250,Infinity +5.461333333333333,5,a-phya-i1,2023-24,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,238,476.0 +-Infinity,1,a-phya-i1,2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,382,Infinity +6.042666666666666,5,a-phya-i1,2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,367,367.0 +7.386666666666667,5,a-phya-i1,2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,115,115.0 +-Infinity,1,a-phya-i1,2023-24,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,348,Infinity +4.736,4.74,a-phya-i1,2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,918,612.0 +6.661333333333333,5,a-phya-i1,2023-24,Boston - Adams Elementary School,00350302, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,251,251.0 +7.424,5,a-phya-i1,2023-24,Boston - Alighieri Dante Montessori School,00350066, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,108,108.0 +6.72,5,a-phya-i1,2023-24,Boston - Another Course To College,00350541, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,240,240.0 +7.488,5,a-phya-i1,2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,192,96.0 +6.512,5,a-phya-i1,2023-24,Boston - Bates Elementary School,00350278, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,279,279.0 +6.602666666666667,5,a-phya-i1,2023-24,Boston - Beethoven Elementary School,00350021, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,262,262.0 +6.450666666666667,5,a-phya-i1,2023-24,Boston - Blackstone Elementary School,00350390, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,581,290.5 +7.013333333333334,5,a-phya-i1,2023-24,Boston - Boston Adult Tech Academy,00350548, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,185,185.0 +5.477333333333333,5,a-phya-i1,2023-24,Boston - Boston Arts Academy,00350546, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +-Infinity,1,a-phya-i1,2023-24,Boston - Boston Collaborative High School,00350755, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,218,Infinity +6.482666666666667,5,a-phya-i1,2023-24,Boston - Boston Community Leadership Academy,00350558, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,569,284.5 +5.408,5,a-phya-i1,2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,486,486.0 +3.485333333333333,3.49,a-phya-i1,2023-24,Boston - Boston Latin Academy,00350545, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1693,846.5 +4.798666666666667,4.8,a-phya-i1,2023-24,Boston - Boston Latin School,00350560, 0.0, 1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 4.0,2401,600.25 +6.549333333333333,5,a-phya-i1,2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,272,272.0 +6.4,5,a-phya-i1,2023-24,Boston - Bradley Elementary School,00350215, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,300,300.0 +6.442666666666667,5,a-phya-i1,2023-24,Boston - Brighton High School,00350505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,584,292.0 +5.8933333333333335,5,a-phya-i1,2023-24,Boston - Burke High School,00350525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,395,395.0 +7.917333333333334,5,a-phya-i1,2023-24,Boston - Carter School,00350036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,31,15.5 +6.976,5,a-phya-i1,2023-24,Boston - Channing Elementary School,00350360, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,192,192.0 +5.1946666666666665,5,a-phya-i1,2023-24,Boston - Charlestown High School,00350515, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,789,526.0 +6.784,5,a-phya-i1,2023-24,Boston - Chittick Elementary School,00350154, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +7.306666666666667,5,a-phya-i1,2023-24,Boston - Clap Elementary School,00350298, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,130,130.0 +7.781333333333333,5,a-phya-i1,2023-24,Boston - Community Academy,00350518, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,41,41.0 +6.181333333333333,5,a-phya-i1,2023-24,Boston - Community Academy of Science and Health,00350581, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,341,341.0 +6.762666666666667,5,a-phya-i1,2023-24,Boston - Condon K-8 School,00350146, 0.0, 0.0, 1.0, 0.5, 1.0, 0.0, 0.0, 2.5,580,232.0 +7.1946666666666665,5,a-phya-i1,2023-24,Boston - Conley Elementary School,00350122, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,151,151.0 +5.568,5,a-phya-i1,2023-24,Boston - Curley K-8 School,00350020, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,912,456.0 +5.050666666666666,5,a-phya-i1,2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,553,553.0 +5.834666666666666,5,a-phya-i1,2023-24,Boston - Dever Elementary School,00350268, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +6.954666666666666,5,a-phya-i1,2023-24,Boston - East Boston Early Education Center,00350009, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,196,196.0 +4.552,4.55,a-phya-i1,2023-24,Boston - East Boston High School,00350530, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1293,646.5 +6.442666666666667,5,a-phya-i1,2023-24,Boston - Edison K-8 School,00350375, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,584,292.0 +6.592,5,a-phya-i1,2023-24,Boston - Eliot K-8 Innovation School,00350096, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,792,264.0 +6.1866666666666665,5,a-phya-i1,2023-24,Boston - Ellis Elementary School,00350072, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,340,340.0 +-Infinity,1,a-phya-i1,2023-24,Boston - Ellison-Parks Early Education School,00350008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +5.575111111111111,5,a-phya-i1,2023-24,Boston - English High School,00350535, 0.0, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 1.5,682,454.6666666666667 +6.517333333333333,5,a-phya-i1,2023-24,Boston - Everett Elementary School,00350088, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,278,278.0 +5.936,5,a-phya-i1,2023-24,Boston - Excel High School,00350522, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,387,387.0 +5.994666666666666,5,a-phya-i1,2023-24,Boston - Fenway High School,00350540, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +6.256,5,a-phya-i1,2023-24,Boston - Frederick Pilot Middle School,00350383, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,327,327.0 +6.021333333333334,5,a-phya-i1,2023-24,Boston - Gardner Pilot Academy,00350326, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,371,371.0 +7.594666666666667,5,a-phya-i1,2023-24,Boston - Greater Egleston High School,00350543, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,76,76.0 +7.042666666666666,5,a-phya-i1,2023-24,Boston - Greenwood Sarah K-8 School,00350308, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,359,179.5 +6.949333333333334,5,a-phya-i1,2023-24,Boston - Grew Elementary School,00350135, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,197,197.0 +6.682666666666667,5,a-phya-i1,2023-24,Boston - Guild Elementary School,00350062, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,247,247.0 +7.557333333333333,5,a-phya-i1,2023-24,Boston - Hale Elementary School,00350243, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,166,83.0 +5.968,5,a-phya-i1,2023-24,Boston - Haley Pilot School,00350077, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +6.1866666666666665,5,a-phya-i1,2023-24,Boston - Harvard-Kent Elementary School,00350200, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,340,340.0 +6.944,5,a-phya-i1,2023-24,Boston - Haynes Early Education Center,00350010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,198,198.0 +7.667809523809524,5,a-phya-i1,2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 0.0, 0.0, 0.0, 2.0, 1.5, 0.0, 0.0, 3.5,218,62.285714285714285 +5.728,5,a-phya-i1,2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,639,426.0 +6.922666666666666,5,a-phya-i1,2023-24,Boston - Hennigan K-8 School,00350153, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,505,202.0 +5.8293333333333335,5,a-phya-i1,2023-24,Boston - Hernandez K-8 School,00350691, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +7.1626666666666665,5,a-phya-i1,2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,157,157.0 +7.0986666666666665,5,a-phya-i1,2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,169,169.0 +6.469333333333333,5,a-phya-i1,2023-24,Boston - Holmes Elementary School,00350138, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,287,287.0 +7.610666666666667,5,a-phya-i1,2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,73,73.0 +6.1386666666666665,5,a-phya-i1,2023-24,Boston - Hurley K-8 School,00350182, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,349,349.0 +5.888,5,a-phya-i1,2023-24,Boston - Kennedy John F Elementary School,00350166, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +-Infinity,1,a-phya-i1,2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,267,Infinity +6.197333333333333,5,a-phya-i1,2023-24,Boston - Kenny Elementary School,00350328, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,338,338.0 +7.010666666666666,5,a-phya-i1,2023-24,Boston - Kilmer K-8 School,00350190, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,371,185.5 +5.493333333333333,5,a-phya-i1,2023-24,Boston - King Elementary School,00350376, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,470,470.0 +7.466666666666667,5,a-phya-i1,2023-24,Boston - Lee Academy,00350001, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,200,100.0 +6.594666666666667,5,a-phya-i1,2023-24,Boston - Lee K-8 School,00350183, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,527,263.5 +-Infinity,1,a-phya-i1,2023-24,Boston - Lyndon K-8 School,00350262, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,528,Infinity +7.456,5,a-phya-i1,2023-24,Boston - Lyon High School,00350655, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,102,102.0 +7.68,5,a-phya-i1,2023-24,Boston - Lyon K-8 School,00350004, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,120,60.0 +6.119111111111111,5,a-phya-i1,2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0,1058,352.6666666666667 +7.0986666666666665,5,a-phya-i1,2023-24,Boston - Manning Elementary School,00350184, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,169,169.0 +6.357333333333333,5,a-phya-i1,2023-24,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,308,308.0 +6.314666666666667,5,a-phya-i1,2023-24,Boston - Mario Umana Academy,00350656, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,632,316.0 +6.992,5,a-phya-i1,2023-24,Boston - Mason Elementary School,00350304, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,189,189.0 +5.578666666666667,5,a-phya-i1,2023-24,Boston - Mather Elementary School,00350227, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,454,454.0 +5.269333333333333,5,a-phya-i1,2023-24,Boston - Mattahunt Elementary School,00350016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,512,512.0 +6.213333333333333,5,a-phya-i1,2023-24,Boston - McKay K-8 School,00350080, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,670,335.0 +7.7617777777777786,5,a-phya-i1,2023-24,Boston - Melvin H. King South End Academy,00350363, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0,134,44.666666666666664 +6.357333333333333,5,a-phya-i1,2023-24,Boston - Mendell Elementary School,00350100, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,308,308.0 +5.902222222222223,5,a-phya-i1,2023-24,Boston - Mildred Avenue K-8 School,00350378, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,590,393.3333333333333 +7.050666666666666,5,a-phya-i1,2023-24,Boston - Mozart Elementary School,00350237, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,178,178.0 +5.762666666666667,5,a-phya-i1,2023-24,Boston - Murphy K-8 School,00350240, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,839,419.5 +-Infinity,1,a-phya-i1,2023-24,Boston - New Mission High School,00350542, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,668,Infinity +-0.20266666666666666,1,a-phya-i1,2023-24,Boston - O'Bryant School of Math & Science,00350575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,1538,1538.0 +6.533333333333333,5,a-phya-i1,2023-24,Boston - O'Donnell Elementary School,00350141, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,275,275.0 +5.610666666666667,5,a-phya-i1,2023-24,Boston - Ohrenberger School,00350258, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,448,448.0 +6.208,5,a-phya-i1,2023-24,Boston - Orchard Gardens K-8 School,00350257, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,672,336.0 +5.856,5,a-phya-i1,2023-24,Boston - Otis Elementary School,00350156, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,402,402.0 +-Infinity,1,a-phya-i1,2023-24,Boston - Perkins Elementary School,00350231, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,149,Infinity +7.034666666666666,5,a-phya-i1,2023-24,Boston - Perry Elementary School,00350255, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,181,181.0 +7.648,5,a-phya-i1,2023-24,Boston - Philbrick Elementary School,00350172, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,132,66.0 +6.696888888888888,5,a-phya-i1,2023-24,Boston - Quincy Elementary School,00350286, 0.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 3.0,733,244.33333333333334 +7.054222222222221,5,a-phya-i1,2023-24,Boston - Quincy Upper School,00350565, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,532,177.33333333333334 +6.234666666666667,5,a-phya-i1,2023-24,Boston - Roosevelt K-8 School,00350116, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,331,331.0 +6.1546666666666665,5,a-phya-i1,2023-24,Boston - Russell Elementary School,00350366, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,346,346.0 +-Infinity,1,a-phya-i1,2023-24,Boston - Shaw Elementary School,00350014, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,201,Infinity +-Infinity,1,a-phya-i1,2023-24,Boston - Snowden International High School,00350690, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,445,Infinity +6.453333333333333,5,a-phya-i1,2023-24,Boston - Sumner Elementary School,00350052, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,580,290.0 +6.1706666666666665,5,a-phya-i1,2023-24,Boston - Taylor Elementary School,00350054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +-Infinity,1,a-phya-i1,2023-24,Boston - TechBoston Academy,00350657, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,870,Infinity +6.0,5,a-phya-i1,2023-24,Boston - Tobin K-8 School,00350229, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,375,375.0 +6.4,5,a-phya-i1,2023-24,Boston - Trotter Elementary School,00350370, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +6.906666666666666,5,a-phya-i1,2023-24,Boston - Tynan Elementary School,00350181, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,205,205.0 +-Infinity,1,a-phya-i1,2023-24,Boston - UP Academy Holland,00350167, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,566,Infinity +5.338666666666667,5,a-phya-i1,2023-24,Boston - Warren-Prescott K-8 School,00350346, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +-Infinity,1,a-phya-i1,2023-24,Boston - West Zone Early Learning Center,00350006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,113,Infinity +7.08,5,a-phya-i1,2023-24,Boston - Winship Elementary School,00350374, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,345,172.5 +-Infinity,1,a-phya-i1,2023-24,Boston - Winthrop Elementary School,00350180, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,241,Infinity +5.514666666666667,5,a-phya-i1,2023-24,Boston - Young Achievers K-8 School,00350380, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,466,466.0 +6.165333333333334,5,a-phya-i1,2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,688,344.0 +7.218666666666667,5,a-phya-i1,2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,293,146.5 +5.552,5,a-phya-i1,2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +4.293333333333333,4.29,a-phya-i1,2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,695,695.0 +5.501333333333333,5,a-phya-i1,2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,937,468.5 +6.213333333333333,5,a-phya-i1,2023-24,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,335,335.0 +6.085333333333334,5,a-phya-i1,2023-24,Bourne - Bourne Intermediate School,00360030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,359,359.0 +5.653333333333333,5,a-phya-i1,2023-24,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,440,440.0 +5.712,5,a-phya-i1,2023-24,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,429,429.0 +6.112,5,a-phya-i1,2023-24,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.4, 0.6, 0.0, 0.0, 0.0, 1.0,354,354.0 +5.850666666666666,5,a-phya-i1,2023-24,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +6.405333333333333,5,a-phya-i1,2023-24,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,299,299.0 +5.018666666666666,5,a-phya-i1,2023-24,Braintree - Braintree High,00400505, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1677,559.0 +7.045333333333334,5,a-phya-i1,2023-24,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,179,179.0 +3.56,3.56,a-phya-i1,2023-24,Braintree - East Middle School,00400305, 0.0, 0.0, 0.0, 0.0, 0.6, 0.6, 0.0, 1.2,999,832.5 +6.133333333333334,5,a-phya-i1,2023-24,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,350,350.0 +6.282666666666667,5,a-phya-i1,2023-24,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,322,322.0 +6.352,5,a-phya-i1,2023-24,Braintree - Liberty,00400025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,309,309.0 +6.501333333333333,5,a-phya-i1,2023-24,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,281,281.0 +-Infinity,1,a-phya-i1,2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,183,Infinity +6.298666666666667,5,a-phya-i1,2023-24,Braintree - South Middle School,00400310, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,638,319.0 +6.906666666666666,5,a-phya-i1,2023-24,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,205,205.0 +6.778666666666667,5,a-phya-i1,2023-24,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,229,229.0 +-Infinity,1,a-phya-i1,2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +5.9013333333333335,5,a-phya-i1,2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,787,393.5 +5.496888888888889,5,a-phya-i1,2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 3.0,1408,469.3333333333333 +5.290666666666667,5,a-phya-i1,2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,508,508.0 +6.16,5,a-phya-i1,2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,345,345.0 +6.32,5,a-phya-i1,2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,945,315.0 +6.010666666666666,5,a-phya-i1,2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,746,373.0 +-Infinity,1,a-phya-i1,2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +5.781333333333333,5,a-phya-i1,2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,832,416.0 +6.485333333333333,5,a-phya-i1,2023-24,Brimfield - Brimfield Elementary,00430005, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,284,284.0 +4.842666666666666,4.84,a-phya-i1,2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,592,592.0 +5.635555555555556,5,a-phya-i1,2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,1330,443.3333333333333 +5.242666666666667,5,a-phya-i1,2023-24,Brockton - Ashfield Middle School,00440421, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,517,517.0 +6.586666666666667,5,a-phya-i1,2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,265,265.0 +4.812444444444445,4.81,a-phya-i1,2023-24,Brockton - Brockton High,00440505, 0.0, 1.0, 0.0, 2.0, 2.0, 0.0, 1.0, 6.0,3586,597.6666666666666 +-Infinity,1,a-phya-i1,2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +5.594666666666667,5,a-phya-i1,2023-24,Brockton - Brookfield,00440010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,451,451.0 +6.402666666666667,5,a-phya-i1,2023-24,Brockton - Downey,00440110, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,599,299.5 +6.3722666666666665,5,a-phya-i1,2023-24,Brockton - Dr W Arnone Community School,00440001, 0.0, 0.0, 1.5, 1.0, 0.0, 0.0, 0.0, 2.5,763,305.2 +7.341714285714285,5,a-phya-i1,2023-24,Brockton - East Middle School,00440405, 0.0, 0.0, 0.0, 2.5, 0.0, 1.0, 0.0, 3.5,432,123.42857142857143 +5.482666666666667,5,a-phya-i1,2023-24,Brockton - Edgar B Davis,00440023, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,944,472.0 +7.4204444444444455,5,a-phya-i1,2023-24,Brockton - Edison Day Academy,00440535, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,163,108.66666666666667 +7.04,5,a-phya-i1,2023-24,Brockton - Edison Evening Academy,00440520, 0.0, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 1.1,198,179.99999999999997 +5.696,5,a-phya-i1,2023-24,Brockton - Gilmore Elementary School,00440055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,432,432.0 +4.448,4.45,a-phya-i1,2023-24,Brockton - Hancock,00440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,666,666.0 +-Infinity,1,a-phya-i1,2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +5.317333333333333,5,a-phya-i1,2023-24,Brockton - John F Kennedy,00440017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +5.773333333333333,5,a-phya-i1,2023-24,Brockton - Louis F Angelo Elementary,00440065, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,835,417.5 +5.233777777777778,5,a-phya-i1,2023-24,Brockton - Manthala George Jr. School,00440003, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,778,518.6666666666666 +6.455466666666667,5,a-phya-i1,2023-24,Brockton - Mary E. Baker School,00440002, 0.0, 0.0, 0.5, 2.0, 0.0, 0.0, 0.0, 2.5,724,289.6 +5.834666666666666,5,a-phya-i1,2023-24,Brockton - North Middle School,00440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,406,406.0 +6.033939393939394,5,a-phya-i1,2023-24,Brockton - Oscar F Raymond,00440078, 0.0, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 2.2,811,368.6363636363636 +6.965333333333334,5,a-phya-i1,2023-24,Brockton - PROMISE College and Career Academy,00440525, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,97,194.0 +6.322666666666667,5,a-phya-i1,2023-24,Brockton - Plouffe Middle School,00440422, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,629,314.5 +3.008,3.01,a-phya-i1,2023-24,Brockton - South Middle School,00440415, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,468,936.0 +5.084444444444444,5,a-phya-i1,2023-24,Brockton - West Middle School,00440420, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.9,492,546.6666666666666 +4.074666666666666,4.07,a-phya-i1,2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,2208,736.0 +6.389333333333333,5,a-phya-i1,2023-24,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,302,302.0 +-Infinity,1,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,46,Infinity +7.706666666666667,5,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,33,55.0 +-Infinity,1,a-phya-i1,2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,42,Infinity +4.591372549019608,4.59,a-phya-i1,2023-24,Brookline - Brookline High,00460505, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.4, 3.4,2173,639.1176470588235 +6.754285714285715,5,a-phya-i1,2023-24,Brookline - Edith C Baker,00460005, 0.0, 0.0, 1.1, 1.0, 0.6, 0.1, 0.0, 2.8,654,233.57142857142858 +5.934545454545455,5,a-phya-i1,2023-24,Brookline - Florida Ruffin Ridley School,00460015, 0.0, 0.0, 1.1, 0.0, 1.0, 0.1, 0.0, 2.2,852,387.27272727272725 +6.842666666666666,5,a-phya-i1,2023-24,Brookline - Heath,00460025, 0.0, 0.0, 0.1, 0.8, 0.0, 1.1, 0.0, 2.0,434,217.0 +6.773333333333333,5,a-phya-i1,2023-24,Brookline - John D Runkle,00460045, 0.0, 0.0, 0.1, 0.0, 0.9, 0.1, 1.0, 2.1,483,230.0 +6.438095238095238,5,a-phya-i1,2023-24,Brookline - Lawrence,00460030, 0.0, 0.0, 0.2, 0.0, 0.8, 0.1, 1.0, 2.1,615,292.85714285714283 +5.733333333333333,5,a-phya-i1,2023-24,Brookline - Michael Driscoll,00460020, 0.0, 0.0, 0.1, 0.0, 0.0, 0.1, 1.0, 1.2,510,425.0 +6.3034920634920635,5,a-phya-i1,2023-24,Brookline - Pierce,00460040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 1.0, 2.1,668,318.0952380952381 +-Infinity,1,a-phya-i1,2023-24,Brookline - The Lynch Center,00460060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,55,Infinity +6.055384615384616,5,a-phya-i1,2023-24,Brookline - William H Lincoln,00460035, 0.0, 0.0, 0.1, 0.0, 0.0, 1.1, 0.0, 1.3,474,364.6153846153846 +5.32,5,a-phya-i1,2023-24,Burlington - Burlington High,00480505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1005,502.5 +7.133333333333334,5,a-phya-i1,2023-24,Burlington - Fox Hill,00480007, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,455,162.5 +7.074285714285715,5,a-phya-i1,2023-24,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.3, 1.0, 1.5, 0.0, 0.0, 0.0, 2.8,486,173.57142857142858 +5.701333333333333,5,a-phya-i1,2023-24,Burlington - Marshall Simonds Middle,00480303, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,862,431.0 +6.865185185185185,5,a-phya-i1,2023-24,Burlington - Memorial,00480015, 0.0, 0.3, 0.0, 0.5, 0.0, 1.0, 0.0, 1.8,383,212.77777777777777 +7.01037037037037,5,a-phya-i1,2023-24,Burlington - Pine Glen Elementary,00480020, 0.0, 0.3, 0.0, 1.5, 0.0, 0.0, 0.0, 1.8,334,185.55555555555554 +-Infinity,1,a-phya-i1,2023-24,Cambridge - Amigos School,00490006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,418,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1979,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Cambridge Street Upper School,00490305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Cambridgeport,00490007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,285,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,251,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Graham and Parks,00490080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,396,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Haggerty,00490020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,229,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - John M Tobin,00490065, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,326,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Kennedy-Longfellow,00490040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - King Open,00490035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,387,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Maria L. Baldwin,00490005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,352,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Martin Luther King Jr.,00490030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Morse,00490045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,302,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Peabody,00490050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,321,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,270,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,289,Infinity +-Infinity,1,a-phya-i1,2023-24,Cambridge - Vassal Lane Upper School,00490320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,258,Infinity +5.517333333333333,5,a-phya-i1,2023-24,Canton - Canton High,00500505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,931,465.5 +5.456,5,a-phya-i1,2023-24,Canton - Dean S Luce,00500020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +5.562666666666667,5,a-phya-i1,2023-24,Canton - John F Kennedy,00500017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,457,457.0 +6.570666666666667,5,a-phya-i1,2023-24,Canton - Lt Peter M Hansen,00500012, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,536,268.0 +7.285333333333333,5,a-phya-i1,2023-24,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,134,134.0 +6.021333333333334,5,a-phya-i1,2023-24,Canton - Wm H Galvin Middle,00500305, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,742,371.0 +6.661333333333333,5,a-phya-i1,2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +6.232,5,a-phya-i1,2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,663,331.5 +4.757333333333333,4.76,a-phya-i1,2023-24,Carlisle - Carlisle School,00510025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,608,608.0 +5.933333333333334,5,a-phya-i1,2023-24,Carver - Carver Elementary School,00520015, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,775,387.5 +6.0986666666666665,5,a-phya-i1,2023-24,Carver - Carver Middle/High School,00520405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,713,356.5 +7.460740740740741,5,a-phya-i1,2023-24,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 0.0, 0.9, 0.0, 0.0, 0.9,91,101.11111111111111 +6.792,5,a-phya-i1,2023-24,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,453,226.5 +7.056,5,a-phya-i1,2023-24,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,177,177.0 +6.0906666666666665,5,a-phya-i1,2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,358,358.0 +5.429333333333333,5,a-phya-i1,2023-24,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 +5.173333333333333,5,a-phya-i1,2023-24,Chelmsford - Byam School,00560030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,530,530.0 +5.514666666666667,5,a-phya-i1,2023-24,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,466,466.0 +5.456,5,a-phya-i1,2023-24,Chelmsford - Charles D Harrington,00560025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,477,477.0 +0.464,1,a-phya-i1,2023-24,Chelmsford - Chelmsford High,00560505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1413,1413.0 +-Infinity,1,a-phya-i1,2023-24,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,797,Infinity +6.933333333333334,5,a-phya-i1,2023-24,Chelmsford - Community Education Center,00560001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,200,200.0 +3.8293333333333335,3.83,a-phya-i1,2023-24,Chelmsford - McCarthy Middle School,00560310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,782,782.0 +5.52,5,a-phya-i1,2023-24,Chelmsford - South Row,00560015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +-3.2,1,a-phya-i1,2023-24,Chelsea - Chelsea High,00570505, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4, 0.0, 0.8,1680,2100.0 +4.666666666666667,4.67,a-phya-i1,2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.1, 0.0, 0.0, 0.0, 0.1, 0.0, 0.2,125,625.0 +-Infinity,1,a-phya-i1,2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,60,Infinity +0.768,1,a-phya-i1,2023-24,Chelsea - Clark Avenue School,00570050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,678,1356.0 +3.168,3.17,a-phya-i1,2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,453,906.0 +3.2746666666666666,3.27,a-phya-i1,2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,443,886.0 +2.6986666666666665,2.7,a-phya-i1,2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,497,994.0 +2.816,2.82,a-phya-i1,2023-24,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,486,972.0 +2.8266666666666667,2.83,a-phya-i1,2023-24,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,485,970.0 +-Infinity,1,a-phya-i1,2023-24,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,806,Infinity +-Infinity,1,a-phya-i1,2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,435,Infinity +-Infinity,1,a-phya-i1,2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,139,Infinity +6.620952380952381,5,a-phya-i1,2023-24,Chicopee - Barry,00610003, 0.0, 0.2, 0.2, 1.0, 0.0, 0.0, 0.0, 1.4,362,258.5714285714286 +6.982222222222221,5,a-phya-i1,2023-24,Chicopee - Belcher,00610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 1.2,229,190.83333333333334 +6.0193939393939395,5,a-phya-i1,2023-24,Chicopee - Bellamy Middle,00610305, 0.0, 0.2, 0.0, 0.0, 2.0, 0.0, 0.0, 2.2,817,371.3636363636363 +-3.1466666666666665,1,a-phya-i1,2023-24,Chicopee - Bowe,00610015, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.2,418,2090.0 +6.448,5,a-phya-i1,2023-24,Chicopee - Bowie,00610020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,291,291.0 +7.632,5,a-phya-i1,2023-24,Chicopee - Chicopee Academy,00610021, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,69,69.0 +5.0618181818181816,5,a-phya-i1,2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.2, 0.0, 1.0, 0.0, 1.0, 0.0, 2.2,1212,550.9090909090909 +3.8577777777777773,3.86,a-phya-i1,2023-24,Chicopee - Chicopee High,00610505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 0.0, 1.2,932,776.6666666666667 +6.356363636363637,5,a-phya-i1,2023-24,Chicopee - Dupont Middle,00610310, 0.0, 0.0, 0.2, 2.0, 0.0, 0.0, 0.0, 2.2,678,308.18181818181813 +7.188888888888888,5,a-phya-i1,2023-24,Chicopee - Fairview Elementary,00610050, 0.0, 1.2, 1.2, 0.0, 0.0, 0.0, 0.0, 2.4,365,152.08333333333334 +6.510476190476191,5,a-phya-i1,2023-24,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 0.2, 1.0, 0.0, 0.2, 0.0, 1.4,391,279.2857142857143 +6.995555555555555,5,a-phya-i1,2023-24,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,226,188.33333333333334 +6.471111111111111,5,a-phya-i1,2023-24,Chicopee - Litwin,00610022, 0.0, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 1.2,344,286.6666666666667 +6.757333333333333,5,a-phya-i1,2023-24,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,233,233.0 +6.933333333333334,5,a-phya-i1,2023-24,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.2, 0.0, 1.2,240,200.0 +6.464,5,a-phya-i1,2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +6.938666666666666,5,a-phya-i1,2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,199,199.0 +-Infinity,1,a-phya-i1,2023-24,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,208,Infinity +5.768,5,a-phya-i1,2023-24,Clinton - Clinton Elementary,00640050, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,837,418.5 +4.954666666666666,4.95,a-phya-i1,2023-24,Clinton - Clinton Middle School,00640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,571,571.0 +-Infinity,1,a-phya-i1,2023-24,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,581,Infinity +4.416,4.42,a-phya-i1,2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,336,672.0 +5.834666666666666,5,a-phya-i1,2023-24,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,406,406.0 +6.453333333333333,5,a-phya-i1,2023-24,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.288,5,a-phya-i1,2023-24,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,321,321.0 +5.925333333333334,5,a-phya-i1,2023-24,Cohasset - Joseph Osgood,00650010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,389,389.0 +4.770666666666667,4.77,a-phya-i1,2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1211,605.5 +6.608,5,a-phya-i1,2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +3.428571428571428,3.43,a-phya-i1,2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 0.0, 0.0, 0.0, 0.0, 1.4, 0.0, 0.0, 1.4,1200,857.1428571428572 +6.8533333333333335,5,a-phya-i1,2023-24,Concord - Alcott,00670005, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,430,215.0 +6.256,5,a-phya-i1,2023-24,Concord - Concord Middle,00670305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,654,327.0 +5.674666666666667,5,a-phya-i1,2023-24,Concord - Thoreau,00670020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +5.594666666666667,5,a-phya-i1,2023-24,Concord - Willard,00670030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,451,451.0 +5.8133333333333335,5,a-phya-i1,2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1230,410.0 +6.816,5,a-phya-i1,2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0,444,222.0 +7.232,5,a-phya-i1,2023-24,Conway - Conway Grammar,00680005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,144,144.0 +3.744,3.74,a-phya-i1,2023-24,Danvers - Danvers High,00710505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,798,798.0 +6.4,5,a-phya-i1,2023-24,Danvers - Great Oak,00710015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,300,300.0 +5.973333333333334,5,a-phya-i1,2023-24,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +6.682666666666667,5,a-phya-i1,2023-24,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,741,247.0 +6.032,5,a-phya-i1,2023-24,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,369,369.0 +6.314666666666667,5,a-phya-i1,2023-24,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,316,316.0 +6.149333333333334,5,a-phya-i1,2023-24,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,347,347.0 +7.724444444444445,5,a-phya-i1,2023-24,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,155,51.666666666666664 +5.469333333333333,5,a-phya-i1,2023-24,Dartmouth - Dartmouth High,00720505, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,949,474.5 +3.8026666666666666,3.8,a-phya-i1,2023-24,Dartmouth - Dartmouth Middle,00720050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,787,787.0 +5.776,5,a-phya-i1,2023-24,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,417,417.0 +6.101333333333334,5,a-phya-i1,2023-24,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,712,356.0 +-Infinity,1,a-phya-i1,2023-24,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +5.137777777777777,5,a-phya-i1,2023-24,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,322,536.6666666666667 +4.455757575757576,4.46,a-phya-i1,2023-24,Dedham - Dedham High,00730505, 0.0, 0.0, 1.0, 0.0, 0.1, 0.0, 0.0, 1.1,731,664.5454545454545 +3.1733333333333333,3.17,a-phya-i1,2023-24,Dedham - Dedham Middle School,00730305, 0.0, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.6,543,905.0 +6.689523809523809,5,a-phya-i1,2023-24,Dedham - Early Childhood Center,00730005, 0.0, 0.5, 0.0, 0.0, 0.9, 0.0, 0.0, 1.4,344,245.71428571428572 +6.496969696969697,5,a-phya-i1,2023-24,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 0.0, 1.1, 0.0, 0.0, 1.1,310,281.8181818181818 +5.724444444444444,5,a-phya-i1,2023-24,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.6,256,426.6666666666667 +6.284444444444444,5,a-phya-i1,2023-24,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 0.0, 0.1, 0.5, 0.0, 0.6,193,321.6666666666667 +6.887111111111112,5,a-phya-i1,2023-24,Deerfield - Deerfield Elementary,00740015, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 0.0, 1.5,313,208.66666666666666 +5.28,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,510,510.0 +5.626666666666667,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,445,445.0 +6.36088888888889,5,a-phya-i1,2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,922,307.3333333333333 +6.096,5,a-phya-i1,2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +-Infinity,1,a-phya-i1,2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,275,Infinity +5.696,5,a-phya-i1,2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +5.942222222222221,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,463,385.83333333333337 +6.368888888888888,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,367,305.83333333333337 +5.111111111111111,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,650,541.6666666666667 +5.875555555555555,5,a-phya-i1,2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,478,398.33333333333337 +5.373333333333333,5,a-phya-i1,2023-24,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 1.2,591,492.5 +6.117333333333334,5,a-phya-i1,2023-24,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,353,353.0 +6.384,5,a-phya-i1,2023-24,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,303,303.0 +6.458666666666667,5,a-phya-i1,2023-24,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,289,289.0 +6.8533333333333335,5,a-phya-i1,2023-24,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +5.349333333333333,5,a-phya-i1,2023-24,Dover - Chickering,00780005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,497,497.0 +4.544,4.54,a-phya-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,648,648.0 +5.562666666666667,5,a-phya-i1,2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,457,457.0 +-Infinity,1,a-phya-i1,2023-24,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,500,Infinity +3.792,3.79,a-phya-i1,2023-24,Dracut - Dracut Senior High,00790505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,789,789.0 +5.136,5,a-phya-i1,2023-24,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,537,537.0 +6.773333333333333,5,a-phya-i1,2023-24,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,230,230.0 +4.917333333333334,4.92,a-phya-i1,2023-24,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,578,578.0 +5.576,5,a-phya-i1,2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,909,454.5 +-Infinity,1,a-phya-i1,2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,288,Infinity +6.250666666666667,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +4.784,4.78,a-phya-i1,2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,603,603.0 +6.224,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,333,333.0 +5.056,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,552,552.0 +5.610666666666667,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +6.768,5,a-phya-i1,2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +3.002666666666667,3.0,a-phya-i1,2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,937,937.0 +4.688,4.69,a-phya-i1,2023-24,Duxbury - Alden School,00820004, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,621,621.0 +4.538666666666667,4.54,a-phya-i1,2023-24,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,649,649.0 +2.891851851851852,2.89,a-phya-i1,2023-24,Duxbury - Duxbury High,00820505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.9, 0.9,862,957.7777777777777 +4.677333333333333,4.68,a-phya-i1,2023-24,Duxbury - Duxbury Middle,00820305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,623,623.0 +5.253333333333333,5,a-phya-i1,2023-24,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 0.0, 1.0,515,515.0 +3.3226666666666667,3.32,a-phya-i1,2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,877,877.0 +4.714666666666667,4.71,a-phya-i1,2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,616,616.0 +4.725333333333333,4.73,a-phya-i1,2023-24,East Longmeadow - Birchland Park,00870305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,614,614.0 +3.888,3.89,a-phya-i1,2023-24,East Longmeadow - East Longmeadow High,00870505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,771,771.0 +6.469333333333333,5,a-phya-i1,2023-24,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +5.859047619047618,5,a-phya-i1,2023-24,East Longmeadow - Meadow Brook,00870013, 0.0, 0.4, 0.0, 0.0, 0.0, 1.0, 0.0, 1.4,562,401.42857142857144 +6.544,5,a-phya-i1,2023-24,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,273,273.0 +7.061333333333334,5,a-phya-i1,2023-24,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,176,176.0 +6.010666666666666,5,a-phya-i1,2023-24,Easthampton - Easthampton High,00860505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,373,373.0 +6.179555555555556,5,a-phya-i1,2023-24,Easthampton - Mountain View School,00860415, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1024,341.3333333333333 +5.917333333333334,5,a-phya-i1,2023-24,Easton - Blanche A. Ames Elementary School,00880015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0,781,390.5 +5.8453333333333335,5,a-phya-i1,2023-24,Easton - Easton Middle School,00880405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,808,404.0 +5.1306666666666665,5,a-phya-i1,2023-24,Easton - Oliver Ames High,00880505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1076,538.0 +5.690980392156862,5,a-phya-i1,2023-24,Easton - Richardson Olmsted School,00880025, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.7, 1.7,736,432.94117647058823 +6.627555555555556,5,a-phya-i1,2023-24,Edgartown - Edgartown Elementary,00890005, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,386,257.3333333333333 +6.0,5,a-phya-i1,2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,375,375.0 +7.18,5,a-phya-i1,2023-24,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,123,153.75 +5.673333333333333,5,a-phya-i1,2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 1.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 4.0,1745,436.25 +-Infinity,1,a-phya-i1,2023-24,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,163,Infinity +-Infinity,1,a-phya-i1,2023-24,Everett - Devens School,00930030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,49,Infinity +1.896,1.9,a-phya-i1,2023-24,Everett - Everett High,00930505, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,2289,1144.5 +-Infinity,1,a-phya-i1,2023-24,Everett - George Keverian School,00930028, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,873,Infinity +-Infinity,1,a-phya-i1,2023-24,Everett - Lafayette School,00930038, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1000,Infinity +3.84,3.84,a-phya-i1,2023-24,Everett - Madeline English School,00930018, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,780,780.0 +2.6026666666666665,2.6,a-phya-i1,2023-24,Everett - Parlin School,00930058, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1012,1012.0 +4.714666666666667,4.71,a-phya-i1,2023-24,Everett - Sumner G. Whittier School,00930010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,616,616.0 +-Infinity,1,a-phya-i1,2023-24,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +-Infinity,1,a-phya-i1,2023-24,Everett - Webster School,00930015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,341,Infinity +6.788444444444445,5,a-phya-i1,2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0.0, 2.0, 0.0, 1.0, 0.0, 1.0, 2.0, 6.0,1363,227.16666666666666 +6.912,5,a-phya-i1,2023-24,Fairhaven - East Fairhaven,00940010, 0.0, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0, 1.5,306,204.0 +5.898666666666666,5,a-phya-i1,2023-24,Fairhaven - Fairhaven High,00940505, 0.0, 0.3, 0.0, 1.3, 0.0, 0.0, 0.0, 1.5,591,394.0 +6.4782222222222225,5,a-phya-i1,2023-24,Fairhaven - Hastings Middle,00940305, 0.0, 0.3, 1.0, 0.3, 0.0, 0.0, 0.0, 1.5,428,285.3333333333333 +6.456888888888889,5,a-phya-i1,2023-24,Fairhaven - Leroy Wood,00940030, 0.0, 1.3, 0.0, 0.3, 0.0, 0.0, 0.0, 1.5,434,289.3333333333333 +4.753333333333333,4.75,a-phya-i1,2023-24,Fall River - B M C Durfee High,00950505, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 0.0, 4.0,2435,608.75 +4.282666666666667,4.28,a-phya-i1,2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,697,697.0 +7.493333333333333,5,a-phya-i1,2023-24,Fall River - Early Learning Center,00950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,95,95.0 +-Infinity,1,a-phya-i1,2023-24,Fall River - FRPS Early Learning Center,00950002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,108,Infinity +3.7493333333333334,3.75,a-phya-i1,2023-24,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,797,797.0 +6.368,5,a-phya-i1,2023-24,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,306,306.0 +7.091555555555555,5,a-phya-i1,2023-24,Fall River - John J Doran,00950045, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,511,170.33333333333334 +6.9013333333333335,5,a-phya-i1,2023-24,Fall River - Letourneau Elementary School,00950013, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,618,206.0 +5.752888888888889,5,a-phya-i1,2023-24,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,632,421.3333333333333 +6.766222222222221,5,a-phya-i1,2023-24,Fall River - Matthew J Kuss Middle,00950320, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 3.0,694,231.33333333333334 +6.096,5,a-phya-i1,2023-24,Fall River - Morton Middle,00950315, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,714,357.0 +6.256,5,a-phya-i1,2023-24,Fall River - North End Elementary,00950005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,654,327.0 +7.018666666666666,5,a-phya-i1,2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,184,184.0 +7.293333333333333,5,a-phya-i1,2023-24,Fall River - Samuel Watson,00950145, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,265,132.5 +5.944888888888889,5,a-phya-i1,2023-24,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,578,385.3333333333333 +7.669333333333333,5,a-phya-i1,2023-24,Fall River - Stone PK-12 School,00950340, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,62,62.0 +7.009777777777779,5,a-phya-i1,2023-24,Fall River - Talbot Innovation School,00950305, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,557,185.66666666666666 +6.002666666666666,5,a-phya-i1,2023-24,Fall River - William S Greene,00950065, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,749,374.5 +7.205333333333333,5,a-phya-i1,2023-24,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,298,149.0 +6.061333333333334,5,a-phya-i1,2023-24,Falmouth - Falmouth High,00960505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,727,363.5 +5.552,5,a-phya-i1,2023-24,Falmouth - Lawrence,00960405, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +5.44,5,a-phya-i1,2023-24,Falmouth - Morse Pond School,00960305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,480,480.0 +5.994666666666666,5,a-phya-i1,2023-24,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,376,376.0 +6.416,5,a-phya-i1,2023-24,Falmouth - North Falmouth Elementary,00960030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,297,297.0 +6.64,5,a-phya-i1,2023-24,Falmouth - Teaticket,00960015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,255,255.0 +7.312,5,a-phya-i1,2023-24,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,129,129.0 +6.493333333333333,5,a-phya-i1,2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,565,282.5 +6.897777777777779,5,a-phya-i1,2023-24,Fitchburg - Crocker Elementary,00970016, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,620,206.66666666666666 +5.902222222222223,5,a-phya-i1,2023-24,Fitchburg - Fitchburg High,00970505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,1180,393.3333333333333 +-Infinity,1,a-phya-i1,2023-24,Fitchburg - Goodrich Academy,00970510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,226,Infinity +3.936,3.94,a-phya-i1,2023-24,Fitchburg - McKay Elementary School,00970340, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,762,762.0 +6.434666666666667,5,a-phya-i1,2023-24,Fitchburg - Memorial Middle School,00970048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,587,293.5 +6.237333333333333,5,a-phya-i1,2023-24,Fitchburg - Reingold Elementary,00970043, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,661,330.5 +6.605333333333333,5,a-phya-i1,2023-24,Fitchburg - South Street Early Learning Center,00970060, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,523,261.5 +7.546666666666667,5,a-phya-i1,2023-24,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,85,85.0 +-Infinity,1,a-phya-i1,2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,214,Infinity +6.506666666666667,5,a-phya-i1,2023-24,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,280,280.0 +-2.0933333333333333,1,a-phya-i1,2023-24,Foxborough - Foxborough High,00990505, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,757,1892.5 +5.161904761904761,5,a-phya-i1,2023-24,Foxborough - John J Ahern,00990405, 0.0, 0.0, 0.0, 0.4, 1.0, 0.0, 0.0, 1.4,745,532.1428571428572 +-Infinity,1,a-phya-i1,2023-24,Foxborough - Mabelle M Burrell,00990015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,331,Infinity +6.016,5,a-phya-i1,2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,372,372.0 +5.104761904761904,5,a-phya-i1,2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0.0, 1.0, 0.0, 0.0, 0.0, 0.8, 1.0, 2.8,1520,542.8571428571429 +6.245333333333333,5,a-phya-i1,2023-24,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,658,329.0 +5.370666666666667,5,a-phya-i1,2023-24,Framingham - Brophy,01000006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,493,493.0 +4.992,4.99,a-phya-i1,2023-24,Framingham - Cameron Middle School,01000302, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,564,564.0 +5.674666666666667,5,a-phya-i1,2023-24,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +5.737777777777778,5,a-phya-i1,2023-24,Framingham - Framingham High School,01000515, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 6.0,2545,424.1666666666667 +4.992,4.99,a-phya-i1,2023-24,Framingham - Fuller Middle,01000305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,564,564.0 +5.477333333333333,5,a-phya-i1,2023-24,Framingham - Harmony Grove Elementary,01000055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,473,473.0 +5.109333333333334,5,a-phya-i1,2023-24,Framingham - Hemenway,01000015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +6.153333333333333,5,a-phya-i1,2023-24,Framingham - Juniper Hill School,01000001, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,277,346.25 +5.818666666666667,5,a-phya-i1,2023-24,Framingham - King Elementary School,01000005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,409,409.0 +6.112,5,a-phya-i1,2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,354,354.0 +5.312,5,a-phya-i1,2023-24,Framingham - Miriam F McCarthy School,01000050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 +5.1466666666666665,5,a-phya-i1,2023-24,Framingham - Potter Road,01000039, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,535,535.0 +3.84,3.84,a-phya-i1,2023-24,Framingham - Walsh Middle,01000310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,780,780.0 +6.026666666666666,5,a-phya-i1,2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,370,370.0 +6.282666666666667,5,a-phya-i1,2023-24,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,322,322.0 +7.189333333333333,5,a-phya-i1,2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,152,152.0 +3.816,3.82,a-phya-i1,2023-24,Franklin - Franklin High,01010505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1569,784.5 +5.024,5,a-phya-i1,2023-24,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,558,558.0 +6.624,5,a-phya-i1,2023-24,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,387,258.0 +6.234666666666667,5,a-phya-i1,2023-24,Franklin - J F Kennedy Memorial,01010013, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +-Infinity,1,a-phya-i1,2023-24,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,333,Infinity +3.8826666666666667,3.88,a-phya-i1,2023-24,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,386,772.0 +6.448,5,a-phya-i1,2023-24,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,291,291.0 +6.128,5,a-phya-i1,2023-24,Franklin - Remington Middle,01010310, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,351,351.0 +4.688,4.69,a-phya-i1,2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,621,621.0 +4.357333333333333,4.36,a-phya-i1,2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,683,683.0 +5.498666666666667,5,a-phya-i1,2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +5.978666666666666,5,a-phya-i1,2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,379,379.0 +4.24,4.24,a-phya-i1,2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,705,705.0 +5.525333333333333,5,a-phya-i1,2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,464,464.0 +4.773333333333333,4.77,a-phya-i1,2023-24,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,605,605.0 +7.322666666666667,5,a-phya-i1,2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,127,127.0 +5.192,5,a-phya-i1,2023-24,Gardner - Gardner Elementary School,01030001, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1053,526.5 +5.842666666666666,5,a-phya-i1,2023-24,Gardner - Gardner High,01030505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,809,404.5 +7.141333333333334,5,a-phya-i1,2023-24,Gardner - Gardner Middle School,01030405, 0.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 3.0,483,161.0 +7.376,5,a-phya-i1,2023-24,Gateway - Chester Elementary,06720059, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,117,117.0 +6.272,5,a-phya-i1,2023-24,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,162,324.0 +5.9093333333333335,5,a-phya-i1,2023-24,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,196,392.0 +6.522666666666667,5,a-phya-i1,2023-24,Gateway - Littleville Elementary School,06720143, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.458666666666667,5,a-phya-i1,2023-24,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,289,289.0 +-Infinity,1,a-phya-i1,2023-24,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,189,Infinity +6.144,5,a-phya-i1,2023-24,Georgetown - Penn Brook,01050010, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,696,348.0 +7.530666666666667,5,a-phya-i1,2023-24,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,88,88.0 +7.392,5,a-phya-i1,2023-24,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,114,114.0 +5.472,5,a-phya-i1,2023-24,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,237,474.0 +7.269333333333333,5,a-phya-i1,2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,137,137.0 +6.8693333333333335,5,a-phya-i1,2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,212,212.0 +5.8453333333333335,5,a-phya-i1,2023-24,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,202,404.0 +-Infinity,1,a-phya-i1,2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,502,Infinity +6.469333333333333,5,a-phya-i1,2023-24,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,287,287.0 +6.8,5,a-phya-i1,2023-24,Gloucester - East Veterans Elementary School,01070030, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,450,225.0 +6.206666666666667,5,a-phya-i1,2023-24,Gloucester - Gloucester High,01070505, 0.0, 0.0, 1.4, 0.0, 1.0, 0.0, 0.0, 2.4,807,336.25 +7.392,5,a-phya-i1,2023-24,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,114,114.0 +6.890666666666666,5,a-phya-i1,2023-24,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +6.330666666666667,5,a-phya-i1,2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,626,313.0 +6.026666666666666,5,a-phya-i1,2023-24,Gloucester - West Parish,01070050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +NaN,NaN,a-phya-i1,2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,0,NaN +6.416,5,a-phya-i1,2023-24,Grafton - Grafton High School,01100505, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 3.0,891,297.0 +6.776,5,a-phya-i1,2023-24,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,459,229.5 +4.858666666666666,4.86,a-phya-i1,2023-24,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,589,589.0 +6.656,5,a-phya-i1,2023-24,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,252,252.0 +5.475555555555554,5,a-phya-i1,2023-24,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 0.7, 0.5, 0.0, 0.0, 1.2,568,473.33333333333337 +6.448,5,a-phya-i1,2023-24,Grafton - South Grafton Elementary,01100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,291,291.0 +-2.72,1,a-phya-i1,2023-24,Granby - East Meadow,01110004, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,402,2010.0 +6.448,5,a-phya-i1,2023-24,Granby - Granby Jr Sr High School,01110505, 0.0, 0.0, 0.0, 0.2, 0.8, 0.0, 0.0, 1.0,291,291.0 +1.808,1.81,a-phya-i1,2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1161,1161.0 +0.304,1,a-phya-i1,2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1443,1443.0 +1.692444444444444,1.69,a-phya-i1,2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.0, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 1.5,1774,1182.6666666666667 +4.914666666666666,4.91,a-phya-i1,2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 4.0,2314,578.5 +5.137333333333333,5,a-phya-i1,2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0.0, 2.0, 0.0, 1.0, 1.0, 0.0, 0.0, 4.0,2147,536.75 +6.88,5,a-phya-i1,2023-24,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,210,210.0 +7.029333333333334,5,a-phya-i1,2023-24,Greenfield - Federal Street School,01140010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,182,182.0 +5.610666666666667,5,a-phya-i1,2023-24,Greenfield - Greenfield High,01140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +6.394666666666667,5,a-phya-i1,2023-24,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +7.024,5,a-phya-i1,2023-24,Greenfield - Newton School,01140035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +7.52,5,a-phya-i1,2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,90,90.0 +7.6,5,a-phya-i1,2023-24,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,75,75.0 +6.645333333333333,5,a-phya-i1,2023-24,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,508,254.0 +5.83843137254902,5,a-phya-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 0.0, 1.7, 0.0, 0.0, 1.7,689,405.29411764705884 +6.0986666666666665,5,a-phya-i1,2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,713,356.5 +6.293333333333333,5,a-phya-i1,2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,320,320.0 +6.442666666666667,5,a-phya-i1,2023-24,Hadley - Hadley Elementary,01170015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,292,292.0 +6.874666666666666,5,a-phya-i1,2023-24,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,211,211.0 +5.072,5,a-phya-i1,2023-24,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,549,549.0 +5.237333333333333,5,a-phya-i1,2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,259,518.0 +6.64,5,a-phya-i1,2023-24,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5, 1.0,255,255.0 +3.2853333333333334,3.29,a-phya-i1,2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,442,884.0 +3.968,3.97,a-phya-i1,2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,378,756.0 +4.469333333333333,4.47,a-phya-i1,2023-24,Hamilton-Wenham - Winthrop School,06750015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,331,662.0 +6.033777777777777,5,a-phya-i1,2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,553,368.6666666666667 +-Infinity,1,a-phya-i1,2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +6.528,5,a-phya-i1,2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,276,276.0 +6.08,5,a-phya-i1,2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +5.384,5,a-phya-i1,2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,981,490.5 +6.277333333333333,5,a-phya-i1,2023-24,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,323,323.0 +6.448,5,a-phya-i1,2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,291,291.0 +6.204444444444444,5,a-phya-i1,2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 1.8,606,336.6666666666667 +6.16,5,a-phya-i1,2023-24,Hampshire - Hampshire Regional High,06830505, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,690,345.0 +7.690666666666667,5,a-phya-i1,2023-24,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,58,58.0 +-Infinity,1,a-phya-i1,2023-24,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,490,Infinity +4.650666666666667,4.65,a-phya-i1,2023-24,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,628,628.0 +4.352,4.35,a-phya-i1,2023-24,Hanover - Hanover High,01220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,684,684.0 +3.7333333333333334,3.73,a-phya-i1,2023-24,Hanover - Hanover Middle,01220305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,800,800.0 +5.642666666666667,5,a-phya-i1,2023-24,Harvard - Hildreth Elementary School,01250005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,442,442.0 +6.266666666666667,5,a-phya-i1,2023-24,Harvard - The Bromfield High School,01250505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +-Infinity,1,a-phya-i1,2023-24,Harvard - The Bromfield Middle School,01250305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +6.954666666666666,5,a-phya-i1,2023-24,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,196,196.0 +7.328,5,a-phya-i1,2023-24,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,126,126.0 +-Infinity,1,a-phya-i1,2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +-Infinity,1,a-phya-i1,2023-24,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,465,Infinity +5.1626666666666665,5,a-phya-i1,2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1064,532.0 +5.792,5,a-phya-i1,2023-24,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,828,414.0 +-Infinity,1,a-phya-i1,2023-24,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,531,Infinity +7.450666666666667,5,a-phya-i1,2023-24,Haverhill - Gateway Academy,01280515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,103,103.0 +5.461333333333333,5,a-phya-i1,2023-24,Haverhill - Golden Hill,01280026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,476,476.0 +-Infinity,1,a-phya-i1,2023-24,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,34,Infinity +2.6906666666666665,2.69,a-phya-i1,2023-24,Haverhill - Haverhill High,01280505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1991,995.5 +5.344,5,a-phya-i1,2023-24,Haverhill - John G Whittier,01280085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,498,498.0 +7.184,5,a-phya-i1,2023-24,Haverhill - Moody,01280045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,153,153.0 +7.013333333333334,5,a-phya-i1,2023-24,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,148,185.0 +5.338666666666667,5,a-phya-i1,2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,499,499.0 +5.648,5,a-phya-i1,2023-24,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,441,441.0 +5.621333333333333,5,a-phya-i1,2023-24,Haverhill - Tilton,01280075, 0.0, 0.0, 0.0, 0.0, 0.6, 0.4, 0.0, 1.0,446,446.0 +6.542222222222222,5,a-phya-i1,2023-24,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.6,164,273.33333333333337 +7.701333333333333,5,a-phya-i1,2023-24,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,56,56.0 +-Infinity,1,a-phya-i1,2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,95,Infinity +-Infinity,1,a-phya-i1,2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +6.8373333333333335,5,a-phya-i1,2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,218,218.0 +5.232,5,a-phya-i1,2023-24,Hingham - East Elementary School,01310005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,519,519.0 +5.066666666666666,5,a-phya-i1,2023-24,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1100,550.0 +5.744,5,a-phya-i1,2023-24,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,846,423.0 +7.045333333333334,5,a-phya-i1,2023-24,Hingham - Plymouth River,01310019, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,358,179.0 +5.370666666666667,5,a-phya-i1,2023-24,Hingham - South Elementary,01310020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,493,493.0 +5.914666666666666,5,a-phya-i1,2023-24,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,391,391.0 +3.7333333333333334,3.73,a-phya-i1,2023-24,Holbrook - Holbrook Middle High School,01330505, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,640,800.0 +3.54,3.54,a-phya-i1,2023-24,Holbrook - John F Kennedy,01330018, 0.0, 0.0, 0.3, 0.0, 0.5, 0.0, 0.0, 0.8,669,836.25 +6.794666666666667,5,a-phya-i1,2023-24,Holland - Holland Elementary,01350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,226,226.0 +4.940952380952381,4.94,a-phya-i1,2023-24,Holliston - Holliston High,01360505, 0.0, 0.0, 0.0, 1.0, 0.4, 0.0, 0.0, 1.4,803,573.5714285714286 +6.453333333333333,5,a-phya-i1,2023-24,Holliston - Miller School,01360007, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,580,290.0 +5.967407407407408,5,a-phya-i1,2023-24,Holliston - Placentino Elementary,01360010, 0.0, 0.0, 0.0, 1.8, 0.0, 0.0, 0.0, 1.8,686,381.1111111111111 +4.506666666666667,4.51,a-phya-i1,2023-24,Holliston - Robert H. Adams Middle School,01360305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,655,655.0 +6.7973333333333334,5,a-phya-i1,2023-24,Holyoke - E N White Elementary,01370045, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,451,225.5 +6.218666666666667,5,a-phya-i1,2023-24,Holyoke - H.B. Lawrence School,01370070, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +6.60711111111111,5,a-phya-i1,2023-24,Holyoke - Holyoke High,01370505, 0.0, 1.0, 0.0, 2.0, 2.0, 1.0, 0.0, 6.0,1567,261.1666666666667 +-Infinity,1,a-phya-i1,2023-24,Holyoke - Holyoke STEM Academy,01370320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,304,Infinity +-Infinity,1,a-phya-i1,2023-24,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,205,Infinity +5.552,5,a-phya-i1,2023-24,Holyoke - Kelly Elementary,01370040, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,459,459.0 +6.682666666666667,5,a-phya-i1,2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,494,247.0 +6.234666666666667,5,a-phya-i1,2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,331,331.0 +5.706666666666667,5,a-phya-i1,2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +6.277333333333333,5,a-phya-i1,2023-24,Holyoke - Morgan Full Service Community School,01370025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,323,323.0 +6.1546666666666665,5,a-phya-i1,2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,692,346.0 +6.026666666666666,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +6.405333333333333,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +6.352,5,a-phya-i1,2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,309,309.0 +3.232,3.23,a-phya-i1,2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,447,894.0 +2.1546666666666665,2.15,a-phya-i1,2023-24,Hopedale - Memorial,01380010, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,548,1096.0 +6.8693333333333335,5,a-phya-i1,2023-24,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,106,212.0 +5.16,5,a-phya-i1,2023-24,Hopkinton - Elmwood,01390010, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,639,532.5 +4.991111111111111,4.99,a-phya-i1,2023-24,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,677,564.1666666666667 +3.5875555555555554,3.59,a-phya-i1,2023-24,Hopkinton - Hopkinton High,01390505, 0.0, 0.2, 0.0, 0.5, 0.8, 0.0, 0.0, 1.5,1241,827.3333333333334 +4.988235294117647,4.99,a-phya-i1,2023-24,Hopkinton - Hopkinton Middle School,01390305, 0.0, 0.2, 0.0, 0.5, 0.0, 1.0, 0.0, 1.7,960,564.7058823529412 +-Infinity,1,a-phya-i1,2023-24,Hopkinton - Hopkinton Pre-School,01390003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,96,Infinity +5.448888888888889,5,a-phya-i1,2023-24,Hopkinton - Marathon Elementary School,01390005, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,574,478.33333333333337 +5.642666666666667,5,a-phya-i1,2023-24,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 +6.472,5,a-phya-i1,2023-24,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,573,286.5 +6.512,5,a-phya-i1,2023-24,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,279,279.0 +5.842666666666666,5,a-phya-i1,2023-24,Hudson - Hudson High,01410505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,809,404.5 +6.736,5,a-phya-i1,2023-24,Hudson - Mulready Elementary,01410007, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,237,237.0 +6.757333333333333,5,a-phya-i1,2023-24,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,233,233.0 +5.781333333333333,5,a-phya-i1,2023-24,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,416,416.0 +7.434666666666667,5,a-phya-i1,2023-24,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,106,106.0 +-Infinity,1,a-phya-i1,2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,788,Infinity +2.8586666666666667,2.86,a-phya-i1,2023-24,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,482,964.0 +3.925333333333333,3.93,a-phya-i1,2023-24,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,382,764.0 +4.042666666666666,4.04,a-phya-i1,2023-24,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,371,742.0 +4.064,4.06,a-phya-i1,2023-24,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,369,738.0 +6.424,5,a-phya-i1,2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,591,295.5 +6.564444444444444,5,a-phya-i1,2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0.0, 0.0, 3.0, 0.0, 2.0, 1.0, 0.0, 6.0,1615,269.1666666666667 +5.905185185185185,5,a-phya-i1,2023-24,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 0.0, 1.8,707,392.77777777777777 +3.9395555555555553,3.94,a-phya-i1,2023-24,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,1142,761.3333333333334 +4.544,4.54,a-phya-i1,2023-24,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,648,648.0 +4.730666666666667,4.73,a-phya-i1,2023-24,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,613,613.0 +5.781333333333333,5,a-phya-i1,2023-24,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,416,416.0 +5.034666666666666,5,a-phya-i1,2023-24,Lawrence - Arlington Elementary,01490009, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,556,556.0 +-Infinity,1,a-phya-i1,2023-24,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,588,Infinity +6.189333333333333,5,a-phya-i1,2023-24,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,679,339.5 +5.317333333333333,5,a-phya-i1,2023-24,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,503,503.0 +5.429333333333333,5,a-phya-i1,2023-24,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,482,482.0 +6.685333333333333,5,a-phya-i1,2023-24,Lawrence - Frost Middle School,01490525, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,493,246.5 +5.445333333333333,5,a-phya-i1,2023-24,Lawrence - Gerard A. Guilmette,01490022, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,479,479.0 +6.762666666666667,5,a-phya-i1,2023-24,Lawrence - Guilmette Middle School,01490025, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,464,232.0 +-Infinity,1,a-phya-i1,2023-24,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,195,Infinity +7.624,5,a-phya-i1,2023-24,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 4.0,282,70.5 +6.624,5,a-phya-i1,2023-24,Lawrence - John Breen School,01490003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +6.538666666666667,5,a-phya-i1,2023-24,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +7.637333333333333,5,a-phya-i1,2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,204,68.0 +6.981333333333334,5,a-phya-i1,2023-24,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,191,191.0 +3.672,3.67,a-phya-i1,2023-24,Lawrence - Lawrence High School,01490515, 0.0, 0.0, 3.0, 0.0, 0.0, 1.0, 0.0, 4.0,3246,811.5 +6.288,5,a-phya-i1,2023-24,Lawrence - Leonard Middle School,01490090, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,321,321.0 +5.536,5,a-phya-i1,2023-24,Lawrence - Oliver Elementary School,01490048, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,462,462.0 +6.1546666666666665,5,a-phya-i1,2023-24,Lawrence - Oliver Middle School,01490049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,346,346.0 +-Infinity,1,a-phya-i1,2023-24,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,590,Infinity +-Infinity,1,a-phya-i1,2023-24,Lawrence - RISE Academy,01490615, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,67,Infinity +5.088,5,a-phya-i1,2023-24,Lawrence - Robert Frost,01490018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,546,546.0 +7.184,5,a-phya-i1,2023-24,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,153,153.0 +7.424,5,a-phya-i1,2023-24,Lawrence - School for Exceptional Studies,01490537, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,108,108.0 +0.96,1,a-phya-i1,2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,660,1320.0 +5.626666666666667,5,a-phya-i1,2023-24,Lawrence - Spark Academy,01490085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,445,445.0 +6.437333333333333,5,a-phya-i1,2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 3.0,879,293.0 +4.442666666666667,4.44,a-phya-i1,2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +6.197333333333333,5,a-phya-i1,2023-24,Lee - Lee Elementary,01500025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +6.357333333333333,5,a-phya-i1,2023-24,Lee - Lee Middle/High School,01500505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,308,308.0 +6.071794871794872,5,a-phya-i1,2023-24,Leicester - Leicester Elementary,01510005, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,470,361.53846153846155 +6.371282051282052,5,a-phya-i1,2023-24,Leicester - Leicester High,01510505, 0.0, 0.3, 0.0, 0.0, 1.0, 0.0, 0.0, 1.3,397,305.38461538461536 +7.128888888888888,5,a-phya-i1,2023-24,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.3, 0.0, 0.0, 0.0, 0.0, 0.0, 0.3,49,163.33333333333334 +6.334358974358974,5,a-phya-i1,2023-24,Leicester - Leicester Middle,01510015, 0.0, 0.3, 0.0, 1.0, 0.0, 0.0, 0.0, 1.3,406,312.3076923076923 +5.621333333333333,5,a-phya-i1,2023-24,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,446,446.0 +6.2026666666666666,5,a-phya-i1,2023-24,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,337,337.0 +7.525333333333333,5,a-phya-i1,2023-24,Leominster - Bennett,01530003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,89,89.0 +-Infinity,1,a-phya-i1,2023-24,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +1.2586666666666666,1.26,a-phya-i1,2023-24,Leominster - Fall Brook,01530007, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,632,1264.0 +-Infinity,1,a-phya-i1,2023-24,Leominster - Frances Drake School,01530010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,485,Infinity +6.253333333333333,5,a-phya-i1,2023-24,Leominster - Johnny Appleseed,01530025, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,655,327.5 +-Infinity,1,a-phya-i1,2023-24,Leominster - Leominster Academy,01530705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +-Infinity,1,a-phya-i1,2023-24,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,65,Infinity +5.1386666666666665,5,a-phya-i1,2023-24,Leominster - Leominster High School,01530505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1073,536.5 +6.933333333333334,5,a-phya-i1,2023-24,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,40,200.0 +6.216,5,a-phya-i1,2023-24,Leominster - Northwest,01530030, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,669,334.5 +7.258666666666667,5,a-phya-i1,2023-24,Leominster - Priest Street,01530040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,139,139.0 +4.88,4.88,a-phya-i1,2023-24,Leominster - Samoset School,01530045, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,468,585.0 +5.41037037037037,5,a-phya-i1,2023-24,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 0.0, 1.0, 0.0, 0.8, 0.0, 1.8,874,485.55555555555554 +7.158518518518518,5,a-phya-i1,2023-24,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,142,157.77777777777777 +5.717333333333333,5,a-phya-i1,2023-24,Lexington - Bowman,01550008, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +6.053333333333334,5,a-phya-i1,2023-24,Lexington - Bridge,01550006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,365,365.0 +6.213333333333333,5,a-phya-i1,2023-24,Lexington - Fiske,01550015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +5.984,5,a-phya-i1,2023-24,Lexington - Harrington,01550030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,378,378.0 +5.84,5,a-phya-i1,2023-24,Lexington - Jonas Clarke Middle,01550305, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,810,405.0 +6.408888888888889,5,a-phya-i1,2023-24,Lexington - Joseph Estabrook,01550010, 0.0, 0.8, 0.0, 1.0, 0.0, 0.0, 0.0, 1.8,537,298.3333333333333 +7.549629629629631,5,a-phya-i1,2023-24,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.9, 0.0, 0.0, 0.0, 0.0, 0.9,76,84.44444444444444 +6.208309178743962,5,a-phya-i1,2023-24,Lexington - Lexington High,01550505, 0.0, 0.0, 1.9, 2.0, 1.0, 1.0, 1.0, 6.9,2318,335.94202898550725 +6.13037037037037,5,a-phya-i1,2023-24,Lexington - Maria Hastings,01550035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.8, 0.0, 1.8,631,350.55555555555554 +5.253333333333333,5,a-phya-i1,2023-24,Lexington - Wm Diamond Middle,01550310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,927,515.0 +5.232,5,a-phya-i1,2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,519,519.0 +5.365333333333333,5,a-phya-i1,2023-24,Lincoln - Hanscom School,01570305, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,494,494.0 +5.125333333333334,5,a-phya-i1,2023-24,Lincoln - Lincoln School,01570025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,539,539.0 +4.101333333333334,4.1,a-phya-i1,2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0.0, 0.0, 0.4, 0.0, 1.6, 0.0, 0.0, 2.0,1462,731.0 +5.402666666666667,5,a-phya-i1,2023-24,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,487,487.0 +5.930666666666666,5,a-phya-i1,2023-24,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,388,388.0 +-Infinity,1,a-phya-i1,2023-24,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +5.637333333333333,5,a-phya-i1,2023-24,Littleton - Shaker Lane Elementary,01580005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,443,443.0 +7.0,5,a-phya-i1,2023-24,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,375,187.5 +5.818666666666667,5,a-phya-i1,2023-24,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,409,409.0 +6.293333333333333,5,a-phya-i1,2023-24,Longmeadow - Glenbrook Middle,01590017, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,320,320.0 +5.570666666666667,5,a-phya-i1,2023-24,Longmeadow - Longmeadow High,01590505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,911,455.5 +6.346666666666667,5,a-phya-i1,2023-24,Longmeadow - Williams Middle,01590305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,310,310.0 +5.610666666666667,5,a-phya-i1,2023-24,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +-Infinity,1,a-phya-i1,2023-24,Lowell - Abraham Lincoln,01600020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,489,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - B.F. Butler Middle School,01600310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,505,Infinity +5.44,5,a-phya-i1,2023-24,Lowell - Bartlett Community Partnership,01600090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,480,480.0 +-Infinity,1,a-phya-i1,2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,104,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Charles W Morey,01600030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,478,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,436,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,658,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Dr Gertrude Bailey,01600002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,443,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,58,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Greenhalge,01600015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,457,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Henry J Robinson Middle,01600330, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,592,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - James S Daley Middle School,01600315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,680,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - James Sullivan Middle School,01600340, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,617,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - John J Shaughnessy,01600050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,469,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Joseph McAvinnue,01600010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,429,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,625,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,16,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Lowell High,01600505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,3402,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Moody Elementary,01600027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,248,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Pawtucketville Memorial,01600036, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,452,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Peter W Reilly,01600040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,461,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Pyne Arts,01600018, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,464,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Rogers STEM Academy,01600005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,858,Infinity +5.429333333333333,5,a-phya-i1,2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,482,482.0 +-Infinity,1,a-phya-i1,2023-24,Lowell - The Career Academy,01600515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,92,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell - Washington,01600055, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,242,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,817,Infinity +-Infinity,1,a-phya-i1,2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,106,Infinity +6.085333333333334,5,a-phya-i1,2023-24,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,359,359.0 +6.354666666666667,5,a-phya-i1,2023-24,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,617,308.5 +6.0,5,a-phya-i1,2023-24,Ludlow - Ludlow Senior High,01610505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,750,375.0 +5.1626666666666665,5,a-phya-i1,2023-24,Ludlow - Paul R Baird Middle,01610305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,532,532.0 +-Infinity,1,a-phya-i1,2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +-Infinity,1,a-phya-i1,2023-24,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,449,Infinity +-Infinity,1,a-phya-i1,2023-24,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,363,Infinity +6.957333333333334,5,a-phya-i1,2023-24,Lunenburg - Lunenburg Primary School,01620010, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,391,195.5 +6.026666666666666,5,a-phya-i1,2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +5.376,5,a-phya-i1,2023-24,Lynn - A Drewicz Elementary,01630016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,492,492.0 +6.784,5,a-phya-i1,2023-24,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +4.658666666666667,4.66,a-phya-i1,2023-24,Lynn - Breed Middle School,01630405, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1253,626.5 +6.309333333333333,5,a-phya-i1,2023-24,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,317,317.0 +7.0986666666666665,5,a-phya-i1,2023-24,Lynn - Capt William G Shoemaker,01630090, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,338,169.0 +4.661333333333333,4.66,a-phya-i1,2023-24,Lynn - Classical High,01630505, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 3.0,1878,626.0 +4.677333333333333,4.68,a-phya-i1,2023-24,Lynn - Cobbet Elementary,01630035, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +6.309333333333333,5,a-phya-i1,2023-24,Lynn - E J Harrington,01630045, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,634,317.0 +5.722666666666667,5,a-phya-i1,2023-24,Lynn - Edward A Sisson,01630095, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,427,427.0 +7.765333333333333,5,a-phya-i1,2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,88,44.0 +7.1626666666666665,5,a-phya-i1,2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,157,157.0 +5.381333333333333,5,a-phya-i1,2023-24,Lynn - Hood,01630055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,491,491.0 +4.277333333333333,4.28,a-phya-i1,2023-24,Lynn - Ingalls,01630060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,698,698.0 +-Infinity,1,a-phya-i1,2023-24,Lynn - Julia F Callahan,01630030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,394,Infinity +6.848,5,a-phya-i1,2023-24,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +5.237333333333333,5,a-phya-i1,2023-24,Lynn - Lynn English High,01630510, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 4.0,2072,518.0 +6.616,5,a-phya-i1,2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 1.0, 1.0, 2.0, 0.0, 1.0, 0.0, 1.0, 6.0,1557,259.5 +7.141333333333334,5,a-phya-i1,2023-24,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,161,161.0 +5.104,5,a-phya-i1,2023-24,Lynn - Pickering Middle,01630420, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,543,543.0 +5.770666666666667,5,a-phya-i1,2023-24,Lynn - Robert L Ford,01630050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,418,418.0 +6.554666666666667,5,a-phya-i1,2023-24,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,271,271.0 +6.293333333333333,5,a-phya-i1,2023-24,Lynn - Thurgood Marshall Mid,01630305, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,1280,320.0 +-Infinity,1,a-phya-i1,2023-24,Lynn - Tracy,01630100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,380,Infinity +7.568,5,a-phya-i1,2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,81,81.0 +5.616,5,a-phya-i1,2023-24,Lynn - Washington Elementary School,01630005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +7.872,5,a-phya-i1,2023-24,Lynn - William R Fallon,01630080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,24,24.0 +5.045333333333334,5,a-phya-i1,2023-24,Lynn - Wm P Connery,01630040, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,554,554.0 +6.1579487179487185,5,a-phya-i1,2023-24,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.3, 1.0, 0.0, 0.0, 0.0, 0.0, 1.3,449,345.38461538461536 +1.9093333333333333,1.91,a-phya-i1,2023-24,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,571,1142.0 +0.43733333333333335,1,a-phya-i1,2023-24,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,709,1418.0 +-Infinity,1,a-phya-i1,2023-24,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,39,Infinity +3.541333333333333,3.54,a-phya-i1,2023-24,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,418,836.0 +-Infinity,1,a-phya-i1,2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,97,Infinity +3.1946666666666665,3.19,a-phya-i1,2023-24,Malden - Beebe,01650003, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,901,901.0 +5.586666666666667,5,a-phya-i1,2023-24,Malden - Ferryway,01650013, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,905,452.5 +5.066666666666666,5,a-phya-i1,2023-24,Malden - Forestdale,01650027, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,550,550.0 +6.533333333333333,5,a-phya-i1,2023-24,Malden - Linden,01650047, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,825,275.0 +6.661333333333333,5,a-phya-i1,2023-24,Malden - Malden Early Learning Center,01650049, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,251,251.0 +4.632888888888889,4.63,a-phya-i1,2023-24,Malden - Malden High,01650505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 1.0, 3.0,1894,631.3333333333334 +5.450666666666667,5,a-phya-i1,2023-24,Malden - Salemwood,01650057, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,956,478.0 +6.778666666666667,5,a-phya-i1,2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,229,229.0 +4.444444444444444,4.44,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.6, 0.0, 0.0, 0.0, 0.0, 0.0, 0.6,400,666.6666666666667 +4.346666666666667,4.35,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.0, 0.4,274,685.0 +6.416,5,a-phya-i1,2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,297,297.0 +6.101333333333334,5,a-phya-i1,2023-24,Mansfield - Everett W Robinson,01670007, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,712,356.0 +5.904,5,a-phya-i1,2023-24,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,786,393.0 +6.032,5,a-phya-i1,2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,738,369.0 +5.24,5,a-phya-i1,2023-24,Mansfield - Mansfield High,01670505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1035,517.5 +7.466666666666667,5,a-phya-i1,2023-24,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,100,100.0 +6.522666666666667,5,a-phya-i1,2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.288,5,a-phya-i1,2023-24,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,321,321.0 +5.642666666666667,5,a-phya-i1,2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,442,442.0 +5.41037037037037,5,a-phya-i1,2023-24,Marblehead - Marblehead High,01680505, 0.0, 1.0, 0.0, 0.8, 0.0, 0.0, 0.0, 1.8,874,485.55555555555554 +5.637333333333333,5,a-phya-i1,2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,443,443.0 +6.568,5,a-phya-i1,2023-24,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,537,268.5 +7.066666666666666,5,a-phya-i1,2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,175,175.0 +5.925333333333334,5,a-phya-i1,2023-24,Marion - Sippican,01690005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +5.482666666666667,5,a-phya-i1,2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,944,472.0 +4.506666666666667,4.51,a-phya-i1,2023-24,Marlborough - Charles Jaworek School,01700030, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,655,655.0 +6.768,5,a-phya-i1,2023-24,Marlborough - Early Childhood Center,01700006, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,231,231.0 +5.269333333333333,5,a-phya-i1,2023-24,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,512,512.0 +3.7546666666666666,3.75,a-phya-i1,2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,796,796.0 +5.298666666666667,5,a-phya-i1,2023-24,Marlborough - Marlborough High,01700505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,1013,506.5 +6.458666666666667,5,a-phya-i1,2023-24,Marlborough - Richer,01700025, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,578,289.0 +6.554666666666667,5,a-phya-i1,2023-24,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,271,271.0 +6.784,5,a-phya-i1,2023-24,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,228,228.0 +5.736,5,a-phya-i1,2023-24,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.5, 2.0,849,424.5 +6.117333333333334,5,a-phya-i1,2023-24,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,353,353.0 +4.774736842105263,4.77,a-phya-i1,2023-24,Marshfield - Marshfield High,01710505, 0.0, 0.0, 1.0, 0.0, 0.9, 0.0, 0.0, 1.9,1149,604.7368421052632 +7.36,5,a-phya-i1,2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,120,120.0 +6.792,5,a-phya-i1,2023-24,Marshfield - Martinson Elementary,01710025, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,453,226.5 +6.672,5,a-phya-i1,2023-24,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,249,249.0 +4.368,4.37,a-phya-i1,2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,681,681.0 +7.533333333333333,5,a-phya-i1,2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,175,87.5 +6.101333333333334,5,a-phya-i1,2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,356,356.0 +5.4,5,a-phya-i1,2023-24,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,975,487.5 +6.506666666666667,5,a-phya-i1,2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,560,280.0 +5.856,5,a-phya-i1,2023-24,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,402,402.0 +4.693333333333333,4.69,a-phya-i1,2023-24,Mashpee - Mashpee Middle-High School,01720505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,620,620.0 +5.824,5,a-phya-i1,2023-24,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,408,408.0 +5.8933333333333335,5,a-phya-i1,2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 3.0,1185,395.0 +-Infinity,1,a-phya-i1,2023-24,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,230,Infinity +7.093333333333334,5,a-phya-i1,2023-24,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,170,170.0 +6.047179487179487,5,a-phya-i1,2023-24,Maynard - Fowler School,01740305, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,476,366.15384615384613 +6.244102564102564,5,a-phya-i1,2023-24,Maynard - Green Meadow,01740010, 0.0, 0.0, 0.0, 1.3, 0.0, 0.0, 0.0, 1.3,428,329.2307692307692 +6.781538461538461,5,a-phya-i1,2023-24,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 0.3, 0.0, 1.0, 0.0, 1.3,297,228.46153846153845 +5.8453333333333335,5,a-phya-i1,2023-24,Medfield - Dale Street,01750005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,404,404.0 +4.866666666666666,4.87,a-phya-i1,2023-24,Medfield - Medfield Senior High,01750505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,705,587.5 +5.802666666666667,5,a-phya-i1,2023-24,Medfield - Memorial School,01750003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,412,412.0 +5.8773333333333335,5,a-phya-i1,2023-24,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,398,398.0 +5.771428571428571,5,a-phya-i1,2023-24,Medfield - Thomas Blake Middle,01750305, 0.0, 0.0, 0.0, 0.4, 0.0, 1.0, 0.0, 1.4,585,417.8571428571429 +6.568,5,a-phya-i1,2023-24,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,537,268.5 +7.8,5,a-phya-i1,2023-24,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.0, 0.4,15,37.5 +6.732698412698412,5,a-phya-i1,2023-24,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.6, 2.1,499,237.61904761904762 +5.696,5,a-phya-i1,2023-24,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,432,432.0 +7.196444444444445,5,a-phya-i1,2023-24,Medford - Madeleine Dugger Andrews,01760315, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 3.0,452,150.66666666666666 +5.882666666666666,5,a-phya-i1,2023-24,Medford - Medford High,01760505, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 3.0,1191,397.0 +5.969777777777777,5,a-phya-i1,2023-24,Medford - Milton Fuller Roberts,01760150, 0.0, 0.5, 1.0, 0.0, 0.0, 0.0, 0.0, 1.5,571,380.6666666666667 +6.834666666666666,5,a-phya-i1,2023-24,Medford - Missituk Elementary School,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,437,218.5 +5.28,5,a-phya-i1,2023-24,Medway - Burke/Memorial Elementary School,01770015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,510,510.0 +5.989333333333334,5,a-phya-i1,2023-24,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,377,377.0 +4.762666666666667,4.76,a-phya-i1,2023-24,Medway - Medway High,01770505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,607,607.0 +4.453333333333333,4.45,a-phya-i1,2023-24,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,665,665.0 +6.624,5,a-phya-i1,2023-24,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,258,258.0 +-Infinity,1,a-phya-i1,2023-24,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,283,Infinity +-Infinity,1,a-phya-i1,2023-24,Melrose - Horace Mann,01780025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,266,Infinity +-Infinity,1,a-phya-i1,2023-24,Melrose - Lincoln,01780020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,412,Infinity +-Infinity,1,a-phya-i1,2023-24,Melrose - Melrose High,01780505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,959,Infinity +-Infinity,1,a-phya-i1,2023-24,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,910,Infinity +5.850666666666666,5,a-phya-i1,2023-24,Melrose - Roosevelt,01780035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +5.8613333333333335,5,a-phya-i1,2023-24,Melrose - Winthrop,01780050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,401,401.0 +5.984,5,a-phya-i1,2023-24,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.338666666666667,5,a-phya-i1,2023-24,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,499,499.0 +4.608,4.61,a-phya-i1,2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,636,636.0 +5.018666666666666,5,a-phya-i1,2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,559,559.0 +5.495757575757576,5,a-phya-i1,2023-24,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.2, 2.2,1033,469.5454545454545 +5.448888888888889,5,a-phya-i1,2023-24,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.2, 1.0, 1.0, 0.0, 0.0, 0.2, 2.4,1148,478.33333333333337 +7.237333333333333,5,a-phya-i1,2023-24,Methuen - Early Childhood Center,01810001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,143,143.0 +6.256666666666667,5,a-phya-i1,2023-24,Methuen - Marsh Grammar School,01810030, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.2, 3.2,1046,326.875 +3.3987878787878794,3.4,a-phya-i1,2023-24,Methuen - Methuen High,01810505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.2, 2.2,1898,862.7272727272726 +2.3822222222222216,2.38,a-phya-i1,2023-24,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.2, 1.2,1264,1053.3333333333335 +4.8853333333333335,4.89,a-phya-i1,2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,584,584.0 +4.5624242424242425,4.56,a-phya-i1,2023-24,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 1.1,709,644.5454545454545 +-2.8622222222222224,1,a-phya-i1,2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,611,2036.6666666666667 +7.321904761904762,5,a-phya-i1,2023-24,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 0.1, 0.0, 1.0, 1.0, 2.1,267,127.14285714285714 +3.5893333333333333,3.59,a-phya-i1,2023-24,Middleborough - Middleborough High,01820505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,827,827.0 +6.48,5,a-phya-i1,2023-24,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,285,285.0 +6.4462222222222225,5,a-phya-i1,2023-24,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,437,291.3333333333333 +4.965333333333334,4.97,a-phya-i1,2023-24,Milford - Brookside,01850065, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,569,569.0 +5.632,5,a-phya-i1,2023-24,Milford - Memorial,01850010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,444,444.0 +4.541333333333333,4.54,a-phya-i1,2023-24,Milford - Milford High,01850505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,1297,648.5 +5.262222222222222,5,a-phya-i1,2023-24,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.0, 0.3,154,513.3333333333334 +5.410666666666667,5,a-phya-i1,2023-24,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,971,485.5 +5.392,5,a-phya-i1,2023-24,Milford - Woodland,01850090, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,978,489.0 +5.536,5,a-phya-i1,2023-24,Millbury - Elmwood Street,01860017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,462,462.0 +6.077333333333334,5,a-phya-i1,2023-24,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,721,360.5 +5.509333333333333,5,a-phya-i1,2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,467,467.0 +6.413333333333333,5,a-phya-i1,2023-24,Millis - Clyde F Brown,01870005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,595,297.5 +4.618666666666667,4.62,a-phya-i1,2023-24,Millis - Millis High School,01870505, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,317,634.0 +5.141333333333334,5,a-phya-i1,2023-24,Millis - Millis Middle,01870020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,268,536.0 +-Infinity,1,a-phya-i1,2023-24,Millis - TIES,01870515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +2.88,2.88,a-phya-i1,2023-24,Milton - Charles S Pierce Middle,01890410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,960,960.0 +4.874666666666666,4.87,a-phya-i1,2023-24,Milton - Collicot,01890005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +4.741333333333333,4.74,a-phya-i1,2023-24,Milton - Cunningham School,01890007, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,611,611.0 +4.682666666666667,4.68,a-phya-i1,2023-24,Milton - Glover,01890010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,622,622.0 +2.176,2.18,a-phya-i1,2023-24,Milton - Milton High,01890505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,1092,1092.0 +5.605333333333333,5,a-phya-i1,2023-24,Milton - Tucker,01890020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,449,449.0 +4.357333333333333,4.36,a-phya-i1,2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,683,683.0 +6.581333333333333,5,a-phya-i1,2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +7.3133333333333335,5,a-phya-i1,2023-24,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,103,128.75 +6.405333333333333,5,a-phya-i1,2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,299,299.0 +7.264,5,a-phya-i1,2023-24,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,138,138.0 +7.205333333333333,5,a-phya-i1,2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,149,149.0 +5.525333333333333,5,a-phya-i1,2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,464,464.0 +5.86962962962963,5,a-phya-i1,2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 0.0, 0.5, 0.0, 1.3, 0.0, 0.0, 1.8,719,399.44444444444446 +6.896,5,a-phya-i1,2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,414,207.0 +5.936,5,a-phya-i1,2023-24,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,387,387.0 +6.426666666666667,5,a-phya-i1,2023-24,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,295,295.0 +7.333333333333333,5,a-phya-i1,2023-24,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,125,125.0 +4.192,4.19,a-phya-i1,2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1428,714.0 +6.778666666666667,5,a-phya-i1,2023-24,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,229,229.0 +5.050666666666666,5,a-phya-i1,2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,553,553.0 +5.701333333333333,5,a-phya-i1,2023-24,Mount Greylock - Williamstown Elementary,07150010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,431,431.0 +6.040888888888889,5,a-phya-i1,2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.0, 0.5, 0.5, 0.0, 3.0, 0.5, 0.0, 4.5,1653,367.3333333333333 +7.205333333333333,5,a-phya-i1,2023-24,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,149,149.0 +-Infinity,1,a-phya-i1,2023-24,Nantucket - Cyrus Peirce,01970010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,353,Infinity +5.882666666666666,5,a-phya-i1,2023-24,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,397,397.0 +4.8373333333333335,4.84,a-phya-i1,2023-24,Nantucket - Nantucket High,01970505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,593,593.0 +6.1866666666666665,5,a-phya-i1,2023-24,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,340,340.0 +6.048,5,a-phya-i1,2023-24,Narragansett - Narragansett Middle,07200305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,366,366.0 +5.466666666666667,5,a-phya-i1,2023-24,Narragansett - Narragansett Regional High,07200505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +6.368,5,a-phya-i1,2023-24,Narragansett - Templeton Elementary School,07200020, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,612,306.0 +5.333333333333333,5,a-phya-i1,2023-24,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,500,500.0 +6.414933333333333,5,a-phya-i1,2023-24,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 0.0, 2.5, 0.0, 0.0, 2.5,743,297.2 +5.8933333333333335,5,a-phya-i1,2023-24,Nashoba - Hale,07250310, 0.0, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.6,237,395.0 +7.336,5,a-phya-i1,2023-24,Nashoba - Luther Burbank Middle School,07250305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,249,124.5 +5.541333333333333,5,a-phya-i1,2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,461,461.0 +5.757333333333333,5,a-phya-i1,2023-24,Nashoba - Nashoba Regional,07250505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,841,420.5 +5.251555555555555,5,a-phya-i1,2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.5, 1.5,773,515.3333333333334 +6.373333333333333,5,a-phya-i1,2023-24,Natick - Bennett-Hemenway,01980005, 0.0, 0.0, 0.6, 0.0, 0.0, 1.0, 0.0, 1.6,488,305.0 +5.290666666666667,5,a-phya-i1,2023-24,Natick - Brown,01980010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,508,508.0 +5.570666666666667,5,a-phya-i1,2023-24,Natick - J F Kennedy Middle School,01980305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,911,455.5 +7.728,5,a-phya-i1,2023-24,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,51,51.0 +5.8133333333333335,5,a-phya-i1,2023-24,Natick - Lilja Elementary,01980035, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,410,410.0 +5.632,5,a-phya-i1,2023-24,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,444,444.0 +4.2816,4.28,a-phya-i1,2023-24,Natick - Natick High,01980505, 0.0, 0.0, 0.6, 0.0, 1.0, 0.9, 0.0, 2.5,1743,697.2 +6.465641025641026,5,a-phya-i1,2023-24,Natick - Wilson Middle,01980310, 0.0, 1.0, 0.0, 0.0, 0.0, 1.6, 0.0, 2.6,748,287.6923076923077 +5.329777777777777,5,a-phya-i1,2023-24,Nauset - Nauset Regional High,06600505, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 0.0, 1.5,751,500.6666666666667 +6.275555555555556,5,a-phya-i1,2023-24,Nauset - Nauset Regional Middle,06600305, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 0.0, 1.5,485,323.3333333333333 +5.858461538461539,5,a-phya-i1,2023-24,Needham - Broadmeadow,01990005, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 0.0, 1.3,522,401.53846153846155 +6.166153846153846,5,a-phya-i1,2023-24,Needham - High Rock School,01990410, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,447,343.8461538461538 +6.35076923076923,5,a-phya-i1,2023-24,Needham - John Eliot,01990020, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,402,309.2307692307692 +5.781880341880341,5,a-phya-i1,2023-24,Needham - Needham High,01990505, 0.0, 0.0, 0.1, 0.0, 1.7, 1.0, 1.0, 3.9,1622,415.8974358974359 +6.381449275362319,5,a-phya-i1,2023-24,Needham - Newman Elementary,01990050, 0.0, 0.0, 0.1, 2.0, 0.1, 0.0, 0.0, 2.3,698,303.47826086956525 +5.765079365079365,5,a-phya-i1,2023-24,Needham - Pollard Middle,01990405, 0.0, 0.0, 0.1, 1.0, 0.9, 0.0, 0.0, 2.1,880,419.04761904761904 +-1.44,1,a-phya-i1,2023-24,Needham - Sunita L. Williams Elementary,01990035, 0.0, 0.0, 0.1, 0.0, 0.1, 0.0, 0.0, 0.3,531,1770.0 +6.198974358974359,5,a-phya-i1,2023-24,Needham - William Mitchell,01990040, 0.0, 0.0, 0.1, 0.0, 1.1, 0.0, 0.0, 1.3,439,337.6923076923077 +6.097777777777777,5,a-phya-i1,2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 0.0, 1.0, 0.0, 0.4, 0.0, 0.0, 1.0, 2.4,856,356.6666666666667 +6.208,5,a-phya-i1,2023-24,New Bedford - Abraham Lincoln,02010095, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,672,336.0 +6.373333333333333,5,a-phya-i1,2023-24,New Bedford - Alfred J Gomes,02010063, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,610,305.0 +6.752,5,a-phya-i1,2023-24,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +6.645333333333333,5,a-phya-i1,2023-24,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +7.253333333333333,5,a-phya-i1,2023-24,New Bedford - Casimir Pulaski,02010123, 0.0, 0.0, 2.0, 1.0, 1.0, 0.0, 0.0, 4.0,560,140.0 +6.602666666666667,5,a-phya-i1,2023-24,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,262,262.0 +6.592,5,a-phya-i1,2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,264,264.0 +6.693333333333333,5,a-phya-i1,2023-24,New Bedford - Ellen R Hathaway,02010075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,245,245.0 +6.517333333333333,5,a-phya-i1,2023-24,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,278,278.0 +6.732444444444445,5,a-phya-i1,2023-24,New Bedford - Hayden/McFadden,02010078, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,713,237.66666666666666 +5.957333333333334,5,a-phya-i1,2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,383,383.0 +6.394666666666667,5,a-phya-i1,2023-24,New Bedford - James B Congdon,02010040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,301,301.0 +7.410666666666667,5,a-phya-i1,2023-24,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,221,110.5 +6.592,5,a-phya-i1,2023-24,New Bedford - John Avery Parker,02010115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,264,264.0 +-Infinity,1,a-phya-i1,2023-24,New Bedford - John B Devalles,02010050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,292,Infinity +7.74162962962963,5,a-phya-i1,2023-24,New Bedford - Keith Middle School,02010405, 1.0, 3.0, 5.0, 4.0, 2.0, 1.0, 2.0, 18.0,872,48.44444444444444 +5.795809523809524,5,a-phya-i1,2023-24,New Bedford - New Bedford High,02010505, 0.0, 0.0, 1.0, 2.0, 3.0, 0.0, 1.0, 7.0,2893,413.2857142857143 +6.1546666666666665,5,a-phya-i1,2023-24,New Bedford - Normandin Middle School,02010410, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 3.0,1038,346.0 +6.599111111111111,5,a-phya-i1,2023-24,New Bedford - Roosevelt Middle School,02010415, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0, 0.0, 3.0,788,262.6666666666667 +4.730666666666667,4.73,a-phya-i1,2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,613,613.0 +6.906666666666666,5,a-phya-i1,2023-24,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,205,205.0 +7.541333333333333,5,a-phya-i1,2023-24,New Bedford - Trinity Day Academy,02010510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,86,86.0 +7.6817777777777785,5,a-phya-i1,2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,179,59.666666666666664 +-Infinity,1,a-phya-i1,2023-24,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,261,Infinity +-Infinity,1,a-phya-i1,2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,730,Infinity +7.086666666666667,5,a-phya-i1,2023-24,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,137,171.25 +6.4,5,a-phya-i1,2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,300,300.0 +6.389333333333333,5,a-phya-i1,2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,604,302.0 +6.604444444444444,5,a-phya-i1,2023-24,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,785,261.6666666666667 +5.477333333333333,5,a-phya-i1,2023-24,Newburyport - Rupert A Nock Middle,02040305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +5.952,5,a-phya-i1,2023-24,Newton - A E Angier,02070005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,384,384.0 +5.792,5,a-phya-i1,2023-24,Newton - Bigelow Middle,02070305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,414,414.0 +6.1066666666666665,5,a-phya-i1,2023-24,Newton - Bowen,02070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +6.1066666666666665,5,a-phya-i1,2023-24,Newton - C C Burr,02070020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,355,355.0 +5.717333333333333,5,a-phya-i1,2023-24,Newton - Cabot,02070025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,428,428.0 +4.096,4.1,a-phya-i1,2023-24,Newton - Charles E Brown Middle,02070310, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,732,732.0 +6.08,5,a-phya-i1,2023-24,Newton - Countryside,02070040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +5.685333333333333,5,a-phya-i1,2023-24,Newton - F A Day Middle,02070315, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,868,434.0 +6.1386666666666665,5,a-phya-i1,2023-24,Newton - Franklin,02070055, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,349,349.0 +6.08,5,a-phya-i1,2023-24,Newton - Horace Mann,02070075, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,360,360.0 +6.8693333333333335,5,a-phya-i1,2023-24,Newton - John Ward,02070120, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,212,212.0 +6.250666666666667,5,a-phya-i1,2023-24,Newton - Lincoln-Eliot,02070070, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +6.218666666666667,5,a-phya-i1,2023-24,Newton - Mason-Rice,02070080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,334,334.0 +6.032,5,a-phya-i1,2023-24,Newton - Memorial Spaulding,02070105, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,369,369.0 +7.013333333333334,5,a-phya-i1,2023-24,Newton - Newton Early Childhood Program,02070108, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,185,185.0 +2.352,2.35,a-phya-i1,2023-24,Newton - Newton North High,02070505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,2118,1059.0 +4.6915555555555555,4.69,a-phya-i1,2023-24,Newton - Newton South High,02070510, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 3.0,1861,620.3333333333334 +4.544,4.54,a-phya-i1,2023-24,Newton - Oak Hill Middle,02070320, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,648,648.0 +6.741333333333333,5,a-phya-i1,2023-24,Newton - Peirce,02070100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,236,236.0 +6.709333333333333,5,a-phya-i1,2023-24,Newton - Underwood,02070115, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,242,242.0 +6.8533333333333335,5,a-phya-i1,2023-24,Newton - Williams,02070125, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,215,215.0 +5.872,5,a-phya-i1,2023-24,Newton - Zervas,02070130, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +5.056,5,a-phya-i1,2023-24,Norfolk - Freeman-Kennedy School,02080005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,552,552.0 +6.261333333333333,5,a-phya-i1,2023-24,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 1.5,489,326.0 +4.874666666666666,4.87,a-phya-i1,2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +6.8373333333333335,5,a-phya-i1,2023-24,North Adams - Brayton,02090035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,218,218.0 +6.645333333333333,5,a-phya-i1,2023-24,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,254,254.0 +5.52,5,a-phya-i1,2023-24,North Adams - Drury High,02090505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,465,465.0 +6.56,5,a-phya-i1,2023-24,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,270,270.0 +6.898666666666666,5,a-phya-i1,2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,413,206.5 +5.504,5,a-phya-i1,2023-24,North Andover - Annie L Sargent School,02110018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,468,468.0 +6.581333333333333,5,a-phya-i1,2023-24,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +5.973333333333334,5,a-phya-i1,2023-24,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,380,380.0 +-Infinity,1,a-phya-i1,2023-24,North Andover - Kittredge,02110015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,222,Infinity +5.1692307692307695,5,a-phya-i1,2023-24,North Andover - North Andover High,02110505, 0.0, 1.0, 0.0, 1.0, 0.6, 0.0, 0.0, 2.6,1380,530.7692307692307 +5.288,5,a-phya-i1,2023-24,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1017,508.5 +6.309333333333333,5,a-phya-i1,2023-24,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,317,317.0 +5.8293333333333335,5,a-phya-i1,2023-24,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +6.464,5,a-phya-i1,2023-24,North Attleborough - Community,02120030, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +6.72,5,a-phya-i1,2023-24,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,240,240.0 +5.1146666666666665,5,a-phya-i1,2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +5.1226666666666665,5,a-phya-i1,2023-24,North Attleborough - North Attleboro High,02120505, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,1079,539.5 +-Infinity,1,a-phya-i1,2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,148,Infinity +2.8586666666666667,2.86,a-phya-i1,2023-24,North Attleborough - North Attleborough Middle,02120305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,964,964.0 +6.650666666666667,5,a-phya-i1,2023-24,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,253,253.0 +6.538666666666667,5,a-phya-i1,2023-24,North Brookfield - North Brookfield Elementary,02150015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,274,274.0 +7.290666666666667,5,a-phya-i1,2023-24,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 +7.1946666666666665,5,a-phya-i1,2023-24,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,151,151.0 +5.589333333333333,5,a-phya-i1,2023-24,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,452,452.0 +6.704,5,a-phya-i1,2023-24,North Middlesex - Nissitissit Middle School,07350310, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,486,243.0 +5.476666666666667,5,a-phya-i1,2023-24,North Middlesex - North Middlesex Regional,07350505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8, 1.6,757,473.125 +5.706666666666667,5,a-phya-i1,2023-24,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +7.434666666666667,5,a-phya-i1,2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,106,106.0 +4.736,4.74,a-phya-i1,2023-24,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,612,612.0 +6.693333333333333,5,a-phya-i1,2023-24,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,294,245.0 +6.177777777777777,5,a-phya-i1,2023-24,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,410,341.6666666666667 +5.991111111111111,5,a-phya-i1,2023-24,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 1.2,452,376.6666666666667 +5.253333333333333,5,a-phya-i1,2023-24,North Reading - North Reading High,02170505, 0.0, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 1.2,618,515.0 +5.586666666666667,5,a-phya-i1,2023-24,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 1.2,543,452.5 +6.618666666666667,5,a-phya-i1,2023-24,Northampton - Bridge Street,02100005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,259,259.0 +6.528,5,a-phya-i1,2023-24,Northampton - Jackson Street,02100020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +5.109333333333334,5,a-phya-i1,2023-24,Northampton - John F Kennedy Middle School,02100410, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,542,542.0 +6.517333333333333,5,a-phya-i1,2023-24,Northampton - Leeds,02100025, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +3.1626666666666665,3.16,a-phya-i1,2023-24,Northampton - Northampton High,02100505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,907,907.0 +7.378666666666667,5,a-phya-i1,2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,233,116.5 +6.482666666666667,5,a-phya-i1,2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,569,284.5 +4.816,4.82,a-phya-i1,2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1194,597.0 +6.3533333333333335,5,a-phya-i1,2023-24,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,247,308.75 +6.496,5,a-phya-i1,2023-24,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,282,282.0 +6.501333333333333,5,a-phya-i1,2023-24,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,281,281.0 +6.3,5,a-phya-i1,2023-24,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,255,318.75 +6.735555555555555,5,a-phya-i1,2023-24,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 0.0, 0.0, 2.0, 0.4, 0.0, 2.4,569,237.08333333333334 +5.155555555555555,5,a-phya-i1,2023-24,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.8, 1.0, 0.0, 0.0, 0.0, 1.8,960,533.3333333333334 +5.477333333333333,5,a-phya-i1,2023-24,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,473,473.0 +6.56,5,a-phya-i1,2023-24,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.6, 0.0, 1.6,432,270.0 +4.418666666666667,4.42,a-phya-i1,2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,1343,671.5 +-Infinity,1,a-phya-i1,2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,520,Infinity +6.224,5,a-phya-i1,2023-24,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +5.1946666666666665,5,a-phya-i1,2023-24,Norton - J C Solmonese,02180015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,526,526.0 +6.384,5,a-phya-i1,2023-24,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,303,303.0 +4.346666666666667,4.35,a-phya-i1,2023-24,Norton - Norton High,02180505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,685,685.0 +5.018666666666666,5,a-phya-i1,2023-24,Norton - Norton Middle,02180305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,559,559.0 +5.1146666666666665,5,a-phya-i1,2023-24,Norwell - Grace Farrar Cole,02190005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,541,541.0 +4.8213333333333335,4.82,a-phya-i1,2023-24,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,596,596.0 +5.333333333333333,5,a-phya-i1,2023-24,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,500,500.0 +5.152,5,a-phya-i1,2023-24,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,534,534.0 +6.368,5,a-phya-i1,2023-24,Norwood - Balch,02200005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,306,306.0 +6.666666666666667,5,a-phya-i1,2023-24,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,250,250.0 +6.752,5,a-phya-i1,2023-24,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,234,234.0 +5.890666666666666,5,a-phya-i1,2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 0.0, 0.5, 1.0, 0.5, 0.0, 2.0,791,395.5 +6.309333333333333,5,a-phya-i1,2023-24,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,317,317.0 +7.134358974358974,5,a-phya-i1,2023-24,Norwood - George F. Willett,02200075, 0.0, 0.0, 0.5, 1.5, 0.0, 0.6, 0.0, 2.6,422,162.3076923076923 +6.538666666666667,5,a-phya-i1,2023-24,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +5.464,5,a-phya-i1,2023-24,Norwood - Norwood High,02200505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,951,475.5 +5.765333333333333,5,a-phya-i1,2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,419,419.0 +5.072,5,a-phya-i1,2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,549,549.0 +4.746666666666667,4.75,a-phya-i1,2023-24,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,610,610.0 +5.701333333333333,5,a-phya-i1,2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,431,431.0 +7.072,5,a-phya-i1,2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,348,174.0 +5.210666666666667,5,a-phya-i1,2023-24,Orange - Fisher Hill School,02230010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,523,523.0 +7.242666666666667,5,a-phya-i1,2023-24,Orleans - Orleans Elementary,02240005, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,142,142.0 +6.272,5,a-phya-i1,2023-24,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +6.288,5,a-phya-i1,2023-24,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,321,321.0 +6.765333333333333,5,a-phya-i1,2023-24,Oxford - Oxford High,02260505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,463,231.5 +5.946666666666666,5,a-phya-i1,2023-24,Oxford - Oxford Middle,02260405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,385,385.0 +4.928,4.93,a-phya-i1,2023-24,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,576,576.0 +5.285333333333333,5,a-phya-i1,2023-24,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,509,509.0 +4.570666666666667,4.57,a-phya-i1,2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.5, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,643,643.0 +-Infinity,1,a-phya-i1,2023-24,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,376,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - Center,02290015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,349,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1283,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - John E Burke,02290007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,384,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,98,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1420,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,474,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,579,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,277,Infinity +-Infinity,1,a-phya-i1,2023-24,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,297,Infinity +7.312,5,a-phya-i1,2023-24,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,129,129.0 +5.648,5,a-phya-i1,2023-24,Pembroke - Bryantville Elementary,02310003, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,441,441.0 +5.888,5,a-phya-i1,2023-24,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,396,396.0 +5.306666666666667,5,a-phya-i1,2023-24,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,505,505.0 +6.08,5,a-phya-i1,2023-24,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,360,360.0 +5.616666666666666,5,a-phya-i1,2023-24,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 1.0, 0.6, 0.0, 0.0, 1.6,715,446.875 +6.973333333333334,5,a-phya-i1,2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 0.0, 1.2,231,192.5 +6.551111111111111,5,a-phya-i1,2023-24,Pentucket - Dr John C Page School,07450015, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,326,271.6666666666667 +5.697777777777778,5,a-phya-i1,2023-24,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,518,431.6666666666667 +6.9111111111111105,5,a-phya-i1,2023-24,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,245,204.16666666666669 +3.5866666666666664,3.59,a-phya-i1,2023-24,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 0.4, 0.0, 0.0, 0.0, 0.4,331,827.5 +4.173333333333333,4.17,a-phya-i1,2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.2, 0.0, 0.6, 0.0, 0.0, 0.0, 0.8,574,717.5 +7.290666666666667,5,a-phya-i1,2023-24,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,133,133.0 +-Infinity,1,a-phya-i1,2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,194,Infinity +-Infinity,1,a-phya-i1,2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,114,Infinity +-Infinity,1,a-phya-i1,2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,159,Infinity +5.922666666666666,5,a-phya-i1,2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,779,389.5 +6.490666666666667,5,a-phya-i1,2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,566,283.0 +6.896,5,a-phya-i1,2023-24,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,207,207.0 +7.104,5,a-phya-i1,2023-24,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,168,168.0 +6.3933333333333335,5,a-phya-i1,2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,241,301.25 +5.056,5,a-phya-i1,2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.3, 0.0, 0.1, 0.0, 0.1, 0.0, 0.5, 1.0,552,552.0 +5.872,5,a-phya-i1,2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,399,399.0 +6.884444444444444,5,a-phya-i1,2023-24,Pittsfield - Allendale,02360010, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.0, 1.2,251,209.16666666666669 +6.902222222222221,5,a-phya-i1,2023-24,Pittsfield - Crosby,02360065, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 0.0, 1.2,247,205.83333333333334 +-Infinity,1,a-phya-i1,2023-24,Pittsfield - Crosby Educational Academy,02360030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,21,Infinity +7.84,5,a-phya-i1,2023-24,Pittsfield - Eagle Education Academy,02360525, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,30,30.0 +6.284444444444444,5,a-phya-i1,2023-24,Pittsfield - Egremont,02360035, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0, 1.2,386,321.6666666666667 +5.642666666666667,5,a-phya-i1,2023-24,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,442,442.0 +6.069333333333334,5,a-phya-i1,2023-24,Pittsfield - Morningside Community School,02360055, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,362,362.0 +6.069333333333334,5,a-phya-i1,2023-24,Pittsfield - Pittsfield High,02360505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,724,362.0 +7.164444444444444,5,a-phya-i1,2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.2, 0.0, 0.0, 1.0, 0.0, 0.0, 1.2,188,156.66666666666669 +6.453333333333333,5,a-phya-i1,2023-24,Pittsfield - Silvio O Conte Community,02360105, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 0.0, 1.2,348,290.0 +6.88,5,a-phya-i1,2023-24,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,210,210.0 +3.3333333333333335,3.33,a-phya-i1,2023-24,Pittsfield - Taconic High,02360510, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,875,875.0 +5.168,5,a-phya-i1,2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,531,531.0 +6.608,5,a-phya-i1,2023-24,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,261,261.0 +6.777142857142858,5,a-phya-i1,2023-24,Plainville - Anna Ware Jackson,02380010, 0.0, 0.4, 1.0, 0.0, 0.0, 0.0, 0.0, 1.4,321,229.2857142857143 +6.325333333333333,5,a-phya-i1,2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,314,314.0 +-Infinity,1,a-phya-i1,2023-24,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,220,Infinity +5.957333333333334,5,a-phya-i1,2023-24,Plymouth - Federal Furnace School,02390011, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,383,383.0 +6.8373333333333335,5,a-phya-i1,2023-24,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,218,218.0 +5.104,5,a-phya-i1,2023-24,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,543,543.0 +6.544,5,a-phya-i1,2023-24,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,273,273.0 +5.322666666666667,5,a-phya-i1,2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,502,502.0 +6.451555555555556,5,a-phya-i1,2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,871,290.3333333333333 +6.832,5,a-phya-i1,2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,219,219.0 +4.674666666666667,4.67,a-phya-i1,2023-24,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1247,623.5 +2.6506666666666665,2.65,a-phya-i1,2023-24,Plymouth - Plymouth South High,02390515, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1003,1003.0 +6.758974358974359,5,a-phya-i1,2023-24,Plymouth - Plymouth South Middle,02390305, 0.0, 0.0, 0.6, 0.0, 2.0, 0.0, 0.0, 2.6,605,232.69230769230768 +4.650666666666667,4.65,a-phya-i1,2023-24,Plymouth - South Elementary,02390046, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,628,628.0 +6.1706666666666665,5,a-phya-i1,2023-24,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,343,343.0 +6.650666666666667,5,a-phya-i1,2023-24,Plympton - Dennett Elementary,02400010, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,253,253.0 +6.369777777777777,5,a-phya-i1,2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,917,305.6666666666667 +-Infinity,1,a-phya-i1,2023-24,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,137,Infinity +7.16,5,a-phya-i1,2023-24,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,189,157.5 +-0.3466666666666667,1,a-phya-i1,2023-24,Quabbin - Hubbardston Center,07530010, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,313,1565.0 +7.915151515151515,5,a-phya-i1,2023-24,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 0.0, 0.2, 2.0, 0.0, 2.2,35,15.909090909090908 +3.84,3.84,a-phya-i1,2023-24,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.2,156,780.0 +6.488,5,a-phya-i1,2023-24,Quabbin - Quabbin Regional High School,07530505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,567,283.5 +5.189333333333333,5,a-phya-i1,2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,527,527.0 +6.306666666666667,5,a-phya-i1,2023-24,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,381,317.5 +-Infinity,1,a-phya-i1,2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,53,Infinity +5.706666666666667,5,a-phya-i1,2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,344,430.0 +-Infinity,1,a-phya-i1,2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,170,Infinity +6.362666666666667,5,a-phya-i1,2023-24,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,307,307.0 +6.698666666666667,5,a-phya-i1,2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,244,244.0 +7.093333333333334,5,a-phya-i1,2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0,170,170.0 +5.354666666666667,5,a-phya-i1,2023-24,Quincy - Atherton Hough,02430040, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,248,496.0 +2.026666666666667,2.03,a-phya-i1,2023-24,Quincy - Atlantic Middle,02430305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,560,1120.0 +4.384,4.38,a-phya-i1,2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,339,678.0 +4.608,4.61,a-phya-i1,2023-24,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,318,636.0 +4.751515151515152,4.75,a-phya-i1,2023-24,Quincy - Central Middle,02430315, 0.0, 0.5, 0.0, 0.6, 0.0, 0.0, 0.0, 1.1,670,609.090909090909 +6.218666666666667,5,a-phya-i1,2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,334,334.0 +-1.4044444444444453,1,a-phya-i1,2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,529,1763.3333333333335 +4.416,4.42,a-phya-i1,2023-24,Quincy - Francis W Parker,02430075, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,336,672.0 +4.976,4.98,a-phya-i1,2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 0.0, 1.0,567,567.0 +5.164444444444444,5,a-phya-i1,2023-24,Quincy - Merrymount,02430060, 0.0, 0.0, 0.5, 0.1, 0.0, 0.0, 0.0, 0.6,319,531.6666666666667 +3.6373333333333333,3.64,a-phya-i1,2023-24,Quincy - Montclair,02430065, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,409,818.0 +-Infinity,1,a-phya-i1,2023-24,Quincy - North Quincy High,02430510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,1508,Infinity +3.648,3.65,a-phya-i1,2023-24,Quincy - Point Webster Middle,02430325, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,408,816.0 +2.7626666666666666,2.76,a-phya-i1,2023-24,Quincy - Quincy High,02430505, 0.0, 0.0, 0.5, 0.5, 0.5, 0.0, 0.0, 1.5,1473,982.0 +4.542222222222222,4.54,a-phya-i1,2023-24,Quincy - Snug Harbor Community School,02430090, 0.0, 0.0, 0.0, 0.6, 0.0, 0.0, 0.0, 0.6,389,648.3333333333334 +4.062222222222222,4.06,a-phya-i1,2023-24,Quincy - South West Middle School,02430320, 0.0, 0.5, 0.0, 0.1, 0.0, 0.0, 0.0, 0.6,443,738.3333333333334 +4.16,4.16,a-phya-i1,2023-24,Quincy - Squantum,02430095, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,360,720.0 +5.2,5,a-phya-i1,2023-24,Quincy - Wollaston School,02430110, 0.0, 0.0, 0.0, 0.1, 0.0, 0.5, 0.0, 0.6,315,525.0 +-Infinity,1,a-phya-i1,2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,504,Infinity +6.608,5,a-phya-i1,2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,261,261.0 +5.466666666666667,5,a-phya-i1,2023-24,Randolph - J F Kennedy Elementary,02440018, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,475,475.0 +5.824,5,a-phya-i1,2023-24,Randolph - Margaret L Donovan,02440015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,408,408.0 +6.533333333333333,5,a-phya-i1,2023-24,Randolph - Martin E Young Elementary,02440040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,275,275.0 +4.789333333333333,4.79,a-phya-i1,2023-24,Randolph - Randolph Community Middle,02440410, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,602,602.0 +4.458666666666667,4.46,a-phya-i1,2023-24,Randolph - Randolph High,02440505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,664,664.0 +-Infinity,1,a-phya-i1,2023-24,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,356,Infinity +5.850666666666666,5,a-phya-i1,2023-24,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,403,403.0 +6.021333333333334,5,a-phya-i1,2023-24,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,371,371.0 +6.8773333333333335,5,a-phya-i1,2023-24,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,421,210.5 +5.9093333333333335,5,a-phya-i1,2023-24,Reading - Joshua Eaton,02460010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,392,392.0 +-Infinity,1,a-phya-i1,2023-24,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,110,Infinity +5.91047619047619,5,a-phya-i1,2023-24,Reading - Reading Memorial High,02460505, 0.0, 0.0, 2.0, 0.0, 0.0, 0.8, 0.0, 2.8,1097,391.78571428571433 +5.594666666666667,5,a-phya-i1,2023-24,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,451,451.0 +6.672,5,a-phya-i1,2023-24,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +4.96,4.96,a-phya-i1,2023-24,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,684,570.0 +5.315555555555555,5,a-phya-i1,2023-24,Revere - Abraham Lincoln,02480025, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,604,503.33333333333337 +5.82,5,a-phya-i1,2023-24,Revere - Beachmont Veterans Memorial School,02480013, 0.6, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.8,327,408.75 +7.031111111111111,5,a-phya-i1,2023-24,Revere - CityLab Innovation High School,02480520, 0.4, 0.0, 0.2, 0.0, 0.0, 0.0, 0.0, 0.6,109,181.66666666666669 +4.933333333333334,4.93,a-phya-i1,2023-24,Revere - Garfield Elementary School,02480056, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,690,575.0 +5.484444444444444,5,a-phya-i1,2023-24,Revere - Garfield Middle School,02480057, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,566,471.6666666666667 +5.924444444444444,5,a-phya-i1,2023-24,Revere - Paul Revere,02480050, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,467,389.1666666666667 +4.503333333333333,4.5,a-phya-i1,2023-24,Revere - Revere High,02480505, 0.0, 1.0, 1.2, 0.0, 0.0, 0.0, 1.0, 3.2,2098,655.625 +5.426666666666667,5,a-phya-i1,2023-24,Revere - Rumney Marsh Academy,02480014, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,579,482.5 +5.102222222222222,5,a-phya-i1,2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 1.0, 1.2,652,543.3333333333334 +5.475555555555554,5,a-phya-i1,2023-24,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 0.2, 1.0, 0.0, 0.0, 0.0, 1.2,568,473.33333333333337 +7.157333333333334,5,a-phya-i1,2023-24,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,158,158.0 +-8.613333333333333,1,a-phya-i1,2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,623,3115.0 +6.464,5,a-phya-i1,2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,288,288.0 +5.365333333333333,5,a-phya-i1,2023-24,Rochester - Rochester Memorial,02500005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,494,494.0 +0.5653333333333334,1,a-phya-i1,2023-24,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,697,1394.0 +4.586666666666667,4.59,a-phya-i1,2023-24,Rockland - Phelps Elementary School,02510060, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5, 0.0, 1.0,640,640.0 +6.794666666666667,5,a-phya-i1,2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,226,226.0 +-2.2577777777777785,1,a-phya-i1,2023-24,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 0.3,577,1923.3333333333335 +6.549333333333333,5,a-phya-i1,2023-24,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,272,272.0 +5.589333333333333,5,a-phya-i1,2023-24,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,226,452.0 +6.1546666666666665,5,a-phya-i1,2023-24,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,173,346.0 +7.674666666666667,5,a-phya-i1,2023-24,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,61,61.0 +6.786133333333334,5,a-phya-i1,2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 5.0,1138,227.6 +6.941333333333334,5,a-phya-i1,2023-24,Salem - Bates,02580003, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,397,198.5 +6.56,5,a-phya-i1,2023-24,Salem - Bentley Academy Innovation School,02580010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +-Infinity,1,a-phya-i1,2023-24,Salem - Carlton,02580015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,254,Infinity +7.047619047619048,5,a-phya-i1,2023-24,Salem - Collins Middle,02580305, 0.5, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.5,625,178.57142857142858 +-Infinity,1,a-phya-i1,2023-24,Salem - Horace Mann Laboratory,02580030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,307,Infinity +7.52,5,a-phya-i1,2023-24,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,45,90.0 +7.456969696969697,5,a-phya-i1,2023-24,Salem - Salem Early Childhood,02580001, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 0.0, 1.1,112,101.81818181818181 +5.592380952380953,5,a-phya-i1,2023-24,Salem - Salem High,02580505, 0.0, 0.1, 2.0, 0.0, 0.0, 0.0, 0.0, 2.1,948,451.4285714285714 +-Infinity,1,a-phya-i1,2023-24,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,17,Infinity +-Infinity,1,a-phya-i1,2023-24,Salem - Saltonstall School,02580050, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,390,Infinity +6.810666666666667,5,a-phya-i1,2023-24,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,446,223.0 +-Infinity,1,a-phya-i1,2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,488,Infinity +6.552,5,a-phya-i1,2023-24,Sandwich - Forestdale School,02610002, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,543,271.5 +4.405333333333333,4.41,a-phya-i1,2023-24,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,674,674.0 +5.568,5,a-phya-i1,2023-24,Sandwich - Sandwich Middle High School,02610505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,912,456.0 +5.866666666666666,5,a-phya-i1,2023-24,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,800,400.0 +4.1226666666666665,4.12,a-phya-i1,2023-24,Saugus - Saugus High,02620505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,727,727.0 +6.354666666666667,5,a-phya-i1,2023-24,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,617,308.5 +5.514666666666667,5,a-phya-i1,2023-24,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,466,466.0 +-Infinity,1,a-phya-i1,2023-24,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +6.042666666666666,5,a-phya-i1,2023-24,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,367,367.0 +6.908444444444445,5,a-phya-i1,2023-24,Scituate - Gates Middle School,02640305, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 3.0,614,204.66666666666666 +6.666666666666667,5,a-phya-i1,2023-24,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,250,250.0 +6.213333333333333,5,a-phya-i1,2023-24,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +4.005333333333334,4.01,a-phya-i1,2023-24,Scituate - Scituate High School,02640505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,749,749.0 +5.706666666666667,5,a-phya-i1,2023-24,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,430,430.0 +2.517333333333333,2.52,a-phya-i1,2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,514,1028.0 +3.2426666666666666,3.24,a-phya-i1,2023-24,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,446,892.0 +1.8666666666666667,1.87,a-phya-i1,2023-24,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,575,1150.0 +4.533333333333333,4.53,a-phya-i1,2023-24,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.3, 0.0, 0.0, 0.5, 0.0, 0.8,520,650.0 +-Infinity,1,a-phya-i1,2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,6,Infinity +5.658666666666667,5,a-phya-i1,2023-24,Sharon - Cottage Street,02660005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,439,439.0 +5.413333333333333,5,a-phya-i1,2023-24,Sharon - East Elementary,02660010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,485,485.0 +5.109333333333334,5,a-phya-i1,2023-24,Sharon - Heights Elementary,02660015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,542,542.0 +7.669333333333333,5,a-phya-i1,2023-24,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,31,62.0 +4.981333333333334,4.98,a-phya-i1,2023-24,Sharon - Sharon High,02660505, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,1132,566.0 +-Infinity,1,a-phya-i1,2023-24,Sharon - Sharon Middle,02660305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,807,Infinity +4.517333333333333,4.52,a-phya-i1,2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,1306,653.0 +5.8613333333333335,5,a-phya-i1,2023-24,Sherborn - Pine Hill,02690010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,401,401.0 +6.464,5,a-phya-i1,2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,288,288.0 +6.0728888888888894,5,a-phya-i1,2023-24,Shrewsbury - Floral Street School,02710020, 0.0, 0.0, 0.0, 0.5, 0.0, 1.0, 0.0, 1.5,542,361.3333333333333 +6.378666666666667,5,a-phya-i1,2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,608,304.0 +5.047843137254902,5,a-phya-i1,2023-24,Shrewsbury - Oak Middle School,02710030, 0.0, 0.0, 0.0, 1.0, 0.7, 0.0, 0.0, 1.7,941,553.5294117647059 +-Infinity,1,a-phya-i1,2023-24,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,199,Infinity +5.282962962962963,5,a-phya-i1,2023-24,Shrewsbury - Sherwood Middle School,02710305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.8, 0.0, 1.8,917,509.44444444444446 +5.995733333333334,5,a-phya-i1,2023-24,Shrewsbury - Shrewsbury High School,02710505, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 5.0,1879,375.8 +6.522666666666667,5,a-phya-i1,2023-24,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.56,5,a-phya-i1,2023-24,Shrewsbury - Walter J. Paton School,02710025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +7.408,5,a-phya-i1,2023-24,Shutesbury - Shutesbury Elementary,02720005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,111,111.0 +2.528,2.53,a-phya-i1,2023-24,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1026,1026.0 +4.997333333333334,5.0,a-phya-i1,2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,563,563.0 +6.389333333333333,5,a-phya-i1,2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,302,302.0 +6.644444444444444,5,a-phya-i1,2023-24,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,305,254.16666666666669 +5.937777777777777,5,a-phya-i1,2023-24,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 1.0, 0.2, 0.0, 0.0, 1.2,464,386.6666666666667 +1.9626666666666666,1.96,a-phya-i1,2023-24,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 0.0, 0.2, 0.3, 0.0, 0.5,566,1132.0 +6.835555555555555,5,a-phya-i1,2023-24,Somerset - South,02730015, 0.0, 0.0, 0.0, 0.0, 0.2, 1.0, 0.0, 1.2,262,218.33333333333334 +3.7333333333333334,3.73,a-phya-i1,2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 0.0, 0.0, 1.2, 0.0, 0.0, 1.2,960,800.0 +6.496,5,a-phya-i1,2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,564,282.0 +6.704,5,a-phya-i1,2023-24,Somerville - Arthur D Healey,02740075, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,486,243.0 +6.8,5,a-phya-i1,2023-24,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +7.386666666666667,5,a-phya-i1,2023-24,Somerville - Capuano Early Childhood Center,02740005, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,230,115.0 +6.018666666666666,5,a-phya-i1,2023-24,Somerville - E Somerville Community,02740111, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,743,371.5 +-Infinity,1,a-phya-i1,2023-24,Somerville - Full Circle High School,02740510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,64,Infinity +5.610666666666667,5,a-phya-i1,2023-24,Somerville - John F Kennedy,02740083, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 +-Infinity,1,a-phya-i1,2023-24,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,13,Infinity +5.559111111111111,5,a-phya-i1,2023-24,Somerville - Somerville High,02740505, 1.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 3.0,1373,457.6666666666667 +5.984,5,a-phya-i1,2023-24,Somerville - West Somerville Neighborhood,02740115, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,378,378.0 +5.850666666666666,5,a-phya-i1,2023-24,Somerville - Winter Hill Community,02740120, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,403,403.0 +5.274666666666667,5,a-phya-i1,2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,511,511.0 +6.08,5,a-phya-i1,2023-24,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,360,360.0 +6.586666666666667,5,a-phya-i1,2023-24,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,265,265.0 +5.290666666666667,5,a-phya-i1,2023-24,South Hadley - South Hadley High,02780505, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,508,508.0 +4.903111111111111,4.9,a-phya-i1,2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.0, 0.0, 0.0, 1.5, 0.0, 0.0, 0.0, 1.5,871,580.6666666666666 +5.1866666666666665,5,a-phya-i1,2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1055,527.5 +4.442666666666667,4.44,a-phya-i1,2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,667,667.0 +6.744,5,a-phya-i1,2023-24,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,471,235.5 +6.682666666666667,5,a-phya-i1,2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,247,247.0 +6.1,5,a-phya-i1,2023-24,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,285,356.25 +6.053333333333334,5,a-phya-i1,2023-24,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,365,365.0 +5.8293333333333335,5,a-phya-i1,2023-24,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,407,407.0 +7.245333333333333,5,a-phya-i1,2023-24,Southbridge - Charlton Street,02770005, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,283,141.5 +6.16,5,a-phya-i1,2023-24,Southbridge - Eastford Road,02770010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,345,345.0 +-Infinity,1,a-phya-i1,2023-24,Southbridge - Southbridge Academy,02770525, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,36,Infinity +6.346666666666667,5,a-phya-i1,2023-24,Southbridge - Southbridge High School,02770515, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,465,310.0 +6.4782222222222225,5,a-phya-i1,2023-24,Southbridge - Southbridge Middle School,02770315, 0.0, 0.0, 1.0, 0.0, 0.5, 0.0, 0.0, 1.5,428,285.3333333333333 +6.250666666666667,5,a-phya-i1,2023-24,Southbridge - West Street,02770020, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,328,328.0 +5.160888888888889,5,a-phya-i1,2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 3.0,1597,532.3333333333334 +6.501333333333333,5,a-phya-i1,2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,281,281.0 +7.653333333333333,5,a-phya-i1,2023-24,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,65,65.0 +-Infinity,1,a-phya-i1,2023-24,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,11,Infinity +-Infinity,1,a-phya-i1,2023-24,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,257,Infinity +1.6373333333333333,1.64,a-phya-i1,2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,1193,1193.0 +6.306666666666667,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.6, 0.6, 0.0, 0.0, 0.0, 0.0, 1.2,381,317.5 +6.362666666666667,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,614,307.0 +6.293333333333333,5,a-phya-i1,2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,320,320.0 +6.234666666666667,5,a-phya-i1,2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,331,331.0 +6.682666666666667,5,a-phya-i1,2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,247,247.0 +5.925333333333334,5,a-phya-i1,2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +6.7973333333333334,5,a-phya-i1,2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,451,225.5 +6.866666666666666,5,a-phya-i1,2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,425,212.5 +6.378666666666667,5,a-phya-i1,2023-24,Springfield - Alice B Beal Elementary,02810175, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,304,304.0 +-Infinity,1,a-phya-i1,2023-24,Springfield - Arthur T Talmadge,02810165, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,224,Infinity +7.301333333333333,5,a-phya-i1,2023-24,Springfield - Balliet Preschool,02810003, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,131,131.0 +6.669333333333333,5,a-phya-i1,2023-24,Springfield - Benjamin Swan Elementary,02810085, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,499,249.5 +6.72,5,a-phya-i1,2023-24,Springfield - Brightwood,02810025, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,480,240.0 +6.645333333333333,5,a-phya-i1,2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,254,254.0 +7.192,5,a-phya-i1,2023-24,Springfield - Conservatory of the Arts,02810475, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,303,151.5 +6.426666666666667,5,a-phya-i1,2023-24,Springfield - Daniel B Brunton,02810035, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,295,295.0 +6.997333333333334,5,a-phya-i1,2023-24,Springfield - Early Childhood Education Center,02810001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,188,188.0 +5.045333333333334,5,a-phya-i1,2023-24,Springfield - Edward P. Boland School,02810010, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,554,554.0 +6.458666666666667,5,a-phya-i1,2023-24,Springfield - Elias Brookings,02810030, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,289,289.0 +-Infinity,1,a-phya-i1,2023-24,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,231,Infinity +6.485333333333333,5,a-phya-i1,2023-24,Springfield - Forest Park Middle,02810325, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,284,284.0 +6.576,5,a-phya-i1,2023-24,Springfield - Frank H Freedman,02810075, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,267,267.0 +6.634666666666667,5,a-phya-i1,2023-24,Springfield - Frederick Harris,02810080, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,512,256.0 +-Infinity,1,a-phya-i1,2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,28,Infinity +-Infinity,1,a-phya-i1,2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,25,Infinity +4.677333333333333,4.68,a-phya-i1,2023-24,Springfield - German Gerena Community School,02810195, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,623,623.0 +6.421333333333333,5,a-phya-i1,2023-24,Springfield - Glenwood,02810065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,296,296.0 +7.16,5,a-phya-i1,2023-24,Springfield - Glickman Elementary,02810068, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 2.0,315,157.5 +5.173333333333333,5,a-phya-i1,2023-24,Springfield - High School Of Commerce,02810510, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1060,530.0 +6.522666666666667,5,a-phya-i1,2023-24,Springfield - Hiram L Dorman,02810050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,277,277.0 +6.922666666666666,5,a-phya-i1,2023-24,Springfield - Impact Prep at Chestnut,02810366, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,202,202.0 +4.986666666666666,4.99,a-phya-i1,2023-24,Springfield - Indian Orchard Elementary,02810100, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,565,565.0 +6.042666666666666,5,a-phya-i1,2023-24,Springfield - John F Kennedy Middle,02810328, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,367,367.0 +5.784,5,a-phya-i1,2023-24,Springfield - John J Duggan Academy,02810320, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,831,415.5 +6.602666666666667,5,a-phya-i1,2023-24,Springfield - Kensington International School,02810110, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,262,262.0 +-Infinity,1,a-phya-i1,2023-24,Springfield - Kiley Academy,02810316, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,287,Infinity +7.298666666666667,5,a-phya-i1,2023-24,Springfield - Kiley Prep,02810315, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,263,131.5 +6.688,5,a-phya-i1,2023-24,Springfield - Liberty,02810115, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,246,246.0 +-Infinity,1,a-phya-i1,2023-24,Springfield - Liberty Preparatory Academy,02810560, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,7,Infinity +6.789333333333333,5,a-phya-i1,2023-24,Springfield - Lincoln,02810120, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,454,227.0 +7.264,5,a-phya-i1,2023-24,Springfield - Margaret C Ells,02810060, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,138,138.0 +6.453333333333333,5,a-phya-i1,2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.794666666666667,5,a-phya-i1,2023-24,Springfield - Mary M Lynch,02810140, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,226,226.0 +6.672,5,a-phya-i1,2023-24,Springfield - Mary M Walsh,02810155, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,249,249.0 +6.048,5,a-phya-i1,2023-24,Springfield - Mary O Pottenger,02810145, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,366,366.0 +5.914666666666666,5,a-phya-i1,2023-24,Springfield - Milton Bradley School,02810023, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,391,391.0 +4.826666666666667,4.83,a-phya-i1,2023-24,Springfield - Rebecca M Johnson,02810055, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,595,595.0 +6.848,5,a-phya-i1,2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,216,216.0 +5.541333333333333,5,a-phya-i1,2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 3.0,1383,461.0 +6.469333333333333,5,a-phya-i1,2023-24,Springfield - STEM Middle Academy,02810350, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,287,287.0 +6.346666666666667,5,a-phya-i1,2023-24,Springfield - Samuel Bowles,02810020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,310,310.0 +6.992,5,a-phya-i1,2023-24,Springfield - South End Middle School,02810355, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,189,189.0 +4.369777777777778,4.37,a-phya-i1,2023-24,Springfield - Springfield Central High,02810500, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 3.0,2042,680.6666666666666 +-Infinity,1,a-phya-i1,2023-24,Springfield - Springfield High School,02810570, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,221,Infinity +5.074666666666666,5,a-phya-i1,2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,1097,548.5 +-Infinity,1,a-phya-i1,2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,32,Infinity +-Infinity,1,a-phya-i1,2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,72,Infinity +6.1066666666666665,5,a-phya-i1,2023-24,Springfield - Springfield Legacy Academy,02810317, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,355,355.0 +-Infinity,1,a-phya-i1,2023-24,Springfield - Springfield Middle School,02810360, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,14,Infinity +-Infinity,1,a-phya-i1,2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,37,Infinity +-Infinity,1,a-phya-i1,2023-24,Springfield - Springfield Public Day High School,02810550, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,78,Infinity +7.674666666666667,5,a-phya-i1,2023-24,Springfield - Springfield Public Day Middle School,02810345, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,61,61.0 +6.938666666666666,5,a-phya-i1,2023-24,Springfield - Springfield Realization Academy,02810335, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,199,199.0 +-Infinity,1,a-phya-i1,2023-24,Springfield - Springfield Transition Academy,02810675, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,115,Infinity +5.397333333333333,5,a-phya-i1,2023-24,Springfield - Sumner Avenue,02810160, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +4.752,4.75,a-phya-i1,2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,609,609.0 +6.378666666666667,5,a-phya-i1,2023-24,Springfield - The Springfield Virtual School,02810705, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,304,304.0 +6.517333333333333,5,a-phya-i1,2023-24,Springfield - Thomas M Balliet,02810015, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,278,278.0 +6.656,5,a-phya-i1,2023-24,Springfield - Van Sickle Academy,02810485, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,252,252.0 +6.730666666666667,5,a-phya-i1,2023-24,Springfield - Warner,02810180, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,238,238.0 +6.941333333333334,5,a-phya-i1,2023-24,Springfield - Washington,02810185, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,397,198.5 +5.9093333333333335,5,a-phya-i1,2023-24,Springfield - White Street,02810190, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,392,392.0 +5.738666666666667,5,a-phya-i1,2023-24,Springfield - William N. DeBerry,02810045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +5.372444444444444,5,a-phya-i1,2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0.0, 0.0, 0.0, 2.0, 0.0, 1.0, 0.0, 3.0,1478,492.6666666666667 +-Infinity,1,a-phya-i1,2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,487,Infinity +6.629333333333333,5,a-phya-i1,2023-24,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,257,257.0 +5.904,5,a-phya-i1,2023-24,Stoneham - Robin Hood,02840025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,393,393.0 +6.112,5,a-phya-i1,2023-24,Stoneham - South,02840030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,354,354.0 +6.133333333333334,5,a-phya-i1,2023-24,Stoneham - Stoneham Central Middle School,02840405, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,700,350.0 +4.88,4.88,a-phya-i1,2023-24,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,585,585.0 +7.397333333333333,5,a-phya-i1,2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,113,113.0 +-Infinity,1,a-phya-i1,2023-24,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +6.997333333333334,5,a-phya-i1,2023-24,Stoughton - Joseph H Gibbons,02850025, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,376,188.0 +5.925333333333334,5,a-phya-i1,2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,389,389.0 +5.778666666666667,5,a-phya-i1,2023-24,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,833,416.5 +6.224,5,a-phya-i1,2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,333,333.0 +6.437333333333333,5,a-phya-i1,2023-24,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,293,293.0 +5.074666666666666,5,a-phya-i1,2023-24,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,1097,548.5 +3.1893333333333334,3.19,a-phya-i1,2023-24,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,902,902.0 +5.7973333333333334,5,a-phya-i1,2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,826,413.0 +6.422857142857143,5,a-phya-i1,2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0.0, 0.0, 1.0, 1.0, 0.8, 0.0, 0.0, 2.8,828,295.7142857142857 +-Infinity,1,a-phya-i1,2023-24,Sudbury - General John Nixon Elementary,02880025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,334,Infinity +5.776,5,a-phya-i1,2023-24,Sudbury - Israel Loring School,02880015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,417,417.0 +5.925333333333334,5,a-phya-i1,2023-24,Sudbury - Josiah Haynes,02880010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +4.954666666666666,4.95,a-phya-i1,2023-24,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,571,571.0 +7.024,5,a-phya-i1,2023-24,Sunderland - Sunderland Elementary,02890005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,183,183.0 +6.192,5,a-phya-i1,2023-24,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,339,339.0 +7.165333333333334,5,a-phya-i1,2023-24,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,313,156.5 +6.709333333333333,5,a-phya-i1,2023-24,Sutton - Sutton High School,02900510, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,363,242.0 +-Infinity,1,a-phya-i1,2023-24,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,295,Infinity +5.802666666666667,5,a-phya-i1,2023-24,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,206,412.0 +4.2026666666666666,4.2,a-phya-i1,2023-24,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,356,712.0 +6.261333333333333,5,a-phya-i1,2023-24,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,163,326.0 +0.896,1,a-phya-i1,2023-24,Swampscott - Swampscott High,02910505, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,666,1332.0 +0.672,1,a-phya-i1,2023-24,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,687,1374.0 +6.538666666666667,5,a-phya-i1,2023-24,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,274,274.0 +6.56,5,a-phya-i1,2023-24,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,270,270.0 +4.938666666666666,4.94,a-phya-i1,2023-24,Swansea - Joseph Case High,02920505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,574,574.0 +5.36,5,a-phya-i1,2023-24,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,495,495.0 +7.045333333333334,5,a-phya-i1,2023-24,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,179,179.0 +7.314666666666667,5,a-phya-i1,2023-24,Swansea - Mark G Hoyle Elementary,02920017, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,257,128.5 +-Infinity,1,a-phya-i1,2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,2907,Infinity +5.013333333333334,5,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,560,560.0 +4.464,4.46,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,663,663.0 +-Infinity,1,a-phya-i1,2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,536,Infinity +5.539555555555556,5,a-phya-i1,2023-24,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 1.1, 0.4, 0.0, 0.0, 1.5,692,461.3333333333333 +4.426666666666667,4.43,a-phya-i1,2023-24,Taunton - East Taunton Elementary,02930010, 0.0, 0.8, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8,536,670.0 +6.033333333333333,5,a-phya-i1,2023-24,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,295,368.75 +5.216,5,a-phya-i1,2023-24,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,261,522.0 +5.081212121212121,5,a-phya-i1,2023-24,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.3, 0.0, 0.8, 0.0, 0.0, 1.1,602,547.2727272727273 +6.14,5,a-phya-i1,2023-24,Taunton - H H Galligan,02930057, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,279,348.75 +4.864,4.86,a-phya-i1,2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 0.0, 0.8, 0.8, 0.0, 0.0, 1.5,882,588.0 +4.6,4.6,a-phya-i1,2023-24,Taunton - John F Parker Middle,02930305, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,510,637.5 +4.726666666666667,4.73,a-phya-i1,2023-24,Taunton - Joseph C Chamberlain,02930008, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.8,491,613.75 +5.696,5,a-phya-i1,2023-24,Taunton - Joseph H Martin,02930042, 0.0, 0.0, 0.0, 0.4, 0.4, 0.8, 0.0, 1.5,648,432.0 +7.899259259259259,5,a-phya-i1,2023-24,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.8, 3.0, 0.8, 0.0, 0.0, 4.5,85,18.88888888888889 +1.7623188405797094,1.76,a-phya-i1,2023-24,Taunton - Taunton High,02930505, 0.0, 0.0, 0.8, 0.8, 0.0, 0.8, 0.0, 2.3,2690,1169.5652173913045 +-Infinity,1,a-phya-i1,2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +5.954666666666666,5,a-phya-i1,2023-24,Tewksbury - Center Elementary School,02950030, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,767,383.5 +6.346666666666667,5,a-phya-i1,2023-24,Tewksbury - Heath-Brook,02950010, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,310,310.0 +5.349333333333333,5,a-phya-i1,2023-24,Tewksbury - John F. Ryan,02950023, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,497,497.0 +5.226666666666667,5,a-phya-i1,2023-24,Tewksbury - John W. Wynn Middle,02950305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,520,520.0 +5.9093333333333335,5,a-phya-i1,2023-24,Tewksbury - L F Dewing,02950001, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,392,392.0 +6.082666666666666,5,a-phya-i1,2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0,719,359.5 +6.554666666666667,5,a-phya-i1,2023-24,Tisbury - Tisbury Elementary,02960005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,271,271.0 +6.645333333333333,5,a-phya-i1,2023-24,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,254,254.0 +6.096,5,a-phya-i1,2023-24,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,357,357.0 +2.8586666666666667,2.86,a-phya-i1,2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.5, 0.5, 0.0, 0.0, 0.0, 1.0,964,964.0 +5.728,5,a-phya-i1,2023-24,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,426,426.0 +5.616,5,a-phya-i1,2023-24,Triton - Pine Grove,07730025, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +5.8613333333333335,5,a-phya-i1,2023-24,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,401,401.0 +4.976,4.98,a-phya-i1,2023-24,Triton - Triton Regional High School,07730505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,567,567.0 +6.325333333333333,5,a-phya-i1,2023-24,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,314,314.0 +7.514666666666667,5,a-phya-i1,2023-24,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,91,91.0 +5.992,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0,753,376.5 +5.76,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,420,420.0 +7.016,5,a-phya-i1,2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,369,184.5 +7.1146666666666665,5,a-phya-i1,2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,166,166.0 +6.458666666666667,5,a-phya-i1,2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 2.0,578,289.0 +7.610666666666667,5,a-phya-i1,2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,73,73.0 +6.266666666666667,5,a-phya-i1,2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,325,325.0 +3.5946666666666665,3.59,a-phya-i1,2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,826,826.0 +-Infinity,1,a-phya-i1,2023-24,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,41,Infinity +5.157333333333334,5,a-phya-i1,2023-24,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,533,533.0 +4.896,4.9,a-phya-i1,2023-24,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,582,582.0 +5.461333333333333,5,a-phya-i1,2023-24,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,476,476.0 +4.72,4.72,a-phya-i1,2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,615,615.0 +3.9466666666666668,3.95,a-phya-i1,2023-24,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,380,760.0 +5.088,5,a-phya-i1,2023-24,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.5,273,546.0 +5.466666666666667,5,a-phya-i1,2023-24,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.5, 0.0, 0.5, 0.0, 0.0, 0.0, 1.0,475,475.0 +2.7946666666666666,2.79,a-phya-i1,2023-24,Wachusett - Dawson,07750020, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5,488,976.0 +-Infinity,1,a-phya-i1,2023-24,Wachusett - Early Childhood Center,07750001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,140,Infinity +4.288,4.29,a-phya-i1,2023-24,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,348,696.0 +4.608,4.61,a-phya-i1,2023-24,Wachusett - Houghton Elementary,07750027, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,318,636.0 +2.8906666666666667,2.89,a-phya-i1,2023-24,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,479,958.0 +-0.010666666666666666,1,a-phya-i1,2023-24,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,751,1502.0 +3.968,3.97,a-phya-i1,2023-24,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.5,378,756.0 +3.392,3.39,a-phya-i1,2023-24,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,432,864.0 +4.234666666666667,4.23,a-phya-i1,2023-24,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.0, 0.5,353,706.0 +-1.9253333333333333,1,a-phya-i1,2023-24,Wachusett - Wachusett Regional High,07750505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1861,1861.0 +5.616,5,a-phya-i1,2023-24,Wakefield - Dolbeare,03050005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,447,447.0 +7.28,5,a-phya-i1,2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,135,135.0 +2.3893333333333335,2.39,a-phya-i1,2023-24,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1052,1052.0 +6.784,5,a-phya-i1,2023-24,Wakefield - Greenwood,03050020, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,228,228.0 +5.76,5,a-phya-i1,2023-24,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,840,420.0 +6.864,5,a-phya-i1,2023-24,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,213,213.0 +6.8,5,a-phya-i1,2023-24,Wakefield - Woodville School,03050015, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,450,225.0 +7.504,5,a-phya-i1,2023-24,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,93,93.0 +5.866666666666666,5,a-phya-i1,2023-24,Walpole - Bird Middle,03070305, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,400,400.0 +5.84,5,a-phya-i1,2023-24,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,405,405.0 +7.157333333333334,5,a-phya-i1,2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 0.0, 0.0, 0.5, 0.0, 0.5,79,158.0 +6.524444444444444,5,a-phya-i1,2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 1.5,415,276.6666666666667 +5.621333333333333,5,a-phya-i1,2023-24,Walpole - Elm Street School,03070005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,446,446.0 +5.477333333333333,5,a-phya-i1,2023-24,Walpole - Fisher,03070015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,473,473.0 +5.498666666666667,5,a-phya-i1,2023-24,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,469,469.0 +5.477333333333333,5,a-phya-i1,2023-24,Walpole - Walpole High,03070505, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 2.0,946,473.0 +5.888888888888888,5,a-phya-i1,2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,475,395.83333333333337 +7.031111111111111,5,a-phya-i1,2023-24,Waltham - Dual Language School,03080001, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,218,181.66666666666669 +6.284444444444444,5,a-phya-i1,2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0.0, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 1.2,386,321.6666666666667 +6.426666666666667,5,a-phya-i1,2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 1.0, 0.0, 0.1, 0.0, 0.1, 0.0, 1.2,354,295.0 +6.4775757575757575,5,a-phya-i1,2023-24,Waltham - John F Kennedy Middle,03080404, 0.0, 1.0, 0.0, 0.1, 0.0, 1.1, 0.0, 2.2,628,285.45454545454544 +6.535757575757576,5,a-phya-i1,2023-24,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 0.0, 0.1, 1.0, 0.1, 0.0, 2.2,604,274.5454545454545 +6.787878787878788,5,a-phya-i1,2023-24,Waltham - Northeast Elementary School,03080040, 0.0, 0.0, 0.0, 0.1, 2.0, 0.1, 0.0, 2.2,500,227.27272727272725 +6.435555555555554,5,a-phya-i1,2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 0.0, 0.1, 0.0, 0.1, 1.0, 1.2,352,293.33333333333337 +4.973333333333334,4.97,a-phya-i1,2023-24,Waltham - Waltham Sr High,03080505, 0.0, 0.0, 1.0, 1.1, 0.0, 1.1, 0.0, 3.2,1816,567.5 +6.328888888888888,5,a-phya-i1,2023-24,Waltham - William F. Stanley Elementary School,03080005, 0.0, 0.0, 0.0, 1.1, 0.0, 0.1, 0.0, 1.2,376,313.33333333333337 +5.925333333333334,5,a-phya-i1,2023-24,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,389,389.0 +5.488,5,a-phya-i1,2023-24,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,471,471.0 +6.592,5,a-phya-i1,2023-24,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,264,264.0 +-Infinity,1,a-phya-i1,2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,30,Infinity +5.512,5,a-phya-i1,2023-24,Wareham - Wareham Elementary School,03100017, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 2.0,933,466.5 +5.8453333333333335,5,a-phya-i1,2023-24,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,404,404.0 +4.890666666666666,4.89,a-phya-i1,2023-24,Wareham - Wareham Senior High,03100505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,583,583.0 +-Infinity,1,a-phya-i1,2023-24,Warwick - Warwick Community School,03120020, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,27,Infinity +6.346666666666667,5,a-phya-i1,2023-24,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,310,310.0 +6.08,5,a-phya-i1,2023-24,Watertown - Hosmer,03140020, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,720,360.0 +5.994666666666666,5,a-phya-i1,2023-24,Watertown - James Russell Lowell,03140025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,376,376.0 +3.9466666666666668,3.95,a-phya-i1,2023-24,Watertown - Watertown High,03140505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,760,760.0 +-6.693333333333333,1,a-phya-i1,2023-24,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 0.2, 0.0, 0.0, 0.0, 0.2,551,2755.0 +5.826666666666667,5,a-phya-i1,2023-24,Wayland - Claypit Hill School,03150005, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,489,407.5 +6.466666666666667,5,a-phya-i1,2023-24,Wayland - Happy Hollow School,03150015, 0.0, 1.0, 0.2, 0.0, 0.0, 0.0, 0.0, 1.2,345,287.5 +6.324444444444444,5,a-phya-i1,2023-24,Wayland - Loker School,03150020, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,377,314.1666666666667 +-Infinity,1,a-phya-i1,2023-24,Wayland - The Children's Way Preschool,03150025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,47,Infinity +4.355555555555555,4.36,a-phya-i1,2023-24,Wayland - Wayland High School,03150505, 0.0, 0.0, 0.2, 0.0, 1.0, 0.0, 0.0, 1.2,820,683.3333333333334 +5.035555555555556,5,a-phya-i1,2023-24,Wayland - Wayland Middle School,03150305, 0.0, 0.0, 1.2, 0.0, 0.0, 0.0, 0.0, 1.2,667,555.8333333333334 +5.78962962962963,5,a-phya-i1,2023-24,Webster - Bartlett High School,03160505, 0.0, 0.0, 0.2, 0.3, 0.5, 0.0, 0.0, 0.9,373,414.44444444444446 +4.737777777777778,4.74,a-phya-i1,2023-24,Webster - Park Avenue Elementary,03160015, 0.0, 0.5, 0.2, 0.5, 0.0, 0.0, 0.0, 1.2,734,611.6666666666667 +4.842666666666666,4.84,a-phya-i1,2023-24,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.7, 0.3, 0.0, 0.0, 0.0, 1.0,592,592.0 +7.248,5,a-phya-i1,2023-24,Wellesley - Ernest F Upham,03170050, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,141,141.0 +-Infinity,1,a-phya-i1,2023-24,Wellesley - Hunnewell,03170025, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,200,Infinity +6.8,5,a-phya-i1,2023-24,Wellesley - John D Hardy,03170020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,225,225.0 +6.314666666666667,5,a-phya-i1,2023-24,Wellesley - Joseph E Fiske,03170015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,316,316.0 +6.650666666666667,5,a-phya-i1,2023-24,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.2, 1.0,253,253.0 +7.482666666666667,5,a-phya-i1,2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,97,97.0 +7.2026666666666666,5,a-phya-i1,2023-24,Wellesley - Schofield,03170045, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 2.0,299,149.5 +6.437333333333333,5,a-phya-i1,2023-24,Wellesley - Sprague Elementary School,03170048, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,293,293.0 +5.549333333333333,5,a-phya-i1,2023-24,Wellesley - Wellesley Middle,03170305, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 0.0, 2.0,919,459.5 +4.378666666666667,4.38,a-phya-i1,2023-24,Wellesley - Wellesley Sr High,03170505, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,1358,679.0 +7.514666666666667,5,a-phya-i1,2023-24,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,91,91.0 +5.573333333333333,5,a-phya-i1,2023-24,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,455,455.0 +5.610666666666667,5,a-phya-i1,2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,448,448.0 +6.352,5,a-phya-i1,2023-24,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,309,309.0 +6.261333333333333,5,a-phya-i1,2023-24,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,326,326.0 +7.013333333333334,5,a-phya-i1,2023-24,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.0, 0.8,148,185.0 +3.8733333333333335,3.87,a-phya-i1,2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,619,773.75 +2.56,2.56,a-phya-i1,2023-24,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.1, 0.1, 0.0, 0.0, 0.0, 0.2,204,1020.0 +4.609523809523809,4.61,a-phya-i1,2023-24,West Springfield - John R Fausey,03320010, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.7,445,635.7142857142858 +6.415238095238095,5,a-phya-i1,2023-24,West Springfield - Memorial,03320025, 0.0, 0.0, 0.1, 0.6, 0.0, 0.0, 0.0, 0.7,208,297.14285714285717 +6.933333333333334,5,a-phya-i1,2023-24,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.1, 0.1, 0.5, 0.0, 0.0, 0.7,140,200.0 +5.453333333333333,5,a-phya-i1,2023-24,West Springfield - Philip G Coburn,03320007, 0.5, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 1.2,573,477.5 +6.835555555555555,5,a-phya-i1,2023-24,West Springfield - Tatham,03320040, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.5, 1.2,262,218.33333333333334 +2.6311111111111107,2.63,a-phya-i1,2023-24,West Springfield - West Springfield High,03320505, 0.0, 0.0, 0.1, 0.1, 0.0, 1.0, 0.0, 1.2,1208,1006.6666666666667 +0.9447619047619046,1,a-phya-i1,2023-24,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 0.6, 0.1, 0.0, 0.0, 0.0, 0.7,926,1322.857142857143 +6.24,5,a-phya-i1,2023-24,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,330,330.0 +5.381333333333333,5,a-phya-i1,2023-24,Westborough - Elsie A Hastings Elementary,03210025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,491,491.0 +6.968,5,a-phya-i1,2023-24,Westborough - J Harding Armstrong,03210005, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,387,193.5 +5.664,5,a-phya-i1,2023-24,Westborough - Mill Pond School,03210045, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,876,438.0 +4.794666666666667,4.79,a-phya-i1,2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,601,601.0 +4.794666666666667,4.79,a-phya-i1,2023-24,Westborough - Westborough High,03210505, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 2.0,1202,601.0 +7.1030303030303035,5,a-phya-i1,2023-24,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 1.0, 1.1,185,168.18181818181816 +7.287272727272728,5,a-phya-i1,2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,147,133.63636363636363 +7.156363636363637,5,a-phya-i1,2023-24,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,174,158.18181818181816 +-10.506666666666666,1,a-phya-i1,2023-24,Westfield - Highland,03250025, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,347,3470.0 +6.409696969696971,5,a-phya-i1,2023-24,Westfield - Munger Hill,03250033, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,328,298.18181818181813 +6.467878787878788,5,a-phya-i1,2023-24,Westfield - Paper Mill,03250036, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,316,287.27272727272725 +6.5212121212121215,5,a-phya-i1,2023-24,Westfield - Southampton Road,03250040, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,305,277.27272727272725 +5.445079365079365,5,a-phya-i1,2023-24,Westfield - Westfield High,03250505, 0.0, 0.0, 2.1, 0.0, 0.0, 0.0, 0.0, 2.1,1006,479.04761904761904 +4.683636363636364,4.68,a-phya-i1,2023-24,Westfield - Westfield Intermediate School,03250075, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,684,621.8181818181818 +4.576969696969697,4.58,a-phya-i1,2023-24,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,706,641.8181818181818 +5.343030303030304,5,a-phya-i1,2023-24,Westfield - Westfield Technical Academy,03250605, 0.0, 0.0, 0.1, 1.0, 0.0, 0.0, 0.0, 1.1,548,498.18181818181813 +-Infinity,1,a-phya-i1,2023-24,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,62,Infinity +7.338666666666667,5,a-phya-i1,2023-24,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 3.0,372,124.0 +7.048888888888888,5,a-phya-i1,2023-24,Westford - Blanchard Middle,03260310, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,535,178.33333333333334 +7.1866666666666665,5,a-phya-i1,2023-24,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,305,152.5 +6.421333333333333,5,a-phya-i1,2023-24,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,296,296.0 +-Infinity,1,a-phya-i1,2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,330,Infinity +6.373333333333333,5,a-phya-i1,2023-24,Westford - Nabnasset,03260015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,305,305.0 +7.629333333333333,5,a-phya-i1,2023-24,Westford - Rita E. Miller Elementary School,03260055, 0.0, 0.0, 1.0, 0.0, 2.0, 1.0, 0.0, 4.0,278,69.5 +4.874666666666666,4.87,a-phya-i1,2023-24,Westford - Stony Brook School,03260330, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,586,586.0 +2.865777777777778,2.87,a-phya-i1,2023-24,Westford - Westford Academy,03260505, 0.0, 0.0, 0.0, 0.0, 1.0, 0.5, 0.0, 1.5,1444,962.6666666666666 +7.445333333333333,5,a-phya-i1,2023-24,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,104,104.0 +5.88,5,a-phya-i1,2023-24,Weston - Country,03300010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.8,318,397.5 +6.986666666666666,5,a-phya-i1,2023-24,Weston - Field Elementary School,03300012, 0.0, 1.0, 0.0, 0.6, 0.0, 0.0, 0.0, 1.6,304,190.0 +3.5866666666666664,3.59,a-phya-i1,2023-24,Weston - Weston High,03300505, 0.0, 0.0, 0.0, 0.0, 0.8, 0.0, 0.0, 0.8,662,827.5 +-Infinity,1,a-phya-i1,2023-24,Weston - Weston Middle,03300305, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,428,Infinity +6.272,5,a-phya-i1,2023-24,Weston - Woodland,03300015, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,324,324.0 +7.050666666666666,5,a-phya-i1,2023-24,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,178,178.0 +5.610666666666667,5,a-phya-i1,2023-24,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,448,448.0 +5.653333333333333,5,a-phya-i1,2023-24,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,880,440.0 +-Infinity,1,a-phya-i1,2023-24,Westwood - Downey,03350012, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,314,Infinity +4.474666666666667,4.47,a-phya-i1,2023-24,Westwood - E W Thurston Middle,03350305, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,661,661.0 +6.533333333333333,5,a-phya-i1,2023-24,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,275,275.0 +5.754666666666667,5,a-phya-i1,2023-24,Westwood - Pine Hill Elementary School,03350030, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,421,421.0 +6.587474747474746,5,a-phya-i1,2023-24,Westwood - Westwood High,03350505, 0.0, 0.0, 0.0, 1.0, 0.3, 2.0, 0.0, 3.3,874,264.8484848484849 +7.725714285714285,5,a-phya-i1,2023-24,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 0.0, 0.7, 0.0, 0.0, 0.7,36,51.42857142857143 +6.4,5,a-phya-i1,2023-24,Westwood - William E Sheehan,03350025, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,300,300.0 +6.197333333333333,5,a-phya-i1,2023-24,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,338,338.0 +4.981333333333334,4.98,a-phya-i1,2023-24,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 0.0, 0.5,283,566.0 +6.912,5,a-phya-i1,2023-24,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,204,204.0 +6.581333333333333,5,a-phya-i1,2023-24,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,266,266.0 +5.889777777777778,5,a-phya-i1,2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 3.0,1187,395.6666666666667 +6.416,5,a-phya-i1,2023-24,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,297,297.0 +-Infinity,1,a-phya-i1,2023-24,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,252,Infinity +6.128,5,a-phya-i1,2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,351,351.0 +-Infinity,1,a-phya-i1,2023-24,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,328,Infinity +5.665333333333334,5,a-phya-i1,2023-24,Weymouth - Weymouth High School,03360505, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 4.0,1751,437.75 +5.952,5,a-phya-i1,2023-24,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,384,384.0 +7.333333333333333,5,a-phya-i1,2023-24,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,125,125.0 +5.738666666666667,5,a-phya-i1,2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,424,424.0 +5.344,5,a-phya-i1,2023-24,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,498,498.0 +5.68,5,a-phya-i1,2023-24,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,435,435.0 +5.466666666666667,5,a-phya-i1,2023-24,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,475,475.0 +-Infinity,1,a-phya-i1,2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,105,Infinity +2.458666666666667,2.46,a-phya-i1,2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,1039,1039.0 +5.296,5,a-phya-i1,2023-24,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,507,507.0 +4.589333333333333,4.59,a-phya-i1,2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0,1279,639.5 +7.344,5,a-phya-i1,2023-24,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.4, 0.0, 0.6, 0.0, 0.0, 1.0,123,123.0 +7.232,5,a-phya-i1,2023-24,Wilmington - Boutwell,03420005, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,144,144.0 +6.672,5,a-phya-i1,2023-24,Wilmington - North Intermediate,03420060, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,249,249.0 +6.176,5,a-phya-i1,2023-24,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,342,342.0 +6.544,5,a-phya-i1,2023-24,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,273,273.0 +6.365333333333333,5,a-phya-i1,2023-24,Wilmington - Wilmington High,03420505, 0.0, 0.0, 0.0, 0.0, 0.4, 1.6, 0.0, 2.0,613,306.5 +5.917333333333334,5,a-phya-i1,2023-24,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,781,390.5 +6.0906666666666665,5,a-phya-i1,2023-24,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,358,358.0 +6.389333333333333,5,a-phya-i1,2023-24,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,302,302.0 +-Infinity,1,a-phya-i1,2023-24,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,20,Infinity +6.656,5,a-phya-i1,2023-24,Winchendon - Murdock High School,03430515, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,252,252.0 +6.453333333333333,5,a-phya-i1,2023-24,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,290,290.0 +6.528,5,a-phya-i1,2023-24,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,276,276.0 +-Infinity,1,a-phya-i1,2023-24,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,79,Infinity +5.957333333333334,5,a-phya-i1,2023-24,Winchester - Ambrose Elementary,03440045, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,383,383.0 +6.1386666666666665,5,a-phya-i1,2023-24,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,349,349.0 +5.733333333333333,5,a-phya-i1,2023-24,Winchester - Lynch Elementary,03440020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,425,425.0 +5.229333333333333,5,a-phya-i1,2023-24,Winchester - McCall Middle,03440305, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 2.0,1039,519.5 +6.197333333333333,5,a-phya-i1,2023-24,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,338,338.0 +5.733333333333333,5,a-phya-i1,2023-24,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,425,425.0 +5.073066666666667,5,a-phya-i1,2023-24,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.0, 1.0, 0.9, 0.0, 0.6, 2.5,1372,548.8 +5.637333333333333,5,a-phya-i1,2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,443,443.0 +5.312,5,a-phya-i1,2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,504,504.0 +-Infinity,1,a-phya-i1,2023-24,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,595,Infinity +5.744,5,a-phya-i1,2023-24,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,423,423.0 +5.847272727272728,5,a-phya-i1,2023-24,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.1, 0.0, 0.0, 0.0, 0.0, 1.1,444,403.6363636363636 +6.933333333333334,5,a-phya-i1,2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 0.0, 1.0, 0.3, 0.0, 1.0, 0.0, 2.3,460,200.00000000000003 +6.288484848484848,5,a-phya-i1,2023-24,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,353,320.9090909090909 +6.616666666666666,5,a-phya-i1,2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.1, 1.0, 0.0, 0.5, 0.0, 1.6,415,259.375 +5.903589743589744,5,a-phya-i1,2023-24,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 0.0, 0.3, 0.0, 0.0, 1.0, 1.3,511,393.07692307692304 +7.049696969696971,5,a-phya-i1,2023-24,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,196,178.18181818181816 +6.361212121212121,5,a-phya-i1,2023-24,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.1, 0.0, 0.0, 1.0, 0.0, 1.1,338,307.27272727272725 +7.010909090909091,5,a-phya-i1,2023-24,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,204,185.45454545454544 +6.666666666666667,5,a-phya-i1,2023-24,Woburn - Shamrock,03470043, 0.0, 0.0, 0.1, 0.0, 1.0, 0.0, 0.0, 1.1,275,249.99999999999997 +5.152463768115942,5,a-phya-i1,2023-24,Woburn - Woburn High,03470505, 0.0, 0.0, 0.0, 0.3, 1.0, 0.0, 1.0, 2.3,1228,533.9130434782609 +4.890666666666666,4.89,a-phya-i1,2023-24,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,583,583.0 +5.568,5,a-phya-i1,2023-24,Worcester - Burncoat Middle School,03480405, 0.0, 0.0, 0.0, 0.0, 0.5, 1.0, 0.0, 1.5,684,456.0 +2.005333333333333,2.01,a-phya-i1,2023-24,Worcester - Burncoat Senior High,03480503, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,1124,1124.0 +6.768,5,a-phya-i1,2023-24,Worcester - Burncoat Street,03480035, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,231,231.0 +6.213333333333333,5,a-phya-i1,2023-24,Worcester - Canterbury,03480045, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,335,335.0 +6.904,5,a-phya-i1,2023-24,Worcester - Chandler Elementary Community,03480050, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0, 2.0,411,205.5 +6.538666666666667,5,a-phya-i1,2023-24,Worcester - Chandler Magnet,03480052, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 2.0,548,274.0 +5.690666666666667,5,a-phya-i1,2023-24,Worcester - City View,03480053, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,433,433.0 +5.450666666666667,5,a-phya-i1,2023-24,Worcester - Claremont Academy,03480350, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,478,478.0 +6.608,5,a-phya-i1,2023-24,Worcester - Clark St Community,03480055, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,261,261.0 +6.0,5,a-phya-i1,2023-24,Worcester - Columbus Park,03480060, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,375,375.0 +4.272,4.27,a-phya-i1,2023-24,Worcester - Doherty Memorial High,03480512, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0,1398,699.0 +6.194871794871794,5,a-phya-i1,2023-24,Worcester - Elm Park Community,03480095, 0.0, 1.0, 0.0, 0.3, 0.0, 0.0, 0.0, 1.3,440,338.46153846153845 +6.8533333333333335,5,a-phya-i1,2023-24,Worcester - Flagg Street,03480090, 0.0, 1.0, 0.0, 0.3, 0.0, 0.5, 0.0, 1.8,387,215.0 +7.017481481481481,5,a-phya-i1,2023-24,Worcester - Forest Grove Middle,03480415, 0.0, 0.5, 2.0, 1.0, 0.0, 0.0, 1.0, 4.5,829,184.22222222222223 +6.890666666666666,5,a-phya-i1,2023-24,Worcester - Francis J McGrath Elementary,03480177, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,208,208.0 +7.027555555555555,5,a-phya-i1,2023-24,Worcester - Gates Lane,03480110, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 3.0,547,182.33333333333334 +6.656,5,a-phya-i1,2023-24,Worcester - Goddard School/Science Technical,03480100, 0.0, 0.0, 1.0, 0.5, 0.0, 0.0, 0.0, 1.5,378,252.0 +5.8773333333333335,5,a-phya-i1,2023-24,Worcester - Grafton Street,03480115, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,398,398.0 +6.997333333333334,5,a-phya-i1,2023-24,Worcester - Head Start,03480002, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0,376,188.0 +7.330666666666667,5,a-phya-i1,2023-24,Worcester - Heard Street,03480136, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0,251,125.5 +5.968,5,a-phya-i1,2023-24,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,381,381.0 +6.474666666666667,5,a-phya-i1,2023-24,Worcester - Lake View,03480145, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0,286,286.0 +7.235555555555555,5,a-phya-i1,2023-24,Worcester - Lincoln Street,03480160, 0.0, 0.0, 0.0, 0.5, 0.0, 0.0, 1.0, 1.5,215,143.33333333333334 +6.432,5,a-phya-i1,2023-24,Worcester - May Street,03480175, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 1.0,294,294.0 +6.730666666666667,5,a-phya-i1,2023-24,Worcester - Midland Street,03480185, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0,238,238.0 +6.426666666666667,5,a-phya-i1,2023-24,Worcester - Nelson Place,03480200, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0,590,295.0 +7.691921568627451,5,a-phya-i1,2023-24,Worcester - Norrback Avenue,03480202, 0.0, 1.5, 3.0, 1.0, 0.0, 3.0, 0.0, 8.5,491,57.76470588235294 +6.990222222222221,5,a-phya-i1,2023-24,Worcester - North High,03480515, 1.0, 3.5, 1.0, 1.0, 0.0, 1.0, 0.0, 7.5,1420,189.33333333333334 +7.237333333333333,5,a-phya-i1,2023-24,Worcester - Quinsigamond,03480210, 0.0, 0.0, 3.0, 1.0, 1.0, 0.0, 0.0, 5.0,715,143.0 +5.674666666666667,5,a-phya-i1,2023-24,Worcester - Rice Square,03480215, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,436,436.0 +7.29362962962963,5,a-phya-i1,2023-24,Worcester - Roosevelt,03480220, 1.0, 2.5, 0.0, 0.0, 0.0, 1.0, 0.0, 4.5,596,132.44444444444446 +6.635428571428571,5,a-phya-i1,2023-24,Worcester - South High Community,03480520, 0.0, 2.0, 2.0, 1.0, 2.0, 0.0, 0.0, 7.0,1791,255.85714285714286 +7.249777777777779,5,a-phya-i1,2023-24,Worcester - Sullivan Middle,03480423, 0.0, 0.0, 3.0, 1.0, 1.0, 1.0, 0.0, 6.0,844,140.66666666666666 +5.973333333333334,5,a-phya-i1,2023-24,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,380,380.0 +6.1226666666666665,5,a-phya-i1,2023-24,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,352,352.0 +6.032,5,a-phya-i1,2023-24,Worcester - Union Hill School,03480240, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0,369,369.0 +6.698666666666667,5,a-phya-i1,2023-24,Worcester - University Pk Campus School,03480285, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,244,244.0 +5.397333333333333,5,a-phya-i1,2023-24,Worcester - Vernon Hill School,03480280, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,488,488.0 +-Infinity,1,a-phya-i1,2023-24,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,150,Infinity +7.546046511627907,5,a-phya-i1,2023-24,Worcester - West Tatnuck,03480260, 0.0, 1.0, 1.0, 1.3, 0.0, 0.0, 1.0, 4.3,366,85.11627906976744 +-18.08,1,a-phya-i1,2023-24,Worcester - Woodland Academy,03480030, 0.0, 0.0, 0.1, 0.0, 0.0, 0.0, 0.0, 0.1,489,4890.0 +-Infinity,1,a-phya-i1,2023-24,Worcester - Worcester Arts Magnet School,03480225, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,406,Infinity +6.517333333333333,5,a-phya-i1,2023-24,Worcester - Worcester East Middle,03480420, 0.0, 0.0, 0.0, 1.0, 1.0, 0.5, 0.0, 2.5,695,278.0 +5.8072380952380955,5,a-phya-i1,2023-24,Worcester - Worcester Technical High,03480605, 0.0, 1.0, 2.0, 0.5, 0.0, 0.0, 0.0, 3.5,1439,411.14285714285717 +7.274666666666667,5,a-phya-i1,2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,136,136.0 +7.610666666666667,5,a-phya-i1,2023-24,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.4, 0.0, 0.0, 0.6, 0.0, 1.0,73,73.0 +6.026666666666666,5,a-phya-i1,2023-24,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0,370,370.0 +6.370666666666667,5,a-phya-i1,2023-24,Wrentham - Delaney,03500003, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 2.0,611,305.5 5.472,5,a-phya-i1,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 3.0,1422,474.0 -Infinity,1,a-phya-i1,2022-23,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0,87,Infinity 5.077333333333334,5,a-phya-i1,2022-23,Abington - Abington High,00010505, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0,548,548.0 diff --git a/data/admin_data/dese/enrollments.csv b/data/admin_data/dese/enrollments.csv index 5fcec9b8..ab21ca3a 100644 --- a/data/admin_data/dese/enrollments.csv +++ b/data/admin_data/dese/enrollments.csv @@ -1,4 +1,1831 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,PK,K,1,2,3,4,5,6,7,8,9,10,11,12,SP,Total +NA,NA,"",2023-24,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 121, 119, 123, 128, 123, 124, 126, 115, 104, 90, 83, 78, 87, 0," 1,421" +NA,NA,"",2023-24,Abington - Abington Early Education Program,00010001, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78 +NA,NA,"",2023-24,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 135, 129, 146, 8, 561 +NA,NA,"",2023-24,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 170, 162, 165, 139, 0, 0, 0, 0, 0, 636 +NA,NA,"",2023-24,Abington - Beaver Brook Elementary,00010020, 0, 177, 161, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506 +NA,NA,"",2023-24,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 192, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 30, 55, 62, 64, 60, 56, 52, 61, 0, 440 +NA,NA,"",2023-24,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403, 425, 403, 415, 3," 1,649" +NA,NA,"",2023-24,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 56, 67, 63, 76, 61, 90, 94, 0, 0, 0, 0, 0, 0, 0, 507 +NA,NA,"",2023-24,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 60, 61, 63, 58, 67, 50, 48, 0, 0, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109 +NA,NA,"",2023-24,Acton-Boxborough - Luther Conant School,06000030, 0, 60, 42, 62, 39, 68, 73, 69, 0, 0, 0, 0, 0, 0, 0, 413 +NA,NA,"",2023-24,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 60, 59, 43, 58, 67, 69, 85, 0, 0, 0, 0, 0, 0, 0, 441 +NA,NA,"",2023-24,Acton-Boxborough - Merriam School,06000010, 0, 39, 39, 62, 60, 65, 69, 70, 0, 0, 0, 0, 0, 0, 0, 404 +NA,NA,"",2023-24,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 59, 59, 60, 40, 43, 49, 46, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 399, 414, 0, 0, 0, 0, 0, 813 +NA,NA,"",2023-24,Acushnet - Acushnet Elementary School,00030025, 41, 98, 94, 87, 105, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517 +NA,NA,"",2023-24,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 124, 102, 87, 107, 0, 0, 0, 0, 0, 420 +NA,NA,"",2023-24,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 145, 142, 143, 149, 132, 128, 127, 0, 966 +NA,NA,"",2023-24,Agawam - Agawam Early Childhood Center,00050003, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150 +NA,NA,"",2023-24,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 283, 244, 235, 4," 1,050" +NA,NA,"",2023-24,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 288, 263, 0, 0, 0, 0, 0, 551 +NA,NA,"",2023-24,Agawam - Benjamin J Phelps,00050020, 0, 53, 70, 51, 63, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 +NA,NA,"",2023-24,Agawam - Clifford M Granger,00050010, 0, 70, 59, 81, 64, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Agawam - James Clark School,00050030, 0, 53, 65, 66, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 +NA,NA,"",2023-24,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 264, 240, 0, 0, 0, 0, 0, 0, 0, 504 +NA,NA,"",2023-24,Agawam - William P. Sapelli Elementary,00050025, 0, 54, 54, 51, 64, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 100, 105, 103, 102, 104, 100, 147, 148, 132, 0, 0, 0, 0, 0," 1,041" +NA,NA,"",2023-24,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 116, 104, 105, 4, 465 +NA,NA,"",2023-24,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 15, 13, 16, 0, 51 +NA,NA,"",2023-24,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 0, 135, 132, 149, 0, 0, 0, 0, 0, 416 +NA,NA,"",2023-24,Amesbury - Charles C Cashman Elementary,00070010, 0, 0, 0, 0, 144, 141, 113, 0, 0, 0, 0, 0, 0, 0, 0, 398 +NA,NA,"",2023-24,Amesbury - Shay Elementary,00070005, 59, 149, 141, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 +NA,NA,"",2023-24,Amherst - Crocker Farm Elementary,00080009, 61, 30, 32, 29, 47, 38, 52, 37, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,Amherst - Fort River Elementary,00080020, 0, 48, 58, 53, 43, 60, 48, 36, 0, 0, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Amherst - Wildwood Elementary,00080050, 0, 36, 44, 26, 47, 40, 56, 62, 0, 0, 0, 0, 0, 0, 0, 311 +NA,NA,"",2023-24,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 230, 197, 215, 4, 841 +NA,NA,"",2023-24,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 187, 182, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410, 419, 405, 416, 32," 1,682" +NA,NA,"",2023-24,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 150, 168, 175, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Andover - Bancroft Elementary,00090003, 0, 73, 92, 89, 72, 89, 107, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 155, 149, 158, 0, 0, 0, 0, 0, 462 +NA,NA,"",2023-24,Andover - Henry C Sanborn Elementary,00090010, 0, 39, 61, 63, 56, 47, 68, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Andover - High Plain Elementary,00090004, 0, 82, 73, 89, 99, 92, 109, 0, 0, 0, 0, 0, 0, 0, 0, 544 +NA,NA,"",2023-24,Andover - Shawsheen School,00090005, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83 +NA,NA,"",2023-24,Andover - South Elementary,00090020, 0, 63, 63, 73, 76, 74, 83, 0, 0, 0, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Andover - West Elementary,00090025, 0, 77, 94, 98, 99, 95, 102, 0, 0, 0, 0, 0, 0, 0, 0, 565 +NA,NA,"",2023-24,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 111, 99, 121, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 104, 104, 103, 89, 79, 43, 52, 0, 574 +NA,NA,"",2023-24,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432, 391, 388, 398, 0," 1,609" +NA,NA,"",2023-24,Arlington - Brackett,00100010, 0, 60, 81, 51, 69, 64, 98, 0, 0, 0, 0, 0, 0, 0, 0, 423 +NA,NA,"",2023-24,Arlington - Cyrus E Dallin,00100025, 0, 55, 72, 63, 65, 69, 85, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Arlington - Gibbs School,00100305, 0, 0, 0, 0, 0, 0, 0, 468, 0, 0, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Arlington - Hardy,00100030, 0, 63, 72, 73, 60, 51, 64, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Arlington - John A Bishop,00100005, 0, 60, 60, 68, 67, 64, 72, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Arlington - M Norcross Stratton,00100055, 0, 69, 54, 84, 74, 86, 70, 0, 0, 0, 0, 0, 0, 0, 0, 437 +NA,NA,"",2023-24,Arlington - Menotomy Preschool,00100038, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 +NA,NA,"",2023-24,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 0, 493, 448, 0, 0, 0, 0, 0, 941 +NA,NA,"",2023-24,Arlington - Peirce,00100045, 0, 41, 67, 51, 61, 56, 59, 0, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Arlington - Thompson,00100050, 0, 86, 91, 97, 86, 86, 76, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Ashburnham-Westminster - Briggs Elementary,06100025, 38, 76, 77, 73, 67, 71, 90, 0, 0, 0, 0, 0, 0, 0, 0, 492 +NA,NA,"",2023-24,Ashburnham-Westminster - Meetinghouse School,06100010, 41, 70, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195 +NA,NA,"",2023-24,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 163, 154, 155, 3, 634 +NA,NA,"",2023-24,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 180, 178, 177, 0, 0, 0, 0, 0, 535 +NA,NA,"",2023-24,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 94, 101, 93, 120, 0, 0, 0, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 224, 215, 208, 0, 870 +NA,NA,"",2023-24,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 231, 216, 232, 0, 0, 0, 0, 0, 679 +NA,NA,"",2023-24,Ashland - David Mindess,00140015, 0, 0, 0, 0, 242, 193, 232, 0, 0, 0, 0, 0, 0, 0, 0, 667 +NA,NA,"",2023-24,Ashland - Henry E Warren Elementary,00140010, 0, 219, 175, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 611 +NA,NA,"",2023-24,Ashland - William Pittaway Elementary,00140005, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76 +NA,NA,"",2023-24,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303, 279, 282, 266, 0," 1,130" +NA,NA,"",2023-24,Athol-Royalston - Athol Community Elementary School,06150020, 53, 105, 101, 129, 97, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 99, 110, 94, 4, 414 +NA,NA,"",2023-24,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 117, 101, 124, 121, 0, 0, 0, 0, 0, 463 +NA,NA,"",2023-24,Athol-Royalston - Royalston Community School,06150050, 17, 21, 21, 23, 16, 19, 17, 14, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 109, 110, 110, 110, 110, 110, 110, 110, 110, 61, 68, 80, 59, 0," 1,257" +NA,NA,"",2023-24,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 70, 74, 78, 58, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 7, 13, 20, 19, 0, 68 +NA,NA,"",2023-24,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479, 490, 506, 425, 25," 1,925" +NA,NA,"",2023-24,Attleboro - Attleboro Virtual Academy,00160705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 9, 13, 0, 31 +NA,NA,"",2023-24,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 149, 152, 147, 165, 0, 0, 0, 0, 0, 613 +NA,NA,"",2023-24,Attleboro - Early Learning Center,00160008, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Attleboro - Hill-Roberts Elementary School,00160045, 0, 78, 73, 95, 75, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Attleboro - Hyman Fine Elementary School,00160040, 0, 86, 93, 93, 86, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Attleboro - Peter Thacher Elementary School,00160050, 0, 84, 94, 97, 82, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 440 +NA,NA,"",2023-24,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 139, 131, 153, 154, 0, 0, 0, 0, 0, 577 +NA,NA,"",2023-24,Attleboro - Thomas Willett Elementary School,00160035, 0, 72, 74, 77, 74, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 +NA,NA,"",2023-24,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 132, 155, 137, 156, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 179, 232, 211, 0, 0, 0, 0, 0, 622 +NA,NA,"",2023-24,Auburn - Auburn Senior High,00170505, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 187, 170, 172, 11, 815 +NA,NA,"",2023-24,Auburn - Bryn Mawr,00170010, 0, 72, 96, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Auburn - Pakachoag School,00170025, 0, 74, 84, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244 +NA,NA,"",2023-24,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 177, 192, 192, 0, 0, 0, 0, 0, 0, 0, 0, 561 +NA,NA,"",2023-24,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 62, 63, 63, 49, 57, 64, 47, 3, 408 +NA,NA,"",2023-24,Avon - Ralph D Butler,00180010, 17, 45, 54, 49, 52, 50, 57, 0, 0, 0, 0, 0, 0, 0, 0, 324 +NA,NA,"",2023-24,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 101, 121, 93, 0, 412 +NA,NA,"",2023-24,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 134, 130, 115, 0, 0, 0, 0, 0, 379 +NA,NA,"",2023-24,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0, 58, 58, 67, 62, 59, 52, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 84, 65, 85, 92, 54, 81, 79, 0, 0, 0, 0, 0, 0, 0, 0, 540 +NA,NA,"",2023-24,Barnstable - Barnstable Community Innovation School,00200012, 0, 80, 86, 69, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 336, 358, 356, 337, 14," 1,756" +NA,NA,"",2023-24,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 325, 314, 0, 0, 0, 0, 0, 0, 639 +NA,NA,"",2023-24,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 342, 364, 0, 0, 0, 0, 0, 0, 0, 0, 706 +NA,NA,"",2023-24,Barnstable - Centerville Elementary,00200010, 0, 61, 68, 69, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260 +NA,NA,"",2023-24,Barnstable - Enoch Cobb Early Learning Center,00200001, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 +NA,NA,"",2023-24,Barnstable - Hyannis West Elementary,00200025, 0, 92, 80, 78, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 +NA,NA,"",2023-24,Barnstable - West Barnstable Elementary,00200005, 0, 52, 69, 67, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,Barnstable - West Villages Elementary School,00200045, 0, 86, 101, 110, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 399 +NA,NA,"",2023-24,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 60, 51, 70, 62, 57, 62, 52, 0, 414 +NA,NA,"",2023-24,Bedford - Bedford High,00230505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 213, 226, 197, 0, 866 +NA,NA,"",2023-24,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 221, 189, 202, 0, 0, 0, 0, 0, 612 +NA,NA,"",2023-24,Bedford - Lt Eleazer Davis,00230010, 41, 158, 159, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 192, 182, 197, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 153, 148, 153, 5, 602 +NA,NA,"",2023-24,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 158, 164, 167, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Belchertown - Cold Spring,00240005, 64, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 166, 167, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Belchertown - Swift River Elementary,00240018, 0, 0, 142, 168, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Bellingham - Bellingham Early Childhood Center,00250003, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109 +NA,NA,"",2023-24,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 159, 150, 143, 148, 7, 749 +NA,NA,"",2023-24,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 149, 141, 141, 160, 0, 0, 0, 0, 0, 0, 591 +NA,NA,"",2023-24,Bellingham - Joseph F DiPietro Elementary School,00250020, 0, 85, 80, 68, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 8, 2, 4, 0, 26 +NA,NA,"",2023-24,Bellingham - Stall Brook,00250025, 0, 42, 58, 57, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 +NA,NA,"",2023-24,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 398, 371, 363, 330, 0," 1,462" +NA,NA,"",2023-24,Belmont - Belmont Middle School,00260315, 0, 0, 0, 0, 0, 0, 0, 0, 354, 312, 0, 0, 0, 0, 0, 666 +NA,NA,"",2023-24,Belmont - Daniel Butler,00260015, 0, 54, 63, 63, 69, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Belmont - Mary Lee Burbank,00260010, 0, 53, 60, 68, 56, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Belmont - Roger E Wellington,00260035, 69, 64, 87, 110, 82, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Belmont - Winn Brook,00260005, 0, 65, 80, 87, 95, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Belmont - Winthrop L Chenery Upper Elementary,00260305, 0, 0, 0, 0, 0, 0, 349, 364, 0, 0, 0, 0, 0, 0, 0, 713 +NA,NA,"",2023-24,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 16, 49, 48, 48, 49, 47, 46, 43, 0, 0, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 100, 100, 100, 100, 100, 100, 100, 99, 89, 0, 0, 0, 0, 0, 888 +NA,NA,"",2023-24,Berkley - Berkley Community School,00270010, 54, 77, 86, 78, 82, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 471 +NA,NA,"",2023-24,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 90, 81, 100, 94, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 72, 69, 65, 52, 45, 33, 29, 0, 365 +NA,NA,"",2023-24,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 117, 134, 108, 4, 451 +NA,NA,"",2023-24,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 54, 61, 57, 68, 70, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 79, 69, 99, 101, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Berlin-Boylston - Berlin Memorial School,06200005, 24, 30, 39, 28, 43, 29, 29, 0, 0, 0, 0, 0, 0, 0, 0, 222 +NA,NA,"",2023-24,Berlin-Boylston - Boylston Elementary School,06200010, 23, 62, 48, 62, 37, 59, 45, 0, 0, 0, 0, 0, 0, 0, 0, 336 +NA,NA,"",2023-24,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 96, 84, 87, 75, 73, 63, 76, 0, 554 +NA,NA,"",2023-24,Beverly - Ayers/Ryal Side School,00300055, 0, 71, 84, 71, 90, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388 +NA,NA,"",2023-24,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 326, 301, 289, 9," 1,255" +NA,NA,"",2023-24,Beverly - Beverly Middle School,00300305, 0, 0, 0, 0, 0, 0, 350, 362, 324, 320, 0, 0, 0, 0, 0," 1,356" +NA,NA,"",2023-24,Beverly - Centerville Elementary,00300010, 0, 56, 71, 60, 67, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Beverly - Cove Elementary,00300015, 0, 82, 75, 77, 82, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 405 +NA,NA,"",2023-24,Beverly - Hannah Elementary,00300033, 0, 63, 63, 65, 51, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Beverly - McKeown School,00300002, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 +NA,NA,"",2023-24,Beverly - North Beverly Elementary,00300040, 0, 66, 67, 69, 78, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 +NA,NA,"",2023-24,Billerica - Billerica Memorial High School,00310505, 222, 0, 0, 0, 0, 0, 0, 0, 0, 410, 310, 314, 291, 267, 7," 1,821" +NA,NA,"",2023-24,Billerica - Frederick J Dutile,00310007, 0, 60, 62, 58, 66, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 +NA,NA,"",2023-24,Billerica - Hajjar Elementary,00310026, 0, 68, 82, 71, 81, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382 +NA,NA,"",2023-24,Billerica - John F Kennedy,00310012, 0, 62, 52, 74, 74, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 170, 169, 164, 0, 0, 0, 0, 0, 0, 503 +NA,NA,"",2023-24,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 201, 193, 205, 0, 0, 0, 0, 0, 0, 599 +NA,NA,"",2023-24,Billerica - Parker,00310015, 0, 84, 82, 89, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421 +NA,NA,"",2023-24,Billerica - Thomas Ditson,00310005, 0, 105, 116, 115, 112, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 551 +NA,NA,"",2023-24,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 306, 316, 308, 0," 1,250" +NA,NA,"",2023-24,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 0, 117, 121, 0, 0, 0, 0, 0, 0, 0, 0, 238 +NA,NA,"",2023-24,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 102, 92, 84, 5, 382 +NA,NA,"",2023-24,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 132, 93, 142, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 0, 0, 0, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115 +NA,NA,"",2023-24,Blackstone-Millville - Millville Elementary,06220010, 72, 97, 97, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 233, 221, 222, 0, 918 +NA,NA,"",2023-24,Boston - Adams Elementary School,00350302, 28, 34, 33, 31, 33, 47, 22, 23, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Boston - Alighieri Dante Montessori School,00350066, 26, 16, 12, 12, 9, 12, 13, 8, 0, 0, 0, 0, 0, 0, 0, 108 +NA,NA,"",2023-24,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 64, 62, 58, 0, 240 +NA,NA,"",2023-24,Boston - Baldwin Early Learning Pilot Academy,00350003, 84, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192 +NA,NA,"",2023-24,Boston - Bates Elementary School,00350278, 23, 39, 36, 40, 35, 37, 37, 32, 0, 0, 0, 0, 0, 0, 0, 279 +NA,NA,"",2023-24,Boston - Beethoven Elementary School,00350021, 40, 68, 74, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,Boston - Blackstone Elementary School,00350390, 78, 73, 74, 71, 80, 73, 69, 63, 0, 0, 0, 0, 0, 0, 0, 581 +NA,NA,"",2023-24,Boston - Boston Adult Tech Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 82, 1, 185 +NA,NA,"",2023-24,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 130, 115, 108, 1, 473 +NA,NA,"",2023-24,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 21, 56, 133, 1, 218 +NA,NA,"",2023-24,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 51, 70, 109, 124, 110, 93, 12, 569 +NA,NA,"",2023-24,Boston - Boston International High School & Newcomers Academy,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 147, 105, 79, 0, 486 +NA,NA,"",2023-24,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 275, 255, 308, 310, 267, 278, 0," 1,693" +NA,NA,"",2023-24,Boston - Boston Latin School,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 397, 404, 417, 397, 401, 384, 1," 2,401" +NA,NA,"",2023-24,Boston - Boston Teachers Union K-8 Pilot,00350012, 25, 25, 25, 26, 28, 26, 22, 30, 34, 31, 0, 0, 0, 0, 0, 272 +NA,NA,"",2023-24,Boston - Bradley Elementary School,00350215, 30, 41, 41, 42, 41, 43, 30, 32, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Boston - Brighton High School,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 30, 40, 97, 117, 169, 119, 12, 584 +NA,NA,"",2023-24,Boston - Burke High School,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 18, 30, 73, 70, 103, 89, 12, 395 +NA,NA,"",2023-24,Boston - Carter School,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 4, 3, 11, 3, 31 +NA,NA,"",2023-24,Boston - Channing Elementary School,00350360, 33, 33, 26, 25, 18, 25, 19, 13, 0, 0, 0, 0, 0, 0, 0, 192 +NA,NA,"",2023-24,Boston - Charlestown High School,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 30, 36, 140, 170, 184, 178, 51, 789 +NA,NA,"",2023-24,Boston - Chittick Elementary School,00350154, 39, 33, 37, 34, 27, 27, 20, 11, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Boston - Clap Elementary School,00350298, 14, 18, 19, 20, 16, 14, 17, 12, 0, 0, 0, 0, 0, 0, 0, 130 +NA,NA,"",2023-24,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 14, 17, 0, 41 +NA,NA,"",2023-24,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 72, 98, 78, 30, 341 +NA,NA,"",2023-24,Boston - Condon K-8 School,00350146, 35, 48, 60, 64, 49, 50, 69, 71, 75, 59, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Boston - Conley Elementary School,00350122, 21, 19, 21, 23, 14, 20, 19, 14, 0, 0, 0, 0, 0, 0, 0, 151 +NA,NA,"",2023-24,Boston - Curley K-8 School,00350020, 95, 87, 84, 93, 96, 102, 96, 105, 77, 77, 0, 0, 0, 0, 0, 912 +NA,NA,"",2023-24,Boston - Dearborn 6-12 STEM Academy,00350074, 0, 0, 0, 0, 0, 0, 0, 34, 74, 93, 86, 89, 98, 79, 0, 553 +NA,NA,"",2023-24,Boston - Dever Elementary School,00350268, 26, 48, 55, 55, 53, 54, 60, 55, 0, 0, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Boston - East Boston Early Education Center,00350009, 95, 51, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Boston - East Boston High School,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 104, 119, 223, 244, 295, 286, 22," 1,293" +NA,NA,"",2023-24,Boston - Edison K-8 School,00350375, 20, 36, 55, 85, 63, 79, 84, 71, 50, 41, 0, 0, 0, 0, 0, 584 +NA,NA,"",2023-24,Boston - Eliot K-8 Innovation School,00350096, 70, 80, 81, 79, 87, 89, 92, 98, 48, 68, 0, 0, 0, 0, 0, 792 +NA,NA,"",2023-24,Boston - Ellis Elementary School,00350072, 39, 50, 50, 56, 45, 44, 29, 27, 0, 0, 0, 0, 0, 0, 0, 340 +NA,NA,"",2023-24,Boston - Ellison-Parks Early Education School,00350008, 54, 36, 30, 38, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Boston - English High School,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 44, 43, 166, 134, 152, 128, 15, 682 +NA,NA,"",2023-24,Boston - Everett Elementary School,00350088, 14, 38, 39, 39, 36, 40, 38, 34, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 109, 110, 90, 3, 387 +NA,NA,"",2023-24,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 91, 86, 88, 9, 376 +NA,NA,"",2023-24,Boston - Frederick Pilot Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 85, 117, 125, 0, 0, 0, 0, 0, 327 +NA,NA,"",2023-24,Boston - Gardner Pilot Academy,00350326, 29, 38, 40, 36, 40, 40, 40, 40, 34, 34, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Boston - Greater Egleston High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 8, 20, 36, 1, 76 +NA,NA,"",2023-24,Boston - Greenwood Sarah K-8 School,00350308, 38, 39, 44, 39, 39, 43, 34, 36, 22, 25, 0, 0, 0, 0, 0, 359 +NA,NA,"",2023-24,Boston - Grew Elementary School,00350135, 18, 20, 27, 36, 17, 33, 28, 18, 0, 0, 0, 0, 0, 0, 0, 197 +NA,NA,"",2023-24,Boston - Guild Elementary School,00350062, 27, 37, 29, 35, 30, 37, 28, 24, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Boston - Hale Elementary School,00350243, 17, 18, 20, 20, 23, 24, 22, 22, 0, 0, 0, 0, 0, 0, 0, 166 +NA,NA,"",2023-24,Boston - Haley Pilot School,00350077, 40, 37, 43, 41, 44, 48, 43, 43, 23, 19, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Boston - Harvard-Kent Elementary School,00350200, 44, 42, 45, 44, 45, 41, 44, 35, 0, 0, 0, 0, 0, 0, 0, 340 +NA,NA,"",2023-24,Boston - Haynes Early Education Center,00350010, 62, 60, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198 +NA,NA,"",2023-24,Boston - Henderson K-12 Inclusion School Lower,00350266, 81, 67, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Boston - Henderson K-12 Inclusion School Upper,00350426, 0, 0, 0, 58, 53, 57, 47, 39, 58, 66, 60, 67, 63, 59, 12, 639 +NA,NA,"",2023-24,Boston - Hennigan K-8 School,00350153, 0, 27, 40, 51, 40, 56, 79, 65, 71, 76, 0, 0, 0, 0, 0, 505 +NA,NA,"",2023-24,Boston - Hernandez K-8 School,00350691, 39, 46, 46, 46, 49, 47, 44, 34, 31, 25, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,Boston - Higginson Inclusion K0-2 School,00350015, 32, 44, 42, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 +NA,NA,"",2023-24,Boston - Higginson-Lewis K-8 School,00350377, 0, 0, 0, 0, 20, 28, 31, 33, 34, 23, 0, 0, 0, 0, 0, 169 +NA,NA,"",2023-24,Boston - Holmes Elementary School,00350138, 38, 25, 35, 34, 34, 48, 43, 30, 0, 0, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 6, 2, 3, 4, 7, 2, 3, 5, 6, 5, 9, 1, 10, 2, 8, 73 +NA,NA,"",2023-24,Boston - Hurley K-8 School,00350182, 25, 43, 46, 44, 45, 39, 34, 37, 15, 21, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Boston - Kennedy John F Elementary School,00350166, 27, 52, 57, 61, 55, 63, 40, 41, 0, 0, 0, 0, 0, 0, 0, 396 +NA,NA,"",2023-24,Boston - Kennedy Patrick J Elementary School,00350264, 20, 36, 38, 40, 34, 38, 27, 34, 0, 0, 0, 0, 0, 0, 0, 267 +NA,NA,"",2023-24,Boston - Kenny Elementary School,00350328, 28, 40, 42, 41, 42, 50, 47, 48, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Boston - Kilmer K-8 School,00350190, 42, 37, 44, 43, 34, 30, 37, 37, 30, 37, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Boston - King Elementary School,00350376, 84, 66, 58, 60, 60, 47, 52, 43, 0, 0, 0, 0, 0, 0, 0, 470 +NA,NA,"",2023-24,Boston - Lee Academy,00350001, 63, 36, 34, 38, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 +NA,NA,"",2023-24,Boston - Lee K-8 School,00350183, 56, 57, 59, 53, 54, 51, 57, 47, 51, 42, 0, 0, 0, 0, 0, 527 +NA,NA,"",2023-24,Boston - Lyndon K-8 School,00350262, 60, 61, 65, 61, 54, 67, 57, 45, 25, 33, 0, 0, 0, 0, 0, 528 +NA,NA,"",2023-24,Boston - Lyon High School,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 29, 15, 30, 0, 102 +NA,NA,"",2023-24,Boston - Lyon K-8 School,00350004, 0, 13, 15, 14, 15, 11, 13, 12, 16, 11, 0, 0, 0, 0, 0, 120 +NA,NA,"",2023-24,Boston - Madison Park Technical Vocational High School,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 273, 272, 192, 35," 1,058" +NA,NA,"",2023-24,Boston - Manning Elementary School,00350184, 14, 18, 23, 25, 23, 23, 25, 18, 0, 0, 0, 0, 0, 0, 0, 169 +NA,NA,"",2023-24,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 86, 78, 61, 0, 308 +NA,NA,"",2023-24,Boston - Mario Umana Academy,00350656, 36, 71, 68, 53, 59, 75, 58, 77, 67, 68, 0, 0, 0, 0, 0, 632 +NA,NA,"",2023-24,Boston - Mason Elementary School,00350304, 24, 21, 26, 32, 28, 31, 27, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Boston - Mather Elementary School,00350227, 46, 65, 66, 70, 74, 69, 64, 0, 0, 0, 0, 0, 0, 0, 0, 454 +NA,NA,"",2023-24,Boston - Mattahunt Elementary School,00350016, 88, 81, 75, 57, 62, 52, 54, 43, 0, 0, 0, 0, 0, 0, 0, 512 +NA,NA,"",2023-24,Boston - McKay K-8 School,00350080, 20, 54, 59, 72, 73, 87, 60, 89, 74, 82, 0, 0, 0, 0, 0, 670 +NA,NA,"",2023-24,Boston - Melvin H. King South End Academy,00350363, 0, 0, 0, 1, 1, 3, 3, 7, 12, 18, 16, 24, 20, 19, 10, 134 +NA,NA,"",2023-24,Boston - Mendell Elementary School,00350100, 28, 41, 40, 38, 39, 43, 42, 37, 0, 0, 0, 0, 0, 0, 0, 308 +NA,NA,"",2023-24,Boston - Mildred Avenue K-8 School,00350378, 48, 42, 40, 33, 38, 59, 62, 74, 91, 103, 0, 0, 0, 0, 0, 590 +NA,NA,"",2023-24,Boston - Mozart Elementary School,00350237, 26, 21, 23, 23, 22, 22, 18, 23, 0, 0, 0, 0, 0, 0, 0, 178 +NA,NA,"",2023-24,Boston - Murphy K-8 School,00350240, 52, 65, 64, 86, 90, 114, 120, 116, 61, 71, 0, 0, 0, 0, 0, 839 +NA,NA,"",2023-24,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 82, 74, 124, 137, 135, 116, 0, 668 +NA,NA,"",2023-24,Boston - O'Bryant School of Math & Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 171, 149, 319, 324, 296, 279, 0," 1,538" +NA,NA,"",2023-24,Boston - O'Donnell Elementary School,00350141, 19, 34, 39, 39, 37, 42, 33, 32, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Boston - Ohrenberger School,00350258, 0, 0, 0, 0, 71, 73, 83, 84, 67, 70, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Boston - Orchard Gardens K-8 School,00350257, 44, 55, 59, 64, 67, 63, 85, 74, 78, 83, 0, 0, 0, 0, 0, 672 +NA,NA,"",2023-24,Boston - Otis Elementary School,00350156, 39, 52, 56, 63, 57, 57, 40, 38, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Boston - Perkins Elementary School,00350231, 5, 26, 24, 19, 24, 21, 13, 17, 0, 0, 0, 0, 0, 0, 0, 149 +NA,NA,"",2023-24,Boston - Perry Elementary School,00350255, 29, 25, 29, 25, 24, 22, 15, 12, 0, 0, 0, 0, 0, 0, 0, 181 +NA,NA,"",2023-24,Boston - Philbrick Elementary School,00350172, 14, 21, 21, 16, 14, 15, 16, 15, 0, 0, 0, 0, 0, 0, 0, 132 +NA,NA,"",2023-24,Boston - Quincy Elementary School,00350286, 83, 87, 113, 116, 106, 113, 115, 0, 0, 0, 0, 0, 0, 0, 0, 733 +NA,NA,"",2023-24,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 117, 84, 79, 58, 63, 66, 61, 4, 532 +NA,NA,"",2023-24,Boston - Roosevelt K-8 School,00350116, 35, 40, 38, 32, 22, 33, 40, 29, 38, 24, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Boston - Russell Elementary School,00350366, 54, 61, 54, 48, 43, 43, 43, 0, 0, 0, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Boston - Shaw Elementary School,00350014, 44, 35, 32, 20, 29, 21, 20, 0, 0, 0, 0, 0, 0, 0, 0, 201 +NA,NA,"",2023-24,Boston - Snowden International High School,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 120, 108, 107, 0, 445 +NA,NA,"",2023-24,Boston - Sumner Elementary School,00350052, 60, 82, 74, 81, 79, 77, 71, 56, 0, 0, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Boston - Taylor Elementary School,00350054, 33, 38, 50, 38, 49, 40, 58, 37, 0, 0, 0, 0, 0, 0, 0, 343 +NA,NA,"",2023-24,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 39, 87, 110, 174, 166, 151, 143, 0, 870 +NA,NA,"",2023-24,Boston - Tobin K-8 School,00350229, 22, 26, 41, 37, 32, 35, 45, 43, 46, 48, 0, 0, 0, 0, 0, 375 +NA,NA,"",2023-24,Boston - Trotter Elementary School,00350370, 46, 35, 34, 36, 36, 39, 40, 34, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Boston - Tynan Elementary School,00350181, 24, 32, 24, 28, 35, 24, 22, 16, 0, 0, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,Boston - UP Academy Holland,00350167, 53, 67, 79, 72, 97, 102, 96, 0, 0, 0, 0, 0, 0, 0, 0, 566 +NA,NA,"",2023-24,Boston - Warren-Prescott K-8 School,00350346, 50, 68, 68, 60, 64, 44, 55, 46, 20, 24, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Boston - West Zone Early Learning Center,00350006, 50, 33, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113 +NA,NA,"",2023-24,Boston - Winship Elementary School,00350374, 45, 43, 43, 43, 46, 45, 44, 36, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Boston - Winthrop Elementary School,00350180, 22, 44, 30, 42, 32, 22, 27, 22, 0, 0, 0, 0, 0, 0, 0, 241 +NA,NA,"",2023-24,Boston - Young Achievers K-8 School,00350380, 44, 50, 51, 59, 39, 55, 48, 50, 35, 35, 0, 0, 0, 0, 0, 466 +NA,NA,"",2023-24,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 102, 104, 88, 83, 90, 67, 89, 65, 0, 688 +NA,NA,"",2023-24,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 0, 233, 0, 293 +NA,NA,"",2023-24,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 45, 54, 55, 83, 78, 71, 60, 13, 459 +NA,NA,"",2023-24,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 87, 107, 104, 118, 92, 94, 91, 2, 695 +NA,NA,"",2023-24,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 115, 123, 134, 134, 146, 116, 99, 70, 0, 0, 0, 0, 0, 0, 0, 937 +NA,NA,"",2023-24,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 81, 77, 92, 10, 335 +NA,NA,"",2023-24,Bourne - Bourne Intermediate School,00360030, 0, 0, 0, 0, 109, 129, 121, 0, 0, 0, 0, 0, 0, 0, 0, 359 +NA,NA,"",2023-24,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 0, 153, 128, 159, 0, 0, 0, 0, 0, 440 +NA,NA,"",2023-24,Bourne - Bournedale Elementary School,00360005, 58, 128, 122, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 429 +NA,NA,"",2023-24,Boxford - Harry Lee Cole,00380005, 42, 114, 94, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 109, 108, 89, 97, 0, 0, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,Braintree - Archie T Morrison,00400033, 0, 22, 77, 70, 74, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 +NA,NA,"",2023-24,Braintree - Braintree High,00400505, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 403, 436, 374, 0," 1,677" +NA,NA,"",2023-24,Braintree - Donald Ross,00400050, 0, 21, 41, 36, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179 +NA,NA,"",2023-24,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 266, 242, 248, 243, 0, 0, 0, 0, 0, 999 +NA,NA,"",2023-24,Braintree - Highlands,00400015, 0, 42, 70, 75, 75, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350 +NA,NA,"",2023-24,Braintree - Hollis,00400005, 0, 37, 71, 63, 79, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Braintree - Liberty,00400025, 0, 9, 70, 87, 76, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,Braintree - Mary E Flaherty School,00400020, 0, 21, 52, 86, 54, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281 +NA,NA,"",2023-24,Braintree - Monatiquot Kindergarten Center,00400009, 0, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 +NA,NA,"",2023-24,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 164, 146, 158, 170, 0, 0, 0, 0, 0, 638 +NA,NA,"",2023-24,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 61, 70, 74, 0, 0, 0, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,Brewster - Stony Brook Elementary,00410005, 36, 59, 63, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 33, 37, 40, 36, 40, 39, 36, 36, 21, 16, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 275, 251, 261, 0, 0, 0, 0, 0, 787 +NA,NA,"",2023-24,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316, 365, 403, 310, 14," 1,408" +NA,NA,"",2023-24,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 178, 159, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 +NA,NA,"",2023-24,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 158, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Bridgewater-Raynham - Mitchell Elementary School,06250002, 144, 268, 249, 284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 945 +NA,NA,"",2023-24,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 173, 181, 193, 199, 0, 0, 0, 0, 0, 746 +NA,NA,"",2023-24,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 2, 1, 4, 0, 11 +NA,NA,"",2023-24,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 281, 271, 280, 0, 0, 0, 0, 0, 0, 0, 0, 832 +NA,NA,"",2023-24,Brimfield - Brimfield Elementary,00430005, 25, 37, 34, 35, 28, 45, 35, 45, 0, 0, 0, 0, 0, 0, 0, 284 +NA,NA,"",2023-24,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 165, 159, 102, 0, 592 +NA,NA,"",2023-24,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 349, 315, 310, 0," 1,330" +NA,NA,"",2023-24,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 175, 185, 157, 0, 0, 0, 0, 0, 517 +NA,NA,"",2023-24,Brockton - Barrett Russell Early Childhood Center,00440008, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265 +NA,NA,"",2023-24,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,112", 883, 857, 670, 64," 3,586" +NA,NA,"",2023-24,Brockton - Brockton Virtual Learning Academy,00440705, 0, 0, 0, 5, 6, 6, 5, 9, 16, 20, 28, 28, 21, 15, 0, 159 +NA,NA,"",2023-24,Brockton - Brookfield,00440010, 39, 73, 67, 78, 69, 63, 62, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Brockton - Downey,00440110, 32, 105, 82, 124, 103, 76, 77, 0, 0, 0, 0, 0, 0, 0, 0, 599 +NA,NA,"",2023-24,Brockton - Dr W Arnone Community School,00440001, 49, 114, 108, 128, 128, 114, 122, 0, 0, 0, 0, 0, 0, 0, 0, 763 +NA,NA,"",2023-24,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 111, 173, 148, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Brockton - Edgar B Davis,00440023, 0, 107, 99, 121, 111, 83, 84, 124, 116, 99, 0, 0, 0, 0, 0, 944 +NA,NA,"",2023-24,Brockton - Edison Day Academy,00440535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 56, 35, 20, 0, 163 +NA,NA,"",2023-24,Brockton - Edison Evening Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 69, 42, 56, 0, 198 +NA,NA,"",2023-24,Brockton - Gilmore Elementary School,00440055, 36, 61, 65, 71, 77, 59, 63, 0, 0, 0, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Brockton - Hancock,00440045, 27, 110, 114, 115, 131, 83, 86, 0, 0, 0, 0, 0, 0, 0, 0, 666 +NA,NA,"",2023-24,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 4, 8, 10, 0, 36 +NA,NA,"",2023-24,Brockton - John F Kennedy,00440017, 0, 81, 104, 97, 87, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 503 +NA,NA,"",2023-24,Brockton - Louis F Angelo Elementary,00440065, 0, 116, 113, 122, 130, 175, 179, 0, 0, 0, 0, 0, 0, 0, 0, 835 +NA,NA,"",2023-24,Brockton - Manthala George Jr. School,00440003, 48, 148, 150, 148, 103, 89, 92, 0, 0, 0, 0, 0, 0, 0, 0, 778 +NA,NA,"",2023-24,Brockton - Mary E. Baker School,00440002, 0, 117, 124, 129, 122, 110, 122, 0, 0, 0, 0, 0, 0, 0, 0, 724 +NA,NA,"",2023-24,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 145, 141, 120, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Brockton - Oscar F Raymond,00440078, 0, 146, 152, 138, 142, 110, 123, 0, 0, 0, 0, 0, 0, 0, 0, 811 +NA,NA,"",2023-24,Brockton - Plouffe Middle School,00440422, 0, 0, 0, 0, 0, 0, 0, 202, 193, 234, 0, 0, 0, 0, 0, 629 +NA,NA,"",2023-24,Brockton - PROMISE College and Career Academy,00440525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 32, 0, 0, 0, 97 +NA,NA,"",2023-24,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 141, 159, 168, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 150, 159, 183, 0, 0, 0, 0, 0, 492 +NA,NA,"",2023-24,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 193, 195, 191, 195, 191, 188, 193, 173, 178, 143, 141, 115, 111, 1," 2,208" +NA,NA,"",2023-24,Brookfield - Brookfield Elementary,00450005, 28, 37, 40, 41, 41, 36, 42, 37, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Beacon,00460001, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46 +NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Clark Road,00460003, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33 +NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Putterham,00460002, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42 +NA,NA,"",2023-24,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570, 521, 551, 513, 18," 2,173" +NA,NA,"",2023-24,Brookline - Edith C Baker,00460005, 0, 66, 72, 84, 82, 77, 74, 61, 72, 66, 0, 0, 0, 0, 0, 654 +NA,NA,"",2023-24,Brookline - Florida Ruffin Ridley School,00460015, 32, 84, 102, 103, 94, 93, 85, 86, 80, 93, 0, 0, 0, 0, 0, 852 +NA,NA,"",2023-24,Brookline - Heath,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434 +NA,NA,"",2023-24,Brookline - John D Runkle,00460045, 16, 46, 45, 52, 40, 61, 55, 56, 51, 61, 0, 0, 0, 0, 0, 483 +NA,NA,"",2023-24,Brookline - Lawrence,00460030, 0, 68, 82, 70, 77, 69, 60, 75, 51, 63, 0, 0, 0, 0, 0, 615 +NA,NA,"",2023-24,Brookline - Michael Driscoll,00460020, 32, 46, 57, 41, 66, 53, 59, 50, 54, 52, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Brookline - Pierce,00460040, 0, 68, 62, 78, 78, 74, 78, 83, 63, 84, 0, 0, 0, 0, 0, 668 +NA,NA,"",2023-24,Brookline - The Lynch Center,00460060, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55 +NA,NA,"",2023-24,Brookline - William H Lincoln,00460035, 0, 52, 60, 50, 57, 55, 41, 51, 62, 46, 0, 0, 0, 0, 0, 474 +NA,NA,"",2023-24,Burlington - Burlington High,00480505, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 227, 231, 218, 0," 1,005" +NA,NA,"",2023-24,Burlington - Fox Hill,00480007, 0, 81, 64, 85, 76, 72, 77, 0, 0, 0, 0, 0, 0, 0, 0, 455 +NA,NA,"",2023-24,Burlington - Francis Wyman Elementary,00480035, 0, 71, 92, 83, 89, 84, 67, 0, 0, 0, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 282, 302, 278, 0, 0, 0, 0, 0, 862 +NA,NA,"",2023-24,Burlington - Memorial,00480015, 0, 61, 52, 76, 58, 71, 65, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Burlington - Pine Glen Elementary,00480020, 0, 60, 56, 49, 50, 52, 67, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Cambridge - Amigos School,00490006, 30, 50, 46, 47, 43, 37, 43, 43, 38, 41, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 533, 495, 491, 438, 22," 1,979" +NA,NA,"",2023-24,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 116, 96, 92, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Cambridge - Cambridgeport,00490007, 42, 45, 34, 40, 47, 37, 40, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Cambridge - Fletcher/Maynard Academy,00490090, 42, 33, 39, 40, 32, 33, 32, 0, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Cambridge - Graham and Parks,00490080, 36, 55, 62, 61, 68, 55, 59, 0, 0, 0, 0, 0, 0, 0, 0, 396 +NA,NA,"",2023-24,Cambridge - Haggerty,00490020, 18, 36, 37, 38, 40, 27, 33, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Cambridge - John M Tobin,00490065, 102, 47, 39, 35, 33, 36, 34, 0, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,Cambridge - Kennedy-Longfellow,00490040, 23, 33, 26, 30, 31, 42, 35, 0, 0, 0, 0, 0, 0, 0, 0, 220 +NA,NA,"",2023-24,Cambridge - King Open,00490035, 37, 69, 67, 60, 56, 52, 46, 0, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Cambridge - Maria L. Baldwin,00490005, 28, 73, 56, 54, 50, 44, 47, 0, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Cambridge - Martin Luther King Jr.,00490030, 27, 66, 53, 49, 45, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Cambridge - Morse,00490045, 56, 45, 40, 45, 45, 36, 35, 0, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Cambridge - Peabody,00490050, 45, 48, 49, 46, 43, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 93, 93, 84, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 96, 98, 95, 0, 0, 0, 0, 0, 289 +NA,NA,"",2023-24,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 92, 93, 73, 0, 0, 0, 0, 0, 258 +NA,NA,"",2023-24,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 263, 222, 212, 6, 931 +NA,NA,"",2023-24,Canton - Dean S Luce,00500020, 0, 78, 83, 77, 87, 72, 80, 0, 0, 0, 0, 0, 0, 0, 0, 477 +NA,NA,"",2023-24,Canton - John F Kennedy,00500017, 0, 69, 73, 92, 66, 85, 72, 0, 0, 0, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Canton - Lt Peter M Hansen,00500012, 0, 78, 87, 89, 104, 91, 87, 0, 0, 0, 0, 0, 0, 0, 0, 536 +NA,NA,"",2023-24,Canton - Rodman Early Childhood Center,00500010, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134 +NA,NA,"",2023-24,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 241, 241, 260, 0, 0, 0, 0, 0, 742 +NA,NA,"",2023-24,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 83, 84, 84, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 169, 162, 149, 0, 663 +NA,NA,"",2023-24,Carlisle - Carlisle School,00510025, 15, 69, 61, 80, 61, 59, 70, 63, 72, 58, 0, 0, 0, 0, 0, 608 +NA,NA,"",2023-24,Carver - Carver Elementary School,00520015, 63, 96, 122, 143, 103, 130, 118, 0, 0, 0, 0, 0, 0, 0, 0, 775 +NA,NA,"",2023-24,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 92, 141, 116, 92, 78, 94, 98, 2, 713 +NA,NA,"",2023-24,Central Berkshire - Becket Washington School,06350005, 11, 8, 24, 13, 11, 12, 12, 0, 0, 0, 0, 0, 0, 0, 0, 91 +NA,NA,"",2023-24,Central Berkshire - Craneville,06350025, 0, 76, 74, 75, 66, 91, 71, 0, 0, 0, 0, 0, 0, 0, 0, 453 +NA,NA,"",2023-24,Central Berkshire - Kittredge,06350035, 38, 28, 20, 22, 22, 26, 21, 0, 0, 0, 0, 0, 0, 0, 0, 177 +NA,NA,"",2023-24,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 126, 124, 108, 0, 0, 0, 0, 0, 358 +NA,NA,"",2023-24,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 116, 121, 125, 0, 482 +NA,NA,"",2023-24,Chelmsford - Byam School,00560030, 0, 115, 103, 110, 103, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 530 +NA,NA,"",2023-24,Chelmsford - Center Elementary School,00560005, 0, 95, 87, 98, 101, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466 +NA,NA,"",2023-24,Chelmsford - Charles D Harrington,00560025, 0, 80, 91, 90, 112, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 +NA,NA,"",2023-24,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 361, 345, 347, 0," 1,413" +NA,NA,"",2023-24,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 393, 404, 0, 0, 0, 0, 0, 0, 0, 797 +NA,NA,"",2023-24,Chelmsford - Community Education Center,00560001, 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 +NA,NA,"",2023-24,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 0, 0, 398, 384, 0, 0, 0, 0, 0, 782 +NA,NA,"",2023-24,Chelmsford - South Row,00560015, 0, 85, 86, 93, 108, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 +NA,NA,"",2023-24,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488, 439, 404, 344, 5," 1,680" +NA,NA,"",2023-24,Chelsea - Chelsea Opportunity Academy,00570515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 36, 75, 0, 125 +NA,NA,"",2023-24,Chelsea - Chelsea Virtual Learning Academy,00570705, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 12, 8, 10, 17, 0, 60 +NA,NA,"",2023-24,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 164, 165, 179, 170, 0, 0, 0, 0, 0, 678 +NA,NA,"",2023-24,Chelsea - Edgar F. Hooks Elementary,00570030, 0, 0, 87, 113, 111, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 +NA,NA,"",2023-24,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 108, 117, 108, 110, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 86, 137, 139, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 497 +NA,NA,"",2023-24,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 108, 121, 118, 83, 28, 28, 0, 0, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 110, 118, 127, 130, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Chelsea - Shurtleff Early Childhood,00570003, 273, 445, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 806 +NA,NA,"",2023-24,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 90, 121, 113, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 435 +NA,NA,"",2023-24,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 22, 14, 18, 23, 12, 17, 17, 16, 0, 0, 0, 0, 0, 0, 0, 139 +NA,NA,"",2023-24,Chicopee - Barry,00610003, 0, 55, 48, 54, 68, 76, 61, 0, 0, 0, 0, 0, 0, 0, 0, 362 +NA,NA,"",2023-24,Chicopee - Belcher,00610010, 51, 60, 59, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 272, 265, 280, 0, 0, 0, 0, 0, 817 +NA,NA,"",2023-24,Chicopee - Bowe,00610015, 0, 87, 55, 65, 76, 64, 71, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Chicopee - Bowie,00610020, 19, 40, 31, 44, 45, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 10, 23, 11, 10, 0, 69 +NA,NA,"",2023-24,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 325, 298, 283, 0," 1,212" +NA,NA,"",2023-24,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229, 258, 229, 216, 0, 932 +NA,NA,"",2023-24,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 216, 244, 218, 0, 0, 0, 0, 0, 678 +NA,NA,"",2023-24,Chicopee - Fairview Elementary,00610050, 26, 54, 61, 55, 60, 60, 49, 0, 0, 0, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Chicopee - Gen John J Stefanik,00610090, 0, 42, 58, 66, 73, 75, 77, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Chicopee - Lambert-Lavoie,00610040, 0, 36, 28, 41, 37, 44, 40, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Chicopee - Litwin,00610022, 0, 18, 17, 13, 93, 120, 83, 0, 0, 0, 0, 0, 0, 0, 0, 344 +NA,NA,"",2023-24,Chicopee - Streiber Memorial School,00610065, 0, 49, 44, 31, 37, 40, 32, 0, 0, 0, 0, 0, 0, 0, 0, 233 +NA,NA,"",2023-24,Chicopee - Szetela Early Childhood Center,00610001, 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 +NA,NA,"",2023-24,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0, 0, 0, 0, 0, 0, 0, 84, 97, 107, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 61, 48, 34, 0, 199 +NA,NA,"",2023-24,Clarksburg - Clarksburg Elementary,00630010, 24, 16, 19, 22, 20, 20, 22, 28, 17, 20, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,Clinton - Clinton Elementary,00640050, 112, 143, 132, 153, 155, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 837 +NA,NA,"",2023-24,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 0, 167, 133, 131, 140, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Clinton - Clinton Senior High,00640505, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152, 147, 119, 139, 0, 581 +NA,NA,"",2023-24,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 21, 23, 21, 22, 22, 22, 19, 21, 21, 20, 24, 34, 35, 31, 0, 336 +NA,NA,"",2023-24,Cohasset - Cohasset High School,00650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 111, 100, 99, 0, 406 +NA,NA,"",2023-24,Cohasset - Cohasset Middle School,00650305, 0, 0, 0, 0, 0, 0, 0, 98, 106, 86, 0, 0, 0, 0, 0, 290 +NA,NA,"",2023-24,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 111, 105, 105, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Cohasset - Joseph Osgood,00650010, 36, 108, 118, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 100, 116, 122, 88, 97, 112, 116, 110, 108, 91, 72, 52, 27, 0," 1,211" +NA,NA,"",2023-24,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 25, 48, 45, 29, 30, 39, 45, 0, 261 +NA,NA,"",2023-24,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 121, 127, 124, 124, 106, 124, 126, 120, 115, 113, 0, 0, 0, 0, 0," 1,200" +NA,NA,"",2023-24,Concord - Alcott,00670005, 29, 56, 71, 68, 62, 72, 72, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 218, 207, 229, 0, 0, 0, 0, 0, 654 +NA,NA,"",2023-24,Concord - Thoreau,00670020, 21, 71, 55, 69, 72, 72, 76, 0, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Concord - Willard,00670030, 13, 69, 71, 68, 78, 77, 75, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274, 317, 310, 324, 5," 1,230" +NA,NA,"",2023-24,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 45, 51, 52, 51, 53, 56, 46, 42, 28, 20, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Conway - Conway Grammar,00680005, 17, 15, 13, 17, 19, 26, 17, 20, 0, 0, 0, 0, 0, 0, 0, 144 +NA,NA,"",2023-24,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 186, 181, 212, 11, 798 +NA,NA,"",2023-24,Danvers - Great Oak,00710015, 0, 41, 45, 53, 58, 50, 53, 0, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Danvers - Highlands,00710010, 0, 56, 60, 68, 73, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 230, 248, 263, 0, 0, 0, 0, 0, 741 +NA,NA,"",2023-24,Danvers - Ivan G Smith,00710032, 0, 57, 69, 56, 66, 57, 64, 0, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Danvers - Riverside,00710030, 55, 42, 42, 39, 44, 43, 51, 0, 0, 0, 0, 0, 0, 0, 0, 316 +NA,NA,"",2023-24,Danvers - Willis E Thorpe,00710045, 43, 66, 46, 29, 69, 46, 48, 0, 0, 0, 0, 0, 0, 0, 0, 347 +NA,NA,"",2023-24,Dartmouth - Andrew B. Cushman School,00720005, 85, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155 +NA,NA,"",2023-24,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 242, 238, 249, 3, 949 +NA,NA,"",2023-24,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 262, 268, 257, 0, 0, 0, 0, 0, 787 +NA,NA,"",2023-24,Dartmouth - George H Potter,00720030, 15, 61, 59, 72, 74, 65, 71, 0, 0, 0, 0, 0, 0, 0, 0, 417 +NA,NA,"",2023-24,Dartmouth - James M. Quinn School,00720040, 0, 102, 121, 126, 110, 144, 109, 0, 0, 0, 0, 0, 0, 0, 0, 712 +NA,NA,"",2023-24,Dartmouth - Joseph Demello,00720015, 0, 0, 57, 69, 64, 71, 70, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Dedham - Avery,00730010, 0, 0, 56, 69, 78, 61, 58, 0, 0, 0, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 185, 198, 167, 5, 731 +NA,NA,"",2023-24,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 186, 191, 166, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Dedham - Early Childhood Center,00730005, 104, 240, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344 +NA,NA,"",2023-24,Dedham - Greenlodge,00730025, 0, 0, 75, 59, 56, 62, 58, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Dedham - Oakdale,00730030, 0, 0, 51, 59, 49, 57, 40, 0, 0, 0, 0, 0, 0, 0, 0, 256 +NA,NA,"",2023-24,Dedham - Riverdale,00730045, 0, 0, 38, 46, 36, 29, 44, 0, 0, 0, 0, 0, 0, 0, 0, 193 +NA,NA,"",2023-24,Deerfield - Deerfield Elementary,00740015, 29, 31, 37, 39, 30, 55, 41, 51, 0, 0, 0, 0, 0, 0, 0, 313 +NA,NA,"",2023-24,Dennis-Yarmouth - Dennis-Yarmouth Intermediate School,06450050, 0, 0, 0, 0, 0, 252, 258, 0, 0, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Dennis-Yarmouth - Dennis-Yarmouth Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 201, 244, 0, 0, 0, 0, 0, 0, 445 +NA,NA,"",2023-24,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 164, 191, 186, 147, 0, 922 +NA,NA,"",2023-24,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 44, 80, 90, 77, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 +NA,NA,"",2023-24,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 46, 54, 56, 65, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 111, 119, 98, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Dighton-Rehoboth - Dighton Elementary,06500005, 25, 92, 82, 84, 104, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 463 +NA,NA,"",2023-24,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 91, 99, 93, 84, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 154, 168, 171, 4, 650 +NA,NA,"",2023-24,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 131, 111, 123, 113, 0, 0, 0, 0, 0, 478 +NA,NA,"",2023-24,Dighton-Rehoboth - Palmer River,06500010, 22, 110, 111, 114, 119, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 591 +NA,NA,"",2023-24,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 88, 73, 101, 91, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 71, 70, 93, 0, 303 +NA,NA,"",2023-24,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 83, 108, 98, 0, 0, 0, 0, 0, 289 +NA,NA,"",2023-24,Douglas - Douglas Primary School,00770005, 64, 74, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215 +NA,NA,"",2023-24,Dover - Chickering,00780005, 23, 61, 75, 89, 66, 96, 87, 0, 0, 0, 0, 0, 0, 0, 0, 497 +NA,NA,"",2023-24,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 179, 155, 174, 0, 648 +NA,NA,"",2023-24,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 138, 165, 154, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Dracut - Brookside Elementary,00790035, 32, 55, 93, 91, 72, 79, 78, 0, 0, 0, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 220, 208, 193, 6, 789 +NA,NA,"",2023-24,Dracut - George H. Englesby Elementary School,00790045, 0, 91, 74, 85, 97, 99, 91, 0, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Dracut - Greenmont Avenue,00790030, 0, 32, 37, 32, 45, 45, 39, 0, 0, 0, 0, 0, 0, 0, 0, 230 +NA,NA,"",2023-24,Dracut - Joseph A Campbell Elementary,00790020, 39, 78, 79, 94, 101, 95, 92, 0, 0, 0, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 317, 276, 316, 0, 0, 0, 0, 0, 909 +NA,NA,"",2023-24,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 35, 45, 44, 38, 48, 42, 36, 0, 0, 0, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,Dudley-Charlton Reg - Charlton Elementary,06580020, 59, 145, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 152, 150, 150, 151, 0, 0, 0, 0, 0, 603 +NA,NA,"",2023-24,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 111, 112, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 128, 145, 133, 146, 0, 0, 0, 0, 0, 552 +NA,NA,"",2023-24,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 147, 150, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Dudley-Charlton Reg - Mason Road School,06580010, 38, 116, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270, 253, 206, 204, 4, 937 +NA,NA,"",2023-24,Duxbury - Alden School,00820004, 0, 0, 0, 0, 226, 196, 199, 0, 0, 0, 0, 0, 0, 0, 0, 621 +NA,NA,"",2023-24,Duxbury - Chandler Elementary,00820006, 55, 189, 213, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 649 +NA,NA,"",2023-24,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 220, 224, 233, 2, 862 +NA,NA,"",2023-24,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 203, 202, 218, 0, 0, 0, 0, 0, 623 +NA,NA,"",2023-24,East Bridgewater - Central,00830005, 109, 129, 126, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515 +NA,NA,"",2023-24,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 163, 168, 134, 147, 122, 142, 1, 877 +NA,NA,"",2023-24,East Bridgewater - Gordon W. Mitchell School,00830010, 0, 0, 0, 0, 151, 151, 149, 165, 0, 0, 0, 0, 0, 0, 0, 616 +NA,NA,"",2023-24,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 210, 198, 206, 0, 0, 0, 0, 0, 614 +NA,NA,"",2023-24,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 198, 181, 206, 5, 771 +NA,NA,"",2023-24,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 96, 93, 98, 0, 0, 0, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,East Longmeadow - Meadow Brook,00870013, 57, 157, 165, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 562 +NA,NA,"",2023-24,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 87, 101, 85, 0, 0, 0, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Eastham - Eastham Elementary,00850005, 11, 19, 29, 37, 24, 25, 31, 0, 0, 0, 0, 0, 0, 0, 0, 176 +NA,NA,"",2023-24,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 86, 93, 91, 1, 373 +NA,NA,"",2023-24,Easthampton - Mountain View School,00860415, 48, 83, 102, 101, 120, 121, 116, 111, 113, 109, 0, 0, 0, 0, 0," 1,024" +NA,NA,"",2023-24,Easton - Blanche A. Ames Elementary School,00880015, 111, 206, 211, 253, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 781 +NA,NA,"",2023-24,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 281, 262, 265, 0, 0, 0, 0, 0, 808 +NA,NA,"",2023-24,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 243, 289, 273, 10," 1,076" +NA,NA,"",2023-24,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 229, 252, 255, 0, 0, 0, 0, 0, 0, 0, 0, 736 +NA,NA,"",2023-24,Edgartown - Edgartown Elementary,00890005, 8, 43, 37, 32, 49, 48, 39, 40, 48, 42, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 93, 84, 95, 0, 375 +NA,NA,"",2023-24,Erving - Erving Elementary,00910030, 18, 13, 13, 18, 17, 16, 15, 13, 0, 0, 0, 0, 0, 0, 0, 123 +NA,NA,"",2023-24,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476, 450, 429, 390, 0," 1,745" +NA,NA,"",2023-24,Everett - Adams School,00930003, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 +NA,NA,"",2023-24,Everett - Devens School,00930030, 0, 5, 3, 4, 1, 2, 2, 5, 3, 7, 2, 7, 3, 5, 0, 49 +NA,NA,"",2023-24,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566, 587, 633, 499, 4," 2,289" +NA,NA,"",2023-24,Everett - George Keverian School,00930028, 0, 79, 70, 89, 69, 97, 81, 123, 137, 128, 0, 0, 0, 0, 0, 873 +NA,NA,"",2023-24,Everett - Lafayette School,00930038, 0, 85, 100, 104, 125, 106, 100, 127, 113, 140, 0, 0, 0, 0, 0," 1,000" +NA,NA,"",2023-24,Everett - Madeline English School,00930018, 0, 96, 76, 82, 68, 88, 77, 107, 98, 88, 0, 0, 0, 0, 0, 780 +NA,NA,"",2023-24,Everett - Parlin School,00930058, 0, 92, 106, 122, 126, 128, 121, 102, 101, 114, 0, 0, 0, 0, 0," 1,012" +NA,NA,"",2023-24,Everett - Sumner G. Whittier School,00930010, 0, 62, 62, 64, 69, 71, 79, 75, 69, 65, 0, 0, 0, 0, 0, 616 +NA,NA,"",2023-24,Everett - Webster Extension,00930001, 222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222 +NA,NA,"",2023-24,Everett - Webster School,00930015, 0, 48, 59, 65, 60, 58, 51, 0, 0, 0, 0, 0, 0, 0, 0, 341 +NA,NA,"",2023-24,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 175, 175, 173, 173, 175, 170, 170, 151, 1," 1,363" +NA,NA,"",2023-24,Fairhaven - East Fairhaven,00940010, 22, 40, 48, 48, 49, 43, 56, 0, 0, 0, 0, 0, 0, 0, 0, 306 +NA,NA,"",2023-24,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 153, 142, 153, 2, 591 +NA,NA,"",2023-24,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 139, 142, 147, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Fairhaven - Leroy Wood,00940030, 19, 66, 60, 61, 71, 82, 75, 0, 0, 0, 0, 0, 0, 0, 0, 434 +NA,NA,"",2023-24,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 590, 709, 602, 500, 34," 2,435" +NA,NA,"",2023-24,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 97, 112, 131, 115, 120, 122, 0, 0, 0, 0, 0, 0, 0, 0, 697 +NA,NA,"",2023-24,Fall River - Early Learning Center,00950001, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95 +NA,NA,"",2023-24,Fall River - FRPS Early Learning Center,00950002, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 +NA,NA,"",2023-24,Fall River - Henry Lord Community School,00950017, 17, 102, 94, 96, 86, 90, 89, 74, 81, 68, 0, 0, 0, 0, 0, 797 +NA,NA,"",2023-24,Fall River - James Tansey,00950140, 0, 55, 55, 54, 41, 56, 45, 0, 0, 0, 0, 0, 0, 0, 0, 306 +NA,NA,"",2023-24,Fall River - John J Doran,00950045, 37, 44, 51, 56, 65, 53, 57, 52, 48, 48, 0, 0, 0, 0, 0, 511 +NA,NA,"",2023-24,Fall River - Letourneau Elementary School,00950013, 0, 91, 113, 108, 103, 100, 103, 0, 0, 0, 0, 0, 0, 0, 0, 618 +NA,NA,"",2023-24,Fall River - Mary Fonseca Elementary School,00950011, 58, 92, 106, 102, 91, 88, 95, 0, 0, 0, 0, 0, 0, 0, 0, 632 +NA,NA,"",2023-24,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 211, 239, 244, 0, 0, 0, 0, 0, 694 +NA,NA,"",2023-24,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 230, 247, 237, 0, 0, 0, 0, 0, 714 +NA,NA,"",2023-24,Fall River - North End Elementary,00950005, 48, 77, 115, 107, 93, 112, 102, 0, 0, 0, 0, 0, 0, 0, 0, 654 +NA,NA,"",2023-24,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 4, 17, 32, 33, 41, 57, 0, 184 +NA,NA,"",2023-24,Fall River - Samuel Watson,00950145, 0, 47, 50, 50, 29, 39, 50, 0, 0, 0, 0, 0, 0, 0, 0, 265 +NA,NA,"",2023-24,Fall River - Spencer Borden,00950130, 23, 96, 96, 91, 91, 97, 84, 0, 0, 0, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Fall River - Stone PK-12 School,00950340, 0, 0, 1, 2, 2, 7, 3, 3, 3, 13, 7, 8, 5, 8, 0, 62 +NA,NA,"",2023-24,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 190, 184, 183, 0, 0, 0, 0, 0, 557 +NA,NA,"",2023-24,Fall River - William S Greene,00950065, 29, 105, 118, 131, 115, 131, 120, 0, 0, 0, 0, 0, 0, 0, 0, 749 +NA,NA,"",2023-24,Falmouth - East Falmouth Elementary,00960005, 118, 39, 33, 47, 28, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298 +NA,NA,"",2023-24,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 165, 189, 172, 5, 727 +NA,NA,"",2023-24,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 227, 232, 0, 0, 0, 0, 0, 459 +NA,NA,"",2023-24,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 232, 248, 0, 0, 0, 0, 0, 0, 0, 480 +NA,NA,"",2023-24,Falmouth - Mullen-Hall,00960020, 0, 63, 75, 72, 80, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Falmouth - North Falmouth Elementary,00960030, 0, 40, 50, 88, 54, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Falmouth - Teaticket,00960015, 0, 60, 53, 50, 43, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 +NA,NA,"",2023-24,Farmington River Reg - Farmington River Elementary,06620020, 20, 13, 15, 18, 19, 17, 11, 16, 0, 0, 0, 0, 0, 0, 0, 129 +NA,NA,"",2023-24,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 0, 178, 203, 184, 0, 0, 0, 0, 0, 565 +NA,NA,"",2023-24,Fitchburg - Crocker Elementary,00970016, 0, 0, 121, 130, 117, 122, 130, 0, 0, 0, 0, 0, 0, 0, 0, 620 +NA,NA,"",2023-24,Fitchburg - Fitchburg High,00970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 313, 283, 265, 0," 1,180" +NA,NA,"",2023-24,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 27, 59, 105, 19, 226 +NA,NA,"",2023-24,Fitchburg - McKay Elementary School,00970340, 0, 0, 167, 122, 139, 159, 175, 0, 0, 0, 0, 0, 0, 0, 0, 762 +NA,NA,"",2023-24,Fitchburg - Memorial Middle School,00970048, 0, 0, 0, 0, 0, 0, 0, 199, 187, 201, 0, 0, 0, 0, 0, 587 +NA,NA,"",2023-24,Fitchburg - Reingold Elementary,00970043, 0, 0, 145, 129, 124, 125, 138, 0, 0, 0, 0, 0, 0, 0, 0, 661 +NA,NA,"",2023-24,Fitchburg - South Street Early Learning Center,00970060, 173, 350, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 523 +NA,NA,"",2023-24,Florida - Abbott Memorial,00980005, 13, 6, 6, 7, 14, 7, 9, 4, 10, 9, 0, 0, 0, 0, 0, 85 +NA,NA,"",2023-24,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 38, 39, 36, 39, 35, 27, 0, 214 +NA,NA,"",2023-24,Foxborough - Charles Taylor Elementary,00990050, 0, 66, 50, 47, 60, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280 +NA,NA,"",2023-24,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 192, 198, 190, 2, 757 +NA,NA,"",2023-24,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 185, 187, 198, 175, 0, 0, 0, 0, 0, 745 +NA,NA,"",2023-24,Foxborough - Mabelle M Burrell,00990015, 73, 45, 59, 56, 54, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Foxborough - Vincent M Igo Elementary,00990020, 0, 75, 70, 72, 72, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372 +NA,NA,"",2023-24,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 129, 143, 138, 147, 142, 128, 113, 119, 108, 90, 92, 85, 86, 0," 1,520" +NA,NA,"",2023-24,Framingham - Barbieri Elementary,01000035, 0, 97, 109, 120, 113, 110, 109, 0, 0, 0, 0, 0, 0, 0, 0, 658 +NA,NA,"",2023-24,Framingham - Brophy,01000006, 0, 78, 84, 94, 81, 77, 79, 0, 0, 0, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 202, 175, 187, 0, 0, 0, 0, 0, 564 +NA,NA,"",2023-24,Framingham - Charlotte A Dunning,01000007, 0, 63, 74, 74, 61, 69, 95, 0, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 765, 612, 597, 570, 1," 2,545" +NA,NA,"",2023-24,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 164, 206, 194, 0, 0, 0, 0, 0, 564 +NA,NA,"",2023-24,Framingham - Harmony Grove Elementary,01000055, 0, 76, 83, 75, 76, 69, 94, 0, 0, 0, 0, 0, 0, 0, 0, 473 +NA,NA,"",2023-24,Framingham - Hemenway,01000015, 0, 75, 90, 87, 96, 93, 101, 0, 0, 0, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Framingham - Juniper Hill School,01000001, 277, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Framingham - King Elementary School,01000005, 0, 62, 60, 71, 77, 65, 74, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Framingham - Mary E Stapleton Elementary,01000045, 0, 53, 61, 56, 55, 63, 66, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Framingham - Miriam F McCarthy School,01000050, 0, 81, 79, 86, 77, 78, 103, 0, 0, 0, 0, 0, 0, 0, 0, 504 +NA,NA,"",2023-24,Framingham - Potter Road,01000039, 0, 88, 84, 91, 89, 91, 92, 0, 0, 0, 0, 0, 0, 0, 0, 535 +NA,NA,"",2023-24,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 266, 249, 265, 0, 0, 0, 0, 0, 780 +NA,NA,"",2023-24,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 63, 74, 63, 60, 60, 50, 0, 370 +NA,NA,"",2023-24,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 89, 117, 116, 0, 0, 0, 0, 0, 322 +NA,NA,"",2023-24,Franklin - Franklin Early Childhood Development Center,01010003, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152 +NA,NA,"",2023-24,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 384, 398, 410, 11," 1,569" +NA,NA,"",2023-24,Franklin - Helen Keller Elementary,01010012, 0, 90, 80, 93, 85, 99, 111, 0, 0, 0, 0, 0, 0, 0, 0, 558 +NA,NA,"",2023-24,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 136, 140, 111, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Franklin - J F Kennedy Memorial,01010013, 0, 46, 59, 64, 64, 40, 58, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Franklin - Jefferson Elementary,01010010, 0, 48, 55, 45, 65, 50, 70, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Franklin - Oak Street Elementary,01010030, 0, 74, 61, 61, 64, 58, 68, 0, 0, 0, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Franklin - Parmenter,01010032, 0, 49, 47, 44, 42, 54, 55, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 112, 125, 114, 0, 0, 0, 0, 0, 351 +NA,NA,"",2023-24,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 155, 160, 145, 0, 621 +NA,NA,"",2023-24,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 174, 170, 182, 2, 683 +NA,NA,"",2023-24,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 102, 114, 113, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469 +NA,NA,"",2023-24,Freetown-Lakeville - Freetown Elementary School,06650001, 45, 70, 83, 92, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 +NA,NA,"",2023-24,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 236, 236, 233, 0, 0, 0, 0, 0, 705 +NA,NA,"",2023-24,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 237, 227, 0, 0, 0, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 119, 113, 73, 98, 98, 97, 7, 605 +NA,NA,"",2023-24,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 23, 36, 55, 0, 127 +NA,NA,"",2023-24,Gardner - Gardner Elementary School,01030001, 93, 196, 205, 198, 174, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,053" +NA,NA,"",2023-24,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 168, 161, 177, 132, 3, 809 +NA,NA,"",2023-24,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 156, 183, 144, 0, 0, 0, 0, 0, 0, 483 +NA,NA,"",2023-24,Gateway - Chester Elementary,06720059, 31, 15, 17, 12, 9, 16, 17, 0, 0, 0, 0, 0, 0, 0, 0, 117 +NA,NA,"",2023-24,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 37, 31, 43, 2, 162 +NA,NA,"",2023-24,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 70, 62, 64, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Gateway - Littleville Elementary School,06720143, 29, 39, 47, 41, 39, 37, 45, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 79, 63, 72, 0, 289 +NA,NA,"",2023-24,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 91, 98, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Georgetown - Penn Brook,01050010, 0, 88, 103, 93, 93, 103, 107, 109, 0, 0, 0, 0, 0, 0, 0, 696 +NA,NA,"",2023-24,Georgetown - Perley Elementary,01050005, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 +NA,NA,"",2023-24,Gill-Montague - Gill Elementary,06740005, 0, 14, 13, 18, 19, 12, 18, 20, 0, 0, 0, 0, 0, 0, 0, 114 +NA,NA,"",2023-24,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 65, 83, 89, 0, 0, 0, 0, 0, 237 +NA,NA,"",2023-24,Gill-Montague - Hillcrest Elementary School,06740015, 44, 43, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137 +NA,NA,"",2023-24,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 68, 41, 45, 58, 0, 0, 0, 0, 0, 0, 0, 0, 212 +NA,NA,"",2023-24,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 45, 48, 50, 55, 4, 202 +NA,NA,"",2023-24,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 87, 88, 79, 89, 44, 50, 39, 26, 0, 502 +NA,NA,"",2023-24,Gloucester - Beeman Memorial,01070010, 0, 46, 41, 49, 51, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Gloucester - East Veterans Elementary School,01070030, 0, 84, 82, 79, 65, 72, 68, 0, 0, 0, 0, 0, 0, 0, 0, 450 +NA,NA,"",2023-24,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 203, 168, 208, 7, 807 +NA,NA,"",2023-24,Gloucester - Gloucester PreSchool,01070025, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114 +NA,NA,"",2023-24,Gloucester - Plum Cove School,01070042, 0, 38, 21, 43, 38, 29, 39, 0, 0, 0, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 202, 207, 217, 0, 0, 0, 0, 0, 626 +NA,NA,"",2023-24,Gloucester - West Parish,01070050, 0, 61, 59, 65, 62, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 +NA,NA,"",2023-24,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 211, 220, 196, 6, 891 +NA,NA,"",2023-24,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 228, 231, 0, 0, 0, 0, 0, 459 +NA,NA,"",2023-24,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 129, 103, 132, 95, 130, 0, 0, 0, 0, 0, 0, 0, 589 +NA,NA,"",2023-24,Grafton - North Grafton Elementary,01100025, 67, 85, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Grafton - North Street Elementary School,01100030, 0, 0, 0, 113, 125, 117, 99, 114, 0, 0, 0, 0, 0, 0, 0, 568 +NA,NA,"",2023-24,Grafton - South Grafton Elementary,01100005, 51, 121, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Granby - East Meadow,01110004, 32, 41, 37, 56, 61, 58, 61, 56, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 48, 56, 38, 47, 52, 50, 0, 291 +NA,NA,"",2023-24,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0, 24, 33, 41, 40, 55, 51, 74, 88, 116, 167, 139, 146, 185, 2," 1,161" +NA,NA,"",2023-24,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 363, 364, 336, 1," 1,443" +NA,NA,"",2023-24,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485, 449, 433, 407, 0," 1,774" +NA,NA,"",2023-24,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 576, 577, 559, 21," 2,314" +NA,NA,"",2023-24,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571, 551, 528, 497, 0," 2,147" +NA,NA,"",2023-24,Greenfield - Discovery School at Four Corners,01140025, 0, 32, 34, 44, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210 +NA,NA,"",2023-24,Greenfield - Federal Street School,01140010, 0, 30, 46, 38, 33, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182 +NA,NA,"",2023-24,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 85, 84, 89, 80, 8, 448 +NA,NA,"",2023-24,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 107, 104, 90, 0, 0, 0, 0, 0, 0, 301 +NA,NA,"",2023-24,Greenfield - Newton School,01140035, 0, 27, 48, 33, 34, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 +NA,NA,"",2023-24,Greenfield - The Academy of Early Learning at North Parish,01140005, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90 +NA,NA,"",2023-24,Groton-Dunstable - Boutwell School,06730001, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75 +NA,NA,"",2023-24,Groton-Dunstable - Florence Roche School,06730010, 0, 93, 84, 106, 111, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 +NA,NA,"",2023-24,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 166, 164, 175, 5, 689 +NA,NA,"",2023-24,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 187, 182, 188, 156, 0, 0, 0, 0, 0, 713 +NA,NA,"",2023-24,Groton-Dunstable - Swallow/Union School,06730005, 0, 53, 72, 71, 59, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Hadley - Hadley Elementary,01170015, 45, 36, 38, 28, 45, 28, 44, 28, 0, 0, 0, 0, 0, 0, 0, 292 +NA,NA,"",2023-24,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 40, 31, 26, 30, 40, 44, 0, 211 +NA,NA,"",2023-24,Halifax - Halifax Elementary,01180005, 0, 90, 67, 69, 76, 68, 85, 94, 0, 0, 0, 0, 0, 0, 0, 549 +NA,NA,"",2023-24,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 36, 38, 65, 39, 36, 45, 0, 0, 0, 0, 0, 0, 0, 0, 259 +NA,NA,"",2023-24,Hamilton-Wenham - Cutler School,06750010, 0, 55, 39, 43, 35, 36, 47, 0, 0, 0, 0, 0, 0, 0, 0, 255 +NA,NA,"",2023-24,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 104, 104, 117, 0, 442 +NA,NA,"",2023-24,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 135, 116, 127, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Hamilton-Wenham - Winthrop School,06750015, 35, 40, 60, 46, 57, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 90, 90, 90, 78, 76, 72, 57, 0, 553 +NA,NA,"",2023-24,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0, 0, 0, 0, 0, 0, 0, 63, 69, 54, 56, 62, 44, 46, 0, 394 +NA,NA,"",2023-24,Hampden-Wilbraham - Green Meadows Elementary,06800005, 23, 36, 36, 54, 39, 44, 36, 3, 0, 5, 0, 0, 0, 0, 0, 276 +NA,NA,"",2023-24,Hampden-Wilbraham - Mile Tree Elementary,06800025, 54, 152, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, 263, 244, 238, 0, 981 +NA,NA,"",2023-24,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 160, 163, 0, 0, 0, 0, 0, 0, 0, 0, 323 +NA,NA,"",2023-24,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 147, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 +NA,NA,"",2023-24,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 189, 216, 201, 0, 0, 0, 0, 0, 606 +NA,NA,"",2023-24,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 146, 136, 106, 99, 104, 98, 1, 690 +NA,NA,"",2023-24,Hancock - Hancock Elementary,01210005, 10, 10, 6, 4, 8, 8, 5, 7, 0, 0, 0, 0, 0, 0, 0, 58 +NA,NA,"",2023-24,Hanover - Cedar Elementary,01220004, 104, 204, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490 +NA,NA,"",2023-24,Hanover - Center Elementary,01220005, 0, 0, 0, 192, 209, 227, 0, 0, 0, 0, 0, 0, 0, 0, 0, 628 +NA,NA,"",2023-24,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 150, 172, 183, 0, 684 +NA,NA,"",2023-24,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 210, 187, 212, 191, 0, 0, 0, 0, 0, 800 +NA,NA,"",2023-24,Harvard - Hildreth Elementary School,01250005, 22, 64, 75, 77, 59, 70, 75, 0, 0, 0, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Harvard - The Bromfield High School,01250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 86, 82, 79, 2, 325 +NA,NA,"",2023-24,Harvard - The Bromfield Middle School,01250305, 0, 0, 0, 0, 0, 0, 0, 88, 79, 85, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Hatfield - Hatfield Elementary,01270005, 21, 30, 21, 23, 22, 28, 32, 19, 0, 0, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 31, 20, 17, 20, 19, 19, 0, 126 +NA,NA,"",2023-24,Haverhill - Bartlett School and Assessment Center,01280073, 0, 0, 0, 5, 3, 4, 6, 4, 2, 2, 3, 4, 1, 0, 7, 41 +NA,NA,"",2023-24,Haverhill - Bradford Elementary,01280008, 0, 70, 104, 101, 97, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 +NA,NA,"",2023-24,Haverhill - Caleb Dustin Hunking School,01280030, 0, 83, 82, 82, 73, 109, 140, 174, 150, 171, 0, 0, 0, 0, 0," 1,064" +NA,NA,"",2023-24,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 0, 0, 214, 199, 217, 198, 0, 0, 0, 0, 0, 828 +NA,NA,"",2023-24,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 116, 144, 131, 140, 0, 0, 0, 0, 0, 531 +NA,NA,"",2023-24,Haverhill - Gateway Academy,01280515, 0, 0, 0, 0, 0, 0, 0, 0, 6, 13, 19, 32, 23, 10, 0, 103 +NA,NA,"",2023-24,Haverhill - Golden Hill,01280026, 0, 103, 99, 93, 87, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476 +NA,NA,"",2023-24,Haverhill - Greenleaf Academy,01280033, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 11, 7, 4, 4, 0, 34 +NA,NA,"",2023-24,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 562, 508, 422, 468, 31," 1,991" +NA,NA,"",2023-24,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 91, 135, 140, 132, 0, 0, 0, 0, 0, 498 +NA,NA,"",2023-24,Haverhill - Moody,01280045, 145, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 +NA,NA,"",2023-24,Haverhill - Moody Preschool Extension,01280001, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,Haverhill - Pentucket Lake Elementary,01280054, 0, 73, 88, 66, 102, 130, 40, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Haverhill - Silver Hill Elementary School,01280067, 0, 89, 99, 96, 84, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 441 +NA,NA,"",2023-24,Haverhill - Tilton,01280075, 0, 108, 67, 99, 84, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Haverhill - Walnut Square,01280080, 0, 42, 45, 39, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164 +NA,NA,"",2023-24,Hawlemont - Hawlemont Regional,06850005, 3, 8, 6, 5, 10, 9, 9, 6, 0, 0, 0, 0, 0, 0, 0, 56 +NA,NA,"",2023-24,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 19, 44, 32, 0, 0, 0, 0, 0, 95 +NA,NA,"",2023-24,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 35, 36, 35, 33, 32, 33, 32, 35, 33, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 22, 21, 22, 22, 34, 28, 29, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Hingham - East Elementary School,01310005, 77, 64, 84, 81, 67, 76, 70, 0, 0, 0, 0, 0, 0, 0, 0, 519 +NA,NA,"",2023-24,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 281, 271, 281, 5," 1,100" +NA,NA,"",2023-24,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 292, 274, 280, 0, 0, 0, 0, 0, 846 +NA,NA,"",2023-24,Hingham - Plymouth River,01310019, 0, 44, 70, 57, 59, 66, 62, 0, 0, 0, 0, 0, 0, 0, 0, 358 +NA,NA,"",2023-24,Hingham - South Elementary,01310020, 0, 72, 84, 94, 77, 79, 87, 0, 0, 0, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Hingham - Wm L Foster Elementary,01310010, 0, 63, 65, 54, 67, 77, 65, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 109, 117, 119, 67, 72, 73, 80, 3, 640 +NA,NA,"",2023-24,Holbrook - John F Kennedy,01330018, 51, 88, 107, 102, 92, 111, 118, 0, 0, 0, 0, 0, 0, 0, 0, 669 +NA,NA,"",2023-24,Holland - Holland Elementary,01350005, 39, 15, 30, 33, 29, 19, 30, 31, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193, 211, 206, 190, 3, 803 +NA,NA,"",2023-24,Holliston - Miller School,01360007, 0, 0, 0, 0, 197, 205, 178, 0, 0, 0, 0, 0, 0, 0, 0, 580 +NA,NA,"",2023-24,Holliston - Placentino Elementary,01360010, 88, 165, 200, 233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 686 +NA,NA,"",2023-24,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 217, 222, 216, 0, 0, 0, 0, 0, 655 +NA,NA,"",2023-24,Holyoke - E N White Elementary,01370045, 20, 86, 81, 68, 75, 62, 59, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Holyoke - H.B. Lawrence School,01370070, 70, 41, 39, 43, 53, 49, 39, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, 402, 376, 409, 0," 1,567" +NA,NA,"",2023-24,Holyoke - Holyoke STEM Academy,01370320, 0, 0, 0, 0, 0, 0, 0, 100, 110, 94, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Holyoke - Joseph Metcalf School,01370003, 0, 0, 0, 0, 0, 0, 0, 61, 67, 77, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,Holyoke - Kelly Elementary,01370040, 100, 57, 68, 51, 66, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 459 +NA,NA,"",2023-24,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0, 0, 0, 0, 0, 0, 0, 159, 177, 158, 0, 0, 0, 0, 0, 494 +NA,NA,"",2023-24,Holyoke - Lt Elmer J McMahon Elementary,01370015, 23, 37, 43, 51, 54, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Holyoke - Maurice A Donahue Elementary,01370060, 80, 55, 54, 65, 54, 57, 65, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,Holyoke - Morgan Full Service Community School,01370025, 46, 62, 35, 46, 43, 43, 48, 0, 0, 0, 0, 0, 0, 0, 0, 323 +NA,NA,"",2023-24,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 73, 75, 83, 62, 92, 86, 78, 71, 72, 0, 0, 0, 0, 0, 692 +NA,NA,"",2023-24,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 59, 73, 76, 99, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 53, 78, 47, 43, 0, 299 +NA,NA,"",2023-24,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 86, 71, 74, 78, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 87, 71, 79, 64, 65, 80, 1, 447 +NA,NA,"",2023-24,Hopedale - Memorial,01380010, 0, 64, 79, 75, 82, 79, 82, 87, 0, 0, 0, 0, 0, 0, 0, 548 +NA,NA,"",2023-24,Hopedale - Park Street School,01380003, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106 +NA,NA,"",2023-24,Hopkinton - Elmwood,01390010, 0, 0, 0, 313, 326, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639 +NA,NA,"",2023-24,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 328, 349, 0, 0, 0, 0, 0, 0, 0, 0, 677 +NA,NA,"",2023-24,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309, 317, 325, 285, 5," 1,241" +NA,NA,"",2023-24,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 307, 338, 315, 0, 0, 0, 0, 0, 960 +NA,NA,"",2023-24,Hopkinton - Hopkinton Pre-School,01390003, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96 +NA,NA,"",2023-24,Hopkinton - Marathon Elementary School,01390005, 0, 272, 302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574 +NA,NA,"",2023-24,Hudson - C A Farley,01410030, 12, 95, 84, 93, 83, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 211, 186, 176, 0, 0, 0, 0, 0, 0, 573 +NA,NA,"",2023-24,Hudson - Forest Avenue Elementary,01410015, 11, 56, 57, 46, 44, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 +NA,NA,"",2023-24,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 128, 168, 175, 155, 0, 809 +NA,NA,"",2023-24,Hudson - Mulready Elementary,01410007, 19, 47, 42, 38, 49, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 +NA,NA,"",2023-24,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 63, 65, 54, 0, 233 +NA,NA,"",2023-24,Hull - Lillian M Jacobs,01420015, 60, 45, 49, 57, 43, 54, 51, 57, 0, 0, 0, 0, 0, 0, 0, 416 +NA,NA,"",2023-24,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 0, 56, 50, 0, 0, 0, 0, 0, 106 +NA,NA,"",2023-24,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 105, 99, 100, 99, 100, 97, 102, 86, 0, 788 +NA,NA,"",2023-24,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 116, 120, 133, 6, 482 +NA,NA,"",2023-24,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 134, 131, 117, 0, 0, 0, 0, 0, 382 +NA,NA,"",2023-24,Ipswich - Paul F Doyon Memorial,01440007, 26, 61, 57, 62, 53, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Ipswich - Winthrop,01440015, 35, 60, 47, 68, 51, 56, 52, 0, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 357, 350, 0, 0, 0, 0, 0, 707 +NA,NA,"",2023-24,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 314, 265, 292, 5," 1,142" +NA,NA,"",2023-24,Kingston - Kingston Elementary,01450005, 138, 163, 174, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 648 +NA,NA,"",2023-24,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 161, 158, 147, 147, 0, 0, 0, 0, 0, 0, 0, 613 +NA,NA,"",2023-24,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 60, 75, 72, 68, 70, 68, 64, 54, 60, 0, 0, 0, 0, 0, 591 +NA,NA,"",2023-24,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 123, 124, 124, 124, 124, 127, 124, 123, 123, 125, 126, 125, 123, 0," 1,615" +NA,NA,"",2023-24,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 56, 66, 58, 59, 82, 95, 0, 0, 0, 0, 0, 416 +NA,NA,"",2023-24,Lawrence - Arlington Elementary,01490009, 0, 99, 113, 121, 113, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 556 +NA,NA,"",2023-24,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 113, 158, 152, 165, 0, 0, 0, 0, 0, 588 +NA,NA,"",2023-24,Lawrence - Edward F. Parthum,01490053, 0, 110, 143, 151, 137, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679 +NA,NA,"",2023-24,Lawrence - Emily G Wetherbee,01490080, 0, 53, 56, 45, 49, 59, 54, 55, 66, 66, 0, 0, 0, 0, 0, 503 +NA,NA,"",2023-24,Lawrence - Francis M Leahy,01490040, 22, 42, 79, 83, 88, 88, 80, 0, 0, 0, 0, 0, 0, 0, 0, 482 +NA,NA,"",2023-24,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 126, 106, 125, 136, 0, 0, 0, 0, 0, 493 +NA,NA,"",2023-24,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 104, 135, 137, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479 +NA,NA,"",2023-24,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 111, 128, 112, 113, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 16, 32, 145, 0, 195 +NA,NA,"",2023-24,Lawrence - James F Hennessey,01490020, 56, 78, 83, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 +NA,NA,"",2023-24,Lawrence - John Breen School,01490003, 149, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 +NA,NA,"",2023-24,Lawrence - John K Tarbox,01490075, 0, 0, 61, 55, 62, 54, 42, 0, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Lawrence - Lawlor Early Childhood Center,01490002, 53, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,Lawrence - Lawrence Family Public Academy,01490011, 87, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 +NA,NA,"",2023-24,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 795, 891, 810, 721, 29," 3,246" +NA,NA,"",2023-24,Lawrence - Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 88, 110, 123, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Lawrence - Oliver Elementary School,01490048, 0, 0, 98, 84, 87, 90, 103, 0, 0, 0, 0, 0, 0, 0, 0, 462 +NA,NA,"",2023-24,Lawrence - Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 116, 114, 116, 0, 0, 0, 0, 0, 346 +NA,NA,"",2023-24,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 144, 146, 154, 146, 0, 0, 0, 0, 0, 590 +NA,NA,"",2023-24,Lawrence - RISE Academy,01490615, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 5, 14, 17, 28, 0, 67 +NA,NA,"",2023-24,Lawrence - Robert Frost,01490018, 0, 105, 101, 106, 109, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 546 +NA,NA,"",2023-24,Lawrence - Rollins Early Childhood Center,01490001, 96, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 +NA,NA,"",2023-24,Lawrence - School for Exceptional Studies,01490537, 0, 2, 2, 5, 7, 8, 7, 8, 6, 12, 15, 9, 9, 11, 7, 108 +NA,NA,"",2023-24,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 122, 126, 145, 138, 129, 0, 0, 0, 0, 0, 0, 0, 0, 660 +NA,NA,"",2023-24,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 132, 157, 156, 0, 0, 0, 0, 0, 445 +NA,NA,"",2023-24,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 104, 104, 104, 104, 84, 82, 81, 74, 72, 70, 0, 0, 0, 0, 0, 879 +NA,NA,"",2023-24,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0, 75, 75, 76, 75, 75, 76, 71, 72, 72, 0, 0, 0, 0, 0, 667 +NA,NA,"",2023-24,Lee - Lee Elementary,01500025, 18, 45, 46, 40, 41, 42, 51, 55, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 46, 58, 57, 41, 46, 58, 2, 308 +NA,NA,"",2023-24,Leicester - Leicester Elementary,01510005, 0, 77, 87, 109, 95, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470 +NA,NA,"",2023-24,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 113, 89, 110, 1, 397 +NA,NA,"",2023-24,Leicester - Leicester Integrated Preschool,01510001, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49 +NA,NA,"",2023-24,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 100, 123, 85, 98, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 58, 64, 69, 68, 63, 59, 62, 3, 446 +NA,NA,"",2023-24,Lenox - Morris,01520015, 25, 48, 53, 48, 52, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 337 +NA,NA,"",2023-24,Leominster - Bennett,01530003, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 +NA,NA,"",2023-24,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 179, 138, 135, 0, 807 +NA,NA,"",2023-24,Leominster - Fall Brook,01530007, 0, 72, 105, 126, 107, 109, 113, 0, 0, 0, 0, 0, 0, 0, 0, 632 +NA,NA,"",2023-24,Leominster - Frances Drake School,01530010, 0, 99, 63, 75, 68, 96, 84, 0, 0, 0, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Leominster - Johnny Appleseed,01530025, 0, 75, 114, 127, 107, 111, 121, 0, 0, 0, 0, 0, 0, 0, 0, 655 +NA,NA,"",2023-24,Leominster - Leominster Academy,01530705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 0, 16 +NA,NA,"",2023-24,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 11, 30, 0, 65 +NA,NA,"",2023-24,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 295, 306, 303, 9," 1,073" +NA,NA,"",2023-24,Leominster - Lincoln School,01530005, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40 +NA,NA,"",2023-24,Leominster - Northwest,01530030, 0, 0, 112, 154, 136, 130, 137, 0, 0, 0, 0, 0, 0, 0, 0, 669 +NA,NA,"",2023-24,Leominster - Priest Street,01530040, 0, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139 +NA,NA,"",2023-24,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 153, 147, 168, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 293, 283, 298, 0, 0, 0, 0, 0, 874 +NA,NA,"",2023-24,Leverett - Leverett Elementary,01540005, 15, 16, 15, 19, 18, 20, 17, 22, 0, 0, 0, 0, 0, 0, 0, 142 +NA,NA,"",2023-24,Lexington - Bowman,01550008, 0, 69, 63, 65, 72, 77, 82, 0, 0, 0, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Lexington - Bridge,01550006, 0, 50, 59, 57, 68, 59, 72, 0, 0, 0, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Lexington - Fiske,01550015, 0, 37, 46, 55, 61, 75, 61, 0, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Lexington - Harrington,01550030, 0, 56, 54, 60, 51, 78, 79, 0, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 266, 258, 286, 0, 0, 0, 0, 0, 810 +NA,NA,"",2023-24,Lexington - Joseph Estabrook,01550010, 0, 71, 72, 101, 88, 94, 111, 0, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Lexington - Lexington Children's Place,01550001, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76 +NA,NA,"",2023-24,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 595, 596, 591, 536, 0," 2,318" +NA,NA,"",2023-24,Lexington - Maria Hastings,01550035, 0, 79, 79, 119, 96, 118, 140, 0, 0, 0, 0, 0, 0, 0, 0, 631 +NA,NA,"",2023-24,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 297, 308, 322, 0, 0, 0, 0, 0, 927 +NA,NA,"",2023-24,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 95, 103, 98, 90, 66, 67, 0, 0, 519 +NA,NA,"",2023-24,Lincoln - Hanscom School,01570305, 71, 60, 45, 58, 43, 50, 49, 49, 36, 33, 0, 0, 0, 0, 0, 494 +NA,NA,"",2023-24,Lincoln - Lincoln School,01570025, 25, 54, 46, 58, 61, 59, 73, 53, 61, 49, 0, 0, 0, 0, 0, 539 +NA,NA,"",2023-24,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 380, 386, 346, 3," 1,462" +NA,NA,"",2023-24,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 124, 123, 125, 4, 487 +NA,NA,"",2023-24,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 140, 115, 133, 0, 0, 0, 0, 0, 388 +NA,NA,"",2023-24,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 108, 122, 126, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Littleton - Shaker Lane Elementary,01580005, 44, 134, 127, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Longmeadow - Blueberry Hill,01590005, 0, 55, 61, 66, 59, 59, 75, 0, 0, 0, 0, 0, 0, 0, 0, 375 +NA,NA,"",2023-24,Longmeadow - Center,01590010, 0, 57, 71, 69, 63, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 105, 109, 106, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 236, 225, 222, 0, 911 +NA,NA,"",2023-24,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 111, 109, 90, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Longmeadow - Wolf Swamp Road,01590025, 73, 59, 67, 67, 57, 59, 66, 0, 0, 0, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Lowell - Abraham Lincoln,01600020, 56, 82, 85, 85, 92, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 125, 123, 135, 122, 0, 0, 0, 0, 0, 505 +NA,NA,"",2023-24,Lowell - Bartlett Community Partnership,01600090, 40, 35, 44, 49, 59, 50, 55, 43, 52, 53, 0, 0, 0, 0, 0, 480 +NA,NA,"",2023-24,Lowell - Cardinal O'Connell Early Learning Center,01600001, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104 +NA,NA,"",2023-24,Lowell - Charles W Morey,01600030, 58, 86, 86, 83, 83, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478 +NA,NA,"",2023-24,Lowell - Charlotte M Murkland Elementary,01600080, 42, 80, 71, 83, 79, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 170, 161, 164, 163, 0, 0, 0, 0, 0, 658 +NA,NA,"",2023-24,Lowell - Dr Gertrude Bailey,01600002, 33, 83, 81, 86, 76, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Lowell - Dr. Janice Adie Day School,01600605, 2, 1, 2, 2, 4, 5, 10, 6, 9, 6, 2, 0, 4, 4, 1, 58 +NA,NA,"",2023-24,Lowell - Greenhalge,01600015, 43, 74, 80, 87, 87, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 457 +NA,NA,"",2023-24,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 160, 138, 139, 155, 0, 0, 0, 0, 0, 592 +NA,NA,"",2023-24,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 180, 173, 161, 166, 0, 0, 0, 0, 0, 680 +NA,NA,"",2023-24,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 156, 143, 159, 159, 0, 0, 0, 0, 0, 617 +NA,NA,"",2023-24,Lowell - John J Shaughnessy,01600050, 31, 87, 80, 89, 93, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469 +NA,NA,"",2023-24,Lowell - Joseph McAvinnue,01600010, 30, 72, 78, 83, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 429 +NA,NA,"",2023-24,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 153, 145, 162, 165, 0, 0, 0, 0, 0, 625 +NA,NA,"",2023-24,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 0, 0, 1, 0, 4, 6, 5, 0, 0, 0, 0, 0, 16 +NA,NA,"",2023-24,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 11, 9, 9, 0, 36 +NA,NA,"",2023-24,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,004", 861, 753, 763, 21," 3,402" +NA,NA,"",2023-24,Lowell - Moody Elementary,01600027, 20, 45, 44, 48, 46, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 +NA,NA,"",2023-24,Lowell - Pawtucketville Memorial,01600036, 32, 74, 88, 87, 85, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,Lowell - Peter W Reilly,01600040, 25, 81, 82, 95, 91, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 +NA,NA,"",2023-24,Lowell - Pyne Arts,01600018, 31, 39, 40, 43, 46, 47, 60, 53, 54, 51, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Lowell - Rogers STEM Academy,01600005, 0, 77, 83, 93, 93, 86, 110, 103, 103, 110, 0, 0, 0, 0, 0, 858 +NA,NA,"",2023-24,Lowell - S Christa McAuliffe Elementary,01600075, 50, 77, 84, 93, 95, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 482 +NA,NA,"",2023-24,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 22, 19, 32, 0, 92 +NA,NA,"",2023-24,Lowell - Washington,01600055, 32, 34, 44, 45, 47, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 +NA,NA,"",2023-24,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 100, 97, 95, 86, 92, 84, 80, 76, 67, 0, 0, 0, 0, 0, 817 +NA,NA,"",2023-24,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 32, 18, 35, 0, 106 +NA,NA,"",2023-24,Ludlow - East Street Elementary School,01610010, 97, 134, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359 +NA,NA,"",2023-24,Ludlow - Harris Brook Elementary School,01610665, 0, 0, 0, 140, 163, 165, 149, 0, 0, 0, 0, 0, 0, 0, 0, 617 +NA,NA,"",2023-24,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 204, 190, 170, 5, 750 +NA,NA,"",2023-24,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 181, 180, 171, 0, 0, 0, 0, 0, 532 +NA,NA,"",2023-24,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7 +NA,NA,"",2023-24,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 120, 104, 106, 0, 449 +NA,NA,"",2023-24,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 109, 122, 132, 0, 0, 0, 0, 0, 363 +NA,NA,"",2023-24,Lunenburg - Lunenburg Primary School,01620010, 46, 106, 115, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 113, 109, 148, 0, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Lynn - A Drewicz Elementary,01630016, 0, 83, 107, 78, 85, 70, 69, 0, 0, 0, 0, 0, 0, 0, 0, 492 +NA,NA,"",2023-24,Lynn - Aborn,01630011, 0, 33, 35, 37, 37, 37, 49, 0, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 471, 474, 308, 0, 0, 0, 0, 0," 1,253" +NA,NA,"",2023-24,Lynn - Brickett Elementary,01630020, 0, 50, 49, 58, 58, 47, 55, 0, 0, 0, 0, 0, 0, 0, 0, 317 +NA,NA,"",2023-24,Lynn - Capt William G Shoemaker,01630090, 6, 68, 54, 56, 52, 40, 62, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492, 521, 511, 353, 1," 1,878" +NA,NA,"",2023-24,Lynn - Cobbet Elementary,01630035, 23, 92, 105, 104, 106, 87, 106, 0, 0, 0, 0, 0, 0, 0, 0, 623 +NA,NA,"",2023-24,Lynn - E J Harrington,01630045, 66, 93, 95, 97, 100, 90, 93, 0, 0, 0, 0, 0, 0, 0, 0, 634 +NA,NA,"",2023-24,Lynn - Edward A Sisson,01630095, 10, 49, 71, 76, 68, 81, 72, 0, 0, 0, 0, 0, 0, 0, 0, 427 +NA,NA,"",2023-24,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 5, 4, 7, 9, 20, 18, 25, 0, 88 +NA,NA,"",2023-24,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 92, 0, 0, 0, 157 +NA,NA,"",2023-24,Lynn - Hood,01630055, 4, 81, 100, 86, 86, 72, 62, 0, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Lynn - Ingalls,01630060, 0, 171, 107, 102, 115, 86, 117, 0, 0, 0, 0, 0, 0, 0, 0, 698 +NA,NA,"",2023-24,Lynn - Julia F Callahan,01630030, 56, 45, 50, 61, 63, 53, 66, 0, 0, 0, 0, 0, 0, 0, 0, 394 +NA,NA,"",2023-24,Lynn - Lincoln-Thomson,01630070, 0, 27, 43, 30, 32, 34, 50, 0, 0, 0, 0, 0, 0, 0, 0, 216 +NA,NA,"",2023-24,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442, 584, 562, 484, 0," 2,072" +NA,NA,"",2023-24,Lynn - Lynn Vocational Technical Institute,01630605, 67, 1, 7, 1, 0, 1, 3, 2, 2, 295, 300, 282, 278, 264, 54," 1,557" +NA,NA,"",2023-24,Lynn - Lynn Woods,01630075, 0, 23, 23, 27, 36, 19, 33, 0, 0, 0, 0, 0, 0, 0, 0, 161 +NA,NA,"",2023-24,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 214, 202, 127, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Lynn - Robert L Ford,01630050, 0, 0, 100, 74, 78, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Lynn - Sewell-Anderson,01630085, 0, 105, 39, 31, 36, 26, 34, 0, 0, 0, 0, 0, 0, 0, 0, 271 +NA,NA,"",2023-24,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 478, 442, 360, 0, 0, 0, 0, 0," 1,280" +NA,NA,"",2023-24,Lynn - Tracy,01630100, 0, 0, 74, 82, 75, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Lynn - Virginia Barton Early Childhood Center,01630004, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81 +NA,NA,"",2023-24,Lynn - Washington Elementary School,01630005, 0, 63, 79, 85, 65, 86, 69, 0, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Lynn - William R Fallon,01630080, 0, 1, 0, 2, 6, 8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 24 +NA,NA,"",2023-24,Lynn - Wm P Connery,01630040, 0, 102, 108, 102, 77, 84, 81, 0, 0, 0, 0, 0, 0, 0, 0, 554 +NA,NA,"",2023-24,Lynnfield - Huckleberry Hill,01640010, 0, 91, 81, 84, 96, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449 +NA,NA,"",2023-24,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 133, 144, 147, 0, 571 +NA,NA,"",2023-24,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 176, 185, 159, 189, 0, 0, 0, 0, 0, 709 +NA,NA,"",2023-24,Lynnfield - Lynnfield Preschool,01640005, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39 +NA,NA,"",2023-24,Lynnfield - Summer Street,01640020, 0, 67, 89, 99, 86, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 +NA,NA,"",2023-24,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 47, 0, 97 +NA,NA,"",2023-24,Malden - Beebe,01650003, 0, 90, 109, 114, 108, 92, 101, 93, 100, 94, 0, 0, 0, 0, 0, 901 +NA,NA,"",2023-24,Malden - Ferryway,01650013, 0, 96, 103, 110, 104, 98, 99, 98, 100, 97, 0, 0, 0, 0, 0, 905 +NA,NA,"",2023-24,Malden - Forestdale,01650027, 0, 51, 58, 63, 59, 60, 64, 48, 69, 78, 0, 0, 0, 0, 0, 550 +NA,NA,"",2023-24,Malden - Linden,01650047, 0, 85, 86, 96, 98, 95, 95, 86, 89, 95, 0, 0, 0, 0, 0, 825 +NA,NA,"",2023-24,Malden - Malden Early Learning Center,01650049, 251, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489, 462, 492, 440, 11," 1,894" +NA,NA,"",2023-24,Malden - Salemwood,01650057, 0, 92, 89, 116, 92, 101, 101, 116, 124, 125, 0, 0, 0, 0, 0, 956 +NA,NA,"",2023-24,Manchester Essex Regional - Essex Elementary,06980020, 0, 36, 36, 40, 39, 43, 35, 0, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 92, 112, 89, 1, 400 +NA,NA,"",2023-24,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 93, 98, 83, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 37, 40, 42, 37, 48, 47, 46, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Mansfield - Everett W Robinson,01670007, 0, 213, 247, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 712 +NA,NA,"",2023-24,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 253, 262, 271, 0, 0, 0, 0, 0, 786 +NA,NA,"",2023-24,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 263, 235, 240, 0, 0, 0, 0, 0, 0, 0, 0, 738 +NA,NA,"",2023-24,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 261, 241, 279, 16," 1,035" +NA,NA,"",2023-24,Mansfield - Roland Green School,01670003, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 +NA,NA,"",2023-24,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 75, 82, 70, 0, 277 +NA,NA,"",2023-24,Marblehead - Glover,01680020, 27, 60, 87, 70, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Marblehead - Lucretia and Joseph Brown School,01680030, 32, 105, 99, 101, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 199, 244, 215, 0, 874 +NA,NA,"",2023-24,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 235, 208, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Marblehead - Village School,01680016, 0, 0, 0, 0, 0, 187, 171, 179, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 39, 39, 45, 26, 26, 0, 0, 0, 0, 0, 175 +NA,NA,"",2023-24,Marion - Sippican,01690005, 23, 36, 45, 52, 55, 54, 66, 58, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 0, 289, 296, 359, 0, 0, 0, 0, 0, 944 +NA,NA,"",2023-24,Marlborough - Charles Jaworek School,01700030, 0, 104, 115, 115, 97, 120, 104, 0, 0, 0, 0, 0, 0, 0, 0, 655 +NA,NA,"",2023-24,Marlborough - Early Childhood Center,01700006, 231, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Marlborough - Francis J Kane,01700008, 0, 75, 86, 96, 90, 84, 81, 0, 0, 0, 0, 0, 0, 0, 0, 512 +NA,NA,"",2023-24,Marlborough - Goodnow Brothers Elementary School,01700020, 0, 128, 123, 145, 151, 116, 133, 0, 0, 0, 0, 0, 0, 0, 0, 796 +NA,NA,"",2023-24,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 270, 285, 239, 10," 1,013" +NA,NA,"",2023-24,Marlborough - Richer,01700025, 0, 104, 81, 96, 100, 94, 103, 0, 0, 0, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Marshfield - Daniel Webster,01710015, 4, 44, 50, 44, 43, 44, 42, 0, 0, 0, 0, 0, 0, 0, 0, 271 +NA,NA,"",2023-24,Marshfield - Eames Way School,01710005, 0, 54, 36, 35, 35, 34, 34, 0, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 270, 303, 276, 0, 0, 0, 0, 0, 849 +NA,NA,"",2023-24,Marshfield - Gov Edward Winslow,01710020, 0, 57, 57, 52, 64, 65, 58, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 293, 320, 256, 2," 1,149" +NA,NA,"",2023-24,Marshfield - Marshfield Public Schools Early Childhood Center,01710001, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120 +NA,NA,"",2023-24,Marshfield - Martinson Elementary,01710025, 0, 68, 73, 92, 67, 89, 64, 0, 0, 0, 0, 0, 0, 0, 0, 453 +NA,NA,"",2023-24,Marshfield - South River,01710010, 0, 39, 54, 34, 45, 47, 30, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 186, 196, 165, 4, 681 +NA,NA,"",2023-24,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0, 12, 9, 15, 16, 15, 22, 25, 13, 16, 7, 14, 4, 7, 0, 175 +NA,NA,"",2023-24,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0, 64, 59, 56, 61, 60, 56, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 261, 210, 254, 0, 975 +NA,NA,"",2023-24,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 289, 271, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,Mashpee - Kenneth Coombs School,01720005, 95, 90, 111, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Mashpee - Mashpee Middle-High School,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 101, 116, 103, 98, 112, 90, 0, 620 +NA,NA,"",2023-24,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 104, 109, 83, 112, 0, 0, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Match Charter Public School (District) - Match Charter Public School,04690505, 54, 81, 98, 96, 97, 98, 98, 94, 91, 90, 100, 66, 61, 60, 1," 1,185" +NA,NA,"",2023-24,Mattapoisett - Center,01730005, 24, 45, 54, 56, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 +NA,NA,"",2023-24,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 49, 60, 61, 0, 0, 0, 0, 0, 0, 0, 170 +NA,NA,"",2023-24,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 97, 94, 99, 89, 97, 0, 0, 0, 0, 0, 476 +NA,NA,"",2023-24,Maynard - Green Meadow,01740010, 48, 108, 90, 96, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 84, 82, 72, 0, 297 +NA,NA,"",2023-24,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 206, 198, 0, 0, 0, 0, 0, 0, 0, 0, 404 +NA,NA,"",2023-24,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 176, 175, 185, 6, 705 +NA,NA,"",2023-24,Medfield - Memorial School,01750003, 42, 193, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412 +NA,NA,"",2023-24,Medfield - Ralph Wheelock School,01750007, 9, 0, 0, 207, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 398 +NA,NA,"",2023-24,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 193, 192, 200, 0, 0, 0, 0, 0, 585 +NA,NA,"",2023-24,Medford - Brooks School,01760130, 44, 89, 72, 95, 81, 87, 69, 0, 0, 0, 0, 0, 0, 0, 0, 537 +NA,NA,"",2023-24,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5, 5, 0, 15 +NA,NA,"",2023-24,Medford - John J McGlynn Elementary School,01760068, 0, 96, 66, 97, 96, 73, 71, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 140, 154, 138, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 143, 158, 151, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,Medford - Medford High,01760505, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 313, 279, 278, 6," 1,191" +NA,NA,"",2023-24,Medford - Milton Fuller Roberts,01760150, 26, 100, 96, 99, 88, 78, 84, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Medford - Missituk Elementary School,01760140, 36, 63, 57, 79, 59, 74, 69, 0, 0, 0, 0, 0, 0, 0, 0, 437 +NA,NA,"",2023-24,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 164, 167, 179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Medway - John D Mc Govern Elementary,01770013, 46, 162, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377 +NA,NA,"",2023-24,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 150, 161, 148, 0, 607 +NA,NA,"",2023-24,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 164, 168, 155, 178, 0, 0, 0, 0, 0, 665 +NA,NA,"",2023-24,Melrose - Early Childhood Center,01780003, 225, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 +NA,NA,"",2023-24,Melrose - Herbert Clark Hoover,01780017, 0, 53, 38, 42, 44, 51, 55, 0, 0, 0, 0, 0, 0, 0, 0, 283 +NA,NA,"",2023-24,Melrose - Horace Mann,01780025, 0, 40, 45, 47, 45, 43, 46, 0, 0, 0, 0, 0, 0, 0, 0, 266 +NA,NA,"",2023-24,Melrose - Lincoln,01780020, 0, 57, 69, 77, 85, 59, 65, 0, 0, 0, 0, 0, 0, 0, 0, 412 +NA,NA,"",2023-24,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 237, 238, 233, 5, 959 +NA,NA,"",2023-24,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 320, 309, 281, 0, 0, 0, 0, 0, 910 +NA,NA,"",2023-24,Melrose - Roosevelt,01780035, 0, 56, 64, 66, 83, 72, 62, 0, 0, 0, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,Melrose - Winthrop,01780050, 0, 73, 62, 70, 64, 69, 63, 0, 0, 0, 0, 0, 0, 0, 0, 401 +NA,NA,"",2023-24,Mendon-Upton - Henry P Clough,07100179, 21, 86, 57, 86, 68, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Mendon-Upton - Memorial School,07100001, 28, 82, 108, 91, 90, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 169, 176, 128, 163, 0, 0, 0, 0, 0, 636 +NA,NA,"",2023-24,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 133, 154, 149, 3, 559 +NA,NA,"",2023-24,Methuen - Comprehensive Grammar School,01810050, 0, 100, 101, 115, 107, 111, 119, 116, 134, 130, 0, 0, 0, 0, 0," 1,033" +NA,NA,"",2023-24,Methuen - Donald P Timony Grammar,01810060, 0, 96, 122, 132, 121, 146, 147, 139, 117, 128, 0, 0, 0, 0, 0," 1,148" +NA,NA,"",2023-24,Methuen - Early Childhood Center,01810001, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143 +NA,NA,"",2023-24,Methuen - Marsh Grammar School,01810030, 0, 122, 106, 105, 120, 109, 113, 109, 147, 115, 0, 0, 0, 0, 0," 1,046" +NA,NA,"",2023-24,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418, 517, 501, 462, 0," 1,898" +NA,NA,"",2023-24,Methuen - Tenney Grammar School,01810055, 0, 112, 134, 120, 143, 151, 149, 148, 141, 166, 0, 0, 0, 0, 0," 1,264" +NA,NA,"",2023-24,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 128, 113, 121, 107, 115, 0, 0, 0, 0, 0, 0, 0, 0, 584 +NA,NA,"",2023-24,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 239, 238, 232, 0, 0, 0, 0, 0, 709 +NA,NA,"",2023-24,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 116, 125, 129, 119, 122, 0, 0, 0, 0, 0, 0, 0, 0, 611 +NA,NA,"",2023-24,Middleborough - Memorial Early Childhood Center,01820011, 69, 198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267 +NA,NA,"",2023-24,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 204, 208, 192, 1, 827 +NA,NA,"",2023-24,Middleton - Fuller Meadow,01840003, 0, 86, 103, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Middleton - Howe-Manning,01840005, 55, 0, 0, 0, 97, 93, 109, 83, 0, 0, 0, 0, 0, 0, 0, 437 +NA,NA,"",2023-24,Milford - Brookside,01850065, 0, 189, 205, 175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 569 +NA,NA,"",2023-24,Milford - Memorial,01850010, 0, 144, 131, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325, 339, 336, 296, 1," 1,297" +NA,NA,"",2023-24,Milford - Shining Star Early Childhood Center,01850075, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154 +NA,NA,"",2023-24,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 297, 335, 339, 0, 0, 0, 0, 0, 971 +NA,NA,"",2023-24,Milford - Woodland,01850090, 0, 0, 0, 0, 339, 317, 322, 0, 0, 0, 0, 0, 0, 0, 0, 978 +NA,NA,"",2023-24,Millbury - Elmwood Street,01860017, 93, 108, 134, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 +NA,NA,"",2023-24,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 106, 120, 138, 115, 126, 113, 3, 721 +NA,NA,"",2023-24,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 103, 122, 111, 131, 0, 0, 0, 0, 0, 0, 0, 467 +NA,NA,"",2023-24,Millis - Clyde F Brown,01870005, 50, 89, 94, 96, 80, 99, 87, 0, 0, 0, 0, 0, 0, 0, 0, 595 +NA,NA,"",2023-24,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 65, 79, 91, 0, 317 +NA,NA,"",2023-24,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 0, 101, 89, 78, 0, 0, 0, 0, 0, 268 +NA,NA,"",2023-24,Millis - TIES,01870515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6 +NA,NA,"",2023-24,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 352, 332, 276, 0, 0, 0, 0, 0, 960 +NA,NA,"",2023-24,Milton - Collicot,01890005, 0, 86, 113, 98, 105, 86, 98, 0, 0, 0, 0, 0, 0, 0, 0, 586 +NA,NA,"",2023-24,Milton - Cunningham School,01890007, 87, 85, 80, 95, 86, 95, 83, 0, 0, 0, 0, 0, 0, 0, 0, 611 +NA,NA,"",2023-24,Milton - Glover,01890010, 0, 89, 92, 115, 88, 119, 119, 0, 0, 0, 0, 0, 0, 0, 0, 622 +NA,NA,"",2023-24,Milton - Milton High,01890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 245, 269, 278, 9," 1,092" +NA,NA,"",2023-24,Milton - Tucker,01890020, 32, 66, 69, 69, 67, 77, 69, 0, 0, 0, 0, 0, 0, 0, 0, 449 +NA,NA,"",2023-24,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 169, 180, 162, 0, 683 +NA,NA,"",2023-24,Mohawk Trail - Buckland-Shelburne Regional,07170005, 28, 24, 29, 34, 36, 34, 39, 41, 0, 0, 0, 0, 0, 0, 1, 266 +NA,NA,"",2023-24,Mohawk Trail - Colrain Central,07170010, 17, 13, 11, 10, 13, 9, 15, 15, 0, 0, 0, 0, 0, 0, 0, 103 +NA,NA,"",2023-24,Mohawk Trail - Mohawk Trail Regional School,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 82, 71, 44, 33, 34, 35, 0, 299 +NA,NA,"",2023-24,Mohawk Trail - Sanderson Academy,07170020, 33, 15, 17, 12, 12, 15, 14, 20, 0, 0, 0, 0, 0, 0, 0, 138 +NA,NA,"",2023-24,Monomoy Regional School District - Chatham Elementary School,07120001, 0, 30, 30, 29, 21, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149 +NA,NA,"",2023-24,Monomoy Regional School District - Harwich Elementary School,07120002, 65, 59, 78, 81, 99, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 139, 136, 163, 116, 6, 719 +NA,NA,"",2023-24,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 124, 142, 148, 0, 0, 0, 0, 0, 0, 414 +NA,NA,"",2023-24,Monson - Granite Valley School,01910030, 0, 0, 59, 56, 69, 74, 71, 58, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 67, 70, 47, 37, 31, 38, 5, 295 +NA,NA,"",2023-24,Monson - Quarry Hill Community School,01910010, 65, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125 +NA,NA,"",2023-24,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 368, 357, 343, 0," 1,428" +NA,NA,"",2023-24,Mount Greylock - Lanesborough Elementary,07150005, 22, 28, 25, 28, 25, 36, 36, 29, 0, 0, 0, 0, 0, 0, 0, 229 +NA,NA,"",2023-24,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 112, 99, 94, 72, 71, 104, 1, 553 +NA,NA,"",2023-24,Mount Greylock - Williamstown Elementary,07150010, 33, 45, 54, 65, 43, 55, 64, 72, 0, 0, 0, 0, 0, 0, 0, 431 +NA,NA,"",2023-24,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 167, 160, 157, 156, 146, 145, 144, 113, 106, 91, 99, 74, 95, 0," 1,653" +NA,NA,"",2023-24,Nahant - Johnson,01960010, 33, 28, 21, 16, 28, 16, 7, 0, 0, 0, 0, 0, 0, 0, 0, 149 +NA,NA,"",2023-24,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 123, 101, 129, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Nantucket - Nantucket Elementary,01970005, 44, 107, 116, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397 +NA,NA,"",2023-24,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 159, 153, 116, 4, 593 +NA,NA,"",2023-24,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 123, 104, 113, 0, 0, 0, 0, 0, 0, 0, 0, 340 +NA,NA,"",2023-24,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 132, 112, 122, 0, 0, 0, 0, 0, 0, 366 +NA,NA,"",2023-24,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 103, 89, 93, 63, 2, 475 +NA,NA,"",2023-24,Narragansett - Templeton Elementary School,07200020, 84, 98, 108, 96, 105, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 612 +NA,NA,"",2023-24,Nashoba - Center School,07250020, 33, 74, 74, 87, 70, 71, 91, 0, 0, 0, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Nashoba - Florence Sawyer School,07250025, 23, 61, 78, 85, 95, 69, 86, 82, 74, 90, 0, 0, 0, 0, 0, 743 +NA,NA,"",2023-24,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 67, 89, 81, 0, 0, 0, 0, 0, 237 +NA,NA,"",2023-24,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 91, 88, 70, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Nashoba - Mary Rowlandson Elementary,07250010, 25, 72, 74, 79, 73, 72, 66, 0, 0, 0, 0, 0, 0, 0, 0, 461 +NA,NA,"",2023-24,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 204, 201, 218, 9, 841 +NA,NA,"",2023-24,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 199, 193, 167, 0, 773 +NA,NA,"",2023-24,Natick - Bennett-Hemenway,01980005, 0, 102, 72, 116, 99, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Natick - Brown,01980010, 0, 95, 101, 117, 87, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 +NA,NA,"",2023-24,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 241, 211, 236, 223, 0, 0, 0, 0, 0, 911 +NA,NA,"",2023-24,Natick - Johnson,01980031, 0, 0, 0, 7, 13, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51 +NA,NA,"",2023-24,Natick - Lilja Elementary,01980035, 0, 82, 91, 92, 71, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410 +NA,NA,"",2023-24,Natick - Memorial,01980043, 0, 80, 90, 93, 101, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Natick - Natick High,01980505, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433, 427, 381, 378, 0," 1,743" +NA,NA,"",2023-24,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 188, 193, 176, 191, 0, 0, 0, 0, 0, 748 +NA,NA,"",2023-24,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 171, 210, 189, 3, 751 +NA,NA,"",2023-24,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 137, 171, 177, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Needham - Broadmeadow,01990005, 0, 81, 82, 85, 86, 87, 101, 0, 0, 0, 0, 0, 0, 0, 0, 522 +NA,NA,"",2023-24,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 447, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Needham - John Eliot,01990020, 0, 53, 73, 69, 62, 72, 73, 0, 0, 0, 0, 0, 0, 0, 0, 402 +NA,NA,"",2023-24,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373, 414, 417, 418, 0," 1,622" +NA,NA,"",2023-24,Needham - Newman Elementary,01990050, 80, 98, 111, 100, 99, 103, 107, 0, 0, 0, 0, 0, 0, 0, 0, 698 +NA,NA,"",2023-24,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 437, 443, 0, 0, 0, 0, 0, 880 +NA,NA,"",2023-24,Needham - Sunita L. Williams Elementary,01990035, 0, 78, 90, 87, 102, 88, 86, 0, 0, 0, 0, 0, 0, 0, 0, 531 +NA,NA,"",2023-24,Needham - William Mitchell,01990040, 0, 66, 87, 62, 76, 72, 76, 0, 0, 0, 0, 0, 0, 0, 0, 439 +NA,NA,"",2023-24,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 38, 38, 40, 44, 44, 46, 78, 75, 71, 66, 106, 71, 76, 63, 0, 856 +NA,NA,"",2023-24,New Bedford - Abraham Lincoln,02010095, 0, 111, 126, 108, 108, 97, 122, 0, 0, 0, 0, 0, 0, 0, 0, 672 +NA,NA,"",2023-24,New Bedford - Alfred J Gomes,02010063, 53, 94, 95, 97, 88, 97, 86, 0, 0, 0, 0, 0, 0, 0, 0, 610 +NA,NA,"",2023-24,New Bedford - Betsey B Winslow,02010140, 0, 32, 42, 44, 41, 38, 37, 0, 0, 0, 0, 0, 0, 0, 0, 234 +NA,NA,"",2023-24,New Bedford - Carlos Pacheco,02010105, 0, 37, 51, 44, 42, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,New Bedford - Casimir Pulaski,02010123, 85, 80, 77, 88, 74, 75, 81, 0, 0, 0, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,New Bedford - Charles S Ashley,02010010, 0, 27, 53, 48, 47, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,New Bedford - Elizabeth Carter Brooks,02010015, 0, 40, 38, 46, 52, 47, 41, 0, 0, 0, 0, 0, 0, 0, 0, 264 +NA,NA,"",2023-24,New Bedford - Ellen R Hathaway,02010075, 47, 37, 24, 42, 33, 29, 33, 0, 0, 0, 0, 0, 0, 0, 0, 245 +NA,NA,"",2023-24,New Bedford - Elwyn G Campbell,02010020, 73, 28, 35, 29, 46, 37, 30, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,New Bedford - Hayden/McFadden,02010078, 97, 103, 109, 118, 101, 89, 96, 0, 0, 0, 0, 0, 0, 0, 0, 713 +NA,NA,"",2023-24,New Bedford - Irwin M. Jacobs Elementary School,02010070, 25, 70, 54, 54, 60, 67, 53, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,New Bedford - James B Congdon,02010040, 0, 44, 54, 37, 61, 48, 57, 0, 0, 0, 0, 0, 0, 0, 0, 301 +NA,NA,"",2023-24,New Bedford - Jireh Swift,02010130, 33, 36, 32, 35, 30, 31, 24, 0, 0, 0, 0, 0, 0, 0, 0, 221 +NA,NA,"",2023-24,New Bedford - John Avery Parker,02010115, 28, 45, 36, 50, 42, 32, 31, 0, 0, 0, 0, 0, 0, 0, 0, 264 +NA,NA,"",2023-24,New Bedford - John B Devalles,02010050, 0, 55, 55, 44, 48, 54, 36, 0, 0, 0, 0, 0, 0, 0, 0, 292 +NA,NA,"",2023-24,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 302, 311, 259, 0, 0, 0, 0, 0, 872 +NA,NA,"",2023-24,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 752, 809, 719, 613, 0," 2,893" +NA,NA,"",2023-24,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 332, 333, 373, 0, 0, 0, 0, 0," 1,038" +NA,NA,"",2023-24,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 246, 280, 262, 0, 0, 0, 0, 0, 788 +NA,NA,"",2023-24,New Bedford - Sgt Wm H Carney Academy,02010045, 64, 105, 93, 105, 82, 91, 73, 0, 0, 0, 0, 0, 0, 0, 0, 613 +NA,NA,"",2023-24,New Bedford - Thomas R Rodman,02010125, 0, 34, 38, 34, 35, 31, 33, 0, 0, 0, 0, 0, 0, 0, 0, 205 +NA,NA,"",2023-24,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 0, 6, 14, 4, 12, 12, 15, 12, 11, 0, 86 +NA,NA,"",2023-24,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 1, 1, 9, 29, 31, 66, 42, 0, 179 +NA,NA,"",2023-24,New Bedford - William H Taylor,02010135, 34, 33, 36, 46, 41, 41, 30, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 112, 111, 104, 97, 105, 112, 89, 0, 730 +NA,NA,"",2023-24,New Salem-Wendell - Swift River,07280015, 18, 13, 12, 18, 18, 21, 17, 20, 0, 0, 0, 0, 0, 0, 0, 137 +NA,NA,"",2023-24,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 159, 141, 0, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Newburyport - Francis T Bresnahan Elementary,02040005, 64, 145, 121, 133, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 604 +NA,NA,"",2023-24,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 194, 206, 204, 3, 785 +NA,NA,"",2023-24,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 148, 166, 159, 0, 0, 0, 0, 0, 473 +NA,NA,"",2023-24,Newton - A E Angier,02070005, 0, 64, 52, 61, 63, 73, 71, 0, 0, 0, 0, 0, 0, 0, 0, 384 +NA,NA,"",2023-24,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 144, 125, 145, 0, 0, 0, 0, 0, 414 +NA,NA,"",2023-24,Newton - Bowen,02070015, 0, 51, 53, 57, 64, 67, 63, 0, 0, 0, 0, 0, 0, 0, 0, 355 +NA,NA,"",2023-24,Newton - C C Burr,02070020, 0, 54, 56, 58, 61, 62, 64, 0, 0, 0, 0, 0, 0, 0, 0, 355 +NA,NA,"",2023-24,Newton - Cabot,02070025, 0, 54, 73, 66, 84, 85, 66, 0, 0, 0, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 237, 248, 247, 0, 0, 0, 0, 0, 732 +NA,NA,"",2023-24,Newton - Countryside,02070040, 0, 43, 60, 67, 68, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 272, 305, 291, 0, 0, 0, 0, 0, 868 +NA,NA,"",2023-24,Newton - Franklin,02070055, 0, 44, 44, 59, 72, 63, 67, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Newton - Horace Mann,02070075, 0, 51, 50, 62, 64, 67, 66, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Newton - John Ward,02070120, 0, 42, 21, 35, 42, 34, 38, 0, 0, 0, 0, 0, 0, 0, 0, 212 +NA,NA,"",2023-24,Newton - Lincoln-Eliot,02070070, 0, 47, 58, 56, 59, 44, 64, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Newton - Mason-Rice,02070080, 0, 40, 60, 54, 61, 58, 61, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Newton - Memorial Spaulding,02070105, 0, 46, 53, 83, 57, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Newton - Newton Early Childhood Program,02070108, 185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185 +NA,NA,"",2023-24,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 532, 521, 525, 507, 33," 2,118" +NA,NA,"",2023-24,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503, 459, 463, 434, 2," 1,861" +NA,NA,"",2023-24,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 222, 224, 202, 0, 0, 0, 0, 0, 648 +NA,NA,"",2023-24,Newton - Peirce,02070100, 0, 36, 39, 36, 40, 40, 45, 0, 0, 0, 0, 0, 0, 0, 0, 236 +NA,NA,"",2023-24,Newton - Underwood,02070115, 0, 37, 45, 36, 44, 38, 42, 0, 0, 0, 0, 0, 0, 0, 0, 242 +NA,NA,"",2023-24,Newton - Williams,02070125, 0, 26, 35, 41, 37, 38, 38, 0, 0, 0, 0, 0, 0, 0, 0, 215 +NA,NA,"",2023-24,Newton - Zervas,02070130, 0, 67, 58, 73, 59, 76, 66, 0, 0, 0, 0, 0, 0, 0, 0, 399 +NA,NA,"",2023-24,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 163, 126, 136, 127, 0, 0, 0, 0, 0, 0, 0, 552 +NA,NA,"",2023-24,Norfolk - H Olive Day,02080015, 62, 166, 117, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 154, 148, 131, 0, 586 +NA,NA,"",2023-24,North Adams - Brayton,02090035, 24, 28, 33, 35, 25, 16, 38, 19, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,North Adams - Colegrove Park Elementary,02090008, 38, 29, 27, 32, 41, 35, 27, 25, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 75, 81, 82, 80, 95, 48, 4, 465 +NA,NA,"",2023-24,North Adams - Greylock,02090015, 25, 40, 37, 38, 29, 38, 41, 22, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,North Andover - Anne Bradstreet Early Childhood Center,02110005, 126, 287, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413 +NA,NA,"",2023-24,North Andover - Annie L Sargent School,02110018, 0, 0, 97, 93, 90, 85, 103, 0, 0, 0, 0, 0, 0, 0, 0, 468 +NA,NA,"",2023-24,North Andover - Atkinson,02110001, 0, 0, 53, 48, 52, 56, 57, 0, 0, 0, 0, 0, 0, 0, 0, 266 +NA,NA,"",2023-24,North Andover - Franklin,02110010, 0, 0, 72, 79, 66, 89, 74, 0, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,North Andover - Kittredge,02110015, 0, 0, 46, 40, 43, 46, 47, 0, 0, 0, 0, 0, 0, 0, 0, 222 +NA,NA,"",2023-24,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 347, 331, 344, 0," 1,380" +NA,NA,"",2023-24,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 344, 332, 341, 0, 0, 0, 0, 0," 1,017" +NA,NA,"",2023-24,North Andover - Thomson,02110020, 0, 0, 50, 52, 69, 62, 84, 0, 0, 0, 0, 0, 0, 0, 0, 317 +NA,NA,"",2023-24,North Attleborough - Amvet Boulevard,02120007, 0, 54, 49, 85, 70, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,North Attleborough - Community,02120030, 0, 49, 46, 49, 48, 42, 54, 0, 0, 0, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,North Attleborough - Falls,02120010, 0, 39, 48, 49, 35, 31, 38, 0, 0, 0, 0, 0, 0, 0, 0, 240 +NA,NA,"",2023-24,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 82, 83, 89, 100, 90, 97, 0, 0, 0, 0, 0, 0, 0, 0, 541 +NA,NA,"",2023-24,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 243, 301, 293, 17," 1,079" +NA,NA,"",2023-24,North Attleborough - North Attleborough Early Learning Center,02120020, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 309, 331, 324, 0, 0, 0, 0, 0, 964 +NA,NA,"",2023-24,North Attleborough - Roosevelt Avenue,02120015, 0, 36, 34, 46, 46, 43, 48, 0, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,North Brookfield - North Brookfield Elementary,02150015, 28, 26, 29, 42, 37, 38, 38, 36, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 23, 15, 15, 29, 20, 31, 0, 133 +NA,NA,"",2023-24,North Middlesex - Ashby Elementary,07350010, 0, 34, 22, 27, 38, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 +NA,NA,"",2023-24,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 116, 117, 105, 114, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 123, 122, 124, 117, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 183, 214, 176, 12, 757 +NA,NA,"",2023-24,North Middlesex - Spaulding Memorial,07350005, 0, 97, 78, 96, 80, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,North Middlesex - Squannacook Early Childhood Center,07350002, 93, 2, 3, 1, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106 +NA,NA,"",2023-24,North Middlesex - Varnum Brook,07350035, 0, 112, 120, 125, 135, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 612 +NA,NA,"",2023-24,North Reading - E Ethel Little School,02170003, 23, 40, 55, 41, 51, 58, 26, 0, 0, 0, 0, 0, 0, 0, 0, 294 +NA,NA,"",2023-24,North Reading - J Turner Hood,02170010, 22, 62, 86, 64, 63, 60, 53, 0, 0, 0, 0, 0, 0, 0, 0, 410 +NA,NA,"",2023-24,North Reading - L D Batchelder,02170005, 0, 75, 68, 79, 76, 85, 69, 0, 0, 0, 0, 0, 0, 0, 0, 452 +NA,NA,"",2023-24,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 171, 162, 127, 5, 618 +NA,NA,"",2023-24,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 187, 165, 191, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Northampton - Bridge Street,02100005, 24, 38, 44, 40, 35, 40, 38, 0, 0, 0, 0, 0, 0, 0, 0, 259 +NA,NA,"",2023-24,Northampton - Jackson Street,02100020, 0, 36, 50, 41, 53, 52, 44, 0, 0, 0, 0, 0, 0, 0, 0, 276 +NA,NA,"",2023-24,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 175, 204, 163, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Northampton - Leeds,02100025, 19, 33, 41, 33, 38, 56, 58, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 222, 231, 207, 9, 907 +NA,NA,"",2023-24,Northampton - R. K. Finn Ryan Road,02100029, 0, 35, 36, 37, 39, 41, 45, 0, 0, 0, 0, 0, 0, 0, 0, 233 +NA,NA,"",2023-24,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 147, 146, 128, 0, 569 +NA,NA,"",2023-24,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 276, 292, 318, 15," 1,194" +NA,NA,"",2023-24,Northborough - Fannie E Proctor,02130015, 0, 23, 40, 40, 41, 58, 45, 0, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Northborough - Lincoln Street,02130003, 0, 37, 42, 44, 58, 45, 56, 0, 0, 0, 0, 0, 0, 0, 0, 282 +NA,NA,"",2023-24,Northborough - Marguerite E Peaslee,02130014, 0, 40, 40, 57, 54, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 281 +NA,NA,"",2023-24,Northborough - Marion E Zeh,02130020, 0, 42, 42, 42, 42, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 255 +NA,NA,"",2023-24,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 172, 196, 201, 0, 0, 0, 0, 0, 569 +NA,NA,"",2023-24,Northbridge - Northbridge Elementary School,02140001, 92, 171, 143, 152, 147, 143, 112, 0, 0, 0, 0, 0, 0, 0, 0, 960 +NA,NA,"",2023-24,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 135, 102, 111, 0, 473 +NA,NA,"",2023-24,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 0, 129, 147, 156, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 366, 322, 295, 0," 1,343" +NA,NA,"",2023-24,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 140, 140, 112, 0, 520 +NA,NA,"",2023-24,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 180, 153, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Norton - J C Solmonese,02180015, 102, 104, 104, 100, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 526 +NA,NA,"",2023-24,Norton - L G Nourse Elementary,02180010, 0, 80, 65, 84, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 +NA,NA,"",2023-24,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 179, 171, 163, 3, 685 +NA,NA,"",2023-24,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 193, 185, 181, 0, 0, 0, 0, 0, 559 +NA,NA,"",2023-24,Norwell - Grace Farrar Cole,02190005, 23, 91, 70, 87, 93, 89, 88, 0, 0, 0, 0, 0, 0, 0, 0, 541 +NA,NA,"",2023-24,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 141, 150, 148, 0, 596 +NA,NA,"",2023-24,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 166, 168, 166, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Norwell - William G Vinal,02190020, 19, 67, 91, 88, 84, 105, 80, 0, 0, 0, 0, 0, 0, 0, 0, 534 +NA,NA,"",2023-24,Norwood - Balch,02200005, 0, 0, 67, 68, 54, 52, 65, 0, 0, 0, 0, 0, 0, 0, 0, 306 +NA,NA,"",2023-24,Norwood - Charles J Prescott,02200025, 0, 8, 57, 50, 55, 40, 40, 0, 0, 0, 0, 0, 0, 0, 0, 250 +NA,NA,"",2023-24,Norwood - Cornelius M Callahan,02200010, 0, 0, 45, 43, 42, 47, 57, 0, 0, 0, 0, 0, 0, 0, 0, 234 +NA,NA,"",2023-24,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 255, 274, 262, 0, 0, 0, 0, 0, 791 +NA,NA,"",2023-24,Norwood - F A Cleveland,02200015, 0, 0, 67, 55, 72, 69, 54, 0, 0, 0, 0, 0, 0, 0, 0, 317 +NA,NA,"",2023-24,Norwood - George F. Willett,02200075, 134, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422 +NA,NA,"",2023-24,Norwood - John P Oldham,02200020, 0, 0, 46, 64, 68, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 214, 239, 247, 5, 951 +NA,NA,"",2023-24,Oak Bluffs - Oak Bluffs Elementary,02210005, 15, 42, 45, 44, 48, 37, 48, 33, 51, 56, 0, 0, 0, 0, 0, 419 +NA,NA,"",2023-24,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 137, 135, 138, 0, 549 +NA,NA,"",2023-24,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 146, 147, 152, 6, 610 +NA,NA,"",2023-24,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 192, 239, 0, 0, 0, 0, 0, 431 +NA,NA,"",2023-24,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 40, 40, 40, 39, 40, 40, 40, 39, 30, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Orange - Fisher Hill School,02230010, 46, 68, 48, 82, 58, 75, 73, 73, 0, 0, 0, 0, 0, 0, 0, 523 +NA,NA,"",2023-24,Orleans - Orleans Elementary,02240005, 0, 29, 14, 32, 20, 21, 26, 0, 0, 0, 0, 0, 0, 0, 0, 142 +NA,NA,"",2023-24,Oxford - Alfred M Chaffee,02260010, 0, 101, 106, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 +NA,NA,"",2023-24,Oxford - Clara Barton,02260005, 0, 0, 0, 0, 88, 106, 127, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Oxford - Oxford High,02260505, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 100, 109, 88, 5, 463 +NA,NA,"",2023-24,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 0, 112, 143, 130, 0, 0, 0, 0, 0, 385 +NA,NA,"",2023-24,Palmer - Old Mill Pond,02270008, 54, 87, 84, 90, 109, 61, 91, 0, 0, 0, 0, 0, 0, 0, 0, 576 +NA,NA,"",2023-24,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 105, 90, 81, 46, 56, 72, 58, 1, 509 +NA,NA,"",2023-24,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 169, 152, 149, 0, 643 +NA,NA,"",2023-24,Peabody - Captain Samuel Brown,02290005, 0, 78, 54, 65, 60, 58, 61, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Peabody - Center,02290015, 0, 45, 49, 61, 54, 66, 74, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 417, 441, 425, 0, 0, 0, 0, 0," 1,283" +NA,NA,"",2023-24,Peabody - John E Burke,02290007, 0, 46, 43, 53, 47, 49, 57, 0, 0, 0, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Peabody - John E. McCarthy,02290016, 122, 44, 42, 45, 42, 43, 46, 0, 0, 0, 0, 0, 0, 0, 0, 384 +NA,NA,"",2023-24,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0, 0, 0, 1, 3, 5, 4, 3, 5, 8, 16, 15, 19, 19, 0, 98 +NA,NA,"",2023-24,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 371, 374, 299, 10," 1,420" +NA,NA,"",2023-24,Peabody - South Memorial,02290035, 73, 51, 69, 65, 64, 69, 83, 0, 0, 0, 0, 0, 0, 0, 0, 474 +NA,NA,"",2023-24,Peabody - Thomas Carroll,02290010, 17, 82, 92, 97, 87, 88, 116, 0, 0, 0, 0, 0, 0, 0, 0, 579 +NA,NA,"",2023-24,Peabody - West Memorial,02290045, 39, 45, 38, 41, 40, 36, 38, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Peabody - William A Welch Sr,02290027, 0, 62, 64, 64, 58, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Pelham - Pelham Elementary,02300005, 0, 17, 17, 20, 21, 19, 18, 17, 0, 0, 0, 0, 0, 0, 0, 129 +NA,NA,"",2023-24,Pembroke - Bryantville Elementary,02310003, 0, 61, 58, 69, 57, 57, 71, 68, 0, 0, 0, 0, 0, 0, 0, 441 +NA,NA,"",2023-24,Pembroke - Hobomock Elementary,02310010, 0, 48, 60, 60, 53, 53, 58, 64, 0, 0, 0, 0, 0, 0, 0, 396 +NA,NA,"",2023-24,Pembroke - North Pembroke Elementary,02310015, 74, 54, 71, 58, 73, 51, 61, 63, 0, 0, 0, 0, 0, 0, 0, 505 +NA,NA,"",2023-24,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 164, 196, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 172, 178, 172, 11, 715 +NA,NA,"",2023-24,Pentucket - Dr Frederick N Sweetsir,07450020, 37, 58, 69, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Pentucket - Dr John C Page School,07450015, 28, 40, 43, 47, 30, 56, 42, 40, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,Pentucket - Elmer S Bagnall,07450005, 38, 69, 65, 83, 64, 68, 65, 66, 0, 0, 0, 0, 0, 0, 0, 518 +NA,NA,"",2023-24,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 56, 60, 66, 63, 0, 0, 0, 0, 0, 0, 0, 245 +NA,NA,"",2023-24,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 159, 172, 0, 0, 0, 0, 0, 331 +NA,NA,"",2023-24,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 134, 155, 143, 0, 574 +NA,NA,"",2023-24,Petersham - Petersham Center,02340005, 0, 19, 19, 19, 19, 18, 26, 13, 0, 0, 0, 0, 0, 0, 0, 133 +NA,NA,"",2023-24,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 2, 20, 15, 0, 194 +NA,NA,"",2023-24,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, 1, 14, 6, 0, 114 +NA,NA,"",2023-24,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 5, 53, 10, 0, 159 +NA,NA,"",2023-24,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 62, 63, 62, 63, 63, 63, 63, 63, 63, 62, 55, 54, 43, 0, 779 +NA,NA,"",2023-24,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0, 50, 50, 47, 49, 0, 0, 0, 73, 74, 70, 67, 45, 41, 0, 566 +NA,NA,"",2023-24,Pioneer Valley - Bernardston Elementary,07500006, 23, 17, 31, 29, 30, 17, 24, 36, 0, 0, 0, 0, 0, 0, 0, 207 +NA,NA,"",2023-24,Pioneer Valley - Northfield Elementary,07500008, 29, 18, 14, 16, 22, 17, 25, 27, 0, 0, 0, 0, 0, 0, 0, 168 +NA,NA,"",2023-24,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 60, 60, 28, 16, 36, 41, 0, 241 +NA,NA,"",2023-24,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 45, 44, 42, 44, 44, 44, 57, 55, 46, 41, 34, 36, 20, 0, 552 +NA,NA,"",2023-24,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 70, 69, 70, 67, 67, 56, 0, 399 +NA,NA,"",2023-24,Pittsfield - Allendale,02360010, 14, 36, 52, 26, 38, 40, 45, 0, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Pittsfield - Crosby,02360065, 23, 50, 37, 30, 43, 29, 35, 0, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Pittsfield - Crosby Educational Academy,02360030, 0, 0, 1, 5, 4, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 21 +NA,NA,"",2023-24,Pittsfield - Eagle Education Academy,02360525, 0, 0, 0, 0, 0, 0, 0, 7, 4, 3, 9, 5, 1, 1, 0, 30 +NA,NA,"",2023-24,Pittsfield - Egremont,02360035, 23, 60, 53, 79, 45, 61, 65, 0, 0, 0, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 153, 157, 132, 0, 0, 0, 0, 0, 442 +NA,NA,"",2023-24,Pittsfield - Morningside Community School,02360055, 26, 57, 64, 54, 51, 54, 56, 0, 0, 0, 0, 0, 0, 0, 0, 362 +NA,NA,"",2023-24,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 165, 178, 185, 13, 724 +NA,NA,"",2023-24,Pittsfield - Robert T. Capeless Elementary School,02360045, 13, 33, 35, 33, 24, 25, 25, 0, 0, 0, 0, 0, 0, 0, 0, 188 +NA,NA,"",2023-24,Pittsfield - Silvio O Conte Community,02360105, 27, 46, 64, 49, 55, 48, 59, 0, 0, 0, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Pittsfield - Stearns,02360090, 16, 22, 41, 30, 28, 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, 210 +NA,NA,"",2023-24,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 234, 212, 195, 0, 875 +NA,NA,"",2023-24,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 209, 165, 157, 0, 0, 0, 0, 0, 531 +NA,NA,"",2023-24,Pittsfield - Williams,02360100, 14, 47, 38, 40, 42, 46, 34, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Plainville - Anna Ware Jackson,02380010, 51, 96, 85, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 +NA,NA,"",2023-24,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 63, 86, 82, 83, 0, 0, 0, 0, 0, 0, 0, 314 +NA,NA,"",2023-24,Plymouth - Cold Spring,02390005, 0, 40, 33, 32, 39, 39, 37, 0, 0, 0, 0, 0, 0, 0, 0, 220 +NA,NA,"",2023-24,Plymouth - Federal Furnace School,02390011, 0, 51, 66, 73, 66, 63, 64, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Plymouth - Hedge,02390010, 0, 37, 43, 37, 32, 31, 38, 0, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Plymouth - Indian Brook,02390012, 0, 84, 84, 80, 97, 88, 110, 0, 0, 0, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Plymouth - Manomet Elementary,02390015, 0, 53, 42, 44, 37, 54, 43, 0, 0, 0, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Plymouth - Nathaniel Morton Elementary,02390030, 0, 79, 79, 84, 89, 91, 80, 0, 0, 0, 0, 0, 0, 0, 0, 502 +NA,NA,"",2023-24,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 305, 304, 262, 0, 0, 0, 0, 0, 871 +NA,NA,"",2023-24,Plymouth - Plymouth Early Childhood Center,02390003, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219 +NA,NA,"",2023-24,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 289, 339, 302, 0," 1,247" +NA,NA,"",2023-24,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 258, 246, 253, 0," 1,003" +NA,NA,"",2023-24,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 199, 191, 215, 0, 0, 0, 0, 0, 605 +NA,NA,"",2023-24,Plymouth - South Elementary,02390046, 0, 96, 98, 130, 96, 108, 100, 0, 0, 0, 0, 0, 0, 0, 0, 628 +NA,NA,"",2023-24,Plymouth - West Elementary,02390047, 0, 71, 47, 72, 54, 60, 39, 0, 0, 0, 0, 0, 0, 0, 0, 343 +NA,NA,"",2023-24,Plympton - Dennett Elementary,02400010, 0, 34, 36, 47, 34, 44, 29, 29, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 33, 61, 61, 65, 57, 80, 78, 72, 80, 69, 65, 71, 64, 61, 0, 917 +NA,NA,"",2023-24,Provincetown - Provincetown Schools,02420020, 21, 18, 11, 14, 9, 13, 13, 18, 7, 13, 0, 0, 0, 0, 0, 137 +NA,NA,"",2023-24,Quabbin - Hardwick Elementary,07530005, 14, 30, 26, 36, 22, 36, 25, 0, 0, 0, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Quabbin - Hubbardston Center,07530010, 35, 48, 48, 37, 53, 50, 42, 0, 0, 0, 0, 0, 0, 0, 0, 313 +NA,NA,"",2023-24,Quabbin - New Braintree Grade,07530020, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 35 +NA,NA,"",2023-24,Quabbin - Oakham Center,07530025, 0, 23, 20, 23, 33, 24, 33, 0, 0, 0, 0, 0, 0, 0, 0, 156 +NA,NA,"",2023-24,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 140, 116, 121, 0, 567 +NA,NA,"",2023-24,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 184, 165, 178, 0, 0, 0, 0, 0, 527 +NA,NA,"",2023-24,Quabbin - Ruggles Lane,07530030, 47, 51, 50, 64, 55, 66, 48, 0, 0, 0, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Quaboag Regional - Quaboag Integrated Preschool,07780001, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53 +NA,NA,"",2023-24,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 87, 80, 82, 0, 344 +NA,NA,"",2023-24,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 79, 91, 0, 0, 0, 0, 0, 170 +NA,NA,"",2023-24,Quaboag Regional - Warren Elementary,07780005, 0, 30, 35, 61, 43, 47, 41, 50, 0, 0, 0, 0, 0, 0, 0, 307 +NA,NA,"",2023-24,Quaboag Regional - West Brookfield Elementary,07780010, 0, 29, 31, 34, 33, 42, 29, 46, 0, 0, 0, 0, 0, 0, 0, 244 +NA,NA,"",2023-24,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 +NA,NA,"",2023-24,Quincy - Atherton Hough,02430040, 0, 39, 41, 31, 50, 47, 40, 0, 0, 0, 0, 0, 0, 0, 0, 248 +NA,NA,"",2023-24,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 183, 199, 178, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,Quincy - Beechwood Knoll Elementary,02430020, 0, 65, 53, 54, 53, 60, 54, 0, 0, 0, 0, 0, 0, 0, 0, 339 +NA,NA,"",2023-24,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 105, 103, 110, 0, 0, 0, 0, 0, 318 +NA,NA,"",2023-24,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 240, 209, 221, 0, 0, 0, 0, 0, 670 +NA,NA,"",2023-24,Quincy - Charles A Bernazzani Elementary,02430025, 0, 54, 62, 52, 56, 55, 55, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Quincy - Clifford H Marshall Elementary,02430055, 0, 94, 112, 111, 108, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 529 +NA,NA,"",2023-24,Quincy - Francis W Parker,02430075, 0, 53, 49, 57, 66, 44, 67, 0, 0, 0, 0, 0, 0, 0, 0, 336 +NA,NA,"",2023-24,Quincy - Lincoln-Hancock Community School,02430035, 0, 108, 108, 120, 128, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 567 +NA,NA,"",2023-24,Quincy - Merrymount,02430060, 0, 54, 51, 54, 45, 48, 67, 0, 0, 0, 0, 0, 0, 0, 0, 319 +NA,NA,"",2023-24,Quincy - Montclair,02430065, 0, 48, 76, 57, 77, 69, 82, 0, 0, 0, 0, 0, 0, 0, 0, 409 +NA,NA,"",2023-24,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, 372, 361, 366, 29," 1,508" +NA,NA,"",2023-24,Quincy - Point Webster Middle,02430325, 55, 0, 0, 0, 0, 0, 102, 85, 90, 76, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 376, 392, 359, 0," 1,473" +NA,NA,"",2023-24,Quincy - Snug Harbor Community School,02430090, 89, 55, 45, 50, 50, 62, 38, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Quincy - South West Middle School,02430320, 0, 0, 0, 0, 0, 0, 92, 112, 124, 115, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Quincy - Squantum,02430095, 0, 54, 69, 57, 51, 65, 64, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,Quincy - Wollaston School,02430110, 0, 47, 50, 54, 56, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 315 +NA,NA,"",2023-24,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 106, 92, 97, 78, 76, 55, 0, 504 +NA,NA,"",2023-24,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 44, 36, 47, 41, 47, 46, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Randolph - J F Kennedy Elementary,02440018, 128, 61, 64, 67, 47, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Randolph - Margaret L Donovan,02440015, 0, 61, 66, 68, 58, 84, 71, 0, 0, 0, 0, 0, 0, 0, 0, 408 +NA,NA,"",2023-24,Randolph - Martin E Young Elementary,02440040, 0, 40, 44, 53, 46, 47, 45, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 226, 184, 192, 0, 0, 0, 0, 0, 602 +NA,NA,"",2023-24,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 185, 158, 136, 2, 664 +NA,NA,"",2023-24,Reading - Alice M Barrows,02460002, 0, 58, 54, 60, 56, 65, 63, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 123, 146, 134, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,Reading - Birch Meadow,02460005, 0, 65, 63, 53, 52, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 371 +NA,NA,"",2023-24,Reading - J Warren Killam,02460017, 0, 76, 63, 76, 54, 79, 73, 0, 0, 0, 0, 0, 0, 0, 0, 421 +NA,NA,"",2023-24,Reading - Joshua Eaton,02460010, 0, 59, 65, 65, 62, 73, 68, 0, 0, 0, 0, 0, 0, 0, 0, 392 +NA,NA,"",2023-24,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 260, 256, 291, 0," 1,097" +NA,NA,"",2023-24,Reading - RISE PreSchool,02460001, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 +NA,NA,"",2023-24,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 161, 126, 164, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Reading - Wood End Elementary School,02460020, 0, 43, 35, 44, 31, 49, 47, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Revere - A. C. Whelan Elementary School,02480003, 0, 76, 112, 106, 132, 121, 137, 0, 0, 0, 0, 0, 0, 0, 0, 684 +NA,NA,"",2023-24,Revere - Abraham Lincoln,02480025, 56, 79, 96, 93, 90, 88, 102, 0, 0, 0, 0, 0, 0, 0, 0, 604 +NA,NA,"",2023-24,Revere - Beachmont Veterans Memorial School,02480013, 30, 52, 61, 48, 45, 52, 39, 0, 0, 0, 0, 0, 0, 0, 0, 327 +NA,NA,"",2023-24,Revere - CityLab Innovation High School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 39, 10, 18, 0, 109 +NA,NA,"",2023-24,Revere - Garfield Elementary School,02480056, 48, 102, 110, 106, 101, 104, 119, 0, 0, 0, 0, 0, 0, 0, 0, 690 +NA,NA,"",2023-24,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 187, 186, 193, 0, 0, 0, 0, 0, 566 +NA,NA,"",2023-24,Revere - Paul Revere,02480050, 0, 80, 81, 84, 82, 78, 62, 0, 0, 0, 0, 0, 0, 0, 0, 467 +NA,NA,"",2023-24,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 554, 544, 576, 409, 15," 2,098" +NA,NA,"",2023-24,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 193, 189, 197, 0, 0, 0, 0, 0, 579 +NA,NA,"",2023-24,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 97, 98, 113, 112, 118, 114, 0, 0, 0, 0, 0, 0, 0, 0, 652 +NA,NA,"",2023-24,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 188, 186, 194, 0, 0, 0, 0, 0, 568 +NA,NA,"",2023-24,Richmond - Richmond Consolidated,02490005, 15, 14, 13, 18, 18, 15, 19, 17, 12, 17, 0, 0, 0, 0, 0, 158 +NA,NA,"",2023-24,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 90, 94, 95, 96, 69, 70, 61, 48, 0, 623 +NA,NA,"",2023-24,River Valley Charter (District) - River Valley Charter School,04820050, 0, 32, 32, 31, 33, 33, 33, 32, 30, 32, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,Rochester - Rochester Memorial,02500005, 19, 62, 57, 62, 61, 70, 74, 89, 0, 0, 0, 0, 0, 0, 0, 494 +NA,NA,"",2023-24,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 172, 146, 185, 194, 0, 0, 0, 0, 0, 697 +NA,NA,"",2023-24,Rockland - Phelps Elementary School,02510060, 0, 0, 155, 162, 150, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 640 +NA,NA,"",2023-24,Rockland - R Stewart Esten Early Childhood Center,02510025, 66, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Rockland - Rockland Senior High,02510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 158, 119, 122, 6, 577 +NA,NA,"",2023-24,Rockport - Rockport Elementary,02520005, 21, 37, 38, 42, 47, 36, 51, 0, 0, 0, 0, 0, 0, 0, 0, 272 +NA,NA,"",2023-24,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 50, 42, 66, 0, 226 +NA,NA,"",2023-24,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 56, 54, 63, 0, 0, 0, 0, 0, 173 +NA,NA,"",2023-24,Rowe - Rowe Elementary,02530005, 8, 5, 7, 5, 8, 13, 8, 7, 0, 0, 0, 0, 0, 0, 0, 61 +NA,NA,"",2023-24,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 73, 141, 182, 212, 192, 126, 113, 99, 0," 1,138" +NA,NA,"",2023-24,Salem - Bates,02580003, 35, 63, 59, 64, 57, 68, 51, 0, 0, 0, 0, 0, 0, 0, 0, 397 +NA,NA,"",2023-24,Salem - Bentley Academy Innovation School,02580010, 0, 49, 40, 41, 52, 46, 42, 0, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Salem - Carlton,02580015, 0, 42, 44, 40, 42, 48, 38, 0, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 197, 214, 214, 0, 0, 0, 0, 0, 625 +NA,NA,"",2023-24,Salem - Horace Mann Laboratory,02580030, 31, 43, 41, 45, 41, 46, 60, 0, 0, 0, 0, 0, 0, 0, 0, 307 +NA,NA,"",2023-24,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 4, 11, 22, 0, 45 +NA,NA,"",2023-24,Salem - Salem Early Childhood,02580001, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112 +NA,NA,"",2023-24,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 240, 208, 215, 8, 948 +NA,NA,"",2023-24,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 6, 8, 1, 0, 17 +NA,NA,"",2023-24,Salem - Saltonstall School,02580050, 0, 39, 41, 39, 45, 47, 48, 42, 43, 46, 0, 0, 0, 0, 0, 390 +NA,NA,"",2023-24,Salem - Witchcraft Heights,02580070, 0, 71, 74, 81, 70, 84, 66, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 72, 75, 72, 79, 56, 69, 65, 0, 488 +NA,NA,"",2023-24,Sandwich - Forestdale School,02610002, 88, 144, 162, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 543 +NA,NA,"",2023-24,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 174, 151, 185, 164, 0, 0, 0, 0, 0, 0, 0, 674 +NA,NA,"",2023-24,Sandwich - Sandwich Middle High School,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 179, 191, 117, 143, 143, 137, 2, 912 +NA,NA,"",2023-24,Saugus - Belmonte STEAM Academy,02620060, 0, 0, 0, 199, 203, 197, 201, 0, 0, 0, 0, 0, 0, 0, 0, 800 +NA,NA,"",2023-24,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 179, 193, 177, 3, 727 +NA,NA,"",2023-24,Saugus - Saugus Middle School,02620305, 0, 0, 0, 0, 0, 0, 0, 206, 198, 213, 0, 0, 0, 0, 0, 617 +NA,NA,"",2023-24,Saugus - Veterans Early Learning Center,02620065, 91, 172, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466 +NA,NA,"",2023-24,Savoy - Emma L Miller Elementary School,02630010, 8, 5, 8, 2, 5, 6, 6, 7, 0, 0, 0, 0, 0, 0, 0, 47 +NA,NA,"",2023-24,Scituate - Cushing Elementary,02640007, 0, 59, 71, 60, 52, 66, 59, 0, 0, 0, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 220, 190, 204, 0, 0, 0, 0, 0, 614 +NA,NA,"",2023-24,Scituate - Hatherly Elementary,02640010, 0, 45, 43, 34, 36, 42, 50, 0, 0, 0, 0, 0, 0, 0, 0, 250 +NA,NA,"",2023-24,Scituate - Jenkins Elementary School,02640015, 0, 48, 58, 49, 59, 63, 58, 0, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 158, 201, 209, 1, 749 +NA,NA,"",2023-24,Scituate - Wampatuck Elementary,02640020, 79, 43, 67, 61, 56, 60, 64, 0, 0, 0, 0, 0, 0, 0, 0, 430 +NA,NA,"",2023-24,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 175, 178, 161, 0, 0, 0, 0, 0, 514 +NA,NA,"",2023-24,Seekonk - George R Martin,02650007, 0, 77, 71, 68, 71, 87, 72, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Seekonk - Mildred Aitken School,02650015, 47, 70, 86, 95, 104, 82, 91, 0, 0, 0, 0, 0, 0, 0, 0, 575 +NA,NA,"",2023-24,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 112, 149, 129, 0, 520 +NA,NA,"",2023-24,Seekonk - Seekonk Transitions Academy,02650605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6 +NA,NA,"",2023-24,Sharon - Cottage Street,02660005, 0, 62, 84, 61, 76, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 439 +NA,NA,"",2023-24,Sharon - East Elementary,02660010, 0, 58, 74, 74, 84, 83, 112, 0, 0, 0, 0, 0, 0, 0, 0, 485 +NA,NA,"",2023-24,Sharon - Heights Elementary,02660015, 0, 73, 88, 86, 89, 108, 98, 0, 0, 0, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Sharon - Sharon Early Childhood Center,02660001, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31 +NA,NA,"",2023-24,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 293, 277, 272, 0," 1,132" +NA,NA,"",2023-24,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 257, 271, 279, 0, 0, 0, 0, 0, 807 +NA,NA,"",2023-24,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 325, 333, 327, 0," 1,306" +NA,NA,"",2023-24,Sherborn - Pine Hill,02690010, 12, 50, 64, 70, 65, 70, 70, 0, 0, 0, 0, 0, 0, 0, 0, 401 +NA,NA,"",2023-24,Shrewsbury - Calvin Coolidge School,02710015, 0, 53, 59, 60, 50, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288 +NA,NA,"",2023-24,Shrewsbury - Floral Street School,02710020, 0, 95, 103, 110, 111, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542 +NA,NA,"",2023-24,Shrewsbury - Major Howard W. Beal School,02710005, 0, 117, 128, 113, 122, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 608 +NA,NA,"",2023-24,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 482, 459, 0, 0, 0, 0, 0, 941 +NA,NA,"",2023-24,Shrewsbury - Parker Road Preschool,02710040, 199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199 +NA,NA,"",2023-24,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 467, 450, 0, 0, 0, 0, 0, 0, 0, 917 +NA,NA,"",2023-24,Shrewsbury - Shrewsbury High School,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485, 507, 438, 432, 17," 1,879" +NA,NA,"",2023-24,Shrewsbury - Spring Street School,02710035, 0, 50, 50, 56, 56, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Shrewsbury - Walter J. Paton School,02710025, 0, 43, 51, 59, 49, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Shutesbury - Shutesbury Elementary,02720005, 15, 14, 11, 14, 11, 17, 15, 14, 0, 0, 0, 0, 0, 0, 0, 111 +NA,NA,"",2023-24,Silver Lake - Silver Lake Regional High,07600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 265, 261, 235, 11," 1,026" +NA,NA,"",2023-24,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 281, 282, 0, 0, 0, 0, 0, 563 +NA,NA,"",2023-24,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 51, 66, 49, 49, 42, 45, 0, 302 +NA,NA,"",2023-24,Somerset - Chace Street,02730005, 0, 40, 46, 47, 51, 49, 72, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Somerset - North Elementary,02730008, 76, 59, 63, 66, 64, 66, 70, 0, 0, 0, 0, 0, 0, 0, 0, 464 +NA,NA,"",2023-24,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 184, 217, 165, 0, 0, 0, 0, 0, 566 +NA,NA,"",2023-24,Somerset - South,02730015, 0, 38, 37, 51, 42, 44, 50, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 259, 225, 245, 10, 960 +NA,NA,"",2023-24,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 18, 65, 66, 68, 78, 62, 59, 44, 49, 55, 0, 0, 0, 0, 0, 564 +NA,NA,"",2023-24,Somerville - Arthur D Healey,02740075, 29, 34, 44, 56, 58, 57, 67, 44, 52, 45, 0, 0, 0, 0, 0, 486 +NA,NA,"",2023-24,Somerville - Benjamin G Brown,02740015, 0, 45, 37, 44, 31, 38, 30, 0, 0, 0, 0, 0, 0, 0, 0, 225 +NA,NA,"",2023-24,Somerville - Capuano Early Childhood Center,02740005, 189, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 +NA,NA,"",2023-24,Somerville - E Somerville Community,02740111, 18, 65, 62, 91, 88, 89, 90, 81, 78, 81, 0, 0, 0, 0, 0, 743 +NA,NA,"",2023-24,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 14, 19, 9, 1, 64 +NA,NA,"",2023-24,Somerville - John F Kennedy,02740083, 18, 48, 47, 44, 41, 51, 39, 50, 52, 58, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0, 0, 0, 0, 13 +NA,NA,"",2023-24,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349, 343, 356, 315, 10," 1,373" +NA,NA,"",2023-24,Somerville - West Somerville Neighborhood,02740115, 18, 43, 39, 41, 39, 43, 33, 39, 43, 40, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Somerville - Winter Hill Community,02740120, 18, 30, 48, 42, 49, 45, 32, 35, 50, 54, 0, 0, 0, 0, 0, 403 +NA,NA,"",2023-24,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 142, 128, 127, 114, 0, 0, 0, 0, 0, 511 +NA,NA,"",2023-24,South Hadley - Mosier,02780020, 0, 0, 0, 144, 103, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360 +NA,NA,"",2023-24,South Hadley - Plains Elementary,02780015, 50, 106, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265 +NA,NA,"",2023-24,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 110, 135, 128, 2, 508 +NA,NA,"",2023-24,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 232, 208, 199, 0, 871 +NA,NA,"",2023-24,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 76, 83, 84, 82, 83, 85, 79, 79, 84, 89, 84, 78, 69, 0," 1,055" +NA,NA,"",2023-24,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 170, 164, 157, 0, 667 +NA,NA,"",2023-24,Southampton - William E Norris,02750005, 50, 62, 62, 67, 58, 59, 60, 53, 0, 0, 0, 0, 0, 0, 0, 471 +NA,NA,"",2023-24,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 122, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 154, 131, 0, 0, 0, 0, 0, 0, 0, 0, 285 +NA,NA,"",2023-24,Southborough - Mary E Finn School,02760008, 107, 109, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 +NA,NA,"",2023-24,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 141, 130, 136, 0, 0, 0, 0, 0, 407 +NA,NA,"",2023-24,Southbridge - Charlton Street,02770005, 10, 6, 3, 68, 72, 68, 56, 0, 0, 0, 0, 0, 0, 0, 0, 283 +NA,NA,"",2023-24,Southbridge - Eastford Road,02770010, 41, 165, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Southbridge - Southbridge Academy,02770525, 0, 0, 0, 0, 0, 0, 0, 5, 3, 3, 8, 7, 9, 1, 0, 36 +NA,NA,"",2023-24,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 121, 113, 109, 0, 465 +NA,NA,"",2023-24,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 145, 142, 141, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Southbridge - West Street,02770020, 0, 0, 3, 80, 85, 94, 66, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417, 404, 397, 379, 0," 1,597" +NA,NA,"",2023-24,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 30, 46, 48, 42, 41, 42, 32, 0, 281 +NA,NA,"",2023-24,Southern Berkshire - New Marlborough Central,07650018, 19, 7, 11, 19, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65 +NA,NA,"",2023-24,Southern Berkshire - South Egremont,07650030, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11 +NA,NA,"",2023-24,Southern Berkshire - Undermountain,07650035, 33, 32, 25, 42, 41, 43, 41, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 304, 299, 280, 0," 1,193" +NA,NA,"",2023-24,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 87, 98, 102, 94, 0, 0, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 110, 116, 93, 107, 91, 96, 1, 614 +NA,NA,"",2023-24,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 43, 85, 99, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 +NA,NA,"",2023-24,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 106, 72, 68, 3, 331 +NA,NA,"",2023-24,Spencer-E Brookfield - East Brookfield Elementary,07670008, 106, 27, 19, 22, 16, 22, 14, 21, 0, 0, 0, 0, 0, 0, 0, 247 +NA,NA,"",2023-24,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 86, 97, 116, 90, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Spencer-E Brookfield - Wire Village School,07670040, 0, 89, 79, 97, 85, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 451 +NA,NA,"",2023-24,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 66, 48, 41, 39, 43, 46, 49, 37, 33, 23, 0, 0, 0, 0, 0, 425 +NA,NA,"",2023-24,Springfield - Alice B Beal Elementary,02810175, 33, 42, 48, 46, 44, 40, 51, 0, 0, 0, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Springfield - Arthur T Talmadge,02810165, 20, 28, 44, 25, 34, 39, 34, 0, 0, 0, 0, 0, 0, 0, 0, 224 +NA,NA,"",2023-24,Springfield - Balliet Preschool,02810003, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131 +NA,NA,"",2023-24,Springfield - Benjamin Swan Elementary,02810085, 49, 79, 80, 73, 81, 71, 66, 0, 0, 0, 0, 0, 0, 0, 0, 499 +NA,NA,"",2023-24,Springfield - Brightwood,02810025, 52, 72, 58, 79, 72, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 480 +NA,NA,"",2023-24,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 91, 85, 78, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 54, 45, 39, 35, 47, 40, 43, 0, 303 +NA,NA,"",2023-24,Springfield - Daniel B Brunton,02810035, 52, 49, 52, 35, 31, 41, 35, 0, 0, 0, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Springfield - Early Childhood Education Center,02810001, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188 +NA,NA,"",2023-24,Springfield - Edward P. Boland School,02810010, 103, 85, 77, 74, 86, 68, 61, 0, 0, 0, 0, 0, 0, 0, 0, 554 +NA,NA,"",2023-24,Springfield - Elias Brookings,02810030, 38, 46, 33, 50, 37, 46, 39, 0, 0, 0, 0, 0, 0, 0, 0, 289 +NA,NA,"",2023-24,Springfield - Emergence Academy,02810318, 0, 0, 0, 0, 0, 0, 0, 41, 48, 47, 41, 54, 0, 0, 0, 231 +NA,NA,"",2023-24,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 86, 82, 116, 0, 0, 0, 0, 0, 284 +NA,NA,"",2023-24,Springfield - Frank H Freedman,02810075, 38, 46, 35, 36, 39, 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, 267 +NA,NA,"",2023-24,Springfield - Frederick Harris,02810080, 68, 60, 77, 78, 74, 73, 82, 0, 0, 0, 0, 0, 0, 0, 0, 512 +NA,NA,"",2023-24,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 11, 14, 0, 28 +NA,NA,"",2023-24,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 11, 11, 0, 25 +NA,NA,"",2023-24,Springfield - German Gerena Community School,02810195, 73, 95, 98, 87, 87, 93, 90, 0, 0, 0, 0, 0, 0, 0, 0, 623 +NA,NA,"",2023-24,Springfield - Glenwood,02810065, 20, 46, 49, 55, 36, 46, 44, 0, 0, 0, 0, 0, 0, 0, 0, 296 +NA,NA,"",2023-24,Springfield - Glickman Elementary,02810068, 34, 44, 34, 50, 43, 56, 54, 0, 0, 0, 0, 0, 0, 0, 0, 315 +NA,NA,"",2023-24,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 258, 320, 235, 0," 1,060" +NA,NA,"",2023-24,Springfield - Hiram L Dorman,02810050, 31, 41, 42, 44, 34, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 277 +NA,NA,"",2023-24,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 71, 64, 67, 0, 0, 0, 0, 0, 202 +NA,NA,"",2023-24,Springfield - Indian Orchard Elementary,02810100, 82, 84, 103, 82, 65, 85, 64, 0, 0, 0, 0, 0, 0, 0, 0, 565 +NA,NA,"",2023-24,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 117, 115, 135, 0, 0, 0, 0, 0, 367 +NA,NA,"",2023-24,Springfield - John J Duggan Academy,02810320, 0, 0, 0, 0, 0, 0, 0, 186, 179, 172, 78, 76, 75, 65, 0, 831 +NA,NA,"",2023-24,Springfield - Kensington International School,02810110, 34, 34, 39, 47, 28, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,Springfield - Kiley Academy,02810316, 0, 0, 0, 0, 0, 0, 0, 81, 98, 108, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Springfield - Kiley Prep,02810315, 0, 0, 0, 0, 0, 0, 0, 85, 94, 84, 0, 0, 0, 0, 0, 263 +NA,NA,"",2023-24,Springfield - Liberty,02810115, 31, 34, 26, 33, 38, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 246 +NA,NA,"",2023-24,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 1, 0, 7 +NA,NA,"",2023-24,Springfield - Lincoln,02810120, 62, 62, 54, 67, 78, 65, 66, 0, 0, 0, 0, 0, 0, 0, 0, 454 +NA,NA,"",2023-24,Springfield - Margaret C Ells,02810060, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138 +NA,NA,"",2023-24,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 32, 42, 51, 43, 36, 46, 40, 0, 0, 0, 0, 0, 0, 0, 0, 290 +NA,NA,"",2023-24,Springfield - Mary M Lynch,02810140, 20, 31, 45, 29, 36, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 226 +NA,NA,"",2023-24,Springfield - Mary M Walsh,02810155, 24, 33, 36, 40, 29, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Springfield - Mary O Pottenger,02810145, 48, 50, 48, 58, 46, 58, 58, 0, 0, 0, 0, 0, 0, 0, 0, 366 +NA,NA,"",2023-24,Springfield - Milton Bradley School,02810023, 57, 44, 57, 53, 54, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 391 +NA,NA,"",2023-24,Springfield - Rebecca M Johnson,02810055, 67, 87, 92, 86, 86, 82, 95, 0, 0, 0, 0, 0, 0, 0, 0, 595 +NA,NA,"",2023-24,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 56, 77, 83, 0, 0, 0, 0, 0, 216 +NA,NA,"",2023-24,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370, 361, 341, 311, 0," 1,383" +NA,NA,"",2023-24,Springfield - Samuel Bowles,02810020, 39, 59, 33, 28, 47, 53, 51, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 66, 61, 62, 0, 0, 0, 0, 0, 189 +NA,NA,"",2023-24,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 635, 512, 360, 535, 0," 2,042" +NA,NA,"",2023-24,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 32, 43, 96, 0, 221 +NA,NA,"",2023-24,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333, 333, 240, 191, 0," 1,097" +NA,NA,"",2023-24,Springfield - Springfield International Academy at Johnson,02810215, 0, 0, 0, 0, 7, 12, 13, 0, 0, 0, 0, 0, 0, 0, 0, 32 +NA,NA,"",2023-24,Springfield - Springfield International Academy at Sci-Tech,02810700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 32, 23, 1, 0, 72 +NA,NA,"",2023-24,Springfield - Springfield Legacy Academy,02810317, 0, 0, 0, 0, 0, 0, 0, 123, 111, 121, 0, 0, 0, 0, 0, 355 +NA,NA,"",2023-24,Springfield - Springfield Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 2, 3, 9, 0, 0, 0, 0, 0, 14 +NA,NA,"",2023-24,Springfield - Springfield Public Day Elementary School,02810005, 0, 2, 1, 3, 10, 9, 12, 0, 0, 0, 0, 0, 0, 0, 0, 37 +NA,NA,"",2023-24,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 16, 16, 6, 0, 78 +NA,NA,"",2023-24,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 19, 21, 21, 0, 0, 0, 0, 0, 61 +NA,NA,"",2023-24,Springfield - Springfield Realization Academy,02810335, 0, 0, 0, 0, 0, 0, 0, 69, 65, 65, 0, 0, 0, 0, 0, 199 +NA,NA,"",2023-24,Springfield - Springfield Transition Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 115 +NA,NA,"",2023-24,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 91, 96, 100, 0, 0, 0, 0, 0, 287 +NA,NA,"",2023-24,Springfield - Sumner Avenue,02810160, 62, 73, 58, 70, 62, 75, 88, 0, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 98, 94, 92, 87, 88, 88, 62, 0, 609 +NA,NA,"",2023-24,Springfield - The Springfield Virtual School,02810705, 0, 0, 0, 8, 11, 26, 26, 29, 32, 35, 57, 30, 29, 21, 0, 304 +NA,NA,"",2023-24,Springfield - Thomas M Balliet,02810015, 38, 37, 41, 47, 47, 35, 33, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 86, 85, 81, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Springfield - Warner,02810180, 45, 33, 34, 26, 36, 33, 31, 0, 0, 0, 0, 0, 0, 0, 0, 238 +NA,NA,"",2023-24,Springfield - Washington,02810185, 72, 42, 71, 69, 41, 59, 43, 0, 0, 0, 0, 0, 0, 0, 0, 397 +NA,NA,"",2023-24,Springfield - White Street,02810190, 19, 51, 66, 64, 61, 71, 60, 0, 0, 0, 0, 0, 0, 0, 0, 392 +NA,NA,"",2023-24,Springfield - William N. DeBerry,02810045, 48, 68, 50, 78, 66, 56, 58, 0, 0, 0, 0, 0, 0, 0, 0, 424 +NA,NA,"",2023-24,Springfield International Charter (District) - Springfield International Charter School,04410505, 0, 90, 104, 107, 120, 117, 114, 141, 122, 126, 140, 97, 107, 92, 1," 1,478" +NA,NA,"",2023-24,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 54, 54, 54, 56, 54, 54, 53, 55, 53, 0, 0, 0, 0, 0, 487 +NA,NA,"",2023-24,Stoneham - Colonial Park,02840005, 32, 48, 41, 44, 47, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Stoneham - Robin Hood,02840025, 23, 85, 74, 70, 71, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 +NA,NA,"",2023-24,Stoneham - South,02840030, 31, 67, 71, 65, 69, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 178, 156, 186, 180, 0, 0, 0, 0, 0, 700 +NA,NA,"",2023-24,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 161, 142, 150, 3, 585 +NA,NA,"",2023-24,Stoughton - Edwin A Jones Early Childhood Center,02850012, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113 +NA,NA,"",2023-24,Stoughton - Helen Hansen Elementary,02850010, 0, 35, 43, 53, 37, 44, 40, 0, 0, 0, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Stoughton - Joseph H Gibbons,02850025, 0, 63, 63, 63, 60, 61, 66, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 69, 70, 79, 52, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 254, 274, 305, 0, 0, 0, 0, 0, 833 +NA,NA,"",2023-24,Stoughton - Richard L. Wilkins Elementary School,02850020, 14, 57, 76, 62, 39, 44, 41, 0, 0, 0, 0, 0, 0, 0, 0, 333 +NA,NA,"",2023-24,Stoughton - South Elementary,02850015, 0, 47, 55, 44, 49, 55, 43, 0, 0, 0, 0, 0, 0, 0, 0, 293 +NA,NA,"",2023-24,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 247, 299, 265, 3," 1,097" +NA,NA,"",2023-24,Sturbridge - Burgess Elementary,02870005, 66, 119, 115, 124, 110, 137, 109, 122, 0, 0, 0, 0, 0, 0, 0, 902 +NA,NA,"",2023-24,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 215, 209, 185, 0, 826 +NA,NA,"",2023-24,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 272, 268, 288, 0, 0, 0, 0, 0, 828 +NA,NA,"",2023-24,Sudbury - General John Nixon Elementary,02880025, 0, 51, 60, 55, 49, 73, 46, 0, 0, 0, 0, 0, 0, 0, 0, 334 +NA,NA,"",2023-24,Sudbury - Israel Loring School,02880015, 0, 60, 75, 78, 60, 74, 70, 0, 0, 0, 0, 0, 0, 0, 0, 417 +NA,NA,"",2023-24,Sudbury - Josiah Haynes,02880010, 0, 76, 61, 67, 49, 73, 63, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Sudbury - Peter Noyes,02880030, 72, 69, 89, 73, 86, 92, 90, 0, 0, 0, 0, 0, 0, 0, 0, 571 +NA,NA,"",2023-24,Sunderland - Sunderland Elementary,02890005, 27, 18, 25, 21, 14, 24, 25, 29, 0, 0, 0, 0, 0, 0, 0, 183 +NA,NA,"",2023-24,Sutton - Sutton Early Learning,02900003, 45, 101, 97, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339 +NA,NA,"",2023-24,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 94, 97, 122, 0, 0, 0, 0, 0, 0, 0, 0, 313 +NA,NA,"",2023-24,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 94, 95, 95, 0, 363 +NA,NA,"",2023-24,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 102, 90, 103, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Swampscott - Clarke,02910005, 0, 38, 44, 44, 38, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206 +NA,NA,"",2023-24,Swampscott - Hadley,02910010, 0, 93, 80, 64, 60, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356 +NA,NA,"",2023-24,Swampscott - Stanley,02910020, 0, 0, 40, 43, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 +NA,NA,"",2023-24,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 174, 164, 158, 4, 666 +NA,NA,"",2023-24,Swampscott - Swampscott Middle,02910305, 60, 0, 0, 0, 0, 0, 141, 143, 155, 188, 0, 0, 0, 0, 0, 687 +NA,NA,"",2023-24,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 81, 107, 86, 0, 0, 0, 0, 0, 0, 0, 0, 274 +NA,NA,"",2023-24,Swansea - Gardner,02920015, 0, 89, 86, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270 +NA,NA,"",2023-24,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 137, 122, 162, 5, 574 +NA,NA,"",2023-24,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 172, 174, 149, 0, 0, 0, 0, 0, 495 +NA,NA,"",2023-24,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 61, 56, 62, 0, 0, 0, 0, 0, 0, 0, 0, 179 +NA,NA,"",2023-24,Swansea - Mark G Hoyle Elementary,02920017, 56, 63, 64, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 +NA,NA,"",2023-24,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 289, 271, 0, 0, 0, 0, 0, 560 +NA,NA,"",2023-24,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 170, 165, 168, 11, 663 +NA,NA,"",2023-24,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 138, 131, 110, 0, 536 +NA,NA,"",2023-24,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 209, 238, 245, 0, 0, 0, 0, 0, 0, 692 +NA,NA,"",2023-24,Taunton - East Taunton Elementary,02930010, 19, 89, 117, 112, 98, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 536 +NA,NA,"",2023-24,Taunton - Edmund Hatch Bennett,02930007, 0, 70, 56, 46, 59, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295 +NA,NA,"",2023-24,Taunton - Edward F. Leddy Preschool,02930005, 261, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Taunton - Elizabeth Pole,02930027, 0, 112, 115, 136, 127, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 602 +NA,NA,"",2023-24,Taunton - H H Galligan,02930057, 0, 68, 62, 52, 46, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 +NA,NA,"",2023-24,Taunton - James L. Mulcahey Elementary School,02930015, 58, 163, 162, 180, 151, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 882 +NA,NA,"",2023-24,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 163, 174, 173, 0, 0, 0, 0, 0, 0, 510 +NA,NA,"",2023-24,Taunton - Joseph C Chamberlain,02930008, 19, 109, 84, 92, 83, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 199, 229, 220, 0, 0, 0, 0, 0, 0, 648 +NA,NA,"",2023-24,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 80, 0, 85 +NA,NA,"",2023-24,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 637, 530, 530, 517, 461, 15," 2,690" +NA,NA,"",2023-24,Taunton - Taunton Public Virtual Academy (TPVA),02930705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 9, 11, 17, 6, 0, 47 +NA,NA,"",2023-24,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 49, 69, 93, 84, 101, 139, 166, 217, 286, 450, 440, 390, 423, 0," 2,907" +NA,NA,"",2023-24,Tewksbury - Center Elementary School,02950030, 0, 0, 0, 241, 261, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 767 +NA,NA,"",2023-24,Tewksbury - Heath-Brook,02950010, 57, 113, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 249, 248, 0, 0, 0, 0, 0, 0, 0, 497 +NA,NA,"",2023-24,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 279, 241, 0, 0, 0, 0, 0, 520 +NA,NA,"",2023-24,Tewksbury - L F Dewing,02950001, 89, 141, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392 +NA,NA,"",2023-24,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 184, 172, 191, 4, 719 +NA,NA,"",2023-24,Tisbury - Tisbury Elementary,02960005, 7, 30, 32, 35, 39, 29, 32, 20, 26, 21, 0, 0, 0, 0, 0, 271 +NA,NA,"",2023-24,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 86, 83, 85, 0, 0, 0, 0, 0, 0, 0, 254 +NA,NA,"",2023-24,Topsfield - Steward Elementary,02980010, 50, 63, 71, 89, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 +NA,NA,"",2023-24,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 258, 229, 222, 0, 964 +NA,NA,"",2023-24,Triton - Newbury Elementary,07730020, 53, 51, 62, 54, 58, 56, 52, 40, 0, 0, 0, 0, 0, 0, 0, 426 +NA,NA,"",2023-24,Triton - Pine Grove,07730025, 38, 60, 65, 72, 43, 62, 47, 60, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Triton - Salisbury Elementary,07730015, 39, 54, 44, 44, 39, 69, 58, 54, 0, 0, 0, 0, 0, 0, 0, 401 +NA,NA,"",2023-24,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 148, 159, 134, 1, 567 +NA,NA,"",2023-24,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 151, 163, 0, 0, 0, 0, 0, 314 +NA,NA,"",2023-24,Truro - Truro Central,03000005, 22, 12, 9, 15, 10, 10, 13, 0, 0, 0, 0, 0, 0, 0, 0, 91 +NA,NA,"",2023-24,Tyngsborough - Tyngsborough Elementary,03010020, 57, 111, 106, 124, 113, 112, 130, 0, 0, 0, 0, 0, 0, 0, 0, 753 +NA,NA,"",2023-24,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 117, 98, 95, 0, 420 +NA,NA,"",2023-24,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 107, 145, 117, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 42, 62, 62, 0, 0, 0, 0, 0, 166 +NA,NA,"",2023-24,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 53, 58, 66, 61, 67, 65, 59, 61, 44, 44, 0, 0, 0, 0, 0, 578 +NA,NA,"",2023-24,Up-Island Regional - Chilmark Elementary,07740010, 0, 10, 19, 12, 14, 8, 10, 0, 0, 0, 0, 0, 0, 0, 0, 73 +NA,NA,"",2023-24,Up-Island Regional - West Tisbury Elementary,07740020, 14, 22, 31, 27, 36, 28, 41, 43, 38, 45, 0, 0, 0, 0, 0, 325 +NA,NA,"",2023-24,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 221, 192, 178, 0, 826 +NA,NA,"",2023-24,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15, 25, 0, 41 +NA,NA,"",2023-24,Uxbridge - Taft Early Learning Center,03040005, 82, 115, 105, 121, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 533 +NA,NA,"",2023-24,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 121, 112, 113, 104, 0, 582 +NA,NA,"",2023-24,Uxbridge - Whitin Intermediate,03040405, 0, 0, 0, 0, 0, 115, 112, 128, 121, 0, 0, 0, 0, 0, 0, 476 +NA,NA,"",2023-24,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 99, 105, 105, 109, 102, 95, 0, 0, 0, 615 +NA,NA,"",2023-24,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 115, 128, 137, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 68, 68, 60, 77, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Wachusett - Davis Hill Elementary,07750018, 0, 78, 73, 77, 87, 71, 89, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Wachusett - Dawson,07750020, 0, 71, 85, 94, 72, 77, 89, 0, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Wachusett - Early Childhood Center,07750001, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140 +NA,NA,"",2023-24,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 121, 111, 116, 0, 0, 0, 0, 0, 0, 0, 0, 348 +NA,NA,"",2023-24,Wachusett - Houghton Elementary,07750027, 0, 63, 61, 61, 60, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 +NA,NA,"",2023-24,Wachusett - Leroy E.Mayo,07750032, 0, 72, 77, 77, 95, 73, 85, 0, 0, 0, 0, 0, 0, 0, 0, 479 +NA,NA,"",2023-24,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 235, 270, 246, 0, 0, 0, 0, 0, 751 +NA,NA,"",2023-24,Wachusett - Naquag Elementary School,07750005, 0, 122, 106, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Wachusett - Paxton Center,07750040, 0, 39, 57, 43, 48, 51, 50, 43, 56, 45, 0, 0, 0, 0, 0, 432 +NA,NA,"",2023-24,Wachusett - Thomas Prince,07750045, 0, 41, 31, 38, 46, 44, 37, 37, 41, 38, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426, 447, 481, 485, 22," 1,861" +NA,NA,"",2023-24,Wakefield - Dolbeare,03050005, 0, 91, 80, 89, 94, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 +NA,NA,"",2023-24,Wakefield - Early Childhood Center at the Doyle School,03050001, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135 +NA,NA,"",2023-24,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 252, 273, 269, 258, 0, 0, 0, 0, 0," 1,052" +NA,NA,"",2023-24,Wakefield - Greenwood,03050020, 0, 47, 42, 45, 48, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228 +NA,NA,"",2023-24,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 215, 214, 194, 0, 840 +NA,NA,"",2023-24,Wakefield - Walton,03050040, 0, 42, 39, 45, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 +NA,NA,"",2023-24,Wakefield - Woodville School,03050015, 30, 91, 72, 79, 96, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 450 +NA,NA,"",2023-24,Wales - Wales Elementary,03060005, 7, 10, 16, 9, 11, 15, 11, 14, 0, 0, 0, 0, 0, 0, 0, 93 +NA,NA,"",2023-24,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 141, 131, 128, 0, 0, 0, 0, 0, 400 +NA,NA,"",2023-24,Walpole - Boyden,03070010, 0, 71, 78, 68, 59, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 405 +NA,NA,"",2023-24,Walpole - Daniel Feeney Preschool Center,03070002, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 +NA,NA,"",2023-24,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 143, 136, 136, 0, 0, 0, 0, 0, 415 +NA,NA,"",2023-24,Walpole - Elm Street School,03070005, 0, 68, 74, 81, 87, 66, 70, 0, 0, 0, 0, 0, 0, 0, 0, 446 +NA,NA,"",2023-24,Walpole - Fisher,03070015, 0, 76, 82, 62, 98, 78, 77, 0, 0, 0, 0, 0, 0, 0, 0, 473 +NA,NA,"",2023-24,Walpole - Old Post Road,03070018, 0, 73, 58, 84, 82, 94, 78, 0, 0, 0, 0, 0, 0, 0, 0, 469 +NA,NA,"",2023-24,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 241, 238, 254, 6, 946 +NA,NA,"",2023-24,Waltham - Douglas MacArthur Elementary School,03080032, 0, 68, 80, 90, 93, 66, 78, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Waltham - Dual Language School,03080001, 0, 40, 39, 40, 36, 34, 29, 0, 0, 0, 0, 0, 0, 0, 0, 218 +NA,NA,"",2023-24,Waltham - Henry Whittemore Elementary School,03080065, 0, 75, 59, 62, 56, 67, 67, 0, 0, 0, 0, 0, 0, 0, 0, 386 +NA,NA,"",2023-24,Waltham - James Fitzgerald Elementary School,03080060, 0, 51, 63, 69, 57, 48, 66, 0, 0, 0, 0, 0, 0, 0, 0, 354 +NA,NA,"",2023-24,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 209, 225, 194, 0, 0, 0, 0, 0, 628 +NA,NA,"",2023-24,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 210, 196, 198, 0, 0, 0, 0, 0, 604 +NA,NA,"",2023-24,Waltham - Northeast Elementary School,03080040, 62, 65, 85, 73, 73, 82, 60, 0, 0, 0, 0, 0, 0, 0, 0, 500 +NA,NA,"",2023-24,Waltham - Thomas R Plympton Elementary School,03080050, 0, 55, 65, 54, 49, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 499, 457, 430, 11," 1,816" +NA,NA,"",2023-24,Waltham - William F. Stanley Elementary School,03080005, 60, 54, 53, 53, 56, 52, 48, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Ware - Stanley M Koziol Elementary School,03090020, 72, 90, 72, 78, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389 +NA,NA,"",2023-24,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 77, 96, 77, 66, 83, 65, 7, 471 +NA,NA,"",2023-24,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 90, 94, 80, 0, 0, 0, 0, 0, 0, 0, 264 +NA,NA,"",2023-24,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 8, 7, 0, 30 +NA,NA,"",2023-24,Wareham - Wareham Elementary School,03100017, 79, 173, 180, 172, 163, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 933 +NA,NA,"",2023-24,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 136, 150, 118, 0, 0, 0, 0, 0, 0, 404 +NA,NA,"",2023-24,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 121, 118, 78, 90, 12, 583 +NA,NA,"",2023-24,Warwick - Warwick Community School,03120020, 0, 4, 2, 7, 6, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 27 +NA,NA,"",2023-24,Watertown - Cunniff,03140015, 0, 51, 44, 59, 52, 47, 57, 0, 0, 0, 0, 0, 0, 0, 0, 310 +NA,NA,"",2023-24,Watertown - Hosmer,03140020, 132, 102, 113, 104, 83, 89, 97, 0, 0, 0, 0, 0, 0, 0, 0, 720 +NA,NA,"",2023-24,Watertown - James Russell Lowell,03140025, 0, 77, 51, 69, 54, 68, 57, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 199, 210, 172, 4, 760 +NA,NA,"",2023-24,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 186, 184, 181, 0, 0, 0, 0, 0, 551 +NA,NA,"",2023-24,Wayland - Claypit Hill School,03150005, 0, 84, 76, 85, 95, 74, 75, 0, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Wayland - Happy Hollow School,03150015, 0, 52, 45, 60, 63, 64, 61, 0, 0, 0, 0, 0, 0, 0, 0, 345 +NA,NA,"",2023-24,Wayland - Loker School,03150020, 0, 59, 53, 64, 67, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 377 +NA,NA,"",2023-24,Wayland - The Children's Way Preschool,03150025, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47 +NA,NA,"",2023-24,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 200, 216, 208, 0, 820 +NA,NA,"",2023-24,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 247, 216, 204, 0, 0, 0, 0, 0, 667 +NA,NA,"",2023-24,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 87, 96, 64, 6, 373 +NA,NA,"",2023-24,Webster - Park Avenue Elementary,03160015, 60, 116, 149, 127, 134, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 734 +NA,NA,"",2023-24,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 142, 133, 165, 152, 0, 0, 0, 0, 0, 592 +NA,NA,"",2023-24,Wellesley - Ernest F Upham,03170050, 0, 21, 20, 30, 24, 22, 24, 0, 0, 0, 0, 0, 0, 0, 0, 141 +NA,NA,"",2023-24,Wellesley - Hunnewell,03170025, 0, 29, 27, 32, 38, 33, 41, 0, 0, 0, 0, 0, 0, 0, 0, 200 +NA,NA,"",2023-24,Wellesley - John D Hardy,03170020, 0, 37, 38, 40, 37, 37, 36, 0, 0, 0, 0, 0, 0, 0, 0, 225 +NA,NA,"",2023-24,Wellesley - Joseph E Fiske,03170015, 0, 57, 48, 57, 43, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 316 +NA,NA,"",2023-24,Wellesley - Katharine Lee Bates,03170005, 0, 38, 42, 53, 37, 40, 43, 0, 0, 0, 0, 0, 0, 0, 0, 253 +NA,NA,"",2023-24,Wellesley - Preschool at Wellesley Schools,03170001, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97 +NA,NA,"",2023-24,Wellesley - Schofield,03170045, 0, 32, 50, 56, 59, 57, 45, 0, 0, 0, 0, 0, 0, 0, 0, 299 +NA,NA,"",2023-24,Wellesley - Sprague Elementary School,03170048, 0, 55, 43, 43, 39, 54, 59, 0, 0, 0, 0, 0, 0, 0, 0, 293 +NA,NA,"",2023-24,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 313, 301, 305, 0, 0, 0, 0, 0, 919 +NA,NA,"",2023-24,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 345, 327, 356, 9," 1,358" +NA,NA,"",2023-24,Wellfleet - Wellfleet Elementary,03180005, 0, 7, 15, 20, 17, 14, 18, 0, 0, 0, 0, 0, 0, 0, 0, 91 +NA,NA,"",2023-24,West Boylston - Major Edwards Elementary,03220005, 39, 66, 67, 78, 58, 76, 71, 0, 0, 0, 0, 0, 0, 0, 0, 455 +NA,NA,"",2023-24,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 75, 62, 80, 60, 65, 47, 58, 1, 448 +NA,NA,"",2023-24,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 99, 112, 98, 0, 0, 0, 0, 0, 0, 0, 309 +NA,NA,"",2023-24,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 105, 101, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 +NA,NA,"",2023-24,West Bridgewater - Spring Street School,03230005, 49, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 +NA,NA,"",2023-24,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 111, 111, 94, 105, 96, 102, 0, 619 +NA,NA,"",2023-24,West Springfield - John Ashley,03320005, 47, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,West Springfield - John R Fausey,03320010, 0, 0, 92, 83, 90, 92, 88, 0, 0, 0, 0, 0, 0, 0, 0, 445 +NA,NA,"",2023-24,West Springfield - Memorial,03320025, 0, 1, 35, 40, 54, 38, 40, 0, 0, 0, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,West Springfield - Mittineague,03320030, 0, 0, 23, 24, 24, 30, 39, 0, 0, 0, 0, 0, 0, 0, 0, 140 +NA,NA,"",2023-24,West Springfield - Philip G Coburn,03320007, 78, 87, 79, 88, 84, 89, 68, 0, 0, 0, 0, 0, 0, 0, 0, 573 +NA,NA,"",2023-24,West Springfield - Tatham,03320040, 0, 0, 58, 38, 55, 50, 61, 0, 0, 0, 0, 0, 0, 0, 0, 262 +NA,NA,"",2023-24,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 300, 286, 268, 19," 1,208" +NA,NA,"",2023-24,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 290, 318, 318, 0, 0, 0, 0, 0, 926 +NA,NA,"",2023-24,Westborough - Annie E Fales,03210010, 0, 79, 77, 90, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 +NA,NA,"",2023-24,Westborough - Elsie A Hastings Elementary,03210025, 138, 95, 74, 88, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Westborough - J Harding Armstrong,03210005, 0, 88, 100, 111, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 297, 277, 302, 0, 0, 0, 0, 0, 0, 0, 876 +NA,NA,"",2023-24,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 299, 302, 0, 0, 0, 0, 0, 601 +NA,NA,"",2023-24,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 297, 336, 287, 10," 1,202" +NA,NA,"",2023-24,Westfield - Abner Gibbs,03250020, 0, 36, 30, 41, 35, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185 +NA,NA,"",2023-24,Westfield - Fort Meadow Early Childhood Center,03250003, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147 +NA,NA,"",2023-24,Westfield - Franklin Ave,03250015, 0, 30, 28, 33, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174 +NA,NA,"",2023-24,Westfield - Highland,03250025, 15, 61, 63, 66, 69, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 +NA,NA,"",2023-24,Westfield - Munger Hill,03250033, 15, 52, 55, 60, 73, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Westfield - Paper Mill,03250036, 0, 49, 81, 68, 55, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 +NA,NA,"",2023-24,Westfield - Southampton Road,03250040, 28, 50, 52, 62, 55, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 255, 256, 257, 12," 1,006" +NA,NA,"",2023-24,Westfield - Westfield Intermediate School,03250075, 0, 0, 0, 0, 0, 0, 360, 324, 0, 0, 0, 0, 0, 0, 0, 684 +NA,NA,"",2023-24,Westfield - Westfield Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 0, 346, 360, 0, 0, 0, 0, 0, 706 +NA,NA,"",2023-24,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 139, 142, 122, 0, 548 +NA,NA,"",2023-24,Westfield - Westfield Virtual School,03250705, 0, 0, 0, 0, 0, 0, 0, 2, 6, 9, 6, 12, 12, 15, 0, 62 +NA,NA,"",2023-24,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 137, 117, 118, 0, 0, 0, 0, 0, 0, 0, 0, 372 +NA,NA,"",2023-24,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 176, 176, 183, 0, 0, 0, 0, 0, 535 +NA,NA,"",2023-24,Westford - Col John Robinson,03260025, 19, 65, 113, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Westford - Day Elementary,03260007, 0, 0, 0, 0, 86, 107, 103, 0, 0, 0, 0, 0, 0, 0, 0, 296 +NA,NA,"",2023-24,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 106, 100, 124, 0, 0, 0, 0, 0, 0, 0, 0, 330 +NA,NA,"",2023-24,Westford - Nabnasset,03260015, 21, 78, 105, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 +NA,NA,"",2023-24,Westford - Rita E. Miller Elementary School,03260055, 30, 75, 82, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 +NA,NA,"",2023-24,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 183, 171, 232, 0, 0, 0, 0, 0, 586 +NA,NA,"",2023-24,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 340, 368, 377, 1," 1,444" +NA,NA,"",2023-24,Westhampton - Westhampton Elementary School,03270005, 15, 8, 16, 15, 11, 14, 14, 11, 0, 0, 0, 0, 0, 0, 0, 104 +NA,NA,"",2023-24,Weston - Country,03300010, 20, 53, 92, 79, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 +NA,NA,"",2023-24,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 150, 154, 0, 0, 0, 0, 0, 0, 0, 0, 304 +NA,NA,"",2023-24,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 164, 173, 159, 0, 662 +NA,NA,"",2023-24,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 125, 145, 158, 0, 0, 0, 0, 0, 428 +NA,NA,"",2023-24,Weston - Woodland,03300015, 20, 58, 82, 79, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 +NA,NA,"",2023-24,Westport - Alice A Macomber,03310015, 60, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178 +NA,NA,"",2023-24,Westport - Westport Elementary,03310030, 0, 0, 113, 110, 112, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 448 +NA,NA,"",2023-24,Westport - Westport Middle-High School,03310515, 0, 0, 0, 0, 0, 0, 122, 126, 126, 138, 107, 83, 90, 86, 2, 880 +NA,NA,"",2023-24,Westwood - Downey,03350012, 2, 50, 51, 52, 48, 44, 67, 0, 0, 0, 0, 0, 0, 0, 0, 314 +NA,NA,"",2023-24,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 229, 214, 218, 0, 0, 0, 0, 0, 661 +NA,NA,"",2023-24,Westwood - Martha Jones,03350017, 0, 55, 39, 43, 57, 35, 46, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Westwood - Pine Hill Elementary School,03350030, 0, 66, 72, 84, 77, 64, 58, 0, 0, 0, 0, 0, 0, 0, 0, 421 +NA,NA,"",2023-24,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 200, 206, 242, 0, 874 +NA,NA,"",2023-24,Westwood - Westwood Integrated Preschool,03350050, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36 +NA,NA,"",2023-24,Westwood - William E Sheehan,03350025, 0, 54, 42, 47, 52, 45, 60, 0, 0, 0, 0, 0, 0, 0, 0, 300 +NA,NA,"",2023-24,Weymouth - Academy Avenue,03360005, 0, 53, 70, 55, 53, 60, 47, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Weymouth - Frederick C Murphy,03360050, 0, 46, 45, 47, 47, 52, 46, 0, 0, 0, 0, 0, 0, 0, 0, 283 +NA,NA,"",2023-24,Weymouth - Johnson Early Childhood Center,03360003, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,Weymouth - Lawrence W Pingree,03360065, 0, 42, 43, 42, 46, 48, 45, 0, 0, 0, 0, 0, 0, 0, 0, 266 +NA,NA,"",2023-24,Weymouth - Maria Weston Chapman Middle School,03360020, 0, 0, 0, 0, 0, 0, 0, 400, 398, 389, 0, 0, 0, 0, 0," 1,187" +NA,NA,"",2023-24,Weymouth - Ralph Talbot,03360085, 0, 72, 44, 44, 46, 44, 47, 0, 0, 0, 0, 0, 0, 0, 0, 297 +NA,NA,"",2023-24,Weymouth - Thomas V Nash,03360060, 0, 46, 45, 42, 44, 37, 38, 0, 0, 0, 0, 0, 0, 0, 0, 252 +NA,NA,"",2023-24,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 70, 66, 62, 69, 36, 48, 0, 0, 0, 0, 0, 0, 0, 0, 351 +NA,NA,"",2023-24,Weymouth - Wessagusset,03360110, 0, 44, 47, 78, 64, 42, 53, 0, 0, 0, 0, 0, 0, 0, 0, 328 +NA,NA,"",2023-24,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465, 422, 418, 432, 14," 1,751" +NA,NA,"",2023-24,Weymouth - William Seach,03360080, 0, 69, 70, 61, 61, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 384 +NA,NA,"",2023-24,Whately - Whately Elementary,03370005, 14, 16, 20, 12, 17, 15, 17, 14, 0, 0, 0, 0, 0, 0, 0, 125 +NA,NA,"",2023-24,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 100, 119, 110, 95, 0, 0, 0, 0, 0, 424 +NA,NA,"",2023-24,Whitman-Hanson - Indian Head,07800035, 0, 99, 95, 106, 93, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498 +NA,NA,"",2023-24,Whitman-Hanson - John H Duval,07800030, 0, 80, 57, 77, 69, 69, 83, 0, 0, 0, 0, 0, 0, 0, 0, 435 +NA,NA,"",2023-24,Whitman-Hanson - Louise A Conley,07800010, 0, 70, 78, 84, 69, 95, 79, 0, 0, 0, 0, 0, 0, 0, 0, 475 +NA,NA,"",2023-24,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105 +NA,NA,"",2023-24,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, 266, 253, 269, 11," 1,039" +NA,NA,"",2023-24,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 159, 174, 174, 0, 0, 0, 0, 0, 507 +NA,NA,"",2023-24,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325, 320, 321, 313, 0," 1,279" +NA,NA,"",2023-24,Williamsburg - Anne T. Dunphy School,03400020, 9, 17, 14, 15, 11, 18, 20, 19, 0, 0, 0, 0, 0, 0, 0, 123 +NA,NA,"",2023-24,Wilmington - Boutwell,03420005, 46, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144 +NA,NA,"",2023-24,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 141, 108, 0, 0, 0, 0, 0, 0, 0, 0, 249 +NA,NA,"",2023-24,Wilmington - Shawsheen Elementary,03420025, 0, 0, 109, 98, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 +NA,NA,"",2023-24,Wilmington - West Intermediate,03420080, 21, 44, 0, 0, 0, 100, 108, 0, 0, 0, 0, 0, 0, 0, 0, 273 +NA,NA,"",2023-24,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 164, 145, 172, 0, 613 +NA,NA,"",2023-24,Wilmington - Wilmington Middle School,03420330, 21, 58, 0, 0, 0, 0, 0, 266, 205, 231, 0, 0, 0, 0, 0, 781 +NA,NA,"",2023-24,Wilmington - Woburn Street,03420020, 0, 0, 136, 122, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358 +NA,NA,"",2023-24,Winchendon - Memorial,03430040, 0, 79, 109, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 +NA,NA,"",2023-24,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 5, 8, 0, 20 +NA,NA,"",2023-24,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 80, 61, 41, 5, 252 +NA,NA,"",2023-24,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 102, 99, 89, 0, 0, 0, 0, 0, 290 +NA,NA,"",2023-24,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 91, 94, 91, 0, 0, 0, 0, 0, 0, 0, 0, 276 +NA,NA,"",2023-24,Winchendon - Winchendon PreSchool Program,03430010, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 +NA,NA,"",2023-24,Winchester - Ambrose Elementary,03440045, 0, 70, 51, 76, 54, 73, 59, 0, 0, 0, 0, 0, 0, 0, 0, 383 +NA,NA,"",2023-24,Winchester - Lincoln Elementary,03440005, 0, 70, 52, 47, 58, 56, 66, 0, 0, 0, 0, 0, 0, 0, 0, 349 +NA,NA,"",2023-24,Winchester - Lynch Elementary,03440020, 60, 20, 54, 70, 65, 76, 80, 0, 0, 0, 0, 0, 0, 0, 0, 425 +NA,NA,"",2023-24,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 328, 349, 362, 0, 0, 0, 0, 0," 1,039" +NA,NA,"",2023-24,Winchester - Muraco Elementary,03440040, 0, 54, 55, 52, 45, 72, 60, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Winchester - Vinson-Owen Elementary,03440025, 12, 71, 53, 66, 58, 88, 77, 0, 0, 0, 0, 0, 0, 0, 0, 425 +NA,NA,"",2023-24,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 366, 319, 347, 5," 1,372" +NA,NA,"",2023-24,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 141, 157, 145, 0, 0, 0, 0, 0, 0, 0, 0, 443 +NA,NA,"",2023-24,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 56, 139, 149, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 504 +NA,NA,"",2023-24,Winthrop - Winthrop High School,03460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 149, 162, 135, 7, 595 +NA,NA,"",2023-24,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 137, 161, 125, 0, 0, 0, 0, 0, 423 +NA,NA,"",2023-24,Woburn - Clyde Reeves,03470040, 137, 49, 60, 43, 49, 47, 59, 0, 0, 0, 0, 0, 0, 0, 0, 444 +NA,NA,"",2023-24,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 136, 153, 171, 0, 0, 0, 0, 0, 460 +NA,NA,"",2023-24,Woburn - Goodyear Elementary School,03470005, 0, 59, 67, 64, 48, 57, 58, 0, 0, 0, 0, 0, 0, 0, 0, 353 +NA,NA,"",2023-24,Woburn - Hurld-Wyman Elementary School,03470020, 0, 76, 78, 71, 68, 69, 53, 0, 0, 0, 0, 0, 0, 0, 0, 415 +NA,NA,"",2023-24,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 172, 174, 165, 0, 0, 0, 0, 0, 511 +NA,NA,"",2023-24,Woburn - Linscott-Rumford,03470025, 0, 30, 43, 40, 31, 22, 30, 0, 0, 0, 0, 0, 0, 0, 0, 196 +NA,NA,"",2023-24,Woburn - Malcolm White,03470055, 0, 53, 58, 54, 52, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 338 +NA,NA,"",2023-24,Woburn - Mary D Altavesta,03470065, 0, 32, 38, 37, 34, 34, 29, 0, 0, 0, 0, 0, 0, 0, 0, 204 +NA,NA,"",2023-24,Woburn - Shamrock,03470043, 31, 40, 44, 36, 45, 45, 34, 0, 0, 0, 0, 0, 0, 0, 0, 275 +NA,NA,"",2023-24,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298, 293, 338, 287, 12," 1,228" +NA,NA,"",2023-24,Worcester - Belmont Street Community,03480020, 46, 86, 77, 71, 67, 73, 96, 67, 0, 0, 0, 0, 0, 0, 0, 583 +NA,NA,"",2023-24,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 341, 343, 0, 0, 0, 0, 0, 684 +NA,NA,"",2023-24,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 265, 251, 303, 18," 1,124" +NA,NA,"",2023-24,Worcester - Burncoat Street,03480035, 0, 26, 32, 35, 35, 29, 32, 42, 0, 0, 0, 0, 0, 0, 0, 231 +NA,NA,"",2023-24,Worcester - Canterbury,03480045, 41, 49, 63, 37, 25, 33, 39, 48, 0, 0, 0, 0, 0, 0, 0, 335 +NA,NA,"",2023-24,Worcester - Chandler Elementary Community,03480050, 12, 58, 55, 54, 44, 56, 73, 59, 0, 0, 0, 0, 0, 0, 0, 411 +NA,NA,"",2023-24,Worcester - Chandler Magnet,03480052, 32, 78, 77, 85, 70, 71, 70, 65, 0, 0, 0, 0, 0, 0, 0, 548 +NA,NA,"",2023-24,Worcester - City View,03480053, 27, 72, 52, 61, 42, 45, 51, 83, 0, 0, 0, 0, 0, 0, 0, 433 +NA,NA,"",2023-24,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 90, 83, 77, 72, 83, 70, 3, 478 +NA,NA,"",2023-24,Worcester - Clark St Community,03480055, 24, 39, 30, 33, 31, 29, 37, 38, 0, 0, 0, 0, 0, 0, 0, 261 +NA,NA,"",2023-24,Worcester - Columbus Park,03480060, 27, 46, 50, 46, 50, 65, 44, 47, 0, 0, 0, 0, 0, 0, 0, 375 +NA,NA,"",2023-24,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 383, 370, 325, 313, 7," 1,398" +NA,NA,"",2023-24,Worcester - Elm Park Community,03480095, 36, 62, 55, 64, 53, 44, 70, 56, 0, 0, 0, 0, 0, 0, 0, 440 +NA,NA,"",2023-24,Worcester - Flagg Street,03480090, 0, 63, 66, 66, 46, 59, 51, 36, 0, 0, 0, 0, 0, 0, 0, 387 +NA,NA,"",2023-24,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 411, 418, 0, 0, 0, 0, 0, 829 +NA,NA,"",2023-24,Worcester - Francis J McGrath Elementary,03480177, 11, 31, 33, 19, 19, 26, 39, 30, 0, 0, 0, 0, 0, 0, 0, 208 +NA,NA,"",2023-24,Worcester - Gates Lane,03480110, 67, 83, 75, 77, 52, 69, 51, 73, 0, 0, 0, 0, 0, 0, 0, 547 +NA,NA,"",2023-24,Worcester - Goddard School/Science Technical,03480100, 24, 57, 47, 61, 36, 55, 45, 53, 0, 0, 0, 0, 0, 0, 0, 378 +NA,NA,"",2023-24,Worcester - Grafton Street,03480115, 0, 53, 60, 71, 54, 57, 55, 48, 0, 0, 0, 0, 0, 0, 0, 398 +NA,NA,"",2023-24,Worcester - Head Start,03480002, 376, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376 +NA,NA,"",2023-24,Worcester - Heard Street,03480136, 0, 34, 45, 31, 39, 24, 37, 41, 0, 0, 0, 0, 0, 0, 0, 251 +NA,NA,"",2023-24,Worcester - Jacob Hiatt Magnet,03480140, 57, 61, 64, 39, 38, 45, 40, 37, 0, 0, 0, 0, 0, 0, 0, 381 +NA,NA,"",2023-24,Worcester - Lake View,03480145, 0, 37, 47, 53, 34, 40, 40, 35, 0, 0, 0, 0, 0, 0, 0, 286 +NA,NA,"",2023-24,Worcester - Lincoln Street,03480160, 0, 34, 31, 41, 23, 25, 30, 31, 0, 0, 0, 0, 0, 0, 0, 215 +NA,NA,"",2023-24,Worcester - May Street,03480175, 0, 40, 45, 46, 36, 46, 36, 45, 0, 0, 0, 0, 0, 0, 0, 294 +NA,NA,"",2023-24,Worcester - Midland Street,03480185, 0, 44, 33, 39, 30, 22, 36, 34, 0, 0, 0, 0, 0, 0, 0, 238 +NA,NA,"",2023-24,Worcester - Nelson Place,03480200, 50, 83, 64, 79, 77, 75, 85, 77, 0, 0, 0, 0, 0, 0, 0, 590 +NA,NA,"",2023-24,Worcester - Norrback Avenue,03480202, 56, 46, 67, 58, 56, 70, 79, 59, 0, 0, 0, 0, 0, 0, 0, 491 +NA,NA,"",2023-24,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 369, 338, 334, 21," 1,420" +NA,NA,"",2023-24,Worcester - Quinsigamond,03480210, 25, 90, 88, 117, 100, 102, 99, 94, 0, 0, 0, 0, 0, 0, 0, 715 +NA,NA,"",2023-24,Worcester - Rice Square,03480215, 0, 58, 65, 63, 66, 71, 49, 64, 0, 0, 0, 0, 0, 0, 0, 436 +NA,NA,"",2023-24,Worcester - Roosevelt,03480220, 100, 76, 76, 71, 73, 74, 73, 53, 0, 0, 0, 0, 0, 0, 0, 596 +NA,NA,"",2023-24,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445, 455, 439, 439, 13," 1,791" +NA,NA,"",2023-24,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 46, 401, 397, 0, 0, 0, 0, 0, 844 +NA,NA,"",2023-24,Worcester - Tatnuck,03480230, 27, 66, 49, 47, 51, 49, 52, 39, 0, 0, 0, 0, 0, 0, 0, 380 +NA,NA,"",2023-24,Worcester - Thorndyke Road,03480235, 0, 41, 59, 61, 41, 48, 45, 57, 0, 0, 0, 0, 0, 0, 0, 352 +NA,NA,"",2023-24,Worcester - Union Hill School,03480240, 0, 50, 50, 56, 60, 53, 48, 52, 0, 0, 0, 0, 0, 0, 0, 369 +NA,NA,"",2023-24,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 44, 40, 39, 37, 39, 45, 0, 244 +NA,NA,"",2023-24,Worcester - Vernon Hill School,03480280, 44, 84, 56, 62, 46, 63, 78, 55, 0, 0, 0, 0, 0, 0, 0, 488 +NA,NA,"",2023-24,Worcester - Wawecus Road School,03480026, 0, 20, 24, 20, 21, 24, 26, 15, 0, 0, 0, 0, 0, 0, 0, 150 +NA,NA,"",2023-24,Worcester - West Tatnuck,03480260, 53, 34, 52, 39, 42, 45, 46, 55, 0, 0, 0, 0, 0, 0, 0, 366 +NA,NA,"",2023-24,Worcester - Woodland Academy,03480030, 0, 68, 67, 77, 60, 69, 73, 75, 0, 0, 0, 0, 0, 0, 0, 489 +NA,NA,"",2023-24,Worcester - Worcester Arts Magnet School,03480225, 29, 60, 55, 66, 50, 48, 51, 47, 0, 0, 0, 0, 0, 0, 0, 406 +NA,NA,"",2023-24,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 0, 344, 351, 0, 0, 0, 0, 0, 695 +NA,NA,"",2023-24,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 352, 369, 331, 15," 1,439" +NA,NA,"",2023-24,Worcester Cultural Academy Charter Public School (District) - Worcester Cultural Academy Charter Public School,35190205, 0, 41, 24, 25, 25, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 +NA,NA,"",2023-24,Worthington - R. H. Conwell,03490010, 14, 8, 12, 4, 8, 7, 6, 14, 0, 0, 0, 0, 0, 0, 0, 73 +NA,NA,"",2023-24,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 117, 113, 140, 0, 0, 0, 0, 0, 0, 0, 370 +NA,NA,"",2023-24,Wrentham - Delaney,03500003, 87, 131, 128, 139, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 611 NA,NA,"",2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 120, 120, 118, 121, 124, 121, 122, 114, 110, 89, 83, 90, 90, 0," 1,422" NA,NA,"",2022-23,Abington - Abington Early Education Program,00010001, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 NA,NA,"",2022-23,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 127, 146, 131, 7, 548 diff --git a/data/enrollment/enrollment.csv b/data/enrollment/enrollment.csv index 8f69d496..ab21ca3a 100644 --- a/data/enrollment/enrollment.csv +++ b/data/enrollment/enrollment.csv @@ -340,11 +340,11 @@ NA,NA,"",2023-24,Brookline - Brookline Early Education Program at Putterham,0046 NA,NA,"",2023-24,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570, 521, 551, 513, 18," 2,173" NA,NA,"",2023-24,Brookline - Edith C Baker,00460005, 0, 66, 72, 84, 82, 77, 74, 61, 72, 66, 0, 0, 0, 0, 0, 654 NA,NA,"",2023-24,Brookline - Florida Ruffin Ridley School,00460015, 32, 84, 102, 103, 94, 93, 85, 86, 80, 93, 0, 0, 0, 0, 0, 852 +NA,NA,"",2023-24,Brookline - Heath,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434 NA,NA,"",2023-24,Brookline - John D Runkle,00460045, 16, 46, 45, 52, 40, 61, 55, 56, 51, 61, 0, 0, 0, 0, 0, 483 NA,NA,"",2023-24,Brookline - Lawrence,00460030, 0, 68, 82, 70, 77, 69, 60, 75, 51, 63, 0, 0, 0, 0, 0, 615 NA,NA,"",2023-24,Brookline - Michael Driscoll,00460020, 32, 46, 57, 41, 66, 53, 59, 50, 54, 52, 0, 0, 0, 0, 0, 510 NA,NA,"",2023-24,Brookline - Pierce,00460040, 0, 68, 62, 78, 78, 74, 78, 83, 63, 84, 0, 0, 0, 0, 0, 668 -NA,NA,"",2023-24,Brookline - Roland Hayes,00460025, 0, 41, 40, 49, 50, 55, 59, 57, 37, 46, 0, 0, 0, 0, 0, 434 NA,NA,"",2023-24,Brookline - The Lynch Center,00460060, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55 NA,NA,"",2023-24,Brookline - William H Lincoln,00460035, 0, 52, 60, 50, 57, 55, 41, 51, 62, 46, 0, 0, 0, 0, 0, 474 NA,NA,"",2023-24,Burlington - Burlington High,00480505, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 227, 231, 218, 0," 1,005" @@ -800,9 +800,9 @@ NA,NA,"",2023-24,Leominster - Center For Technical Education Innovation,01530605 NA,NA,"",2023-24,Leominster - Fall Brook,01530007, 0, 72, 105, 126, 107, 109, 113, 0, 0, 0, 0, 0, 0, 0, 0, 632 NA,NA,"",2023-24,Leominster - Frances Drake School,01530010, 0, 99, 63, 75, 68, 96, 84, 0, 0, 0, 0, 0, 0, 0, 0, 485 NA,NA,"",2023-24,Leominster - Johnny Appleseed,01530025, 0, 75, 114, 127, 107, 111, 121, 0, 0, 0, 0, 0, 0, 0, 0, 655 +NA,NA,"",2023-24,Leominster - Leominster Academy,01530705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 0, 16 NA,NA,"",2023-24,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 13, 11, 30, 0, 65 NA,NA,"",2023-24,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 295, 306, 303, 9," 1,073" -NA,NA,"",2023-24,Leominster - Leominster Personalized Virtual Learning Academy (LPVLA),01530705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 4, 0, 16 NA,NA,"",2023-24,Leominster - Lincoln School,01530005, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40 NA,NA,"",2023-24,Leominster - Northwest,01530030, 0, 0, 112, 154, 136, 130, 137, 0, 0, 0, 0, 0, 0, 0, 0, 669 NA,NA,"",2023-24,Leominster - Priest Street,01530040, 0, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139 diff --git a/db/seeds.rb b/db/seeds.rb index e87fceeb..874c481e 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -2,7 +2,8 @@ require "#{Rails.root}/app/lib/seeder" seeder = Seeder.new -seeder.seed_academic_years "2016-17", "2017-18", "2018-19", "2019-20", "2020-21", "2021-22", "2022-23", "2023-24" +seeder.seed_academic_years "2016-17", "2017-18", "2018-19", "2019-20", "2020-21", "2021-22", "2022-23", + "2023-24 Fall", "2023-24 Spring" seeder.seed_districts_and_schools Rails.root.join("data", "master_list_of_schools_and_districts.csv") seeder.seed_sqm_framework Rails.root.join("data", "sqm_framework.csv") seeder.seed_demographics Rails.root.join("data", "demographics.csv") diff --git a/lib/tasks/one_off.rake b/lib/tasks/one_off.rake index 554f9d63..17753770 100644 --- a/lib/tasks/one_off.rake +++ b/lib/tasks/one_off.rake @@ -126,4 +126,13 @@ namespace :one_off do seeder.seed_staffing Rails.root.join("data", "staffing", "nj_staffing.csv") seeder.seed_staffing Rails.root.join("data", "staffing", "wi_staffing.csv") end + + desc "delete 2023-24 AcademicYear and all responses, admin data, enrollment numbers and staffing numbers" + task delete_2023_24: :environment do + academic_year = AcademicYear.find_by_range "2023-24" + AdminDataValue.where(academic_year:).delete_all + Respondent.where(academic_year:).delete_all + SurveyItemResponse.where(academic_year:).delete_all + academic_year.delete + end end diff --git a/lib/tasks/report.rake b/lib/tasks/report.rake index 46f027d6..6e080b1d 100644 --- a/lib/tasks/report.rake +++ b/lib/tasks/report.rake @@ -5,8 +5,7 @@ namespace :report do end namespace :measure do - task :district, [:district, :ay] => :environment do |_, args| - + task :district, %i[district ay] => :environment do |_, args| # measure_ids = %w[ # 1A-i # 1A-ii @@ -46,11 +45,11 @@ namespace :report do district = District.find_by_name args[:district] academic_years = AcademicYear.where(range: args[:ay]) - if district == nil + if district.nil? puts "Invalid district name" bad = true end - if academic_years == nil + if academic_years.nil? puts "Invalid academic year" bad = true end @@ -60,7 +59,7 @@ namespace :report do schools: School.where(district:), academic_years:, # measures:, - filename: "measure_report_"+district.slug+".csv" + filename: "measure_report_" + district.slug + ".csv" ) end @@ -101,7 +100,7 @@ namespace :report do 5D-ii ] - measures = measure_ids.map { |measure_id| Measure.find_by_measure_id(measure_id) } + measures = measure_ids.map { |measure_id| Measure.find_by_measure_id(measure_id) }.reject(&:nil?) Report::Measure.create_report(filename: "measure_report.csv", measures:) end @@ -131,42 +130,48 @@ namespace :report do end end - namespace :survey_item do - task :create, [:school, :academic_year] => :environment do |_, args| + namespace :survey_item do + task :create, %i[school academic_year] => :environment do |_, args| school = School.find_by_name(args[:school]) academic_year = AcademicYear.find_by_range(args[:academic_year]) - if school == nil + if school.nil? puts "Invalid school name" bad = 1 end - if academic_year == nil + if academic_year.nil? puts "Invalid academic year" bad = 1 end next if bad == 1 - Report::SurveyItem.create_item_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_item.csv") - Report::SurveyItem.create_grade_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_grade.csv") + + Report::SurveyItem.create_item_report(school:, academic_year:, + filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_item.csv") + Report::SurveyItem.create_grade_report(school:, academic_year:, + filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_grade.csv") end end - namespace :survey_item do - task :district, [:district, :academic_year] => :environment do |_, args| - district = District.find_by_name(args[:district]) - if district == nil - puts "Invalid district name" - bad = 1 - end - academic_year = AcademicYear.find_by_range(args[:academic_year]) - if academic_year == nil - puts "Invalid academic year" - bad = 1 - end - next if bad == 1 - schools = district.schools - schools.each do |school| - Report::SurveyItem.create_item_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_item.csv") - Report::SurveyItem.create_grade_report(school:, academic_year:, filename: "survey_item_report_"+school.slug+"_"+academic_year.range+"_by_grade.csv") - end - end - end + namespace :survey_item do + task :district, %i[district academic_year] => :environment do |_, args| + district = District.find_by_name(args[:district]) + if district.nil? + puts "Invalid district name" + bad = 1 + end + academic_year = AcademicYear.find_by_range(args[:academic_year]) + if academic_year.nil? + puts "Invalid academic year" + bad = 1 + end + next if bad == 1 + + schools = district.schools + schools.each do |school| + Report::SurveyItem.create_item_report(school:, academic_year:, + filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_item.csv") + Report::SurveyItem.create_grade_report(school:, academic_year:, + filename: "survey_item_report_" + school.slug + "_" + academic_year.range + "_by_grade.csv") + end + end + end end diff --git a/spec/fixtures/sample_enrollment_data.csv b/spec/fixtures/sample_enrollment_data.csv index ea153198..e90e8e0f 100644 --- a/spec/fixtures/sample_enrollment_data.csv +++ b/spec/fixtures/sample_enrollment_data.csv @@ -1,12899 +1,12899 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,PK,K,1,2,3,4,5,6,7,8,9,10,11,12,SP,Total -NA,NA,"",2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 120, 120, 118, 121, 124, 121, 122, 114, 110, 89, 83, 90, 90, 0," 1,422" -NA,NA,"",2022-23,Abington - Abington Early Education Program,00010001, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 -NA,NA,"",2022-23,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 127, 146, 131, 7, 548 -NA,NA,"",2022-23,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 157, 165, 147, 178, 0, 0, 0, 0, 0, 647 -NA,NA,"",2022-23,Abington - Beaver Brook Elementary,00010020, 0, 160, 173, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 521 -NA,NA,"",2022-23,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 166, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 36, 57, 60, 71, 64, 60, 65, 54, 0, 467 -NA,NA,"",2022-23,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418, 396, 414, 454, 1," 1,683" -NA,NA,"",2022-23,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 58, 60, 75, 65, 89, 92, 67, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2022-23,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 54, 63, 58, 65, 45, 45, 47, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107 -NA,NA,"",2022-23,Acton-Boxborough - Luther Conant School,06000030, 0, 38, 60, 39, 62, 67, 70, 72, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2022-23,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 57, 41, 58, 64, 68, 84, 74, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2022-23,Acton-Boxborough - Merriam School,06000010, 0, 34, 61, 59, 65, 69, 71, 72, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2022-23,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 54, 57, 37, 44, 46, 44, 68, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2022-23,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 410, 415, 0, 0, 0, 0, 0, 825 -NA,NA,"",2022-23,Acushnet - Acushnet Elementary School,00030025, 55, 95, 86, 106, 89, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 556 -NA,NA,"",2022-23,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 104, 86, 107, 110, 0, 0, 0, 0, 0, 407 -NA,NA,"",2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 141, 141, 142, 138, 131, 129, 144, 0, 966 -NA,NA,"",2022-23,Agawam - Agawam Early Childhood Center,00050003, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 -NA,NA,"",2022-23,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312, 252, 240, 243, 5," 1,052" -NA,NA,"",2022-23,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 253, 265, 0, 0, 0, 0, 0, 518 -NA,NA,"",2022-23,Agawam - Benjamin J Phelps,00050020, 0, 66, 52, 62, 68, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2022-23,Agawam - Clifford M Granger,00050010, 0, 57, 77, 61, 76, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2022-23,Agawam - James Clark School,00050030, 0, 65, 66, 57, 53, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2022-23,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 235, 277, 0, 0, 0, 0, 0, 0, 0, 512 -NA,NA,"",2022-23,Agawam - Robinson Park,00050025, 0, 46, 47, 60, 60, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 102, 105, 102, 104, 104, 100, 154, 138, 129, 0, 0, 0, 0, 0," 1,038" -NA,NA,"",2022-23,Amesbury - Amesbury Elementary,00070005, 30, 55, 65, 60, 66, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2022-23,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 103, 113, 108, 5, 453 -NA,NA,"",2022-23,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 16, 10, 9, 0, 45 -NA,NA,"",2022-23,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 131, 135, 151, 167, 0, 0, 0, 0, 0, 584 -NA,NA,"",2022-23,Amesbury - Charles C Cashman Elementary,00070010, 24, 65, 77, 82, 62, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2022-23,Amherst - Crocker Farm Elementary,00080009, 60, 31, 30, 49, 34, 57, 40, 44, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2022-23,Amherst - Fort River Elementary,00080020, 0, 55, 57, 50, 65, 49, 38, 65, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2022-23,Amherst - Wildwood Elementary,00080050, 0, 45, 34, 45, 45, 53, 61, 43, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2022-23,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 203, 216, 211, 3, 858 -NA,NA,"",2022-23,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 187, 185, 0, 0, 0, 0, 0, 372 -NA,NA,"",2022-23,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403, 421, 419, 420, 39," 1,702" -NA,NA,"",2022-23,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 160, 172, 186, 0, 0, 0, 0, 0, 518 -NA,NA,"",2022-23,Andover - Bancroft Elementary,00090003, 0, 87, 82, 73, 91, 103, 107, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2022-23,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 153, 164, 144, 0, 0, 0, 0, 0, 461 -NA,NA,"",2022-23,Andover - Henry C Sanborn Elementary,00090010, 0, 52, 57, 50, 48, 66, 58, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2022-23,Andover - High Plain Elementary,00090004, 0, 62, 93, 86, 88, 112, 86, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2022-23,Andover - Shawsheen School,00090005, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98 -NA,NA,"",2022-23,Andover - South Elementary,00090020, 0, 65, 74, 77, 70, 89, 78, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2022-23,Andover - West Elementary,00090025, 0, 89, 92, 98, 92, 100, 84, 0, 0, 0, 0, 0, 0, 0, 0, 555 -NA,NA,"",2022-23,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 97, 118, 123, 0, 0, 0, 0, 0, 338 -NA,NA,"",2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 105, 101, 97, 96, 54, 50, 50, 0, 553 -NA,NA,"",2022-23,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382, 385, 381, 379, 0," 1,527" -NA,NA,"",2022-23,Arlington - Brackett,00100010, 0, 83, 54, 64, 68, 96, 60, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2022-23,Arlington - Cyrus E Dallin,00100025, 0, 67, 61, 63, 69, 85, 70, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2022-23,Arlington - Gibbs School,00100305, 0, 0, 0, 0, 0, 0, 0, 511, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2022-23,Arlington - Hardy,00100030, 0, 71, 78, 64, 55, 67, 62, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2022-23,Arlington - John A Bishop,00100005, 0, 61, 68, 70, 64, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2022-23,Arlington - M Norcross Stratton,00100055, 0, 50, 84, 73, 86, 69, 73, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2022-23,Arlington - Menotomy Preschool,00100038, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2022-23,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 0, 451, 471, 0, 0, 0, 0, 0, 922 -NA,NA,"",2022-23,Arlington - Peirce,00100045, 0, 66, 51, 63, 58, 61, 65, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2022-23,Arlington - Thompson,00100050, 0, 88, 96, 82, 88, 73, 75, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2022-23,Ashburnham-Westminster - Briggs Elementary,06100025, 48, 79, 84, 69, 69, 91, 84, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2022-23,Ashburnham-Westminster - Meetinghouse School,06100010, 29, 77, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2022-23,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 155, 159, 164, 8, 658 -NA,NA,"",2022-23,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 172, 183, 194, 0, 0, 0, 0, 0, 549 -NA,NA,"",2022-23,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 92, 91, 117, 89, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2022-23,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 220, 216, 177, 0, 840 -NA,NA,"",2022-23,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 215, 225, 242, 0, 0, 0, 0, 0, 682 -NA,NA,"",2022-23,Ashland - David Mindess,00140015, 0, 0, 0, 0, 195, 224, 225, 0, 0, 0, 0, 0, 0, 0, 0, 644 -NA,NA,"",2022-23,Ashland - Henry E Warren Elementary,00140010, 0, 176, 224, 243, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643 -NA,NA,"",2022-23,Ashland - William Pittaway Elementary,00140005, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82 -NA,NA,"",2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303, 286, 277, 262, 0," 1,128" -NA,NA,"",2022-23,Athol-Royalston - Athol Community Elementary School,06150020, 42, 110, 125, 93, 91, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2022-23,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 111, 99, 77, 2, 404 -NA,NA,"",2022-23,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 100, 110, 116, 103, 0, 0, 0, 0, 0, 429 -NA,NA,"",2022-23,Athol-Royalston - Royalston Community School,06150050, 23, 19, 22, 21, 20, 21, 16, 16, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2022-23,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 110, 109, 110, 110, 110, 110, 110, 109, 110, 72, 82, 62, 79, 0," 1,283" -NA,NA,"",2022-23,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 73, 77, 58, 66, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2022-23,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 22, 27, 0, 56 -NA,NA,"",2022-23,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506, 497, 428, 399, 14," 1,844" -NA,NA,"",2022-23,Attleboro - Attleboro Virtual Academy,00160705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 7, 17, 13, 0, 40 -NA,NA,"",2022-23,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 136, 150, 164, 173, 0, 0, 0, 0, 0, 623 -NA,NA,"",2022-23,Attleboro - Early Learning Center,00160008, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190 -NA,NA,"",2022-23,Attleboro - Hill-Roberts Elementary School,00160045, 0, 66, 92, 74, 93, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2022-23,Attleboro - Hyman Fine Elementary School,00160040, 0, 83, 100, 81, 95, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2022-23,Attleboro - Peter Thacher Elementary School,00160050, 0, 94, 93, 83, 91, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2022-23,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 135, 145, 145, 148, 0, 0, 0, 0, 0, 573 -NA,NA,"",2022-23,Attleboro - Thomas Willett Elementary School,00160035, 0, 74, 73, 74, 70, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2022-23,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 148, 134, 155, 139, 0, 0, 0, 0, 0, 576 -NA,NA,"",2022-23,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 228, 211, 213, 0, 0, 0, 0, 0, 652 -NA,NA,"",2022-23,Auburn - Auburn Senior High,00170505, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186, 172, 174, 190, 12, 841 -NA,NA,"",2022-23,Auburn - Bryn Mawr,00170010, 0, 95, 84, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2022-23,Auburn - Pakachoag School,00170025, 0, 77, 76, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2022-23,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 189, 194, 171, 0, 0, 0, 0, 0, 0, 0, 0, 554 -NA,NA,"",2022-23,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 0, 65, 60, 52, 65, 47, 45, 4, 338 -NA,NA,"",2022-23,Avon - Ralph D Butler,00180010, 23, 48, 50, 49, 48, 53, 59, 62, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98, 119, 88, 89, 0, 394 -NA,NA,"",2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 127, 114, 126, 0, 0, 0, 0, 0, 367 -NA,NA,"",2022-23,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0, 56, 62, 65, 56, 47, 57, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2022-23,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 73, 80, 89, 53, 84, 75, 78, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2022-23,Barnstable - Barnstable Community Innovation School,00200012, 0, 79, 70, 74, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2022-23,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370, 352, 354, 331, 355, 1," 1,763" -NA,NA,"",2022-23,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 312, 339, 0, 0, 0, 0, 0, 0, 651 -NA,NA,"",2022-23,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 369, 366, 0, 0, 0, 0, 0, 0, 0, 0, 735 -NA,NA,"",2022-23,Barnstable - Centerville Elementary,00200010, 0, 61, 67, 56, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2022-23,Barnstable - Enoch Cobb Early Learning Center,00200001, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2022-23,Barnstable - Hyannis West Elementary,00200025, 0, 81, 81, 88, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2022-23,Barnstable - West Barnstable Elementary,00200005, 0, 71, 66, 64, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2022-23,Barnstable - West Villages Elementary School,00200045, 0, 92, 110, 106, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 53, 65, 74, 53, 58, 50, 49, 0, 402 -NA,NA,"",2022-23,Bedford - Bedford High,00230505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 226, 194, 200, 0, 841 -NA,NA,"",2022-23,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 188, 202, 207, 0, 0, 0, 0, 0, 597 -NA,NA,"",2022-23,Bedford - Lt Eleazer Davis,00230010, 44, 141, 145, 184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2022-23,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 179, 190, 218, 0, 0, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2022-23,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 157, 157, 173, 2, 637 -NA,NA,"",2022-23,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 156, 166, 160, 0, 0, 0, 0, 0, 0, 0, 482 -NA,NA,"",2022-23,Belchertown - Cold Spring,00240005, 67, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2022-23,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 163, 175, 0, 0, 0, 0, 0, 338 -NA,NA,"",2022-23,Belchertown - Swift River Elementary,00240018, 0, 0, 163, 158, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2022-23,Bellingham - Bellingham Early Childhood Center,00250003, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 -NA,NA,"",2022-23,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 162, 148, 151, 123, 7, 747 -NA,NA,"",2022-23,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 146, 142, 156, 143, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2022-23,Bellingham - Joseph F DiPietro Elementary School,00250020, 0, 77, 73, 67, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2022-23,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 7, 4, 4, 7, 0, 28 -NA,NA,"",2022-23,Bellingham - Stall Brook,00250025, 0, 64, 56, 60, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2022-23,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 358, 333, 314, 0," 1,364" -NA,NA,"",2022-23,Belmont - Daniel Butler,00260015, 0, 65, 63, 69, 67, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2022-23,Belmont - Mary Lee Burbank,00260010, 0, 53, 63, 55, 80, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2022-23,Belmont - Roger E Wellington,00260035, 57, 85, 102, 79, 108, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2022-23,Belmont - Winn Brook,00260005, 0, 76, 82, 90, 92, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2022-23,Belmont - Winthrop L Chenery Middle,00260305, 0, 0, 0, 0, 0, 0, 354, 348, 306, 363, 0, 0, 0, 0, 0," 1,371" -NA,NA,"",2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 20, 44, 46, 48, 42, 47, 46, 39, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 95, 96, 98, 96, 96, 96, 96, 97, 92, 0, 0, 0, 0, 0, 862 -NA,NA,"",2022-23,Berkley - Berkley Community School,00270010, 61, 83, 75, 81, 93, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2022-23,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 80, 101, 95, 97, 0, 0, 0, 0, 0, 373 -NA,NA,"",2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 32, 61, 65, 47, 44, 35, 32, 0, 316 -NA,NA,"",2022-23,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 134, 105, 113, 2, 472 -NA,NA,"",2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 57, 49, 58, 66, 69, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 64, 77, 96, 88, 0, 0, 0, 0, 0, 325 -NA,NA,"",2022-23,Berlin-Boylston - Berlin Memorial School,06200005, 20, 40, 30, 40, 29, 25, 36, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2022-23,Berlin-Boylston - Boylston Elementary School,06200010, 29, 48, 58, 42, 58, 44, 58, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2022-23,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 77, 82, 75, 74, 67, 79, 61, 0, 515 -NA,NA,"",2022-23,Beverly - Ayers/Ryal Side School,00300055, 0, 82, 71, 86, 73, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2022-23,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342, 313, 292, 332, 7," 1,286" -NA,NA,"",2022-23,Beverly - Beverly Middle School,00300305, 0, 0, 0, 0, 0, 0, 350, 326, 332, 359, 0, 0, 0, 0, 0," 1,367" -NA,NA,"",2022-23,Beverly - Centerville Elementary,00300010, 0, 76, 53, 69, 64, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2022-23,Beverly - Cove Elementary,00300015, 0, 79, 80, 90, 88, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2022-23,Beverly - Hannah Elementary,00300033, 0, 62, 70, 52, 81, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2022-23,Beverly - McKeown School,00300002, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2022-23,Beverly - North Beverly Elementary,00300040, 0, 62, 68, 78, 63, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2022-23,Billerica - Billerica Memorial High School,00310505, 185, 0, 0, 0, 0, 0, 0, 0, 0, 377, 322, 299, 260, 277, 6," 1,726" -NA,NA,"",2022-23,Billerica - Frederick J Dutile,00310007, 0, 62, 59, 67, 44, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2022-23,Billerica - Hajjar Elementary,00310026, 0, 74, 69, 81, 77, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2022-23,Billerica - John F Kennedy,00310012, 0, 50, 66, 71, 59, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2022-23,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 174, 171, 204, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2022-23,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 179, 209, 216, 0, 0, 0, 0, 0, 0, 604 -NA,NA,"",2022-23,Billerica - Parker,00310015, 0, 85, 98, 86, 84, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2022-23,Billerica - Thomas Ditson,00310005, 0, 105, 114, 110, 104, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557 -NA,NA,"",2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 312, 313, 295, 0," 1,230" -NA,NA,"",2022-23,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 0, 125, 131, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2022-23,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 94, 88, 102, 6, 396 -NA,NA,"",2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 92, 145, 106, 0, 0, 0, 0, 0, 343 -NA,NA,"",2022-23,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 0, 0, 0, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109 -NA,NA,"",2022-23,Blackstone-Millville - Millville Elementary,06220010, 80, 89, 78, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 236, 227, 210, 0, 920 -NA,NA,"",2022-23,Boston - Adams Elementary School,00350302, 30, 29, 33, 36, 49, 33, 21, 18, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2022-23,Boston - Alighieri Dante Montessori School,00350066, 25, 15, 16, 11, 12, 14, 9, 6, 0, 0, 0, 0, 0, 0, 0, 108 -NA,NA,"",2022-23,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 65, 58, 58, 0, 230 -NA,NA,"",2022-23,Boston - Baldwin Early Learning Pilot Academy,00350003, 83, 49, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2022-23,Boston - Bates Elementary School,00350278, 20, 38, 40, 36, 37, 38, 38, 30, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2022-23,Boston - Beethoven Elementary School,00350021, 42, 65, 71, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2022-23,Boston - Blackstone Elementary School,00350390, 62, 71, 66, 68, 65, 79, 66, 60, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2022-23,Boston - Boston Adult Tech Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 88, 0, 121 -NA,NA,"",2022-23,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 119, 123, 107, 1, 494 -NA,NA,"",2022-23,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 12, 45, 118, 0, 178 -NA,NA,"",2022-23,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 44, 87, 115, 113, 106, 108, 25, 598 -NA,NA,"",2022-23,Boston - Boston International High School & Newcomers Academy,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 133, 99, 76, 1, 472 -NA,NA,"",2022-23,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 269, 255, 322, 288, 281, 308, 0," 1,723" -NA,NA,"",2022-23,Boston - Boston Latin School,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 429, 366, 413, 417, 387, 410, 1," 2,423" -NA,NA,"",2022-23,Boston - Boston Teachers Union K-8 Pilot,00350012, 29, 23, 26, 29, 26, 23, 25, 37, 35, 46, 0, 0, 0, 0, 0, 299 -NA,NA,"",2022-23,Boston - Bradley Elementary School,00350215, 36, 35, 38, 41, 45, 38, 31, 25, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2022-23,Boston - Brighton High School,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 17, 19, 97, 131, 123, 133, 12, 532 -NA,NA,"",2022-23,Boston - Burke High School,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 24, 46, 80, 83, 82, 96, 9, 420 -NA,NA,"",2022-23,Boston - Carter School,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 3, 3, 6, 8, 26 -NA,NA,"",2022-23,Boston - Channing Elementary School,00350360, 30, 40, 31, 18, 25, 21, 16, 8, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2022-23,Boston - Charlestown High School,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 32, 47, 170, 123, 181, 183, 56, 792 -NA,NA,"",2022-23,Boston - Chittick Elementary School,00350154, 42, 37, 34, 29, 27, 26, 21, 16, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2022-23,Boston - Clap Elementary School,00350298, 11, 16, 14, 13, 15, 17, 11, 13, 0, 0, 0, 0, 0, 0, 0, 110 -NA,NA,"",2022-23,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 16, 24, 0, 55 -NA,NA,"",2022-23,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 87, 98, 57, 28, 347 -NA,NA,"",2022-23,Boston - Condon K-8 School,00350146, 42, 64, 58, 56, 52, 71, 73, 72, 59, 88, 0, 0, 0, 0, 0, 635 -NA,NA,"",2022-23,Boston - Conley Elementary School,00350122, 21, 24, 22, 14, 23, 18, 18, 23, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2022-23,Boston - Curley K-8 School,00350020, 103, 83, 95, 83, 98, 104, 103, 106, 82, 74, 0, 0, 0, 0, 0, 931 -NA,NA,"",2022-23,Boston - Dearborn 6-12 STEM Academy,00350074, 0, 0, 0, 0, 0, 0, 0, 33, 87, 85, 87, 90, 83, 76, 0, 541 -NA,NA,"",2022-23,Boston - Dever Elementary School,00350268, 27, 48, 48, 43, 48, 52, 53, 55, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2022-23,Boston - East Boston Early Education Center,00350009, 90, 53, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2022-23,Boston - East Boston High School,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 116, 125, 217, 270, 285, 247, 16," 1,276" -NA,NA,"",2022-23,Boston - Edison K-8 School,00350375, 28, 49, 55, 83, 68, 83, 82, 62, 46, 62, 0, 0, 0, 0, 0, 618 -NA,NA,"",2022-23,Boston - Eliot K-8 Innovation School,00350096, 59, 80, 80, 79, 86, 93, 92, 96, 68, 76, 0, 0, 0, 0, 0, 809 -NA,NA,"",2022-23,Boston - Ellis Elementary School,00350072, 35, 45, 46, 48, 41, 31, 42, 30, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2022-23,Boston - Ellison-Parks Early Education School,00350008, 58, 34, 37, 35, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2022-23,Boston - English High School,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 34, 45, 145, 133, 122, 163, 9, 651 -NA,NA,"",2022-23,Boston - Everett Elementary School,00350088, 12, 38, 38, 31, 41, 42, 34, 33, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2022-23,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 103, 121, 105, 0, 434 -NA,NA,"",2022-23,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 99, 87, 93, 1, 377 -NA,NA,"",2022-23,Boston - Frederick Pilot Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 67, 115, 141, 0, 0, 0, 0, 0, 323 -NA,NA,"",2022-23,Boston - Gardner Pilot Academy,00350326, 24, 40, 33, 40, 39, 42, 38, 48, 39, 43, 0, 0, 0, 0, 0, 386 -NA,NA,"",2022-23,Boston - Greater Egleston High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 9, 24, 55, 0, 90 -NA,NA,"",2022-23,Boston - Greenwood Sarah K-8 School,00350308, 49, 48, 47, 39, 37, 26, 41, 27, 28, 32, 0, 0, 0, 0, 0, 374 -NA,NA,"",2022-23,Boston - Grew Elementary School,00350135, 17, 27, 36, 25, 32, 34, 25, 16, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2022-23,Boston - Guild Elementary School,00350062, 33, 27, 33, 32, 40, 32, 28, 26, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2022-23,Boston - Hale Elementary School,00350243, 18, 19, 22, 21, 23, 22, 23, 21, 0, 0, 0, 0, 0, 0, 0, 169 -NA,NA,"",2022-23,Boston - Haley Pilot School,00350077, 25, 34, 41, 40, 48, 43, 49, 48, 20, 23, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Boston - Harvard-Kent Elementary School,00350200, 41, 48, 45, 44, 42, 43, 40, 39, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2022-23,Boston - Haynes Early Education Center,00350010, 56, 73, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2022-23,Boston - Henderson K-12 Inclusion School Lower,00350266, 69, 58, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2022-23,Boston - Henderson K-12 Inclusion School Upper,00350426, 0, 0, 0, 47, 54, 62, 45, 61, 64, 61, 66, 59, 63, 71, 13, 666 -NA,NA,"",2022-23,Boston - Hennigan K-8 School,00350153, 0, 36, 35, 51, 46, 69, 54, 75, 76, 67, 0, 0, 0, 0, 0, 509 -NA,NA,"",2022-23,Boston - Hernandez K-8 School,00350691, 45, 50, 49, 48, 49, 47, 46, 39, 27, 25, 0, 0, 0, 0, 0, 425 -NA,NA,"",2022-23,Boston - Higginson Inclusion K0-2 School,00350015, 32, 27, 34, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2022-23,Boston - Higginson-Lewis K-8 School,00350377, 0, 0, 0, 0, 21, 29, 30, 33, 25, 39, 0, 0, 0, 0, 0, 177 -NA,NA,"",2022-23,Boston - Holmes Elementary School,00350138, 21, 35, 36, 35, 45, 47, 32, 29, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 4, 5, 4, 5, 0, 4, 4, 5, 5, 10, 1, 9, 3, 5, 6, 70 -NA,NA,"",2022-23,Boston - Hurley K-8 School,00350182, 26, 45, 48, 47, 41, 34, 38, 34, 22, 17, 0, 0, 0, 0, 0, 352 -NA,NA,"",2022-23,Boston - Kennedy John F Elementary School,00350166, 27, 44, 56, 52, 62, 50, 42, 42, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2022-23,Boston - Kennedy Patrick J Elementary School,00350264, 24, 36, 39, 37, 38, 35, 35, 20, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2022-23,Boston - Kenny Elementary School,00350328, 27, 36, 37, 41, 46, 46, 41, 42, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2022-23,Boston - Kilmer K-8 School,00350190, 46, 41, 44, 34, 35, 37, 37, 39, 37, 46, 0, 0, 0, 0, 0, 396 -NA,NA,"",2022-23,Boston - King Elementary School,00350376, 63, 61, 65, 65, 53, 58, 46, 31, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2022-23,Boston - Lee Academy,00350001, 54, 36, 32, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2022-23,Boston - Lee K-8 School,00350183, 65, 50, 56, 57, 51, 60, 52, 55, 43, 52, 0, 0, 0, 0, 0, 541 -NA,NA,"",2022-23,Boston - Lyndon K-8 School,00350262, 61, 59, 66, 60, 70, 66, 65, 67, 40, 32, 0, 0, 0, 0, 0, 586 -NA,NA,"",2022-23,Boston - Lyon High School,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 25, 31, 28, 0, 116 -NA,NA,"",2022-23,Boston - Lyon K-8 School,00350004, 0, 11, 10, 15, 12, 13, 13, 12, 15, 25, 0, 0, 0, 0, 0, 126 -NA,NA,"",2022-23,Boston - Madison Park Technical Vocational High School,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 293, 242, 236, 30," 1,087" -NA,NA,"",2022-23,Boston - Manning Elementary School,00350184, 11, 21, 23, 23, 18, 24, 21, 19, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2022-23,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 83, 71, 75, 0, 314 -NA,NA,"",2022-23,Boston - Mario Umana Academy,00350656, 34, 54, 51, 53, 71, 58, 64, 63, 57, 76, 0, 0, 0, 0, 0, 581 -NA,NA,"",2022-23,Boston - Mason Elementary School,00350304, 23, 25, 30, 27, 27, 32, 24, 0, 0, 0, 0, 0, 0, 0, 0, 188 -NA,NA,"",2022-23,Boston - Mather Elementary School,00350227, 52, 78, 75, 75, 69, 79, 57, 0, 0, 0, 0, 0, 0, 0, 0, 485 -NA,NA,"",2022-23,Boston - Mattahunt Elementary School,00350016, 88, 77, 58, 70, 57, 57, 50, 26, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2022-23,Boston - McKay K-8 School,00350080, 20, 50, 44, 75, 84, 76, 82, 72, 85, 93, 0, 0, 0, 0, 0, 681 -NA,NA,"",2022-23,Boston - McKinley Schools,00350363, 0, 0, 0, 1, 3, 3, 7, 12, 13, 12, 21, 28, 25, 22, 11, 158 -NA,NA,"",2022-23,Boston - Mendell Elementary School,00350100, 31, 39, 41, 38, 44, 41, 41, 37, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2022-23,Boston - Mildred Avenue K-8 School,00350378, 42, 37, 37, 41, 41, 65, 82, 80, 89, 104, 0, 0, 0, 0, 0, 618 -NA,NA,"",2022-23,Boston - Mozart Elementary School,00350237, 26, 22, 23, 24, 23, 21, 21, 16, 0, 0, 0, 0, 0, 0, 0, 176 -NA,NA,"",2022-23,Boston - Murphy K-8 School,00350240, 40, 62, 66, 86, 90, 102, 105, 136, 71, 78, 0, 0, 0, 0, 0, 836 -NA,NA,"",2022-23,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 55, 77, 134, 126, 117, 105, 0, 614 -NA,NA,"",2022-23,Boston - O'Bryant School of Math & Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 168, 143, 332, 308, 300, 316, 0," 1,567" -NA,NA,"",2022-23,Boston - O'Donnell Elementary School,00350141, 22, 34, 42, 37, 40, 41, 36, 29, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2022-23,Boston - Ohrenberger School,00350258, 0, 0, 0, 0, 64, 78, 72, 85, 64, 88, 0, 0, 0, 0, 0, 451 -NA,NA,"",2022-23,Boston - Orchard Gardens K-8 School,00350257, 59, 55, 64, 64, 70, 88, 72, 86, 76, 90, 0, 0, 0, 0, 0, 724 -NA,NA,"",2022-23,Boston - Otis Elementary School,00350156, 44, 55, 63, 60, 60, 59, 41, 32, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2022-23,Boston - Perkins Elementary School,00350231, 8, 21, 17, 28, 27, 20, 14, 23, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2022-23,Boston - Perry Elementary School,00350255, 27, 32, 26, 23, 22, 29, 13, 10, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2022-23,Boston - Philbrick Elementary School,00350172, 13, 18, 14, 14, 12, 16, 16, 11, 0, 0, 0, 0, 0, 0, 0, 114 -NA,NA,"",2022-23,Boston - Quincy Elementary School,00350286, 76, 103, 115, 101, 112, 121, 110, 0, 0, 0, 0, 0, 0, 0, 0, 738 -NA,NA,"",2022-23,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 124, 83, 86, 71, 66, 61, 33, 6, 530 -NA,NA,"",2022-23,Boston - Roosevelt K-8 School,00350116, 36, 32, 36, 24, 30, 43, 31, 40, 37, 46, 0, 0, 0, 0, 0, 355 -NA,NA,"",2022-23,Boston - Russell Elementary School,00350366, 60, 59, 51, 51, 48, 50, 44, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2022-23,Boston - Shaw Elementary School,00350014, 47, 41, 25, 32, 18, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2022-23,Boston - Snowden International High School,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 118, 110, 106, 0, 463 -NA,NA,"",2022-23,Boston - Sumner Elementary School,00350052, 63, 75, 76, 75, 67, 75, 61, 46, 0, 0, 0, 0, 0, 0, 0, 538 -NA,NA,"",2022-23,Boston - Taylor Elementary School,00350054, 29, 43, 39, 38, 47, 60, 57, 45, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2022-23,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 34, 103, 130, 154, 148, 161, 141, 0, 871 -NA,NA,"",2022-23,Boston - Tobin K-8 School,00350229, 21, 43, 37, 37, 41, 49, 49, 46, 48, 55, 0, 0, 0, 0, 0, 426 -NA,NA,"",2022-23,Boston - Trotter Elementary School,00350370, 37, 36, 38, 34, 34, 50, 38, 30, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2022-23,Boston - Tynan Elementary School,00350181, 20, 25, 26, 34, 26, 25, 17, 24, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2022-23,Boston - UP Academy Holland,00350167, 55, 88, 78, 95, 111, 105, 104, 0, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2022-23,Boston - Warren-Prescott K-8 School,00350346, 61, 71, 60, 66, 50, 58, 53, 40, 25, 39, 0, 0, 0, 0, 0, 523 -NA,NA,"",2022-23,Boston - West Zone Early Learning Center,00350006, 46, 33, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2022-23,Boston - Winship Elementary School,00350374, 49, 45, 42, 41, 50, 50, 39, 22, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2022-23,Boston - Winthrop Elementary School,00350180, 30, 31, 36, 37, 23, 34, 25, 21, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2022-23,Boston - Young Achievers K-8 School,00350380, 41, 42, 57, 43, 45, 64, 55, 44, 40, 52, 0, 0, 0, 0, 0, 483 -NA,NA,"",2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 100, 100, 83, 88, 89, 88, 70, 80, 0, 698 -NA,NA,"",2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 11, 0, 273, 0, 321 -NA,NA,"",2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 46, 55, 61, 84, 80, 72, 65, 13, 476 -NA,NA,"",2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 85, 102, 98, 126, 104, 101, 79, 0, 695 -NA,NA,"",2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 108, 124, 130, 139, 128, 125, 99, 69, 0, 0, 0, 0, 0, 0, 0, 922 -NA,NA,"",2022-23,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 79, 94, 86, 10, 351 -NA,NA,"",2022-23,Bourne - Bourne Intermediate School,00360030, 0, 0, 0, 0, 117, 113, 140, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2022-23,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 0, 128, 151, 152, 0, 0, 0, 0, 0, 431 -NA,NA,"",2022-23,Bourne - Bournedale Elementary School,00360005, 67, 109, 117, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2022-23,Boxford - Harry Lee Cole,00380005, 42, 93, 103, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2022-23,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 107, 89, 94, 94, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2022-23,Braintree - Archie T Morrison,00400033, 0, 27, 72, 73, 58, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2022-23,Braintree - Braintree High,00400505, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402, 429, 377, 404, 0," 1,706" -NA,NA,"",2022-23,Braintree - Donald Ross,00400050, 0, 36, 36, 37, 46, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2022-23,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 244, 259, 244, 224, 0, 0, 0, 0, 0, 971 -NA,NA,"",2022-23,Braintree - Highlands,00400015, 0, 21, 72, 72, 85, 85, 74, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2022-23,Braintree - Hollis,00400005, 0, 41, 60, 84, 68, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2022-23,Braintree - Liberty,00400025, 0, 0, 85, 75, 71, 75, 65, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Braintree - Mary E Flaherty School,00400020, 0, 22, 82, 56, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2022-23,Braintree - Monatiquot Kindergarten Center,00400009, 0, 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2022-23,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 0, 159, 172, 183, 0, 0, 0, 0, 0, 514 -NA,NA,"",2022-23,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 69, 75, 57, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2022-23,Brewster - Stony Brook Elementary,00410005, 36, 63, 66, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31, 37, 37, 39, 37, 38, 35, 35, 22, 23, 0, 0, 0, 0, 0, 334 -NA,NA,"",2022-23,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 251, 243, 248, 0, 0, 0, 0, 0, 742 -NA,NA,"",2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 388, 327, 311, 13," 1,390" -NA,NA,"",2022-23,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 156, 166, 179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2022-23,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 178, 174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2022-23,Bridgewater-Raynham - Mitchell Elementary School,06250002, 148, 257, 276, 276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 957 -NA,NA,"",2022-23,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 178, 191, 191, 165, 0, 0, 0, 0, 0, 725 -NA,NA,"",2022-23,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 5, 3, 0, 14 -NA,NA,"",2022-23,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 268, 270, 263, 0, 0, 0, 0, 0, 0, 0, 0, 801 -NA,NA,"",2022-23,Brimfield - Brimfield Elementary,00430005, 34, 32, 36, 29, 43, 30, 44, 39, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2022-23,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 171, 105, 104, 0, 549 -NA,NA,"",2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 328, 320, 316, 0," 1,310" -NA,NA,"",2022-23,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 159, 147, 142, 0, 0, 0, 0, 0, 448 -NA,NA,"",2022-23,Brockton - Barrett Russell Early Childhood Center,00440008, 229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2022-23,Brockton - Brockton Champion High School,00440515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 46, 23, 18, 0, 138 -NA,NA,"",2022-23,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,186", 920, 710, 801, 62," 3,679" -NA,NA,"",2022-23,Brockton - Brockton Virtual Learning Academy,00440705, 0, 0, 4, 6, 8, 9, 15, 17, 18, 14, 35, 16, 19, 12, 0, 173 -NA,NA,"",2022-23,Brockton - Brookfield,00440010, 28, 63, 80, 68, 66, 64, 62, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2022-23,Brockton - Downey,00440110, 61, 76, 103, 110, 77, 75, 90, 0, 0, 0, 0, 0, 0, 0, 0, 592 -NA,NA,"",2022-23,Brockton - Dr W Arnone Community School,00440001, 65, 111, 120, 125, 109, 108, 107, 0, 0, 0, 0, 0, 0, 0, 0, 745 -NA,NA,"",2022-23,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 164, 133, 155, 0, 0, 0, 0, 0, 452 -NA,NA,"",2022-23,Brockton - Edgar B Davis,00440023, 0, 92, 123, 103, 83, 85, 115, 118, 94, 117, 0, 0, 0, 0, 0, 930 -NA,NA,"",2022-23,Brockton - Edison Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 36, 57, 97, 0, 241 -NA,NA,"",2022-23,Brockton - Gilmore Elementary School,00440055, 0, 60, 69, 71, 64, 62, 77, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2022-23,Brockton - Hancock,00440045, 22, 110, 102, 111, 97, 83, 91, 0, 0, 0, 0, 0, 0, 0, 0, 616 -NA,NA,"",2022-23,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 0, 0, 0, 0, 1, 5, 7, 8, 13, 11, 4, 0, 49 -NA,NA,"",2022-23,Brockton - John F Kennedy,00440017, 0, 97, 106, 89, 68, 65, 88, 0, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2022-23,Brockton - Louis F Angelo Elementary,00440065, 0, 98, 113, 122, 108, 172, 178, 0, 0, 0, 0, 0, 0, 0, 0, 791 -NA,NA,"",2022-23,Brockton - Manthala George Jr. School,00440003, 53, 162, 159, 125, 102, 97, 96, 0, 0, 0, 0, 0, 0, 0, 0, 794 -NA,NA,"",2022-23,Brockton - Mary E. Baker School,00440002, 0, 108, 128, 108, 110, 112, 107, 0, 0, 0, 0, 0, 0, 0, 0, 673 -NA,NA,"",2022-23,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 150, 135, 163, 0, 0, 0, 0, 0, 448 -NA,NA,"",2022-23,Brockton - Oscar F Raymond,00440078, 26, 155, 129, 140, 114, 115, 117, 0, 0, 0, 0, 0, 0, 0, 0, 796 -NA,NA,"",2022-23,Brockton - Plouffe Middle School,00440422, 0, 0, 0, 0, 0, 0, 0, 183, 239, 230, 0, 0, 0, 0, 0, 652 -NA,NA,"",2022-23,Brockton - PROMISE College and Career Academy,00440525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 0, 0, 0, 0, 38 -NA,NA,"",2022-23,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 177, 179, 162, 0, 0, 0, 0, 0, 518 -NA,NA,"",2022-23,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 180, 194, 183, 0, 0, 0, 0, 0, 557 -NA,NA,"",2022-23,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 188, 196, 193, 193, 192, 194, 187, 179, 179, 157, 143, 123, 97, 2," 2,223" -NA,NA,"",2022-23,Brookfield - Brookfield Elementary,00450005, 25, 35, 38, 39, 37, 40, 40, 37, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2022-23,Brookline - Brookline Early Education Program at Beacon,00460001, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50 -NA,NA,"",2022-23,Brookline - Brookline Early Education Program at Clark Road,00460003, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 -NA,NA,"",2022-23,Brookline - Brookline Early Education Program at Putterham,00460002, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52 -NA,NA,"",2022-23,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510, 552, 507, 497, 21," 2,087" -NA,NA,"",2022-23,Brookline - Edith C Baker,00460005, 0, 68, 82, 74, 77, 76, 76, 66, 66, 87, 0, 0, 0, 0, 0, 672 -NA,NA,"",2022-23,Brookline - Florida Ruffin Ridley School,00460015, 26, 93, 105, 100, 96, 85, 89, 81, 92, 84, 0, 0, 0, 0, 0, 851 -NA,NA,"",2022-23,Brookline - Heath,00460025, 0, 40, 51, 51, 57, 52, 64, 39, 48, 57, 0, 0, 0, 0, 0, 459 -NA,NA,"",2022-23,Brookline - John D Runkle,00460045, 15, 49, 53, 42, 58, 59, 50, 57, 63, 62, 0, 0, 0, 0, 0, 508 -NA,NA,"",2022-23,Brookline - Lawrence,00460030, 0, 81, 75, 78, 69, 59, 77, 52, 64, 66, 0, 0, 0, 0, 0, 621 -NA,NA,"",2022-23,Brookline - Michael Driscoll,00460020, 0, 51, 36, 58, 47, 53, 47, 51, 52, 61, 0, 0, 0, 0, 0, 456 -NA,NA,"",2022-23,Brookline - Pierce,00460040, 0, 73, 75, 82, 75, 77, 82, 68, 87, 86, 0, 0, 0, 0, 0, 705 -NA,NA,"",2022-23,Brookline - The Lynch Center,00460060, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50 -NA,NA,"",2022-23,Brookline - William H Lincoln,00460035, 0, 54, 50, 62, 55, 43, 59, 53, 49, 60, 0, 0, 0, 0, 0, 485 -NA,NA,"",2022-23,Burlington - Burlington High,00480505, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 227, 213, 226, 0, 972 -NA,NA,"",2022-23,Burlington - Fox Hill,00480007, 0, 59, 77, 78, 73, 76, 65, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2022-23,Burlington - Francis Wyman Elementary,00480035, 0, 90, 78, 84, 84, 71, 86, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2022-23,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 285, 282, 250, 0, 0, 0, 0, 0, 817 -NA,NA,"",2022-23,Burlington - Memorial,00480015, 0, 49, 76, 61, 67, 68, 73, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2022-23,Burlington - Pine Glen Elementary,00480020, 0, 52, 47, 43, 44, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2022-23,Cambridge - Amigos School,00490006, 28, 47, 47, 44, 42, 42, 47, 38, 40, 32, 0, 0, 0, 0, 0, 407 -NA,NA,"",2022-23,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481, 479, 429, 459, 19," 1,867" -NA,NA,"",2022-23,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 97, 98, 98, 0, 0, 0, 0, 0, 293 -NA,NA,"",2022-23,Cambridge - Cambridgeport,00490007, 31, 32, 29, 45, 34, 37, 47, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2022-23,Cambridge - Fletcher/Maynard Academy,00490090, 33, 37, 42, 37, 36, 36, 33, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2022-23,Cambridge - Graham and Parks,00490080, 33, 52, 52, 68, 53, 54, 50, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2022-23,Cambridge - Haggerty,00490020, 17, 34, 34, 41, 30, 36, 40, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2022-23,Cambridge - John M Tobin,00490065, 107, 39, 37, 36, 37, 37, 27, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2022-23,Cambridge - Kennedy-Longfellow,00490040, 13, 22, 25, 29, 36, 33, 26, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2022-23,Cambridge - King Open,00490035, 38, 64, 59, 59, 52, 48, 51, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Cambridge - Maria L. Baldwin,00490005, 38, 62, 55, 51, 44, 48, 42, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2022-23,Cambridge - Martin Luther King Jr.,00490030, 39, 55, 51, 50, 45, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2022-23,Cambridge - Morse,00490045, 52, 47, 45, 43, 29, 34, 44, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2022-23,Cambridge - Peabody,00490050, 38, 51, 47, 45, 46, 46, 45, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2022-23,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 87, 79, 85, 0, 0, 0, 0, 0, 251 -NA,NA,"",2022-23,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 94, 89, 91, 0, 0, 0, 0, 0, 274 -NA,NA,"",2022-23,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 103, 70, 100, 0, 0, 0, 0, 0, 273 -NA,NA,"",2022-23,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 222, 211, 203, 9, 904 -NA,NA,"",2022-23,Canton - Dean S Luce,00500020, 0, 79, 73, 88, 69, 79, 69, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2022-23,Canton - John F Kennedy,00500017, 0, 71, 95, 62, 85, 72, 85, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2022-23,Canton - Lt Peter M Hansen,00500012, 0, 85, 89, 99, 96, 92, 85, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2022-23,Canton - Rodman Early Childhood Center,00500010, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 -NA,NA,"",2022-23,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 252, 257, 244, 0, 0, 0, 0, 0, 753 -NA,NA,"",2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 84, 84, 82, 0, 0, 0, 0, 0, 250 -NA,NA,"",2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 174, 155, 161, 0, 666 -NA,NA,"",2022-23,Carlisle - Carlisle School,00510025, 12, 63, 77, 60, 57, 69, 65, 72, 60, 66, 0, 0, 0, 0, 0, 601 -NA,NA,"",2022-23,Carver - Carver Elementary School,00520015, 54, 124, 136, 107, 130, 122, 100, 0, 0, 0, 0, 0, 0, 0, 0, 773 -NA,NA,"",2022-23,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 140, 121, 120, 78, 100, 102, 88, 3, 752 -NA,NA,"",2022-23,Central Berkshire - Becket Washington School,06350005, 17, 20, 12, 8, 16, 13, 14, 0, 0, 0, 0, 0, 0, 0, 0, 100 -NA,NA,"",2022-23,Central Berkshire - Craneville,06350025, 0, 77, 76, 57, 86, 69, 81, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2022-23,Central Berkshire - Kittredge,06350035, 35, 19, 20, 24, 21, 15, 27, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2022-23,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 123, 107, 115, 0, 0, 0, 0, 0, 345 -NA,NA,"",2022-23,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 131, 129, 110, 0, 485 -NA,NA,"",2022-23,Chelmsford - Byam School,00560030, 0, 103, 106, 102, 96, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2022-23,Chelmsford - Center Elementary School,00560005, 0, 82, 100, 99, 87, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485 -NA,NA,"",2022-23,Chelmsford - Charles D Harrington,00560025, 0, 84, 86, 109, 96, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2022-23,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 340, 351, 320, 0," 1,367" -NA,NA,"",2022-23,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 178, 177, 177, 191, 0, 0, 0, 0, 0, 723 -NA,NA,"",2022-23,Chelmsford - Community Education Center,00560001, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2022-23,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 212, 215, 206, 211, 0, 0, 0, 0, 0, 844 -NA,NA,"",2022-23,Chelmsford - South Row,00560015, 0, 85, 90, 109, 91, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2022-23,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, 444, 338, 318, 6," 1,611" -NA,NA,"",2022-23,Chelsea - Chelsea Opportunity Academy,00570515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 43, 60, 0, 115 -NA,NA,"",2022-23,Chelsea - Chelsea Virtual Learning Academy,00570705, 0, 0, 0, 0, 0, 0, 1, 2, 2, 4, 2, 9, 11, 16, 0, 47 -NA,NA,"",2022-23,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 154, 169, 165, 183, 0, 0, 0, 0, 0, 671 -NA,NA,"",2022-23,Chelsea - Edgar A Hooks Elementary,00570030, 0, 0, 101, 123, 138, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2022-23,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 124, 99, 115, 113, 0, 0, 0, 0, 0, 451 -NA,NA,"",2022-23,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 88, 138, 136, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2022-23,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 113, 119, 85, 96, 33, 32, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2022-23,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 110, 116, 138, 147, 0, 0, 0, 0, 0, 511 -NA,NA,"",2022-23,Chelsea - Shurtleff Early Childhood,00570003, 268, 452, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 823 -NA,NA,"",2022-23,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 98, 119, 112, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 24, 18, 25, 11, 18, 15, 16, 18, 0, 0, 0, 0, 0, 0, 0, 145 -NA,NA,"",2022-23,Chicopee - Barry,00610003, 0, 44, 48, 58, 75, 58, 62, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2022-23,Chicopee - Belcher,00610010, 31, 56, 57, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2022-23,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 261, 268, 247, 0, 0, 0, 0, 0, 776 -NA,NA,"",2022-23,Chicopee - Bowe,00610015, 0, 60, 64, 73, 62, 71, 79, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2022-23,Chicopee - Bowie,00610020, 0, 35, 50, 42, 44, 56, 48, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2022-23,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 0, 8, 14, 10, 21, 16, 18, 0, 87 -NA,NA,"",2022-23,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336, 306, 286, 278, 0," 1,206" -NA,NA,"",2022-23,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 238, 212, 198, 0, 914 -NA,NA,"",2022-23,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 246, 222, 228, 0, 0, 0, 0, 0, 696 -NA,NA,"",2022-23,Chicopee - Fairview Elementary,00610050, 17, 68, 56, 59, 61, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2022-23,Chicopee - Gen John J Stefanik,00610090, 0, 50, 58, 73, 66, 72, 70, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2022-23,Chicopee - Lambert-Lavoie,00610040, 0, 33, 35, 39, 41, 40, 53, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2022-23,Chicopee - Litwin,00610022, 0, 18, 12, 17, 104, 79, 101, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2022-23,Chicopee - Streiber Memorial School,00610065, 0, 47, 37, 32, 37, 33, 40, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2022-23,Chicopee - Szetela Early Childhood Center,00610001, 222, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,04180305, 0, 0, 0, 0, 0, 0, 0, 96, 128, 105, 0, 0, 0, 0, 0, 329 -NA,NA,"",2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 59, 48, 39, 0, 183 -NA,NA,"",2022-23,Clarksburg - Clarksburg Elementary,00630010, 14, 16, 18, 18, 16, 21, 29, 20, 19, 18, 0, 0, 0, 0, 0, 189 -NA,NA,"",2022-23,Clinton - Clinton Elementary,00640050, 87, 132, 158, 156, 144, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 840 -NA,NA,"",2022-23,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 0, 136, 138, 133, 138, 0, 0, 0, 0, 0, 545 -NA,NA,"",2022-23,Clinton - Clinton Senior High,00640505, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 128, 147, 112, 2, 587 -NA,NA,"",2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 22, 20, 20, 20, 21, 22, 17, 17, 20, 20, 37, 39, 33, 28, 0, 336 -NA,NA,"",2022-23,Cohasset - Cohasset High School,00650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 107, 98, 115, 0, 431 -NA,NA,"",2022-23,Cohasset - Cohasset Middle School,00650305, 0, 0, 0, 0, 0, 0, 0, 110, 86, 99, 0, 0, 0, 0, 0, 295 -NA,NA,"",2022-23,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 104, 103, 97, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2022-23,Cohasset - Joseph Osgood,00650010, 26, 115, 128, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 117, 125, 87, 101, 114, 122, 114, 115, 98, 82, 67, 31, 30, 0," 1,203" -NA,NA,"",2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 22, 41, 37, 31, 47, 47, 28, 0, 253 -NA,NA,"",2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,04400205, 115, 123, 115, 105, 126, 132, 125, 121, 116, 117, 0, 0, 0, 0, 0," 1,195" -NA,NA,"",2022-23,Concord - Alcott,00670005, 21, 63, 58, 62, 71, 74, 68, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2022-23,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 214, 225, 211, 0, 0, 0, 0, 0, 650 -NA,NA,"",2022-23,Concord - Thoreau,00670020, 16, 56, 68, 67, 73, 77, 76, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2022-23,Concord - Willard,00670030, 17, 68, 65, 73, 73, 74, 76, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2022-23,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 316, 328, 339, 3," 1,306" -NA,NA,"",2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 45, 54, 51, 54, 55, 55, 53, 40, 26, 21, 0, 0, 0, 0, 0, 454 -NA,NA,"",2022-23,Conway - Conway Grammar,00680005, 12, 10, 14, 15, 20, 16, 17, 19, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2022-23,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 181, 211, 200, 8, 777 -NA,NA,"",2022-23,Danvers - Great Oak,00710015, 0, 39, 48, 61, 47, 52, 54, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2022-23,Danvers - Highlands,00710010, 0, 57, 66, 71, 66, 65, 61, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2022-23,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 245, 248, 279, 0, 0, 0, 0, 0, 772 -NA,NA,"",2022-23,Danvers - Ivan G Smith,00710032, 0, 65, 53, 58, 55, 58, 50, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2022-23,Danvers - Riverside,00710030, 59, 45, 40, 49, 44, 56, 38, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2022-23,Danvers - Willis E Thorpe,00710045, 52, 45, 33, 64, 43, 48, 44, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2022-23,Dartmouth - Andrew B. Cushman School,00720005, 75, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2022-23,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 247, 261, 234, 0, 979 -NA,NA,"",2022-23,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 265, 257, 282, 0, 0, 0, 0, 0, 804 -NA,NA,"",2022-23,Dartmouth - George H Potter,00720030, 15, 57, 66, 70, 63, 69, 61, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2022-23,Dartmouth - James M. Quinn School,00720040, 0, 116, 120, 110, 138, 111, 109, 0, 0, 0, 0, 0, 0, 0, 0, 704 -NA,NA,"",2022-23,Dartmouth - Joseph Demello,00720015, 0, 0, 64, 64, 68, 71, 84, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2022-23,Dedham - Avery,00730010, 0, 0, 64, 76, 55, 53, 49, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2022-23,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 193, 170, 171, 5, 715 -NA,NA,"",2022-23,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 178, 164, 198, 0, 0, 0, 0, 0, 540 -NA,NA,"",2022-23,Dedham - Early Childhood Center,00730005, 106, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2022-23,Dedham - Greenlodge,00730025, 0, 0, 56, 55, 61, 55, 50, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2022-23,Dedham - Oakdale,00730030, 0, 0, 54, 46, 57, 39, 49, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2022-23,Dedham - Riverdale,00730045, 0, 0, 42, 35, 26, 44, 27, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2022-23,Deerfield - Deerfield Elementary,00740015, 21, 28, 39, 27, 54, 38, 52, 50, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 187, 185, 151, 166, 0, 888 -NA,NA,"",2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 48, 77, 75, 63, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 63, 52, 60, 53, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2022-23,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 233, 243, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2022-23,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0, 0, 0, 0, 0, 253, 200, 1, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2022-23,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 116, 98, 98, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2022-23,Dighton-Rehoboth - Dighton Elementary,06500005, 20, 64, 83, 104, 73, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2022-23,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 96, 95, 83, 92, 0, 0, 0, 0, 0, 366 -NA,NA,"",2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 169, 171, 163, 4, 687 -NA,NA,"",2022-23,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 108, 122, 109, 107, 0, 0, 0, 0, 0, 446 -NA,NA,"",2022-23,Dighton-Rehoboth - Palmer River,06500010, 17, 68, 105, 114, 116, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2022-23,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 68, 101, 94, 81, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2022-23,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 71, 93, 87, 1, 324 -NA,NA,"",2022-23,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 106, 99, 93, 0, 0, 0, 0, 0, 298 -NA,NA,"",2022-23,Douglas - Douglas Primary School,00770005, 60, 75, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2022-23,Dover - Chickering,00780005, 11, 76, 88, 69, 97, 84, 77, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2022-23,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 158, 177, 151, 0, 669 -NA,NA,"",2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 172, 153, 157, 0, 0, 0, 0, 0, 482 -NA,NA,"",2022-23,Dracut - Brookside Elementary,00790035, 34, 86, 86, 77, 80, 78, 77, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2022-23,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 217, 198, 193, 6, 847 -NA,NA,"",2022-23,Dracut - George H. Englesby Elementary School,00790045, 0, 69, 89, 92, 96, 94, 92, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2022-23,Dracut - Greenmont Avenue,00790030, 0, 36, 32, 47, 44, 42, 39, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2022-23,Dracut - Joseph A Campbell Elementary,00790020, 29, 77, 93, 100, 96, 100, 101, 0, 0, 0, 0, 0, 0, 0, 0, 596 -NA,NA,"",2022-23,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 263, 306, 279, 0, 0, 0, 0, 0, 848 -NA,NA,"",2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 31, 42, 37, 44, 42, 43, 39, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2022-23,Dudley-Charlton Reg - Charlton Elementary,06580020, 70, 125, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2022-23,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 150, 144, 150, 148, 0, 0, 0, 0, 0, 592 -NA,NA,"",2022-23,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 110, 111, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2022-23,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 134, 132, 132, 149, 0, 0, 0, 0, 0, 547 -NA,NA,"",2022-23,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 149, 155, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2022-23,Dudley-Charlton Reg - Mason Road School,06580010, 51, 78, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 210, 226, 204, 5, 923 -NA,NA,"",2022-23,Duxbury - Alden School,00820004, 0, 0, 0, 0, 198, 199, 206, 0, 0, 0, 0, 0, 0, 0, 0, 603 -NA,NA,"",2022-23,Duxbury - Chandler Elementary,00820006, 53, 203, 192, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 657 -NA,NA,"",2022-23,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229, 231, 239, 225, 3, 927 -NA,NA,"",2022-23,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 208, 224, 191, 0, 0, 0, 0, 0, 623 -NA,NA,"",2022-23,East Bridgewater - Central,00830005, 101, 126, 147, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 526 -NA,NA,"",2022-23,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 165, 160, 149, 129, 139, 160, 2, 904 -NA,NA,"",2022-23,East Bridgewater - Gordon W. Mitchell School,00830010, 0, 0, 0, 0, 161, 148, 163, 161, 0, 0, 0, 0, 0, 0, 0, 633 -NA,NA,"",2022-23,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 193, 209, 196, 0, 0, 0, 0, 0, 598 -NA,NA,"",2022-23,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 182, 210, 216, 4, 816 -NA,NA,"",2022-23,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 91, 92, 109, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2022-23,East Longmeadow - Meadow Brook,00870013, 68, 157, 178, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2022-23,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 98, 85, 86, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2022-23,Eastham - Eastham Elementary,00850005, 7, 30, 37, 24, 26, 30, 32, 0, 0, 0, 0, 0, 0, 0, 0, 186 -NA,NA,"",2022-23,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 103, 86, 95, 3, 370 -NA,NA,"",2022-23,Easthampton - Mountain View School,00860415, 31, 101, 105, 117, 118, 117, 115, 115, 109, 115, 0, 0, 0, 0, 0," 1,043" -NA,NA,"",2022-23,Easton - Blanche A. Ames Elementary School,00880015, 85, 198, 239, 225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 747 -NA,NA,"",2022-23,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 257, 266, 298, 0, 0, 0, 0, 0, 821 -NA,NA,"",2022-23,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, 288, 268, 275, 12," 1,082" -NA,NA,"",2022-23,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 243, 249, 268, 0, 0, 0, 0, 0, 0, 0, 0, 760 -NA,NA,"",2022-23,Edgartown - Edgartown Elementary,00890005, 9, 39, 34, 46, 47, 42, 39, 49, 44, 55, 0, 0, 0, 0, 0, 404 -NA,NA,"",2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 91, 93, 81, 0, 364 -NA,NA,"",2022-23,Erving - Erving Elementary,00910030, 23, 12, 20, 16, 17, 15, 13, 13, 0, 0, 0, 0, 0, 0, 0, 129 -NA,NA,"",2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449, 443, 402, 400, 0," 1,694" -NA,NA,"",2022-23,Everett - Adams School,00930003, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2022-23,Everett - Devens School,00930030, 0, 1, 2, 1, 2, 4, 6, 3, 5, 4, 5, 6, 6, 1, 0, 46 -NA,NA,"",2022-23,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 604, 620, 562, 445, 0," 2,231" -NA,NA,"",2022-23,Everett - George Keverian School,00930028, 0, 59, 95, 70, 95, 88, 105, 130, 134, 121, 0, 0, 0, 0, 0, 897 -NA,NA,"",2022-23,Everett - Lafayette School,00930038, 0, 88, 87, 123, 114, 105, 123, 118, 138, 124, 0, 0, 0, 0, 0," 1,020" -NA,NA,"",2022-23,Everett - Madeline English School,00930018, 0, 73, 73, 65, 81, 87, 103, 97, 86, 98, 0, 0, 0, 0, 0, 763 -NA,NA,"",2022-23,Everett - Parlin School,00930058, 0, 100, 112, 124, 131, 123, 102, 107, 101, 114, 0, 0, 0, 0, 0," 1,014" -NA,NA,"",2022-23,Everett - Sumner G. Whittier School,00930010, 0, 57, 74, 66, 73, 73, 74, 71, 72, 70, 0, 0, 0, 0, 0, 630 -NA,NA,"",2022-23,Everett - Webster Extension,00930001, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2022-23,Everett - Webster School,00930015, 0, 53, 65, 54, 61, 50, 46, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2022-23,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 171, 173, 172, 172, 177, 173, 161, 163, 1," 1,363" -NA,NA,"",2022-23,Fairhaven - East Fairhaven,00940010, 17, 49, 52, 44, 41, 55, 55, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2022-23,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 157, 147, 168, 1, 633 -NA,NA,"",2022-23,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 139, 144, 155, 0, 0, 0, 0, 0, 438 -NA,NA,"",2022-23,Fairhaven - Leroy Wood,00940030, 20, 59, 64, 74, 79, 70, 76, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2022-23,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 708, 637, 536, 577, 2," 2,460" -NA,NA,"",2022-23,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 94, 126, 102, 116, 125, 133, 0, 0, 0, 0, 0, 0, 0, 0, 696 -NA,NA,"",2022-23,Fall River - Early Learning Center,00950001, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56 -NA,NA,"",2022-23,Fall River - Henry Lord Community School,00950017, 35, 90, 101, 93, 87, 82, 80, 85, 81, 81, 0, 0, 0, 0, 0, 815 -NA,NA,"",2022-23,Fall River - James Tansey,00950140, 0, 45, 52, 42, 53, 43, 41, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2022-23,Fall River - John J Doran,00950045, 30, 45, 56, 57, 50, 54, 62, 54, 51, 50, 0, 0, 0, 0, 0, 509 -NA,NA,"",2022-23,Fall River - Letourneau Elementary School,00950013, 29, 88, 103, 92, 98, 91, 96, 0, 0, 0, 0, 0, 0, 0, 0, 597 -NA,NA,"",2022-23,Fall River - Mary Fonseca Elementary School,00950011, 62, 97, 102, 85, 97, 96, 97, 0, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2022-23,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 226, 229, 227, 0, 0, 0, 0, 0, 682 -NA,NA,"",2022-23,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 254, 229, 207, 0, 0, 0, 0, 0, 690 -NA,NA,"",2022-23,Fall River - North End Elementary,00950005, 49, 109, 106, 101, 118, 108, 96, 0, 0, 0, 0, 0, 0, 0, 0, 687 -NA,NA,"",2022-23,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 6, 26, 29, 40, 59, 37, 0, 197 -NA,NA,"",2022-23,Fall River - Samuel Watson,00950145, 0, 53, 48, 33, 31, 44, 33, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2022-23,Fall River - Spencer Borden,00950130, 28, 78, 94, 89, 94, 85, 108, 0, 0, 0, 0, 0, 0, 0, 0, 576 -NA,NA,"",2022-23,Fall River - Stone PK-12 School,00950340, 0, 0, 2, 2, 5, 2, 3, 5, 9, 9, 14, 6, 9, 8, 0, 74 -NA,NA,"",2022-23,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 181, 179, 173, 0, 0, 0, 0, 0, 533 -NA,NA,"",2022-23,Fall River - William S Greene,00950065, 32, 110, 130, 94, 126, 114, 115, 0, 0, 0, 0, 0, 0, 0, 0, 721 -NA,NA,"",2022-23,Falmouth - East Falmouth Elementary,00960005, 98, 32, 48, 28, 31, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2022-23,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 209, 180, 191, 4, 766 -NA,NA,"",2022-23,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 231, 246, 0, 0, 0, 0, 0, 477 -NA,NA,"",2022-23,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 252, 230, 0, 0, 0, 0, 0, 0, 0, 482 -NA,NA,"",2022-23,Falmouth - Mullen-Hall,00960020, 0, 69, 67, 78, 83, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2022-23,Falmouth - North Falmouth Elementary,00960030, 0, 52, 87, 54, 65, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2022-23,Falmouth - Teaticket,00960015, 25, 56, 51, 41, 50, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2022-23,Farmington River Reg - Farmington River Elementary,06620020, 15, 15, 16, 17, 15, 11, 15, 16, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2022-23,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 0, 217, 181, 190, 0, 0, 0, 0, 0, 588 -NA,NA,"",2022-23,Fitchburg - Crocker Elementary,00970016, 0, 0, 129, 120, 129, 126, 112, 0, 0, 0, 0, 0, 0, 0, 0, 616 -NA,NA,"",2022-23,Fitchburg - Fitchburg High,00970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313, 309, 306, 315, 3," 1,246" -NA,NA,"",2022-23,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 17, 49, 103, 12, 194 -NA,NA,"",2022-23,Fitchburg - McKay Elementary School,00970340, 0, 0, 129, 134, 156, 177, 131, 0, 0, 0, 0, 0, 0, 0, 0, 727 -NA,NA,"",2022-23,Fitchburg - Memorial Middle School,00970048, 0, 0, 0, 0, 0, 0, 0, 197, 183, 201, 0, 0, 0, 0, 0, 581 -NA,NA,"",2022-23,Fitchburg - Reingold Elementary,00970043, 0, 0, 127, 115, 125, 144, 140, 0, 0, 0, 0, 0, 0, 0, 0, 651 -NA,NA,"",2022-23,Fitchburg - South Street Early Learning Center,00970060, 154, 410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2022-23,Florida - Abbott Memorial,00980005, 11, 6, 8, 15, 7, 10, 4, 11, 10, 10, 0, 0, 0, 0, 0, 92 -NA,NA,"",2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 38, 38, 38, 38, 29, 38, 0, 219 -NA,NA,"",2022-23,Foxborough - Charles Taylor Elementary,00990050, 0, 41, 46, 58, 55, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2022-23,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200, 197, 194, 185, 4, 780 -NA,NA,"",2022-23,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 177, 202, 172, 182, 0, 0, 0, 0, 0, 733 -NA,NA,"",2022-23,Foxborough - Mabelle M Burrell,00990015, 85, 52, 48, 50, 43, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2022-23,Foxborough - Vincent M Igo Elementary,00990020, 0, 64, 74, 68, 82, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 140, 144, 150, 144, 146, 129, 122, 109, 105, 108, 98, 88, 86, 0," 1,569" -NA,NA,"",2022-23,Framingham - Barbieri Elementary,01000035, 0, 113, 119, 114, 118, 111, 121, 0, 0, 0, 0, 0, 0, 0, 0, 696 -NA,NA,"",2022-23,Framingham - Brophy,01000006, 0, 84, 93, 91, 81, 80, 58, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2022-23,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 179, 179, 195, 0, 0, 0, 0, 0, 553 -NA,NA,"",2022-23,Framingham - Charlotte A Dunning,01000007, 0, 69, 76, 64, 65, 94, 65, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2022-23,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 735, 656, 600, 575, 0," 2,566" -NA,NA,"",2022-23,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 217, 198, 201, 0, 0, 0, 0, 0, 616 -NA,NA,"",2022-23,Framingham - Harmony Grove Elementary,01000055, 0, 77, 88, 80, 73, 89, 89, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2022-23,Framingham - Hemenway,01000015, 0, 82, 92, 89, 88, 98, 94, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2022-23,Framingham - Juniper Hill School,01000001, 269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2022-23,Framingham - King Elementary School,01000005, 0, 62, 56, 76, 58, 76, 64, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2022-23,Framingham - Mary E Stapleton Elementary,01000045, 0, 57, 53, 52, 65, 63, 53, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2022-23,Framingham - Miriam F McCarthy School,01000050, 0, 98, 88, 92, 83, 104, 85, 0, 0, 0, 0, 0, 0, 0, 0, 550 -NA,NA,"",2022-23,Framingham - Potter Road,01000039, 0, 82, 87, 91, 91, 93, 97, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2022-23,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 249, 259, 281, 0, 0, 0, 0, 0, 789 -NA,NA,"",2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 67, 71, 64, 65, 55, 66, 0, 388 -NA,NA,"",2022-23,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 115, 108, 95, 0, 0, 0, 0, 0, 318 -NA,NA,"",2022-23,Franklin - Franklin Early Childhood Development Center,01010003, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2022-23,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 385, 395, 410, 424, 16," 1,630" -NA,NA,"",2022-23,Franklin - Helen Keller Elementary,01010012, 0, 83, 90, 85, 95, 101, 78, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2022-23,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 142, 110, 124, 0, 0, 0, 0, 0, 376 -NA,NA,"",2022-23,Franklin - J F Kennedy Memorial,01010013, 0, 57, 59, 58, 38, 58, 68, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2022-23,Franklin - Jefferson Elementary,01010010, 0, 47, 46, 64, 51, 68, 73, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2022-23,Franklin - Oak Street Elementary,01010030, 0, 56, 55, 58, 61, 67, 66, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2022-23,Franklin - Parmenter,01010032, 0, 46, 46, 43, 54, 55, 45, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2022-23,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 121, 113, 133, 0, 0, 0, 0, 0, 367 -NA,NA,"",2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 163, 150, 126, 0, 602 -NA,NA,"",2022-23,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 181, 189, 181, 3, 729 -NA,NA,"",2022-23,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 114, 111, 144, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2022-23,Freetown-Lakeville - Freetown Elementary School,06650001, 51, 77, 97, 90, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 233, 227, 215, 0, 0, 0, 0, 0, 675 -NA,NA,"",2022-23,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 221, 232, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2022-23,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 113, 107, 94, 99, 98, 88, 7, 606 -NA,NA,"",2022-23,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 19, 42, 37, 0, 108 -NA,NA,"",2022-23,Gardner - Gardner Elementary School,01030001, 87, 188, 195, 186, 171, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 986 -NA,NA,"",2022-23,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 173, 157, 148, 125, 5, 804 -NA,NA,"",2022-23,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 164, 154, 171, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2022-23,Gateway - Chester Elementary,06720059, 31, 18, 15, 12, 17, 19, 13, 0, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2022-23,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 32, 46, 40, 2, 163 -NA,NA,"",2022-23,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 52, 58, 78, 0, 0, 0, 0, 0, 188 -NA,NA,"",2022-23,Gateway - Littleville Elementary School,06720143, 38, 49, 42, 36, 40, 40, 54, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2022-23,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 67, 73, 78, 0, 299 -NA,NA,"",2022-23,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 96, 90, 0, 0, 0, 0, 0, 186 -NA,NA,"",2022-23,Georgetown - Penn Brook,01050010, 0, 106, 95, 92, 103, 108, 110, 89, 0, 0, 0, 0, 0, 0, 0, 703 -NA,NA,"",2022-23,Georgetown - Perley Elementary,01050005, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82 -NA,NA,"",2022-23,Gill-Montague - Gill Elementary,06740005, 0, 10, 18, 17, 11, 17, 20, 12, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2022-23,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 67, 85, 55, 0, 0, 0, 0, 0, 207 -NA,NA,"",2022-23,Gill-Montague - Hillcrest Elementary School,06740015, 41, 46, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146 -NA,NA,"",2022-23,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 46, 46, 56, 63, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2022-23,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 49, 58, 33, 5, 194 -NA,NA,"",2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 77, 82, 90, 90, 49, 40, 28, 43, 0, 499 -NA,NA,"",2022-23,Gloucester - Beeman Memorial,01070010, 0, 42, 58, 58, 56, 47, 39, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2022-23,Gloucester - East Gloucester Elementary,01070020, 0, 30, 34, 24, 29, 38, 26, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2022-23,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 207, 202, 173, 8, 804 -NA,NA,"",2022-23,Gloucester - Gloucester PreSchool,01070025, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2022-23,Gloucester - Plum Cove School,01070042, 0, 18, 43, 39, 31, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2022-23,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 203, 215, 204, 0, 0, 0, 0, 0, 622 -NA,NA,"",2022-23,Gloucester - Veterans Memorial,01070045, 0, 43, 39, 37, 37, 28, 32, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2022-23,Gloucester - West Parish,01070050, 0, 58, 59, 62, 64, 57, 74, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2022-23,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -NA,NA,"",2022-23,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 229, 203, 227, 7, 875 -NA,NA,"",2022-23,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 241, 283, 0, 0, 0, 0, 0, 524 -NA,NA,"",2022-23,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 104, 134, 94, 131, 132, 0, 0, 0, 0, 0, 0, 0, 595 -NA,NA,"",2022-23,Grafton - North Grafton Elementary,01100025, 39, 91, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2022-23,Grafton - North Street Elementary School,01100030, 0, 0, 0, 118, 118, 96, 116, 100, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2022-23,Grafton - South Grafton Elementary,01100005, 55, 114, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2022-23,Granby - East Meadow,01110004, 33, 35, 55, 59, 59, 64, 57, 45, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2022-23,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 54, 51, 51, 49, 49, 57, 0, 311 -NA,NA,"",2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0, 30, 41, 43, 57, 49, 60, 77, 76, 113, 145, 145, 163, 156, 0," 1,155" -NA,NA,"",2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 368, 347, 322, 0," 1,412" -NA,NA,"",2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 438, 434, 414, 406, 0," 1,692" -NA,NA,"",2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 575, 595, 574, 538, 20," 2,302" -NA,NA,"",2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 561, 564, 520, 450, 0," 2,095" -NA,NA,"",2022-23,Greenfield - Discovery School at Four Corners,01140025, 0, 35, 46, 50, 51, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2022-23,Greenfield - Federal Street School,01140010, 0, 48, 38, 31, 35, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2022-23,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 91, 100, 79, 72, 9, 454 -NA,NA,"",2022-23,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 104, 101, 95, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2022-23,Greenfield - Newton School,01140035, 0, 42, 38, 37, 47, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2022-23,Greenfield - The Academy of Early Learning at North Parish,01140005, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82 -NA,NA,"",2022-23,Groton-Dunstable - Boutwell School,06730001, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94 -NA,NA,"",2022-23,Groton-Dunstable - Florence Roche School,06730010, 0, 80, 106, 110, 110, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 526 -NA,NA,"",2022-23,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 161, 179, 171, 5, 680 -NA,NA,"",2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 176, 188, 157, 202, 0, 0, 0, 0, 0, 723 -NA,NA,"",2022-23,Groton-Dunstable - Swallow/Union School,06730005, 0, 68, 71, 57, 66, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2022-23,Hadley - Hadley Elementary,01170015, 40, 35, 23, 37, 27, 39, 33, 37, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2022-23,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 37, 30, 31, 44, 43, 38, 0, 223 -NA,NA,"",2022-23,Halifax - Halifax Elementary,01180005, 0, 69, 70, 73, 67, 86, 92, 104, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2022-23,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 38, 63, 40, 38, 46, 40, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2022-23,Hamilton-Wenham - Cutler School,06750010, 0, 40, 42, 34, 36, 41, 61, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 108, 119, 117, 0, 450 -NA,NA,"",2022-23,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 109, 128, 134, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Hamilton-Wenham - Winthrop School,06750015, 25, 58, 44, 55, 51, 41, 39, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 88, 88, 86, 77, 80, 64, 66, 0, 549 -NA,NA,"",2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0, 0, 0, 0, 0, 0, 0, 59, 62, 61, 54, 55, 49, 27, 0, 367 -NA,NA,"",2022-23,Hampden-Wilbraham - Green Meadows Elementary,06800005, 22, 35, 50, 40, 44, 38, 44, 4, 13, 19, 0, 0, 0, 0, 0, 309 -NA,NA,"",2022-23,Hampden-Wilbraham - Mile Tree Elementary,06800025, 60, 153, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2022-23,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 246, 238, 227, 0, 984 -NA,NA,"",2022-23,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 157, 153, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2022-23,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 142, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2022-23,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 213, 193, 193, 0, 0, 0, 0, 0, 599 -NA,NA,"",2022-23,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 131, 123, 103, 99, 101, 101, 4, 662 -NA,NA,"",2022-23,Hancock - Hancock Elementary,01210005, 13, 6, 4, 9, 8, 6, 6, 7, 0, 0, 0, 0, 0, 0, 0, 59 -NA,NA,"",2022-23,Hanover - Cedar Elementary,01220004, 106, 179, 185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2022-23,Hanover - Center Elementary,01220005, 0, 0, 0, 207, 225, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 641 -NA,NA,"",2022-23,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 167, 184, 168, 0, 667 -NA,NA,"",2022-23,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 184, 216, 190, 211, 0, 0, 0, 0, 0, 801 -NA,NA,"",2022-23,Harvard - Bromfield,01250505, 0, 0, 0, 0, 0, 0, 0, 80, 81, 75, 84, 77, 86, 77, 0, 560 -NA,NA,"",2022-23,Harvard - Hildreth Elementary School,01250005, 25, 71, 79, 60, 71, 74, 80, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2022-23,Hatfield - Hatfield Elementary,01270005, 26, 23, 24, 19, 30, 34, 24, 32, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2022-23,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 20, 31, 21, 18, 19, 24, 0, 133 -NA,NA,"",2022-23,Haverhill - Bartlett School and Assessment Center,01280073, 0, 0, 1, 3, 3, 4, 4, 1, 3, 3, 2, 1, 0, 4, 6, 35 -NA,NA,"",2022-23,Haverhill - Bradford Elementary,01280008, 0, 96, 112, 107, 88, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2022-23,Haverhill - Caleb Dustin Hunking School,01280030, 0, 80, 78, 70, 103, 92, 167, 141, 165, 174, 0, 0, 0, 0, 0," 1,070" -NA,NA,"",2022-23,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 0, 0, 73, 212, 198, 217, 0, 0, 0, 0, 0, 700 -NA,NA,"",2022-23,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 134, 137, 133, 166, 0, 0, 0, 0, 0, 570 -NA,NA,"",2022-23,Haverhill - Gateway Academy,01280515, 0, 0, 0, 0, 0, 0, 0, 0, 11, 10, 11, 27, 13, 9, 0, 81 -NA,NA,"",2022-23,Haverhill - Golden Hill,01280026, 0, 95, 99, 83, 98, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2022-23,Haverhill - Greenleaf Academy,01280033, 0, 0, 0, 0, 0, 0, 0, 3, 2, 9, 5, 3, 7, 3, 0, 32 -NA,NA,"",2022-23,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 589, 466, 451, 408, 30," 1,944" -NA,NA,"",2022-23,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 92, 141, 129, 122, 0, 0, 0, 0, 0, 484 -NA,NA,"",2022-23,Haverhill - Moody,01280045, 172, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180 -NA,NA,"",2022-23,Haverhill - Moody Preschool Extension,01280001, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102 -NA,NA,"",2022-23,Haverhill - Pentucket Lake Elementary,01280054, 0, 74, 65, 84, 122, 135, 41, 0, 0, 0, 0, 0, 0, 0, 0, 521 -NA,NA,"",2022-23,Haverhill - Silver Hill Elementary School,01280067, 0, 79, 89, 79, 70, 87, 67, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2022-23,Haverhill - Tilton,01280075, 0, 55, 85, 74, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2022-23,Haverhill - Tilton Upper Middle School,01280105, 0, 0, 0, 0, 0, 99, 72, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2022-23,Haverhill - Walnut Square,01280080, 0, 57, 40, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2022-23,Hawlemont - Hawlemont Regional,06850005, 17, 9, 6, 12, 9, 13, 9, 16, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 32, 35, 47, 0, 0, 0, 0, 0, 114 -NA,NA,"",2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 36, 34, 33, 33, 33, 34, 38, 34, 31, 0, 0, 0, 0, 0, 306 -NA,NA,"",2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 21, 21, 21, 20, 32, 32, 30, 0, 0, 0, 0, 0, 217 -NA,NA,"",2022-23,Hingham - East Elementary School,01310005, 79, 77, 80, 64, 71, 72, 57, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2022-23,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 270, 289, 320, 1," 1,167" -NA,NA,"",2022-23,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 290, 293, 261, 0, 0, 0, 0, 0, 844 -NA,NA,"",2022-23,Hingham - Plymouth River,01310019, 0, 64, 56, 57, 67, 62, 75, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2022-23,Hingham - South Elementary,01310020, 0, 81, 90, 72, 80, 89, 90, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2022-23,Hingham - Wm L Foster Elementary,01310010, 0, 61, 53, 71, 81, 63, 74, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2022-23,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 123, 111, 97, 71, 71, 79, 81, 2, 635 -NA,NA,"",2022-23,Holbrook - John F Kennedy,01330018, 40, 112, 99, 91, 111, 118, 104, 0, 0, 0, 0, 0, 0, 0, 0, 675 -NA,NA,"",2022-23,Holland - Holland Elementary,01350005, 27, 30, 33, 25, 21, 32, 32, 31, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2022-23,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 203, 194, 197, 8, 814 -NA,NA,"",2022-23,Holliston - Miller School,01360007, 0, 0, 0, 0, 209, 176, 219, 0, 0, 0, 0, 0, 0, 0, 0, 604 -NA,NA,"",2022-23,Holliston - Placentino Elementary,01360010, 86, 191, 234, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 703 -NA,NA,"",2022-23,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 221, 219, 215, 0, 0, 0, 0, 0, 655 -NA,NA,"",2022-23,Holyoke - E N White Elementary,01370045, 78, 68, 49, 62, 57, 57, 42, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2022-23,Holyoke - H.B. Lawrence School,01370070, 17, 32, 36, 54, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2022-23,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 372, 358, 401, 0," 1,515" -NA,NA,"",2022-23,Holyoke - Holyoke Middle School,01370325, 0, 0, 0, 0, 0, 0, 0, 81, 104, 96, 0, 0, 0, 0, 0, 281 -NA,NA,"",2022-23,Holyoke - Holyoke STEM Academy,01370320, 0, 0, 0, 0, 0, 0, 0, 93, 95, 102, 0, 0, 0, 0, 0, 290 -NA,NA,"",2022-23,Holyoke - Joseph Metcalf School,01370003, 35, 38, 41, 43, 37, 31, 44, 39, 36, 29, 0, 0, 0, 0, 0, 373 -NA,NA,"",2022-23,Holyoke - Kelly Elementary,01370040, 19, 47, 50, 59, 50, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2022-23,Holyoke - Lt Clayre Sullivan Elementary,01370055, 37, 28, 37, 34, 43, 44, 36, 56, 42, 42, 0, 0, 0, 0, 0, 399 -NA,NA,"",2022-23,Holyoke - Lt Elmer J McMahon Elementary,01370015, 24, 22, 30, 33, 44, 33, 39, 48, 27, 37, 0, 0, 0, 0, 0, 337 -NA,NA,"",2022-23,Holyoke - Maurice A Donahue Elementary,01370060, 33, 45, 57, 59, 52, 57, 57, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2022-23,Holyoke - Morgan Full Service Community School,01370025, 73, 29, 30, 29, 44, 38, 42, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2022-23,Holyoke - William R. Peck School,01370030, 0, 0, 0, 0, 0, 40, 42, 42, 35, 33, 0, 0, 0, 0, 0, 192 -NA,NA,"",2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 78, 74, 57, 84, 86, 79, 87, 77, 63, 0, 0, 0, 0, 0, 685 -NA,NA,"",2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 47, 70, 98, 68, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2022-23,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 82, 49, 41, 51, 1, 324 -NA,NA,"",2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 67, 77, 66, 78, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2022-23,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 70, 91, 63, 69, 78, 65, 0, 436 -NA,NA,"",2022-23,Hopedale - Memorial,01380010, 0, 80, 72, 78, 76, 78, 86, 84, 0, 0, 0, 0, 0, 0, 0, 554 -NA,NA,"",2022-23,Hopedale - Park Street School,01380003, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102 -NA,NA,"",2022-23,Hopkinton - Elmwood,01390010, 0, 0, 0, 315, 312, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 627 -NA,NA,"",2022-23,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 341, 298, 0, 0, 0, 0, 0, 0, 0, 0, 639 -NA,NA,"",2022-23,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313, 326, 280, 310, 5," 1,234" -NA,NA,"",2022-23,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 338, 319, 315, 0, 0, 0, 0, 0, 972 -NA,NA,"",2022-23,Hopkinton - Hopkinton Pre-School,01390003, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99 -NA,NA,"",2022-23,Hopkinton - Marathon Elementary School,01390005, 0, 297, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592 -NA,NA,"",2022-23,Hudson - C A Farley,01410030, 10, 89, 92, 81, 72, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2022-23,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 218, 167, 173, 0, 0, 0, 0, 0, 0, 558 -NA,NA,"",2022-23,Hudson - Forest Avenue Elementary,01410015, 0, 58, 45, 45, 69, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2022-23,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 155, 171, 158, 156, 0, 808 -NA,NA,"",2022-23,Hudson - Mulready Elementary,01410007, 20, 40, 35, 56, 39, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2022-23,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 63, 53, 61, 0, 241 -NA,NA,"",2022-23,Hull - Lillian M Jacobs,01420015, 46, 47, 58, 41, 56, 57, 57, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2022-23,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 57, 55, 60, 0, 0, 0, 0, 0, 172 -NA,NA,"",2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 102, 100, 100, 100, 107, 107, 92, 85, 0, 793 -NA,NA,"",2022-23,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 128, 131, 123, 6, 502 -NA,NA,"",2022-23,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 127, 115, 120, 0, 0, 0, 0, 0, 362 -NA,NA,"",2022-23,Ipswich - Paul F Doyon Memorial,01440007, 21, 55, 62, 50, 50, 59, 69, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2022-23,Ipswich - Winthrop,01440015, 39, 43, 68, 52, 57, 46, 68, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2022-23,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 349, 321, 0, 0, 0, 0, 0, 670 -NA,NA,"",2022-23,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 277, 295, 267, 6," 1,142" -NA,NA,"",2022-23,Kingston - Kingston Elementary,01450005, 124, 178, 165, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 620 -NA,NA,"",2022-23,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 156, 147, 142, 148, 0, 0, 0, 0, 0, 0, 0, 593 -NA,NA,"",2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 66, 67, 69, 71, 71, 62, 59, 58, 54, 0, 0, 0, 0, 0, 577 -NA,NA,"",2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 125, 124, 124, 124, 124, 128, 126, 123, 123, 129, 127, 127, 108, 0," 1,612" -NA,NA,"",2022-23,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 60, 56, 54, 72, 89, 78, 0, 0, 0, 0, 0, 409 -NA,NA,"",2022-23,Lawrence - Arlington Elementary,01490009, 28, 85, 125, 115, 105, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2022-23,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 116, 144, 151, 164, 0, 0, 0, 0, 0, 575 -NA,NA,"",2022-23,Lawrence - Edward F. Parthum,01490053, 0, 106, 151, 139, 138, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 677 -NA,NA,"",2022-23,Lawrence - Emily G Wetherbee,01490080, 0, 38, 49, 43, 56, 58, 58, 70, 64, 59, 0, 0, 0, 0, 0, 495 -NA,NA,"",2022-23,Lawrence - Francis M Leahy,01490040, 0, 0, 75, 76, 81, 71, 77, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2022-23,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 106, 125, 142, 141, 0, 0, 0, 0, 0, 514 -NA,NA,"",2022-23,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 139, 122, 106, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2022-23,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 128, 110, 108, 113, 0, 0, 0, 0, 0, 459 -NA,NA,"",2022-23,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 77, 220, 1, 310 -NA,NA,"",2022-23,Lawrence - James F Hennessey,01490020, 94, 77, 72, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2022-23,Lawrence - John Breen School,01490003, 158, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2022-23,Lawrence - John K Tarbox,01490075, 0, 0, 52, 63, 46, 47, 67, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2022-23,Lawrence - Lawlor Early Childhood Center,01490002, 0, 164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164 -NA,NA,"",2022-23,Lawrence - Lawrence Family Public Academy,01490011, 82, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2022-23,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 910, 811, 673, 667, 23," 3,084" -NA,NA,"",2022-23,Lawrence - Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 100, 110, 117, 0, 0, 0, 0, 0, 327 -NA,NA,"",2022-23,Lawrence - Oliver Elementary School,01490048, 0, 0, 80, 80, 86, 96, 91, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2022-23,Lawrence - Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 117, 118, 116, 0, 0, 0, 0, 0, 351 -NA,NA,"",2022-23,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 149, 139, 140, 140, 0, 0, 0, 0, 0, 568 -NA,NA,"",2022-23,Lawrence - RISE Academy,01490615, 0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 11, 19, 22, 0, 56 -NA,NA,"",2022-23,Lawrence - Robert Frost,01490018, 0, 98, 113, 112, 122, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2022-23,Lawrence - Rollins Early Childhood Center,01490001, 135, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2022-23,Lawrence - School for Exceptional Studies,01490537, 1, 2, 2, 5, 5, 7, 8, 9, 12, 13, 7, 8, 10, 5, 8, 102 -NA,NA,"",2022-23,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 122, 143, 131, 133, 124, 0, 0, 0, 0, 0, 0, 0, 0, 653 -NA,NA,"",2022-23,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 149, 146, 142, 0, 0, 0, 0, 0, 437 -NA,NA,"",2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 100, 104, 102, 83, 84, 84, 79, 75, 73, 70, 0, 0, 0, 0, 0, 854 -NA,NA,"",2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0, 75, 75, 75, 75, 75, 70, 76, 76, 70, 0, 0, 0, 0, 0, 667 -NA,NA,"",2022-23,Lee - Lee Elementary,01500025, 18, 51, 38, 40, 43, 49, 57, 45, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2022-23,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 57, 57, 42, 54, 52, 58, 5, 325 -NA,NA,"",2022-23,Leicester - Leicester Elementary,01510005, 0, 91, 112, 94, 97, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2022-23,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 90, 111, 97, 0, 414 -NA,NA,"",2022-23,Leicester - Leicester Integrated Preschool,01510001, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38 -NA,NA,"",2022-23,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 126, 87, 97, 99, 0, 0, 0, 0, 0, 409 -NA,NA,"",2022-23,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 60, 59, 64, 60, 58, 64, 63, 3, 431 -NA,NA,"",2022-23,Lenox - Morris,01520015, 23, 55, 48, 50, 53, 60, 50, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2022-23,Leominster - Bennett,01530003, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94 -NA,NA,"",2022-23,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 164, 143, 142, 12, 800 -NA,NA,"",2022-23,Leominster - Fall Brook,01530007, 0, 64, 122, 107, 106, 104, 112, 0, 0, 0, 0, 0, 0, 0, 0, 615 -NA,NA,"",2022-23,Leominster - Frances Drake School,01530010, 0, 65, 76, 69, 90, 81, 84, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2022-23,Leominster - Johnny Appleseed,01530025, 0, 85, 123, 103, 114, 122, 114, 0, 0, 0, 0, 0, 0, 0, 0, 661 -NA,NA,"",2022-23,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 11, 15, 10, 0, 50 -NA,NA,"",2022-23,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 295, 303, 301, 0," 1,034" -NA,NA,"",2022-23,Leominster - Lincoln School,01530005, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30 -NA,NA,"",2022-23,Leominster - Northwest,01530030, 0, 39, 147, 135, 130, 145, 131, 0, 0, 0, 0, 0, 0, 0, 0, 727 -NA,NA,"",2022-23,Leominster - Priest Street,01530040, 0, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134 -NA,NA,"",2022-23,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 150, 169, 185, 0, 0, 0, 0, 0, 504 -NA,NA,"",2022-23,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 297, 292, 297, 0, 0, 0, 0, 0, 886 -NA,NA,"",2022-23,Leverett - Leverett Elementary,01540005, 16, 14, 19, 19, 18, 18, 22, 15, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2022-23,Lexington - Bowman,01550008, 0, 64, 59, 68, 75, 88, 97, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2022-23,Lexington - Bridge,01550006, 0, 51, 50, 66, 64, 67, 76, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2022-23,Lexington - Fiske,01550015, 0, 43, 47, 54, 67, 56, 74, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2022-23,Lexington - Harrington,01550030, 0, 52, 54, 48, 77, 81, 84, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2022-23,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 267, 267, 289, 0, 0, 0, 0, 0, 823 -NA,NA,"",2022-23,Lexington - Joseph Estabrook,01550010, 0, 70, 89, 87, 92, 105, 99, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2022-23,Lexington - Lexington Children's Place,01550001, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75 -NA,NA,"",2022-23,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593, 591, 540, 579, 0," 2,303" -NA,NA,"",2022-23,Lexington - Maria Hastings,01550035, 0, 67, 104, 86, 102, 134, 105, 0, 0, 0, 0, 0, 0, 0, 0, 598 -NA,NA,"",2022-23,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 299, 308, 335, 0, 0, 0, 0, 0, 942 -NA,NA,"",2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 93, 82, 93, 71, 72, 0, 0, 0, 411 -NA,NA,"",2022-23,Lincoln - Hanscom Middle,01570305, 0, 0, 0, 0, 0, 49, 58, 41, 35, 41, 0, 0, 0, 0, 0, 224 -NA,NA,"",2022-23,Lincoln - Hanscom Primary,01570006, 58, 34, 54, 44, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2022-23,Lincoln - Lincoln School,01570025, 33, 46, 58, 62, 56, 74, 52, 60, 52, 51, 0, 0, 0, 0, 0, 544 -NA,NA,"",2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 387, 355, 361, 5," 1,484" -NA,NA,"",2022-23,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 123, 118, 108, 4, 480 -NA,NA,"",2022-23,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 124, 129, 132, 0, 0, 0, 0, 0, 385 -NA,NA,"",2022-23,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 125, 123, 141, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2022-23,Littleton - Shaker Lane Elementary,01580005, 59, 129, 138, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2022-23,Longmeadow - Blueberry Hill,01590005, 0, 61, 63, 57, 59, 72, 80, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2022-23,Longmeadow - Center,01590010, 0, 66, 68, 64, 78, 76, 72, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2022-23,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 106, 106, 120, 0, 0, 0, 0, 0, 332 -NA,NA,"",2022-23,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 230, 224, 213, 0, 904 -NA,NA,"",2022-23,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 100, 88, 94, 0, 0, 0, 0, 0, 282 -NA,NA,"",2022-23,Longmeadow - Wolf Swamp Road,01590025, 75, 66, 64, 56, 57, 68, 58, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2022-23,Lowell - Abraham Lincoln,01600020, 46, 83, 87, 91, 88, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2022-23,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 117, 128, 127, 142, 0, 0, 0, 0, 0, 514 -NA,NA,"",2022-23,Lowell - Bartlett Community Partnership,01600090, 41, 43, 48, 48, 51, 50, 48, 55, 53, 57, 0, 0, 0, 0, 0, 494 -NA,NA,"",2022-23,Lowell - Cardinal O'Connell Early Learning Center,01600001, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99 -NA,NA,"",2022-23,Lowell - Charles W Morey,01600030, 47, 84, 86, 86, 82, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2022-23,Lowell - Charlotte M Murkland Elementary,01600080, 37, 69, 81, 80, 75, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2022-23,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 159, 167, 162, 171, 0, 0, 0, 0, 0, 659 -NA,NA,"",2022-23,Lowell - Dr Gertrude Bailey,01600002, 31, 85, 82, 84, 84, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2022-23,Lowell - Dr. Janice Adie Day School,01600605, 0, 1, 2, 3, 5, 9, 8, 10, 6, 2, 0, 4, 3, 2, 0, 55 -NA,NA,"",2022-23,Lowell - Greenhalge,01600015, 44, 78, 87, 88, 83, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2022-23,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 133, 148, 152, 170, 0, 0, 0, 0, 0, 603 -NA,NA,"",2022-23,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 179, 155, 166, 174, 0, 0, 0, 0, 0, 674 -NA,NA,"",2022-23,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 131, 146, 146, 169, 0, 0, 0, 0, 0, 592 -NA,NA,"",2022-23,Lowell - John J Shaughnessy,01600050, 42, 82, 86, 88, 87, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2022-23,Lowell - Joseph McAvinnue,01600010, 30, 66, 81, 82, 76, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2022-23,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 146, 158, 153, 176, 0, 0, 0, 0, 0, 633 -NA,NA,"",2022-23,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 0, 1, 0, 0, 5, 5, 3, 0, 0, 0, 0, 0, 14 -NA,NA,"",2022-23,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 10, 5, 6, 0, 33 -NA,NA,"",2022-23,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 974, 795, 741, 632, 25," 3,167" -NA,NA,"",2022-23,Lowell - Moody Elementary,01600027, 21, 42, 44, 48, 43, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2022-23,Lowell - Pawtucketville Memorial,01600036, 33, 85, 85, 83, 82, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2022-23,Lowell - Peter W Reilly,01600040, 28, 85, 94, 93, 88, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485 -NA,NA,"",2022-23,Lowell - Pyne Arts,01600018, 31, 45, 45, 50, 47, 52, 56, 59, 57, 61, 0, 0, 0, 0, 0, 503 -NA,NA,"",2022-23,Lowell - Rogers STEM Academy,01600005, 0, 62, 79, 90, 85, 99, 94, 106, 107, 113, 0, 0, 0, 0, 0, 835 -NA,NA,"",2022-23,Lowell - S Christa McAuliffe Elementary,01600075, 34, 83, 86, 94, 86, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2022-23,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31, 10, 13, 34, 0, 88 -NA,NA,"",2022-23,Lowell - Washington,01600055, 29, 41, 39, 47, 42, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 99, 94, 93, 92, 88, 81, 82, 69, 75, 0, 0, 0, 0, 0, 813 -NA,NA,"",2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 15, 22, 33, 0, 83 -NA,NA,"",2022-23,Ludlow - East Street Elementary School,01610010, 80, 104, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2022-23,Ludlow - Harris Brook Elementary School,01610665, 0, 0, 0, 167, 155, 152, 168, 0, 0, 0, 0, 0, 0, 0, 0, 642 -NA,NA,"",2022-23,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 200, 170, 196, 1, 795 -NA,NA,"",2022-23,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 178, 174, 164, 0, 0, 0, 0, 0, 516 -NA,NA,"",2022-23,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5 -NA,NA,"",2022-23,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 104, 112, 99, 0, 440 -NA,NA,"",2022-23,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 119, 132, 129, 0, 0, 0, 0, 0, 380 -NA,NA,"",2022-23,Lunenburg - Lunenburg Primary School,01620010, 42, 106, 125, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2022-23,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 109, 136, 108, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2022-23,Lynn - A Drewicz Elementary,01630016, 7, 98, 85, 86, 62, 71, 79, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2022-23,Lynn - Aborn,01630011, 0, 31, 34, 37, 37, 49, 29, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2022-23,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 455, 452, 314, 0, 0, 0, 0, 0," 1,221" -NA,NA,"",2022-23,Lynn - Brickett Elementary,01630020, 0, 34, 53, 53, 41, 57, 67, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2022-23,Lynn - Capt William G Shoemaker,01630090, 5, 32, 49, 45, 43, 62, 61, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2022-23,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474, 562, 357, 425, 0," 1,818" -NA,NA,"",2022-23,Lynn - Cobbet Elementary,01630035, 0, 99, 100, 111, 86, 107, 99, 0, 0, 0, 0, 0, 0, 0, 0, 602 -NA,NA,"",2022-23,Lynn - E J Harrington,01630045, 58, 70, 97, 102, 87, 93, 83, 0, 0, 0, 0, 0, 0, 0, 0, 590 -NA,NA,"",2022-23,Lynn - Edward A Sisson,01630095, 8, 49, 68, 62, 78, 69, 78, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2022-23,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 2, 6, 8, 17, 9, 15, 21, 0, 78 -NA,NA,"",2022-23,Lynn - Fredrick Douglass Collegiate Academy,01630575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 0, 0, 0, 0, 73 -NA,NA,"",2022-23,Lynn - Hood,01630055, 3, 77, 81, 79, 75, 56, 81, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2022-23,Lynn - Ingalls,01630060, 0, 146, 93, 125, 91, 113, 102, 0, 0, 0, 0, 0, 0, 0, 0, 670 -NA,NA,"",2022-23,Lynn - Julia F Callahan,01630030, 57, 35, 52, 61, 48, 60, 52, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2022-23,Lynn - Lincoln-Thomson,01630070, 0, 31, 20, 34, 29, 45, 30, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2022-23,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 522, 762, 488, 403, 1," 2,176" -NA,NA,"",2022-23,Lynn - Lynn Vocational Technical Institute,01630605, 63, 8, 1, 0, 1, 2, 3, 3, 0, 281, 290, 289, 273, 259, 50," 1,523" -NA,NA,"",2022-23,Lynn - Lynn Woods,01630075, 0, 12, 30, 33, 19, 31, 23, 0, 0, 0, 0, 0, 0, 0, 0, 148 -NA,NA,"",2022-23,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 205, 195, 152, 0, 0, 0, 0, 0, 552 -NA,NA,"",2022-23,Lynn - Robert L Ford,01630050, 0, 0, 73, 77, 78, 79, 97, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2022-23,Lynn - Sewell-Anderson,01630085, 0, 95, 32, 34, 28, 36, 44, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2022-23,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 445, 427, 343, 0, 0, 0, 0, 0," 1,215" -NA,NA,"",2022-23,Lynn - Tracy,01630100, 0, 0, 76, 70, 68, 68, 80, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2022-23,Lynn - Virginia Barton Early Childhood Center,01630004, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32 -NA,NA,"",2022-23,Lynn - Washington Elementary School,01630005, 1, 53, 78, 69, 77, 68, 70, 0, 0, 0, 0, 0, 0, 0, 0, 416 -NA,NA,"",2022-23,Lynn - William R Fallon,01630080, 0, 0, 2, 3, 6, 7, 9, 0, 0, 0, 0, 0, 0, 0, 0, 27 -NA,NA,"",2022-23,Lynn - Wm P Connery,01630040, 9, 87, 103, 78, 85, 79, 91, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2022-23,Lynnfield - Huckleberry Hill,01640010, 0, 83, 85, 101, 100, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2022-23,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 145, 153, 136, 0, 565 -NA,NA,"",2022-23,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 187, 160, 188, 178, 0, 0, 0, 0, 0, 713 -NA,NA,"",2022-23,Lynnfield - Lynnfield Preschool,01640005, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39 -NA,NA,"",2022-23,Lynnfield - Summer Street,01640020, 0, 84, 95, 81, 74, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 50, 0, 100 -NA,NA,"",2022-23,Malden - Beebe,01650003, 0, 92, 109, 100, 85, 109, 94, 98, 95, 99, 0, 0, 0, 0, 0, 881 -NA,NA,"",2022-23,Malden - Ferryway,01650013, 0, 99, 112, 100, 96, 100, 97, 100, 96, 94, 0, 0, 0, 0, 0, 894 -NA,NA,"",2022-23,Malden - Forestdale,01650027, 0, 61, 66, 63, 55, 66, 48, 69, 80, 86, 0, 0, 0, 0, 0, 594 -NA,NA,"",2022-23,Malden - Linden,01650047, 0, 82, 91, 90, 96, 89, 85, 94, 95, 98, 0, 0, 0, 0, 0, 820 -NA,NA,"",2022-23,Malden - Malden Early Learning Center,01650049, 239, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2022-23,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 484, 488, 455, 417, 12," 1,856" -NA,NA,"",2022-23,Malden - Salemwood,01650057, 0, 96, 131, 99, 110, 103, 115, 121, 125, 124, 0, 0, 0, 0, 0," 1,024" -NA,NA,"",2022-23,Manchester Essex Regional - Essex Elementary,06980020, 0, 34, 38, 41, 42, 35, 41, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2022-23,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, 114, 86, 123, 0, 416 -NA,NA,"",2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 99, 80, 104, 0, 0, 0, 0, 0, 283 -NA,NA,"",2022-23,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 33, 39, 36, 43, 44, 46, 50, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2022-23,Mansfield - Everett W Robinson,01670007, 0, 236, 249, 269, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 754 -NA,NA,"",2022-23,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 264, 264, 262, 0, 0, 0, 0, 0, 790 -NA,NA,"",2022-23,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 228, 234, 242, 0, 0, 0, 0, 0, 0, 0, 0, 704 -NA,NA,"",2022-23,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 246, 277, 305, 6," 1,092" -NA,NA,"",2022-23,Mansfield - Roland Green School,01670003, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 67, 88, 60, 0, 251 -NA,NA,"",2022-23,Marblehead - Glover,01680020, 31, 80, 68, 78, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2022-23,Marblehead - Lucretia and Joseph Brown School,01680030, 37, 93, 99, 100, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2022-23,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 243, 214, 224, 2, 879 -NA,NA,"",2022-23,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 206, 212, 0, 0, 0, 0, 0, 418 -NA,NA,"",2022-23,Marblehead - Village School,01680016, 0, 0, 0, 0, 0, 168, 177, 210, 0, 0, 0, 0, 0, 0, 0, 555 -NA,NA,"",2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 48, 50, 51, 36, 39, 0, 0, 0, 0, 0, 224 -NA,NA,"",2022-23,Marion - Sippican,01690005, 25, 47, 48, 53, 54, 62, 56, 58, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2022-23,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 0, 303, 366, 375, 0, 0, 0, 0, 0," 1,044" -NA,NA,"",2022-23,Marlborough - Charles Jaworek School,01700030, 0, 108, 117, 105, 125, 108, 93, 0, 0, 0, 0, 0, 0, 0, 0, 656 -NA,NA,"",2022-23,Marlborough - Early Childhood Center,01700006, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2022-23,Marlborough - Francis J Kane,01700008, 0, 81, 96, 88, 83, 76, 69, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2022-23,Marlborough - Goodnow Brothers Elementary School,01700020, 0, 121, 134, 148, 124, 128, 129, 0, 0, 0, 0, 0, 0, 0, 0, 784 -NA,NA,"",2022-23,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 289, 250, 288, 4," 1,064" -NA,NA,"",2022-23,Marlborough - Richer,01700025, 0, 80, 89, 96, 86, 101, 81, 0, 0, 0, 0, 0, 0, 0, 0, 533 -NA,NA,"",2022-23,Marshfield - Daniel Webster,01710015, 101, 43, 41, 46, 44, 45, 51, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Marshfield - Eames Way School,01710005, 53, 37, 31, 36, 32, 34, 41, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2022-23,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 309, 276, 283, 0, 0, 0, 0, 0, 868 -NA,NA,"",2022-23,Marshfield - Gov Edward Winslow,01710020, 0, 56, 56, 62, 64, 59, 55, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2022-23,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 332, 261, 303, 3," 1,190" -NA,NA,"",2022-23,Marshfield - Martinson Elementary,01710025, 0, 73, 88, 69, 92, 67, 72, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2022-23,Marshfield - South River,01710010, 0, 53, 34, 47, 49, 31, 43, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2022-23,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 200, 158, 186, 4, 757 -NA,NA,"",2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,04660550, 0, 11, 13, 16, 14, 16, 22, 12, 19, 20, 15, 4, 10, 9, 0, 181 -NA,NA,"",2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",04920005, 0, 54, 58, 68, 61, 57, 54, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2022-23,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 208, 248, 270, 0, 990 -NA,NA,"",2022-23,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 280, 279, 0, 0, 0, 0, 0, 559 -NA,NA,"",2022-23,Mashpee - Kenneth Coombs School,01720005, 81, 105, 101, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2022-23,Mashpee - Mashpee Middle-High School,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 115, 123, 103, 115, 89, 110, 0, 655 -NA,NA,"",2022-23,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 94, 89, 113, 102, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2022-23,Match Charter Public School (District) - Match Charter Public School,04690505, 52, 90, 96, 95, 97, 99, 97, 85, 86, 99, 74, 77, 69, 70, 0," 1,186" -NA,NA,"",2022-23,Mattapoisett - Center,01730005, 25, 53, 58, 51, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2022-23,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 62, 67, 63, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2022-23,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 93, 107, 86, 97, 76, 0, 0, 0, 0, 0, 459 -NA,NA,"",2022-23,Maynard - Green Meadow,01740010, 56, 91, 91, 82, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2022-23,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 89, 69, 75, 1, 316 -NA,NA,"",2022-23,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 198, 191, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2022-23,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 177, 186, 200, 0, 740 -NA,NA,"",2022-23,Medfield - Memorial School,01750003, 48, 169, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2022-23,Medfield - Ralph Wheelock School,01750007, 0, 0, 0, 179, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2022-23,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 198, 202, 182, 0, 0, 0, 0, 0, 582 -NA,NA,"",2022-23,Medford - Brooks School,01760130, 47, 80, 94, 79, 89, 73, 85, 0, 0, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2022-23,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 5, 6, 0, 18 -NA,NA,"",2022-23,Medford - John J McGlynn Elementary School,01760068, 13, 64, 91, 91, 71, 65, 86, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2022-23,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 151, 157, 153, 0, 0, 0, 0, 0, 461 -NA,NA,"",2022-23,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 161, 153, 142, 0, 0, 0, 0, 0, 456 -NA,NA,"",2022-23,Medford - Medford High,01760505, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 301, 299, 310, 7," 1,260" -NA,NA,"",2022-23,Medford - Milton Fuller Roberts,01760150, 23, 94, 102, 93, 80, 86, 74, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2022-23,Medford - Missituk Elementary School,01760140, 14, 56, 78, 57, 74, 65, 47, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2022-23,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 154, 171, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2022-23,Medway - John D Mc Govern Elementary,01770013, 47, 158, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2022-23,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 163, 144, 162, 0, 613 -NA,NA,"",2022-23,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 166, 152, 177, 158, 0, 0, 0, 0, 0, 653 -NA,NA,"",2022-23,Melrose - Early Childhood Center,01780003, 243, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2022-23,Melrose - Herbert Clark Hoover,01780017, 0, 37, 44, 44, 55, 60, 63, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2022-23,Melrose - Horace Mann,01780025, 0, 21, 46, 43, 45, 45, 44, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2022-23,Melrose - Lincoln,01780020, 0, 37, 78, 88, 60, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2022-23,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 233, 232, 223, 5, 926 -NA,NA,"",2022-23,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 313, 280, 276, 0, 0, 0, 0, 0, 869 -NA,NA,"",2022-23,Melrose - Roosevelt,01780035, 0, 56, 68, 81, 71, 67, 65, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2022-23,Melrose - Winthrop,01780050, 0, 35, 68, 65, 66, 63, 86, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2022-23,Mendon-Upton - Henry P Clough,07100179, 25, 56, 83, 67, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2022-23,Mendon-Upton - Memorial School,07100001, 30, 109, 91, 91, 97, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2022-23,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 168, 138, 161, 168, 0, 0, 0, 0, 0, 635 -NA,NA,"",2022-23,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 163, 156, 141, 4, 599 -NA,NA,"",2022-23,Methuen - Comprehensive Grammar School,01810050, 37, 87, 92, 87, 96, 101, 112, 117, 121, 105, 0, 0, 0, 0, 0, 955 -NA,NA,"",2022-23,Methuen - Donald P Timony Grammar,01810060, 61, 111, 137, 125, 146, 148, 137, 117, 130, 151, 0, 0, 0, 0, 0," 1,263" -NA,NA,"",2022-23,Methuen - Marsh Grammar School,01810030, 12, 104, 108, 114, 109, 116, 110, 134, 121, 124, 0, 0, 0, 0, 0," 1,052" -NA,NA,"",2022-23,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491, 508, 452, 460, 5," 1,916" -NA,NA,"",2022-23,Methuen - Tenney Grammar School,01810055, 22, 116, 118, 144, 145, 146, 146, 135, 148, 134, 0, 0, 0, 0, 0," 1,254" -NA,NA,"",2022-23,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 116, 117, 106, 114, 116, 0, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2022-23,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 240, 227, 241, 0, 0, 0, 0, 0, 708 -NA,NA,"",2022-23,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 129, 128, 123, 122, 125, 0, 0, 0, 0, 0, 0, 0, 0, 627 -NA,NA,"",2022-23,Middleborough - Memorial Early Childhood Center,01820011, 56, 225, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2022-23,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 202, 196, 199, 4, 851 -NA,NA,"",2022-23,Middleton - Fuller Meadow,01840003, 0, 105, 96, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2022-23,Middleton - Howe-Manning,01840005, 54, 0, 0, 0, 95, 104, 86, 86, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2022-23,Milford - Brookside,01850065, 0, 207, 160, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2022-23,Milford - Memorial,01850010, 0, 132, 175, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2022-23,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 345, 296, 308, 0," 1,324" -NA,NA,"",2022-23,Milford - Shining Star Early Childhood Center,01850075, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2022-23,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 346, 346, 338, 0, 0, 0, 0, 0," 1,030" -NA,NA,"",2022-23,Milford - Woodland,01850090, 0, 0, 0, 0, 317, 315, 311, 0, 0, 0, 0, 0, 0, 0, 0, 943 -NA,NA,"",2022-23,Millbury - Elmwood Street,01860017, 67, 121, 133, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2022-23,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 119, 144, 110, 130, 114, 120, 3, 740 -NA,NA,"",2022-23,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 122, 108, 129, 99, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2022-23,Millis - Clyde F Brown,01870005, 74, 90, 96, 80, 93, 82, 102, 0, 0, 0, 0, 0, 0, 0, 0, 617 -NA,NA,"",2022-23,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67, 80, 93, 73, 0, 313 -NA,NA,"",2022-23,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 0, 85, 83, 102, 0, 0, 0, 0, 0, 270 -NA,NA,"",2022-23,Millis - TIES,01870515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6 -NA,NA,"",2022-23,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 365, 287, 304, 0, 0, 0, 0, 0, 956 -NA,NA,"",2022-23,Milton - Collicot,01890005, 0, 102, 92, 103, 85, 99, 103, 0, 0, 0, 0, 0, 0, 0, 0, 584 -NA,NA,"",2022-23,Milton - Cunningham School,01890007, 91, 89, 90, 89, 94, 83, 91, 0, 0, 0, 0, 0, 0, 0, 0, 627 -NA,NA,"",2022-23,Milton - Glover,01890010, 0, 87, 116, 85, 117, 115, 113, 0, 0, 0, 0, 0, 0, 0, 0, 633 -NA,NA,"",2022-23,Milton - Milton High,01890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 263, 276, 269, 7," 1,062" -NA,NA,"",2022-23,Milton - Tucker,01890020, 39, 64, 67, 67, 82, 67, 73, 0, 0, 0, 0, 0, 0, 0, 0, 459 -NA,NA,"",2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, 190, 168, 148, 0, 691 -NA,NA,"",2022-23,Mohawk Trail - Buckland-Shelburne Regional,07170005, 30, 27, 32, 32, 35, 42, 40, 36, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2022-23,Mohawk Trail - Colrain Central,07170010, 18, 12, 9, 15, 7, 14, 14, 15, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2022-23,Mohawk Trail - Mohawk Trail Regional School,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 72, 66, 38, 33, 35, 26, 1, 271 -NA,NA,"",2022-23,Mohawk Trail - Sanderson Academy,07170020, 31, 16, 13, 12, 13, 15, 22, 17, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2022-23,Monomoy Regional School District - Chatham Elementary School,07120001, 0, 27, 32, 20, 40, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2022-23,Monomoy Regional School District - Harwich Elementary School,07120002, 43, 81, 85, 93, 84, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2022-23,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 139, 152, 114, 121, 6, 702 -NA,NA,"",2022-23,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 150, 144, 145, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2022-23,Monson - Granite Valley School,01910030, 0, 0, 55, 70, 72, 68, 63, 68, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2022-23,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 68, 70, 42, 32, 43, 36, 4, 295 -NA,NA,"",2022-23,Monson - Quarry Hill Community School,01910010, 72, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 368, 350, 322, 0," 1,409" -NA,NA,"",2022-23,Mount Greylock - Lanesborough Elementary,07150005, 21, 26, 28, 24, 31, 37, 25, 39, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2022-23,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 100, 105, 72, 72, 103, 83, 1, 536 -NA,NA,"",2022-23,Mount Greylock - Williamstown Elementary,07150010, 33, 53, 60, 44, 47, 66, 64, 64, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 166, 161, 156, 148, 140, 147, 115, 112, 108, 104, 80, 99, 72, 0," 1,608" -NA,NA,"",2022-23,Nahant - Johnson,01960010, 36, 20, 17, 29, 20, 9, 7, 17, 0, 0, 0, 0, 0, 0, 0, 155 -NA,NA,"",2022-23,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 102, 126, 152, 0, 0, 0, 0, 0, 380 -NA,NA,"",2022-23,Nantucket - Nantucket Elementary,01970005, 48, 115, 130, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2022-23,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 139, 123, 140, 4, 586 -NA,NA,"",2022-23,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 106, 112, 122, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2022-23,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 117, 119, 123, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2022-23,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 107, 98, 67, 66, 2, 468 -NA,NA,"",2022-23,Narragansett - Templeton Elementary School,07200020, 94, 106, 93, 109, 114, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 644 -NA,NA,"",2022-23,Nashoba - Center School,07250020, 35, 77, 88, 72, 71, 90, 65, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2022-23,Nashoba - Florence Sawyer School,07250025, 24, 72, 82, 94, 69, 82, 75, 72, 95, 70, 0, 0, 0, 0, 0, 735 -NA,NA,"",2022-23,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 86, 79, 105, 0, 0, 0, 0, 0, 270 -NA,NA,"",2022-23,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 86, 69, 88, 0, 0, 0, 0, 0, 243 -NA,NA,"",2022-23,Nashoba - Mary Rowlandson Elementary,07250010, 31, 65, 80, 70, 70, 65, 93, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2022-23,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201, 207, 217, 199, 7, 831 -NA,NA,"",2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218, 199, 170, 163, 0, 750 -NA,NA,"",2022-23,Natick - Bennett-Hemenway,01980005, 0, 73, 114, 93, 98, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2022-23,Natick - Brown,01980010, 0, 105, 108, 81, 108, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503 -NA,NA,"",2022-23,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 205, 233, 207, 239, 0, 0, 0, 0, 0, 884 -NA,NA,"",2022-23,Natick - Johnson,01980031, 0, 0, 30, 32, 31, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2022-23,Natick - Lilja Elementary,01980035, 0, 92, 81, 75, 78, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2022-23,Natick - Memorial,01980043, 0, 86, 85, 87, 80, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2022-23,Natick - Natick High,01980505, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 420, 395, 380, 394, 0," 1,727" -NA,NA,"",2022-23,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 200, 178, 197, 203, 0, 0, 0, 0, 0, 778 -NA,NA,"",2022-23,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 213, 188, 201, 4, 780 -NA,NA,"",2022-23,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 174, 178, 176, 0, 0, 0, 0, 0, 528 -NA,NA,"",2022-23,Needham - Broadmeadow,01990005, 0, 78, 81, 90, 86, 99, 76, 0, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2022-23,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 446, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2022-23,Needham - John Eliot,01990020, 0, 66, 74, 66, 69, 73, 78, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2022-23,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417, 428, 421, 379, 0," 1,645" -NA,NA,"",2022-23,Needham - Newman Elementary,01990050, 85, 101, 92, 100, 103, 100, 118, 0, 0, 0, 0, 0, 0, 0, 0, 699 -NA,NA,"",2022-23,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 443, 375, 0, 0, 0, 0, 0, 818 -NA,NA,"",2022-23,Needham - Sunita L. Williams Elementary,01990035, 0, 88, 79, 99, 89, 84, 90, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2022-23,Needham - William Mitchell,01990040, 0, 85, 63, 78, 74, 78, 74, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 37, 40, 42, 39, 43, 45, 57, 53, 59, 69, 76, 81, 76, 49, 0, 766 -NA,NA,"",2022-23,New Bedford - Abraham Lincoln,02010095, 0, 110, 97, 99, 94, 122, 119, 0, 0, 0, 0, 0, 0, 0, 0, 641 -NA,NA,"",2022-23,New Bedford - Alfred J Gomes,02010063, 12, 89, 85, 78, 80, 82, 70, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2022-23,New Bedford - Betsey B Winslow,02010140, 0, 47, 46, 36, 34, 35, 33, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2022-23,New Bedford - Carlos Pacheco,02010105, 33, 52, 42, 40, 47, 38, 41, 35, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2022-23,New Bedford - Casimir Pulaski,02010123, 75, 72, 74, 72, 74, 95, 82, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2022-23,New Bedford - Charles S Ashley,02010010, 0, 49, 48, 48, 34, 52, 47, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2022-23,New Bedford - Elizabeth Carter Brooks,02010015, 0, 31, 42, 55, 51, 55, 41, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2022-23,New Bedford - Ellen R Hathaway,02010075, 39, 23, 38, 35, 34, 36, 31, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2022-23,New Bedford - Elwyn G Campbell,02010020, 71, 39, 32, 47, 35, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2022-23,New Bedford - Hayden/McFadden,02010078, 79, 101, 126, 104, 72, 104, 96, 0, 0, 0, 0, 0, 0, 0, 0, 682 -NA,NA,"",2022-23,New Bedford - Irwin M. Jacobs Elementary School,02010070, 49, 55, 56, 62, 71, 56, 54, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2022-23,New Bedford - James B Congdon,02010040, 0, 50, 37, 57, 47, 59, 47, 29, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2022-23,New Bedford - Jireh Swift,02010130, 50, 34, 36, 29, 31, 23, 23, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2022-23,New Bedford - John Avery Parker,02010115, 29, 34, 49, 42, 30, 45, 28, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2022-23,New Bedford - John B Devalles,02010050, 0, 51, 53, 44, 50, 46, 60, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2022-23,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 269, 270, 331, 0, 0, 0, 0, 0, 870 -NA,NA,"",2022-23,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 755, 825, 670, 648, 0," 2,898" -NA,NA,"",2022-23,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 323, 363, 365, 0, 0, 0, 0, 0," 1,051" -NA,NA,"",2022-23,New Bedford - Renaissance Community Innovation School,02010124, 23, 16, 18, 16, 19, 21, 18, 0, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2022-23,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 253, 263, 262, 0, 0, 0, 0, 0, 778 -NA,NA,"",2022-23,New Bedford - Sgt Wm H Carney Academy,02010045, 55, 92, 105, 87, 96, 91, 85, 0, 0, 0, 0, 0, 0, 0, 0, 611 -NA,NA,"",2022-23,New Bedford - Thomas R Rodman,02010125, 0, 34, 36, 40, 30, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 210 -NA,NA,"",2022-23,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 0, 7, 3, 10, 12, 16, 14, 9, 12, 0, 83 -NA,NA,"",2022-23,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 22, 32, 36, 36, 0, 135 -NA,NA,"",2022-23,New Bedford - William H Taylor,02010135, 23, 32, 46, 44, 41, 36, 22, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 108, 103, 113, 115, 123, 95, 84, 0, 741 -NA,NA,"",2022-23,New Salem-Wendell - Swift River,07280015, 16, 14, 16, 17, 18, 16, 18, 16, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2022-23,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 143, 136, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2022-23,Newburyport - Francis T Bresnahan Elementary,02040005, 53, 103, 126, 138, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 575 -NA,NA,"",2022-23,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 204, 207, 213, 4, 820 -NA,NA,"",2022-23,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 159, 153, 169, 0, 0, 0, 0, 0, 481 -NA,NA,"",2022-23,Newton - A E Angier,02070005, 0, 43, 57, 65, 69, 73, 69, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2022-23,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 126, 142, 167, 0, 0, 0, 0, 0, 435 -NA,NA,"",2022-23,Newton - Bowen,02070015, 0, 51, 57, 61, 61, 65, 65, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2022-23,Newton - C C Burr,02070020, 0, 58, 60, 60, 66, 63, 61, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2022-23,Newton - Cabot,02070025, 0, 72, 60, 89, 84, 70, 67, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2022-23,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 245, 240, 265, 0, 0, 0, 0, 0, 750 -NA,NA,"",2022-23,Newton - Countryside,02070040, 0, 56, 64, 65, 55, 63, 69, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2022-23,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 296, 290, 334, 0, 0, 0, 0, 0, 920 -NA,NA,"",2022-23,Newton - Franklin,02070055, 0, 40, 61, 70, 60, 67, 65, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2022-23,Newton - Horace Mann,02070075, 0, 45, 60, 62, 70, 62, 58, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2022-23,Newton - John Ward,02070120, 0, 16, 33, 42, 35, 41, 27, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2022-23,Newton - Lincoln-Eliot,02070070, 0, 55, 52, 64, 45, 64, 58, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2022-23,Newton - Mason-Rice,02070080, 0, 51, 49, 58, 56, 55, 63, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2022-23,Newton - Memorial Spaulding,02070105, 0, 56, 86, 49, 62, 63, 81, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2022-23,Newton - Newton Early Childhood Program,02070108, 186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186 -NA,NA,"",2022-23,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510, 535, 517, 501, 36," 2,099" -NA,NA,"",2022-23,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460, 455, 431, 486, 5," 1,837" -NA,NA,"",2022-23,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 226, 203, 228, 0, 0, 0, 0, 0, 657 -NA,NA,"",2022-23,Newton - Peirce,02070100, 0, 36, 36, 38, 39, 48, 44, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2022-23,Newton - Underwood,02070115, 0, 37, 38, 44, 35, 41, 26, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2022-23,Newton - Williams,02070125, 0, 40, 39, 34, 39, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2022-23,Newton - Zervas,02070130, 0, 55, 68, 60, 79, 74, 70, 0, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2022-23,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 127, 137, 129, 134, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2022-23,Norfolk - H Olive Day,02080015, 58, 128, 145, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2022-23,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 154, 137, 134, 0, 580 -NA,NA,"",2022-23,North Adams - Brayton,02090035, 23, 32, 40, 27, 20, 33, 27, 26, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2022-23,North Adams - Colegrove Park Elementary,02090008, 33, 25, 31, 35, 33, 26, 26, 26, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2022-23,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 79, 93, 83, 95, 71, 67, 5, 493 -NA,NA,"",2022-23,North Adams - Greylock,02090015, 27, 38, 36, 29, 35, 38, 28, 21, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2022-23,North Andover - Anne Bradstreet Early Childhood Center,02110005, 128, 302, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2022-23,North Andover - Annie L Sargent School,02110018, 0, 0, 91, 94, 88, 101, 93, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2022-23,North Andover - Atkinson,02110001, 0, 0, 45, 51, 61, 54, 63, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2022-23,North Andover - Franklin,02110010, 0, 0, 80, 62, 88, 69, 82, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2022-23,North Andover - Kittredge,02110015, 0, 0, 41, 42, 45, 46, 52, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2022-23,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 329, 350, 309, 0," 1,336" -NA,NA,"",2022-23,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 329, 335, 371, 0, 0, 0, 0, 0," 1,035" -NA,NA,"",2022-23,North Andover - Thomson,02110020, 0, 0, 51, 64, 59, 79, 48, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2022-23,North Attleborough - Amvet Boulevard,02120007, 0, 43, 76, 68, 72, 63, 80, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2022-23,North Attleborough - Community,02120030, 0, 48, 45, 49, 46, 54, 47, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2022-23,North Attleborough - Falls,02120010, 0, 44, 47, 33, 32, 34, 39, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2022-23,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 80, 88, 95, 88, 95, 90, 0, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2022-23,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, 301, 293, 282, 0," 1,107" -NA,NA,"",2022-23,North Attleborough - North Attleborough Early Learning Center,02120020, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 -NA,NA,"",2022-23,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 328, 325, 303, 0, 0, 0, 0, 0, 956 -NA,NA,"",2022-23,North Attleborough - Roosevelt Avenue,02120015, 0, 36, 42, 41, 41, 45, 44, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2022-23,North Brookfield - North Brookfield Elementary,02150015, 28, 27, 42, 37, 41, 41, 38, 48, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2022-23,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 18, 25, 24, 18, 32, 19, 0, 136 -NA,NA,"",2022-23,North Middlesex - Ashby Elementary,07350010, 0, 22, 28, 36, 30, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2022-23,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 125, 112, 113, 114, 0, 0, 0, 0, 0, 464 -NA,NA,"",2022-23,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 115, 126, 117, 123, 0, 0, 0, 0, 0, 481 -NA,NA,"",2022-23,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 214, 187, 178, 10, 779 -NA,NA,"",2022-23,North Middlesex - Spaulding Memorial,07350005, 0, 71, 96, 79, 82, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2022-23,North Middlesex - Squannacook Early Childhood Center,07350002, 90, 2, 1, 4, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 -NA,NA,"",2022-23,North Middlesex - Varnum Brook,07350035, 0, 125, 122, 133, 123, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 633 -NA,NA,"",2022-23,North Reading - E Ethel Little School,02170003, 27, 61, 44, 50, 58, 27, 56, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2022-23,North Reading - J Turner Hood,02170010, 22, 66, 62, 63, 61, 53, 56, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2022-23,North Reading - L D Batchelder,02170005, 0, 73, 75, 77, 88, 70, 80, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2022-23,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 163, 127, 177, 1, 644 -NA,NA,"",2022-23,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 168, 192, 181, 0, 0, 0, 0, 0, 541 -NA,NA,"",2022-23,Northampton - Bridge Street,02100005, 25, 38, 38, 34, 42, 38, 48, 0, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2022-23,Northampton - Jackson Street,02100020, 0, 52, 41, 50, 54, 44, 50, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2022-23,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 199, 157, 227, 0, 0, 0, 0, 0, 583 -NA,NA,"",2022-23,Northampton - Leeds,02100025, 33, 42, 33, 40, 57, 51, 42, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2022-23,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 231, 206, 239, 11, 903 -NA,NA,"",2022-23,Northampton - R. K. Finn Ryan Road,02100029, 0, 35, 36, 36, 41, 45, 42, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 150, 135, 130, 0, 566 -NA,NA,"",2022-23,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 299, 309, 320, 12," 1,213" -NA,NA,"",2022-23,Northborough - Fannie E Proctor,02130015, 0, 39, 41, 39, 48, 43, 42, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2022-23,Northborough - Lincoln Street,02130003, 0, 41, 41, 51, 44, 50, 59, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2022-23,Northborough - Marguerite E Peaslee,02130014, 0, 34, 48, 49, 44, 43, 33, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2022-23,Northborough - Marion E Zeh,02130020, 0, 39, 42, 41, 45, 43, 41, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2022-23,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 176, 192, 169, 0, 0, 0, 0, 0, 537 -NA,NA,"",2022-23,Northbridge - Northbridge Elementary School,02140001, 98, 146, 152, 155, 148, 119, 135, 0, 0, 0, 0, 0, 0, 0, 0, 953 -NA,NA,"",2022-23,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 124, 108, 124, 0, 513 -NA,NA,"",2022-23,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 0, 149, 163, 169, 0, 0, 0, 0, 0, 481 -NA,NA,"",2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349, 348, 313, 282, 0," 1,292" -NA,NA,"",2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 148, 120, 125, 0, 537 -NA,NA,"",2022-23,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 148, 185, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2022-23,Norton - J C Solmonese,02180015, 105, 97, 99, 110, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2022-23,Norton - L G Nourse Elementary,02180010, 0, 63, 81, 73, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2022-23,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 166, 167, 163, 3, 678 -NA,NA,"",2022-23,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 181, 179, 193, 0, 0, 0, 0, 0, 553 -NA,NA,"",2022-23,Norwell - Grace Farrar Cole,02190005, 23, 68, 81, 94, 88, 87, 81, 0, 0, 0, 0, 0, 0, 0, 0, 522 -NA,NA,"",2022-23,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 154, 152, 151, 0, 602 -NA,NA,"",2022-23,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 168, 171, 159, 0, 0, 0, 0, 0, 498 -NA,NA,"",2022-23,Norwell - William G Vinal,02190020, 18, 83, 84, 76, 104, 79, 87, 0, 0, 0, 0, 0, 0, 0, 0, 531 -NA,NA,"",2022-23,Norwood - Balch,02200005, 0, 0, 68, 53, 54, 68, 69, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2022-23,Norwood - Charles J Prescott,02200025, 0, 4, 50, 54, 47, 42, 46, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2022-23,Norwood - Cornelius M Callahan,02200010, 0, 0, 40, 37, 42, 59, 46, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2022-23,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 272, 258, 246, 0, 0, 0, 0, 0, 776 -NA,NA,"",2022-23,Norwood - F A Cleveland,02200015, 0, 0, 56, 78, 70, 58, 51, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2022-23,Norwood - George F. Willett,02200075, 140, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2022-23,Norwood - John P Oldham,02200020, 0, 0, 56, 74, 44, 52, 49, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2022-23,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 243, 229, 260, 4, 941 -NA,NA,"",2022-23,Oak Bluffs - Oak Bluffs Elementary,02210005, 18, 46, 40, 49, 39, 49, 35, 59, 53, 50, 0, 0, 0, 0, 0, 438 -NA,NA,"",2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 142, 140, 140, 0, 561 -NA,NA,"",2022-23,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 151, 151, 170, 6, 627 -NA,NA,"",2022-23,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 230, 194, 0, 0, 0, 0, 0, 424 -NA,NA,"",2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 40, 41, 39, 39, 40, 40, 40, 38, 40, 0, 0, 0, 0, 0, 357 -NA,NA,"",2022-23,Orange - Dexter Park,02230010, 0, 0, 0, 0, 67, 70, 77, 80, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2022-23,Orange - Fisher Hill,02230015, 40, 63, 76, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2022-23,Orleans - Orleans Elementary,02240005, 0, 17, 30, 21, 19, 28, 30, 0, 0, 0, 0, 0, 0, 0, 0, 145 -NA,NA,"",2022-23,Oxford - Alfred M Chaffee,02260010, 0, 99, 107, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2022-23,Oxford - Clara Barton,02260005, 44, 0, 0, 0, 101, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2022-23,Oxford - Oxford High,02260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 101, 90, 84, 6, 384 -NA,NA,"",2022-23,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 104, 143, 130, 127, 0, 0, 0, 0, 0, 504 -NA,NA,"",2022-23,Palmer - Old Mill Pond,02270008, 56, 81, 92, 102, 72, 93, 103, 0, 0, 0, 0, 0, 0, 0, 0, 599 -NA,NA,"",2022-23,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 102, 76, 90, 63, 73, 65, 63, 3, 535 -NA,NA,"",2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, 168, 159, 128, 0, 640 -NA,NA,"",2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 76, 64, 74, 0, 261 -NA,NA,"",2022-23,Peabody - Captain Samuel Brown,02290005, 0, 54, 69, 61, 69, 56, 67, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2022-23,Peabody - Center,02290015, 0, 67, 85, 70, 81, 81, 62, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2022-23,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 449, 429, 468, 0, 0, 0, 0, 0," 1,346" -NA,NA,"",2022-23,Peabody - John E Burke,02290007, 0, 38, 48, 39, 37, 52, 38, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2022-23,Peabody - John E. McCarthy,02290016, 121, 32, 35, 40, 36, 42, 32, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0, 1, 2, 8, 5, 6, 3, 1, 6, 7, 9, 12, 21, 13, 0, 94 -NA,NA,"",2022-23,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 366, 368, 383, 11," 1,476" -NA,NA,"",2022-23,Peabody - South Memorial,02290035, 70, 62, 64, 59, 60, 85, 72, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2022-23,Peabody - Thomas Carroll,02290010, 0, 82, 94, 90, 83, 118, 119, 0, 0, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2022-23,Peabody - West Memorial,02290045, 35, 36, 38, 38, 38, 38, 36, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2022-23,Peabody - William A Welch Sr,02290027, 16, 57, 54, 52, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2022-23,Pelham - Pelham Elementary,02300005, 0, 17, 19, 21, 19, 20, 15, 20, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2022-23,Pembroke - Bryantville Elementary,02310003, 0, 55, 69, 55, 58, 71, 65, 59, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2022-23,Pembroke - Hobomock Elementary,02310010, 0, 64, 60, 54, 51, 61, 63, 56, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2022-23,Pembroke - North Pembroke Elementary,02310015, 67, 72, 62, 75, 55, 64, 64, 57, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2022-23,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 199, 206, 0, 0, 0, 0, 0, 405 -NA,NA,"",2022-23,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 191, 174, 191, 9, 733 -NA,NA,"",2022-23,Pentucket - Dr Frederick N Sweetsir,07450020, 37, 69, 66, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2022-23,Pentucket - Dr John C Page School,07450015, 26, 41, 41, 30, 57, 41, 41, 40, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2022-23,Pentucket - Elmer S Bagnall,07450005, 35, 62, 81, 63, 64, 60, 69, 52, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2022-23,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 60, 65, 62, 63, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2022-23,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 172, 186, 0, 0, 0, 0, 0, 358 -NA,NA,"",2022-23,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 159, 143, 160, 0, 591 -NA,NA,"",2022-23,Petersham - Petersham Center,02340005, 0, 17, 17, 18, 20, 26, 12, 16, 0, 0, 0, 0, 0, 0, 0, 126 -NA,NA,"",2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 4, 39, 10, 0, 203 -NA,NA,"",2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 3, 35, 5, 0, 125 -NA,NA,"",2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 2, 59, 9, 0, 166 -NA,NA,"",2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 63, 63, 64, 63, 63, 64, 64, 64, 64, 63, 58, 45, 45, 0, 783 -NA,NA,"",2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505, 0, 40, 23, 29, 0, 0, 0, 0, 74, 75, 72, 53, 48, 48, 0, 462 -NA,NA,"",2022-23,Pioneer Valley - Bernardston Elementary,07500006, 19, 30, 27, 30, 16, 22, 36, 24, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2022-23,Pioneer Valley - Northfield Elementary,07500008, 28, 15, 23, 29, 22, 28, 27, 28, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2022-23,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 56, 54, 18, 38, 42, 48, 0, 256 -NA,NA,"",2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 44, 42, 44, 43, 45, 44, 64, 50, 53, 39, 40, 22, 19, 0, 549 -NA,NA,"",2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 66, 71, 70, 64, 60, 59, 0, 390 -NA,NA,"",2022-23,Pittsfield - Allendale,02360010, 13, 51, 32, 39, 43, 43, 52, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2022-23,Pittsfield - Crosby,02360065, 22, 40, 27, 48, 39, 36, 58, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2022-23,Pittsfield - Crosby Educational Academy,02360030, 0, 0, 3, 0, 3, 4, 7, 0, 0, 0, 0, 0, 0, 0, 0, 17 -NA,NA,"",2022-23,Pittsfield - Eagle Education Academy,02360525, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 3, 6, 3, 1, 0, 23 -NA,NA,"",2022-23,Pittsfield - Egremont,02360035, 14, 53, 73, 46, 57, 66, 73, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2022-23,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 155, 129, 166, 0, 0, 0, 0, 0, 450 -NA,NA,"",2022-23,Pittsfield - Morningside Community School,02360055, 24, 58, 54, 54, 58, 52, 55, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2022-23,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 167, 175, 148, 12, 651 -NA,NA,"",2022-23,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0, 0, 3, 3, 5, 7, 6, 9, 12, 11, 6, 16, 14, 12, 0, 104 -NA,NA,"",2022-23,Pittsfield - Robert T. Capeless Elementary School,02360045, 14, 36, 29, 23, 25, 22, 32, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2022-23,Pittsfield - Silvio O Conte Community,02360105, 27, 60, 56, 52, 43, 64, 55, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2022-23,Pittsfield - Stearns,02360090, 14, 37, 31, 27, 36, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2022-23,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 214, 205, 185, 0, 860 -NA,NA,"",2022-23,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 165, 146, 185, 0, 0, 0, 0, 0, 496 -NA,NA,"",2022-23,Pittsfield - Williams,02360100, 15, 37, 42, 42, 46, 35, 39, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2022-23,Plainville - Anna Ware Jackson,02380010, 57, 88, 86, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2022-23,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 87, 90, 86, 92, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2022-23,Plymouth - Cold Spring,02390005, 0, 27, 36, 43, 34, 42, 30, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2022-23,Plymouth - Federal Furnace School,02390011, 0, 69, 80, 73, 64, 62, 58, 0, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2022-23,Plymouth - Hedge,02390010, 0, 40, 37, 29, 29, 38, 36, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2022-23,Plymouth - Indian Brook,02390012, 0, 90, 88, 97, 93, 115, 91, 0, 0, 0, 0, 0, 0, 0, 0, 574 -NA,NA,"",2022-23,Plymouth - Manomet Elementary,02390015, 0, 39, 40, 35, 51, 44, 40, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2022-23,Plymouth - Nathaniel Morton Elementary,02390030, 0, 84, 86, 84, 85, 89, 84, 0, 0, 0, 0, 0, 0, 0, 0, 512 -NA,NA,"",2022-23,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 297, 253, 328, 0, 0, 0, 0, 0, 878 -NA,NA,"",2022-23,Plymouth - Plymouth Early Childhood Center,02390003, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2022-23,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333, 368, 311, 289, 0," 1,301" -NA,NA,"",2022-23,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 260, 259, 243, 0," 1,028" -NA,NA,"",2022-23,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 194, 217, 209, 0, 0, 0, 0, 0, 620 -NA,NA,"",2022-23,Plymouth - South Elementary,02390046, 0, 93, 126, 97, 99, 105, 99, 0, 0, 0, 0, 0, 0, 0, 0, 619 -NA,NA,"",2022-23,Plymouth - West Elementary,02390047, 0, 43, 70, 52, 59, 43, 53, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2022-23,Plympton - Dennett Elementary,02400010, 0, 33, 45, 33, 43, 29, 29, 25, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 30, 68, 61, 61, 85, 84, 85, 83, 81, 76, 79, 69, 67, 70, 0, 999 -NA,NA,"",2022-23,Provincetown - Provincetown Schools,02420020, 25, 10, 13, 8, 13, 12, 14, 9, 15, 23, 0, 0, 0, 0, 0, 142 -NA,NA,"",2022-23,Quabbin - Hardwick Elementary,07530005, 18, 22, 37, 20, 32, 27, 28, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2022-23,Quabbin - Hubbardston Center,07530010, 38, 43, 37, 46, 47, 43, 51, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2022-23,Quabbin - New Braintree Grade,07530020, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 38 -NA,NA,"",2022-23,Quabbin - Oakham Center,07530025, 0, 18, 23, 33, 25, 32, 43, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2022-23,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 131, 122, 136, 0, 566 -NA,NA,"",2022-23,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 149, 174, 194, 0, 0, 0, 0, 0, 517 -NA,NA,"",2022-23,Quabbin - Ruggles Lane,07530030, 47, 54, 62, 57, 71, 50, 47, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2022-23,Quaboag Regional - Quaboag Integrated Preschool,07780001, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47 -NA,NA,"",2022-23,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 81, 87, 94, 0, 354 -NA,NA,"",2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 93, 110, 0, 0, 0, 0, 0, 203 -NA,NA,"",2022-23,Quaboag Regional - Warren Elementary,07780005, 0, 31, 56, 45, 45, 36, 57, 50, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2022-23,Quaboag Regional - West Brookfield Elementary,07780010, 0, 29, 34, 31, 42, 33, 48, 40, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165 -NA,NA,"",2022-23,Quincy - Atherton Hough,02430040, 0, 41, 32, 52, 42, 45, 44, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2022-23,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 199, 168, 184, 0, 0, 0, 0, 0, 551 -NA,NA,"",2022-23,Quincy - Beechwood Knoll Elementary,02430020, 0, 49, 56, 53, 57, 53, 62, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2022-23,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 100, 112, 109, 0, 0, 0, 0, 0, 321 -NA,NA,"",2022-23,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 214, 221, 212, 0, 0, 0, 0, 0, 647 -NA,NA,"",2022-23,Quincy - Charles A Bernazzani Elementary,02430025, 0, 63, 53, 56, 56, 58, 54, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2022-23,Quincy - Clifford H Marshall Elementary,02430055, 0, 101, 102, 113, 104, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2022-23,Quincy - Francis W Parker,02430075, 0, 45, 55, 55, 47, 62, 55, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2022-23,Quincy - Lincoln-Hancock Community School,02430035, 0, 117, 128, 116, 94, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2022-23,Quincy - Merrymount,02430060, 0, 51, 57, 50, 48, 64, 57, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2022-23,Quincy - Montclair,02430065, 0, 70, 62, 71, 72, 83, 75, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2022-23,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 360, 374, 335, 26," 1,476" -NA,NA,"",2022-23,Quincy - Point Webster Middle,02430325, 62, 0, 0, 0, 0, 0, 83, 91, 73, 102, 0, 0, 0, 0, 0, 411 -NA,NA,"",2022-23,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 385, 361, 383, 0," 1,495" -NA,NA,"",2022-23,Quincy - Snug Harbor Community School,02430090, 95, 37, 52, 52, 62, 44, 58, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2022-23,Quincy - South West Middle School,02430320, 0, 0, 0, 0, 0, 0, 102, 115, 110, 110, 0, 0, 0, 0, 0, 437 -NA,NA,"",2022-23,Quincy - Squantum,02430095, 0, 66, 57, 48, 59, 58, 64, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2022-23,Quincy - Wollaston School,02430110, 0, 52, 51, 56, 56, 52, 66, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2022-23,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 92, 97, 112, 79, 77, 66, 0, 523 -NA,NA,"",2022-23,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 39, 52, 44, 47, 45, 58, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2022-23,Randolph - J F Kennedy Elementary,02440018, 102, 61, 59, 44, 52, 52, 50, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2022-23,Randolph - Margaret L Donovan,02440015, 0, 65, 72, 58, 81, 72, 73, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2022-23,Randolph - Martin E Young Elementary,02440040, 0, 42, 53, 41, 44, 33, 39, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2022-23,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 180, 190, 196, 0, 0, 0, 0, 0, 566 -NA,NA,"",2022-23,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 154, 139, 117, 2, 619 -NA,NA,"",2022-23,Reading - Alice M Barrows,02460002, 0, 53, 58, 55, 61, 62, 67, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2022-23,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 146, 135, 148, 0, 0, 0, 0, 0, 429 -NA,NA,"",2022-23,Reading - Birch Meadow,02460005, 0, 58, 55, 52, 78, 58, 57, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2022-23,Reading - J Warren Killam,02460017, 0, 62, 77, 54, 77, 71, 65, 0, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2022-23,Reading - Joshua Eaton,02460010, 0, 61, 62, 60, 70, 72, 64, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2022-23,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257, 255, 290, 294, 0," 1,096" -NA,NA,"",2022-23,Reading - RISE PreSchool,02460001, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103 -NA,NA,"",2022-23,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 123, 167, 174, 0, 0, 0, 0, 0, 464 -NA,NA,"",2022-23,Reading - Wood End Elementary School,02460020, 0, 34, 44, 30, 49, 48, 41, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2022-23,Revere - A. C. Whelan Elementary School,02480003, 0, 98, 90, 135, 120, 138, 142, 0, 0, 0, 0, 0, 0, 0, 0, 723 -NA,NA,"",2022-23,Revere - Abraham Lincoln,02480025, 62, 92, 101, 83, 81, 93, 90, 0, 0, 0, 0, 0, 0, 0, 0, 602 -NA,NA,"",2022-23,Revere - Beachmont Veterans Memorial School,02480013, 34, 64, 58, 50, 49, 36, 45, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2022-23,Revere - CityLab Innovation High School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 17, 14, 17, 0, 95 -NA,NA,"",2022-23,Revere - Garfield Elementary School,02480056, 42, 105, 103, 109, 102, 122, 102, 0, 0, 0, 0, 0, 0, 0, 0, 685 -NA,NA,"",2022-23,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 176, 183, 187, 0, 0, 0, 0, 0, 546 -NA,NA,"",2022-23,Revere - Paul Revere,02480050, 0, 77, 83, 75, 78, 67, 76, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2022-23,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 559, 634, 476, 400, 15," 2,084" -NA,NA,"",2022-23,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 189, 194, 185, 0, 0, 0, 0, 0, 568 -NA,NA,"",2022-23,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 88, 107, 112, 113, 111, 115, 0, 0, 0, 0, 0, 0, 0, 0, 646 -NA,NA,"",2022-23,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 185, 186, 186, 0, 0, 0, 0, 0, 557 -NA,NA,"",2022-23,Richmond - Richmond Consolidated,02490005, 11, 12, 18, 16, 17, 19, 15, 15, 18, 13, 0, 0, 0, 0, 0, 154 -NA,NA,"",2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 91, 92, 91, 92, 78, 70, 56, 64, 0, 634 -NA,NA,"",2022-23,River Valley Charter (District) - River Valley Charter School,04820050, 0, 32, 32, 32, 34, 32, 32, 30, 30, 34, 0, 0, 0, 0, 0, 288 -NA,NA,"",2022-23,Rochester - Rochester Memorial,02500005, 20, 57, 59, 63, 67, 72, 88, 66, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2022-23,Rockland - Jefferson Elementary School,02510060, 0, 52, 48, 48, 37, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2022-23,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 147, 184, 194, 190, 0, 0, 0, 0, 0, 715 -NA,NA,"",2022-23,Rockland - Memorial Park,02510020, 0, 53, 39, 36, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2022-23,Rockland - R Stewart Esten,02510025, 0, 42, 75, 68, 73, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2022-23,Rockland - Rockland Senior High,02510505, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 135, 129, 137, 7, 641 -NA,NA,"",2022-23,Rockport - Rockport Elementary,02520005, 22, 42, 44, 48, 36, 54, 58, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2022-23,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 46, 68, 62, 0, 231 -NA,NA,"",2022-23,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 54, 68, 73, 0, 0, 0, 0, 0, 195 -NA,NA,"",2022-23,Rowe - Rowe Elementary,02530005, 7, 7, 5, 6, 13, 5, 12, 11, 0, 0, 0, 0, 0, 0, 0, 66 -NA,NA,"",2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 110, 177, 222, 231, 179, 144, 120, 112, 0," 1,295" -NA,NA,"",2022-23,Salem - Bates,02580003, 36, 54, 49, 48, 67, 54, 66, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2022-23,Salem - Bentley Academy Innovation School,02580010, 0, 41, 47, 58, 48, 41, 39, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2022-23,Salem - Carlton,02580015, 0, 42, 36, 44, 46, 36, 42, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2022-23,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 204, 201, 207, 0, 0, 0, 0, 0, 612 -NA,NA,"",2022-23,Salem - Horace Mann Laboratory,02580030, 35, 37, 42, 42, 44, 52, 45, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2022-23,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10, 17, 26, 0, 56 -NA,NA,"",2022-23,Salem - Salem Early Childhood,02580001, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96 -NA,NA,"",2022-23,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 226, 191, 221, 6, 888 -NA,NA,"",2022-23,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 1, 6, 0, 14 -NA,NA,"",2022-23,Salem - Saltonstall School,02580050, 0, 41, 37, 42, 43, 47, 49, 44, 44, 50, 0, 0, 0, 0, 0, 397 -NA,NA,"",2022-23,Salem - Witchcraft Heights,02580070, 0, 69, 80, 68, 92, 68, 78, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2022-23,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 75, 69, 70, 71, 70, 66, 68, 0, 489 -NA,NA,"",2022-23,Sandwich - Forestdale School,02610002, 79, 151, 145, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2022-23,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 144, 192, 172, 166, 0, 0, 0, 0, 0, 0, 0, 674 -NA,NA,"",2022-23,Sandwich - Sandwich Middle High School,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 184, 175, 132, 142, 137, 158, 0, 928 -NA,NA,"",2022-23,Saugus - Belmonte STEAM Academy,02620060, 0, 0, 0, 205, 182, 192, 201, 0, 0, 0, 0, 0, 0, 0, 0, 780 -NA,NA,"",2022-23,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184, 174, 178, 173, 4, 713 -NA,NA,"",2022-23,Saugus - Saugus Middle School,02620305, 0, 0, 0, 0, 0, 0, 0, 203, 204, 191, 0, 0, 0, 0, 0, 598 -NA,NA,"",2022-23,Saugus - Veterans Early Learning Center,02620065, 53, 148, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Savoy - Emma L Miller Elementary School,02630010, 3, 6, 2, 3, 5, 6, 10, 5, 0, 0, 0, 0, 0, 0, 0, 40 -NA,NA,"",2022-23,Scituate - Cushing Elementary,02640007, 0, 70, 59, 50, 65, 58, 51, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2022-23,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 197, 205, 203, 0, 0, 0, 0, 0, 605 -NA,NA,"",2022-23,Scituate - Hatherly Elementary,02640010, 0, 44, 36, 40, 42, 49, 44, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2022-23,Scituate - Jenkins Elementary School,02640015, 0, 53, 46, 54, 58, 59, 59, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2022-23,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 201, 205, 198, 1, 763 -NA,NA,"",2022-23,Scituate - Wampatuck Elementary,02640020, 82, 68, 63, 57, 59, 62, 63, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 177, 159, 154, 0, 0, 0, 0, 0, 490 -NA,NA,"",2022-23,Seekonk - George R Martin,02650007, 0, 70, 71, 75, 82, 72, 86, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2022-23,Seekonk - Mildred Aitken School,02650015, 54, 86, 88, 101, 78, 88, 84, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2022-23,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 154, 124, 136, 0, 533 -NA,NA,"",2022-23,Seekonk - Seekonk Transitions Academy,02650605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4 -NA,NA,"",2022-23,Sharon - Cottage Street,02660005, 0, 72, 62, 73, 72, 78, 83, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2022-23,Sharon - East Elementary,02660010, 0, 66, 69, 83, 82, 110, 79, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2022-23,Sharon - Heights Elementary,02660015, 0, 92, 88, 89, 107, 99, 94, 0, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2022-23,Sharon - Sharon Early Childhood Center,02660001, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56 -NA,NA,"",2022-23,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 280, 262, 304, 0," 1,143" -NA,NA,"",2022-23,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 273, 280, 292, 0, 0, 0, 0, 0, 845 -NA,NA,"",2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331, 339, 337, 285, 0," 1,292" -NA,NA,"",2022-23,Sherborn - Pine Hill,02690010, 13, 54, 69, 64, 70, 70, 61, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2022-23,Shrewsbury - Calvin Coolidge School,02710015, 0, 48, 53, 47, 55, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2022-23,Shrewsbury - Floral Street School,02710020, 0, 91, 107, 101, 110, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2022-23,Shrewsbury - Major Howard W. Beal School,02710005, 0, 121, 100, 125, 132, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2022-23,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 465, 479, 0, 0, 0, 0, 0, 944 -NA,NA,"",2022-23,Shrewsbury - Parker Road Preschool,02710040, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2022-23,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 440, 508, 0, 0, 0, 0, 0, 0, 0, 948 -NA,NA,"",2022-23,Shrewsbury - Shrewsbury High School,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 486, 452, 430, 453, 2," 1,823" -NA,NA,"",2022-23,Shrewsbury - Spring Street School,02710035, 0, 48, 55, 56, 61, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2022-23,Shrewsbury - Walter J. Paton School,02710025, 0, 50, 57, 46, 66, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2022-23,Shutesbury - Shutesbury Elementary,02720005, 19, 11, 17, 10, 20, 15, 13, 19, 0, 0, 0, 0, 0, 0, 0, 124 -NA,NA,"",2022-23,Silver Lake - Silver Lake Regional High,07600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 266, 247, 263, 9," 1,046" -NA,NA,"",2022-23,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 281, 247, 0, 0, 0, 0, 0, 528 -NA,NA,"",2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 63, 74, 63, 52, 51, 41, 0, 344 -NA,NA,"",2022-23,Somerset - Chace Street,02730005, 0, 41, 45, 51, 49, 68, 70, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2022-23,Somerset - North Elementary,02730008, 61, 60, 69, 66, 63, 71, 68, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2022-23,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 209, 171, 195, 0, 0, 0, 0, 0, 575 -NA,NA,"",2022-23,Somerset - South,02730015, 0, 38, 46, 37, 41, 50, 46, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 237, 254, 241, 9," 1,003" -NA,NA,"",2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 16, 57, 75, 74, 64, 61, 51, 51, 54, 41, 0, 0, 0, 0, 0, 544 -NA,NA,"",2022-23,Somerville - Arthur D Healey,02740075, 23, 48, 65, 60, 58, 60, 47, 50, 48, 47, 0, 0, 0, 0, 0, 506 -NA,NA,"",2022-23,Somerville - Benjamin G Brown,02740015, 0, 43, 45, 33, 41, 30, 19, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2022-23,Somerville - Capuano Early Childhood Center,02740005, 161, 43, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2022-23,Somerville - E Somerville Community,02740111, 18, 55, 83, 83, 88, 91, 79, 78, 82, 72, 0, 0, 0, 0, 0, 729 -NA,NA,"",2022-23,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 19, 8, 13, 1, 54 -NA,NA,"",2022-23,Somerville - John F Kennedy,02740083, 18, 44, 41, 42, 49, 45, 38, 51, 54, 58, 0, 0, 0, 0, 0, 440 -NA,NA,"",2022-23,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 0, 0, 0, 0, 0, 15 -NA,NA,"",2022-23,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 374, 306, 276, 14," 1,310" -NA,NA,"",2022-23,Somerville - West Somerville Neighborhood,02740115, 18, 37, 40, 37, 41, 39, 32, 45, 43, 39, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Somerville - Winter Hill Community,02740120, 18, 36, 32, 48, 48, 29, 27, 53, 65, 66, 0, 0, 0, 0, 0, 422 -NA,NA,"",2022-23,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 133, 145, 117, 131, 0, 0, 0, 0, 0, 526 -NA,NA,"",2022-23,South Hadley - Mosier,02780020, 0, 0, 0, 95, 108, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2022-23,South Hadley - Plains Elementary,02780015, 61, 104, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2022-23,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 139, 128, 123, 5, 500 -NA,NA,"",2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 213, 214, 181, 0, 842 -NA,NA,"",2022-23,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 74, 81, 82, 81, 84, 81, 80, 81, 79, 93, 87, 73, 78, 0," 1,054" -NA,NA,"",2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 170, 161, 157, 0, 653 -NA,NA,"",2022-23,Southampton - William E Norris,02750005, 43, 60, 63, 60, 58, 63, 53, 77, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2022-23,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 122, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2022-23,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 129, 138, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2022-23,Southborough - Mary E Finn School,02760008, 90, 142, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2022-23,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 128, 133, 124, 0, 0, 0, 0, 0, 385 -NA,NA,"",2022-23,Southbridge - Charlton Street,02770005, 0, 0, 1, 59, 68, 54, 67, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2022-23,Southbridge - Eastford Road,02770010, 55, 134, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2022-23,Southbridge - Southbridge Academy,02770525, 0, 0, 0, 0, 0, 0, 0, 5, 2, 3, 11, 6, 5, 1, 0, 33 -NA,NA,"",2022-23,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 115, 109, 95, 0, 457 -NA,NA,"",2022-23,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 143, 136, 126, 0, 0, 0, 0, 0, 405 -NA,NA,"",2022-23,Southbridge - West Street,02770020, 0, 0, 1, 86, 95, 64, 89, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403, 399, 384, 372, 0," 1,558" -NA,NA,"",2022-23,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 46, 45, 40, 40, 48, 27, 48, 0, 294 -NA,NA,"",2022-23,Southern Berkshire - New Marlborough Central,07650018, 16, 10, 21, 9, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66 -NA,NA,"",2022-23,Southern Berkshire - South Egremont,07650030, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13 -NA,NA,"",2022-23,Southern Berkshire - Undermountain,07650035, 30, 28, 42, 41, 33, 40, 27, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314, 313, 288, 270, 0," 1,185" -NA,NA,"",2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 91, 103, 87, 103, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 110, 121, 112, 93, 97, 91, 1, 625 -NA,NA,"",2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 36, 101, 85, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2022-23,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 91, 90, 72, 5, 357 -NA,NA,"",2022-23,Spencer-E Brookfield - East Brookfield Elementary,07670008, 110, 18, 20, 15, 25, 15, 19, 18, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2022-23,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 90, 101, 82, 90, 0, 0, 0, 0, 0, 363 -NA,NA,"",2022-23,Spencer-E Brookfield - Wire Village School,07670040, 0, 70, 94, 80, 90, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 72, 45, 39, 46, 48, 47, 40, 38, 25, 34, 0, 0, 0, 0, 0, 434 -NA,NA,"",2022-23,Springfield - Alice B Beal Elementary,02810175, 38, 47, 47, 46, 34, 52, 35, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2022-23,Springfield - Arthur T Talmadge,02810165, 20, 38, 26, 37, 40, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2022-23,Springfield - Balliet Preschool,02810003, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2022-23,Springfield - Brightwood,02810025, 60, 57, 68, 77, 65, 73, 71, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 83, 88, 103, 0, 0, 0, 0, 0, 274 -NA,NA,"",2022-23,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 53, 42, 47, 49, 44, 48, 39, 0, 322 -NA,NA,"",2022-23,Springfield - Daniel B Brunton,02810035, 46, 56, 58, 41, 59, 43, 54, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2022-23,Springfield - Early Childhood Education Center,02810001, 179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179 -NA,NA,"",2022-23,Springfield - Edward P. Boland School,02810010, 121, 73, 76, 88, 64, 62, 67, 0, 0, 0, 0, 0, 0, 0, 0, 551 -NA,NA,"",2022-23,Springfield - Elias Brookings,02810030, 39, 31, 44, 38, 43, 42, 33, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2022-23,Springfield - Emergence Academy,02810318, 0, 0, 0, 0, 0, 0, 0, 21, 35, 23, 35, 0, 0, 0, 0, 114 -NA,NA,"",2022-23,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 75, 118, 159, 0, 0, 0, 0, 0, 352 -NA,NA,"",2022-23,Springfield - Frank H Freedman,02810075, 20, 51, 50, 35, 42, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2022-23,Springfield - Frederick Harris,02810080, 67, 83, 82, 81, 81, 93, 94, 0, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2022-23,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 9, 9, 0, 26 -NA,NA,"",2022-23,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 6, 13, 8, 0, 30 -NA,NA,"",2022-23,Springfield - German Gerena Community School,02810195, 80, 90, 78, 93, 82, 91, 75, 0, 0, 0, 0, 0, 0, 0, 0, 589 -NA,NA,"",2022-23,Springfield - Glenwood,02810065, 20, 44, 51, 33, 45, 48, 47, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2022-23,Springfield - Glickman Elementary,02810068, 37, 36, 39, 38, 52, 52, 58, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2022-23,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 347, 251, 256, 0," 1,103" -NA,NA,"",2022-23,Springfield - Hiram L Dorman,02810050, 28, 35, 47, 40, 39, 44, 38, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2022-23,Springfield - Homer Street,02810085, 36, 67, 75, 63, 55, 60, 49, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2022-23,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 64, 68, 74, 0, 0, 0, 0, 0, 206 -NA,NA,"",2022-23,Springfield - Indian Orchard Elementary,02810100, 81, 90, 91, 67, 71, 74, 69, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2022-23,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 127, 139, 124, 0, 0, 0, 0, 0, 390 -NA,NA,"",2022-23,Springfield - John J Duggan Academy,02810320, 0, 0, 0, 0, 0, 0, 0, 177, 176, 158, 82, 82, 62, 78, 0, 815 -NA,NA,"",2022-23,Springfield - Kensington International School,02810110, 36, 34, 40, 27, 41, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2022-23,Springfield - Kiley Academy,02810316, 0, 0, 0, 0, 0, 0, 0, 116, 109, 90, 0, 0, 0, 0, 0, 315 -NA,NA,"",2022-23,Springfield - Kiley Prep,02810315, 0, 0, 0, 0, 0, 0, 0, 88, 79, 99, 0, 0, 0, 0, 0, 266 -NA,NA,"",2022-23,Springfield - Liberty,02810115, 37, 30, 33, 36, 38, 44, 33, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2022-23,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 1, 0, 8 -NA,NA,"",2022-23,Springfield - Lincoln,02810120, 56, 47, 66, 80, 74, 68, 57, 0, 0, 0, 0, 0, 0, 0, 0, 448 -NA,NA,"",2022-23,Springfield - Margaret C Ells,02810060, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2022-23,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 40, 50, 44, 38, 49, 40, 37, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2022-23,Springfield - Mary M Lynch,02810140, 19, 36, 33, 31, 30, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2022-23,Springfield - Mary M Walsh,02810155, 27, 34, 38, 36, 42, 41, 43, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2022-23,Springfield - Mary O Pottenger,02810145, 34, 45, 52, 62, 74, 67, 61, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2022-23,Springfield - Milton Bradley School,02810023, 70, 73, 68, 70, 71, 78, 85, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2022-23,Springfield - Rebecca M Johnson,02810055, 70, 88, 94, 79, 86, 93, 69, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2022-23,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 83, 80, 78, 0, 0, 0, 0, 0, 241 -NA,NA,"",2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 357, 330, 301, 0," 1,360" -NA,NA,"",2022-23,Springfield - Samuel Bowles,02810020, 20, 25, 22, 41, 40, 44, 33, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2022-23,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 64, 61, 62, 0, 0, 0, 0, 0, 187 -NA,NA,"",2022-23,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 675, 534, 398, 488, 0," 2,095" -NA,NA,"",2022-23,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 29, 40, 117, 0, 203 -NA,NA,"",2022-23,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 275, 209, 242, 0," 1,087" -NA,NA,"",2022-23,Springfield - Springfield International Academy at Johnson,02810215, 0, 0, 0, 0, 9, 11, 11, 0, 0, 0, 0, 0, 0, 0, 0, 31 -NA,NA,"",2022-23,Springfield - Springfield International Academy at Sci-Tech,02810700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 34, 6, 15, 0, 88 -NA,NA,"",2022-23,Springfield - Springfield Legacy Academy,02810317, 0, 0, 0, 0, 0, 0, 0, 87, 113, 121, 0, 0, 0, 0, 0, 321 -NA,NA,"",2022-23,Springfield - Springfield Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 3, 7, 10, 0, 0, 0, 0, 0, 20 -NA,NA,"",2022-23,Springfield - Springfield Public Day Elementary School,02810005, 0, 0, 1, 4, 5, 6, 16, 0, 0, 0, 0, 0, 0, 0, 0, 32 -NA,NA,"",2022-23,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 16, 21, 14, 10, 0, 61 -NA,NA,"",2022-23,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 12, 11, 28, 0, 0, 0, 0, 0, 51 -NA,NA,"",2022-23,Springfield - Springfield Realization Academy,02810335, 0, 0, 0, 0, 0, 0, 0, 69, 64, 0, 0, 0, 0, 0, 0, 133 -NA,NA,"",2022-23,Springfield - Springfield Transition Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 101 -NA,NA,"",2022-23,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 97, 99, 101, 0, 0, 0, 0, 0, 297 -NA,NA,"",2022-23,Springfield - Sumner Avenue,02810160, 70, 56, 61, 66, 73, 82, 52, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 99, 96, 105, 91, 95, 70, 75, 0, 631 -NA,NA,"",2022-23,Springfield - The Springfield Virtual School,02810705, 0, 0, 14, 17, 36, 37, 39, 42, 44, 48, 43, 43, 33, 34, 0, 430 -NA,NA,"",2022-23,Springfield - Thomas M Balliet,02810015, 41, 37, 52, 47, 37, 32, 31, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2022-23,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 87, 86, 83, 0, 0, 0, 0, 0, 256 -NA,NA,"",2022-23,Springfield - Warner,02810180, 55, 35, 29, 34, 38, 31, 28, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2022-23,Springfield - Washington,02810185, 48, 77, 75, 49, 60, 55, 56, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2022-23,Springfield - White Street,02810190, 20, 65, 66, 67, 66, 66, 67, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2022-23,Springfield - William N. DeBerry,02810045, 20, 24, 43, 37, 44, 37, 39, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2022-23,Springfield International Charter (District) - Springfield International Charter School,04410505, 0, 95, 103, 111, 130, 126, 156, 126, 126, 154, 107, 105, 97, 84, 0," 1,520" -NA,NA,"",2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 54, 54, 55, 54, 54, 54, 54, 54, 54, 0, 0, 0, 0, 0, 487 -NA,NA,"",2022-23,Stoneham - Colonial Park,02840005, 26, 36, 46, 46, 46, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2022-23,Stoneham - Robin Hood,02840025, 28, 76, 75, 73, 67, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2022-23,Stoneham - South,02840030, 33, 70, 65, 68, 52, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2022-23,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 162, 186, 177, 153, 0, 0, 0, 0, 0, 678 -NA,NA,"",2022-23,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 144, 152, 144, 5, 619 -NA,NA,"",2022-23,Stoughton - Edwin A Jones Early Childhood Center,02850012, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2022-23,Stoughton - Helen Hansen Elementary,02850010, 0, 40, 54, 38, 50, 38, 44, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2022-23,Stoughton - Joseph H Gibbons,02850025, 0, 54, 59, 57, 60, 67, 52, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2022-23,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 72, 79, 53, 61, 55, 60, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2022-23,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 264, 284, 267, 0, 0, 0, 0, 0, 815 -NA,NA,"",2022-23,Stoughton - Richard L. Wilkins Elementary School,02850020, 19, 68, 66, 42, 42, 34, 41, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2022-23,Stoughton - South Elementary,02850015, 0, 47, 48, 49, 52, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2022-23,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 303, 267, 220, 4," 1,073" -NA,NA,"",2022-23,Sturbridge - Burgess Elementary,02870005, 66, 106, 121, 107, 123, 105, 119, 130, 0, 0, 0, 0, 0, 0, 0, 877 -NA,NA,"",2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215, 215, 192, 208, 0, 830 -NA,NA,"",2022-23,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 272, 291, 287, 0, 0, 0, 0, 0, 850 -NA,NA,"",2022-23,Sudbury - General John Nixon Elementary,02880025, 0, 52, 53, 52, 68, 49, 51, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2022-23,Sudbury - Israel Loring School,02880015, 0, 80, 77, 58, 73, 70, 68, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2022-23,Sudbury - Josiah Haynes,02880010, 0, 54, 64, 46, 76, 62, 68, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2022-23,Sudbury - Peter Noyes,02880030, 58, 86, 72, 84, 92, 86, 86, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2022-23,Sunderland - Sunderland Elementary,02890005, 26, 22, 17, 16, 22, 23, 26, 25, 0, 0, 0, 0, 0, 0, 0, 177 -NA,NA,"",2022-23,Sutton - Sutton Early Learning,02900003, 50, 91, 89, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2022-23,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 90, 117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2022-23,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 93, 96, 91, 0, 369 -NA,NA,"",2022-23,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 85, 104, 107, 0, 0, 0, 0, 0, 296 -NA,NA,"",2022-23,Swampscott - Clarke,02910005, 0, 43, 43, 39, 46, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2022-23,Swampscott - Hadley,02910010, 0, 117, 65, 55, 58, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2022-23,Swampscott - Stanley,02910020, 0, 0, 43, 40, 43, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2022-23,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 159, 155, 153, 5, 641 -NA,NA,"",2022-23,Swampscott - Swampscott Middle,02910305, 61, 0, 0, 0, 0, 0, 135, 137, 176, 170, 0, 0, 0, 0, 0, 679 -NA,NA,"",2022-23,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 106, 85, 98, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2022-23,Swansea - Gardner,02920015, 0, 81, 94, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2022-23,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 128, 154, 109, 4, 537 -NA,NA,"",2022-23,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 174, 149, 175, 0, 0, 0, 0, 0, 498 -NA,NA,"",2022-23,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 50, 59, 69, 0, 0, 0, 0, 0, 0, 0, 0, 178 -NA,NA,"",2022-23,Swansea - Mark G Hoyle Elementary,02920017, 47, 59, 66, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2022-23,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 261, 290, 0, 0, 0, 0, 0, 551 -NA,NA,"",2022-23,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 167, 170, 169, 10, 677 -NA,NA,"",2022-23,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 148, 124, 104, 0, 524 -NA,NA,"",2022-23,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 236, 239, 255, 0, 0, 0, 0, 0, 0, 730 -NA,NA,"",2022-23,Taunton - East Taunton Elementary,02930010, 17, 114, 112, 92, 98, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 533 -NA,NA,"",2022-23,Taunton - Edmund Hatch Bennett,02930007, 0, 55, 50, 55, 63, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2022-23,Taunton - Edward F. Leddy Preschool,02930005, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2022-23,Taunton - Elizabeth Pole,02930027, 0, 113, 122, 118, 105, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577 -NA,NA,"",2022-23,Taunton - H H Galligan,02930057, 0, 64, 47, 50, 48, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2022-23,Taunton - James L. Mulcahey Elementary School,02930015, 51, 154, 171, 147, 160, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 851 -NA,NA,"",2022-23,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 159, 160, 175, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2022-23,Taunton - Joseph C Chamberlain,02930008, 17, 76, 89, 77, 96, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2022-23,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 222, 220, 200, 0, 0, 0, 0, 0, 0, 642 -NA,NA,"",2022-23,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 36, 0, 69 -NA,NA,"",2022-23,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 664, 540, 536, 514, 497, 9," 2,760" -NA,NA,"",2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 68, 70, 72, 89, 107, 148, 164, 232, 271, 449, 443, 422, 405, 0," 2,940" -NA,NA,"",2022-23,Tewksbury - Heath-Brook,02950010, 0, 139, 94, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2022-23,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 238, 272, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2022-23,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 242, 254, 0, 0, 0, 0, 0, 496 -NA,NA,"",2022-23,Tewksbury - L F Dewing,02950001, 159, 155, 141, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 612 -NA,NA,"",2022-23,Tewksbury - Louise Davy Trahan,02950025, 0, 0, 0, 0, 119, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2022-23,Tewksbury - North Street,02950020, 0, 0, 0, 0, 148, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2022-23,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 180, 196, 193, 4, 752 -NA,NA,"",2022-23,Tisbury - Tisbury Elementary,02960005, 8, 31, 34, 39, 31, 32, 30, 25, 22, 20, 0, 0, 0, 0, 0, 272 -NA,NA,"",2022-23,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 83, 87, 89, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2022-23,Topsfield - Steward Elementary,02980010, 47, 69, 86, 82, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 236, 233, 215, 0, 957 -NA,NA,"",2022-23,Triton - Newbury Elementary,07730020, 57, 60, 57, 56, 52, 52, 44, 34, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2022-23,Triton - Pine Grove,07730025, 35, 63, 69, 42, 58, 46, 57, 62, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2022-23,Triton - Salisbury Elementary,07730015, 41, 49, 47, 38, 62, 65, 56, 62, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2022-23,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 167, 147, 174, 0, 647 -NA,NA,"",2022-23,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 162, 158, 0, 0, 0, 0, 0, 320 -NA,NA,"",2022-23,Truro - Truro Central,03000005, 22, 10, 17, 10, 13, 13, 14, 0, 0, 0, 0, 0, 0, 0, 0, 99 -NA,NA,"",2022-23,Tyngsborough - Tyngsborough Elementary,03010020, 59, 104, 125, 113, 111, 129, 111, 0, 0, 0, 0, 0, 0, 0, 0, 752 -NA,NA,"",2022-23,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 98, 90, 109, 0, 414 -NA,NA,"",2022-23,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 150, 117, 133, 0, 0, 0, 0, 0, 400 -NA,NA,"",2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 61, 73, 79, 0, 0, 0, 0, 0, 213 -NA,NA,"",2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 56, 62, 66, 67, 67, 73, 74, 60, 46, 44, 0, 0, 0, 0, 0, 615 -NA,NA,"",2022-23,Up-Island Regional - Chilmark Elementary,07740010, 0, 18, 13, 12, 8, 12, 7, 0, 0, 0, 0, 0, 0, 0, 0, 70 -NA,NA,"",2022-23,Up-Island Regional - West Tisbury Elementary,07740020, 8, 30, 25, 34, 29, 44, 40, 40, 45, 47, 0, 0, 0, 0, 0, 342 -NA,NA,"",2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229, 201, 183, 156, 0, 769 -NA,NA,"",2022-23,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 11, 19, 0, 38 -NA,NA,"",2022-23,Uxbridge - Taft Early Learning Center,03040005, 65, 99, 124, 112, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 521 -NA,NA,"",2022-23,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 101, 115, 115, 100, 1, 590 -NA,NA,"",2022-23,Uxbridge - Whitin Intermediate,03040405, 0, 0, 0, 0, 0, 116, 128, 117, 134, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 102, 100, 101, 103, 95, 0, 0, 0, 0, 501 -NA,NA,"",2022-23,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 121, 136, 114, 0, 0, 0, 0, 0, 371 -NA,NA,"",2022-23,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 66, 62, 84, 67, 0, 0, 0, 0, 0, 279 -NA,NA,"",2022-23,Wachusett - Davis Hill Elementary,07750018, 0, 66, 74, 81, 69, 84, 73, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2022-23,Wachusett - Dawson,07750020, 0, 86, 92, 78, 75, 91, 77, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2022-23,Wachusett - Early Childhood Center,07750001, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2022-23,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 107, 111, 115, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2022-23,Wachusett - Houghton Elementary,07750027, 0, 61, 61, 59, 77, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2022-23,Wachusett - Leroy E.Mayo,07750032, 0, 78, 76, 97, 73, 84, 83, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2022-23,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 275, 251, 246, 0, 0, 0, 0, 0, 772 -NA,NA,"",2022-23,Wachusett - Naquag Elementary School,07750005, 0, 99, 141, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2022-23,Wachusett - Paxton Center,07750040, 0, 53, 46, 46, 50, 45, 41, 57, 46, 70, 0, 0, 0, 0, 0, 454 -NA,NA,"",2022-23,Wachusett - Thomas Prince,07750045, 0, 24, 37, 43, 42, 36, 37, 41, 40, 42, 0, 0, 0, 0, 0, 342 -NA,NA,"",2022-23,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447, 490, 493, 482, 18," 1,930" -NA,NA,"",2022-23,Wakefield - Dolbeare,03050005, 0, 78, 86, 92, 91, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2022-23,Wakefield - Early Childhood Center at the Doyle School,03050001, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2022-23,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 269, 268, 259, 269, 0, 0, 0, 0, 0," 1,065" -NA,NA,"",2022-23,Wakefield - Greenwood,03050020, 0, 43, 41, 45, 46, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2022-23,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 209, 190, 202, 5, 827 -NA,NA,"",2022-23,Wakefield - Walton,03050040, 0, 39, 45, 44, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2022-23,Wakefield - Woodville School,03050015, 16, 74, 80, 101, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2022-23,Wales - Wales Elementary,03060005, 4, 17, 10, 14, 14, 10, 13, 14, 0, 0, 0, 0, 0, 0, 0, 96 -NA,NA,"",2022-23,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 136, 123, 118, 0, 0, 0, 0, 0, 377 -NA,NA,"",2022-23,Walpole - Boyden,03070010, 0, 81, 70, 59, 65, 66, 67, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2022-23,Walpole - Daniel Feeney Preschool Center,03070002, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2022-23,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 138, 147, 132, 0, 0, 0, 0, 0, 417 -NA,NA,"",2022-23,Walpole - Elm Street School,03070005, 0, 70, 80, 89, 66, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2022-23,Walpole - Fisher,03070015, 0, 86, 58, 98, 79, 78, 77, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2022-23,Walpole - Old Post Road,03070018, 0, 54, 82, 82, 91, 77, 71, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2022-23,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 246, 257, 248, 4, 987 -NA,NA,"",2022-23,Waltham - Douglas MacArthur Elementary School,03080032, 0, 86, 85, 96, 57, 80, 73, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2022-23,Waltham - Henry Whittemore Elementary School,03080065, 0, 55, 70, 55, 72, 68, 65, 0, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2022-23,Waltham - James Fitzgerald Elementary School,03080060, 0, 57, 70, 58, 53, 67, 73, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2022-23,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 225, 197, 178, 0, 0, 0, 0, 0, 600 -NA,NA,"",2022-23,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 201, 196, 198, 0, 0, 0, 0, 0, 595 -NA,NA,"",2022-23,Waltham - Northeast Elementary School,03080040, 62, 74, 73, 77, 79, 62, 80, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2022-23,Waltham - Thomas R Plympton Elementary School,03080050, 0, 60, 56, 52, 67, 61, 57, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2022-23,Waltham - Waltham Public Schools Dual Language Program,03080001, 0, 41, 40, 39, 34, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2022-23,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456, 459, 435, 397, 4," 1,751" -NA,NA,"",2022-23,Waltham - William F. Stanley Elementary School,03080005, 55, 54, 60, 60, 52, 57, 45, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2022-23,Ware - Stanley M Koziol Elementary School,03090020, 66, 76, 75, 74, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2022-23,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 96, 95, 84, 93, 68, 55, 6, 497 -NA,NA,"",2022-23,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 90, 79, 79, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2022-23,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 9, 12, 0, 33 -NA,NA,"",2022-23,Wareham - Wareham Elementary School,03100017, 64, 185, 180, 160, 183, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 919 -NA,NA,"",2022-23,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 156, 124, 157, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2022-23,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 130, 99, 96, 81, 12, 626 -NA,NA,"",2022-23,Watertown - Cunniff,03140015, 0, 47, 65, 57, 46, 58, 53, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2022-23,Watertown - Hosmer,03140020, 128, 119, 117, 83, 86, 98, 85, 0, 0, 0, 0, 0, 0, 0, 0, 716 -NA,NA,"",2022-23,Watertown - James Russell Lowell,03140025, 0, 55, 64, 54, 72, 52, 58, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2022-23,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 209, 166, 152, 4, 733 -NA,NA,"",2022-23,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 185, 178, 169, 0, 0, 0, 0, 0, 532 -NA,NA,"",2022-23,Wayland - Claypit Hill School,03150005, 0, 73, 80, 93, 70, 73, 109, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2022-23,Wayland - Happy Hollow School,03150015, 0, 44, 59, 66, 64, 61, 69, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2022-23,Wayland - Loker School,03150020, 0, 53, 63, 66, 66, 66, 71, 0, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2022-23,Wayland - The Children's Way Preschool,03150025, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63 -NA,NA,"",2022-23,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 222, 207, 189, 0, 824 -NA,NA,"",2022-23,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 218, 203, 200, 0, 0, 0, 0, 0, 621 -NA,NA,"",2022-23,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 99, 75, 83, 6, 365 -NA,NA,"",2022-23,Webster - Park Avenue Elementary,03160015, 48, 132, 129, 131, 154, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 737 -NA,NA,"",2022-23,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 123, 155, 156, 156, 0, 0, 0, 0, 0, 590 -NA,NA,"",2022-23,Wellesley - Ernest F Upham,03170050, 0, 21, 32, 22, 23, 26, 36, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2022-23,Wellesley - Hunnewell,03170025, 0, 26, 29, 34, 33, 39, 37, 0, 0, 0, 0, 0, 0, 0, 0, 198 -NA,NA,"",2022-23,Wellesley - John D Hardy,03170020, 0, 31, 39, 32, 37, 33, 34, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2022-23,Wellesley - Joseph E Fiske,03170015, 0, 44, 50, 42, 51, 54, 39, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2022-23,Wellesley - Katharine Lee Bates,03170005, 0, 41, 52, 39, 42, 52, 45, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2022-23,Wellesley - Preschool at Wellesley Schools,03170001, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 -NA,NA,"",2022-23,Wellesley - Schofield,03170045, 0, 45, 56, 62, 59, 48, 63, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2022-23,Wellesley - Sprague Elementary School,03170048, 0, 40, 41, 37, 48, 55, 66, 0, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2022-23,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 297, 306, 319, 0, 0, 0, 0, 0, 922 -NA,NA,"",2022-23,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 339, 349, 368, 0," 1,412" -NA,NA,"",2022-23,Wellfleet - Wellfleet Elementary,03180005, 0, 13, 19, 17, 14, 20, 15, 0, 0, 0, 0, 0, 0, 0, 0, 98 -NA,NA,"",2022-23,West Boylston - Major Edwards Elementary,03220005, 36, 66, 77, 52, 67, 66, 67, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2022-23,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 62, 71, 70, 63, 48, 57, 62, 0, 433 -NA,NA,"",2022-23,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 106, 99, 106, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2022-23,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 103, 116, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2022-23,West Bridgewater - Spring Street School,03230005, 53, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156 -NA,NA,"",2022-23,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 106, 113, 108, 96, 102, 100, 0, 625 -NA,NA,"",2022-23,West Springfield - John Ashley,03320005, 0, 174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2022-23,West Springfield - John R Fausey,03320010, 0, 0, 80, 87, 82, 78, 84, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2022-23,West Springfield - Memorial,03320025, 0, 0, 40, 56, 34, 36, 32, 0, 0, 0, 0, 0, 0, 0, 0, 198 -NA,NA,"",2022-23,West Springfield - Mittineague,03320030, 0, 0, 23, 25, 26, 40, 35, 0, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2022-23,West Springfield - Philip G Coburn,03320007, 0, 92, 90, 83, 97, 80, 92, 0, 0, 0, 0, 0, 0, 0, 0, 534 -NA,NA,"",2022-23,West Springfield - Tatham,03320040, 0, 0, 28, 50, 45, 56, 51, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2022-23,West Springfield - West Springfield Early Childhood,03320001, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 -NA,NA,"",2022-23,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324, 297, 266, 287, 12," 1,186" -NA,NA,"",2022-23,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 313, 289, 295, 0, 0, 0, 0, 0, 897 -NA,NA,"",2022-23,Westborough - Annie E Fales,03210010, 0, 73, 86, 78, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2022-23,Westborough - Elsie A Hastings Elementary,03210025, 140, 76, 89, 91, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2022-23,Westborough - J Harding Armstrong,03210005, 0, 88, 102, 88, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2022-23,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 270, 300, 295, 0, 0, 0, 0, 0, 0, 0, 865 -NA,NA,"",2022-23,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 291, 299, 0, 0, 0, 0, 0, 590 -NA,NA,"",2022-23,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 323, 291, 262, 11," 1,178" -NA,NA,"",2022-23,Westfield - Abner Gibbs,03250020, 0, 25, 29, 31, 38, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 -NA,NA,"",2022-23,Westfield - Fort Meadow Early Childhood Center,03250003, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133 -NA,NA,"",2022-23,Westfield - Franklin Ave,03250015, 0, 26, 34, 34, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166 -NA,NA,"",2022-23,Westfield - Highland,03250025, 0, 65, 73, 68, 73, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2022-23,Westfield - Munger Hill,03250033, 0, 53, 65, 75, 65, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2022-23,Westfield - Paper Mill,03250036, 0, 82, 68, 56, 69, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2022-23,Westfield - Southampton Road,03250040, 28, 55, 62, 60, 57, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2022-23,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 265, 258, 241, 10," 1,027" -NA,NA,"",2022-23,Westfield - Westfield Intermediate School,03250075, 0, 0, 0, 0, 0, 0, 317, 351, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2022-23,Westfield - Westfield Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 0, 368, 323, 0, 0, 0, 0, 0, 691 -NA,NA,"",2022-23,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 150, 127, 128, 0, 543 -NA,NA,"",2022-23,Westfield - Westfield Virtual School,03250705, 0, 0, 1, 7, 5, 1, 2, 9, 10, 13, 7, 6, 8, 10, 0, 79 -NA,NA,"",2022-23,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 116, 119, 125, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2022-23,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 178, 182, 183, 0, 0, 0, 0, 0, 543 -NA,NA,"",2022-23,Westford - Col John Robinson,03260025, 27, 104, 107, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2022-23,Westford - Day Elementary,03260007, 0, 0, 0, 0, 103, 105, 119, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2022-23,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 101, 118, 116, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2022-23,Westford - Nabnasset,03260015, 32, 101, 100, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2022-23,Westford - Rita E. Miller Elementary School,03260055, 38, 79, 94, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2022-23,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 166, 232, 214, 0, 0, 0, 0, 0, 612 -NA,NA,"",2022-23,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 371, 377, 423, 2," 1,525" -NA,NA,"",2022-23,Westhampton - Westhampton Elementary School,03270005, 10, 14, 15, 10, 14, 12, 11, 18, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2022-23,Weston - Country,03300010, 17, 92, 76, 64, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2022-23,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 143, 123, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2022-23,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 167, 159, 155, 0, 639 -NA,NA,"",2022-23,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 140, 150, 154, 0, 0, 0, 0, 0, 444 -NA,NA,"",2022-23,Weston - Woodland,03300015, 19, 82, 75, 83, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2022-23,Westport - Alice A Macomber,03310015, 67, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2022-23,Westport - Westport Elementary,03310030, 0, 0, 107, 109, 109, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2022-23,Westport - Westport Middle-High School,03310515, 0, 0, 0, 0, 0, 0, 118, 120, 139, 138, 71, 90, 85, 68, 3, 832 -NA,NA,"",2022-23,Westwood - Deerfield School,03350010, 0, 34, 41, 35, 29, 27, 30, 0, 0, 0, 0, 0, 0, 0, 0, 196 -NA,NA,"",2022-23,Westwood - Downey,03350012, 2, 49, 51, 46, 42, 65, 53, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2022-23,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 218, 214, 229, 0, 0, 0, 0, 0, 661 -NA,NA,"",2022-23,Westwood - Martha Jones,03350017, 0, 34, 44, 53, 34, 43, 56, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2022-23,Westwood - Paul Hanlon,03350015, 0, 36, 42, 36, 35, 34, 47, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2022-23,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201, 217, 235, 249, 0, 902 -NA,NA,"",2022-23,Westwood - Westwood Integrated Preschool,03350050, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42 -NA,NA,"",2022-23,Westwood - William E Sheehan,03350025, 0, 42, 46, 53, 44, 60, 42, 0, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2022-23,Weymouth - Academy Avenue,03360005, 0, 65, 59, 57, 57, 46, 60, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2022-23,Weymouth - Frederick C Murphy,03360050, 0, 46, 42, 48, 52, 46, 45, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2022-23,Weymouth - Johnson Early Childhood Center,03360003, 178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178 -NA,NA,"",2022-23,Weymouth - Lawrence W Pingree,03360065, 0, 42, 39, 47, 51, 42, 37, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2022-23,Weymouth - Maria Weston Chapman Middle School,03360020, 0, 0, 0, 0, 0, 0, 1, 402, 382, 410, 0, 0, 0, 0, 0," 1,195" -NA,NA,"",2022-23,Weymouth - Ralph Talbot,03360085, 0, 46, 42, 43, 45, 46, 37, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2022-23,Weymouth - Thomas V Nash,03360060, 0, 40, 40, 42, 36, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2022-23,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 69, 67, 65, 38, 51, 60, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2022-23,Weymouth - Wessagusset,03360110, 0, 45, 74, 63, 46, 54, 59, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2022-23,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 422, 430, 424, 15," 1,807" -NA,NA,"",2022-23,Weymouth - William Seach,03360080, 0, 67, 60, 54, 60, 59, 56, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2022-23,Whately - Whately Elementary,03370005, 16, 20, 13, 17, 15, 16, 14, 17, 0, 0, 0, 0, 0, 0, 0, 128 -NA,NA,"",2022-23,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 114, 108, 100, 127, 0, 0, 0, 0, 0, 449 -NA,NA,"",2022-23,Whitman-Hanson - Indian Head,07800035, 0, 93, 101, 91, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485 -NA,NA,"",2022-23,Whitman-Hanson - John H Duval,07800030, 0, 51, 75, 70, 72, 82, 76, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2022-23,Whitman-Hanson - Louise A Conley,07800010, 0, 70, 82, 67, 98, 80, 85, 0, 0, 0, 0, 0, 0, 0, 0, 482 -NA,NA,"",2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 -NA,NA,"",2022-23,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 256, 253, 316, 12," 1,093" -NA,NA,"",2022-23,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 169, 175, 160, 0, 0, 0, 0, 0, 504 -NA,NA,"",2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309, 325, 321, 322, 0," 1,277" -NA,NA,"",2022-23,Williamsburg - Anne T. Dunphy School,03400020, 10, 13, 16, 12, 18, 23, 18, 17, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2022-23,Wilmington - Boutwell,03420005, 42, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143 -NA,NA,"",2022-23,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 107, 145, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2022-23,Wilmington - Shawsheen Elementary,03420025, 18, 40, 100, 128, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2022-23,Wilmington - West Intermediate,03420080, 23, 39, 0, 0, 0, 112, 118, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2022-23,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 141, 166, 193, 0, 656 -NA,NA,"",2022-23,Wilmington - Wilmington Middle School,03420330, 0, 0, 0, 0, 0, 0, 0, 209, 235, 187, 0, 0, 0, 0, 0, 631 -NA,NA,"",2022-23,Wilmington - Woburn Street,03420020, 0, 57, 122, 112, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2022-23,Winchendon - Memorial,03430040, 0, 114, 110, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2022-23,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 8, 6, 0, 22 -NA,NA,"",2022-23,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 76, 50, 50, 0, 263 -NA,NA,"",2022-23,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 98, 90, 81, 0, 0, 0, 0, 0, 269 -NA,NA,"",2022-23,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 95, 97, 102, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2022-23,Winchendon - Winchendon PreSchool Program,03430010, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72 -NA,NA,"",2022-23,Winchester - Ambrose Elementary,03440045, 0, 45, 71, 50, 69, 58, 52, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2022-23,Winchester - Lincoln Elementary,03440005, 0, 47, 48, 50, 53, 62, 68, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2022-23,Winchester - Lynch Elementary,03440020, 36, 59, 72, 67, 84, 77, 78, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2022-23,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 349, 348, 340, 0, 0, 0, 0, 0," 1,037" -NA,NA,"",2022-23,Winchester - Muraco Elementary,03440040, 0, 48, 48, 42, 66, 60, 62, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2022-23,Winchester - Vinson-Owen Elementary,03440025, 29, 52, 65, 63, 84, 80, 68, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2022-23,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 331, 339, 352, 0," 1,383" -NA,NA,"",2022-23,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 159, 142, 130, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 58, 141, 150, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2022-23,Winthrop - Winthrop High School,03460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 152, 137, 135, 7, 594 -NA,NA,"",2022-23,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 157, 130, 138, 0, 0, 0, 0, 0, 425 -NA,NA,"",2022-23,Woburn - Clyde Reeves,03470040, 120, 62, 39, 47, 50, 59, 45, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2022-23,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 148, 163, 136, 0, 0, 0, 0, 0, 447 -NA,NA,"",2022-23,Woburn - Goodyear Elementary School,03470005, 0, 48, 67, 42, 62, 58, 45, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2022-23,Woburn - Hurld-Wyman Elementary School,03470020, 0, 72, 66, 65, 71, 52, 64, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2022-23,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 173, 160, 181, 0, 0, 0, 0, 0, 514 -NA,NA,"",2022-23,Woburn - Linscott-Rumford,03470025, 0, 42, 40, 32, 22, 30, 33, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2022-23,Woburn - Malcolm White,03470055, 0, 56, 49, 46, 53, 58, 55, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2022-23,Woburn - Mary D Altavesta,03470065, 0, 35, 41, 36, 31, 35, 25, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2022-23,Woburn - Shamrock,03470043, 22, 53, 42, 43, 52, 37, 35, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2022-23,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 333, 281, 276, 5," 1,178" -NA,NA,"",2022-23,Worcester - Belmont Street Community,03480020, 48, 79, 70, 79, 71, 104, 71, 63, 0, 0, 0, 0, 0, 0, 0, 585 -NA,NA,"",2022-23,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 368, 344, 0, 0, 0, 0, 0, 712 -NA,NA,"",2022-23,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326, 262, 298, 279, 14," 1,179" -NA,NA,"",2022-23,Worcester - Burncoat Street,03480035, 0, 30, 33, 38, 26, 35, 42, 36, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2022-23,Worcester - Canterbury,03480045, 31, 64, 37, 26, 28, 27, 40, 41, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2022-23,Worcester - Chandler Elementary Community,03480050, 0, 58, 62, 45, 57, 73, 58, 73, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2022-23,Worcester - Chandler Magnet,03480052, 35, 48, 57, 40, 57, 57, 56, 52, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2022-23,Worcester - City View,03480053, 23, 50, 69, 37, 51, 60, 77, 63, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2022-23,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 80, 91, 68, 93, 78, 74, 4, 488 -NA,NA,"",2022-23,Worcester - Clark St Community,03480055, 28, 33, 34, 29, 31, 36, 39, 38, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2022-23,Worcester - Columbus Park,03480060, 21, 52, 50, 50, 64, 45, 55, 49, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2022-23,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377, 337, 313, 308, 9," 1,344" -NA,NA,"",2022-23,Worcester - Elm Park Community,03480095, 0, 64, 61, 53, 49, 68, 57, 63, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2022-23,Worcester - Flagg Street,03480090, 0, 67, 67, 45, 58, 48, 39, 35, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2022-23,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 425, 472, 0, 0, 0, 0, 0, 897 -NA,NA,"",2022-23,Worcester - Francis J McGrath Elementary,03480177, 6, 36, 24, 21, 25, 31, 32, 33, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2022-23,Worcester - Gates Lane,03480110, 65, 79, 86, 60, 72, 58, 70, 54, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2022-23,Worcester - Goddard School/Science Technical,03480100, 14, 51, 69, 45, 56, 49, 56, 40, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2022-23,Worcester - Grafton Street,03480115, 0, 56, 74, 53, 60, 60, 58, 66, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2022-23,Worcester - Head Start,03480002, 407, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2022-23,Worcester - Heard Street,03480136, 0, 42, 31, 44, 25, 35, 43, 26, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2022-23,Worcester - Jacob Hiatt Magnet,03480140, 41, 70, 43, 39, 47, 49, 43, 40, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2022-23,Worcester - La Familia Dual Language School,03480025, 14, 38, 38, 34, 18, 12, 10, 8, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2022-23,Worcester - Lake View,03480145, 0, 46, 56, 34, 46, 39, 44, 43, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2022-23,Worcester - Lincoln Street,03480160, 0, 54, 49, 24, 33, 30, 28, 24, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2022-23,Worcester - May Street,03480175, 0, 49, 45, 35, 43, 37, 45, 41, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2022-23,Worcester - Midland Street,03480185, 0, 36, 38, 29, 24, 32, 31, 16, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2022-23,Worcester - Nelson Place,03480200, 48, 64, 82, 81, 74, 84, 78, 64, 0, 0, 0, 0, 0, 0, 0, 575 -NA,NA,"",2022-23,Worcester - Norrback Avenue,03480202, 40, 69, 64, 53, 78, 81, 65, 57, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2022-23,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 390, 329, 276, 25," 1,377" -NA,NA,"",2022-23,Worcester - Quinsigamond,03480210, 23, 100, 113, 96, 106, 92, 96, 87, 0, 0, 0, 0, 0, 0, 0, 713 -NA,NA,"",2022-23,Worcester - Rice Square,03480215, 0, 69, 70, 76, 79, 48, 57, 59, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2022-23,Worcester - Roosevelt,03480220, 79, 73, 79, 68, 75, 78, 55, 59, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2022-23,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452, 440, 424, 339, 11," 1,666" -NA,NA,"",2022-23,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 49, 376, 402, 0, 0, 0, 0, 0, 827 -NA,NA,"",2022-23,Worcester - Tatnuck,03480230, 25, 59, 47, 51, 54, 57, 42, 50, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2022-23,Worcester - Thorndyke Road,03480235, 0, 58, 58, 44, 50, 47, 58, 48, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2022-23,Worcester - Union Hill School,03480240, 0, 53, 58, 62, 49, 53, 59, 56, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2022-23,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 39, 38, 36, 37, 36, 38, 0, 224 -NA,NA,"",2022-23,Worcester - Vernon Hill School,03480280, 39, 58, 68, 45, 64, 63, 52, 85, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2022-23,Worcester - Wawecus Road School,03480026, 0, 19, 19, 16, 21, 22, 17, 19, 0, 0, 0, 0, 0, 0, 0, 133 -NA,NA,"",2022-23,Worcester - West Tatnuck,03480260, 54, 49, 40, 42, 47, 44, 56, 32, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2022-23,Worcester - Woodland Academy,03480030, 0, 63, 76, 49, 70, 61, 74, 94, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2022-23,Worcester - Worcester Arts Magnet School,03480225, 24, 49, 62, 51, 47, 50, 48, 37, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2022-23,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 0, 348, 392, 0, 0, 0, 0, 0, 740 -NA,NA,"",2022-23,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 380, 339, 357, 9," 1,469" -NA,NA,"",2022-23,Worthington - R. H. Conwell,03490010, 18, 12, 5, 6, 8, 6, 14, 7, 0, 0, 0, 0, 0, 0, 0, 76 -NA,NA,"",2022-23,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 105, 139, 125, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2022-23,Wrentham - Delaney,03500003, 92, 124, 130, 125, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 582 -NA,NA,"",2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 119, 118, 119, 119, 120, 124, 119, 112, 109, 91, 93, 90, 93, 0," 1,426" -NA,NA,"",2021-22,Abington - Abington Early Education Program,00010001, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76 -NA,NA,"",2021-22,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 148, 145, 154, 6, 586 -NA,NA,"",2021-22,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 169, 142, 171, 165, 0, 0, 0, 0, 0, 647 -NA,NA,"",2021-22,Abington - Beaver Brook Elementary,00010020, 0, 174, 186, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 531 -NA,NA,"",2021-22,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 166, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 49, 64, 67, 71, 65, 75, 59, 60, 0, 510 -NA,NA,"",2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 385, 407, 456, 451, 4," 1,703" -NA,NA,"",2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 55, 74, 58, 85, 88, 69, 67, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 57, 55, 59, 45, 46, 47, 73, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106 -NA,NA,"",2021-22,Acton-Boxborough - Luther Conant School,06000030, 0, 55, 39, 60, 64, 69, 69, 47, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 39, 54, 60, 69, 84, 70, 74, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2021-22,Acton-Boxborough - Merriam School,06000010, 0, 56, 56, 60, 68, 67, 71, 75, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 55, 38, 41, 44, 45, 73, 72, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 404, 421, 0, 0, 0, 0, 0, 825 -NA,NA,"",2021-22,Acushnet - Acushnet Elementary School,00030025, 53, 76, 101, 87, 119, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2021-22,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 81, 114, 104, 99, 0, 0, 0, 0, 0, 398 -NA,NA,"",2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 133, 142, 127, 134, 140, 143, 146, 0, 965 -NA,NA,"",2021-22,Agawam - Agawam Early Childhood Center,00050003, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2021-22,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 252, 263, 220, 5," 1,017" -NA,NA,"",2021-22,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 266, 313, 0, 0, 0, 0, 0, 579 -NA,NA,"",2021-22,Agawam - Benjamin J Phelps,00050020, 0, 50, 59, 63, 59, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2021-22,Agawam - Clifford M Granger,00050010, 0, 68, 55, 83, 61, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2021-22,Agawam - James Clark School,00050030, 0, 67, 53, 50, 66, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2021-22,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 275, 245, 0, 1, 0, 0, 0, 0, 0, 521 -NA,NA,"",2021-22,Agawam - Robinson Park,00050025, 0, 44, 64, 58, 65, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 102, 102, 101, 103, 103, 51, 149, 140, 93, 0, 0, 0, 0, 0, 944 -NA,NA,"",2021-22,Amesbury - Amesbury Elementary,00070005, 24, 63, 58, 64, 53, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2021-22,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 122, 116, 117, 7, 463 -NA,NA,"",2021-22,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 10, 9, 16, 0, 47 -NA,NA,"",2021-22,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 135, 155, 169, 156, 0, 0, 0, 0, 0, 615 -NA,NA,"",2021-22,Amesbury - Charles C Cashman Elementary,00070010, 13, 73, 80, 59, 56, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2021-22,Amherst - Crocker Farm Elementary,00080009, 55, 32, 48, 32, 56, 40, 47, 48, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2021-22,Amherst - Fort River Elementary,00080020, 0, 55, 52, 61, 41, 38, 60, 44, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2021-22,Amherst - Wildwood Elementary,00080050, 0, 40, 42, 47, 48, 60, 47, 60, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2021-22,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 215, 206, 226, 4, 858 -NA,NA,"",2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 195, 217, 0, 0, 0, 0, 0, 412 -NA,NA,"",2021-22,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 420, 416, 415, 393, 35," 1,679" -NA,NA,"",2021-22,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 165, 181, 184, 0, 0, 0, 0, 0, 530 -NA,NA,"",2021-22,Andover - Bancroft Elementary,00090003, 0, 64, 75, 82, 98, 102, 93, 0, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2021-22,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 158, 149, 148, 0, 0, 0, 0, 0, 455 -NA,NA,"",2021-22,Andover - Henry C Sanborn Elementary,00090010, 0, 54, 51, 42, 66, 53, 62, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2021-22,Andover - High Plain Elementary,00090004, 0, 90, 80, 82, 109, 84, 86, 0, 0, 0, 0, 0, 0, 0, 0, 531 -NA,NA,"",2021-22,Andover - Shawsheen School,00090005, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77 -NA,NA,"",2021-22,Andover - South Elementary,00090020, 0, 63, 69, 67, 87, 74, 75, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2021-22,Andover - West Elementary,00090025, 0, 87, 94, 84, 100, 81, 95, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2021-22,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 120, 121, 125, 0, 0, 0, 0, 0, 366 -NA,NA,"",2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 100, 103, 103, 77, 55, 63, 65, 0, 566 -NA,NA,"",2021-22,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 372, 362, 385, 0," 1,483" -NA,NA,"",2021-22,Arlington - Brackett,00100010, 0, 59, 68, 71, 97, 63, 84, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2021-22,Arlington - Cyrus E Dallin,00100025, 0, 61, 60, 64, 87, 72, 82, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2021-22,Arlington - Gibbs School,00100305, 0, 0, 0, 0, 0, 0, 0, 452, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2021-22,Arlington - Hardy,00100030, 0, 79, 63, 57, 71, 64, 76, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2021-22,Arlington - John A Bishop,00100005, 0, 62, 63, 62, 77, 59, 67, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2021-22,Arlington - M Norcross Stratton,00100055, 0, 83, 68, 85, 76, 74, 67, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2021-22,Arlington - Menotomy Preschool,00100038, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2021-22,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 0, 473, 433, 0, 0, 0, 0, 0, 906 -NA,NA,"",2021-22,Arlington - Peirce,00100045, 0, 50, 64, 53, 57, 64, 38, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2021-22,Arlington - Thompson,00100050, 0, 92, 88, 79, 78, 73, 95, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 58, 83, 67, 68, 87, 81, 84, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 0, 82, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167 -NA,NA,"",2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 168, 163, 128, 11, 625 -NA,NA,"",2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 182, 196, 197, 0, 0, 0, 0, 0, 575 -NA,NA,"",2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 88, 109, 89, 91, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2021-22,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 204, 175, 224, 0, 812 -NA,NA,"",2021-22,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 228, 237, 231, 0, 0, 0, 0, 0, 696 -NA,NA,"",2021-22,Ashland - David Mindess,00140015, 0, 0, 0, 0, 212, 206, 218, 0, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2021-22,Ashland - Henry E Warren Elementary,00140010, 0, 225, 229, 195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 649 -NA,NA,"",2021-22,Ashland - William Pittaway Elementary,00140005, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77 -NA,NA,"",2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 292, 275, 272, 0," 1,139" -NA,NA,"",2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 67, 122, 96, 91, 106, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 585 -NA,NA,"",2021-22,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 106, 74, 74, 2, 371 -NA,NA,"",2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 112, 100, 105, 122, 0, 0, 0, 0, 0, 439 -NA,NA,"",2021-22,Athol-Royalston - Royalston Community School,06150050, 0, 20, 21, 21, 23, 19, 18, 22, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 109, 108, 110, 110, 105, 108, 109, 107, 109, 78, 61, 88, 75, 0," 1,277" -NA,NA,"",2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 77, 50, 60, 75, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2021-22,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 12, 34, 0, 50 -NA,NA,"",2021-22,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 486, 438, 408, 421, 16," 1,769" -NA,NA,"",2021-22,Attleboro - Attleboro Virtual Academy,00160705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 7, 22, 14, 0, 50 -NA,NA,"",2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 141, 162, 164, 138, 0, 0, 0, 0, 0, 605 -NA,NA,"",2021-22,Attleboro - Early Learning Center,00160008, 180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180 -NA,NA,"",2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 0, 76, 63, 95, 85, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2021-22,Attleboro - Hyman Fine Elementary School,00160040, 0, 93, 83, 97, 88, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2021-22,Attleboro - Peter Thacher Elementary School,00160050, 0, 100, 98, 95, 84, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2021-22,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 149, 145, 138, 170, 0, 0, 0, 0, 0, 602 -NA,NA,"",2021-22,Attleboro - Thomas Willett Elementary School,00160035, 0, 75, 69, 69, 82, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2021-22,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 133, 150, 137, 161, 0, 0, 0, 0, 0, 581 -NA,NA,"",2021-22,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 199, 220, 228, 0, 0, 0, 0, 0, 647 -NA,NA,"",2021-22,Auburn - Auburn Senior High,00170505, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 179, 199, 180, 10, 840 -NA,NA,"",2021-22,Auburn - Bryn Mawr,00170010, 0, 77, 90, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2021-22,Auburn - Pakachoag School,00170025, 0, 77, 87, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2021-22,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 189, 163, 217, 0, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2021-22,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 0, 51, 57, 64, 49, 45, 47, 3, 316 -NA,NA,"",2021-22,Avon - Ralph D Butler,00180010, 24, 48, 45, 45, 52, 60, 63, 62, 0, 0, 0, 0, 0, 0, 0, 399 -NA,NA,"",2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 88, 99, 62, 0, 368 -NA,NA,"",2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 121, 131, 138, 0, 0, 0, 0, 0, 390 -NA,NA,"",2021-22,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0, 51, 62, 57, 43, 50, 61, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2021-22,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 74, 87, 62, 88, 76, 82, 71, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2021-22,Barnstable - Barnstable Community Innovation School,00200012, 0, 67, 72, 74, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2021-22,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 363, 347, 336, 330, 14," 1,762" -NA,NA,"",2021-22,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 326, 356, 0, 0, 0, 0, 0, 0, 682 -NA,NA,"",2021-22,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 368, 344, 0, 0, 0, 0, 0, 0, 0, 0, 712 -NA,NA,"",2021-22,Barnstable - Centerville Elementary,00200010, 0, 61, 62, 64, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2021-22,Barnstable - Hyannis West Elementary,00200025, 0, 70, 76, 64, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2021-22,Barnstable - West Barnstable Elementary,00200005, 0, 63, 62, 59, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2021-22,Barnstable - West Villages Elementary School,00200045, 0, 99, 98, 91, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 58, 81, 74, 71, 66, 62, 44, 0, 456 -NA,NA,"",2021-22,Bedford - Bedford High,00230505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 201, 204, 218, 0, 849 -NA,NA,"",2021-22,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 200, 206, 204, 0, 0, 0, 0, 0, 610 -NA,NA,"",2021-22,Bedford - Lt Elezer Davis,00230010, 46, 141, 171, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 545 -NA,NA,"",2021-22,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 195, 215, 188, 0, 0, 0, 0, 0, 0, 0, 0, 598 -NA,NA,"",2021-22,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 161, 183, 147, 5, 654 -NA,NA,"",2021-22,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 166, 156, 161, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2021-22,Belchertown - Cold Spring,00240005, 49, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2021-22,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 173, 169, 0, 0, 0, 0, 0, 342 -NA,NA,"",2021-22,Belchertown - Swift River Elementary,00240018, 0, 0, 147, 145, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2021-22,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 148, 154, 126, 131, 4, 744 -NA,NA,"",2021-22,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 134, 159, 142, 163, 0, 0, 0, 0, 0, 0, 598 -NA,NA,"",2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 0, 77, 57, 75, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2021-22,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 2, 3, 5, 4, 0, 21 -NA,NA,"",2021-22,Bellingham - Stall Brook,00250025, 0, 55, 62, 62, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2021-22,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342, 334, 318, 335, 0," 1,329" -NA,NA,"",2021-22,Belmont - Daniel Butler,00260015, 0, 63, 66, 64, 67, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2021-22,Belmont - Mary Lee Burbank,00260010, 0, 57, 57, 77, 85, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2021-22,Belmont - Roger E Wellington,00260035, 71, 98, 80, 107, 96, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 558 -NA,NA,"",2021-22,Belmont - Winn Brook,00260005, 0, 71, 83, 87, 91, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2021-22,Belmont - Winthrop L Chenery Middle,00260305, 0, 0, 0, 0, 0, 0, 355, 308, 345, 354, 0, 0, 0, 0, 0," 1,362" -NA,NA,"",2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 19, 43, 48, 45, 43, 46, 47, 38, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 96, 98, 96, 96, 96, 96, 97, 94, 49, 0, 0, 0, 0, 0, 818 -NA,NA,"",2021-22,Berkley - Berkley Community School,00270010, 59, 73, 79, 91, 86, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2021-22,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 101, 97, 96, 112, 0, 0, 0, 0, 0, 406 -NA,NA,"",2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 68, 64, 64, 49, 42, 38, 41, 0, 366 -NA,NA,"",2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 116, 112, 150, 1, 512 -NA,NA,"",2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 24, 57, 58, 65, 68, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 67, 91, 91, 100, 0, 0, 0, 0, 0, 349 -NA,NA,"",2021-22,Berlin-Boylston - Berlin Memorial School,06200005, 28, 27, 38, 29, 27, 34, 33, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2021-22,Berlin-Boylston - Boylston Elementary School,06200010, 29, 54, 40, 53, 42, 52, 34, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2021-22,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 84, 76, 90, 65, 83, 61, 74, 0, 533 -NA,NA,"",2021-22,Beverly - Ayers/Ryal Side School,00300055, 0, 68, 85, 77, 79, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2021-22,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 299, 330, 343, 9," 1,299" -NA,NA,"",2021-22,Beverly - Beverly Middle School,00300305, 0, 0, 0, 0, 0, 0, 344, 343, 368, 372, 0, 0, 0, 0, 0," 1,427" -NA,NA,"",2021-22,Beverly - Centerville Elementary,00300010, 0, 47, 62, 65, 58, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2021-22,Beverly - Cove Elementary,00300015, 0, 73, 82, 89, 90, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2021-22,Beverly - Hannah Elementary,00300033, 0, 74, 63, 80, 64, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2021-22,Beverly - McKeown School,00300002, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2021-22,Beverly - North Beverly Elementary,00300040, 0, 64, 78, 61, 74, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2021-22,Billerica - Billerica Memorial High School,00310505, 200, 0, 0, 0, 0, 0, 0, 0, 0, 389, 297, 265, 269, 288, 10," 1,718" -NA,NA,"",2021-22,Billerica - Frederick J Dutile,00310007, 0, 60, 62, 45, 48, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2021-22,Billerica - Hajjar Elementary,00310026, 0, 66, 80, 74, 79, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2021-22,Billerica - John F Kennedy,00310012, 0, 65, 70, 61, 56, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2021-22,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 161, 199, 169, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2021-22,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 187, 207, 204, 0, 0, 0, 0, 0, 0, 598 -NA,NA,"",2021-22,Billerica - Parker,00310015, 0, 100, 80, 84, 74, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2021-22,Billerica - Thomas Ditson,00310005, 0, 102, 101, 98, 116, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 314, 301, 299, 0," 1,234" -NA,NA,"",2021-22,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 120, 125, 98, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2021-22,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 95, 99, 102, 7, 413 -NA,NA,"",2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 147, 110, 138, 0, 0, 0, 0, 0, 395 -NA,NA,"",2021-22,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 0, 0, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102 -NA,NA,"",2021-22,Blackstone-Millville - Millville Elementary,06220010, 92, 81, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 240, 220, 211, 0, 917 -NA,NA,"",2021-22,Boston - Adams Elementary School,00350302, 21, 27, 39, 45, 34, 34, 18, 27, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2021-22,Boston - Alighieri Dante Montessori School,00350066, 24, 14, 14, 12, 14, 13, 7, 6, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2021-22,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60, 58, 55, 58, 0, 231 -NA,NA,"",2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 76, 28, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2021-22,Boston - Bates Elementary School,00350278, 19, 35, 31, 35, 31, 34, 31, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2021-22,Boston - Beethoven Elementary School,00350021, 43, 67, 76, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2021-22,Boston - Blackstone Elementary School,00350390, 59, 59, 66, 63, 77, 65, 66, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2021-22,Boston - Boston Adult Tech Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 108, 2, 120 -NA,NA,"",2021-22,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 125, 125, 120, 0, 490 -NA,NA,"",2021-22,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 27, 65, 2, 98 -NA,NA,"",2021-22,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 68, 90, 120, 129, 118, 116, 22, 663 -NA,NA,"",2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 101, 83, 96, 0, 421 -NA,NA,"",2021-22,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 274, 243, 301, 299, 308, 260, 0," 1,685" -NA,NA,"",2021-22,Boston - Boston Latin School,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 380, 404, 433, 405, 422, 372, 0," 2,416" -NA,NA,"",2021-22,Boston - Boston Teachers Union K-8 Pilot,00350012, 25, 26, 24, 25, 24, 24, 24, 43, 45, 30, 0, 0, 0, 0, 0, 290 -NA,NA,"",2021-22,Boston - Bradley Elementary School,00350215, 33, 34, 39, 40, 40, 40, 31, 34, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2021-22,Boston - Brighton High School,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 54, 105, 109, 15, 360 -NA,NA,"",2021-22,Boston - Burke High School,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 79, 76, 88, 9, 330 -NA,NA,"",2021-22,Boston - Carter School,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 2, 3, 11, 24 -NA,NA,"",2021-22,Boston - Channing Elementary School,00350360, 36, 37, 26, 28, 21, 23, 15, 15, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2021-22,Boston - Charlestown High School,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 35, 75, 102, 122, 195, 239, 53, 821 -NA,NA,"",2021-22,Boston - Chittick Elementary School,00350154, 36, 31, 34, 35, 25, 32, 31, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2021-22,Boston - Clap Elementary School,00350298, 12, 13, 14, 17, 17, 14, 15, 18, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2021-22,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 12, 13, 0, 34 -NA,NA,"",2021-22,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 83, 77, 17, 331 -NA,NA,"",2021-22,Boston - Condon K-8 School,00350146, 40, 50, 60, 60, 66, 75, 76, 75, 86, 78, 0, 0, 0, 0, 0, 666 -NA,NA,"",2021-22,Boston - Conley Elementary School,00350122, 17, 17, 21, 22, 13, 17, 21, 48, 0, 0, 0, 0, 0, 0, 0, 176 -NA,NA,"",2021-22,Boston - Curley K-8 School,00350020, 86, 90, 83, 86, 86, 103, 97, 118, 64, 87, 0, 0, 0, 0, 0, 900 -NA,NA,"",2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 0, 0, 0, 0, 0, 0, 0, 70, 77, 92, 86, 87, 81, 85, 0, 578 -NA,NA,"",2021-22,Boston - Dever Elementary School,00350268, 32, 50, 43, 46, 52, 59, 55, 35, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2021-22,Boston - East Boston Early Education Center,00350009, 86, 56, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188 -NA,NA,"",2021-22,Boston - East Boston High School,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 107, 0, 225, 231, 256, 277, 15," 1,111" -NA,NA,"",2021-22,Boston - Edison K-8 School,00350375, 18, 38, 41, 62, 67, 70, 53, 48, 51, 38, 0, 0, 0, 0, 0, 486 -NA,NA,"",2021-22,Boston - Eliot K-8 Innovation School,00350096, 60, 77, 80, 81, 92, 95, 93, 101, 66, 51, 0, 0, 0, 0, 0, 796 -NA,NA,"",2021-22,Boston - Ellis Elementary School,00350072, 40, 55, 49, 50, 36, 58, 45, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2021-22,Boston - Ellison-Parks Early Education School,00350008, 48, 37, 28, 28, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2021-22,Boston - English High School,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 93, 146, 154, 15, 525 -NA,NA,"",2021-22,Boston - Everett Elementary School,00350088, 12, 35, 33, 34, 38, 44, 38, 36, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2021-22,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 105, 106, 124, 3, 439 -NA,NA,"",2021-22,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 96, 91, 90, 1, 384 -NA,NA,"",2021-22,Boston - Frederick Pilot Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 76, 117, 147, 0, 0, 0, 0, 0, 340 -NA,NA,"",2021-22,Boston - Gardner Pilot Academy,00350326, 27, 35, 40, 38, 37, 41, 38, 44, 42, 35, 0, 0, 0, 0, 0, 377 -NA,NA,"",2021-22,Boston - Greater Egleston High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 5, 19, 56, 1, 83 -NA,NA,"",2021-22,Boston - Greenwood Sarah K-8 School,00350308, 44, 41, 37, 41, 32, 45, 31, 27, 33, 32, 0, 0, 0, 0, 0, 363 -NA,NA,"",2021-22,Boston - Grew Elementary School,00350135, 20, 38, 25, 30, 35, 30, 25, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2021-22,Boston - Guild Elementary School,00350062, 14, 36, 32, 38, 32, 37, 28, 25, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2021-22,Boston - Hale Elementary School,00350243, 22, 17, 19, 20, 24, 22, 25, 23, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2021-22,Boston - Haley Pilot School,00350077, 26, 33, 34, 42, 42, 48, 43, 41, 26, 24, 0, 0, 0, 0, 0, 359 -NA,NA,"",2021-22,Boston - Harvard-Kent Elementary School,00350200, 47, 43, 43, 47, 45, 40, 41, 41, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2021-22,Boston - Haynes Early Education Center,00350010, 56, 67, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178 -NA,NA,"",2021-22,Boston - Henderson K-12 Inclusion School Lower,00350266, 73, 59, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 0, 0, 0, 60, 68, 70, 59, 67, 56, 63, 61, 66, 68, 62, 18, 718 -NA,NA,"",2021-22,Boston - Hennigan K-8 School,00350153, 0, 30, 25, 47, 53, 55, 68, 72, 63, 91, 0, 0, 0, 0, 0, 504 -NA,NA,"",2021-22,Boston - Hernandez K-8 School,00350691, 46, 46, 49, 47, 46, 49, 48, 34, 31, 28, 0, 0, 0, 0, 0, 424 -NA,NA,"",2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 26, 36, 24, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119 -NA,NA,"",2021-22,Boston - Higginson-Lewis K-8 School,00350377, 0, 0, 0, 0, 24, 30, 28, 25, 39, 42, 0, 0, 0, 0, 0, 188 -NA,NA,"",2021-22,Boston - Holmes Elementary School,00350138, 24, 32, 33, 48, 45, 34, 38, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 6, 3, 3, 0, 4, 6, 4, 5, 10, 0, 9, 2, 4, 7, 7, 70 -NA,NA,"",2021-22,Boston - Hurley K-8 School,00350182, 30, 44, 50, 44, 38, 39, 36, 32, 20, 18, 0, 0, 0, 0, 0, 351 -NA,NA,"",2021-22,Boston - Irving Middle School,00350445, 0, 0, 0, 0, 0, 0, 0, 33, 45, 55, 0, 0, 0, 0, 0, 133 -NA,NA,"",2021-22,Boston - Jackson-Mann K-8 School,00350013, 12, 20, 31, 41, 42, 39, 48, 50, 40, 29, 0, 0, 0, 0, 0, 352 -NA,NA,"",2021-22,Boston - Kennedy John F Elementary School,00350166, 20, 54, 50, 53, 53, 56, 48, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 25, 30, 37, 38, 36, 36, 21, 38, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2021-22,Boston - Kenny Elementary School,00350328, 26, 41, 42, 41, 40, 47, 46, 54, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2021-22,Boston - Kilmer K-8 School,00350190, 38, 41, 37, 36, 39, 37, 38, 50, 50, 38, 0, 0, 0, 0, 0, 404 -NA,NA,"",2021-22,Boston - King K-8 School,00350376, 58, 58, 64, 64, 65, 58, 43, 45, 55, 41, 0, 0, 0, 0, 0, 551 -NA,NA,"",2021-22,Boston - Lee Academy,00350001, 47, 34, 37, 30, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2021-22,Boston - Lee K-8 School,00350183, 52, 56, 55, 46, 58, 53, 52, 58, 57, 60, 0, 0, 0, 0, 0, 547 -NA,NA,"",2021-22,Boston - Lyndon K-8 School,00350262, 62, 64, 56, 69, 79, 76, 83, 87, 30, 42, 0, 0, 0, 0, 0, 648 -NA,NA,"",2021-22,Boston - Lyon High School,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 35, 30, 35, 0, 129 -NA,NA,"",2021-22,Boston - Lyon K-8 School,00350004, 0, 9, 11, 11, 17, 14, 12, 18, 27, 14, 0, 0, 0, 0, 0, 133 -NA,NA,"",2021-22,Boston - Madison Park Technical Vocational High School,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 290, 301, 214, 28," 1,160" -NA,NA,"",2021-22,Boston - Manning Elementary School,00350184, 9, 22, 23, 19, 25, 23, 20, 19, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2021-22,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 77, 82, 83, 0, 323 -NA,NA,"",2021-22,Boston - Mario Umana Academy,00350656, 30, 44, 46, 60, 56, 67, 57, 53, 76, 164, 0, 0, 0, 0, 0, 653 -NA,NA,"",2021-22,Boston - Mason Elementary School,00350304, 16, 30, 28, 31, 34, 30, 24, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2021-22,Boston - Mather Elementary School,00350227, 48, 87, 77, 69, 79, 65, 68, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2021-22,Boston - Mattahunt Elementary School,00350016, 86, 65, 67, 65, 67, 64, 36, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2021-22,Boston - McKay K-8 School,00350080, 21, 44, 45, 82, 77, 83, 71, 64, 100, 100, 0, 0, 0, 0, 0, 687 -NA,NA,"",2021-22,Boston - McKinley Schools,00350363, 0, 0, 0, 1, 6, 9, 13, 14, 12, 22, 31, 34, 31, 24, 22, 219 -NA,NA,"",2021-22,Boston - Mendell Elementary School,00350100, 25, 37, 39, 41, 40, 42, 37, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2021-22,Boston - Mildred Avenue K-8 School,00350378, 41, 33, 40, 38, 41, 79, 80, 89, 90, 93, 0, 0, 0, 0, 0, 624 -NA,NA,"",2021-22,Boston - Mission Hill K-8 School,00350382, 31, 19, 26, 23, 21, 16, 31, 22, 15, 19, 0, 0, 0, 0, 0, 223 -NA,NA,"",2021-22,Boston - Mozart Elementary School,00350237, 23, 24, 22, 23, 23, 24, 19, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2021-22,Boston - Murphy K-8 School,00350240, 32, 66, 65, 75, 87, 106, 121, 131, 79, 95, 0, 0, 0, 0, 0, 857 -NA,NA,"",2021-22,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 54, 51, 131, 120, 106, 79, 2, 543 -NA,NA,"",2021-22,Boston - O'Bryant School of Math & Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 144, 151, 329, 309, 340, 275, 0," 1,548" -NA,NA,"",2021-22,Boston - O'Donnell Elementary School,00350141, 16, 37, 31, 37, 38, 41, 26, 35, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2021-22,Boston - Ohrenberger School,00350258, 0, 0, 0, 0, 65, 87, 83, 94, 78, 78, 0, 0, 0, 0, 0, 485 -NA,NA,"",2021-22,Boston - Orchard Gardens K-8 School,00350257, 49, 57, 47, 71, 84, 82, 90, 88, 82, 83, 0, 0, 0, 0, 0, 733 -NA,NA,"",2021-22,Boston - Otis Elementary School,00350156, 44, 58, 55, 61, 56, 59, 32, 39, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2021-22,Boston - Perkins Elementary School,00350231, 9, 12, 28, 23, 22, 20, 34, 25, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2021-22,Boston - Perry K-8 School,00350255, 28, 26, 22, 25, 26, 28, 10, 22, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2021-22,Boston - Philbrick Elementary School,00350172, 9, 15, 15, 12, 20, 14, 14, 0, 0, 0, 0, 0, 0, 0, 0, 99 -NA,NA,"",2021-22,Boston - Quincy Elementary School,00350286, 66, 100, 98, 111, 109, 111, 116, 0, 0, 0, 0, 0, 0, 0, 0, 711 -NA,NA,"",2021-22,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 132, 99, 78, 71, 66, 36, 60, 11, 553 -NA,NA,"",2021-22,Boston - Roosevelt K-8 School,00350116, 37, 43, 33, 36, 41, 39, 46, 43, 46, 42, 0, 0, 0, 0, 0, 406 -NA,NA,"",2021-22,Boston - Russell Elementary School,00350366, 58, 53, 49, 52, 60, 50, 44, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2021-22,Boston - Shaw Elementary School,00350014, 37, 30, 32, 23, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154 -NA,NA,"",2021-22,Boston - Snowden International High School,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 132, 96, 108, 0, 485 -NA,NA,"",2021-22,Boston - Sumner Elementary School,00350052, 63, 70, 74, 68, 68, 66, 61, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2021-22,Boston - Taylor Elementary School,00350054, 27, 43, 36, 40, 43, 59, 50, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2021-22,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 79, 117, 118, 140, 154, 151, 124, 5, 888 -NA,NA,"",2021-22,Boston - Timilty Middle School,00350485, 0, 0, 0, 0, 0, 0, 0, 53, 72, 80, 0, 0, 0, 0, 0, 205 -NA,NA,"",2021-22,Boston - Tobin K-8 School,00350229, 20, 36, 37, 32, 43, 48, 45, 47, 42, 51, 0, 0, 0, 0, 0, 401 -NA,NA,"",2021-22,Boston - Trotter K-8 School,00350370, 34, 34, 36, 44, 44, 41, 34, 41, 24, 26, 0, 0, 0, 0, 0, 358 -NA,NA,"",2021-22,Boston - Tynan Elementary School,00350181, 20, 27, 38, 28, 31, 23, 21, 26, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2021-22,Boston - UP Academy Holland,00350167, 59, 83, 90, 112, 115, 104, 100, 0, 0, 0, 0, 0, 0, 0, 0, 663 -NA,NA,"",2021-22,Boston - Warren-Prescott K-8 School,00350346, 53, 62, 67, 49, 65, 59, 46, 40, 47, 32, 0, 0, 0, 0, 0, 520 -NA,NA,"",2021-22,Boston - West Zone Early Learning Center,00350006, 42, 32, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2021-22,Boston - Winship Elementary School,00350374, 46, 46, 42, 42, 38, 31, 20, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2021-22,Boston - Winthrop Elementary School,00350180, 19, 37, 37, 25, 38, 30, 26, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2021-22,Boston - Young Achievers K-8 School,00350380, 44, 48, 47, 51, 52, 74, 62, 57, 72, 48, 0, 0, 0, 0, 0, 555 -NA,NA,"",2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 91, 90, 88, 97, 96, 77, 80, 83, 0, 702 -NA,NA,"",2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 49, 0, 249, 0, 348 -NA,NA,"",2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 51, 49, 60, 91, 79, 74, 75, 7, 486 -NA,NA,"",2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 90, 96, 108, 132, 111, 81, 78, 0, 696 -NA,NA,"",2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 113, 131, 133, 123, 143, 122, 101, 73, 0, 0, 0, 0, 0, 0, 0, 939 -NA,NA,"",2021-22,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 97, 88, 110, 16, 393 -NA,NA,"",2021-22,Bourne - Bourne Intermediate School,00360030, 0, 0, 0, 0, 104, 137, 124, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2021-22,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 0, 151, 142, 149, 0, 0, 0, 0, 0, 442 -NA,NA,"",2021-22,Bourne - Bournedale Elementary School,00360005, 46, 105, 93, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2021-22,Boxford - Harry Lee Cole,00380005, 37, 96, 107, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2021-22,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 88, 95, 100, 110, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2021-22,Braintree - Archie T Morrison,00400033, 0, 22, 71, 60, 81, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2021-22,Braintree - Braintree High,00400505, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422, 376, 413, 424, 0," 1,729" -NA,NA,"",2021-22,Braintree - Donald Ross,00400050, 0, 21, 33, 47, 48, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2021-22,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 259, 248, 235, 279, 0, 0, 0, 0, 0," 1,021" -NA,NA,"",2021-22,Braintree - Highlands,00400015, 0, 21, 65, 84, 81, 71, 79, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2021-22,Braintree - Hollis,00400005, 0, 21, 77, 68, 77, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2021-22,Braintree - Liberty,00400025, 0, 0, 75, 68, 75, 62, 76, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2021-22,Braintree - Mary E Flaherty School,00400020, 0, 27, 56, 63, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 0, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2021-22,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 0, 174, 175, 183, 0, 0, 0, 0, 0, 532 -NA,NA,"",2021-22,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 72, 56, 85, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2021-22,Brewster - Stony Brook Elementary,00410005, 27, 63, 64, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 34, 35, 40, 37, 36, 36, 39, 30, 26, 23, 0, 0, 0, 0, 0, 336 -NA,NA,"",2021-22,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 0, 238, 273, 0, 0, 0, 0, 0, 511 -NA,NA,"",2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 309, 316, 355, 13," 1,368" -NA,NA,"",2021-22,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 166, 175, 176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2021-22,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 172, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2021-22,Bridgewater-Raynham - Mitchell Elementary School,06250002, 152, 258, 273, 262, 259, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,204" -NA,NA,"",2021-22,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 182, 190, 165, 177, 0, 0, 0, 0, 0, 714 -NA,NA,"",2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 4, 1, 5, 0, 13 -NA,NA,"",2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 0, 260, 243, 236, 0, 0, 0, 0, 0, 0, 0, 739 -NA,NA,"",2021-22,Brimfield - Brimfield Elementary,00430005, 29, 34, 31, 42, 25, 42, 36, 30, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 118, 108, 102, 0, 499 -NA,NA,"",2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 337, 345, 331, 319, 0," 1,332" -NA,NA,"",2021-22,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 143, 139, 187, 0, 0, 0, 0, 0, 469 -NA,NA,"",2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2021-22,Brockton - Brockton Champion High School,00440515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 17, 15, 22, 32, 116 -NA,NA,"",2021-22,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,371", 865, 927, 739, 41," 3,943" -NA,NA,"",2021-22,Brockton - Brockton Virtual Learning Academy,00440705, 0, 13, 20, 25, 24, 41, 42, 29, 28, 28, 47, 31, 32, 24, 0, 384 -NA,NA,"",2021-22,Brockton - Brookfield,00440010, 0, 83, 74, 70, 79, 66, 90, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2021-22,Brockton - Downey,00440110, 37, 104, 111, 81, 70, 71, 91, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2021-22,Brockton - Dr W Arnone Community School,00440001, 68, 107, 100, 98, 93, 107, 118, 0, 0, 0, 0, 0, 0, 0, 0, 691 -NA,NA,"",2021-22,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 132, 151, 225, 0, 0, 0, 0, 0, 508 -NA,NA,"",2021-22,Brockton - Edgar B Davis,00440023, 0, 124, 103, 83, 88, 109, 111, 112, 117, 105, 0, 0, 0, 0, 0, 952 -NA,NA,"",2021-22,Brockton - Edison Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 21, 21, 128, 0, 203 -NA,NA,"",2021-22,Brockton - Frederick Douglass Academy,00440080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 3, 3, 0, 0, 12 -NA,NA,"",2021-22,Brockton - Gilmore Elementary School,00440055, 0, 75, 73, 70, 68, 79, 85, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2021-22,Brockton - Hancock,00440045, 37, 80, 87, 65, 75, 74, 93, 0, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2021-22,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 0, 0, 3, 3, 6, 6, 10, 7, 10, 6, 10, 0, 61 -NA,NA,"",2021-22,Brockton - John F Kennedy,00440017, 0, 99, 95, 80, 92, 89, 102, 0, 0, 0, 0, 0, 0, 0, 0, 557 -NA,NA,"",2021-22,Brockton - Joseph F. Plouffe Academy,00440422, 0, 0, 0, 0, 0, 0, 0, 242, 224, 243, 0, 0, 0, 0, 0, 709 -NA,NA,"",2021-22,Brockton - Louis F Angelo Elementary,00440065, 0, 100, 114, 100, 106, 176, 167, 0, 0, 0, 0, 0, 0, 0, 0, 763 -NA,NA,"",2021-22,Brockton - Manthala George Jr. School,00440003, 0, 167, 168, 138, 140, 119, 133, 0, 0, 0, 0, 0, 0, 0, 0, 865 -NA,NA,"",2021-22,Brockton - Mary E. Baker School,00440002, 0, 137, 97, 104, 121, 105, 97, 0, 0, 0, 0, 0, 0, 0, 0, 661 -NA,NA,"",2021-22,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 145, 161, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2021-22,Brockton - Oscar F Raymond,00440078, 0, 116, 145, 120, 112, 114, 146, 0, 0, 0, 0, 0, 0, 0, 0, 753 -NA,NA,"",2021-22,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 186, 163, 207, 0, 0, 0, 0, 0, 556 -NA,NA,"",2021-22,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 194, 187, 203, 0, 0, 0, 0, 0, 584 -NA,NA,"",2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 188, 194, 193, 192, 192, 188, 177, 177, 180, 159, 135, 105, 63, 2," 2,145" -NA,NA,"",2021-22,Brookfield - Brookfield Elementary,00450005, 19, 32, 39, 36, 37, 37, 37, 42, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48 -NA,NA,"",2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 -NA,NA,"",2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43 -NA,NA,"",2021-22,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 544, 509, 492, 518, 24," 2,087" -NA,NA,"",2021-22,Brookline - Edith C Baker,00460005, 0, 77, 64, 70, 64, 73, 68, 64, 85, 52, 0, 0, 0, 0, 0, 617 -NA,NA,"",2021-22,Brookline - Florida Ruffin Ridley School,00460015, 31, 102, 97, 88, 87, 81, 90, 83, 84, 87, 0, 0, 0, 0, 0, 830 -NA,NA,"",2021-22,Brookline - Heath,00460025, 0, 50, 50, 57, 51, 60, 41, 47, 54, 47, 0, 0, 0, 0, 0, 457 -NA,NA,"",2021-22,Brookline - John D Runkle,00460045, 15, 45, 42, 57, 56, 48, 49, 58, 58, 62, 0, 0, 0, 0, 0, 490 -NA,NA,"",2021-22,Brookline - Lawrence,00460030, 0, 72, 80, 65, 58, 79, 54, 68, 62, 54, 0, 0, 0, 0, 0, 592 -NA,NA,"",2021-22,Brookline - Michael Driscoll,00460020, 0, 33, 56, 49, 45, 54, 55, 50, 58, 54, 0, 0, 0, 0, 0, 454 -NA,NA,"",2021-22,Brookline - Pierce,00460040, 0, 74, 78, 73, 75, 81, 69, 77, 95, 99, 0, 0, 0, 0, 0, 721 -NA,NA,"",2021-22,Brookline - The Lynch Center,00460060, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54 -NA,NA,"",2021-22,Brookline - William H Lincoln,00460035, 0, 48, 49, 48, 43, 58, 54, 56, 57, 58, 0, 0, 0, 0, 0, 471 -NA,NA,"",2021-22,Burlington - Burlington High,00480505, 89, 1, 0, 0, 0, 0, 0, 0, 0, 0, 234, 211, 223, 239, 0, 997 -NA,NA,"",2021-22,Burlington - Fox Hill,00480007, 0, 80, 86, 78, 82, 70, 82, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2021-22,Burlington - Francis Wyman Elementary,00480035, 0, 75, 90, 86, 76, 93, 98, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2021-22,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 276, 249, 238, 0, 0, 0, 0, 0, 763 -NA,NA,"",2021-22,Burlington - Memorial,00480015, 0, 80, 54, 72, 68, 70, 65, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2021-22,Burlington - Pine Glen Elementary,00480020, 0, 41, 38, 43, 51, 57, 45, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2021-22,Cambridge - Amigos School,00490006, 29, 49, 48, 44, 43, 47, 40, 39, 31, 38, 0, 0, 0, 0, 0, 408 -NA,NA,"",2021-22,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498, 426, 452, 469, 22," 1,867" -NA,NA,"",2021-22,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 90, 91, 98, 0, 0, 0, 0, 0, 279 -NA,NA,"",2021-22,Cambridge - Cambridgeport,00490007, 30, 24, 44, 29, 41, 50, 34, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 33, 37, 39, 39, 35, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2021-22,Cambridge - Graham and Parks,00490080, 33, 46, 62, 52, 52, 45, 57, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2021-22,Cambridge - Haggerty,00490020, 17, 42, 36, 35, 36, 39, 31, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2021-22,Cambridge - John M Tobin,00490065, 105, 38, 40, 37, 39, 32, 30, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2021-22,Cambridge - Kennedy-Longfellow,00490040, 13, 23, 35, 35, 37, 34, 26, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2021-22,Cambridge - King Open,00490035, 38, 65, 65, 53, 49, 49, 36, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2021-22,Cambridge - Maria L. Baldwin,00490005, 34, 71, 53, 50, 53, 45, 48, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2021-22,Cambridge - Martin Luther King Jr.,00490030, 26, 58, 55, 47, 47, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2021-22,Cambridge - Morse,00490045, 52, 49, 44, 27, 34, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2021-22,Cambridge - Peabody,00490050, 45, 44, 46, 46, 46, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2021-22,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 87, 95, 80, 0, 0, 0, 0, 0, 262 -NA,NA,"",2021-22,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 79, 91, 92, 0, 0, 0, 0, 0, 262 -NA,NA,"",2021-22,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 93, 103, 94, 0, 0, 0, 0, 0, 290 -NA,NA,"",2021-22,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 216, 211, 255, 0, 903 -NA,NA,"",2021-22,Canton - Dean S Luce,00500020, 0, 66, 91, 72, 78, 67, 88, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2021-22,Canton - John F Kennedy,00500017, 0, 88, 65, 81, 71, 80, 75, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2021-22,Canton - Lt Peter M Hansen,00500012, 0, 86, 95, 89, 86, 88, 90, 0, 0, 0, 0, 0, 0, 0, 0, 534 -NA,NA,"",2021-22,Canton - Rodman Early Childhood Center,00500010, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2021-22,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 258, 248, 284, 0, 0, 0, 0, 0, 790 -NA,NA,"",2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 83, 84, 83, 0, 0, 0, 0, 0, 250 -NA,NA,"",2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 173, 166, 137, 0, 654 -NA,NA,"",2021-22,Carlisle - Carlisle School,00510025, 15, 74, 59, 53, 71, 67, 71, 59, 65, 81, 0, 0, 0, 0, 0, 615 -NA,NA,"",2021-22,Carver - Carver Elementary School,00520015, 48, 135, 102, 128, 124, 108, 143, 0, 0, 0, 0, 0, 0, 0, 0, 788 -NA,NA,"",2021-22,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 121, 117, 116, 97, 106, 92, 71, 0, 720 -NA,NA,"",2021-22,Central Berkshire - Becket Washington School,06350005, 22, 12, 8, 15, 15, 15, 17, 0, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2021-22,Central Berkshire - Craneville,06350025, 0, 75, 56, 81, 64, 72, 76, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2021-22,Central Berkshire - Kittredge,06350035, 35, 20, 21, 17, 15, 22, 23, 0, 0, 0, 0, 0, 0, 0, 0, 153 -NA,NA,"",2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 100, 110, 112, 0, 0, 0, 0, 0, 322 -NA,NA,"",2021-22,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 141, 121, 116, 0, 513 -NA,NA,"",2021-22,Chelmsford - Byam School,00560030, 0, 102, 103, 97, 90, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509 -NA,NA,"",2021-22,Chelmsford - Center Elementary School,00560005, 0, 93, 98, 87, 110, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2021-22,Chelmsford - Charles D Harrington,00560025, 0, 76, 108, 94, 100, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2021-22,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 349, 324, 342, 0," 1,342" -NA,NA,"",2021-22,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 171, 176, 191, 189, 0, 0, 0, 0, 0, 727 -NA,NA,"",2021-22,Chelmsford - Community Education Center,00560001, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2021-22,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 209, 197, 208, 215, 0, 0, 0, 0, 0, 829 -NA,NA,"",2021-22,Chelmsford - South Row,00560015, 0, 84, 105, 82, 88, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2021-22,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 495, 425, 348, 224, 6," 1,498" -NA,NA,"",2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 12, 22, 81, 0, 117 -NA,NA,"",2021-22,Chelsea - Chelsea Virtual Learning Academy,00570705, 0, 0, 0, 0, 0, 1, 1, 2, 1, 3, 0, 0, 1, 0, 0, 9 -NA,NA,"",2021-22,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 178, 162, 183, 196, 0, 0, 0, 0, 0, 719 -NA,NA,"",2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 0, 0, 96, 128, 144, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 99, 110, 122, 137, 0, 0, 0, 0, 0, 468 -NA,NA,"",2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 94, 132, 133, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2021-22,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 96, 90, 101, 97, 37, 22, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2021-22,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 106, 120, 146, 168, 0, 0, 0, 0, 0, 540 -NA,NA,"",2021-22,Chelsea - Shurtleff Early Childhood,00570003, 246, 466, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 831 -NA,NA,"",2021-22,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 95, 115, 132, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 28, 24, 12, 18, 17, 16, 19, 14, 0, 0, 0, 0, 0, 0, 0, 148 -NA,NA,"",2021-22,Chicopee - Barry,00610003, 0, 51, 55, 66, 69, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2021-22,Chicopee - Belcher,00610010, 0, 69, 76, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2021-22,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 273, 250, 294, 0, 0, 0, 0, 0, 817 -NA,NA,"",2021-22,Chicopee - Bowe,00610015, 0, 63, 73, 66, 72, 82, 88, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2021-22,Chicopee - Bowie,00610020, 0, 46, 40, 40, 46, 40, 58, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2021-22,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 2, 3, 11, 12, 21, 20, 9, 1, 79 -NA,NA,"",2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327, 299, 283, 244, 1," 1,154" -NA,NA,"",2021-22,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, 225, 216, 253, 0, 925 -NA,NA,"",2021-22,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 231, 248, 274, 0, 0, 0, 0, 0, 753 -NA,NA,"",2021-22,Chicopee - Fairview Elementary,00610050, 0, 66, 73, 74, 64, 69, 61, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2021-22,Chicopee - Gen John J Stefanik,00610090, 0, 36, 51, 59, 58, 54, 62, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2021-22,Chicopee - Lambert-Lavoie,00610040, 0, 32, 38, 40, 43, 59, 45, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2021-22,Chicopee - Litwin,00610022, 0, 10, 13, 20, 78, 97, 116, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2021-22,Chicopee - Streiber Memorial School,00610065, 0, 43, 40, 32, 33, 38, 41, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2021-22,Chicopee - Szetela Early Childhood Center,00610001, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0, 0, 0, 0, 0, 0, 0, 139, 124, 125, 0, 0, 0, 0, 0, 388 -NA,NA,"",2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55, 72, 54, 48, 0, 229 -NA,NA,"",2021-22,Clarksburg - Clarksburg Elementary,00630010, 20, 18, 21, 15, 22, 31, 14, 22, 18, 30, 0, 0, 0, 0, 0, 211 -NA,NA,"",2021-22,Clinton - Clinton Elementary,00640050, 78, 146, 154, 138, 165, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 817 -NA,NA,"",2021-22,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 0, 144, 132, 134, 168, 0, 0, 0, 0, 0, 578 -NA,NA,"",2021-22,Clinton - Clinton Senior High,00640505, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 139, 120, 99, 2, 510 -NA,NA,"",2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 20, 18, 20, 19, 20, 21, 19, 20, 19, 22, 44, 41, 31, 29, 0, 343 -NA,NA,"",2021-22,Cohasset - Cohasset High School,00650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 102, 116, 100, 0, 424 -NA,NA,"",2021-22,Cohasset - Cohasset Middle School,00650305, 0, 0, 0, 0, 0, 0, 0, 94, 104, 120, 0, 0, 0, 0, 0, 318 -NA,NA,"",2021-22,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 102, 100, 112, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2021-22,Cohasset - Joseph Osgood,00650010, 25, 127, 109, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 81, 85, 89, 117, 125, 116, 122, 101, 124, 81, 37, 39, 0, 0," 1,117" -NA,NA,"",2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 22, 42, 42, 48, 56, 30, 48, 0, 288 -NA,NA,"",2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 40, 37, 40, 40, 44, 43, 41, 41, 43, 32, 0, 0, 0, 0, 0, 401 -NA,NA,"",2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 41, 32, 21, 40, 48, 48, 45, 40, 42, 43, 0, 0, 0, 0, 0, 400 -NA,NA,"",2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 37, 37, 42, 41, 43, 41, 42, 39, 37, 35, 0, 0, 0, 0, 0, 394 -NA,NA,"",2021-22,Concord - Alcott,00670005, 19, 55, 59, 72, 82, 71, 60, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2021-22,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 235, 217, 236, 0, 0, 0, 0, 0, 688 -NA,NA,"",2021-22,Concord - Thoreau,00670020, 16, 63, 64, 77, 74, 82, 75, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2021-22,Concord - Willard,00670030, 16, 63, 70, 71, 76, 74, 71, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316, 332, 341, 326, 8," 1,323" -NA,NA,"",2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 48, 48, 52, 54, 53, 57, 46, 37, 24, 28, 0, 0, 0, 0, 0, 447 -NA,NA,"",2021-22,Conway - Conway Grammar,00680005, 18, 16, 15, 18, 20, 16, 21, 21, 0, 0, 0, 0, 0, 0, 0, 145 -NA,NA,"",2021-22,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, 214, 198, 202, 8, 807 -NA,NA,"",2021-22,Danvers - Great Oak,00710015, 0, 51, 61, 48, 49, 58, 54, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2021-22,Danvers - Highlands,00710010, 0, 66, 62, 61, 64, 58, 56, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2021-22,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 250, 271, 249, 0, 0, 0, 0, 0, 770 -NA,NA,"",2021-22,Danvers - Ivan G Smith,00710032, 0, 50, 57, 50, 56, 49, 47, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2021-22,Danvers - Riverside,00710030, 47, 40, 45, 48, 56, 36, 42, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2021-22,Danvers - Willis E Thorpe,00710045, 40, 32, 65, 46, 44, 45, 57, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2021-22,Dartmouth - Andrew B. Cushman School,00720005, 70, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2021-22,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 264, 245, 275, 0," 1,032" -NA,NA,"",2021-22,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 247, 281, 282, 0, 0, 0, 0, 0, 810 -NA,NA,"",2021-22,Dartmouth - George H Potter,00720030, 14, 60, 64, 62, 63, 65, 64, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2021-22,Dartmouth - James M. Quinn School,00720040, 0, 107, 109, 132, 118, 108, 98, 0, 0, 0, 0, 0, 0, 0, 0, 672 -NA,NA,"",2021-22,Dartmouth - Joseph Demello,00720015, 0, 0, 58, 70, 67, 82, 97, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2021-22,Dedham - Avery,00730010, 0, 0, 68, 56, 51, 47, 58, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2021-22,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 165, 170, 168, 7, 701 -NA,NA,"",2021-22,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 166, 201, 205, 0, 0, 0, 0, 0, 572 -NA,NA,"",2021-22,Dedham - Early Childhood Center,00730005, 108, 224, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2021-22,Dedham - Greenlodge,00730025, 0, 0, 53, 61, 54, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2021-22,Dedham - Oakdale,00730030, 0, 0, 43, 64, 38, 51, 53, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2021-22,Dedham - Riverdale,00730045, 0, 0, 37, 33, 44, 26, 32, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2021-22,Deerfield - Deerfield Elementary,00740015, 26, 40, 26, 53, 40, 52, 51, 38, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 205, 150, 150, 170, 1, 900 -NA,NA,"",2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 27, 68, 62, 79, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 57, 59, 60, 53, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 228, 200, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0, 0, 0, 0, 0, 205, 232, 2, 3, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 92, 105, 111, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 24, 75, 99, 68, 88, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 94, 92, 91, 109, 0, 0, 0, 0, 0, 386 -NA,NA,"",2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 173, 163, 177, 5, 709 -NA,NA,"",2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 114, 110, 108, 130, 0, 0, 0, 0, 0, 462 -NA,NA,"",2021-22,Dighton-Rehoboth - Palmer River,06500010, 17, 102, 106, 110, 129, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2021-22,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 99, 87, 80, 106, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2021-22,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 90, 80, 92, 2, 336 -NA,NA,"",2021-22,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 93, 91, 90, 0, 0, 0, 0, 0, 274 -NA,NA,"",2021-22,Douglas - Douglas Primary School,00770005, 51, 79, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198 -NA,NA,"",2021-22,Dover - Chickering,00780005, 12, 82, 66, 85, 81, 73, 90, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2021-22,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 176, 153, 165, 0, 657 -NA,NA,"",2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 160, 158, 185, 0, 0, 0, 0, 0, 503 -NA,NA,"",2021-22,Dracut - Brookside Elementary,00790035, 30, 81, 78, 76, 81, 76, 57, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2021-22,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 208, 199, 234, 8, 876 -NA,NA,"",2021-22,Dracut - George H. Englesby Elementary School,00790045, 0, 87, 89, 92, 89, 88, 91, 0, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2021-22,Dracut - Greenmont Avenue,00790030, 0, 38, 48, 51, 43, 45, 39, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2021-22,Dracut - Joseph A Campbell Elementary,00790020, 24, 85, 103, 94, 93, 107, 71, 0, 0, 0, 0, 0, 0, 0, 0, 577 -NA,NA,"",2021-22,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 294, 294, 308, 0, 0, 0, 0, 0, 896 -NA,NA,"",2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 43, 41, 43, 41, 44, 43, 31, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 48, 134, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 142, 145, 146, 191, 0, 0, 0, 0, 0, 624 -NA,NA,"",2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 104, 112, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 120, 130, 147, 147, 0, 0, 0, 0, 0, 544 -NA,NA,"",2021-22,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 146, 145, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 51, 102, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 226, 218, 237, 6, 930 -NA,NA,"",2021-22,Duxbury - Alden School,00820004, 0, 0, 0, 0, 187, 205, 201, 0, 0, 0, 0, 0, 0, 0, 0, 593 -NA,NA,"",2021-22,Duxbury - Chandler Elementary,00820006, 57, 176, 197, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 620 -NA,NA,"",2021-22,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 245, 232, 231, 2, 948 -NA,NA,"",2021-22,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 225, 189, 236, 0, 0, 0, 0, 0, 650 -NA,NA,"",2021-22,East Bridgewater - Central,00830005, 98, 146, 149, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2021-22,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 158, 178, 132, 138, 163, 162, 0, 931 -NA,NA,"",2021-22,East Bridgewater - Gordon W. Mitchell School,00830010, 0, 0, 0, 0, 142, 166, 153, 167, 0, 0, 0, 0, 0, 0, 0, 628 -NA,NA,"",2021-22,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 196, 197, 208, 0, 0, 0, 0, 0, 601 -NA,NA,"",2021-22,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 206, 219, 208, 3, 816 -NA,NA,"",2021-22,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 82, 99, 84, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2021-22,East Longmeadow - Meadow Brook,00870013, 35, 171, 156, 181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2021-22,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 79, 88, 100, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2021-22,Eastham - Eastham Elementary,00850005, 15, 34, 21, 28, 28, 32, 34, 0, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2021-22,Easthampton - Center School,00860005, 0, 35, 37, 39, 39, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188 -NA,NA,"",2021-22,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 93, 90, 106, 2, 401 -NA,NA,"",2021-22,Easthampton - Maple,00860010, 40, 33, 38, 42, 41, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2021-22,Easthampton - Neil A Pepin,00860020, 0, 31, 37, 34, 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2021-22,Easthampton - White Brook Middle School,00860305, 0, 0, 0, 0, 0, 0, 112, 118, 110, 86, 0, 0, 0, 0, 0, 426 -NA,NA,"",2021-22,Easton - Center School,00880003, 0, 72, 66, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2021-22,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 270, 298, 266, 0, 0, 0, 0, 0, 834 -NA,NA,"",2021-22,Easton - Moreau Hall,00880020, 33, 63, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2021-22,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 266, 284, 282, 9," 1,113" -NA,NA,"",2021-22,Easton - Parkview Elementary,00880015, 28, 88, 84, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2021-22,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 235, 256, 250, 0, 0, 0, 0, 0, 0, 0, 0, 741 -NA,NA,"",2021-22,Edgartown - Edgartown Elementary,00890005, 8, 34, 44, 45, 45, 38, 49, 39, 53, 42, 0, 0, 0, 0, 0, 397 -NA,NA,"",2021-22,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 103, 94, 91, 0, 395 -NA,NA,"",2021-22,Erving - Erving Elementary,00910030, 21, 19, 15, 17, 14, 12, 14, 21, 0, 0, 0, 0, 0, 0, 0, 133 -NA,NA,"",2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449, 420, 410, 375, 0," 1,654" -NA,NA,"",2021-22,Everett - Adams School,00930003, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138 -NA,NA,"",2021-22,Everett - Devens School,00930030, 0, 0, 1, 0, 2, 5, 2, 5, 4, 8, 5, 8, 5, 2, 0, 47 -NA,NA,"",2021-22,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557, 570, 474, 490, 0," 2,091" -NA,NA,"",2021-22,Everett - George Keverian School,00930028, 0, 83, 68, 89, 83, 97, 107, 124, 112, 114, 0, 0, 0, 0, 0, 877 -NA,NA,"",2021-22,Everett - Lafayette School,00930038, 0, 77, 108, 96, 92, 113, 85, 131, 113, 120, 0, 0, 0, 0, 0, 935 -NA,NA,"",2021-22,Everett - Madeline English School,00930018, 0, 58, 58, 67, 73, 96, 76, 71, 84, 81, 0, 0, 0, 0, 0, 664 -NA,NA,"",2021-22,Everett - Parlin School,00930058, 0, 103, 99, 124, 112, 101, 98, 101, 110, 118, 0, 0, 0, 0, 0, 966 -NA,NA,"",2021-22,Everett - Sumner G. Whittier School,00930010, 0, 62, 65, 62, 71, 68, 70, 73, 71, 65, 0, 0, 0, 0, 0, 607 -NA,NA,"",2021-22,Everett - Webster Extension,00930001, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2021-22,Everett - Webster School,00930015, 0, 50, 48, 68, 56, 49, 46, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 165, 174, 168, 173, 181, 174, 171, 159, 0," 1,365" -NA,NA,"",2021-22,Fairhaven - East Fairhaven,00940010, 14, 50, 43, 38, 47, 48, 66, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2021-22,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 145, 169, 151, 0, 631 -NA,NA,"",2021-22,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 147, 157, 149, 0, 0, 0, 0, 0, 453 -NA,NA,"",2021-22,Fairhaven - Leroy Wood,00940030, 17, 63, 74, 75, 76, 80, 71, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2021-22,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 631, 568, 600, 548, 0," 2,347" -NA,NA,"",2021-22,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 122, 104, 114, 115, 138, 121, 0, 0, 0, 0, 0, 0, 0, 0, 714 -NA,NA,"",2021-22,Fall River - Henry Lord Community School,00950017, 32, 90, 84, 91, 89, 78, 88, 72, 73, 78, 0, 0, 0, 0, 0, 775 -NA,NA,"",2021-22,Fall River - James Tansey,00950140, 0, 51, 37, 51, 45, 44, 53, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2021-22,Fall River - John J Doran,00950045, 23, 46, 49, 51, 54, 59, 58, 57, 50, 48, 0, 0, 0, 0, 0, 495 -NA,NA,"",2021-22,Fall River - Letourneau Elementary School,00950013, 36, 88, 86, 104, 87, 97, 109, 0, 0, 0, 0, 0, 0, 0, 0, 607 -NA,NA,"",2021-22,Fall River - Mary Fonseca Elementary School,00950011, 59, 106, 93, 101, 96, 92, 119, 0, 0, 0, 0, 0, 0, 0, 0, 666 -NA,NA,"",2021-22,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 230, 234, 243, 0, 0, 0, 0, 0, 707 -NA,NA,"",2021-22,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 229, 224, 241, 0, 0, 0, 0, 0, 694 -NA,NA,"",2021-22,Fall River - North End Elementary,00950005, 62, 102, 107, 116, 100, 103, 110, 0, 0, 0, 0, 0, 0, 0, 0, 700 -NA,NA,"",2021-22,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 6, 16, 17, 43, 12, 15, 0, 109 -NA,NA,"",2021-22,Fall River - Samuel Watson,00950145, 0, 50, 40, 32, 39, 41, 39, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2021-22,Fall River - Spencer Borden,00950130, 16, 96, 94, 96, 82, 112, 85, 0, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2021-22,Fall River - Stone PK-12 School,00950340, 0, 1, 0, 3, 2, 3, 3, 7, 8, 9, 9, 9, 8, 6, 0, 68 -NA,NA,"",2021-22,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 200, 193, 227, 0, 0, 0, 0, 0, 620 -NA,NA,"",2021-22,Fall River - William S Greene,00950065, 29, 101, 82, 117, 106, 108, 120, 0, 0, 0, 0, 0, 0, 0, 0, 663 -NA,NA,"",2021-22,Falmouth - East Falmouth Elementary,00960005, 78, 53, 28, 29, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2021-22,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 197, 212, 178, 7, 805 -NA,NA,"",2021-22,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 259, 239, 0, 0, 0, 0, 0, 498 -NA,NA,"",2021-22,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 230, 244, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2021-22,Falmouth - Mullen-Hall,00960020, 0, 71, 79, 83, 86, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2021-22,Falmouth - North Falmouth Elementary,00960030, 0, 80, 55, 65, 57, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2021-22,Falmouth - Teaticket,00960015, 25, 46, 44, 46, 40, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2021-22,Farmington River Reg - Farmington River Elementary,06620020, 14, 19, 20, 15, 10, 15, 14, 9, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 180, 174, 149, 145, 0, 0, 0, 0, 0, 648 -NA,NA,"",2021-22,Fitchburg - Crocker Elementary,00970016, 42, 101, 93, 123, 129, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2021-22,Fitchburg - Fitchburg High,00970505, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304, 323, 361, 279, 0," 1,293" -NA,NA,"",2021-22,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 16, 28, 100, 11, 158 -NA,NA,"",2021-22,Fitchburg - McKay Arts Academy,00970340, 25, 71, 78, 75, 74, 63, 76, 71, 70, 60, 0, 0, 0, 0, 0, 663 -NA,NA,"",2021-22,Fitchburg - Memorial Middle School,00970048, 0, 0, 0, 0, 0, 0, 179, 160, 162, 167, 0, 0, 0, 0, 0, 668 -NA,NA,"",2021-22,Fitchburg - Reingold Elementary,00970043, 29, 118, 98, 107, 130, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592 -NA,NA,"",2021-22,Fitchburg - South Street Elementary,00970060, 44, 92, 97, 116, 127, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2021-22,Florida - Abbott Memorial,00980005, 8, 12, 14, 7, 10, 3, 12, 7, 12, 19, 0, 0, 0, 0, 0, 104 -NA,NA,"",2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 35, 39, 38, 30, 38, 38, 0, 218 -NA,NA,"",2021-22,Foxborough - Charles Taylor Elementary,00990050, 0, 45, 57, 57, 49, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2021-22,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 188, 189, 193, 8, 772 -NA,NA,"",2021-22,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 195, 169, 178, 212, 0, 0, 0, 0, 0, 754 -NA,NA,"",2021-22,Foxborough - Mabelle M Burrell,00990015, 91, 45, 52, 46, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2021-22,Foxborough - Vincent M Igo Elementary,00990020, 0, 66, 62, 76, 67, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 146, 147, 146, 151, 147, 141, 141, 139, 143, 118, 101, 88, 81, 0," 1,689" -NA,NA,"",2021-22,Framingham - Barbieri Elementary,01000035, 0, 109, 113, 117, 116, 113, 100, 0, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2021-22,Framingham - Brophy,01000006, 0, 87, 86, 77, 86, 60, 69, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2021-22,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 163, 171, 199, 0, 0, 0, 0, 0, 533 -NA,NA,"",2021-22,Framingham - Charlotte A Dunning,01000007, 0, 67, 68, 65, 92, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2021-22,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 649, 642, 590, 541, 0," 2,422" -NA,NA,"",2021-22,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 215, 204, 213, 0, 0, 0, 0, 0, 632 -NA,NA,"",2021-22,Framingham - Harmony Grove Elementary,01000055, 0, 78, 85, 67, 92, 87, 93, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2021-22,Framingham - Hemenway,01000015, 0, 88, 93, 85, 87, 92, 80, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2021-22,Framingham - Juniper Hill School,01000001, 254, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2021-22,Framingham - King Elementary School,01000005, 0, 59, 62, 51, 67, 56, 65, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2021-22,Framingham - Mary E Stapleton Elementary,01000045, 0, 47, 42, 46, 64, 49, 49, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2021-22,Framingham - Miriam F McCarthy School,01000050, 0, 71, 71, 65, 93, 77, 90, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2021-22,Framingham - Potter Road,01000039, 0, 82, 89, 89, 98, 94, 88, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2021-22,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 227, 249, 257, 0, 0, 0, 0, 0, 733 -NA,NA,"",2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 67, 71, 68, 58, 69, 53, 0, 386 -NA,NA,"",2021-22,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 105, 92, 130, 0, 0, 0, 0, 0, 327 -NA,NA,"",2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2021-22,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 390, 410, 423, 435, 15," 1,673" -NA,NA,"",2021-22,Franklin - Helen Keller Elementary,01010012, 0, 85, 84, 95, 96, 77, 108, 0, 0, 0, 0, 0, 0, 0, 0, 545 -NA,NA,"",2021-22,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 111, 122, 131, 0, 0, 0, 0, 0, 364 -NA,NA,"",2021-22,Franklin - J F Kennedy Memorial,01010013, 0, 57, 57, 37, 58, 66, 65, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2021-22,Franklin - Jefferson Elementary,01010010, 0, 46, 61, 46, 62, 68, 50, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2021-22,Franklin - Oak Street Elementary,01010030, 0, 51, 55, 63, 66, 67, 71, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2021-22,Franklin - Parmenter,01010032, 0, 41, 44, 51, 55, 45, 65, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2021-22,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 114, 139, 125, 0, 0, 0, 0, 0, 378 -NA,NA,"",2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 160, 135, 121, 0, 583 -NA,NA,"",2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 191, 191, 153, 0, 718 -NA,NA,"",2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 103, 136, 125, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 48, 98, 85, 107, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 226, 216, 233, 1, 0, 0, 0, 0, 676 -NA,NA,"",2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 224, 221, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2021-22,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 100, 109, 104, 97, 95, 99, 6, 610 -NA,NA,"",2021-22,Gardner - Elm Street School,01030001, 0, 0, 0, 162, 142, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 19, 23, 45, 0, 96 -NA,NA,"",2021-22,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 183, 127, 128, 114, 7, 740 -NA,NA,"",2021-22,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 148, 176, 194, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2021-22,Gardner - Waterford Street,01030020, 81, 179, 175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2021-22,Gateway - Chester Elementary,06720059, 15, 12, 10, 16, 19, 14, 11, 19, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2021-22,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 51, 41, 40, 2, 174 -NA,NA,"",2021-22,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 0, 74, 64, 0, 0, 0, 0, 0, 138 -NA,NA,"",2021-22,Gateway - Littleville Elementary School,06720143, 32, 37, 32, 35, 33, 57, 43, 36, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2021-22,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 80, 83, 93, 0, 322 -NA,NA,"",2021-22,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 89, 114, 0, 0, 0, 0, 0, 203 -NA,NA,"",2021-22,Georgetown - Penn Brook,01050010, 0, 91, 91, 104, 103, 105, 91, 95, 0, 0, 0, 0, 0, 0, 0, 680 -NA,NA,"",2021-22,Georgetown - Perley Elementary,01050005, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71 -NA,NA,"",2021-22,Gill-Montague - Gill Elementary,06740005, 0, 23, 16, 10, 15, 18, 21, 15, 0, 0, 0, 0, 0, 0, 0, 118 -NA,NA,"",2021-22,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 60, 58, 74, 0, 0, 0, 0, 0, 192 -NA,NA,"",2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 36, 59, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142 -NA,NA,"",2021-22,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 42, 53, 62, 52, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2021-22,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 55, 37, 38, 7, 184 -NA,NA,"",2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 83, 91, 91, 87, 43, 34, 43, 32, 0, 504 -NA,NA,"",2021-22,Gloucester - Beeman Memorial,01070010, 0, 66, 56, 59, 46, 42, 55, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2021-22,Gloucester - East Gloucester Elementary,01070020, 0, 35, 23, 24, 37, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 167 -NA,NA,"",2021-22,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 250, 188, 190, 6, 830 -NA,NA,"",2021-22,Gloucester - Gloucester PreSchool,01070025, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80 -NA,NA,"",2021-22,Gloucester - Plum Cove School,01070042, 0, 42, 39, 33, 34, 35, 32, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 221, 204, 205, 0, 0, 0, 0, 0, 630 -NA,NA,"",2021-22,Gloucester - Veterans Memorial,01070045, 0, 41, 38, 40, 27, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2021-22,Gloucester - West Parish,01070050, 0, 59, 61, 65, 55, 75, 56, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -NA,NA,"",2021-22,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 204, 233, 234, 4, 909 -NA,NA,"",2021-22,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 283, 240, 0, 0, 0, 0, 0, 523 -NA,NA,"",2021-22,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 137, 99, 129, 136, 129, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2021-22,Grafton - North Grafton Elementary,01100025, 39, 103, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2021-22,Grafton - North Street Elementary School,01100030, 0, 0, 0, 114, 98, 110, 104, 113, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2021-22,Grafton - South Grafton Elementary,01100005, 43, 125, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2021-22,Granby - East Meadow,01110004, 21, 45, 56, 55, 64, 51, 46, 56, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2021-22,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 46, 48, 43, 45, 56, 65, 0, 303 -NA,NA,"",2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 0, 20, 42, 46, 60, 62, 64, 64, 88, 117, 113, 124, 124, 106, 0," 1,030" -NA,NA,"",2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373, 358, 343, 346, 1," 1,421" -NA,NA,"",2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428, 422, 413, 392, 0," 1,655" -NA,NA,"",2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 596, 594, 565, 527, 18," 2,300" -NA,NA,"",2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564, 561, 495, 490, 0," 2,110" -NA,NA,"",2021-22,Greenfield - Discovery School at Four Corners,01140025, 0, 49, 50, 52, 38, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2021-22,Greenfield - Federal Street School,01140010, 0, 38, 39, 35, 46, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2021-22,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 108, 92, 76, 107, 3, 509 -NA,NA,"",2021-22,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 123, 125, 113, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2021-22,Greenfield - Newton School,01140035, 0, 42, 38, 55, 37, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83 -NA,NA,"",2021-22,Groton-Dunstable - Boutwell School,06730001, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69 -NA,NA,"",2021-22,Groton-Dunstable - Florence Roche School,06730010, 0, 90, 99, 105, 115, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 174, 170, 189, 4, 704 -NA,NA,"",2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 186, 156, 202, 171, 0, 0, 0, 0, 0, 715 -NA,NA,"",2021-22,Groton-Dunstable - Swallow/Union School,06730005, 0, 64, 51, 63, 65, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2021-22,Hadley - Hadley Elementary,01170015, 45, 22, 36, 32, 35, 30, 34, 38, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2021-22,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 31, 41, 43, 47, 39, 35, 0, 236 -NA,NA,"",2021-22,Halifax - Halifax Elementary,01180005, 0, 69, 74, 65, 83, 95, 102, 76, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 57, 41, 37, 46, 39, 30, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2021-22,Hamilton-Wenham - Cutler School,06750010, 0, 39, 36, 35, 41, 59, 43, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 120, 126, 132, 0, 492 -NA,NA,"",2021-22,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 118, 132, 129, 0, 0, 0, 0, 0, 379 -NA,NA,"",2021-22,Hamilton-Wenham - Winthrop School,06750015, 40, 45, 54, 49, 39, 40, 43, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 84, 87, 86, 84, 81, 76, 56, 0, 554 -NA,NA,"",2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0, 0, 0, 0, 0, 0, 0, 62, 65, 67, 60, 56, 32, 26, 0, 368 -NA,NA,"",2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 34, 44, 35, 48, 36, 45, 43, 12, 20, 19, 0, 0, 0, 0, 0, 336 -NA,NA,"",2021-22,Hampden-Wilbraham - Mile Tree Elementary,06800025, 71, 134, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 248, 230, 280, 0," 1,017" -NA,NA,"",2021-22,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 148, 167, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 156, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 186, 193, 203, 0, 0, 0, 0, 0, 582 -NA,NA,"",2021-22,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 123, 130, 100, 97, 100, 131, 4, 685 -NA,NA,"",2021-22,Hancock - Hancock Elementary,01210005, 13, 5, 9, 8, 6, 4, 6, 6, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2021-22,Hanover - Cedar Elementary,01220004, 101, 175, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2021-22,Hanover - Center Elementary,01220005, 0, 0, 0, 224, 208, 180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 612 -NA,NA,"",2021-22,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 179, 170, 188, 2, 709 -NA,NA,"",2021-22,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 215, 197, 215, 171, 0, 0, 0, 0, 0, 798 -NA,NA,"",2021-22,Harvard - Bromfield,01250505, 0, 0, 0, 0, 0, 0, 0, 83, 77, 90, 75, 86, 71, 91, 0, 573 -NA,NA,"",2021-22,Harvard - Hildreth Elementary School,01250005, 27, 80, 52, 66, 68, 78, 81, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2021-22,Hatfield - Hatfield Elementary,01270005, 27, 24, 17, 25, 33, 25, 39, 26, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2021-22,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 35, 33, 23, 18, 25, 41, 0, 175 -NA,NA,"",2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0, 0, 1, 1, 3, 3, 1, 2, 5, 2, 1, 0, 3, 0, 5, 27 -NA,NA,"",2021-22,Haverhill - Bradford Elementary,01280008, 0, 101, 105, 96, 96, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 0, 68, 71, 101, 88, 93, 132, 160, 171, 180, 0, 0, 0, 0, 0," 1,064" -NA,NA,"",2021-22,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 0, 0, 84, 204, 226, 216, 0, 0, 0, 0, 0, 730 -NA,NA,"",2021-22,Haverhill - Crowell,01280515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 6, 0, 19 -NA,NA,"",2021-22,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 129, 138, 175, 142, 0, 0, 0, 0, 0, 584 -NA,NA,"",2021-22,Haverhill - Golden Hill,01280026, 0, 94, 89, 88, 100, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2021-22,Haverhill - Greenleaf Academy,01280033, 0, 0, 0, 0, 0, 0, 0, 0, 4, 5, 4, 9, 3, 3, 0, 28 -NA,NA,"",2021-22,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 618, 483, 407, 393, 30," 1,931" -NA,NA,"",2021-22,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 136, 124, 115, 147, 0, 0, 0, 0, 0, 522 -NA,NA,"",2021-22,Haverhill - Moody,01280045, 131, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2021-22,Haverhill - Moody Preschool Extension,01280001, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78 -NA,NA,"",2021-22,Haverhill - Pentucket Lake Elementary,01280054, 0, 53, 75, 83, 130, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2021-22,Haverhill - Silver Hill Elementary School,01280067, 0, 91, 80, 74, 81, 106, 85, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2021-22,Haverhill - Tilton,01280075, 0, 73, 79, 81, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2021-22,Haverhill - Tilton Upper Middle School,01280105, 0, 0, 0, 0, 0, 81, 81, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2021-22,Haverhill - Walnut Square,01280080, 0, 34, 39, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119 -NA,NA,"",2021-22,Hawlemont - Hawlemont Regional,06850005, 17, 11, 15, 13, 16, 14, 21, 16, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 17, 48, 73, 0, 0, 0, 0, 0, 138 -NA,NA,"",2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 36, 34, 33, 33, 34, 39, 34, 30, 33, 0, 0, 0, 0, 0, 306 -NA,NA,"",2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 21, 20, 22, 22, 31, 30, 31, 0, 0, 0, 0, 0, 217 -NA,NA,"",2021-22,Hingham - East Elementary School,01310005, 72, 85, 66, 70, 67, 59, 70, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2021-22,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, 292, 326, 319, 3," 1,205" -NA,NA,"",2021-22,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 313, 264, 301, 0, 0, 0, 0, 0, 878 -NA,NA,"",2021-22,Hingham - Plymouth River,01310019, 0, 53, 56, 67, 60, 75, 62, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2021-22,Hingham - South Elementary,01310020, 0, 77, 76, 80, 90, 95, 82, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2021-22,Hingham - Wm L Foster Elementary,01310010, 0, 47, 69, 86, 62, 75, 80, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2021-22,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 115, 93, 102, 74, 92, 76, 57, 3, 612 -NA,NA,"",2021-22,Holbrook - John F Kennedy,01330018, 38, 105, 89, 111, 111, 106, 114, 0, 0, 0, 0, 0, 0, 0, 0, 674 -NA,NA,"",2021-22,Holland - Holland Elementary,01350005, 29, 30, 23, 19, 30, 34, 32, 29, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2021-22,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 191, 194, 219, 6, 812 -NA,NA,"",2021-22,Holliston - Miller School,01360007, 0, 0, 0, 0, 176, 209, 224, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2021-22,Holliston - Placentino Elementary,01360010, 100, 226, 190, 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 712 -NA,NA,"",2021-22,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 228, 219, 229, 0, 0, 0, 0, 0, 676 -NA,NA,"",2021-22,Holyoke - E N White Elementary,01370045, 68, 50, 60, 64, 62, 49, 58, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2021-22,Holyoke - H.B. Lawrence School,01370070, 17, 31, 53, 40, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186 -NA,NA,"",2021-22,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378, 356, 356, 418, 0," 1,508" -NA,NA,"",2021-22,Holyoke - Holyoke STEM Academy,01370320, 0, 0, 0, 0, 0, 0, 0, 97, 102, 57, 0, 0, 0, 0, 0, 256 -NA,NA,"",2021-22,Holyoke - Joseph Metcalf School,01370003, 29, 36, 41, 41, 38, 39, 45, 39, 35, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2021-22,Holyoke - Kelly Elementary,01370040, 20, 58, 63, 59, 53, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 29, 35, 33, 48, 47, 35, 62, 45, 50, 60, 0, 0, 0, 0, 0, 444 -NA,NA,"",2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 22, 28, 29, 38, 34, 37, 47, 29, 39, 41, 0, 0, 0, 0, 0, 344 -NA,NA,"",2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 28, 50, 58, 46, 61, 58, 49, 0, 0, 41, 0, 0, 0, 0, 0, 391 -NA,NA,"",2021-22,Holyoke - Morgan Full Service Community School,01370025, 93, 30, 37, 50, 35, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2021-22,Holyoke - Veritas Prep Holyoke,01370075, 0, 0, 0, 0, 0, 0, 99, 103, 96, 119, 0, 0, 0, 0, 0, 417 -NA,NA,"",2021-22,Holyoke - William R. Peck School,01370030, 0, 0, 0, 0, 0, 34, 49, 38, 38, 57, 0, 0, 0, 0, 0, 216 -NA,NA,"",2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 68, 49, 76, 86, 74, 74, 84, 76, 66, 0, 0, 0, 0, 0, 653 -NA,NA,"",2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 55, 82, 69, 88, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 59, 52, 55, 71, 0, 340 -NA,NA,"",2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 69, 73, 71, 95, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 88, 89, 72, 73, 67, 82, 0, 471 -NA,NA,"",2021-22,Hopedale - Memorial,01380010, 0, 76, 81, 73, 75, 83, 84, 77, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2021-22,Hopedale - Park Street School,01380003, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94 -NA,NA,"",2021-22,Hopkinton - Elmwood,01390010, 0, 0, 0, 300, 322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 622 -NA,NA,"",2021-22,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 285, 324, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2021-22,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 280, 311, 295, 6," 1,212" -NA,NA,"",2021-22,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 308, 303, 312, 0, 0, 0, 0, 0, 923 -NA,NA,"",2021-22,Hopkinton - Hopkinton Pre-School,01390003, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2021-22,Hopkinton - Marathon Elementary School,01390005, 0, 258, 303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2021-22,Hudson - C A Farley,01410030, 14, 75, 74, 74, 80, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2021-22,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 202, 175, 170, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2021-22,Hudson - Forest Avenue Elementary,01410015, 0, 46, 52, 65, 68, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2021-22,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 170, 154, 158, 152, 0, 836 -NA,NA,"",2021-22,Hudson - Mulready Elementary,01410007, 13, 42, 54, 39, 47, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2021-22,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 54, 62, 68, 0, 248 -NA,NA,"",2021-22,Hull - Lillian M Jacobs,01420015, 52, 53, 43, 54, 56, 63, 57, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2021-22,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 56, 62, 61, 0, 0, 0, 0, 0, 179 -NA,NA,"",2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 100, 100, 100, 100, 113, 95, 87, 81, 0, 776 -NA,NA,"",2021-22,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 131, 125, 136, 5, 528 -NA,NA,"",2021-22,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 117, 119, 124, 0, 0, 0, 0, 0, 360 -NA,NA,"",2021-22,Ipswich - Paul F Doyon Memorial,01440007, 0, 59, 52, 51, 59, 65, 62, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2021-22,Ipswich - Winthrop,01440015, 37, 68, 51, 60, 47, 68, 61, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2021-22,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 317, 395, 0, 0, 0, 0, 0, 712 -NA,NA,"",2021-22,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271, 298, 267, 320, 6," 1,162" -NA,NA,"",2021-22,Kingston - Kingston Elementary,01450005, 0, 157, 148, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2021-22,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 149, 144, 136, 161, 0, 0, 0, 0, 0, 0, 0, 590 -NA,NA,"",2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 63, 71, 70, 71, 72, 65, 66, 61, 61, 0, 0, 0, 0, 0, 600 -NA,NA,"",2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 128, 124, 124, 124, 125, 128, 128, 124, 124, 130, 128, 113, 114, 0," 1,614" -NA,NA,"",2021-22,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 56, 60, 66, 86, 91, 92, 0, 0, 0, 0, 0, 451 -NA,NA,"",2021-22,Lawrence - Arlington Elementary,01490009, 0, 98, 111, 108, 126, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2021-22,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 115, 150, 151, 147, 0, 0, 0, 0, 0, 563 -NA,NA,"",2021-22,Lawrence - Edward F. Parthum,01490053, 0, 106, 134, 138, 150, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2021-22,Lawrence - Emily G Wetherbee,01490080, 0, 40, 49, 61, 54, 63, 72, 64, 56, 70, 0, 0, 0, 0, 0, 529 -NA,NA,"",2021-22,Lawrence - Francis M Leahy,01490040, 0, 0, 79, 78, 78, 75, 86, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2021-22,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 122, 137, 135, 134, 0, 0, 0, 0, 0, 528 -NA,NA,"",2021-22,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 126, 92, 119, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2021-22,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 114, 114, 126, 142, 0, 0, 0, 0, 0, 496 -NA,NA,"",2021-22,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 10, 25, 171, 0, 208 -NA,NA,"",2021-22,Lawrence - James F Hennessey,01490020, 94, 71, 78, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2021-22,Lawrence - John Breen School,01490003, 150, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2021-22,Lawrence - John K Tarbox,01490075, 0, 0, 61, 45, 54, 62, 52, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 0, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133 -NA,NA,"",2021-22,Lawrence - Lawrence Family Public Academy,01490011, 60, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2021-22,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 830, 760, 764, 712, 31," 3,097" -NA,NA,"",2021-22,Lawrence - Oliver Partnership School,01490048, 0, 0, 84, 83, 86, 100, 108, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2021-22,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 132, 137, 138, 150, 0, 0, 0, 0, 0, 557 -NA,NA,"",2021-22,Lawrence - RISE Academy,01490615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 19, 25, 30, 0, 79 -NA,NA,"",2021-22,Lawrence - Robert Frost,01490018, 0, 98, 110, 105, 124, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2021-22,Lawrence - Rollins Early Childhood Center,01490001, 102, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2021-22,Lawrence - School for Exceptional Studies,01490537, 0, 0, 2, 3, 6, 9, 6, 9, 11, 9, 13, 9, 8, 10, 10, 105 -NA,NA,"",2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 146, 130, 143, 128, 137, 0, 0, 0, 0, 0, 0, 0, 0, 684 -NA,NA,"",2021-22,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 141, 134, 161, 0, 0, 0, 0, 0, 436 -NA,NA,"",2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 110, 116, 114, 0, 0, 0, 0, 0, 340 -NA,NA,"",2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 106, 109, 96, 0, 0, 0, 0, 0, 311 -NA,NA,"",2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 82, 80, 80, 84, 84, 81, 78, 77, 75, 75, 0, 0, 0, 0, 0, 796 -NA,NA,"",2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0, 75, 76, 75, 75, 76, 75, 78, 75, 66, 0, 0, 0, 0, 0, 671 -NA,NA,"",2021-22,Lee - Lee Elementary,01500025, 20, 36, 33, 43, 54, 54, 47, 47, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2021-22,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 57, 37, 60, 59, 54, 55, 4, 326 -NA,NA,"",2021-22,Leicester - Leicester Elementary,01510005, 0, 99, 89, 98, 93, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2021-22,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 115, 96, 131, 0, 433 -NA,NA,"",2021-22,Leicester - Leicester Integrated Preschool,01510001, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46 -NA,NA,"",2021-22,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 93, 89, 102, 128, 0, 0, 0, 0, 0, 412 -NA,NA,"",2021-22,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 55, 60, 60, 58, 62, 62, 67, 2, 426 -NA,NA,"",2021-22,Lenox - Morris,01520015, 22, 40, 46, 43, 48, 47, 50, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2021-22,Leominster - Bennett,01530003, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85 -NA,NA,"",2021-22,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279, 164, 153, 136, 17, 749 -NA,NA,"",2021-22,Leominster - Fall Brook,01530007, 0, 72, 96, 102, 97, 101, 94, 0, 0, 0, 0, 0, 0, 0, 0, 562 -NA,NA,"",2021-22,Leominster - Frances Drake School,01530010, 0, 74, 62, 91, 80, 86, 97, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2021-22,Leominster - Johnny Appleseed,01530025, 0, 89, 108, 120, 114, 112, 116, 0, 0, 0, 0, 0, 0, 0, 0, 659 -NA,NA,"",2021-22,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 10, 9, 0, 47 -NA,NA,"",2021-22,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 289, 301, 313, 1," 1,082" -NA,NA,"",2021-22,Leominster - Lincoln School,01530005, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29 -NA,NA,"",2021-22,Leominster - Northwest,01530030, 0, 48, 126, 122, 141, 115, 124, 0, 0, 0, 0, 0, 0, 0, 0, 676 -NA,NA,"",2021-22,Leominster - Priest Street,01530040, 0, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2021-22,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 165, 179, 167, 0, 0, 0, 0, 0, 511 -NA,NA,"",2021-22,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 280, 301, 293, 0, 0, 0, 0, 0, 874 -NA,NA,"",2021-22,Leverett - Leverett Elementary,01540005, 15, 17, 20, 17, 18, 23, 21, 13, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2021-22,Lexington - Bowman,01550008, 0, 50, 55, 67, 79, 92, 87, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2021-22,Lexington - Bridge,01550006, 0, 38, 54, 57, 67, 69, 75, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2021-22,Lexington - Fiske,01550015, 0, 44, 51, 57, 56, 74, 60, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2021-22,Lexington - Harrington,01550030, 0, 46, 47, 73, 76, 86, 95, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 251, 279, 299, 0, 0, 0, 0, 0, 829 -NA,NA,"",2021-22,Lexington - Joseph Estabrook,01550010, 0, 74, 81, 93, 95, 93, 88, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2021-22,Lexington - Lexington Children's Place,01550001, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 67 -NA,NA,"",2021-22,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 576, 547, 583, 567, 0," 2,273" -NA,NA,"",2021-22,Lexington - Maria Hastings,01550035, 0, 91, 76, 94, 121, 105, 136, 0, 0, 0, 0, 0, 0, 0, 0, 623 -NA,NA,"",2021-22,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 301, 312, 306, 0, 0, 0, 0, 0, 919 -NA,NA,"",2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 72, 95, 86, 79, 0, 0, 0, 0, 332 -NA,NA,"",2021-22,Lincoln - Hanscom Middle,01570305, 0, 0, 0, 0, 0, 62, 44, 38, 46, 40, 0, 0, 0, 0, 0, 230 -NA,NA,"",2021-22,Lincoln - Hanscom Primary,01570006, 55, 56, 56, 62, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2021-22,Lincoln - Lincoln School,01570025, 31, 50, 57, 56, 74, 53, 61, 51, 56, 63, 0, 0, 0, 0, 0, 552 -NA,NA,"",2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391, 362, 361, 395, 4," 1,513" -NA,NA,"",2021-22,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 119, 108, 101, 4, 451 -NA,NA,"",2021-22,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 132, 132, 134, 0, 0, 0, 0, 0, 398 -NA,NA,"",2021-22,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 121, 138, 121, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2021-22,Littleton - Shaker Lane Elementary,01580005, 52, 142, 103, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2021-22,Longmeadow - Blueberry Hill,01590005, 0, 60, 53, 62, 73, 81, 79, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2021-22,Longmeadow - Center,01590010, 0, 64, 65, 71, 71, 70, 71, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2021-22,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 105, 121, 111, 0, 0, 0, 0, 0, 337 -NA,NA,"",2021-22,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 226, 216, 239, 0, 911 -NA,NA,"",2021-22,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 90, 94, 127, 0, 0, 0, 0, 0, 311 -NA,NA,"",2021-22,Longmeadow - Wolf Swamp Road,01590025, 63, 60, 49, 58, 69, 56, 57, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2021-22,Lowell - Abraham Lincoln,01600020, 46, 79, 89, 86, 97, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2021-22,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 117, 125, 133, 140, 0, 0, 0, 0, 0, 515 -NA,NA,"",2021-22,Lowell - Bartlett Community Partnership,01600090, 38, 40, 47, 41, 47, 44, 43, 47, 58, 57, 0, 0, 0, 0, 0, 462 -NA,NA,"",2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84 -NA,NA,"",2021-22,Lowell - Charles W Morey,01600030, 39, 86, 90, 84, 91, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 41, 82, 64, 84, 94, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2021-22,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 172, 157, 174, 162, 0, 0, 0, 0, 0, 665 -NA,NA,"",2021-22,Lowell - Dr Gertrude Bailey,01600002, 27, 83, 84, 86, 89, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2021-22,Lowell - Dr. Janice Adie Day School,01600605, 1, 1, 2, 5, 8, 5, 11, 7, 3, 0, 4, 3, 0, 1, 1, 52 -NA,NA,"",2021-22,Lowell - Greenhalge,01600015, 35, 81, 88, 87, 95, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2021-22,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 148, 148, 173, 166, 0, 0, 0, 0, 0, 635 -NA,NA,"",2021-22,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 152, 170, 168, 159, 0, 0, 0, 0, 0, 649 -NA,NA,"",2021-22,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 156, 149, 167, 172, 0, 0, 0, 0, 0, 644 -NA,NA,"",2021-22,Lowell - John J Shaughnessy,01600050, 26, 86, 90, 82, 97, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2021-22,Lowell - Joseph McAvinnue,01600010, 23, 81, 84, 77, 92, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 157, 152, 166, 171, 0, 0, 0, 0, 0, 646 -NA,NA,"",2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 0, 1, 0, 3, 4, 1, 8, 0, 0, 0, 0, 0, 17 -NA,NA,"",2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 10, 6, 11, 0, 39 -NA,NA,"",2021-22,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 920, 742, 644, 727, 23," 3,056" -NA,NA,"",2021-22,Lowell - Moody Elementary,01600027, 14, 43, 46, 45, 49, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2021-22,Lowell - Pawtucketville Memorial,01600036, 28, 88, 82, 83, 86, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2021-22,Lowell - Peter W Reilly,01600040, 26, 84, 86, 83, 94, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2021-22,Lowell - Pyne Arts,01600018, 32, 42, 50, 38, 46, 43, 43, 49, 57, 53, 0, 0, 0, 0, 0, 453 -NA,NA,"",2021-22,Lowell - Rogers STEM Academy,01600005, 0, 74, 91, 83, 92, 87, 111, 102, 107, 118, 0, 0, 0, 0, 0, 865 -NA,NA,"",2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 47, 89, 88, 86, 92, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2021-22,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 19, 19, 47, 0, 97 -NA,NA,"",2021-22,Lowell - Washington,01600055, 25, 41, 49, 46, 47, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 98, 96, 96, 93, 85, 85, 76, 80, 73, 0, 0, 0, 0, 0, 822 -NA,NA,"",2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 13, 11, 23, 0, 74 -NA,NA,"",2021-22,Ludlow - East Street Elementary School,01610010, 33, 128, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2021-22,Ludlow - Harris Brook Elementary School,01610665, 0, 0, 0, 149, 153, 160, 157, 0, 0, 0, 0, 0, 0, 0, 0, 619 -NA,NA,"",2021-22,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229, 192, 205, 201, 0, 827 -NA,NA,"",2021-22,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 169, 161, 203, 0, 0, 0, 0, 0, 533 -NA,NA,"",2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5 -NA,NA,"",2021-22,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 119, 107, 117, 0, 450 -NA,NA,"",2021-22,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 135, 125, 142, 0, 0, 0, 0, 0, 402 -NA,NA,"",2021-22,Lunenburg - Lunenburg Primary School,01620010, 39, 124, 112, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2021-22,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 135, 110, 116, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2021-22,Lynn - A Drewicz Elementary,01630016, 10, 83, 84, 66, 75, 81, 65, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2021-22,Lynn - Aborn,01630011, 0, 34, 41, 38, 49, 37, 39, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2021-22,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 465, 463, 342, 0, 0, 0, 0, 0," 1,270" -NA,NA,"",2021-22,Lynn - Brickett Elementary,01630020, 0, 52, 49, 45, 57, 55, 58, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2021-22,Lynn - Capt William G Shoemaker,01630090, 4, 35, 44, 46, 63, 67, 52, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2021-22,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 533, 380, 448, 462, 0," 1,823" -NA,NA,"",2021-22,Lynn - Cobbet Elementary,01630035, 0, 107, 110, 84, 105, 87, 96, 0, 0, 0, 0, 0, 0, 0, 0, 589 -NA,NA,"",2021-22,Lynn - E J Harrington,01630045, 53, 95, 113, 98, 94, 92, 92, 0, 0, 0, 0, 0, 0, 0, 0, 637 -NA,NA,"",2021-22,Lynn - Edward A Sisson,01630095, 13, 64, 65, 76, 72, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 5, 5, 12, 8, 14, 27, 19, 0, 90 -NA,NA,"",2021-22,Lynn - Hood,01630055, 32, 77, 75, 81, 64, 85, 83, 0, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2021-22,Lynn - Ingalls,01630060, 0, 165, 126, 92, 106, 102, 93, 0, 0, 0, 0, 0, 0, 0, 0, 684 -NA,NA,"",2021-22,Lynn - Julia F Callahan,01630030, 52, 48, 59, 48, 56, 53, 48, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2021-22,Lynn - Lincoln-Thomson,01630070, 0, 22, 35, 29, 42, 30, 50, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2021-22,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 673, 536, 450, 506, 0," 2,165" -NA,NA,"",2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 53, 0, 2, 1, 2, 3, 3, 0, 0, 281, 277, 280, 268, 261, 51," 1,482" -NA,NA,"",2021-22,Lynn - Lynn Woods,01630075, 0, 28, 28, 17, 27, 27, 30, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2021-22,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 196, 184, 169, 0, 0, 0, 0, 0, 549 -NA,NA,"",2021-22,Lynn - Robert L Ford,01630050, 0, 0, 89, 75, 92, 107, 84, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2021-22,Lynn - Sewell-Anderson,01630085, 0, 105, 36, 31, 35, 41, 35, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2021-22,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 436, 452, 387, 0, 0, 0, 0, 0," 1,275" -NA,NA,"",2021-22,Lynn - Tracy,01630100, 0, 0, 74, 73, 80, 83, 71, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2021-22,Lynn - Washington Elementary School,01630005, 24, 83, 74, 78, 68, 73, 65, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2021-22,Lynn - William R Fallon,01630080, 0, 0, 1, 4, 6, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 25 -NA,NA,"",2021-22,Lynn - Wm P Connery,01630040, 16, 114, 81, 86, 82, 96, 90, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2021-22,Lynnfield - Huckleberry Hill,01640010, 0, 77, 99, 91, 83, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2021-22,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 147, 136, 141, 0, 564 -NA,NA,"",2021-22,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 162, 193, 179, 159, 0, 0, 0, 0, 0, 693 -NA,NA,"",2021-22,Lynnfield - Lynnfield Preschool,01640005, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38 -NA,NA,"",2021-22,Lynnfield - Summer Street,01640020, 0, 94, 79, 73, 86, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 41, 0, 91 -NA,NA,"",2021-22,Malden - Beebe,01650003, 0, 111, 115, 95, 122, 99, 102, 101, 98, 92, 0, 0, 0, 0, 0, 935 -NA,NA,"",2021-22,Malden - Ferryway,01650013, 0, 111, 92, 101, 100, 100, 100, 95, 99, 98, 0, 0, 0, 0, 0, 896 -NA,NA,"",2021-22,Malden - Forestdale,01650027, 0, 59, 65, 55, 58, 53, 63, 65, 79, 78, 0, 0, 0, 0, 0, 575 -NA,NA,"",2021-22,Malden - Linden,01650047, 0, 77, 92, 94, 78, 82, 94, 89, 95, 86, 0, 0, 0, 0, 0, 787 -NA,NA,"",2021-22,Malden - Malden Early Learning Center,01650049, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2021-22,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431, 439, 435, 433, 19," 1,757" -NA,NA,"",2021-22,Malden - Salemwood,01650057, 0, 81, 81, 93, 81, 101, 121, 125, 126, 125, 0, 0, 0, 0, 0, 934 -NA,NA,"",2021-22,Manchester Essex Regional - Essex Elementary,06980020, 0, 38, 43, 40, 32, 38, 28, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113, 93, 121, 123, 0, 450 -NA,NA,"",2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 78, 96, 109, 0, 0, 0, 0, 0, 283 -NA,NA,"",2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 20, 28, 39, 43, 50, 50, 68, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2021-22,Mansfield - Everett W Robinson,01670007, 0, 240, 257, 221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 718 -NA,NA,"",2021-22,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 266, 258, 276, 0, 0, 0, 0, 0, 800 -NA,NA,"",2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 229, 236, 262, 0, 0, 0, 0, 0, 0, 0, 0, 727 -NA,NA,"",2021-22,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 276, 306, 281, 6," 1,101" -NA,NA,"",2021-22,Mansfield - Roland Green School,01670003, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 54, 66, 57, 0, 223 -NA,NA,"",2021-22,Marblehead - Glover,01680020, 32, 63, 71, 70, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2021-22,Marblehead - Lucretia and Joseph Brown School,01680030, 33, 84, 91, 100, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2021-22,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 218, 225, 245, 5, 931 -NA,NA,"",2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 195, 195, 0, 0, 0, 0, 0, 390 -NA,NA,"",2021-22,Marblehead - Village School,01680016, 0, 0, 0, 0, 0, 169, 200, 190, 0, 0, 0, 0, 0, 0, 0, 559 -NA,NA,"",2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 47, 51, 44, 49, 34, 0, 0, 0, 0, 0, 225 -NA,NA,"",2021-22,Marion - Sippican,01690005, 17, 50, 50, 53, 65, 53, 54, 64, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 0, 354, 353, 370, 0, 0, 0, 0, 0," 1,077" -NA,NA,"",2021-22,Marlborough - Charles Jaworek School,01700030, 0, 105, 103, 113, 101, 92, 101, 0, 0, 0, 0, 0, 0, 0, 0, 615 -NA,NA,"",2021-22,Marlborough - Early Childhood Center,01700006, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169 -NA,NA,"",2021-22,Marlborough - Francis J Kane,01700008, 0, 84, 84, 85, 81, 73, 89, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 0, 119, 133, 126, 117, 129, 116, 0, 0, 0, 0, 0, 0, 0, 0, 740 -NA,NA,"",2021-22,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 226, 294, 239, 9," 1,022" -NA,NA,"",2021-22,Marlborough - Richer,01700025, 0, 81, 103, 85, 102, 77, 76, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2021-22,Marshfield - Daniel Webster,01710015, 90, 42, 43, 43, 45, 54, 57, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2021-22,Marshfield - Eames Way School,01710005, 0, 32, 35, 32, 35, 41, 44, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2021-22,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 269, 287, 290, 0, 0, 0, 0, 0, 846 -NA,NA,"",2021-22,Marshfield - Gov Edward Winslow,01710020, 0, 53, 62, 67, 60, 55, 69, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2021-22,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338, 268, 310, 326, 3," 1,245" -NA,NA,"",2021-22,Marshfield - Martinson Elementary,01710025, 65, 80, 71, 84, 65, 69, 77, 0, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2021-22,Marshfield - South River,01710010, 0, 33, 46, 49, 31, 43, 59, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 178, 178, 139, 3, 706 -NA,NA,"",2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0, 10, 11, 12, 14, 15, 11, 20, 17, 22, 5, 5, 8, 15, 0, 165 -NA,NA,"",2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0, 59, 61, 59, 59, 55, 57, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2021-22,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 260, 276, 290, 0," 1,047" -NA,NA,"",2021-22,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 280, 315, 0, 0, 0, 0, 0, 595 -NA,NA,"",2021-22,Mashpee - Kenneth Coombs School,01720005, 80, 90, 98, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2021-22,Mashpee - Mashpee High,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 95, 113, 105, 0, 440 -NA,NA,"",2021-22,Mashpee - Mashpee Middle School,01720020, 0, 0, 0, 0, 0, 0, 0, 0, 118, 112, 0, 0, 0, 0, 0, 230 -NA,NA,"",2021-22,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 90, 109, 105, 119, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 54, 91, 94, 97, 100, 102, 96, 94, 95, 94, 82, 81, 74, 71, 0," 1,225" -NA,NA,"",2021-22,Mattapoisett - Center,01730005, 25, 59, 51, 50, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2021-22,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 63, 64, 60, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2021-22,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 105, 92, 93, 74, 92, 0, 0, 0, 0, 0, 456 -NA,NA,"",2021-22,Maynard - Green Meadow,01740010, 61, 90, 83, 96, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2021-22,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 66, 74, 86, 2, 311 -NA,NA,"",2021-22,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 194, 197, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2021-22,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 183, 197, 190, 1, 750 -NA,NA,"",2021-22,Medfield - Memorial School,01750003, 49, 197, 181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2021-22,Medfield - Ralph Wheelock School,01750007, 0, 0, 0, 200, 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2021-22,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 206, 184, 176, 0, 0, 0, 0, 0, 566 -NA,NA,"",2021-22,Medford - Brooks School,01760130, 43, 94, 76, 81, 67, 86, 75, 0, 0, 0, 0, 0, 0, 0, 0, 522 -NA,NA,"",2021-22,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7, 0, 12 -NA,NA,"",2021-22,Medford - John J McGlynn Elementary School,01760068, 13, 89, 71, 53, 57, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2021-22,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 148, 147, 162, 0, 0, 0, 0, 0, 457 -NA,NA,"",2021-22,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 159, 143, 156, 0, 0, 0, 0, 0, 458 -NA,NA,"",2021-22,Medford - Medford High,01760505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 301, 334, 284, 8," 1,207" -NA,NA,"",2021-22,Medford - Milton Fuller Roberts,01760150, 22, 97, 91, 77, 82, 75, 73, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2021-22,Medford - Missituk Elementary School,01760140, 9, 75, 56, 71, 74, 50, 74, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2021-22,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 163, 156, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2021-22,Medway - John D Mc Govern Elementary,01770013, 41, 149, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2021-22,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 145, 160, 175, 0, 639 -NA,NA,"",2021-22,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 150, 175, 155, 183, 0, 0, 0, 0, 0, 663 -NA,NA,"",2021-22,Melrose - Early Childhood Center,01780003, 157, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198 -NA,NA,"",2021-22,Melrose - Herbert Clark Hoover,01780017, 0, 38, 41, 53, 59, 61, 45, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2021-22,Melrose - Horace Mann,01780025, 0, 41, 43, 45, 45, 46, 47, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2021-22,Melrose - Lincoln,01780020, 0, 55, 82, 57, 64, 68, 78, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2021-22,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 225, 221, 240, 5, 923 -NA,NA,"",2021-22,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 287, 282, 275, 0, 0, 0, 0, 0, 844 -NA,NA,"",2021-22,Melrose - Roosevelt,01780035, 0, 53, 84, 72, 66, 67, 75, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2021-22,Melrose - Winthrop,01780050, 0, 54, 62, 67, 64, 86, 65, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2021-22,Mendon-Upton - Henry P Clough,07100179, 22, 72, 65, 57, 65, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2021-22,Mendon-Upton - Memorial School,07100001, 30, 88, 85, 97, 97, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2021-22,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 145, 161, 162, 197, 0, 0, 0, 0, 0, 665 -NA,NA,"",2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 158, 143, 170, 4, 635 -NA,NA,"",2021-22,Methuen - Comprehensive Grammar School,01810050, 43, 86, 73, 96, 95, 98, 113, 116, 106, 122, 0, 0, 0, 0, 0, 948 -NA,NA,"",2021-22,Methuen - Donald P Timony Grammar,01810060, 67, 115, 113, 142, 137, 148, 117, 126, 148, 143, 0, 0, 0, 0, 0," 1,256" -NA,NA,"",2021-22,Methuen - Marsh Grammar School,01810030, 0, 105, 114, 107, 114, 110, 137, 123, 126, 140, 0, 0, 0, 0, 0," 1,076" -NA,NA,"",2021-22,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472, 486, 450, 483, 0," 1,891" -NA,NA,"",2021-22,Methuen - Tenney Grammar School,01810055, 29, 112, 144, 141, 141, 138, 131, 147, 130, 155, 0, 0, 0, 0, 0," 1,268" -NA,NA,"",2021-22,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 108, 102, 110, 116, 111, 0, 0, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2021-22,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 213, 230, 256, 0, 0, 0, 0, 0, 699 -NA,NA,"",2021-22,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 122, 120, 112, 125, 124, 0, 0, 0, 0, 0, 0, 0, 0, 603 -NA,NA,"",2021-22,Middleborough - Memorial Early Childhood Center,01820011, 58, 220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2021-22,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 209, 206, 208, 8, 884 -NA,NA,"",2021-22,Middleton - Fuller Meadow,01840003, 0, 94, 101, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2021-22,Middleton - Howe-Manning,01840005, 55, 0, 0, 0, 104, 87, 89, 84, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2021-22,Milford - Brookside,01850065, 0, 149, 162, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2021-22,Milford - Memorial,01850010, 0, 167, 165, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2021-22,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 310, 318, 296, 0," 1,278" -NA,NA,"",2021-22,Milford - Shining Star Early Childhood Center,01850075, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2021-22,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 330, 328, 350, 0, 0, 0, 0, 0," 1,008" -NA,NA,"",2021-22,Milford - Woodland,01850090, 0, 0, 0, 0, 282, 311, 338, 0, 0, 0, 0, 0, 0, 0, 0, 931 -NA,NA,"",2021-22,Millbury - Elmwood Street,01860017, 75, 119, 102, 117, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 526 -NA,NA,"",2021-22,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 141, 125, 134, 117, 122, 97, 0, 736 -NA,NA,"",2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 0, 127, 96, 116, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2021-22,Millis - Clyde F Brown,01870005, 53, 86, 82, 90, 80, 102, 88, 0, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2021-22,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 93, 70, 75, 0, 328 -NA,NA,"",2021-22,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 0, 80, 107, 79, 0, 0, 0, 0, 0, 266 -NA,NA,"",2021-22,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 321, 321, 286, 0, 0, 0, 0, 0, 928 -NA,NA,"",2021-22,Milton - Collicot,01890005, 0, 88, 104, 85, 101, 110, 120, 0, 0, 0, 0, 0, 0, 0, 0, 608 -NA,NA,"",2021-22,Milton - Cunningham School,01890007, 79, 90, 83, 93, 86, 90, 96, 0, 0, 0, 0, 0, 0, 0, 0, 617 -NA,NA,"",2021-22,Milton - Glover,01890010, 0, 103, 82, 113, 119, 116, 96, 0, 0, 0, 0, 0, 0, 0, 0, 629 -NA,NA,"",2021-22,Milton - Milton High,01890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 283, 276, 278, 8," 1,106" -NA,NA,"",2021-22,Milton - Tucker,01890020, 34, 69, 65, 82, 64, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 175, 158, 123, 0, 655 -NA,NA,"",2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 28, 28, 26, 35, 37, 41, 36, 39, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2021-22,Mohawk Trail - Colrain Central,07170010, 18, 9, 13, 10, 12, 8, 11, 14, 0, 0, 0, 0, 0, 0, 0, 95 -NA,NA,"",2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 71, 57, 43, 37, 24, 37, 2, 271 -NA,NA,"",2021-22,Mohawk Trail - Sanderson Academy,07170020, 30, 9, 10, 14, 17, 21, 16, 9, 0, 0, 0, 0, 0, 0, 0, 126 -NA,NA,"",2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 0, 32, 19, 35, 29, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145 -NA,NA,"",2021-22,Monomoy Regional School District - Harwich Elementary School,07120002, 35, 82, 94, 81, 88, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 150, 111, 124, 132, 7, 670 -NA,NA,"",2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 150, 147, 159, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2021-22,Monson - Granite Valley School,01910030, 0, 0, 67, 71, 70, 61, 70, 70, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2021-22,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 69, 69, 36, 42, 41, 62, 6, 325 -NA,NA,"",2021-22,Monson - Quarry Hill Community School,01910010, 50, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 371, 368, 335, 339, 0," 1,413" -NA,NA,"",2021-22,Mount Greylock - Lanesborough Elementary,07150005, 22, 24, 17, 29, 30, 25, 36, 24, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2021-22,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 103, 85, 74, 104, 84, 72, 2, 524 -NA,NA,"",2021-22,Mount Greylock - Williamstown Elementary,07150010, 27, 56, 41, 45, 63, 60, 61, 69, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 169, 159, 156, 141, 141, 117, 117, 117, 132, 93, 109, 74, 61, 0," 1,586" -NA,NA,"",2021-22,Nahant - Johnson,01960010, 34, 17, 32, 20, 12, 11, 19, 19, 0, 0, 0, 0, 0, 0, 0, 164 -NA,NA,"",2021-22,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 121, 148, 152, 0, 0, 0, 0, 0, 421 -NA,NA,"",2021-22,Nantucket - Nantucket Elementary,01970005, 48, 122, 112, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2021-22,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 123, 147, 127, 4, 554 -NA,NA,"",2021-22,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 110, 114, 94, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2021-22,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 115, 117, 118, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2021-22,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 97, 72, 65, 65, 3, 421 -NA,NA,"",2021-22,Narragansett - Templeton Elementary School,07200020, 84, 92, 105, 115, 116, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 622 -NA,NA,"",2021-22,Nashoba - Center School,07250020, 23, 89, 75, 74, 91, 66, 88, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2021-22,Nashoba - Florence Sawyer School,07250025, 22, 77, 98, 65, 82, 72, 75, 94, 68, 74, 0, 0, 0, 0, 0, 727 -NA,NA,"",2021-22,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 78, 106, 94, 0, 0, 0, 0, 0, 278 -NA,NA,"",2021-22,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 68, 82, 74, 0, 0, 0, 0, 0, 224 -NA,NA,"",2021-22,Nashoba - Mary Rowlandson Elementary,07250010, 26, 75, 67, 67, 57, 88, 79, 0, 0, 0, 0, 0, 0, 0, 0, 459 -NA,NA,"",2021-22,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 223, 204, 248, 6, 894 -NA,NA,"",2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 188, 168, 177, 0, 736 -NA,NA,"",2021-22,Natick - Bennett-Hemenway,01980005, 0, 112, 92, 95, 98, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2021-22,Natick - Brown,01980010, 0, 97, 81, 99, 101, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2021-22,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 226, 204, 231, 189, 0, 0, 0, 0, 0, 850 -NA,NA,"",2021-22,Natick - Johnson,01980031, 0, 44, 39, 37, 46, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2021-22,Natick - Lilja Elementary,01980035, 0, 75, 73, 75, 83, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2021-22,Natick - Memorial,01980043, 0, 78, 74, 76, 93, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2021-22,Natick - Natick High,01980505, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 394, 384, 387, 381, 0," 1,678" -NA,NA,"",2021-22,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 187, 205, 203, 223, 0, 0, 0, 0, 0, 818 -NA,NA,"",2021-22,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 190, 196, 220, 4, 833 -NA,NA,"",2021-22,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 173, 170, 190, 0, 0, 0, 0, 0, 533 -NA,NA,"",2021-22,Needham - Broadmeadow,01990005, 0, 76, 87, 84, 97, 80, 92, 0, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2021-22,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2021-22,Needham - John Eliot,01990020, 0, 73, 68, 69, 75, 75, 71, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2021-22,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431, 420, 377, 441, 0," 1,669" -NA,NA,"",2021-22,Needham - Newman Elementary,01990050, 71, 84, 93, 102, 101, 121, 93, 0, 0, 0, 0, 0, 0, 0, 0, 665 -NA,NA,"",2021-22,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 383, 445, 0, 0, 0, 0, 0, 828 -NA,NA,"",2021-22,Needham - Sunita L. Williams Elementary,01990035, 0, 76, 89, 86, 79, 90, 86, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2021-22,Needham - William Mitchell,01990040, 0, 60, 74, 74, 78, 73, 91, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 35, 39, 39, 38, 43, 43, 57, 58, 61, 70, 90, 75, 70, 46, 0, 764 -NA,NA,"",2021-22,New Bedford - Abraham Lincoln,02010095, 0, 89, 112, 107, 119, 121, 100, 0, 0, 0, 0, 0, 0, 0, 0, 648 -NA,NA,"",2021-22,New Bedford - Alfred J Gomes,02010063, 0, 81, 84, 84, 86, 77, 90, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2021-22,New Bedford - Betsey B Winslow,02010140, 0, 43, 35, 31, 41, 43, 39, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2021-22,New Bedford - Carlos Pacheco,02010105, 30, 32, 39, 47, 46, 53, 56, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2021-22,New Bedford - Casimir Pulaski,02010123, 61, 66, 66, 77, 93, 85, 91, 0, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2021-22,New Bedford - Charles S Ashley,02010010, 0, 47, 54, 35, 51, 41, 47, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 0, 37, 48, 54, 56, 46, 50, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2021-22,New Bedford - Ellen R Hathaway,02010075, 58, 42, 30, 34, 36, 35, 38, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2021-22,New Bedford - Elwyn G Campbell,02010020, 54, 36, 46, 31, 31, 34, 36, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2021-22,New Bedford - Hayden/McFadden,02010078, 71, 109, 104, 85, 104, 106, 84, 0, 0, 0, 0, 0, 0, 0, 0, 663 -NA,NA,"",2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 41, 53, 53, 65, 48, 58, 55, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2021-22,New Bedford - James B Congdon,02010040, 0, 29, 52, 40, 59, 47, 43, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2021-22,New Bedford - Jireh Swift,02010130, 56, 31, 26, 31, 19, 18, 27, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2021-22,New Bedford - John Avery Parker,02010115, 18, 45, 38, 23, 41, 28, 33, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2021-22,New Bedford - John B Devalles,02010050, 0, 53, 41, 54, 49, 64, 49, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2021-22,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 261, 333, 344, 0, 0, 0, 0, 0, 938 -NA,NA,"",2021-22,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 803, 738, 719, 630, 0," 2,890" -NA,NA,"",2021-22,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 371, 361, 380, 0, 0, 0, 0, 0," 1,112" -NA,NA,"",2021-22,New Bedford - Renaissance Community Innovation School,02010124, 26, 22, 16, 20, 26, 22, 28, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2021-22,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 257, 259, 280, 0, 0, 0, 0, 0, 796 -NA,NA,"",2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 61, 93, 78, 96, 91, 96, 92, 0, 0, 0, 0, 0, 0, 0, 0, 607 -NA,NA,"",2021-22,New Bedford - Thomas R Rodman,02010125, 0, 39, 42, 30, 30, 42, 33, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2021-22,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 1, 3, 11, 11, 11, 12, 11, 12, 13, 0, 85 -NA,NA,"",2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 7, 10, 32, 12, 0, 67 -NA,NA,"",2021-22,New Bedford - William H Taylor,02010135, 24, 42, 43, 44, 39, 24, 36, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 90, 123, 115, 122, 89, 83, 122, 0, 744 -NA,NA,"",2021-22,New Salem-Wendell - Swift River,07280015, 15, 16, 13, 17, 17, 18, 17, 17, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 135, 146, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 64, 115, 130, 154, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 605 -NA,NA,"",2021-22,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189, 204, 211, 175, 5, 784 -NA,NA,"",2021-22,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 145, 163, 172, 0, 0, 0, 0, 0, 480 -NA,NA,"",2021-22,Newton - A E Angier,02070005, 0, 54, 62, 66, 80, 71, 90, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 144, 163, 158, 0, 0, 0, 0, 0, 465 -NA,NA,"",2021-22,Newton - Bowen,02070015, 0, 46, 57, 58, 59, 66, 59, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2021-22,Newton - C C Burr,02070020, 0, 55, 60, 62, 65, 66, 45, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2021-22,Newton - Cabot,02070025, 0, 57, 75, 88, 66, 68, 61, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2021-22,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 241, 270, 248, 0, 0, 0, 0, 0, 759 -NA,NA,"",2021-22,Newton - Countryside,02070040, 0, 58, 65, 47, 66, 65, 71, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2021-22,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 294, 327, 313, 0, 0, 0, 0, 0, 934 -NA,NA,"",2021-22,Newton - Franklin,02070055, 0, 57, 68, 61, 69, 66, 81, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2021-22,Newton - Horace Mann,02070075, 0, 56, 59, 67, 61, 59, 68, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2021-22,Newton - John Ward,02070120, 0, 31, 37, 37, 42, 27, 39, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2021-22,Newton - Lincoln-Eliot,02070070, 0, 41, 58, 47, 59, 57, 53, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2021-22,Newton - Mason-Rice,02070080, 0, 44, 50, 57, 56, 63, 67, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2021-22,Newton - Memorial Spaulding,02070105, 0, 67, 51, 56, 61, 77, 81, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2021-22,Newton - Newton Early Childhood Program,02070108, 179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179 -NA,NA,"",2021-22,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515, 519, 490, 545, 29," 2,098" -NA,NA,"",2021-22,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443, 422, 478, 493, 1," 1,837" -NA,NA,"",2021-22,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 201, 231, 229, 0, 0, 0, 0, 0, 661 -NA,NA,"",2021-22,Newton - Peirce,02070100, 0, 33, 37, 37, 50, 37, 44, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2021-22,Newton - Underwood,02070115, 0, 33, 39, 41, 35, 27, 43, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2021-22,Newton - Williams,02070125, 0, 38, 35, 38, 39, 40, 35, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2021-22,Newton - Zervas,02070130, 0, 68, 60, 75, 73, 69, 77, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2021-22,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 133, 126, 136, 145, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2021-22,Norfolk - H Olive Day,02080015, 59, 146, 161, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 148, 143, 143, 0, 588 -NA,NA,"",2021-22,North Adams - Brayton,02090035, 26, 34, 25, 23, 35, 26, 35, 28, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2021-22,North Adams - Colegrove Park Elementary,02090008, 25, 31, 35, 36, 26, 29, 39, 26, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2021-22,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 86, 93, 97, 87, 71, 75, 5, 514 -NA,NA,"",2021-22,North Adams - Greylock,02090015, 39, 36, 31, 34, 39, 33, 26, 26, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2021-22,North Andover - Anne Bradstreet Early Childhood Center,02110005, 131, 288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2021-22,North Andover - Annie L Sargent School,02110018, 0, 0, 97, 87, 100, 96, 86, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2021-22,North Andover - Atkinson,02110001, 0, 0, 58, 59, 51, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2021-22,North Andover - Franklin,02110010, 0, 0, 61, 86, 67, 80, 82, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2021-22,North Andover - Kittredge,02110015, 0, 0, 41, 39, 45, 51, 47, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2021-22,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 337, 333, 307, 357, 1," 1,335" -NA,NA,"",2021-22,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 336, 367, 370, 0, 0, 0, 0, 0," 1,073" -NA,NA,"",2021-22,North Andover - Thomson,02110020, 0, 0, 62, 61, 86, 50, 53, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2021-22,North Attleborough - Amvet Boulevard,02120007, 0, 80, 68, 70, 61, 77, 62, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2021-22,North Attleborough - Community,02120030, 0, 43, 50, 44, 47, 42, 48, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2021-22,North Attleborough - Falls,02120010, 0, 49, 33, 32, 33, 37, 36, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 84, 92, 87, 97, 92, 128, 0, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2021-22,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308, 287, 262, 279, 0," 1,136" -NA,NA,"",2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134 -NA,NA,"",2021-22,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 329, 292, 334, 0, 0, 0, 0, 0, 955 -NA,NA,"",2021-22,North Attleborough - Roosevelt Avenue,02120015, 0, 38, 44, 40, 43, 39, 48, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2021-22,North Brookfield - North Brookfield Elementary,02150015, 27, 35, 37, 37, 35, 32, 47, 35, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2021-22,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 27, 40, 20, 31, 18, 33, 0, 169 -NA,NA,"",2021-22,North Middlesex - Ashby Elementary,07350010, 0, 22, 37, 26, 24, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2021-22,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 110, 118, 113, 134, 0, 0, 0, 0, 0, 475 -NA,NA,"",2021-22,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 114, 111, 122, 129, 0, 0, 0, 0, 0, 476 -NA,NA,"",2021-22,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 184, 175, 208, 6, 785 -NA,NA,"",2021-22,North Middlesex - Spaulding Memorial,07350005, 0, 97, 91, 86, 99, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 77, 0, 4, 3, 0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 -NA,NA,"",2021-22,North Middlesex - Varnum Brook,07350035, 0, 106, 123, 111, 117, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2021-22,North Reading - E Ethel Little School,02170003, 24, 44, 53, 57, 26, 53, 40, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2021-22,North Reading - J Turner Hood,02170010, 27, 53, 60, 57, 49, 51, 59, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2021-22,North Reading - L D Batchelder,02170005, 0, 78, 76, 90, 70, 77, 74, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2021-22,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 130, 176, 162, 1, 639 -NA,NA,"",2021-22,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 193, 174, 197, 0, 0, 0, 0, 0, 564 -NA,NA,"",2021-22,Northampton - Bridge Street,02100005, 51, 31, 33, 36, 34, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2021-22,Northampton - Jackson Street,02100020, 0, 41, 49, 48, 51, 50, 66, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2021-22,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 148, 221, 210, 0, 0, 0, 0, 0, 579 -NA,NA,"",2021-22,Northampton - Leeds,02100025, 36, 36, 34, 54, 54, 41, 48, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2021-22,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 201, 245, 220, 8, 908 -NA,NA,"",2021-22,Northampton - R. K. Finn Ryan Road,02100029, 0, 37, 35, 45, 43, 45, 40, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 147, 139, 112, 0, 547 -NA,NA,"",2021-22,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 316, 317, 326, 13," 1,269" -NA,NA,"",2021-22,Northborough - Fannie E Proctor,02130015, 0, 38, 40, 53, 40, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2021-22,Northborough - Lincoln Street,02130003, 0, 39, 46, 40, 42, 55, 45, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2021-22,Northborough - Marguerite E Peaslee,02130014, 0, 35, 48, 43, 40, 33, 53, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2021-22,Northborough - Marion E Zeh,02130020, 0, 43, 41, 42, 43, 36, 42, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2021-22,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 192, 175, 162, 0, 0, 0, 0, 0, 529 -NA,NA,"",2021-22,Northbridge - Northbridge Elementary School,02140001, 95, 155, 158, 151, 120, 131, 142, 0, 0, 0, 0, 0, 0, 0, 0, 952 -NA,NA,"",2021-22,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 114, 125, 138, 0, 513 -NA,NA,"",2021-22,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 0, 156, 173, 181, 0, 0, 0, 0, 0, 510 -NA,NA,"",2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 344, 305, 319, 0," 1,307" -NA,NA,"",2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 129, 129, 108, 0, 523 -NA,NA,"",2021-22,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 177, 179, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2021-22,Norton - J C Solmonese,02180015, 108, 91, 107, 98, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2021-22,Norton - L G Nourse Elementary,02180010, 0, 74, 71, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2021-22,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 174, 174, 159, 3, 677 -NA,NA,"",2021-22,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 177, 186, 219, 0, 0, 0, 0, 0, 582 -NA,NA,"",2021-22,Norwell - Grace Farrar Cole,02190005, 22, 76, 96, 87, 85, 84, 75, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2021-22,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 161, 153, 163, 0, 631 -NA,NA,"",2021-22,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 179, 160, 160, 0, 0, 0, 0, 0, 499 -NA,NA,"",2021-22,Norwell - William G Vinal,02190020, 24, 84, 70, 102, 78, 86, 87, 0, 0, 0, 0, 0, 0, 0, 0, 531 -NA,NA,"",2021-22,Norwood - Balch,02200005, 0, 0, 52, 52, 64, 66, 75, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2021-22,Norwood - Charles J Prescott,02200025, 0, 8, 57, 51, 49, 44, 50, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2021-22,Norwood - Cornelius M Callahan,02200010, 0, 0, 35, 39, 50, 50, 49, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 259, 244, 224, 0, 0, 0, 0, 0, 727 -NA,NA,"",2021-22,Norwood - F A Cleveland,02200015, 0, 0, 64, 68, 59, 54, 57, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2021-22,Norwood - George F. Willett,02200075, 106, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2021-22,Norwood - John P Oldham,02200020, 0, 0, 76, 43, 47, 54, 48, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2021-22,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 227, 266, 257, 4, 987 -NA,NA,"",2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 15, 35, 50, 36, 49, 32, 54, 57, 53, 46, 0, 0, 0, 0, 0, 427 -NA,NA,"",2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 148, 145, 128, 0, 563 -NA,NA,"",2021-22,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 152, 175, 195, 4, 677 -NA,NA,"",2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 193, 217, 0, 0, 0, 0, 0, 410 -NA,NA,"",2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 41, 40, 40, 40, 40, 40, 40, 39, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2021-22,Orange - Dexter Park,02230010, 0, 0, 0, 0, 70, 69, 79, 70, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2021-22,Orange - Fisher Hill,02230015, 50, 75, 55, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2021-22,Orleans - Orleans Elementary,02240005, 0, 29, 18, 23, 27, 29, 38, 0, 0, 0, 0, 0, 0, 0, 0, 164 -NA,NA,"",2021-22,Oxford - Alfred M Chaffee,02260010, 0, 106, 77, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2021-22,Oxford - Clara Barton,02260005, 32, 0, 0, 0, 116, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2021-22,Oxford - Oxford High,02260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 105, 103, 97, 90, 9, 530 -NA,NA,"",2021-22,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 147, 130, 123, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2021-22,Palmer - Old Mill Pond,02270008, 39, 94, 105, 73, 96, 108, 106, 0, 0, 0, 0, 0, 0, 0, 0, 621 -NA,NA,"",2021-22,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 83, 91, 112, 77, 63, 64, 70, 5, 565 -NA,NA,"",2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 176, 145, 135, 0, 629 -NA,NA,"",2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 71, 73, 61, 0, 243 -NA,NA,"",2021-22,Peabody - Captain Samuel Brown,02290005, 0, 74, 53, 66, 54, 58, 57, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2021-22,Peabody - Center,02290015, 0, 83, 71, 80, 73, 53, 59, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2021-22,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 437, 463, 493, 0, 0, 0, 0, 0," 1,393" -NA,NA,"",2021-22,Peabody - John E Burke,02290007, 0, 45, 40, 35, 47, 37, 39, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2021-22,Peabody - John E. McCarthy,02290016, 104, 37, 39, 32, 44, 30, 29, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2021-22,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0, 1, 9, 11, 8, 8, 8, 5, 11, 10, 12, 15, 15, 10, 0, 123 -NA,NA,"",2021-22,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 367, 372, 357, 13," 1,455" -NA,NA,"",2021-22,Peabody - South Memorial,02290035, 68, 57, 60, 64, 48, 50, 75, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2021-22,Peabody - Thomas Carroll,02290010, 0, 88, 87, 76, 104, 103, 95, 0, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2021-22,Peabody - West Memorial,02290045, 35, 35, 32, 38, 39, 31, 40, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2021-22,Peabody - William A Welch Sr,02290027, 17, 57, 49, 56, 56, 52, 59, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2021-22,Pelham - Pelham Elementary,02300005, 0, 14, 16, 15, 19, 15, 20, 18, 0, 0, 0, 0, 0, 0, 0, 117 -NA,NA,"",2021-22,Pembroke - Bryantville Elementary,02310003, 0, 68, 58, 59, 70, 63, 61, 62, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2021-22,Pembroke - Hobomock Elementary,02310010, 0, 60, 50, 50, 58, 61, 57, 72, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2021-22,Pembroke - North Pembroke Elementary,02310015, 67, 60, 75, 55, 66, 63, 62, 69, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2021-22,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 213, 199, 0, 0, 0, 0, 0, 412 -NA,NA,"",2021-22,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 189, 193, 196, 8, 785 -NA,NA,"",2021-22,Pentucket - Dr Frederick N Sweetsir,07450020, 27, 68, 57, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2021-22,Pentucket - Dr John C Page School,07450015, 30, 34, 33, 54, 40, 41, 41, 35, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2021-22,Pentucket - Elmer S Bagnall,07450005, 32, 74, 58, 62, 60, 66, 51, 69, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2021-22,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 68, 65, 61, 62, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2021-22,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 183, 146, 0, 0, 0, 0, 0, 329 -NA,NA,"",2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 143, 159, 175, 0, 632 -NA,NA,"",2021-22,Petersham - Petersham Center,02340005, 0, 14, 16, 18, 23, 9, 18, 15, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 4, 37, 29, 0, 138 -NA,NA,"",2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 4, 24, 25, 0, 175 -NA,NA,"",2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 5, 14, 16, 0, 185 -NA,NA,"",2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 63, 60, 62, 63, 63, 64, 63, 65, 63, 59, 50, 47, 53, 0, 775 -NA,NA,"",2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0, 0, 0, 0, 0, 0, 0, 0, 73, 73, 66, 56, 48, 60, 0, 376 -NA,NA,"",2021-22,Pioneer Valley - Bernardston Elementary,07500006, 22, 24, 29, 16, 19, 32, 24, 23, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2021-22,Pioneer Valley - Northfield Elementary,07500008, 17, 21, 29, 21, 26, 28, 29, 32, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 57, 55, 42, 37, 50, 24, 0, 265 -NA,NA,"",2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 44, 44, 44, 45, 43, 44, 65, 58, 52, 44, 28, 21, 40, 0, 572 -NA,NA,"",2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 72, 70, 71, 65, 61, 61, 0, 400 -NA,NA,"",2021-22,Pittsfield - Allendale,02360010, 10, 26, 39, 45, 41, 51, 37, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2021-22,Pittsfield - Crosby,02360065, 19, 39, 51, 38, 38, 49, 46, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2021-22,Pittsfield - Crosby Educational Academy,02360030, 0, 0, 0, 3, 3, 10, 5, 0, 0, 0, 0, 0, 0, 0, 0, 21 -NA,NA,"",2021-22,Pittsfield - Eagle Education Academy,02360525, 0, 0, 0, 0, 0, 0, 0, 3, 3, 2, 7, 5, 2, 2, 0, 24 -NA,NA,"",2021-22,Pittsfield - Egremont,02360035, 10, 77, 51, 64, 80, 75, 68, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2021-22,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 136, 163, 159, 0, 0, 0, 0, 0, 458 -NA,NA,"",2021-22,Pittsfield - Morningside Community School,02360055, 30, 53, 54, 54, 45, 55, 47, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2021-22,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 165, 153, 169, 7, 672 -NA,NA,"",2021-22,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0, 5, 8, 9, 17, 18, 17, 16, 26, 18, 18, 17, 22, 15, 0, 206 -NA,NA,"",2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 11, 27, 23, 22, 23, 27, 26, 0, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2021-22,Pittsfield - Silvio O Conte Community,02360105, 15, 59, 52, 46, 52, 55, 48, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2021-22,Pittsfield - Stearns,02360090, 10, 31, 26, 35, 41, 51, 34, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2021-22,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 211, 200, 186, 0, 832 -NA,NA,"",2021-22,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 138, 176, 160, 0, 0, 0, 0, 0, 474 -NA,NA,"",2021-22,Pittsfield - Williams,02360100, 13, 43, 43, 40, 37, 39, 45, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2021-22,Plainville - Anna Ware Jackson,02380010, 56, 90, 60, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2021-22,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 87, 84, 90, 95, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2021-22,Plymouth - Cold Spring,02390005, 0, 39, 38, 36, 37, 36, 33, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2021-22,Plymouth - Federal Furnace School,02390011, 0, 80, 61, 58, 56, 63, 55, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2021-22,Plymouth - Hedge,02390010, 0, 40, 34, 24, 41, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2021-22,Plymouth - Indian Brook,02390012, 0, 88, 102, 94, 114, 93, 71, 0, 0, 0, 0, 0, 0, 0, 0, 562 -NA,NA,"",2021-22,Plymouth - Manomet Elementary,02390015, 0, 33, 35, 53, 46, 41, 43, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 0, 83, 84, 79, 84, 91, 83, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 253, 315, 330, 0, 0, 0, 0, 0, 898 -NA,NA,"",2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2021-22,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393, 319, 302, 296, 0," 1,310" -NA,NA,"",2021-22,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 271, 260, 256, 0," 1,049" -NA,NA,"",2021-22,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 222, 217, 224, 0, 0, 0, 0, 0, 663 -NA,NA,"",2021-22,Plymouth - South Elementary,02390046, 0, 121, 103, 101, 109, 101, 110, 0, 0, 0, 0, 0, 0, 0, 0, 645 -NA,NA,"",2021-22,Plymouth - West Elementary,02390047, 0, 60, 48, 60, 42, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2021-22,Plympton - Dennett Elementary,02400010, 0, 43, 33, 43, 29, 28, 26, 39, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 38, 61, 65, 85, 91, 92, 92, 80, 89, 92, 86, 81, 82, 62, 0," 1,096" -NA,NA,"",2021-22,Provincetown - Provincetown Schools,02420020, 21, 10, 11, 14, 9, 13, 11, 15, 18, 19, 0, 0, 0, 0, 0, 141 -NA,NA,"",2021-22,Quabbin - Hardwick Elementary,07530005, 22, 30, 21, 31, 28, 28, 25, 0, 0, 0, 0, 0, 0, 0, 0, 185 -NA,NA,"",2021-22,Quabbin - Hubbardston Center,07530010, 36, 38, 45, 45, 40, 52, 46, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2021-22,Quabbin - New Braintree Grade,07530020, 22, 22, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69 -NA,NA,"",2021-22,Quabbin - Oakham Center,07530025, 0, 0, 0, 20, 30, 43, 30, 0, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2021-22,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 140, 129, 160, 8, 619 -NA,NA,"",2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 153, 195, 185, 0, 0, 0, 0, 0, 533 -NA,NA,"",2021-22,Quabbin - Ruggles Lane,07530030, 43, 66, 61, 70, 52, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2021-22,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 90, 98, 72, 0, 341 -NA,NA,"",2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 105, 95, 0, 0, 0, 0, 0, 200 -NA,NA,"",2021-22,Quaboag Regional - Warren Elementary,07780005, 20, 49, 47, 41, 37, 57, 43, 59, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 20, 28, 27, 38, 29, 40, 32, 33, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2021-22,Quincy - Atherton Hough,02430040, 0, 33, 47, 42, 40, 40, 53, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2021-22,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 174, 168, 179, 0, 0, 0, 0, 0, 521 -NA,NA,"",2021-22,Quincy - Beechwood Knoll Elementary,02430020, 0, 55, 55, 55, 55, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2021-22,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 113, 114, 100, 0, 0, 0, 0, 0, 327 -NA,NA,"",2021-22,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 219, 203, 219, 0, 0, 0, 0, 0, 641 -NA,NA,"",2021-22,Quincy - Charles A Bernazzani Elementary,02430025, 0, 63, 52, 58, 59, 57, 48, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2021-22,Quincy - Clifford H Marshall Elementary,02430055, 0, 87, 106, 103, 93, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2021-22,Quincy - Francis W Parker,02430075, 0, 47, 56, 44, 58, 50, 53, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2021-22,Quincy - Lincoln-Hancock Community School,02430035, 0, 132, 107, 105, 89, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2021-22,Quincy - Merrymount,02430060, 0, 56, 51, 48, 68, 58, 43, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2021-22,Quincy - Montclair,02430065, 0, 60, 70, 72, 82, 76, 73, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2021-22,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 366, 328, 338, 24," 1,408" -NA,NA,"",2021-22,Quincy - Point Webster Middle,02430325, 60, 0, 0, 0, 0, 0, 89, 71, 99, 83, 0, 0, 0, 0, 0, 402 -NA,NA,"",2021-22,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 343, 383, 383, 0," 1,465" -NA,NA,"",2021-22,Quincy - Snug Harbor Community School,02430090, 86, 50, 43, 58, 43, 55, 46, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2021-22,Quincy - South West Middle School,02430320, 0, 0, 0, 0, 0, 0, 97, 103, 113, 123, 0, 0, 0, 0, 0, 436 -NA,NA,"",2021-22,Quincy - Squantum,02430095, 0, 58, 46, 65, 61, 61, 69, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2021-22,Quincy - Wollaston School,02430110, 0, 52, 53, 58, 55, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2021-22,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 94, 126, 102, 73, 87, 75, 0, 557 -NA,NA,"",2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 51, 38, 51, 46, 65, 53, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2021-22,Randolph - J F Kennedy Elementary,02440018, 83, 48, 47, 49, 52, 59, 48, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2021-22,Randolph - Margaret L Donovan,02440015, 0, 71, 57, 82, 69, 69, 57, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2021-22,Randolph - Martin E Young Elementary,02440040, 0, 49, 39, 43, 34, 41, 34, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2021-22,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 188, 220, 224, 0, 0, 0, 0, 0, 632 -NA,NA,"",2021-22,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 140, 132, 139, 12, 604 -NA,NA,"",2021-22,Reading - Alice M Barrows,02460002, 0, 51, 56, 61, 61, 68, 54, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2021-22,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 134, 142, 130, 0, 0, 0, 0, 0, 406 -NA,NA,"",2021-22,Reading - Birch Meadow,02460005, 0, 48, 49, 70, 59, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2021-22,Reading - J Warren Killam,02460017, 0, 78, 53, 76, 72, 62, 66, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2021-22,Reading - Joshua Eaton,02460010, 0, 71, 57, 67, 71, 67, 42, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2021-22,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251, 293, 295, 296, 0," 1,135" -NA,NA,"",2021-22,Reading - RISE PreSchool,02460001, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102 -NA,NA,"",2021-22,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 164, 166, 155, 0, 0, 0, 0, 0, 485 -NA,NA,"",2021-22,Reading - Wood End Elementary School,02460020, 0, 43, 31, 46, 46, 39, 43, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2021-22,Revere - A. C. Whelan Elementary School,02480003, 0, 89, 121, 114, 142, 147, 140, 0, 0, 0, 0, 0, 0, 0, 0, 753 -NA,NA,"",2021-22,Revere - Abraham Lincoln,02480025, 62, 88, 85, 79, 82, 88, 88, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2021-22,Revere - Beachmont Veterans Memorial School,02480013, 28, 50, 54, 44, 37, 40, 42, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2021-22,Revere - Garfield Elementary School,02480056, 57, 103, 102, 104, 118, 99, 101, 0, 0, 0, 0, 0, 0, 0, 0, 684 -NA,NA,"",2021-22,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 176, 169, 191, 0, 0, 0, 0, 0, 536 -NA,NA,"",2021-22,Revere - Paul Revere,02480050, 0, 80, 76, 83, 70, 75, 80, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2021-22,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 660, 506, 442, 378, 10," 1,996" -NA,NA,"",2021-22,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 192, 174, 202, 0, 0, 0, 0, 0, 568 -NA,NA,"",2021-22,Revere - Seacoast School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 9, 25, 26, 0, 70 -NA,NA,"",2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 101, 111, 108, 107, 113, 99, 0, 0, 0, 0, 0, 0, 0, 0, 639 -NA,NA,"",2021-22,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 186, 185, 193, 0, 0, 0, 0, 0, 564 -NA,NA,"",2021-22,Richmond - Richmond Consolidated,02490005, 12, 15, 16, 17, 17, 18, 14, 19, 14, 15, 0, 0, 0, 0, 0, 157 -NA,NA,"",2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 89, 92, 92, 91, 73, 66, 75, 77, 0, 655 -NA,NA,"",2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 0, 32, 32, 34, 32, 33, 31, 31, 32, 31, 0, 0, 0, 0, 0, 288 -NA,NA,"",2021-22,Rochester - Rochester Memorial,02500005, 25, 56, 63, 62, 70, 89, 66, 85, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2021-22,Rockland - Jefferson Elementary School,02510060, 0, 45, 40, 34, 59, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2021-22,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 173, 188, 186, 185, 0, 0, 0, 0, 0, 732 -NA,NA,"",2021-22,Rockland - Memorial Park,02510020, 0, 42, 35, 54, 63, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2021-22,Rockland - R Stewart Esten,02510025, 0, 67, 66, 69, 54, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2021-22,Rockland - Rockland Senior High,02510505, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 130, 128, 140, 5, 600 -NA,NA,"",2021-22,Rockport - Rockport Elementary,02520005, 24, 43, 46, 36, 51, 55, 57, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2021-22,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46, 66, 61, 58, 0, 231 -NA,NA,"",2021-22,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 67, 70, 68, 0, 0, 0, 0, 0, 205 -NA,NA,"",2021-22,Rowe - Rowe Elementary,02530005, 7, 4, 7, 12, 6, 11, 13, 5, 0, 0, 0, 0, 0, 0, 0, 65 -NA,NA,"",2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 128, 218, 243, 252, 243, 180, 130, 127, 0," 1,521" -NA,NA,"",2021-22,Salem - Bates,02580003, 34, 44, 42, 56, 57, 59, 62, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2021-22,Salem - Bentley Academy Innovation School,02580010, 0, 51, 62, 55, 48, 50, 48, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2021-22,Salem - Carlton,02580015, 0, 32, 38, 46, 32, 43, 45, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2021-22,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 202, 212, 219, 0, 0, 0, 0, 0, 633 -NA,NA,"",2021-22,Salem - Horace Mann Laboratory,02580030, 37, 33, 42, 45, 50, 44, 42, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2021-22,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 12, 17, 19, 0, 54 -NA,NA,"",2021-22,Salem - Salem Early Childhood,02580001, 96, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 -NA,NA,"",2021-22,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251, 192, 194, 161, 5, 803 -NA,NA,"",2021-22,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 4, 9, 0, 17 -NA,NA,"",2021-22,Salem - Saltonstall School,02580050, 0, 32, 40, 41, 41, 44, 50, 44, 44, 42, 0, 0, 0, 0, 0, 378 -NA,NA,"",2021-22,Salem - Witchcraft Heights,02580070, 0, 73, 63, 83, 74, 91, 89, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 72, 72, 71, 78, 67, 71, 64, 0, 495 -NA,NA,"",2021-22,Sandwich - Forestdale School,02610002, 76, 151, 167, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2021-22,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 197, 180, 169, 191, 0, 0, 0, 0, 0, 0, 0, 737 -NA,NA,"",2021-22,Sandwich - Sandwich High,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 143, 161, 161, 3, 611 -NA,NA,"",2021-22,Sandwich - Sandwich STEM Academy,02610305, 0, 0, 0, 0, 0, 0, 0, 0, 177, 216, 0, 0, 0, 0, 0, 393 -NA,NA,"",2021-22,Saugus - Belmonte STEAM Academy,02620060, 0, 0, 0, 183, 188, 196, 194, 0, 0, 0, 0, 0, 0, 0, 0, 761 -NA,NA,"",2021-22,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 173, 174, 168, 6, 694 -NA,NA,"",2021-22,Saugus - Saugus Middle School,02620305, 0, 0, 0, 0, 0, 0, 0, 201, 193, 214, 0, 0, 0, 0, 0, 608 -NA,NA,"",2021-22,Saugus - Veterans Early Learning Center,02620065, 53, 152, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2021-22,Savoy - Emma L Miller Elementary School,02630010, 3, 6, 5, 6, 6, 10, 7, 8, 0, 0, 0, 0, 0, 0, 0, 51 -NA,NA,"",2021-22,Scituate - Cushing Elementary,02640007, 0, 58, 49, 61, 57, 47, 49, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2021-22,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 206, 200, 192, 0, 0, 0, 0, 0, 598 -NA,NA,"",2021-22,Scituate - Hatherly Elementary,02640010, 0, 34, 39, 43, 49, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2021-22,Scituate - Jenkins Elementary School,02640015, 0, 44, 55, 55, 62, 60, 54, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2021-22,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 208, 186, 266, 0, 862 -NA,NA,"",2021-22,Scituate - Wampatuck Elementary,02640020, 69, 57, 52, 56, 62, 64, 55, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 155, 150, 146, 0, 0, 0, 0, 0, 451 -NA,NA,"",2021-22,Seekonk - George R Martin,02650007, 29, 68, 73, 82, 67, 78, 90, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2021-22,Seekonk - Mildred Aitken School,02650015, 20, 85, 101, 78, 91, 83, 88, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2021-22,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 137, 133, 163, 0, 591 -NA,NA,"",2021-22,Sharon - Cottage Street,02660005, 0, 59, 84, 75, 71, 84, 78, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2021-22,Sharon - East Elementary,02660010, 0, 65, 66, 75, 106, 82, 90, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2021-22,Sharon - Heights Elementary,02660015, 0, 67, 88, 99, 97, 93, 93, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2021-22,Sharon - Sharon Early Childhood Center,02660001, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50 -NA,NA,"",2021-22,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 270, 287, 316, 0," 1,139" -NA,NA,"",2021-22,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 285, 288, 303, 0, 0, 0, 0, 0, 876 -NA,NA,"",2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 344, 296, 320, 0," 1,317" -NA,NA,"",2021-22,Sherborn - Pine Hill,02690010, 11, 63, 60, 70, 62, 59, 78, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2021-22,Shrewsbury - Calvin Coolidge School,02710015, 0, 47, 47, 57, 47, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2021-22,Shrewsbury - Floral Street School,02710020, 0, 106, 85, 107, 102, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 0, 93, 113, 129, 127, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 583 -NA,NA,"",2021-22,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 481, 498, 0, 0, 0, 0, 0, 979 -NA,NA,"",2021-22,Shrewsbury - Parker Road Preschool,02710040, 164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164 -NA,NA,"",2021-22,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 483, 469, 0, 0, 0, 0, 0, 0, 0, 952 -NA,NA,"",2021-22,Shrewsbury - Shrewsbury High School,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 459, 450, 464, 461, 1," 1,835" -NA,NA,"",2021-22,Shrewsbury - Spring Street School,02710035, 0, 44, 50, 59, 82, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2021-22,Shrewsbury - Walter J. Paton School,02710025, 0, 53, 44, 65, 71, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2021-22,Shutesbury - Shutesbury Elementary,02720005, 13, 16, 10, 20, 14, 11, 18, 13, 0, 0, 0, 0, 0, 0, 0, 115 -NA,NA,"",2021-22,Silver Lake - Silver Lake Regional High,07600505, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 252, 266, 261, 7," 1,182" -NA,NA,"",2021-22,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 248, 261, 0, 0, 0, 0, 0, 509 -NA,NA,"",2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 67, 73, 60, 59, 50, 41, 0, 350 -NA,NA,"",2021-22,Somerset - Chace Street,02730005, 0, 43, 46, 50, 66, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2021-22,Somerset - North Elementary,02730008, 52, 67, 62, 59, 71, 68, 88, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2021-22,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 167, 192, 233, 0, 0, 0, 0, 0, 592 -NA,NA,"",2021-22,Somerset - South,02730015, 0, 43, 39, 38, 46, 41, 52, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 260, 239, 246, 7, 996 -NA,NA,"",2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 18, 66, 80, 71, 58, 57, 49, 61, 41, 43, 0, 0, 0, 0, 0, 544 -NA,NA,"",2021-22,Somerville - Arthur D Healey,02740075, 24, 41, 46, 56, 54, 49, 49, 45, 46, 47, 0, 0, 0, 0, 0, 457 -NA,NA,"",2021-22,Somerville - Benjamin G Brown,02740015, 0, 31, 33, 39, 31, 18, 29, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2021-22,Somerville - Capuano Early Childhood Center,02740005, 141, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195 -NA,NA,"",2021-22,Somerville - E Somerville Community,02740111, 0, 60, 77, 77, 89, 82, 78, 84, 72, 78, 0, 0, 0, 0, 0, 697 -NA,NA,"",2021-22,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 13, 15, 12, 0, 52 -NA,NA,"",2021-22,Somerville - John F Kennedy,02740083, 17, 34, 37, 49, 46, 39, 42, 61, 65, 46, 0, 0, 0, 0, 0, 436 -NA,NA,"",2021-22,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 0, 0, 0, 0, 0, 18 -NA,NA,"",2021-22,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 324, 272, 317, 10," 1,304" -NA,NA,"",2021-22,Somerville - West Somerville Neighborhood,02740115, 18, 40, 37, 46, 43, 30, 32, 45, 42, 38, 0, 0, 0, 0, 0, 371 -NA,NA,"",2021-22,Somerville - Winter Hill Community,02740120, 18, 24, 50, 50, 34, 26, 41, 59, 63, 53, 0, 0, 0, 0, 0, 418 -NA,NA,"",2021-22,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 150, 130, 133, 123, 0, 0, 0, 0, 0, 536 -NA,NA,"",2021-22,South Hadley - Mosier,02780020, 0, 0, 0, 111, 147, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2021-22,South Hadley - Plains Elementary,02780015, 62, 128, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2021-22,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 131, 134, 138, 7, 552 -NA,NA,"",2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 222, 201, 195, 0, 850 -NA,NA,"",2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 74, 74, 80, 85, 85, 76, 80, 80, 82, 96, 80, 90, 68, 0," 1,050" -NA,NA,"",2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 168, 162, 155, 0, 655 -NA,NA,"",2021-22,Southampton - William E Norris,02750005, 32, 63, 60, 57, 68, 52, 76, 58, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 144, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2021-22,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 137, 123, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2021-22,Southborough - Mary E Finn School,02760008, 104, 117, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2021-22,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 128, 127, 128, 0, 0, 0, 0, 0, 383 -NA,NA,"",2021-22,Southbridge - Charlton Street,02770005, 0, 1, 0, 72, 56, 76, 77, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2021-22,Southbridge - Eastford Road,02770010, 40, 140, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2021-22,Southbridge - Southbridge Academy,02770525, 0, 0, 0, 0, 0, 0, 0, 2, 3, 8, 11, 9, 2, 7, 0, 42 -NA,NA,"",2021-22,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 122, 99, 75, 0, 443 -NA,NA,"",2021-22,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 127, 129, 151, 0, 0, 0, 0, 0, 407 -NA,NA,"",2021-22,Southbridge - West Street,02770020, 0, 0, 1, 87, 68, 78, 78, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 407, 407, 389, 347, 0," 1,550" -NA,NA,"",2021-22,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 46, 44, 34, 49, 30, 52, 49, 0, 304 -NA,NA,"",2021-22,Southern Berkshire - New Marlborough Central,07650018, 11, 14, 13, 11, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66 -NA,NA,"",2021-22,Southern Berkshire - South Egremont,07650030, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13 -NA,NA,"",2021-22,Southern Berkshire - Undermountain,07650035, 34, 30, 40, 33, 31, 35, 47, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 298, 275, 279, 0," 1,173" -NA,NA,"",2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 96, 86, 103, 107, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 123, 118, 100, 102, 99, 116, 0, 658 -NA,NA,"",2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 43, 85, 94, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2021-22,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 95, 76, 64, 3, 343 -NA,NA,"",2021-22,Spencer-E Brookfield - East Brookfield Elementary,07670008, 82, 25, 14, 24, 17, 22, 22, 21, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2021-22,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 101, 78, 95, 134, 0, 0, 0, 0, 0, 408 -NA,NA,"",2021-22,Spencer-E Brookfield - Wire Village School,07670040, 0, 85, 75, 88, 81, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 72, 29, 37, 45, 36, 38, 46, 27, 35, 31, 0, 0, 0, 0, 0, 396 -NA,NA,"",2021-22,Springfield - Alice B Beal Elementary,02810175, 0, 41, 49, 44, 45, 36, 44, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2021-22,Springfield - Arthur T Talmadge,02810165, 0, 22, 35, 44, 33, 34, 38, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2021-22,Springfield - Brightwood,02810025, 46, 55, 64, 71, 77, 65, 45, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 91, 111, 99, 0, 0, 0, 0, 0, 301 -NA,NA,"",2021-22,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 44, 51, 48, 49, 47, 42, 37, 0, 318 -NA,NA,"",2021-22,Springfield - Daniel B Brunton,02810035, 37, 74, 53, 68, 55, 63, 64, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2021-22,Springfield - Early Childhood Education Center,02810001, 138, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2021-22,Springfield - Edward P. Boland School,02810010, 161, 65, 82, 78, 68, 58, 79, 0, 0, 0, 0, 0, 0, 0, 0, 591 -NA,NA,"",2021-22,Springfield - Elias Brookings,02810030, 35, 42, 33, 47, 44, 42, 56, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2021-22,Springfield - Emergence Academy,02810318, 0, 0, 0, 0, 0, 0, 0, 14, 13, 18, 0, 0, 0, 0, 0, 45 -NA,NA,"",2021-22,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 114, 177, 189, 0, 0, 0, 0, 0, 480 -NA,NA,"",2021-22,Springfield - Frank H Freedman,02810075, 0, 40, 45, 39, 36, 41, 40, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2021-22,Springfield - Frederick Harris,02810080, 64, 78, 77, 74, 89, 114, 80, 0, 0, 0, 0, 0, 0, 0, 0, 576 -NA,NA,"",2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 16, 14, 0, 33 -NA,NA,"",2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 11, 8, 0, 27 -NA,NA,"",2021-22,Springfield - German Gerena Community School,02810195, 88, 62, 99, 79, 85, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2021-22,Springfield - Glenwood,02810065, 0, 47, 37, 50, 49, 58, 43, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2021-22,Springfield - Glickman Elementary,02810068, 0, 40, 35, 53, 52, 54, 51, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2021-22,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 385, 315, 297, 285, 0," 1,282" -NA,NA,"",2021-22,Springfield - Hiram L Dorman,02810050, 0, 51, 34, 36, 43, 47, 40, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2021-22,Springfield - Homer Street,02810085, 0, 67, 72, 56, 62, 47, 65, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2021-22,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 63, 76, 69, 0, 0, 0, 0, 0, 208 -NA,NA,"",2021-22,Springfield - Indian Orchard Elementary,02810100, 59, 85, 75, 76, 73, 76, 74, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2021-22,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 134, 133, 153, 0, 0, 0, 0, 0, 420 -NA,NA,"",2021-22,Springfield - John J Duggan Middle,02810320, 0, 0, 0, 0, 0, 0, 0, 157, 149, 157, 79, 59, 85, 56, 0, 742 -NA,NA,"",2021-22,Springfield - Kensington International School,02810110, 38, 39, 29, 52, 31, 38, 28, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2021-22,Springfield - Kiley Academy,02810316, 0, 0, 0, 0, 0, 0, 0, 119, 92, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2021-22,Springfield - Kiley Prep,02810315, 0, 0, 0, 0, 0, 0, 0, 79, 92, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2021-22,Springfield - Liberty,02810115, 0, 42, 43, 36, 53, 49, 41, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2021-22,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 1, 0, 8 -NA,NA,"",2021-22,Springfield - Lincoln,02810120, 37, 60, 83, 81, 80, 68, 64, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2021-22,Springfield - Lyceum Academy,02810317, 0, 0, 0, 0, 0, 0, 0, 141, 135, 137, 0, 0, 0, 0, 0, 413 -NA,NA,"",2021-22,Springfield - M Marcus Kiley Middle,02810330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 0, 0, 0, 0, 0, 221 -NA,NA,"",2021-22,Springfield - Margaret C Ells,02810060, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129 -NA,NA,"",2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 31, 35, 47, 47, 43, 35, 39, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2021-22,Springfield - Mary M Lynch,02810140, 0, 32, 31, 27, 32, 46, 39, 0, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2021-22,Springfield - Mary M Walsh,02810155, 15, 39, 39, 44, 45, 41, 44, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2021-22,Springfield - Mary O Pottenger,02810145, 21, 52, 58, 76, 70, 67, 60, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2021-22,Springfield - Milton Bradley School,02810023, 64, 70, 73, 62, 77, 83, 81, 0, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2021-22,Springfield - Rebecca M Johnson,02810055, 79, 78, 89, 88, 96, 81, 106, 0, 0, 0, 0, 0, 0, 0, 0, 617 -NA,NA,"",2021-22,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 76, 81, 116, 0, 0, 0, 0, 0, 273 -NA,NA,"",2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 350, 326, 340, 0," 1,384" -NA,NA,"",2021-22,Springfield - Samuel Bowles,02810020, 0, 27, 41, 38, 48, 30, 26, 0, 0, 0, 0, 0, 0, 0, 0, 210 -NA,NA,"",2021-22,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 72, 69, 84, 0, 0, 0, 0, 0, 225 -NA,NA,"",2021-22,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 734, 521, 375, 452, 0," 2,082" -NA,NA,"",2021-22,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 42, 33, 114, 0, 203 -NA,NA,"",2021-22,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328, 262, 261, 248, 0," 1,099" -NA,NA,"",2021-22,Springfield - Springfield International Academy at Johnson,02810215, 0, 0, 0, 0, 4, 4, 10, 0, 0, 0, 0, 0, 0, 0, 0, 18 -NA,NA,"",2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 12, 21, 11, 0, 77 -NA,NA,"",2021-22,Springfield - Springfield Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 2, 1, 11, 0, 0, 0, 0, 0, 14 -NA,NA,"",2021-22,Springfield - Springfield Public Day Elementary School,02810005, 0, 0, 0, 3, 3, 7, 12, 0, 0, 0, 0, 0, 0, 0, 0, 25 -NA,NA,"",2021-22,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 15, 16, 10, 0, 65 -NA,NA,"",2021-22,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 6, 20, 12, 0, 0, 0, 0, 0, 38 -NA,NA,"",2021-22,Springfield - Springfield Realization Academy,02810335, 0, 0, 0, 0, 0, 0, 0, 70, 0, 0, 0, 0, 0, 0, 0, 70 -NA,NA,"",2021-22,Springfield - Springfield Transition Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 125 -NA,NA,"",2021-22,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 99, 92, 90, 0, 0, 0, 0, 0, 281 -NA,NA,"",2021-22,Springfield - Sumner Avenue,02810160, 84, 62, 70, 71, 89, 62, 57, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 92, 96, 98, 96, 71, 75, 79, 1, 608 -NA,NA,"",2021-22,Springfield - The Springfield Virtual School,02810705, 0, 15, 23, 48, 51, 53, 51, 60, 48, 56, 40, 48, 43, 23, 0, 559 -NA,NA,"",2021-22,Springfield - Thomas M Balliet,02810015, 52, 53, 38, 44, 31, 35, 40, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2021-22,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 86, 85, 107, 0, 0, 0, 0, 0, 278 -NA,NA,"",2021-22,Springfield - Warner,02810180, 46, 28, 40, 34, 38, 23, 37, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2021-22,Springfield - Washington,02810185, 49, 60, 56, 58, 52, 64, 47, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2021-22,Springfield - White Street,02810190, 0, 61, 64, 75, 63, 73, 58, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2021-22,Springfield - William N. DeBerry,02810045, 0, 36, 33, 45, 32, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 0, 103, 113, 118, 121, 158, 124, 126, 151, 125, 101, 101, 83, 94, 1," 1,519" -NA,NA,"",2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 54, 56, 54, 54, 55, 54, 54, 52, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2021-22,Stoneham - Colonial Park,02840005, 32, 39, 49, 43, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2021-22,Stoneham - Robin Hood,02840025, 36, 72, 71, 67, 72, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2021-22,Stoneham - South,02840030, 21, 58, 66, 57, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2021-22,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 181, 172, 157, 199, 0, 0, 0, 0, 0, 709 -NA,NA,"",2021-22,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 148, 146, 139, 2, 579 -NA,NA,"",2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 -NA,NA,"",2021-22,Stoughton - Helen Hansen Elementary,02850010, 0, 53, 38, 50, 42, 48, 45, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2021-22,Stoughton - Joseph H Gibbons,02850025, 0, 59, 53, 60, 59, 52, 57, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 78, 50, 59, 53, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2021-22,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 277, 259, 271, 0, 0, 0, 0, 0, 807 -NA,NA,"",2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 25, 60, 48, 44, 36, 32, 45, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2021-22,Stoughton - South Elementary,02850015, 0, 44, 48, 46, 43, 38, 34, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2021-22,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314, 284, 222, 223, 6," 1,049" -NA,NA,"",2021-22,Sturbridge - Burgess Elementary,02870005, 66, 116, 100, 115, 96, 113, 126, 114, 0, 0, 0, 0, 0, 0, 0, 846 -NA,NA,"",2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215, 202, 221, 208, 0, 846 -NA,NA,"",2021-22,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 290, 285, 293, 0, 0, 0, 0, 0, 868 -NA,NA,"",2021-22,Sudbury - General John Nixon Elementary,02880025, 0, 48, 45, 61, 46, 49, 49, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2021-22,Sudbury - Israel Loring School,02880015, 0, 70, 55, 81, 69, 72, 76, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,Sudbury - Josiah Haynes,02880010, 0, 58, 44, 66, 61, 65, 62, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2021-22,Sudbury - Peter Noyes,02880030, 64, 72, 83, 92, 83, 88, 90, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2021-22,Sunderland - Sunderland Elementary,02890005, 15, 21, 14, 24, 28, 28, 27, 31, 0, 0, 0, 0, 0, 0, 0, 188 -NA,NA,"",2021-22,Sutton - Sutton Early Learning,02900003, 20, 82, 92, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2021-22,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 103, 95, 73, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2021-22,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 93, 91, 93, 0, 359 -NA,NA,"",2021-22,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 101, 102, 98, 0, 0, 0, 0, 0, 301 -NA,NA,"",2021-22,Swampscott - Clarke,02910005, 0, 43, 42, 44, 42, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2021-22,Swampscott - Hadley,02910010, 0, 63, 54, 60, 61, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2021-22,Swampscott - Stanley,02910020, 0, 42, 45, 44, 39, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2021-22,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 154, 154, 189, 5, 653 -NA,NA,"",2021-22,Swampscott - Swampscott Middle,02910305, 54, 0, 0, 0, 0, 0, 136, 154, 164, 174, 0, 0, 0, 0, 0, 682 -NA,NA,"",2021-22,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 84, 93, 101, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2021-22,Swansea - Gardner,02920015, 0, 84, 80, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2021-22,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 169, 111, 122, 3, 544 -NA,NA,"",2021-22,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 147, 178, 174, 0, 0, 0, 0, 0, 499 -NA,NA,"",2021-22,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 57, 69, 73, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2021-22,Swansea - Mark G Hoyle Elementary,02920017, 47, 68, 62, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 293, 297, 0, 0, 0, 0, 0, 590 -NA,NA,"",2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 168, 169, 171, 1, 678 -NA,NA,"",2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 137, 113, 117, 0, 521 -NA,NA,"",2021-22,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 232, 241, 266, 0, 0, 0, 0, 0, 0, 739 -NA,NA,"",2021-22,Taunton - East Taunton Elementary,02930010, 0, 111, 91, 97, 99, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2021-22,Taunton - Edmund Hatch Bennett,02930007, 0, 53, 50, 59, 60, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2021-22,Taunton - Edward F. Leddy Preschool,02930005, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2021-22,Taunton - Elizabeth Pole,02930027, 0, 120, 116, 105, 108, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 562 -NA,NA,"",2021-22,Taunton - H H Galligan,02930057, 0, 50, 56, 49, 49, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2021-22,Taunton - James L. Mulcahey Elementary School,02930015, 47, 164, 142, 155, 168, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 817 -NA,NA,"",2021-22,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 148, 158, 153, 0, 0, 0, 0, 0, 0, 459 -NA,NA,"",2021-22,Taunton - Joseph C Chamberlain,02930008, 0, 84, 72, 93, 102, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2021-22,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 219, 207, 234, 0, 0, 0, 0, 0, 0, 660 -NA,NA,"",2021-22,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 60, 0, 72 -NA,NA,"",2021-22,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 662, 528, 548, 490, 483, 9," 2,720" -NA,NA,"",2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 74, 70, 70, 100, 149, 120, 170, 224, 317, 396, 357, 328, 311, 0," 2,686" -NA,NA,"",2021-22,Tewksbury - Heath-Brook,02950010, 0, 94, 95, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2021-22,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 265, 240, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2021-22,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 247, 264, 0, 0, 0, 0, 0, 511 -NA,NA,"",2021-22,Tewksbury - L F Dewing,02950001, 156, 135, 162, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 590 -NA,NA,"",2021-22,Tewksbury - Louise Davy Trahan,02950025, 0, 0, 0, 0, 99, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2021-22,Tewksbury - North Street,02950020, 0, 0, 0, 0, 136, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2021-22,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 198, 197, 229, 4, 802 -NA,NA,"",2021-22,Tisbury - Tisbury Elementary,02960005, 11, 33, 36, 27, 26, 35, 30, 27, 22, 39, 0, 0, 0, 0, 0, 286 -NA,NA,"",2021-22,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 86, 89, 82, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2021-22,Topsfield - Steward Elementary,02980010, 43, 82, 74, 83, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, 249, 222, 232, 0, 939 -NA,NA,"",2021-22,Triton - Newbury Elementary,07730020, 50, 53, 57, 52, 50, 43, 37, 53, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2021-22,Triton - Pine Grove,07730025, 39, 66, 34, 57, 45, 53, 62, 54, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2021-22,Triton - Salisbury Elementary,07730015, 43, 48, 41, 56, 59, 58, 61, 62, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2021-22,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 151, 183, 139, 0, 647 -NA,NA,"",2021-22,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 157, 180, 0, 0, 0, 0, 0, 337 -NA,NA,"",2021-22,Truro - Truro Central,03000005, 23, 17, 12, 12, 14, 15, 16, 2, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2021-22,Tyngsborough - Tyngsborough Elementary,03010020, 65, 122, 111, 114, 128, 122, 144, 0, 0, 0, 0, 0, 0, 0, 0, 806 -NA,NA,"",2021-22,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98, 88, 110, 129, 0, 425 -NA,NA,"",2021-22,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 113, 126, 154, 0, 0, 0, 0, 0, 393 -NA,NA,"",2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 99, 96, 122, 0, 0, 0, 0, 0, 317 -NA,NA,"",2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59, 62, 67, 66, 72, 74, 74, 63, 54, 62, 0, 0, 0, 0, 0, 653 -NA,NA,"",2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0, 12, 11, 9, 11, 5, 9, 0, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 7, 20, 32, 31, 44, 41, 35, 44, 49, 53, 0, 0, 0, 0, 0, 356 -NA,NA,"",2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215, 196, 161, 172, 0, 744 -NA,NA,"",2021-22,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 8, 23, 0, 32 -NA,NA,"",2021-22,Uxbridge - Taft Early Learning Center,03040005, 65, 127, 107, 113, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2021-22,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 121, 118, 103, 93, 2, 553 -NA,NA,"",2021-22,Uxbridge - Whitin Intermediate,03040405, 0, 0, 0, 0, 0, 125, 113, 128, 148, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 74, 105, 97, 104, 0, 0, 0, 0, 0, 380 -NA,NA,"",2021-22,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 136, 113, 116, 0, 0, 0, 0, 0, 365 -NA,NA,"",2021-22,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 54, 79, 70, 86, 0, 0, 0, 0, 0, 289 -NA,NA,"",2021-22,Wachusett - Davis Hill Elementary,07750018, 0, 66, 78, 62, 82, 72, 91, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2021-22,Wachusett - Dawson,07750020, 0, 94, 68, 81, 86, 72, 87, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2021-22,Wachusett - Early Childhood Center,07750001, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2021-22,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 109, 108, 114, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2021-22,Wachusett - Houghton Elementary,07750027, 0, 63, 58, 71, 69, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2021-22,Wachusett - Leroy E.Mayo,07750032, 0, 75, 92, 75, 83, 79, 96, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2021-22,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 255, 245, 242, 0, 0, 0, 0, 0, 742 -NA,NA,"",2021-22,Wachusett - Naquag Elementary School,07750005, 0, 130, 117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2021-22,Wachusett - Paxton Center,07750040, 0, 47, 43, 43, 40, 38, 55, 49, 70, 62, 0, 0, 0, 0, 0, 447 -NA,NA,"",2021-22,Wachusett - Thomas Prince,07750045, 0, 33, 36, 40, 36, 38, 43, 41, 43, 42, 0, 0, 0, 0, 0, 352 -NA,NA,"",2021-22,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 483, 493, 495, 475, 18," 1,964" -NA,NA,"",2021-22,Wakefield - Dolbeare,03050005, 0, 83, 95, 87, 84, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102 -NA,NA,"",2021-22,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 271, 258, 266, 266, 0, 0, 0, 0, 0," 1,061" -NA,NA,"",2021-22,Wakefield - Greenwood,03050020, 0, 41, 44, 45, 43, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2021-22,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 189, 206, 240, 0, 846 -NA,NA,"",2021-22,Wakefield - Walton,03050040, 0, 42, 43, 40, 44, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2021-22,Wakefield - Woodville School,03050015, 0, 83, 108, 82, 74, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,Wales - Wales Elementary,03060005, 17, 12, 15, 17, 10, 12, 14, 21, 0, 0, 0, 0, 0, 0, 0, 118 -NA,NA,"",2021-22,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 118, 116, 142, 0, 0, 0, 0, 0, 376 -NA,NA,"",2021-22,Walpole - Boyden,03070010, 0, 68, 57, 62, 68, 67, 57, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 155, 142, 129, 0, 0, 0, 0, 0, 426 -NA,NA,"",2021-22,Walpole - Elm Street School,03070005, 0, 75, 89, 65, 66, 66, 77, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2021-22,Walpole - Fisher,03070015, 0, 61, 93, 76, 77, 76, 62, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2021-22,Walpole - Old Post Road,03070018, 0, 81, 77, 86, 76, 69, 82, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2021-22,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 260, 254, 282, 6," 1,044" -NA,NA,"",2021-22,Waltham - Douglas MacArthur Elementary School,03080032, 0, 82, 94, 63, 75, 67, 88, 0, 0, 0, 0, 0, 0, 0, 0, 469 -NA,NA,"",2021-22,Waltham - Henry Whittemore Elementary School,03080065, 0, 71, 61, 68, 68, 73, 76, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2021-22,Waltham - James Fitzgerald Elementary School,03080060, 0, 73, 56, 55, 66, 76, 55, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2021-22,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 197, 175, 181, 0, 0, 0, 0, 0, 553 -NA,NA,"",2021-22,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 203, 206, 208, 0, 0, 0, 0, 0, 617 -NA,NA,"",2021-22,Waltham - Northeast Elementary School,03080040, 57, 69, 75, 87, 58, 78, 67, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 0, 49, 51, 58, 67, 56, 53, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 0, 40, 39, 36, 32, 29, 34, 0, 0, 0, 0, 0, 0, 0, 0, 210 -NA,NA,"",2021-22,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 416, 423, 419, 384, 1," 1,643" -NA,NA,"",2021-22,Waltham - William F. Stanley Elementary School,03080005, 60, 60, 53, 49, 57, 41, 61, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2021-22,Ware - Stanley M Koziol Elementary School,03090020, 54, 76, 70, 85, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2021-22,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 97, 102, 107, 70, 62, 54, 4, 496 -NA,NA,"",2021-22,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 79, 78, 98, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2021-22,Wareham - John William Decas,03100003, 65, 190, 163, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 606 -NA,NA,"",2021-22,Wareham - Minot Forest,03100017, 0, 0, 0, 0, 146, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10, 8, 17, 0, 38 -NA,NA,"",2021-22,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 125, 164, 173, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2021-22,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 126, 99, 94, 86, 10, 618 -NA,NA,"",2021-22,Watertown - Cunniff,03140015, 0, 60, 57, 40, 55, 56, 40, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2021-22,Watertown - Hosmer,03140020, 115, 112, 89, 86, 88, 92, 86, 0, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2021-22,Watertown - James Russell Lowell,03140025, 0, 59, 52, 67, 61, 59, 61, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2021-22,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 177, 166, 147, 5, 705 -NA,NA,"",2021-22,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 176, 167, 188, 0, 0, 0, 0, 0, 531 -NA,NA,"",2021-22,Wayland - Claypit Hill School,03150005, 0, 77, 92, 71, 67, 105, 104, 0, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2021-22,Wayland - Happy Hollow School,03150015, 0, 58, 67, 64, 61, 69, 69, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2021-22,Wayland - Loker School,03150020, 0, 62, 65, 70, 64, 68, 45, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2021-22,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 213, 191, 195, 0, 831 -NA,NA,"",2021-22,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 204, 198, 200, 0, 0, 0, 0, 0, 602 -NA,NA,"",2021-22,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 74, 91, 102, 8, 403 -NA,NA,"",2021-22,Webster - Park Avenue Elementary,03160015, 41, 127, 125, 151, 134, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 706 -NA,NA,"",2021-22,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 149, 154, 152, 133, 0, 0, 0, 0, 0, 588 -NA,NA,"",2021-22,Wellesley - Ernest F Upham,03170050, 0, 31, 21, 24, 26, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 165 -NA,NA,"",2021-22,Wellesley - Hunnewell,03170025, 0, 34, 36, 33, 41, 41, 33, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2021-22,Wellesley - John D Hardy,03170020, 0, 34, 33, 34, 36, 35, 41, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2021-22,Wellesley - Joseph E Fiske,03170015, 0, 44, 36, 48, 47, 36, 54, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2021-22,Wellesley - Katharine Lee Bates,03170005, 0, 49, 38, 43, 55, 49, 49, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94 -NA,NA,"",2021-22,Wellesley - Schofield,03170045, 0, 56, 59, 59, 50, 63, 48, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2021-22,Wellesley - Sprague Elementary School,03170048, 0, 39, 34, 47, 53, 65, 65, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2021-22,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 315, 323, 370, 0, 0, 0, 0, 0," 1,008" -NA,NA,"",2021-22,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342, 357, 360, 336, 11," 1,406" -NA,NA,"",2021-22,Wellfleet - Wellfleet Elementary,03180005, 0, 22, 17, 13, 23, 18, 19, 0, 0, 0, 0, 0, 0, 0, 0, 112 -NA,NA,"",2021-22,West Boylston - Major Edwards Elementary,03220005, 37, 74, 44, 65, 61, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 67, 67, 78, 51, 58, 67, 84, 0, 472 -NA,NA,"",2021-22,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 89, 103, 103, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2021-22,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 120, 90, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2021-22,West Bridgewater - Spring Street School,03230005, 52, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 104, 120, 94, 99, 102, 103, 0, 622 -NA,NA,"",2021-22,West Springfield - Cowing Early Childhood,03320001, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 -NA,NA,"",2021-22,West Springfield - John Ashley,03320005, 0, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2021-22,West Springfield - John R Fausey,03320010, 0, 0, 82, 81, 71, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2021-22,West Springfield - Memorial,03320025, 0, 0, 59, 42, 36, 32, 40, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2021-22,West Springfield - Mittineague,03320030, 0, 0, 25, 24, 40, 37, 35, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2021-22,West Springfield - Philip G Coburn,03320007, 0, 40, 79, 89, 70, 88, 97, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2021-22,West Springfield - Tatham,03320040, 0, 0, 58, 48, 62, 51, 51, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2021-22,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 288, 278, 282, 18," 1,185" -NA,NA,"",2021-22,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 302, 283, 292, 0, 0, 0, 0, 0, 877 -NA,NA,"",2021-22,Westborough - Annie E Fales,03210010, 0, 80, 81, 84, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2021-22,Westborough - Elsie A Hastings Elementary,03210025, 133, 78, 98, 83, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2021-22,Westborough - J Harding Armstrong,03210005, 0, 97, 82, 110, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2021-22,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 298, 300, 291, 0, 0, 0, 0, 0, 0, 0, 889 -NA,NA,"",2021-22,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 293, 299, 0, 0, 0, 0, 0, 592 -NA,NA,"",2021-22,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 296, 262, 291, 9," 1,178" -NA,NA,"",2021-22,Westfield - Abner Gibbs,03250020, 0, 30, 31, 34, 34, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2021-22,Westfield - Franklin Ave,03250015, 0, 34, 32, 39, 33, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176 -NA,NA,"",2021-22,Westfield - Highland,03250025, 0, 66, 59, 67, 79, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2021-22,Westfield - Munger Hill,03250033, 0, 55, 64, 62, 74, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2021-22,Westfield - Paper Mill,03250036, 0, 69, 58, 69, 68, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2021-22,Westfield - Southampton Road,03250040, 0, 57, 61, 55, 65, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2021-22,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 266, 265, 300, 10," 1,100" -NA,NA,"",2021-22,Westfield - Westfield Intermediate School,03250075, 0, 0, 0, 0, 0, 0, 328, 341, 0, 0, 0, 0, 0, 0, 0, 669 -NA,NA,"",2021-22,Westfield - Westfield Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 0, 314, 364, 0, 0, 0, 0, 0, 678 -NA,NA,"",2021-22,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 138, 134, 117, 2, 541 -NA,NA,"",2021-22,Westfield - Westfield Virtual School,03250705, 0, 4, 10, 5, 7, 6, 17, 14, 19, 17, 0, 0, 0, 0, 0, 99 -NA,NA,"",2021-22,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 113, 124, 104, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2021-22,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 164, 177, 163, 0, 0, 0, 0, 0, 504 -NA,NA,"",2021-22,Westford - Col John Robinson,03260025, 27, 94, 104, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2021-22,Westford - Day Elementary,03260007, 0, 0, 0, 0, 97, 106, 93, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2021-22,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 106, 108, 120, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2021-22,Westford - Nabnasset,03260015, 30, 98, 127, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2021-22,Westford - Rita E. Miller Elementary School,03260055, 40, 85, 77, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2021-22,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 227, 209, 196, 0, 0, 0, 0, 0, 632 -NA,NA,"",2021-22,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370, 379, 429, 386, 3," 1,567" -NA,NA,"",2021-22,Westhampton - Westhampton Elementary School,03270005, 8, 14, 8, 13, 12, 12, 19, 17, 0, 0, 0, 0, 0, 0, 0, 103 -NA,NA,"",2021-22,Weston - Country,03300010, 19, 69, 60, 82, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2021-22,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 121, 142, 0, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2021-22,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 158, 155, 159, 0, 638 -NA,NA,"",2021-22,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 151, 149, 152, 0, 0, 0, 0, 0, 452 -NA,NA,"",2021-22,Weston - Woodland,03300015, 16, 72, 78, 58, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2021-22,Westport - Alice A Macomber,03310015, 50, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2021-22,Westport - Westport Elementary,03310030, 0, 0, 109, 109, 115, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2021-22,Westport - Westport Middle-High School,03310515, 0, 0, 0, 0, 0, 0, 118, 136, 139, 116, 97, 81, 69, 69, 3, 828 -NA,NA,"",2021-22,Westwood - Deerfield School,03350010, 0, 37, 31, 26, 27, 29, 32, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2021-22,Westwood - Downey,03350012, 1, 49, 47, 46, 65, 51, 47, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2021-22,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 222, 234, 206, 0, 0, 0, 0, 0, 662 -NA,NA,"",2021-22,Westwood - Martha Jones,03350017, 0, 39, 54, 35, 41, 54, 49, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2021-22,Westwood - Paul Hanlon,03350015, 0, 32, 32, 28, 28, 40, 29, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2021-22,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 236, 249, 250, 3, 952 -NA,NA,"",2021-22,Westwood - Westwood Integrated Preschool,03350050, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43 -NA,NA,"",2021-22,Westwood - William E Sheehan,03350025, 0, 44, 50, 42, 58, 44, 50, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2021-22,Weymouth - Abigail Adams Middle School,03360310, 0, 0, 0, 0, 0, 0, 0, 384, 400, 0, 0, 0, 0, 0, 0, 784 -NA,NA,"",2021-22,Weymouth - Academy Avenue,03360005, 0, 50, 47, 52, 47, 56, 68, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2021-22,Weymouth - Frederick C Murphy,03360050, 0, 44, 46, 57, 47, 43, 43, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2021-22,Weymouth - Johnson Early Childhood Center,03360003, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2021-22,Weymouth - Lawrence W Pingree,03360065, 0, 38, 49, 50, 36, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2021-22,Weymouth - Ralph Talbot,03360085, 0, 41, 44, 43, 44, 36, 41, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2021-22,Weymouth - Thomas V Nash,03360060, 0, 29, 33, 37, 30, 38, 34, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 63, 69, 34, 51, 62, 55, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2021-22,Weymouth - Wessagusset,03360110, 0, 61, 63, 46, 54, 62, 50, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2021-22,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 454, 474, 450, 417, 454, 15," 2,264" -NA,NA,"",2021-22,Weymouth - William Seach,03360080, 0, 58, 60, 61, 67, 58, 67, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2021-22,Whately - Whately Elementary,03370005, 15, 14, 17, 19, 16, 13, 15, 12, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2021-22,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 104, 107, 126, 120, 0, 0, 0, 0, 0, 457 -NA,NA,"",2021-22,Whitman-Hanson - Indian Head,07800035, 0, 95, 92, 99, 102, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2021-22,Whitman-Hanson - John H Duval,07800030, 0, 68, 69, 66, 74, 71, 69, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2021-22,Whitman-Hanson - Louise A Conley,07800010, 0, 74, 71, 92, 75, 88, 92, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 239, 295, 286, 13," 1,087" -NA,NA,"",2021-22,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 167, 156, 190, 0, 0, 0, 0, 0, 513 -NA,NA,"",2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 332, 329, 291, 0," 1,282" -NA,NA,"",2021-22,Williamsburg - Anne T. Dunphy School,03400020, 12, 13, 10, 17, 23, 18, 19, 26, 0, 0, 0, 0, 0, 0, 0, 138 -NA,NA,"",2021-22,Wilmington - Boutwell,03420005, 36, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128 -NA,NA,"",2021-22,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 137, 113, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2021-22,Wilmington - Shawsheen Elementary,03420025, 0, 0, 123, 99, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2021-22,Wilmington - West Intermediate,03420080, 0, 0, 0, 0, 0, 119, 94, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2021-22,Wilmington - Wildwood,03420015, 40, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2021-22,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 172, 190, 203, 1, 695 -NA,NA,"",2021-22,Wilmington - Wilmington Middle School,03420330, 0, 0, 0, 0, 0, 0, 0, 238, 189, 256, 0, 0, 0, 0, 0, 683 -NA,NA,"",2021-22,Wilmington - Woburn Street,03420020, 0, 0, 109, 129, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2021-22,Winchendon - Memorial,03430040, 0, 112, 90, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2021-22,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 11, 5, 0, 26 -NA,NA,"",2021-22,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86, 62, 51, 66, 0, 265 -NA,NA,"",2021-22,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 82, 79, 94, 0, 0, 0, 0, 0, 255 -NA,NA,"",2021-22,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 100, 97, 100, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2021-22,Winchendon - Winchendon PreSchool Program,03430010, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72 -NA,NA,"",2021-22,Winchester - Ambrose Elementary,03440045, 0, 65, 49, 62, 59, 53, 57, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2021-22,Winchester - Lincoln Elementary,03440005, 0, 38, 50, 54, 61, 62, 82, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2021-22,Winchester - Lynch Elementary,03440020, 43, 69, 64, 84, 78, 84, 84, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2021-22,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 349, 338, 372, 0, 0, 0, 0, 0," 1,059" -NA,NA,"",2021-22,Winchester - Muraco Elementary,03440040, 0, 51, 40, 68, 57, 62, 67, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2021-22,Winchester - Vinson-Owen Elementary,03440025, 18, 57, 59, 77, 76, 63, 61, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2021-22,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323, 341, 342, 343, 0," 1,349" -NA,NA,"",2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 143, 123, 149, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 41, 147, 140, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2021-22,Winthrop - Winthrop High School,03460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 140, 129, 145, 2, 564 -NA,NA,"",2021-22,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 130, 138, 155, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,Woburn - Clyde Reeves,03470040, 122, 42, 53, 53, 63, 47, 54, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2021-22,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 153, 141, 183, 0, 0, 0, 0, 0, 477 -NA,NA,"",2021-22,Woburn - Goodyear Elementary School,03470005, 0, 60, 38, 58, 53, 36, 56, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 0, 67, 65, 69, 55, 62, 58, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2021-22,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 154, 193, 146, 0, 0, 0, 0, 0, 493 -NA,NA,"",2021-22,Woburn - Linscott-Rumford,03470025, 0, 44, 30, 28, 35, 34, 34, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2021-22,Woburn - Malcolm White,03470055, 0, 47, 44, 47, 46, 56, 51, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2021-22,Woburn - Mary D Altavesta,03470065, 0, 43, 38, 35, 38, 28, 45, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2021-22,Woburn - Shamrock,03470043, 28, 41, 40, 51, 38, 36, 32, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2021-22,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 280, 272, 329, 10," 1,225" -NA,NA,"",2021-22,Worcester - Belmont Street Community,03480020, 44, 71, 79, 65, 92, 69, 58, 67, 0, 0, 0, 0, 0, 0, 0, 545 -NA,NA,"",2021-22,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 356, 330, 0, 0, 0, 0, 0, 686 -NA,NA,"",2021-22,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301, 319, 301, 245, 10," 1,176" -NA,NA,"",2021-22,Worcester - Burncoat Street,03480035, 0, 35, 38, 25, 32, 46, 43, 35, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2021-22,Worcester - Canterbury,03480045, 34, 37, 38, 30, 31, 35, 42, 48, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2021-22,Worcester - Chandler Elementary Community,03480050, 0, 61, 47, 56, 65, 52, 74, 68, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2021-22,Worcester - Chandler Magnet,03480052, 35, 52, 40, 62, 57, 56, 50, 66, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2021-22,Worcester - City View,03480053, 21, 56, 41, 64, 59, 78, 66, 66, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2021-22,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 93, 90, 90, 81, 80, 89, 4, 527 -NA,NA,"",2021-22,Worcester - Clark St Community,03480055, 32, 35, 28, 23, 34, 39, 34, 32, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2021-22,Worcester - Columbus Park,03480060, 20, 52, 41, 65, 51, 58, 52, 38, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2021-22,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331, 324, 313, 352, 11," 1,331" -NA,NA,"",2021-22,Worcester - Elm Park Community,03480095, 0, 59, 47, 49, 63, 52, 70, 58, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2021-22,Worcester - Flagg Street,03480090, 0, 66, 44, 53, 41, 35, 42, 58, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2021-22,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 476, 456, 0, 0, 0, 0, 0, 932 -NA,NA,"",2021-22,Worcester - Francis J McGrath Elementary,03480177, 0, 28, 26, 23, 30, 32, 33, 32, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2021-22,Worcester - Gates Lane,03480110, 54, 80, 59, 72, 64, 72, 58, 56, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2021-22,Worcester - Goddard School/Science Technical,03480100, 24, 61, 44, 50, 45, 55, 46, 53, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2021-22,Worcester - Grafton Street,03480115, 0, 66, 59, 63, 51, 51, 59, 61, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2021-22,Worcester - Head Start,03480002, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2021-22,Worcester - Heard Street,03480136, 0, 32, 35, 28, 35, 46, 29, 33, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2021-22,Worcester - Jacob Hiatt Magnet,03480140, 40, 42, 42, 53, 54, 49, 44, 34, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2021-22,Worcester - La Familia Dual Language School,03480025, 14, 43, 28, 15, 20, 13, 13, 9, 0, 0, 0, 0, 0, 0, 0, 155 -NA,NA,"",2021-22,Worcester - Lake View,03480145, 0, 57, 40, 51, 35, 42, 43, 39, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2021-22,Worcester - Lincoln Street,03480160, 0, 42, 30, 37, 40, 29, 23, 34, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2021-22,Worcester - May Street,03480175, 0, 42, 37, 43, 37, 46, 51, 44, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2021-22,Worcester - Midland Street,03480185, 0, 41, 24, 25, 31, 30, 21, 24, 0, 0, 0, 0, 0, 0, 0, 196 -NA,NA,"",2021-22,Worcester - Nelson Place,03480200, 43, 81, 84, 72, 86, 80, 68, 54, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2021-22,Worcester - Norrback Avenue,03480202, 46, 67, 54, 73, 88, 72, 53, 62, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2021-22,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 321, 293, 309, 21," 1,308" -NA,NA,"",2021-22,Worcester - Quinsigamond,03480210, 22, 96, 91, 103, 83, 98, 87, 75, 0, 0, 0, 0, 0, 0, 0, 655 -NA,NA,"",2021-22,Worcester - Rice Square,03480215, 0, 79, 94, 91, 59, 71, 66, 56, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2021-22,Worcester - Roosevelt,03480220, 64, 54, 59, 69, 69, 42, 63, 60, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2021-22,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418, 422, 319, 350, 15," 1,524" -NA,NA,"",2021-22,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 50, 395, 425, 0, 0, 0, 0, 0, 870 -NA,NA,"",2021-22,Worcester - Tatnuck,03480230, 24, 54, 58, 55, 58, 42, 57, 45, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2021-22,Worcester - Thorndyke Road,03480235, 0, 58, 45, 46, 49, 55, 52, 52, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2021-22,Worcester - Union Hill School,03480240, 0, 49, 66, 47, 51, 60, 55, 55, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2021-22,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 39, 40, 40, 40, 39, 35, 0, 233 -NA,NA,"",2021-22,Worcester - Vernon Hill School,03480280, 35, 70, 45, 65, 66, 57, 80, 51, 0, 0, 0, 0, 0, 0, 0, 469 -NA,NA,"",2021-22,Worcester - Wawecus Road School,03480026, 0, 14, 13, 21, 14, 17, 19, 20, 0, 0, 0, 0, 0, 0, 0, 118 -NA,NA,"",2021-22,Worcester - West Tatnuck,03480260, 45, 40, 40, 48, 43, 57, 37, 30, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2021-22,Worcester - Woodland Academy,03480030, 0, 63, 52, 65, 71, 74, 83, 72, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2021-22,Worcester - Worcester Arts Magnet School,03480225, 21, 53, 50, 48, 55, 46, 41, 46, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2021-22,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 0, 389, 392, 0, 0, 0, 0, 0, 781 -NA,NA,"",2021-22,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 399, 349, 365, 363, 0," 1,476" -NA,NA,"",2021-22,Worthington - R. H. Conwell,03490010, 13, 6, 10, 5, 6, 13, 7, 7, 0, 0, 0, 0, 0, 0, 0, 67 -NA,NA,"",2021-22,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 134, 125, 121, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2021-22,Wrentham - Delaney,03500003, 81, 126, 119, 108, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 117, 116, 120, 118, 117, 115, 117, 114, 111, 97, 99, 98, 86, 0," 1,425" -NA,NA,"",2020-21,Abington - Abington Early Education Program,00010001, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51 -NA,NA,"",2020-21,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 160, 153, 152, 8, 619 -NA,NA,"",2020-21,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 140, 169, 161, 169, 0, 0, 0, 0, 0, 639 -NA,NA,"",2020-21,Abington - Beaver Brook Elementary,00010020, 0, 173, 168, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2020-21,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 144, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 53, 72, 73, 76, 82, 63, 63, 58, 0, 540 -NA,NA,"",2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 406, 465, 450, 426, 4," 1,751" -NA,NA,"",2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 69, 55, 82, 79, 72, 64, 66, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 51, 56, 44, 43, 50, 66, 68, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2020-21,Acton-Boxborough - Luther Conant School,06000030, 0, 34, 57, 66, 67, 73, 47, 50, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 51, 55, 69, 82, 70, 71, 85, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2020-21,Acton-Boxborough - Merriam School,06000010, 0, 47, 58, 58, 59, 70, 71, 70, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 34, 40, 46, 42, 69, 71, 75, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 410, 421, 0, 0, 0, 0, 0, 831 -NA,NA,"",2020-21,Acushnet - Acushnet Elementary School,00030025, 28, 86, 83, 117, 95, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2020-21,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 108, 104, 100, 109, 0, 0, 0, 0, 0, 421 -NA,NA,"",2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 127, 125, 125, 146, 155, 147, 141, 0, 966 -NA,NA,"",2020-21,Agawam - Agawam Early Childhood Center,00050003, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106 -NA,NA,"",2020-21,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 281, 217, 271, 0," 1,050" -NA,NA,"",2020-21,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 307, 275, 0, 0, 0, 0, 0, 582 -NA,NA,"",2020-21,Agawam - Benjamin J Phelps,00050020, 0, 63, 70, 65, 70, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Agawam - Clifford M Granger,00050010, 0, 44, 57, 41, 40, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2020-21,Agawam - James Clark School,00050030, 0, 48, 49, 60, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2020-21,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 254, 272, 1, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2020-21,Agawam - Robinson Park,00050025, 0, 72, 81, 85, 64, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 100, 103, 102, 103, 52, 49, 146, 94, 48, 0, 0, 0, 0, 0, 797 -NA,NA,"",2020-21,Amesbury - Amesbury Elementary,00070005, 14, 67, 54, 68, 47, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2020-21,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 118, 123, 140, 8, 521 -NA,NA,"",2020-21,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 13, 17, 0, 42 -NA,NA,"",2020-21,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 157, 166, 155, 147, 0, 0, 0, 0, 0, 625 -NA,NA,"",2020-21,Amesbury - Charles C Cashman Elementary,00070010, 11, 67, 68, 48, 78, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2020-21,Amherst - Crocker Farm Elementary,00080009, 32, 48, 31, 54, 41, 43, 56, 50, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2020-21,Amherst - Fort River Elementary,00080020, 0, 35, 53, 41, 32, 60, 45, 40, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2020-21,Amherst - Wildwood Elementary,00080050, 0, 44, 50, 51, 59, 54, 60, 50, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2020-21,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 206, 220, 224, 8, 870 -NA,NA,"",2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 210, 203, 0, 0, 0, 0, 0, 413 -NA,NA,"",2020-21,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 437, 437, 408, 446, 28," 1,756" -NA,NA,"",2020-21,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 182, 187, 175, 0, 0, 0, 0, 0, 544 -NA,NA,"",2020-21,Andover - Bancroft Elementary,00090003, 0, 65, 80, 92, 97, 90, 99, 0, 0, 0, 0, 0, 0, 0, 0, 523 -NA,NA,"",2020-21,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 152, 142, 170, 0, 0, 0, 0, 0, 464 -NA,NA,"",2020-21,Andover - Henry C Sanborn Elementary,00090010, 0, 38, 43, 60, 58, 62, 72, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2020-21,Andover - High Plain Elementary,00090004, 0, 70, 76, 106, 87, 87, 91, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2020-21,Andover - Shawsheen School,00090005, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54 -NA,NA,"",2020-21,Andover - South Elementary,00090020, 0, 64, 69, 86, 74, 79, 90, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2020-21,Andover - West Elementary,00090025, 0, 76, 81, 98, 86, 99, 106, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2020-21,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 121, 123, 131, 0, 0, 0, 0, 0, 375 -NA,NA,"",2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 108, 109, 109, 65, 85, 64, 31, 0, 571 -NA,NA,"",2020-21,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 352, 359, 335, 0," 1,409" -NA,NA,"",2020-21,Arlington - Brackett,00100010, 0, 68, 76, 101, 68, 88, 64, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2020-21,Arlington - Cyrus E Dallin,00100025, 0, 59, 63, 79, 74, 80, 70, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2020-21,Arlington - Gibbs School,00100305, 0, 0, 0, 0, 0, 0, 0, 483, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2020-21,Arlington - Hardy,00100030, 0, 56, 67, 66, 69, 78, 69, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2020-21,Arlington - John A Bishop,00100005, 0, 55, 64, 75, 55, 67, 65, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2020-21,Arlington - M Norcross Stratton,00100055, 0, 73, 83, 79, 74, 66, 71, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2020-21,Arlington - Menotomy Preschool,00100038, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65 -NA,NA,"",2020-21,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 0, 456, 436, 0, 0, 0, 0, 0, 892 -NA,NA,"",2020-21,Arlington - Peirce,00100045, 0, 59, 53, 54, 60, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2020-21,Arlington - Thompson,00100050, 0, 83, 78, 79, 67, 90, 82, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 29, 60, 63, 83, 80, 72, 74, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 0, 76, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 165, 132, 172, 12, 647 -NA,NA,"",2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 191, 189, 179, 0, 0, 0, 0, 0, 559 -NA,NA,"",2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 101, 76, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2020-21,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 175, 224, 211, 0, 805 -NA,NA,"",2020-21,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 229, 224, 218, 0, 0, 0, 0, 0, 671 -NA,NA,"",2020-21,Ashland - David Mindess,00140015, 0, 0, 0, 0, 200, 222, 208, 0, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2020-21,Ashland - Henry E Warren Elementary,00140010, 0, 191, 180, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 573 -NA,NA,"",2020-21,Ashland - William Pittaway Elementary,00140005, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50 -NA,NA,"",2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 291, 283, 269, 0," 1,149" -NA,NA,"",2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 46, 85, 91, 96, 107, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 526 -NA,NA,"",2020-21,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 79, 78, 85, 4, 346 -NA,NA,"",2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 95, 95, 116, 111, 0, 0, 0, 0, 0, 417 -NA,NA,"",2020-21,Athol-Royalston - Royalston Community School,06150050, 0, 15, 18, 21, 20, 21, 23, 18, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 110, 110, 110, 109, 110, 110, 110, 110, 110, 58, 87, 76, 86, 0," 1,296" -NA,NA,"",2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 49, 62, 70, 68, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2020-21,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 6, 36, 0, 48 -NA,NA,"",2020-21,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449, 443, 465, 420, 15," 1,792" -NA,NA,"",2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 159, 163, 134, 164, 0, 0, 0, 0, 0, 620 -NA,NA,"",2020-21,Attleboro - Early Learning Center,00160008, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 0, 53, 92, 83, 82, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2020-21,Attleboro - Hyman Fine Elementary School,00160040, 0, 73, 98, 84, 98, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2020-21,Attleboro - Peter Thacher Elementary School,00160050, 0, 90, 97, 86, 89, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2020-21,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 147, 136, 170, 180, 0, 0, 0, 0, 0, 633 -NA,NA,"",2020-21,Attleboro - Thomas Willett Elementary School,00160035, 0, 70, 67, 74, 70, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2020-21,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 150, 134, 159, 135, 0, 0, 0, 0, 0, 578 -NA,NA,"",2020-21,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 213, 218, 202, 0, 0, 0, 0, 0, 633 -NA,NA,"",2020-21,Auburn - Auburn Senior High,00170505, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 201, 176, 171, 5, 787 -NA,NA,"",2020-21,Auburn - Bryn Mawr,00170010, 0, 86, 93, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2020-21,Auburn - Pakachoag School,00170025, 0, 75, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2020-21,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 167, 206, 195, 0, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2020-21,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 0, 59, 61, 53, 49, 50, 39, 0, 311 -NA,NA,"",2020-21,Avon - Ralph D Butler,00180010, 11, 42, 46, 52, 54, 50, 62, 55, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 95, 81, 82, 0, 357 -NA,NA,"",2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 136, 137, 137, 0, 0, 0, 0, 0, 410 -NA,NA,"",2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0, 57, 60, 43, 49, 65, 57, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 51, 61, 82, 77, 79, 75, 80, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2020-21,Barnstable - Barnstable Community Innovation School,00200012, 0, 65, 68, 78, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2020-21,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389, 355, 335, 334, 345, 11," 1,769" -NA,NA,"",2020-21,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 358, 351, 0, 0, 0, 0, 0, 0, 709 -NA,NA,"",2020-21,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 1, 340, 364, 0, 0, 0, 0, 0, 0, 0, 0, 705 -NA,NA,"",2020-21,Barnstable - Centerville Elementary,00200010, 0, 55, 57, 64, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124 -NA,NA,"",2020-21,Barnstable - Hyannis West Elementary,00200025, 0, 67, 61, 71, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Barnstable - West Barnstable Elementary,00200005, 0, 52, 63, 50, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2020-21,Barnstable - West Villages Elementary School,00200045, 0, 88, 93, 96, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 71, 79, 77, 70, 67, 53, 52, 0, 469 -NA,NA,"",2020-21,Bedford - Bedford High,00230505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 209, 230, 183, 0, 829 -NA,NA,"",2020-21,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 205, 200, 206, 0, 0, 0, 0, 0, 611 -NA,NA,"",2020-21,Bedford - Lt Elezer Davis,00230010, 28, 160, 183, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2020-21,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 213, 191, 199, 0, 0, 0, 0, 0, 0, 0, 0, 603 -NA,NA,"",2020-21,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 187, 157, 171, 5, 694 -NA,NA,"",2020-21,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 150, 161, 175, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2020-21,Belchertown - Cold Spring,00240005, 35, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176 -NA,NA,"",2020-21,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 167, 187, 0, 0, 0, 0, 0, 354 -NA,NA,"",2020-21,Belchertown - Swift River Elementary,00240018, 0, 0, 138, 146, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2020-21,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 154, 124, 140, 142, 3, 726 -NA,NA,"",2020-21,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 157, 143, 159, 188, 0, 0, 0, 0, 0, 0, 647 -NA,NA,"",2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 0, 62, 67, 85, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2020-21,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 4, 7, 7, 0, 21 -NA,NA,"",2020-21,Bellingham - Stall Brook,00250025, 0, 63, 63, 54, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2020-21,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 318, 335, 322, 0," 1,309" -NA,NA,"",2020-21,Belmont - Daniel Butler,00260015, 0, 57, 64, 64, 67, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2020-21,Belmont - Mary Lee Burbank,00260010, 0, 57, 76, 84, 74, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2020-21,Belmont - Roger E Wellington,00260035, 48, 72, 109, 102, 114, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 562 -NA,NA,"",2020-21,Belmont - Winn Brook,00260005, 0, 67, 92, 89, 93, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2020-21,Belmont - Winthrop L Chenery Middle,00260305, 0, 0, 0, 0, 0, 0, 335, 365, 367, 343, 0, 0, 0, 0, 0," 1,410" -NA,NA,"",2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 19, 52, 46, 47, 50, 48, 42, 40, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 96, 96, 96, 96, 96, 96, 96, 52, 52, 0, 0, 0, 0, 0, 776 -NA,NA,"",2020-21,Berkley - Berkley Community School,00270010, 41, 77, 95, 86, 75, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2020-21,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 93, 91, 109, 96, 0, 0, 0, 0, 0, 389 -NA,NA,"",2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 64, 68, 67, 51, 43, 47, 32, 0, 372 -NA,NA,"",2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113, 118, 148, 122, 1, 502 -NA,NA,"",2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 15, 68, 60, 66, 53, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 84, 70, 90, 100, 0, 0, 0, 0, 0, 344 -NA,NA,"",2020-21,Berlin-Boylston - Berlin Memorial School,06200005, 11, 33, 29, 27, 30, 30, 30, 0, 0, 0, 0, 0, 0, 0, 0, 190 -NA,NA,"",2020-21,Berlin-Boylston - Boylston Elementary School,06200010, 22, 41, 55, 43, 48, 37, 54, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2020-21,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 74, 92, 77, 85, 72, 74, 82, 0, 556 -NA,NA,"",2020-21,Beverly - Ayers/Ryal Side School,00300055, 0, 70, 65, 58, 152, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2020-21,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 339, 341, 302, 9," 1,286" -NA,NA,"",2020-21,Beverly - Beverly Middle School,00300305, 0, 0, 0, 0, 0, 0, 348, 364, 373, 350, 0, 0, 0, 0, 0," 1,435" -NA,NA,"",2020-21,Beverly - Centerville Elementary,00300010, 0, 48, 58, 48, 44, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2020-21,Beverly - Cove Elementary,00300015, 0, 66, 152, 70, 62, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2020-21,Beverly - Hannah Elementary,00300033, 0, 126, 60, 47, 43, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2020-21,Beverly - McKeown School,00300002, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82 -NA,NA,"",2020-21,Beverly - North Beverly Elementary,00300040, 0, 61, 50, 143, 58, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2020-21,Billerica - Billerica Memorial High School,00310505, 106, 0, 0, 0, 0, 0, 0, 0, 0, 403, 266, 279, 302, 239, 10," 1,605" -NA,NA,"",2020-21,Billerica - Frederick J Dutile,00310007, 0, 57, 47, 52, 49, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2020-21,Billerica - Hajjar Elementary,00310026, 0, 73, 71, 75, 59, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Billerica - John F Kennedy,00310012, 0, 69, 67, 59, 66, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2020-21,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 196, 176, 181, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2020-21,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 200, 193, 204, 0, 0, 0, 0, 0, 0, 597 -NA,NA,"",2020-21,Billerica - Parker,00310015, 0, 78, 85, 72, 79, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2020-21,Billerica - Thomas Ditson,00310005, 0, 94, 94, 106, 111, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 314, 298, 301, 0," 1,231" -NA,NA,"",2020-21,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 88, 76, 113, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2020-21,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 110, 112, 94, 4, 419 -NA,NA,"",2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 112, 132, 145, 0, 0, 0, 0, 0, 389 -NA,NA,"",2020-21,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 25, 88, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2020-21,Blackstone-Millville - Millville Elementary,06220010, 46, 80, 19, 28, 37, 32, 34, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 232, 217, 194, 0, 890 -NA,NA,"",2020-21,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 60, 56, 61, 0, 236 -NA,NA,"",2020-21,Boston - Baldwin Early Learning Center,00350003, 76, 42, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2020-21,Boston - Beethoven,00350021, 42, 76, 73, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2020-21,Boston - Blackstone,00350390, 60, 77, 63, 89, 72, 87, 69, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2020-21,Boston - Boston Adult Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 51, 0, 133 -NA,NA,"",2020-21,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 135, 117, 100, 0, 482 -NA,NA,"",2020-21,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 36, 108, 3, 160 -NA,NA,"",2020-21,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 111, 123, 103, 20, 478 -NA,NA,"",2020-21,Boston - Boston International High School,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 97, 83, 96, 0, 398 -NA,NA,"",2020-21,Boston - Boston Latin,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 419, 417, 424, 430, 378, 415, 0," 2,483" -NA,NA,"",2020-21,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 257, 281, 309, 338, 267, 335, 0," 1,787" -NA,NA,"",2020-21,Boston - Boston Teachers Union School,00350012, 27, 25, 25, 19, 24, 25, 24, 47, 31, 30, 0, 0, 0, 0, 0, 277 -NA,NA,"",2020-21,Boston - Brighton High,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 99, 109, 125, 12, 402 -NA,NA,"",2020-21,Boston - Carter School,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 4, 1, 4, 2, 14, 27 -NA,NA,"",2020-21,Boston - Charles H Taylor,00350054, 18, 31, 47, 59, 61, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2020-21,Boston - Charles Sumner,00350052, 55, 73, 67, 76, 76, 73, 72, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2020-21,Boston - Charlestown High,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 224, 203, 187, 53, 785 -NA,NA,"",2020-21,Boston - Clarence R Edwards Middle,00350430, 0, 0, 0, 0, 0, 0, 0, 0, 89, 117, 0, 0, 0, 0, 0, 206 -NA,NA,"",2020-21,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 16, 18, 2, 51 -NA,NA,"",2020-21,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 86, 94, 86, 3, 334 -NA,NA,"",2020-21,Boston - Condon K-8,00350146, 39, 63, 62, 72, 80, 86, 78, 99, 78, 78, 0, 0, 0, 0, 0, 735 -NA,NA,"",2020-21,Boston - Curley K-8 School,00350020, 86, 83, 87, 87, 96, 99, 93, 110, 89, 83, 0, 0, 0, 0, 0, 913 -NA,NA,"",2020-21,Boston - Curtis Guild,00350062, 20, 28, 31, 37, 39, 33, 32, 36, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2020-21,Boston - Dante Alighieri Montessori School,00350066, 26, 14, 14, 15, 14, 10, 6, 12, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2020-21,Boston - David A Ellis,00350072, 44, 55, 56, 39, 55, 59, 54, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2020-21,Boston - Dearborn,00350074, 0, 0, 0, 0, 0, 0, 0, 79, 91, 89, 90, 85, 88, 56, 0, 578 -NA,NA,"",2020-21,Boston - Dennis C Haley,00350077, 25, 33, 38, 40, 44, 45, 39, 46, 24, 45, 0, 0, 0, 0, 0, 379 -NA,NA,"",2020-21,Boston - Donald Mckay,00350080, 21, 42, 60, 83, 84, 85, 72, 97, 100, 98, 0, 0, 0, 0, 0, 742 -NA,NA,"",2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 46, 27, 33, 33, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2020-21,Boston - Dr. William Henderson Lower,00350266, 68, 64, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198 -NA,NA,"",2020-21,Boston - Dr. William Henderson Upper,00350426, 0, 0, 0, 69, 67, 68, 47, 65, 63, 61, 67, 72, 67, 65, 15, 726 -NA,NA,"",2020-21,Boston - East Boston Early Childhood Center,00350009, 71, 56, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2020-21,Boston - East Boston High,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 292, 293, 247, 16," 1,055" -NA,NA,"",2020-21,Boston - Edison K-8,00350375, 19, 31, 50, 73, 69, 60, 54, 70, 38, 56, 0, 0, 0, 0, 0, 520 -NA,NA,"",2020-21,Boston - Edward Everett,00350088, 10, 33, 40, 40, 39, 43, 37, 43, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2020-21,Boston - ELC - West Zone,00350006, 39, 26, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98 -NA,NA,"",2020-21,Boston - Eliot Elementary,00350096, 58, 81, 81, 81, 94, 90, 97, 105, 44, 50, 0, 0, 0, 0, 0, 781 -NA,NA,"",2020-21,Boston - Ellis Mendell,00350100, 24, 38, 39, 42, 44, 42, 40, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2020-21,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 111, 124, 131, 3, 471 -NA,NA,"",2020-21,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 96, 97, 88, 1, 388 -NA,NA,"",2020-21,Boston - Franklin D Roosevelt,00350116, 36, 31, 37, 41, 37, 46, 38, 49, 43, 46, 0, 0, 0, 0, 0, 404 -NA,NA,"",2020-21,Boston - Gardner Pilot Academy,00350326, 21, 39, 36, 40, 38, 40, 39, 45, 36, 39, 0, 0, 0, 0, 0, 373 -NA,NA,"",2020-21,Boston - George H Conley,00350122, 19, 17, 21, 21, 18, 24, 48, 24, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2020-21,Boston - Greater Egleston Community High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 26, 35, 51, 1, 114 -NA,NA,"",2020-21,Boston - Harvard-Kent,00350200, 42, 45, 50, 50, 45, 49, 51, 56, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2020-21,Boston - Haynes Early Education Center,00350010, 50, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2020-21,Boston - Henry Grew,00350135, 20, 30, 27, 39, 34, 37, 30, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2020-21,Boston - Higginson,00350015, 30, 28, 37, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134 -NA,NA,"",2020-21,Boston - Higginson/Lewis K-8,00350377, 0, 0, 0, 0, 29, 33, 23, 39, 49, 46, 0, 0, 0, 0, 0, 219 -NA,NA,"",2020-21,Boston - Horace Mann School for the Deaf,00350750, 4, 2, 1, 3, 7, 5, 4, 8, 0, 9, 2, 6, 7, 4, 5, 67 -NA,NA,"",2020-21,Boston - Hugh Roe O'Donnell,00350141, 16, 32, 42, 40, 43, 35, 29, 35, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2020-21,Boston - Jackson Mann,00350013, 20, 35, 44, 47, 48, 55, 60, 55, 28, 37, 0, 0, 0, 0, 0, 429 -NA,NA,"",2020-21,Boston - James J Chittick,00350154, 38, 33, 41, 28, 35, 38, 33, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2020-21,Boston - James Otis,00350156, 39, 57, 56, 62, 60, 55, 41, 40, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2020-21,Boston - James P Timilty Middle,00350485, 0, 0, 0, 0, 0, 0, 0, 55, 85, 93, 0, 0, 0, 0, 0, 233 -NA,NA,"",2020-21,Boston - James W Hennigan,00350153, 0, 19, 35, 53, 61, 63, 66, 78, 86, 73, 0, 0, 0, 0, 0, 534 -NA,NA,"",2020-21,Boston - Jeremiah E Burke High,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81, 103, 81, 116, 9, 390 -NA,NA,"",2020-21,Boston - John D Philbrick,00350172, 13, 14, 14, 22, 15, 15, 18, 0, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2020-21,Boston - John F Kennedy,00350166, 26, 47, 47, 54, 58, 58, 57, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2020-21,Boston - John W McCormack,00350179, 0, 0, 0, 0, 0, 0, 0, 66, 79, 105, 0, 0, 0, 0, 0, 250 -NA,NA,"",2020-21,Boston - John Winthrop,00350180, 27, 41, 28, 43, 36, 34, 22, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2020-21,Boston - Joseph J Hurley,00350182, 30, 41, 47, 44, 42, 41, 35, 37, 19, 20, 0, 0, 0, 0, 0, 356 -NA,NA,"",2020-21,Boston - Joseph Lee,00350183, 49, 49, 48, 53, 54, 56, 54, 81, 69, 60, 0, 0, 0, 0, 0, 573 -NA,NA,"",2020-21,Boston - Joseph P Manning,00350184, 12, 22, 22, 25, 25, 25, 20, 24, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2020-21,Boston - Joseph P Tynan,00350181, 29, 45, 38, 40, 20, 28, 26, 23, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2020-21,Boston - Josiah Quincy,00350286, 70, 89, 113, 112, 113, 124, 121, 0, 0, 0, 0, 0, 0, 0, 0, 742 -NA,NA,"",2020-21,Boston - Joyce Kilmer,00350190, 42, 41, 47, 40, 48, 45, 40, 56, 41, 28, 0, 0, 0, 0, 0, 428 -NA,NA,"",2020-21,Boston - King K-8,00350376, 65, 62, 62, 64, 65, 47, 42, 58, 43, 41, 0, 0, 0, 0, 0, 549 -NA,NA,"",2020-21,Boston - Lee Academy,00350001, 47, 46, 33, 32, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2020-21,Boston - Lilla G. Frederick Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 98, 140, 143, 0, 0, 0, 0, 0, 381 -NA,NA,"",2020-21,Boston - Lyndon,00350262, 64, 64, 65, 70, 77, 86, 81, 67, 43, 27, 0, 0, 0, 0, 0, 644 -NA,NA,"",2020-21,Boston - Lyon K-8,00350004, 0, 7, 11, 16, 14, 15, 14, 18, 12, 17, 0, 0, 0, 0, 0, 124 -NA,NA,"",2020-21,Boston - Lyon Upper 9-12,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36, 35, 34, 30, 2, 137 -NA,NA,"",2020-21,Boston - Madison Park High,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 308, 229, 187, 19," 1,043" -NA,NA,"",2020-21,Boston - Manassah E Bradley,00350215, 35, 39, 40, 41, 43, 42, 36, 27, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2020-21,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 86, 86, 73, 0, 315 -NA,NA,"",2020-21,Boston - Mario Umana Academy,00350656, 26, 43, 55, 62, 72, 62, 53, 65, 173, 147, 0, 0, 0, 0, 0, 758 -NA,NA,"",2020-21,Boston - Mather,00350227, 29, 72, 75, 82, 74, 82, 70, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2020-21,Boston - Mattahunt Elementary School,00350016, 69, 70, 80, 80, 69, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2020-21,Boston - Maurice J Tobin,00350229, 16, 37, 34, 42, 50, 51, 43, 48, 49, 38, 0, 0, 0, 0, 0, 408 -NA,NA,"",2020-21,Boston - Michael J Perkins,00350231, 4, 22, 21, 24, 17, 37, 24, 17, 0, 0, 0, 0, 0, 0, 0, 166 -NA,NA,"",2020-21,Boston - Mildred Avenue K-8,00350378, 37, 42, 40, 40, 46, 91, 76, 112, 94, 91, 0, 0, 0, 0, 0, 669 -NA,NA,"",2020-21,Boston - Mission Hill School,00350382, 31, 18, 26, 24, 22, 35, 20, 16, 18, 18, 0, 0, 0, 0, 0, 228 -NA,NA,"",2020-21,Boston - Mozart,00350237, 28, 24, 23, 23, 24, 23, 23, 0, 0, 0, 0, 0, 0, 0, 0, 168 -NA,NA,"",2020-21,Boston - Nathan Hale,00350243, 19, 17, 22, 22, 23, 23, 22, 23, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2020-21,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 46, 50, 116, 103, 87, 78, 1, 481 -NA,NA,"",2020-21,Boston - O W Holmes,00350138, 22, 40, 49, 49, 33, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2020-21,Boston - O'Bryant School Math/Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 158, 169, 323, 357, 285, 332, 0," 1,624" -NA,NA,"",2020-21,Boston - Oliver Hazard Perry,00350255, 22, 23, 25, 22, 30, 25, 20, 22, 0, 14, 0, 0, 0, 0, 0, 203 -NA,NA,"",2020-21,Boston - Orchard Gardens,00350257, 49, 56, 82, 92, 89, 97, 96, 86, 83, 90, 0, 0, 0, 0, 0, 820 -NA,NA,"",2020-21,Boston - Patrick J Kennedy,00350264, 26, 32, 37, 36, 39, 28, 38, 42, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2020-21,Boston - Paul A Dever,00350268, 24, 37, 45, 62, 65, 61, 60, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 31, 37, 25, 35, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2020-21,Boston - Phineas Bates,00350278, 21, 34, 38, 37, 39, 29, 40, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2020-21,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 136, 82, 76, 67, 36, 56, 65, 17, 535 -NA,NA,"",2020-21,Boston - Rafael Hernandez,00350691, 46, 50, 49, 47, 49, 47, 39, 37, 29, 25, 0, 0, 0, 0, 0, 418 -NA,NA,"",2020-21,Boston - Richard J Murphy,00350240, 42, 61, 66, 92, 90, 115, 118, 139, 97, 87, 0, 0, 0, 0, 0, 907 -NA,NA,"",2020-21,Boston - Roger Clap,00350298, 9, 13, 17, 17, 20, 18, 19, 10, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2020-21,Boston - Samuel Adams,00350302, 21, 29, 39, 43, 37, 29, 25, 25, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2020-21,Boston - Samuel W Mason,00350304, 22, 29, 35, 39, 32, 35, 29, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2020-21,Boston - Sarah Greenwood,00350308, 42, 42, 45, 34, 48, 38, 40, 42, 36, 27, 0, 0, 0, 0, 0, 394 -NA,NA,"",2020-21,Boston - Snowden International School at Copley,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 126, 120, 111, 0, 483 -NA,NA,"",2020-21,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 104, 108, 121, 166, 149, 124, 128, 1, 901 -NA,NA,"",2020-21,Boston - The English High,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 154, 119, 132, 13, 518 -NA,NA,"",2020-21,Boston - Thomas J Kenny,00350328, 27, 37, 38, 41, 43, 48, 55, 50, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2020-21,Boston - UP Academy Holland,00350167, 56, 69, 105, 120, 108, 117, 99, 0, 0, 0, 0, 0, 0, 0, 0, 674 -NA,NA,"",2020-21,Boston - Warren-Prescott,00350346, 48, 72, 61, 66, 65, 52, 56, 63, 32, 33, 0, 0, 0, 0, 0, 548 -NA,NA,"",2020-21,Boston - Washington Irving Middle,00350445, 0, 0, 0, 0, 0, 0, 0, 52, 55, 77, 0, 0, 0, 0, 0, 184 -NA,NA,"",2020-21,Boston - William E Russell,00350366, 52, 51, 53, 64, 58, 46, 41, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2020-21,Boston - William Ellery Channing,00350360, 24, 34, 34, 28, 26, 24, 20, 25, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2020-21,Boston - William H Ohrenberger,00350258, 0, 0, 0, 0, 88, 89, 94, 118, 81, 70, 0, 0, 0, 0, 0, 540 -NA,NA,"",2020-21,Boston - William McKinley,00350363, 0, 0, 1, 5, 9, 13, 15, 12, 22, 27, 26, 45, 32, 35, 25, 267 -NA,NA,"",2020-21,Boston - William Monroe Trotter,00350370, 39, 34, 42, 47, 53, 42, 43, 35, 26, 19, 0, 0, 0, 0, 0, 380 -NA,NA,"",2020-21,Boston - Winship Elementary,00350374, 35, 43, 40, 42, 35, 18, 14, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2020-21,Boston - Young Achievers,00350380, 38, 41, 50, 57, 58, 74, 73, 69, 54, 44, 0, 0, 0, 0, 0, 558 -NA,NA,"",2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 88, 97, 106, 95, 91, 93, 80, 73, 0, 723 -NA,NA,"",2020-21,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 52, 26, 205, 0, 356 -NA,NA,"",2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 47, 62, 66, 87, 78, 84, 81, 4, 509 -NA,NA,"",2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 100, 107, 105, 124, 85, 78, 72, 0, 671 -NA,NA,"",2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 117, 125, 140, 141, 139, 120, 102, 59, 0, 0, 0, 0, 0, 0, 0, 943 -NA,NA,"",2020-21,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98, 94, 111, 114, 11, 428 -NA,NA,"",2020-21,Bourne - Bourne Intermediate School,00360030, 0, 0, 0, 0, 141, 128, 155, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2020-21,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 0, 138, 165, 157, 0, 0, 0, 0, 0, 460 -NA,NA,"",2020-21,Bourne - Bournedale Elementary School,00360005, 39, 81, 115, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2020-21,Boxford - Harry Lee Cole,00380005, 27, 78, 105, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2020-21,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 87, 99, 111, 92, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2020-21,Braintree - Archie T Morrison,00400033, 0, 42, 62, 84, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2020-21,Braintree - Braintree High,00400505, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 413, 438, 430, 0," 1,726" -NA,NA,"",2020-21,Braintree - Donald Ross,00400050, 0, 41, 52, 53, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2020-21,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 248, 239, 275, 243, 0, 0, 0, 0, 0," 1,005" -NA,NA,"",2020-21,Braintree - Highlands,00400015, 0, 17, 90, 72, 64, 79, 73, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2020-21,Braintree - Hollis,00400005, 0, 37, 72, 82, 59, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2020-21,Braintree - Liberty,00400025, 0, 0, 62, 68, 64, 72, 99, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2020-21,Braintree - Mary E Flaherty School,00400020, 0, 32, 57, 62, 56, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 0, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2020-21,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 0, 199, 204, 242, 0, 0, 0, 0, 0, 645 -NA,NA,"",2020-21,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 53, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2020-21,Brewster - Stony Brook Elementary,00410005, 18, 67, 64, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31, 40, 38, 37, 40, 40, 35, 30, 27, 20, 0, 0, 0, 0, 0, 338 -NA,NA,"",2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 0, 255, 296, 0, 0, 0, 0, 0, 551 -NA,NA,"",2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305, 327, 355, 372, 11," 1,370" -NA,NA,"",2020-21,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 172, 177, 185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 534 -NA,NA,"",2020-21,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 145, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2020-21,Bridgewater-Raynham - Mitchell Elementary School,06250002, 93, 241, 247, 251, 258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,090" -NA,NA,"",2020-21,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 183, 172, 176, 188, 0, 0, 0, 0, 0, 719 -NA,NA,"",2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 6, 1, 0, 12 -NA,NA,"",2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 0, 239, 222, 236, 0, 0, 0, 0, 0, 0, 0, 697 -NA,NA,"",2020-21,Brimfield - Brimfield Elementary,00430005, 10, 31, 43, 26, 41, 40, 31, 47, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 120, 107, 98, 0, 448 -NA,NA,"",2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, 351, 334, 291, 0," 1,319" -NA,NA,"",2020-21,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 137, 209, 218, 0, 0, 0, 0, 0, 564 -NA,NA,"",2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 145, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152 -NA,NA,"",2020-21,Brockton - Brockton Champion High School,00440515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 30, 22, 28, 27, 137 -NA,NA,"",2020-21,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,044"," 1,171", 905, 895, 31," 4,046" -NA,NA,"",2020-21,Brockton - Brookfield,00440010, 0, 78, 70, 82, 79, 87, 97, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2020-21,Brockton - Downey,00440110, 0, 101, 95, 83, 100, 103, 113, 0, 0, 0, 0, 0, 0, 0, 0, 595 -NA,NA,"",2020-21,Brockton - Dr W Arnone Community School,00440001, 67, 95, 108, 90, 117, 127, 117, 0, 0, 0, 0, 0, 0, 0, 0, 721 -NA,NA,"",2020-21,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 147, 232, 258, 0, 0, 0, 0, 0, 637 -NA,NA,"",2020-21,Brockton - Edgar B Davis,00440023, 0, 100, 99, 89, 121, 119, 106, 131, 122, 124, 0, 0, 0, 0, 0," 1,011" -NA,NA,"",2020-21,Brockton - Edison Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 15, 44, 71, 0, 133 -NA,NA,"",2020-21,Brockton - Frederick Douglass Academy,00440080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 4, 1, 3, 0, 17 -NA,NA,"",2020-21,Brockton - Gilmore Elementary School,00440055, 0, 73, 65, 72, 74, 90, 83, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2020-21,Brockton - Hancock,00440045, 0, 98, 72, 72, 86, 89, 91, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2020-21,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 0, 1, 2, 2, 6, 6, 8, 10, 8, 9, 12, 0, 64 -NA,NA,"",2020-21,Brockton - John F Kennedy,00440017, 0, 85, 79, 92, 91, 87, 108, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2020-21,Brockton - Joseph F. Plouffe Academy,00440422, 0, 0, 0, 0, 0, 0, 0, 225, 248, 263, 0, 0, 0, 0, 0, 736 -NA,NA,"",2020-21,Brockton - Louis F Angelo Elementary,00440065, 0, 100, 101, 101, 109, 190, 189, 0, 0, 0, 0, 0, 0, 0, 0, 790 -NA,NA,"",2020-21,Brockton - Manthala George Jr. School,00440003, 0, 169, 149, 161, 151, 155, 124, 0, 0, 0, 0, 0, 0, 0, 0, 909 -NA,NA,"",2020-21,Brockton - Mary E. Baker School,00440002, 0, 97, 95, 112, 114, 95, 110, 0, 0, 0, 0, 0, 0, 0, 0, 623 -NA,NA,"",2020-21,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 200, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2020-21,Brockton - Oscar F Raymond,00440078, 0, 146, 113, 115, 130, 152, 143, 0, 0, 0, 0, 0, 0, 0, 0, 799 -NA,NA,"",2020-21,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 168, 203, 204, 0, 0, 0, 0, 0, 575 -NA,NA,"",2020-21,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 204, 220, 251, 0, 0, 0, 0, 0, 675 -NA,NA,"",2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 185, 195, 190, 196, 192, 177, 182, 176, 178, 148, 120, 73, 41, 0," 2,053" -NA,NA,"",2020-21,Brookfield - Brookfield Elementary,00450005, 12, 32, 35, 35, 40, 35, 41, 36, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26 -NA,NA,"",2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31 -NA,NA,"",2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28 -NA,NA,"",2020-21,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 490, 515, 503, 18," 2,035" -NA,NA,"",2020-21,Brookline - Edith C Baker,00460005, 0, 64, 76, 68, 77, 72, 69, 86, 52, 86, 0, 0, 0, 0, 0, 650 -NA,NA,"",2020-21,Brookline - Florida Ruffin Ridley School,00460015, 19, 95, 86, 90, 86, 91, 88, 80, 86, 85, 0, 0, 0, 0, 0, 806 -NA,NA,"",2020-21,Brookline - Heath,00460025, 10, 47, 51, 56, 56, 42, 51, 62, 45, 57, 0, 0, 0, 0, 0, 477 -NA,NA,"",2020-21,Brookline - John D Runkle,00460045, 9, 38, 54, 54, 52, 51, 63, 55, 61, 67, 0, 0, 0, 0, 0, 504 -NA,NA,"",2020-21,Brookline - Lawrence,00460030, 0, 69, 70, 68, 74, 59, 72, 61, 56, 61, 0, 0, 0, 0, 0, 590 -NA,NA,"",2020-21,Brookline - Michael Driscoll,00460020, 0, 49, 50, 44, 55, 55, 58, 68, 56, 57, 0, 0, 0, 0, 0, 492 -NA,NA,"",2020-21,Brookline - Pierce,00460040, 0, 70, 67, 77, 85, 72, 84, 93, 92, 69, 0, 0, 0, 0, 0, 709 -NA,NA,"",2020-21,Brookline - The Lynch Center,00460060, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30 -NA,NA,"",2020-21,Brookline - William H Lincoln,00460035, 0, 56, 47, 48, 60, 53, 58, 63, 55, 73, 0, 0, 0, 0, 0, 513 -NA,NA,"",2020-21,Burlington - Burlington High,00480505, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 218, 229, 241, 0, 966 -NA,NA,"",2020-21,Burlington - Fox Hill,00480007, 0, 59, 70, 85, 99, 77, 53, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2020-21,Burlington - Francis Wyman Elementary,00480035, 0, 84, 85, 84, 79, 77, 107, 0, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2020-21,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 256, 239, 256, 0, 0, 0, 0, 0, 751 -NA,NA,"",2020-21,Burlington - Memorial,00480015, 0, 73, 61, 54, 63, 77, 73, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2020-21,Burlington - Pine Glen Elementary,00480020, 0, 44, 53, 59, 45, 66, 44, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2020-21,Cambridge - Amigos School,00490006, 27, 49, 46, 45, 47, 43, 44, 39, 39, 41, 0, 0, 0, 0, 0, 420 -NA,NA,"",2020-21,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428, 478, 476, 451, 14," 1,847" -NA,NA,"",2020-21,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 107, 104, 93, 0, 0, 0, 0, 0, 304 -NA,NA,"",2020-21,Cambridge - Cambridgeport,00490007, 22, 43, 37, 41, 51, 39, 38, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 37, 50, 46, 40, 38, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Cambridge - Graham and Parks,00490080, 23, 46, 51, 53, 49, 55, 45, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2020-21,Cambridge - Haggerty,00490020, 21, 46, 32, 38, 41, 35, 34, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2020-21,Cambridge - John M Tobin,00490065, 81, 41, 40, 41, 33, 33, 38, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2020-21,Cambridge - Kennedy-Longfellow,00490040, 32, 34, 44, 32, 43, 28, 30, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2020-21,Cambridge - King Open,00490035, 29, 72, 57, 51, 52, 42, 55, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2020-21,Cambridge - Maria L. Baldwin,00490005, 54, 60, 50, 56, 48, 48, 38, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2020-21,Cambridge - Martin Luther King Jr.,00490030, 24, 55, 48, 47, 47, 41, 37, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2020-21,Cambridge - Morse,00490045, 58, 49, 35, 39, 39, 38, 44, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2020-21,Cambridge - Peabody,00490050, 40, 46, 45, 42, 46, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2020-21,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 88, 78, 95, 0, 0, 0, 0, 0, 261 -NA,NA,"",2020-21,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 90, 88, 91, 0, 0, 0, 0, 0, 269 -NA,NA,"",2020-21,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 100, 94, 97, 0, 0, 0, 0, 0, 291 -NA,NA,"",2020-21,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 209, 265, 258, 6, 951 -NA,NA,"",2020-21,Canton - Dean S Luce,00500020, 0, 78, 73, 79, 61, 93, 79, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2020-21,Canton - John F Kennedy,00500017, 0, 59, 81, 77, 82, 77, 87, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2020-21,Canton - Lt Peter M Hansen,00500012, 0, 82, 87, 78, 78, 86, 84, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2020-21,Canton - Rodman Early Childhood Center,00500010, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24 -NA,NA,"",2020-21,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 242, 283, 243, 0, 0, 0, 0, 0, 768 -NA,NA,"",2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 84, 84, 82, 0, 0, 0, 0, 0, 250 -NA,NA,"",2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 168, 150, 134, 0, 626 -NA,NA,"",2020-21,Carlisle - Carlisle School,00510025, 9, 53, 51, 63, 68, 68, 58, 66, 78, 65, 0, 0, 0, 0, 0, 579 -NA,NA,"",2020-21,Carver - Carver Elementary School,00520015, 35, 98, 127, 124, 108, 139, 112, 0, 0, 0, 0, 0, 0, 0, 0, 743 -NA,NA,"",2020-21,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 114, 114, 125, 106, 98, 72, 104, 0, 733 -NA,NA,"",2020-21,Central Berkshire - Becket Washington School,06350005, 13, 7, 15, 15, 16, 19, 16, 0, 0, 0, 0, 0, 0, 0, 0, 101 -NA,NA,"",2020-21,Central Berkshire - Craneville,06350025, 0, 55, 74, 62, 73, 70, 62, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2020-21,Central Berkshire - Kittredge,06350035, 28, 19, 21, 18, 21, 24, 15, 0, 0, 0, 0, 0, 0, 0, 0, 146 -NA,NA,"",2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 107, 115, 136, 0, 0, 0, 0, 0, 358 -NA,NA,"",2020-21,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 117, 122, 131, 0, 514 -NA,NA,"",2020-21,Chelmsford - Byam School,00560030, 0, 82, 91, 86, 105, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2020-21,Chelmsford - Center Elementary School,00560005, 0, 86, 84, 106, 102, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2020-21,Chelmsford - Charles D Harrington,00560025, 0, 96, 93, 98, 97, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2020-21,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 335, 342, 373, 0," 1,408" -NA,NA,"",2020-21,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 172, 187, 187, 182, 0, 0, 0, 0, 0, 728 -NA,NA,"",2020-21,Chelmsford - Community Education Center,00560001, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76 -NA,NA,"",2020-21,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 191, 196, 206, 177, 0, 0, 0, 0, 0, 770 -NA,NA,"",2020-21,Chelmsford - South Row,00560015, 0, 86, 81, 91, 87, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2020-21,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432, 449, 325, 240, 9," 1,455" -NA,NA,"",2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 43, 50, 0, 101 -NA,NA,"",2020-21,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 176, 177, 191, 160, 0, 0, 0, 0, 0, 704 -NA,NA,"",2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 0, 0, 100, 131, 148, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 521 -NA,NA,"",2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 116, 133, 145, 127, 0, 0, 0, 0, 0, 521 -NA,NA,"",2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 99, 128, 140, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2020-21,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 94, 112, 100, 98, 30, 39, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2020-21,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 100, 123, 169, 137, 0, 0, 0, 0, 0, 529 -NA,NA,"",2020-21,Chelsea - Shurtleff Early Childhood,00570003, 57, 477, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 637 -NA,NA,"",2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 94, 144, 127, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0, 11, 18, 12, 16, 16, 13, 15, 0, 0, 0, 0, 0, 0, 0, 101 -NA,NA,"",2020-21,Chicopee - Barry,00610003, 0, 54, 63, 56, 61, 71, 72, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2020-21,Chicopee - Belcher,00610010, 0, 62, 87, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2020-21,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 267, 291, 271, 0, 0, 0, 0, 0, 829 -NA,NA,"",2020-21,Chicopee - Bowe,00610015, 0, 63, 61, 70, 81, 86, 67, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2020-21,Chicopee - Bowie,00610020, 0, 38, 41, 41, 41, 53, 62, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 0, 3, 10, 11, 17, 5, 12, 2, 60 -NA,NA,"",2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 294, 245, 303, 0," 1,162" -NA,NA,"",2020-21,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 228, 277, 248, 0, 964 -NA,NA,"",2020-21,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 253, 275, 266, 0, 0, 0, 0, 0, 794 -NA,NA,"",2020-21,Chicopee - Fairview Elementary,00610050, 0, 64, 68, 81, 80, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2020-21,Chicopee - Gen John J Stefanik,00610090, 0, 49, 44, 55, 58, 63, 77, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2020-21,Chicopee - Lambert-Lavoie,00610040, 0, 35, 39, 40, 57, 49, 49, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2020-21,Chicopee - Litwin,00610022, 0, 11, 15, 19, 90, 121, 94, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Chicopee - Streiber Memorial School,00610065, 0, 36, 46, 34, 37, 49, 46, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2020-21,Chicopee - Szetela Early Childhood Center,00610001, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0, 0, 0, 0, 0, 0, 0, 130, 140, 129, 0, 0, 0, 0, 0, 399 -NA,NA,"",2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 74, 67, 89, 0, 299 -NA,NA,"",2020-21,Clarksburg - Clarksburg Elementary,00630010, 0, 18, 15, 20, 30, 13, 22, 20, 30, 22, 0, 0, 0, 0, 0, 190 -NA,NA,"",2020-21,Clinton - Clinton Elementary,00640050, 30, 146, 124, 171, 135, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 755 -NA,NA,"",2020-21,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 0, 140, 133, 165, 143, 0, 0, 0, 0, 0, 581 -NA,NA,"",2020-21,Clinton - Clinton Senior High,00640505, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 120, 103, 121, 1, 491 -NA,NA,"",2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 20, 20, 21, 21, 21, 22, 21, 23, 22, 21, 43, 39, 31, 23, 0, 348 -NA,NA,"",2020-21,Cohasset - Cohasset High School,00650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 116, 103, 125, 0, 447 -NA,NA,"",2020-21,Cohasset - Cohasset Middle School,00650305, 0, 0, 0, 0, 0, 0, 0, 119, 130, 108, 0, 0, 0, 0, 0, 357 -NA,NA,"",2020-21,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 103, 114, 94, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2020-21,Cohasset - Joseph Osgood,00650010, 25, 100, 105, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 77, 84, 116, 122, 116, 120, 100, 121, 90, 29, 40, 0, 0, 0," 1,015" -NA,NA,"",2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 30, 40, 64, 55, 37, 47, 31, 0, 304 -NA,NA,"",2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 34, 40, 40, 43, 44, 42, 41, 43, 35, 38, 0, 0, 0, 0, 0, 400 -NA,NA,"",2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 32, 21, 30, 48, 50, 50, 42, 42, 43, 41, 0, 0, 0, 0, 0, 399 -NA,NA,"",2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 32, 42, 42, 44, 45, 44, 40, 41, 35, 35, 0, 0, 0, 0, 0, 400 -NA,NA,"",2020-21,Concord - Alcott,00670005, 14, 56, 75, 79, 75, 65, 86, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2020-21,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 215, 230, 236, 0, 0, 0, 0, 0, 681 -NA,NA,"",2020-21,Concord - Thoreau,00670020, 12, 56, 74, 72, 82, 73, 72, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2020-21,Concord - Willard,00670030, 11, 63, 68, 69, 72, 71, 75, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 340, 321, 311, 5," 1,316" -NA,NA,"",2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 49, 49, 53, 54, 54, 55, 51, 30, 32, 30, 0, 0, 0, 0, 0, 457 -NA,NA,"",2020-21,Conway - Conway Grammar,00680005, 7, 13, 16, 17, 16, 19, 20, 17, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2020-21,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218, 205, 205, 236, 4, 868 -NA,NA,"",2020-21,Danvers - Great Oak,00710015, 0, 57, 45, 54, 62, 59, 67, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2020-21,Danvers - Highlands,00710010, 0, 58, 66, 60, 63, 59, 61, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2020-21,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 273, 258, 259, 0, 0, 0, 0, 0, 790 -NA,NA,"",2020-21,Danvers - Ivan G Smith,00710032, 0, 54, 53, 55, 45, 50, 51, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2020-21,Danvers - Riverside,00710030, 56, 39, 46, 51, 37, 40, 36, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2020-21,Danvers - Willis E Thorpe,00710045, 31, 56, 46, 41, 49, 57, 47, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2020-21,Dartmouth - Andrew B. Cushman School,00720005, 66, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2020-21,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260, 242, 282, 261, 0," 1,045" -NA,NA,"",2020-21,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 284, 280, 308, 0, 0, 0, 0, 0, 872 -NA,NA,"",2020-21,Dartmouth - George H Potter,00720030, 13, 55, 59, 61, 60, 59, 62, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2020-21,Dartmouth - James M. Quinn School,00720040, 0, 104, 122, 115, 104, 99, 102, 0, 0, 0, 0, 0, 0, 0, 0, 646 -NA,NA,"",2020-21,Dartmouth - Joseph Demello,00720015, 0, 0, 70, 59, 74, 92, 72, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2020-21,Dedham - Avery,00730010, 0, 0, 62, 49, 51, 63, 55, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2020-21,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 172, 170, 177, 8, 690 -NA,NA,"",2020-21,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 203, 209, 247, 0, 0, 0, 0, 0, 659 -NA,NA,"",2020-21,Dedham - Early Childhood Center,00730005, 72, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2020-21,Dedham - Greenlodge,00730025, 0, 0, 63, 52, 47, 39, 35, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2020-21,Dedham - Oakdale,00730030, 0, 0, 63, 36, 48, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2020-21,Dedham - Riverdale,00730045, 0, 0, 29, 46, 29, 34, 32, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2020-21,Deerfield - Deerfield Elementary,00740015, 8, 24, 52, 39, 54, 47, 38, 49, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 1, 228, 148, 170, 156, 178, 0, 881 -NA,NA,"",2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 32, 58, 72, 68, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 45, 55, 51, 61, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 199, 232, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0, 0, 0, 0, 0, 228, 245, 3, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 93, 104, 117, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 10, 98, 65, 87, 91, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 91, 90, 100, 95, 0, 0, 0, 0, 0, 376 -NA,NA,"",2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 169, 178, 220, 6, 753 -NA,NA,"",2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 110, 108, 131, 136, 0, 0, 0, 0, 0, 485 -NA,NA,"",2020-21,Dighton-Rehoboth - Palmer River,06500010, 28, 88, 111, 120, 102, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557 -NA,NA,"",2020-21,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 83, 74, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2020-21,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 75, 94, 93, 0, 346 -NA,NA,"",2020-21,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 89, 86, 101, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Douglas - Douglas Primary School,00770005, 31, 60, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2020-21,Dover - Chickering,00780005, 8, 61, 80, 76, 75, 88, 87, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 161, 164, 169, 4, 674 -NA,NA,"",2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 162, 187, 162, 0, 0, 0, 0, 0, 511 -NA,NA,"",2020-21,Dracut - Brookside Elementary,00790035, 0, 77, 75, 83, 69, 64, 76, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2020-21,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 214, 227, 229, 8, 889 -NA,NA,"",2020-21,Dracut - George H. Englesby Elementary School,00790045, 0, 82, 90, 94, 95, 95, 88, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2020-21,Dracut - Greenmont Avenue,00790030, 0, 44, 50, 44, 44, 41, 60, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2020-21,Dracut - Joseph A Campbell Elementary,00790020, 40, 97, 93, 86, 103, 75, 85, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2020-21,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 294, 303, 323, 0, 0, 0, 0, 0, 920 -NA,NA,"",2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 45, 47, 43, 43, 39, 42, 35, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 42, 123, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 135, 148, 184, 164, 0, 0, 0, 0, 0, 631 -NA,NA,"",2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 99, 122, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 126, 141, 145, 127, 0, 0, 0, 0, 0, 539 -NA,NA,"",2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 142, 131, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 31, 95, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 213, 261, 264, 5," 1,005" -NA,NA,"",2020-21,Duxbury - Alden School,00820004, 0, 0, 0, 0, 194, 195, 217, 0, 0, 0, 0, 0, 0, 0, 0, 606 -NA,NA,"",2020-21,Duxbury - Chandler Elementary,00820006, 29, 185, 170, 175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 559 -NA,NA,"",2020-21,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 241, 226, 249, 1, 959 -NA,NA,"",2020-21,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 194, 227, 245, 0, 0, 0, 0, 0, 666 -NA,NA,"",2020-21,East Bridgewater - Central,00830005, 71, 134, 143, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2020-21,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 178, 172, 143, 164, 160, 151, 0, 968 -NA,NA,"",2020-21,East Bridgewater - Gordon W. Mitchell School,00830010, 0, 0, 0, 0, 165, 149, 164, 149, 0, 0, 0, 0, 0, 0, 0, 627 -NA,NA,"",2020-21,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 193, 204, 188, 0, 0, 0, 0, 0, 585 -NA,NA,"",2020-21,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 221, 206, 172, 2, 804 -NA,NA,"",2020-21,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 103, 76, 96, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2020-21,East Longmeadow - Meadow Brook,00870013, 12, 139, 166, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2020-21,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 87, 91, 92, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2020-21,Eastham - Eastham Elementary,00850005, 22, 21, 30, 28, 29, 34, 30, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2020-21,Easthampton - Center School,00860005, 0, 38, 40, 39, 36, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2020-21,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 101, 111, 108, 2, 419 -NA,NA,"",2020-21,Easthampton - Maple,00860010, 22, 34, 39, 41, 33, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2020-21,Easthampton - Neil A Pepin,00860020, 0, 37, 38, 36, 38, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188 -NA,NA,"",2020-21,Easthampton - White Brook Middle School,00860305, 0, 0, 0, 0, 0, 0, 126, 110, 92, 114, 0, 0, 0, 0, 0, 442 -NA,NA,"",2020-21,Easton - Center School,00880003, 1, 47, 75, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186 -NA,NA,"",2020-21,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 294, 268, 307, 0, 0, 0, 0, 0, 869 -NA,NA,"",2020-21,Easton - Moreau Hall,00880020, 10, 43, 58, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2020-21,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, 286, 286, 274, 14," 1,125" -NA,NA,"",2020-21,Easton - Parkview Elementary,00880015, 46, 56, 89, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2020-21,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 244, 248, 271, 0, 0, 0, 0, 0, 0, 0, 0, 763 -NA,NA,"",2020-21,Edgartown - Edgartown Elementary,00890005, 5, 40, 46, 47, 37, 43, 36, 55, 35, 38, 0, 0, 0, 0, 0, 382 -NA,NA,"",2020-21,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 98, 98, 89, 0, 385 -NA,NA,"",2020-21,Erving - Erving Elementary,00910030, 13, 14, 17, 15, 11, 13, 21, 9, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426, 413, 381, 344, 0," 1,564" -NA,NA,"",2020-21,Everett - Adams School,00930003, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 -NA,NA,"",2020-21,Everett - Devens School,00930030, 0, 1, 0, 2, 5, 3, 6, 3, 10, 6, 6, 6, 6, 3, 0, 57 -NA,NA,"",2020-21,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 556, 526, 524, 454, 1," 2,061" -NA,NA,"",2020-21,Everett - George Keverian School,00930028, 0, 61, 84, 77, 87, 113, 95, 116, 121, 138, 0, 0, 0, 0, 0, 892 -NA,NA,"",2020-21,Everett - Lafayette School,00930038, 0, 88, 107, 96, 102, 94, 120, 121, 131, 132, 0, 0, 0, 0, 0, 991 -NA,NA,"",2020-21,Everett - Madeline English School,00930018, 0, 53, 83, 80, 97, 76, 87, 84, 88, 90, 0, 0, 0, 0, 0, 738 -NA,NA,"",2020-21,Everett - Parlin School,00930058, 0, 69, 109, 105, 109, 94, 88, 112, 106, 123, 0, 0, 0, 0, 0, 915 -NA,NA,"",2020-21,Everett - Sumner G. Whittier School,00930010, 0, 46, 73, 65, 74, 80, 86, 78, 72, 58, 0, 0, 0, 0, 0, 632 -NA,NA,"",2020-21,Everett - Webster Extension,00930001, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142 -NA,NA,"",2020-21,Everett - Webster School,00930015, 0, 45, 76, 65, 62, 57, 42, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 174, 181, 177, 180, 181, 174, 164, 158, 0," 1,389" -NA,NA,"",2020-21,Fairhaven - East Fairhaven,00940010, 9, 46, 38, 46, 52, 70, 68, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2020-21,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 183, 158, 188, 3, 682 -NA,NA,"",2020-21,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 160, 150, 144, 0, 0, 0, 0, 0, 454 -NA,NA,"",2020-21,Fairhaven - Leroy Wood,00940030, 11, 69, 75, 76, 78, 70, 74, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2020-21,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 525, 583, 511, 511, 0," 2,130" -NA,NA,"",2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 100, 107, 111, 125, 107, 142, 0, 0, 0, 0, 0, 0, 0, 0, 692 -NA,NA,"",2020-21,Fall River - Henry Lord Community School,00950017, 35, 75, 102, 92, 82, 92, 68, 82, 87, 84, 0, 0, 0, 0, 0, 799 -NA,NA,"",2020-21,Fall River - James Tansey,00950140, 0, 35, 49, 50, 45, 54, 48, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2020-21,Fall River - John J Doran,00950045, 17, 44, 52, 54, 59, 54, 55, 50, 48, 51, 0, 0, 0, 0, 0, 484 -NA,NA,"",2020-21,Fall River - Letourneau Elementary School,00950013, 26, 69, 82, 83, 90, 93, 99, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2020-21,Fall River - Mary Fonseca Elementary School,00950011, 29, 74, 97, 93, 95, 109, 108, 0, 0, 0, 0, 0, 0, 0, 0, 605 -NA,NA,"",2020-21,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 237, 245, 253, 0, 0, 0, 0, 0, 735 -NA,NA,"",2020-21,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 225, 235, 219, 0, 0, 0, 0, 0, 679 -NA,NA,"",2020-21,Fall River - North End Elementary,00950005, 70, 103, 116, 100, 105, 117, 131, 0, 0, 0, 0, 0, 0, 0, 0, 742 -NA,NA,"",2020-21,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 7, 25, 33, 51, 47, 39, 0, 202 -NA,NA,"",2020-21,Fall River - Samuel Watson,00950145, 0, 45, 37, 47, 46, 38, 37, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2020-21,Fall River - Spencer Borden,00950130, 23, 93, 87, 92, 109, 93, 84, 0, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2020-21,Fall River - Stone PK-12 School,00950340, 0, 0, 0, 2, 3, 3, 7, 6, 8, 10, 9, 10, 6, 2, 0, 66 -NA,NA,"",2020-21,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 184, 198, 168, 0, 0, 0, 0, 0, 550 -NA,NA,"",2020-21,Fall River - William S Greene,00950065, 23, 77, 119, 104, 107, 107, 123, 0, 0, 0, 0, 0, 0, 0, 0, 660 -NA,NA,"",2020-21,Falmouth - East Falmouth Elementary,00960005, 65, 33, 29, 45, 45, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2020-21,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 240, 185, 183, 4, 811 -NA,NA,"",2020-21,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 253, 257, 0, 0, 0, 0, 0, 510 -NA,NA,"",2020-21,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 247, 248, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2020-21,Falmouth - Mullen-Hall,00960020, 0, 72, 88, 83, 83, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2020-21,Falmouth - North Falmouth Elementary,00960030, 0, 45, 59, 62, 82, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2020-21,Falmouth - Teaticket,00960015, 17, 43, 47, 38, 49, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2020-21,Farmington River Reg - Farmington River Elementary,06620020, 18, 16, 17, 10, 12, 14, 10, 10, 0, 0, 0, 0, 0, 0, 0, 107 -NA,NA,"",2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 178, 169, 165, 152, 0, 0, 0, 0, 0, 664 -NA,NA,"",2020-21,Fitchburg - Crocker Elementary,00970016, 23, 74, 116, 130, 100, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2020-21,Fitchburg - Fitchburg High,00970505, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 362, 280, 279, 0," 1,268" -NA,NA,"",2020-21,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 11, 36, 73, 13, 138 -NA,NA,"",2020-21,Fitchburg - McKay Arts Academy,00970340, 19, 72, 76, 76, 72, 68, 75, 77, 61, 61, 0, 0, 0, 0, 0, 657 -NA,NA,"",2020-21,Fitchburg - Memorial Middle School,00970048, 0, 0, 0, 0, 0, 0, 163, 170, 162, 161, 0, 0, 0, 0, 0, 656 -NA,NA,"",2020-21,Fitchburg - Reingold Elementary,00970043, 19, 79, 112, 133, 102, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574 -NA,NA,"",2020-21,Fitchburg - South Street Elementary,00970060, 25, 90, 112, 129, 116, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 593 -NA,NA,"",2020-21,Florida - Abbott Memorial,00980005, 0, 11, 7, 8, 2, 11, 6, 4, 18, 13, 0, 0, 0, 0, 0, 80 -NA,NA,"",2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 38, 37, 35, 37, 40, 28, 0, 215 -NA,NA,"",2020-21,Foxborough - Charles Taylor Elementary,00990050, 0, 51, 57, 44, 38, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2020-21,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189, 188, 197, 183, 11, 768 -NA,NA,"",2020-21,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 164, 173, 215, 209, 0, 0, 0, 0, 0, 761 -NA,NA,"",2020-21,Foxborough - Mabelle M Burrell,00990015, 67, 51, 41, 49, 51, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2020-21,Foxborough - Vincent M Igo Elementary,00990020, 0, 65, 80, 62, 78, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 148, 150, 154, 153, 152, 149, 152, 145, 151, 117, 95, 85, 63, 0," 1,714" -NA,NA,"",2020-21,Framingham - Barbieri Elementary,01000035, 0, 116, 115, 121, 116, 107, 104, 0, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2020-21,Framingham - Brophy,01000006, 0, 84, 72, 87, 63, 65, 75, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2020-21,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 179, 203, 192, 0, 0, 0, 0, 0, 574 -NA,NA,"",2020-21,Framingham - Charlotte A Dunning,01000007, 0, 59, 66, 93, 60, 75, 69, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2020-21,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 661, 654, 554, 516, 0," 2,385" -NA,NA,"",2020-21,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 189, 187, 191, 0, 0, 0, 0, 0, 567 -NA,NA,"",2020-21,Framingham - Hemenway,01000015, 0, 84, 89, 91, 94, 86, 94, 0, 0, 0, 0, 0, 0, 0, 0, 538 -NA,NA,"",2020-21,Framingham - Juniper Hill School,01000001, 195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195 -NA,NA,"",2020-21,Framingham - King Elementary School,01000005, 0, 58, 54, 70, 60, 64, 57, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2020-21,Framingham - Mary E Stapleton Elementary,01000045, 0, 42, 48, 63, 49, 51, 60, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2020-21,Framingham - Miriam F McCarthy School,01000050, 0, 71, 66, 93, 78, 93, 85, 0, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2020-21,Framingham - Potter Road,01000039, 0, 77, 88, 94, 86, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2020-21,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 256, 266, 244, 0, 0, 0, 0, 0, 766 -NA,NA,"",2020-21,Framingham - Woodrow Wilson,01000055, 0, 69, 61, 82, 82, 94, 92, 0, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 64, 75, 68, 68, 66, 58, 0, 399 -NA,NA,"",2020-21,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 92, 131, 125, 0, 0, 0, 0, 0, 348 -NA,NA,"",2020-21,Franklin - Davis Thayer,01010035, 0, 30, 41, 44, 24, 40, 34, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2020-21,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 429, 436, 449, 6," 1,734" -NA,NA,"",2020-21,Franklin - Helen Keller Elementary,01010012, 0, 35, 51, 50, 50, 69, 72, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2020-21,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 118, 131, 166, 0, 0, 0, 0, 0, 415 -NA,NA,"",2020-21,Franklin - J F Kennedy Memorial,01010013, 0, 52, 34, 54, 72, 61, 59, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2020-21,Franklin - Jefferson Elementary,01010010, 0, 52, 37, 61, 69, 49, 60, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2020-21,Franklin - Oak Street Elementary,01010030, 0, 50, 60, 66, 71, 68, 53, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2020-21,Franklin - Parmenter,01010032, 0, 46, 55, 53, 43, 63, 50, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2020-21,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 138, 121, 123, 0, 0, 0, 0, 0, 382 -NA,NA,"",2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 147, 131, 106, 0, 555 -NA,NA,"",2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198, 194, 156, 205, 0, 753 -NA,NA,"",2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 116, 109, 115, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 33, 83, 105, 93, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 202, 229, 234, 1, 0, 0, 0, 0, 666 -NA,NA,"",2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 200, 217, 2, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2020-21,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 114, 126, 99, 99, 102, 103, 6, 649 -NA,NA,"",2020-21,Gardner - Elm Street School,01030001, 0, 0, 0, 145, 167, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 31, 40, 29, 0, 114 -NA,NA,"",2020-21,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 170, 106, 111, 130, 9, 731 -NA,NA,"",2020-21,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 177, 191, 176, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2020-21,Gardner - Waterford Street,01030020, 56, 153, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2020-21,Gateway - Chester Elementary,06720059, 10, 13, 11, 17, 16, 14, 21, 0, 0, 0, 0, 0, 0, 0, 0, 102 -NA,NA,"",2020-21,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 50, 39, 53, 3, 194 -NA,NA,"",2020-21,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 0, 69, 58, 0, 0, 0, 0, 0, 127 -NA,NA,"",2020-21,Gateway - Littleville Elementary School,06720143, 16, 33, 38, 35, 56, 37, 38, 77, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2020-21,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 83, 91, 89, 0, 337 -NA,NA,"",2020-21,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 116, 88, 0, 0, 0, 0, 0, 204 -NA,NA,"",2020-21,Georgetown - Penn Brook,01050010, 0, 83, 105, 104, 99, 91, 96, 82, 0, 0, 0, 0, 0, 0, 0, 660 -NA,NA,"",2020-21,Georgetown - Perley Elementary,01050005, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17 -NA,NA,"",2020-21,Gill-Montague - Gill Elementary,06740005, 0, 13, 12, 14, 18, 19, 16, 19, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2020-21,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 52, 82, 76, 0, 0, 0, 0, 0, 210 -NA,NA,"",2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 34, 42, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2020-21,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 56, 57, 46, 56, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2020-21,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 38, 39, 58, 6, 190 -NA,NA,"",2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 89, 89, 91, 90, 39, 47, 34, 24, 0, 503 -NA,NA,"",2020-21,Gloucester - Beeman Memorial,01070010, 0, 53, 60, 52, 45, 53, 49, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2020-21,Gloucester - East Gloucester Elementary,01070020, 0, 35, 26, 36, 23, 27, 44, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2020-21,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 202, 193, 159, 7, 819 -NA,NA,"",2020-21,Gloucester - Gloucester PreSchool,01070025, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66 -NA,NA,"",2020-21,Gloucester - Plum Cove School,01070042, 0, 39, 31, 36, 32, 34, 33, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 206, 201, 199, 0, 0, 0, 0, 0, 606 -NA,NA,"",2020-21,Gloucester - Veterans Memorial,01070045, 0, 39, 42, 27, 28, 39, 38, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2020-21,Gloucester - West Parish,01070050, 0, 58, 60, 51, 71, 55, 59, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 1, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 4 -NA,NA,"",2020-21,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 234, 240, 183, 5, 875 -NA,NA,"",2020-21,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 246, 267, 0, 0, 0, 0, 0, 513 -NA,NA,"",2020-21,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 95, 124, 136, 132, 143, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2020-21,Grafton - North Grafton Elementary,01100025, 44, 100, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2020-21,Grafton - North Street Elementary School,01100030, 0, 0, 0, 98, 111, 102, 112, 143, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2020-21,Grafton - South Grafton Elementary,01100005, 42, 104, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2020-21,Granby - East Meadow,01110004, 24, 47, 54, 65, 52, 43, 58, 45, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2020-21,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 51, 51, 49, 58, 65, 54, 0, 328 -NA,NA,"",2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374, 367, 359, 352, 0," 1,452" -NA,NA,"",2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 420, 428, 400, 386, 0," 1,634" -NA,NA,"",2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 596, 584, 560, 538, 18," 2,296" -NA,NA,"",2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 567, 527, 521, 498, 0," 2,113" -NA,NA,"",2020-21,Greenfield - Discovery School at Four Corners,01140025, 0, 47, 48, 34, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2020-21,Greenfield - Federal Street School,01140010, 0, 35, 31, 43, 47, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2020-21,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 95, 88, 103, 78, 0, 480 -NA,NA,"",2020-21,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 122, 119, 119, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2020-21,Greenfield - Newton School,01140035, 0, 39, 62, 44, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54 -NA,NA,"",2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0, 32, 37, 40, 51, 46, 48, 55, 101, 109, 132, 112, 87, 93, 0, 943 -NA,NA,"",2020-21,Groton-Dunstable - Boutwell School,06730001, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37 -NA,NA,"",2020-21,Groton-Dunstable - Florence Roche School,06730010, 0, 80, 98, 109, 110, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 168, 188, 189, 5, 721 -NA,NA,"",2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 155, 197, 172, 182, 0, 0, 0, 0, 0, 706 -NA,NA,"",2020-21,Groton-Dunstable - Swallow/Union School,06730005, 0, 47, 57, 60, 62, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2020-21,Hadley - Hadley Elementary,01170015, 18, 36, 28, 35, 26, 31, 39, 35, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2020-21,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 44, 48, 50, 38, 36, 42, 0, 258 -NA,NA,"",2020-21,Halifax - Halifax Elementary,01180005, 0, 67, 60, 82, 99, 100, 80, 81, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 38, 33, 44, 36, 34, 38, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2020-21,Hamilton-Wenham - Cutler School,06750010, 0, 30, 37, 40, 60, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 129, 131, 140, 0, 524 -NA,NA,"",2020-21,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 136, 127, 130, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,Hamilton-Wenham - Winthrop School,06750015, 31, 54, 52, 38, 38, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 86, 85, 88, 83, 87, 56, 55, 0, 540 -NA,NA,"",2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0, 0, 0, 0, 0, 0, 0, 54, 71, 68, 59, 41, 27, 0, 0, 320 -NA,NA,"",2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 27, 35, 48, 38, 45, 41, 41, 20, 15, 14, 0, 0, 0, 0, 0, 324 -NA,NA,"",2020-21,Hampden-Wilbraham - Mile Tree Elementary,06800025, 58, 121, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 246, 276, 242, 0," 1,025" -NA,NA,"",2020-21,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 156, 163, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 147, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 176, 201, 205, 0, 0, 0, 0, 0, 582 -NA,NA,"",2020-21,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 128, 117, 101, 99, 135, 98, 5, 683 -NA,NA,"",2020-21,Hancock - Hancock Elementary,01210005, 5, 5, 9, 7, 4, 9, 6, 12, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2020-21,Hanover - Cedar Elementary,01220004, 52, 192, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2020-21,Hanover - Center Elementary,01220005, 0, 0, 0, 204, 176, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 589 -NA,NA,"",2020-21,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 175, 188, 212, 5, 762 -NA,NA,"",2020-21,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 197, 212, 183, 216, 0, 0, 0, 0, 0, 808 -NA,NA,"",2020-21,Harvard - Bromfield,01250505, 0, 0, 0, 0, 0, 0, 0, 77, 86, 85, 85, 71, 92, 97, 0, 593 -NA,NA,"",2020-21,Harvard - Hildreth Elementary School,01250005, 22, 47, 61, 58, 78, 67, 80, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2020-21,Hatfield - Hatfield Elementary,01270005, 12, 17, 29, 33, 23, 38, 27, 37, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2020-21,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 33, 35, 22, 25, 41, 25, 0, 181 -NA,NA,"",2020-21,Haverhill - Bradford Elementary,01280008, 0, 96, 107, 102, 111, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 0, 61, 92, 83, 89, 73, 157, 167, 172, 179, 0, 0, 0, 0, 0," 1,073" -NA,NA,"",2020-21,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 0, 0, 38, 234, 216, 224, 0, 0, 0, 0, 0, 712 -NA,NA,"",2020-21,Haverhill - Crowell,01280515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 8, 4, 0, 23 -NA,NA,"",2020-21,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 122, 185, 143, 141, 0, 0, 0, 0, 0, 591 -NA,NA,"",2020-21,Haverhill - Golden Hill,01280026, 0, 74, 86, 93, 107, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2020-21,Haverhill - Greenleaf Academy,01280033, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 10, 2, 6, 7, 0, 36 -NA,NA,"",2020-21,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 519, 439, 398, 470, 26," 1,852" -NA,NA,"",2020-21,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 113, 112, 140, 147, 0, 0, 0, 0, 0, 512 -NA,NA,"",2020-21,Haverhill - Moody,01280045, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0, 72, 81, 92, 139, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2020-21,Haverhill - Silver Hill Elementary School,01280067, 0, 71, 84, 75, 96, 124, 118, 0, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2020-21,Haverhill - TEACH,01280073, 0, 0, 1, 2, 3, 0, 2, 5, 2, 1, 1, 2, 1, 1, 7, 28 -NA,NA,"",2020-21,Haverhill - Tilton,01280075, 0, 66, 86, 116, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2020-21,Haverhill - Tilton Upper Middle School,01280105, 0, 0, 0, 0, 0, 89, 93, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2020-21,Haverhill - Walnut Square,01280080, 0, 32, 48, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2020-21,Hawlemont - Hawlemont Regional,06850005, 13, 13, 11, 13, 12, 23, 16, 17, 0, 0, 0, 0, 0, 0, 0, 118 -NA,NA,"",2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 33, 80, 80, 0, 0, 0, 0, 0, 193 -NA,NA,"",2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 35, 32, 33, 34, 40, 34, 31, 32, 32, 0, 0, 0, 0, 0, 303 -NA,NA,"",2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 20, 21, 22, 22, 30, 31, 32, 0, 0, 0, 0, 0, 218 -NA,NA,"",2020-21,Hingham - East Elementary School,01310005, 27, 47, 51, 60, 63, 68, 81, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2020-21,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 332, 327, 317, 4," 1,286" -NA,NA,"",2020-21,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 298, 336, 291, 0, 0, 0, 0, 0, 925 -NA,NA,"",2020-21,Hingham - Plymouth River,01310019, 0, 46, 60, 54, 65, 63, 75, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2020-21,Hingham - South Elementary,01310020, 0, 64, 71, 87, 88, 82, 86, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2020-21,Hingham - Wm L Foster Elementary,01310010, 0, 58, 72, 74, 76, 86, 79, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2020-21,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 89, 101, 96, 96, 78, 67, 57, 5, 589 -NA,NA,"",2020-21,Holbrook - John F Kennedy,01330018, 37, 87, 110, 117, 106, 116, 106, 0, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2020-21,Holland - Holland Elementary,01350005, 11, 20, 18, 26, 33, 29, 26, 31, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2020-21,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 199, 212, 201, 5, 811 -NA,NA,"",2020-21,Holliston - Miller School,01360007, 0, 0, 0, 0, 213, 224, 229, 0, 0, 0, 0, 0, 0, 0, 0, 666 -NA,NA,"",2020-21,Holliston - Placentino Elementary,01360010, 61, 176, 192, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598 -NA,NA,"",2020-21,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 227, 222, 230, 0, 0, 0, 0, 0, 679 -NA,NA,"",2020-21,Holyoke - E N White Elementary,01370045, 76, 64, 68, 69, 48, 54, 50, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2020-21,Holyoke - H.B. Lawrence School,01370070, 0, 39, 52, 45, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178 -NA,NA,"",2020-21,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 380, 378, 447, 0," 1,566" -NA,NA,"",2020-21,Holyoke - Holyoke STEM Academy,01370320, 0, 0, 0, 0, 0, 0, 0, 95, 56, 97, 0, 0, 0, 0, 0, 248 -NA,NA,"",2020-21,Holyoke - Joseph Metcalf School,01370003, 31, 39, 42, 41, 38, 41, 34, 32, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2020-21,Holyoke - Kelly Elementary,01370040, 17, 52, 58, 53, 51, 57, 0, 0, 0, 48, 0, 0, 0, 0, 0, 336 -NA,NA,"",2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 23, 34, 45, 45, 37, 64, 51, 52, 60, 50, 0, 0, 0, 0, 0, 461 -NA,NA,"",2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 25, 27, 40, 27, 43, 45, 29, 41, 43, 43, 0, 0, 0, 0, 0, 363 -NA,NA,"",2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 32, 51, 46, 58, 53, 50, 47, 0, 42, 44, 0, 0, 0, 0, 0, 423 -NA,NA,"",2020-21,Holyoke - Morgan Full Service Community School,01370025, 62, 43, 49, 41, 39, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Holyoke - Veritas Prep Holyoke,01370075, 0, 0, 0, 0, 0, 0, 101, 100, 119, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2020-21,Holyoke - William R. Peck School,01370030, 0, 0, 0, 0, 0, 52, 41, 48, 55, 59, 0, 0, 0, 0, 0, 255 -NA,NA,"",2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 57, 82, 88, 77, 86, 83, 85, 73, 71, 0, 0, 0, 0, 0, 702 -NA,NA,"",2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 27, 73, 90, 72, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 64, 58, 70, 47, 3, 337 -NA,NA,"",2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 80, 76, 103, 107, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2020-21,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 90, 90, 81, 67, 84, 74, 0, 486 -NA,NA,"",2020-21,Hopedale - Memorial,01380010, 0, 81, 71, 66, 78, 82, 78, 77, 0, 0, 0, 0, 0, 0, 0, 533 -NA,NA,"",2020-21,Hopedale - Park Street School,01380003, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80 -NA,NA,"",2020-21,Hopkinton - Elmwood,01390010, 0, 0, 0, 308, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2020-21,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 312, 297, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2020-21,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260, 315, 289, 327, 7," 1,198" -NA,NA,"",2020-21,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 303, 297, 322, 0, 0, 0, 0, 0, 922 -NA,NA,"",2020-21,Hopkinton - Hopkinton Pre-School,01390003, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75 -NA,NA,"",2020-21,Hopkinton - Marathon Elementary School,01390005, 0, 270, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2020-21,Hudson - C A Farley,01410030, 14, 68, 77, 76, 83, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2020-21,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 209, 163, 200, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2020-21,Hudson - Forest Avenue Elementary,01410015, 0, 46, 65, 62, 81, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2020-21,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 171, 182, 169, 144, 0, 872 -NA,NA,"",2020-21,Hudson - Mulready Elementary,01410007, 12, 52, 42, 48, 49, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2020-21,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 65, 65, 73, 0, 262 -NA,NA,"",2020-21,Hull - Lillian M Jacobs,01420015, 31, 43, 54, 54, 55, 58, 57, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2020-21,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 61, 62, 65, 0, 0, 0, 0, 0, 188 -NA,NA,"",2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 100, 100, 102, 100, 108, 98, 86, 96, 0, 790 -NA,NA,"",2020-21,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 123, 142, 136, 2, 537 -NA,NA,"",2020-21,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 113, 122, 136, 0, 0, 0, 0, 0, 371 -NA,NA,"",2020-21,Ipswich - Paul F Doyon Memorial,01440007, 0, 44, 47, 57, 67, 58, 59, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2020-21,Ipswich - Winthrop,01440015, 27, 44, 50, 50, 64, 57, 62, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2020-21,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 385, 347, 0, 0, 0, 0, 0, 732 -NA,NA,"",2020-21,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 269, 328, 305, 6," 1,214" -NA,NA,"",2020-21,Kingston - Kingston Elementary,01450005, 0, 134, 149, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2020-21,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 150, 140, 162, 150, 0, 0, 0, 0, 0, 0, 0, 602 -NA,NA,"",2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 65, 71, 71, 72, 72, 74, 71, 58, 59, 0, 0, 0, 0, 0, 613 -NA,NA,"",2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 125, 124, 124, 124, 125, 128, 126, 124, 124, 130, 126, 117, 118, 0," 1,615" -NA,NA,"",2020-21,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 60, 65, 75, 86, 96, 76, 0, 0, 0, 0, 0, 458 -NA,NA,"",2020-21,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 126, 150, 145, 163, 0, 0, 0, 0, 0, 584 -NA,NA,"",2020-21,Lawrence - Community Day Arlington,01490009, 0, 66, 119, 118, 130, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2020-21,Lawrence - Edward F. Parthum,01490053, 0, 86, 147, 144, 144, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 649 -NA,NA,"",2020-21,Lawrence - Emily G Wetherbee,01490080, 0, 29, 61, 63, 61, 76, 73, 58, 74, 72, 0, 0, 0, 0, 0, 567 -NA,NA,"",2020-21,Lawrence - Francis M Leahy,01490040, 0, 0, 75, 76, 84, 92, 101, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2020-21,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 131, 132, 134, 145, 0, 0, 0, 0, 0, 542 -NA,NA,"",2020-21,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 91, 111, 135, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2020-21,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 120, 127, 135, 112, 0, 0, 0, 0, 0, 494 -NA,NA,"",2020-21,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 44, 111, 0, 167 -NA,NA,"",2020-21,Lawrence - James F Hennessey,01490020, 80, 58, 75, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2020-21,Lawrence - John Breen School,01490003, 116, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2020-21,Lawrence - John K Tarbox,01490075, 0, 0, 51, 59, 54, 55, 63, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 0, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2020-21,Lawrence - Lawrence Family Public Academy,01490011, 35, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2020-21,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 785, 890, 745, 684, 28," 3,132" -NA,NA,"",2020-21,Lawrence - Oliver Partnership School,01490048, 0, 0, 86, 89, 94, 105, 88, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2020-21,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 142, 136, 167, 160, 0, 0, 0, 0, 0, 605 -NA,NA,"",2020-21,Lawrence - RISE Academy,01490615, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 11, 2, 0, 0, 21 -NA,NA,"",2020-21,Lawrence - Robert Frost,01490018, 0, 72, 111, 124, 108, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2020-21,Lawrence - Rollins Early Childhood Center,01490001, 91, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2020-21,Lawrence - School for Exceptional Studies,01490537, 0, 0, 3, 6, 7, 8, 7, 12, 11, 15, 11, 11, 13, 12, 11, 127 -NA,NA,"",2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 132, 144, 139, 141, 148, 0, 0, 0, 0, 0, 0, 0, 0, 704 -NA,NA,"",2020-21,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 148, 164, 164, 0, 0, 0, 0, 0, 476 -NA,NA,"",2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 121, 109, 90, 0, 0, 0, 0, 0, 320 -NA,NA,"",2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 101, 100, 112, 0, 0, 0, 0, 0, 313 -NA,NA,"",2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 63, 81, 81, 84, 84, 83, 81, 77, 75, 77, 0, 0, 0, 0, 0, 786 -NA,NA,"",2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 0, 71, 75, 75, 74, 75, 81, 73, 70, 71, 0, 0, 0, 0, 0, 665 -NA,NA,"",2020-21,Lee - Lee Elementary,01500025, 12, 41, 45, 49, 58, 47, 48, 50, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 40, 53, 57, 62, 57, 60, 4, 333 -NA,NA,"",2020-21,Leicester - Leicester Elementary,01510005, 0, 80, 97, 90, 117, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2020-21,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 98, 131, 99, 0, 440 -NA,NA,"",2020-21,Leicester - Leicester Integrated Preschool,01510001, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33 -NA,NA,"",2020-21,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 88, 96, 128, 113, 0, 0, 0, 0, 0, 425 -NA,NA,"",2020-21,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 60, 62, 61, 65, 66, 70, 61, 0, 445 -NA,NA,"",2020-21,Lenox - Morris,01520015, 15, 44, 47, 49, 48, 52, 50, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2020-21,Leominster - Bennett,01530003, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51 -NA,NA,"",2020-21,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298, 168, 155, 163, 0, 784 -NA,NA,"",2020-21,Leominster - Fall Brook,01530007, 0, 61, 99, 102, 110, 102, 119, 0, 0, 0, 0, 0, 0, 0, 0, 593 -NA,NA,"",2020-21,Leominster - Frances Drake School,01530010, 0, 72, 89, 80, 80, 89, 91, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2020-21,Leominster - Johnny Appleseed,01530025, 0, 86, 120, 114, 108, 118, 99, 0, 0, 0, 0, 0, 0, 0, 0, 645 -NA,NA,"",2020-21,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 11, 12, 11, 0, 44 -NA,NA,"",2020-21,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152, 299, 304, 305, 0," 1,060" -NA,NA,"",2020-21,Leominster - Lincoln School,01530005, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24 -NA,NA,"",2020-21,Leominster - Northwest,01530030, 0, 42, 116, 133, 125, 121, 139, 0, 0, 0, 0, 0, 0, 0, 0, 676 -NA,NA,"",2020-21,Leominster - Priest Street,01530040, 0, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84 -NA,NA,"",2020-21,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 168, 170, 172, 0, 0, 0, 0, 0, 510 -NA,NA,"",2020-21,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 305, 294, 288, 0, 0, 0, 0, 0, 887 -NA,NA,"",2020-21,Leverett - Leverett Elementary,01540005, 0, 15, 14, 14, 18, 17, 15, 23, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2020-21,Lexington - Bowman,01550008, 0, 54, 71, 75, 87, 89, 94, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2020-21,Lexington - Bridge,01550006, 0, 39, 57, 65, 69, 74, 96, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2020-21,Lexington - Fiske,01550015, 0, 41, 58, 62, 75, 62, 89, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2020-21,Lexington - Harrington,01550030, 0, 44, 67, 77, 85, 97, 76, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2020-21,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 278, 302, 301, 0, 0, 0, 0, 0, 881 -NA,NA,"",2020-21,Lexington - Joseph Estabrook,01550010, 0, 66, 79, 90, 97, 87, 103, 0, 0, 0, 0, 0, 0, 0, 0, 522 -NA,NA,"",2020-21,Lexington - Lexington Children's Place,01550001, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2020-21,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 550, 599, 582, 530, 0," 2,261" -NA,NA,"",2020-21,Lexington - Maria Hastings,01550035, 0, 65, 76, 111, 94, 123, 96, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2020-21,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 289, 299, 324, 0, 0, 0, 0, 0, 912 -NA,NA,"",2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 80, 86, 94, 0, 0, 0, 0, 0, 260 -NA,NA,"",2020-21,Lincoln - Hanscom Middle,01570305, 0, 0, 0, 0, 0, 48, 45, 49, 52, 42, 0, 0, 0, 0, 0, 236 -NA,NA,"",2020-21,Lincoln - Hanscom Primary,01570006, 55, 50, 68, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2020-21,Lincoln - Lincoln School,01570025, 20, 41, 52, 75, 53, 64, 49, 57, 60, 45, 0, 0, 0, 0, 0, 516 -NA,NA,"",2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 363, 406, 381, 6," 1,525" -NA,NA,"",2020-21,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 109, 98, 108, 3, 435 -NA,NA,"",2020-21,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 136, 129, 128, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 134, 112, 127, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2020-21,Littleton - Shaker Lane Elementary,01580005, 34, 95, 114, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2020-21,Longmeadow - Blueberry Hill,01590005, 0, 48, 51, 72, 73, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,Longmeadow - Center,01590010, 0, 54, 73, 69, 67, 70, 68, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2020-21,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 113, 109, 111, 0, 0, 0, 0, 0, 333 -NA,NA,"",2020-21,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 217, 240, 220, 0, 900 -NA,NA,"",2020-21,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 94, 129, 112, 0, 0, 0, 0, 0, 335 -NA,NA,"",2020-21,Longmeadow - Wolf Swamp Road,01590025, 59, 46, 55, 65, 57, 55, 52, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2020-21,Lowell - Abraham Lincoln,01600020, 27, 75, 81, 97, 90, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2020-21,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 130, 140, 140, 140, 0, 0, 0, 0, 0, 550 -NA,NA,"",2020-21,Lowell - Bartlett Community Partnership,01600090, 38, 46, 43, 46, 45, 42, 45, 59, 57, 53, 0, 0, 0, 0, 0, 474 -NA,NA,"",2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70 -NA,NA,"",2020-21,Lowell - Charles W Morey,01600030, 45, 84, 81, 94, 87, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 40, 84, 83, 92, 88, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2020-21,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 166, 163, 168, 171, 0, 0, 0, 0, 0, 668 -NA,NA,"",2020-21,Lowell - Dr Gertrude Bailey,01600002, 20, 67, 88, 96, 91, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2020-21,Lowell - Dr. Janice Adie Day School,01600605, 1, 2, 5, 6, 4, 11, 7, 3, 1, 5, 3, 0, 1, 0, 1, 50 -NA,NA,"",2020-21,Lowell - Greenhalge,01600015, 33, 75, 82, 93, 72, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2020-21,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 157, 172, 165, 164, 0, 0, 0, 0, 0, 658 -NA,NA,"",2020-21,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 173, 180, 169, 169, 0, 0, 0, 0, 0, 691 -NA,NA,"",2020-21,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 141, 168, 166, 166, 0, 0, 0, 0, 0, 641 -NA,NA,"",2020-21,Lowell - John J Shaughnessy,01600050, 18, 82, 85, 95, 80, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2020-21,Lowell - Joseph McAvinnue,01600010, 23, 62, 88, 87, 82, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 150, 169, 168, 169, 0, 0, 0, 0, 0, 656 -NA,NA,"",2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 0, 0, 3, 2, 1, 7, 10, 0, 0, 0, 0, 0, 23 -NA,NA,"",2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 8, 10, 9, 0, 36 -NA,NA,"",2020-21,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 880, 660, 736, 751, 21," 3,048" -NA,NA,"",2020-21,Lowell - Moody Elementary,01600027, 0, 47, 43, 47, 48, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2020-21,Lowell - Pawtucketville Memorial,01600036, 27, 78, 88, 88, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2020-21,Lowell - Peter W Reilly,01600040, 28, 65, 86, 92, 85, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2020-21,Lowell - Pyne Arts,01600018, 19, 47, 45, 50, 44, 46, 45, 59, 59, 55, 0, 0, 0, 0, 0, 469 -NA,NA,"",2020-21,Lowell - Rogers STEM Academy,01600005, 0, 77, 80, 95, 86, 89, 93, 111, 109, 108, 0, 0, 0, 0, 0, 848 -NA,NA,"",2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 41, 90, 86, 94, 80, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 482 -NA,NA,"",2020-21,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 21, 21, 39, 0, 94 -NA,NA,"",2020-21,Lowell - Washington,01600055, 23, 38, 44, 47, 43, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 95, 94, 91, 84, 87, 83, 84, 76, 69, 0, 0, 0, 0, 0, 803 -NA,NA,"",2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 20, 20, 25, 0, 88 -NA,NA,"",2020-21,Ludlow - Chapin Street Elementary School,01610020, 0, 0, 0, 151, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2020-21,Ludlow - East Street Elementary School,01610010, 49, 133, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2020-21,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 220, 210, 202, 0, 843 -NA,NA,"",2020-21,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 170, 202, 209, 0, 0, 0, 0, 0, 581 -NA,NA,"",2020-21,Ludlow - Veterans Park Elementary,01610023, 0, 0, 0, 0, 0, 160, 168, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4 -NA,NA,"",2020-21,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 113, 125, 114, 0, 474 -NA,NA,"",2020-21,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 125, 141, 120, 0, 0, 0, 0, 0, 386 -NA,NA,"",2020-21,Lunenburg - Lunenburg Primary School,01620010, 33, 106, 105, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 110, 111, 123, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2020-21,Lynn - A Drewicz Elementary,01630016, 3, 86, 73, 70, 79, 67, 79, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2020-21,Lynn - Aborn,01630011, 0, 32, 37, 47, 41, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2020-21,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 475, 500, 357, 0, 0, 0, 0, 0," 1,332" -NA,NA,"",2020-21,Lynn - Brickett Elementary,01630020, 0, 54, 51, 63, 55, 58, 59, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2020-21,Lynn - Capt William G Shoemaker,01630090, 5, 41, 50, 64, 64, 57, 36, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2020-21,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 476, 462, 372, 0," 1,658" -NA,NA,"",2020-21,Lynn - Cobbet Elementary,01630035, 0, 113, 101, 105, 90, 104, 97, 0, 0, 0, 0, 0, 0, 0, 0, 610 -NA,NA,"",2020-21,Lynn - E J Harrington,01630045, 39, 110, 99, 107, 92, 94, 81, 0, 0, 0, 0, 0, 0, 0, 0, 622 -NA,NA,"",2020-21,Lynn - Edward A Sisson,01630095, 13, 50, 70, 69, 76, 74, 72, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 7, 10, 10, 12, 23, 21, 17, 0, 100 -NA,NA,"",2020-21,Lynn - Hood,01630055, 29, 70, 80, 63, 88, 85, 76, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2020-21,Lynn - Ingalls,01630060, 0, 185, 90, 99, 100, 103, 101, 0, 0, 0, 0, 0, 0, 0, 0, 678 -NA,NA,"",2020-21,Lynn - Julia F Callahan,01630030, 32, 46, 42, 60, 53, 57, 70, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2020-21,Lynn - Lincoln-Thomson,01630070, 0, 34, 26, 31, 30, 49, 41, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2020-21,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503, 538, 536, 435, 0," 2,012" -NA,NA,"",2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 34, 2, 2, 2, 3, 3, 0, 0, 0, 291, 297, 281, 267, 240, 44," 1,466" -NA,NA,"",2020-21,Lynn - Lynn Woods,01630075, 0, 21, 19, 27, 27, 27, 32, 0, 0, 0, 0, 0, 0, 0, 0, 153 -NA,NA,"",2020-21,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 187, 216, 187, 0, 0, 0, 0, 0, 590 -NA,NA,"",2020-21,Lynn - Robert L Ford,01630050, 0, 0, 76, 97, 108, 92, 112, 0, 0, 0, 0, 0, 0, 0, 0, 485 -NA,NA,"",2020-21,Lynn - Sewell-Anderson,01630085, 0, 105, 21, 32, 43, 37, 35, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2020-21,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 469, 485, 363, 0, 0, 0, 0, 0," 1,317" -NA,NA,"",2020-21,Lynn - Tracy,01630100, 0, 0, 90, 89, 89, 86, 82, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2020-21,Lynn - Washington Elementary School,01630005, 16, 63, 76, 78, 78, 72, 55, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2020-21,Lynn - William R Fallon,01630080, 0, 0, 4, 5, 5, 9, 8, 0, 0, 0, 0, 0, 0, 0, 0, 31 -NA,NA,"",2020-21,Lynn - Wm P Connery,01630040, 9, 74, 81, 81, 100, 97, 108, 0, 0, 0, 0, 0, 0, 0, 0, 550 -NA,NA,"",2020-21,Lynnfield - Huckleberry Hill,01640010, 0, 96, 94, 82, 92, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2020-21,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 139, 146, 168, 0, 600 -NA,NA,"",2020-21,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 194, 180, 162, 161, 0, 0, 0, 0, 0, 697 -NA,NA,"",2020-21,Lynnfield - Lynnfield Preschool,01640005, 27, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27 -NA,NA,"",2020-21,Lynnfield - Summer Street,01640020, 0, 74, 67, 84, 97, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 48, 0, 98 -NA,NA,"",2020-21,Malden - Beebe,01650003, 0, 97, 96, 117, 98, 96, 97, 102, 100, 99, 0, 0, 0, 0, 0, 902 -NA,NA,"",2020-21,Malden - Ferryway,01650013, 0, 96, 103, 101, 99, 95, 93, 104, 96, 117, 0, 0, 0, 0, 0, 904 -NA,NA,"",2020-21,Malden - Forestdale,01650027, 0, 56, 58, 56, 54, 61, 57, 76, 74, 69, 0, 0, 0, 0, 0, 561 -NA,NA,"",2020-21,Malden - Linden,01650047, 0, 82, 106, 85, 90, 99, 89, 100, 84, 90, 0, 0, 0, 0, 0, 825 -NA,NA,"",2020-21,Malden - Malden Early Learning Center,01650049, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2020-21,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434, 440, 445, 397, 23," 1,739" -NA,NA,"",2020-21,Malden - Salemwood,01650057, 0, 70, 94, 87, 109, 116, 134, 131, 116, 115, 0, 0, 0, 0, 0, 972 -NA,NA,"",2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0, 28, 36, 31, 36, 26, 32, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 117, 123, 123, 0, 459 -NA,NA,"",2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 102, 113, 128, 0, 0, 0, 0, 0, 343 -NA,NA,"",2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 12, 28, 42, 41, 48, 60, 42, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2020-21,Mansfield - Everett W Robinson,01670007, 0, 222, 211, 223, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 656 -NA,NA,"",2020-21,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 255, 283, 266, 0, 0, 0, 0, 0, 804 -NA,NA,"",2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 237, 243, 268, 0, 0, 0, 0, 0, 0, 0, 0, 748 -NA,NA,"",2020-21,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275, 307, 285, 326, 12," 1,205" -NA,NA,"",2020-21,Mansfield - Roland Green School,01670003, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 51, 73, 43, 0, 206 -NA,NA,"",2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71 -NA,NA,"",2020-21,Marblehead - Glover,01680020, 41, 65, 72, 77, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2020-21,Marblehead - L H Coffin,01680010, 0, 0, 88, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2020-21,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 228, 248, 247, 5, 953 -NA,NA,"",2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 203, 249, 0, 0, 0, 0, 0, 452 -NA,NA,"",2020-21,Marblehead - Village School,01680016, 0, 0, 0, 0, 105, 200, 190, 202, 0, 0, 0, 0, 0, 0, 0, 697 -NA,NA,"",2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 50, 49, 52, 32, 25, 0, 0, 0, 0, 0, 208 -NA,NA,"",2020-21,Marion - Sippican,01690005, 13, 41, 54, 59, 55, 54, 60, 60, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 0, 375, 368, 396, 0, 0, 0, 0, 0," 1,139" -NA,NA,"",2020-21,Marlborough - Charles Jaworek School,01700030, 0, 93, 133, 119, 99, 113, 115, 0, 0, 0, 0, 0, 0, 0, 0, 672 -NA,NA,"",2020-21,Marlborough - Early Childhood Center,01700006, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2020-21,Marlborough - Francis J Kane,01700008, 0, 77, 79, 75, 74, 92, 91, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 0, 124, 119, 115, 122, 111, 124, 0, 0, 0, 0, 0, 0, 0, 0, 715 -NA,NA,"",2020-21,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 277, 248, 262, 12," 1,006" -NA,NA,"",2020-21,Marlborough - Richer,01700025, 0, 90, 90, 93, 75, 71, 86, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2020-21,Marshfield - Daniel Webster,01710015, 62, 44, 38, 41, 51, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2020-21,Marshfield - Eames Way School,01710005, 0, 30, 32, 33, 38, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2020-21,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 291, 286, 328, 0, 0, 0, 0, 0, 905 -NA,NA,"",2020-21,Marshfield - Gov Edward Winslow,01710020, 0, 60, 63, 61, 54, 69, 73, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2020-21,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 328, 327, 303, 0," 1,220" -NA,NA,"",2020-21,Marshfield - Martinson Elementary,01710025, 36, 60, 79, 53, 61, 70, 54, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2020-21,Marshfield - South River,01710010, 0, 50, 45, 30, 48, 61, 50, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 190, 162, 168, 4, 689 -NA,NA,"",2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0, 12, 13, 16, 17, 11, 20, 18, 14, 20, 9, 5, 16, 5, 0, 176 -NA,NA,"",2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0, 66, 60, 61, 59, 60, 59, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2020-21,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, 282, 279, 282, 0," 1,108" -NA,NA,"",2020-21,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 314, 262, 0, 0, 0, 0, 0, 576 -NA,NA,"",2020-21,Mashpee - Kenneth Coombs School,01720005, 54, 93, 92, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2020-21,Mashpee - Mashpee High,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 122, 106, 119, 0, 442 -NA,NA,"",2020-21,Mashpee - Mashpee Middle School,01720020, 0, 0, 0, 0, 0, 0, 0, 0, 115, 141, 0, 0, 0, 0, 0, 256 -NA,NA,"",2020-21,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 105, 97, 119, 119, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 53, 90, 95, 99, 95, 96, 95, 92, 96, 88, 85, 83, 73, 73, 0," 1,213" -NA,NA,"",2020-21,Mattapoisett - Center,01730005, 21, 48, 49, 63, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2020-21,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 57, 61, 52, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2020-21,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 95, 96, 74, 94, 97, 0, 0, 0, 0, 0, 456 -NA,NA,"",2020-21,Maynard - Green Meadow,01740010, 34, 79, 100, 87, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2020-21,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 72, 91, 79, 2, 313 -NA,NA,"",2020-21,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 196, 211, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2020-21,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, 201, 192, 195, 2, 775 -NA,NA,"",2020-21,Medfield - Memorial School,01750003, 36, 163, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2020-21,Medfield - Ralph Wheelock School,01750007, 0, 0, 0, 192, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2020-21,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 191, 186, 183, 0, 0, 0, 0, 0, 560 -NA,NA,"",2020-21,Medford - Brooks School,01760130, 42, 65, 78, 62, 84, 68, 84, 0, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2020-21,Medford - Christopher Columbus,01760140, 7, 44, 66, 73, 53, 87, 48, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2020-21,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 0, 12 -NA,NA,"",2020-21,Medford - John J McGlynn Elementary School,01760068, 6, 67, 59, 63, 74, 76, 90, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2020-21,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 143, 156, 141, 0, 0, 0, 0, 0, 440 -NA,NA,"",2020-21,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 161, 153, 139, 0, 0, 0, 0, 0, 453 -NA,NA,"",2020-21,Medford - Medford High,01760505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307, 352, 297, 298, 7," 1,261" -NA,NA,"",2020-21,Medford - Milton Fuller Roberts,01760150, 11, 92, 76, 84, 72, 74, 72, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2020-21,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 146, 148, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2020-21,Medway - John D Mc Govern Elementary,01770013, 27, 143, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2020-21,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 160, 176, 152, 0, 631 -NA,NA,"",2020-21,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 167, 161, 178, 172, 0, 0, 0, 0, 0, 678 -NA,NA,"",2020-21,Melrose - Early Childhood Center,01780003, 118, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2020-21,Melrose - Herbert Clark Hoover,01780017, 0, 43, 56, 63, 54, 45, 39, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2020-21,Melrose - Horace Mann,01780025, 0, 40, 46, 46, 49, 48, 42, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2020-21,Melrose - Lincoln,01780020, 0, 61, 56, 66, 65, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2020-21,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 222, 245, 235, 6, 929 -NA,NA,"",2020-21,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 274, 278, 272, 0, 0, 0, 0, 0, 824 -NA,NA,"",2020-21,Melrose - Roosevelt,01780035, 0, 61, 72, 65, 65, 79, 79, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2020-21,Melrose - Winthrop,01780050, 0, 54, 66, 64, 79, 68, 62, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,Mendon-Upton - Henry P Clough,07100179, 19, 63, 58, 65, 68, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2020-21,Mendon-Upton - Memorial School,07100001, 28, 73, 96, 91, 98, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2020-21,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 156, 165, 195, 208, 0, 0, 0, 0, 0, 724 -NA,NA,"",2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 151, 175, 155, 3, 637 -NA,NA,"",2020-21,Methuen - Comprehensive Grammar School,01810050, 12, 64, 96, 100, 107, 123, 123, 108, 129, 126, 0, 0, 0, 0, 0, 988 -NA,NA,"",2020-21,Methuen - Donald P Timony Grammar,01810060, 31, 94, 131, 130, 152, 103, 117, 143, 148, 139, 0, 0, 0, 0, 0," 1,188" -NA,NA,"",2020-21,Methuen - Marsh Grammar School,01810030, 19, 100, 110, 116, 109, 139, 112, 120, 133, 143, 0, 0, 0, 0, 0," 1,101" -NA,NA,"",2020-21,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432, 510, 492, 472, 0," 1,906" -NA,NA,"",2020-21,Methuen - Tenney Grammar School,01810055, 20, 107, 138, 135, 133, 127, 150, 142, 138, 177, 0, 0, 0, 0, 0," 1,267" -NA,NA,"",2020-21,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 101, 104, 111, 101, 107, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2020-21,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 226, 256, 265, 0, 0, 0, 0, 0, 747 -NA,NA,"",2020-21,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 112, 105, 119, 117, 108, 0, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2020-21,Middleborough - Memorial Early Childhood Center,01820011, 49, 202, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2020-21,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 210, 218, 185, 7, 833 -NA,NA,"",2020-21,Middleton - Fuller Meadow,01840003, 0, 98, 87, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2020-21,Middleton - Howe-Manning,01840005, 60, 0, 0, 0, 80, 83, 81, 88, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2020-21,Milford - Brookside,01850065, 0, 151, 150, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2020-21,Milford - Memorial,01850010, 0, 144, 151, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2020-21,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309, 348, 304, 280, 16," 1,257" -NA,NA,"",2020-21,Milford - Shining Star Early Childhood Center,01850075, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92 -NA,NA,"",2020-21,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 330, 347, 355, 0, 0, 0, 0, 0," 1,032" -NA,NA,"",2020-21,Milford - Woodland,01850090, 0, 0, 0, 0, 314, 324, 332, 0, 0, 0, 0, 0, 0, 0, 0, 970 -NA,NA,"",2020-21,Millbury - Elmwood Street,01860017, 55, 91, 121, 118, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509 -NA,NA,"",2020-21,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 120, 151, 119, 130, 93, 119, 1, 733 -NA,NA,"",2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 0, 96, 117, 132, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2020-21,Millis - Clyde F Brown,01870005, 42, 82, 83, 78, 99, 82, 82, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2020-21,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 72, 72, 92, 0, 332 -NA,NA,"",2020-21,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 0, 105, 77, 94, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 344, 307, 306, 0, 0, 0, 0, 0, 957 -NA,NA,"",2020-21,Milton - Collicot,01890005, 0, 92, 90, 99, 108, 124, 99, 0, 0, 0, 0, 0, 0, 0, 0, 612 -NA,NA,"",2020-21,Milton - Cunningham School,01890007, 66, 84, 92, 86, 89, 99, 93, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2020-21,Milton - Glover,01890010, 0, 73, 107, 118, 115, 93, 98, 0, 0, 0, 0, 0, 0, 0, 0, 604 -NA,NA,"",2020-21,Milton - Milton High,01890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 272, 277, 276, 9," 1,127" -NA,NA,"",2020-21,Milton - Tucker,01890020, 28, 62, 81, 64, 72, 78, 61, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 180, 134, 142, 0, 635 -NA,NA,"",2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 20, 20, 34, 31, 38, 35, 35, 32, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2020-21,Mohawk Trail - Colrain Central,07170010, 13, 11, 7, 11, 4, 7, 15, 12, 0, 0, 0, 0, 0, 0, 0, 80 -NA,NA,"",2020-21,Mohawk Trail - Mohawk Trail Regional School,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 55, 66, 35, 28, 46, 50, 4, 284 -NA,NA,"",2020-21,Mohawk Trail - Sanderson Academy,07170020, 20, 10, 13, 19, 20, 20, 10, 18, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 4, 16, 36, 30, 31, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2020-21,Monomoy Regional School District - Harwich Elementary School,07120002, 17, 86, 78, 88, 106, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2020-21,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 112, 124, 133, 121, 6, 677 -NA,NA,"",2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 153, 158, 140, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2020-21,Monson - Granite Valley School,01910030, 0, 0, 69, 68, 60, 67, 73, 78, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2020-21,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 72, 58, 47, 40, 66, 59, 4, 346 -NA,NA,"",2020-21,Monson - Quarry Hill Community School,01910010, 33, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97 -NA,NA,"",2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 354, 363, 345, 0," 1,417" -NA,NA,"",2020-21,Mount Greylock - Lanesborough Elementary,07150005, 7, 20, 27, 27, 22, 35, 23, 28, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 77, 86, 115, 89, 73, 87, 1, 528 -NA,NA,"",2020-21,Mount Greylock - Williamstown Elementary,07150010, 11, 36, 37, 55, 54, 60, 66, 57, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 162, 159, 150, 153, 123, 123, 124, 149, 126, 125, 87, 62, 86, 0," 1,629" -NA,NA,"",2020-21,Nahant - Johnson,01960010, 13, 28, 20, 14, 15, 18, 20, 19, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2020-21,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 144, 151, 129, 0, 0, 0, 0, 0, 424 -NA,NA,"",2020-21,Nantucket - Nantucket Elementary,01970005, 49, 114, 119, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2020-21,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 141, 139, 109, 5, 527 -NA,NA,"",2020-21,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 114, 88, 117, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2020-21,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 103, 113, 123, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2020-21,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 89, 77, 77, 55, 4, 419 -NA,NA,"",2020-21,Narragansett - Templeton Elementary School,07200020, 50, 89, 110, 103, 104, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2020-21,Nashoba - Center School,07250020, 17, 68, 70, 86, 67, 87, 77, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2020-21,Nashoba - Florence Sawyer School,07250025, 20, 89, 60, 73, 70, 78, 88, 69, 77, 93, 0, 0, 0, 0, 0, 717 -NA,NA,"",2020-21,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 111, 96, 93, 0, 0, 0, 0, 0, 300 -NA,NA,"",2020-21,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 86, 74, 79, 0, 0, 0, 0, 0, 239 -NA,NA,"",2020-21,Nashoba - Mary Rowlandson Elementary,07250010, 25, 59, 68, 51, 91, 75, 69, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2020-21,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 200, 255, 236, 6, 920 -NA,NA,"",2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 179, 180, 176, 1, 726 -NA,NA,"",2020-21,Natick - Bennett-Hemenway,01980005, 0, 84, 97, 101, 108, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2020-21,Natick - Brown,01980010, 0, 84, 100, 95, 83, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2020-21,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 212, 229, 187, 167, 0, 0, 0, 0, 0, 795 -NA,NA,"",2020-21,Natick - Johnson,01980031, 0, 34, 36, 44, 53, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2020-21,Natick - Lilja Elementary,01980035, 0, 64, 74, 85, 86, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2020-21,Natick - Memorial,01980043, 0, 66, 86, 92, 75, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2020-21,Natick - Natick High,01980505, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 380, 383, 408, 0," 1,626" -NA,NA,"",2020-21,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 210, 201, 224, 234, 0, 0, 0, 0, 0, 869 -NA,NA,"",2020-21,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 209, 219, 234, 1, 855 -NA,NA,"",2020-21,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 174, 190, 207, 0, 0, 0, 0, 0, 571 -NA,NA,"",2020-21,Needham - Broadmeadow,01990005, 0, 74, 73, 98, 85, 93, 92, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2020-21,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 394, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2020-21,Needham - John Eliot,01990020, 0, 61, 67, 72, 74, 64, 72, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2020-21,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424, 377, 445, 423, 1," 1,670" -NA,NA,"",2020-21,Needham - Newman Elementary,01990050, 50, 78, 106, 99, 118, 95, 101, 0, 0, 0, 0, 0, 0, 0, 0, 647 -NA,NA,"",2020-21,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 461, 440, 0, 0, 0, 0, 0, 901 -NA,NA,"",2020-21,Needham - Sunita L. Williams Elementary,01990035, 0, 59, 84, 78, 90, 89, 88, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2020-21,Needham - William Mitchell,01990040, 0, 61, 71, 79, 71, 87, 89, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 39, 37, 39, 43, 44, 43, 63, 68, 86, 82, 81, 68, 63, 54, 0, 810 -NA,NA,"",2020-21,New Bedford - Abraham Lincoln,02010095, 0, 114, 137, 125, 123, 108, 106, 0, 0, 0, 0, 0, 0, 0, 0, 713 -NA,NA,"",2020-21,New Bedford - Alfred J Gomes,02010063, 0, 67, 83, 81, 86, 99, 85, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2020-21,New Bedford - Betsey B Winslow,02010140, 0, 28, 28, 40, 34, 50, 25, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2020-21,New Bedford - Carlos Pacheco,02010105, 11, 55, 64, 42, 46, 81, 81, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2020-21,New Bedford - Casimir Pulaski,02010123, 37, 76, 88, 99, 94, 94, 86, 0, 0, 0, 0, 0, 0, 0, 0, 574 -NA,NA,"",2020-21,New Bedford - Charles S Ashley,02010010, 0, 40, 28, 37, 29, 31, 36, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 0, 39, 39, 64, 36, 42, 27, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2020-21,New Bedford - Ellen R Hathaway,02010075, 25, 27, 64, 58, 36, 37, 37, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2020-21,New Bedford - Elwyn G Campbell,02010020, 37, 39, 32, 42, 29, 60, 26, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2020-21,New Bedford - Hayden/McFadden,02010078, 53, 93, 81, 98, 131, 93, 95, 0, 0, 0, 0, 0, 0, 0, 0, 644 -NA,NA,"",2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 17, 43, 54, 71, 56, 53, 46, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2020-21,New Bedford - James B Congdon,02010040, 0, 62, 36, 55, 46, 58, 49, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2020-21,New Bedford - Jireh Swift,02010130, 14, 24, 29, 18, 17, 24, 31, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2020-21,New Bedford - John Avery Parker,02010115, 15, 37, 24, 42, 27, 36, 31, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2020-21,New Bedford - John B Devalles,02010050, 0, 51, 56, 53, 68, 56, 59, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2020-21,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 347, 351, 336, 0, 0, 0, 0, 0," 1,034" -NA,NA,"",2020-21,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 756, 756, 671, 539, 0," 2,722" -NA,NA,"",2020-21,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 345, 377, 392, 0, 0, 0, 0, 0," 1,114" -NA,NA,"",2020-21,New Bedford - Renaissance Community Innovation School,02010124, 12, 16, 18, 22, 18, 50, 42, 0, 0, 0, 0, 0, 0, 0, 0, 178 -NA,NA,"",2020-21,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 280, 284, 322, 0, 0, 0, 0, 0, 886 -NA,NA,"",2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 44, 85, 94, 78, 100, 120, 130, 0, 0, 0, 0, 0, 0, 0, 0, 651 -NA,NA,"",2020-21,New Bedford - Thomas R Rodman,02010125, 0, 33, 23, 21, 33, 34, 16, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2020-21,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 0, 12, 9, 12, 10, 14, 13, 15, 10, 0, 95 -NA,NA,"",2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 18, 36, 33, 11, 0, 106 -NA,NA,"",2020-21,New Bedford - William H Taylor,02010135, 21, 27, 59, 32, 48, 31, 29, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 117, 122, 123, 98, 93, 101, 88, 0, 742 -NA,NA,"",2020-21,New Salem-Wendell - Swift River,07280015, 9, 16, 17, 22, 16, 18, 17, 14, 0, 0, 0, 0, 0, 0, 0, 129 -NA,NA,"",2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 141, 147, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 42, 107, 132, 137, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2020-21,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 211, 178, 207, 3, 801 -NA,NA,"",2020-21,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 161, 165, 171, 0, 0, 0, 0, 0, 497 -NA,NA,"",2020-21,Newton - A E Angier,02070005, 0, 49, 62, 76, 65, 100, 76, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2020-21,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 168, 164, 174, 0, 0, 0, 0, 0, 506 -NA,NA,"",2020-21,Newton - Bowen,02070015, 0, 44, 56, 57, 61, 59, 65, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2020-21,Newton - C C Burr,02070020, 0, 50, 64, 61, 67, 42, 55, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2020-21,Newton - Cabot,02070025, 0, 56, 71, 63, 63, 57, 69, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2020-21,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 271, 253, 270, 0, 0, 0, 0, 0, 794 -NA,NA,"",2020-21,Newton - Countryside,02070040, 0, 54, 57, 62, 66, 69, 61, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2020-21,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 335, 308, 313, 0, 0, 0, 0, 0, 956 -NA,NA,"",2020-21,Newton - Franklin,02070055, 0, 57, 60, 61, 66, 80, 55, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2020-21,Newton - Horace Mann,02070075, 0, 45, 68, 59, 60, 71, 74, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2020-21,Newton - John Ward,02070120, 0, 29, 37, 37, 30, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2020-21,Newton - Lincoln-Eliot,02070070, 0, 57, 55, 67, 66, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2020-21,Newton - Mason-Rice,02070080, 0, 45, 52, 53, 64, 69, 83, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2020-21,Newton - Memorial Spaulding,02070105, 0, 49, 53, 59, 80, 82, 81, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2020-21,Newton - Newton Early Childhood Program,02070108, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2020-21,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515, 493, 538, 499, 28," 2,073" -NA,NA,"",2020-21,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413, 485, 479, 491, 1," 1,869" -NA,NA,"",2020-21,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 224, 231, 192, 0, 0, 0, 0, 0, 647 -NA,NA,"",2020-21,Newton - Peirce,02070100, 0, 32, 34, 49, 40, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2020-21,Newton - Underwood,02070115, 0, 33, 39, 39, 31, 42, 41, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2020-21,Newton - Williams,02070125, 0, 32, 36, 38, 46, 39, 55, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2020-21,Newton - Zervas,02070130, 0, 42, 75, 73, 65, 81, 57, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 122, 139, 144, 113, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2020-21,Norfolk - H Olive Day,02080015, 52, 162, 122, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469 -NA,NA,"",2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 149, 152, 129, 0, 588 -NA,NA,"",2020-21,North Adams - Brayton,02090035, 23, 19, 23, 37, 31, 33, 29, 30, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2020-21,North Adams - Colegrove Park Elementary,02090008, 23, 27, 39, 29, 37, 40, 37, 27, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2020-21,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 91, 125, 88, 77, 64, 72, 3, 520 -NA,NA,"",2020-21,North Adams - Greylock,02090015, 31, 29, 31, 28, 26, 26, 26, 22, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2020-21,North Andover - Anne Bradstreet Early Childhood Center,02110005, 60, 283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2020-21,North Andover - Annie L Sargent School,02110018, 0, 0, 76, 93, 93, 88, 87, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2020-21,North Andover - Atkinson,02110001, 0, 0, 71, 60, 62, 63, 67, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2020-21,North Andover - Franklin,02110010, 0, 0, 81, 66, 77, 79, 77, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2020-21,North Andover - Kittredge,02110015, 0, 0, 37, 44, 53, 48, 46, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2020-21,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 311, 357, 374, 0," 1,377" -NA,NA,"",2020-21,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 371, 372, 361, 0, 0, 0, 0, 0," 1,104" -NA,NA,"",2020-21,North Andover - Thomson,02110020, 0, 0, 61, 81, 49, 59, 68, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2020-21,North Attleborough - Amvet Boulevard,02120007, 0, 40, 75, 68, 82, 71, 85, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2020-21,North Attleborough - Community,02120030, 0, 66, 39, 35, 53, 60, 52, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2020-21,North Attleborough - Falls,02120010, 0, 18, 26, 31, 33, 32, 45, 0, 0, 0, 0, 0, 0, 0, 0, 185 -NA,NA,"",2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 101, 95, 111, 74, 115, 112, 0, 0, 0, 0, 0, 0, 0, 0, 608 -NA,NA,"",2020-21,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 261, 267, 275, 0," 1,089" -NA,NA,"",2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2020-21,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 283, 325, 385, 0, 0, 0, 0, 0, 993 -NA,NA,"",2020-21,North Attleborough - Roosevelt Avenue,02120015, 0, 33, 29, 31, 32, 33, 36, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2020-21,North Brookfield - North Brookfield Elementary,02150015, 23, 39, 39, 30, 39, 44, 33, 40, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2020-21,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 43, 40, 49, 23, 33, 28, 0, 216 -NA,NA,"",2020-21,North Middlesex - Ashby Elementary,07350010, 0, 39, 36, 16, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2020-21,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 114, 107, 133, 134, 0, 0, 0, 0, 0, 488 -NA,NA,"",2020-21,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 114, 118, 119, 150, 0, 0, 0, 0, 0, 501 -NA,NA,"",2020-21,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187, 178, 210, 211, 7, 793 -NA,NA,"",2020-21,North Middlesex - Spaulding Memorial,07350005, 0, 83, 80, 78, 73, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 36, 3, 3, 0, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47 -NA,NA,"",2020-21,North Middlesex - Varnum Brook,07350035, 0, 100, 87, 118, 96, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2020-21,North Reading - E Ethel Little School,02170003, 24, 49, 60, 27, 50, 42, 56, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2020-21,North Reading - J Turner Hood,02170010, 16, 54, 56, 51, 50, 59, 52, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2020-21,North Reading - L D Batchelder,02170005, 0, 72, 84, 68, 73, 72, 83, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2020-21,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 181, 164, 186, 1, 662 -NA,NA,"",2020-21,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 174, 190, 185, 0, 0, 0, 0, 0, 549 -NA,NA,"",2020-21,Northampton - Bridge Street,02100005, 22, 34, 31, 35, 49, 41, 28, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2020-21,Northampton - Jackson Street,02100020, 0, 39, 52, 58, 54, 68, 57, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2020-21,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 204, 206, 213, 0, 0, 0, 0, 0, 623 -NA,NA,"",2020-21,Northampton - Leeds,02100025, 24, 36, 50, 56, 43, 45, 39, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2020-21,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 236, 210, 223, 1, 861 -NA,NA,"",2020-21,Northampton - R. K. Finn Ryan Road,02100029, 0, 34, 41, 41, 41, 43, 34, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 148, 117, 123, 0, 528 -NA,NA,"",2020-21,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314, 321, 320, 390, 10," 1,355" -NA,NA,"",2020-21,Northborough - Fannie E Proctor,02130015, 0, 35, 49, 36, 38, 39, 41, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2020-21,Northborough - Lincoln Street,02130003, 0, 38, 39, 40, 55, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2020-21,Northborough - Marguerite E Peaslee,02130014, 0, 37, 41, 43, 35, 57, 62, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2020-21,Northborough - Marion E Zeh,02130020, 0, 36, 39, 39, 38, 40, 43, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2020-21,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 174, 160, 183, 0, 0, 0, 0, 0, 517 -NA,NA,"",2020-21,Northbridge - Northbridge Elementary,02140005, 57, 145, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2020-21,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 132, 145, 114, 0, 525 -NA,NA,"",2020-21,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 150, 172, 191, 144, 0, 0, 0, 0, 0, 657 -NA,NA,"",2020-21,Northbridge - W Edward Balmer,02140001, 0, 0, 0, 114, 127, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 322, 326, 301, 0," 1,281" -NA,NA,"",2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 142, 122, 114, 0, 506 -NA,NA,"",2020-21,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 174, 172, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2020-21,Norton - J C Solmonese,02180015, 69, 103, 96, 86, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2020-21,Norton - L G Nourse Elementary,02180010, 0, 72, 64, 63, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2020-21,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 180, 162, 175, 4, 684 -NA,NA,"",2020-21,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 189, 206, 202, 0, 0, 0, 0, 0, 597 -NA,NA,"",2020-21,Norwell - Grace Farrar Cole,02190005, 15, 77, 78, 75, 72, 72, 79, 0, 0, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2020-21,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 155, 166, 166, 1, 644 -NA,NA,"",2020-21,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 164, 162, 180, 0, 0, 0, 0, 0, 506 -NA,NA,"",2020-21,Norwell - William G Vinal,02190020, 18, 79, 102, 80, 98, 91, 96, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2020-21,Norwood - Balch,02200005, 0, 0, 53, 55, 65, 70, 51, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2020-21,Norwood - Charles J Prescott,02200025, 0, 2, 57, 50, 51, 56, 42, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2020-21,Norwood - Cornelius M Callahan,02200010, 0, 0, 42, 53, 45, 47, 34, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 258, 215, 245, 0, 0, 0, 0, 0, 718 -NA,NA,"",2020-21,Norwood - F A Cleveland,02200015, 0, 0, 74, 59, 55, 62, 79, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2020-21,Norwood - George F. Willett,02200075, 83, 265, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2020-21,Norwood - John P Oldham,02200020, 0, 0, 44, 52, 51, 42, 57, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2020-21,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 261, 252, 231, 5, 973 -NA,NA,"",2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 7, 46, 36, 44, 27, 50, 52, 50, 50, 52, 0, 0, 0, 0, 0, 414 -NA,NA,"",2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 151, 132, 130, 0, 563 -NA,NA,"",2020-21,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152, 168, 200, 190, 6, 716 -NA,NA,"",2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 203, 211, 0, 0, 0, 0, 0, 414 -NA,NA,"",2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 40, 40, 40, 40, 40, 40, 40, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2020-21,Orange - Dexter Park,02230010, 0, 0, 0, 0, 62, 71, 70, 61, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2020-21,Orange - Fisher Hill,02230015, 11, 54, 65, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2020-21,Orleans - Orleans Elementary,02240005, 0, 17, 24, 29, 32, 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2020-21,Oxford - Alfred M Chaffee,02260010, 38, 64, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2020-21,Oxford - Clara Barton,02260005, 0, 0, 0, 116, 99, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2020-21,Oxford - Oxford High,02260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 110, 94, 91, 96, 11, 542 -NA,NA,"",2020-21,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 126, 117, 115, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2020-21,Palmer - Old Mill Pond,02270008, 20, 88, 83, 97, 106, 111, 83, 0, 0, 0, 0, 0, 0, 0, 0, 588 -NA,NA,"",2020-21,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 88, 110, 121, 62, 73, 60, 81, 5, 600 -NA,NA,"",2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 161, 150, 143, 0, 610 -NA,NA,"",2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 67, 63, 64, 0, 263 -NA,NA,"",2020-21,Peabody - Captain Samuel Brown,02290005, 0, 49, 66, 55, 57, 58, 61, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2020-21,Peabody - Center,02290015, 0, 64, 88, 71, 59, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2020-21,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 476, 500, 467, 0, 0, 0, 0, 0," 1,443" -NA,NA,"",2020-21,Peabody - John E Burke,02290007, 0, 44, 34, 45, 34, 38, 54, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2020-21,Peabody - John E. McCarthy,02290016, 72, 39, 39, 42, 36, 32, 41, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2020-21,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386, 381, 359, 372, 2," 1,500" -NA,NA,"",2020-21,Peabody - South Memorial,02290035, 47, 58, 63, 54, 50, 75, 51, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2020-21,Peabody - Thomas Carroll,02290010, 0, 84, 79, 110, 106, 99, 86, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2020-21,Peabody - West Memorial,02290045, 15, 32, 37, 42, 31, 40, 37, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2020-21,Peabody - William A Welch Sr,02290027, 19, 39, 63, 51, 55, 58, 55, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2020-21,Pelham - Pelham Elementary,02300005, 0, 16, 10, 17, 14, 20, 16, 14, 0, 0, 0, 0, 0, 0, 0, 107 -NA,NA,"",2020-21,Pembroke - Bryantville Elementary,02310003, 0, 55, 58, 73, 67, 59, 67, 73, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2020-21,Pembroke - Hobomock Elementary,02310010, 0, 43, 52, 53, 61, 57, 72, 59, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2020-21,Pembroke - North Pembroke Elementary,02310015, 49, 68, 51, 62, 62, 63, 70, 86, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2020-21,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 201, 230, 0, 0, 0, 0, 0, 431 -NA,NA,"",2020-21,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 204, 199, 208, 3, 808 -NA,NA,"",2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 26, 50, 62, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2020-21,Pentucket - Dr John C Page School,07450015, 19, 30, 39, 40, 35, 42, 35, 58, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2020-21,Pentucket - Elmer S Bagnall,07450005, 36, 54, 60, 57, 66, 54, 65, 73, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2020-21,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 62, 60, 68, 48, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2020-21,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 145, 203, 0, 0, 0, 0, 0, 348 -NA,NA,"",2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 161, 178, 191, 0, 673 -NA,NA,"",2020-21,Petersham - Petersham Center,02340005, 0, 15, 19, 24, 10, 19, 16, 20, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2020-21,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 4, 35, 0, 0, 159 -NA,NA,"",2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 1, 49, 9, 0, 208 -NA,NA,"",2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 2, 43, 14, 0, 221 -NA,NA,"",2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 63, 59, 63, 63, 66, 65, 67, 64, 59, 60, 57, 55, 53, 0, 794 -NA,NA,"",2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0, 0, 0, 0, 0, 0, 0, 0, 64, 67, 62, 61, 63, 53, 0, 370 -NA,NA,"",2020-21,Pioneer Valley - Bernardston Elementary,07500006, 15, 24, 17, 19, 28, 24, 23, 32, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2020-21,Pioneer Valley - Northfield Elementary,07500008, 8, 19, 17, 23, 21, 29, 29, 23, 0, 0, 0, 0, 0, 0, 0, 169 -NA,NA,"",2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 57, 63, 40, 47, 23, 50, 0, 280 -NA,NA,"",2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 44, 44, 45, 44, 44, 44, 62, 55, 56, 31, 23, 40, 28, 0, 560 -NA,NA,"",2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 72, 72, 68, 62, 58, 59, 0, 391 -NA,NA,"",2020-21,Pittsfield - Allendale,02360010, 0, 36, 51, 50, 56, 39, 37, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2020-21,Pittsfield - Crosby,02360065, 31, 53, 35, 37, 59, 44, 41, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2020-21,Pittsfield - Crosby Educational Academy,02360030, 0, 0, 3, 2, 5, 6, 5, 0, 0, 0, 0, 0, 0, 0, 0, 21 -NA,NA,"",2020-21,Pittsfield - Eagle Education Academy,02360525, 0, 0, 0, 0, 0, 0, 0, 2, 1, 6, 9, 5, 5, 4, 0, 32 -NA,NA,"",2020-21,Pittsfield - Egremont,02360035, 0, 52, 69, 79, 74, 71, 69, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2020-21,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 184, 166, 175, 0, 0, 0, 0, 0, 525 -NA,NA,"",2020-21,Pittsfield - Morningside Community School,02360055, 16, 58, 53, 52, 62, 48, 58, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2020-21,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 170, 180, 190, 14, 730 -NA,NA,"",2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 3, 29, 24, 26, 32, 29, 24, 0, 0, 0, 0, 0, 0, 0, 0, 167 -NA,NA,"",2020-21,Pittsfield - Silvio O Conte Community,02360105, 12, 56, 47, 57, 59, 54, 37, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2020-21,Pittsfield - Stearns,02360090, 0, 15, 32, 40, 48, 36, 37, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2020-21,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 219, 211, 207, 0, 869 -NA,NA,"",2020-21,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 177, 176, 201, 0, 0, 0, 0, 0, 554 -NA,NA,"",2020-21,Pittsfield - Williams,02360100, 0, 44, 39, 36, 41, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2020-21,Plainville - Anna Ware Jackson,02380010, 42, 64, 85, 82, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2020-21,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 0, 88, 88, 85, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2020-21,Plymouth - Cold Spring,02390005, 0, 29, 32, 35, 39, 32, 22, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2020-21,Plymouth - Federal Furnace School,02390011, 0, 53, 57, 57, 68, 68, 47, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Plymouth - Hedge,02390010, 0, 34, 28, 36, 30, 26, 30, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2020-21,Plymouth - Indian Brook,02390012, 0, 98, 84, 106, 88, 71, 92, 0, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2020-21,Plymouth - Manomet Elementary,02390015, 0, 32, 53, 47, 39, 48, 33, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 0, 73, 79, 83, 86, 92, 80, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 324, 321, 365, 0, 0, 0, 0, 0," 1,010" -NA,NA,"",2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142 -NA,NA,"",2020-21,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 318, 320, 288, 1," 1,268" -NA,NA,"",2020-21,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275, 262, 258, 271, 0," 1,066" -NA,NA,"",2020-21,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 211, 211, 243, 0, 0, 0, 0, 0, 665 -NA,NA,"",2020-21,Plymouth - South Elementary,02390046, 0, 97, 93, 100, 103, 113, 103, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2020-21,Plymouth - West Elementary,02390047, 0, 42, 56, 44, 60, 62, 54, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2020-21,Plympton - Dennett Elementary,02400010, 0, 30, 39, 28, 28, 27, 38, 19, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0, 60, 86, 87, 91, 94, 87, 86, 100, 94, 96, 89, 65, 72, 0," 1,107" -NA,NA,"",2020-21,Provincetown - Provincetown Schools,02420020, 24, 11, 8, 10, 10, 11, 15, 16, 18, 10, 0, 0, 0, 0, 0, 133 -NA,NA,"",2020-21,Quabbin - Hardwick Elementary,07530005, 33, 23, 35, 27, 29, 23, 27, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2020-21,Quabbin - Hubbardston Center,07530010, 0, 39, 45, 37, 48, 40, 34, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2020-21,Quabbin - New Braintree Grade,07530020, 0, 26, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48 -NA,NA,"",2020-21,Quabbin - Oakham Center,07530025, 0, 0, 0, 29, 43, 28, 23, 0, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2020-21,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 135, 160, 155, 6, 632 -NA,NA,"",2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 166, 181, 168, 0, 0, 0, 0, 0, 515 -NA,NA,"",2020-21,Quabbin - Ruggles Lane,07530030, 36, 47, 66, 43, 47, 43, 55, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2020-21,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 98, 80, 94, 0, 361 -NA,NA,"",2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 88, 85, 0, 0, 0, 0, 0, 173 -NA,NA,"",2020-21,Quaboag Regional - Warren Elementary,07780005, 23, 39, 42, 41, 55, 42, 60, 71, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 14, 25, 33, 33, 36, 36, 33, 44, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2020-21,Quincy - Atherton Hough,02430040, 0, 50, 45, 43, 40, 49, 47, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2020-21,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 170, 183, 193, 0, 0, 0, 0, 0, 546 -NA,NA,"",2020-21,Quincy - Beechwood Knoll Elementary,02430020, 0, 53, 55, 58, 64, 61, 61, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2020-21,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 114, 107, 117, 0, 0, 0, 0, 0, 338 -NA,NA,"",2020-21,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 199, 217, 200, 0, 0, 0, 0, 0, 616 -NA,NA,"",2020-21,Quincy - Charles A Bernazzani Elementary,02430025, 0, 44, 55, 61, 58, 49, 56, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2020-21,Quincy - Clifford H Marshall Elementary,02430055, 0, 101, 123, 103, 97, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2020-21,Quincy - Francis W Parker,02430075, 0, 45, 47, 64, 53, 50, 47, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2020-21,Quincy - Lincoln-Hancock Community School,02430035, 0, 127, 115, 99, 101, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2020-21,Quincy - Merrymount,02430060, 0, 53, 51, 69, 55, 46, 62, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2020-21,Quincy - Montclair,02430065, 0, 67, 70, 85, 71, 66, 78, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2020-21,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 330, 344, 316, 13," 1,356" -NA,NA,"",2020-21,Quincy - Point Webster Middle,02430325, 60, 0, 0, 0, 0, 0, 82, 100, 89, 86, 0, 0, 0, 0, 0, 417 -NA,NA,"",2020-21,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 373, 393, 398, 0," 1,499" -NA,NA,"",2020-21,Quincy - Snug Harbor Community School,02430090, 90, 42, 61, 46, 60, 47, 51, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2020-21,Quincy - South West Middle School,02430320, 0, 0, 0, 0, 0, 0, 90, 105, 112, 84, 0, 0, 0, 0, 0, 391 -NA,NA,"",2020-21,Quincy - Squantum,02430095, 0, 44, 64, 61, 59, 68, 43, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2020-21,Quincy - Wollaston School,02430110, 0, 51, 57, 58, 60, 50, 59, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2020-21,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127, 81, 103, 92, 89, 0, 619 -NA,NA,"",2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 31, 48, 52, 65, 54, 47, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2020-21,Randolph - J F Kennedy Elementary,02440018, 66, 30, 55, 58, 65, 54, 40, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2020-21,Randolph - Margaret L Donovan,02440015, 0, 52, 86, 73, 80, 66, 69, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2020-21,Randolph - Martin E Young Elementary,02440040, 0, 36, 46, 38, 46, 39, 48, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2020-21,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 222, 241, 211, 0, 0, 0, 0, 0, 674 -NA,NA,"",2020-21,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 165, 166, 168, 10, 642 -NA,NA,"",2020-21,Reading - Alice M Barrows,02460002, 0, 44, 55, 60, 66, 54, 75, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2020-21,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 143, 132, 124, 0, 0, 0, 0, 0, 399 -NA,NA,"",2020-21,Reading - Birch Meadow,02460005, 0, 40, 72, 61, 54, 61, 57, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2020-21,Reading - J Warren Killam,02460017, 0, 50, 77, 68, 64, 66, 70, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2020-21,Reading - Joshua Eaton,02460010, 0, 79, 68, 75, 64, 45, 64, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2020-21,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299, 301, 292, 330, 0," 1,222" -NA,NA,"",2020-21,Reading - RISE PreSchool,02460001, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97 -NA,NA,"",2020-21,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 176, 156, 163, 0, 0, 0, 0, 0, 495 -NA,NA,"",2020-21,Reading - Wood End Elementary School,02460020, 0, 25, 40, 52, 42, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2020-21,Revere - A. C. Whelan Elementary School,02480003, 0, 100, 104, 142, 138, 133, 123, 0, 0, 0, 0, 0, 0, 0, 0, 740 -NA,NA,"",2020-21,Revere - Abraham Lincoln,02480025, 31, 70, 87, 80, 94, 86, 89, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2020-21,Revere - Beachmont Veterans Memorial School,02480013, 27, 50, 57, 37, 44, 47, 50, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2020-21,Revere - Garfield Elementary School,02480056, 37, 90, 116, 114, 99, 104, 97, 0, 0, 0, 0, 0, 0, 0, 0, 657 -NA,NA,"",2020-21,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 169, 193, 206, 0, 0, 0, 0, 0, 568 -NA,NA,"",2020-21,Revere - Paul Revere,02480050, 0, 65, 83, 72, 71, 85, 74, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2020-21,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542, 524, 431, 472, 9," 1,978" -NA,NA,"",2020-21,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 175, 217, 208, 0, 0, 0, 0, 0, 600 -NA,NA,"",2020-21,Revere - Seacoast School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 16, 32, 12, 0, 81 -NA,NA,"",2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 96, 114, 112, 109, 110, 127, 0, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2020-21,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 172, 198, 205, 0, 0, 0, 0, 0, 575 -NA,NA,"",2020-21,Richmond - Richmond Consolidated,02490005, 12, 16, 14, 12, 18, 14, 17, 14, 17, 18, 0, 0, 0, 0, 0, 152 -NA,NA,"",2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 91, 91, 90, 87, 85, 75, 80, 67, 0, 666 -NA,NA,"",2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 0, 30, 34, 32, 33, 32, 32, 32, 32, 31, 0, 0, 0, 0, 0, 288 -NA,NA,"",2020-21,Rochester - Rochester Memorial,02500005, 20, 51, 56, 64, 74, 63, 82, 66, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2020-21,Rockland - Jefferson Elementary School,02510060, 0, 37, 34, 58, 50, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2020-21,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 184, 195, 193, 193, 0, 0, 0, 0, 0, 765 -NA,NA,"",2020-21,Rockland - Memorial Park,02510020, 0, 37, 60, 59, 42, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2020-21,Rockland - R Stewart Esten,02510025, 0, 58, 70, 55, 64, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2020-21,Rockland - Rockland Senior High,02510505, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 145, 140, 136, 5, 608 -NA,NA,"",2020-21,Rockport - Rockport Elementary,02520005, 8, 41, 38, 49, 53, 52, 64, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2020-21,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 60, 57, 66, 0, 255 -NA,NA,"",2020-21,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 67, 68, 67, 0, 0, 0, 0, 0, 202 -NA,NA,"",2020-21,Rowe - Rowe Elementary,02530005, 0, 5, 12, 6, 11, 14, 5, 10, 0, 0, 0, 0, 0, 0, 0, 63 -NA,NA,"",2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 148, 282, 264, 254, 238, 171, 139, 100, 0," 1,596" -NA,NA,"",2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 0, 105, 111, 120, 156, 128, 129, 157, 129, 123, 108, 91, 99, 101, 0," 1,557" -NA,NA,"",2020-21,Salem - Bates,02580003, 0, 46, 58, 59, 59, 69, 71, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2020-21,Salem - Bentley Academy Innovation School,02580010, 0, 61, 54, 51, 53, 51, 51, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2020-21,Salem - Carlton,02580015, 0, 41, 43, 36, 49, 48, 39, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2020-21,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 223, 222, 206, 0, 0, 0, 0, 0, 651 -NA,NA,"",2020-21,Salem - Horace Mann Laboratory,02580030, 0, 34, 48, 59, 42, 45, 42, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2020-21,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 11, 18, 19, 0, 50 -NA,NA,"",2020-21,Salem - Salem Early Childhood,02580001, 48, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61 -NA,NA,"",2020-21,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 208, 180, 217, 7, 860 -NA,NA,"",2020-21,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 5, 10, 0, 20 -NA,NA,"",2020-21,Salem - Saltonstall School,02580050, 0, 36, 39, 41, 42, 46, 47, 52, 43, 45, 0, 0, 0, 0, 0, 391 -NA,NA,"",2020-21,Salem - Witchcraft Heights,02580070, 0, 63, 79, 82, 94, 91, 83, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 72, 73, 72, 74, 75, 70, 59, 0, 495 -NA,NA,"",2020-21,Sandwich - Forestdale School,02610002, 63, 140, 151, 185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2020-21,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 174, 167, 192, 179, 0, 0, 0, 0, 0, 0, 0, 712 -NA,NA,"",2020-21,Sandwich - Sandwich High,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 166, 165, 156, 4, 641 -NA,NA,"",2020-21,Sandwich - Sandwich STEM Academy,02610305, 0, 0, 0, 0, 0, 0, 0, 0, 212, 222, 0, 0, 0, 0, 0, 434 -NA,NA,"",2020-21,Saugus - Douglas Waybright,02620067, 0, 8, 27, 28, 40, 21, 39, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2020-21,Saugus - Lynnhurst,02620040, 0, 9, 39, 41, 41, 41, 45, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2020-21,Saugus - Oaklandvale,02620050, 0, 8, 37, 34, 38, 43, 41, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2020-21,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 160, 176, 167, 5, 680 -NA,NA,"",2020-21,Saugus - Saugus Middle School,02620305, 0, 0, 0, 0, 0, 0, 0, 200, 217, 206, 0, 0, 0, 0, 0, 623 -NA,NA,"",2020-21,Saugus - Veterans Memorial,02620065, 28, 40, 58, 69, 76, 73, 70, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2020-21,Savoy - Emma L Miller Elementary School,02630010, 4, 4, 3, 4, 9, 6, 5, 9, 0, 0, 0, 0, 0, 0, 0, 44 -NA,NA,"",2020-21,Scituate - Cushing Elementary,02640007, 0, 51, 62, 60, 48, 53, 55, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2020-21,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 213, 203, 221, 0, 0, 0, 0, 0, 637 -NA,NA,"",2020-21,Scituate - Hatherly Elementary,02640010, 0, 35, 42, 49, 42, 37, 50, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2020-21,Scituate - Jenkins Elementary School,02640015, 0, 48, 52, 58, 60, 55, 46, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2020-21,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 196, 260, 252, 2, 921 -NA,NA,"",2020-21,Scituate - Wampatuck Elementary,02640020, 51, 48, 55, 59, 67, 55, 55, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 146, 149, 183, 0, 0, 0, 0, 0, 478 -NA,NA,"",2020-21,Seekonk - George R Martin,02650007, 27, 76, 89, 83, 78, 93, 77, 0, 0, 0, 0, 0, 0, 0, 0, 523 -NA,NA,"",2020-21,Seekonk - Mildred Aitken School,02650015, 21, 72, 64, 73, 81, 75, 72, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2020-21,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 144, 164, 150, 0, 588 -NA,NA,"",2020-21,Sharon - Cottage Street,02660005, 0, 45, 74, 64, 77, 79, 86, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2020-21,Sharon - East Elementary,02660010, 0, 61, 68, 106, 79, 86, 92, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2020-21,Sharon - Heights Elementary,02660015, 0, 86, 97, 88, 89, 89, 94, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2020-21,Sharon - Sharon Early Childhood Center,02660001, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 31 -NA,NA,"",2020-21,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 281, 301, 272, 0," 1,131" -NA,NA,"",2020-21,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 292, 291, 288, 0, 0, 0, 0, 0, 871 -NA,NA,"",2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 307, 329, 315, 0," 1,308" -NA,NA,"",2020-21,Sherborn - Pine Hill,02690010, 13, 55, 68, 64, 50, 77, 64, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2020-21,Shrewsbury - Beal School,02710005, 0, 174, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2020-21,Shrewsbury - Calvin Coolidge,02710015, 0, 42, 89, 83, 96, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2020-21,Shrewsbury - Floral Street School,02710020, 0, 0, 114, 180, 172, 213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2020-21,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 502, 483, 0, 0, 0, 0, 0, 985 -NA,NA,"",2020-21,Shrewsbury - Parker Road Preschool,02710040, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 -NA,NA,"",2020-21,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 473, 491, 0, 0, 0, 0, 0, 0, 0, 964 -NA,NA,"",2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 459, 480, 470, 464, 0," 1,873" -NA,NA,"",2020-21,Shrewsbury - Spring Street,02710035, 0, 39, 60, 83, 72, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2020-21,Shrewsbury - Walter J Paton,02710025, 0, 32, 67, 88, 90, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Shutesbury - Shutesbury Elementary,02720005, 10, 11, 19, 12, 9, 16, 12, 23, 0, 0, 0, 0, 0, 0, 0, 112 -NA,NA,"",2020-21,Silver Lake - Silver Lake Regional High,07600505, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257, 279, 267, 266, 7," 1,175" -NA,NA,"",2020-21,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 264, 259, 0, 0, 0, 0, 0, 523 -NA,NA,"",2020-21,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 68, 71, 69, 59, 47, 52, 0, 366 -NA,NA,"",2020-21,Somerset - Chace Street,02730005, 0, 42, 43, 54, 65, 62, 59, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2020-21,Somerset - North Elementary,02730008, 35, 52, 60, 62, 68, 81, 65, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2020-21,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 179, 223, 212, 0, 0, 0, 0, 0, 614 -NA,NA,"",2020-21,Somerset - South,02730015, 0, 37, 40, 42, 39, 50, 36, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257, 247, 249, 247, 7," 1,007" -NA,NA,"",2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 17, 70, 77, 67, 69, 64, 72, 44, 46, 64, 0, 0, 0, 0, 0, 590 -NA,NA,"",2020-21,Somerville - Arthur D Healey,02740075, 12, 38, 52, 55, 54, 49, 41, 47, 47, 51, 0, 0, 0, 0, 0, 446 -NA,NA,"",2020-21,Somerville - Benjamin G Brown,02740015, 0, 42, 41, 39, 25, 37, 41, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2020-21,Somerville - Capuano Early Childhood Center,02740005, 151, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2020-21,Somerville - E Somerville Community,02740111, 0, 67, 83, 94, 84, 74, 90, 74, 78, 76, 0, 0, 0, 0, 0, 720 -NA,NA,"",2020-21,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 12, 15, 14, 4, 56 -NA,NA,"",2020-21,Somerville - John F Kennedy,02740083, 16, 43, 50, 49, 42, 47, 38, 71, 48, 47, 0, 0, 0, 0, 0, 451 -NA,NA,"",2020-21,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 0, 8, 7, 0, 0, 0, 0, 0, 15 -NA,NA,"",2020-21,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 291, 321, 264, 7," 1,215" -NA,NA,"",2020-21,Somerville - West Somerville Neighborhood,02740115, 16, 46, 48, 43, 34, 31, 40, 41, 43, 38, 0, 0, 0, 0, 0, 380 -NA,NA,"",2020-21,Somerville - Winter Hill Community,02740120, 16, 36, 45, 32, 32, 28, 40, 67, 46, 49, 0, 0, 0, 0, 0, 391 -NA,NA,"",2020-21,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 124, 125, 123, 147, 0, 0, 0, 0, 0, 519 -NA,NA,"",2020-21,South Hadley - Mosier,02780020, 0, 0, 0, 148, 127, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2020-21,South Hadley - Plains Elementary,02780015, 63, 81, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2020-21,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 141, 135, 146, 9, 571 -NA,NA,"",2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 204, 212, 175, 0, 817 -NA,NA,"",2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 44, 76, 79, 80, 79, 79, 82, 84, 82, 86, 91, 71, 76, 0," 1,009" -NA,NA,"",2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 162, 161, 155, 0, 646 -NA,NA,"",2020-21,Southampton - William E Norris,02750005, 26, 62, 59, 61, 55, 76, 56, 53, 0, 0, 0, 0, 0, 0, 0, 448 -NA,NA,"",2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 120, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2020-21,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 123, 129, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2020-21,Southborough - Mary E Finn School,02760008, 84, 104, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2020-21,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 127, 124, 130, 0, 0, 0, 0, 0, 381 -NA,NA,"",2020-21,Southbridge - Charlton Street,02770005, 0, 0, 1, 55, 71, 72, 70, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2020-21,Southbridge - Eastford Road,02770010, 53, 142, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2020-21,Southbridge - Southbridge Academy,02770525, 0, 0, 0, 0, 0, 0, 0, 3, 8, 6, 11, 6, 12, 3, 0, 49 -NA,NA,"",2020-21,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 111, 99, 83, 0, 464 -NA,NA,"",2020-21,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 136, 147, 136, 0, 0, 0, 0, 0, 419 -NA,NA,"",2020-21,Southbridge - West Street,02770020, 0, 0, 0, 81, 90, 81, 61, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410, 399, 357, 361, 0," 1,527" -NA,NA,"",2020-21,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 43, 35, 57, 35, 54, 50, 51, 0, 325 -NA,NA,"",2020-21,Southern Berkshire - New Marlborough Central,07650018, 7, 16, 12, 14, 7, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2020-21,Southern Berkshire - South Egremont,07650030, 0, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15 -NA,NA,"",2020-21,Southern Berkshire - Undermountain,07650035, 31, 32, 35, 30, 27, 33, 44, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314, 293, 291, 273, 0," 1,171" -NA,NA,"",2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 88, 100, 112, 125, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 122, 124, 104, 101, 121, 101, 0, 673 -NA,NA,"",2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 28, 80, 85, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2020-21,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 79, 64, 60, 3, 298 -NA,NA,"",2020-21,Spencer-E Brookfield - East Brookfield Elementary,07670008, 47, 15, 28, 18, 21, 24, 21, 17, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2020-21,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 67, 90, 128, 120, 0, 0, 0, 0, 0, 405 -NA,NA,"",2020-21,Spencer-E Brookfield - Wire Village School,07670040, 0, 70, 90, 77, 96, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 45, 46, 49, 40, 43, 48, 32, 37, 34, 27, 0, 0, 0, 0, 0, 401 -NA,NA,"",2020-21,Springfield - Alice B Beal Elementary,02810175, 0, 43, 51, 51, 38, 46, 43, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2020-21,Springfield - Arthur T Talmadge,02810165, 0, 31, 45, 36, 41, 43, 40, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2020-21,Springfield - Balliet Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 1, 9, 10, 0, 0, 0, 0, 0, 20 -NA,NA,"",2020-21,Springfield - Brightwood,02810025, 26, 37, 59, 64, 53, 47, 56, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2020-21,Springfield - Chestnut Academy,02810365, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 0, 0, 0, 0, 0, 95 -NA,NA,"",2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 118, 106, 97, 0, 0, 0, 0, 0, 321 -NA,NA,"",2020-21,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 56, 53, 52, 53, 48, 41, 28, 0, 331 -NA,NA,"",2020-21,Springfield - Daniel B Brunton,02810035, 27, 60, 74, 63, 68, 65, 63, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2020-21,Springfield - Early Childhood Education Center,02810001, 109, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124 -NA,NA,"",2020-21,Springfield - Edward P. Boland School,02810010, 147, 70, 87, 73, 61, 82, 60, 0, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2020-21,Springfield - Elias Brookings,02810030, 31, 31, 43, 50, 40, 51, 51, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2020-21,Springfield - Emergence Academy,02810318, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 0, 0, 0, 0, 0, 13 -NA,NA,"",2020-21,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 194, 214, 233, 0, 0, 0, 0, 0, 641 -NA,NA,"",2020-21,Springfield - Frank H Freedman,02810075, 0, 38, 54, 46, 42, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2020-21,Springfield - Frederick Harris,02810080, 66, 69, 99, 103, 107, 98, 78, 0, 0, 0, 0, 0, 0, 0, 0, 620 -NA,NA,"",2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 5, 16, 0, 33 -NA,NA,"",2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 10, 13, 0, 25 -NA,NA,"",2020-21,Springfield - German Gerena Community School,02810195, 82, 102, 99, 97, 98, 84, 87, 0, 0, 0, 0, 0, 0, 0, 0, 649 -NA,NA,"",2020-21,Springfield - Glenwood,02810065, 0, 38, 41, 50, 56, 48, 43, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Springfield - Glickman Elementary,02810068, 0, 46, 44, 49, 46, 45, 62, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2020-21,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 341, 284, 214, 0," 1,207" -NA,NA,"",2020-21,Springfield - Hiram L Dorman,02810050, 0, 27, 38, 42, 50, 47, 36, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2020-21,Springfield - Homer Street,02810085, 0, 63, 92, 69, 54, 66, 49, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 77, 80, 72, 0, 0, 0, 0, 0, 229 -NA,NA,"",2020-21,Springfield - Indian Orchard Elementary,02810100, 69, 75, 92, 78, 92, 83, 90, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2020-21,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 154, 163, 154, 0, 0, 0, 0, 0, 471 -NA,NA,"",2020-21,Springfield - John J Duggan Middle,02810320, 0, 0, 0, 0, 0, 0, 0, 148, 169, 174, 77, 86, 59, 51, 0, 764 -NA,NA,"",2020-21,Springfield - Kensington International School,02810110, 34, 25, 47, 36, 47, 32, 45, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2020-21,Springfield - Kiley Academy,02810316, 0, 0, 0, 0, 0, 0, 0, 115, 0, 0, 0, 0, 0, 0, 0, 115 -NA,NA,"",2020-21,Springfield - Kiley Prep,02810315, 0, 0, 0, 0, 0, 0, 0, 104, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2020-21,Springfield - Liberty,02810115, 0, 43, 47, 63, 48, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2020-21,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 1, 0, 7 -NA,NA,"",2020-21,Springfield - Lincoln,02810120, 0, 75, 62, 74, 70, 63, 71, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2020-21,Springfield - Lyceum Academy,02810317, 0, 0, 0, 0, 0, 0, 0, 144, 153, 74, 0, 0, 0, 0, 0, 371 -NA,NA,"",2020-21,Springfield - M Marcus Kiley Middle,02810330, 0, 0, 0, 0, 0, 0, 0, 0, 245, 236, 0, 0, 0, 0, 0, 481 -NA,NA,"",2020-21,Springfield - Margaret C Ells,02810060, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135 -NA,NA,"",2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 41, 52, 47, 40, 39, 41, 51, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2020-21,Springfield - Mary M Lynch,02810140, 0, 29, 30, 44, 46, 53, 31, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2020-21,Springfield - Mary M Walsh,02810155, 11, 44, 41, 47, 42, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2020-21,Springfield - Mary O Pottenger,02810145, 30, 52, 73, 62, 77, 66, 63, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2020-21,Springfield - Milton Bradley School,02810023, 63, 69, 64, 81, 81, 85, 78, 0, 0, 0, 0, 0, 0, 0, 0, 521 -NA,NA,"",2020-21,Springfield - Rebecca M Johnson,02810055, 79, 89, 98, 111, 96, 126, 106, 0, 0, 0, 0, 0, 0, 0, 0, 705 -NA,NA,"",2020-21,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 87, 114, 103, 0, 0, 0, 0, 0, 304 -NA,NA,"",2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 359, 364, 319, 0," 1,404" -NA,NA,"",2020-21,Springfield - Samuel Bowles,02810020, 0, 34, 44, 53, 40, 29, 42, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2020-21,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 76, 77, 90, 0, 0, 0, 0, 0, 243 -NA,NA,"",2020-21,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 659, 524, 406, 497, 0," 2,086" -NA,NA,"",2020-21,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 38, 51, 94, 0, 206 -NA,NA,"",2020-21,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392, 292, 262, 226, 11," 1,183" -NA,NA,"",2020-21,Springfield - Springfield International Academy at Johnson,02810215, 0, 0, 0, 0, 1, 11, 4, 0, 0, 0, 0, 0, 0, 0, 0, 16 -NA,NA,"",2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 35, 19, 0, 0, 64 -NA,NA,"",2020-21,Springfield - Springfield Public Day Elementary School,02810005, 0, 0, 2, 3, 9, 16, 11, 0, 0, 0, 0, 0, 0, 0, 0, 41 -NA,NA,"",2020-21,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 29, 19, 15, 0, 86 -NA,NA,"",2020-21,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 23, 12, 21, 0, 0, 0, 0, 0, 56 -NA,NA,"",2020-21,Springfield - Springfield Vocational Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 127 -NA,NA,"",2020-21,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 96, 99, 92, 0, 0, 0, 0, 0, 287 -NA,NA,"",2020-21,Springfield - Sumner Avenue,02810160, 73, 65, 76, 91, 71, 70, 61, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 103, 104, 96, 80, 81, 85, 85, 4, 638 -NA,NA,"",2020-21,Springfield - Thomas M Balliet,02810015, 60, 32, 48, 42, 36, 43, 48, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2020-21,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 94, 105, 77, 0, 0, 0, 0, 0, 276 -NA,NA,"",2020-21,Springfield - Warner,02810180, 37, 39, 37, 35, 26, 40, 26, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2020-21,Springfield - Washington,02810185, 54, 55, 71, 62, 66, 60, 46, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2020-21,Springfield - White Street,02810190, 0, 54, 83, 77, 74, 63, 71, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2020-21,Springfield - William N. DeBerry,02810045, 0, 41, 58, 45, 47, 54, 39, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 54, 54, 54, 56, 54, 53, 53, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2020-21,Stoneham - Colonial Park,02840005, 25, 46, 44, 43, 48, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2020-21,Stoneham - Robin Hood,02840025, 16, 71, 68, 67, 61, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2020-21,Stoneham - South,02840030, 19, 55, 61, 64, 67, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2020-21,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 176, 163, 197, 172, 0, 0, 0, 0, 0, 708 -NA,NA,"",2020-21,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 145, 139, 178, 0, 610 -NA,NA,"",2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65 -NA,NA,"",2020-21,Stoughton - Helen Hansen Elementary,02850010, 0, 34, 47, 38, 39, 46, 37, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2020-21,Stoughton - Joseph H Gibbons,02850025, 0, 52, 61, 60, 56, 58, 63, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 50, 56, 56, 70, 57, 77, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2020-21,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 250, 268, 290, 0, 0, 0, 0, 0, 808 -NA,NA,"",2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 15, 45, 47, 41, 43, 47, 46, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2020-21,Stoughton - South Elementary,02850015, 0, 46, 40, 38, 35, 34, 44, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2020-21,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 242, 232, 264, 7," 1,035" -NA,NA,"",2020-21,Sturbridge - Burgess Elementary,02870005, 40, 91, 106, 97, 110, 123, 115, 110, 0, 0, 0, 0, 0, 0, 0, 792 -NA,NA,"",2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 231, 216, 195, 0, 853 -NA,NA,"",2020-21,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 278, 293, 339, 0, 0, 0, 0, 0, 910 -NA,NA,"",2020-21,Sudbury - General John Nixon Elementary,02880025, 0, 36, 56, 42, 53, 45, 67, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2020-21,Sudbury - Israel Loring School,02880015, 0, 51, 78, 76, 68, 79, 76, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2020-21,Sudbury - Josiah Haynes,02880010, 0, 37, 62, 57, 58, 61, 63, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2020-21,Sudbury - Peter Noyes,02880030, 39, 75, 88, 83, 84, 92, 85, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2020-21,Sunderland - Sunderland Elementary,02890005, 12, 17, 24, 26, 28, 29, 35, 13, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2020-21,Sutton - Sutton Early Learning,02900003, 36, 82, 82, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2020-21,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 97, 78, 109, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2020-21,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 91, 98, 88, 0, 367 -NA,NA,"",2020-21,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 103, 102, 118, 0, 0, 0, 0, 0, 323 -NA,NA,"",2020-21,Swampscott - Clarke,02910005, 0, 38, 44, 46, 44, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2020-21,Swampscott - Hadley,02910010, 0, 51, 62, 58, 64, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2020-21,Swampscott - Stanley,02910020, 0, 42, 51, 43, 42, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2020-21,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 156, 191, 191, 1, 700 -NA,NA,"",2020-21,Swampscott - Swampscott Middle,02910305, 40, 0, 0, 0, 0, 0, 152, 153, 172, 184, 0, 0, 0, 0, 0, 701 -NA,NA,"",2020-21,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 92, 90, 92, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2020-21,Swansea - Gardner,02920015, 0, 75, 97, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2020-21,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 118, 126, 135, 4, 550 -NA,NA,"",2020-21,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 176, 175, 189, 0, 0, 0, 0, 0, 540 -NA,NA,"",2020-21,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 69, 71, 52, 0, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2020-21,Swansea - Mark G Hoyle Elementary,02920017, 38, 57, 51, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 299, 286, 0, 0, 0, 0, 0, 585 -NA,NA,"",2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 172, 171, 173, 1, 687 -NA,NA,"",2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 132, 114, 113, 0, 499 -NA,NA,"",2020-21,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 240, 256, 275, 0, 0, 0, 0, 0, 0, 771 -NA,NA,"",2020-21,Taunton - East Taunton Elementary,02930010, 0, 94, 102, 99, 121, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2020-21,Taunton - Edmund Hatch Bennett,02930007, 0, 44, 55, 60, 77, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2020-21,Taunton - Edward F. Leddy Preschool,02930005, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 -NA,NA,"",2020-21,Taunton - Elizabeth Pole,02930027, 0, 117, 97, 107, 112, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2020-21,Taunton - H H Galligan,02930057, 0, 54, 54, 41, 55, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2020-21,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 162, 157, 159, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2020-21,Taunton - Joseph C Chamberlain,02930008, 0, 76, 95, 97, 89, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2020-21,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 210, 231, 225, 0, 0, 0, 0, 0, 0, 666 -NA,NA,"",2020-21,Taunton - Mulcahey Elementary School,02930015, 22, 133, 166, 166, 142, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 775 -NA,NA,"",2020-21,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20, 79, 0, 100 -NA,NA,"",2020-21,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 675, 565, 508, 495, 450, 7," 2,700" -NA,NA,"",2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 51, 58, 80, 82, 96, 120, 187, 241, 271, 361, 357, 311, 299, 0," 2,514" -NA,NA,"",2020-21,Tewksbury - Heath-Brook,02950010, 0, 96, 112, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2020-21,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 229, 246, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2020-21,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 261, 250, 0, 0, 0, 0, 0, 511 -NA,NA,"",2020-21,Tewksbury - L F Dewing,02950001, 111, 164, 131, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2020-21,Tewksbury - Louise Davy Trahan,02950025, 0, 0, 0, 0, 115, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2020-21,Tewksbury - North Street,02950020, 0, 0, 0, 0, 120, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2020-21,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 191, 228, 209, 7, 826 -NA,NA,"",2020-21,Tisbury - Tisbury Elementary,02960005, 15, 35, 31, 22, 35, 28, 30, 24, 38, 31, 0, 0, 0, 0, 0, 289 -NA,NA,"",2020-21,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 86, 79, 87, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2020-21,Topsfield - Steward Elementary,02980010, 36, 67, 75, 72, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260, 231, 239, 223, 0, 953 -NA,NA,"",2020-21,Triton - Newbury Elementary,07730020, 27, 54, 46, 48, 48, 39, 56, 41, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2020-21,Triton - Pine Grove,07730025, 33, 31, 52, 46, 50, 58, 50, 66, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2020-21,Triton - Salisbury Elementary,07730015, 26, 40, 57, 59, 60, 65, 60, 59, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2020-21,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 190, 153, 149, 0, 646 -NA,NA,"",2020-21,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 170, 189, 0, 0, 0, 0, 0, 359 -NA,NA,"",2020-21,Truro - Truro Central,03000005, 21, 14, 13, 16, 16, 15, 18, 0, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2020-21,Tyngsborough - Tyngsborough Elementary,03010020, 22, 98, 110, 124, 113, 146, 110, 0, 0, 0, 0, 0, 0, 0, 0, 723 -NA,NA,"",2020-21,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 108, 126, 115, 0, 445 -NA,NA,"",2020-21,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 119, 149, 125, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 104, 118, 127, 0, 0, 0, 0, 0, 349 -NA,NA,"",2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 54, 65, 70, 67, 75, 75, 77, 69, 68, 65, 0, 0, 0, 0, 0, 685 -NA,NA,"",2020-21,Up-Island Regional - Chilmark Elementary,07740010, 0, 11, 6, 10, 10, 7, 6, 0, 0, 0, 0, 0, 0, 0, 0, 50 -NA,NA,"",2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 8, 32, 32, 40, 31, 33, 38, 46, 51, 37, 0, 0, 0, 0, 0, 348 -NA,NA,"",2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 163, 181, 174, 0, 722 -NA,NA,"",2020-21,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 12, 24, 0, 41 -NA,NA,"",2020-21,Uxbridge - Taft Early Learning Center,03040005, 46, 107, 117, 108, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2020-21,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 132, 120, 94, 104, 7, 600 -NA,NA,"",2020-21,Uxbridge - Whitin Intermediate,03040405, 0, 0, 0, 0, 0, 110, 124, 140, 118, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 111, 111, 121, 76, 0, 0, 0, 0, 0, 419 -NA,NA,"",2020-21,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 107, 109, 128, 0, 0, 0, 0, 0, 344 -NA,NA,"",2020-21,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 77, 65, 83, 75, 0, 0, 0, 0, 0, 300 -NA,NA,"",2020-21,Wachusett - Davis Hill Elementary,07750018, 0, 67, 52, 76, 62, 90, 77, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2020-21,Wachusett - Dawson,07750020, 0, 62, 73, 81, 66, 82, 81, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2020-21,Wachusett - Early Childhood Center,07750001, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93 -NA,NA,"",2020-21,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 97, 112, 131, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2020-21,Wachusett - Houghton Elementary,07750027, 0, 55, 65, 67, 69, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2020-21,Wachusett - Leroy E.Mayo,07750032, 0, 78, 68, 79, 73, 90, 91, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2020-21,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 256, 246, 274, 0, 0, 0, 0, 0, 776 -NA,NA,"",2020-21,Wachusett - Naquag Elementary School,07750005, 0, 100, 93, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2020-21,Wachusett - Paxton Center,07750040, 0, 34, 40, 39, 31, 52, 44, 65, 69, 66, 0, 0, 0, 0, 0, 440 -NA,NA,"",2020-21,Wachusett - Thomas Prince,07750045, 0, 30, 35, 29, 35, 41, 36, 45, 44, 44, 0, 0, 0, 0, 0, 339 -NA,NA,"",2020-21,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, 504, 488, 501, 16," 2,003" -NA,NA,"",2020-21,Wakefield - Dolbeare,03050005, 0, 82, 83, 83, 94, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68 -NA,NA,"",2020-21,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 259, 268, 264, 267, 0, 0, 0, 0, 0," 1,058" -NA,NA,"",2020-21,Wakefield - Greenwood,03050020, 0, 42, 41, 41, 47, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2020-21,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 212, 244, 247, 0, 893 -NA,NA,"",2020-21,Wakefield - Walton,03050040, 0, 44, 41, 47, 45, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2020-21,Wakefield - Woodville School,03050015, 0, 101, 82, 74, 77, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2020-21,Wales - Wales Elementary,03060005, 12, 16, 18, 12, 12, 14, 24, 16, 0, 0, 0, 0, 0, 0, 0, 124 -NA,NA,"",2020-21,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 126, 143, 128, 0, 0, 0, 0, 0, 397 -NA,NA,"",2020-21,Walpole - Boyden,03070010, 0, 53, 61, 60, 67, 56, 53, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62 -NA,NA,"",2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 146, 136, 141, 0, 0, 0, 0, 0, 423 -NA,NA,"",2020-21,Walpole - Elm Street School,03070005, 0, 86, 61, 67, 69, 74, 77, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2020-21,Walpole - Fisher,03070015, 0, 96, 71, 78, 74, 60, 78, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2020-21,Walpole - Old Post Road,03070018, 0, 74, 86, 78, 71, 83, 62, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2020-21,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 259, 290, 270, 4," 1,078" -NA,NA,"",2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 0, 91, 61, 82, 69, 82, 73, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2020-21,Waltham - Henry Whittemore Elementary School,03080065, 0, 52, 65, 67, 70, 81, 78, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2020-21,Waltham - James Fitzgerald Elementary School,03080060, 0, 60, 59, 66, 72, 55, 60, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2020-21,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 186, 185, 164, 0, 0, 0, 0, 0, 535 -NA,NA,"",2020-21,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 207, 222, 240, 0, 0, 0, 0, 0, 669 -NA,NA,"",2020-21,Waltham - Northeast Elementary School,03080040, 52, 54, 86, 67, 80, 67, 76, 0, 0, 0, 0, 0, 0, 0, 0, 482 -NA,NA,"",2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 0, 49, 67, 67, 64, 53, 77, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 0, 39, 37, 33, 30, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2020-21,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 428, 389, 387, 1," 1,620" -NA,NA,"",2020-21,Waltham - William F. Stanley Elementary School,03080005, 57, 65, 48, 56, 51, 68, 62, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2020-21,Ware - Stanley M Koziol Elementary School,03090020, 37, 68, 82, 85, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2020-21,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 102, 114, 105, 69, 66, 64, 3, 523 -NA,NA,"",2020-21,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 76, 97, 101, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2020-21,Wareham - John William Decas,03100003, 48, 163, 184, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2020-21,Wareham - Minot Forest,03100017, 0, 0, 0, 0, 167, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 13, 10, 0, 33 -NA,NA,"",2020-21,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 166, 180, 187, 0, 0, 0, 0, 0, 0, 533 -NA,NA,"",2020-21,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 131, 108, 97, 79, 6, 585 -NA,NA,"",2020-21,Watertown - Cunniff,03140015, 0, 52, 38, 54, 51, 38, 34, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2020-21,Watertown - Hosmer,03140020, 77, 87, 84, 87, 89, 88, 79, 0, 0, 0, 0, 0, 0, 0, 0, 591 -NA,NA,"",2020-21,Watertown - James Russell Lowell,03140025, 0, 50, 79, 70, 73, 68, 61, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2020-21,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 164, 159, 189, 6, 695 -NA,NA,"",2020-21,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 178, 184, 210, 0, 0, 0, 0, 0, 572 -NA,NA,"",2020-21,Wayland - Claypit Hill School,03150005, 0, 74, 66, 75, 97, 104, 88, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2020-21,Wayland - Happy Hollow School,03150015, 0, 71, 55, 52, 60, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2020-21,Wayland - Loker School,03150020, 0, 57, 80, 56, 76, 44, 44, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2020-21,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 196, 196, 231, 0, 836 -NA,NA,"",2020-21,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 199, 203, 240, 0, 0, 0, 0, 0, 642 -NA,NA,"",2020-21,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 98, 111, 89, 5, 390 -NA,NA,"",2020-21,Webster - Park Avenue Elementary,03160015, 43, 91, 147, 144, 140, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 721 -NA,NA,"",2020-21,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 148, 149, 129, 145, 0, 0, 0, 0, 0, 571 -NA,NA,"",2020-21,Wellesley - Ernest F Upham,03170050, 0, 18, 19, 27, 35, 33, 26, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2020-21,Wellesley - Hunnewell,03170025, 0, 29, 38, 40, 45, 35, 41, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2020-21,Wellesley - John D Hardy,03170020, 0, 32, 29, 35, 43, 36, 48, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2020-21,Wellesley - Joseph E Fiske,03170015, 0, 29, 48, 49, 40, 56, 42, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2020-21,Wellesley - Katharine Lee Bates,03170005, 0, 33, 40, 55, 47, 56, 53, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 -NA,NA,"",2020-21,Wellesley - Schofield,03170045, 0, 46, 58, 55, 65, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2020-21,Wellesley - Sprague Elementary School,03170048, 0, 33, 48, 55, 63, 63, 54, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2020-21,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 337, 382, 372, 0, 0, 0, 0, 0," 1,091" -NA,NA,"",2020-21,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 367, 340, 392, 6," 1,469" -NA,NA,"",2020-21,Wellfleet - Wellfleet Elementary,03180005, 0, 14, 16, 23, 15, 20, 15, 0, 0, 0, 0, 0, 0, 0, 0, 103 -NA,NA,"",2020-21,West Boylston - Major Edwards Elementary,03220005, 26, 40, 68, 60, 66, 64, 62, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 66, 77, 72, 62, 68, 87, 70, 0, 502 -NA,NA,"",2020-21,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 104, 99, 90, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2020-21,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 91, 112, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2020-21,West Bridgewater - Spring Street School,03230005, 44, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 115, 112, 98, 103, 105, 103, 0, 636 -NA,NA,"",2020-21,West Springfield - Cowing Early Childhood,03320001, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82 -NA,NA,"",2020-21,West Springfield - John Ashley,03320005, 0, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2020-21,West Springfield - John R Fausey,03320010, 0, 1, 80, 79, 79, 80, 98, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2020-21,West Springfield - Memorial,03320025, 0, 0, 32, 37, 29, 43, 43, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2020-21,West Springfield - Mittineague,03320030, 0, 0, 26, 37, 30, 35, 34, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2020-21,West Springfield - Philip G Coburn,03320007, 0, 33, 93, 85, 89, 102, 69, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2020-21,West Springfield - Tatham,03320040, 0, 0, 47, 58, 47, 47, 55, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2020-21,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 291, 294, 288, 17," 1,205" -NA,NA,"",2020-21,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 298, 312, 302, 0, 0, 0, 0, 0, 912 -NA,NA,"",2020-21,Westborough - Annie E Fales,03210010, 0, 67, 78, 99, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2020-21,Westborough - Elsie A Hastings Elementary,03210025, 83, 95, 83, 95, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2020-21,Westborough - J Harding Armstrong,03210005, 0, 77, 103, 80, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2020-21,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 297, 287, 295, 0, 0, 0, 0, 0, 0, 0, 879 -NA,NA,"",2020-21,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 289, 331, 0, 0, 0, 0, 0, 620 -NA,NA,"",2020-21,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298, 268, 290, 318, 8," 1,182" -NA,NA,"",2020-21,Westfield - Abner Gibbs,03250020, 0, 36, 37, 39, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118 -NA,NA,"",2020-21,Westfield - Franklin Ave,03250015, 0, 35, 36, 36, 40, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2020-21,Westfield - Highland,03250025, 0, 52, 71, 78, 57, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2020-21,Westfield - Munger Hill,03250033, 0, 57, 63, 75, 70, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2020-21,Westfield - Paper Mill,03250036, 0, 58, 71, 70, 54, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2020-21,Westfield - Southampton Road,03250040, 0, 53, 57, 66, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2020-21,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260, 257, 290, 285, 14," 1,106" -NA,NA,"",2020-21,Westfield - Westfield Intermediate School,03250075, 0, 0, 0, 0, 0, 0, 364, 329, 0, 0, 0, 0, 0, 0, 0, 693 -NA,NA,"",2020-21,Westfield - Westfield Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 0, 384, 387, 0, 0, 0, 0, 0, 771 -NA,NA,"",2020-21,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 152, 138, 134, 3, 576 -NA,NA,"",2020-21,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 124, 95, 138, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2020-21,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 181, 169, 183, 0, 0, 0, 0, 0, 533 -NA,NA,"",2020-21,Westford - Col John Robinson,03260025, 8, 90, 81, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2020-21,Westford - Day Elementary,03260007, 0, 0, 0, 0, 113, 92, 125, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2020-21,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 108, 120, 120, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2020-21,Westford - Nabnasset,03260015, 15, 108, 101, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2020-21,Westford - Rita E. Miller Elementary School,03260055, 22, 73, 95, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2020-21,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 206, 198, 197, 0, 0, 0, 0, 0, 601 -NA,NA,"",2020-21,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 424, 390, 444, 3," 1,645" -NA,NA,"",2020-21,Westhampton - Westhampton Elementary School,03270005, 7, 8, 12, 11, 9, 19, 17, 21, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2020-21,Weston - Country,03300010, 20, 69, 79, 90, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2020-21,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 137, 149, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2020-21,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 148, 161, 164, 0, 630 -NA,NA,"",2020-21,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 142, 147, 175, 0, 0, 0, 0, 0, 464 -NA,NA,"",2020-21,Weston - Woodland,03300015, 7, 47, 49, 47, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196 -NA,NA,"",2020-21,Westport - Alice A Macomber,03310015, 39, 99, 100, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2020-21,Westport - Westport Elementary,03310030, 0, 0, 0, 0, 97, 108, 123, 132, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2020-21,Westport - Westport Junior/Senior High School,03310515, 0, 0, 0, 0, 0, 0, 0, 0, 106, 124, 92, 71, 73, 82, 2, 550 -NA,NA,"",2020-21,Westwood - Deerfield School,03350010, 0, 36, 25, 28, 29, 31, 42, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2020-21,Westwood - Downey,03350012, 3, 43, 43, 64, 50, 45, 47, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2020-21,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 249, 211, 223, 0, 0, 0, 0, 0, 683 -NA,NA,"",2020-21,Westwood - Martha Jones,03350017, 0, 49, 32, 40, 53, 49, 48, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2020-21,Westwood - Paul Hanlon,03350015, 0, 30, 27, 29, 43, 31, 32, 0, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2020-21,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 248, 253, 246, 3, 993 -NA,NA,"",2020-21,Westwood - Westwood Integrated Preschool,03350050, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38 -NA,NA,"",2020-21,Westwood - William E Sheehan,03350025, 0, 45, 40, 58, 44, 48, 54, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2020-21,Weymouth - Abigail Adams Middle School,03360310, 0, 0, 0, 0, 0, 0, 0, 424, 456, 0, 0, 0, 0, 0, 0, 880 -NA,NA,"",2020-21,Weymouth - Academy Avenue,03360005, 0, 50, 52, 52, 62, 73, 52, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2020-21,Weymouth - Frederick C Murphy,03360050, 0, 41, 49, 45, 46, 42, 48, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2020-21,Weymouth - Johnson Early Childhood Center,03360003, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2020-21,Weymouth - Lawrence W Pingree,03360065, 0, 36, 48, 31, 35, 37, 32, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2020-21,Weymouth - Ralph Talbot,03360085, 0, 45, 49, 40, 43, 38, 51, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2020-21,Weymouth - Thomas V Nash,03360060, 0, 31, 36, 30, 34, 32, 42, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 67, 44, 53, 60, 63, 70, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2020-21,Weymouth - Wessagusset,03360110, 0, 47, 44, 51, 55, 51, 53, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2020-21,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434, 494, 428, 437, 437, 17," 2,247" -NA,NA,"",2020-21,Weymouth - William Seach,03360080, 0, 57, 60, 75, 61, 65, 60, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2020-21,Whately - Whately Elementary,03370005, 11, 17, 18, 16, 13, 15, 11, 15, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2020-21,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 104, 115, 116, 119, 0, 0, 0, 0, 0, 454 -NA,NA,"",2020-21,Whitman-Hanson - Indian Head,07800035, 0, 79, 96, 95, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2020-21,Whitman-Hanson - John H Duval,07800030, 0, 62, 70, 69, 71, 75, 70, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2020-21,Whitman-Hanson - Louise A Conley,07800010, 0, 63, 82, 74, 91, 90, 96, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80 -NA,NA,"",2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, 285, 283, 302, 7," 1,117" -NA,NA,"",2020-21,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 153, 193, 203, 0, 0, 0, 0, 0, 549 -NA,NA,"",2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 341, 305, 268, 0," 1,249" -NA,NA,"",2020-21,Williamsburg - Anne T. Dunphy School,03400020, 4, 6, 12, 23, 12, 17, 24, 21, 0, 0, 0, 0, 0, 0, 0, 119 -NA,NA,"",2020-21,Wilmington - Boutwell,03420005, 6, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112 -NA,NA,"",2020-21,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 111, 135, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2020-21,Wilmington - Shawsheen Elementary,03420025, 0, 0, 103, 105, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2020-21,Wilmington - West Intermediate,03420080, 0, 0, 0, 0, 0, 105, 115, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2020-21,Wilmington - Wildwood,03420015, 10, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 -NA,NA,"",2020-21,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 192, 201, 194, 0, 755 -NA,NA,"",2020-21,Wilmington - Wilmington Middle School,03420330, 0, 0, 0, 0, 0, 0, 0, 198, 268, 249, 0, 0, 0, 0, 0, 715 -NA,NA,"",2020-21,Wilmington - Woburn Street,03420020, 0, 0, 118, 107, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2020-21,Winchendon - Memorial,03430040, 0, 91, 77, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2020-21,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 8, 7, 16, 0, 35 -NA,NA,"",2020-21,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 58, 68, 67, 0, 262 -NA,NA,"",2020-21,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 87, 86, 101, 0, 0, 0, 0, 0, 274 -NA,NA,"",2020-21,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 97, 109, 87, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2020-21,Winchendon - Winchendon PreSchool Program,03430010, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56 -NA,NA,"",2020-21,Winchester - Ambrose Elementary,03440045, 0, 41, 56, 62, 48, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2020-21,Winchester - Lincoln Elementary,03440005, 0, 47, 59, 69, 61, 87, 70, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2020-21,Winchester - Lynch Elementary,03440020, 36, 56, 83, 85, 91, 82, 76, 0, 0, 0, 0, 0, 0, 0, 0, 509 -NA,NA,"",2020-21,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 348, 388, 348, 0, 0, 0, 0, 0," 1,084" -NA,NA,"",2020-21,Winchester - Muraco Elementary,03440040, 0, 37, 78, 56, 60, 70, 66, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2020-21,Winchester - Vinson-Owen Elementary,03440025, 14, 55, 70, 63, 65, 59, 77, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2020-21,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344, 348, 337, 374, 0," 1,403" -NA,NA,"",2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 124, 149, 130, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 10, 124, 161, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2020-21,Winthrop - Winthrop High School,03460505, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 132, 135, 146, 5, 562 -NA,NA,"",2020-21,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 137, 162, 157, 0, 0, 0, 0, 0, 456 -NA,NA,"",2020-21,Woburn - Clyde Reeves,03470040, 58, 47, 51, 69, 46, 55, 46, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2020-21,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 146, 183, 195, 0, 0, 0, 0, 0, 524 -NA,NA,"",2020-21,Woburn - Goodyear Elementary School,03470005, 0, 34, 50, 53, 39, 50, 53, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 0, 57, 66, 59, 60, 54, 71, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2020-21,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 191, 144, 175, 0, 0, 0, 0, 0, 510 -NA,NA,"",2020-21,Woburn - Linscott-Rumford,03470025, 0, 36, 25, 36, 39, 37, 24, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2020-21,Woburn - Malcolm White,03470055, 0, 36, 53, 44, 55, 48, 47, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2020-21,Woburn - Mary D Altavesta,03470065, 0, 40, 40, 41, 36, 47, 35, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2020-21,Woburn - Shamrock,03470043, 46, 35, 50, 34, 38, 30, 39, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2020-21,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 288, 343, 313, 12," 1,236" -NA,NA,"",2020-21,Worcester - Belmont Street Community,03480020, 42, 64, 84, 90, 81, 61, 81, 73, 0, 0, 0, 0, 0, 0, 0, 576 -NA,NA,"",2020-21,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 337, 351, 0, 0, 0, 0, 0, 688 -NA,NA,"",2020-21,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 320, 261, 241, 11," 1,153" -NA,NA,"",2020-21,Worcester - Burncoat Street,03480035, 0, 31, 27, 31, 43, 48, 44, 36, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2020-21,Worcester - Canterbury,03480045, 17, 33, 32, 38, 33, 44, 53, 50, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2020-21,Worcester - Chandler Elementary Community,03480050, 0, 41, 64, 67, 52, 74, 73, 82, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2020-21,Worcester - Chandler Magnet,03480052, 28, 54, 64, 66, 64, 55, 67, 77, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2020-21,Worcester - City View,03480053, 13, 37, 61, 57, 78, 71, 76, 69, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2020-21,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 98, 105, 85, 86, 91, 80, 1, 546 -NA,NA,"",2020-21,Worcester - Clark St Community,03480055, 24, 29, 28, 28, 36, 34, 33, 27, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2020-21,Worcester - Columbus Park,03480060, 13, 44, 57, 53, 63, 54, 40, 59, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2020-21,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335, 348, 357, 388, 11," 1,439" -NA,NA,"",2020-21,Worcester - Elm Park Community,03480095, 0, 38, 58, 64, 62, 58, 63, 58, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2020-21,Worcester - Flagg Street,03480090, 0, 43, 53, 52, 41, 45, 63, 48, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2020-21,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 458, 447, 0, 0, 0, 0, 0, 905 -NA,NA,"",2020-21,Worcester - Francis J McGrath Elementary,03480177, 0, 33, 27, 34, 34, 29, 33, 34, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2020-21,Worcester - Gates Lane,03480110, 42, 58, 82, 75, 72, 69, 64, 54, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2020-21,Worcester - Goddard School/Science Technical,03480100, 20, 47, 46, 42, 48, 52, 56, 45, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2020-21,Worcester - Grafton Street,03480115, 0, 50, 65, 50, 44, 50, 53, 65, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2020-21,Worcester - Head Start,03480002, 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2020-21,Worcester - Heard Street,03480136, 0, 28, 29, 37, 45, 35, 39, 35, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2020-21,Worcester - Jacob Hiatt Magnet,03480140, 34, 39, 63, 56, 53, 50, 44, 44, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2020-21,Worcester - Lake View,03480145, 0, 40, 52, 45, 48, 47, 48, 39, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2020-21,Worcester - Lincoln Street,03480160, 4, 43, 40, 45, 32, 23, 38, 24, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2020-21,Worcester - May Street,03480175, 0, 30, 49, 34, 38, 48, 38, 46, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2020-21,Worcester - Midland Street,03480185, 0, 26, 33, 31, 31, 22, 25, 42, 0, 0, 0, 0, 0, 0, 0, 210 -NA,NA,"",2020-21,Worcester - Nelson Place,03480200, 33, 63, 75, 86, 81, 66, 48, 80, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2020-21,Worcester - Norrback Avenue,03480202, 36, 50, 75, 85, 73, 64, 65, 70, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2020-21,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 326, 316, 285, 21," 1,299" -NA,NA,"",2020-21,Worcester - Quinsigamond,03480210, 19, 93, 111, 92, 103, 96, 87, 95, 0, 0, 0, 0, 0, 0, 0, 696 -NA,NA,"",2020-21,Worcester - Rice Square,03480215, 0, 68, 92, 65, 69, 60, 61, 50, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2020-21,Worcester - Roosevelt,03480220, 53, 81, 88, 92, 72, 85, 70, 85, 0, 0, 0, 0, 0, 0, 0, 626 -NA,NA,"",2020-21,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436, 349, 331, 294, 15," 1,425" -NA,NA,"",2020-21,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 50, 444, 437, 0, 0, 0, 0, 0, 931 -NA,NA,"",2020-21,Worcester - Tatnuck,03480230, 18, 61, 63, 63, 44, 54, 50, 44, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2020-21,Worcester - Thorndyke Road,03480235, 0, 46, 44, 48, 53, 58, 56, 41, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2020-21,Worcester - Union Hill School,03480240, 0, 50, 52, 55, 58, 64, 50, 60, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2020-21,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 40, 41, 39, 39, 36, 38, 0, 233 -NA,NA,"",2020-21,Worcester - Vernon Hill School,03480280, 23, 55, 70, 82, 61, 63, 51, 62, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2020-21,Worcester - Wawecus Road School,03480026, 0, 8, 23, 13, 15, 20, 24, 24, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2020-21,Worcester - West Tatnuck,03480260, 39, 38, 50, 43, 58, 36, 34, 39, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2020-21,Worcester - Woodland Academy,03480030, 0, 57, 70, 74, 67, 82, 68, 86, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2020-21,Worcester - Worcester Arts Magnet School,03480225, 17, 51, 49, 58, 48, 48, 56, 41, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2020-21,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 0, 384, 352, 0, 0, 0, 0, 0, 736 -NA,NA,"",2020-21,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 381, 374, 357, 0," 1,481" -NA,NA,"",2020-21,Worthington - R. H. Conwell,03490010, 2, 10, 7, 7, 14, 9, 9, 5, 0, 0, 0, 0, 0, 0, 0, 63 -NA,NA,"",2020-21,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 122, 118, 133, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2020-21,Wrentham - Delaney,03500003, 48, 102, 103, 103, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 114, 120, 119, 120, 116, 116, 120, 115, 106, 102, 104, 89, 84, 0," 1,425" -NA,NA,"",2019-20,Abington - Abington Early Education Program,00010001, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2019-20,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 156, 154, 117, 6, 593 -NA,NA,"",2019-20,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 167, 172, 164, 187, 0, 0, 0, 0, 0, 690 -NA,NA,"",2019-20,Abington - Beaver Brook Elementary,00010020, 0, 169, 157, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2019-20,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 165, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 66, 75, 74, 75, 70, 71, 56, 40, 0, 527 -NA,NA,"",2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470, 463, 427, 449, 5," 1,814" -NA,NA,"",2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 52, 79, 87, 70, 67, 65, 52, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 56, 42, 43, 45, 68, 69, 70, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102 -NA,NA,"",2019-20,Acton-Boxborough - Luther Conant School,06000030, 0, 54, 60, 65, 64, 48, 46, 72, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 55, 62, 81, 67, 69, 90, 91, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2019-20,Acton-Boxborough - Merriam School,06000010, 0, 53, 61, 63, 66, 70, 71, 91, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 36, 42, 42, 65, 70, 71, 45, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 412, 448, 0, 0, 0, 0, 0, 860 -NA,NA,"",2019-20,Acushnet - Acushnet Elementary School,00030025, 46, 89, 127, 109, 85, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2019-20,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 110, 101, 112, 120, 0, 0, 0, 0, 0, 443 -NA,NA,"",2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 104, 125, 146, 157, 154, 142, 135, 0, 963 -NA,NA,"",2019-20,Agawam - Agawam Early Childhood Center,00050003, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2019-20,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 234, 278, 265, 0," 1,074" -NA,NA,"",2019-20,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 270, 287, 0, 0, 0, 0, 0, 557 -NA,NA,"",2019-20,Agawam - Benjamin J Phelps,00050020, 0, 67, 63, 69, 83, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2019-20,Agawam - Clifford M Granger,00050010, 0, 58, 41, 38, 70, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2019-20,Agawam - James Clark School,00050030, 0, 57, 61, 59, 58, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2019-20,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 274, 312, 0, 3, 0, 0, 0, 0, 0, 589 -NA,NA,"",2019-20,Agawam - Robinson Park,00050025, 0, 81, 85, 68, 77, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 103, 102, 105, 53, 51, 51, 96, 49, 43, 0, 0, 0, 0, 0, 653 -NA,NA,"",2019-20,Amesbury - Amesbury Elementary,00070005, 33, 63, 51, 71, 62, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2019-20,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 124, 139, 142, 6, 529 -NA,NA,"",2019-20,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 13, 13, 19, 0, 53 -NA,NA,"",2019-20,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 181, 162, 156, 169, 0, 0, 0, 0, 0, 668 -NA,NA,"",2019-20,Amesbury - Charles C Cashman Elementary,00070010, 26, 71, 64, 76, 82, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 416 -NA,NA,"",2019-20,Amherst - Crocker Farm Elementary,00080009, 53, 32, 55, 44, 45, 56, 54, 61, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2019-20,Amherst - Fort River Elementary,00080020, 0, 49, 41, 31, 55, 43, 42, 50, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Amherst - Wildwood Elementary,00080050, 0, 47, 52, 64, 50, 62, 50, 57, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2019-20,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 239, 236, 231, 9, 920 -NA,NA,"",2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 214, 212, 0, 0, 0, 0, 0, 426 -NA,NA,"",2019-20,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 455, 427, 455, 424, 34," 1,795" -NA,NA,"",2019-20,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 184, 176, 172, 0, 0, 0, 0, 0, 532 -NA,NA,"",2019-20,Andover - Bancroft Elementary,00090003, 0, 81, 93, 97, 90, 102, 103, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2019-20,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 158, 179, 181, 0, 0, 0, 0, 0, 518 -NA,NA,"",2019-20,Andover - Henry C Sanborn Elementary,00090010, 0, 41, 54, 54, 61, 74, 74, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2019-20,Andover - High Plain Elementary,00090004, 0, 69, 106, 84, 85, 87, 96, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2019-20,Andover - Shawsheen School,00090005, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 81 -NA,NA,"",2019-20,Andover - South Elementary,00090020, 0, 66, 88, 78, 81, 93, 73, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2019-20,Andover - West Elementary,00090025, 0, 83, 102, 86, 105, 102, 116, 0, 0, 0, 0, 0, 0, 0, 0, 594 -NA,NA,"",2019-20,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 125, 133, 148, 0, 0, 0, 0, 0, 406 -NA,NA,"",2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 118, 120, 98, 93, 66, 30, 0, 0, 525 -NA,NA,"",2019-20,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 364, 342, 337, 0," 1,411" -NA,NA,"",2019-20,Arlington - Brackett,00100010, 0, 87, 106, 82, 93, 67, 100, 0, 0, 0, 0, 0, 0, 0, 0, 535 -NA,NA,"",2019-20,Arlington - Cyrus E Dallin,00100025, 0, 70, 87, 75, 87, 72, 81, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2019-20,Arlington - Gibbs School,00100305, 0, 0, 0, 0, 0, 0, 0, 486, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2019-20,Arlington - Hardy,00100030, 0, 68, 75, 79, 78, 75, 69, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2019-20,Arlington - John A Bishop,00100005, 0, 71, 93, 67, 70, 70, 69, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2019-20,Arlington - M Norcross Stratton,00100055, 0, 84, 84, 77, 72, 71, 62, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2019-20,Arlington - Menotomy Preschool,00100038, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 -NA,NA,"",2019-20,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 0, 455, 444, 0, 0, 0, 0, 0, 899 -NA,NA,"",2019-20,Arlington - Peirce,00100045, 0, 57, 57, 65, 40, 42, 46, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2019-20,Arlington - Thompson,00100050, 0, 87, 92, 72, 93, 90, 80, 0, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 59, 70, 82, 77, 76, 70, 95, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 0, 86, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 140, 172, 168, 16, 667 -NA,NA,"",2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 195, 190, 197, 0, 0, 0, 0, 0, 582 -NA,NA,"",2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 79, 95, 104, 99, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2019-20,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 218, 212, 215, 0, 825 -NA,NA,"",2019-20,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 229, 219, 210, 0, 0, 0, 0, 0, 658 -NA,NA,"",2019-20,Ashland - David Mindess,00140015, 0, 0, 0, 0, 229, 203, 227, 0, 0, 0, 0, 0, 0, 0, 0, 659 -NA,NA,"",2019-20,Ashland - Henry E Warren Elementary,00140010, 0, 188, 222, 204, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 614 -NA,NA,"",2019-20,Ashland - William Pittaway Elementary,00140005, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93 -NA,NA,"",2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 298, 277, 266, 0," 1,141" -NA,NA,"",2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 68, 104, 108, 121, 107, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2019-20,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 79, 87, 80, 7, 328 -NA,NA,"",2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 96, 108, 113, 119, 0, 0, 0, 0, 0, 436 -NA,NA,"",2019-20,Athol-Royalston - Royalston Community School,06150050, 0, 20, 24, 22, 19, 24, 20, 18, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 110, 110, 110, 110, 110, 110, 110, 110, 110, 84, 74, 94, 60, 0," 1,302" -NA,NA,"",2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 77, 70, 71, 73, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2019-20,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 20, 29, 0, 53 -NA,NA,"",2019-20,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 454, 465, 439, 396, 16," 1,770" -NA,NA,"",2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 167, 141, 162, 151, 0, 0, 0, 0, 0, 621 -NA,NA,"",2019-20,Attleboro - Early Learning Center,00160008, 184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 0, 95, 88, 78, 96, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2019-20,Attleboro - Hyman Fine Elementary School,00160040, 0, 93, 87, 92, 89, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2019-20,Attleboro - Peter Thacher Elementary School,00160050, 0, 93, 86, 98, 90, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2019-20,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 141, 162, 175, 177, 0, 0, 0, 0, 0, 655 -NA,NA,"",2019-20,Attleboro - Thomas Willett Elementary School,00160035, 0, 75, 77, 68, 76, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2019-20,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 129, 157, 132, 145, 0, 0, 0, 0, 0, 563 -NA,NA,"",2019-20,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 216, 202, 209, 0, 0, 0, 0, 0, 627 -NA,NA,"",2019-20,Auburn - Auburn Senior High,00170505, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 179, 175, 183, 2, 794 -NA,NA,"",2019-20,Auburn - Bryn Mawr,00170010, 0, 100, 90, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2019-20,Auburn - Pakachoag School,00170025, 48, 84, 101, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2019-20,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 210, 203, 208, 0, 0, 0, 0, 0, 0, 0, 0, 621 -NA,NA,"",2019-20,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 0, 62, 62, 50, 47, 40, 47, 1, 309 -NA,NA,"",2019-20,Avon - Ralph D Butler,00180010, 22, 48, 53, 57, 59, 64, 55, 58, 0, 0, 0, 0, 0, 0, 0, 416 -NA,NA,"",2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 82, 88, 102, 0, 374 -NA,NA,"",2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 140, 141, 126, 0, 0, 0, 0, 0, 407 -NA,NA,"",2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0, 64, 48, 46, 66, 57, 62, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 62, 86, 87, 86, 74, 81, 82, 0, 0, 0, 0, 0, 0, 0, 0, 558 -NA,NA,"",2019-20,Barnstable - Barnstable Community Innovation School,00200012, 0, 66, 77, 84, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2019-20,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 406, 332, 338, 367, 351, 13," 1,807" -NA,NA,"",2019-20,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 375, 381, 0, 0, 0, 0, 0, 0, 756 -NA,NA,"",2019-20,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 394, 410, 0, 0, 0, 0, 0, 0, 0, 0, 804 -NA,NA,"",2019-20,Barnstable - Centerville Elementary,00200010, 0, 55, 71, 60, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2019-20,Barnstable - Hyannis West Elementary,00200025, 0, 72, 72, 84, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2019-20,Barnstable - West Barnstable Elementary,00200005, 0, 58, 62, 62, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2019-20,Barnstable - West Villages Elementary School,00200045, 0, 92, 105, 115, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 79, 75, 77, 65, 53, 60, 54, 0, 463 -NA,NA,"",2019-20,Bedford - Bedford High,00230505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228, 236, 183, 194, 0, 841 -NA,NA,"",2019-20,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 202, 210, 181, 0, 0, 0, 0, 0, 593 -NA,NA,"",2019-20,Bedford - Lt Elezer Davis,00230010, 45, 183, 198, 217, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643 -NA,NA,"",2019-20,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 197, 202, 213, 0, 0, 0, 0, 0, 0, 0, 0, 612 -NA,NA,"",2019-20,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 160, 173, 169, 7, 701 -NA,NA,"",2019-20,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 163, 166, 172, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2019-20,Belchertown - Cold Spring,00240005, 43, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2019-20,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 184, 188, 0, 0, 0, 0, 0, 372 -NA,NA,"",2019-20,Belchertown - Swift River Elementary,00240018, 0, 0, 151, 168, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98 -NA,NA,"",2019-20,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 126, 141, 151, 146, 0, 746 -NA,NA,"",2019-20,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 141, 164, 185, 165, 0, 0, 0, 0, 0, 0, 655 -NA,NA,"",2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 0, 77, 87, 84, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2019-20,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 6, 7, 9, 0, 32 -NA,NA,"",2019-20,Bellingham - Stall Brook,00250025, 0, 63, 61, 69, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2019-20,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 341, 328, 331, 0," 1,318" -NA,NA,"",2019-20,Belmont - Daniel Butler,00260015, 0, 66, 69, 72, 86, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2019-20,Belmont - Mary Lee Burbank,00260010, 0, 85, 86, 88, 89, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2019-20,Belmont - Roger E Wellington,00260035, 66, 110, 108, 112, 119, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 628 -NA,NA,"",2019-20,Belmont - Winn Brook,00260005, 0, 88, 90, 96, 96, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2019-20,Belmont - Winthrop L Chenery Middle,00260305, 0, 0, 0, 0, 0, 0, 387, 385, 359, 358, 0, 0, 0, 0, 0," 1,489" -NA,NA,"",2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 23, 46, 45, 51, 48, 45, 40, 38, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 92, 92, 92, 92, 92, 92, 52, 52, 52, 0, 0, 0, 0, 0, 708 -NA,NA,"",2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0, 52, 57, 58, 55, 55, 55, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2019-20,Berkley - Berkley Community School,00270010, 61, 96, 85, 80, 102, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 522 -NA,NA,"",2019-20,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 88, 114, 97, 94, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 72, 64, 68, 52, 53, 36, 27, 0, 372 -NA,NA,"",2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 142, 128, 112, 7, 508 -NA,NA,"",2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 68, 79, 97, 84, 0, 0, 0, 0, 0, 328 -NA,NA,"",2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 22, 72, 67, 58, 55, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2019-20,Berlin-Boylston - Berlin Memorial School,06200005, 16, 29, 24, 30, 30, 31, 23, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2019-20,Berlin-Boylston - Boylston Elementary School,06200010, 32, 53, 38, 45, 38, 49, 43, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2019-20,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 89, 81, 97, 68, 72, 82, 76, 0, 565 -NA,NA,"",2019-20,Beverly - Ayers/Ryal Side School,00300055, 0, 87, 81, 87, 74, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2019-20,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 360, 309, 287, 9," 1,312" -NA,NA,"",2019-20,Beverly - Beverly Middle School,00300305, 0, 0, 0, 0, 0, 0, 367, 392, 363, 320, 0, 0, 0, 0, 0," 1,442" -NA,NA,"",2019-20,Beverly - Centerville Elementary,00300010, 0, 67, 54, 56, 72, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2019-20,Beverly - Cove Elementary,00300015, 0, 92, 95, 80, 83, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2019-20,Beverly - Hannah Elementary,00300033, 0, 87, 63, 68, 59, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2019-20,Beverly - McKeown School,00300002, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 -NA,NA,"",2019-20,Beverly - North Beverly Elementary,00300040, 0, 65, 78, 69, 68, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2019-20,Billerica - Billerica Memorial High School,00310505, 185, 0, 0, 0, 0, 0, 0, 0, 0, 402, 293, 303, 246, 333, 7," 1,769" -NA,NA,"",2019-20,Billerica - Frederick J Dutile,00310007, 0, 50, 58, 47, 40, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2019-20,Billerica - Hajjar Elementary,00310026, 0, 70, 67, 60, 76, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2019-20,Billerica - John F Kennedy,00310012, 0, 67, 63, 62, 47, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2019-20,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 179, 172, 188, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2019-20,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 183, 220, 206, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2019-20,Billerica - Parker,00310015, 0, 93, 78, 84, 71, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2019-20,Billerica - Thomas Ditson,00310005, 0, 93, 110, 109, 117, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313, 307, 302, 302, 0," 1,224" -NA,NA,"",2019-20,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 83, 123, 83, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2019-20,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 116, 100, 106, 2, 427 -NA,NA,"",2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 136, 148, 125, 0, 0, 0, 0, 0, 409 -NA,NA,"",2019-20,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 91, 89, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2019-20,Blackstone-Millville - Millville Elementary,06220010, 60, 20, 28, 36, 32, 40, 38, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 229, 198, 191, 0, 856 -NA,NA,"",2019-20,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 58, 57, 55, 0, 232 -NA,NA,"",2019-20,Boston - Baldwin Early Learning Center,00350003, 80, 40, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154 -NA,NA,"",2019-20,Boston - Beethoven,00350021, 44, 76, 92, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2019-20,Boston - Blackstone,00350390, 83, 71, 79, 75, 89, 81, 74, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2019-20,Boston - Boston Adult Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 85, 2, 183 -NA,NA,"",2019-20,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 133, 100, 112, 0, 477 -NA,NA,"",2019-20,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 15, 40, 115, 1, 175 -NA,NA,"",2019-20,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 135, 111, 112, 25, 506 -NA,NA,"",2019-20,Boston - Boston International High School,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 101, 93, 80, 0, 429 -NA,NA,"",2019-20,Boston - Boston Latin,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 417, 404, 452, 384, 421, 393, 0," 2,471" -NA,NA,"",2019-20,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 286, 269, 343, 283, 336, 256, 0," 1,773" -NA,NA,"",2019-20,Boston - Boston Teachers Union School,00350012, 31, 26, 23, 22, 24, 22, 25, 48, 30, 23, 0, 0, 0, 0, 0, 274 -NA,NA,"",2019-20,Boston - Brighton High,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 128, 133, 144, 16, 535 -NA,NA,"",2019-20,Boston - Carter School,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 4, 2, 3, 13, 28 -NA,NA,"",2019-20,Boston - Charles H Taylor,00350054, 20, 53, 66, 61, 68, 85, 75, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2019-20,Boston - Charles Sumner,00350052, 63, 68, 82, 82, 81, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2019-20,Boston - Charlestown High,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 199, 161, 202, 52, 856 -NA,NA,"",2019-20,Boston - Clarence R Edwards Middle,00350430, 0, 0, 0, 0, 0, 0, 0, 140, 129, 104, 0, 0, 0, 0, 0, 373 -NA,NA,"",2019-20,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 17, 19, 15, 1, 57 -NA,NA,"",2019-20,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84, 75, 125, 70, 6, 360 -NA,NA,"",2019-20,Boston - Condon K-8,00350146, 48, 60, 72, 81, 86, 86, 106, 104, 83, 71, 0, 0, 0, 0, 0, 797 -NA,NA,"",2019-20,Boston - Curley K-8 School,00350020, 105, 88, 85, 90, 99, 96, 99, 117, 91, 89, 0, 0, 0, 0, 0, 959 -NA,NA,"",2019-20,Boston - Curtis Guild,00350062, 26, 36, 37, 38, 35, 40, 42, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2019-20,Boston - Dante Alighieri Montessori School,00350066, 26, 15, 15, 14, 11, 8, 11, 3, 0, 0, 0, 0, 0, 0, 0, 103 -NA,NA,"",2019-20,Boston - David A Ellis,00350072, 50, 67, 53, 60, 69, 60, 54, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2019-20,Boston - Dearborn,00350074, 0, 0, 0, 0, 0, 0, 0, 101, 84, 65, 105, 81, 47, 35, 0, 518 -NA,NA,"",2019-20,Boston - Dennis C Haley,00350077, 26, 39, 37, 42, 48, 49, 42, 46, 41, 23, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Boston - Donald Mckay,00350080, 21, 60, 66, 91, 84, 88, 91, 103, 105, 101, 0, 0, 0, 0, 0, 810 -NA,NA,"",2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 51, 34, 35, 37, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2019-20,Boston - Dr. William Henderson Lower,00350266, 75, 67, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2019-20,Boston - Dr. William Henderson Upper,00350426, 0, 0, 0, 71, 68, 49, 47, 64, 63, 51, 74, 60, 66, 65, 14, 692 -NA,NA,"",2019-20,Boston - East Boston Early Childhood Center,00350009, 88, 63, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2019-20,Boston - East Boston High,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 296, 279, 234, 12," 1,084" -NA,NA,"",2019-20,Boston - Edison K-8,00350375, 20, 50, 60, 72, 73, 62, 68, 59, 62, 72, 0, 0, 0, 0, 0, 598 -NA,NA,"",2019-20,Boston - Edward Everett,00350088, 12, 39, 42, 40, 40, 33, 28, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2019-20,Boston - ELC - West Zone,00350006, 46, 29, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 -NA,NA,"",2019-20,Boston - Eliot Elementary,00350096, 59, 81, 79, 81, 91, 89, 93, 79, 43, 27, 0, 0, 0, 0, 0, 722 -NA,NA,"",2019-20,Boston - Ellis Mendell,00350100, 26, 41, 41, 41, 43, 44, 34, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2019-20,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 130, 131, 122, 1, 488 -NA,NA,"",2019-20,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 100, 96, 86, 3, 396 -NA,NA,"",2019-20,Boston - Franklin D Roosevelt,00350116, 41, 40, 43, 38, 48, 47, 41, 55, 44, 38, 0, 0, 0, 0, 0, 435 -NA,NA,"",2019-20,Boston - Gardner Pilot Academy,00350326, 29, 39, 41, 40, 41, 40, 42, 44, 38, 38, 0, 0, 0, 0, 0, 392 -NA,NA,"",2019-20,Boston - George H Conley,00350122, 18, 19, 19, 23, 25, 54, 26, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2019-20,Boston - Greater Egleston Community High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 32, 28, 20, 0, 100 -NA,NA,"",2019-20,Boston - Harvard-Kent,00350200, 48, 53, 52, 46, 48, 54, 64, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2019-20,Boston - Haynes Early Education Center,00350010, 58, 74, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2019-20,Boston - Henry Grew,00350135, 20, 32, 38, 36, 36, 30, 40, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2019-20,Boston - Higginson,00350015, 27, 37, 37, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2019-20,Boston - Higginson/Lewis K-8,00350377, 0, 0, 0, 0, 36, 30, 37, 46, 45, 36, 0, 0, 0, 0, 0, 230 -NA,NA,"",2019-20,Boston - Horace Mann School for the Deaf,00350750, 2, 0, 3, 9, 5, 6, 8, 0, 8, 3, 6, 7, 3, 10, 6, 76 -NA,NA,"",2019-20,Boston - Hugh Roe O'Donnell,00350141, 21, 39, 39, 47, 39, 34, 44, 0, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2019-20,Boston - Jackson Mann,00350013, 23, 53, 57, 55, 62, 66, 68, 60, 38, 37, 0, 0, 0, 0, 0, 519 -NA,NA,"",2019-20,Boston - James J Chittick,00350154, 46, 45, 38, 38, 38, 41, 34, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2019-20,Boston - James Otis,00350156, 50, 57, 60, 63, 56, 55, 41, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2019-20,Boston - James P Timilty Middle,00350485, 0, 0, 0, 0, 0, 0, 0, 102, 104, 114, 0, 0, 0, 0, 0, 320 -NA,NA,"",2019-20,Boston - James W Hennigan,00350153, 0, 40, 41, 59, 61, 80, 76, 117, 75, 52, 0, 0, 0, 0, 0, 601 -NA,NA,"",2019-20,Boston - Jeremiah E Burke High,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98, 88, 102, 117, 12, 417 -NA,NA,"",2019-20,Boston - John D Philbrick,00350172, 13, 18, 21, 20, 18, 22, 34, 0, 0, 0, 0, 0, 0, 0, 0, 146 -NA,NA,"",2019-20,Boston - John F Kennedy,00350166, 30, 50, 55, 61, 65, 68, 56, 0, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2019-20,Boston - John W McCormack,00350179, 0, 0, 0, 0, 0, 0, 0, 90, 111, 116, 0, 0, 0, 0, 0, 317 -NA,NA,"",2019-20,Boston - John Winthrop,00350180, 39, 33, 42, 39, 46, 30, 29, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2019-20,Boston - Joseph J Hurley,00350182, 28, 47, 44, 49, 44, 38, 42, 32, 20, 15, 0, 0, 0, 0, 0, 359 -NA,NA,"",2019-20,Boston - Joseph Lee,00350183, 66, 50, 61, 52, 58, 66, 78, 96, 64, 51, 0, 0, 0, 0, 0, 642 -NA,NA,"",2019-20,Boston - Joseph P Manning,00350184, 11, 20, 23, 23, 22, 20, 25, 0, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2019-20,Boston - Joseph P Tynan,00350181, 31, 42, 50, 24, 28, 33, 26, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2019-20,Boston - Josiah Quincy,00350286, 76, 112, 114, 117, 124, 125, 127, 0, 0, 0, 0, 0, 0, 0, 0, 795 -NA,NA,"",2019-20,Boston - Joyce Kilmer,00350190, 45, 42, 41, 53, 43, 48, 50, 81, 25, 20, 0, 0, 0, 0, 0, 448 -NA,NA,"",2019-20,Boston - King K-8,00350376, 66, 60, 63, 67, 46, 40, 54, 52, 53, 40, 0, 0, 0, 0, 0, 541 -NA,NA,"",2019-20,Boston - Lee Academy,00350001, 51, 35, 34, 36, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2019-20,Boston - Lilla G. Frederick Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 140, 149, 165, 0, 0, 0, 0, 0, 454 -NA,NA,"",2019-20,Boston - Lyndon,00350262, 66, 66, 68, 72, 85, 79, 59, 88, 30, 37, 0, 0, 0, 0, 0, 650 -NA,NA,"",2019-20,Boston - Lyon K-8,00350004, 0, 10, 15, 15, 16, 16, 15, 17, 15, 13, 0, 0, 0, 0, 0, 132 -NA,NA,"",2019-20,Boston - Lyon Upper 9-12,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 35, 32, 31, 5, 133 -NA,NA,"",2019-20,Boston - Madison Park High,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 279, 238, 134, 19," 1,021" -NA,NA,"",2019-20,Boston - Manassah E Bradley,00350215, 31, 39, 41, 41, 40, 50, 31, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2019-20,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 83, 80, 66, 0, 319 -NA,NA,"",2019-20,Boston - Mario Umana Academy,00350656, 31, 68, 63, 81, 67, 61, 65, 189, 153, 152, 0, 0, 0, 0, 0, 930 -NA,NA,"",2019-20,Boston - Mather,00350227, 61, 83, 87, 80, 87, 88, 81, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2019-20,Boston - Mattahunt Elementary School,00350016, 90, 94, 92, 84, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2019-20,Boston - Maurice J Tobin,00350229, 14, 42, 46, 49, 53, 48, 50, 52, 39, 33, 0, 0, 0, 0, 0, 426 -NA,NA,"",2019-20,Boston - Michael J Perkins,00350231, 7, 25, 20, 19, 38, 30, 22, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2019-20,Boston - Mildred Avenue K-8,00350378, 41, 40, 41, 43, 47, 89, 93, 99, 94, 91, 0, 0, 0, 0, 0, 678 -NA,NA,"",2019-20,Boston - Mission Hill School,00350382, 30, 23, 22, 21, 32, 24, 19, 20, 18, 14, 0, 0, 0, 0, 0, 223 -NA,NA,"",2019-20,Boston - Mozart,00350237, 30, 22, 25, 25, 23, 27, 15, 0, 0, 0, 0, 0, 0, 0, 0, 167 -NA,NA,"",2019-20,Boston - Nathan Hale,00350243, 21, 20, 23, 19, 24, 22, 20, 0, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2019-20,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 37, 56, 96, 91, 88, 77, 2, 447 -NA,NA,"",2019-20,Boston - O W Holmes,00350138, 27, 51, 52, 39, 41, 43, 41, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2019-20,Boston - O'Bryant School Math/Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 175, 155, 374, 305, 334, 245, 1," 1,589" -NA,NA,"",2019-20,Boston - Oliver Hazard Perry,00350255, 24, 23, 27, 27, 28, 27, 24, 24, 20, 28, 0, 0, 0, 0, 0, 252 -NA,NA,"",2019-20,Boston - Orchard Gardens,00350257, 53, 82, 82, 92, 102, 100, 101, 94, 87, 94, 0, 0, 0, 0, 0, 887 -NA,NA,"",2019-20,Boston - Patrick J Kennedy,00350264, 28, 34, 38, 41, 31, 46, 48, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2019-20,Boston - Paul A Dever,00350268, 40, 56, 58, 70, 66, 57, 62, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 46, 32, 36, 33, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177 -NA,NA,"",2019-20,Boston - Phineas Bates,00350278, 21, 33, 40, 40, 33, 35, 38, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2019-20,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 141, 77, 85, 37, 59, 58, 57, 19, 533 -NA,NA,"",2019-20,Boston - Rafael Hernandez,00350691, 46, 47, 50, 50, 47, 47, 42, 32, 25, 15, 0, 0, 0, 0, 0, 401 -NA,NA,"",2019-20,Boston - Richard J Murphy,00350240, 41, 62, 72, 89, 86, 124, 127, 152, 81, 79, 0, 0, 0, 0, 0, 913 -NA,NA,"",2019-20,Boston - Roger Clap,00350298, 8, 18, 18, 17, 19, 20, 14, 0, 0, 0, 0, 0, 0, 0, 0, 114 -NA,NA,"",2019-20,Boston - Samuel Adams,00350302, 25, 33, 32, 39, 30, 35, 28, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2019-20,Boston - Samuel W Mason,00350304, 22, 37, 37, 40, 39, 29, 26, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2019-20,Boston - Sarah Greenwood,00350308, 50, 48, 39, 45, 41, 43, 41, 44, 28, 23, 0, 0, 0, 0, 0, 402 -NA,NA,"",2019-20,Boston - Snowden International School at Copley,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 115, 122, 93, 1, 474 -NA,NA,"",2019-20,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 109, 116, 118, 145, 131, 134, 137, 1, 891 -NA,NA,"",2019-20,Boston - The English High,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 121, 121, 138, 5, 566 -NA,NA,"",2019-20,Boston - Thomas J Kenny,00350328, 28, 39, 42, 40, 44, 55, 48, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2019-20,Boston - UP Academy Holland,00350167, 58, 107, 116, 112, 127, 127, 111, 0, 0, 0, 0, 0, 0, 0, 0, 758 -NA,NA,"",2019-20,Boston - Urban Science Academy,00350579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 0, 39 -NA,NA,"",2019-20,Boston - Warren-Prescott,00350346, 56, 68, 71, 69, 53, 60, 69, 62, 32, 32, 0, 0, 0, 0, 0, 572 -NA,NA,"",2019-20,Boston - Washington Irving Middle,00350445, 0, 0, 0, 0, 0, 0, 0, 76, 86, 82, 0, 0, 0, 0, 0, 244 -NA,NA,"",2019-20,Boston - West Roxbury Academy,00350658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 0, 28 -NA,NA,"",2019-20,Boston - William E Russell,00350366, 66, 55, 58, 64, 52, 47, 39, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2019-20,Boston - William Ellery Channing,00350360, 35, 42, 36, 37, 26, 24, 23, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2019-20,Boston - William H Ohrenberger,00350258, 0, 0, 0, 0, 90, 106, 126, 130, 75, 72, 0, 0, 0, 0, 0, 599 -NA,NA,"",2019-20,Boston - William McKinley,00350363, 0, 1, 4, 7, 12, 15, 16, 21, 29, 19, 56, 39, 42, 27, 31, 319 -NA,NA,"",2019-20,Boston - William Monroe Trotter,00350370, 41, 42, 56, 60, 46, 54, 42, 36, 28, 27, 0, 0, 0, 0, 0, 432 -NA,NA,"",2019-20,Boston - Winship Elementary,00350374, 47, 42, 42, 38, 25, 22, 24, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2019-20,Boston - Young Achievers,00350380, 46, 51, 57, 63, 58, 87, 82, 74, 42, 38, 0, 0, 0, 0, 0, 598 -NA,NA,"",2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 98, 102, 97, 95, 90, 77, 74, 60, 0, 693 -NA,NA,"",2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 45, 43, 230, 0, 414 -NA,NA,"",2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 63, 62, 53, 81, 82, 83, 71, 5, 500 -NA,NA,"",2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 99, 97, 96, 87, 80, 71, 51, 0, 581 -NA,NA,"",2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 116, 136, 132, 138, 123, 127, 81, 77, 0, 0, 0, 0, 0, 0, 0, 930 -NA,NA,"",2019-20,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 115, 112, 124, 7, 461 -NA,NA,"",2019-20,Bourne - Bourne Intermediate School,00360030, 0, 0, 0, 0, 138, 171, 165, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2019-20,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 0, 174, 166, 171, 0, 0, 0, 0, 0, 511 -NA,NA,"",2019-20,Bourne - Bournedale Elementary School,00360005, 62, 132, 124, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2019-20,Boxford - Harry Lee Cole,00380005, 47, 109, 80, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2019-20,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 102, 119, 96, 107, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2019-20,Braintree - Archie T Morrison,00400033, 0, 19, 95, 75, 68, 79, 69, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2019-20,Braintree - Braintree High,00400505, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422, 439, 428, 426, 0," 1,828" -NA,NA,"",2019-20,Braintree - Donald Ross,00400050, 0, 21, 44, 51, 56, 35, 51, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2019-20,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 0, 285, 258, 212, 0, 0, 0, 0, 0, 755 -NA,NA,"",2019-20,Braintree - Highlands,00400015, 0, 20, 80, 64, 82, 90, 82, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2019-20,Braintree - Hollis,00400005, 0, 46, 85, 60, 79, 89, 81, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2019-20,Braintree - Liberty,00400025, 0, 0, 79, 71, 74, 83, 94, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2019-20,Braintree - Mary E Flaherty School,00400020, 0, 23, 58, 64, 65, 61, 73, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 0, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2019-20,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 0, 212, 252, 227, 0, 0, 0, 0, 0, 691 -NA,NA,"",2019-20,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 85, 77, 84, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2019-20,Brewster - Stony Brook Elementary,00410005, 34, 62, 71, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 31, 36, 35, 40, 39, 40, 34, 34, 23, 22, 0, 0, 0, 0, 0, 334 -NA,NA,"",2019-20,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 0, 301, 254, 0, 0, 0, 0, 0, 555 -NA,NA,"",2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324, 357, 368, 360, 10," 1,419" -NA,NA,"",2019-20,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 167, 181, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 164, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 151, 255, 254, 256, 252, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,168" -NA,NA,"",2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 166, 171, 185, 146, 0, 0, 0, 0, 0, 668 -NA,NA,"",2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 6, 1, 4, 0, 14 -NA,NA,"",2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 0, 215, 238, 260, 0, 0, 0, 0, 0, 0, 0, 713 -NA,NA,"",2019-20,Brimfield - Brimfield Elementary,00430005, 33, 44, 28, 40, 37, 32, 43, 42, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 113, 108, 107, 0, 451 -NA,NA,"",2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 352, 315, 281, 0," 1,305" -NA,NA,"",2019-20,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 203, 221, 144, 0, 0, 0, 0, 0, 568 -NA,NA,"",2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2019-20,Brockton - Brockton Champion High School,00440515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 23, 19, 10, 33, 103 -NA,NA,"",2019-20,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,352", 890, 908, 909, 18," 4,077" -NA,NA,"",2019-20,Brockton - Brookfield,00440010, 0, 75, 85, 78, 89, 98, 98, 0, 0, 0, 0, 0, 0, 0, 0, 523 -NA,NA,"",2019-20,Brockton - Downey,00440110, 0, 83, 85, 102, 98, 110, 110, 0, 0, 0, 0, 0, 0, 0, 0, 588 -NA,NA,"",2019-20,Brockton - Dr W Arnone Community School,00440001, 87, 104, 96, 113, 126, 120, 121, 0, 0, 0, 0, 0, 0, 0, 0, 767 -NA,NA,"",2019-20,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 231, 272, 191, 0, 0, 0, 0, 0, 694 -NA,NA,"",2019-20,Brockton - Edgar B Davis,00440023, 0, 89, 94, 132, 128, 109, 113, 127, 129, 120, 0, 0, 0, 0, 0," 1,041" -NA,NA,"",2019-20,Brockton - Edison Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 50, 65, 93, 0, 249 -NA,NA,"",2019-20,Brockton - Frederick Douglass Academy,00440080, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 3, 1, 0, 15 -NA,NA,"",2019-20,Brockton - Gilmore Elementary School,00440055, 0, 63, 66, 70, 91, 72, 73, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2019-20,Brockton - Hancock,00440045, 0, 75, 77, 85, 98, 88, 93, 0, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2019-20,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 1, 2, 3, 3, 6, 4, 9, 6, 10, 11, 9, 0, 64 -NA,NA,"",2019-20,Brockton - John F Kennedy,00440017, 0, 85, 100, 95, 93, 116, 104, 0, 0, 0, 0, 0, 0, 0, 0, 593 -NA,NA,"",2019-20,Brockton - Joseph F. Plouffe Academy,00440422, 0, 0, 0, 0, 0, 0, 0, 266, 272, 223, 0, 0, 0, 0, 0, 761 -NA,NA,"",2019-20,Brockton - Louis F Angelo Elementary,00440065, 0, 97, 116, 112, 132, 199, 225, 0, 0, 0, 0, 0, 0, 0, 0, 881 -NA,NA,"",2019-20,Brockton - Manthala George Jr. School,00440003, 0, 166, 189, 158, 168, 140, 140, 0, 0, 0, 0, 0, 0, 0, 0, 961 -NA,NA,"",2019-20,Brockton - Mary E. Baker School,00440002, 0, 98, 94, 120, 123, 107, 126, 0, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2019-20,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 0, 0, 0, 0, 0, 168 -NA,NA,"",2019-20,Brockton - Oscar F Raymond,00440078, 0, 118, 122, 129, 151, 154, 144, 0, 0, 0, 0, 0, 0, 0, 0, 818 -NA,NA,"",2019-20,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 193, 198, 211, 0, 0, 0, 0, 0, 602 -NA,NA,"",2019-20,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 233, 247, 215, 0, 0, 0, 0, 0, 695 -NA,NA,"",2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 186, 189, 187, 182, 181, 181, 176, 182, 179, 131, 89, 50, 56, 0," 1,969" -NA,NA,"",2019-20,Brookfield - Brookfield Elementary,00450005, 23, 44, 39, 41, 38, 42, 43, 37, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48 -NA,NA,"",2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17 -NA,NA,"",2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56 -NA,NA,"",2019-20,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 521, 557, 512, 474, 19," 2,083" -NA,NA,"",2019-20,Brookline - Coolidge Corner School,00460015, 31, 105, 115, 93, 103, 102, 92, 102, 93, 83, 0, 0, 0, 0, 0, 919 -NA,NA,"",2019-20,Brookline - Edith C Baker,00460005, 0, 83, 78, 86, 81, 85, 101, 64, 95, 77, 0, 0, 0, 0, 0, 750 -NA,NA,"",2019-20,Brookline - Heath,00460025, 27, 58, 60, 61, 47, 61, 69, 54, 62, 53, 0, 0, 0, 0, 0, 552 -NA,NA,"",2019-20,Brookline - John D Runkle,00460045, 16, 63, 61, 63, 61, 62, 66, 70, 73, 63, 0, 0, 0, 0, 0, 598 -NA,NA,"",2019-20,Brookline - Lawrence,00460030, 0, 80, 85, 81, 71, 84, 72, 62, 72, 72, 0, 0, 0, 0, 0, 679 -NA,NA,"",2019-20,Brookline - Michael Driscoll,00460020, 0, 56, 62, 63, 63, 66, 82, 64, 66, 78, 0, 0, 0, 0, 0, 600 -NA,NA,"",2019-20,Brookline - Pierce,00460040, 0, 93, 95, 96, 91, 104, 106, 103, 79, 75, 0, 0, 0, 0, 0, 842 -NA,NA,"",2019-20,Brookline - The Lynch Center,00460060, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2019-20,Brookline - William H Lincoln,00460035, 0, 62, 57, 70, 57, 63, 66, 63, 78, 60, 0, 0, 0, 0, 0, 576 -NA,NA,"",2019-20,Burlington - Burlington High,00480505, 103, 6, 0, 0, 0, 0, 0, 0, 0, 0, 221, 224, 244, 248, 0," 1,046" -NA,NA,"",2019-20,Burlington - Fox Hill,00480007, 0, 65, 92, 75, 82, 71, 61, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2019-20,Burlington - Francis Wyman Elementary,00480035, 0, 83, 79, 91, 101, 82, 98, 0, 0, 0, 0, 0, 0, 0, 0, 534 -NA,NA,"",2019-20,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 244, 272, 254, 0, 0, 0, 0, 0, 770 -NA,NA,"",2019-20,Burlington - Memorial,00480015, 0, 64, 67, 68, 62, 72, 60, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Burlington - Pine Glen Elementary,00480020, 0, 47, 58, 64, 52, 59, 40, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2019-20,Cambridge - Amigos School,00490006, 30, 50, 45, 48, 44, 43, 45, 42, 44, 37, 0, 0, 0, 0, 0, 428 -NA,NA,"",2019-20,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, 512, 471, 494, 6," 1,977" -NA,NA,"",2019-20,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 106, 99, 78, 0, 0, 0, 0, 0, 283 -NA,NA,"",2019-20,Cambridge - Cambridgeport,00490007, 54, 44, 45, 55, 40, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 50, 48, 44, 40, 33, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2019-20,Cambridge - Graham and Parks,00490080, 41, 47, 59, 57, 59, 56, 62, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2019-20,Cambridge - Haggerty,00490020, 27, 43, 42, 42, 41, 35, 28, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2019-20,Cambridge - John M Tobin,00490065, 90, 39, 42, 36, 36, 39, 29, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Cambridge - Kennedy-Longfellow,00490040, 59, 60, 45, 48, 32, 36, 31, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Cambridge - King Open,00490035, 38, 73, 57, 63, 48, 55, 49, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2019-20,Cambridge - Maria L. Baldwin,00490005, 36, 68, 57, 53, 50, 42, 44, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2019-20,Cambridge - Martin Luther King Jr.,00490030, 32, 61, 53, 52, 45, 42, 41, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2019-20,Cambridge - Morse,00490045, 68, 47, 47, 45, 41, 43, 35, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2019-20,Cambridge - Peabody,00490050, 46, 50, 45, 46, 44, 46, 43, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2019-20,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 81, 98, 85, 0, 0, 0, 0, 0, 264 -NA,NA,"",2019-20,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 87, 95, 99, 0, 0, 0, 0, 0, 281 -NA,NA,"",2019-20,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 102, 100, 80, 0, 0, 0, 0, 0, 282 -NA,NA,"",2019-20,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 255, 260, 243, 3, 974 -NA,NA,"",2019-20,Canton - Dean S Luce,00500020, 0, 80, 82, 66, 91, 79, 75, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2019-20,Canton - John F Kennedy,00500017, 0, 87, 86, 87, 77, 85, 83, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2019-20,Canton - Lt Peter M Hansen,00500012, 0, 83, 74, 76, 85, 87, 85, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2019-20,Canton - Rodman Early Childhood Center,00500010, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 -NA,NA,"",2019-20,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 291, 251, 226, 0, 0, 0, 0, 0, 768 -NA,NA,"",2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 81, 81, 77, 0, 0, 0, 0, 0, 239 -NA,NA,"",2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 158, 148, 148, 0, 616 -NA,NA,"",2019-20,Carlisle - Carlisle School,00510025, 14, 52, 61, 65, 68, 62, 63, 77, 64, 71, 0, 0, 0, 0, 0, 597 -NA,NA,"",2019-20,Carver - Carver Elementary School,00520015, 64, 127, 131, 113, 139, 128, 112, 0, 0, 0, 0, 0, 0, 0, 0, 814 -NA,NA,"",2019-20,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 122, 123, 131, 101, 76, 104, 101, 5, 763 -NA,NA,"",2019-20,Central Berkshire - Becket Washington School,06350005, 13, 15, 17, 16, 18, 14, 20, 0, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2019-20,Central Berkshire - Craneville,06350025, 0, 79, 64, 72, 71, 63, 75, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2019-20,Central Berkshire - Kittredge,06350035, 29, 21, 17, 25, 24, 18, 16, 0, 0, 0, 0, 0, 0, 0, 0, 150 -NA,NA,"",2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 110, 128, 139, 0, 0, 0, 0, 0, 377 -NA,NA,"",2019-20,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 126, 134, 118, 1, 501 -NA,NA,"",2019-20,Chelmsford - Byam School,00560030, 0, 99, 91, 110, 91, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2019-20,Chelmsford - Center Elementary School,00560005, 0, 85, 107, 105, 102, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2019-20,Chelmsford - Charles D Harrington,00560025, 0, 96, 101, 99, 107, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2019-20,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329, 348, 371, 364, 0," 1,412" -NA,NA,"",2019-20,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 195, 186, 179, 173, 0, 0, 0, 0, 0, 733 -NA,NA,"",2019-20,Chelmsford - Community Education Center,00560001, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166 -NA,NA,"",2019-20,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 192, 195, 181, 227, 0, 0, 0, 0, 0, 795 -NA,NA,"",2019-20,Chelmsford - South Row,00560015, 0, 85, 94, 91, 85, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2019-20,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472, 365, 294, 268, 3," 1,402" -NA,NA,"",2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 28, 32, 31, 0, 95 -NA,NA,"",2019-20,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 181, 193, 168, 152, 0, 0, 0, 0, 0, 694 -NA,NA,"",2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 0, 0, 106, 150, 152, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 545 -NA,NA,"",2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 134, 134, 129, 130, 0, 0, 0, 0, 0, 527 -NA,NA,"",2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 101, 145, 140, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2019-20,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 106, 105, 103, 121, 40, 32, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2019-20,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 121, 158, 147, 144, 0, 0, 0, 0, 0, 570 -NA,NA,"",2019-20,Chelsea - Shurtleff Early Childhood,00570003, 290, 495, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 888 -NA,NA,"",2019-20,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 124, 131, 128, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 14, 21, 13, 18, 18, 16, 16, 12, 0, 0, 0, 0, 0, 0, 0, 128 -NA,NA,"",2019-20,Chicopee - Barry,00610003, 0, 69, 60, 72, 74, 69, 76, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2019-20,Chicopee - Belcher,00610010, 0, 80, 76, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2019-20,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 301, 279, 274, 0, 0, 0, 0, 0, 854 -NA,NA,"",2019-20,Chicopee - Bowe,00610015, 0, 67, 74, 76, 90, 74, 78, 0, 0, 0, 0, 0, 0, 0, 0, 459 -NA,NA,"",2019-20,Chicopee - Bowie,00610020, 0, 48, 51, 38, 54, 66, 54, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 19, 13, 12, 5, 1, 59 -NA,NA,"",2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 270, 311, 296, 0," 1,183" -NA,NA,"",2019-20,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 286, 252, 219, 0, 987 -NA,NA,"",2019-20,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 283, 271, 243, 0, 0, 0, 0, 0, 797 -NA,NA,"",2019-20,Chicopee - Fairview Elementary,00610050, 0, 66, 84, 74, 66, 67, 80, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2019-20,Chicopee - Gen John J Stefanik,00610090, 0, 40, 44, 52, 65, 76, 69, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2019-20,Chicopee - Lambert-Lavoie,00610040, 0, 44, 43, 46, 47, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2019-20,Chicopee - Litwin,00610022, 0, 18, 20, 24, 111, 95, 112, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2019-20,Chicopee - Streiber Memorial School,00610065, 0, 41, 42, 39, 48, 41, 33, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2019-20,Chicopee - Szetela Early Childhood Center,00610001, 249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0, 0, 0, 0, 0, 0, 0, 145, 136, 120, 0, 0, 0, 0, 0, 401 -NA,NA,"",2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 60, 54, 48, 0, 228 -NA,NA,"",2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 58, 39, 55, 0, 193 -NA,NA,"",2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48, 30, 41, 30, 0, 149 -NA,NA,"",2019-20,Clarksburg - Clarksburg Elementary,00630010, 0, 15, 22, 32, 14, 22, 20, 34, 22, 16, 0, 0, 0, 0, 0, 197 -NA,NA,"",2019-20,Clinton - Clinton Elementary,00640050, 98, 138, 171, 139, 143, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 837 -NA,NA,"",2019-20,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 0, 151, 165, 140, 147, 0, 0, 0, 0, 0, 603 -NA,NA,"",2019-20,Clinton - Clinton Senior High,00640505, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 100, 120, 95, 1, 460 -NA,NA,"",2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 21, 22, 20, 21, 21, 21, 19, 20, 19, 19, 40, 36, 26, 34, 0, 339 -NA,NA,"",2019-20,Cohasset - Cohasset High School,00650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 106, 128, 118, 0, 469 -NA,NA,"",2019-20,Cohasset - Cohasset Middle School,00650305, 0, 0, 0, 0, 0, 0, 0, 134, 116, 97, 0, 0, 0, 0, 0, 347 -NA,NA,"",2019-20,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 118, 109, 122, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2019-20,Cohasset - Joseph Osgood,00650010, 24, 103, 105, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 78, 107, 114, 111, 114, 93, 120, 91, 61, 43, 0, 0, 0, 0, 932 -NA,NA,"",2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 28, 66, 59, 43, 52, 31, 47, 0, 326 -NA,NA,"",2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 40, 40, 43, 44, 42, 42, 43, 35, 38, 33, 0, 0, 0, 0, 0, 400 -NA,NA,"",2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 21, 25, 47, 51, 50, 47, 43, 43, 41, 32, 0, 0, 0, 0, 0, 400 -NA,NA,"",2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 41, 41, 44, 45, 44, 42, 41, 35, 36, 30, 0, 0, 0, 0, 0, 399 -NA,NA,"",2019-20,Concord - Alcott,00670005, 7, 76, 87, 81, 68, 94, 74, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2019-20,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 241, 236, 236, 0, 0, 0, 0, 0, 713 -NA,NA,"",2019-20,Concord - Thoreau,00670020, 10, 69, 69, 84, 76, 72, 67, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2019-20,Concord - Willard,00670030, 9, 62, 60, 72, 69, 72, 74, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344, 325, 317, 294, 0," 1,280" -NA,NA,"",2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 51, 49, 54, 54, 54, 57, 37, 40, 33, 24, 0, 0, 0, 0, 0, 453 -NA,NA,"",2019-20,Conway - Conway Grammar,00680005, 16, 14, 15, 16, 16, 22, 18, 16, 0, 0, 0, 0, 0, 0, 0, 133 -NA,NA,"",2019-20,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 204, 235, 235, 4, 889 -NA,NA,"",2019-20,Danvers - Great Oak,00710015, 0, 54, 54, 63, 57, 69, 60, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2019-20,Danvers - Highlands,00710010, 0, 62, 64, 64, 60, 64, 69, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2019-20,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 272, 265, 279, 0, 0, 0, 0, 0, 816 -NA,NA,"",2019-20,Danvers - Ivan G Smith,00710032, 0, 52, 59, 44, 50, 49, 45, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2019-20,Danvers - Riverside,00710030, 108, 45, 48, 37, 41, 33, 51, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2019-20,Danvers - Willis E Thorpe,00710045, 0, 45, 46, 54, 57, 47, 61, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2019-20,Dartmouth - Andrew B. Cushman School,00720005, 77, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2019-20,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 285, 269, 250, 0," 1,039" -NA,NA,"",2019-20,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 272, 307, 318, 0, 0, 0, 0, 0, 897 -NA,NA,"",2019-20,Dartmouth - George H Potter,00720030, 15, 58, 66, 65, 60, 61, 73, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2019-20,Dartmouth - James M. Quinn School,00720040, 0, 129, 123, 111, 94, 105, 117, 0, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2019-20,Dartmouth - Joseph Demello,00720015, 0, 0, 65, 78, 99, 77, 88, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2019-20,Dedham - Avery,00730010, 0, 0, 53, 55, 68, 56, 57, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2019-20,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 170, 178, 199, 6, 722 -NA,NA,"",2019-20,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 221, 258, 195, 0, 0, 0, 0, 0, 674 -NA,NA,"",2019-20,Dedham - Early Childhood Center,00730005, 129, 229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2019-20,Dedham - Greenlodge,00730025, 0, 0, 55, 48, 47, 39, 61, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2019-20,Dedham - Oakdale,00730030, 0, 0, 35, 52, 58, 50, 59, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2019-20,Dedham - Riverdale,00730045, 0, 0, 53, 31, 34, 37, 34, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2019-20,Deerfield - Deerfield Elementary,00740015, 40, 50, 46, 54, 45, 39, 52, 60, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 187, 163, 176, 194, 0, 937 -NA,NA,"",2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 32, 73, 72, 58, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 64, 53, 67, 52, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 230, 238, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0, 0, 0, 0, 0, 255, 240, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 102, 115, 97, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 40, 71, 93, 95, 98, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 92, 107, 97, 110, 0, 0, 0, 0, 0, 406 -NA,NA,"",2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 187, 208, 183, 9, 771 -NA,NA,"",2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 109, 140, 139, 157, 0, 0, 0, 0, 0, 545 -NA,NA,"",2019-20,Dighton-Rehoboth - Palmer River,06500010, 43, 121, 136, 110, 107, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2019-20,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 79, 96, 96, 93, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2019-20,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76, 91, 93, 106, 0, 366 -NA,NA,"",2019-20,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 83, 105, 116, 0, 0, 0, 0, 0, 304 -NA,NA,"",2019-20,Douglas - Douglas Primary School,00770005, 59, 98, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2019-20,Dover - Chickering,00780005, 9, 78, 80, 72, 85, 82, 84, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 168, 174, 166, 1, 680 -NA,NA,"",2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 184, 163, 177, 0, 0, 0, 0, 0, 524 -NA,NA,"",2019-20,Dracut - Brookside Elementary,00790035, 0, 80, 95, 73, 69, 75, 64, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2019-20,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 222, 230, 199, 1, 877 -NA,NA,"",2019-20,Dracut - George H. Englesby Elementary School,00790045, 0, 96, 92, 96, 92, 90, 86, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2019-20,Dracut - Greenmont Avenue,00790030, 0, 42, 43, 49, 37, 60, 52, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2019-20,Dracut - Joseph A Campbell Elementary,00790020, 53, 87, 86, 99, 76, 83, 97, 0, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2019-20,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 305, 335, 288, 0, 0, 0, 0, 0, 928 -NA,NA,"",2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 42, 41, 44, 41, 40, 35, 28, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 65, 142, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 152, 185, 169, 165, 0, 0, 0, 0, 0, 671 -NA,NA,"",2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 127, 110, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2019-20,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 147, 135, 126, 151, 0, 0, 0, 0, 0, 559 -NA,NA,"",2019-20,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 139, 152, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 57, 104, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 261, 282, 258, 4," 1,048" -NA,NA,"",2019-20,Duxbury - Alden School,00820004, 0, 0, 0, 0, 206, 213, 196, 0, 0, 0, 0, 0, 0, 0, 0, 615 -NA,NA,"",2019-20,Duxbury - Chandler Elementary,00820006, 66, 182, 190, 199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 637 -NA,NA,"",2019-20,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 229, 253, 254, 1, 981 -NA,NA,"",2019-20,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 233, 258, 248, 0, 0, 0, 0, 0, 739 -NA,NA,"",2019-20,East Bridgewater - Central,00830005, 114, 149, 144, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 169, 179, 166, 168, 157, 170, 0," 1,009" -NA,NA,"",2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 0, 0, 0, 0, 151, 164, 147, 177, 0, 0, 0, 0, 0, 0, 0, 639 -NA,NA,"",2019-20,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 209, 190, 209, 0, 0, 0, 0, 0, 608 -NA,NA,"",2019-20,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 210, 177, 225, 1, 834 -NA,NA,"",2019-20,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 82, 98, 104, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2019-20,East Longmeadow - Meadow Brook,00870013, 48, 181, 165, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2019-20,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 99, 90, 86, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2019-20,Eastham - Eastham Elementary,00850005, 29, 32, 25, 27, 29, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2019-20,Easthampton - Center School,00860005, 0, 41, 40, 42, 39, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2019-20,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 117, 114, 117, 2, 456 -NA,NA,"",2019-20,Easthampton - Maple,00860010, 55, 41, 42, 37, 39, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2019-20,Easthampton - Neil A Pepin,00860020, 0, 38, 37, 36, 39, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195 -NA,NA,"",2019-20,Easthampton - White Brook Middle School,00860305, 0, 0, 0, 0, 0, 0, 124, 100, 111, 97, 0, 0, 0, 0, 0, 432 -NA,NA,"",2019-20,Easton - Center School,00880003, 18, 79, 62, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2019-20,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 277, 307, 293, 0, 0, 0, 0, 0, 877 -NA,NA,"",2019-20,Easton - Moreau Hall,00880020, 12, 67, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2019-20,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 283, 280, 264, 10," 1,114" -NA,NA,"",2019-20,Easton - Parkview Elementary,00880015, 43, 78, 98, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2019-20,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 249, 267, 292, 0, 0, 0, 0, 0, 0, 0, 0, 808 -NA,NA,"",2019-20,Edgartown - Edgartown Elementary,00890005, 6, 45, 42, 37, 48, 39, 59, 41, 38, 36, 0, 0, 0, 0, 0, 391 -NA,NA,"",2019-20,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 104, 94, 84, 0, 388 -NA,NA,"",2019-20,Erving - Erving Elementary,00910030, 27, 18, 15, 10, 14, 22, 9, 18, 0, 0, 0, 0, 0, 0, 0, 133 -NA,NA,"",2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 388, 352, 333, 0," 1,492" -NA,NA,"",2019-20,Everett - Adams School,00930003, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2019-20,Everett - Devens School,00930030, 0, 1, 2, 3, 2, 5, 2, 9, 9, 5, 7, 6, 5, 4, 0, 60 -NA,NA,"",2019-20,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 493, 534, 442, 527, 1," 1,997" -NA,NA,"",2019-20,Everett - George Keverian School,00930028, 0, 84, 76, 80, 115, 96, 91, 109, 130, 132, 0, 0, 0, 0, 0, 913 -NA,NA,"",2019-20,Everett - Lafayette School,00930038, 0, 102, 93, 103, 94, 129, 102, 131, 138, 109, 0, 0, 0, 0, 0," 1,001" -NA,NA,"",2019-20,Everett - Madeline English School,00930018, 0, 71, 76, 96, 84, 82, 76, 94, 91, 101, 0, 0, 0, 0, 0, 771 -NA,NA,"",2019-20,Everett - Parlin School,00930058, 0, 101, 109, 107, 102, 79, 117, 101, 119, 134, 0, 0, 0, 0, 0, 969 -NA,NA,"",2019-20,Everett - Sumner G. Whittier School,00930010, 0, 66, 61, 65, 83, 86, 76, 86, 61, 58, 0, 0, 0, 0, 0, 642 -NA,NA,"",2019-20,Everett - Webster Extension,00930001, 211, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2019-20,Everett - Webster School,00930015, 7, 83, 71, 68, 57, 43, 37, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 176, 177, 174, 177, 178, 174, 168, 146, 0," 1,370" -NA,NA,"",2019-20,Fairhaven - East Fairhaven,00940010, 23, 38, 54, 57, 68, 73, 79, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2019-20,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, 167, 187, 158, 2, 699 -NA,NA,"",2019-20,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 155, 144, 160, 0, 0, 0, 0, 0, 459 -NA,NA,"",2019-20,Fairhaven - Leroy Wood,00940030, 22, 78, 74, 75, 75, 80, 88, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2019-20,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 567, 521, 478, 0," 2,147" -NA,NA,"",2019-20,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 109, 119, 130, 105, 138, 122, 0, 0, 0, 0, 0, 0, 0, 0, 723 -NA,NA,"",2019-20,Fall River - Henry Lord Community School,00950017, 38, 100, 84, 82, 90, 78, 86, 87, 85, 50, 0, 0, 0, 0, 0, 780 -NA,NA,"",2019-20,Fall River - James Tansey,00950140, 0, 53, 50, 47, 55, 49, 50, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2019-20,Fall River - John J Doran,00950045, 20, 52, 54, 59, 50, 56, 57, 51, 53, 41, 0, 0, 0, 0, 0, 493 -NA,NA,"",2019-20,Fall River - Letourneau Elementary School,00950013, 39, 91, 86, 100, 104, 99, 85, 0, 0, 0, 0, 0, 0, 0, 0, 604 -NA,NA,"",2019-20,Fall River - Mary Fonseca Elementary School,00950011, 32, 93, 94, 106, 122, 116, 114, 0, 0, 0, 0, 0, 0, 0, 0, 677 -NA,NA,"",2019-20,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 256, 260, 226, 0, 0, 0, 0, 0, 742 -NA,NA,"",2019-20,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 214, 216, 195, 0, 0, 0, 0, 0, 625 -NA,NA,"",2019-20,Fall River - North End Elementary,00950005, 82, 110, 102, 107, 114, 135, 124, 0, 0, 0, 0, 0, 0, 0, 0, 774 -NA,NA,"",2019-20,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 16, 26, 27, 38, 63, 44, 0, 214 -NA,NA,"",2019-20,Fall River - Samuel Watson,00950145, 0, 41, 50, 50, 47, 39, 47, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2019-20,Fall River - Spencer Borden,00950130, 15, 89, 85, 102, 94, 76, 92, 0, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2019-20,Fall River - Stone PK-12 School,00950340, 0, 0, 1, 4, 2, 3, 4, 5, 11, 8, 6, 8, 3, 1, 0, 56 -NA,NA,"",2019-20,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 187, 175, 174, 0, 0, 0, 0, 0, 536 -NA,NA,"",2019-20,Fall River - William S Greene,00950065, 41, 116, 104, 109, 107, 124, 126, 0, 0, 0, 0, 0, 0, 0, 0, 727 -NA,NA,"",2019-20,Falmouth - East Falmouth Elementary,00960005, 90, 32, 50, 44, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2019-20,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 211, 187, 189, 3, 842 -NA,NA,"",2019-20,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 266, 256, 0, 0, 0, 0, 0, 522 -NA,NA,"",2019-20,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 269, 280, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2019-20,Falmouth - Mullen-Hall,00960020, 0, 87, 92, 89, 84, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2019-20,Falmouth - North Falmouth Elementary,00960030, 0, 54, 62, 79, 55, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2019-20,Falmouth - Teaticket,00960015, 25, 53, 37, 50, 51, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2019-20,Farmington River Reg - Farmington River Elementary,06620020, 24, 13, 12, 11, 13, 9, 10, 13, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 170, 183, 149, 155, 0, 0, 0, 0, 0, 657 -NA,NA,"",2019-20,Fitchburg - Crocker Elementary,00970016, 54, 120, 127, 103, 130, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 649 -NA,NA,"",2019-20,Fitchburg - Fitchburg High,00970505, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 277, 306, 245, 4," 1,221" -NA,NA,"",2019-20,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 23, 61, 98, 11, 197 -NA,NA,"",2019-20,Fitchburg - McKay Arts Academy,00970340, 22, 77, 72, 71, 76, 76, 85, 71, 73, 66, 0, 0, 0, 0, 0, 689 -NA,NA,"",2019-20,Fitchburg - Memorial Middle School,00970048, 0, 0, 0, 0, 0, 0, 175, 181, 160, 178, 0, 0, 0, 0, 0, 694 -NA,NA,"",2019-20,Fitchburg - Reingold Elementary,00970043, 30, 113, 134, 107, 130, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2019-20,Fitchburg - South Street Elementary,00970060, 34, 109, 127, 107, 109, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 601 -NA,NA,"",2019-20,Florida - Abbott Memorial,00980005, 22, 7, 9, 1, 9, 8, 4, 14, 14, 7, 0, 0, 0, 0, 0, 95 -NA,NA,"",2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 38, 38, 37, 38, 30, 36, 0, 217 -NA,NA,"",2019-20,Foxborough - Charles Taylor Elementary,00990050, 0, 56, 41, 40, 58, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2019-20,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 200, 188, 212, 12, 793 -NA,NA,"",2019-20,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 180, 217, 216, 209, 0, 0, 0, 0, 0, 822 -NA,NA,"",2019-20,Foxborough - Mabelle M Burrell,00990015, 85, 43, 51, 52, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2019-20,Foxborough - Vincent M Igo Elementary,00990020, 0, 85, 65, 77, 82, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 145, 144, 153, 150, 152, 149, 145, 148, 149, 103, 90, 67, 63, 0," 1,658" -NA,NA,"",2019-20,Framingham - Barbieri Elementary,01000035, 0, 118, 122, 121, 109, 107, 113, 0, 0, 0, 0, 0, 0, 0, 0, 690 -NA,NA,"",2019-20,Framingham - Brophy,01000006, 0, 80, 87, 65, 71, 82, 85, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2019-20,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 215, 205, 180, 0, 0, 0, 0, 0, 600 -NA,NA,"",2019-20,Framingham - Charlotte A Dunning,01000007, 0, 63, 96, 61, 75, 69, 72, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2019-20,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 684, 567, 568, 492, 0," 2,311" -NA,NA,"",2019-20,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 179, 196, 250, 0, 0, 0, 0, 0, 625 -NA,NA,"",2019-20,Framingham - Hemenway,01000015, 0, 89, 97, 89, 84, 93, 94, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2019-20,Framingham - Juniper Hill School,01000001, 309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2019-20,Framingham - King Elementary School,01000005, 0, 65, 77, 65, 72, 67, 73, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2019-20,Framingham - Mary E Stapleton Elementary,01000045, 0, 55, 65, 57, 51, 58, 55, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2019-20,Framingham - Miriam F McCarthy School,01000050, 0, 74, 86, 78, 93, 82, 98, 0, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2019-20,Framingham - Potter Road,01000039, 0, 85, 91, 87, 92, 87, 80, 0, 0, 0, 0, 0, 0, 0, 0, 522 -NA,NA,"",2019-20,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 276, 237, 252, 0, 0, 0, 0, 0, 765 -NA,NA,"",2019-20,Framingham - Woodrow Wilson,01000055, 0, 67, 91, 84, 100, 99, 102, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 75, 69, 74, 65, 60, 54, 0, 397 -NA,NA,"",2019-20,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 130, 122, 130, 0, 0, 0, 0, 0, 382 -NA,NA,"",2019-20,Franklin - Davis Thayer,01010035, 0, 41, 53, 23, 39, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2019-20,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 435, 432, 447, 429, 7," 1,750" -NA,NA,"",2019-20,Franklin - Helen Keller Elementary,01010012, 0, 46, 49, 53, 67, 75, 56, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2019-20,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 133, 167, 150, 0, 0, 0, 0, 0, 450 -NA,NA,"",2019-20,Franklin - J F Kennedy Memorial,01010013, 0, 36, 54, 73, 65, 61, 62, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2019-20,Franklin - Jefferson Elementary,01010010, 0, 39, 59, 71, 46, 59, 72, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2019-20,Franklin - Oak Street Elementary,01010030, 0, 60, 59, 68, 68, 48, 56, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2019-20,Franklin - Parmenter,01010032, 0, 63, 51, 49, 64, 51, 67, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2019-20,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 122, 126, 153, 0, 0, 0, 0, 0, 401 -NA,NA,"",2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 137, 106, 109, 0, 505 -NA,NA,"",2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 154, 212, 175, 0, 732 -NA,NA,"",2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 113, 125, 117, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 57, 106, 91, 107, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 232, 249, 262, 1, 0, 0, 0, 0, 744 -NA,NA,"",2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 232, 203, 1, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2019-20,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 122, 123, 96, 102, 109, 96, 7, 655 -NA,NA,"",2019-20,Gardner - Elm Street School,01030001, 0, 0, 0, 180, 165, 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 534 -NA,NA,"",2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 10, 28, 54, 0, 126 -NA,NA,"",2019-20,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 138, 105, 132, 118, 5, 689 -NA,NA,"",2019-20,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 200, 186, 200, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2019-20,Gardner - Waterford Street,01030020, 75, 176, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2019-20,Gateway - Chester Elementary,06720059, 16, 13, 21, 17, 12, 23, 18, 0, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2019-20,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 37, 61, 48, 6, 205 -NA,NA,"",2019-20,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 66, 62, 66, 0, 0, 0, 0, 0, 194 -NA,NA,"",2019-20,Gateway - Littleville Elementary School,06720143, 40, 36, 35, 56, 39, 42, 60, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2019-20,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 96, 91, 106, 0, 378 -NA,NA,"",2019-20,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 88, 96, 0, 0, 0, 0, 0, 184 -NA,NA,"",2019-20,Georgetown - Penn Brook,01050010, 0, 105, 111, 106, 91, 105, 87, 116, 0, 0, 0, 0, 0, 0, 0, 721 -NA,NA,"",2019-20,Georgetown - Perley Elementary,01050005, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85 -NA,NA,"",2019-20,Gill-Montague - Gill Elementary,06740005, 0, 20, 15, 20, 19, 20, 19, 27, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2019-20,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 60, 79, 85, 0, 0, 0, 0, 0, 224 -NA,NA,"",2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 38, 51, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 -NA,NA,"",2019-20,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 59, 47, 55, 55, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2019-20,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 43, 42, 60, 49, 4, 198 -NA,NA,"",2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 94, 93, 89, 91, 48, 39, 24, 29, 0, 507 -NA,NA,"",2019-20,Gloucester - Beeman Memorial,01070010, 0, 56, 58, 49, 57, 53, 56, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2019-20,Gloucester - East Gloucester Elementary,01070020, 0, 34, 34, 24, 25, 45, 40, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2019-20,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 208, 150, 175, 5, 768 -NA,NA,"",2019-20,Gloucester - Gloucester PreSchool,01070025, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2019-20,Gloucester - Plum Cove School,01070042, 0, 34, 38, 36, 34, 35, 29, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 218, 202, 237, 0, 0, 0, 0, 0, 657 -NA,NA,"",2019-20,Gloucester - Veterans Memorial,01070045, 0, 44, 27, 30, 42, 37, 32, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2019-20,Gloucester - West Parish,01070050, 0, 58, 55, 68, 57, 65, 58, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 -NA,NA,"",2019-20,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, 248, 183, 198, 4, 872 -NA,NA,"",2019-20,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 270, 260, 0, 0, 0, 0, 0, 530 -NA,NA,"",2019-20,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 129, 135, 128, 148, 141, 0, 0, 0, 0, 0, 0, 0, 681 -NA,NA,"",2019-20,Grafton - North Grafton Elementary,01100025, 47, 107, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2019-20,Grafton - North Street Elementary School,01100030, 0, 0, 0, 110, 101, 110, 140, 104, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2019-20,Grafton - South Grafton Elementary,01100005, 70, 130, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2019-20,Granby - East Meadow,01110004, 37, 57, 66, 55, 51, 55, 42, 49, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2019-20,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 52, 57, 58, 65, 55, 54, 0, 341 -NA,NA,"",2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 369, 357, 335, 0," 1,433" -NA,NA,"",2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432, 406, 388, 365, 0," 1,591" -NA,NA,"",2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 607, 584, 557, 510, 13," 2,271" -NA,NA,"",2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 549, 542, 515, 518, 0," 2,124" -NA,NA,"",2019-20,Greenfield - Discovery School at Four Corners,01140025, 0, 55, 45, 53, 51, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2019-20,Greenfield - Federal Street School,01140010, 0, 39, 46, 53, 54, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2019-20,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 104, 117, 79, 66, 0, 484 -NA,NA,"",2019-20,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 126, 137, 118, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2019-20,Greenfield - Newton School,01140035, 0, 67, 49, 42, 39, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0, 15, 19, 28, 22, 26, 34, 59, 60, 76, 110, 72, 78, 64, 0, 663 -NA,NA,"",2019-20,Groton-Dunstable - Boutwell School,06730001, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58 -NA,NA,"",2019-20,Groton-Dunstable - Florence Roche School,06730010, 0, 95, 107, 109, 111, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 178, 192, 183, 4, 725 -NA,NA,"",2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 197, 171, 184, 203, 0, 0, 0, 0, 0, 755 -NA,NA,"",2019-20,Groton-Dunstable - Swallow/Union School,06730005, 0, 55, 63, 60, 54, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2019-20,Hadley - Hadley Elementary,01170015, 35, 29, 36, 26, 34, 39, 33, 48, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2019-20,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 49, 51, 38, 39, 40, 31, 1, 249 -NA,NA,"",2019-20,Halifax - Halifax Elementary,01180005, 0, 64, 83, 92, 100, 82, 82, 83, 0, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 43, 46, 43, 40, 44, 41, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2019-20,Hamilton-Wenham - Cutler School,06750010, 0, 38, 45, 63, 44, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 135, 143, 139, 0, 551 -NA,NA,"",2019-20,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 142, 139, 137, 0, 0, 0, 0, 0, 418 -NA,NA,"",2019-20,Hamilton-Wenham - Winthrop School,06750015, 39, 64, 45, 44, 45, 38, 57, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 91, 92, 85, 84, 66, 57, 49, 0, 524 -NA,NA,"",2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0, 0, 0, 0, 0, 0, 0, 67, 67, 57, 43, 28, 0, 0, 0, 262 -NA,NA,"",2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 26, 47, 36, 46, 41, 42, 42, 14, 15, 13, 0, 0, 0, 0, 0, 322 -NA,NA,"",2019-20,Hampden-Wilbraham - Mile Tree Elementary,06800025, 62, 148, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 283, 247, 261, 4," 1,053" -NA,NA,"",2019-20,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 160, 160, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 153, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 214, 198, 212, 0, 0, 0, 0, 0, 624 -NA,NA,"",2019-20,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 121, 142, 104, 137, 105, 119, 6, 734 -NA,NA,"",2019-20,Hancock - Hancock Elementary,01210005, 8, 11, 5, 4, 5, 4, 6, 4, 0, 0, 0, 0, 0, 0, 0, 47 -NA,NA,"",2019-20,Hanover - Cedar Elementary,01220004, 80, 198, 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2019-20,Hanover - Center Elementary,01220005, 0, 0, 0, 169, 207, 195, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571 -NA,NA,"",2019-20,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 191, 213, 190, 3, 769 -NA,NA,"",2019-20,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 207, 185, 215, 224, 0, 0, 0, 0, 0, 831 -NA,NA,"",2019-20,Harvard - Bromfield,01250505, 0, 0, 0, 0, 0, 0, 0, 95, 80, 84, 74, 99, 99, 88, 0, 619 -NA,NA,"",2019-20,Harvard - Hildreth Elementary School,01250005, 17, 58, 58, 74, 70, 80, 72, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2019-20,Hatfield - Hatfield Elementary,01270005, 17, 28, 35, 21, 39, 28, 37, 38, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2019-20,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 39, 30, 25, 40, 23, 31, 0, 188 -NA,NA,"",2019-20,Haverhill - Bradford Elementary,01280008, 0, 115, 112, 109, 109, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 0, 84, 90, 92, 73, 93, 169, 174, 174, 214, 0, 0, 0, 0, 0," 1,163" -NA,NA,"",2019-20,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 0, 0, 103, 206, 224, 216, 0, 0, 0, 0, 0, 749 -NA,NA,"",2019-20,Haverhill - Crowell,01280515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 8, 2, 0, 0, 24 -NA,NA,"",2019-20,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 173, 135, 147, 125, 0, 0, 0, 0, 0, 580 -NA,NA,"",2019-20,Haverhill - Golden Hill,01280026, 0, 81, 95, 111, 125, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 526 -NA,NA,"",2019-20,Haverhill - Greenleaf Academy,01280033, 0, 0, 0, 0, 0, 0, 0, 1, 3, 5, 4, 9, 7, 2, 0, 31 -NA,NA,"",2019-20,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506, 426, 479, 396, 25," 1,832" -NA,NA,"",2019-20,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 101, 137, 149, 126, 0, 0, 0, 0, 0, 513 -NA,NA,"",2019-20,Haverhill - Moody,01280045, 207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2019-20,Haverhill - Pentucket Lake Elementary,01280054, 0, 80, 94, 104, 139, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2019-20,Haverhill - Silver Hill Elementary School,01280067, 0, 83, 72, 91, 113, 126, 140, 0, 0, 0, 0, 0, 0, 0, 0, 625 -NA,NA,"",2019-20,Haverhill - TEACH,01280073, 0, 0, 0, 1, 2, 2, 5, 1, 2, 2, 2, 1, 2, 0, 9, 29 -NA,NA,"",2019-20,Haverhill - Tilton,01280075, 0, 84, 121, 108, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2019-20,Haverhill - Tilton Upper Middle School,01280105, 0, 0, 0, 0, 0, 104, 34, 27, 0, 0, 0, 0, 0, 0, 0, 165 -NA,NA,"",2019-20,Haverhill - Walnut Square,01280080, 0, 54, 48, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2019-20,Hawlemont - Hawlemont Regional,06850005, 23, 16, 15, 17, 28, 18, 18, 8, 0, 0, 0, 0, 0, 0, 0, 143 -NA,NA,"",2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 73, 80, 54, 0, 0, 0, 0, 0, 207 -NA,NA,"",2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 36, 33, 35, 36, 31, 34, 34, 33, 35, 0, 0, 0, 0, 0, 307 -NA,NA,"",2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 21, 22, 22, 22, 32, 32, 27, 0, 0, 0, 0, 0, 218 -NA,NA,"",2019-20,Hingham - East Elementary School,01310005, 70, 81, 74, 70, 76, 84, 70, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2019-20,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, 330, 318, 306, 5," 1,302" -NA,NA,"",2019-20,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 356, 307, 336, 0, 0, 0, 0, 0, 999 -NA,NA,"",2019-20,Hingham - Plymouth River,01310019, 0, 60, 64, 77, 68, 78, 81, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2019-20,Hingham - South Elementary,01310020, 0, 80, 84, 90, 82, 90, 87, 0, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2019-20,Hingham - Wm L Foster Elementary,01310010, 0, 83, 88, 80, 90, 86, 68, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2019-20,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 106, 94, 121, 89, 80, 62, 74, 4, 630 -NA,NA,"",2019-20,Holbrook - John F Kennedy,01330018, 42, 106, 117, 104, 110, 110, 90, 0, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2019-20,Holland - Holland Elementary,01350005, 38, 18, 31, 35, 31, 25, 32, 22, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2019-20,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 218, 195, 222, 5, 843 -NA,NA,"",2019-20,Holliston - Miller School,01360007, 0, 0, 0, 0, 234, 228, 227, 0, 0, 0, 0, 0, 0, 0, 0, 689 -NA,NA,"",2019-20,Holliston - Placentino Elementary,01360010, 105, 194, 177, 210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 686 -NA,NA,"",2019-20,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 229, 235, 228, 0, 0, 0, 0, 0, 692 -NA,NA,"",2019-20,Holyoke - E N White Elementary,01370045, 87, 66, 63, 54, 59, 52, 56, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2019-20,Holyoke - H.B. Lawrence School,01370070, 0, 66, 59, 57, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2019-20,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370, 388, 373, 386, 0," 1,517" -NA,NA,"",2019-20,Holyoke - Holyoke STEM Academy,01370320, 0, 0, 0, 0, 0, 0, 0, 48, 98, 75, 0, 0, 0, 0, 0, 221 -NA,NA,"",2019-20,Holyoke - Joseph Metcalf School,01370003, 36, 44, 44, 38, 43, 37, 30, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2019-20,Holyoke - Kelly Elementary,01370040, 26, 62, 61, 52, 57, 60, 0, 0, 49, 39, 0, 0, 0, 0, 0, 406 -NA,NA,"",2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 25, 41, 47, 37, 67, 51, 56, 63, 63, 58, 0, 0, 0, 0, 0, 508 -NA,NA,"",2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 26, 43, 34, 44, 40, 34, 53, 43, 45, 49, 0, 0, 0, 0, 0, 411 -NA,NA,"",2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 39, 47, 61, 55, 49, 52, 47, 45, 48, 41, 0, 0, 0, 0, 0, 484 -NA,NA,"",2019-20,Holyoke - Morgan Full Service Community School,01370025, 120, 50, 45, 44, 50, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2019-20,Holyoke - Veritas Prep Holyoke,01370075, 0, 0, 0, 0, 0, 0, 103, 126, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2019-20,Holyoke - William R. Peck School,01370030, 0, 0, 0, 0, 0, 43, 57, 60, 53, 48, 0, 0, 0, 0, 0, 261 -NA,NA,"",2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 81, 81, 77, 86, 82, 81, 74, 75, 64, 0, 0, 0, 0, 0, 701 -NA,NA,"",2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 62, 88, 80, 78, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 59, 73, 43, 71, 3, 341 -NA,NA,"",2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 71, 106, 104, 94, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 85, 90, 65, 83, 72, 71, 0, 466 -NA,NA,"",2019-20,Hopedale - Memorial,01380010, 0, 66, 63, 77, 79, 76, 73, 86, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2019-20,Hopedale - Park Street School,01380003, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94 -NA,NA,"",2019-20,Hopkinton - Elmwood,01390010, 0, 0, 0, 254, 303, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557 -NA,NA,"",2019-20,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 287, 288, 0, 0, 0, 0, 0, 0, 0, 0, 575 -NA,NA,"",2019-20,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 289, 323, 294, 5," 1,229" -NA,NA,"",2019-20,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 287, 316, 255, 0, 0, 0, 0, 0, 858 -NA,NA,"",2019-20,Hopkinton - Hopkinton Pre-School,01390003, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80 -NA,NA,"",2019-20,Hopkinton - Marathon Elementary School,01390005, 0, 268, 295, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 563 -NA,NA,"",2019-20,Hudson - C A Farley,01410030, 15, 78, 77, 86, 85, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2019-20,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 207, 214, 203, 0, 0, 0, 0, 0, 0, 624 -NA,NA,"",2019-20,Hudson - Forest Avenue Elementary,01410015, 0, 70, 63, 86, 68, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2019-20,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 190, 165, 143, 183, 0, 898 -NA,NA,"",2019-20,Hudson - Mulready Elementary,01410007, 13, 48, 54, 45, 48, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2019-20,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 61, 76, 76, 0, 274 -NA,NA,"",2019-20,Hull - Lillian M Jacobs,01420015, 55, 52, 59, 60, 56, 57, 64, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2019-20,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 61, 57, 59, 0, 0, 0, 0, 0, 177 -NA,NA,"",2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 100, 100, 101, 100, 110, 101, 99, 87, 0, 798 -NA,NA,"",2019-20,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 141, 140, 137, 1, 547 -NA,NA,"",2019-20,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 125, 127, 147, 0, 0, 0, 0, 0, 399 -NA,NA,"",2019-20,Ipswich - Paul F Doyon Memorial,01440007, 0, 53, 60, 66, 59, 63, 65, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2019-20,Ipswich - Winthrop,01440015, 33, 52, 48, 60, 57, 62, 55, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2019-20,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 352, 383, 0, 0, 0, 0, 0, 735 -NA,NA,"",2019-20,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270, 329, 314, 325, 6," 1,244" -NA,NA,"",2019-20,Kingston - Kingston Elementary,01450005, 0, 154, 148, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2019-20,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 137, 174, 147, 151, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 62, 64, 63, 72, 75, 69, 62, 56, 58, 0, 0, 0, 0, 0, 581 -NA,NA,"",2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 125, 124, 124, 124, 124, 128, 124, 124, 124, 130, 119, 118, 114, 0," 1,602" -NA,NA,"",2019-20,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 65, 79, 79, 93, 83, 91, 0, 0, 0, 0, 0, 490 -NA,NA,"",2019-20,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 130, 145, 165, 149, 0, 0, 0, 0, 0, 589 -NA,NA,"",2019-20,Lawrence - Community Day Arlington,01490009, 0, 97, 120, 122, 132, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 594 -NA,NA,"",2019-20,Lawrence - Edward F. Parthum,01490053, 0, 113, 133, 140, 131, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 662 -NA,NA,"",2019-20,Lawrence - Emily G Wetherbee,01490080, 0, 55, 62, 71, 75, 81, 65, 78, 74, 68, 0, 0, 0, 0, 0, 629 -NA,NA,"",2019-20,Lawrence - Francis M Leahy,01490040, 0, 0, 82, 87, 96, 98, 99, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2019-20,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 134, 138, 136, 129, 0, 0, 0, 0, 0, 537 -NA,NA,"",2019-20,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 123, 140, 129, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2019-20,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 124, 140, 123, 109, 0, 0, 0, 0, 0, 496 -NA,NA,"",2019-20,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 19, 49, 81, 0, 150 -NA,NA,"",2019-20,Lawrence - James F Hennessey,01490020, 88, 70, 88, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2019-20,Lawrence - John Breen School,01490003, 184, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2019-20,Lawrence - John K Tarbox,01490075, 0, 0, 66, 55, 50, 73, 57, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0, 172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2019-20,Lawrence - Lawrence Family Public Academy,01490011, 71, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167 -NA,NA,"",2019-20,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 919, 886, 723, 760, 33," 3,321" -NA,NA,"",2019-20,Lawrence - Oliver Partnership School,01490048, 0, 0, 103, 87, 106, 98, 88, 0, 0, 0, 0, 0, 0, 0, 0, 482 -NA,NA,"",2019-20,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 138, 161, 156, 139, 0, 0, 0, 0, 0, 594 -NA,NA,"",2019-20,Lawrence - Robert Frost,01490018, 0, 95, 117, 106, 129, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2019-20,Lawrence - Rollins Early Childhood Center,01490001, 130, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2019-20,Lawrence - School for Exceptional Studies,01490537, 0, 1, 2, 7, 8, 7, 11, 9, 16, 13, 11, 10, 14, 7, 12, 128 -NA,NA,"",2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 149, 139, 147, 161, 139, 0, 0, 0, 0, 0, 0, 0, 0, 735 -NA,NA,"",2019-20,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 160, 158, 156, 0, 0, 0, 0, 0, 474 -NA,NA,"",2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 114, 83, 104, 0, 0, 0, 0, 0, 301 -NA,NA,"",2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 97, 109, 118, 0, 0, 0, 0, 0, 324 -NA,NA,"",2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 82, 81, 84, 84, 82, 82, 79, 76, 82, 48, 0, 0, 0, 0, 0, 780 -NA,NA,"",2019-20,Lee - Lee Elementary,01500025, 18, 53, 48, 58, 48, 48, 49, 38, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2019-20,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 53, 58, 66, 59, 65, 50, 2, 353 -NA,NA,"",2019-20,Leicester - Leicester Elementary,01510005, 0, 97, 95, 119, 88, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2019-20,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 139, 104, 126, 0, 471 -NA,NA,"",2019-20,Leicester - Leicester Integrated Preschool,01510001, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60 -NA,NA,"",2019-20,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 101, 119, 111, 135, 0, 0, 0, 0, 0, 466 -NA,NA,"",2019-20,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 64, 62, 72, 69, 68, 63, 61, 0, 459 -NA,NA,"",2019-20,Lenox - Morris,01520015, 26, 44, 52, 46, 53, 52, 44, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2019-20,Leominster - Bennett,01530003, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2019-20,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 172, 148, 144, 0, 722 -NA,NA,"",2019-20,Leominster - Fall Brook,01530007, 0, 71, 115, 118, 100, 121, 112, 0, 0, 0, 0, 0, 0, 0, 0, 637 -NA,NA,"",2019-20,Leominster - Frances Drake School,01530010, 0, 99, 86, 77, 87, 98, 95, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2019-20,Leominster - Johnny Appleseed,01530025, 0, 88, 113, 109, 119, 100, 138, 0, 0, 0, 0, 0, 0, 0, 0, 667 -NA,NA,"",2019-20,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 9, 15, 9, 0, 43 -NA,NA,"",2019-20,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 299, 313, 287, 0," 1,112" -NA,NA,"",2019-20,Leominster - Lincoln School,01530005, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37 -NA,NA,"",2019-20,Leominster - Northwest,01530030, 0, 47, 127, 118, 117, 136, 134, 0, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2019-20,Leominster - Priest Street,01530040, 0, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115 -NA,NA,"",2019-20,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 174, 169, 172, 0, 0, 0, 0, 0, 515 -NA,NA,"",2019-20,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 311, 285, 300, 0, 0, 0, 0, 0, 896 -NA,NA,"",2019-20,Leverett - Leverett Elementary,01540005, 19, 15, 17, 20, 18, 15, 23, 15, 0, 0, 0, 0, 0, 0, 0, 142 -NA,NA,"",2019-20,Lexington - Bowman,01550008, 0, 61, 79, 97, 93, 100, 101, 0, 0, 0, 0, 0, 0, 0, 0, 531 -NA,NA,"",2019-20,Lexington - Bridge,01550006, 0, 62, 74, 79, 90, 109, 111, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2019-20,Lexington - Fiske,01550015, 0, 61, 69, 82, 74, 89, 106, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2019-20,Lexington - Harrington,01550030, 0, 57, 78, 83, 94, 81, 78, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2019-20,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 315, 304, 307, 0, 0, 0, 0, 0, 926 -NA,NA,"",2019-20,Lexington - Joseph Estabrook,01550010, 0, 82, 87, 102, 94, 108, 101, 0, 0, 0, 0, 0, 0, 0, 0, 574 -NA,NA,"",2019-20,Lexington - Lexington Children's Place,01550001, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68 -NA,NA,"",2019-20,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 607, 591, 526, 551, 0," 2,275" -NA,NA,"",2019-20,Lexington - Maria Hastings,01550035, 0, 59, 66, 64, 93, 76, 79, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2019-20,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 300, 321, 281, 0, 0, 0, 0, 0, 902 -NA,NA,"",2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 90, 90, 87, 0, 0, 0, 0, 0, 267 -NA,NA,"",2019-20,Lincoln - Hanscom Middle,01570305, 0, 0, 0, 0, 0, 55, 63, 57, 44, 39, 0, 0, 0, 0, 0, 258 -NA,NA,"",2019-20,Lincoln - Hanscom Primary,01570006, 66, 59, 64, 67, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Lincoln - Lincoln School,01570025, 26, 50, 76, 52, 69, 50, 58, 58, 48, 58, 0, 0, 0, 0, 0, 545 -NA,NA,"",2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353, 411, 389, 352, 7," 1,512" -NA,NA,"",2019-20,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 99, 109, 120, 1, 440 -NA,NA,"",2019-20,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 143, 122, 125, 0, 0, 0, 0, 0, 390 -NA,NA,"",2019-20,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 118, 132, 138, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2019-20,Littleton - Shaker Lane Elementary,01580005, 65, 116, 127, 137, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2019-20,Longmeadow - Blueberry Hill,01590005, 0, 49, 72, 67, 71, 76, 63, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2019-20,Longmeadow - Center,01590010, 0, 73, 77, 67, 71, 69, 66, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2019-20,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 110, 108, 112, 0, 0, 0, 0, 0, 330 -NA,NA,"",2019-20,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218, 247, 221, 256, 0, 942 -NA,NA,"",2019-20,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 129, 112, 112, 0, 0, 0, 0, 0, 353 -NA,NA,"",2019-20,Longmeadow - Wolf Swamp Road,01590025, 57, 55, 60, 55, 53, 54, 67, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2019-20,Lowell - Abraham Lincoln,01600020, 46, 86, 93, 92, 91, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2019-20,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 141, 147, 144, 139, 0, 0, 0, 0, 0, 571 -NA,NA,"",2019-20,Lowell - Bartlett Community Partnership,01600090, 41, 40, 45, 42, 43, 44, 62, 56, 55, 60, 0, 0, 0, 0, 0, 488 -NA,NA,"",2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109 -NA,NA,"",2019-20,Lowell - Charles W Morey,01600030, 57, 82, 93, 90, 89, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 46, 77, 89, 89, 93, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2019-20,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 169, 174, 172, 200, 0, 0, 0, 0, 0, 715 -NA,NA,"",2019-20,Lowell - Dr Gertrude Bailey,01600002, 30, 92, 95, 91, 92, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2019-20,Lowell - Dr. Janice Adie Day School,01600605, 3, 3, 7, 7, 11, 7, 3, 1, 5, 4, 0, 1, 0, 1, 0, 53 -NA,NA,"",2019-20,Lowell - Greenhalge,01600015, 51, 81, 93, 74, 86, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2019-20,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 162, 152, 158, 171, 0, 0, 0, 0, 0, 643 -NA,NA,"",2019-20,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 179, 179, 166, 173, 0, 0, 0, 0, 0, 697 -NA,NA,"",2019-20,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 160, 166, 175, 175, 0, 0, 0, 0, 0, 676 -NA,NA,"",2019-20,Lowell - John J Shaughnessy,01600050, 30, 86, 97, 87, 87, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2019-20,Lowell - Joseph McAvinnue,01600010, 31, 82, 92, 89, 90, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 168, 170, 167, 177, 0, 0, 0, 0, 0, 682 -NA,NA,"",2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 0, 2, 1, 1, 5, 9, 3, 0, 0, 0, 0, 0, 21 -NA,NA,"",2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 7, 10, 7, 0, 33 -NA,NA,"",2019-20,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 740, 754, 743, 741, 33," 3,011" -NA,NA,"",2019-20,Lowell - Moody Elementary,01600027, 0, 41, 48, 46, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2019-20,Lowell - Pawtucketville Memorial,01600036, 28, 92, 93, 92, 92, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2019-20,Lowell - Peter W Reilly,01600040, 22, 89, 95, 91, 86, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2019-20,Lowell - Pyne Arts,01600018, 31, 49, 48, 50, 46, 48, 59, 60, 55, 59, 0, 0, 0, 0, 0, 505 -NA,NA,"",2019-20,Lowell - Rogers STEM Academy,01600005, 0, 81, 95, 89, 86, 93, 116, 110, 115, 58, 0, 0, 0, 0, 0, 843 -NA,NA,"",2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 49, 78, 99, 77, 90, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2019-20,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 17, 23, 40, 1, 91 -NA,NA,"",2019-20,Lowell - Washington,01600055, 29, 39, 44, 40, 44, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 100, 97, 96, 90, 88, 89, 77, 73, 71, 0, 0, 0, 0, 0, 821 -NA,NA,"",2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 27, 22, 26, 0, 85 -NA,NA,"",2019-20,Ludlow - Chapin Street Elementary School,01610020, 0, 0, 0, 163, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2019-20,Ludlow - East Street Elementary School,01610010, 88, 161, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2019-20,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241, 222, 208, 195, 2, 868 -NA,NA,"",2019-20,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 208, 205, 199, 0, 0, 0, 0, 0, 612 -NA,NA,"",2019-20,Ludlow - Veterans Park Elementary,01610023, 0, 0, 0, 0, 0, 165, 171, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6 -NA,NA,"",2019-20,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 126, 118, 101, 0, 452 -NA,NA,"",2019-20,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 141, 124, 141, 0, 0, 0, 0, 0, 406 -NA,NA,"",2019-20,Lunenburg - Lunenburg Primary School,01620010, 38, 121, 147, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 120, 122, 118, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2019-20,Lynn - A Drewicz Elementary,01630016, 7, 77, 76, 76, 72, 81, 81, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2019-20,Lynn - Aborn,01630011, 0, 37, 52, 42, 39, 37, 41, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2019-20,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 517, 518, 320, 0, 0, 0, 0, 0," 1,355" -NA,NA,"",2019-20,Lynn - Brickett Elementary,01630020, 0, 48, 66, 54, 58, 57, 54, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2019-20,Lynn - Capt William G Shoemaker,01630090, 10, 47, 68, 69, 55, 40, 46, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2019-20,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481, 525, 385, 392, 0," 1,783" -NA,NA,"",2019-20,Lynn - Cobbet Elementary,01630035, 0, 105, 108, 97, 109, 96, 97, 0, 0, 0, 0, 0, 0, 0, 0, 612 -NA,NA,"",2019-20,Lynn - E J Harrington,01630045, 86, 102, 108, 102, 98, 85, 97, 0, 0, 0, 0, 0, 0, 0, 0, 678 -NA,NA,"",2019-20,Lynn - Edward A Sisson,01630095, 6, 63, 76, 84, 75, 74, 72, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 14, 9, 12, 13, 23, 26, 19, 0, 116 -NA,NA,"",2019-20,Lynn - Hood,01630055, 45, 71, 74, 88, 87, 74, 88, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2019-20,Lynn - Ingalls,01630060, 0, 167, 97, 112, 103, 96, 106, 0, 0, 0, 0, 0, 0, 0, 0, 681 -NA,NA,"",2019-20,Lynn - Julia F Callahan,01630030, 60, 42, 63, 56, 52, 70, 68, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2019-20,Lynn - Lincoln-Thomson,01630070, 0, 24, 35, 29, 47, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2019-20,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 532, 576, 475, 383, 0," 1,966" -NA,NA,"",2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 68, 2, 1, 3, 2, 1, 0, 1, 2, 287, 287, 276, 244, 243, 34," 1,451" -NA,NA,"",2019-20,Lynn - Lynn Woods,01630075, 0, 24, 28, 27, 30, 32, 39, 0, 0, 0, 0, 0, 0, 0, 0, 180 -NA,NA,"",2019-20,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 225, 233, 181, 0, 0, 0, 0, 0, 639 -NA,NA,"",2019-20,Lynn - Robert L Ford,01630050, 0, 0, 97, 105, 96, 116, 83, 0, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2019-20,Lynn - Sewell-Anderson,01630085, 0, 108, 30, 45, 40, 37, 49, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2019-20,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 497, 460, 373, 0, 0, 0, 0, 0," 1,330" -NA,NA,"",2019-20,Lynn - Tracy,01630100, 0, 0, 87, 93, 87, 81, 73, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2019-20,Lynn - Washington Elementary School,01630005, 0, 79, 78, 75, 84, 58, 59, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2019-20,Lynn - William R Fallon,01630080, 0, 0, 3, 6, 8, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 33 -NA,NA,"",2019-20,Lynn - Wm P Connery,01630040, 28, 87, 83, 107, 98, 109, 89, 0, 0, 0, 0, 0, 0, 0, 0, 601 -NA,NA,"",2019-20,Lynnfield - Huckleberry Hill,01640010, 0, 101, 81, 86, 89, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2019-20,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 142, 173, 155, 0, 605 -NA,NA,"",2019-20,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 186, 165, 161, 175, 0, 0, 0, 0, 0, 687 -NA,NA,"",2019-20,Lynnfield - Lynnfield Preschool,01640005, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40 -NA,NA,"",2019-20,Lynnfield - Summer Street,01640020, 0, 69, 84, 97, 68, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 48, 0, 99 -NA,NA,"",2019-20,Malden - Beebe,01650003, 0, 101, 114, 99, 97, 97, 103, 90, 98, 104, 0, 0, 0, 0, 0, 903 -NA,NA,"",2019-20,Malden - Ferryway,01650013, 0, 105, 98, 101, 97, 98, 103, 97, 122, 106, 0, 0, 0, 0, 0, 927 -NA,NA,"",2019-20,Malden - Forestdale,01650027, 0, 60, 59, 52, 61, 58, 75, 72, 75, 57, 0, 0, 0, 0, 0, 569 -NA,NA,"",2019-20,Malden - Linden,01650047, 0, 111, 82, 89, 100, 91, 101, 91, 97, 94, 0, 0, 0, 0, 0, 856 -NA,NA,"",2019-20,Malden - Malden Early Learning Center,01650049, 330, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2019-20,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487, 454, 433, 384, 15," 1,773" -NA,NA,"",2019-20,Malden - Salemwood,01650057, 0, 97, 105, 120, 129, 139, 141, 127, 127, 138, 0, 0, 0, 0, 0," 1,123" -NA,NA,"",2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0, 39, 33, 40, 30, 36, 41, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 127, 121, 110, 0, 483 -NA,NA,"",2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 118, 128, 111, 0, 0, 0, 0, 0, 357 -NA,NA,"",2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 12, 44, 42, 46, 61, 44, 62, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Mansfield - Everett W Robinson,01670007, 0, 205, 228, 235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2019-20,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 283, 267, 302, 0, 0, 0, 0, 0, 852 -NA,NA,"",2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 254, 268, 258, 0, 0, 0, 0, 0, 0, 0, 0, 780 -NA,NA,"",2019-20,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 276, 331, 308, 15," 1,240" -NA,NA,"",2019-20,Mansfield - Roland Green School,01670003, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 30, 50, 27, 0, 161 -NA,NA,"",2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83 -NA,NA,"",2019-20,Marblehead - Glover,01680020, 43, 81, 76, 96, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2019-20,Marblehead - L H Coffin,01680010, 0, 0, 114, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2019-20,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, 258, 253, 256, 4," 1,002" -NA,NA,"",2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 260, 228, 0, 0, 0, 0, 0, 488 -NA,NA,"",2019-20,Marblehead - Village School,01680016, 0, 0, 0, 0, 157, 204, 222, 197, 0, 0, 0, 0, 0, 0, 0, 780 -NA,NA,"",2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 46, 52, 52, 19, 36, 0, 0, 0, 0, 0, 205 -NA,NA,"",2019-20,Marion - Sippican,01690005, 21, 55, 61, 53, 58, 64, 59, 62, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 413, 371, 384, 310, 0, 0, 0, 0, 0," 1,478" -NA,NA,"",2019-20,Marlborough - Charles Jaworek School,01700030, 0, 173, 159, 156, 156, 167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 811 -NA,NA,"",2019-20,Marlborough - Early Childhood Center,01700006, 175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2019-20,Marlborough - Francis J Kane,01700008, 0, 103, 111, 114, 125, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2019-20,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 256, 260, 246, 10," 1,050" -NA,NA,"",2019-20,Marlborough - Richer,01700025, 0, 141, 139, 128, 124, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 677 -NA,NA,"",2019-20,Marshfield - Daniel Webster,01710015, 75, 42, 42, 53, 53, 57, 49, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2019-20,Marshfield - Eames Way School,01710005, 0, 32, 36, 41, 42, 37, 41, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2019-20,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 291, 335, 278, 0, 0, 0, 0, 0, 904 -NA,NA,"",2019-20,Marshfield - Gov Edward Winslow,01710020, 0, 63, 59, 56, 69, 71, 58, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2019-20,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 339, 309, 325, 0," 1,307" -NA,NA,"",2019-20,Marshfield - Martinson Elementary,01710025, 54, 82, 60, 62, 78, 49, 82, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2019-20,Marshfield - South River,01710010, 0, 50, 29, 49, 61, 51, 66, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 157, 171, 157, 5, 670 -NA,NA,"",2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0, 14, 17, 15, 12, 17, 16, 13, 19, 21, 3, 14, 6, 5, 0, 172 -NA,NA,"",2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0, 62, 58, 59, 63, 61, 57, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2019-20,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 292, 283, 282, 0," 1,144" -NA,NA,"",2019-20,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 265, 312, 0, 0, 0, 0, 0, 577 -NA,NA,"",2019-20,Mashpee - Kenneth Coombs School,01720005, 91, 96, 95, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Mashpee - Mashpee High,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 116, 113, 106, 0, 454 -NA,NA,"",2019-20,Mashpee - Mashpee Middle School,01720020, 0, 0, 0, 0, 0, 0, 0, 0, 147, 109, 0, 0, 0, 0, 0, 256 -NA,NA,"",2019-20,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 100, 120, 117, 123, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 51, 92, 98, 98, 95, 100, 95, 95, 90, 94, 87, 83, 70, 75, 0," 1,223" -NA,NA,"",2019-20,Mattapoisett - Center,01730005, 23, 52, 58, 60, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2019-20,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 62, 55, 75, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2019-20,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 100, 88, 99, 94, 85, 0, 0, 0, 0, 0, 466 -NA,NA,"",2019-20,Maynard - Green Meadow,01740010, 50, 101, 100, 112, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2019-20,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 90, 81, 94, 1, 337 -NA,NA,"",2019-20,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 204, 194, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2019-20,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 198, 201, 206, 0, 804 -NA,NA,"",2019-20,Medfield - Memorial School,01750003, 50, 195, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2019-20,Medfield - Ralph Wheelock School,01750007, 0, 0, 0, 187, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2019-20,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 193, 186, 196, 0, 0, 0, 0, 0, 575 -NA,NA,"",2019-20,Medford - Brooks School,01760130, 17, 89, 80, 94, 77, 84, 72, 0, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2019-20,Medford - Christopher Columbus,01760140, 15, 63, 68, 53, 76, 48, 54, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2019-20,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 5, 3, 0, 14 -NA,NA,"",2019-20,Medford - John J McGlynn Elementary School,01760068, 35, 79, 66, 81, 73, 77, 86, 0, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2019-20,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 163, 152, 139, 0, 0, 0, 0, 0, 454 -NA,NA,"",2019-20,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 161, 142, 164, 0, 0, 0, 0, 0, 467 -NA,NA,"",2019-20,Medford - Medford High,01760505, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, 307, 302, 299, 7," 1,315" -NA,NA,"",2019-20,Medford - Milton Fuller Roberts,01760150, 15, 82, 90, 78, 88, 95, 118, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2019-20,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 154, 151, 172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2019-20,Medway - John D Mc Govern Elementary,01770013, 40, 145, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2019-20,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162, 178, 154, 189, 0, 683 -NA,NA,"",2019-20,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 161, 186, 171, 166, 0, 0, 0, 0, 0, 684 -NA,NA,"",2019-20,Melrose - Early Childhood Center,01780003, 281, 28, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2019-20,Melrose - Herbert Clark Hoover,01780017, 0, 61, 67, 58, 45, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2019-20,Melrose - Horace Mann,01780025, 0, 48, 48, 48, 49, 44, 47, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2019-20,Melrose - Lincoln,01780020, 0, 54, 67, 68, 82, 75, 68, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2019-20,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 242, 244, 274, 5, 986 -NA,NA,"",2019-20,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 287, 273, 258, 0, 0, 0, 0, 0, 818 -NA,NA,"",2019-20,Melrose - Roosevelt,01780035, 0, 61, 68, 69, 87, 80, 67, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2019-20,Melrose - Winthrop,01780050, 0, 68, 66, 83, 68, 68, 63, 0, 0, 0, 0, 0, 0, 0, 0, 416 -NA,NA,"",2019-20,Mendon-Upton - Henry P Clough,07100179, 28, 62, 65, 73, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2019-20,Mendon-Upton - Memorial School,07100001, 28, 92, 94, 95, 79, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2019-20,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 160, 193, 205, 203, 0, 0, 0, 0, 0, 761 -NA,NA,"",2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 174, 159, 154, 3, 641 -NA,NA,"",2019-20,Methuen - Comprehensive Grammar School,01810050, 23, 111, 106, 111, 113, 126, 107, 139, 130, 106, 0, 0, 0, 0, 0," 1,072" -NA,NA,"",2019-20,Methuen - Donald P Timony Grammar,01810060, 30, 121, 138, 153, 111, 129, 151, 158, 137, 158, 0, 0, 0, 0, 0," 1,286" -NA,NA,"",2019-20,Methuen - Marsh Grammar School,01810030, 30, 113, 119, 108, 155, 119, 123, 129, 136, 141, 0, 0, 0, 0, 0," 1,173" -NA,NA,"",2019-20,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481, 530, 494, 457, 2," 1,964" -NA,NA,"",2019-20,Methuen - Tenney Grammar School,01810055, 34, 131, 143, 140, 138, 148, 143, 141, 173, 165, 0, 0, 0, 0, 0," 1,356" -NA,NA,"",2019-20,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 101, 109, 109, 102, 116, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2019-20,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 259, 261, 263, 0, 0, 0, 0, 0, 783 -NA,NA,"",2019-20,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 112, 127, 118, 108, 114, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2019-20,Middleborough - Memorial Early Childhood Center,01820011, 63, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2019-20,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 219, 182, 178, 8, 808 -NA,NA,"",2019-20,Middleton - Fuller Meadow,01840003, 0, 86, 103, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2019-20,Middleton - Howe-Manning,01840005, 75, 0, 0, 0, 84, 82, 89, 108, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2019-20,Milford - Brookside,01850065, 0, 150, 150, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2019-20,Milford - Memorial,01850010, 0, 161, 152, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2019-20,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 318, 304, 279, 11," 1,266" -NA,NA,"",2019-20,Milford - Shining Star Early Childhood Center,01850075, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2019-20,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 337, 351, 331, 0, 0, 0, 0, 0," 1,019" -NA,NA,"",2019-20,Milford - Woodland,01850090, 0, 0, 0, 0, 328, 344, 333, 0, 0, 0, 0, 0, 0, 0, 0," 1,005" -NA,NA,"",2019-20,Millbury - Elmwood Street,01860017, 69, 126, 120, 132, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 550 -NA,NA,"",2019-20,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 157, 137, 130, 95, 117, 108, 1, 745 -NA,NA,"",2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 0, 127, 144, 134, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2019-20,Millis - Clyde F Brown,01870005, 61, 80, 77, 95, 80, 84, 100, 0, 0, 0, 0, 0, 0, 0, 0, 577 -NA,NA,"",2019-20,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 70, 93, 91, 0, 333 -NA,NA,"",2019-20,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 0, 76, 90, 103, 0, 0, 0, 0, 0, 269 -NA,NA,"",2019-20,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 351, 324, 304, 0, 0, 0, 0, 0, 979 -NA,NA,"",2019-20,Milton - Collicot,01890005, 0, 96, 105, 112, 128, 104, 124, 0, 0, 0, 0, 0, 0, 0, 0, 669 -NA,NA,"",2019-20,Milton - Cunningham School,01890007, 87, 88, 89, 88, 99, 96, 91, 0, 0, 0, 0, 0, 0, 0, 0, 638 -NA,NA,"",2019-20,Milton - Glover,01890010, 0, 108, 114, 111, 97, 99, 87, 0, 0, 0, 0, 0, 0, 0, 0, 616 -NA,NA,"",2019-20,Milton - Milton High,01890505, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, 277, 272, 233, 6," 1,070" -NA,NA,"",2019-20,Milton - Tucker,01890020, 38, 79, 67, 71, 74, 64, 66, 0, 0, 0, 0, 0, 0, 0, 0, 459 -NA,NA,"",2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 135, 145, 127, 0, 598 -NA,NA,"",2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 15, 27, 30, 40, 34, 35, 31, 33, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2019-20,Mohawk Trail - Colrain Central,07170010, 18, 11, 16, 5, 14, 17, 18, 10, 0, 0, 0, 0, 0, 0, 0, 109 -NA,NA,"",2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 74, 69, 36, 52, 51, 50, 4, 336 -NA,NA,"",2019-20,Mohawk Trail - Sanderson Academy,07170020, 25, 15, 21, 27, 21, 13, 20, 13, 0, 0, 0, 0, 0, 0, 0, 155 -NA,NA,"",2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 16, 34, 34, 31, 46, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2019-20,Monomoy Regional School District - Harwich Elementary School,07120002, 53, 88, 89, 116, 100, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2019-20,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 128, 131, 117, 124, 6, 639 -NA,NA,"",2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 162, 136, 183, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2019-20,Monson - Granite Valley School,01910030, 0, 0, 72, 62, 68, 75, 75, 73, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2019-20,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 60, 70, 45, 67, 63, 55, 2, 362 -NA,NA,"",2019-20,Monson - Quarry Hill Community School,01910010, 66, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137 -NA,NA,"",2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 377, 353, 342, 0," 1,430" -NA,NA,"",2019-20,Mount Greylock - Lanesborough Elementary,07150005, 13, 28, 27, 24, 34, 22, 26, 24, 0, 0, 0, 0, 0, 0, 0, 198 -NA,NA,"",2019-20,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 91, 130, 85, 77, 84, 84, 2, 553 -NA,NA,"",2019-20,Mount Greylock - Williamstown Elementary,07150010, 16, 38, 56, 61, 58, 68, 60, 52, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 155, 156, 155, 127, 127, 128, 154, 138, 133, 95, 66, 88, 82, 0," 1,604" -NA,NA,"",2019-20,Nahant - Johnson,01960010, 36, 17, 13, 14, 21, 21, 17, 15, 0, 0, 0, 0, 0, 0, 0, 154 -NA,NA,"",2019-20,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 153, 124, 119, 0, 0, 0, 0, 0, 396 -NA,NA,"",2019-20,Nantucket - Nantucket Elementary,01970005, 59, 103, 119, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2019-20,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 134, 125, 133, 0, 533 -NA,NA,"",2019-20,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 95, 114, 138, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2019-20,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 0, 135, 122, 116, 0, 0, 0, 0, 0, 373 -NA,NA,"",2019-20,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 91, 63, 74, 5, 327 -NA,NA,"",2019-20,Narragansett - Phillipston Memorial,07200003, 0, 21, 20, 20, 18, 15, 19, 0, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2019-20,Narragansett - Templeton Elementary School,07200020, 81, 93, 90, 95, 99, 95, 101, 0, 0, 0, 0, 0, 0, 0, 0, 654 -NA,NA,"",2019-20,Nashoba - Center School,07250020, 26, 74, 87, 68, 90, 78, 109, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2019-20,Nashoba - Florence Sawyer School,07250025, 24, 58, 77, 68, 79, 94, 69, 79, 92, 71, 0, 0, 0, 0, 0, 711 -NA,NA,"",2019-20,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 99, 98, 106, 0, 0, 0, 0, 0, 303 -NA,NA,"",2019-20,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 75, 77, 91, 0, 0, 0, 0, 0, 243 -NA,NA,"",2019-20,Nashoba - Mary Rowlandson Elementary,07250010, 30, 70, 56, 80, 74, 66, 94, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2019-20,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197, 268, 235, 217, 4, 921 -NA,NA,"",2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 185, 181, 162, 0, 709 -NA,NA,"",2019-20,Natick - Bennett-Hemenway,01980005, 0, 95, 105, 113, 119, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 550 -NA,NA,"",2019-20,Natick - Brown,01980010, 0, 104, 94, 84, 106, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2019-20,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 233, 192, 167, 156, 0, 0, 0, 0, 0, 748 -NA,NA,"",2019-20,Natick - Johnson,01980031, 0, 41, 45, 55, 46, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2019-20,Natick - Lilja Elementary,01980035, 0, 88, 90, 94, 69, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2019-20,Natick - Memorial,01980043, 0, 79, 87, 77, 85, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2019-20,Natick - Natick High,01980505, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392, 387, 408, 439, 0," 1,762" -NA,NA,"",2019-20,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 214, 229, 239, 232, 0, 0, 0, 0, 0, 914 -NA,NA,"",2019-20,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 221, 240, 233, 2, 900 -NA,NA,"",2019-20,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 185, 203, 192, 0, 0, 0, 0, 0, 580 -NA,NA,"",2019-20,Needham - Broadmeadow,01990005, 0, 77, 102, 84, 95, 97, 93, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2019-20,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 499, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2019-20,Needham - John Eliot,01990020, 0, 64, 67, 75, 61, 73, 72, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2019-20,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, 453, 421, 401, 3," 1,658" -NA,NA,"",2019-20,Needham - Newman Elementary,01990050, 72, 101, 104, 120, 97, 107, 95, 0, 0, 0, 0, 0, 0, 0, 0, 696 -NA,NA,"",2019-20,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 459, 432, 0, 0, 0, 0, 0, 891 -NA,NA,"",2019-20,Needham - Sunita L. Williams Elementary,01990035, 0, 83, 80, 92, 93, 92, 78, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2019-20,Needham - William Mitchell,01990040, 0, 65, 83, 70, 88, 94, 84, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 39, 39, 42, 41, 44, 41, 65, 66, 70, 70, 64, 67, 55, 0, 0, 703 -NA,NA,"",2019-20,New Bedford - Abraham Lincoln,02010095, 0, 100, 117, 131, 121, 131, 110, 0, 0, 0, 0, 0, 0, 0, 0, 710 -NA,NA,"",2019-20,New Bedford - Alfred J Gomes,02010063, 0, 84, 89, 78, 97, 97, 86, 0, 0, 0, 0, 0, 0, 0, 0, 531 -NA,NA,"",2019-20,New Bedford - Betsey B Winslow,02010140, 0, 39, 48, 41, 47, 40, 58, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2019-20,New Bedford - Carlos Pacheco,02010105, 0, 48, 48, 50, 60, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2019-20,New Bedford - Casimir Pulaski,02010123, 98, 97, 101, 95, 96, 94, 98, 0, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2019-20,New Bedford - Charles S Ashley,02010010, 0, 37, 50, 37, 46, 50, 45, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 0, 53, 56, 50, 57, 39, 38, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2019-20,New Bedford - Ellen R Hathaway,02010075, 66, 40, 41, 42, 41, 47, 44, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2019-20,New Bedford - Elwyn G Campbell,02010020, 68, 38, 28, 34, 41, 30, 39, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2019-20,New Bedford - Hayden/McFadden,02010078, 69, 75, 111, 110, 97, 117, 85, 0, 0, 0, 0, 0, 0, 0, 0, 664 -NA,NA,"",2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 32, 69, 50, 64, 63, 57, 55, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2019-20,New Bedford - James B Congdon,02010040, 0, 41, 53, 44, 51, 47, 55, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2019-20,New Bedford - Jireh Swift,02010130, 0, 28, 19, 20, 28, 32, 41, 0, 0, 0, 0, 0, 0, 0, 0, 168 -NA,NA,"",2019-20,New Bedford - John Avery Parker,02010115, 28, 31, 42, 27, 35, 36, 24, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2019-20,New Bedford - John B Devalles,02010050, 0, 54, 56, 67, 61, 61, 56, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2019-20,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 361, 338, 310, 0, 0, 0, 0, 0," 1,009" -NA,NA,"",2019-20,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 733, 652, 532, 484, 0," 2,401" -NA,NA,"",2019-20,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 367, 412, 419, 0, 0, 0, 0, 0," 1,198" -NA,NA,"",2019-20,New Bedford - Renaissance Community Innovation School,02010124, 23, 20, 25, 22, 30, 34, 30, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2019-20,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 288, 325, 297, 0, 0, 0, 0, 0, 910 -NA,NA,"",2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 66, 106, 118, 88, 111, 141, 110, 0, 0, 0, 0, 0, 0, 0, 0, 740 -NA,NA,"",2019-20,New Bedford - Thomas R Rodman,02010125, 0, 32, 33, 35, 42, 23, 26, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2019-20,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 3, 5, 11, 9, 9, 18, 15, 12, 11, 0, 93 -NA,NA,"",2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 1, 5, 14, 29, 37, 23, 17, 0, 126 -NA,NA,"",2019-20,New Bedford - William H Taylor,02010135, 31, 46, 41, 31, 43, 38, 28, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 104, 107, 110, 92, 104, 85, 0, 0, 602 -NA,NA,"",2019-20,New Salem-Wendell - Swift River,07280015, 19, 19, 23, 14, 18, 17, 15, 20, 0, 0, 0, 0, 0, 0, 0, 145 -NA,NA,"",2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 149, 146, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 73, 153, 140, 128, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 632 -NA,NA,"",2019-20,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 182, 211, 185, 3, 797 -NA,NA,"",2019-20,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 167, 172, 199, 0, 0, 0, 0, 0, 538 -NA,NA,"",2019-20,Newton - A E Angier,02070005, 0, 65, 86, 73, 99, 82, 97, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2019-20,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 162, 176, 156, 0, 0, 0, 0, 0, 494 -NA,NA,"",2019-20,Newton - Bowen,02070015, 0, 55, 62, 68, 62, 62, 63, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2019-20,Newton - C C Burr,02070020, 0, 62, 60, 72, 46, 56, 70, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2019-20,Newton - Cabot,02070025, 0, 66, 65, 62, 60, 68, 72, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 263, 277, 238, 0, 0, 0, 0, 0, 778 -NA,NA,"",2019-20,Newton - Countryside,02070040, 0, 55, 68, 67, 72, 66, 85, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2019-20,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 330, 328, 339, 0, 0, 0, 0, 0, 997 -NA,NA,"",2019-20,Newton - Franklin,02070055, 0, 65, 61, 66, 83, 57, 81, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2019-20,Newton - Horace Mann,02070075, 0, 57, 63, 61, 71, 75, 64, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2019-20,Newton - John Ward,02070120, 0, 34, 40, 35, 45, 47, 54, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2019-20,Newton - Lincoln-Eliot,02070070, 0, 55, 68, 66, 58, 53, 62, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2019-20,Newton - Mason-Rice,02070080, 0, 58, 61, 67, 78, 91, 91, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2019-20,Newton - Memorial Spaulding,02070105, 0, 51, 63, 83, 84, 91, 93, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2019-20,Newton - Newton Early Childhood Center,02070108, 181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2019-20,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502, 538, 497, 524, 27," 2,088" -NA,NA,"",2019-20,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, 497, 500, 491, 1," 1,983" -NA,NA,"",2019-20,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 240, 202, 190, 0, 0, 0, 0, 0, 632 -NA,NA,"",2019-20,Newton - Peirce,02070100, 0, 43, 49, 47, 43, 45, 57, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2019-20,Newton - Underwood,02070115, 0, 42, 40, 36, 45, 42, 64, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2019-20,Newton - Williams,02070125, 0, 38, 40, 51, 39, 56, 37, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2019-20,Newton - Zervas,02070130, 0, 79, 76, 64, 83, 61, 71, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2019-20,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 133, 153, 116, 132, 0, 0, 0, 0, 0, 0, 0, 534 -NA,NA,"",2019-20,Norfolk - H Olive Day,02080015, 70, 133, 129, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449 -NA,NA,"",2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 152, 136, 119, 0, 551 -NA,NA,"",2019-20,North Adams - Brayton,02090035, 34, 21, 35, 33, 33, 29, 36, 34, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2019-20,North Adams - Colegrove Park Elementary,02090008, 43, 50, 34, 35, 47, 38, 33, 31, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 125, 114, 78, 66, 77, 77, 5, 542 -NA,NA,"",2019-20,North Adams - Greylock,02090015, 40, 41, 30, 30, 25, 30, 22, 32, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2019-20,North Andover - Anne Bradstreet Early Childhood Center,02110005, 125, 322, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2019-20,North Andover - Annie L Sargent School,02110018, 0, 0, 95, 94, 86, 91, 104, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2019-20,North Andover - Atkinson,02110001, 0, 0, 67, 65, 67, 64, 81, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2019-20,North Andover - Franklin,02110010, 0, 0, 64, 72, 73, 73, 84, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2019-20,North Andover - Kittredge,02110015, 0, 0, 43, 49, 47, 43, 52, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2019-20,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 360, 370, 329, 0," 1,377" -NA,NA,"",2019-20,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 376, 365, 368, 0, 0, 0, 0, 0," 1,109" -NA,NA,"",2019-20,North Andover - Thomson,02110020, 0, 0, 81, 51, 57, 73, 58, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2019-20,North Attleborough - Amvet Boulevard,02120007, 0, 53, 58, 69, 64, 69, 67, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2019-20,North Attleborough - Community,02120030, 0, 48, 44, 41, 38, 71, 51, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2019-20,North Attleborough - Falls,02120010, 0, 27, 37, 45, 40, 52, 41, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 92, 104, 88, 127, 96, 99, 0, 0, 0, 0, 0, 0, 0, 0, 606 -NA,NA,"",2019-20,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 274, 266, 305, 0," 1,106" -NA,NA,"",2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2019-20,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 338, 396, 366, 0, 0, 0, 0, 0," 1,100" -NA,NA,"",2019-20,North Attleborough - Roosevelt Avenue,02120015, 0, 59, 41, 40, 44, 47, 38, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2019-20,North Brookfield - North Brookfield Elementary,02150015, 27, 39, 39, 40, 51, 33, 40, 48, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2019-20,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 38, 60, 31, 32, 26, 41, 0, 228 -NA,NA,"",2019-20,North Middlesex - Ashby Elementary,07350010, 0, 37, 26, 35, 34, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165 -NA,NA,"",2019-20,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 114, 134, 135, 124, 0, 0, 0, 0, 0, 507 -NA,NA,"",2019-20,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 119, 126, 150, 128, 0, 0, 0, 0, 0, 523 -NA,NA,"",2019-20,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 206, 206, 217, 18, 817 -NA,NA,"",2019-20,North Middlesex - Spaulding Memorial,07350005, 0, 94, 87, 90, 88, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 88, 3, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94 -NA,NA,"",2019-20,North Middlesex - Varnum Brook,07350035, 0, 102, 108, 107, 108, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2019-20,North Reading - E Ethel Little School,02170003, 60, 60, 27, 50, 42, 55, 45, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2019-20,North Reading - J Turner Hood,02170010, 0, 54, 55, 51, 57, 52, 69, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2019-20,North Reading - L D Batchelder,02170005, 0, 82, 69, 73, 70, 81, 69, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2019-20,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 174, 190, 197, 3, 740 -NA,NA,"",2019-20,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 196, 183, 157, 0, 0, 0, 0, 0, 536 -NA,NA,"",2019-20,Northampton - Bridge Street,02100005, 34, 40, 41, 51, 41, 32, 43, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2019-20,Northampton - Jackson Street,02100020, 0, 51, 59, 54, 68, 59, 63, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2019-20,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 207, 214, 201, 0, 0, 0, 0, 0, 622 -NA,NA,"",2019-20,Northampton - Leeds,02100025, 32, 51, 52, 48, 41, 41, 60, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2019-20,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 210, 216, 206, 3, 878 -NA,NA,"",2019-20,Northampton - R. K. Finn Ryan Road,02100029, 0, 41, 41, 42, 42, 30, 41, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 116, 123, 112, 0, 496 -NA,NA,"",2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 334, 388, 340, 7," 1,390" -NA,NA,"",2019-20,Northborough - Fannie E Proctor,02130015, 0, 55, 41, 39, 40, 42, 48, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2019-20,Northborough - Lincoln Street,02130003, 0, 37, 40, 51, 43, 45, 44, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2019-20,Northborough - Marguerite E Peaslee,02130014, 0, 40, 40, 33, 52, 62, 42, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2019-20,Northborough - Marion E Zeh,02130020, 0, 40, 38, 40, 44, 44, 40, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2019-20,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 159, 184, 204, 0, 0, 0, 0, 0, 547 -NA,NA,"",2019-20,Northbridge - Northbridge Elementary,02140005, 77, 162, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2019-20,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 151, 120, 111, 0, 536 -NA,NA,"",2019-20,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 169, 189, 154, 164, 0, 0, 0, 0, 0, 676 -NA,NA,"",2019-20,Northbridge - W Edward Balmer,02140001, 0, 0, 0, 137, 143, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336, 341, 310, 288, 0," 1,275" -NA,NA,"",2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 134, 116, 117, 0, 507 -NA,NA,"",2019-20,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 170, 186, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2019-20,Norton - J C Solmonese,02180015, 109, 98, 92, 105, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2019-20,Norton - L G Nourse Elementary,02180010, 0, 67, 60, 74, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2019-20,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 168, 178, 176, 7, 702 -NA,NA,"",2019-20,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 207, 198, 193, 0, 0, 0, 0, 0, 598 -NA,NA,"",2019-20,Norwell - Grace Farrar Cole,02190005, 21, 82, 78, 79, 72, 87, 71, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2019-20,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 164, 166, 185, 0, 674 -NA,NA,"",2019-20,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 166, 184, 162, 0, 0, 0, 0, 0, 512 -NA,NA,"",2019-20,Norwell - William G Vinal,02190020, 26, 86, 74, 86, 84, 88, 90, 0, 0, 0, 0, 0, 0, 0, 0, 534 -NA,NA,"",2019-20,Norwood - Balch,02200005, 0, 0, 64, 70, 70, 55, 57, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2019-20,Norwood - Charles J Prescott,02200025, 0, 4, 48, 60, 59, 47, 43, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2019-20,Norwood - Cornelius M Callahan,02200010, 0, 0, 50, 47, 48, 39, 41, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 220, 255, 245, 0, 0, 0, 0, 0, 720 -NA,NA,"",2019-20,Norwood - F A Cleveland,02200015, 0, 0, 60, 57, 64, 81, 72, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2019-20,Norwood - George F. Willett,02200075, 122, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2019-20,Norwood - John P Oldham,02200020, 0, 0, 52, 57, 48, 51, 43, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2019-20,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 260, 231, 244, 6, 993 -NA,NA,"",2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 10, 35, 48, 31, 47, 55, 49, 52, 52, 47, 0, 0, 0, 0, 0, 426 -NA,NA,"",2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 139, 132, 135, 0, 556 -NA,NA,"",2019-20,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 201, 188, 180, 6, 749 -NA,NA,"",2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 214, 216, 0, 0, 0, 0, 0, 430 -NA,NA,"",2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 40, 40, 40, 40, 40, 40, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2019-20,Orange - Dexter Park,02230010, 0, 0, 0, 0, 69, 70, 62, 99, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2019-20,Orange - Fisher Hill,02230015, 39, 66, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2019-20,Orleans - Orleans Elementary,02240005, 0, 22, 32, 34, 38, 39, 32, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2019-20,Oxford - ACE Program,02260305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 4, 1, 8 -NA,NA,"",2019-20,Oxford - Alfred M Chaffee,02260010, 46, 102, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2019-20,Oxford - Clara Barton,02260005, 0, 0, 0, 103, 143, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2019-20,Oxford - Oxford High,02260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 98, 100, 97, 93, 7, 538 -NA,NA,"",2019-20,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 121, 118, 148, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2019-20,Palmer - Old Mill Pond,02270008, 43, 95, 100, 104, 119, 88, 93, 0, 0, 0, 0, 0, 0, 0, 0, 642 -NA,NA,"",2019-20,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 113, 122, 116, 84, 63, 77, 82, 5, 662 -NA,NA,"",2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 158, 151, 157, 0, 626 -NA,NA,"",2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 75, 64, 56, 0, 278 -NA,NA,"",2019-20,Peabody - Captain Samuel Brown,02290005, 0, 59, 57, 62, 67, 58, 53, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2019-20,Peabody - Center,02290015, 0, 94, 70, 67, 58, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2019-20,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 505, 477, 481, 0, 0, 0, 0, 0," 1,463" -NA,NA,"",2019-20,Peabody - John E Burke,02290007, 0, 37, 44, 29, 36, 55, 56, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2019-20,Peabody - John E. McCarthy,02290016, 103, 45, 44, 42, 37, 36, 43, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2019-20,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386, 361, 356, 352, 0," 1,455" -NA,NA,"",2019-20,Peabody - South Memorial,02290035, 73, 69, 56, 51, 74, 55, 69, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2019-20,Peabody - Thomas Carroll,02290010, 0, 82, 109, 111, 100, 90, 95, 0, 0, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2019-20,Peabody - West Memorial,02290045, 37, 36, 43, 32, 41, 41, 34, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2019-20,Peabody - William A Welch Sr,02290027, 30, 65, 57, 62, 54, 55, 69, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2019-20,Pelham - Pelham Elementary,02300005, 0, 13, 20, 15, 21, 17, 17, 22, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2019-20,Pembroke - Bryantville Elementary,02310003, 0, 67, 73, 71, 62, 69, 75, 70, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2019-20,Pembroke - Hobomock Elementary,02310010, 0, 52, 54, 61, 53, 72, 55, 57, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2019-20,Pembroke - North Pembroke Elementary,02310015, 75, 58, 70, 64, 65, 70, 87, 73, 0, 0, 0, 0, 0, 0, 0, 562 -NA,NA,"",2019-20,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 231, 223, 0, 0, 0, 0, 0, 454 -NA,NA,"",2019-20,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 204, 206, 191, 7, 816 -NA,NA,"",2019-20,Pentucket - Dr Frederick N Sweetsir,07450020, 35, 63, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2019-20,Pentucket - Dr John C Page School,07450015, 11, 44, 40, 42, 47, 37, 57, 46, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2019-20,Pentucket - Elmer S Bagnall,07450005, 36, 66, 57, 70, 56, 74, 73, 54, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2019-20,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 64, 67, 51, 47, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2019-20,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 204, 189, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 191, 204, 183, 0, 743 -NA,NA,"",2019-20,Petersham - Petersham Center,02340005, 0, 22, 23, 8, 20, 17, 20, 21, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2019-20,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 9, 29, 12, 0, 124 -NA,NA,"",2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 14, 31, 11, 0, 188 -NA,NA,"",2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 9, 33, 9, 0, 216 -NA,NA,"",2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 60, 63, 64, 66, 66, 67, 64, 60, 60, 61, 60, 54, 48, 0, 793 -NA,NA,"",2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0, 0, 0, 0, 0, 0, 0, 0, 66, 65, 62, 66, 56, 45, 0, 360 -NA,NA,"",2019-20,Pioneer Valley - Bernardston Elementary,07500006, 23, 18, 21, 28, 24, 22, 30, 18, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2019-20,Pioneer Valley - Northfield Elementary,07500008, 18, 17, 23, 25, 21, 24, 23, 22, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 61, 66, 52, 27, 51, 40, 1, 298 -NA,NA,"",2019-20,Pioneer Valley - Warwick Community School,07500009, 0, 0, 3, 12, 10, 6, 11, 3, 0, 0, 0, 0, 0, 0, 0, 45 -NA,NA,"",2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 44, 45, 44, 44, 44, 46, 69, 59, 40, 26, 42, 29, 8, 0, 540 -NA,NA,"",2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 69, 70, 68, 65, 61, 63, 0, 396 -NA,NA,"",2019-20,Pittsfield - Allendale,02360010, 0, 59, 54, 58, 46, 47, 53, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2019-20,Pittsfield - Crosby,02360065, 70, 44, 45, 61, 59, 49, 61, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2019-20,Pittsfield - Egremont,02360035, 0, 72, 82, 73, 72, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2019-20,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 177, 176, 172, 0, 0, 0, 0, 0, 525 -NA,NA,"",2019-20,Pittsfield - Morningside Community School,02360055, 18, 68, 54, 66, 46, 60, 56, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2019-20,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 189, 197, 178, 11, 755 -NA,NA,"",2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 15, 28, 26, 32, 33, 25, 34, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2019-20,Pittsfield - Silvio O Conte Community,02360105, 18, 47, 55, 65, 55, 37, 63, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2019-20,Pittsfield - Stearns,02360090, 0, 30, 29, 51, 38, 38, 44, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2019-20,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 225, 212, 174, 0, 830 -NA,NA,"",2019-20,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 174, 211, 218, 0, 0, 0, 0, 0, 603 -NA,NA,"",2019-20,Pittsfield - Williams,02360100, 0, 42, 40, 41, 48, 49, 56, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2019-20,Plainville - Anna Ware Jackson,02380010, 61, 85, 85, 91, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2019-20,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 0, 86, 89, 115, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2019-20,Plymouth - Cold Spring,02390005, 0, 34, 36, 37, 39, 29, 34, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2019-20,Plymouth - Federal Furnace School,02390011, 0, 54, 55, 62, 65, 55, 68, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2019-20,Plymouth - Hedge,02390010, 0, 20, 33, 32, 25, 33, 31, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2019-20,Plymouth - Indian Brook,02390012, 0, 85, 107, 95, 78, 96, 88, 0, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2019-20,Plymouth - Manomet Elementary,02390015, 0, 48, 43, 41, 53, 38, 51, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 0, 91, 89, 91, 94, 102, 104, 0, 0, 0, 0, 0, 0, 0, 0, 571 -NA,NA,"",2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 315, 365, 357, 0, 0, 0, 0, 0," 1,037" -NA,NA,"",2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2019-20,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346, 310, 295, 301, 0," 1,252" -NA,NA,"",2019-20,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260, 260, 276, 252, 0," 1,048" -NA,NA,"",2019-20,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 212, 230, 257, 0, 0, 0, 0, 0, 699 -NA,NA,"",2019-20,Plymouth - South Elementary,02390046, 0, 96, 99, 102, 109, 108, 110, 0, 0, 0, 0, 0, 0, 0, 0, 624 -NA,NA,"",2019-20,Plymouth - West Elementary,02390047, 0, 58, 46, 64, 72, 62, 46, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2019-20,Plympton - Dennett Elementary,02400010, 0, 40, 28, 36, 26, 38, 21, 31, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0, 80, 85, 90, 94, 91, 90, 95, 96, 89, 89, 74, 73, 60, 0," 1,106" -NA,NA,"",2019-20,Provincetown - Provincetown Schools,02420020, 20, 9, 11, 9, 11, 16, 13, 17, 10, 15, 0, 0, 0, 0, 0, 131 -NA,NA,"",2019-20,Quabbin - Hardwick Elementary,07530005, 28, 30, 21, 25, 19, 25, 23, 32, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2019-20,Quabbin - Hubbardston Center,07530010, 0, 45, 39, 49, 44, 40, 43, 49, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2019-20,Quabbin - New Braintree Grade,07530020, 0, 25, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46 -NA,NA,"",2019-20,Quabbin - Oakham Center,07530025, 0, 0, 0, 40, 24, 23, 32, 30, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2019-20,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 164, 149, 147, 4, 621 -NA,NA,"",2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 0, 177, 189, 0, 0, 0, 0, 0, 366 -NA,NA,"",2019-20,Quabbin - Ruggles Lane,07530030, 42, 72, 51, 51, 46, 55, 73, 64, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2019-20,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 87, 95, 60, 0, 350 -NA,NA,"",2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 81, 99, 0, 0, 0, 0, 0, 180 -NA,NA,"",2019-20,Quaboag Regional - Warren Elementary,07780005, 25, 44, 54, 57, 48, 58, 72, 59, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 20, 33, 38, 33, 35, 36, 45, 41, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2019-20,Quincy - Atherton Hough,02430040, 0, 50, 46, 37, 48, 51, 46, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2019-20,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 180, 194, 193, 0, 0, 0, 0, 0, 567 -NA,NA,"",2019-20,Quincy - Beechwood Knoll Elementary,02430020, 0, 56, 58, 63, 66, 61, 52, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2019-20,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 107, 117, 128, 0, 0, 0, 0, 0, 352 -NA,NA,"",2019-20,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 219, 201, 206, 0, 0, 0, 0, 0, 626 -NA,NA,"",2019-20,Quincy - Charles A Bernazzani Elementary,02430025, 0, 62, 62, 56, 52, 57, 47, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2019-20,Quincy - Clifford H Marshall Elementary,02430055, 0, 130, 117, 97, 110, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2019-20,Quincy - Francis W Parker,02430075, 0, 40, 65, 51, 53, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2019-20,Quincy - Lincoln-Hancock Community School,02430035, 0, 127, 102, 110, 103, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 533 -NA,NA,"",2019-20,Quincy - Merrymount,02430060, 0, 55, 70, 60, 48, 60, 56, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2019-20,Quincy - Montclair,02430065, 0, 73, 83, 69, 68, 80, 68, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2019-20,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326, 334, 312, 277, 15," 1,264" -NA,NA,"",2019-20,Quincy - Point Webster Middle,02430325, 57, 0, 0, 0, 0, 0, 113, 92, 92, 74, 0, 0, 0, 0, 0, 428 -NA,NA,"",2019-20,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 390, 401, 368, 0," 1,543" -NA,NA,"",2019-20,Quincy - Snug Harbor Community School,02430090, 98, 53, 48, 57, 50, 51, 47, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2019-20,Quincy - South West Middle School,02430320, 0, 0, 0, 0, 0, 0, 98, 105, 87, 102, 0, 0, 0, 0, 0, 392 -NA,NA,"",2019-20,Quincy - Squantum,02430095, 0, 70, 66, 63, 66, 44, 54, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2019-20,Quincy - Wollaston School,02430110, 0, 52, 58, 60, 54, 58, 62, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2019-20,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 126, 110, 120, 91, 104, 77, 0, 628 -NA,NA,"",2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 47, 46, 61, 53, 48, 49, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2019-20,Randolph - J F Kennedy Elementary,02440018, 82, 53, 63, 62, 50, 47, 63, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2019-20,Randolph - Margaret L Donovan,02440015, 0, 73, 77, 81, 58, 72, 81, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2019-20,Randolph - Martin E Young Elementary,02440040, 0, 53, 35, 42, 33, 51, 50, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2019-20,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 239, 221, 197, 0, 0, 0, 0, 0, 657 -NA,NA,"",2019-20,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 170, 158, 157, 11, 655 -NA,NA,"",2019-20,Reading - Alice M Barrows,02460002, 0, 60, 63, 68, 55, 76, 63, 0, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2019-20,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 135, 128, 161, 0, 0, 0, 0, 0, 424 -NA,NA,"",2019-20,Reading - Birch Meadow,02460005, 0, 64, 67, 58, 68, 62, 65, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2019-20,Reading - J Warren Killam,02460017, 0, 83, 70, 63, 66, 77, 56, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2019-20,Reading - Joshua Eaton,02460010, 0, 69, 75, 66, 45, 66, 83, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2019-20,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301, 294, 331, 304, 0," 1,230" -NA,NA,"",2019-20,Reading - RISE PreSchool,02460001, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2019-20,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 157, 163, 180, 0, 0, 0, 0, 0, 500 -NA,NA,"",2019-20,Reading - Wood End Elementary School,02460020, 0, 42, 55, 42, 48, 50, 67, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2019-20,Revere - A. C. Whelan Elementary School,02480003, 0, 99, 134, 138, 143, 124, 114, 0, 0, 0, 0, 0, 0, 0, 0, 752 -NA,NA,"",2019-20,Revere - Abraham Lincoln,02480025, 95, 85, 92, 89, 91, 87, 81, 0, 0, 0, 0, 0, 0, 0, 0, 620 -NA,NA,"",2019-20,Revere - Beachmont Veterans Memorial School,02480013, 50, 58, 50, 50, 46, 51, 45, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2019-20,Revere - Garfield Elementary School,02480056, 71, 110, 127, 103, 111, 105, 102, 0, 0, 0, 0, 0, 0, 0, 0, 729 -NA,NA,"",2019-20,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 200, 205, 192, 0, 0, 0, 0, 0, 597 -NA,NA,"",2019-20,Revere - Paul Revere,02480050, 0, 76, 76, 71, 85, 80, 73, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2019-20,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 553, 508, 549, 401, 8," 2,019" -NA,NA,"",2019-20,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 221, 215, 184, 0, 0, 0, 0, 0, 620 -NA,NA,"",2019-20,Revere - Seacoast School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 17, 14, 8, 0, 65 -NA,NA,"",2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 116, 120, 115, 116, 116, 115, 0, 0, 0, 0, 0, 0, 0, 0, 698 -NA,NA,"",2019-20,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 207, 211, 203, 0, 0, 0, 0, 0, 621 -NA,NA,"",2019-20,Richmond - Richmond Consolidated,02490005, 17, 18, 16, 18, 15, 16, 16, 14, 19, 22, 0, 0, 0, 0, 0, 171 -NA,NA,"",2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 88, 92, 91, 91, 85, 75, 68, 67, 0, 657 -NA,NA,"",2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 0, 34, 32, 32, 33, 32, 33, 34, 32, 26, 0, 0, 0, 0, 0, 288 -NA,NA,"",2019-20,Rochester - Rochester Memorial,02500005, 24, 55, 66, 78, 60, 86, 72, 68, 0, 0, 0, 0, 0, 0, 0, 509 -NA,NA,"",2019-20,Rockland - Jefferson Elementary School,02510060, 0, 54, 59, 52, 53, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2019-20,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 187, 194, 192, 160, 0, 0, 0, 0, 0, 733 -NA,NA,"",2019-20,Rockland - Memorial Park,02510020, 0, 59, 67, 43, 64, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2019-20,Rockland - R Stewart Esten,02510025, 0, 59, 56, 63, 65, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2019-20,Rockland - Rockland Senior High,02510505, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 135, 141, 158, 6, 656 -NA,NA,"",2019-20,Rockport - Rockport Elementary,02520005, 24, 49, 52, 56, 62, 68, 64, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2019-20,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 58, 68, 74, 0, 262 -NA,NA,"",2019-20,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 70, 65, 79, 0, 0, 0, 0, 0, 214 -NA,NA,"",2019-20,Rowe - Rowe Elementary,02530005, 10, 11, 4, 8, 13, 5, 13, 9, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 228, 251, 234, 231, 253, 161, 111, 99, 0," 1,568" -NA,NA,"",2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 0, 105, 115, 149, 129, 128, 160, 132, 131, 128, 97, 102, 104, 92, 2," 1,574" -NA,NA,"",2019-20,Salem - Bates,02580003, 0, 62, 63, 58, 70, 73, 66, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2019-20,Salem - Carlton,02580015, 0, 41, 39, 48, 42, 32, 48, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2019-20,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 232, 213, 224, 0, 0, 0, 0, 0, 669 -NA,NA,"",2019-20,Salem - Horace Mann Laboratory,02580030, 0, 62, 59, 46, 52, 42, 47, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2019-20,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8, 18, 14, 1, 49 -NA,NA,"",2019-20,Salem - Salem Early Childhood,02580001, 87, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96 -NA,NA,"",2019-20,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 193, 241, 207, 8, 886 -NA,NA,"",2019-20,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 5, 6, 0, 19 -NA,NA,"",2019-20,Salem - Saltonstall School,02580050, 0, 41, 42, 46, 45, 49, 55, 45, 43, 44, 0, 0, 0, 0, 0, 410 -NA,NA,"",2019-20,Salem - Witchcraft Heights,02580070, 0, 83, 86, 106, 99, 85, 82, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 73, 72, 72, 82, 70, 60, 66, 0, 495 -NA,NA,"",2019-20,Sandwich - Forestdale School,02610002, 62, 155, 190, 188, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 595 -NA,NA,"",2019-20,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 182, 199, 181, 203, 0, 0, 0, 0, 0, 0, 0, 765 -NA,NA,"",2019-20,Sandwich - Sandwich High,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 162, 158, 173, 0, 658 -NA,NA,"",2019-20,Sandwich - Sandwich STEM Academy,02610305, 0, 0, 0, 0, 0, 0, 0, 0, 219, 229, 0, 0, 0, 0, 0, 448 -NA,NA,"",2019-20,Saugus - Belmonte Saugus Middle,02620305, 0, 0, 0, 0, 0, 0, 0, 233, 204, 205, 0, 0, 0, 0, 0, 642 -NA,NA,"",2019-20,Saugus - Douglas Waybright,02620067, 0, 18, 39, 39, 24, 41, 28, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2019-20,Saugus - Lynnhurst,02620040, 0, 69, 42, 43, 42, 45, 49, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2019-20,Saugus - Oaklandvale,02620050, 0, 37, 42, 42, 43, 41, 51, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2019-20,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 175, 183, 161, 7, 689 -NA,NA,"",2019-20,Saugus - Veterans Memorial,02620065, 84, 54, 80, 80, 86, 80, 77, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2019-20,Savoy - Emma L Miller Elementary School,02630010, 10, 7, 5, 10, 6, 8, 12, 0, 0, 0, 0, 0, 0, 0, 0, 58 -NA,NA,"",2019-20,Scituate - Cushing Elementary,02640007, 0, 61, 61, 55, 53, 56, 53, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2019-20,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 210, 226, 226, 0, 0, 0, 0, 0, 662 -NA,NA,"",2019-20,Scituate - Hatherly Elementary,02640010, 0, 45, 47, 43, 35, 50, 48, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2019-20,Scituate - Jenkins Elementary School,02640015, 0, 53, 59, 63, 57, 51, 57, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2019-20,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 261, 251, 227, 5, 934 -NA,NA,"",2019-20,Scituate - Wampatuck Elementary,02640020, 64, 62, 63, 73, 58, 54, 60, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 144, 184, 159, 0, 0, 0, 0, 0, 487 -NA,NA,"",2019-20,Seekonk - George R Martin,02650007, 26, 89, 90, 81, 87, 77, 81, 0, 0, 0, 0, 0, 0, 0, 0, 531 -NA,NA,"",2019-20,Seekonk - Mildred Aitken School,02650015, 22, 67, 72, 80, 78, 72, 69, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2019-20,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 165, 149, 147, 0, 602 -NA,NA,"",2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0, 75, 74, 74, 75, 82, 74, 75, 70, 70, 0, 0, 0, 0, 0, 669 -NA,NA,"",2019-20,Sharon - Cottage Street,02660005, 0, 68, 65, 86, 76, 80, 106, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2019-20,Sharon - East Elementary,02660010, 0, 86, 95, 76, 87, 102, 86, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2019-20,Sharon - Heights Elementary,02660015, 0, 88, 99, 90, 95, 93, 91, 0, 0, 0, 0, 0, 0, 0, 0, 556 -NA,NA,"",2019-20,Sharon - Sharon Early Childhood Center,02660001, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47 -NA,NA,"",2019-20,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288, 303, 267, 261, 0," 1,119" -NA,NA,"",2019-20,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 297, 285, 290, 0, 0, 0, 0, 0, 872 -NA,NA,"",2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307, 334, 316, 308, 0," 1,265" -NA,NA,"",2019-20,Sherborn - Pine Hill,02690010, 27, 65, 63, 54, 73, 62, 69, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2019-20,Shrewsbury - Beal School,02710005, 0, 250, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2019-20,Shrewsbury - Calvin Coolidge,02710015, 0, 39, 85, 95, 116, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2019-20,Shrewsbury - Floral Street School,02710020, 0, 0, 121, 180, 207, 218, 0, 0, 0, 0, 0, 0, 0, 0, 0, 726 -NA,NA,"",2019-20,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 480, 514, 0, 0, 0, 0, 0, 994 -NA,NA,"",2019-20,Shrewsbury - Parker Road Preschool,02710040, 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2019-20,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 497, 504, 0, 0, 0, 0, 0, 0, 0," 1,001" -NA,NA,"",2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 467, 467, 452, 499, 0," 1,885" -NA,NA,"",2019-20,Shrewsbury - Spring Street,02710035, 0, 41, 79, 73, 79, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2019-20,Shrewsbury - Walter J Paton,02710025, 0, 29, 80, 92, 67, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2019-20,Shutesbury - Shutesbury Elementary,02720005, 17, 17, 12, 13, 19, 12, 21, 13, 0, 0, 0, 0, 0, 0, 0, 124 -NA,NA,"",2019-20,Silver Lake - Silver Lake Regional High,07600505, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 270, 280, 288, 7," 1,237" -NA,NA,"",2019-20,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 262, 242, 0, 0, 0, 0, 0, 504 -NA,NA,"",2019-20,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 67, 74, 60, 55, 52, 47, 0, 355 -NA,NA,"",2019-20,Somerset - Chace Street,02730005, 0, 44, 62, 64, 67, 57, 53, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2019-20,Somerset - North Elementary,02730008, 58, 66, 62, 64, 87, 70, 76, 0, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2019-20,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 222, 210, 218, 0, 0, 0, 0, 0, 650 -NA,NA,"",2019-20,Somerset - South,02730015, 0, 39, 41, 45, 47, 35, 52, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 259, 246, 267, 4," 1,026" -NA,NA,"",2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 18, 71, 83, 86, 77, 86, 48, 46, 65, 45, 0, 0, 0, 0, 0, 625 -NA,NA,"",2019-20,Somerville - Arthur D Healey,02740075, 17, 53, 65, 55, 48, 45, 40, 50, 55, 46, 0, 0, 0, 0, 0, 474 -NA,NA,"",2019-20,Somerville - Benjamin G Brown,02740015, 0, 48, 47, 30, 43, 43, 38, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2019-20,Somerville - Capuano Early Childhood Center,02740005, 227, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2019-20,Somerville - E Somerville Community,02740111, 0, 66, 88, 86, 76, 90, 82, 82, 78, 82, 0, 0, 0, 0, 0, 730 -NA,NA,"",2019-20,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 10, 14, 20, 1, 54 -NA,NA,"",2019-20,Somerville - John F Kennedy,02740083, 1, 48, 49, 44, 52, 36, 44, 56, 50, 67, 0, 0, 0, 0, 0, 447 -NA,NA,"",2019-20,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 1, 4, 10, 0, 0, 0, 0, 0, 15 -NA,NA,"",2019-20,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317, 319, 280, 301, 11," 1,228" -NA,NA,"",2019-20,Somerville - West Somerville Neighborhood,02740115, 18, 50, 42, 42, 35, 46, 42, 50, 42, 29, 0, 0, 0, 0, 0, 396 -NA,NA,"",2019-20,Somerville - Winter Hill Community,02740120, 24, 41, 37, 34, 31, 35, 73, 50, 54, 60, 0, 0, 0, 0, 0, 439 -NA,NA,"",2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 137, 130, 150, 144, 0, 0, 0, 0, 0, 561 -NA,NA,"",2019-20,South Hadley - Mosier,02780020, 0, 0, 0, 138, 148, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2019-20,South Hadley - Plains Elementary,02780015, 73, 126, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2019-20,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 139, 145, 137, 9, 568 -NA,NA,"",2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 220, 190, 175, 0, 799 -NA,NA,"",2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 75, 82, 80, 79, 61, 80, 81, 78, 80, 86, 71, 79, 69, 0," 1,001" -NA,NA,"",2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 167, 156, 144, 0, 638 -NA,NA,"",2019-20,Southampton - William E Norris,02750005, 43, 60, 63, 59, 75, 61, 58, 73, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2019-20,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 138, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2019-20,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 135, 133, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2019-20,Southborough - Mary E Finn School,02760008, 82, 140, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2019-20,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 128, 134, 153, 0, 0, 0, 0, 0, 415 -NA,NA,"",2019-20,Southbridge - Charlton Street,02770005, 0, 1, 1, 76, 66, 69, 60, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2019-20,Southbridge - Eastford Road,02770010, 68, 167, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2019-20,Southbridge - Southbridge Academy,02770525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 17, 4, 1, 0, 31 -NA,NA,"",2019-20,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 112, 96, 99, 2, 451 -NA,NA,"",2019-20,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 160, 153, 159, 0, 0, 0, 0, 0, 472 -NA,NA,"",2019-20,Southbridge - West Street,02770020, 0, 0, 0, 82, 91, 66, 77, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388, 367, 370, 333, 0," 1,458" -NA,NA,"",2019-20,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 39, 54, 40, 55, 49, 50, 57, 0, 344 -NA,NA,"",2019-20,Southern Berkshire - New Marlborough Central,07650018, 17, 10, 15, 5, 18, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77 -NA,NA,"",2019-20,Southern Berkshire - South Egremont,07650030, 0, 10, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11 -NA,NA,"",2019-20,Southern Berkshire - Undermountain,07650035, 34, 28, 30, 28, 37, 42, 44, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 302, 278, 250, 0," 1,145" -NA,NA,"",2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 108, 112, 127, 121, 0, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 120, 114, 99, 121, 107, 113, 2, 676 -NA,NA,"",2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 51, 92, 111, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2019-20,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 75, 63, 64, 59, 0, 261 -NA,NA,"",2019-20,Spencer-E Brookfield - East Brookfield Elementary,07670008, 80, 26, 19, 23, 23, 24, 17, 28, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2019-20,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 89, 114, 112, 123, 0, 0, 0, 0, 0, 438 -NA,NA,"",2019-20,Spencer-E Brookfield - Wire Village School,07670040, 0, 90, 75, 97, 109, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 74, 48, 40, 45, 49, 34, 45, 38, 29, 30, 0, 0, 0, 0, 0, 432 -NA,NA,"",2019-20,Springfield - Alice B Beal Elementary,02810175, 0, 38, 52, 40, 46, 40, 40, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2019-20,Springfield - Arthur T Talmadge,02810165, 0, 40, 34, 42, 39, 43, 35, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2019-20,Springfield - Balliet Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 2, 10, 18, 0, 0, 0, 0, 0, 30 -NA,NA,"",2019-20,Springfield - Brightwood,02810025, 40, 62, 59, 52, 43, 55, 46, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2019-20,Springfield - Chestnut Academy,02810365, 0, 0, 0, 0, 0, 0, 0, 108, 132, 110, 0, 0, 0, 0, 0, 350 -NA,NA,"",2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 109, 106, 98, 0, 0, 0, 0, 0, 313 -NA,NA,"",2019-20,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 54, 52, 52, 54, 49, 32, 37, 0, 330 -NA,NA,"",2019-20,Springfield - Daniel B Brunton,02810035, 20, 66, 60, 72, 67, 72, 68, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2019-20,Springfield - Early Childhood Education Center,02810001, 153, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169 -NA,NA,"",2019-20,Springfield - Edward P. Boland School,02810010, 190, 90, 88, 71, 97, 72, 89, 0, 0, 0, 0, 0, 0, 0, 0, 697 -NA,NA,"",2019-20,Springfield - Elias Brookings,02810030, 46, 49, 47, 39, 49, 53, 42, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2019-20,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 231, 246, 234, 0, 0, 0, 0, 0, 711 -NA,NA,"",2019-20,Springfield - Frank H Freedman,02810075, 0, 55, 60, 40, 44, 49, 42, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2019-20,Springfield - Frederick Harris,02810080, 64, 109, 100, 112, 112, 81, 76, 0, 0, 0, 0, 0, 0, 0, 0, 654 -NA,NA,"",2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 13, 16, 0, 32 -NA,NA,"",2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 6, 18, 5, 0, 42 -NA,NA,"",2019-20,Springfield - German Gerena Community School,02810195, 107, 100, 103, 106, 90, 96, 93, 0, 0, 0, 0, 0, 0, 0, 0, 695 -NA,NA,"",2019-20,Springfield - Glenwood,02810065, 0, 31, 49, 52, 38, 40, 51, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2019-20,Springfield - Glickman Elementary,02810068, 0, 46, 56, 47, 42, 72, 55, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2019-20,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 405, 302, 207, 181, 1," 1,096" -NA,NA,"",2019-20,Springfield - Hiram L Dorman,02810050, 0, 31, 44, 47, 47, 42, 51, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2019-20,Springfield - Homer Street,02810085, 0, 92, 65, 63, 69, 54, 64, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2019-20,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 131, 137, 128, 0, 0, 0, 0, 0, 396 -NA,NA,"",2019-20,Springfield - Indian Orchard Elementary,02810100, 98, 87, 77, 90, 87, 107, 98, 0, 0, 0, 0, 0, 0, 0, 0, 644 -NA,NA,"",2019-20,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 174, 163, 144, 0, 0, 0, 0, 0, 481 -NA,NA,"",2019-20,Springfield - John J Duggan Middle,02810320, 0, 0, 0, 0, 0, 0, 0, 168, 173, 185, 91, 71, 54, 34, 0, 776 -NA,NA,"",2019-20,Springfield - Kensington International School,02810110, 39, 36, 44, 47, 38, 47, 34, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2019-20,Springfield - Liberty,02810115, 0, 45, 53, 49, 47, 42, 37, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2019-20,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 3, 3, 0, 15 -NA,NA,"",2019-20,Springfield - Lincoln,02810120, 0, 57, 75, 73, 63, 72, 60, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2019-20,Springfield - M Marcus Kiley Middle,02810330, 0, 0, 0, 0, 0, 0, 0, 250, 245, 238, 0, 0, 0, 0, 0, 733 -NA,NA,"",2019-20,Springfield - Margaret C Ells,02810060, 187, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188 -NA,NA,"",2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 43, 49, 47, 49, 43, 53, 52, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2019-20,Springfield - Mary M Lynch,02810140, 0, 32, 44, 46, 57, 32, 36, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2019-20,Springfield - Mary M Walsh,02810155, 0, 46, 46, 39, 51, 55, 39, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2019-20,Springfield - Mary O Pottenger,02810145, 40, 72, 72, 78, 62, 71, 78, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2019-20,Springfield - Milton Bradley School,02810023, 82, 61, 74, 80, 84, 74, 68, 0, 0, 0, 0, 0, 0, 0, 0, 523 -NA,NA,"",2019-20,Springfield - Rebecca M Johnson,02810055, 126, 88, 119, 88, 109, 112, 121, 0, 0, 0, 0, 0, 0, 0, 0, 763 -NA,NA,"",2019-20,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 113, 106, 88, 0, 0, 0, 0, 0, 307 -NA,NA,"",2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 371, 334, 327, 1," 1,393" -NA,NA,"",2019-20,Springfield - Samuel Bowles,02810020, 0, 50, 61, 50, 46, 48, 67, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2019-20,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 88, 83, 68, 0, 0, 0, 0, 0, 239 -NA,NA,"",2019-20,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 641, 523, 418, 479, 2," 2,063" -NA,NA,"",2019-20,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38, 41, 39, 87, 0, 205 -NA,NA,"",2019-20,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 410, 275, 280, 265, 15," 1,245" -NA,NA,"",2019-20,Springfield - Springfield International Academy at Johnson,02810215, 0, 0, 0, 0, 9, 8, 8, 0, 0, 0, 0, 0, 0, 0, 0, 25 -NA,NA,"",2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 24, 27, 0, 0, 0, 51 -NA,NA,"",2019-20,Springfield - Springfield Public Day Elementary School,02810005, 0, 0, 2, 8, 13, 10, 19, 0, 0, 0, 0, 0, 0, 0, 0, 52 -NA,NA,"",2019-20,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 35, 21, 11, 10, 1, 78 -NA,NA,"",2019-20,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 14, 19, 14, 0, 0, 0, 0, 0, 47 -NA,NA,"",2019-20,Springfield - Springfield Vocational Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 107 -NA,NA,"",2019-20,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 91, 92, 91, 0, 0, 0, 0, 0, 274 -NA,NA,"",2019-20,Springfield - Sumner Avenue,02810160, 95, 69, 97, 70, 73, 73, 71, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 104, 98, 105, 81, 88, 92, 81, 1, 650 -NA,NA,"",2019-20,Springfield - Thomas M Balliet,02810015, 60, 45, 43, 44, 47, 48, 36, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2019-20,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 97, 70, 80, 0, 0, 0, 0, 0, 247 -NA,NA,"",2019-20,Springfield - Warner,02810180, 32, 43, 34, 32, 39, 27, 33, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2019-20,Springfield - Washington,02810185, 40, 58, 69, 66, 62, 44, 53, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2019-20,Springfield - White Street,02810190, 0, 82, 82, 77, 66, 73, 64, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2019-20,Springfield - William N. DeBerry,02810045, 0, 41, 30, 45, 49, 43, 53, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 54, 53, 55, 54, 54, 54, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2019-20,Stoneham - Colonial Park,02840005, 38, 48, 43, 47, 46, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2019-20,Stoneham - Robin Hood,02840025, 41, 66, 71, 65, 79, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2019-20,Stoneham - South,02840030, 20, 64, 68, 69, 62, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2019-20,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 172, 192, 174, 176, 0, 0, 0, 0, 0, 714 -NA,NA,"",2019-20,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 140, 179, 180, 0, 645 -NA,NA,"",2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2019-20,Stoughton - Helen Hansen Elementary,02850010, 0, 48, 41, 37, 46, 36, 41, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2019-20,Stoughton - Joseph H Gibbons,02850025, 0, 59, 62, 57, 67, 61, 64, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 53, 58, 63, 54, 71, 44, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2019-20,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 270, 292, 304, 0, 0, 0, 0, 0, 866 -NA,NA,"",2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 30, 54, 41, 47, 56, 47, 54, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2019-20,Stoughton - South Elementary,02850015, 0, 41, 35, 35, 29, 46, 48, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2019-20,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 240, 264, 257, 6," 1,022" -NA,NA,"",2019-20,Sturbridge - Burgess Elementary,02870005, 81, 107, 99, 113, 119, 115, 118, 135, 0, 0, 0, 0, 0, 0, 0, 887 -NA,NA,"",2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 222, 202, 191, 0, 832 -NA,NA,"",2019-20,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 296, 344, 305, 0, 0, 0, 0, 0, 945 -NA,NA,"",2019-20,Sudbury - General John Nixon Elementary,02880025, 0, 55, 39, 59, 46, 73, 61, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2019-20,Sudbury - Israel Loring School,02880015, 0, 78, 80, 63, 81, 84, 63, 0, 0, 0, 0, 0, 0, 0, 0, 449 -NA,NA,"",2019-20,Sudbury - Josiah Haynes,02880010, 0, 59, 57, 57, 64, 65, 73, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2019-20,Sudbury - Peter Noyes,02880030, 40, 87, 86, 85, 91, 90, 86, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2019-20,Sunderland - Sunderland Elementary,02890005, 20, 28, 28, 26, 31, 37, 18, 34, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2019-20,Sutton - Sutton Early Learning,02900003, 37, 93, 105, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2019-20,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 88, 108, 106, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2019-20,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 97, 86, 105, 2, 375 -NA,NA,"",2019-20,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 107, 122, 116, 0, 0, 0, 0, 0, 345 -NA,NA,"",2019-20,Swampscott - Clarke,02910005, 0, 43, 44, 41, 46, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2019-20,Swampscott - Hadley,02910010, 0, 65, 64, 65, 61, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2019-20,Swampscott - Stanley,02910020, 0, 54, 47, 47, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2019-20,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 193, 183, 168, 1, 703 -NA,NA,"",2019-20,Swampscott - Swampscott Middle,02910305, 59, 0, 0, 0, 0, 0, 154, 160, 188, 176, 0, 0, 0, 0, 0, 737 -NA,NA,"",2019-20,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 95, 91, 92, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2019-20,Swansea - Gardner,02920015, 0, 98, 84, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2019-20,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 131, 132, 131, 3, 527 -NA,NA,"",2019-20,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 178, 186, 200, 0, 0, 0, 0, 0, 564 -NA,NA,"",2019-20,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 72, 51, 82, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2019-20,Swansea - Mark G Hoyle Elementary,02920017, 57, 55, 67, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 293, 294, 0, 0, 0, 0, 0, 587 -NA,NA,"",2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161, 174, 183, 194, 3, 715 -NA,NA,"",2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 130, 115, 100, 0, 491 -NA,NA,"",2019-20,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 261, 260, 270, 0, 0, 0, 0, 0, 0, 791 -NA,NA,"",2019-20,Taunton - East Taunton Elementary,02930010, 0, 110, 112, 131, 128, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 605 -NA,NA,"",2019-20,Taunton - Edmund Hatch Bennett,02930007, 0, 57, 62, 80, 59, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Taunton - Edward F. Leddy Preschool,02930005, 278, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2019-20,Taunton - Elizabeth Pole,02930027, 0, 105, 107, 115, 127, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2019-20,Taunton - H H Galligan,02930057, 0, 57, 46, 54, 49, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2019-20,Taunton - Hopewell,02930035, 0, 58, 51, 49, 54, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2019-20,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 153, 156, 163, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2019-20,Taunton - Joseph C Chamberlain,02930008, 0, 96, 92, 87, 104, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2019-20,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 236, 233, 235, 0, 0, 0, 0, 0, 0, 704 -NA,NA,"",2019-20,Taunton - Mulcahey Elementary School,02930015, 34, 99, 110, 90, 92, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2019-20,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 25, 55, 0, 86 -NA,NA,"",2019-20,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 690, 519, 509, 490, 451, 10," 2,669" -NA,NA,"",2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 38, 41, 54, 49, 70, 68, 124, 181, 237, 378, 357, 309, 277, 0," 2,183" -NA,NA,"",2019-20,Tewksbury - Heath-Brook,02950010, 0, 111, 107, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2019-20,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 252, 259, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2019-20,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 259, 279, 0, 0, 0, 0, 0, 538 -NA,NA,"",2019-20,Tewksbury - L F Dewing,02950001, 173, 136, 142, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 570 -NA,NA,"",2019-20,Tewksbury - Louise Davy Trahan,02950025, 0, 0, 0, 0, 134, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2019-20,Tewksbury - North Street,02950020, 0, 0, 0, 0, 162, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2019-20,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198, 219, 213, 220, 7, 857 -NA,NA,"",2019-20,Tisbury - Tisbury Elementary,02960005, 9, 32, 23, 33, 32, 32, 24, 42, 34, 38, 0, 0, 0, 0, 0, 299 -NA,NA,"",2019-20,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 83, 92, 96, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2019-20,Topsfield - Steward Elementary,02980010, 44, 79, 81, 85, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229, 258, 233, 249, 0, 969 -NA,NA,"",2019-20,Triton - Newbury Elementary,07730020, 43, 49, 48, 52, 41, 53, 53, 54, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Triton - Pine Grove,07730025, 28, 53, 48, 59, 59, 57, 76, 55, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2019-20,Triton - Salisbury Elementary,07730015, 47, 58, 69, 63, 63, 52, 61, 70, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2019-20,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 161, 156, 171, 0, 682 -NA,NA,"",2019-20,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 183, 178, 0, 0, 0, 0, 0, 361 -NA,NA,"",2019-20,Truro - Truro Central,03000005, 21, 12, 15, 14, 15, 19, 12, 5, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 52, 116, 126, 114, 148, 122, 116, 0, 0, 0, 0, 0, 0, 0, 0, 794 -NA,NA,"",2019-20,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 122, 109, 119, 0, 450 -NA,NA,"",2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 150, 120, 116, 0, 0, 0, 0, 0, 386 -NA,NA,"",2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 135, 145, 141, 0, 0, 0, 0, 0, 421 -NA,NA,"",2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 60, 59, 72, 69, 72, 75, 73, 85, 77, 69, 0, 0, 0, 0, 0, 711 -NA,NA,"",2019-20,Up-Island Regional - Chilmark Elementary,07740010, 0, 5, 10, 10, 9, 8, 12, 0, 0, 0, 0, 0, 0, 0, 0, 54 -NA,NA,"",2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 8, 27, 37, 33, 32, 38, 42, 57, 40, 44, 0, 0, 0, 0, 0, 358 -NA,NA,"",2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 186, 177, 170, 0, 706 -NA,NA,"",2019-20,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 28, 0, 36 -NA,NA,"",2019-20,Uxbridge - Taft Early Learning Center,03040005, 83, 127, 120, 126, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 573 -NA,NA,"",2019-20,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 129, 95, 110, 103, 5, 592 -NA,NA,"",2019-20,Uxbridge - Whitin Intermediate,03040405, 0, 0, 0, 0, 0, 122, 137, 124, 134, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 110, 111, 79, 65, 0, 0, 0, 0, 0, 365 -NA,NA,"",2019-20,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 113, 127, 121, 0, 0, 0, 0, 0, 361 -NA,NA,"",2019-20,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 68, 91, 78, 95, 0, 0, 0, 0, 0, 332 -NA,NA,"",2019-20,Wachusett - Davis Hill Elementary,07750018, 0, 60, 84, 76, 90, 80, 84, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2019-20,Wachusett - Dawson,07750020, 0, 78, 94, 71, 94, 83, 90, 0, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2019-20,Wachusett - Early Childhood Center,07750001, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2019-20,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 116, 135, 108, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2019-20,Wachusett - Houghton Elementary,07750027, 0, 58, 77, 72, 61, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2019-20,Wachusett - Leroy E.Mayo,07750032, 0, 62, 79, 70, 91, 91, 89, 0, 0, 0, 0, 0, 0, 0, 0, 482 -NA,NA,"",2019-20,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 258, 286, 276, 0, 0, 0, 0, 0, 820 -NA,NA,"",2019-20,Wachusett - Naquag Elementary School,07750005, 0, 91, 107, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2019-20,Wachusett - Paxton Center,07750040, 0, 39, 37, 33, 48, 41, 60, 64, 64, 64, 0, 0, 0, 0, 0, 450 -NA,NA,"",2019-20,Wachusett - Thomas Prince,07750045, 0, 35, 26, 33, 52, 36, 52, 44, 46, 43, 0, 0, 0, 0, 0, 367 -NA,NA,"",2019-20,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509, 499, 523, 500, 14," 2,045" -NA,NA,"",2019-20,Wakefield - Dolbeare,03050005, 0, 88, 89, 95, 103, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2019-20,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 266, 264, 265, 253, 0, 0, 0, 0, 0," 1,048" -NA,NA,"",2019-20,Wakefield - Greenwood,03050020, 0, 44, 43, 44, 49, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2019-20,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 250, 252, 262, 0, 983 -NA,NA,"",2019-20,Wakefield - Walton,03050040, 0, 43, 49, 43, 46, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2019-20,Wakefield - Woodville School,03050015, 0, 86, 80, 79, 75, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2019-20,Wales - Wales Elementary,03060005, 19, 16, 13, 14, 15, 26, 17, 25, 0, 0, 0, 0, 0, 0, 0, 145 -NA,NA,"",2019-20,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 148, 126, 168, 0, 0, 0, 0, 0, 442 -NA,NA,"",2019-20,Walpole - Boyden,03070010, 0, 55, 58, 64, 59, 55, 52, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 76 -NA,NA,"",2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 146, 145, 141, 0, 0, 0, 0, 0, 432 -NA,NA,"",2019-20,Walpole - Elm Street School,03070005, 0, 56, 71, 68, 76, 79, 69, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2019-20,Walpole - Fisher,03070015, 0, 70, 75, 74, 65, 80, 78, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2019-20,Walpole - Old Post Road,03070018, 0, 85, 75, 66, 83, 61, 77, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2019-20,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 284, 269, 273, 6," 1,078" -NA,NA,"",2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 0, 72, 84, 75, 82, 77, 74, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2019-20,Waltham - Henry Whittemore Elementary School,03080065, 0, 61, 68, 71, 81, 78, 66, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2019-20,Waltham - James Fitzgerald Elementary School,03080060, 0, 60, 73, 75, 62, 65, 67, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2019-20,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 184, 168, 185, 0, 0, 0, 0, 0, 537 -NA,NA,"",2019-20,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 230, 252, 231, 0, 0, 0, 0, 0, 713 -NA,NA,"",2019-20,Waltham - Northeast Elementary School,03080040, 73, 86, 73, 91, 70, 83, 89, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 0, 66, 64, 62, 57, 81, 69, 0, 0, 0, 0, 0, 0, 0, 0, 399 -NA,NA,"",2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 0, 37, 38, 35, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146 -NA,NA,"",2019-20,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434, 407, 408, 404, 1," 1,654" -NA,NA,"",2019-20,Waltham - William F. Stanley Elementary School,03080005, 75, 56, 54, 57, 71, 66, 54, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2019-20,Ware - Stanley M Koziol Elementary School,03090020, 58, 86, 85, 72, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2019-20,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 113, 107, 69, 61, 69, 42, 7, 468 -NA,NA,"",2019-20,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 87, 100, 101, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2019-20,Wareham - John William Decas,03100003, 80, 198, 161, 191, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2019-20,Wareham - Minot Forest,03100017, 0, 0, 0, 0, 150, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 15, 17, 0, 44 -NA,NA,"",2019-20,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 176, 190, 157, 0, 0, 0, 0, 0, 0, 523 -NA,NA,"",2019-20,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187, 146, 101, 79, 92, 8, 613 -NA,NA,"",2019-20,Watertown - Cunniff,03140015, 14, 42, 56, 59, 42, 41, 55, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2019-20,Watertown - Hosmer,03140020, 118, 97, 107, 100, 98, 77, 70, 0, 0, 0, 0, 0, 0, 0, 0, 667 -NA,NA,"",2019-20,Watertown - James Russell Lowell,03140025, 14, 82, 79, 74, 66, 55, 61, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2019-20,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 163, 184, 154, 3, 677 -NA,NA,"",2019-20,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 193, 205, 181, 0, 0, 0, 0, 0, 579 -NA,NA,"",2019-20,Wayland - Claypit Hill School,03150005, 0, 80, 62, 104, 98, 84, 78, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2019-20,Wayland - Happy Hollow School,03150015, 0, 60, 56, 69, 66, 63, 69, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2019-20,Wayland - Loker School,03150020, 0, 62, 60, 65, 47, 47, 43, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2019-20,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 198, 230, 206, 0, 836 -NA,NA,"",2019-20,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 206, 241, 211, 0, 0, 0, 0, 0, 658 -NA,NA,"",2019-20,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 114, 102, 102, 6, 432 -NA,NA,"",2019-20,Webster - Park Avenue Elementary,03160015, 40, 157, 154, 147, 165, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 818 -NA,NA,"",2019-20,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 155, 149, 161, 126, 0, 0, 0, 0, 0, 591 -NA,NA,"",2019-20,Wellesley - Ernest F Upham,03170050, 0, 34, 28, 45, 41, 32, 45, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2019-20,Wellesley - Hunnewell,03170025, 0, 41, 43, 42, 37, 44, 47, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2019-20,Wellesley - John D Hardy,03170020, 0, 39, 40, 44, 38, 51, 44, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2019-20,Wellesley - Joseph E Fiske,03170015, 0, 50, 50, 46, 55, 41, 53, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2019-20,Wellesley - Katharine Lee Bates,03170005, 0, 51, 54, 57, 61, 62, 50, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99 -NA,NA,"",2019-20,Wellesley - Schofield,03170045, 0, 62, 60, 66, 58, 61, 67, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2019-20,Wellesley - Sprague Elementary School,03170048, 0, 50, 56, 66, 69, 54, 60, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2019-20,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 408, 382, 375, 0, 0, 0, 0, 0," 1,165" -NA,NA,"",2019-20,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 350, 393, 380, 5," 1,504" -NA,NA,"",2019-20,Wellfleet - Wellfleet Elementary,03180005, 0, 19, 18, 15, 19, 16, 19, 0, 0, 0, 0, 0, 0, 0, 0, 106 -NA,NA,"",2019-20,West Boylston - Major Edwards Elementary,03220005, 32, 62, 67, 59, 65, 63, 60, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 69, 76, 73, 68, 87, 72, 56, 0, 501 -NA,NA,"",2019-20,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 92, 87, 108, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2019-20,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 112, 90, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2019-20,West Bridgewater - Spring Street School,03230005, 63, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 107, 107, 105, 103, 103, 106, 0, 631 -NA,NA,"",2019-20,West Springfield - Cowing Early Childhood,03320001, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124 -NA,NA,"",2019-20,West Springfield - John Ashley,03320005, 0, 233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2019-20,West Springfield - John R Fausey,03320010, 0, 0, 73, 76, 80, 97, 91, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2019-20,West Springfield - Memorial,03320025, 0, 0, 41, 31, 47, 46, 48, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2019-20,West Springfield - Mittineague,03320030, 0, 0, 38, 35, 39, 35, 35, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2019-20,West Springfield - Philip G Coburn,03320007, 0, 46, 87, 96, 114, 81, 95, 0, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2019-20,West Springfield - Tatham,03320040, 0, 3, 57, 48, 49, 52, 53, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2019-20,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336, 303, 282, 296, 15," 1,232" -NA,NA,"",2019-20,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 314, 303, 291, 0, 0, 0, 0, 0, 908 -NA,NA,"",2019-20,Westborough - Annie E Fales,03210010, 0, 73, 101, 75, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2019-20,Westborough - Elsie A Hastings Elementary,03210025, 128, 79, 94, 97, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503 -NA,NA,"",2019-20,Westborough - J Harding Armstrong,03210005, 0, 101, 86, 122, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2019-20,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 284, 291, 307, 0, 0, 0, 0, 0, 0, 0, 882 -NA,NA,"",2019-20,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 330, 316, 0, 0, 0, 0, 0, 646 -NA,NA,"",2019-20,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 302, 318, 261, 0," 1,147" -NA,NA,"",2019-20,Westfield - Abner Gibbs,03250020, 0, 38, 39, 48, 43, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2019-20,Westfield - Franklin Ave,03250015, 0, 48, 40, 36, 38, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2019-20,Westfield - Highland,03250025, 0, 86, 85, 59, 60, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2019-20,Westfield - Munger Hill,03250033, 0, 61, 73, 72, 85, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2019-20,Westfield - Paper Mill,03250036, 0, 72, 73, 54, 60, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2019-20,Westfield - Southampton Road,03250040, 0, 66, 71, 56, 68, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2019-20,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260, 298, 293, 312, 21," 1,184" -NA,NA,"",2019-20,Westfield - Westfield Intermediate School,03250075, 0, 0, 0, 0, 0, 0, 346, 398, 0, 0, 0, 0, 0, 0, 0, 744 -NA,NA,"",2019-20,Westfield - Westfield Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 0, 383, 410, 0, 0, 0, 0, 0, 793 -NA,NA,"",2019-20,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 147, 142, 124, 0, 568 -NA,NA,"",2019-20,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 100, 136, 134, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2019-20,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 167, 184, 186, 0, 0, 0, 0, 0, 537 -NA,NA,"",2019-20,Westford - Col John Robinson,03260025, 0, 79, 92, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2019-20,Westford - Day Elementary,03260007, 0, 0, 0, 0, 92, 120, 133, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 115, 117, 122, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2019-20,Westford - Millennium Elementary,03260013, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70 -NA,NA,"",2019-20,Westford - Nabnasset,03260015, 0, 99, 107, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2019-20,Westford - Rita E. Miller Elementary School,03260055, 44, 95, 106, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2019-20,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 191, 202, 209, 0, 0, 0, 0, 0, 602 -NA,NA,"",2019-20,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431, 392, 443, 424, 1," 1,691" -NA,NA,"",2019-20,Westhampton - Westhampton Elementary School,03270005, 9, 13, 15, 10, 20, 17, 20, 16, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2019-20,Weston - Country,03300010, 21, 72, 80, 61, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2019-20,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 155, 152, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2019-20,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 166, 168, 170, 0, 663 -NA,NA,"",2019-20,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 149, 180, 158, 0, 0, 0, 0, 0, 487 -NA,NA,"",2019-20,Weston - Woodland,03300015, 21, 56, 60, 64, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2019-20,Westport - Alice A Macomber,03310015, 52, 105, 106, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2019-20,Westport - Westport Elementary,03310030, 0, 0, 0, 0, 112, 124, 134, 113, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2019-20,Westport - Westport Junior/Senior High School,03310515, 0, 0, 0, 0, 0, 0, 0, 0, 123, 145, 83, 78, 87, 48, 0, 564 -NA,NA,"",2019-20,Westwood - Deerfield School,03350010, 0, 27, 26, 24, 33, 41, 43, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2019-20,Westwood - Downey,03350012, 2, 43, 60, 49, 44, 46, 42, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2019-20,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 223, 228, 247, 0, 0, 0, 0, 0, 698 -NA,NA,"",2019-20,Westwood - Martha Jones,03350017, 0, 31, 39, 55, 45, 51, 48, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2019-20,Westwood - Paul Hanlon,03350015, 0, 28, 31, 46, 32, 34, 38, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2019-20,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 255, 247, 236, 0, 994 -NA,NA,"",2019-20,Westwood - Westwood Integrated Preschool,03350050, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40 -NA,NA,"",2019-20,Westwood - William E Sheehan,03350025, 0, 41, 57, 41, 48, 56, 67, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2019-20,Weymouth - Abigail Adams Middle School,03360310, 0, 0, 0, 0, 0, 0, 422, 463, 3, 1, 0, 0, 0, 0, 0, 889 -NA,NA,"",2019-20,Weymouth - Academy Avenue,03360005, 0, 57, 60, 64, 74, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2019-20,Weymouth - Frederick C Murphy,03360050, 0, 29, 40, 42, 40, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2019-20,Weymouth - Johnson Early Childhood Center,03360003, 199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2019-20,Weymouth - Lawrence W Pingree,03360065, 0, 59, 33, 34, 35, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0, 0, 0, 0, 0, 0, 0, 1, 441, 449, 0, 0, 0, 0, 0, 891 -NA,NA,"",2019-20,Weymouth - Ralph Talbot,03360085, 0, 57, 42, 45, 47, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2019-20,Weymouth - Thomas V Nash,03360060, 0, 21, 26, 34, 32, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154 -NA,NA,"",2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 42, 50, 56, 69, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2019-20,Weymouth - Wessagusset,03360110, 0, 41, 49, 58, 53, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2019-20,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 464, 459, 429, 464, 14," 1,830" -NA,NA,"",2019-20,Weymouth - William Seach,03360080, 0, 54, 64, 63, 68, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2019-20,Whately - Whately Elementary,03370005, 19, 16, 15, 14, 19, 12, 15, 17, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2019-20,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 113, 108, 118, 127, 0, 0, 0, 0, 0, 466 -NA,NA,"",2019-20,Whitman-Hanson - Indian Head,07800035, 0, 92, 98, 102, 104, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2019-20,Whitman-Hanson - John H Duval,07800030, 0, 67, 73, 77, 75, 73, 81, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2019-20,Whitman-Hanson - Louise A Conley,07800010, 0, 79, 77, 88, 85, 92, 82, 0, 0, 0, 0, 0, 0, 0, 0, 503 -NA,NA,"",2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109 -NA,NA,"",2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 290, 291, 290, 5," 1,158" -NA,NA,"",2019-20,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 197, 205, 177, 0, 0, 0, 0, 0, 579 -NA,NA,"",2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 312, 273, 317, 0," 1,254" -NA,NA,"",2019-20,Williamsburg - Anne T. Dunphy School,03400020, 7, 19, 19, 16, 16, 24, 19, 17, 0, 0, 0, 0, 0, 0, 0, 137 -NA,NA,"",2019-20,Wilmington - Boutwell,03420005, 37, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2019-20,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 146, 100, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2019-20,Wilmington - Shawsheen Elementary,03420025, 0, 0, 111, 118, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2019-20,Wilmington - West Intermediate,03420080, 0, 0, 0, 0, 0, 125, 110, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2019-20,Wilmington - Wildwood,03420015, 40, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2019-20,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 203, 197, 213, 0, 808 -NA,NA,"",2019-20,Wilmington - Wilmington Middle School,03420330, 0, 0, 0, 0, 0, 0, 0, 290, 262, 266, 0, 0, 0, 0, 0, 818 -NA,NA,"",2019-20,Wilmington - Woburn Street,03420020, 0, 0, 121, 148, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2019-20,Winchendon - Memorial,03430040, 0, 95, 100, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2019-20,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 11, 11, 0, 34 -NA,NA,"",2019-20,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70, 67, 55, 69, 0, 261 -NA,NA,"",2019-20,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 82, 101, 82, 0, 0, 0, 0, 0, 265 -NA,NA,"",2019-20,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 101, 90, 85, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2019-20,Winchendon - Winchendon PreSchool Program,03430010, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85 -NA,NA,"",2019-20,Winchester - Ambrose Elementary,03440045, 0, 55, 64, 54, 62, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2019-20,Winchester - Lincoln Elementary,03440005, 0, 55, 68, 63, 87, 68, 79, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2019-20,Winchester - Lynch Elementary,03440020, 53, 77, 88, 90, 79, 77, 60, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2019-20,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 404, 349, 366, 0, 0, 0, 0, 0," 1,119" -NA,NA,"",2019-20,Winchester - Muraco Elementary,03440040, 0, 79, 59, 60, 70, 63, 60, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2019-20,Winchester - Vinson-Owen Elementary,03440025, 15, 67, 64, 63, 59, 77, 77, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2019-20,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 344, 367, 345, 0," 1,418" -NA,NA,"",2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 144, 133, 136, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 36, 162, 156, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2019-20,Winthrop - Winthrop High School,03460505, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 147, 160, 125, 2, 586 -NA,NA,"",2019-20,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 164, 155, 161, 0, 0, 0, 0, 0, 480 -NA,NA,"",2019-20,Woburn - Clyde Reeves,03470040, 41, 55, 70, 48, 63, 50, 59, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2019-20,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 191, 205, 171, 0, 0, 0, 0, 0, 567 -NA,NA,"",2019-20,Woburn - Goodyear Elementary School,03470005, 0, 51, 58, 40, 50, 53, 59, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 0, 53, 58, 65, 61, 72, 72, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2019-20,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 156, 170, 147, 0, 0, 0, 0, 0, 473 -NA,NA,"",2019-20,Woburn - Linscott-Rumford,03470025, 0, 26, 35, 35, 35, 25, 26, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2019-20,Woburn - Malcolm White,03470055, 0, 51, 49, 59, 45, 53, 55, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2019-20,Woburn - Mary D Altavesta,03470065, 0, 40, 45, 34, 39, 39, 42, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2019-20,Woburn - Shamrock,03470043, 115, 54, 37, 38, 35, 39, 33, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2019-20,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 354, 312, 300, 0," 1,249" -NA,NA,"",2019-20,Worcester - Belmont Street Community,03480020, 65, 98, 100, 80, 68, 80, 77, 53, 0, 0, 0, 0, 0, 0, 0, 621 -NA,NA,"",2019-20,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 361, 359, 0, 0, 0, 0, 0, 720 -NA,NA,"",2019-20,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 264, 247, 250, 11," 1,111" -NA,NA,"",2019-20,Worcester - Burncoat Street,03480035, 0, 37, 28, 39, 45, 50, 40, 43, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2019-20,Worcester - Canterbury,03480045, 33, 39, 40, 41, 47, 58, 52, 49, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2019-20,Worcester - Chandler Elementary Community,03480050, 0, 75, 67, 58, 72, 77, 80, 64, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2019-20,Worcester - Chandler Magnet,03480052, 13, 72, 77, 69, 53, 76, 79, 74, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2019-20,Worcester - City View,03480053, 28, 56, 56, 76, 65, 72, 70, 54, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2019-20,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 109, 102, 95, 97, 74, 104, 0, 581 -NA,NA,"",2019-20,Worcester - Clark St Community,03480055, 41, 42, 30, 37, 38, 31, 27, 19, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2019-20,Worcester - Columbus Park,03480060, 9, 55, 55, 71, 59, 46, 61, 71, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2019-20,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374, 365, 367, 379, 14," 1,499" -NA,NA,"",2019-20,Worcester - Elm Park Community,03480095, 0, 68, 68, 57, 52, 68, 59, 54, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2019-20,Worcester - Flagg Street,03480090, 0, 59, 57, 49, 47, 66, 55, 52, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2019-20,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 461, 477, 0, 0, 0, 0, 0, 938 -NA,NA,"",2019-20,Worcester - Francis J McGrath Elementary,03480177, 0, 37, 37, 36, 29, 34, 37, 27, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2019-20,Worcester - Gates Lane,03480110, 61, 85, 83, 71, 64, 66, 55, 76, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2019-20,Worcester - Goddard School/Science Technical,03480100, 24, 58, 49, 41, 49, 53, 42, 58, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2019-20,Worcester - Grafton Street,03480115, 0, 54, 53, 43, 45, 49, 61, 64, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2019-20,Worcester - Head Start,03480002, 393, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2019-20,Worcester - Heard Street,03480136, 0, 33, 37, 45, 39, 38, 38, 33, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2019-20,Worcester - Jacob Hiatt Magnet,03480140, 38, 69, 60, 56, 54, 48, 49, 38, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2019-20,Worcester - Lake View,03480145, 0, 53, 49, 45, 44, 41, 45, 49, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2019-20,Worcester - Lincoln Street,03480160, 0, 42, 44, 42, 23, 39, 22, 17, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2019-20,Worcester - May Street,03480175, 0, 42, 41, 39, 48, 38, 52, 53, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2019-20,Worcester - Midland Street,03480185, 0, 40, 37, 30, 25, 23, 39, 28, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2019-20,Worcester - Nelson Place,03480200, 41, 79, 94, 77, 73, 55, 87, 65, 0, 0, 0, 0, 0, 0, 0, 571 -NA,NA,"",2019-20,Worcester - Norrback Avenue,03480202, 51, 78, 92, 72, 57, 68, 73, 72, 0, 0, 0, 0, 0, 0, 0, 563 -NA,NA,"",2019-20,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 336, 282, 263, 20," 1,253" -NA,NA,"",2019-20,Worcester - Quinsigamond,03480210, 27, 112, 102, 108, 106, 81, 97, 111, 0, 0, 0, 0, 0, 0, 0, 744 -NA,NA,"",2019-20,Worcester - Rice Square,03480215, 0, 92, 62, 76, 61, 69, 57, 60, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2019-20,Worcester - Roosevelt,03480220, 67, 98, 100, 82, 88, 79, 93, 90, 0, 0, 0, 0, 0, 0, 0, 697 -NA,NA,"",2019-20,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386, 332, 306, 336, 19," 1,379" -NA,NA,"",2019-20,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 50, 430, 432, 0, 0, 0, 0, 0, 912 -NA,NA,"",2019-20,Worcester - Tatnuck,03480230, 27, 68, 67, 45, 60, 49, 51, 58, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2019-20,Worcester - Thorndyke Road,03480235, 0, 45, 44, 61, 58, 50, 51, 45, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2019-20,Worcester - Union Hill School,03480240, 0, 52, 46, 59, 64, 49, 58, 57, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2019-20,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 45, 44, 39, 37, 40, 40, 0, 245 -NA,NA,"",2019-20,Worcester - Vernon Hill School,03480280, 52, 72, 82, 62, 72, 54, 64, 74, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2019-20,Worcester - Wawecus Road School,03480026, 0, 27, 13, 15, 23, 21, 27, 28, 0, 0, 0, 0, 0, 0, 0, 154 -NA,NA,"",2019-20,Worcester - West Tatnuck,03480260, 46, 50, 42, 54, 41, 33, 43, 43, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2019-20,Worcester - Woodland Academy,03480030, 0, 82, 86, 76, 88, 83, 89, 97, 0, 0, 0, 0, 0, 0, 0, 601 -NA,NA,"",2019-20,Worcester - Worcester Arts Magnet School,03480225, 28, 56, 58, 56, 48, 59, 52, 53, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2019-20,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 0, 353, 375, 0, 0, 0, 0, 0, 728 -NA,NA,"",2019-20,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393, 377, 359, 337, 0," 1,466" -NA,NA,"",2019-20,Worthington - R. H. Conwell,03490010, 15, 10, 10, 14, 9, 9, 10, 11, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2019-20,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 115, 133, 152, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2019-20,Wrentham - Delaney,03500003, 87, 109, 103, 130, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 117, 114, 116, 118, 116, 118, 120, 114, 120, 109, 96, 87, 83, 0," 1,428" -NA,NA,"",2018-19,Abington - Abington Early Education Program,00010001, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90 -NA,NA,"",2018-19,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 149, 125, 107, 5, 545 -NA,NA,"",2018-19,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 159, 154, 187, 172, 0, 0, 0, 0, 0, 672 -NA,NA,"",2018-19,Abington - Beaver Brook Elementary,00010020, 0, 153, 142, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2018-19,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 129, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 72, 80, 75, 73, 71, 70, 47, 38, 0, 526 -NA,NA,"",2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460, 429, 445, 500, 3," 1,837" -NA,NA,"",2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 70, 86, 61, 68, 59, 52, 68, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 41, 42, 43, 69, 69, 69, 72, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2018-19,Acton-Boxborough - Luther Conant School,06000030, 0, 59, 64, 62, 46, 50, 74, 94, 0, 0, 0, 0, 0, 0, 0, 449 -NA,NA,"",2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 62, 75, 66, 70, 84, 89, 74, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2018-19,Acton-Boxborough - Merriam School,06000010, 0, 59, 62, 62, 70, 71, 96, 72, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 39, 42, 61, 70, 67, 49, 48, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 435, 488, 0, 0, 0, 0, 0, 923 -NA,NA,"",2018-19,Acushnet - Acushnet Elementary School,00030025, 46, 121, 105, 80, 109, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2018-19,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 102, 105, 121, 111, 0, 0, 0, 0, 0, 439 -NA,NA,"",2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 62, 79, 78, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 81, 50, 74, 87, 3, 384 -NA,NA,"",2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 106, 108, 97, 91, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 106, 144, 158, 156, 154, 137, 119, 0, 974 -NA,NA,"",2018-19,Agawam - Agawam Early Childhood Center,00050003, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2018-19,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265, 292, 270, 277, 9," 1,113" -NA,NA,"",2018-19,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 291, 300, 0, 0, 0, 0, 0, 591 -NA,NA,"",2018-19,Agawam - Benjamin J Phelps,00050020, 0, 58, 70, 85, 60, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2018-19,Agawam - Clifford M Granger,00050010, 0, 39, 39, 67, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2018-19,Agawam - James Clark School,00050030, 0, 66, 60, 63, 68, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2018-19,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 316, 275, 3, 0, 0, 0, 0, 0, 0, 594 -NA,NA,"",2018-19,Agawam - Robinson Park,00050025, 0, 77, 71, 78, 78, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 53, 52, 49, 50, 50, 50, 49, 48, 40, 0, 0, 0, 0, 0, 441 -NA,NA,"",2018-19,Amesbury - Amesbury Elementary,00070005, 28, 53, 71, 64, 70, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2018-19,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 145, 143, 138, 5, 565 -NA,NA,"",2018-19,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 10, 14, 15, 0, 51 -NA,NA,"",2018-19,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 162, 151, 166, 165, 0, 0, 0, 0, 0, 644 -NA,NA,"",2018-19,Amesbury - Charles C Cashman Elementary,00070010, 26, 63, 75, 74, 97, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2018-19,Amherst - Crocker Farm Elementary,00080009, 48, 63, 40, 43, 53, 53, 62, 32, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2018-19,Amherst - Fort River Elementary,00080020, 0, 38, 33, 47, 41, 42, 47, 67, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2018-19,Amherst - Wildwood Elementary,00080050, 0, 59, 60, 53, 61, 56, 66, 67, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2018-19,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, 231, 230, 225, 7, 924 -NA,NA,"",2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 223, 193, 0, 0, 0, 0, 0, 416 -NA,NA,"",2018-19,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426, 460, 430, 445, 29," 1,790" -NA,NA,"",2018-19,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 171, 174, 177, 0, 0, 0, 0, 0, 522 -NA,NA,"",2018-19,Andover - Bancroft Elementary,00090003, 0, 86, 96, 88, 103, 106, 110, 0, 0, 0, 0, 0, 0, 0, 0, 589 -NA,NA,"",2018-19,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 183, 187, 201, 0, 0, 0, 0, 0, 571 -NA,NA,"",2018-19,Andover - Henry C Sanborn Elementary,00090010, 0, 58, 52, 62, 70, 75, 67, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2018-19,Andover - High Plain Elementary,00090004, 0, 93, 73, 83, 89, 93, 111, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2018-19,Andover - Shawsheen School,00090005, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66 -NA,NA,"",2018-19,Andover - South Elementary,00090020, 0, 75, 74, 82, 95, 68, 87, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2018-19,Andover - West Elementary,00090025, 0, 94, 87, 103, 98, 115, 104, 0, 0, 0, 0, 0, 0, 0, 0, 601 -NA,NA,"",2018-19,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 133, 149, 129, 0, 0, 0, 0, 0, 411 -NA,NA,"",2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 110, 106, 103, 114, 33, 0, 0, 0, 466 -NA,NA,"",2018-19,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 344, 328, 344, 0," 1,380" -NA,NA,"",2018-19,Arlington - Brackett,00100010, 0, 101, 80, 94, 64, 97, 81, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,Arlington - Cyrus E Dallin,00100025, 0, 83, 72, 90, 71, 80, 88, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2018-19,Arlington - Gibbs School,00100305, 0, 0, 0, 0, 0, 0, 0, 463, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2018-19,Arlington - Hardy,00100030, 0, 80, 79, 86, 74, 69, 63, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2018-19,Arlington - John A Bishop,00100005, 0, 92, 67, 75, 75, 72, 71, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2018-19,Arlington - M Norcross Stratton,00100055, 0, 81, 76, 71, 73, 63, 62, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2018-19,Arlington - Menotomy Preschool,00100038, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96 -NA,NA,"",2018-19,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 0, 441, 414, 0, 0, 0, 0, 0, 855 -NA,NA,"",2018-19,Arlington - Peirce,00100045, 0, 61, 68, 42, 45, 43, 49, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2018-19,Arlington - Thompson,00100050, 0, 89, 78, 93, 88, 84, 75, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 61, 73, 72, 73, 69, 92, 90, 0, 0, 0, 0, 0, 0, 0, 0, 530 -NA,NA,"",2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 0, 101, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 174, 179, 159, 18, 675 -NA,NA,"",2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 189, 186, 200, 0, 0, 0, 0, 0, 575 -NA,NA,"",2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 90, 102, 92, 107, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2018-19,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 210, 214, 184, 0, 832 -NA,NA,"",2018-19,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 215, 208, 185, 0, 0, 0, 0, 0, 608 -NA,NA,"",2018-19,Ashland - David Mindess,00140015, 0, 0, 0, 0, 191, 219, 218, 0, 0, 0, 0, 0, 0, 0, 0, 628 -NA,NA,"",2018-19,Ashland - Henry E Warren Elementary,00140010, 0, 227, 204, 230, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 661 -NA,NA,"",2018-19,Ashland - William Pittaway Elementary,00140005, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 288, 273, 273, 0," 1,134" -NA,NA,"",2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 63, 99, 115, 105, 94, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2018-19,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 90, 85, 75, 4, 339 -NA,NA,"",2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 101, 98, 116, 94, 0, 0, 0, 0, 0, 409 -NA,NA,"",2018-19,Athol-Royalston - Royalston Community School,06150050, 0, 20, 20, 17, 24, 19, 18, 20, 0, 0, 0, 0, 0, 0, 0, 138 -NA,NA,"",2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 110, 110, 110, 111, 110, 110, 110, 110, 109, 82, 85, 72, 65, 0," 1,294" -NA,NA,"",2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 87, 68, 72, 90, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2018-19,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 18, 33, 0, 58 -NA,NA,"",2018-19,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479, 452, 415, 386, 14," 1,746" -NA,NA,"",2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 137, 165, 149, 143, 0, 0, 0, 0, 0, 594 -NA,NA,"",2018-19,Attleboro - Early Learning Center,00160008, 179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179 -NA,NA,"",2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 0, 89, 82, 95, 106, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2018-19,Attleboro - Hyman Fine Elementary School,00160040, 0, 91, 90, 91, 105, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2018-19,Attleboro - Peter Thacher Elementary School,00160050, 0, 79, 92, 94, 81, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2018-19,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 168, 169, 178, 136, 0, 0, 0, 0, 0, 651 -NA,NA,"",2018-19,Attleboro - Thomas Willett Elementary School,00160035, 0, 73, 71, 71, 88, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2018-19,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 154, 136, 149, 139, 0, 0, 0, 0, 0, 578 -NA,NA,"",2018-19,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 196, 206, 221, 0, 0, 0, 0, 0, 623 -NA,NA,"",2018-19,Auburn - Auburn Senior High,00170505, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 184, 180, 189, 2, 792 -NA,NA,"",2018-19,Auburn - Bryn Mawr,00170010, 0, 90, 96, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2018-19,Auburn - Pakachoag School,00170025, 40, 97, 75, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2018-19,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 199, 204, 205, 0, 0, 0, 0, 0, 0, 0, 0, 608 -NA,NA,"",2018-19,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 0, 57, 66, 56, 42, 47, 51, 3, 322 -NA,NA,"",2018-19,Avon - Ralph D Butler,00180010, 17, 42, 51, 53, 61, 58, 60, 64, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 95, 104, 103, 0, 389 -NA,NA,"",2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 150, 125, 141, 0, 0, 0, 0, 0, 416 -NA,NA,"",2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 40, 50, 54, 61, 57, 61, 54, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2018-19,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 28, 92, 85, 73, 79, 83, 90, 0, 0, 0, 0, 0, 0, 0, 0, 530 -NA,NA,"",2018-19,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362, 341, 362, 361, 362, 14," 1,802" -NA,NA,"",2018-19,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 399, 382, 0, 0, 0, 0, 0, 0, 781 -NA,NA,"",2018-19,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 414, 396, 0, 0, 0, 0, 0, 0, 0, 0, 810 -NA,NA,"",2018-19,Barnstable - Centerville Elementary,00200010, 0, 64, 63, 52, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146 -NA,NA,"",2018-19,Barnstable - Hyannis West Elementary,00200025, 0, 76, 77, 77, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2018-19,Barnstable - West Barnstable Elementary,00200005, 0, 57, 67, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2018-19,Barnstable - West Villages Elementary School,00200045, 0, 104, 112, 109, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0, 72, 82, 66, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 82, 82, 82, 67, 76, 61, 50, 0, 500 -NA,NA,"",2018-19,Bedford - Bedford High,00230505, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 188, 202, 203, 0, 874 -NA,NA,"",2018-19,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 197, 178, 191, 0, 0, 0, 0, 0, 566 -NA,NA,"",2018-19,Bedford - Lt Elezer Davis,00230010, 0, 191, 211, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 599 -NA,NA,"",2018-19,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 202, 212, 205, 0, 0, 0, 0, 0, 0, 0, 0, 619 -NA,NA,"",2018-19,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 174, 167, 176, 5, 687 -NA,NA,"",2018-19,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 169, 178, 193, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2018-19,Belchertown - Cold Spring,00240005, 41, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179 -NA,NA,"",2018-19,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 188, 197, 0, 0, 0, 0, 0, 385 -NA,NA,"",2018-19,Belchertown - Swift River Elementary,00240018, 0, 0, 165, 157, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 98 -NA,NA,"",2018-19,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 141, 152, 144, 142, 0, 744 -NA,NA,"",2018-19,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 172, 190, 164, 185, 0, 0, 0, 0, 0, 0, 711 -NA,NA,"",2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 0, 93, 81, 86, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2018-19,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 8, 9, 0, 35 -NA,NA,"",2018-19,Bellingham - Stall Brook,00250025, 0, 67, 82, 84, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2018-19,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344, 330, 330, 304, 0," 1,308" -NA,NA,"",2018-19,Belmont - Daniel Butler,00260015, 0, 66, 66, 90, 72, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2018-19,Belmont - Mary Lee Burbank,00260010, 0, 82, 88, 82, 72, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2018-19,Belmont - Roger E Wellington,00260035, 67, 106, 111, 115, 111, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2018-19,Belmont - Winn Brook,00260005, 0, 88, 88, 95, 96, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2018-19,Belmont - Winthrop L Chenery Middle,00260305, 0, 0, 0, 0, 0, 0, 366, 364, 360, 338, 0, 0, 0, 0, 0," 1,428" -NA,NA,"",2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 24, 45, 50, 50, 48, 48, 41, 48, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 52, 51, 52, 51, 51, 52, 52, 52, 46, 0, 0, 0, 0, 0, 459 -NA,NA,"",2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0, 58, 63, 62, 60, 57, 39, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2018-19,Berkley - Berkley Community School,00270010, 69, 79, 78, 91, 95, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2018-19,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 114, 90, 92, 95, 0, 0, 0, 0, 0, 391 -NA,NA,"",2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 59, 75, 78, 59, 45, 31, 31, 0, 378 -NA,NA,"",2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 127, 108, 141, 5, 530 -NA,NA,"",2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 74, 87, 81, 102, 0, 0, 0, 0, 0, 344 -NA,NA,"",2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 19, 78, 53, 49, 70, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2018-19,Berlin - Berlin Memorial,00280005, 20, 22, 29, 28, 33, 22, 29, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2018-19,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 85, 96, 90, 77, 80, 74, 81, 0, 583 -NA,NA,"",2018-19,Beverly - Ayers/Ryal Side School,00300055, 0, 83, 85, 72, 93, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2018-19,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 325, 288, 278, 1," 1,251" -NA,NA,"",2018-19,Beverly - Beverly Middle School,00300305, 0, 0, 0, 0, 0, 0, 392, 363, 320, 329, 0, 0, 0, 0, 0," 1,404" -NA,NA,"",2018-19,Beverly - Centerville Elementary,00300010, 0, 44, 55, 68, 63, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2018-19,Beverly - Cove Elementary,00300015, 0, 112, 86, 75, 76, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2018-19,Beverly - Hannah Elementary,00300033, 0, 58, 69, 65, 56, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2018-19,Beverly - McKeown School,00300002, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2018-19,Beverly - North Beverly Elementary,00300040, 0, 66, 61, 64, 63, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2018-19,Billerica - Billerica Memorial High School,00310505, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304, 241, 343, 260, 6," 1,336" -NA,NA,"",2018-19,Billerica - Eugene C Vining,00310030, 0, 18, 39, 32, 34, 35, 22, 0, 0, 0, 0, 0, 0, 0, 0, 180 -NA,NA,"",2018-19,Billerica - Frederick J Dutile,00310007, 0, 50, 48, 46, 46, 50, 38, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2018-19,Billerica - Hajjar Elementary,00310026, 0, 77, 71, 82, 83, 65, 99, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2018-19,Billerica - John F Kennedy,00310012, 0, 48, 53, 42, 67, 55, 52, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2018-19,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 0, 184, 167, 168, 0, 0, 0, 0, 0, 519 -NA,NA,"",2018-19,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 0, 198, 231, 217, 0, 0, 0, 0, 0, 646 -NA,NA,"",2018-19,Billerica - Parker,00310015, 0, 78, 87, 74, 105, 77, 81, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2018-19,Billerica - Thomas Ditson,00310005, 0, 88, 73, 85, 80, 94, 89, 0, 0, 0, 0, 0, 0, 0, 0, 509 -NA,NA,"",2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 311, 307, 302, 0," 1,230" -NA,NA,"",2018-19,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 119, 90, 105, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 103, 111, 105, 2, 439 -NA,NA,"",2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 151, 125, 137, 0, 0, 0, 0, 0, 413 -NA,NA,"",2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 94, 83, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2018-19,Blackstone-Millville - Millville Elementary,06220010, 59, 28, 38, 34, 43, 39, 30, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 214, 196, 209, 0, 856 -NA,NA,"",2018-19,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 62, 53, 52, 57, 0, 224 -NA,NA,"",2018-19,Boston - Baldwin Early Learning Center,00350003, 82, 42, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2018-19,Boston - Beethoven,00350021, 44, 82, 87, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2018-19,Boston - Blackstone,00350390, 79, 74, 80, 82, 77, 74, 85, 0, 0, 0, 0, 0, 0, 0, 0, 551 -NA,NA,"",2018-19,Boston - Boston Adult Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 39, 0, 144 -NA,NA,"",2018-19,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 116, 122, 117, 0, 469 -NA,NA,"",2018-19,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 18, 48, 91, 1, 160 -NA,NA,"",2018-19,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 115, 114, 111, 15, 487 -NA,NA,"",2018-19,Boston - Boston International High School,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 94, 69, 73, 0, 369 -NA,NA,"",2018-19,Boston - Boston Latin,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 410, 407, 407, 431, 402, 383, 0," 2,440" -NA,NA,"",2018-19,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 283, 298, 298, 362, 260, 266, 0," 1,767" -NA,NA,"",2018-19,Boston - Boston Teachers Union School,00350012, 23, 22, 22, 21, 23, 26, 36, 51, 18, 28, 0, 0, 0, 0, 0, 270 -NA,NA,"",2018-19,Boston - Brighton High,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 124, 132, 191, 22, 586 -NA,NA,"",2018-19,Boston - Carter School,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 4, 2, 2, 7, 9, 29 -NA,NA,"",2018-19,Boston - Charles H Taylor,00350054, 17, 61, 77, 80, 83, 109, 90, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,Boston - Charles Sumner,00350052, 58, 78, 81, 86, 80, 94, 69, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2018-19,Boston - Charlestown High,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 173, 203, 214, 39, 881 -NA,NA,"",2018-19,Boston - Clarence R Edwards Middle,00350430, 0, 0, 0, 0, 0, 0, 0, 149, 108, 105, 0, 0, 0, 0, 0, 362 -NA,NA,"",2018-19,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 12, 15, 7, 0, 45 -NA,NA,"",2018-19,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 81, 107, 80, 22, 368 -NA,NA,"",2018-19,Boston - Condon K-8,00350146, 44, 74, 77, 87, 83, 111, 119, 102, 82, 72, 0, 0, 0, 0, 0, 851 -NA,NA,"",2018-19,Boston - Curley K-8 School,00350020, 103, 88, 94, 87, 84, 102, 104, 131, 95, 80, 0, 0, 0, 0, 0, 968 -NA,NA,"",2018-19,Boston - Curtis Guild,00350062, 29, 36, 36, 32, 38, 48, 41, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2018-19,Boston - Dante Alighieri Montessori School,00350066, 26, 15, 14, 13, 10, 12, 3, 4, 0, 0, 0, 0, 0, 0, 0, 97 -NA,NA,"",2018-19,Boston - David A Ellis,00350072, 47, 64, 70, 72, 60, 63, 39, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2018-19,Boston - Dearborn,00350074, 0, 0, 0, 0, 0, 0, 0, 94, 58, 61, 82, 56, 35, 33, 0, 419 -NA,NA,"",2018-19,Boston - Dennis C Haley,00350077, 27, 38, 41, 40, 46, 46, 47, 66, 28, 43, 0, 0, 0, 0, 0, 422 -NA,NA,"",2018-19,Boston - Donald Mckay,00350080, 22, 67, 59, 84, 86, 91, 96, 101, 101, 104, 0, 0, 0, 0, 0, 811 -NA,NA,"",2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 49, 38, 36, 36, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191 -NA,NA,"",2018-19,Boston - Dr. William Henderson Lower,00350266, 77, 68, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2018-19,Boston - Dr. William Henderson Upper,00350426, 0, 0, 0, 71, 45, 47, 41, 66, 51, 60, 63, 62, 57, 58, 9, 630 -NA,NA,"",2018-19,Boston - East Boston Early Childhood Center,00350009, 74, 61, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2018-19,Boston - East Boston High,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292, 272, 263, 351, 11," 1,189" -NA,NA,"",2018-19,Boston - Edison K-8,00350375, 21, 48, 60, 73, 60, 79, 61, 76, 66, 59, 0, 0, 0, 0, 0, 603 -NA,NA,"",2018-19,Boston - Edward Everett,00350088, 20, 43, 37, 43, 35, 40, 46, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2018-19,Boston - ELC - West Zone,00350006, 46, 33, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2018-19,Boston - Eliot Elementary,00350096, 58, 77, 79, 82, 87, 94, 63, 81, 24, 30, 0, 0, 0, 0, 0, 675 -NA,NA,"",2018-19,Boston - Ellis Mendell,00350100, 23, 42, 42, 42, 41, 44, 39, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2018-19,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 135, 134, 121, 0, 518 -NA,NA,"",2018-19,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104, 93, 93, 84, 3, 377 -NA,NA,"",2018-19,Boston - Franklin D Roosevelt,00350116, 42, 42, 44, 43, 45, 45, 43, 52, 43, 39, 0, 0, 0, 0, 0, 438 -NA,NA,"",2018-19,Boston - Gardner Pilot Academy,00350326, 26, 39, 43, 40, 40, 39, 36, 48, 36, 36, 0, 0, 0, 0, 0, 383 -NA,NA,"",2018-19,Boston - George H Conley,00350122, 18, 19, 19, 25, 52, 23, 44, 0, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2018-19,Boston - Greater Egleston Community High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 20, 28, 35, 0, 95 -NA,NA,"",2018-19,Boston - Harvard-Kent,00350200, 43, 46, 49, 54, 58, 72, 91, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2018-19,Boston - Haynes Early Education Center,00350010, 51, 67, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188 -NA,NA,"",2018-19,Boston - Henry Grew,00350135, 22, 43, 37, 38, 31, 49, 19, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2018-19,Boston - Higginson,00350015, 29, 42, 46, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168 -NA,NA,"",2018-19,Boston - Higginson/Lewis K-8,00350377, 0, 0, 0, 2, 37, 61, 45, 53, 39, 24, 0, 0, 0, 0, 0, 261 -NA,NA,"",2018-19,Boston - Horace Mann School for the Deaf,00350750, 2, 2, 8, 6, 6, 8, 0, 9, 4, 6, 7, 3, 11, 11, 5, 88 -NA,NA,"",2018-19,Boston - Hugh Roe O'Donnell,00350141, 21, 38, 45, 40, 41, 43, 37, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2018-19,Boston - Jackson Mann,00350013, 51, 63, 57, 62, 71, 86, 72, 66, 45, 37, 0, 0, 0, 0, 0, 610 -NA,NA,"",2018-19,Boston - James J Chittick,00350154, 44, 40, 39, 45, 39, 40, 31, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2018-19,Boston - James Otis,00350156, 46, 60, 59, 58, 64, 63, 43, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2018-19,Boston - James P Timilty Middle,00350485, 0, 0, 0, 0, 0, 0, 0, 99, 98, 111, 0, 0, 0, 0, 0, 308 -NA,NA,"",2018-19,Boston - James W Hennigan,00350153, 0, 35, 41, 59, 65, 70, 110, 91, 52, 58, 0, 0, 0, 0, 0, 581 -NA,NA,"",2018-19,Boston - Jeremiah E Burke High,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 93, 107, 120, 0, 403 -NA,NA,"",2018-19,Boston - John D Philbrick,00350172, 10, 19, 21, 23, 20, 47, 20, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2018-19,Boston - John F Kennedy,00350166, 26, 58, 56, 60, 60, 68, 43, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2018-19,Boston - John W McCormack,00350179, 0, 0, 0, 0, 0, 0, 0, 121, 120, 124, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,Boston - John Winthrop,00350180, 35, 53, 45, 55, 39, 43, 38, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2018-19,Boston - Joseph J Hurley,00350182, 28, 41, 44, 48, 43, 44, 34, 36, 16, 16, 0, 0, 0, 0, 0, 350 -NA,NA,"",2018-19,Boston - Joseph Lee,00350183, 60, 59, 48, 58, 60, 83, 77, 91, 56, 61, 0, 0, 0, 0, 0, 653 -NA,NA,"",2018-19,Boston - Joseph P Manning,00350184, 10, 22, 23, 24, 23, 25, 20, 0, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2018-19,Boston - Joseph P Tynan,00350181, 29, 51, 34, 31, 23, 32, 29, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2018-19,Boston - Josiah Quincy,00350286, 75, 113, 116, 122, 125, 120, 132, 0, 0, 0, 0, 0, 0, 0, 0, 803 -NA,NA,"",2018-19,Boston - Joyce Kilmer,00350190, 37, 40, 59, 40, 47, 51, 63, 60, 14, 28, 0, 0, 0, 0, 0, 439 -NA,NA,"",2018-19,Boston - King K-8,00350376, 56, 63, 62, 55, 39, 58, 42, 47, 41, 26, 0, 0, 0, 0, 0, 489 -NA,NA,"",2018-19,Boston - Lee Academy,00350001, 55, 35, 34, 39, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2018-19,Boston - Lilla G. Frederick Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 125, 161, 167, 0, 0, 0, 0, 0, 453 -NA,NA,"",2018-19,Boston - Lyndon,00350262, 66, 65, 72, 75, 76, 57, 80, 59, 35, 34, 0, 0, 0, 0, 0, 619 -NA,NA,"",2018-19,Boston - Lyon K-8,00350004, 0, 13, 12, 14, 15, 15, 15, 16, 18, 14, 0, 0, 0, 0, 0, 132 -NA,NA,"",2018-19,Boston - Lyon Upper 9-12,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 35, 29, 39, 0, 133 -NA,NA,"",2018-19,Boston - Madison Park High,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241, 272, 195, 150, 29, 887 -NA,NA,"",2018-19,Boston - Manassah E Bradley,00350215, 28, 42, 42, 42, 43, 46, 33, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2018-19,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85, 74, 74, 62, 0, 295 -NA,NA,"",2018-19,Boston - Mario Umana Academy,00350656, 29, 60, 77, 72, 63, 66, 85, 192, 166, 139, 0, 0, 0, 0, 0, 949 -NA,NA,"",2018-19,Boston - Mather,00350227, 62, 82, 77, 84, 91, 94, 84, 0, 0, 0, 0, 0, 0, 0, 0, 574 -NA,NA,"",2018-19,Boston - Mattahunt Elementary School,00350016, 87, 124, 102, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2018-19,Boston - Maurice J Tobin,00350229, 13, 42, 58, 58, 51, 63, 40, 50, 36, 26, 0, 0, 0, 0, 0, 437 -NA,NA,"",2018-19,Boston - Michael J Perkins,00350231, 6, 21, 22, 37, 29, 25, 42, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2018-19,Boston - Mildred Avenue K-8,00350378, 39, 39, 45, 41, 47, 116, 26, 96, 93, 80, 0, 0, 0, 0, 0, 622 -NA,NA,"",2018-19,Boston - Mission Hill School,00350382, 29, 22, 19, 33, 19, 22, 24, 21, 18, 13, 0, 0, 0, 0, 0, 220 -NA,NA,"",2018-19,Boston - Mozart,00350237, 25, 24, 22, 25, 27, 25, 23, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2018-19,Boston - Nathan Hale,00350243, 19, 22, 21, 21, 25, 24, 23, 0, 0, 0, 0, 0, 0, 0, 0, 155 -NA,NA,"",2018-19,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 44, 74, 102, 84, 72, 85, 1, 462 -NA,NA,"",2018-19,Boston - O W Holmes,00350138, 25, 54, 47, 49, 53, 60, 47, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2018-19,Boston - O'Bryant School Math/Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 160, 174, 330, 358, 259, 254, 0," 1,535" -NA,NA,"",2018-19,Boston - Oliver Hazard Perry,00350255, 22, 26, 27, 26, 31, 30, 24, 25, 22, 12, 0, 0, 0, 0, 0, 245 -NA,NA,"",2018-19,Boston - Orchard Gardens,00350257, 51, 80, 97, 92, 96, 105, 101, 106, 86, 90, 0, 0, 0, 0, 0, 904 -NA,NA,"",2018-19,Boston - Patrick J Kennedy,00350264, 27, 39, 42, 35, 50, 56, 44, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2018-19,Boston - Paul A Dever,00350268, 34, 59, 63, 68, 61, 69, 56, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 33, 38, 43, 40, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198 -NA,NA,"",2018-19,Boston - Phineas Bates,00350278, 19, 37, 39, 40, 34, 40, 42, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2018-19,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 143, 93, 58, 62, 62, 59, 59, 13, 549 -NA,NA,"",2018-19,Boston - Rafael Hernandez,00350691, 49, 49, 49, 48, 44, 44, 40, 38, 16, 22, 0, 0, 0, 0, 0, 399 -NA,NA,"",2018-19,Boston - Richard J Murphy,00350240, 39, 65, 67, 88, 88, 125, 132, 146, 69, 91, 0, 0, 0, 0, 0, 910 -NA,NA,"",2018-19,Boston - Roger Clap,00350298, 15, 18, 16, 20, 29, 27, 12, 0, 0, 0, 0, 0, 0, 0, 0, 137 -NA,NA,"",2018-19,Boston - Samuel Adams,00350302, 44, 30, 41, 37, 45, 43, 18, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2018-19,Boston - Samuel W Mason,00350304, 27, 36, 38, 37, 37, 37, 29, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2018-19,Boston - Sarah Greenwood,00350308, 42, 44, 47, 46, 48, 34, 49, 31, 23, 25, 0, 0, 0, 0, 0, 389 -NA,NA,"",2018-19,Boston - Snowden International School at Copley,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 123, 108, 98, 0, 489 -NA,NA,"",2018-19,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 113, 115, 136, 127, 143, 148, 134, 1, 917 -NA,NA,"",2018-19,Boston - The English High,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 99, 122, 135, 0, 521 -NA,NA,"",2018-19,Boston - Thomas J Kenny,00350328, 27, 39, 37, 36, 47, 56, 54, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2018-19,Boston - UP Academy Holland,00350167, 51, 117, 110, 118, 127, 122, 126, 0, 0, 0, 0, 0, 0, 0, 0, 771 -NA,NA,"",2018-19,Boston - Urban Science Academy,00350579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 74, 74, 79, 96, 5, 328 -NA,NA,"",2018-19,Boston - Warren-Prescott,00350346, 58, 69, 72, 65, 61, 70, 62, 61, 35, 27, 0, 0, 0, 0, 0, 580 -NA,NA,"",2018-19,Boston - Washington Irving Middle,00350445, 0, 0, 0, 0, 0, 0, 0, 111, 91, 97, 0, 0, 0, 0, 0, 299 -NA,NA,"",2018-19,Boston - West Roxbury Academy,00350658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 81, 89, 154, 2, 408 -NA,NA,"",2018-19,Boston - William E Russell,00350366, 58, 59, 58, 61, 57, 49, 55, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2018-19,Boston - William Ellery Channing,00350360, 30, 33, 38, 39, 26, 26, 16, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2018-19,Boston - William H Ohrenberger,00350258, 0, 0, 0, 0, 96, 138, 111, 137, 78, 75, 0, 0, 0, 0, 0, 635 -NA,NA,"",2018-19,Boston - William McKinley,00350363, 0, 0, 6, 8, 10, 17, 19, 21, 20, 29, 56, 51, 35, 26, 29, 327 -NA,NA,"",2018-19,Boston - William Monroe Trotter,00350370, 37, 65, 60, 64, 63, 64, 54, 44, 27, 25, 0, 0, 0, 0, 0, 503 -NA,NA,"",2018-19,Boston - Winship Elementary,00350374, 44, 43, 31, 25, 21, 17, 18, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2018-19,Boston - Young Achievers,00350380, 43, 54, 60, 60, 54, 98, 81, 43, 43, 33, 0, 0, 0, 0, 0, 569 -NA,NA,"",2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 94, 100, 96, 90, 91, 85, 64, 73, 0, 693 -NA,NA,"",2018-19,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 70, 3, 254, 0, 421 -NA,NA,"",2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 52, 52, 61, 86, 86, 77, 52, 10, 476 -NA,NA,"",2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 88, 87, 62, 90, 85, 54, 60, 0, 526 -NA,NA,"",2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 116, 139, 138, 137, 136, 116, 99, 73, 0, 0, 0, 0, 0, 0, 0, 954 -NA,NA,"",2018-19,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 112, 128, 112, 6, 476 -NA,NA,"",2018-19,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 172, 162, 177, 177, 0, 0, 0, 0, 0, 688 -NA,NA,"",2018-19,Bourne - Bournedale Elementary School,00360005, 53, 82, 74, 68, 69, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2018-19,Bourne - Peebles Elementary School,00360010, 0, 40, 65, 65, 89, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2018-19,Boxford - Harry Lee Cole,00380005, 44, 76, 85, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2018-19,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 116, 92, 105, 100, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2018-19,Boylston - Boylston Elementary,00390005, 34, 38, 43, 38, 49, 43, 53, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2018-19,Braintree - Archie T Morrison,00400033, 0, 20, 78, 63, 87, 71, 107, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2018-19,Braintree - Braintree High,00400505, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414, 430, 425, 385, 16," 1,793" -NA,NA,"",2018-19,Braintree - Donald Ross,00400050, 0, 21, 50, 54, 37, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2018-19,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 0, 262, 220, 249, 0, 0, 0, 0, 0, 731 -NA,NA,"",2018-19,Braintree - Highlands,00400015, 0, 21, 64, 73, 85, 81, 77, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2018-19,Braintree - Hollis,00400005, 0, 47, 65, 82, 85, 76, 82, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2018-19,Braintree - Liberty,00400025, 0, 0, 75, 81, 89, 95, 92, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2018-19,Braintree - Mary E Flaherty School,00400020, 0, 26, 64, 68, 68, 70, 80, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 0, 272, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2018-19,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 0, 252, 223, 229, 0, 0, 0, 0, 0, 704 -NA,NA,"",2018-19,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 76, 83, 85, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2018-19,Brewster - Stony Brook Elementary,00410005, 32, 66, 55, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 38, 37, 40, 40, 40, 41, 40, 39, 24, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2018-19,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 0, 246, 249, 0, 0, 0, 0, 0, 495 -NA,NA,"",2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342, 359, 364, 394, 11," 1,470" -NA,NA,"",2018-19,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 176, 173, 169, 0, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2018-19,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 179, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2018-19,Bridgewater-Raynham - Mitchell Elementary School,06250002, 135, 249, 249, 242, 220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,095" -NA,NA,"",2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 170, 180, 142, 179, 0, 0, 0, 0, 0, 671 -NA,NA,"",2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 3, 1, 3, 7, 0, 18 -NA,NA,"",2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 0, 227, 250, 296, 0, 0, 0, 0, 0, 0, 0, 773 -NA,NA,"",2018-19,Brimfield - Brimfield Elementary,00430005, 39, 24, 35, 38, 31, 42, 43, 41, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 115, 109, 111, 0, 454 -NA,NA,"",2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 340, 297, 292, 0," 1,288" -NA,NA,"",2018-19,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 230, 166, 173, 0, 0, 0, 0, 0, 569 -NA,NA,"",2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2018-19,Brockton - Brockton Champion High School,00440515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 34, 21, 14, 30, 138 -NA,NA,"",2018-19,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,108", 995, 960, 964, 5," 4,032" -NA,NA,"",2018-19,Brockton - Brookfield,00440010, 0, 88, 76, 90, 110, 109, 119, 0, 0, 0, 0, 0, 0, 0, 0, 592 -NA,NA,"",2018-19,Brockton - Downey,00440110, 0, 79, 101, 97, 119, 112, 107, 0, 0, 0, 0, 0, 0, 0, 0, 615 -NA,NA,"",2018-19,Brockton - Dr W Arnone Community School,00440001, 65, 104, 110, 121, 126, 117, 119, 0, 0, 0, 0, 0, 0, 0, 0, 762 -NA,NA,"",2018-19,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 262, 169, 188, 0, 0, 0, 0, 0, 619 -NA,NA,"",2018-19,Brockton - Edgar B Davis,00440023, 0, 94, 122, 135, 123, 111, 106, 131, 113, 102, 0, 0, 0, 0, 0," 1,037" -NA,NA,"",2018-19,Brockton - Edison Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 33, 31, 69, 105, 0, 238 -NA,NA,"",2018-19,Brockton - Frederick Douglass Academy,00440080, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 4, 4, 3, 0, 0, 18 -NA,NA,"",2018-19,Brockton - Gilmore Elementary School,00440055, 0, 65, 76, 99, 87, 83, 77, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2018-19,Brockton - Hancock,00440045, 0, 72, 101, 102, 87, 96, 107, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2018-19,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 0, 1, 3, 4, 4, 7, 5, 9, 8, 8, 10, 0, 59 -NA,NA,"",2018-19,Brockton - John F Kennedy,00440017, 0, 95, 95, 99, 108, 108, 90, 0, 0, 0, 0, 0, 0, 0, 0, 595 -NA,NA,"",2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 0, 0, 0, 0, 0, 0, 0, 259, 232, 233, 0, 0, 0, 0, 0, 724 -NA,NA,"",2018-19,Brockton - Louis F Angelo Elementary,00440065, 0, 96, 105, 122, 133, 212, 216, 0, 0, 0, 0, 0, 0, 0, 0, 884 -NA,NA,"",2018-19,Brockton - Manthala George Jr. School,00440003, 0, 205, 172, 172, 144, 145, 163, 0, 0, 0, 0, 0, 0, 0, 0," 1,001" -NA,NA,"",2018-19,Brockton - Mary E. Baker School,00440002, 0, 98, 127, 141, 122, 111, 115, 0, 0, 0, 0, 0, 0, 0, 0, 714 -NA,NA,"",2018-19,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 0, 155, 153, 0, 0, 0, 0, 0, 308 -NA,NA,"",2018-19,Brockton - Oscar F Raymond,00440078, 0, 138, 130, 153, 152, 143, 144, 0, 0, 0, 0, 0, 0, 0, 0, 860 -NA,NA,"",2018-19,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 205, 205, 215, 0, 0, 0, 0, 0, 625 -NA,NA,"",2018-19,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 265, 221, 214, 0, 0, 0, 0, 0, 700 -NA,NA,"",2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 177, 179, 185, 184, 183, 181, 183, 179, 170, 108, 60, 64, 0, 0," 1,853" -NA,NA,"",2018-19,Brookfield - Brookfield Elementary,00450005, 33, 36, 42, 39, 44, 41, 36, 45, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48 -NA,NA,"",2018-19,Brookline - Brookline High,00460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 554, 542, 489, 499, 17," 2,101" -NA,NA,"",2018-19,Brookline - Coolidge Corner School,00460015, 29, 109, 93, 93, 109, 93, 107, 97, 90, 82, 0, 0, 0, 0, 0, 902 -NA,NA,"",2018-19,Brookline - Edith C Baker,00460005, 0, 73, 86, 83, 88, 115, 62, 102, 79, 74, 0, 0, 0, 0, 0, 762 -NA,NA,"",2018-19,Brookline - Heath,00460025, 29, 49, 58, 45, 60, 71, 58, 68, 55, 58, 0, 0, 0, 0, 0, 551 -NA,NA,"",2018-19,Brookline - John D Runkle,00460045, 16, 54, 60, 61, 63, 70, 71, 73, 64, 65, 0, 0, 0, 0, 0, 597 -NA,NA,"",2018-19,Brookline - Lawrence,00460030, 0, 87, 90, 78, 86, 79, 76, 77, 73, 59, 0, 0, 0, 0, 0, 705 -NA,NA,"",2018-19,Brookline - Michael Driscoll,00460020, 17, 70, 60, 68, 66, 77, 58, 73, 74, 68, 0, 0, 0, 0, 0, 631 -NA,NA,"",2018-19,Brookline - Pierce,00460040, 0, 99, 103, 87, 109, 106, 110, 90, 80, 81, 0, 0, 0, 0, 0, 865 -NA,NA,"",2018-19,Brookline - The Lynch Center,00460060, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 55 -NA,NA,"",2018-19,Brookline - William H Lincoln,00460035, 0, 62, 65, 59, 64, 69, 63, 85, 56, 58, 0, 0, 0, 0, 0, 581 -NA,NA,"",2018-19,Burlington - Burlington High,00480505, 106, 14, 0, 0, 0, 0, 0, 0, 0, 0, 217, 237, 247, 250, 0," 1,071" -NA,NA,"",2018-19,Burlington - Fox Hill,00480007, 0, 88, 74, 79, 70, 66, 49, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2018-19,Burlington - Francis Wyman Elementary,00480035, 0, 74, 92, 104, 84, 96, 82, 0, 0, 0, 0, 0, 0, 0, 0, 532 -NA,NA,"",2018-19,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 269, 251, 267, 0, 0, 0, 0, 0, 787 -NA,NA,"",2018-19,Burlington - Memorial,00480015, 0, 63, 66, 66, 70, 63, 70, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2018-19,Burlington - Pine Glen Elementary,00480020, 0, 60, 62, 52, 59, 40, 46, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2018-19,Cambridge - Amigos School,00490006, 31, 47, 50, 43, 45, 42, 43, 45, 37, 36, 0, 0, 0, 0, 0, 419 -NA,NA,"",2018-19,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 512, 493, 483, 493, 2," 1,983" -NA,NA,"",2018-19,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 102, 69, 85, 0, 0, 0, 0, 0, 256 -NA,NA,"",2018-19,Cambridge - Cambridgeport,00490007, 51, 50, 59, 43, 45, 45, 45, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 56, 50, 47, 34, 37, 40, 33, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2018-19,Cambridge - Graham and Parks,00490080, 35, 54, 55, 62, 58, 59, 56, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2018-19,Cambridge - Haggerty,00490020, 23, 48, 46, 43, 38, 32, 31, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2018-19,Cambridge - John M Tobin,00490065, 92, 40, 40, 40, 38, 32, 25, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2018-19,Cambridge - Kennedy-Longfellow,00490040, 49, 41, 56, 41, 37, 30, 29, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2018-19,Cambridge - King Open,00490035, 39, 60, 60, 45, 54, 50, 51, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2018-19,Cambridge - Maria L. Baldwin,00490005, 56, 64, 54, 54, 43, 46, 44, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2018-19,Cambridge - Martin Luther King Jr.,00490030, 34, 67, 54, 42, 44, 42, 44, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2018-19,Cambridge - Morse,00490045, 45, 51, 45, 42, 45, 40, 29, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2018-19,Cambridge - Peabody,00490050, 50, 50, 47, 44, 48, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2018-19,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 101, 83, 87, 0, 0, 0, 0, 0, 271 -NA,NA,"",2018-19,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 100, 94, 95, 0, 0, 0, 0, 0, 289 -NA,NA,"",2018-19,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 113, 88, 98, 0, 0, 0, 0, 0, 299 -NA,NA,"",2018-19,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 254, 240, 224, 2, 968 -NA,NA,"",2018-19,Canton - Dean S Luce,00500020, 0, 78, 67, 84, 83, 80, 95, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2018-19,Canton - John F Kennedy,00500017, 0, 87, 92, 77, 87, 76, 102, 0, 0, 0, 0, 0, 0, 0, 0, 521 -NA,NA,"",2018-19,Canton - Lt Peter M Hansen,00500012, 0, 70, 69, 82, 89, 82, 92, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2018-19,Canton - Rodman Early Childhood Center,00500010, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 -NA,NA,"",2018-19,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 266, 224, 235, 0, 0, 0, 0, 0, 725 -NA,NA,"",2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 81, 80, 81, 0, 0, 0, 0, 0, 242 -NA,NA,"",2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152, 146, 155, 116, 2, 571 -NA,NA,"",2018-19,Carlisle - Carlisle School,00510025, 14, 58, 62, 62, 60, 62, 76, 64, 71, 71, 0, 0, 0, 0, 0, 600 -NA,NA,"",2018-19,Carver - Carver Elementary School,00520015, 58, 129, 116, 136, 121, 118, 117, 0, 0, 0, 0, 0, 0, 0, 0, 795 -NA,NA,"",2018-19,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 123, 128, 133, 79, 108, 99, 82, 8, 760 -NA,NA,"",2018-19,Central Berkshire - Becket Washington School,06350005, 18, 18, 14, 18, 14, 22, 21, 0, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2018-19,Central Berkshire - Craneville,06350025, 0, 59, 68, 71, 63, 69, 70, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2018-19,Central Berkshire - Kittredge,06350035, 33, 22, 22, 29, 15, 13, 15, 0, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 124, 129, 121, 0, 0, 0, 0, 0, 374 -NA,NA,"",2018-19,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 137, 116, 148, 1, 531 -NA,NA,"",2018-19,Chelmsford - Byam School,00560030, 0, 86, 100, 90, 96, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2018-19,Chelmsford - Center Elementary School,00560005, 0, 103, 102, 97, 83, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2018-19,Chelmsford - Charles D Harrington,00560025, 0, 95, 95, 111, 88, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2018-19,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 368, 369, 351, 0," 1,444" -NA,NA,"",2018-19,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 169, 178, 171, 180, 0, 0, 0, 0, 0, 698 -NA,NA,"",2018-19,Chelmsford - Community Education Center,00560001, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2018-19,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 200, 181, 226, 200, 0, 0, 0, 0, 0, 807 -NA,NA,"",2018-19,Chelmsford - South Row,00560015, 0, 92, 85, 78, 81, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 416 -NA,NA,"",2018-19,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 371, 349, 343, 295, 2," 1,360" -NA,NA,"",2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 21, 20, 6, 0, 52 -NA,NA,"",2018-19,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 201, 167, 140, 137, 0, 0, 0, 0, 0, 645 -NA,NA,"",2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 0, 0, 105, 147, 139, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 117, 130, 135, 124, 0, 0, 0, 0, 0, 506 -NA,NA,"",2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 96, 149, 136, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 530 -NA,NA,"",2018-19,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 108, 110, 118, 145, 39, 0, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2018-19,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 157, 146, 141, 138, 0, 0, 0, 0, 0, 582 -NA,NA,"",2018-19,Chelsea - Shurtleff Early Childhood,00570003, 247, 520, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 870 -NA,NA,"",2018-19,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 106, 131, 116, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 15, 13, 19, 19, 14, 17, 12, 20, 0, 0, 0, 0, 0, 0, 0, 129 -NA,NA,"",2018-19,Chicopee - Barry,00610003, 0, 69, 66, 74, 67, 73, 82, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2018-19,Chicopee - Belcher,00610010, 0, 74, 97, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2018-19,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 288, 269, 251, 0, 0, 0, 0, 0, 808 -NA,NA,"",2018-19,Chicopee - Bowe,00610015, 0, 75, 89, 97, 73, 77, 89, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2018-19,Chicopee - Bowie,00610020, 0, 48, 34, 52, 64, 53, 71, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2018-19,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 0, 4, 16, 33, 20, 6, 10, 1, 90 -NA,NA,"",2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 331, 302, 340, 0," 1,253" -NA,NA,"",2018-19,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288, 264, 222, 204, 0, 978 -NA,NA,"",2018-19,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 260, 244, 244, 0, 0, 0, 0, 0, 748 -NA,NA,"",2018-19,Chicopee - Fairview Elementary,00610050, 0, 70, 83, 68, 68, 77, 82, 0, 0, 0, 0, 0, 0, 0, 0, 448 -NA,NA,"",2018-19,Chicopee - Gen John J Stefanik,00610090, 0, 52, 57, 63, 73, 62, 76, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2018-19,Chicopee - Lambert-Lavoie,00610040, 0, 43, 46, 41, 58, 50, 54, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2018-19,Chicopee - Litwin,00610022, 0, 20, 23, 29, 103, 112, 113, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2018-19,Chicopee - Streiber Memorial School,00610065, 0, 36, 42, 45, 40, 40, 43, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2018-19,Chicopee - Szetela Early Childhood Center,00610001, 229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0, 0, 0, 0, 0, 0, 0, 139, 133, 126, 0, 0, 0, 0, 0, 398 -NA,NA,"",2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 76, 69, 39, 0, 271 -NA,NA,"",2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77, 53, 56, 59, 0, 245 -NA,NA,"",2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 60, 49, 30, 0, 217 -NA,NA,"",2018-19,Clarksburg - Clarksburg Elementary,00630010, 0, 18, 31, 14, 19, 16, 32, 23, 17, 15, 0, 0, 0, 0, 0, 185 -NA,NA,"",2018-19,Clinton - Clinton Elementary,00640050, 80, 164, 150, 135, 146, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 824 -NA,NA,"",2018-19,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 0, 171, 140, 136, 131, 0, 0, 0, 0, 0, 578 -NA,NA,"",2018-19,Clinton - Clinton Senior High,00640505, 22, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 128, 102, 104, 0, 456 -NA,NA,"",2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 20, 20, 20, 20, 20, 19, 19, 19, 18, 18, 40, 34, 35, 40, 0, 342 -NA,NA,"",2018-19,Cohasset - Cohasset Middle/High School,00650505, 0, 0, 0, 0, 0, 0, 0, 120, 105, 127, 111, 130, 121, 119, 0, 833 -NA,NA,"",2018-19,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 113, 123, 139, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2018-19,Cohasset - Joseph Osgood,00650010, 24, 101, 106, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 100, 110, 109, 112, 94, 120, 80, 63, 58, 0, 0, 0, 0, 0, 846 -NA,NA,"",2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 35, 56, 52, 57, 35, 47, 50, 0, 332 -NA,NA,"",2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 40, 42, 42, 42, 42, 43, 37, 39, 33, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 20, 44, 48, 48, 50, 47, 46, 42, 34, 20, 0, 0, 0, 0, 0, 399 -NA,NA,"",2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 41, 42, 44, 44, 43, 41, 37, 36, 32, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2018-19,Concord - Alcott,00670005, 8, 81, 78, 67, 93, 72, 80, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2018-19,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 245, 234, 255, 0, 0, 0, 0, 0, 734 -NA,NA,"",2018-19,Concord - Thoreau,00670020, 11, 69, 85, 75, 75, 67, 83, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2018-19,Concord - Willard,00670030, 7, 58, 71, 66, 74, 74, 71, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 306, 298, 340, 0," 1,274" -NA,NA,"",2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 51, 52, 53, 53, 54, 48, 39, 43, 26, 22, 0, 0, 0, 0, 0, 441 -NA,NA,"",2018-19,Conway - Conway Grammar,00680005, 16, 14, 15, 15, 23, 17, 15, 20, 0, 0, 0, 0, 0, 0, 0, 135 -NA,NA,"",2018-19,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 242, 236, 242, 2, 930 -NA,NA,"",2018-19,Danvers - Great Oak,00710015, 0, 53, 65, 57, 72, 63, 61, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2018-19,Danvers - Highlands,00710010, 0, 66, 63, 61, 66, 66, 62, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2018-19,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 273, 280, 280, 0, 0, 0, 0, 0, 833 -NA,NA,"",2018-19,Danvers - Ivan G Smith,00710032, 0, 54, 45, 47, 49, 47, 50, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2018-19,Danvers - Riverside,00710030, 95, 48, 36, 38, 30, 54, 51, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2018-19,Danvers - Willis E Thorpe,00710045, 0, 48, 53, 55, 45, 62, 56, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2018-19,Dartmouth - Andrew B. Cushman School,00720005, 78, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2018-19,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281, 272, 267, 251, 0," 1,071" -NA,NA,"",2018-19,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 307, 320, 312, 0, 0, 0, 0, 0, 939 -NA,NA,"",2018-19,Dartmouth - George H Potter,00720030, 11, 66, 67, 63, 65, 69, 64, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2018-19,Dartmouth - James M. Quinn School,00720040, 0, 112, 108, 88, 107, 115, 112, 0, 0, 0, 0, 0, 0, 0, 0, 642 -NA,NA,"",2018-19,Dartmouth - Joseph Demello,00720015, 0, 0, 78, 97, 72, 88, 87, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2018-19,Dedham - Avery,00730010, 0, 0, 58, 70, 55, 56, 66, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2018-19,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 188, 203, 187, 0, 748 -NA,NA,"",2018-19,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 255, 194, 198, 0, 0, 0, 0, 0, 647 -NA,NA,"",2018-19,Dedham - Early Childhood Center,00730005, 98, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2018-19,Dedham - Greenlodge,00730025, 0, 0, 43, 45, 38, 60, 61, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2018-19,Dedham - Oakdale,00730030, 0, 0, 47, 59, 53, 59, 51, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2018-19,Dedham - Riverdale,00730045, 0, 0, 29, 33, 37, 35, 38, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2018-19,Deerfield - Deerfield Elementary,00740015, 35, 47, 54, 48, 40, 54, 58, 56, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 193, 187, 190, 208, 0," 1,012" -NA,NA,"",2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 21, 75, 58, 69, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 61, 69, 52, 61, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 235, 215, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0, 0, 0, 0, 0, 247, 265, 0, 0, 0, 0, 0, 0, 0, 0, 512 -NA,NA,"",2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 111, 99, 109, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 32, 95, 94, 93, 97, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 104, 96, 110, 105, 0, 0, 0, 0, 0, 415 -NA,NA,"",2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 213, 194, 194, 12, 824 -NA,NA,"",2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 137, 140, 156, 146, 0, 0, 0, 0, 0, 579 -NA,NA,"",2018-19,Dighton-Rehoboth - Palmer River,06500010, 33, 119, 111, 103, 113, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2018-19,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 89, 104, 81, 81, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2018-19,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 94, 101, 107, 0, 397 -NA,NA,"",2018-19,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 101, 122, 99, 0, 0, 0, 0, 0, 322 -NA,NA,"",2018-19,Douglas - Douglas Primary School,00770005, 56, 85, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2018-19,Dover - Chickering,00780005, 22, 75, 71, 81, 78, 84, 88, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 178, 167, 152, 0, 674 -NA,NA,"",2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 172, 173, 177, 0, 0, 0, 0, 0, 522 -NA,NA,"",2018-19,Dracut - Brookside Elementary,00790035, 0, 75, 72, 71, 72, 70, 79, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2018-19,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 224, 207, 208, 1, 875 -NA,NA,"",2018-19,Dracut - George H. Englesby Elementary School,00790045, 0, 93, 92, 87, 88, 89, 94, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2018-19,Dracut - Greenmont Avenue,00790030, 0, 44, 47, 31, 53, 43, 47, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2018-19,Dracut - Joseph A Campbell Elementary,00790020, 57, 77, 98, 73, 78, 95, 81, 0, 0, 0, 0, 0, 0, 0, 0, 559 -NA,NA,"",2018-19,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 320, 282, 299, 0, 0, 0, 0, 0, 901 -NA,NA,"",2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 39, 33, 38, 42, 39, 37, 28, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 64, 144, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 180, 167, 159, 175, 0, 0, 0, 0, 0, 681 -NA,NA,"",2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 103, 130, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2018-19,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 131, 122, 152, 149, 0, 0, 0, 0, 0, 554 -NA,NA,"",2018-19,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 155, 142, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 48, 107, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288, 286, 273, 267, 1," 1,115" -NA,NA,"",2018-19,Duxbury - Alden School,00820004, 0, 0, 0, 0, 209, 192, 229, 0, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2018-19,Duxbury - Chandler Elementary,00820006, 69, 177, 190, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 629 -NA,NA,"",2018-19,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, 255, 261, 251, 1," 1,004" -NA,NA,"",2018-19,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 258, 243, 251, 0, 0, 0, 0, 0, 752 -NA,NA,"",2018-19,East Bridgewater - Central,00830005, 131, 142, 162, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 179, 195, 174, 153, 172, 138, 0," 1,011" -NA,NA,"",2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 0, 0, 0, 0, 161, 149, 178, 167, 0, 0, 0, 0, 0, 0, 0, 655 -NA,NA,"",2018-19,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 193, 218, 233, 0, 0, 0, 0, 0, 644 -NA,NA,"",2018-19,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 177, 221, 213, 1, 826 -NA,NA,"",2018-19,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 92, 101, 105, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2018-19,East Longmeadow - Meadow Brook,00870013, 51, 163, 192, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 583 -NA,NA,"",2018-19,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 89, 86, 98, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2018-19,Eastham - Eastham Elementary,00850005, 15, 24, 27, 28, 27, 26, 24, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2018-19,Easthampton - Center School,00860005, 0, 42, 39, 38, 41, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2018-19,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 118, 115, 117, 119, 5, 474 -NA,NA,"",2018-19,Easthampton - Maple,00860010, 46, 43, 34, 40, 43, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2018-19,Easthampton - Neil A Pepin,00860020, 0, 42, 38, 40, 42, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204 -NA,NA,"",2018-19,Easthampton - White Brook Middle School,00860305, 0, 0, 0, 0, 0, 0, 99, 116, 96, 102, 0, 0, 0, 0, 0, 413 -NA,NA,"",2018-19,Easton - Center School,00880003, 23, 69, 85, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2018-19,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 303, 285, 299, 0, 0, 0, 0, 0, 887 -NA,NA,"",2018-19,Easton - Moreau Hall,00880020, 11, 72, 61, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2018-19,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 283, 271, 299, 10," 1,145" -NA,NA,"",2018-19,Easton - Parkview Elementary,00880015, 39, 93, 91, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2018-19,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 256, 289, 267, 0, 0, 0, 0, 0, 0, 0, 0, 812 -NA,NA,"",2018-19,Edgartown - Edgartown Elementary,00890005, 5, 37, 43, 41, 38, 58, 41, 37, 38, 32, 0, 0, 0, 0, 0, 370 -NA,NA,"",2018-19,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 100, 90, 88, 0, 383 -NA,NA,"",2018-19,Erving - Erving Elementary,00910030, 24, 15, 9, 12, 20, 9, 18, 20, 0, 0, 0, 0, 0, 0, 1, 128 -NA,NA,"",2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 364, 340, 330, 0," 1,413" -NA,NA,"",2018-19,Everett - Adams School,00930003, 194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2018-19,Everett - Devens School,00930030, 0, 1, 3, 1, 5, 2, 6, 11, 6, 8, 7, 8, 8, 4, 0, 70 -NA,NA,"",2018-19,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503, 438, 522, 512, 3," 1,978" -NA,NA,"",2018-19,Everett - George Keverian School,00930028, 0, 65, 79, 114, 87, 89, 90, 127, 124, 95, 0, 0, 0, 0, 0, 870 -NA,NA,"",2018-19,Everett - Lafayette School,00930038, 0, 88, 100, 86, 123, 107, 110, 131, 111, 102, 0, 0, 0, 0, 0, 958 -NA,NA,"",2018-19,Everett - Madeline English School,00930018, 0, 79, 97, 79, 77, 73, 93, 98, 113, 81, 0, 0, 0, 0, 0, 790 -NA,NA,"",2018-19,Everett - Parlin School,00930058, 0, 108, 105, 101, 76, 107, 96, 109, 113, 121, 0, 0, 0, 0, 0, 936 -NA,NA,"",2018-19,Everett - Sumner G. Whittier School,00930010, 0, 66, 68, 78, 81, 79, 83, 78, 57, 45, 0, 0, 0, 0, 0, 635 -NA,NA,"",2018-19,Everett - Webster School,00930015, 320, 85, 76, 62, 54, 42, 37, 0, 0, 0, 0, 0, 0, 0, 0, 676 -NA,NA,"",2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 173, 177, 175, 175, 170, 171, 156, 100, 0," 1,297" -NA,NA,"",2018-19,Fairhaven - East Fairhaven,00940010, 14, 54, 55, 68, 72, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2018-19,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 186, 163, 131, 2, 661 -NA,NA,"",2018-19,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 148, 159, 169, 0, 0, 0, 0, 0, 476 -NA,NA,"",2018-19,Fairhaven - Leroy Wood,00940030, 22, 63, 70, 68, 82, 88, 83, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2018-19,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577, 564, 520, 435, 0," 2,096" -NA,NA,"",2018-19,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 112, 137, 101, 144, 117, 117, 0, 0, 0, 0, 0, 0, 0, 0, 728 -NA,NA,"",2018-19,Fall River - Henry Lord Community School,00950017, 39, 88, 84, 86, 67, 87, 69, 83, 51, 55, 0, 0, 0, 0, 0, 709 -NA,NA,"",2018-19,Fall River - James Tansey,00950140, 0, 49, 47, 56, 50, 56, 54, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2018-19,Fall River - John J Doran,00950045, 21, 54, 55, 51, 58, 59, 69, 53, 44, 47, 0, 0, 0, 0, 0, 511 -NA,NA,"",2018-19,Fall River - Letourneau Elementary School,00950013, 33, 73, 99, 102, 100, 86, 92, 0, 0, 0, 0, 0, 0, 0, 0, 585 -NA,NA,"",2018-19,Fall River - Mary Fonseca Elementary School,00950011, 31, 87, 110, 117, 109, 108, 116, 0, 0, 0, 0, 0, 0, 0, 0, 678 -NA,NA,"",2018-19,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 254, 240, 242, 0, 0, 0, 0, 0, 736 -NA,NA,"",2018-19,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 224, 195, 199, 0, 0, 0, 0, 0, 618 -NA,NA,"",2018-19,Fall River - North End Elementary,00950005, 71, 102, 105, 114, 114, 133, 122, 0, 0, 0, 0, 0, 0, 0, 0, 761 -NA,NA,"",2018-19,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 17, 21, 24, 45, 33, 51, 0, 191 -NA,NA,"",2018-19,Fall River - Samuel Watson,00950145, 0, 48, 53, 54, 45, 47, 52, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2018-19,Fall River - Spencer Borden,00950130, 0, 85, 100, 90, 83, 86, 118, 0, 0, 0, 0, 0, 0, 0, 0, 562 -NA,NA,"",2018-19,Fall River - Stone PK-12 School,00950340, 0, 0, 1, 1, 4, 3, 6, 4, 9, 6, 9, 1, 1, 5, 0, 50 -NA,NA,"",2018-19,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 184, 181, 162, 0, 0, 0, 0, 0, 527 -NA,NA,"",2018-19,Fall River - William S Greene,00950065, 54, 112, 108, 112, 113, 133, 125, 0, 0, 0, 0, 0, 0, 0, 0, 757 -NA,NA,"",2018-19,Falmouth - East Falmouth Elementary,00960005, 0, 50, 47, 44, 50, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2018-19,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, 205, 213, 179, 4, 841 -NA,NA,"",2018-19,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 266, 306, 0, 0, 0, 0, 0, 572 -NA,NA,"",2018-19,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 286, 269, 0, 0, 0, 0, 0, 0, 0, 555 -NA,NA,"",2018-19,Falmouth - Mullen-Hall,00960020, 0, 92, 86, 82, 87, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2018-19,Falmouth - North Falmouth Elementary,00960030, 0, 66, 76, 54, 68, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2018-19,Falmouth - Teaticket,00960015, 115, 38, 51, 53, 51, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2018-19,Farmington River Reg - Farmington River Elementary,06620020, 25, 15, 15, 15, 10, 11, 11, 13, 0, 0, 0, 0, 0, 0, 0, 115 -NA,NA,"",2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 184, 156, 156, 151, 0, 0, 0, 0, 0, 647 -NA,NA,"",2018-19,Fitchburg - Crocker Elementary,00970016, 72, 128, 104, 127, 112, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643 -NA,NA,"",2018-19,Fitchburg - Fitchburg High,00970505, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273, 305, 252, 296, 1," 1,158" -NA,NA,"",2018-19,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 19, 55, 109, 13, 207 -NA,NA,"",2018-19,Fitchburg - McKay Arts Academy,00970340, 23, 79, 71, 71, 74, 80, 72, 72, 62, 68, 0, 0, 0, 0, 0, 672 -NA,NA,"",2018-19,Fitchburg - Memorial Middle School,00970048, 0, 0, 0, 0, 0, 0, 193, 182, 173, 200, 0, 0, 0, 0, 0, 748 -NA,NA,"",2018-19,Fitchburg - Reingold Elementary,00970043, 28, 125, 118, 128, 119, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 646 -NA,NA,"",2018-19,Fitchburg - South Street Elementary,00970060, 31, 128, 117, 116, 120, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 641 -NA,NA,"",2018-19,Florida - Abbott Memorial,00980005, 17, 10, 6, 8, 7, 3, 10, 13, 9, 4, 0, 0, 0, 0, 0, 87 -NA,NA,"",2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 37, 38, 38, 38, 37, 31, 0, 219 -NA,NA,"",2018-19,Foxborough - Charles Taylor Elementary,00990050, 0, 41, 41, 53, 46, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2018-19,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200, 182, 211, 212, 8, 813 -NA,NA,"",2018-19,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 213, 215, 214, 200, 0, 0, 0, 0, 0, 842 -NA,NA,"",2018-19,Foxborough - Mabelle M Burrell,00990015, 84, 44, 54, 43, 43, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2018-19,Foxborough - Vincent M Igo Elementary,00990020, 0, 65, 72, 78, 68, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 145, 148, 147, 146, 152, 147, 147, 144, 146, 106, 74, 65, 63, 0," 1,630" -NA,NA,"",2018-19,Framingham - Barbieri Elementary,01000035, 0, 121, 120, 104, 110, 122, 95, 0, 0, 0, 0, 0, 0, 0, 0, 672 -NA,NA,"",2018-19,Framingham - Brophy,01000006, 0, 80, 65, 58, 77, 79, 105, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2018-19,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 221, 186, 174, 0, 0, 0, 0, 0, 581 -NA,NA,"",2018-19,Framingham - Charlotte A Dunning,01000007, 0, 86, 63, 74, 68, 71, 95, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2018-19,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 602, 574, 555, 540, 0," 2,271" -NA,NA,"",2018-19,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 154, 216, 176, 0, 0, 0, 0, 0, 546 -NA,NA,"",2018-19,Framingham - Hemenway,01000015, 0, 103, 86, 92, 91, 94, 97, 0, 0, 0, 0, 0, 0, 0, 0, 563 -NA,NA,"",2018-19,Framingham - Juniper Hill School,01000001, 276, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2018-19,Framingham - King Elementary School,01000005, 0, 66, 58, 66, 73, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2018-19,Framingham - Mary E Stapleton Elementary,01000045, 0, 48, 57, 45, 63, 53, 70, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2018-19,Framingham - Miriam F McCarthy School,01000050, 0, 78, 79, 83, 79, 94, 115, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2018-19,Framingham - Potter Road,01000039, 0, 87, 86, 88, 92, 86, 94, 0, 0, 0, 0, 0, 0, 0, 0, 533 -NA,NA,"",2018-19,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 242, 249, 242, 0, 0, 0, 0, 0, 733 -NA,NA,"",2018-19,Framingham - Woodrow Wilson,01000055, 0, 86, 79, 90, 86, 94, 104, 0, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 70, 76, 71, 65, 57, 58, 0, 397 -NA,NA,"",2018-19,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 122, 127, 158, 0, 0, 0, 0, 0, 407 -NA,NA,"",2018-19,Franklin - Davis Thayer,01010035, 0, 50, 28, 41, 36, 39, 50, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107 -NA,NA,"",2018-19,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 445, 438, 437, 424, 5," 1,749" -NA,NA,"",2018-19,Franklin - Helen Keller Elementary,01010012, 0, 51, 54, 66, 80, 59, 77, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2018-19,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 164, 149, 155, 0, 0, 0, 0, 0, 468 -NA,NA,"",2018-19,Franklin - J F Kennedy Memorial,01010013, 0, 50, 68, 67, 65, 60, 55, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,Franklin - Jefferson Elementary,01010010, 0, 56, 61, 44, 57, 69, 62, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2018-19,Franklin - Oak Street Elementary,01010030, 0, 54, 65, 68, 45, 57, 80, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2018-19,Franklin - Parmenter,01010032, 0, 53, 51, 63, 55, 65, 52, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2018-19,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 121, 155, 138, 0, 0, 0, 0, 0, 414 -NA,NA,"",2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 112, 119, 119, 0, 494 -NA,NA,"",2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 207, 174, 192, 0, 727 -NA,NA,"",2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 118, 106, 112, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 48, 91, 107, 83, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 238, 264, 248, 0, 0, 0, 0, 0, 750 -NA,NA,"",2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 206, 223, 2, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2018-19,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 118, 122, 100, 110, 95, 95, 7, 647 -NA,NA,"",2018-19,Gardner - Elm Street School,01030001, 0, 0, 0, 179, 183, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 554 -NA,NA,"",2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 22, 21, 7, 0, 60 -NA,NA,"",2018-19,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 137, 142, 121, 103, 7, 660 -NA,NA,"",2018-19,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 183, 206, 189, 0, 0, 0, 0, 0, 0, 578 -NA,NA,"",2018-19,Gardner - Waterford Street,01030020, 75, 173, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2018-19,Gateway - Chester Elementary,06720059, 12, 20, 20, 11, 23, 16, 16, 0, 0, 0, 0, 0, 0, 0, 0, 118 -NA,NA,"",2018-19,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39, 54, 59, 41, 5, 198 -NA,NA,"",2018-19,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 68, 64, 70, 0, 0, 0, 0, 0, 202 -NA,NA,"",2018-19,Gateway - Littleville Elementary School,06720143, 34, 34, 52, 43, 39, 59, 46, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2018-19,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 95, 106, 100, 0, 398 -NA,NA,"",2018-19,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 97, 111, 0, 0, 0, 0, 0, 208 -NA,NA,"",2018-19,Georgetown - Penn Brook,01050010, 0, 109, 105, 90, 104, 87, 120, 94, 0, 0, 0, 0, 0, 0, 0, 709 -NA,NA,"",2018-19,Georgetown - Perley Elementary,01050005, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 -NA,NA,"",2018-19,Gill-Montague - Gill Elementary,06740005, 0, 16, 15, 19, 20, 19, 25, 14, 0, 0, 0, 0, 0, 0, 0, 128 -NA,NA,"",2018-19,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 56, 94, 89, 0, 0, 0, 0, 0, 239 -NA,NA,"",2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 32, 58, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155 -NA,NA,"",2018-19,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 49, 50, 57, 55, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2018-19,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 37, 62, 53, 50, 0, 202 -NA,NA,"",2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 90, 89, 90, 95, 41, 26, 30, 44, 0, 505 -NA,NA,"",2018-19,Gloucester - Beeman Memorial,01070010, 0, 60, 47, 60, 55, 56, 53, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2018-19,Gloucester - East Gloucester Elementary,01070020, 0, 36, 25, 24, 41, 40, 43, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2018-19,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 182, 173, 211, 5, 809 -NA,NA,"",2018-19,Gloucester - Gloucester PreSchool,01070025, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2018-19,Gloucester - Plum Cove School,01070042, 0, 35, 37, 34, 34, 32, 36, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 204, 230, 207, 0, 0, 0, 0, 0, 641 -NA,NA,"",2018-19,Gloucester - Veterans Memorial,01070045, 0, 27, 40, 40, 37, 30, 43, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2018-19,Gloucester - West Parish,01070050, 0, 57, 65, 58, 61, 59, 48, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 2 -NA,NA,"",2018-19,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 192, 201, 221, 7, 863 -NA,NA,"",2018-19,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 249, 265, 0, 0, 0, 0, 0, 514 -NA,NA,"",2018-19,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 135, 123, 140, 141, 147, 0, 0, 0, 0, 0, 0, 0, 686 -NA,NA,"",2018-19,Grafton - North Grafton Elementary,01100025, 39, 94, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2018-19,Grafton - North Street Elementary School,01100030, 0, 0, 0, 99, 112, 138, 103, 120, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2018-19,Grafton - South Grafton Elementary,01100005, 68, 106, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2018-19,Granby - East Meadow,01110004, 35, 56, 54, 48, 56, 44, 45, 52, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2018-19,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 56, 59, 64, 55, 54, 49, 0, 337 -NA,NA,"",2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377, 364, 350, 321, 1," 1,413" -NA,NA,"",2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428, 408, 382, 358, 0," 1,576" -NA,NA,"",2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598, 586, 536, 514, 22," 2,256" -NA,NA,"",2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 554, 541, 551, 493, 0," 2,139" -NA,NA,"",2018-19,Greenfield - Discovery School at Four Corners,01140025, 0, 43, 54, 48, 51, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2018-19,Greenfield - Federal Street School,01140010, 0, 45, 54, 55, 45, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2018-19,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 123, 85, 69, 84, 1, 487 -NA,NA,"",2018-19,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 146, 125, 119, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2018-19,Greenfield - Newton School,01140035, 0, 60, 51, 42, 46, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0, 11, 24, 26, 27, 33, 50, 43, 49, 72, 86, 73, 51, 45, 0, 590 -NA,NA,"",2018-19,Groton-Dunstable - Boutwell School,06730001, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58 -NA,NA,"",2018-19,Groton-Dunstable - Florence Roche School,06730010, 0, 104, 109, 110, 103, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 191, 181, 207, 2, 763 -NA,NA,"",2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 169, 185, 200, 179, 0, 0, 0, 0, 0, 733 -NA,NA,"",2018-19,Groton-Dunstable - Swallow/Union School,06730005, 0, 60, 56, 56, 55, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2018-19,Hadley - Hadley Elementary,01170015, 35, 34, 25, 31, 35, 29, 49, 45, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2018-19,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 45, 46, 36, 40, 33, 51, 2, 253 -NA,NA,"",2018-19,Halifax - Halifax Elementary,01180005, 0, 82, 93, 99, 79, 85, 83, 87, 0, 0, 0, 0, 0, 0, 0, 608 -NA,NA,"",2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 43, 40, 38, 41, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2018-19,Hamilton-Wenham - Cutler School,06750010, 0, 42, 61, 39, 43, 45, 55, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 145, 137, 145, 0, 563 -NA,NA,"",2018-19,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 135, 125, 135, 0, 0, 0, 0, 0, 395 -NA,NA,"",2018-19,Hamilton-Wenham - Winthrop School,06750015, 33, 42, 40, 44, 40, 51, 31, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 85, 88, 93, 73, 68, 65, 36, 0, 508 -NA,NA,"",2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 0, 0, 0, 0, 0, 0, 0, 59, 56, 53, 41, 0, 0, 0, 0, 209 -NA,NA,"",2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 14, 33, 43, 41, 37, 44, 48, 19, 18, 15, 0, 0, 0, 0, 0, 312 -NA,NA,"",2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 67, 147, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 256, 271, 292, 1," 1,107" -NA,NA,"",2018-19,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 161, 179, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 168, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 194, 210, 210, 0, 0, 0, 0, 0, 614 -NA,NA,"",2018-19,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 136, 130, 134, 105, 123, 87, 4, 719 -NA,NA,"",2018-19,Hancock - Hancock Elementary,01210005, 9, 4, 1, 3, 5, 5, 2, 5, 0, 0, 0, 0, 0, 0, 0, 34 -NA,NA,"",2018-19,Hanover - Cedar Elementary,01220004, 71, 88, 66, 78, 74, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2018-19,Hanover - Center Elementary,01220005, 0, 110, 105, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2018-19,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 209, 183, 215, 3, 804 -NA,NA,"",2018-19,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 180, 218, 220, 181, 0, 0, 0, 0, 0, 799 -NA,NA,"",2018-19,Hanover - Sylvester,01220015, 0, 0, 0, 0, 120, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2018-19,Harvard - Bromfield,01250505, 0, 0, 0, 0, 0, 0, 0, 74, 80, 74, 103, 100, 89, 107, 0, 627 -NA,NA,"",2018-19,Harvard - Hildreth Elementary School,01250005, 10, 53, 72, 67, 75, 73, 88, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2018-19,Hatfield - Hatfield Elementary,01270005, 23, 30, 22, 32, 28, 36, 36, 40, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2018-19,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 31, 31, 44, 25, 32, 26, 0, 189 -NA,NA,"",2018-19,Haverhill - Bradford Elementary,01280008, 0, 70, 65, 57, 76, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 0, 88, 80, 67, 87, 89, 159, 161, 201, 171, 0, 0, 0, 0, 0," 1,103" -NA,NA,"",2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 0, 40, 43, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123 -NA,NA,"",2018-19,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 0, 90, 185, 254, 219, 210, 0, 0, 0, 0, 0, 958 -NA,NA,"",2018-19,Haverhill - Crowell,01280020, 0, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95 -NA,NA,"",2018-19,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 132, 136, 130, 140, 0, 0, 0, 0, 0, 538 -NA,NA,"",2018-19,Haverhill - Golden Hill,01280026, 0, 0, 125, 132, 112, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 0, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2018-19,Haverhill - Haverhill Alternative School,01280033, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 8, 10, 3, 6, 0, 36 -NA,NA,"",2018-19,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494, 523, 412, 388, 24," 1,841" -NA,NA,"",2018-19,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 125, 156, 121, 123, 0, 0, 0, 0, 0, 525 -NA,NA,"",2018-19,Haverhill - Moody,01280045, 200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0, 68, 92, 80, 121, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2018-19,Haverhill - Silver Hill Elementary School,01280067, 0, 41, 89, 99, 124, 144, 74, 0, 0, 0, 0, 0, 0, 0, 0, 571 -NA,NA,"",2018-19,Haverhill - TEACH,01280073, 0, 0, 1, 2, 2, 6, 5, 8, 5, 2, 2, 5, 1, 2, 6, 47 -NA,NA,"",2018-19,Haverhill - Tilton,01280075, 0, 65, 127, 109, 117, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2018-19,Haverhill - Walnut Square,01280080, 0, 43, 43, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135 -NA,NA,"",2018-19,Hawlemont - Hawlemont Regional,06850005, 29, 15, 22, 24, 17, 19, 6, 19, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 69, 63, 59, 0, 0, 0, 0, 0, 191 -NA,NA,"",2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 36, 35, 35, 35, 35, 34, 32, 35, 27, 0, 0, 0, 0, 0, 304 -NA,NA,"",2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 21, 21, 22, 21, 32, 30, 30, 0, 0, 0, 0, 0, 217 -NA,NA,"",2018-19,Hingham - East Elementary School,01310005, 76, 64, 66, 74, 78, 71, 91, 0, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2018-19,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 317, 313, 279, 4," 1,253" -NA,NA,"",2018-19,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 322, 339, 358, 0, 0, 0, 0, 0," 1,019" -NA,NA,"",2018-19,Hingham - Plymouth River,01310019, 0, 60, 77, 66, 78, 80, 91, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2018-19,Hingham - South Elementary,01310020, 0, 80, 89, 79, 88, 89, 93, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2018-19,Hingham - Wm L Foster Elementary,01310010, 0, 80, 75, 89, 85, 62, 89, 0, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2018-19,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 99, 110, 102, 78, 69, 78, 57, 1, 594 -NA,NA,"",2018-19,Holbrook - John F Kennedy,01330018, 48, 114, 98, 107, 103, 90, 105, 0, 0, 0, 0, 0, 0, 0, 0, 665 -NA,NA,"",2018-19,Holland - Holland Elementary,01350005, 24, 28, 28, 29, 28, 31, 26, 32, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2018-19,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218, 195, 225, 184, 3, 825 -NA,NA,"",2018-19,Holliston - Miller School,01360007, 0, 0, 0, 0, 220, 223, 230, 0, 0, 0, 0, 0, 0, 0, 0, 673 -NA,NA,"",2018-19,Holliston - Placentino Elementary,01360010, 97, 173, 206, 229, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 705 -NA,NA,"",2018-19,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 237, 230, 219, 0, 0, 0, 0, 0, 686 -NA,NA,"",2018-19,Holyoke - E N White Elementary,01370045, 73, 67, 52, 61, 55, 49, 48, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2018-19,Holyoke - H.B. Lawrence School,01370070, 0, 73, 50, 67, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2018-19,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 387, 388, 405, 328, 0," 1,508" -NA,NA,"",2018-19,Holyoke - Holyoke STEM Academy,01370320, 0, 0, 0, 0, 0, 0, 0, 92, 85, 81, 0, 0, 0, 0, 0, 258 -NA,NA,"",2018-19,Holyoke - Joseph Metcalf School,01370003, 71, 41, 39, 42, 40, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2018-19,Holyoke - Kelly Elementary,01370040, 28, 62, 54, 58, 73, 57, 0, 49, 51, 41, 0, 0, 0, 0, 0, 473 -NA,NA,"",2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0, 49, 40, 63, 52, 55, 70, 69, 60, 58, 0, 0, 0, 0, 0, 516 -NA,NA,"",2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 26, 31, 46, 38, 27, 47, 41, 48, 41, 34, 0, 0, 0, 0, 0, 379 -NA,NA,"",2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 44, 52, 54, 42, 47, 48, 55, 46, 40, 39, 0, 0, 0, 0, 0, 467 -NA,NA,"",2018-19,Holyoke - Morgan Full Service Community School,01370025, 73, 46, 44, 47, 51, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2018-19,Holyoke - Veritas Prep Holyoke,01370075, 0, 0, 0, 0, 0, 0, 139, 0, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2018-19,Holyoke - William R. Peck School,01370030, 0, 0, 0, 0, 0, 62, 51, 53, 45, 66, 0, 0, 0, 0, 0, 277 -NA,NA,"",2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 76, 79, 86, 86, 84, 78, 84, 71, 60, 0, 0, 0, 0, 0, 704 -NA,NA,"",2018-19,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 87, 82, 81, 77, 73, 78, 0, 478 -NA,NA,"",2018-19,Hopedale - Memorial,01380010, 0, 66, 73, 75, 76, 69, 82, 81, 0, 0, 0, 0, 0, 0, 0, 522 -NA,NA,"",2018-19,Hopedale - Park Street School,01380003, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 -NA,NA,"",2018-19,Hopkinton - Elmwood,01390010, 0, 0, 0, 281, 268, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2018-19,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 274, 277, 0, 0, 0, 0, 0, 0, 0, 0, 551 -NA,NA,"",2018-19,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282, 323, 286, 286, 5," 1,182" -NA,NA,"",2018-19,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 301, 234, 313, 0, 0, 0, 0, 0, 848 -NA,NA,"",2018-19,Hopkinton - Hopkinton Pre-School,01390003, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69 -NA,NA,"",2018-19,Hopkinton - Marathon Elementary School,01390005, 0, 260, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2018-19,Hudson - C A Farley,01410030, 9, 77, 84, 77, 82, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2018-19,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 219, 206, 212, 0, 0, 0, 0, 0, 0, 637 -NA,NA,"",2018-19,Hudson - Forest Avenue Elementary,01410015, 0, 61, 83, 69, 75, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2018-19,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215, 161, 158, 179, 181, 0, 894 -NA,NA,"",2018-19,Hudson - Mulready Elementary,01410007, 12, 54, 43, 46, 49, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2018-19,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 77, 71, 80, 1, 287 -NA,NA,"",2018-19,Hull - Lillian M Jacobs,01420015, 51, 64, 58, 56, 56, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2018-19,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 54, 63, 68, 0, 0, 0, 0, 0, 185 -NA,NA,"",2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 100, 100, 100, 100, 104, 103, 91, 99, 0, 797 -NA,NA,"",2018-19,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 139, 137, 119, 3, 541 -NA,NA,"",2018-19,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 124, 146, 137, 0, 0, 0, 0, 0, 407 -NA,NA,"",2018-19,Ipswich - Paul F Doyon Memorial,01440007, 18, 55, 70, 58, 62, 65, 66, 0, 0, 0, 0, 0, 0, 0, 1, 395 -NA,NA,"",2018-19,Ipswich - Winthrop,01440015, 19, 50, 62, 55, 61, 54, 64, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 388, 341, 0, 0, 0, 0, 0, 729 -NA,NA,"",2018-19,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333, 312, 330, 314, 6," 1,295" -NA,NA,"",2018-19,Kingston - Kingston Elementary,01450005, 0, 151, 147, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2018-19,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 164, 140, 141, 155, 0, 0, 0, 0, 0, 0, 0, 600 -NA,NA,"",2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 63, 62, 74, 73, 72, 62, 64, 59, 65, 0, 0, 0, 0, 0, 594 -NA,NA,"",2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 122, 122, 122, 122, 0, 122, 122, 122, 122, 124, 125, 118, 113, 0," 1,456" -NA,NA,"",2018-19,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 90, 87, 96, 74, 85, 97, 0, 0, 0, 0, 0, 529 -NA,NA,"",2018-19,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 138, 167, 143, 169, 0, 0, 0, 0, 0, 617 -NA,NA,"",2018-19,Lawrence - Community Day Arlington,01490009, 0, 98, 117, 127, 118, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 594 -NA,NA,"",2018-19,Lawrence - Edward F. Parthum,01490053, 4, 109, 143, 128, 136, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 661 -NA,NA,"",2018-19,Lawrence - Emily G Wetherbee,01490080, 0, 56, 71, 72, 74, 64, 71, 81, 76, 85, 0, 0, 0, 0, 0, 650 -NA,NA,"",2018-19,Lawrence - Francis M Leahy,01490040, 0, 0, 85, 95, 98, 99, 88, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2018-19,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 130, 132, 125, 130, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 132, 112, 132, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 132, 113, 113, 133, 0, 0, 0, 0, 0, 491 -NA,NA,"",2018-19,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 50, 60, 70, 0, 187 -NA,NA,"",2018-19,Lawrence - James F Hennessey,01490020, 87, 86, 99, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2018-19,Lawrence - John Breen School,01490003, 202, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2018-19,Lawrence - John K Tarbox,01490075, 0, 0, 65, 52, 78, 58, 43, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190 -NA,NA,"",2018-19,Lawrence - Lawrence Family Public Academy,01490011, 54, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2018-19,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 969, 743, 808, 664, 34," 3,218" -NA,NA,"",2018-19,Lawrence - Oliver Partnership School,01490048, 0, 0, 96, 110, 88, 97, 104, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2018-19,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 150, 151, 138, 164, 0, 0, 0, 0, 0, 603 -NA,NA,"",2018-19,Lawrence - Robert Frost,01490018, 0, 120, 106, 120, 132, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 606 -NA,NA,"",2018-19,Lawrence - Rollins Early Childhood Center,01490001, 103, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2018-19,Lawrence - School for Exceptional Studies,01490537, 0, 0, 5, 10, 8, 14, 8, 14, 11, 9, 15, 22, 7, 11, 11, 145 -NA,NA,"",2018-19,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 144, 159, 154, 140, 157, 0, 0, 0, 0, 0, 0, 0, 0, 754 -NA,NA,"",2018-19,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 152, 151, 155, 0, 0, 0, 0, 0, 458 -NA,NA,"",2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 72, 101, 115, 0, 0, 0, 0, 0, 288 -NA,NA,"",2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 107, 113, 114, 0, 0, 0, 0, 0, 334 -NA,NA,"",2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 85, 84, 84, 84, 82, 83, 78, 81, 50, 49, 0, 0, 0, 0, 0, 760 -NA,NA,"",2018-19,Lee - Lee Elementary,01500025, 14, 52, 56, 45, 49, 49, 39, 39, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2018-19,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 56, 58, 68, 65, 53, 57, 3, 360 -NA,NA,"",2018-19,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 107, 127, 100, 0, 470 -NA,NA,"",2018-19,Leicester - Leicester Memorial Elementary,01510005, 0, 0, 0, 0, 96, 107, 126, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2018-19,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 0, 115, 137, 118, 0, 0, 0, 0, 0, 370 -NA,NA,"",2018-19,Leicester - Leicester Primary School,01510010, 77, 86, 112, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2018-19,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 54, 67, 71, 64, 64, 61, 50, 0, 431 -NA,NA,"",2018-19,Lenox - Morris,01520015, 23, 48, 44, 54, 55, 47, 54, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2018-19,Leominster - Bennett,01530003, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101 -NA,NA,"",2018-19,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 162, 134, 151, 0, 682 -NA,NA,"",2018-19,Leominster - Fall Brook,01530007, 0, 74, 112, 113, 118, 114, 100, 0, 0, 0, 0, 0, 0, 0, 0, 631 -NA,NA,"",2018-19,Leominster - Frances Drake School,01530010, 0, 94, 75, 77, 101, 105, 106, 0, 0, 0, 0, 0, 0, 0, 0, 558 -NA,NA,"",2018-19,Leominster - Johnny Appleseed,01530025, 0, 93, 101, 119, 100, 142, 117, 0, 0, 0, 0, 0, 0, 0, 0, 672 -NA,NA,"",2018-19,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 14, 12, 16, 0, 57 -NA,NA,"",2018-19,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 295, 273, 292, 0," 1,072" -NA,NA,"",2018-19,Leominster - Lincoln School,01530005, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 39 -NA,NA,"",2018-19,Leominster - Northwest,01530030, 0, 45, 108, 111, 134, 125, 149, 0, 0, 0, 0, 0, 0, 0, 0, 672 -NA,NA,"",2018-19,Leominster - Priest Street,01530040, 0, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143 -NA,NA,"",2018-19,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 156, 177, 164, 0, 0, 0, 0, 0, 497 -NA,NA,"",2018-19,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 311, 298, 294, 0, 0, 0, 0, 0, 903 -NA,NA,"",2018-19,Leverett - Leverett Elementary,01540005, 17, 16, 16, 18, 15, 21, 15, 17, 0, 0, 0, 0, 0, 0, 0, 135 -NA,NA,"",2018-19,Lexington - Bowman,01550008, 0, 69, 83, 87, 100, 99, 108, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2018-19,Lexington - Bridge,01550006, 0, 62, 77, 90, 101, 104, 107, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2018-19,Lexington - Fiske,01550015, 0, 60, 68, 64, 92, 106, 90, 0, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2018-19,Lexington - Harrington,01550030, 0, 71, 73, 94, 82, 74, 99, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2018-19,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 306, 296, 312, 0, 0, 0, 0, 0, 914 -NA,NA,"",2018-19,Lexington - Joseph Estabrook,01550010, 0, 76, 99, 86, 102, 98, 119, 0, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2018-19,Lexington - Lexington Children's Place,01550001, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69 -NA,NA,"",2018-19,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598, 542, 572, 551, 0," 2,263" -NA,NA,"",2018-19,Lexington - Maria Hastings,01550035, 0, 63, 67, 88, 75, 79, 82, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2018-19,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 313, 278, 328, 0, 0, 0, 0, 0, 919 -NA,NA,"",2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 87, 91, 0, 0, 0, 0, 0, 0, 178 -NA,NA,"",2018-19,Lincoln - Hanscom Middle,01570305, 0, 0, 0, 0, 0, 69, 71, 51, 51, 53, 0, 0, 0, 0, 0, 295 -NA,NA,"",2018-19,Lincoln - Hanscom Primary,01570006, 36, 65, 70, 66, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2018-19,Lincoln - Lincoln School,01570025, 47, 73, 51, 70, 51, 63, 60, 53, 62, 62, 0, 0, 0, 0, 0, 592 -NA,NA,"",2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 406, 395, 353, 369, 5," 1,528" -NA,NA,"",2018-19,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 111, 119, 115, 0, 450 -NA,NA,"",2018-19,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 124, 122, 118, 0, 0, 0, 0, 0, 364 -NA,NA,"",2018-19,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 127, 135, 137, 0, 0, 0, 0, 0, 0, 0, 0, 399 -NA,NA,"",2018-19,Littleton - Shaker Lane Elementary,01580005, 68, 120, 136, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2018-19,Longmeadow - Blueberry Hill,01590005, 0, 68, 64, 74, 74, 64, 94, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2018-19,Longmeadow - Center,01590010, 0, 69, 64, 70, 62, 66, 87, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2018-19,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 112, 116, 112, 0, 0, 0, 0, 0, 340 -NA,NA,"",2018-19,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 227, 257, 242, 0, 975 -NA,NA,"",2018-19,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 106, 108, 100, 0, 0, 0, 0, 0, 314 -NA,NA,"",2018-19,Longmeadow - Wolf Swamp Road,01590025, 45, 59, 59, 51, 51, 65, 59, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2018-19,Lowell - Abraham Lincoln,01600020, 47, 93, 91, 91, 87, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509 -NA,NA,"",2018-19,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 153, 141, 147, 126, 0, 0, 0, 0, 0, 567 -NA,NA,"",2018-19,Lowell - Bartlett Community Partnership,01600090, 37, 45, 49, 45, 39, 48, 52, 52, 53, 54, 0, 0, 0, 0, 0, 474 -NA,NA,"",2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2018-19,Lowell - Charles W Morey,01600030, 49, 93, 89, 88, 92, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 49, 94, 87, 89, 89, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 509 -NA,NA,"",2018-19,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 180, 166, 189, 153, 0, 0, 0, 0, 0, 688 -NA,NA,"",2018-19,Lowell - Dr Gertrude Bailey,01600002, 30, 99, 94, 95, 90, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2018-19,Lowell - Dr. Janice Adie Day School,01600605, 2, 5, 6, 8, 7, 2, 2, 6, 3, 0, 3, 0, 2, 0, 0, 46 -NA,NA,"",2018-19,Lowell - Greenhalge,01600015, 60, 94, 82, 86, 95, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2018-19,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 158, 162, 166, 152, 0, 0, 0, 0, 0, 638 -NA,NA,"",2018-19,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 184, 171, 172, 168, 0, 0, 0, 0, 0, 695 -NA,NA,"",2018-19,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 0, 173, 172, 149, 0, 0, 0, 0, 0, 494 -NA,NA,"",2018-19,Lowell - John J Shaughnessy,01600050, 31, 99, 87, 83, 97, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2018-19,Lowell - Joseph McAvinnue,01600010, 25, 93, 83, 88, 82, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469 -NA,NA,"",2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 162, 167, 178, 168, 0, 0, 0, 0, 0, 675 -NA,NA,"",2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 1, 1, 0, 3, 6, 4, 5, 0, 0, 0, 0, 0, 20 -NA,NA,"",2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 10, 11, 0, 35 -NA,NA,"",2018-19,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 824, 765, 782, 771, 32," 3,174" -NA,NA,"",2018-19,Lowell - Moody Elementary,01600027, 0, 46, 44, 48, 43, 47, 49, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2018-19,Lowell - Pawtucketville Memorial,01600036, 29, 91, 85, 92, 93, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2018-19,Lowell - Peter W Reilly,01600040, 0, 95, 86, 87, 99, 105, 103, 0, 0, 0, 0, 0, 0, 0, 0, 575 -NA,NA,"",2018-19,Lowell - Pyne Arts,01600018, 24, 46, 49, 48, 46, 49, 59, 52, 60, 54, 0, 0, 0, 0, 0, 487 -NA,NA,"",2018-19,Lowell - Rogers STEM Academy,01600005, 0, 96, 93, 79, 86, 107, 109, 113, 55, 0, 0, 0, 0, 0, 0, 738 -NA,NA,"",2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 50, 94, 84, 90, 91, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2018-19,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 28, 27, 44, 1, 118 -NA,NA,"",2018-19,Lowell - Washington,01600055, 25, 50, 43, 42, 40, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 96, 93, 94, 91, 94, 82, 77, 76, 77, 0, 0, 0, 0, 0, 820 -NA,NA,"",2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 23, 21, 27, 0, 82 -NA,NA,"",2018-19,Ludlow - Chapin Street Elementary School,01610020, 0, 0, 0, 165, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2018-19,Ludlow - East Street Elementary School,01610010, 89, 148, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2018-19,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256, 229, 194, 209, 3, 891 -NA,NA,"",2018-19,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 211, 191, 208, 0, 0, 0, 0, 0, 610 -NA,NA,"",2018-19,Ludlow - Veterans Park Elementary,01610023, 0, 0, 0, 0, 0, 167, 204, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 8 -NA,NA,"",2018-19,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 122, 101, 109, 0, 458 -NA,NA,"",2018-19,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 126, 141, 126, 0, 0, 0, 0, 0, 393 -NA,NA,"",2018-19,Lunenburg - Lunenburg Primary School,01620010, 42, 144, 114, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 121, 115, 136, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2018-19,Lynn - A Drewicz Elementary,01630016, 0, 75, 75, 72, 79, 85, 113, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2018-19,Lynn - Aborn,01630011, 0, 45, 45, 36, 40, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2018-19,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 529, 462, 438, 0, 0, 0, 0, 0," 1,429" -NA,NA,"",2018-19,Lynn - Brickett Elementary,01630020, 0, 58, 57, 52, 56, 59, 55, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2018-19,Lynn - Capt William G Shoemaker,01630090, 5, 55, 63, 55, 41, 53, 46, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2018-19,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472, 418, 414, 412, 0," 1,716" -NA,NA,"",2018-19,Lynn - Cobbet Elementary,01630035, 0, 113, 94, 99, 94, 94, 109, 0, 0, 0, 0, 0, 0, 0, 0, 603 -NA,NA,"",2018-19,Lynn - E J Harrington,01630045, 83, 97, 99, 104, 77, 99, 104, 0, 0, 0, 0, 0, 0, 0, 0, 663 -NA,NA,"",2018-19,Lynn - Early Childhood Center,01630004, 104, 181, 3, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2018-19,Lynn - Edward A Sisson,01630095, 0, 64, 74, 81, 72, 71, 82, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 3, 8, 13, 21, 15, 15, 16, 0, 91 -NA,NA,"",2018-19,Lynn - Hood,01630055, 0, 58, 86, 74, 83, 98, 75, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2018-19,Lynn - Ingalls,01630060, 0, 89, 110, 99, 95, 117, 124, 0, 0, 0, 0, 0, 0, 0, 0, 634 -NA,NA,"",2018-19,Lynn - Julia F Callahan,01630030, 40, 62, 55, 61, 78, 77, 67, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2018-19,Lynn - Lincoln-Thomson,01630070, 0, 31, 39, 45, 34, 46, 42, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2018-19,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 528, 503, 416, 339, 0," 1,786" -NA,NA,"",2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 48, 0, 0, 0, 0, 0, 0, 2, 0, 3, 275, 256, 247, 212, 20," 1,063" -NA,NA,"",2018-19,Lynn - Lynn Woods,01630075, 0, 28, 26, 28, 23, 37, 35, 0, 0, 0, 0, 0, 0, 0, 0, 177 -NA,NA,"",2018-19,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 248, 218, 205, 0, 0, 0, 0, 0, 671 -NA,NA,"",2018-19,Lynn - Robert L Ford,01630050, 0, 0, 101, 96, 116, 89, 84, 0, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2018-19,Lynn - Sewell-Anderson,01630085, 0, 25, 52, 53, 48, 58, 45, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2018-19,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 449, 465, 402, 0, 0, 0, 0, 0," 1,316" -NA,NA,"",2018-19,Lynn - Tracy,01630100, 0, 0, 93, 94, 79, 85, 76, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2018-19,Lynn - Washington Elementary School,01630005, 0, 77, 77, 80, 77, 66, 73, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2018-19,Lynn - William R Fallon,01630080, 0, 1, 5, 6, 12, 10, 13, 0, 0, 0, 0, 0, 0, 0, 0, 47 -NA,NA,"",2018-19,Lynn - Wm P Connery,01630040, 19, 87, 107, 93, 101, 99, 108, 0, 0, 0, 0, 0, 0, 0, 0, 614 -NA,NA,"",2018-19,Lynnfield - Huckleberry Hill,01640010, 0, 79, 84, 86, 101, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2018-19,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 167, 153, 167, 0, 629 -NA,NA,"",2018-19,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 165, 167, 177, 155, 0, 0, 0, 0, 0, 664 -NA,NA,"",2018-19,Lynnfield - Lynnfield Preschool,01640005, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42 -NA,NA,"",2018-19,Lynnfield - Summer Street,01640020, 0, 85, 93, 68, 87, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 49, 0, 98 -NA,NA,"",2018-19,Malden - Beebe,01650003, 0, 116, 101, 96, 103, 102, 91, 103, 101, 90, 0, 0, 0, 0, 0, 903 -NA,NA,"",2018-19,Malden - Ferryway,01650013, 0, 104, 101, 96, 101, 101, 96, 126, 97, 94, 0, 0, 0, 0, 0, 916 -NA,NA,"",2018-19,Malden - Forestdale,01650027, 0, 59, 46, 59, 60, 76, 72, 70, 60, 57, 0, 0, 0, 0, 0, 559 -NA,NA,"",2018-19,Malden - Linden,01650047, 0, 81, 90, 101, 89, 107, 90, 106, 96, 93, 0, 0, 0, 0, 0, 853 -NA,NA,"",2018-19,Malden - Malden Early Learning Center,01650049, 319, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2018-19,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502, 440, 465, 425, 13," 1,845" -NA,NA,"",2018-19,Malden - Salemwood,01650057, 0, 100, 126, 142, 139, 144, 129, 129, 131, 129, 0, 0, 0, 0, 0," 1,169" -NA,NA,"",2018-19,Manchester Essex Regional - Essex Elementary,06980020, 0, 31, 38, 29, 37, 39, 48, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 122, 113, 107, 0, 471 -NA,NA,"",2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 127, 113, 128, 0, 0, 0, 0, 0, 368 -NA,NA,"",2018-19,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 10, 43, 44, 56, 44, 59, 70, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2018-19,Mansfield - Everett W Robinson,01670007, 0, 222, 234, 249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 705 -NA,NA,"",2018-19,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 269, 299, 334, 0, 0, 0, 0, 0, 902 -NA,NA,"",2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 260, 256, 280, 0, 0, 0, 0, 0, 0, 0, 0, 796 -NA,NA,"",2018-19,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274, 341, 311, 327, 14," 1,267" -NA,NA,"",2018-19,Mansfield - Roland Green School,01670003, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114 -NA,NA,"",2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 29, 45, 42, 14, 0, 130 -NA,NA,"",2018-19,Marblehead - Glover,01680020, 45, 69, 87, 94, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2018-19,Marblehead - L H Coffin,01680010, 0, 0, 61, 83, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2018-19,Marblehead - Malcolm L Bell,01680005, 0, 107, 55, 83, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2018-19,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 267, 261, 263, 5," 1,054" -NA,NA,"",2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 230, 236, 0, 0, 0, 0, 0, 466 -NA,NA,"",2018-19,Marblehead - Village School,01680016, 0, 0, 0, 0, 0, 221, 197, 224, 0, 0, 0, 0, 0, 0, 0, 642 -NA,NA,"",2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 45, 51, 52, 37, 41, 0, 0, 0, 0, 0, 226 -NA,NA,"",2018-19,Marion - Sippican,01690005, 22, 55, 58, 59, 61, 55, 61, 76, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 402, 381, 299, 320, 0, 0, 0, 0, 0," 1,402" -NA,NA,"",2018-19,Marlborough - Charles Jaworek School,01700030, 0, 164, 145, 162, 158, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 777 -NA,NA,"",2018-19,Marlborough - Early Childhood Center,01700006, 175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2018-19,Marlborough - Francis J Kane,01700008, 0, 107, 114, 117, 113, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592 -NA,NA,"",2018-19,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 257, 257, 299, 8," 1,075" -NA,NA,"",2018-19,Marlborough - Richer,01700025, 0, 137, 130, 117, 142, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2018-19,Marshfield - Daniel Webster,01710015, 71, 44, 51, 51, 58, 47, 43, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,Marshfield - Eames Way School,01710005, 0, 35, 44, 40, 41, 41, 41, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2018-19,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 340, 280, 340, 0, 0, 0, 0, 0, 960 -NA,NA,"",2018-19,Marshfield - Gov Edward Winslow,01710020, 26, 56, 58, 72, 77, 56, 70, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2018-19,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 317, 340, 335, 0," 1,331" -NA,NA,"",2018-19,Marshfield - Martinson Elementary,01710025, 29, 66, 62, 74, 48, 74, 70, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2018-19,Marshfield - South River,01710010, 0, 32, 48, 65, 49, 67, 63, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 171, 166, 152, 0, 642 -NA,NA,"",2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0, 15, 14, 12, 19, 14, 17, 21, 20, 19, 10, 6, 5, 10, 0, 182 -NA,NA,"",2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0, 64, 62, 64, 61, 61, 60, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2018-19,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 292, 283, 269, 0," 1,140" -NA,NA,"",2018-19,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 309, 336, 0, 0, 0, 0, 0, 645 -NA,NA,"",2018-19,Mashpee - Kenneth Coombs School,01720005, 94, 97, 114, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2018-19,Mashpee - Mashpee High,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 120, 108, 111, 0, 454 -NA,NA,"",2018-19,Mashpee - Mashpee Middle School,01720020, 0, 0, 0, 0, 0, 0, 0, 0, 111, 140, 0, 0, 0, 0, 0, 251 -NA,NA,"",2018-19,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 119, 116, 128, 140, 0, 0, 0, 0, 0, 0, 0, 503 -NA,NA,"",2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 52, 90, 97, 94, 95, 97, 94, 96, 92, 95, 95, 79, 73, 69, 0," 1,218" -NA,NA,"",2018-19,Mattapoisett - Center,01730005, 26, 51, 60, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2018-19,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 55, 67, 70, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2018-19,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 92, 115, 100, 86, 91, 0, 0, 0, 0, 0, 484 -NA,NA,"",2018-19,Maynard - Green Meadow,01740010, 54, 110, 115, 107, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2018-19,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 86, 93, 102, 0, 375 -NA,NA,"",2018-19,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 189, 188, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2018-19,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 198, 206, 190, 0, 799 -NA,NA,"",2018-19,Medfield - Memorial School,01750003, 52, 184, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2018-19,Medfield - Ralph Wheelock School,01750007, 0, 0, 0, 202, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2018-19,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 186, 195, 217, 0, 0, 0, 0, 0, 598 -NA,NA,"",2018-19,Medford - Brooks School,01760130, 29, 77, 93, 83, 85, 74, 76, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,Medford - Christopher Columbus,01760140, 12, 74, 57, 80, 52, 61, 69, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2018-19,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 8, 0, 14 -NA,NA,"",2018-19,Medford - John J McGlynn Elementary School,01760068, 18, 67, 76, 65, 75, 87, 85, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2018-19,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 145, 140, 163, 0, 0, 0, 0, 0, 448 -NA,NA,"",2018-19,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 142, 166, 164, 0, 0, 0, 0, 0, 472 -NA,NA,"",2018-19,Medford - Medford High,01760505, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314, 308, 313, 343, 3," 1,340" -NA,NA,"",2018-19,Medford - Milton Fuller Roberts,01760150, 14, 87, 81, 75, 86, 112, 108, 0, 0, 0, 0, 0, 0, 0, 0, 563 -NA,NA,"",2018-19,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 158, 170, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2018-19,Medway - John D Mc Govern Elementary,01770013, 33, 145, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2018-19,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 158, 193, 177, 0, 708 -NA,NA,"",2018-19,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 183, 168, 166, 175, 0, 0, 0, 0, 0, 692 -NA,NA,"",2018-19,Melrose - Early Childhood Center,01780003, 290, 29, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2018-19,Melrose - Herbert Clark Hoover,01780017, 0, 59, 60, 46, 42, 44, 39, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2018-19,Melrose - Horace Mann,01780025, 0, 46, 48, 49, 44, 47, 43, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2018-19,Melrose - Lincoln,01780020, 0, 64, 69, 80, 82, 66, 68, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2018-19,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, 238, 274, 256, 6," 1,014" -NA,NA,"",2018-19,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 273, 260, 253, 0, 0, 0, 0, 0, 786 -NA,NA,"",2018-19,Melrose - Roosevelt,01780035, 0, 61, 63, 90, 82, 62, 61, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2018-19,Melrose - Winthrop,01780050, 0, 62, 84, 68, 68, 61, 68, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2018-19,Mendon-Upton - Henry P Clough,07100179, 25, 57, 75, 69, 76, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2018-19,Mendon-Upton - Memorial School,07100001, 27, 97, 99, 77, 89, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2018-19,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 194, 201, 198, 200, 0, 0, 0, 0, 0, 793 -NA,NA,"",2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 164, 158, 160, 4, 657 -NA,NA,"",2018-19,Methuen - Comprehensive Grammar School,01810050, 28, 99, 100, 114, 116, 104, 132, 127, 103, 132, 0, 0, 0, 0, 0," 1,055" -NA,NA,"",2018-19,Methuen - Donald P Timony Grammar,01810060, 42, 133, 151, 109, 131, 149, 157, 147, 152, 146, 0, 0, 0, 0, 0," 1,317" -NA,NA,"",2018-19,Methuen - Marsh Grammar School,01810030, 26, 104, 118, 152, 121, 127, 128, 136, 141, 139, 0, 0, 0, 0, 0," 1,192" -NA,NA,"",2018-19,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506, 518, 463, 492, 3," 1,982" -NA,NA,"",2018-19,Methuen - Tenney Grammar School,01810055, 39, 128, 142, 135, 154, 143, 143, 180, 161, 156, 0, 0, 0, 0, 0," 1,381" -NA,NA,"",2018-19,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 104, 103, 102, 113, 126, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2018-19,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 265, 263, 257, 0, 0, 0, 0, 0, 785 -NA,NA,"",2018-19,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 134, 119, 115, 111, 136, 0, 0, 0, 0, 0, 0, 0, 0, 615 -NA,NA,"",2018-19,Middleborough - Memorial Early Childhood Center,01820011, 54, 205, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2018-19,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 190, 170, 179, 3, 769 -NA,NA,"",2018-19,Middleton - Fuller Meadow,01840003, 0, 106, 78, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2018-19,Middleton - Howe-Manning,01840005, 79, 0, 0, 0, 78, 89, 102, 84, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2018-19,Milford - Brookside,01850065, 0, 156, 156, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2018-19,Milford - Memorial,01850010, 0, 137, 153, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2018-19,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 314, 296, 262, 11," 1,170" -NA,NA,"",2018-19,Milford - Shining Star Early Childhood Center,01850075, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2018-19,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 341, 333, 361, 0, 0, 0, 0, 0," 1,035" -NA,NA,"",2018-19,Milford - Woodland,01850090, 0, 0, 0, 0, 326, 336, 329, 0, 0, 0, 0, 0, 0, 0, 0, 991 -NA,NA,"",2018-19,Millbury - Elmwood Street,01860017, 72, 109, 130, 103, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2018-19,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 136, 142, 96, 116, 115, 96, 2, 703 -NA,NA,"",2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 0, 146, 139, 158, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2018-19,Millis - Clyde F Brown,01870005, 49, 81, 96, 83, 79, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2018-19,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 92, 94, 97, 0, 356 -NA,NA,"",2018-19,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 77, 93, 100, 106, 0, 0, 0, 0, 0, 376 -NA,NA,"",2018-19,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 341, 300, 294, 0, 0, 0, 0, 0, 935 -NA,NA,"",2018-19,Milton - Collicot,01890005, 0, 96, 111, 124, 104, 122, 101, 0, 0, 0, 0, 0, 0, 0, 0, 658 -NA,NA,"",2018-19,Milton - Cunningham School,01890007, 78, 94, 87, 93, 95, 83, 70, 0, 0, 0, 0, 0, 0, 0, 0, 600 -NA,NA,"",2018-19,Milton - Glover,01890010, 0, 101, 107, 93, 96, 89, 112, 0, 0, 0, 0, 0, 0, 0, 0, 598 -NA,NA,"",2018-19,Milton - Milton High,01890505, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271, 272, 234, 245, 0," 1,036" -NA,NA,"",2018-19,Milton - Tucker,01890020, 42, 64, 67, 71, 60, 67, 67, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 147, 129, 118, 0, 515 -NA,NA,"",2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 46, 30, 40, 33, 37, 35, 33, 33, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2018-19,Mohawk Trail - Colrain Central,07170010, 14, 12, 6, 13, 18, 18, 10, 15, 0, 0, 0, 0, 0, 0, 0, 106 -NA,NA,"",2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 68, 54, 62, 51, 47, 65, 5, 352 -NA,NA,"",2018-19,Mohawk Trail - Sanderson Academy,07170020, 29, 22, 28, 20, 12, 18, 13, 17, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 21, 34, 32, 45, 42, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 53, 90, 109, 96, 100, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 556 -NA,NA,"",2018-19,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 135, 114, 132, 114, 4, 642 -NA,NA,"",2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 149, 181, 134, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2018-19,Monson - Granite Valley Middle,01910310, 0, 0, 0, 0, 0, 0, 72, 61, 68, 50, 0, 0, 0, 0, 0, 251 -NA,NA,"",2018-19,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 64, 57, 67, 3, 264 -NA,NA,"",2018-19,Monson - Quarry Hill Community School,01910025, 57, 71, 61, 69, 73, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 367, 361, 319, 0," 1,422" -NA,NA,"",2018-19,Mount Greylock - Lanesborough Elementary,07150005, 15, 29, 24, 34, 20, 25, 31, 30, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2018-19,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 122, 90, 79, 88, 84, 86, 3, 552 -NA,NA,"",2018-19,Mount Greylock - Williamstown Elementary,07150010, 12, 59, 62, 57, 72, 62, 55, 57, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 152, 155, 128, 126, 128, 147, 147, 132, 114, 79, 88, 90, 89, 0," 1,575" -NA,NA,"",2018-19,Nahant - Johnson,01960010, 33, 12, 14, 18, 21, 17, 13, 23, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2018-19,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 123, 122, 136, 0, 0, 0, 0, 0, 381 -NA,NA,"",2018-19,Nantucket - Nantucket Elementary,01970005, 51, 111, 123, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2018-19,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 119, 149, 129, 0, 532 -NA,NA,"",2018-19,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 114, 125, 140, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2018-19,Narragansett - Baldwinville Elementary,07200005, 0, 0, 0, 91, 89, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2018-19,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 127, 122, 115, 114, 0, 0, 0, 0, 0, 478 -NA,NA,"",2018-19,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94, 66, 81, 79, 4, 324 -NA,NA,"",2018-19,Narragansett - Phillipston Memorial,07200003, 71, 20, 18, 18, 20, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2018-19,Narragansett - Templeton Center,07200020, 0, 94, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2018-19,Nashoba - Center School,07250020, 29, 86, 69, 84, 79, 104, 97, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2018-19,Nashoba - Florence Sawyer School,07250025, 23, 70, 65, 76, 91, 67, 78, 92, 68, 87, 0, 0, 0, 0, 0, 717 -NA,NA,"",2018-19,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 95, 105, 79, 0, 0, 0, 0, 0, 279 -NA,NA,"",2018-19,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 80, 93, 70, 0, 0, 0, 0, 0, 243 -NA,NA,"",2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 31, 53, 77, 72, 63, 94, 73, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2018-19,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 243, 216, 246, 7, 978 -NA,NA,"",2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 180, 167, 167, 0, 684 -NA,NA,"",2018-19,Natick - Bennett-Hemenway,01980005, 0, 100, 110, 117, 120, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2018-19,Natick - Brown,01980010, 0, 107, 88, 111, 102, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2018-19,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 215, 162, 162, 162, 0, 0, 0, 0, 0, 701 -NA,NA,"",2018-19,Natick - Johnson,01980031, 0, 46, 57, 48, 46, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2018-19,Natick - Lilja Elementary,01980035, 0, 87, 102, 69, 88, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2018-19,Natick - Memorial,01980043, 0, 84, 79, 89, 72, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2018-19,Natick - Natick High,01980505, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 408, 430, 378, 0," 1,732" -NA,NA,"",2018-19,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 235, 244, 240, 221, 0, 0, 0, 0, 0, 940 -NA,NA,"",2018-19,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213, 249, 231, 240, 4, 937 -NA,NA,"",2018-19,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 192, 196, 183, 0, 0, 0, 0, 0, 571 -NA,NA,"",2018-19,Needham - Broadmeadow,01990005, 0, 97, 83, 95, 96, 88, 107, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2018-19,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2018-19,Needham - Hillside Elementary,01990035, 0, 75, 86, 90, 88, 76, 87, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2018-19,Needham - John Eliot,01990020, 0, 60, 70, 59, 68, 69, 76, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2018-19,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 450, 428, 402, 436, 2," 1,718" -NA,NA,"",2018-19,Needham - Newman Elementary,01990050, 82, 101, 122, 102, 114, 96, 139, 0, 0, 0, 0, 0, 0, 0, 0, 756 -NA,NA,"",2018-19,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 439, 392, 0, 0, 0, 0, 0, 831 -NA,NA,"",2018-19,Needham - William Mitchell,01990040, 0, 78, 69, 88, 94, 86, 81, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 40, 40, 40, 40, 44, 43, 68, 66, 72, 66, 65, 62, 0, 0, 0, 646 -NA,NA,"",2018-19,New Bedford - Abraham Lincoln,02010095, 0, 105, 129, 117, 114, 108, 115, 0, 0, 0, 0, 0, 0, 0, 0, 688 -NA,NA,"",2018-19,New Bedford - Alfred J Gomes,02010063, 0, 96, 91, 101, 89, 94, 78, 0, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2018-19,New Bedford - Betsey B Winslow,02010140, 0, 46, 44, 49, 44, 61, 38, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2018-19,New Bedford - Carlos Pacheco,02010105, 0, 51, 57, 57, 54, 64, 50, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2018-19,New Bedford - Casimir Pulaski,02010123, 105, 100, 98, 106, 99, 106, 88, 0, 0, 0, 0, 0, 0, 0, 0, 702 -NA,NA,"",2018-19,New Bedford - Charles S Ashley,02010010, 0, 46, 41, 40, 54, 53, 55, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 31, 56, 44, 52, 36, 41, 33, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2018-19,New Bedford - Ellen R Hathaway,02010075, 50, 41, 42, 38, 51, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2018-19,New Bedford - Elwyn G Campbell,02010020, 69, 32, 35, 39, 28, 37, 30, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2018-19,New Bedford - Hayden/McFadden,02010078, 79, 111, 109, 113, 107, 89, 93, 0, 0, 0, 0, 0, 0, 0, 0, 701 -NA,NA,"",2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 43, 62, 66, 56, 63, 63, 60, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2018-19,New Bedford - James B Congdon,02010040, 0, 54, 55, 47, 54, 60, 53, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2018-19,New Bedford - Jireh Swift,02010130, 0, 24, 22, 32, 34, 46, 39, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2018-19,New Bedford - John Avery Parker,02010115, 28, 44, 33, 35, 39, 34, 35, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2018-19,New Bedford - John B Devalles,02010050, 0, 50, 71, 59, 53, 65, 57, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2018-19,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 364, 312, 274, 0, 0, 0, 0, 0, 950 -NA,NA,"",2018-19,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639, 537, 542, 453, 0," 2,171" -NA,NA,"",2018-19,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 402, 425, 405, 0, 0, 0, 0, 0," 1,232" -NA,NA,"",2018-19,New Bedford - Renaissance Community Innovation School,02010124, 26, 22, 23, 30, 35, 37, 23, 0, 0, 0, 0, 0, 0, 0, 0, 196 -NA,NA,"",2018-19,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 322, 273, 266, 0, 0, 0, 0, 0, 861 -NA,NA,"",2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 71, 105, 106, 118, 127, 127, 137, 0, 0, 0, 0, 0, 0, 0, 0, 791 -NA,NA,"",2018-19,New Bedford - Thomas R Rodman,02010125, 0, 39, 37, 43, 26, 36, 19, 0, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2018-19,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 2, 6, 8, 6, 20, 17, 14, 11, 11, 0, 95 -NA,NA,"",2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 2, 9, 16, 14, 27, 29, 17, 0, 114 -NA,NA,"",2018-19,New Bedford - William H Taylor,02010135, 49, 46, 35, 43, 41, 36, 27, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 109, 114, 108, 109, 92, 0, 0, 0, 532 -NA,NA,"",2018-19,New Salem-Wendell - Swift River,07280015, 19, 21, 16, 18, 18, 15, 20, 22, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2018-19,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 136, 174, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2018-19,Newburyport - Francis T Bresnahan Elementary,02040005, 74, 134, 126, 136, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 616 -NA,NA,"",2018-19,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 210, 182, 184, 5, 759 -NA,NA,"",2018-19,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 158, 200, 189, 0, 0, 0, 0, 0, 547 -NA,NA,"",2018-19,Newton - A E Angier,02070005, 0, 84, 73, 97, 86, 89, 74, 0, 0, 0, 0, 0, 0, 0, 0, 503 -NA,NA,"",2018-19,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 170, 157, 174, 0, 0, 0, 0, 0, 501 -NA,NA,"",2018-19,Newton - Bowen,02070015, 0, 54, 67, 60, 66, 55, 95, 0, 0, 0, 0, 0, 0, 0, 0, 397 -NA,NA,"",2018-19,Newton - C C Burr,02070020, 0, 55, 69, 51, 62, 72, 75, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2018-19,Newton - Cabot,02070025, 0, 60, 59, 61, 67, 70, 69, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2018-19,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 274, 231, 239, 0, 0, 0, 0, 0, 744 -NA,NA,"",2018-19,Newton - Countryside,02070040, 0, 59, 64, 66, 67, 81, 76, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2018-19,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 323, 350, 301, 0, 0, 0, 0, 0, 974 -NA,NA,"",2018-19,Newton - Franklin,02070055, 0, 59, 64, 85, 61, 86, 72, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2018-19,Newton - Horace Mann,02070075, 0, 61, 61, 70, 73, 62, 72, 0, 0, 0, 0, 0, 0, 0, 0, 399 -NA,NA,"",2018-19,Newton - John Ward,02070120, 0, 41, 39, 47, 51, 58, 60, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2018-19,Newton - Lincoln-Eliot,02070070, 0, 57, 62, 65, 51, 63, 67, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,Newton - Mason-Rice,02070080, 0, 56, 68, 77, 92, 98, 96, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2018-19,Newton - Memorial Spaulding,02070105, 0, 60, 79, 79, 82, 89, 75, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2018-19,Newton - Newton Early Childhood Center,02070108, 212, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2018-19,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 541, 498, 522, 544, 19," 2,124" -NA,NA,"",2018-19,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 479, 496, 490, 446, 0," 1,911" -NA,NA,"",2018-19,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 206, 193, 231, 0, 0, 0, 0, 0, 630 -NA,NA,"",2018-19,Newton - Peirce,02070100, 0, 44, 44, 45, 43, 58, 37, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2018-19,Newton - Underwood,02070115, 0, 43, 40, 49, 45, 66, 47, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2018-19,Newton - Williams,02070125, 0, 47, 51, 42, 58, 37, 43, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2018-19,Newton - Zervas,02070130, 0, 68, 67, 86, 66, 74, 66, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2018-19,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 149, 118, 135, 117, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2018-19,Norfolk - H Olive Day,02080015, 70, 124, 119, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 145, 120, 138, 0, 557 -NA,NA,"",2018-19,North Adams - Brayton,02090035, 20, 34, 34, 29, 26, 37, 35, 41, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2018-19,North Adams - Colegrove Park Elementary,02090008, 44, 39, 37, 49, 40, 35, 39, 46, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2018-19,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 114, 103, 58, 89, 68, 89, 3, 524 -NA,NA,"",2018-19,North Adams - Greylock,02090015, 42, 32, 29, 28, 33, 22, 36, 34, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 128, 343, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2018-19,North Andover - Annie L Sargent School,02110018, 0, 0, 96, 87, 94, 100, 94, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2018-19,North Andover - Atkinson,02110001, 0, 0, 67, 75, 66, 74, 77, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2018-19,North Andover - Franklin,02110010, 0, 0, 68, 76, 72, 84, 84, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2018-19,North Andover - Kittredge,02110015, 0, 0, 48, 49, 41, 52, 45, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2018-19,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 377, 324, 397, 0," 1,462" -NA,NA,"",2018-19,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 363, 366, 370, 0, 0, 0, 0, 0," 1,099" -NA,NA,"",2018-19,North Andover - Thomson,02110020, 0, 0, 41, 59, 63, 51, 74, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2018-19,North Attleborough - Amvet Boulevard,02120007, 0, 39, 69, 61, 66, 71, 72, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2018-19,North Attleborough - Community,02120030, 0, 54, 42, 41, 66, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2018-19,North Attleborough - Falls,02120010, 0, 25, 46, 34, 54, 41, 47, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 102, 89, 124, 95, 93, 111, 0, 0, 0, 0, 0, 0, 0, 0, 614 -NA,NA,"",2018-19,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270, 254, 294, 290, 0," 1,108" -NA,NA,"",2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134 -NA,NA,"",2018-19,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 391, 364, 346, 0, 0, 0, 0, 0," 1,101" -NA,NA,"",2018-19,North Attleborough - Roosevelt Avenue,02120015, 0, 49, 35, 42, 48, 34, 50, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2018-19,North Brookfield - North Brookfield Elementary,02150015, 25, 38, 38, 49, 34, 37, 49, 46, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2018-19,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 63, 46, 39, 28, 37, 41, 0, 254 -NA,NA,"",2018-19,North Middlesex - Ashby Elementary,07350010, 0, 28, 37, 34, 36, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2018-19,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 131, 133, 124, 102, 0, 0, 0, 0, 0, 490 -NA,NA,"",2018-19,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 123, 148, 128, 127, 0, 0, 0, 0, 0, 526 -NA,NA,"",2018-19,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205, 206, 218, 181, 20, 830 -NA,NA,"",2018-19,North Middlesex - Spaulding Memorial,07350005, 0, 88, 85, 85, 80, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 85, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89 -NA,NA,"",2018-19,North Middlesex - Varnum Brook,07350035, 0, 103, 102, 104, 116, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2018-19,North Reading - E Ethel Little School,02170003, 56, 22, 52, 44, 54, 44, 51, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2018-19,North Reading - J Turner Hood,02170010, 0, 62, 51, 53, 54, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2018-19,North Reading - L D Batchelder,02170005, 0, 66, 71, 68, 77, 67, 84, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2018-19,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 192, 201, 184, 4, 752 -NA,NA,"",2018-19,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 183, 159, 198, 0, 0, 0, 0, 0, 540 -NA,NA,"",2018-19,Northampton - Bridge Street,02100005, 38, 37, 48, 37, 30, 37, 30, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2018-19,Northampton - Jackson Street,02100020, 0, 54, 51, 63, 56, 67, 61, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2018-19,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 203, 191, 220, 0, 0, 0, 0, 0, 614 -NA,NA,"",2018-19,Northampton - Leeds,02100025, 42, 50, 44, 42, 43, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2018-19,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 212, 203, 222, 1, 849 -NA,NA,"",2018-19,Northampton - R. K. Finn Ryan Road,02100029, 0, 33, 44, 39, 31, 36, 39, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117, 131, 119, 128, 0, 495 -NA,NA,"",2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 394, 344, 368, 10," 1,450" -NA,NA,"",2018-19,Northborough - Fannie E Proctor,02130015, 0, 36, 35, 40, 43, 50, 34, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2018-19,Northborough - Lincoln Street,02130003, 0, 41, 40, 40, 48, 43, 37, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2018-19,Northborough - Marguerite E Peaslee,02130014, 0, 40, 38, 54, 63, 42, 40, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2018-19,Northborough - Marion E Zeh,02130020, 0, 34, 40, 40, 43, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2018-19,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 181, 201, 197, 0, 0, 0, 0, 0, 579 -NA,NA,"",2018-19,Northbridge - Northbridge Elementary,02140005, 77, 132, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2018-19,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 122, 120, 132, 3, 545 -NA,NA,"",2018-19,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 186, 158, 169, 184, 0, 0, 0, 0, 0, 697 -NA,NA,"",2018-19,Northbridge - W Edward Balmer,02140001, 0, 0, 0, 149, 151, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 329, 301, 289, 0," 1,249" -NA,NA,"",2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 130, 123, 109, 0, 496 -NA,NA,"",2018-19,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 182, 200, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2018-19,Norton - J C Solmonese,02180015, 96, 89, 107, 99, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2018-19,Norton - L G Nourse Elementary,02180010, 0, 58, 69, 71, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2018-19,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 180, 180, 185, 6, 716 -NA,NA,"",2018-19,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 203, 190, 194, 0, 0, 0, 0, 0, 587 -NA,NA,"",2018-19,Norwell - Grace Farrar Cole,02190005, 19, 79, 79, 73, 82, 70, 76, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2018-19,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159, 162, 191, 172, 0, 684 -NA,NA,"",2018-19,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 182, 159, 169, 0, 0, 0, 0, 0, 510 -NA,NA,"",2018-19,Norwell - William G Vinal,02190020, 22, 73, 83, 79, 86, 89, 88, 0, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2018-19,Norwood - Balch,02200005, 0, 0, 69, 66, 53, 62, 54, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2018-19,Norwood - Charles J Prescott,02200025, 0, 0, 55, 59, 49, 43, 37, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2018-19,Norwood - Cornelius M Callahan,02200010, 0, 0, 48, 51, 37, 40, 30, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 255, 237, 258, 0, 0, 0, 0, 0, 750 -NA,NA,"",2018-19,Norwood - F A Cleveland,02200015, 0, 0, 60, 64, 82, 70, 51, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2018-19,Norwood - George F. Willett,02200075, 105, 264, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2018-19,Norwood - John P Oldham,02200020, 0, 0, 52, 42, 45, 45, 54, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2018-19,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 242, 245, 236, 7, 985 -NA,NA,"",2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 12, 49, 30, 40, 55, 47, 52, 54, 47, 49, 0, 0, 0, 0, 0, 435 -NA,NA,"",2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 137, 140, 129, 0, 550 -NA,NA,"",2018-19,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 196, 178, 189, 6, 775 -NA,NA,"",2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 212, 225, 0, 0, 0, 0, 0, 437 -NA,NA,"",2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 40, 40, 40, 40, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2018-19,Orange - Dexter Park,02230010, 0, 0, 0, 0, 78, 64, 97, 87, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2018-19,Orange - Fisher Hill,02230015, 55, 69, 68, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2018-19,Orleans - Orleans Elementary,02240005, 0, 32, 37, 36, 38, 30, 45, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2018-19,Oxford - Alfred M Chaffee,02260010, 39, 117, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2018-19,Oxford - Clara Barton,02260005, 0, 0, 0, 139, 133, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2018-19,Oxford - Oxford High,02260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 99, 98, 97, 91, 8, 532 -NA,NA,"",2018-19,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 125, 155, 148, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 5, 8, 0, 19 -NA,NA,"",2018-19,Palmer - Old Mill Pond,02270008, 36, 102, 101, 117, 90, 96, 114, 0, 0, 0, 0, 0, 0, 0, 0, 656 -NA,NA,"",2018-19,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 121, 105, 120, 69, 76, 79, 105, 4, 679 -NA,NA,"",2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 170, 165, 133, 0, 648 -NA,NA,"",2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 73, 60, 63, 0, 275 -NA,NA,"",2018-19,Peabody - Captain Samuel Brown,02290005, 0, 51, 65, 59, 56, 55, 72, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2018-19,Peabody - Center,02290015, 0, 68, 67, 62, 54, 67, 66, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2018-19,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 477, 471, 491, 0, 0, 0, 0, 0," 1,439" -NA,NA,"",2018-19,Peabody - John E Burke,02290007, 0, 39, 31, 32, 48, 52, 62, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2018-19,Peabody - John E. McCarthy,02290016, 119, 45, 41, 37, 35, 44, 41, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2018-19,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358, 352, 349, 366, 11," 1,436" -NA,NA,"",2018-19,Peabody - South Memorial,02290035, 77, 63, 49, 76, 57, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2018-19,Peabody - Thomas Carroll,02290010, 0, 108, 112, 107, 96, 99, 94, 0, 0, 0, 0, 0, 0, 0, 0, 616 -NA,NA,"",2018-19,Peabody - West Memorial,02290045, 37, 42, 32, 40, 39, 32, 39, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2018-19,Peabody - William A Welch Sr,02290027, 29, 61, 65, 50, 51, 58, 68, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2018-19,Pelham - Pelham Elementary,02300005, 0, 19, 13, 22, 18, 18, 24, 21, 0, 0, 0, 0, 0, 0, 0, 135 -NA,NA,"",2018-19,Pembroke - Bryantville Elementary,02310003, 0, 66, 73, 60, 75, 78, 68, 80, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2018-19,Pembroke - Hobomock Elementary,02310010, 0, 54, 57, 55, 72, 51, 53, 83, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2018-19,Pembroke - North Pembroke Elementary,02310015, 68, 77, 59, 60, 72, 82, 75, 68, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2018-19,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 219, 243, 0, 0, 0, 0, 0, 462 -NA,NA,"",2018-19,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 208, 191, 232, 10, 849 -NA,NA,"",2018-19,Pentucket - Dr Frederick N Sweetsir,07450020, 39, 68, 59, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2018-19,Pentucket - Dr John C Page School,07450015, 10, 39, 48, 47, 38, 57, 49, 53, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2018-19,Pentucket - Elmer S Bagnall,07450005, 36, 52, 67, 56, 71, 70, 56, 85, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2018-19,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 68, 52, 45, 70, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2018-19,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 191, 207, 0, 0, 0, 0, 0, 398 -NA,NA,"",2018-19,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193, 200, 192, 155, 0, 740 -NA,NA,"",2018-19,Petersham - Petersham Center,02340005, 0, 22, 9, 20, 13, 18, 19, 14, 0, 0, 0, 0, 0, 0, 0, 115 -NA,NA,"",2018-19,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 8, 22, 16, 0, 119 -NA,NA,"",2018-19,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 11, 22, 21, 0, 198 -NA,NA,"",2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 15, 7, 26, 0, 201 -NA,NA,"",2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 63, 64, 66, 66, 66, 65, 60, 59, 67, 69, 57, 49, 38, 0, 789 -NA,NA,"",2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0, 0, 0, 0, 0, 0, 0, 0, 61, 73, 70, 64, 49, 45, 0, 362 -NA,NA,"",2018-19,Pioneer Valley - Bernardston Elementary,07500006, 16, 18, 19, 19, 21, 23, 17, 26, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2018-19,Pioneer Valley - Northfield Elementary,07500008, 17, 24, 23, 22, 27, 24, 21, 26, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 6, 5, 7, 5, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32 -NA,NA,"",2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 63, 71, 33, 48, 39, 57, 0, 311 -NA,NA,"",2018-19,Pioneer Valley - Warwick Community School,07500009, 2, 6, 12, 9, 5, 10, 4, 9, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 45, 44, 44, 42, 46, 46, 71, 47, 42, 47, 32, 8, 15, 0, 529 -NA,NA,"",2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 69, 70, 68, 63, 66, 64, 0, 400 -NA,NA,"",2018-19,Pittsfield - Allendale,02360010, 0, 54, 60, 47, 52, 56, 44, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2018-19,Pittsfield - Crosby,02360065, 64, 51, 63, 60, 48, 67, 51, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2018-19,Pittsfield - Egremont,02360035, 0, 80, 72, 70, 64, 75, 71, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2018-19,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 194, 179, 178, 0, 0, 0, 0, 0, 551 -NA,NA,"",2018-19,Pittsfield - Morningside Community School,02360055, 19, 51, 71, 48, 53, 57, 56, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2018-19,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 205, 186, 186, 15, 803 -NA,NA,"",2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 21, 27, 37, 33, 25, 33, 35, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2018-19,Pittsfield - Silvio O Conte Community,02360105, 18, 60, 69, 59, 46, 62, 56, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2018-19,Pittsfield - Stearns,02360090, 0, 31, 53, 36, 38, 45, 30, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2018-19,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 226, 171, 184, 0, 815 -NA,NA,"",2018-19,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 227, 222, 196, 0, 0, 0, 0, 0, 645 -NA,NA,"",2018-19,Pittsfield - Williams,02360100, 0, 41, 44, 52, 47, 59, 54, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2018-19,Plainville - Anna Ware Jackson,02380010, 63, 87, 93, 92, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2018-19,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 0, 84, 107, 96, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2018-19,Plymouth - Cold Spring,02390005, 0, 33, 37, 40, 37, 36, 38, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2018-19,Plymouth - Federal Furnace School,02390011, 0, 55, 59, 62, 58, 77, 51, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2018-19,Plymouth - Hedge,02390010, 0, 33, 26, 25, 32, 30, 35, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2018-19,Plymouth - Indian Brook,02390012, 0, 111, 93, 79, 97, 88, 101, 0, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2018-19,Plymouth - Manomet Elementary,02390015, 0, 44, 38, 51, 36, 50, 47, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 0, 84, 92, 95, 91, 121, 74, 0, 0, 0, 0, 0, 0, 0, 0, 557 -NA,NA,"",2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 360, 358, 336, 0, 0, 0, 0, 0," 1,054" -NA,NA,"",2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155 -NA,NA,"",2018-19,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 296, 316, 299, 0," 1,267" -NA,NA,"",2018-19,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 283, 266, 263, 0," 1,074" -NA,NA,"",2018-19,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 226, 246, 232, 0, 0, 0, 0, 0, 704 -NA,NA,"",2018-19,Plymouth - South Elementary,02390046, 0, 97, 102, 110, 106, 113, 104, 0, 0, 0, 0, 0, 0, 0, 0, 632 -NA,NA,"",2018-19,Plymouth - West Elementary,02390047, 0, 42, 61, 67, 60, 55, 67, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2018-19,Plympton - Dennett Elementary,02400010, 0, 29, 33, 27, 36, 22, 32, 20, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0, 78, 85, 85, 92, 95, 99, 95, 89, 87, 91, 92, 67, 70, 0," 1,125" -NA,NA,"",2018-19,Provincetown - Provincetown Schools,02420020, 18, 10, 11, 12, 14, 14, 18, 9, 12, 7, 0, 0, 0, 0, 0, 125 -NA,NA,"",2018-19,Quabbin - Hardwick Elementary,07530005, 0, 23, 22, 17, 26, 24, 33, 29, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2018-19,Quabbin - Hubbardston Center,07530010, 0, 35, 49, 45, 42, 45, 47, 46, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2018-19,Quabbin - New Braintree Grade,07530020, 0, 23, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61 -NA,NA,"",2018-19,Quabbin - Oakham Center,07530025, 0, 0, 0, 20, 23, 30, 24, 30, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2018-19,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186, 149, 146, 144, 1, 626 -NA,NA,"",2018-19,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 0, 183, 176, 0, 0, 0, 0, 0, 359 -NA,NA,"",2018-19,Quabbin - Ruggles Lane,07530030, 67, 51, 52, 48, 53, 75, 63, 53, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 98, 65, 100, 0, 350 -NA,NA,"",2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 96, 126, 0, 0, 0, 0, 0, 222 -NA,NA,"",2018-19,Quaboag Regional - Warren Elementary,07780005, 36, 52, 54, 46, 56, 72, 55, 64, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 24, 34, 35, 35, 39, 45, 44, 40, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 177, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177 -NA,NA,"",2018-19,Quincy - Atherton Hough,02430040, 0, 44, 38, 54, 46, 44, 45, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2018-19,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 186, 187, 161, 0, 0, 0, 0, 0, 534 -NA,NA,"",2018-19,Quincy - Beechwood Knoll Elementary,02430020, 0, 46, 63, 63, 58, 49, 44, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2018-19,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 111, 136, 124, 0, 0, 0, 0, 0, 371 -NA,NA,"",2018-19,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 197, 202, 218, 0, 0, 0, 0, 0, 617 -NA,NA,"",2018-19,Quincy - Charles A Bernazzani Elementary,02430025, 0, 67, 58, 50, 59, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2018-19,Quincy - Clifford H Marshall Elementary,02430055, 0, 122, 103, 108, 86, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2018-19,Quincy - Francis W Parker,02430075, 0, 58, 58, 46, 48, 61, 54, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2018-19,Quincy - Lincoln-Hancock Community School,02430035, 0, 113, 105, 97, 97, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2018-19,Quincy - Merrymount,02430060, 0, 69, 61, 57, 61, 57, 63, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2018-19,Quincy - Montclair,02430065, 0, 75, 65, 72, 77, 67, 64, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2018-19,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326, 302, 281, 342, 7," 1,258" -NA,NA,"",2018-19,Quincy - Point Webster Middle,02430325, 36, 0, 0, 0, 0, 0, 110, 95, 69, 87, 0, 0, 0, 0, 0, 397 -NA,NA,"",2018-19,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 385, 389, 368, 0," 1,517" -NA,NA,"",2018-19,Quincy - Snug Harbor Community School,02430090, 126, 48, 58, 50, 49, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2018-19,Quincy - South West Middle School,02430320, 0, 0, 0, 0, 0, 0, 99, 87, 92, 81, 0, 0, 0, 0, 0, 359 -NA,NA,"",2018-19,Quincy - Squantum,02430095, 0, 63, 63, 63, 53, 55, 49, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2018-19,Quincy - Wollaston School,02430110, 0, 56, 55, 55, 54, 61, 56, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 18, 0, 35 -NA,NA,"",2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 102, 132, 110, 105, 92, 81, 1, 623 -NA,NA,"",2018-19,Ralph C Mahar - The Gateway to College,07550525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 0, 20, 39, 0, 73 -NA,NA,"",2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 44, 55, 52, 50, 51, 52, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2018-19,Randolph - J F Kennedy Elementary,02440018, 82, 59, 60, 61, 52, 69, 58, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2018-19,Randolph - Margaret L Donovan,02440015, 0, 82, 72, 58, 74, 86, 81, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2018-19,Randolph - Martin E Young Elementary,02440040, 0, 39, 40, 35, 51, 53, 62, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2018-19,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 229, 201, 183, 0, 0, 0, 0, 0, 613 -NA,NA,"",2018-19,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197, 156, 158, 135, 0, 646 -NA,NA,"",2018-19,Reading - Alice M Barrows,02460002, 0, 55, 67, 53, 80, 61, 58, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2018-19,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 128, 167, 148, 0, 0, 0, 0, 0, 443 -NA,NA,"",2018-19,Reading - Birch Meadow,02460005, 0, 62, 60, 64, 62, 63, 66, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2018-19,Reading - J Warren Killam,02460017, 0, 79, 63, 67, 80, 57, 66, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2018-19,Reading - Joshua Eaton,02460010, 0, 76, 64, 43, 67, 77, 59, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2018-19,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 329, 307, 322, 0," 1,251" -NA,NA,"",2018-19,Reading - RISE PreSchool,02460001, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115 -NA,NA,"",2018-19,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 163, 188, 196, 0, 0, 0, 0, 0, 547 -NA,NA,"",2018-19,Reading - Wood End Elementary School,02460020, 0, 53, 42, 50, 49, 66, 45, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2018-19,Revere - A. C. Whelan Elementary School,02480003, 0, 128, 138, 137, 125, 125, 133, 0, 0, 0, 0, 0, 0, 0, 0, 786 -NA,NA,"",2018-19,Revere - Abraham Lincoln,02480025, 101, 88, 97, 94, 95, 85, 109, 0, 0, 0, 0, 0, 0, 0, 0, 669 -NA,NA,"",2018-19,Revere - Beachmont Veterans Memorial School,02480013, 35, 41, 65, 41, 51, 43, 50, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2018-19,Revere - Garfield Elementary School,02480056, 55, 115, 111, 121, 113, 98, 119, 0, 0, 0, 0, 0, 0, 0, 0, 732 -NA,NA,"",2018-19,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 201, 180, 178, 0, 0, 0, 0, 0, 559 -NA,NA,"",2018-19,Revere - Paul Revere,02480050, 0, 73, 80, 76, 89, 77, 83, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2018-19,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 541, 554, 463, 413, 7," 1,978" -NA,NA,"",2018-19,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 215, 198, 198, 0, 0, 0, 0, 0, 611 -NA,NA,"",2018-19,Revere - Seacoast School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 34, 14, 21, 21, 0, 90 -NA,NA,"",2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 108, 119, 114, 120, 124, 137, 0, 0, 0, 0, 0, 0, 0, 0, 722 -NA,NA,"",2018-19,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 210, 202, 181, 0, 0, 0, 0, 0, 593 -NA,NA,"",2018-19,Richmond - Richmond Consolidated,02490005, 19, 14, 17, 17, 19, 20, 16, 21, 24, 12, 0, 0, 0, 0, 0, 179 -NA,NA,"",2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 95, 94, 92, 91, 80, 67, 72, 65, 0, 656 -NA,NA,"",2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 0, 32, 32, 32, 32, 34, 32, 33, 33, 28, 0, 0, 0, 0, 0, 288 -NA,NA,"",2018-19,Rochester - Rochester Memorial,02500005, 25, 62, 76, 58, 80, 67, 68, 75, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2018-19,Rockland - Jefferson Elementary School,02510060, 0, 60, 49, 54, 52, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2018-19,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 198, 178, 163, 165, 0, 0, 0, 0, 0, 704 -NA,NA,"",2018-19,Rockland - Memorial Park,02510020, 0, 64, 50, 67, 54, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2018-19,Rockland - R Stewart Esten,02510025, 0, 59, 57, 65, 77, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2018-19,Rockland - Rockland Senior High,02510505, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 141, 156, 117, 7, 636 -NA,NA,"",2018-19,Rockport - Rockport Elementary,02520005, 20, 54, 58, 62, 73, 63, 63, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2018-19,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 66, 72, 81, 0, 280 -NA,NA,"",2018-19,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 67, 74, 74, 0, 0, 0, 0, 0, 215 -NA,NA,"",2018-19,Rowe - Rowe Elementary,02530005, 14, 4, 7, 12, 5, 10, 9, 5, 0, 0, 0, 0, 0, 0, 0, 66 -NA,NA,"",2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 223, 239, 238, 250, 225, 147, 123, 73, 0," 1,518" -NA,NA,"",2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 0, 104, 118, 126, 128, 161, 128, 130, 128, 128, 117, 105, 93, 111, 0," 1,577" -NA,NA,"",2018-19,Salem - Bates,02580003, 0, 56, 59, 69, 70, 68, 67, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2018-19,Salem - Carlton,02580015, 0, 46, 51, 44, 36, 51, 51, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2018-19,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 223, 225, 232, 0, 0, 0, 0, 0, 680 -NA,NA,"",2018-19,Salem - Horace Mann Laboratory,02580030, 0, 57, 40, 52, 41, 45, 65, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2018-19,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 20, 8, 16, 0, 52 -NA,NA,"",2018-19,Salem - Salem Early Childhood,02580001, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2018-19,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 235, 227, 229, 6, 916 -NA,NA,"",2018-19,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 5, 6, 3, 0, 22 -NA,NA,"",2018-19,Salem - Saltonstall School,02580050, 0, 41, 39, 47, 46, 51, 55, 42, 40, 49, 0, 0, 0, 0, 0, 410 -NA,NA,"",2018-19,Salem - Witchcraft Heights,02580070, 0, 94, 102, 105, 97, 90, 91, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 73, 76, 72, 79, 65, 70, 56, 0, 491 -NA,NA,"",2018-19,Sandwich - Forestdale School,02610002, 63, 182, 178, 186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2018-19,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 203, 192, 210, 208, 0, 0, 0, 0, 0, 0, 0, 813 -NA,NA,"",2018-19,Sandwich - Sandwich High,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 150, 170, 165, 0, 642 -NA,NA,"",2018-19,Sandwich - Sandwich STEM Academy,02610305, 0, 0, 0, 0, 0, 0, 0, 0, 221, 225, 0, 0, 0, 0, 0, 446 -NA,NA,"",2018-19,Saugus - Belmonte Saugus Middle,02620305, 0, 0, 0, 0, 0, 0, 0, 215, 208, 211, 0, 0, 0, 0, 0, 634 -NA,NA,"",2018-19,Saugus - Douglas Waybright,02620067, 43, 19, 39, 23, 36, 28, 41, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2018-19,Saugus - Lynnhurst,02620040, 0, 64, 43, 43, 44, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2018-19,Saugus - Oaklandvale,02620050, 0, 29, 38, 43, 39, 46, 46, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2018-19,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 173, 167, 180, 7, 699 -NA,NA,"",2018-19,Saugus - Veterans Memorial,02620065, 48, 58, 82, 90, 80, 71, 95, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2018-19,Savoy - Emma L Miller Elementary School,02630010, 9, 7, 10, 8, 10, 10, 9, 0, 0, 0, 0, 0, 0, 0, 0, 63 -NA,NA,"",2018-19,Scituate - Cushing Elementary,02640007, 0, 60, 54, 55, 54, 49, 54, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2018-19,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 231, 234, 217, 0, 0, 0, 0, 0, 682 -NA,NA,"",2018-19,Scituate - Hatherly Elementary,02640010, 0, 40, 41, 36, 48, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2018-19,Scituate - Jenkins Elementary School,02640015, 0, 67, 61, 52, 53, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2018-19,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258, 252, 228, 220, 1, 959 -NA,NA,"",2018-19,Scituate - Wampatuck Elementary,02640020, 59, 60, 72, 58, 55, 62, 45, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 179, 156, 174, 0, 0, 0, 0, 0, 509 -NA,NA,"",2018-19,Seekonk - George R Martin,02650007, 23, 91, 77, 83, 74, 78, 73, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2018-19,Seekonk - Mildred Aitken School,02650015, 21, 70, 75, 74, 74, 69, 71, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2018-19,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 155, 149, 157, 0, 625 -NA,NA,"",2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0, 78, 78, 75, 86, 79, 78, 73, 74, 49, 0, 0, 0, 0, 0, 670 -NA,NA,"",2018-19,Sharon - Cottage Street,02660005, 0, 65, 84, 91, 82, 102, 95, 0, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2018-19,Sharon - East Elementary,02660010, 0, 89, 68, 79, 93, 85, 96, 0, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2018-19,Sharon - Heights Elementary,02660015, 0, 92, 82, 82, 94, 90, 97, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2018-19,Sharon - Sharon Early Childhood Center,02660001, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49 -NA,NA,"",2018-19,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308, 269, 255, 289, 0," 1,121" -NA,NA,"",2018-19,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 286, 291, 275, 0, 0, 0, 0, 0, 852 -NA,NA,"",2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 331, 319, 305, 0," 1,294" -NA,NA,"",2018-19,Sherborn - Pine Hill,02690010, 34, 54, 53, 68, 58, 64, 82, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2018-19,Shrewsbury - Beal School,02710005, 0, 221, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2018-19,Shrewsbury - Calvin Coolidge,02710015, 0, 43, 85, 110, 76, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2018-19,Shrewsbury - Floral Street School,02710020, 0, 0, 111, 201, 211, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 720 -NA,NA,"",2018-19,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 511, 494, 0, 0, 0, 0, 0," 1,005" -NA,NA,"",2018-19,Shrewsbury - Parker Road Preschool,02710040, 242, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2018-19,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 490, 468, 0, 0, 0, 0, 0, 0, 0, 958 -NA,NA,"",2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 460, 446, 500, 428, 1," 1,835" -NA,NA,"",2018-19,Shrewsbury - Spring Street,02710035, 0, 42, 69, 72, 76, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2018-19,Shrewsbury - Walter J Paton,02710025, 0, 44, 83, 67, 89, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2018-19,Shutesbury - Shutesbury Elementary,02720005, 18, 13, 16, 19, 12, 22, 15, 13, 0, 0, 0, 0, 0, 0, 0, 128 -NA,NA,"",2018-19,Silver Lake - Silver Lake Regional High,07600505, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270, 282, 305, 273, 0," 1,241" -NA,NA,"",2018-19,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 250, 264, 0, 0, 0, 0, 0, 514 -NA,NA,"",2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 74, 74, 68, 65, 51, 37, 0, 369 -NA,NA,"",2018-19,Somerset - Chace Street,02730005, 61, 65, 59, 68, 54, 52, 66, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2018-19,Somerset - North Elementary,02730008, 0, 67, 68, 86, 68, 72, 101, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2018-19,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 206, 207, 206, 0, 0, 0, 0, 0, 619 -NA,NA,"",2018-19,Somerset - South,02730015, 0, 39, 45, 46, 35, 53, 47, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 251, 270, 260, 3," 1,037" -NA,NA,"",2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 18, 47, 92, 81, 88, 88, 48, 66, 45, 43, 0, 0, 0, 0, 0, 616 -NA,NA,"",2018-19,Somerville - Arthur D Healey,02740075, 17, 43, 62, 49, 53, 39, 46, 56, 46, 39, 0, 0, 0, 0, 0, 450 -NA,NA,"",2018-19,Somerville - Benjamin G Brown,02740015, 0, 37, 36, 41, 43, 36, 36, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2018-19,Somerville - Capuano Early Childhood Center,02740005, 238, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2018-19,Somerville - E Somerville Community,02740111, 0, 68, 91, 82, 92, 82, 80, 85, 80, 59, 0, 0, 0, 0, 0, 719 -NA,NA,"",2018-19,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 14, 18, 7, 2, 48 -NA,NA,"",2018-19,Somerville - John F Kennedy,02740083, 0, 46, 50, 50, 41, 46, 43, 53, 70, 42, 0, 0, 0, 0, 0, 441 -NA,NA,"",2018-19,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 0, 6, 8, 0, 0, 0, 0, 0, 14 -NA,NA,"",2018-19,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329, 298, 304, 312, 8," 1,251" -NA,NA,"",2018-19,Somerville - West Somerville Neighborhood,02740115, 18, 44, 44, 39, 45, 40, 31, 45, 30, 34, 0, 0, 0, 0, 0, 370 -NA,NA,"",2018-19,Somerville - Winter Hill Community,02740120, 18, 39, 41, 36, 38, 45, 56, 49, 62, 55, 0, 0, 0, 0, 0, 439 -NA,NA,"",2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 133, 153, 139, 146, 0, 0, 0, 0, 0, 571 -NA,NA,"",2018-19,South Hadley - Mosier,02780020, 0, 0, 0, 155, 136, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2018-19,South Hadley - Plains Elementary,02780015, 69, 144, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2018-19,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 146, 142, 124, 6, 557 -NA,NA,"",2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 199, 185, 157, 0, 750 -NA,NA,"",2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 74, 76, 78, 60, 65, 75, 78, 78, 78, 67, 74, 75, 62, 0, 940 -NA,NA,"",2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 163, 150, 160, 0, 645 -NA,NA,"",2018-19,Southampton - William E Norris,02750005, 35, 65, 58, 75, 61, 58, 75, 74, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 124, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2018-19,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 129, 129, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2018-19,Southborough - Mary E Finn School,02760008, 82, 111, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2018-19,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 136, 152, 143, 0, 0, 0, 0, 0, 431 -NA,NA,"",2018-19,Southbridge - Charlton Street,02770005, 1, 0, 0, 66, 70, 73, 81, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2018-19,Southbridge - Eastford Road,02770010, 62, 141, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2018-19,Southbridge - Southbridge Academy,02770525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 13, 8, 4, 4, 0, 32 -NA,NA,"",2018-19,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150, 108, 117, 107, 0, 482 -NA,NA,"",2018-19,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 163, 164, 170, 0, 0, 0, 0, 0, 497 -NA,NA,"",2018-19,Southbridge - West Street,02770020, 0, 0, 0, 99, 70, 76, 89, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 377, 343, 348, 0," 1,444" -NA,NA,"",2018-19,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 0, 45, 62, 52, 51, 56, 43, 0, 309 -NA,NA,"",2018-19,Southern Berkshire - New Marlborough Central,07650018, 11, 12, 8, 19, 11, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 77 -NA,NA,"",2018-19,Southern Berkshire - South Egremont,07650030, 0, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13 -NA,NA,"",2018-19,Southern Berkshire - Undermountain,07650035, 28, 31, 30, 32, 42, 31, 41, 54, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309, 292, 257, 273, 0," 1,131" -NA,NA,"",2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 109, 119, 115, 115, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 113, 120, 122, 115, 117, 122, 3, 712 -NA,NA,"",2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 44, 104, 89, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2018-19,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65, 58, 65, 85, 1, 274 -NA,NA,"",2018-19,Spencer-E Brookfield - East Brookfield Elementary,07670008, 85, 19, 27, 20, 23, 19, 30, 20, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2018-19,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 107, 103, 119, 109, 0, 0, 0, 0, 0, 438 -NA,NA,"",2018-19,Spencer-E Brookfield - Wire Village School,07670040, 0, 69, 95, 104, 69, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 82, 42, 43, 49, 43, 46, 40, 29, 35, 29, 0, 0, 0, 0, 0, 438 -NA,NA,"",2018-19,Springfield - Alice B Beal Elementary,02810175, 0, 52, 35, 44, 39, 40, 43, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2018-19,Springfield - Arthur T Talmadge,02810165, 0, 31, 43, 38, 47, 39, 42, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2018-19,Springfield - Balliet Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 2, 9, 22, 0, 0, 0, 0, 0, 33 -NA,NA,"",2018-19,Springfield - Brightwood,02810025, 23, 48, 60, 44, 58, 50, 54, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2018-19,Springfield - Chestnut Academy,02810365, 0, 0, 0, 0, 0, 0, 0, 118, 101, 85, 0, 0, 0, 0, 0, 304 -NA,NA,"",2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 118, 113, 95, 0, 0, 0, 0, 0, 326 -NA,NA,"",2018-19,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 56, 56, 57, 51, 47, 37, 40, 0, 344 -NA,NA,"",2018-19,Springfield - Daniel B Brunton,02810035, 0, 62, 74, 80, 73, 75, 81, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2018-19,Springfield - Early Childhood Education Center,02810001, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155 -NA,NA,"",2018-19,Springfield - Edward P. Boland School,02810010, 209, 89, 95, 91, 82, 90, 108, 0, 0, 0, 0, 0, 0, 0, 0, 764 -NA,NA,"",2018-19,Springfield - Elias Brookings,02810030, 47, 46, 43, 51, 50, 39, 60, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2018-19,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 255, 247, 223, 0, 0, 0, 0, 0, 725 -NA,NA,"",2018-19,Springfield - Frank H Freedman,02810075, 0, 56, 62, 47, 50, 52, 57, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2018-19,Springfield - Frederick Harris,02810080, 54, 103, 111, 106, 75, 87, 89, 0, 0, 0, 0, 0, 0, 0, 0, 625 -NA,NA,"",2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 13, 6, 0, 22 -NA,NA,"",2018-19,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 12, 6, 7, 0, 32 -NA,NA,"",2018-19,Springfield - German Gerena Community School,02810195, 110, 102, 107, 98, 94, 99, 102, 0, 0, 0, 0, 0, 0, 0, 0, 712 -NA,NA,"",2018-19,Springfield - Glenwood,02810065, 0, 41, 51, 47, 43, 53, 50, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2018-19,Springfield - Glickman Elementary,02810068, 0, 51, 47, 46, 68, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2018-19,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 237, 180, 231, 4," 1,015" -NA,NA,"",2018-19,Springfield - Hiram L Dorman,02810050, 0, 37, 44, 45, 43, 52, 62, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2018-19,Springfield - Homer Street,02810085, 0, 60, 67, 71, 58, 65, 74, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2018-19,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 144, 116, 116, 0, 0, 0, 0, 0, 376 -NA,NA,"",2018-19,Springfield - Indian Orchard Elementary,02810100, 95, 82, 88, 88, 117, 97, 89, 0, 0, 0, 0, 0, 0, 0, 0, 656 -NA,NA,"",2018-19,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 175, 162, 154, 0, 0, 0, 0, 0, 491 -NA,NA,"",2018-19,Springfield - John J Duggan Middle,02810320, 0, 0, 0, 0, 0, 0, 0, 183, 177, 181, 85, 61, 44, 28, 0, 759 -NA,NA,"",2018-19,Springfield - Kensington International School,02810110, 29, 45, 47, 49, 51, 40, 53, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2018-19,Springfield - Liberty,02810115, 0, 49, 52, 47, 41, 45, 48, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2018-19,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 2, 3, 1, 0, 9 -NA,NA,"",2018-19,Springfield - Lincoln,02810120, 0, 63, 67, 65, 69, 60, 75, 0, 0, 0, 0, 0, 0, 0, 0, 399 -NA,NA,"",2018-19,Springfield - M Marcus Kiley Middle,02810330, 0, 0, 0, 0, 0, 0, 0, 229, 213, 241, 0, 0, 0, 0, 0, 683 -NA,NA,"",2018-19,Springfield - Margaret C Ells,02810060, 155, 35, 39, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 47, 43, 48, 43, 54, 55, 48, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2018-19,Springfield - Mary M Lynch,02810140, 0, 39, 53, 50, 41, 44, 38, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2018-19,Springfield - Mary M Walsh,02810155, 0, 50, 37, 49, 65, 49, 46, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2018-19,Springfield - Mary O Pottenger,02810145, 18, 65, 71, 60, 68, 81, 74, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2018-19,Springfield - Milton Bradley School,02810023, 59, 83, 96, 98, 85, 68, 76, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2018-19,Springfield - Rebecca M Johnson,02810055, 120, 111, 86, 120, 105, 118, 100, 0, 0, 0, 0, 0, 0, 0, 0, 760 -NA,NA,"",2018-19,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 99, 92, 130, 0, 0, 0, 0, 0, 321 -NA,NA,"",2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 357, 349, 334, 0," 1,415" -NA,NA,"",2018-19,Springfield - Samuel Bowles,02810020, 0, 60, 45, 48, 56, 70, 48, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2018-19,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 71, 85, 73, 0, 0, 0, 0, 0, 229 -NA,NA,"",2018-19,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 658, 521, 424, 501, 0," 2,104" -NA,NA,"",2018-19,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 39, 48, 93, 0, 231 -NA,NA,"",2018-19,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 288, 335, 245, 16," 1,260" -NA,NA,"",2018-19,Springfield - Springfield International Academy at Johnson,02810215, 0, 0, 0, 0, 7, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 25 -NA,NA,"",2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 19, 12, 0, 0, 0, 31 -NA,NA,"",2018-19,Springfield - Springfield Public Day Elementary School,02810005, 0, 0, 4, 12, 7, 22, 16, 0, 0, 0, 0, 0, 0, 0, 0, 61 -NA,NA,"",2018-19,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41, 21, 25, 12, 0, 99 -NA,NA,"",2018-19,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 13, 19, 17, 0, 0, 0, 0, 0, 49 -NA,NA,"",2018-19,Springfield - Springfield Vocational Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97, 97 -NA,NA,"",2018-19,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 99, 98, 99, 0, 0, 0, 0, 0, 296 -NA,NA,"",2018-19,Springfield - Sumner Avenue,02810160, 72, 75, 72, 75, 76, 76, 84, 0, 0, 0, 0, 0, 0, 0, 0, 530 -NA,NA,"",2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 104, 107, 113, 94, 101, 92, 77, 0, 688 -NA,NA,"",2018-19,Springfield - Thomas M Balliet,02810015, 59, 48, 32, 52, 46, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2018-19,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 75, 73, 112, 0, 0, 0, 0, 0, 260 -NA,NA,"",2018-19,Springfield - Warner,02810180, 35, 34, 34, 40, 38, 42, 43, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2018-19,Springfield - Washington,02810185, 46, 65, 75, 59, 46, 64, 65, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2018-19,Springfield - White Street,02810190, 0, 74, 84, 75, 74, 74, 68, 0, 0, 0, 0, 0, 0, 0, 0, 449 -NA,NA,"",2018-19,Springfield - William N. DeBerry,02810045, 0, 30, 37, 36, 35, 48, 48, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 55, 54, 54, 50, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2018-19,Stoneham - Colonial Park,02840005, 50, 44, 49, 46, 44, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2018-19,Stoneham - Robin Hood,02840025, 49, 68, 68, 73, 74, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2018-19,Stoneham - South,02840030, 0, 73, 57, 69, 69, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2018-19,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 192, 181, 178, 175, 0, 0, 0, 0, 0, 726 -NA,NA,"",2018-19,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139, 188, 171, 171, 0, 669 -NA,NA,"",2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2018-19,Stoughton - Helen Hansen Elementary,02850010, 0, 37, 33, 49, 31, 40, 32, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2018-19,Stoughton - Joseph H Gibbons,02850025, 0, 60, 55, 57, 58, 59, 68, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 52, 65, 59, 67, 45, 59, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2018-19,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 277, 312, 259, 0, 0, 0, 0, 0, 848 -NA,NA,"",2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 28, 46, 50, 55, 54, 57, 59, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2018-19,Stoughton - South Elementary,02850015, 0, 39, 34, 31, 49, 49, 45, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2018-19,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 238, 272, 266, 260, 3," 1,039" -NA,NA,"",2018-19,Sturbridge - Burgess Elementary,02870005, 76, 99, 114, 111, 112, 119, 134, 122, 0, 0, 0, 0, 0, 0, 0, 887 -NA,NA,"",2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 220, 202, 191, 0, 836 -NA,NA,"",2018-19,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 335, 310, 298, 0, 0, 0, 0, 0, 943 -NA,NA,"",2018-19,Sudbury - General John Nixon Elementary,02880025, 0, 34, 53, 44, 69, 58, 78, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2018-19,Sudbury - Israel Loring School,02880015, 0, 74, 67, 83, 90, 64, 97, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2018-19,Sudbury - Josiah Haynes,02880010, 0, 53, 53, 61, 64, 73, 54, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2018-19,Sudbury - Peter Noyes,02880030, 48, 77, 87, 86, 86, 84, 73, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2018-19,Sunderland - Sunderland Elementary,02890005, 23, 32, 28, 33, 36, 20, 40, 20, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2018-19,Sutton - Sutton Early Learning,02900003, 26, 99, 85, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2018-19,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 104, 106, 104, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2018-19,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 99, 78, 104, 105, 0, 386 -NA,NA,"",2018-19,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 115, 113, 132, 0, 0, 0, 0, 0, 360 -NA,NA,"",2018-19,Swampscott - Clarke,02910005, 0, 46, 40, 39, 48, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2018-19,Swampscott - Hadley,02910010, 0, 65, 65, 63, 68, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2018-19,Swampscott - Stanley,02910020, 0, 44, 48, 46, 51, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2018-19,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 186, 161, 176, 1, 707 -NA,NA,"",2018-19,Swampscott - Swampscott Middle,02910305, 60, 0, 0, 0, 0, 0, 158, 167, 173, 174, 0, 0, 0, 0, 0, 732 -NA,NA,"",2018-19,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 86, 86, 103, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2018-19,Swansea - Gardner,02920015, 0, 81, 86, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2018-19,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 136, 132, 133, 1, 536 -NA,NA,"",2018-19,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 189, 196, 162, 0, 0, 0, 0, 0, 547 -NA,NA,"",2018-19,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 55, 81, 66, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2018-19,Swansea - Mark G Hoyle Elementary,02920017, 59, 59, 70, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 295, 297, 0, 0, 0, 0, 0, 592 -NA,NA,"",2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 184, 196, 170, 6, 734 -NA,NA,"",2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 130, 107, 102, 0, 486 -NA,NA,"",2018-19,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 260, 261, 256, 0, 0, 0, 0, 0, 0, 777 -NA,NA,"",2018-19,Taunton - East Taunton Elementary,02930010, 0, 111, 123, 120, 122, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 604 -NA,NA,"",2018-19,Taunton - Edmund Hatch Bennett,02930007, 0, 63, 73, 60, 52, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2018-19,Taunton - Edward F. Leddy Preschool,02930005, 282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2018-19,Taunton - Elizabeth Pole,02930027, 0, 92, 115, 128, 114, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2018-19,Taunton - H H Galligan,02930057, 0, 45, 50, 51, 46, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2018-19,Taunton - Hopewell,02930035, 0, 54, 44, 61, 63, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2018-19,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 150, 172, 177, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2018-19,Taunton - Joseph C Chamberlain,02930008, 0, 88, 92, 99, 121, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2018-19,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 234, 222, 228, 0, 0, 0, 0, 0, 0, 684 -NA,NA,"",2018-19,Taunton - Mulcahey Elementary School,02930015, 37, 113, 89, 88, 77, 124, 0, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2018-19,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 16, 79, 0, 101 -NA,NA,"",2018-19,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 631, 549, 507, 489, 437, 11," 2,624" -NA,NA,"",2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 61, 59, 53, 59, 70, 83, 115, 181, 231, 390, 320, 296, 225, 0," 2,143" -NA,NA,"",2018-19,Tewksbury - Heath-Brook,02950010, 0, 103, 115, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2018-19,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 257, 254, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2018-19,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 275, 274, 0, 0, 0, 0, 0, 549 -NA,NA,"",2018-19,Tewksbury - L F Dewing,02950001, 173, 145, 118, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 594 -NA,NA,"",2018-19,Tewksbury - Louise Davy Trahan,02950025, 0, 0, 0, 0, 99, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2018-19,Tewksbury - North Street,02950020, 0, 0, 0, 0, 138, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2018-19,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 216, 226, 241, 7, 916 -NA,NA,"",2018-19,Tisbury - Tisbury Elementary,02960005, 2, 21, 31, 34, 32, 26, 41, 42, 36, 32, 0, 0, 0, 0, 0, 297 -NA,NA,"",2018-19,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 92, 101, 77, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2018-19,Topsfield - Steward Elementary,02980010, 42, 71, 87, 84, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275, 244, 258, 247, 0," 1,024" -NA,NA,"",2018-19,Triton - Newbury Elementary,07730020, 43, 48, 53, 43, 53, 55, 63, 53, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2018-19,Triton - Pine Grove,07730025, 28, 47, 57, 57, 55, 72, 54, 61, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2018-19,Triton - Salisbury Elementary,07730015, 50, 71, 61, 62, 57, 64, 71, 79, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2018-19,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 153, 182, 180, 0, 681 -NA,NA,"",2018-19,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 179, 204, 0, 0, 0, 0, 0, 383 -NA,NA,"",2018-19,Truro - Truro Central,03000005, 19, 11, 13, 14, 16, 12, 16, 5, 0, 0, 0, 0, 0, 0, 0, 106 -NA,NA,"",2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 56, 107, 111, 143, 119, 115, 147, 0, 0, 0, 0, 0, 0, 0, 0, 798 -NA,NA,"",2018-19,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 109, 121, 123, 0, 478 -NA,NA,"",2018-19,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 114, 116, 134, 0, 0, 0, 0, 0, 364 -NA,NA,"",2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 182, 169, 166, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 56, 61, 73, 70, 74, 73, 91, 91, 77, 58, 0, 0, 0, 0, 0, 724 -NA,NA,"",2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0, 10, 11, 10, 9, 11, 9, 0, 0, 0, 0, 0, 0, 0, 0, 60 -NA,NA,"",2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 7, 37, 30, 29, 37, 38, 43, 39, 43, 53, 0, 0, 0, 0, 0, 356 -NA,NA,"",2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184, 188, 172, 159, 0, 703 -NA,NA,"",2018-19,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 9, 34, 0, 44 -NA,NA,"",2018-19,Uxbridge - Taft Early Learning Center,03040005, 90, 107, 121, 120, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2018-19,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 109, 115, 112, 113, 6, 589 -NA,NA,"",2018-19,Uxbridge - Whitin Intermediate,03040405, 0, 0, 0, 0, 0, 132, 124, 130, 142, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 115, 88, 77, 67, 0, 0, 0, 0, 0, 347 -NA,NA,"",2018-19,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 128, 120, 135, 0, 0, 0, 0, 0, 383 -NA,NA,"",2018-19,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 93, 78, 94, 96, 0, 0, 0, 0, 0, 361 -NA,NA,"",2018-19,Wachusett - Davis Hill Elementary,07750018, 0, 70, 76, 79, 73, 78, 79, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2018-19,Wachusett - Dawson,07750020, 0, 81, 65, 82, 82, 81, 88, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2018-19,Wachusett - Early Childhood Center,07750001, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154 -NA,NA,"",2018-19,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 135, 109, 111, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2018-19,Wachusett - Houghton Elementary,07750027, 0, 72, 71, 63, 84, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2018-19,Wachusett - Leroy E.Mayo,07750032, 0, 66, 66, 85, 88, 83, 91, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2018-19,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 277, 283, 261, 0, 0, 0, 0, 0, 821 -NA,NA,"",2018-19,Wachusett - Naquag Elementary School,07750005, 0, 97, 101, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2018-19,Wachusett - Paxton Center,07750040, 0, 37, 30, 47, 39, 56, 55, 66, 62, 63, 0, 0, 0, 0, 0, 455 -NA,NA,"",2018-19,Wachusett - Thomas Prince,07750045, 0, 27, 36, 48, 38, 49, 48, 48, 46, 43, 0, 0, 0, 0, 0, 383 -NA,NA,"",2018-19,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 480, 526, 513, 569, 15," 2,103" -NA,NA,"",2018-19,Wakefield - Dolbeare,03050005, 0, 88, 91, 101, 90, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142 -NA,NA,"",2018-19,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 267, 268, 253, 251, 0, 0, 0, 0, 0," 1,039" -NA,NA,"",2018-19,Wakefield - Greenwood,03050020, 0, 43, 44, 44, 42, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2018-19,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246, 257, 262, 227, 0, 992 -NA,NA,"",2018-19,Wakefield - Walton,03050040, 0, 46, 44, 46, 46, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2018-19,Wakefield - Woodville School,03050015, 0, 87, 81, 78, 75, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2018-19,Wales - Wales Elementary,03060005, 17, 12, 17, 13, 27, 15, 26, 20, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2018-19,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 130, 169, 150, 0, 0, 0, 0, 0, 449 -NA,NA,"",2018-19,Walpole - Boyden,03070010, 0, 58, 61, 56, 58, 50, 59, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 -NA,NA,"",2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 155, 143, 139, 0, 0, 0, 0, 0, 437 -NA,NA,"",2018-19,Walpole - Elm Street School,03070005, 0, 66, 69, 78, 79, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2018-19,Walpole - Fisher,03070015, 0, 73, 74, 63, 81, 77, 93, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2018-19,Walpole - Old Post Road,03070018, 0, 73, 69, 79, 65, 81, 79, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2018-19,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 270, 278, 294, 8," 1,128" -NA,NA,"",2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 0, 88, 70, 77, 79, 76, 74, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2018-19,Waltham - Henry Whittemore Elementary School,03080065, 0, 69, 62, 77, 70, 55, 81, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2018-19,Waltham - James Fitzgerald Elementary School,03080060, 0, 78, 76, 58, 63, 73, 67, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2018-19,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 174, 175, 180, 0, 0, 0, 0, 0, 529 -NA,NA,"",2018-19,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 247, 226, 204, 0, 0, 0, 0, 0, 677 -NA,NA,"",2018-19,Waltham - Northeast Elementary School,03080040, 66, 69, 95, 69, 96, 85, 72, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 0, 70, 68, 65, 79, 70, 76, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 0, 37, 38, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2018-19,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 413, 426, 385, 1," 1,609" -NA,NA,"",2018-19,Waltham - William F. Stanley Elementary School,03080005, 69, 54, 59, 69, 67, 53, 61, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2018-19,Ware - Stanley M Koziol Elementary School,03090020, 65, 84, 72, 85, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2018-19,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 107, 94, 82, 73, 52, 65, 3, 476 -NA,NA,"",2018-19,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 99, 101, 118, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2018-19,Wareham - John William Decas,03100003, 81, 169, 199, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 603 -NA,NA,"",2018-19,Wareham - Minot Forest,03100017, 0, 0, 0, 0, 166, 192, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 15, 14, 28, 0, 58 -NA,NA,"",2018-19,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 183, 167, 167, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 138, 83, 100, 94, 8, 590 -NA,NA,"",2018-19,Watertown - Cunniff,03140015, 15, 60, 57, 47, 43, 63, 45, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2018-19,Watertown - Hosmer,03140020, 95, 116, 105, 107, 77, 72, 83, 0, 0, 0, 0, 0, 0, 0, 0, 655 -NA,NA,"",2018-19,Watertown - James Russell Lowell,03140025, 14, 69, 74, 67, 57, 64, 59, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2018-19,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 185, 150, 153, 7, 659 -NA,NA,"",2018-19,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 202, 173, 185, 0, 0, 0, 0, 0, 560 -NA,NA,"",2018-19,Wayland - Claypit Hill School,03150005, 0, 78, 100, 98, 87, 75, 97, 0, 0, 0, 0, 0, 0, 0, 0, 535 -NA,NA,"",2018-19,Wayland - Happy Hollow School,03150015, 0, 53, 65, 62, 61, 69, 65, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2018-19,Wayland - Loker School,03150020, 0, 39, 60, 44, 46, 41, 40, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2018-19,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 235, 208, 204, 0, 846 -NA,NA,"",2018-19,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 242, 217, 210, 0, 0, 0, 0, 0, 669 -NA,NA,"",2018-19,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 107, 108, 112, 4, 458 -NA,NA,"",2018-19,Webster - Park Avenue Elementary,03160015, 51, 151, 148, 162, 137, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 803 -NA,NA,"",2018-19,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 142, 154, 124, 150, 0, 0, 0, 0, 0, 570 -NA,NA,"",2018-19,Wellesley - Ernest F Upham,03170050, 0, 22, 44, 42, 32, 44, 48, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2018-19,Wellesley - Hunnewell,03170025, 0, 39, 44, 41, 41, 49, 46, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2018-19,Wellesley - John D Hardy,03170020, 0, 42, 44, 43, 54, 45, 59, 0, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2018-19,Wellesley - Joseph E Fiske,03170015, 0, 51, 44, 51, 42, 51, 52, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2018-19,Wellesley - Katharine Lee Bates,03170005, 0, 54, 56, 58, 63, 55, 71, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100 -NA,NA,"",2018-19,Wellesley - Schofield,03170045, 0, 61, 65, 57, 64, 67, 68, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2018-19,Wellesley - Sprague Elementary School,03170048, 0, 55, 61, 66, 57, 62, 65, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2018-19,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 394, 379, 386, 0, 0, 0, 0, 0," 1,159" -NA,NA,"",2018-19,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 405, 379, 384, 6," 1,529" -NA,NA,"",2018-19,Wellfleet - Wellfleet Elementary,03180005, 14, 17, 16, 16, 16, 15, 11, 0, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2018-19,West Boylston - Major Edwards Elementary,03220005, 24, 68, 61, 60, 64, 59, 68, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 71, 70, 72, 88, 66, 58, 61, 0, 486 -NA,NA,"",2018-19,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 84, 101, 98, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2018-19,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 85, 90, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2018-19,West Bridgewater - Spring Street School,03230005, 67, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 97, 112, 104, 100, 111, 102, 0, 626 -NA,NA,"",2018-19,West Springfield - Cowing Early Childhood,03320001, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2018-19,West Springfield - John Ashley,03320005, 0, 249, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2018-19,West Springfield - John R Fausey,03320010, 0, 1, 77, 77, 97, 95, 112, 0, 0, 0, 0, 0, 0, 0, 0, 459 -NA,NA,"",2018-19,West Springfield - Memorial,03320025, 0, 0, 32, 41, 43, 46, 52, 0, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2018-19,West Springfield - Mittineague,03320030, 0, 0, 33, 42, 30, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2018-19,West Springfield - Philip G Coburn,03320007, 0, 48, 99, 111, 92, 98, 68, 0, 0, 0, 0, 0, 0, 0, 0, 516 -NA,NA,"",2018-19,West Springfield - Tatham,03320040, 0, 4, 48, 50, 48, 56, 49, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2018-19,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 301, 296, 282, 16," 1,215" -NA,NA,"",2018-19,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 305, 293, 321, 0, 0, 0, 0, 0, 919 -NA,NA,"",2018-19,Westborough - Annie E Fales,03210010, 0, 90, 74, 96, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2018-19,Westborough - Elsie A Hastings Elementary,03210025, 127, 97, 84, 101, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2018-19,Westborough - J Harding Armstrong,03210005, 0, 85, 112, 121, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2018-19,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 283, 308, 321, 0, 0, 0, 0, 0, 0, 0, 912 -NA,NA,"",2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 312, 278, 0, 0, 0, 0, 0, 590 -NA,NA,"",2018-19,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308, 314, 259, 271, 0," 1,152" -NA,NA,"",2018-19,Westfield - Abner Gibbs,03250020, 0, 42, 47, 48, 50, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2018-19,Westfield - Franklin Ave,03250015, 0, 41, 37, 44, 48, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211 -NA,NA,"",2018-19,Westfield - Highland,03250025, 0, 79, 58, 61, 68, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2018-19,Westfield - Munger Hill,03250033, 0, 68, 66, 75, 81, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2018-19,Westfield - Paper Mill,03250036, 0, 76, 58, 64, 61, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2018-19,Westfield - Southampton Road,03250040, 0, 65, 57, 65, 65, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2018-19,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305, 284, 353, 262, 24," 1,228" -NA,NA,"",2018-19,Westfield - Westfield Intermediate School,03250075, 0, 0, 0, 0, 0, 0, 417, 388, 0, 0, 0, 0, 0, 0, 0, 805 -NA,NA,"",2018-19,Westfield - Westfield Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 0, 413, 389, 0, 0, 0, 0, 0, 802 -NA,NA,"",2018-19,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 146, 130, 107, 0, 527 -NA,NA,"",2018-19,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 135, 129, 117, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2018-19,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 181, 184, 194, 0, 0, 0, 0, 0, 559 -NA,NA,"",2018-19,Westford - Col John Robinson,03260025, 0, 79, 118, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2018-19,Westford - Day Elementary,03260007, 0, 0, 0, 0, 117, 128, 104, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 112, 120, 116, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2018-19,Westford - Millennium Elementary,03260013, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2018-19,Westford - Nabnasset,03260015, 0, 91, 127, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2018-19,Westford - Rita E. Miller Elementary School,03260055, 0, 95, 119, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2018-19,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 204, 208, 254, 0, 0, 0, 0, 0, 666 -NA,NA,"",2018-19,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397, 444, 433, 447, 3," 1,724" -NA,NA,"",2018-19,Westhampton - Westhampton Elementary School,03270005, 8, 16, 9, 18, 17, 20, 16, 17, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2018-19,Weston - Country,03300010, 23, 79, 62, 61, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2018-19,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 152, 148, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2018-19,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164, 169, 173, 201, 0, 707 -NA,NA,"",2018-19,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 181, 160, 156, 0, 0, 0, 0, 0, 497 -NA,NA,"",2018-19,Weston - Woodland,03300015, 22, 60, 60, 80, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2018-19,Westport - Alice A Macomber,03310015, 48, 102, 107, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,Westport - Westport Elementary,03310030, 0, 0, 0, 0, 120, 125, 113, 118, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2018-19,Westport - Westport Junior/Senior High School,03310515, 0, 0, 0, 0, 0, 0, 0, 0, 150, 119, 89, 90, 52, 97, 0, 597 -NA,NA,"",2018-19,Westwood - Deerfield School,03350010, 0, 22, 20, 32, 36, 40, 31, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2018-19,Westwood - Downey,03350012, 1, 61, 48, 43, 46, 39, 43, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2018-19,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 234, 257, 255, 0, 0, 0, 0, 0, 746 -NA,NA,"",2018-19,Westwood - Martha Jones,03350017, 0, 37, 54, 41, 50, 49, 52, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2018-19,Westwood - Paul Hanlon,03350015, 0, 32, 46, 32, 36, 38, 42, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2018-19,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257, 249, 239, 264, 0," 1,009" -NA,NA,"",2018-19,Westwood - Westwood Integrated Preschool,03350050, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 41 -NA,NA,"",2018-19,Westwood - William E Sheehan,03350025, 0, 54, 41, 46, 56, 67, 53, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2018-19,Weymouth - Abigail Adams Middle School,03360310, 0, 0, 0, 0, 0, 0, 454, 431, 0, 0, 0, 0, 0, 0, 0, 885 -NA,NA,"",2018-19,Weymouth - Academy Avenue,03360005, 0, 54, 58, 71, 54, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2018-19,Weymouth - Frederick C Murphy,03360050, 0, 24, 40, 45, 53, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2018-19,Weymouth - Johnson Early Childhood Center,03360003, 194, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2018-19,Weymouth - Lawrence W Pingree,03360065, 0, 44, 34, 35, 42, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0, 0, 0, 0, 0, 0, 0, 1, 453, 429, 0, 0, 0, 0, 0, 883 -NA,NA,"",2018-19,Weymouth - Ralph Talbot,03360085, 0, 50, 42, 45, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2018-19,Weymouth - Thomas V Nash,03360060, 0, 21, 35, 32, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 54, 61, 66, 70, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2018-19,Weymouth - Wessagusset,03360110, 0, 48, 60, 54, 50, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2018-19,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501, 442, 463, 455, 2," 1,863" -NA,NA,"",2018-19,Weymouth - William Seach,03360080, 0, 61, 66, 73, 58, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2018-19,Whately - Whately Elementary,03370005, 19, 17, 14, 19, 14, 17, 18, 21, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2018-19,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 104, 116, 124, 135, 0, 0, 0, 0, 0, 479 -NA,NA,"",2018-19,Whitman-Hanson - Indian Head,07800035, 0, 102, 98, 101, 104, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2018-19,Whitman-Hanson - John H Duval,07800030, 0, 60, 77, 78, 66, 80, 82, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2018-19,Whitman-Hanson - Louise A Conley,07800010, 0, 75, 87, 81, 95, 80, 110, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2018-19,Whitman-Hanson - Whitman Hanson Regional,07800505, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 295, 281, 303, 4," 1,277" -NA,NA,"",2018-19,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 205, 177, 198, 0, 0, 0, 0, 0, 580 -NA,NA,"",2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 284, 324, 318, 0," 1,246" -NA,NA,"",2018-19,Williamsburg - Anne T. Dunphy School,03400020, 13, 18, 17, 17, 25, 20, 20, 17, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2018-19,Wilmington - Boutwell,03420005, 37, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135 -NA,NA,"",2018-19,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 99, 166, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2018-19,Wilmington - Shawsheen Elementary,03420025, 0, 0, 121, 113, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2018-19,Wilmington - West Intermediate,03420080, 0, 0, 0, 0, 0, 109, 127, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2018-19,Wilmington - Wildwood,03420015, 43, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2018-19,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 196, 217, 208, 0, 829 -NA,NA,"",2018-19,Wilmington - Wilmington Middle School,03420330, 0, 0, 0, 0, 0, 0, 0, 259, 274, 248, 0, 0, 0, 0, 0, 781 -NA,NA,"",2018-19,Wilmington - Woburn Street,03420020, 0, 0, 149, 123, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2018-19,Winchendon - Memorial,03430040, 0, 102, 102, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2018-19,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 7, 12, 7, 0, 39 -NA,NA,"",2018-19,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83, 67, 67, 83, 0, 300 -NA,NA,"",2018-19,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 109, 87, 86, 0, 0, 0, 0, 0, 282 -NA,NA,"",2018-19,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 93, 84, 86, 0, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2018-19,Winchendon - Winchendon PreSchool Program,03430010, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78 -NA,NA,"",2018-19,Winchester - Ambrose Elementary,03440045, 0, 54, 49, 64, 76, 76, 75, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2018-19,Winchester - Lincoln Elementary,03440005, 0, 62, 65, 83, 67, 81, 73, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2018-19,Winchester - Lynch Elementary,03440020, 48, 89, 88, 81, 79, 59, 91, 0, 0, 0, 0, 0, 0, 0, 0, 535 -NA,NA,"",2018-19,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 353, 377, 374, 0, 0, 0, 0, 0," 1,104" -NA,NA,"",2018-19,Winchester - Muraco Elementary,03440040, 0, 52, 60, 66, 59, 64, 75, 0, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2018-19,Winchester - Vinson-Owen Elementary,03440025, 23, 60, 64, 55, 78, 76, 84, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2018-19,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344, 366, 339, 310, 0," 1,359" -NA,NA,"",2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 132, 148, 166, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 42, 154, 139, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2018-19,Winthrop - Winthrop High School,03460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 156, 137, 153, 0, 595 -NA,NA,"",2018-19,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 144, 164, 154, 0, 0, 0, 0, 0, 462 -NA,NA,"",2018-19,Woburn - Clyde Reeves,03470040, 35, 70, 48, 63, 52, 58, 81, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2018-19,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 191, 176, 157, 0, 0, 0, 0, 0, 524 -NA,NA,"",2018-19,Woburn - Goodyear Elementary School,03470005, 0, 58, 38, 48, 49, 53, 58, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 0, 59, 70, 70, 71, 77, 46, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2018-19,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 175, 150, 146, 0, 0, 0, 0, 0, 471 -NA,NA,"",2018-19,Woburn - Linscott-Rumford,03470025, 0, 35, 38, 38, 31, 30, 31, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2018-19,Woburn - Malcolm White,03470055, 0, 48, 60, 49, 56, 53, 56, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2018-19,Woburn - Mary D Altavesta,03470065, 0, 47, 42, 39, 50, 40, 38, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2018-19,Woburn - Shamrock,03470043, 123, 32, 40, 33, 38, 37, 40, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2018-19,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 307, 305, 348, 0," 1,301" -NA,NA,"",2018-19,Worcester - Belmont Street Community,03480020, 50, 102, 82, 72, 77, 74, 64, 88, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2018-19,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 362, 323, 0, 0, 0, 0, 0, 685 -NA,NA,"",2018-19,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290, 270, 263, 244, 14," 1,081" -NA,NA,"",2018-19,Worcester - Burncoat Street,03480035, 0, 29, 46, 45, 52, 48, 50, 39, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2018-19,Worcester - Canterbury,03480045, 41, 40, 46, 52, 43, 50, 42, 51, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2018-19,Worcester - Chandler Elementary Community,03480050, 0, 69, 66, 73, 81, 79, 64, 75, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2018-19,Worcester - Chandler Magnet,03480052, 12, 77, 63, 61, 68, 76, 71, 43, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2018-19,Worcester - City View,03480053, 23, 58, 78, 63, 76, 73, 52, 50, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2018-19,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 108, 83, 100, 69, 99, 87, 0, 546 -NA,NA,"",2018-19,Worcester - Clark St Community,03480055, 51, 39, 37, 46, 31, 26, 20, 24, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2018-19,Worcester - Columbus Park,03480060, 13, 60, 78, 62, 58, 61, 68, 65, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2018-19,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361, 414, 400, 341, 13," 1,529" -NA,NA,"",2018-19,Worcester - Elm Park Community,03480095, 0, 75, 68, 49, 64, 71, 60, 69, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2018-19,Worcester - Flagg Street,03480090, 0, 56, 53, 53, 64, 61, 55, 46, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2018-19,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 474, 502, 0, 0, 0, 0, 0, 976 -NA,NA,"",2018-19,Worcester - Francis J McGrath Elementary,03480177, 0, 47, 43, 32, 32, 39, 29, 23, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2018-19,Worcester - Gates Lane,03480110, 67, 86, 73, 68, 65, 65, 77, 52, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2018-19,Worcester - Goddard School/Science Technical,03480100, 23, 62, 50, 51, 57, 45, 58, 61, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2018-19,Worcester - Grafton Street,03480115, 0, 57, 59, 63, 53, 66, 64, 40, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2018-19,Worcester - Head Start,03480002, 551, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 551 -NA,NA,"",2018-19,Worcester - Heard Street,03480136, 0, 40, 53, 40, 37, 44, 37, 34, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2018-19,Worcester - Jacob Hiatt Magnet,03480140, 41, 65, 61, 56, 52, 52, 43, 40, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2018-19,Worcester - Lake View,03480145, 0, 46, 59, 45, 47, 41, 55, 36, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2018-19,Worcester - Lincoln Street,03480160, 0, 50, 58, 24, 39, 23, 25, 36, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2018-19,Worcester - May Street,03480175, 0, 37, 44, 45, 42, 60, 51, 53, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2018-19,Worcester - Midland Street,03480185, 0, 42, 36, 28, 28, 35, 37, 24, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2018-19,Worcester - Nelson Place,03480200, 48, 85, 75, 78, 54, 83, 63, 63, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2018-19,Worcester - Norrback Avenue,03480202, 73, 90, 71, 62, 72, 72, 79, 60, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2018-19,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 339, 281, 274, 16," 1,279" -NA,NA,"",2018-19,Worcester - Quinsigamond,03480210, 29, 103, 111, 103, 81, 96, 119, 103, 0, 0, 0, 0, 0, 0, 0, 745 -NA,NA,"",2018-19,Worcester - Rice Square,03480215, 0, 73, 82, 54, 72, 62, 69, 64, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2018-19,Worcester - Roosevelt,03480220, 61, 100, 94, 95, 80, 98, 94, 66, 0, 0, 0, 0, 0, 0, 0, 688 -NA,NA,"",2018-19,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 338, 347, 318, 18," 1,397" -NA,NA,"",2018-19,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 48, 424, 430, 0, 0, 0, 0, 0, 902 -NA,NA,"",2018-19,Worcester - Tatnuck,03480230, 25, 69, 53, 57, 51, 51, 55, 49, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2018-19,Worcester - Thorndyke Road,03480235, 0, 42, 56, 66, 52, 48, 57, 51, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2018-19,Worcester - Union Hill School,03480240, 0, 48, 65, 61, 54, 64, 68, 55, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2018-19,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 38, 39, 40, 35, 0, 240 -NA,NA,"",2018-19,Worcester - Vernon Hill School,03480280, 55, 86, 51, 60, 48, 56, 80, 81, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2018-19,Worcester - Wawecus Road School,03480026, 0, 12, 16, 19, 24, 23, 28, 22, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2018-19,Worcester - West Tatnuck,03480260, 51, 43, 57, 43, 38, 47, 48, 44, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2018-19,Worcester - Woodland Academy,03480030, 0, 79, 85, 92, 73, 81, 100, 90, 0, 0, 0, 0, 0, 0, 0, 600 -NA,NA,"",2018-19,Worcester - Worcester Arts Magnet School,03480225, 27, 59, 59, 47, 57, 55, 59, 43, 0, 0, 0, 0, 0, 0, 0, 406 -NA,NA,"",2018-19,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 0, 384, 382, 0, 0, 0, 0, 0, 766 -NA,NA,"",2018-19,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386, 374, 337, 329, 0," 1,426" -NA,NA,"",2018-19,Worthington - R. H. Conwell,03490010, 17, 10, 13, 7, 9, 8, 7, 3, 0, 0, 0, 0, 0, 0, 0, 74 -NA,NA,"",2018-19,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 131, 158, 153, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2018-19,Wrentham - Delaney,03500003, 91, 106, 128, 124, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 117, 116, 113, 117, 122, 118, 115, 123, 120, 101, 88, 84, 91, 0," 1,425" -NA,NA,"",2017-18,Abington - Abington Early Education Program,00010001, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 84 -NA,NA,"",2017-18,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 130, 111, 123, 3, 520 -NA,NA,"",2017-18,Abington - Abington Middle School,00010405, 0, 0, 0, 0, 0, 0, 154, 188, 178, 167, 0, 0, 0, 0, 0, 687 -NA,NA,"",2017-18,Abington - Beaver Brook Elementary,00010020, 0, 137, 155, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2017-18,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 168, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 80, 76, 76, 81, 69, 56, 48, 38, 0, 524 -NA,NA,"",2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427, 447, 501, 452, 0," 1,827" -NA,NA,"",2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 78, 59, 62, 55, 50, 69, 74, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 38, 44, 64, 71, 73, 69, 68, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111 -NA,NA,"",2017-18,Acton-Boxborough - Luther Conant School,06000030, 0, 60, 56, 45, 47, 73, 93, 68, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 75, 64, 65, 70, 73, 70, 70, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2017-18,Acton-Boxborough - Merriam School,06000010, 0, 60, 63, 64, 72, 96, 72, 71, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 41, 57, 65, 73, 50, 47, 69, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 486, 478, 0, 0, 0, 0, 0, 964 -NA,NA,"",2017-18,Acushnet - Acushnet Elementary School,00030025, 51, 108, 81, 99, 105, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 550 -NA,NA,"",2017-18,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 103, 114, 119, 77, 0, 0, 0, 0, 0, 413 -NA,NA,"",2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 53, 85, 79, 80, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 52, 64, 95, 85, 6, 417 -NA,NA,"",2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0, 0, 0, 0, 0, 111, 106, 92, 92, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 144, 158, 159, 158, 149, 121, 104, 0, 993 -NA,NA,"",2017-18,Agawam - Agawam Early Childhood Center,00050003, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2017-18,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 279, 291, 277, 10," 1,175" -NA,NA,"",2017-18,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 311, 262, 0, 0, 0, 0, 0, 573 -NA,NA,"",2017-18,Agawam - Benjamin J Phelps,00050020, 0, 68, 92, 65, 78, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2017-18,Agawam - Clifford M Granger,00050010, 0, 36, 64, 44, 69, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2017-18,Agawam - James Clark School,00050030, 0, 57, 68, 71, 64, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2017-18,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 271, 300, 0, 1, 0, 0, 0, 0, 0, 572 -NA,NA,"",2017-18,Agawam - Robinson Park,00050025, 0, 72, 80, 78, 61, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 50, 49, 46, 47, 46, 46, 46, 44, 39, 0, 0, 0, 0, 0, 413 -NA,NA,"",2017-18,Amesbury - Amesbury Elementary,00070005, 25, 74, 65, 73, 86, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2017-18,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 146, 141, 147, 2, 592 -NA,NA,"",2017-18,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 12, 6, 13, 0, 40 -NA,NA,"",2017-18,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 167, 167, 167, 176, 0, 0, 0, 0, 0, 677 -NA,NA,"",2017-18,Amesbury - Charles C Cashman Elementary,00070010, 28, 71, 72, 92, 91, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2017-18,Amherst - Crocker Farm Elementary,00080009, 65, 36, 41, 51, 53, 58, 39, 65, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2017-18,Amherst - Fort River Elementary,00080020, 0, 33, 45, 46, 43, 45, 73, 50, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2017-18,Amherst - Wildwood Elementary,00080050, 0, 52, 52, 58, 56, 56, 70, 59, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241, 233, 221, 228, 10, 933 -NA,NA,"",2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 194, 216, 0, 0, 0, 0, 0, 410 -NA,NA,"",2017-18,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472, 427, 454, 411, 18," 1,782" -NA,NA,"",2017-18,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 176, 181, 168, 0, 0, 0, 0, 0, 525 -NA,NA,"",2017-18,Andover - Bancroft Elementary,00090003, 0, 91, 78, 94, 95, 105, 115, 0, 0, 0, 0, 0, 0, 0, 0, 578 -NA,NA,"",2017-18,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 185, 202, 169, 0, 0, 0, 0, 0, 556 -NA,NA,"",2017-18,Andover - Henry C Sanborn Elementary,00090010, 0, 51, 58, 70, 69, 67, 73, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2017-18,Andover - High Plain Elementary,00090004, 0, 59, 80, 78, 81, 106, 96, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2017-18,Andover - Shawsheen School,00090005, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85 -NA,NA,"",2017-18,Andover - South Elementary,00090020, 0, 77, 79, 93, 68, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2017-18,Andover - West Elementary,00090025, 0, 85, 103, 97, 113, 97, 113, 0, 0, 0, 0, 0, 0, 0, 0, 608 -NA,NA,"",2017-18,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 143, 125, 143, 0, 0, 0, 0, 0, 411 -NA,NA,"",2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 103, 103, 102, 90, 0, 0, 0, 0, 398 -NA,NA,"",2017-18,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 321, 339, 315, 0," 1,325" -NA,NA,"",2017-18,Arlington - Brackett,00100010, 0, 78, 91, 68, 94, 87, 70, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2017-18,Arlington - Cyrus E Dallin,00100025, 0, 73, 90, 74, 79, 87, 78, 0, 0, 0, 0, 0, 0, 0, 0, 481 -NA,NA,"",2017-18,Arlington - Hardy,00100030, 0, 90, 90, 77, 73, 66, 62, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2017-18,Arlington - John A Bishop,00100005, 0, 64, 77, 70, 71, 73, 65, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2017-18,Arlington - M Norcross Stratton,00100055, 0, 72, 69, 72, 59, 60, 70, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2017-18,Arlington - Menotomy Preschool,00100038, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 85 -NA,NA,"",2017-18,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 442, 415, 401, 0, 0, 0, 0, 0," 1,258" -NA,NA,"",2017-18,Arlington - Peirce,00100045, 0, 67, 50, 46, 45, 49, 48, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2017-18,Arlington - Thompson,00100050, 0, 78, 88, 79, 86, 77, 81, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 65, 72, 71, 73, 92, 94, 86, 0, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 0, 79, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 181, 161, 183, 17, 719 -NA,NA,"",2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 190, 199, 184, 0, 0, 0, 0, 0, 573 -NA,NA,"",2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 97, 81, 101, 98, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2017-18,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 207, 177, 179, 0, 769 -NA,NA,"",2017-18,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 207, 186, 208, 0, 0, 0, 0, 0, 601 -NA,NA,"",2017-18,Ashland - David Mindess,00140015, 0, 0, 0, 0, 220, 211, 216, 0, 0, 0, 0, 0, 0, 0, 0, 647 -NA,NA,"",2017-18,Ashland - Henry E Warren Elementary,00140010, 0, 202, 221, 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 612 -NA,NA,"",2017-18,Ashland - William Pittaway Elementary,00140005, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 284, 275, 254, 0," 1,113" -NA,NA,"",2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 93, 104, 107, 99, 98, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 602 -NA,NA,"",2017-18,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 95, 93, 72, 102, 6, 368 -NA,NA,"",2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 99, 83, 100, 109, 0, 0, 0, 0, 0, 391 -NA,NA,"",2017-18,Athol-Royalston - Royalston Community School,06150050, 0, 20, 13, 22, 17, 20, 23, 24, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 107, 106, 106, 106, 106, 110, 110, 109, 109, 75, 59, 66, 43, 0," 1,212" -NA,NA,"",2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 66, 66, 93, 82, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2017-18,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 17, 37, 0, 61 -NA,NA,"",2017-18,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 456, 441, 405, 390, 11," 1,703" -NA,NA,"",2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 165, 144, 132, 141, 0, 0, 0, 0, 0, 582 -NA,NA,"",2017-18,Attleboro - Early Learning Center,00160008, 184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 0, 81, 98, 97, 80, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2017-18,Attleboro - Hyman Fine Elementary School,00160040, 0, 94, 99, 102, 84, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2017-18,Attleboro - Peter Thacher Elementary School,00160050, 0, 95, 86, 76, 78, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 168, 167, 137, 192, 0, 0, 0, 0, 0, 664 -NA,NA,"",2017-18,Attleboro - Thomas Willett Elementary School,00160035, 0, 89, 76, 85, 94, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2017-18,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 135, 155, 143, 143, 0, 0, 0, 0, 0, 576 -NA,NA,"",2017-18,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 198, 218, 216, 0, 0, 0, 0, 0, 632 -NA,NA,"",2017-18,Auburn - Auburn Senior High,00170505, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 184, 191, 174, 3, 801 -NA,NA,"",2017-18,Auburn - Bryn Mawr,00170010, 0, 96, 109, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2017-18,Auburn - Pakachoag School,00170025, 41, 71, 97, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2017-18,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 200, 197, 180, 0, 0, 0, 0, 0, 0, 0, 0, 577 -NA,NA,"",2017-18,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 0, 65, 59, 39, 53, 54, 39, 3, 312 -NA,NA,"",2017-18,Avon - Ralph D Butler,00180010, 19, 48, 55, 61, 53, 56, 63, 59, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 106, 109, 88, 0, 409 -NA,NA,"",2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 127, 138, 105, 0, 0, 0, 0, 0, 370 -NA,NA,"",2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 40, 61, 66, 50, 63, 54, 66, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 26, 81, 80, 81, 85, 86, 88, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2017-18,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391, 369, 356, 383, 345, 13," 1,857" -NA,NA,"",2017-18,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 378, 359, 0, 0, 0, 0, 0, 0, 737 -NA,NA,"",2017-18,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 424, 433, 0, 0, 0, 0, 0, 0, 0, 0, 857 -NA,NA,"",2017-18,Barnstable - Centerville Elementary,00200010, 0, 65, 48, 68, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135 -NA,NA,"",2017-18,Barnstable - Hyannis West Elementary,00200025, 0, 79, 77, 90, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2017-18,Barnstable - West Barnstable Elementary,00200005, 0, 62, 63, 66, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2017-18,Barnstable - West Villages Elementary School,00200045, 0, 108, 110, 95, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0, 85, 78, 75, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 80, 80, 80, 75, 73, 57, 0, 0, 445 -NA,NA,"",2017-18,Bedford - Bedford High,00230505, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 210, 209, 217, 0, 858 -NA,NA,"",2017-18,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 181, 189, 213, 0, 0, 0, 0, 0, 583 -NA,NA,"",2017-18,Bedford - Lt Elezer Davis,00230010, 0, 197, 199, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 597 -NA,NA,"",2017-18,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 211, 203, 195, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2017-18,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 183, 178, 182, 163, 5, 711 -NA,NA,"",2017-18,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 181, 186, 187, 0, 0, 0, 0, 0, 0, 0, 554 -NA,NA,"",2017-18,Belchertown - Cold Spring,00240005, 35, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2017-18,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 206, 192, 0, 0, 0, 0, 0, 398 -NA,NA,"",2017-18,Belchertown - Swift River Elementary,00240018, 0, 0, 149, 156, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 -NA,NA,"",2017-18,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 158, 149, 145, 130, 0, 763 -NA,NA,"",2017-18,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 188, 172, 189, 170, 0, 0, 0, 0, 0, 0, 719 -NA,NA,"",2017-18,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 9, 8, 9, 0, 34 -NA,NA,"",2017-18,Bellingham - South Elementary,00250020, 0, 75, 80, 83, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2017-18,Bellingham - Stall Brook,00250025, 0, 81, 81, 70, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2017-18,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331, 331, 302, 330, 0," 1,294" -NA,NA,"",2017-18,Belmont - Daniel Butler,00260015, 0, 66, 88, 71, 87, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2017-18,Belmont - Mary Lee Burbank,00260010, 0, 74, 72, 67, 87, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2017-18,Belmont - Roger E Wellington,00260035, 65, 91, 117, 114, 118, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 625 -NA,NA,"",2017-18,Belmont - Winn Brook,00260005, 0, 89, 96, 96, 96, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2017-18,Belmont - Winthrop L Chenery Middle,00260305, 0, 0, 0, 0, 0, 0, 371, 361, 343, 346, 0, 0, 0, 0, 0," 1,421" -NA,NA,"",2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 22, 49, 48, 46, 47, 47, 57, 38, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 50, 50, 50, 50, 51, 52, 50, 45, 45, 0, 0, 0, 0, 0, 443 -NA,NA,"",2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0, 59, 60, 50, 53, 38, 36, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,Berkley - Berkley Community School,00270010, 66, 77, 89, 93, 88, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2017-18,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 94, 91, 97, 109, 0, 0, 0, 0, 0, 391 -NA,NA,"",2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 60, 73, 70, 48, 34, 38, 31, 0, 354 -NA,NA,"",2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 118, 145, 126, 6, 523 -NA,NA,"",2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 78, 75, 101, 120, 0, 0, 0, 0, 0, 374 -NA,NA,"",2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 14, 84, 48, 73, 61, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2017-18,Berlin - Berlin Memorial,00280005, 15, 27, 28, 31, 21, 29, 32, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 95, 91, 90, 84, 73, 83, 78, 0, 594 -NA,NA,"",2017-18,Beverly - Ayers/Ryal Side School,00300055, 0, 85, 69, 92, 88, 91, 76, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2017-18,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 312, 272, 339, 2," 1,244" -NA,NA,"",2017-18,Beverly - Briscoe Middle,00300305, 0, 0, 0, 0, 0, 0, 0, 318, 329, 350, 0, 0, 0, 0, 0, 997 -NA,NA,"",2017-18,Beverly - Centerville Elementary,00300010, 0, 46, 67, 56, 61, 73, 59, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2017-18,Beverly - Cove Elementary,00300015, 0, 105, 74, 81, 82, 73, 77, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2017-18,Beverly - Hannah Elementary,00300033, 0, 63, 55, 55, 78, 58, 82, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2017-18,Beverly - McKeown School,00300002, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114 -NA,NA,"",2017-18,Beverly - North Beverly Elementary,00300040, 0, 65, 53, 63, 59, 92, 66, 0, 0, 0, 0, 0, 0, 0, 1, 399 -NA,NA,"",2017-18,Billerica - Billerica Memorial High School,00310505, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 347, 290, 281, 6," 1,340" -NA,NA,"",2017-18,Billerica - Eugene C Vining,00310030, 0, 35, 31, 34, 31, 33, 31, 0, 0, 0, 0, 0, 0, 0, 0, 195 -NA,NA,"",2017-18,Billerica - Frederick J Dutile,00310007, 0, 44, 45, 45, 49, 38, 52, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2017-18,Billerica - Hajjar Elementary,00310026, 0, 74, 77, 78, 66, 97, 70, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2017-18,Billerica - John F Kennedy,00310012, 0, 49, 43, 64, 54, 56, 47, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2017-18,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 0, 162, 172, 172, 0, 0, 0, 0, 0, 506 -NA,NA,"",2017-18,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 0, 225, 210, 217, 0, 0, 0, 0, 0, 652 -NA,NA,"",2017-18,Billerica - Parker,00310015, 0, 77, 75, 95, 84, 90, 81, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,Billerica - Thomas Ditson,00310005, 0, 74, 91, 82, 94, 90, 105, 0, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311, 311, 305, 296, 0," 1,223" -NA,NA,"",2017-18,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 92, 107, 100, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 106, 107, 91, 2, 407 -NA,NA,"",2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 130, 141, 155, 0, 0, 0, 0, 0, 426 -NA,NA,"",2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 91, 86, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,Blackstone-Millville - Millville Elementary,06220010, 60, 38, 35, 40, 37, 26, 49, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 201, 214, 215, 0, 854 -NA,NA,"",2017-18,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 52, 55, 63, 54, 0, 224 -NA,NA,"",2017-18,Boston - Baldwin Early Learning Center,00350003, 83, 57, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2017-18,Boston - Beethoven,00350021, 44, 85, 93, 93, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2017-18,Boston - Blackstone,00350390, 76, 78, 82, 78, 85, 92, 84, 0, 0, 0, 0, 0, 0, 0, 0, 575 -NA,NA,"",2017-18,Boston - Boston Adult Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 33, 0, 154 -NA,NA,"",2017-18,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 136, 125, 80, 0, 469 -NA,NA,"",2017-18,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 34, 38, 107, 0, 182 -NA,NA,"",2017-18,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 131, 116, 107, 0, 474 -NA,NA,"",2017-18,Boston - Boston International High School,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 90, 67, 74, 0, 366 -NA,NA,"",2017-18,Boston - Boston Latin,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 417, 380, 443, 411, 390, 412, 0," 2,453" -NA,NA,"",2017-18,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 300, 257, 372, 285, 285, 282, 0," 1,781" -NA,NA,"",2017-18,Boston - Boston Teachers Union School,00350012, 20, 21, 24, 19, 26, 31, 31, 46, 30, 39, 0, 0, 0, 0, 0, 287 -NA,NA,"",2017-18,Boston - Brighton High,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 141, 204, 205, 0, 682 -NA,NA,"",2017-18,Boston - Carter Developmental Center,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 2, 6, 14, 0, 29 -NA,NA,"",2017-18,Boston - Charles H Taylor,00350054, 21, 75, 85, 72, 107, 98, 69, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2017-18,Boston - Charles Sumner,00350052, 61, 101, 85, 90, 90, 89, 65, 0, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2017-18,Boston - Charlestown High,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, 209, 200, 242, 0, 920 -NA,NA,"",2017-18,Boston - Clarence R Edwards Middle,00350430, 0, 0, 0, 0, 0, 0, 0, 102, 105, 99, 0, 0, 0, 0, 0, 306 -NA,NA,"",2017-18,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 14, 22, 29, 0, 79 -NA,NA,"",2017-18,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 63, 126, 97, 0, 389 -NA,NA,"",2017-18,Boston - Curley K-8 School,00350020, 100, 94, 90, 79, 90, 118, 108, 111, 79, 75, 0, 0, 0, 0, 0, 944 -NA,NA,"",2017-18,Boston - Curtis Guild,00350062, 32, 36, 32, 41, 55, 47, 52, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2017-18,Boston - Dante Alighieri Montessori School,00350066, 28, 14, 13, 12, 13, 9, 3, 0, 0, 0, 0, 0, 0, 0, 0, 92 -NA,NA,"",2017-18,Boston - David A Ellis,00350072, 58, 74, 83, 68, 74, 54, 46, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2017-18,Boston - Dearborn,00350074, 0, 0, 0, 0, 0, 0, 0, 62, 56, 62, 64, 35, 39, 36, 0, 354 -NA,NA,"",2017-18,Boston - Dennis C Haley,00350077, 27, 39, 44, 45, 46, 46, 66, 48, 41, 45, 0, 0, 0, 0, 0, 447 -NA,NA,"",2017-18,Boston - Donald Mckay,00350080, 22, 62, 66, 89, 90, 83, 92, 98, 101, 75, 0, 0, 0, 0, 0, 778 -NA,NA,"",2017-18,Boston - Dorchester Academy,00350651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 3, 13, 19, 0, 42 -NA,NA,"",2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 44, 37, 38, 38, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2017-18,Boston - Dr. William Henderson Lower,00350266, 74, 69, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2017-18,Boston - Dr. William Henderson Upper,00350426, 0, 0, 0, 44, 51, 47, 46, 62, 59, 68, 58, 56, 57, 58, 0, 606 -NA,NA,"",2017-18,Boston - East Boston Early Childhood Center,00350009, 70, 76, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2017-18,Boston - East Boston High,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 274, 372, 358, 0," 1,344" -NA,NA,"",2017-18,Boston - Edison K-8,00350375, 20, 50, 61, 66, 90, 72, 74, 85, 58, 59, 0, 0, 0, 0, 0, 635 -NA,NA,"",2017-18,Boston - Edward Everett,00350088, 23, 40, 38, 39, 44, 47, 41, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2017-18,Boston - ELC - West Zone,00350006, 45, 36, 34, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115 -NA,NA,"",2017-18,Boston - Eliot Elementary,00350096, 58, 81, 81, 79, 95, 64, 74, 48, 29, 26, 0, 0, 0, 0, 0, 635 -NA,NA,"",2017-18,Boston - Ellis Mendell,00350100, 29, 39, 43, 41, 44, 41, 30, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2017-18,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 110, 146, 120, 0, 491 -NA,NA,"",2017-18,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 97, 89, 76, 0, 364 -NA,NA,"",2017-18,Boston - Franklin D Roosevelt,00350116, 44, 44, 42, 43, 44, 50, 46, 55, 37, 48, 0, 0, 0, 0, 0, 453 -NA,NA,"",2017-18,Boston - Gardner Pilot Academy,00350326, 35, 41, 40, 40, 40, 38, 41, 47, 37, 42, 0, 0, 0, 0, 0, 401 -NA,NA,"",2017-18,Boston - George H Conley,00350122, 21, 16, 26, 48, 25, 53, 23, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2017-18,Boston - Greater Egleston Community High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 28, 64, 0, 105 -NA,NA,"",2017-18,Boston - Harvard-Kent,00350200, 50, 45, 54, 62, 81, 107, 74, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2017-18,Boston - Haynes Early Education Center,00350010, 59, 75, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2017-18,Boston - Henry Grew,00350135, 21, 42, 40, 33, 48, 31, 39, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2017-18,Boston - Higginson,00350015, 31, 53, 42, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171 -NA,NA,"",2017-18,Boston - Higginson/Lewis K-8,00350377, 0, 0, 2, 8, 83, 59, 51, 45, 25, 35, 0, 0, 0, 0, 0, 308 -NA,NA,"",2017-18,Boston - Horace Mann School for the Deaf,00350750, 1, 7, 7, 5, 8, 0, 8, 2, 6, 7, 3, 10, 12, 8, 0, 84 -NA,NA,"",2017-18,Boston - Hugh Roe O'Donnell,00350141, 21, 42, 33, 38, 44, 32, 37, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2017-18,Boston - Jackson Mann,00350013, 47, 69, 70, 74, 78, 82, 74, 67, 40, 55, 0, 0, 0, 0, 0, 656 -NA,NA,"",2017-18,Boston - James Condon Elementary,00350146, 50, 73, 79, 81, 111, 124, 125, 121, 76, 65, 0, 0, 0, 0, 0, 905 -NA,NA,"",2017-18,Boston - James J Chittick,00350154, 46, 37, 47, 43, 40, 52, 41, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2017-18,Boston - James Otis,00350156, 47, 61, 59, 60, 65, 65, 48, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2017-18,Boston - James P Timilty Middle,00350485, 0, 0, 0, 0, 0, 0, 0, 102, 92, 137, 0, 0, 0, 0, 0, 331 -NA,NA,"",2017-18,Boston - James W Hennigan,00350153, 0, 42, 44, 57, 61, 107, 94, 72, 59, 46, 0, 0, 0, 0, 0, 582 -NA,NA,"",2017-18,Boston - Jeremiah E Burke High,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 87, 114, 169, 0, 472 -NA,NA,"",2017-18,Boston - John D Philbrick,00350172, 11, 20, 21, 22, 49, 23, 17, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2017-18,Boston - John F Kennedy,00350166, 30, 56, 61, 63, 72, 60, 50, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2017-18,Boston - John W McCormack,00350179, 0, 0, 0, 0, 0, 0, 0, 118, 124, 129, 0, 0, 0, 0, 0, 371 -NA,NA,"",2017-18,Boston - John Winthrop,00350180, 30, 54, 59, 41, 48, 50, 45, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2017-18,Boston - Joseph J Hurley,00350182, 33, 48, 46, 49, 44, 40, 37, 30, 17, 16, 0, 0, 0, 0, 0, 360 -NA,NA,"",2017-18,Boston - Joseph Lee,00350183, 66, 53, 58, 53, 60, 85, 74, 79, 68, 65, 0, 0, 0, 0, 0, 661 -NA,NA,"",2017-18,Boston - Joseph P Manning,00350184, 12, 22, 20, 24, 25, 23, 26, 0, 0, 0, 0, 0, 0, 0, 0, 152 -NA,NA,"",2017-18,Boston - Joseph P Tynan,00350181, 44, 25, 30, 31, 31, 38, 34, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2017-18,Boston - Josiah Quincy,00350286, 83, 113, 120, 117, 123, 130, 146, 0, 0, 0, 0, 0, 0, 0, 0, 832 -NA,NA,"",2017-18,Boston - Joyce Kilmer,00350190, 44, 60, 44, 44, 52, 73, 51, 44, 27, 27, 0, 0, 0, 0, 0, 466 -NA,NA,"",2017-18,Boston - King K-8,00350376, 59, 61, 62, 54, 59, 50, 41, 46, 28, 27, 0, 0, 0, 0, 0, 487 -NA,NA,"",2017-18,Boston - Lee Academy,00350001, 45, 36, 36, 52, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2017-18,Boston - Lilla G. Frederick Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 143, 149, 202, 0, 0, 0, 0, 0, 494 -NA,NA,"",2017-18,Boston - Lyndon,00350262, 66, 65, 71, 68, 55, 80, 51, 59, 35, 32, 0, 0, 0, 0, 0, 582 -NA,NA,"",2017-18,Boston - Lyon K-8,00350004, 0, 11, 15, 14, 14, 16, 14, 17, 10, 20, 0, 0, 0, 0, 0, 131 -NA,NA,"",2017-18,Boston - Lyon Upper 9-12,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 34, 36, 27, 0, 124 -NA,NA,"",2017-18,Boston - Madison Park High,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232, 238, 198, 191, 0, 859 -NA,NA,"",2017-18,Boston - Manassah E Bradley,00350215, 35, 41, 35, 42, 44, 62, 36, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2017-18,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 73, 75, 68, 0, 298 -NA,NA,"",2017-18,Boston - Mario Umana Academy,00350656, 27, 74, 75, 71, 67, 93, 90, 205, 142, 160, 0, 0, 0, 0, 0," 1,004" -NA,NA,"",2017-18,Boston - Mather,00350227, 62, 86, 82, 93, 107, 95, 83, 0, 0, 0, 0, 0, 0, 0, 0, 608 -NA,NA,"",2017-18,Boston - Mattapan Early Elementary School,00350016, 94, 126, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2017-18,Boston - Maurice J Tobin,00350229, 18, 40, 53, 59, 72, 48, 47, 40, 25, 27, 0, 0, 0, 0, 0, 429 -NA,NA,"",2017-18,Boston - Michael J Perkins,00350231, 0, 28, 40, 35, 22, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2017-18,Boston - Mildred Avenue K-8,00350378, 44, 42, 43, 44, 49, 32, 23, 108, 81, 84, 0, 0, 0, 0, 0, 550 -NA,NA,"",2017-18,Boston - Mission Hill School,00350382, 36, 21, 30, 22, 26, 28, 25, 19, 16, 18, 0, 0, 0, 0, 0, 241 -NA,NA,"",2017-18,Boston - Mozart,00350237, 25, 23, 24, 28, 27, 30, 22, 0, 0, 0, 0, 0, 0, 0, 0, 179 -NA,NA,"",2017-18,Boston - Nathan Hale,00350243, 18, 22, 24, 21, 25, 24, 24, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2017-18,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 72, 0, 88, 73, 83, 76, 0, 392 -NA,NA,"",2017-18,Boston - O W Holmes,00350138, 25, 45, 53, 56, 62, 63, 43, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2017-18,Boston - O'Bryant School Math/Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 179, 160, 397, 264, 276, 286, 0," 1,562" -NA,NA,"",2017-18,Boston - Oliver Hazard Perry,00350255, 22, 26, 24, 30, 31, 25, 17, 23, 12, 10, 0, 0, 0, 0, 0, 220 -NA,NA,"",2017-18,Boston - Orchard Gardens,00350257, 53, 90, 92, 98, 99, 107, 101, 92, 89, 84, 0, 0, 0, 0, 0, 905 -NA,NA,"",2017-18,Boston - Patrick J Kennedy,00350264, 25, 37, 39, 50, 52, 62, 40, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2017-18,Boston - Paul A Dever,00350268, 35, 47, 55, 56, 54, 54, 55, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 49, 46, 48, 45, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2017-18,Boston - Phineas Bates,00350278, 20, 37, 40, 38, 37, 49, 41, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2017-18,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 147, 63, 68, 61, 60, 56, 52, 0, 507 -NA,NA,"",2017-18,Boston - Rafael Hernandez,00350691, 46, 49, 50, 48, 49, 42, 35, 25, 22, 23, 0, 0, 0, 0, 0, 389 -NA,NA,"",2017-18,Boston - Richard J Murphy,00350240, 44, 65, 61, 86, 96, 136, 134, 146, 84, 89, 0, 0, 0, 0, 0, 941 -NA,NA,"",2017-18,Boston - Roger Clap,00350298, 12, 18, 17, 33, 42, 17, 18, 0, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2017-18,Boston - Samuel Adams,00350302, 40, 52, 41, 48, 51, 26, 33, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2017-18,Boston - Samuel W Mason,00350304, 26, 37, 37, 38, 35, 35, 34, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2017-18,Boston - Sarah Greenwood,00350308, 38, 49, 43, 55, 45, 43, 39, 40, 28, 22, 0, 0, 0, 0, 0, 402 -NA,NA,"",2017-18,Boston - Snowden International School at Copley,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 104, 115, 83, 0, 444 -NA,NA,"",2017-18,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 112, 121, 125, 140, 148, 135, 136, 0, 917 -NA,NA,"",2017-18,Boston - The English High,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 98, 119, 140, 0, 539 -NA,NA,"",2017-18,Boston - Thomas J Kenny,00350328, 29, 41, 38, 46, 57, 73, 41, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2017-18,Boston - UP Academy Holland,00350167, 54, 107, 111, 114, 128, 133, 115, 0, 0, 0, 0, 0, 0, 0, 0, 762 -NA,NA,"",2017-18,Boston - Urban Science Academy,00350579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96, 69, 102, 125, 0, 392 -NA,NA,"",2017-18,Boston - Warren-Prescott,00350346, 57, 75, 70, 69, 68, 70, 66, 71, 28, 28, 0, 0, 0, 0, 0, 602 -NA,NA,"",2017-18,Boston - Washington Irving Middle,00350445, 0, 0, 0, 0, 0, 0, 0, 126, 100, 95, 0, 0, 0, 0, 0, 321 -NA,NA,"",2017-18,Boston - West Roxbury Academy,00350658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110, 84, 162, 119, 0, 475 -NA,NA,"",2017-18,Boston - William E Russell,00350366, 66, 58, 60, 58, 51, 66, 49, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2017-18,Boston - William Ellery Channing,00350360, 27, 37, 40, 38, 29, 21, 24, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2017-18,Boston - William H Ohrenberger,00350258, 0, 0, 0, 0, 117, 123, 117, 126, 77, 88, 0, 0, 0, 0, 0, 648 -NA,NA,"",2017-18,Boston - William McKinley,00350363, 0, 0, 7, 7, 12, 13, 18, 18, 31, 37, 67, 52, 34, 59, 0, 355 -NA,NA,"",2017-18,Boston - William Monroe Trotter,00350370, 53, 59, 57, 62, 69, 72, 65, 45, 20, 23, 0, 0, 0, 0, 0, 525 -NA,NA,"",2017-18,Boston - Winship Elementary,00350374, 43, 34, 29, 32, 34, 24, 25, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2017-18,Boston - Young Achievers,00350380, 44, 54, 61, 60, 66, 114, 41, 48, 43, 34, 0, 0, 0, 0, 0, 565 -NA,NA,"",2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 96, 99, 98, 94, 87, 75, 75, 76, 0, 700 -NA,NA,"",2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 47, 2, 248, 0, 404 -NA,NA,"",2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 45, 60, 62, 88, 84, 58, 74, 0, 471 -NA,NA,"",2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 87, 52, 61, 89, 61, 61, 52, 0, 463 -NA,NA,"",2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 118, 131, 141, 141, 117, 115, 97, 78, 0, 0, 0, 0, 0, 0, 0, 938 -NA,NA,"",2017-18,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 127, 120, 100, 4, 480 -NA,NA,"",2017-18,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 156, 173, 161, 193, 0, 0, 0, 0, 0, 683 -NA,NA,"",2017-18,Bourne - Bournedale Elementary School,00360005, 73, 79, 67, 70, 87, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449 -NA,NA,"",2017-18,Bourne - Peebles Elementary School,00360010, 0, 40, 58, 83, 70, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2017-18,Boxford - Harry Lee Cole,00380005, 46, 80, 92, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2017-18,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 90, 91, 101, 106, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2017-18,Boylston - Boylston Elementary,00390005, 34, 39, 33, 49, 40, 49, 55, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2017-18,Braintree - Archie T Morrison,00400033, 0, 20, 65, 86, 67, 99, 81, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2017-18,Braintree - Braintree High,00400505, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422, 426, 389, 418, 11," 1,801" -NA,NA,"",2017-18,Braintree - Donald Ross,00400050, 0, 19, 55, 42, 63, 50, 56, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2017-18,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 0, 232, 242, 241, 0, 0, 0, 0, 0, 715 -NA,NA,"",2017-18,Braintree - Highlands,00400015, 0, 21, 75, 85, 79, 79, 85, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2017-18,Braintree - Hollis,00400005, 0, 24, 79, 82, 77, 79, 91, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2017-18,Braintree - Liberty,00400025, 0, 0, 83, 86, 94, 87, 110, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2017-18,Braintree - Mary E Flaherty School,00400020, 0, 22, 73, 68, 62, 78, 74, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 0, 250, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2017-18,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 0, 214, 230, 222, 0, 0, 0, 0, 0, 666 -NA,NA,"",2017-18,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 82, 82, 78, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2017-18,Brewster - Stony Brook Elementary,00410005, 30, 54, 78, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 36, 39, 40, 40, 40, 40, 38, 35, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 0, 0, 0, 0, 0, 510 -NA,NA,"",2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352, 352, 404, 346, 9," 1,463" -NA,NA,"",2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 159, 161, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 145, 165, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 127, 239, 238, 213, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,036" -NA,NA,"",2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 170, 132, 176, 185, 0, 0, 0, 0, 0, 663 -NA,NA,"",2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 4, 4, 1, 1, 16 -NA,NA,"",2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 0, 253, 300, 248, 0, 0, 0, 0, 0, 0, 0, 801 -NA,NA,"",2017-18,Brimfield - Brimfield Elementary,00430005, 35, 32, 35, 27, 42, 38, 33, 44, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 113, 116, 107, 0, 456 -NA,NA,"",2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 326, 306, 286, 0," 1,278" -NA,NA,"",2017-18,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 170, 168, 166, 0, 0, 0, 0, 0, 504 -NA,NA,"",2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 237, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2017-18,Brockton - Brockton Champion High School,00440515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 35, 34, 27, 38, 176 -NA,NA,"",2017-18,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,143"," 1,022", 992, 950, 16," 4,123" -NA,NA,"",2017-18,Brockton - Brookfield,00440010, 0, 84, 95, 109, 116, 133, 110, 0, 0, 0, 0, 0, 0, 0, 0, 647 -NA,NA,"",2017-18,Brockton - Downey,00440110, 0, 94, 99, 110, 111, 114, 101, 0, 0, 0, 0, 0, 0, 0, 0, 629 -NA,NA,"",2017-18,Brockton - Dr W Arnone Community School,00440001, 0, 119, 126, 122, 134, 116, 119, 0, 0, 0, 0, 0, 0, 0, 0, 736 -NA,NA,"",2017-18,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 157, 166, 158, 0, 0, 0, 0, 0, 481 -NA,NA,"",2017-18,Brockton - Edgar B Davis,00440023, 0, 111, 125, 134, 118, 106, 122, 113, 100, 93, 0, 0, 0, 0, 0," 1,022" -NA,NA,"",2017-18,Brockton - Edison Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 20, 97, 78, 0, 196 -NA,NA,"",2017-18,Brockton - Frederick Douglass Academy,00440080, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 17, 8, 3, 0, 0, 34 -NA,NA,"",2017-18,Brockton - Gilmore Elementary School,00440055, 0, 82, 105, 94, 93, 84, 100, 0, 0, 0, 0, 0, 0, 0, 0, 558 -NA,NA,"",2017-18,Brockton - Hancock,00440045, 0, 114, 104, 99, 115, 110, 117, 0, 0, 0, 0, 0, 0, 0, 0, 659 -NA,NA,"",2017-18,Brockton - Huntington Therapeutic Day School,00440400, 0, 0, 0, 2, 1, 2, 1, 6, 3, 3, 13, 8, 10, 9, 0, 58 -NA,NA,"",2017-18,Brockton - John F Kennedy,00440017, 0, 93, 95, 100, 104, 87, 108, 0, 0, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 0, 0, 0, 0, 0, 0, 0, 232, 233, 221, 0, 0, 0, 0, 0, 686 -NA,NA,"",2017-18,Brockton - Louis F Angelo Elementary,00440065, 0, 105, 121, 134, 136, 212, 208, 0, 0, 0, 0, 0, 0, 0, 0, 916 -NA,NA,"",2017-18,Brockton - Manthala George Jr. School,00440003, 0, 148, 158, 149, 140, 152, 173, 0, 0, 0, 0, 0, 0, 0, 0, 920 -NA,NA,"",2017-18,Brockton - Mary E. Baker School,00440002, 0, 145, 147, 139, 134, 119, 131, 0, 0, 0, 0, 0, 0, 0, 0, 815 -NA,NA,"",2017-18,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 212, 201, 216, 0, 0, 0, 0, 0, 629 -NA,NA,"",2017-18,Brockton - Oscar F Raymond,00440078, 0, 166, 167, 145, 144, 133, 157, 0, 0, 0, 0, 0, 0, 0, 0, 912 -NA,NA,"",2017-18,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 164, 163, 162, 0, 0, 0, 0, 0, 489 -NA,NA,"",2017-18,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 213, 226, 198, 0, 0, 0, 0, 0, 637 -NA,NA,"",2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 178, 184, 180, 187, 187, 186, 188, 174, 138, 66, 68, 0, 0, 0," 1,736" -NA,NA,"",2017-18,Brookfield - Brookfield Elementary,00450005, 33, 40, 38, 42, 39, 38, 40, 41, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60 -NA,NA,"",2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60 -NA,NA,"",2017-18,Brookline - Brookline High,00460505, 17, 0, 0, 0, 0, 0, 0, 0, 0, 0, 531, 510, 497, 506, 19," 2,080" -NA,NA,"",2017-18,Brookline - Edith C Baker,00460005, 0, 78, 85, 76, 111, 68, 101, 85, 75, 83, 0, 0, 0, 0, 0, 762 -NA,NA,"",2017-18,Brookline - Edward Devotion,00460015, 0, 92, 85, 96, 92, 96, 93, 94, 78, 75, 0, 0, 0, 0, 0, 801 -NA,NA,"",2017-18,Brookline - Heath,00460025, 31, 55, 45, 61, 72, 62, 68, 55, 63, 53, 0, 0, 0, 0, 0, 565 -NA,NA,"",2017-18,Brookline - John D Runkle,00460045, 15, 62, 61, 66, 71, 78, 71, 65, 68, 70, 0, 0, 0, 0, 0, 627 -NA,NA,"",2017-18,Brookline - Lawrence,00460030, 0, 88, 76, 91, 86, 83, 84, 75, 60, 79, 0, 0, 0, 0, 0, 722 -NA,NA,"",2017-18,Brookline - Michael Driscoll,00460020, 16, 61, 62, 68, 81, 61, 73, 75, 68, 64, 0, 0, 0, 0, 0, 629 -NA,NA,"",2017-18,Brookline - Pierce,00460040, 0, 108, 91, 111, 108, 114, 84, 76, 84, 83, 0, 0, 0, 0, 0, 859 -NA,NA,"",2017-18,Brookline - The Lynch Center,00460060, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58 -NA,NA,"",2017-18,Brookline - William H Lincoln,00460035, 0, 65, 61, 62, 70, 59, 86, 60, 54, 61, 0, 0, 0, 0, 0, 578 -NA,NA,"",2017-18,Burlington - Burlington High,00480505, 94, 9, 0, 0, 0, 0, 0, 0, 0, 0, 229, 251, 251, 230, 0," 1,064" -NA,NA,"",2017-18,Burlington - Fox Hill,00480007, 0, 72, 81, 71, 64, 47, 64, 0, 0, 0, 0, 0, 0, 0, 0, 399 -NA,NA,"",2017-18,Burlington - Francis Wyman Elementary,00480035, 0, 86, 116, 84, 91, 85, 77, 0, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2017-18,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 253, 272, 276, 0, 0, 0, 0, 0, 801 -NA,NA,"",2017-18,Burlington - Memorial,00480015, 0, 78, 62, 76, 61, 65, 65, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2017-18,Burlington - Pine Glen Elementary,00480020, 0, 54, 51, 66, 38, 41, 60, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2017-18,Cambridge - Amigos School,00490006, 24, 56, 45, 45, 41, 41, 46, 36, 38, 25, 0, 0, 0, 0, 0, 397 -NA,NA,"",2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 484, 486, 507, 485, 3," 1,965" -NA,NA,"",2017-18,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 77, 80, 91, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Cambridge - Cambridgeport,00490007, 59, 70, 46, 42, 44, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 61, 51, 40, 37, 37, 33, 37, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,Cambridge - Graham and Parks,00490080, 33, 50, 59, 56, 51, 52, 61, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2017-18,Cambridge - Haggerty,00490020, 27, 43, 47, 42, 35, 34, 29, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2017-18,Cambridge - John M Tobin,00490065, 91, 39, 40, 39, 32, 26, 26, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2017-18,Cambridge - Kennedy-Longfellow,00490040, 41, 59, 46, 45, 46, 26, 30, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2017-18,Cambridge - King Open,00490035, 31, 57, 50, 51, 47, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2017-18,Cambridge - Maria L. Baldwin,00490005, 58, 65, 59, 45, 49, 43, 45, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2017-18,Cambridge - Martin Luther King Jr.,00490030, 38, 62, 51, 48, 44, 44, 41, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2017-18,Cambridge - Morse,00490045, 60, 44, 42, 43, 43, 30, 44, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2017-18,Cambridge - Peabody,00490050, 46, 50, 48, 47, 42, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2017-18,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 79, 90, 94, 0, 0, 0, 0, 0, 263 -NA,NA,"",2017-18,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 84, 89, 94, 0, 0, 0, 0, 0, 267 -NA,NA,"",2017-18,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 90, 100, 91, 0, 0, 0, 0, 0, 281 -NA,NA,"",2017-18,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252, 239, 235, 255, 1, 982 -NA,NA,"",2017-18,Canton - Dean S Luce,00500020, 0, 65, 84, 81, 78, 90, 101, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2017-18,Canton - John F Kennedy,00500017, 0, 87, 83, 88, 79, 103, 90, 0, 0, 0, 0, 0, 0, 0, 0, 530 -NA,NA,"",2017-18,Canton - Lt Peter M Hansen,00500012, 0, 69, 79, 79, 81, 89, 78, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2017-18,Canton - Rodman Early Childhood Center,00500010, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88 -NA,NA,"",2017-18,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 235, 239, 262, 0, 0, 0, 0, 0, 736 -NA,NA,"",2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 80, 81, 81, 0, 0, 0, 0, 0, 242 -NA,NA,"",2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 163, 138, 142, 3, 590 -NA,NA,"",2017-18,Carlisle - Carlisle School,00510025, 8, 63, 57, 60, 59, 75, 65, 70, 73, 76, 0, 0, 0, 0, 0, 606 -NA,NA,"",2017-18,Carver - Carver Elementary School,00520015, 57, 119, 129, 122, 115, 123, 119, 0, 0, 0, 0, 0, 0, 0, 0, 784 -NA,NA,"",2017-18,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 125, 138, 113, 120, 105, 86, 99, 6, 792 -NA,NA,"",2017-18,Central Berkshire - Becket Washington School,06350005, 17, 14, 19, 14, 22, 22, 17, 0, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2017-18,Central Berkshire - Craneville,06350025, 0, 64, 67, 64, 68, 68, 81, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2017-18,Central Berkshire - Kittredge,06350035, 32, 22, 27, 16, 13, 15, 25, 0, 0, 0, 0, 0, 0, 0, 0, 150 -NA,NA,"",2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 130, 115, 136, 0, 0, 0, 0, 0, 381 -NA,NA,"",2017-18,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 129, 147, 117, 1, 535 -NA,NA,"",2017-18,Chelmsford - Byam School,00560030, 0, 103, 91, 99, 100, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2017-18,Chelmsford - Center Elementary School,00560005, 0, 90, 94, 82, 92, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2017-18,Chelmsford - Charles D Harrington,00560025, 0, 93, 107, 91, 109, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2017-18,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 367, 351, 389, 0," 1,479" -NA,NA,"",2017-18,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 178, 176, 181, 180, 0, 0, 0, 0, 0, 715 -NA,NA,"",2017-18,Chelmsford - Community Education Center,00560001, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132 -NA,NA,"",2017-18,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 181, 224, 199, 212, 0, 0, 0, 0, 0, 816 -NA,NA,"",2017-18,Chelmsford - South Row,00560015, 0, 82, 77, 77, 78, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2017-18,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 398, 413, 393, 333, 1," 1,538" -NA,NA,"",2017-18,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 156, 147, 136, 115, 0, 0, 0, 0, 0, 554 -NA,NA,"",2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 0, 0, 116, 153, 169, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 590 -NA,NA,"",2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 146, 149, 116, 124, 0, 0, 0, 0, 0, 535 -NA,NA,"",2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 109, 139, 150, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2017-18,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 135, 120, 152, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2017-18,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 165, 166, 144, 140, 0, 0, 0, 0, 0, 615 -NA,NA,"",2017-18,Chelsea - Shurtleff Early Childhood,00570003, 275, 513, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 869 -NA,NA,"",2017-18,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 117, 119, 139, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 13, 19, 22, 14, 18, 14, 20, 16, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2017-18,Chicopee - Barry,00610003, 0, 59, 70, 57, 66, 76, 71, 0, 0, 0, 0, 0, 0, 0, 0, 399 -NA,NA,"",2017-18,Chicopee - Belcher,00610010, 0, 101, 94, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2017-18,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 263, 268, 266, 0, 0, 0, 0, 0, 797 -NA,NA,"",2017-18,Chicopee - Bowe,00610015, 20, 100, 75, 67, 72, 76, 68, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2017-18,Chicopee - Bowie,00610020, 0, 43, 48, 63, 51, 64, 64, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2017-18,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 1, 3, 12, 25, 17, 13, 11, 0, 82 -NA,NA,"",2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342, 331, 357, 317, 18," 1,365" -NA,NA,"",2017-18,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264, 226, 206, 244, 10, 950 -NA,NA,"",2017-18,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 253, 250, 247, 0, 0, 0, 0, 0, 750 -NA,NA,"",2017-18,Chicopee - Fairview Elementary,00610050, 0, 71, 70, 72, 80, 90, 78, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2017-18,Chicopee - Gen John J Stefanik,00610090, 0, 61, 73, 72, 62, 67, 68, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Chicopee - Lambert-Lavoie,00610040, 0, 50, 43, 57, 60, 53, 54, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2017-18,Chicopee - Litwin,00610022, 0, 23, 27, 26, 105, 113, 124, 0, 0, 0, 0, 0, 0, 0, 0, 418 -NA,NA,"",2017-18,Chicopee - Streiber Memorial School,00610065, 0, 44, 53, 43, 42, 47, 50, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2017-18,Chicopee - Szetela Early Childhood Center,00610001, 241, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0, 0, 0, 0, 0, 0, 0, 139, 141, 115, 0, 0, 0, 0, 0, 395 -NA,NA,"",2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 72, 52, 36, 0, 283 -NA,NA,"",2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 88, 71, 62, 51, 0, 272 -NA,NA,"",2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 62, 42, 25, 0, 236 -NA,NA,"",2017-18,Clarksburg - Clarksburg Elementary,00630010, 0, 31, 16, 21, 16, 32, 20, 20, 16, 21, 0, 0, 0, 0, 0, 193 -NA,NA,"",2017-18,Clinton - Clinton Elementary,00640050, 101, 146, 139, 145, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 680 -NA,NA,"",2017-18,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 184, 173, 133, 125, 131, 0, 0, 0, 0, 0, 746 -NA,NA,"",2017-18,Clinton - Clinton Senior High,00640505, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 111, 99, 109, 1, 457 -NA,NA,"",2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 20, 19, 20, 20, 20, 20, 19, 20, 16, 20, 41, 39, 43, 28, 0, 345 -NA,NA,"",2017-18,Cohasset - Cohasset Middle/High School,00650505, 0, 0, 0, 0, 0, 0, 0, 119, 133, 125, 129, 127, 119, 94, 0, 846 -NA,NA,"",2017-18,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 127, 141, 122, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2017-18,Cohasset - Joseph Osgood,00650010, 24, 95, 119, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 99, 111, 108, 95, 125, 93, 64, 64, 0, 0, 0, 0, 0, 0, 759 -NA,NA,"",2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 37, 65, 62, 46, 50, 54, 51, 0, 365 -NA,NA,"",2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 40, 40, 42, 41, 42, 39, 40, 36, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 44, 46, 47, 50, 48, 48, 42, 33, 20, 22, 0, 0, 0, 0, 0, 400 -NA,NA,"",2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 42, 42, 43, 42, 42, 39, 38, 32, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2017-18,Concord - Alcott,00670005, 8, 75, 68, 94, 79, 80, 87, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2017-18,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 230, 249, 247, 0, 0, 0, 0, 0, 726 -NA,NA,"",2017-18,Concord - Thoreau,00670020, 9, 76, 72, 74, 70, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2017-18,Concord - Willard,00670030, 6, 69, 65, 73, 74, 73, 79, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 295, 307, 337, 334, 0," 1,273" -NA,NA,"",2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 51, 49, 51, 52, 48, 47, 43, 41, 33, 35, 0, 0, 0, 0, 0, 450 -NA,NA,"",2017-18,Conway - Conway Grammar,00680005, 14, 13, 17, 20, 16, 14, 21, 23, 0, 0, 0, 0, 0, 0, 0, 138 -NA,NA,"",2017-18,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, 234, 245, 228, 3, 941 -NA,NA,"",2017-18,Danvers - Great Oak,00710015, 0, 61, 62, 71, 61, 61, 63, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2017-18,Danvers - Highlands,00710010, 0, 61, 58, 63, 67, 59, 65, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 273, 281, 270, 0, 0, 0, 0, 0, 824 -NA,NA,"",2017-18,Danvers - Ivan G Smith,00710032, 0, 43, 46, 47, 47, 52, 48, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2017-18,Danvers - Riverside,00710030, 86, 42, 44, 34, 50, 48, 50, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2017-18,Danvers - Willis E Thorpe,00710045, 0, 51, 52, 46, 60, 56, 45, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2017-18,Dartmouth - Andrew B. Cushman School,00720005, 66, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2017-18,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263, 283, 266, 260, 0," 1,072" -NA,NA,"",2017-18,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 319, 305, 342, 0, 0, 0, 0, 0, 966 -NA,NA,"",2017-18,Dartmouth - George H Potter,00720030, 12, 67, 62, 77, 74, 63, 75, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2017-18,Dartmouth - James M. Quinn School,00720040, 0, 111, 84, 99, 112, 105, 123, 0, 0, 0, 0, 0, 0, 0, 0, 634 -NA,NA,"",2017-18,Dartmouth - Joseph Demello,00720015, 0, 0, 96, 67, 84, 86, 99, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2017-18,Dedham - Avery,00730010, 0, 0, 71, 48, 57, 71, 74, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2017-18,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186, 198, 188, 162, 0, 734 -NA,NA,"",2017-18,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 197, 198, 208, 0, 0, 0, 0, 0, 603 -NA,NA,"",2017-18,Dedham - Early Childhood Center,00730005, 97, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2017-18,Dedham - Greenlodge,00730025, 0, 0, 45, 37, 52, 66, 66, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2017-18,Dedham - Oakdale,00730030, 0, 0, 55, 55, 58, 48, 69, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2017-18,Dedham - Riverdale,00730045, 0, 0, 30, 34, 33, 36, 46, 0, 0, 0, 0, 0, 0, 0, 0, 179 -NA,NA,"",2017-18,Deerfield - Deerfield Elementary,00740015, 41, 51, 47, 38, 53, 57, 58, 56, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 189, 190, 209, 211, 0," 1,029" -NA,NA,"",2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 24, 59, 77, 94, 93, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 53, 52, 52, 59, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0, 0, 0, 0, 0, 0, 1, 225, 217, 4, 0, 0, 0, 0, 0, 447 -NA,NA,"",2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0, 0, 0, 0, 0, 270, 271, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 96, 100, 116, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 0, 86, 92, 95, 85, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 91, 110, 102, 89, 0, 0, 0, 0, 0, 392 -NA,NA,"",2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 193, 205, 209, 0, 909 -NA,NA,"",2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 138, 154, 146, 145, 0, 0, 0, 0, 0, 583 -NA,NA,"",2017-18,Dighton-Rehoboth - Palmer River,06500010, 0, 107, 103, 109, 107, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2017-18,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 102, 85, 81, 107, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2017-18,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 89, 100, 100, 93, 0, 382 -NA,NA,"",2017-18,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 128, 100, 120, 0, 0, 0, 0, 0, 348 -NA,NA,"",2017-18,Douglas - Douglas Primary School,00770005, 67, 79, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2017-18,Dover - Chickering,00780005, 23, 61, 74, 78, 76, 87, 93, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 171, 152, 162, 0, 665 -NA,NA,"",2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 168, 178, 181, 0, 0, 0, 0, 0, 527 -NA,NA,"",2017-18,Dracut - Brookside Elementary,00790035, 0, 74, 80, 72, 68, 76, 87, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2017-18,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 213, 209, 189, 0, 836 -NA,NA,"",2017-18,Dracut - George H. Englesby Elementary School,00790045, 0, 83, 77, 91, 82, 100, 82, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2017-18,Dracut - Greenmont Avenue,00790030, 0, 56, 38, 55, 54, 49, 42, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2017-18,Dracut - Joseph A Campbell Elementary,00790020, 56, 100, 73, 71, 94, 88, 90, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2017-18,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 278, 288, 311, 0, 0, 0, 0, 0, 877 -NA,NA,"",2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 39, 38, 43, 44, 43, 42, 35, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 48, 144, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 170, 159, 181, 181, 0, 0, 0, 0, 0, 691 -NA,NA,"",2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 127, 137, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 117, 145, 147, 165, 0, 0, 0, 0, 0, 574 -NA,NA,"",2017-18,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 150, 154, 176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 480 -NA,NA,"",2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 54, 123, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307, 287, 278, 293, 3," 1,168" -NA,NA,"",2017-18,Duxbury - Alden School,00820004, 0, 0, 0, 0, 191, 232, 253, 0, 0, 0, 0, 0, 0, 0, 0, 676 -NA,NA,"",2017-18,Duxbury - Chandler Elementary,00820006, 64, 173, 182, 206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 625 -NA,NA,"",2017-18,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 258, 256, 277, 0," 1,053" -NA,NA,"",2017-18,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 246, 250, 247, 0, 0, 0, 0, 0, 743 -NA,NA,"",2017-18,East Bridgewater - Central,00830005, 129, 160, 150, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 601 -NA,NA,"",2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 193, 204, 153, 174, 143, 165, 0," 1,032" -NA,NA,"",2017-18,East Bridgewater - Gordon W Mitchell,00830010, 0, 0, 0, 0, 147, 170, 169, 177, 0, 0, 0, 0, 0, 0, 0, 663 -NA,NA,"",2017-18,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 212, 221, 230, 0, 0, 0, 0, 0, 663 -NA,NA,"",2017-18,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 226, 217, 210, 1, 835 -NA,NA,"",2017-18,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 98, 100, 84, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2017-18,East Longmeadow - Meadow Brook,00870013, 44, 187, 170, 178, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2017-18,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 84, 104, 105, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2017-18,Eastham - Eastham Elementary,00850005, 10, 24, 26, 26, 23, 24, 39, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2017-18,Easthampton - Center School,00860005, 0, 35, 43, 40, 42, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2017-18,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 121, 123, 103, 4, 466 -NA,NA,"",2017-18,Easthampton - Maple,00860010, 41, 40, 41, 39, 44, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Easthampton - Neil A Pepin,00860020, 0, 36, 41, 41, 43, 19, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180 -NA,NA,"",2017-18,Easthampton - White Brook Middle School,00860305, 0, 0, 0, 0, 0, 0, 122, 104, 105, 119, 0, 0, 0, 0, 0, 450 -NA,NA,"",2017-18,Easton - Center School,00880003, 22, 85, 74, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2017-18,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 286, 305, 293, 0, 0, 0, 0, 0, 884 -NA,NA,"",2017-18,Easton - Moreau Hall,00880020, 21, 66, 80, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2017-18,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 270, 301, 327, 7," 1,189" -NA,NA,"",2017-18,Easton - Parkview Elementary,00880015, 42, 92, 85, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2017-18,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 285, 257, 294, 0, 0, 0, 0, 0, 0, 0, 0, 836 -NA,NA,"",2017-18,Edgartown - Edgartown Elementary,00890005, 3, 38, 38, 34, 50, 41, 34, 37, 30, 36, 0, 0, 0, 0, 0, 341 -NA,NA,"",2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 104, 89, 80, 0, 380 -NA,NA,"",2017-18,Erving - Erving Elementary,00910030, 29, 11, 13, 20, 11, 18, 20, 19, 0, 0, 0, 0, 0, 0, 1, 142 -NA,NA,"",2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 364, 354, 339, 325, 0," 1,382" -NA,NA,"",2017-18,Everett - Adams School,00930003, 201, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2017-18,Everett - Devens School,00930030, 0, 0, 1, 3, 3, 5, 5, 3, 4, 7, 6, 6, 6, 7, 0, 56 -NA,NA,"",2017-18,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436, 525, 518, 500, 4," 1,983" -NA,NA,"",2017-18,Everett - George Keverian School,00930028, 0, 70, 110, 85, 85, 90, 117, 126, 92, 87, 0, 0, 0, 0, 0, 862 -NA,NA,"",2017-18,Everett - Lafayette School,00930038, 0, 90, 81, 126, 97, 113, 118, 113, 106, 100, 0, 0, 0, 0, 0, 944 -NA,NA,"",2017-18,Everett - Madeline English School,00930018, 0, 97, 86, 86, 77, 96, 104, 121, 85, 80, 0, 0, 0, 0, 0, 832 -NA,NA,"",2017-18,Everett - Parlin School,00930058, 0, 0, 98, 70, 119, 90, 110, 113, 106, 129, 0, 0, 0, 0, 0, 835 -NA,NA,"",2017-18,Everett - Sumner G. Whittier School,00930010, 0, 61, 80, 69, 89, 85, 71, 60, 51, 51, 0, 0, 0, 0, 0, 617 -NA,NA,"",2017-18,Everett - Webster School,00930015, 327, 174, 67, 49, 49, 35, 37, 0, 0, 0, 0, 0, 0, 0, 0, 738 -NA,NA,"",2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 169, 172, 171, 172, 172, 168, 103, 0, 0," 1,127" -NA,NA,"",2017-18,Fairhaven - East Fairhaven,00940010, 21, 60, 68, 65, 73, 72, 60, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2017-18,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201, 171, 135, 145, 2, 654 -NA,NA,"",2017-18,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 158, 168, 142, 0, 0, 0, 0, 0, 468 -NA,NA,"",2017-18,Fairhaven - Leroy Wood,00940030, 21, 70, 65, 88, 93, 88, 86, 0, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2017-18,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 615, 544, 484, 469, 0," 2,112" -NA,NA,"",2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 124, 99, 134, 119, 119, 144, 0, 0, 0, 0, 0, 0, 0, 0, 739 -NA,NA,"",2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1 -NA,NA,"",2017-18,Fall River - Henry Lord Community School,00950017, 35, 76, 78, 64, 80, 69, 57, 62, 64, 66, 0, 0, 0, 0, 0, 651 -NA,NA,"",2017-18,Fall River - James Tansey,00950140, 0, 51, 51, 54, 63, 49, 47, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2017-18,Fall River - John J Doran,00950045, 24, 55, 56, 54, 59, 65, 66, 47, 53, 46, 0, 0, 0, 0, 0, 525 -NA,NA,"",2017-18,Fall River - Letourneau Elementary School,00950013, 30, 100, 107, 102, 94, 94, 91, 0, 0, 0, 0, 0, 0, 0, 0, 618 -NA,NA,"",2017-18,Fall River - Mary Fonseca Elementary School,00950011, 23, 100, 123, 115, 125, 124, 99, 0, 0, 0, 0, 0, 0, 0, 0, 709 -NA,NA,"",2017-18,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 256, 267, 227, 0, 0, 0, 0, 0, 750 -NA,NA,"",2017-18,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 187, 207, 193, 0, 0, 0, 0, 0, 587 -NA,NA,"",2017-18,Fall River - North End Elementary,00950005, 52, 103, 115, 114, 120, 129, 137, 0, 0, 0, 0, 0, 0, 0, 0, 770 -NA,NA,"",2017-18,Fall River - Resiliency Preparatory Academy,00950525, 0, 0, 0, 0, 0, 0, 0, 0, 23, 13, 32, 32, 42, 40, 0, 182 -NA,NA,"",2017-18,Fall River - Samuel Watson,00950145, 0, 51, 47, 46, 46, 55, 46, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2017-18,Fall River - Spencer Borden,00950130, 0, 103, 94, 86, 96, 116, 89, 0, 0, 0, 0, 0, 0, 0, 0, 584 -NA,NA,"",2017-18,Fall River - Stone PK-12 School,00950340, 0, 1, 0, 2, 4, 4, 3, 8, 8, 4, 4, 0, 0, 1, 0, 39 -NA,NA,"",2017-18,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 152, 173, 181, 0, 0, 0, 0, 0, 506 -NA,NA,"",2017-18,Fall River - William S Greene,00950065, 47, 109, 113, 110, 116, 127, 127, 0, 0, 0, 0, 0, 0, 0, 0, 749 -NA,NA,"",2017-18,Falmouth - East Falmouth Elementary,00960005, 0, 46, 48, 52, 56, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 264 -NA,NA,"",2017-18,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231, 222, 195, 189, 5, 842 -NA,NA,"",2017-18,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 312, 287, 0, 0, 0, 0, 0, 599 -NA,NA,"",2017-18,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 277, 278, 0, 0, 0, 0, 0, 0, 0, 555 -NA,NA,"",2017-18,Falmouth - Mullen-Hall,00960020, 0, 81, 81, 87, 93, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2017-18,Falmouth - North Falmouth Elementary,00960030, 0, 66, 48, 61, 79, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2017-18,Falmouth - Teaticket,00960015, 96, 54, 55, 54, 58, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2017-18,Farmington River Reg - Farmington River Elementary,06620020, 29, 16, 14, 10, 11, 12, 17, 12, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 160, 170, 158, 102, 0, 0, 0, 0, 0, 590 -NA,NA,"",2017-18,Fitchburg - Crocker Elementary,00970016, 96, 110, 126, 119, 112, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 665 -NA,NA,"",2017-18,Fitchburg - Fitchburg High,00970505, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304, 276, 296, 295, 4," 1,205" -NA,NA,"",2017-18,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 26, 50, 76, 11, 169 -NA,NA,"",2017-18,Fitchburg - McKay Arts Academy,00970340, 28, 73, 71, 73, 77, 74, 79, 71, 67, 68, 0, 0, 0, 0, 0, 681 -NA,NA,"",2017-18,Fitchburg - Memorial Intermediate,00970048, 0, 0, 0, 0, 0, 0, 170, 187, 183, 168, 0, 0, 0, 0, 0, 708 -NA,NA,"",2017-18,Fitchburg - Reingold Elementary,00970043, 33, 113, 127, 122, 138, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 665 -NA,NA,"",2017-18,Fitchburg - South Street Elementary,00970060, 21, 122, 126, 121, 137, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 666 -NA,NA,"",2017-18,Florida - Abbott Memorial,00980005, 12, 4, 7, 8, 3, 10, 14, 8, 3, 11, 0, 0, 0, 0, 0, 80 -NA,NA,"",2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 36, 36, 38, 38, 37, 37, 0, 222 -NA,NA,"",2017-18,Foxborough - Charles Taylor Elementary,00990050, 0, 40, 50, 45, 42, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2017-18,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 217, 208, 195, 7, 806 -NA,NA,"",2017-18,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 208, 208, 204, 223, 0, 0, 0, 0, 0, 843 -NA,NA,"",2017-18,Foxborough - Mabelle M Burrell,00990015, 80, 50, 44, 45, 40, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2017-18,Foxborough - Vincent M Igo Elementary,00990020, 0, 83, 74, 66, 81, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 130, 132, 134, 136, 133, 135, 136, 128, 125, 85, 72, 66, 57, 0," 1,469" -NA,NA,"",2017-18,Framingham - Barbieri Elementary,01000035, 0, 122, 111, 111, 119, 103, 115, 0, 0, 0, 0, 0, 0, 0, 0, 681 -NA,NA,"",2017-18,Framingham - Brophy,01000006, 0, 71, 56, 74, 79, 104, 92, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2017-18,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 188, 168, 179, 0, 0, 0, 0, 0, 535 -NA,NA,"",2017-18,Framingham - Charlotte A Dunning,01000007, 0, 70, 68, 74, 69, 103, 87, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2017-18,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 580, 552, 557, 488, 0," 2,177" -NA,NA,"",2017-18,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 184, 158, 159, 0, 0, 0, 0, 0, 501 -NA,NA,"",2017-18,Framingham - Hemenway,01000015, 0, 88, 95, 99, 96, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2017-18,Framingham - Juniper Hill School,01000001, 273, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2017-18,Framingham - King Elementary School,01000005, 0, 64, 75, 80, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2017-18,Framingham - Mary E Stapleton Elementary,01000045, 0, 59, 47, 58, 55, 71, 79, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2017-18,Framingham - Miriam F McCarthy School,01000050, 0, 86, 90, 83, 97, 111, 97, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2017-18,Framingham - Potter Road,01000039, 0, 74, 84, 89, 83, 95, 88, 0, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2017-18,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 262, 243, 257, 0, 0, 0, 0, 0, 762 -NA,NA,"",2017-18,Framingham - Woodrow Wilson,01000055, 0, 86, 80, 94, 99, 102, 105, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 69, 73, 68, 58, 61, 67, 0, 396 -NA,NA,"",2017-18,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 130, 159, 157, 0, 0, 0, 0, 0, 446 -NA,NA,"",2017-18,Franklin - Davis Thayer,01010035, 0, 28, 44, 33, 37, 48, 41, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 104 -NA,NA,"",2017-18,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 452, 437, 423, 467, 8," 1,787" -NA,NA,"",2017-18,Franklin - Helen Keller Elementary,01010012, 0, 50, 67, 74, 53, 73, 85, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2017-18,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 152, 151, 161, 0, 0, 0, 0, 0, 464 -NA,NA,"",2017-18,Franklin - J F Kennedy Memorial,01010013, 0, 66, 62, 63, 57, 55, 64, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2017-18,Franklin - Jefferson Elementary,01010010, 0, 59, 38, 54, 62, 59, 64, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2017-18,Franklin - Oak Street Elementary,01010030, 0, 58, 61, 44, 58, 73, 96, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2017-18,Franklin - Parmenter,01010032, 0, 46, 64, 48, 61, 51, 53, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2017-18,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 153, 136, 152, 0, 0, 0, 0, 0, 441 -NA,NA,"",2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 127, 121, 113, 0, 487 -NA,NA,"",2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 183, 196, 188, 0, 775 -NA,NA,"",2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 103, 106, 123, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 48, 105, 77, 94, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 264, 251, 237, 0, 0, 0, 0, 0, 752 -NA,NA,"",2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 0, 212, 228, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2017-18,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 116, 105, 111, 100, 101, 85, 5, 623 -NA,NA,"",2017-18,Gardner - Elm Street School,01030001, 0, 0, 0, 182, 185, 185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 26, 21, 11, 0, 73 -NA,NA,"",2017-18,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 169, 136, 103, 114, 5, 690 -NA,NA,"",2017-18,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 208, 189, 146, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2017-18,Gardner - Waterford Street,01030020, 80, 205, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2017-18,Gateway - Chester Elementary,06720059, 13, 23, 12, 20, 18, 12, 21, 0, 0, 0, 0, 0, 0, 0, 0, 119 -NA,NA,"",2017-18,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 58, 47, 39, 3, 215 -NA,NA,"",2017-18,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 67, 67, 64, 0, 0, 0, 0, 0, 198 -NA,NA,"",2017-18,Gateway - Littleville Elementary School,06720143, 19, 48, 43, 39, 55, 45, 50, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2017-18,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 103, 99, 109, 0, 401 -NA,NA,"",2017-18,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 112, 118, 0, 0, 0, 0, 0, 230 -NA,NA,"",2017-18,Georgetown - Penn Brook,01050010, 0, 98, 92, 100, 88, 119, 95, 99, 0, 0, 0, 0, 0, 0, 0, 691 -NA,NA,"",2017-18,Georgetown - Perley Elementary,01050005, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2017-18,Gill-Montague - Gill Elementary,06740005, 0, 19, 17, 21, 20, 25, 21, 11, 0, 0, 0, 0, 0, 0, 0, 134 -NA,NA,"",2017-18,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 66, 94, 85, 0, 0, 0, 0, 0, 245 -NA,NA,"",2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 40, 74, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2017-18,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 55, 55, 56, 50, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2017-18,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 53, 57, 52, 56, 1, 219 -NA,NA,"",2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 89, 88, 92, 88, 32, 35, 47, 38, 0, 509 -NA,NA,"",2017-18,Gloucester - Beeman Memorial,01070010, 0, 48, 64, 57, 55, 53, 62, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2017-18,Gloucester - East Gloucester Elementary,01070020, 0, 28, 24, 43, 42, 43, 35, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2017-18,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 213, 168, 213, 2, 798 -NA,NA,"",2017-18,Gloucester - Gloucester PreSchool,01070025, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107 -NA,NA,"",2017-18,Gloucester - Plum Cove School,01070042, 0, 42, 35, 34, 31, 39, 31, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 228, 213, 229, 0, 0, 0, 0, 0, 670 -NA,NA,"",2017-18,Gloucester - Veterans Memorial,01070045, 0, 41, 39, 36, 29, 37, 25, 0, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2017-18,Gloucester - West Parish,01070050, 0, 62, 59, 65, 61, 54, 55, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2017-18,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 2 -NA,NA,"",2017-18,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 218, 225, 184, 13, 835 -NA,NA,"",2017-18,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 257, 267, 0, 0, 0, 0, 0, 524 -NA,NA,"",2017-18,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 120, 133, 132, 142, 129, 0, 0, 0, 0, 0, 0, 0, 656 -NA,NA,"",2017-18,Grafton - North Grafton Elementary,01100025, 43, 103, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2017-18,Grafton - North Street Elementary School,01100030, 0, 0, 0, 108, 139, 104, 123, 110, 0, 0, 0, 0, 0, 0, 0, 584 -NA,NA,"",2017-18,Grafton - South Grafton Elementary,01100005, 60, 114, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2017-18,Granby - East Meadow,01110004, 0, 0, 0, 0, 0, 44, 47, 57, 0, 0, 0, 0, 0, 0, 0, 148 -NA,NA,"",2017-18,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 58, 69, 54, 54, 49, 57, 0, 341 -NA,NA,"",2017-18,Granby - West Street,01110010, 30, 43, 45, 51, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 361, 333, 328, 1," 1,398" -NA,NA,"",2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 396, 378, 316, 0," 1,509" -NA,NA,"",2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 620, 564, 545, 513, 28," 2,270" -NA,NA,"",2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 557, 563, 526, 507, 0," 2,153" -NA,NA,"",2017-18,Greenfield - Discovery School at Four Corners,01140025, 0, 53, 55, 47, 44, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2017-18,Greenfield - Federal Street School,01140010, 0, 55, 51, 44, 44, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2017-18,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 89, 73, 85, 85, 0, 462 -NA,NA,"",2017-18,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 0, 126, 131, 122, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2017-18,Greenfield - Newton School,01140035, 0, 54, 44, 44, 48, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 117 -NA,NA,"",2017-18,Groton-Dunstable - Boutwell School,06730001, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63 -NA,NA,"",2017-18,Groton-Dunstable - Florence Roche School,06730010, 0, 94, 105, 98, 109, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513 -NA,NA,"",2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186, 183, 207, 209, 1, 786 -NA,NA,"",2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 177, 205, 180, 203, 0, 0, 0, 0, 0, 765 -NA,NA,"",2017-18,Groton-Dunstable - Swallow/Union School,06730005, 0, 55, 54, 51, 72, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2017-18,Hadley - Hadley Elementary,01170015, 37, 24, 31, 32, 29, 45, 38, 51, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2017-18,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 48, 41, 38, 30, 48, 36, 1, 242 -NA,NA,"",2017-18,Halifax - Halifax Elementary,01180005, 0, 94, 92, 76, 80, 86, 92, 77, 0, 0, 0, 0, 0, 0, 0, 597 -NA,NA,"",2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 41, 42, 43, 43, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2017-18,Hamilton-Wenham - Cutler School,06750010, 0, 61, 40, 41, 44, 57, 46, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 136, 148, 133, 0, 560 -NA,NA,"",2017-18,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 116, 134, 133, 0, 0, 0, 0, 0, 383 -NA,NA,"",2017-18,Hamilton-Wenham - Winthrop School,06750015, 30, 44, 45, 40, 54, 32, 46, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 0, 0, 0, 0, 0, 0, 0, 86, 109, 85, 76, 67, 37, 30, 1, 491 -NA,NA,"",2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 14, 32, 41, 35, 47, 41, 40, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 59, 140, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261, 271, 300, 276, 1," 1,109" -NA,NA,"",2017-18,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 167, 177, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 142, 155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 0, 0, 0, 0, 0, 0, 0, 28, 34, 43, 0, 0, 0, 0, 0, 105 -NA,NA,"",2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 194, 195, 219, 0, 0, 0, 0, 0, 608 -NA,NA,"",2017-18,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 118, 163, 106, 118, 90, 102, 4, 701 -NA,NA,"",2017-18,Hancock - Hancock Elementary,01210005, 11, 4, 3, 4, 3, 2, 5, 10, 0, 0, 0, 0, 0, 0, 0, 42 -NA,NA,"",2017-18,Hanover - Cedar Elementary,01220004, 65, 58, 75, 73, 74, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2017-18,Hanover - Center Elementary,01220005, 0, 96, 123, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2017-18,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206, 183, 216, 193, 3, 801 -NA,NA,"",2017-18,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 214, 223, 178, 216, 0, 0, 0, 0, 0, 831 -NA,NA,"",2017-18,Hanover - Sylvester,01220015, 0, 0, 0, 0, 120, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2017-18,Harvard - Bromfield,01250505, 0, 0, 0, 0, 0, 0, 0, 81, 75, 97, 104, 91, 101, 106, 0, 655 -NA,NA,"",2017-18,Harvard - Hildreth Elementary School,01250005, 9, 64, 63, 68, 73, 84, 79, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2017-18,Hatfield - Hatfield Elementary,01270005, 31, 20, 30, 25, 32, 36, 41, 32, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2017-18,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 31, 48, 24, 30, 27, 29, 0, 189 -NA,NA,"",2017-18,Haverhill - Bradford Elementary,01280008, 0, 57, 61, 61, 65, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 0, 70, 69, 79, 80, 76, 154, 199, 168, 132, 0, 0, 0, 0, 0," 1,027" -NA,NA,"",2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 0, 46, 26, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107 -NA,NA,"",2017-18,Haverhill - Consentino Middle School,01280100, 0, 0, 0, 0, 65, 99, 177, 218, 213, 204, 0, 0, 0, 0, 0, 976 -NA,NA,"",2017-18,Haverhill - Crowell,01280020, 0, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97 -NA,NA,"",2017-18,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 125, 129, 130, 116, 0, 0, 0, 0, 0, 500 -NA,NA,"",2017-18,Haverhill - Golden Hill,01280026, 0, 0, 135, 122, 129, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 0, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 -NA,NA,"",2017-18,Haverhill - Haverhill Alternative School,01280033, 0, 0, 0, 0, 0, 0, 0, 3, 2, 10, 6, 6, 9, 10, 0, 46 -NA,NA,"",2017-18,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 576, 428, 415, 382, 30," 1,831" -NA,NA,"",2017-18,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 153, 126, 120, 143, 0, 0, 0, 0, 0, 542 -NA,NA,"",2017-18,Haverhill - Moody,01280045, 221, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0, 65, 88, 74, 135, 142, 0, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2017-18,Haverhill - TEACH,01280073, 0, 1, 2, 1, 5, 7, 6, 3, 3, 3, 5, 2, 3, 1, 8, 50 -NA,NA,"",2017-18,Haverhill - Tilton,01280075, 0, 39, 141, 134, 129, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2017-18,Haverhill - Walnut Square,01280080, 0, 41, 48, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2017-18,Hawlemont - Hawlemont Regional,06850005, 26, 25, 26, 20, 17, 10, 22, 17, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 60, 73, 81, 0, 0, 0, 0, 0, 214 -NA,NA,"",2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 36, 31, 37, 35, 35, 33, 35, 30, 31, 0, 0, 0, 0, 0, 303 -NA,NA,"",2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 21, 21, 21, 21, 32, 30, 32, 0, 0, 0, 0, 0, 218 -NA,NA,"",2017-18,Hingham - East Elementary School,01310005, 67, 61, 68, 82, 74, 96, 79, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2017-18,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328, 314, 284, 326, 4," 1,256" -NA,NA,"",2017-18,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 351, 358, 366, 0, 0, 0, 0, 0," 1,075" -NA,NA,"",2017-18,Hingham - Plymouth River,01310019, 0, 77, 63, 79, 81, 93, 75, 0, 0, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2017-18,Hingham - South Elementary,01310020, 0, 86, 80, 81, 90, 91, 99, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2017-18,Hingham - Wm L Foster Elementary,01310010, 0, 65, 85, 80, 59, 88, 69, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2017-18,Holbrook - Holbrook Middle High School,01330505, 0, 0, 0, 0, 0, 0, 0, 107, 98, 113, 67, 73, 58, 72, 1, 589 -NA,NA,"",2017-18,Holbrook - John F Kennedy,01330018, 50, 95, 103, 102, 85, 102, 89, 0, 0, 0, 0, 0, 0, 0, 0, 626 -NA,NA,"",2017-18,Holland - Holland Elementary,01350005, 24, 29, 32, 24, 31, 24, 33, 36, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2017-18,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 221, 185, 186, 3, 797 -NA,NA,"",2017-18,Holliston - Miller School,01360007, 0, 0, 0, 0, 221, 226, 238, 0, 0, 0, 0, 0, 0, 0, 0, 685 -NA,NA,"",2017-18,Holliston - Placentino Elementary,01360010, 106, 200, 227, 213, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 746 -NA,NA,"",2017-18,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 225, 220, 232, 0, 0, 0, 0, 0, 677 -NA,NA,"",2017-18,Holyoke - E N White Elementary,01370045, 43, 46, 66, 62, 53, 48, 47, 43, 42, 52, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,Holyoke - H.B. Lawrence School,01370070, 0, 59, 75, 72, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2017-18,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 465, 317, 257, 293, 0," 1,332" -NA,NA,"",2017-18,Holyoke - Joseph Metcalf School,01370003, 100, 40, 42, 42, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2017-18,Holyoke - Kelly Elementary,01370040, 15, 56, 62, 75, 58, 83, 62, 56, 50, 45, 0, 0, 0, 0, 0, 562 -NA,NA,"",2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0, 40, 67, 51, 57, 74, 74, 62, 62, 54, 0, 0, 0, 0, 0, 541 -NA,NA,"",2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 26, 40, 40, 31, 46, 42, 45, 54, 33, 62, 0, 0, 0, 0, 0, 419 -NA,NA,"",2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 38, 51, 38, 48, 49, 49, 51, 44, 40, 54, 0, 0, 0, 0, 0, 462 -NA,NA,"",2017-18,Holyoke - Morgan Full Service Community School,01370025, 34, 45, 42, 48, 35, 50, 47, 39, 39, 37, 0, 0, 0, 0, 0, 416 -NA,NA,"",2017-18,Holyoke - William R. Peck School,01370030, 0, 0, 0, 0, 0, 61, 57, 58, 80, 83, 0, 0, 0, 0, 0, 339 -NA,NA,"",2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42, 79, 62, 0, 183 -NA,NA,"",2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 78, 84, 90, 87, 88, 85, 75, 72, 43, 0, 0, 0, 0, 0, 702 -NA,NA,"",2017-18,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 85, 101, 77, 71, 81, 90, 0, 505 -NA,NA,"",2017-18,Hopedale - Memorial,01380010, 0, 73, 74, 72, 72, 83, 81, 90, 0, 0, 0, 0, 0, 0, 0, 545 -NA,NA,"",2017-18,Hopedale - Park Street School,01380003, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83 -NA,NA,"",2017-18,Hopkinton - Center,01390005, 0, 202, 256, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2017-18,Hopkinton - Elmwood,01390010, 0, 0, 0, 238, 263, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2017-18,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 262, 278, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2017-18,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312, 286, 265, 290, 2," 1,155" -NA,NA,"",2017-18,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 234, 294, 277, 0, 0, 0, 0, 0, 805 -NA,NA,"",2017-18,Hopkinton - Hopkinton Pre-School,01390003, 59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59 -NA,NA,"",2017-18,Hudson - C A Farley,01410030, 13, 87, 88, 86, 77, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 461 -NA,NA,"",2017-18,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 230, 210, 209, 0, 0, 0, 0, 0, 0, 649 -NA,NA,"",2017-18,Hudson - Forest Avenue Elementary,01410015, 0, 82, 64, 76, 68, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2017-18,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209, 168, 186, 188, 182, 0, 933 -NA,NA,"",2017-18,Hudson - Mulready Elementary,01410007, 13, 41, 47, 48, 45, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2017-18,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 70, 78, 68, 0, 294 -NA,NA,"",2017-18,Hull - Lillian M Jacobs,01420015, 54, 62, 58, 53, 62, 67, 54, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2017-18,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 61, 65, 62, 0, 0, 0, 0, 0, 188 -NA,NA,"",2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 100, 100, 100, 100, 110, 98, 100, 94, 0, 802 -NA,NA,"",2017-18,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 140, 121, 115, 6, 516 -NA,NA,"",2017-18,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 141, 135, 164, 0, 0, 0, 0, 0, 440 -NA,NA,"",2017-18,Ipswich - Paul F Doyon Memorial,01440007, 22, 68, 55, 64, 62, 66, 64, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2017-18,Ipswich - Winthrop,01440015, 18, 62, 50, 62, 53, 67, 66, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2017-18,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 346, 394, 0, 0, 0, 0, 0, 740 -NA,NA,"",2017-18,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 333, 321, 328, 8," 1,300" -NA,NA,"",2017-18,Kingston - Kingston Elementary,01450005, 0, 146, 139, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2017-18,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 139, 148, 152, 134, 0, 0, 0, 0, 0, 0, 0, 573 -NA,NA,"",2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 62, 75, 74, 73, 0, 62, 70, 74, 68, 0, 0, 0, 0, 0, 558 -NA,NA,"",2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 122, 122, 122, 0, 0, 122, 122, 122, 121, 131, 127, 113, 112, 0," 1,336" -NA,NA,"",2017-18,Lanesborough - Lanesborough Elementary,01480005, 18, 25, 32, 19, 25, 28, 31, 32, 0, 0, 0, 0, 0, 0, 0, 210 -NA,NA,"",2017-18,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 86, 90, 79, 80, 99, 83, 0, 0, 0, 0, 0, 517 -NA,NA,"",2017-18,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 138, 149, 148, 151, 0, 0, 0, 0, 0, 586 -NA,NA,"",2017-18,Lawrence - Community Day Arlington,01490009, 0, 96, 116, 126, 121, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2017-18,Lawrence - Edward F. Parthum,01490053, 0, 91, 122, 137, 137, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 625 -NA,NA,"",2017-18,Lawrence - Emily G Wetherbee,01490080, 0, 63, 79, 79, 75, 84, 85, 74, 83, 78, 0, 0, 0, 0, 0, 700 -NA,NA,"",2017-18,Lawrence - Francis M Leahy,01490040, 0, 51, 92, 100, 105, 101, 69, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2017-18,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 135, 123, 124, 125, 0, 0, 0, 0, 0, 507 -NA,NA,"",2017-18,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 106, 130, 137, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2017-18,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 109, 118, 131, 128, 0, 0, 0, 0, 0, 486 -NA,NA,"",2017-18,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 27, 41, 105, 0, 187 -NA,NA,"",2017-18,Lawrence - James F Hennessey,01490020, 93, 82, 80, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2017-18,Lawrence - John Breen School,01490003, 219, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2017-18,Lawrence - John K Tarbox,01490075, 0, 0, 63, 69, 72, 62, 61, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2017-18,Lawrence - Lawrence Family Public Academy,01490011, 65, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2017-18,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 911, 882, 741, 731, 39," 3,304" -NA,NA,"",2017-18,Lawrence - Oliver Partnership School,01490048, 0, 0, 99, 81, 82, 94, 91, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2017-18,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 148, 124, 162, 147, 0, 0, 0, 0, 0, 581 -NA,NA,"",2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 63, 30, 19, 0, 125 -NA,NA,"",2017-18,Lawrence - Robert Frost,01490018, 0, 93, 127, 114, 121, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 590 -NA,NA,"",2017-18,Lawrence - Rollins Early Childhood Center,01490001, 112, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190 -NA,NA,"",2017-18,Lawrence - School for Exceptional Studies,01490537, 0, 0, 10, 6, 9, 9, 10, 11, 11, 10, 25, 16, 8, 12, 13, 150 -NA,NA,"",2017-18,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 155, 159, 139, 158, 137, 0, 0, 0, 0, 0, 0, 0, 0, 748 -NA,NA,"",2017-18,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 157, 140, 163, 0, 0, 0, 0, 0, 460 -NA,NA,"",2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 78, 100, 119, 0, 0, 0, 0, 0, 297 -NA,NA,"",2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 111, 119, 113, 0, 0, 0, 0, 0, 343 -NA,NA,"",2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 84, 85, 83, 84, 83, 82, 82, 52, 54, 48, 0, 0, 0, 0, 0, 737 -NA,NA,"",2017-18,Lee - Lee Elementary,01500025, 14, 63, 44, 51, 48, 36, 36, 51, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2017-18,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 59, 51, 72, 55, 59, 53, 0, 349 -NA,NA,"",2017-18,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 125, 105, 117, 0, 461 -NA,NA,"",2017-18,Leicester - Leicester Memorial Elementary,01510005, 0, 0, 0, 0, 102, 118, 113, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2017-18,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 0, 132, 116, 164, 0, 0, 0, 0, 0, 412 -NA,NA,"",2017-18,Leicester - Leicester Primary School,01510010, 69, 107, 88, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2017-18,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 63, 70, 66, 66, 63, 50, 66, 0, 444 -NA,NA,"",2017-18,Lenox - Morris,01520015, 24, 34, 54, 51, 45, 53, 50, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2017-18,Leominster - Bennett,01530003, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86 -NA,NA,"",2017-18,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 152, 136, 151, 0, 717 -NA,NA,"",2017-18,Leominster - Fall Brook,01530007, 0, 71, 120, 117, 125, 105, 119, 0, 0, 0, 0, 0, 0, 0, 0, 657 -NA,NA,"",2017-18,Leominster - Frances Drake School,01530010, 0, 91, 66, 81, 96, 110, 100, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2017-18,Leominster - Johnny Appleseed,01530025, 0, 69, 119, 100, 134, 112, 117, 0, 0, 0, 0, 0, 0, 0, 0, 651 -NA,NA,"",2017-18,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 11, 17, 8, 0, 50 -NA,NA,"",2017-18,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 273, 282, 327, 0," 1,056" -NA,NA,"",2017-18,Leominster - Lincoln School,01530005, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 48 -NA,NA,"",2017-18,Leominster - Northwest,01530030, 0, 48, 115, 134, 121, 151, 116, 0, 0, 0, 0, 0, 0, 0, 0, 685 -NA,NA,"",2017-18,Leominster - Priest Street,01530040, 0, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2017-18,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 174, 163, 154, 0, 0, 0, 0, 0, 491 -NA,NA,"",2017-18,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 311, 282, 302, 0, 0, 0, 0, 0, 895 -NA,NA,"",2017-18,Leverett - Leverett Elementary,01540005, 14, 12, 17, 12, 22, 16, 15, 17, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2017-18,Lexington - Bowman,01550008, 0, 71, 83, 91, 98, 106, 111, 0, 0, 0, 0, 0, 0, 0, 0, 560 -NA,NA,"",2017-18,Lexington - Bridge,01550006, 0, 72, 86, 99, 101, 107, 107, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2017-18,Lexington - Fiske,01550015, 0, 62, 61, 88, 99, 93, 99, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,Lexington - Harrington,01550030, 0, 70, 89, 79, 74, 89, 77, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2017-18,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 303, 309, 314, 0, 0, 0, 0, 0, 926 -NA,NA,"",2017-18,Lexington - Joseph Estabrook,01550010, 0, 83, 85, 96, 90, 116, 102, 0, 0, 0, 0, 0, 0, 0, 0, 572 -NA,NA,"",2017-18,Lexington - Lexington Children's Place,01550001, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71 -NA,NA,"",2017-18,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 530, 576, 554, 552, 0," 2,212" -NA,NA,"",2017-18,Lexington - Maria Hastings,01550035, 0, 54, 89, 73, 73, 79, 98, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2017-18,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 265, 321, 301, 0, 0, 0, 0, 0, 887 -NA,NA,"",2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0, 0, 0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 0, 0, 0, 90 -NA,NA,"",2017-18,Lincoln - Hanscom Middle,01570305, 0, 0, 0, 0, 0, 74, 53, 51, 46, 47, 0, 0, 0, 0, 0, 271 -NA,NA,"",2017-18,Lincoln - Hanscom Primary,01570006, 48, 81, 65, 75, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2017-18,Lincoln - Lincoln School,01570025, 51, 40, 70, 50, 65, 66, 53, 68, 63, 60, 0, 0, 0, 0, 0, 586 -NA,NA,"",2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409, 359, 374, 382, 5," 1,529" -NA,NA,"",2017-18,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116, 116, 119, 112, 0, 463 -NA,NA,"",2017-18,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 133, 119, 110, 0, 0, 0, 0, 0, 362 -NA,NA,"",2017-18,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 133, 131, 122, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2017-18,Littleton - Shaker Lane Elementary,01580005, 63, 145, 113, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447 -NA,NA,"",2017-18,Longmeadow - Blueberry Hill,01590005, 0, 61, 71, 71, 67, 96, 73, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2017-18,Longmeadow - Center,01590010, 0, 55, 65, 62, 62, 84, 76, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2017-18,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 114, 113, 115, 0, 0, 0, 0, 0, 342 -NA,NA,"",2017-18,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 256, 245, 221, 1, 958 -NA,NA,"",2017-18,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 108, 98, 124, 0, 0, 0, 0, 0, 330 -NA,NA,"",2017-18,Longmeadow - Wolf Swamp Road,01590025, 53, 57, 54, 51, 60, 61, 68, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2017-18,Lowell - Abraham Lincoln,01600020, 49, 85, 90, 75, 96, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2017-18,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 130, 137, 127, 140, 0, 0, 0, 0, 0, 534 -NA,NA,"",2017-18,Lowell - Bartlett Community Partnership,01600090, 49, 46, 52, 41, 53, 52, 52, 61, 55, 60, 0, 0, 0, 0, 0, 521 -NA,NA,"",2017-18,Lowell - Charles W Morey,01600030, 49, 89, 94, 92, 98, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 43, 86, 93, 86, 97, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2017-18,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 172, 197, 150, 173, 0, 0, 0, 0, 0, 692 -NA,NA,"",2017-18,Lowell - Dr Gertrude Bailey,01600002, 26, 91, 94, 93, 97, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2017-18,Lowell - Greenhalge,01600015, 61, 83, 85, 92, 92, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 179, 161, 156, 170, 0, 0, 0, 0, 0, 666 -NA,NA,"",2017-18,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 179, 186, 173, 162, 0, 0, 0, 0, 0, 700 -NA,NA,"",2017-18,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 160, 170, 144, 169, 0, 0, 0, 0, 0, 643 -NA,NA,"",2017-18,Lowell - John J Shaughnessy,01600050, 28, 81, 86, 88, 90, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2017-18,Lowell - Joseph McAvinnue,01600010, 29, 88, 95, 81, 103, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 160, 175, 168, 181, 0, 0, 0, 0, 0, 684 -NA,NA,"",2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 1, 1, 0, 0, 2, 5, 4, 5, 5, 0, 0, 0, 0, 0, 23 -NA,NA,"",2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 10, 14, 6, 0, 36 -NA,NA,"",2017-18,Lowell - Lowell Day School on Broadway,01600605, 4, 6, 5, 4, 2, 1, 3, 1, 0, 0, 0, 0, 0, 0, 0, 26 -NA,NA,"",2017-18,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 822, 780, 780, 742, 30," 3,154" -NA,NA,"",2017-18,Lowell - Moody Elementary,01600027, 27, 43, 46, 40, 40, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2017-18,Lowell - Pawtucketville Memorial,01600036, 31, 84, 99, 94, 102, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2017-18,Lowell - Peter W Reilly,01600040, 0, 97, 100, 109, 120, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2017-18,Lowell - Pyne Arts,01600018, 28, 48, 48, 48, 50, 51, 50, 61, 56, 50, 0, 0, 0, 0, 0, 490 -NA,NA,"",2017-18,Lowell - Rogers STEM Academy,01600005, 54, 87, 82, 97, 109, 95, 108, 53, 0, 0, 0, 0, 0, 0, 0, 685 -NA,NA,"",2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 45, 81, 84, 89, 96, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2017-18,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 28, 21, 22, 40, 2, 113 -NA,NA,"",2017-18,Lowell - Washington,01600055, 33, 42, 40, 40, 42, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 41, 96, 94, 92, 96, 89, 80, 79, 82, 65, 0, 0, 0, 0, 0, 814 -NA,NA,"",2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 28, 24, 18, 0, 91 -NA,NA,"",2017-18,Ludlow - Chapin Street Elementary School,01610020, 0, 0, 0, 162, 160, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2017-18,Ludlow - East Street Elementary School,01610010, 91, 149, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2017-18,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 214, 217, 205, 5, 894 -NA,NA,"",2017-18,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 193, 209, 236, 0, 0, 0, 0, 0, 638 -NA,NA,"",2017-18,Ludlow - Veterans Park Elementary,01610023, 0, 0, 0, 0, 0, 203, 191, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9 -NA,NA,"",2017-18,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 107, 114, 97, 0, 442 -NA,NA,"",2017-18,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 151, 125, 147, 0, 0, 0, 0, 0, 423 -NA,NA,"",2017-18,Lunenburg - Lunenburg Primary School,01620010, 42, 109, 120, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 117, 131, 125, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Lynn - A Drewicz Elementary,01630016, 0, 71, 68, 74, 86, 120, 73, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2017-18,Lynn - Aborn,01630011, 0, 43, 36, 36, 46, 54, 38, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2017-18,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 470, 434, 429, 0, 0, 0, 0, 0," 1,333" -NA,NA,"",2017-18,Lynn - Brickett Elementary,01630020, 0, 48, 45, 49, 51, 60, 48, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2017-18,Lynn - Capt William G Shoemaker,01630090, 9, 60, 54, 41, 55, 53, 57, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2017-18,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 411, 451, 420, 378, 3," 1,663" -NA,NA,"",2017-18,Lynn - Cobbet Elementary,01630035, 0, 109, 105, 101, 103, 113, 108, 0, 0, 0, 0, 0, 0, 0, 0, 639 -NA,NA,"",2017-18,Lynn - E J Harrington,01630045, 72, 88, 94, 87, 99, 112, 79, 0, 0, 0, 0, 0, 0, 0, 0, 631 -NA,NA,"",2017-18,Lynn - Early Childhood Center,01630004, 107, 185, 2, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2017-18,Lynn - Edward A Sisson,01630095, 0, 62, 83, 71, 65, 82, 71, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 0, 8, 13, 25, 25, 21, 15, 0, 107 -NA,NA,"",2017-18,Lynn - Hood,01630055, 0, 80, 68, 82, 100, 77, 80, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2017-18,Lynn - Ingalls,01630060, 0, 90, 107, 104, 107, 134, 112, 0, 0, 0, 0, 0, 0, 0, 0, 654 -NA,NA,"",2017-18,Lynn - Julia F Callahan,01630030, 51, 46, 66, 73, 72, 69, 80, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2017-18,Lynn - Lincoln-Thomson,01630070, 0, 31, 46, 33, 44, 45, 41, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2017-18,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517, 440, 380, 386, 0," 1,723" -NA,NA,"",2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 42, 0, 0, 0, 0, 0, 0, 2, 3, 0, 256, 266, 203, 224, 12," 1,008" -NA,NA,"",2017-18,Lynn - Lynn Woods,01630075, 0, 25, 26, 22, 34, 26, 30, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2017-18,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 217, 199, 199, 0, 0, 0, 0, 0, 615 -NA,NA,"",2017-18,Lynn - Robert L Ford,01630050, 0, 0, 90, 119, 84, 94, 105, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2017-18,Lynn - Sewell-Anderson,01630085, 0, 49, 53, 49, 55, 51, 53, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2017-18,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 455, 398, 440, 0, 0, 0, 0, 0," 1,293" -NA,NA,"",2017-18,Lynn - Tracy,01630100, 0, 0, 95, 84, 86, 83, 86, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2017-18,Lynn - Washington Elementary School,01630005, 0, 72, 90, 87, 66, 88, 67, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2017-18,Lynn - William R Fallon,01630080, 0, 1, 6, 11, 7, 12, 5, 8, 0, 0, 0, 0, 0, 0, 0, 50 -NA,NA,"",2017-18,Lynn - Wm P Connery,01630040, 28, 106, 91, 97, 98, 122, 98, 0, 0, 0, 0, 0, 0, 0, 0, 640 -NA,NA,"",2017-18,Lynnfield - Huckleberry Hill,01640010, 0, 81, 85, 98, 83, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2017-18,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 147, 170, 162, 0, 648 -NA,NA,"",2017-18,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 169, 175, 159, 174, 0, 0, 0, 0, 0, 677 -NA,NA,"",2017-18,Lynnfield - Lynnfield Preschool,01640005, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38 -NA,NA,"",2017-18,Lynnfield - Summer Street,01640020, 0, 89, 73, 86, 100, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50, 46, 0, 96 -NA,NA,"",2017-18,Malden - Beebe,01650003, 0, 115, 99, 99, 98, 92, 108, 103, 87, 92, 0, 0, 0, 0, 0, 893 -NA,NA,"",2017-18,Malden - Ferryway,01650013, 0, 101, 87, 96, 101, 95, 124, 88, 84, 99, 0, 0, 0, 0, 0, 875 -NA,NA,"",2017-18,Malden - Forestdale,01650027, 0, 47, 52, 60, 76, 68, 66, 64, 62, 52, 0, 0, 0, 0, 0, 547 -NA,NA,"",2017-18,Malden - Linden,01650047, 0, 88, 95, 98, 110, 97, 109, 102, 91, 81, 0, 0, 0, 0, 0, 871 -NA,NA,"",2017-18,Malden - Malden Early Learning Center,01650049, 314, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2017-18,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472, 429, 455, 454, 13," 1,823" -NA,NA,"",2017-18,Malden - Salemwood,01650057, 0, 117, 136, 138, 144, 132, 132, 138, 134, 146, 0, 0, 0, 0, 0," 1,217" -NA,NA,"",2017-18,Manchester Essex Regional - Essex Elementary,06980020, 0, 35, 31, 32, 37, 48, 45, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 114, 100, 98, 0, 443 -NA,NA,"",2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 117, 125, 130, 0, 0, 0, 0, 0, 372 -NA,NA,"",2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 11, 41, 50, 41, 55, 67, 78, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2017-18,Mansfield - Everett W Robinson,01670007, 0, 223, 236, 255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 714 -NA,NA,"",2017-18,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 302, 326, 313, 0, 0, 0, 0, 0, 941 -NA,NA,"",2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 243, 275, 269, 0, 0, 0, 0, 0, 0, 0, 0, 787 -NA,NA,"",2017-18,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348, 320, 337, 302, 10," 1,317" -NA,NA,"",2017-18,Mansfield - Roland Green School,01670003, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97 -NA,NA,"",2017-18,Marblehead - Elbridge Gerry,01680015, 0, 59, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138 -NA,NA,"",2017-18,Marblehead - Glover,01680020, 40, 73, 96, 73, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2017-18,Marblehead - L H Coffin,01680010, 0, 0, 0, 73, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153 -NA,NA,"",2017-18,Marblehead - Malcolm L Bell,01680005, 0, 55, 74, 64, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2017-18,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 255, 258, 251, 7," 1,037" -NA,NA,"",2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 236, 253, 0, 0, 0, 0, 0, 489 -NA,NA,"",2017-18,Marblehead - Village School,01680016, 0, 0, 0, 0, 0, 189, 232, 215, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 51, 50, 51, 41, 36, 0, 0, 0, 0, 0, 229 -NA,NA,"",2017-18,Marion - Sippican,01690005, 27, 56, 61, 61, 54, 61, 73, 61, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 395, 290, 325, 298, 0, 0, 0, 0, 0," 1,308" -NA,NA,"",2017-18,Marlborough - Charles Jaworek School,01700030, 0, 149, 155, 160, 146, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 761 -NA,NA,"",2017-18,Marlborough - Early Childhood Center,01700006, 174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2017-18,Marlborough - Francis J Kane,01700008, 0, 118, 122, 106, 150, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 618 -NA,NA,"",2017-18,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 264, 286, 298, 8," 1,110" -NA,NA,"",2017-18,Marlborough - Richer,01700025, 0, 124, 104, 132, 110, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 604 -NA,NA,"",2017-18,Marshfield - Daniel Webster,01710015, 100, 41, 54, 61, 46, 42, 59, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Marshfield - Eames Way School,01710005, 0, 43, 43, 39, 42, 39, 37, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2017-18,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 276, 345, 349, 0, 0, 0, 0, 0, 970 -NA,NA,"",2017-18,Marshfield - Gov Edward Winslow,01710020, 0, 57, 68, 71, 57, 67, 93, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2017-18,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 344, 338, 344, 0," 1,346" -NA,NA,"",2017-18,Marshfield - Martinson Elementary,01710025, 29, 66, 70, 48, 71, 67, 79, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2017-18,Marshfield - South River,01710010, 0, 47, 63, 48, 68, 67, 80, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 166, 155, 142, 0, 634 -NA,NA,"",2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0, 15, 13, 17, 15, 17, 21, 20, 19, 14, 5, 6, 9, 13, 0, 184 -NA,NA,"",2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0, 64, 59, 60, 59, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2017-18,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 280, 274, 292, 0," 1,143" -NA,NA,"",2017-18,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 333, 322, 0, 0, 0, 0, 0, 655 -NA,NA,"",2017-18,Mashpee - Kenneth Coombs School,01720005, 74, 122, 101, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 416 -NA,NA,"",2017-18,Mashpee - Mashpee High,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 112, 111, 99, 0, 451 -NA,NA,"",2017-18,Mashpee - Mashpee Middle School,01720020, 0, 0, 0, 0, 0, 0, 0, 0, 140, 130, 0, 0, 0, 0, 0, 270 -NA,NA,"",2017-18,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 116, 132, 135, 102, 0, 0, 0, 0, 0, 0, 0, 485 -NA,NA,"",2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 0, 19, 17, 30, 31, 48, 39, 31, 58, 63, 81, 65, 57, 46, 0, 585 -NA,NA,"",2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 53, 94, 95, 96, 96, 96, 90, 96, 92, 96, 91, 83, 72, 75, 0," 1,225" -NA,NA,"",2017-18,Mattapoisett - Center,01730005, 25, 58, 46, 58, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2017-18,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 62, 69, 74, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2017-18,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 112, 110, 96, 90, 114, 0, 0, 0, 0, 0, 522 -NA,NA,"",2017-18,Maynard - Green Meadow,01740010, 51, 121, 109, 107, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2017-18,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93, 100, 103, 94, 0, 390 -NA,NA,"",2017-18,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 183, 182, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2017-18,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 209, 191, 229, 0, 828 -NA,NA,"",2017-18,Medfield - Memorial School,01750003, 69, 174, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2017-18,Medfield - Ralph Wheelock School,01750007, 0, 0, 0, 195, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2017-18,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 195, 218, 209, 0, 0, 0, 0, 0, 622 -NA,NA,"",2017-18,Medford - Brooks School,01760130, 29, 79, 80, 95, 74, 81, 64, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,Medford - Christopher Columbus,01760140, 9, 56, 80, 56, 60, 62, 54, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2017-18,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 6, 0, 13 -NA,NA,"",2017-18,Medford - John J McGlynn Elementary School,01760068, 17, 84, 71, 78, 99, 87, 88, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2017-18,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 130, 162, 168, 0, 0, 0, 0, 0, 460 -NA,NA,"",2017-18,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 177, 165, 158, 0, 0, 0, 0, 0, 500 -NA,NA,"",2017-18,Medford - Medford High,01760505, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 318, 355, 356, 3," 1,413" -NA,NA,"",2017-18,Medford - Milton Fuller Roberts,01760150, 12, 85, 83, 67, 105, 107, 81, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2017-18,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 168, 161, 176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2017-18,Medway - John D Mc Govern Elementary,01770013, 34, 147, 154, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2017-18,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 155, 195, 176, 202, 0, 728 -NA,NA,"",2017-18,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 174, 164, 175, 190, 0, 0, 0, 0, 0, 703 -NA,NA,"",2017-18,Melrose - Early Childhood Center,01780003, 318, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2017-18,Melrose - Herbert Clark Hoover,01780017, 0, 54, 46, 42, 41, 38, 48, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2017-18,Melrose - Horace Mann,01780025, 0, 50, 48, 45, 46, 44, 48, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2017-18,Melrose - Lincoln,01780020, 0, 65, 78, 82, 70, 67, 59, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2017-18,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 239, 267, 262, 231, 3," 1,002" -NA,NA,"",2017-18,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 265, 247, 265, 0, 0, 0, 0, 0, 777 -NA,NA,"",2017-18,Melrose - Roosevelt,01780035, 0, 65, 89, 86, 66, 62, 68, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2017-18,Melrose - Winthrop,01780050, 0, 87, 68, 69, 62, 60, 59, 0, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2017-18,Mendon-Upton - Henry P Clough,07100179, 24, 70, 67, 65, 62, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Mendon-Upton - Memorial School,07100001, 25, 94, 75, 87, 93, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2017-18,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 193, 189, 196, 200, 0, 0, 0, 0, 0, 778 -NA,NA,"",2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163, 154, 160, 149, 8, 634 -NA,NA,"",2017-18,Methuen - Comprehensive Grammar School,01810050, 20, 96, 109, 107, 97, 134, 132, 118, 123, 145, 0, 0, 0, 0, 0," 1,081" -NA,NA,"",2017-18,Methuen - Donald P Timony Grammar,01810060, 46, 149, 115, 138, 149, 151, 152, 150, 149, 153, 0, 0, 0, 0, 0," 1,352" -NA,NA,"",2017-18,Methuen - Marsh Grammar School,01810030, 29, 113, 145, 119, 123, 132, 131, 136, 142, 129, 0, 0, 0, 0, 0," 1,199" -NA,NA,"",2017-18,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 498, 493, 493, 464, 1," 1,949" -NA,NA,"",2017-18,Methuen - Tenney Grammar School,01810055, 29, 126, 131, 149, 135, 141, 169, 151, 172, 151, 0, 0, 0, 0, 0," 1,354" -NA,NA,"",2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 105, 96, 105, 121, 134, 0, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2017-18,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 256, 253, 274, 0, 0, 0, 0, 0, 783 -NA,NA,"",2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 113, 110, 110, 130, 129, 0, 0, 0, 0, 0, 0, 0, 0, 592 -NA,NA,"",2017-18,Middleborough - Memorial Early Childhood Center,01820011, 59, 232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2017-18,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201, 173, 165, 179, 0, 718 -NA,NA,"",2017-18,Middleton - Fuller Meadow,01840003, 0, 73, 84, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2017-18,Middleton - Howe-Manning,01840005, 79, 0, 0, 0, 83, 104, 87, 106, 0, 0, 0, 0, 0, 0, 0, 459 -NA,NA,"",2017-18,Milford - Brookside,01850065, 0, 154, 155, 167, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2017-18,Milford - Memorial,01850010, 0, 151, 157, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469 -NA,NA,"",2017-18,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 291, 279, 282, 9," 1,152" -NA,NA,"",2017-18,Milford - Shining Star Early Childhood Center,01850075, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2017-18,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 326, 355, 299, 0, 0, 0, 0, 0, 980 -NA,NA,"",2017-18,Milford - Woodland,01850090, 0, 0, 0, 0, 324, 315, 326, 0, 0, 0, 0, 0, 0, 0, 0, 965 -NA,NA,"",2017-18,Millbury - Elmwood Street,01860017, 70, 127, 112, 125, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2017-18,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 132, 140, 119, 115, 98, 111, 3, 718 -NA,NA,"",2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 0, 136, 156, 144, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2017-18,Millis - Clyde F Brown,01870005, 58, 102, 82, 79, 103, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91, 97, 96, 109, 0, 393 -NA,NA,"",2017-18,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 93, 105, 105, 104, 0, 0, 0, 0, 0, 407 -NA,NA,"",2017-18,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 323, 305, 286, 0, 0, 0, 0, 0, 914 -NA,NA,"",2017-18,Milton - Collicot,01890005, 77, 97, 120, 99, 122, 103, 95, 0, 0, 0, 0, 0, 0, 0, 0, 713 -NA,NA,"",2017-18,Milton - Cunningham School,01890007, 0, 86, 91, 92, 86, 75, 99, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2017-18,Milton - Glover,01890010, 0, 104, 92, 94, 90, 115, 91, 0, 0, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2017-18,Milton - Milton High,01890505, 15, 0, 0, 0, 0, 0, 0, 0, 0, 0, 268, 241, 239, 265, 0," 1,028" -NA,NA,"",2017-18,Milton - Tucker,01890020, 42, 66, 69, 63, 68, 63, 70, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 145, 134, 126, 133, 0, 538 -NA,NA,"",2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 49, 40, 33, 36, 34, 32, 29, 20, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2017-18,Mohawk Trail - Colrain Central,07170010, 13, 6, 13, 20, 15, 9, 11, 19, 0, 0, 0, 0, 0, 0, 0, 106 -NA,NA,"",2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 54, 79, 61, 53, 70, 64, 6, 387 -NA,NA,"",2017-18,Mohawk Trail - Sanderson Academy,07170020, 37, 31, 19, 12, 18, 14, 18, 10, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 20, 34, 45, 42, 57, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 46, 111, 97, 101, 104, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 550 -NA,NA,"",2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 112, 122, 117, 117, 10, 620 -NA,NA,"",2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 190, 132, 132, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2017-18,Monson - Granite Valley Middle,01910310, 0, 0, 0, 0, 0, 0, 65, 65, 50, 98, 0, 0, 0, 0, 0, 278 -NA,NA,"",2017-18,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 60, 69, 68, 0, 258 -NA,NA,"",2017-18,Monson - Quarry Hill Community School,01910025, 56, 61, 71, 71, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374, 382, 337, 331, 0," 1,424" -NA,NA,"",2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 94, 90, 94, 82, 92, 81, 3, 536 -NA,NA,"",2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 156, 127, 128, 127, 148, 150, 149, 128, 93, 91, 96, 89, 89, 0," 1,571" -NA,NA,"",2017-18,Nahant - Johnson,01960010, 22, 13, 19, 19, 20, 12, 23, 19, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2017-18,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 114, 127, 107, 0, 0, 0, 0, 0, 348 -NA,NA,"",2017-18,Nantucket - Nantucket Elementary,01970005, 36, 118, 94, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2017-18,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 149, 136, 126, 2, 533 -NA,NA,"",2017-18,Nantucket - Nantucket Intermediate School,01970020, 0, 0, 0, 0, 124, 136, 115, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2017-18,Narragansett - Baldwinville Elementary,07200005, 0, 0, 0, 88, 99, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2017-18,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 116, 118, 104, 119, 0, 0, 0, 0, 0, 457 -NA,NA,"",2017-18,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73, 90, 84, 94, 4, 345 -NA,NA,"",2017-18,Narragansett - Phillipston Memorial,07200003, 77, 19, 20, 17, 15, 21, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169 -NA,NA,"",2017-18,Narragansett - Templeton Center,07200020, 0, 82, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2017-18,Nashoba - Center School,07250020, 38, 67, 81, 81, 107, 94, 99, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2017-18,Nashoba - Florence Sawyer School,07250025, 48, 69, 74, 92, 66, 76, 95, 66, 82, 99, 0, 0, 0, 0, 0, 767 -NA,NA,"",2017-18,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 104, 84, 113, 0, 0, 0, 0, 0, 301 -NA,NA,"",2017-18,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 93, 74, 82, 0, 0, 0, 0, 0, 249 -NA,NA,"",2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 40, 70, 66, 65, 84, 68, 78, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2017-18,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241, 221, 246, 268, 12, 988 -NA,NA,"",2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 176, 176, 169, 1, 698 -NA,NA,"",2017-18,Natick - Bennett-Hemenway,01980005, 0, 108, 119, 118, 118, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 594 -NA,NA,"",2017-18,Natick - Brown,01980010, 0, 95, 116, 105, 94, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 524 -NA,NA,"",2017-18,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 172, 162, 157, 150, 0, 0, 0, 0, 0, 641 -NA,NA,"",2017-18,Natick - Johnson,01980031, 0, 50, 48, 45, 39, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2017-18,Natick - Lilja Elementary,01980035, 0, 95, 73, 88, 86, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2017-18,Natick - Memorial,01980043, 0, 78, 87, 73, 98, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2017-18,Natick - Natick High,01980505, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 396, 433, 374, 397, 0," 1,730" -NA,NA,"",2017-18,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 251, 243, 223, 228, 0, 0, 0, 0, 0, 945 -NA,NA,"",2017-18,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, 222, 235, 214, 4, 911 -NA,NA,"",2017-18,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 185, 183, 184, 0, 0, 0, 0, 0, 552 -NA,NA,"",2017-18,Needham - Broadmeadow,01990005, 0, 71, 85, 90, 85, 106, 106, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2017-18,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 450, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2017-18,Needham - Hillside Elementary,01990035, 0, 83, 82, 85, 72, 86, 79, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2017-18,Needham - John Eliot,01990020, 0, 64, 58, 65, 57, 75, 74, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2017-18,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 435, 414, 441, 396, 0," 1,686" -NA,NA,"",2017-18,Needham - Newman Elementary,01990050, 83, 118, 101, 116, 98, 135, 104, 0, 0, 0, 0, 0, 0, 0, 0, 755 -NA,NA,"",2017-18,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 408, 446, 0, 0, 0, 0, 0, 854 -NA,NA,"",2017-18,Needham - William Mitchell,01990040, 0, 68, 85, 92, 84, 79, 90, 0, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 38, 38, 40, 40, 44, 45, 64, 63, 56, 58, 47, 0, 0, 0, 0, 533 -NA,NA,"",2017-18,New Bedford - Abraham Lincoln,02010095, 0, 109, 125, 111, 114, 132, 126, 0, 0, 0, 0, 0, 0, 0, 0, 717 -NA,NA,"",2017-18,New Bedford - Alfred J Gomes,02010063, 43, 65, 104, 90, 85, 89, 77, 0, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2017-18,New Bedford - Betsey B Winslow,02010140, 0, 47, 53, 43, 72, 50, 45, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2017-18,New Bedford - Carlos Pacheco,02010105, 0, 54, 58, 55, 70, 55, 66, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2017-18,New Bedford - Casimir Pulaski,02010123, 131, 97, 112, 104, 103, 90, 93, 0, 0, 0, 0, 0, 0, 0, 0, 730 -NA,NA,"",2017-18,New Bedford - Charles S Ashley,02010010, 0, 34, 41, 55, 50, 54, 48, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 29, 47, 53, 39, 47, 41, 42, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2017-18,New Bedford - Ellen R Hathaway,02010075, 23, 41, 40, 43, 53, 56, 47, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2017-18,New Bedford - Elwyn G Campbell,02010020, 49, 38, 45, 37, 45, 32, 28, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2017-18,New Bedford - Hayden/McFadden,02010078, 73, 109, 115, 112, 85, 100, 83, 0, 0, 0, 0, 0, 0, 0, 0, 677 -NA,NA,"",2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 42, 54, 45, 58, 54, 47, 45, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2017-18,New Bedford - James B Congdon,02010040, 0, 49, 51, 54, 65, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2017-18,New Bedford - Jireh Swift,02010130, 0, 23, 27, 39, 47, 38, 41, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2017-18,New Bedford - John Avery Parker,02010115, 30, 39, 43, 49, 42, 40, 42, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2017-18,New Bedford - John B Devalles,02010050, 0, 66, 62, 67, 69, 64, 61, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2017-18,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 329, 286, 277, 0, 0, 0, 0, 0, 892 -NA,NA,"",2017-18,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517, 586, 510, 349, 0," 1,962" -NA,NA,"",2017-18,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 440, 417, 397, 0, 0, 0, 0, 0," 1,254" -NA,NA,"",2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 30, 28, 34, 39, 39, 28, 25, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2017-18,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 286, 256, 263, 0, 0, 0, 0, 0, 805 -NA,NA,"",2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 71, 86, 124, 132, 100, 152, 117, 0, 0, 0, 0, 0, 0, 0, 0, 782 -NA,NA,"",2017-18,New Bedford - Thomas R Rodman,02010125, 0, 39, 48, 21, 36, 25, 26, 0, 0, 0, 0, 0, 0, 0, 0, 195 -NA,NA,"",2017-18,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 0, 0, 2, 7, 15, 13, 15, 15, 12, 0, 79 -NA,NA,"",2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 1, 7, 14, 32, 12, 23, 11, 0, 100 -NA,NA,"",2017-18,New Bedford - William H Taylor,02010135, 44, 39, 40, 40, 42, 29, 28, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 107, 108, 108, 99, 0, 0, 0, 0, 422 -NA,NA,"",2017-18,New Salem-Wendell - Swift River,07280015, 24, 17, 17, 18, 15, 22, 21, 18, 0, 0, 0, 0, 0, 0, 0, 152 -NA,NA,"",2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 175, 146, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 81, 118, 137, 138, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 615 -NA,NA,"",2017-18,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 179, 187, 192, 8, 774 -NA,NA,"",2017-18,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 198, 194, 167, 0, 0, 0, 0, 0, 559 -NA,NA,"",2017-18,Newton - A E Angier,02070005, 0, 65, 92, 78, 86, 76, 70, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2017-18,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 163, 171, 187, 0, 0, 0, 0, 0, 521 -NA,NA,"",2017-18,Newton - Bowen,02070015, 0, 64, 69, 61, 56, 98, 73, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2017-18,Newton - C C Burr,02070020, 0, 60, 51, 69, 70, 76, 60, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2017-18,Newton - Cabot,02070025, 0, 57, 57, 64, 68, 65, 80, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2017-18,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 230, 240, 283, 0, 0, 0, 0, 0, 753 -NA,NA,"",2017-18,Newton - Countryside,02070040, 0, 56, 65, 69, 77, 73, 70, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2017-18,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 350, 304, 324, 0, 0, 0, 0, 0, 978 -NA,NA,"",2017-18,Newton - Franklin,02070055, 0, 62, 85, 63, 85, 74, 65, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2017-18,Newton - Horace Mann,02070075, 0, 60, 67, 68, 64, 74, 71, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2017-18,Newton - John Ward,02070120, 0, 35, 52, 49, 57, 56, 60, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2017-18,Newton - Lincoln-Eliot,02070070, 0, 67, 67, 59, 57, 65, 59, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2017-18,Newton - Mason-Rice,02070080, 0, 68, 67, 89, 103, 96, 89, 0, 0, 0, 0, 0, 0, 0, 0, 512 -NA,NA,"",2017-18,Newton - Memorial Spaulding,02070105, 0, 75, 74, 79, 86, 72, 67, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2017-18,Newton - Newton Early Childhood Center,02070108, 197, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2017-18,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 503, 522, 544, 552, 27," 2,148" -NA,NA,"",2017-18,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 485, 488, 452, 467, 1," 1,893" -NA,NA,"",2017-18,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 187, 233, 194, 0, 0, 0, 0, 0, 614 -NA,NA,"",2017-18,Newton - Peirce,02070100, 0, 41, 44, 43, 61, 38, 49, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2017-18,Newton - Underwood,02070115, 0, 35, 47, 40, 61, 47, 54, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2017-18,Newton - Williams,02070125, 0, 47, 45, 65, 40, 45, 54, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,Newton - Zervas,02070130, 0, 58, 84, 64, 70, 65, 66, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2017-18,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 114, 139, 115, 121, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2017-18,Norfolk - H Olive Day,02080015, 62, 120, 133, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 130, 144, 133, 0, 550 -NA,NA,"",2017-18,North Adams - Brayton,02090035, 35, 35, 28, 22, 34, 38, 41, 27, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2017-18,North Adams - Colegrove Park Elementary,02090008, 42, 37, 52, 46, 34, 42, 57, 51, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2017-18,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 100, 93, 98, 78, 78, 71, 4, 522 -NA,NA,"",2017-18,North Adams - Greylock,02090015, 41, 33, 37, 36, 28, 37, 43, 41, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,North Andover - Annie L Sargent School,02110018, 0, 88, 92, 91, 102, 91, 95, 0, 0, 0, 0, 0, 0, 0, 0, 559 -NA,NA,"",2017-18,North Andover - Atkinson,02110001, 120, 70, 72, 72, 74, 70, 90, 0, 0, 0, 0, 0, 0, 0, 0, 568 -NA,NA,"",2017-18,North Andover - Franklin,02110010, 0, 65, 72, 76, 82, 83, 74, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2017-18,North Andover - Kittredge,02110015, 0, 44, 51, 41, 51, 50, 51, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2017-18,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 390, 328, 395, 377, 0," 1,490" -NA,NA,"",2017-18,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 361, 354, 389, 0, 0, 0, 0, 0," 1,104" -NA,NA,"",2017-18,North Andover - Thomson,02110020, 0, 41, 61, 63, 53, 71, 56, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2017-18,North Attleborough - Amvet Boulevard,02120007, 0, 44, 64, 68, 72, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2017-18,North Attleborough - Community,02120030, 0, 49, 44, 59, 52, 55, 61, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2017-18,North Attleborough - Falls,02120010, 0, 26, 41, 54, 41, 47, 66, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 97, 118, 93, 90, 110, 128, 0, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2017-18,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 302, 287, 314, 0," 1,156" -NA,NA,"",2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126 -NA,NA,"",2017-18,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 369, 346, 373, 0, 0, 0, 0, 0," 1,088" -NA,NA,"",2017-18,North Attleborough - Roosevelt Avenue,02120015, 0, 53, 47, 47, 31, 49, 56, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2017-18,North Brookfield - North Brookfield Elementary,02150015, 27, 41, 43, 34, 37, 46, 47, 55, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2017-18,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 47, 50, 24, 37, 37, 32, 0, 227 -NA,NA,"",2017-18,North Middlesex - Ashby Elementary,07350010, 0, 35, 35, 34, 39, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2017-18,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 129, 134, 108, 131, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 148, 129, 125, 123, 0, 0, 0, 0, 0, 525 -NA,NA,"",2017-18,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 206, 184, 189, 0, 796 -NA,NA,"",2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 18 -NA,NA,"",2017-18,North Middlesex - Spaulding Memorial,07350005, 0, 83, 77, 85, 86, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90 -NA,NA,"",2017-18,North Middlesex - Varnum Brook,07350035, 0, 92, 96, 110, 111, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2017-18,North Reading - E Ethel Little School,02170003, 46, 56, 44, 53, 43, 54, 35, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2017-18,North Reading - J Turner Hood,02170010, 0, 44, 53, 54, 64, 64, 57, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2017-18,North Reading - L D Batchelder,02170005, 0, 79, 69, 78, 67, 86, 85, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2017-18,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 195, 208, 189, 217, 3, 812 -NA,NA,"",2017-18,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 165, 195, 188, 0, 0, 0, 0, 0, 548 -NA,NA,"",2017-18,Northampton - Bridge Street,02100005, 38, 50, 48, 32, 39, 30, 37, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2017-18,Northampton - Jackson Street,02100020, 0, 55, 63, 55, 66, 61, 58, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2017-18,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 176, 223, 216, 0, 0, 0, 0, 0, 615 -NA,NA,"",2017-18,Northampton - Leeds,02100025, 38, 43, 40, 34, 53, 59, 54, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2017-18,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 217, 214, 216, 0, 869 -NA,NA,"",2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0, 40, 35, 28, 34, 36, 48, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 127, 132, 110, 0, 498 -NA,NA,"",2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386, 353, 365, 359, 8," 1,471" -NA,NA,"",2017-18,Northborough - Fannie E Proctor,02130015, 0, 31, 37, 44, 52, 33, 52, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2017-18,Northborough - Lincoln Street,02130003, 0, 40, 38, 45, 43, 39, 50, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2017-18,Northborough - Marguerite E Peaslee,02130014, 0, 33, 51, 65, 43, 39, 44, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2017-18,Northborough - Marion E Zeh,02130020, 0, 35, 40, 43, 42, 43, 40, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2017-18,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 200, 205, 221, 0, 0, 0, 0, 0, 626 -NA,NA,"",2017-18,Northbridge - Northbridge Elementary,02140005, 76, 156, 148, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2017-18,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 149, 130, 140, 148, 0, 567 -NA,NA,"",2017-18,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 157, 180, 185, 201, 0, 0, 0, 0, 0, 723 -NA,NA,"",2017-18,Northbridge - W Edward Balmer,02140001, 0, 0, 0, 156, 169, 180, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 331, 320, 301, 294, 0," 1,246" -NA,NA,"",2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 137, 114, 108, 0, 488 -NA,NA,"",2017-18,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 195, 200, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2017-18,Norton - J C Solmonese,02180015, 68, 104, 94, 95, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2017-18,Norton - L G Nourse Elementary,02180010, 0, 74, 74, 60, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2017-18,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 178, 187, 201, 6, 744 -NA,NA,"",2017-18,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 184, 192, 211, 0, 0, 0, 0, 0, 587 -NA,NA,"",2017-18,Norwell - Grace Farrar Cole,02190005, 21, 70, 71, 81, 68, 71, 94, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2017-18,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 189, 173, 167, 0, 695 -NA,NA,"",2017-18,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 163, 177, 167, 0, 0, 0, 0, 0, 507 -NA,NA,"",2017-18,Norwell - William G Vinal,02190020, 23, 73, 73, 79, 91, 89, 91, 0, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2017-18,Norwood - Balch,02200005, 0, 0, 69, 53, 56, 58, 60, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,Norwood - Charles J Prescott,02200025, 0, 3, 59, 56, 46, 40, 45, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2017-18,Norwood - Cornelius M Callahan,02200010, 0, 0, 58, 39, 43, 35, 44, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 244, 258, 235, 0, 0, 0, 0, 0, 737 -NA,NA,"",2017-18,Norwood - F A Cleveland,02200015, 0, 0, 60, 74, 69, 54, 71, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2017-18,Norwood - George F. Willett,02200075, 109, 280, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2017-18,Norwood - John P Oldham,02200020, 0, 0, 44, 53, 44, 52, 34, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2017-18,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 244, 242, 238, 228, 6, 958 -NA,NA,"",2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 18, 29, 43, 50, 47, 55, 57, 49, 48, 30, 0, 0, 0, 0, 0, 426 -NA,NA,"",2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 149, 133, 119, 0, 538 -NA,NA,"",2017-18,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199, 181, 185, 206, 6, 777 -NA,NA,"",2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 218, 261, 0, 0, 0, 0, 0, 479 -NA,NA,"",2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0, 40, 40, 40, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2017-18,Orange - Dexter Park,02230010, 0, 0, 0, 0, 65, 90, 85, 73, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2017-18,Orange - Fisher Hill,02230015, 61, 72, 69, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2017-18,Orleans - Orleans Elementary,02240005, 0, 37, 36, 36, 32, 47, 35, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2017-18,Oxford - Alfred M Chaffee,02260010, 46, 105, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2017-18,Oxford - Clara Barton,02260005, 0, 0, 0, 126, 131, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2017-18,Oxford - Oxford High,02260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 137, 102, 101, 93, 101, 9, 543 -NA,NA,"",2017-18,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 160, 146, 137, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 8, 7, 10, 0, 27 -NA,NA,"",2017-18,Palmer - Old Mill Pond,02270008, 40, 104, 116, 93, 100, 109, 125, 0, 0, 0, 0, 0, 0, 0, 0, 687 -NA,NA,"",2017-18,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 107, 119, 117, 84, 84, 109, 93, 0, 713 -NA,NA,"",2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 166, 170, 138, 139, 1, 614 -NA,NA,"",2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 66, 71, 69, 64, 0, 270 -NA,NA,"",2017-18,Peabody - Captain Samuel Brown,02290005, 0, 56, 66, 60, 50, 68, 58, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2017-18,Peabody - Center,02290015, 0, 65, 73, 58, 62, 65, 71, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2017-18,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 457, 479, 430, 0, 0, 0, 0, 0," 1,366" -NA,NA,"",2017-18,Peabody - John E Burke,02290007, 0, 30, 35, 40, 48, 59, 49, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2017-18,Peabody - John E. McCarthy,02290016, 121, 44, 36, 36, 42, 42, 33, 0, 0, 0, 0, 0, 0, 0, 0, 354 -NA,NA,"",2017-18,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357, 335, 361, 419, 8," 1,480" -NA,NA,"",2017-18,Peabody - South Memorial,02290035, 77, 55, 77, 54, 71, 75, 58, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2017-18,Peabody - Thomas Carroll,02290010, 0, 108, 105, 93, 95, 92, 130, 0, 0, 0, 0, 0, 0, 0, 0, 623 -NA,NA,"",2017-18,Peabody - West Memorial,02290045, 37, 31, 41, 40, 28, 33, 38, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Peabody - William A Welch Sr,02290027, 29, 61, 49, 59, 53, 73, 36, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2017-18,Pelham - Pelham Elementary,02300005, 0, 16, 20, 18, 16, 24, 17, 16, 0, 0, 0, 0, 0, 0, 0, 127 -NA,NA,"",2017-18,Pembroke - Bryantville Elementary,02310003, 0, 68, 55, 75, 80, 68, 83, 73, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,Pembroke - Hobomock Elementary,02310010, 0, 58, 57, 69, 50, 52, 78, 61, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2017-18,Pembroke - North Pembroke Elementary,02310015, 69, 56, 56, 66, 78, 73, 67, 84, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2017-18,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 245, 251, 0, 0, 0, 0, 0, 496 -NA,NA,"",2017-18,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 210, 196, 236, 268, 12, 922 -NA,NA,"",2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 36, 56, 62, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2017-18,Pentucket - Dr John C Page School,07450015, 16, 45, 43, 38, 51, 50, 55, 43, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2017-18,Pentucket - Elmer S Bagnall,07450005, 34, 61, 56, 71, 68, 56, 86, 73, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2017-18,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 52, 48, 69, 72, 0, 0, 0, 0, 0, 0, 0, 241 -NA,NA,"",2017-18,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 207, 215, 0, 0, 0, 0, 0, 422 -NA,NA,"",2017-18,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 194, 154, 185, 2, 742 -NA,NA,"",2017-18,Petersham - Petersham Center,02340005, 0, 8, 21, 16, 19, 17, 16, 19, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136, 21, 15, 31, 0, 203 -NA,NA,"",2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 24, 13, 28, 0, 197 -NA,NA,"",2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 67, 68, 67, 66, 64, 0, 0, 69, 69, 64, 51, 50, 33, 0, 668 -NA,NA,"",2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0, 0, 0, 0, 0, 0, 0, 0, 77, 77, 69, 59, 45, 30, 0, 357 -NA,NA,"",2017-18,Pioneer Valley - Bernardston Elementary,07500006, 16, 18, 18, 21, 22, 14, 22, 26, 0, 0, 0, 0, 0, 0, 0, 157 -NA,NA,"",2017-18,Pioneer Valley - Northfield Elementary,07500008, 14, 24, 20, 24, 26, 22, 25, 31, 0, 0, 0, 0, 0, 0, 0, 186 -NA,NA,"",2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 3, 8, 7, 2, 5, 2, 3, 3, 0, 0, 0, 0, 0, 0, 0, 33 -NA,NA,"",2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 74, 66, 52, 47, 64, 57, 0, 360 -NA,NA,"",2017-18,Pioneer Valley - Warwick Community School,07500009, 4, 10, 9, 6, 11, 4, 8, 7, 0, 0, 0, 0, 0, 0, 0, 59 -NA,NA,"",2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 44, 44, 44, 46, 47, 43, 54, 50, 46, 39, 9, 16, 11, 0, 493 -NA,NA,"",2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 68, 69, 64, 69, 67, 64, 0, 401 -NA,NA,"",2017-18,Pittsfield - Allendale,02360010, 0, 56, 49, 44, 46, 42, 51, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2017-18,Pittsfield - Crosby,02360065, 67, 62, 59, 55, 75, 54, 74, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2017-18,Pittsfield - Egremont,02360035, 0, 71, 64, 60, 76, 72, 80, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2017-18,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 178, 179, 193, 0, 0, 0, 0, 0, 550 -NA,NA,"",2017-18,Pittsfield - Morningside Community School,02360055, 18, 70, 50, 50, 56, 56, 87, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2017-18,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223, 214, 210, 189, 16, 852 -NA,NA,"",2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 22, 37, 33, 28, 31, 35, 30, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2017-18,Pittsfield - Silvio O Conte Community,02360105, 17, 72, 58, 51, 60, 52, 52, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2017-18,Pittsfield - Stearns,02360090, 0, 51, 39, 42, 49, 30, 34, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2017-18,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 169, 173, 166, 0, 733 -NA,NA,"",2017-18,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 222, 202, 219, 0, 0, 0, 0, 0, 643 -NA,NA,"",2017-18,Pittsfield - Williams,02360100, 0, 48, 51, 49, 56, 52, 63, 0, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2017-18,Plainville - Anna Ware Jackson,02380010, 57, 92, 90, 83, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 0, 101, 94, 108, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2017-18,Plymouth - Cold Spring,02390005, 0, 41, 39, 38, 41, 44, 52, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2017-18,Plymouth - Federal Furnace School,02390011, 0, 59, 64, 59, 81, 62, 61, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2017-18,Plymouth - Hedge,02390010, 0, 0, 24, 28, 29, 32, 41, 0, 0, 0, 0, 0, 0, 0, 0, 154 -NA,NA,"",2017-18,Plymouth - Indian Brook,02390012, 0, 91, 86, 97, 87, 108, 98, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2017-18,Plymouth - Manomet Elementary,02390015, 0, 38, 57, 39, 53, 47, 53, 0, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 0, 85, 87, 85, 113, 77, 100, 0, 0, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 369, 321, 330, 0, 0, 0, 0, 0," 1,020" -NA,NA,"",2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 140, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2017-18,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351, 333, 310, 287, 0," 1,281" -NA,NA,"",2017-18,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306, 260, 273, 256, 0," 1,095" -NA,NA,"",2017-18,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 0, 248, 238, 238, 0, 0, 0, 0, 0, 724 -NA,NA,"",2017-18,Plymouth - South Elementary,02390046, 0, 99, 112, 102, 112, 117, 111, 0, 0, 0, 0, 0, 0, 0, 0, 653 -NA,NA,"",2017-18,Plymouth - West Elementary,02390047, 0, 83, 64, 60, 52, 70, 65, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2017-18,Plympton - Dennett Elementary,02400010, 0, 30, 29, 35, 21, 32, 28, 32, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0, 85, 80, 85, 90, 95, 97, 98, 93, 93, 99, 72, 75, 70, 0," 1,132" -NA,NA,"",2017-18,Provincetown - Provincetown Schools,02420020, 18, 7, 12, 15, 12, 18, 8, 10, 10, 10, 0, 0, 0, 0, 0, 120 -NA,NA,"",2017-18,Quabbin - Hardwick Elementary,07530005, 0, 21, 19, 31, 25, 34, 28, 36, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2017-18,Quabbin - Hubbardston Center,07530010, 0, 52, 46, 40, 46, 49, 42, 44, 0, 0, 0, 0, 0, 0, 0, 319 -NA,NA,"",2017-18,Quabbin - IB School of Quabbin,07530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 13 -NA,NA,"",2017-18,Quabbin - New Braintree Grade,07530020, 0, 34, 20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54 -NA,NA,"",2017-18,Quabbin - Oakham Center,07530025, 0, 0, 0, 22, 31, 23, 27, 26, 0, 0, 0, 0, 0, 0, 0, 129 -NA,NA,"",2017-18,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201, 150, 142, 164, 0, 657 -NA,NA,"",2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 0, 174, 222, 0, 0, 0, 0, 0, 396 -NA,NA,"",2017-18,Quabbin - Ruggles Lane,07530030, 68, 47, 46, 53, 69, 58, 50, 73, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2017-18,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120, 70, 101, 76, 0, 367 -NA,NA,"",2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 126, 110, 0, 0, 0, 0, 0, 236 -NA,NA,"",2017-18,Quaboag Regional - Warren Elementary,07780005, 36, 51, 46, 55, 71, 57, 66, 63, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 27, 36, 37, 36, 45, 43, 39, 41, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2017-18,Quincy - Atherton Hough,02430040, 0, 37, 51, 44, 37, 44, 38, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2017-18,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 184, 149, 164, 0, 0, 0, 0, 0, 497 -NA,NA,"",2017-18,Quincy - Beechwood Knoll Elementary,02430020, 0, 68, 68, 57, 53, 49, 56, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2017-18,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 134, 128, 120, 0, 0, 0, 0, 0, 382 -NA,NA,"",2017-18,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 206, 216, 212, 0, 0, 0, 0, 0, 634 -NA,NA,"",2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 0, 59, 49, 58, 50, 64, 50, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2017-18,Quincy - Clifford H Marshall Elementary,02430055, 0, 112, 120, 100, 118, 115, 0, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2017-18,Quincy - Francis W Parker,02430075, 0, 53, 41, 48, 54, 59, 58, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2017-18,Quincy - Lincoln-Hancock Community School,02430035, 0, 128, 99, 103, 94, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2017-18,Quincy - Merrymount,02430060, 0, 57, 53, 61, 59, 61, 56, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2017-18,Quincy - Montclair,02430065, 0, 62, 82, 70, 66, 69, 63, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2017-18,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291, 285, 320, 323, 1," 1,220" -NA,NA,"",2017-18,Quincy - Point Webster Middle,02430325, 0, 0, 0, 0, 0, 0, 99, 79, 94, 84, 0, 0, 0, 0, 0, 356 -NA,NA,"",2017-18,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397, 384, 392, 367, 0," 1,540" -NA,NA,"",2017-18,Quincy - Reay E Sterling Middle,02430320, 0, 0, 0, 0, 0, 0, 96, 89, 85, 92, 0, 0, 0, 0, 0, 362 -NA,NA,"",2017-18,Quincy - Snug Harbor Community School,02430090, 149, 57, 49, 46, 56, 62, 45, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2017-18,Quincy - Squantum,02430095, 0, 68, 64, 57, 53, 53, 50, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2017-18,Quincy - Wollaston School,02430110, 0, 53, 62, 55, 57, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 17, 19, 0, 36 -NA,NA,"",2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 126, 119, 115, 83, 101, 97, 0, 641 -NA,NA,"",2017-18,Ralph C Mahar - The Gateway to College,07550525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 0, 17, 26, 0, 83 -NA,NA,"",2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 52, 45, 42, 49, 56, 54, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2017-18,Randolph - J F Kennedy Elementary,02440018, 70, 61, 67, 58, 76, 56, 77, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2017-18,Randolph - Margaret L Donovan,02440015, 0, 76, 69, 66, 83, 82, 66, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2017-18,Randolph - Martin E Young Elementary,02440040, 0, 43, 40, 50, 59, 64, 52, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2017-18,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 191, 191, 220, 0, 0, 0, 0, 0, 602 -NA,NA,"",2017-18,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 174, 155, 171, 0, 708 -NA,NA,"",2017-18,Reading - Alice M Barrows,02460002, 0, 67, 55, 80, 63, 59, 53, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2017-18,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 172, 152, 152, 0, 0, 0, 0, 0, 476 -NA,NA,"",2017-18,Reading - Birch Meadow,02460005, 0, 60, 65, 62, 64, 65, 54, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2017-18,Reading - J Warren Killam,02460017, 0, 66, 67, 81, 61, 68, 77, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2017-18,Reading - Joshua Eaton,02460010, 0, 59, 41, 70, 77, 61, 80, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2017-18,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325, 306, 331, 273, 0," 1,235" -NA,NA,"",2017-18,Reading - RISE PreSchool,02460001, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 94 -NA,NA,"",2017-18,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 188, 201, 174, 0, 0, 0, 0, 0, 563 -NA,NA,"",2017-18,Reading - Wood End Elementary School,02460020, 0, 41, 45, 48, 69, 46, 41, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2017-18,Revere - A. C. Whelan Elementary School,02480003, 0, 118, 128, 119, 123, 136, 129, 0, 0, 0, 0, 0, 0, 0, 0, 753 -NA,NA,"",2017-18,Revere - Abraham Lincoln,02480025, 90, 103, 97, 96, 84, 110, 115, 0, 0, 0, 0, 0, 0, 0, 0, 695 -NA,NA,"",2017-18,Revere - Beachmont Veterans Memorial School,02480013, 38, 62, 58, 52, 49, 54, 61, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2017-18,Revere - Garfield Elementary School,02480056, 63, 106, 130, 125, 107, 116, 121, 0, 0, 0, 0, 0, 0, 0, 0, 768 -NA,NA,"",2017-18,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 183, 181, 174, 0, 0, 0, 0, 0, 538 -NA,NA,"",2017-18,Revere - Paul Revere,02480050, 0, 71, 80, 81, 74, 86, 80, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2017-18,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 614, 443, 481, 446, 7," 1,991" -NA,NA,"",2017-18,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 205, 195, 197, 0, 0, 0, 0, 0, 597 -NA,NA,"",2017-18,Revere - Seacoast School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 23, 22, 25, 12, 0, 82 -NA,NA,"",2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 117, 104, 116, 111, 131, 133, 0, 0, 0, 0, 0, 0, 0, 0, 712 -NA,NA,"",2017-18,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 189, 195, 186, 0, 0, 0, 0, 0, 570 -NA,NA,"",2017-18,Richmond - Richmond Consolidated,02490005, 15, 18, 17, 17, 19, 16, 20, 24, 13, 20, 0, 0, 0, 0, 0, 179 -NA,NA,"",2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 92, 92, 91, 90, 73, 80, 70, 72, 0, 660 -NA,NA,"",2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 0, 32, 32, 32, 34, 32, 33, 32, 31, 30, 0, 0, 0, 0, 0, 288 -NA,NA,"",2017-18,Rochester - Rochester Memorial,02500005, 26, 73, 54, 75, 63, 68, 73, 66, 0, 0, 0, 0, 0, 0, 0, 498 -NA,NA,"",2017-18,Rockland - Jefferson Elementary School,02510060, 0, 93, 56, 53, 51, 52, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2017-18,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 161, 154, 157, 177, 0, 0, 0, 0, 0, 649 -NA,NA,"",2017-18,Rockland - Memorial Park,02510020, 0, 54, 60, 52, 51, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2017-18,Rockland - R Stewart Esten,02510025, 0, 17, 61, 76, 69, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2017-18,Rockland - Rockland Senior High,02510505, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 170, 122, 139, 5, 645 -NA,NA,"",2017-18,Rockport - Rockport Elementary,02520005, 16, 52, 59, 73, 65, 60, 68, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2017-18,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68, 73, 77, 68, 0, 286 -NA,NA,"",2017-18,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 73, 76, 76, 0, 0, 0, 0, 0, 225 -NA,NA,"",2017-18,Rowe - Rowe Elementary,02530005, 14, 8, 13, 4, 10, 7, 5, 10, 0, 0, 0, 0, 0, 0, 0, 71 -NA,NA,"",2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 236, 248, 244, 255, 199, 162, 78, 0, 0," 1,422" -NA,NA,"",2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 0, 107, 114, 123, 160, 129, 128, 130, 128, 128, 110, 98, 115, 104, 0," 1,574" -NA,NA,"",2017-18,Salem - Bates,02580003, 0, 48, 65, 67, 57, 53, 52, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2017-18,Salem - Carlton,02580015, 0, 55, 45, 31, 44, 45, 32, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2017-18,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 178, 185, 173, 0, 0, 0, 0, 0, 536 -NA,NA,"",2017-18,Salem - Horace Mann Laboratory,02580030, 0, 44, 43, 39, 45, 53, 48, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2017-18,Salem - Nathaniel Bowditch,02580025, 0, 35, 38, 43, 48, 44, 51, 40, 45, 34, 0, 0, 0, 0, 0, 378 -NA,NA,"",2017-18,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 13, 20, 0, 45 -NA,NA,"",2017-18,Salem - Salem Early Childhood,02580001, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 93 -NA,NA,"",2017-18,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247, 219, 227, 223, 4, 920 -NA,NA,"",2017-18,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 5, 6, 7, 4, 1, 26 -NA,NA,"",2017-18,Salem - Saltonstall School,02580050, 0, 39, 43, 40, 44, 51, 41, 37, 40, 37, 0, 0, 0, 0, 0, 372 -NA,NA,"",2017-18,Salem - Witchcraft Heights,02580070, 0, 66, 83, 69, 71, 84, 85, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 74, 73, 72, 82, 74, 56, 44, 0, 475 -NA,NA,"",2017-18,Sandwich - Forestdale School,02610002, 66, 164, 188, 214, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 632 -NA,NA,"",2017-18,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 184, 212, 205, 223, 0, 0, 0, 0, 0, 0, 0, 824 -NA,NA,"",2017-18,Sandwich - Sandwich High,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 157, 170, 173, 169, 0, 669 -NA,NA,"",2017-18,Sandwich - Sandwich STEM Academy,02610305, 0, 0, 0, 0, 0, 0, 0, 0, 234, 226, 0, 0, 0, 0, 0, 460 -NA,NA,"",2017-18,Saugus - Belmonte Saugus Middle,02620305, 0, 0, 0, 0, 0, 0, 0, 216, 205, 229, 0, 0, 0, 0, 0, 650 -NA,NA,"",2017-18,Saugus - Douglas Waybright,02620067, 44, 24, 24, 35, 28, 36, 40, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2017-18,Saugus - Lynnhurst,02620040, 0, 60, 37, 44, 39, 41, 49, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2017-18,Saugus - Oaklandvale,02620050, 0, 36, 45, 39, 39, 45, 36, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2017-18,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 158, 187, 139, 7, 656 -NA,NA,"",2017-18,Saugus - Veterans Memorial,02620065, 56, 68, 91, 81, 71, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2017-18,Savoy - Emma L Miller Elementary School,02630010, 11, 9, 7, 9, 10, 9, 5, 0, 0, 0, 0, 0, 0, 0, 0, 60 -NA,NA,"",2017-18,Scituate - Cushing Elementary,02640007, 0, 52, 56, 53, 48, 50, 53, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2017-18,Scituate - Gates Middle School,02640305, 0, 0, 0, 0, 0, 0, 0, 234, 217, 270, 0, 0, 0, 0, 0, 721 -NA,NA,"",2017-18,Scituate - Hatherly Elementary,02640010, 0, 38, 35, 48, 49, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2017-18,Scituate - Jenkins Elementary School,02640015, 0, 65, 47, 53, 57, 60, 78, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2017-18,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251, 232, 211, 227, 0, 921 -NA,NA,"",2017-18,Scituate - Wampatuck Elementary,02640020, 76, 56, 55, 57, 63, 44, 49, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 156, 170, 175, 0, 0, 0, 0, 0, 501 -NA,NA,"",2017-18,Seekonk - George R Martin,02650007, 20, 72, 79, 71, 76, 62, 99, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2017-18,Seekonk - Mildred Aitken School,02650015, 27, 68, 68, 63, 64, 65, 73, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2017-18,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 149, 152, 139, 0, 594 -NA,NA,"",2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0, 61, 75, 88, 81, 81, 79, 77, 60, 65, 0, 0, 0, 0, 0, 667 -NA,NA,"",2017-18,Sharon - Cottage Street,02660005, 0, 66, 86, 79, 96, 94, 99, 0, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2017-18,Sharon - East Elementary,02660010, 0, 67, 79, 86, 80, 91, 88, 0, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2017-18,Sharon - Heights Elementary,02660015, 0, 81, 77, 91, 89, 92, 95, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2017-18,Sharon - Sharon Early Childhood Center,02660001, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 50 -NA,NA,"",2017-18,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276, 250, 283, 270, 0," 1,079" -NA,NA,"",2017-18,Sharon - Sharon Middle,02660305, 0, 0, 0, 0, 0, 0, 0, 285, 270, 318, 0, 0, 0, 0, 0, 873 -NA,NA,"",2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 331, 318, 337, 0," 1,326" -NA,NA,"",2017-18,Sherborn - Pine Hill,02690010, 24, 49, 65, 57, 65, 80, 81, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2017-18,Shrewsbury - Beal School,02710005, 0, 254, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2017-18,Shrewsbury - Calvin Coolidge,02710015, 0, 40, 108, 73, 96, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2017-18,Shrewsbury - Floral Street School,02710020, 0, 0, 131, 212, 192, 215, 0, 0, 0, 0, 0, 0, 0, 0, 0, 750 -NA,NA,"",2017-18,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 493, 516, 0, 0, 0, 0, 0," 1,009" -NA,NA,"",2017-18,Shrewsbury - Parker Road Preschool,02710040, 235, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2017-18,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 464, 503, 0, 0, 0, 0, 0, 0, 0, 967 -NA,NA,"",2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 451, 513, 429, 438, 0," 1,831" -NA,NA,"",2017-18,Shrewsbury - Spring Street,02710035, 0, 40, 71, 74, 99, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2017-18,Shrewsbury - Walter J Paton,02710025, 0, 20, 59, 78, 89, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2017-18,Shutesbury - Shutesbury Elementary,02720005, 16, 11, 18, 10, 22, 12, 15, 18, 0, 0, 0, 0, 0, 0, 0, 122 -NA,NA,"",2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0, 95, 91, 97, 98, 93, 86, 0, 0, 0, 0, 0, 0, 0, 0, 560 -NA,NA,"",2017-18,Silver Lake - Silver Lake Regional High,07600505, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286, 319, 277, 325, 0," 1,305" -NA,NA,"",2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 271, 271, 0, 0, 0, 0, 0, 542 -NA,NA,"",2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 75, 75, 69, 61, 52, 27, 0, 359 -NA,NA,"",2017-18,Somerset - Chace Street,02730005, 71, 59, 65, 52, 51, 71, 50, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2017-18,Somerset - North Elementary,02730008, 0, 64, 82, 70, 74, 100, 100, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2017-18,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 210, 198, 198, 0, 0, 0, 0, 0, 606 -NA,NA,"",2017-18,Somerset - South,02730015, 0, 45, 45, 36, 51, 47, 50, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 274, 262, 214, 2," 1,001" -NA,NA,"",2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 18, 68, 75, 85, 86, 63, 59, 42, 44, 44, 0, 0, 0, 0, 0, 584 -NA,NA,"",2017-18,Somerville - Arthur D Healey,02740075, 18, 54, 51, 49, 46, 44, 49, 51, 40, 49, 0, 0, 0, 0, 0, 451 -NA,NA,"",2017-18,Somerville - Benjamin G Brown,02740015, 0, 32, 44, 45, 36, 37, 37, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2017-18,Somerville - Capuano Early Childhood Center,02740005, 228, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2017-18,Somerville - E Somerville Community,02740111, 0, 67, 88, 95, 88, 88, 95, 83, 65, 51, 0, 0, 0, 0, 0, 720 -NA,NA,"",2017-18,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 17, 13, 13, 0, 52 -NA,NA,"",2017-18,Somerville - John F Kennedy,02740083, 0, 46, 50, 47, 50, 45, 44, 75, 47, 52, 0, 0, 0, 0, 0, 456 -NA,NA,"",2017-18,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 2, 6, 7, 0, 0, 0, 0, 0, 15 -NA,NA,"",2017-18,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 313, 316, 320, 261, 5," 1,215" -NA,NA,"",2017-18,Somerville - West Somerville Neighborhood,02740115, 18, 42, 40, 47, 44, 30, 35, 32, 35, 48, 0, 0, 0, 0, 0, 371 -NA,NA,"",2017-18,Somerville - Winter Hill Community,02740120, 18, 32, 38, 40, 51, 38, 56, 62, 55, 69, 0, 0, 0, 0, 0, 459 -NA,NA,"",2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 156, 146, 137, 133, 0, 0, 0, 0, 0, 572 -NA,NA,"",2017-18,South Hadley - Mosier,02780020, 0, 0, 0, 138, 154, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2017-18,South Hadley - Plains Elementary,02780015, 63, 133, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2017-18,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 141, 123, 139, 8, 555 -NA,NA,"",2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198, 193, 177, 163, 0, 731 -NA,NA,"",2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 77, 67, 61, 66, 66, 79, 77, 77, 78, 78, 85, 64, 52, 0, 927 -NA,NA,"",2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 168, 159, 170, 153, 0, 650 -NA,NA,"",2017-18,Southampton - William E Norris,02750005, 36, 57, 75, 61, 59, 71, 78, 75, 0, 0, 0, 0, 0, 0, 0, 512 -NA,NA,"",2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 138, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2017-18,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 121, 137, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2017-18,Southborough - Mary E Finn School,02760008, 86, 130, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2017-18,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 159, 145, 156, 0, 0, 0, 0, 0, 460 -NA,NA,"",2017-18,Southbridge - Charlton Street,02770005, 0, 0, 0, 67, 72, 82, 89, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2017-18,Southbridge - Eastford Road,02770010, 66, 166, 161, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2017-18,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 128, 113, 108, 0, 500 -NA,NA,"",2017-18,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 166, 167, 150, 0, 0, 0, 0, 0, 483 -NA,NA,"",2017-18,Southbridge - West Street,02770020, 0, 0, 0, 81, 83, 79, 74, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 376, 356, 356, 339, 0," 1,427" -NA,NA,"",2017-18,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 0, 62, 46, 51, 55, 45, 45, 0, 304 -NA,NA,"",2017-18,Southern Berkshire - New Marlborough Central,07650018, 14, 8, 20, 11, 18, 16, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87 -NA,NA,"",2017-18,Southern Berkshire - Undermountain,07650035, 22, 34, 33, 40, 31, 29, 56, 45, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309, 275, 286, 253, 0," 1,123" -NA,NA,"",2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 114, 109, 114, 105, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 116, 126, 112, 118, 122, 124, 2, 720 -NA,NA,"",2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 56, 102, 91, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2017-18,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 69, 92, 58, 3, 293 -NA,NA,"",2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 65, 28, 20, 26, 20, 33, 21, 18, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 95, 110, 116, 96, 0, 0, 0, 0, 0, 417 -NA,NA,"",2017-18,Spencer-E Brookfield - Wire Village School,07670040, 0, 84, 91, 68, 82, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 75, 47, 50, 43, 46, 36, 39, 39, 31, 28, 0, 0, 0, 0, 0, 434 -NA,NA,"",2017-18,Springfield - Alice B Beal Elementary,02810175, 0, 44, 43, 40, 48, 46, 40, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2017-18,Springfield - Arthur T Talmadge,02810165, 0, 43, 39, 53, 42, 43, 34, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2017-18,Springfield - Balliet Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 2, 16, 33, 0, 0, 0, 0, 0, 51 -NA,NA,"",2017-18,Springfield - Brightwood,02810025, 0, 52, 44, 58, 57, 54, 52, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2017-18,Springfield - Chestnut Academy,02810365, 0, 0, 0, 0, 0, 0, 0, 101, 89, 229, 0, 0, 0, 0, 0, 419 -NA,NA,"",2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 120, 104, 92, 0, 0, 0, 0, 0, 316 -NA,NA,"",2017-18,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 59, 57, 57, 48, 52, 46, 49, 0, 368 -NA,NA,"",2017-18,Springfield - Daniel B Brunton,02810035, 0, 80, 76, 79, 77, 78, 76, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2017-18,Springfield - Early Childhood Education Center,02810001, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2017-18,Springfield - Edward P. Boland School,02810010, 204, 92, 105, 78, 92, 113, 102, 0, 0, 0, 0, 0, 0, 0, 0, 786 -NA,NA,"",2017-18,Springfield - Elias Brookings,02810030, 52, 40, 53, 51, 39, 62, 46, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2017-18,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 244, 217, 251, 0, 0, 0, 0, 0, 712 -NA,NA,"",2017-18,Springfield - Frank H Freedman,02810075, 0, 66, 64, 50, 55, 62, 55, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2017-18,Springfield - Frederick Harris,02810080, 50, 111, 99, 87, 89, 92, 106, 0, 0, 0, 0, 0, 0, 0, 0, 634 -NA,NA,"",2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 11, 9, 0, 26 -NA,NA,"",2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 24, 10, 0, 45 -NA,NA,"",2017-18,Springfield - German Gerena Community School,02810195, 125, 109, 104, 101, 91, 99, 91, 0, 0, 0, 0, 0, 0, 0, 0, 720 -NA,NA,"",2017-18,Springfield - Glenwood,02810065, 0, 41, 48, 48, 53, 57, 51, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2017-18,Springfield - Glickman Elementary,02810068, 0, 38, 63, 59, 48, 67, 58, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2017-18,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356, 242, 223, 257, 1," 1,079" -NA,NA,"",2017-18,Springfield - Hiram L Dorman,02810050, 0, 39, 39, 55, 56, 75, 43, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2017-18,Springfield - Homer Street,02810085, 0, 64, 72, 69, 74, 91, 74, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2017-18,Springfield - Impact Prep at Chestnut,02810366, 0, 0, 0, 0, 0, 0, 0, 109, 120, 0, 0, 0, 0, 0, 0, 229 -NA,NA,"",2017-18,Springfield - Indian Orchard Elementary,02810100, 83, 74, 84, 103, 103, 84, 107, 0, 0, 0, 0, 0, 0, 0, 0, 638 -NA,NA,"",2017-18,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 156, 157, 137, 0, 0, 0, 0, 0, 450 -NA,NA,"",2017-18,Springfield - John J Duggan Middle,02810320, 0, 0, 0, 0, 0, 0, 0, 198, 188, 171, 82, 53, 34, 40, 0, 766 -NA,NA,"",2017-18,Springfield - Kensington International School,02810110, 0, 46, 56, 54, 48, 56, 50, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2017-18,Springfield - Liberty,02810115, 0, 44, 49, 40, 48, 55, 47, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2017-18,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 4, 0, 0, 12 -NA,NA,"",2017-18,Springfield - Lincoln,02810120, 0, 69, 68, 64, 66, 75, 62, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2017-18,Springfield - M Marcus Kiley Middle,02810330, 0, 0, 0, 0, 0, 0, 0, 214, 215, 230, 0, 0, 0, 0, 0, 659 -NA,NA,"",2017-18,Springfield - Margaret C Ells,02810060, 157, 52, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 56, 42, 51, 54, 62, 54, 52, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2017-18,Springfield - Mary M Lynch,02810140, 0, 54, 46, 43, 50, 42, 31, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2017-18,Springfield - Mary M Walsh,02810155, 0, 34, 43, 59, 52, 56, 51, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2017-18,Springfield - Mary O Pottenger,02810145, 0, 70, 59, 66, 81, 89, 60, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2017-18,Springfield - Milton Bradley School,02810023, 51, 87, 91, 88, 81, 88, 59, 0, 0, 0, 0, 0, 0, 0, 0, 545 -NA,NA,"",2017-18,Springfield - Rebecca M Johnson,02810055, 142, 81, 108, 97, 118, 97, 106, 0, 0, 0, 0, 0, 0, 0, 0, 749 -NA,NA,"",2017-18,Springfield - Rise Academy at Van Sickle,02810480, 0, 0, 0, 0, 0, 0, 0, 90, 125, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 367, 376, 341, 352, 0," 1,436" -NA,NA,"",2017-18,Springfield - Samuel Bowles,02810020, 0, 48, 53, 51, 69, 52, 65, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2017-18,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 93, 80, 67, 0, 0, 0, 0, 0, 240 -NA,NA,"",2017-18,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 687, 530, 428, 404, 0," 2,049" -NA,NA,"",2017-18,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 57, 59, 50, 44, 1, 211 -NA,NA,"",2017-18,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384, 378, 300, 229, 13," 1,304" -NA,NA,"",2017-18,Springfield - Springfield Public Day Elementary School,02810005, 0, 1, 10, 8, 14, 20, 20, 0, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2017-18,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 28, 27, 11, 2, 98 -NA,NA,"",2017-18,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 18, 15, 17, 0, 0, 0, 0, 0, 50 -NA,NA,"",2017-18,Springfield - Springfield Vocational Academy,02810675, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 92 -NA,NA,"",2017-18,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 95, 101, 97, 0, 0, 0, 0, 0, 293 -NA,NA,"",2017-18,Springfield - Sumner Avenue,02810160, 90, 65, 86, 88, 91, 95, 74, 0, 0, 0, 0, 0, 0, 0, 0, 589 -NA,NA,"",2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 100, 109, 103, 103, 102, 84, 85, 8, 694 -NA,NA,"",2017-18,Springfield - Thomas M Balliet,02810015, 52, 33, 45, 45, 46, 46, 51, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2017-18,Springfield - Van Sickle Academy,02810485, 0, 0, 0, 0, 0, 0, 0, 76, 120, 207, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Springfield - Warner,02810180, 35, 33, 39, 49, 45, 47, 42, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2017-18,Springfield - Washington,02810185, 50, 68, 48, 57, 57, 72, 65, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2017-18,Springfield - White Street,02810190, 0, 80, 80, 77, 70, 68, 81, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2017-18,Springfield - William N. DeBerry,02810045, 0, 33, 47, 42, 47, 50, 42, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 53, 54, 54, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2017-18,Stoneham - Colonial Park,02840005, 44, 50, 48, 47, 42, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2017-18,Stoneham - Robin Hood,02840025, 44, 70, 68, 67, 63, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2017-18,Stoneham - South,02840030, 0, 53, 65, 66, 67, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2017-18,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 174, 170, 171, 172, 0, 0, 0, 0, 0, 687 -NA,NA,"",2017-18,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 171, 172, 152, 1, 676 -NA,NA,"",2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103 -NA,NA,"",2017-18,Stoughton - Helen Hansen Elementary,02850010, 0, 33, 45, 33, 36, 36, 48, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2017-18,Stoughton - Joseph H Gibbons,02850025, 0, 61, 55, 53, 57, 70, 61, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 69, 60, 68, 48, 56, 56, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2017-18,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 322, 261, 242, 0, 0, 0, 0, 0, 825 -NA,NA,"",2017-18,Stoughton - South Elementary,02850015, 0, 28, 37, 46, 44, 46, 47, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296, 278, 271, 253, 1," 1,099" -NA,NA,"",2017-18,Stoughton - West Elementary,02850020, 27, 52, 57, 58, 55, 60, 64, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Sturbridge - Burgess Elementary,02870005, 66, 109, 109, 111, 112, 141, 124, 128, 0, 0, 0, 0, 0, 0, 0, 900 -NA,NA,"",2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215, 218, 198, 185, 0, 816 -NA,NA,"",2017-18,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 308, 303, 330, 0, 0, 0, 0, 0, 941 -NA,NA,"",2017-18,Sudbury - General John Nixon Elementary,02880025, 0, 44, 42, 64, 55, 75, 60, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2017-18,Sudbury - Israel Loring School,02880015, 0, 65, 80, 87, 66, 92, 78, 0, 0, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2017-18,Sudbury - Josiah Haynes,02880010, 0, 49, 52, 63, 74, 51, 91, 0, 0, 0, 0, 0, 0, 0, 0, 380 -NA,NA,"",2017-18,Sudbury - Peter Noyes,02880030, 49, 84, 84, 87, 86, 75, 102, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2017-18,Sunderland - Sunderland Elementary,02890005, 25, 33, 34, 38, 21, 39, 20, 28, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2017-18,Sutton - Sutton Early Learning,02900003, 50, 92, 89, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 328 -NA,NA,"",2017-18,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 108, 101, 120, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2017-18,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 104, 103, 113, 0, 399 -NA,NA,"",2017-18,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 111, 131, 123, 0, 0, 0, 0, 0, 365 -NA,NA,"",2017-18,Swampscott - Clarke,02910005, 0, 39, 35, 41, 38, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2017-18,Swampscott - Hadley,02910010, 0, 58, 52, 56, 56, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2017-18,Swampscott - Stanley,02910020, 0, 62, 56, 61, 57, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 157, 178, 156, 2, 675 -NA,NA,"",2017-18,Swampscott - Swampscott Middle,02910305, 56, 0, 0, 0, 0, 0, 166, 155, 174, 202, 0, 0, 0, 0, 0, 753 -NA,NA,"",2017-18,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 80, 102, 92, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2017-18,Swansea - Gardner,02920015, 0, 85, 98, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2017-18,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 142, 131, 134, 123, 5, 535 -NA,NA,"",2017-18,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 193, 160, 168, 0, 0, 0, 0, 0, 521 -NA,NA,"",2017-18,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 77, 66, 85, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2017-18,Swansea - Mark G Hoyle Elementary,02920017, 59, 72, 71, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 293, 297, 0, 0, 0, 0, 0, 590 -NA,NA,"",2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 198, 169, 179, 8, 728 -NA,NA,"",2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 108, 108, 113, 0, 470 -NA,NA,"",2017-18,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 264, 256, 242, 0, 0, 0, 0, 0, 0, 762 -NA,NA,"",2017-18,Taunton - East Taunton Elementary,02930010, 0, 123, 126, 120, 133, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 618 -NA,NA,"",2017-18,Taunton - Edmund Hatch Bennett,02930007, 0, 71, 60, 54, 63, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2017-18,Taunton - Edward F. Leddy Preschool,02930005, 338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2017-18,Taunton - Elizabeth Pole,02930027, 0, 121, 124, 123, 129, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 622 -NA,NA,"",2017-18,Taunton - H H Galligan,02930057, 0, 47, 51, 48, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2017-18,Taunton - Hopewell,02930035, 0, 45, 54, 57, 61, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274 -NA,NA,"",2017-18,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 171, 179, 147, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2017-18,Taunton - Joseph C Chamberlain,02930008, 0, 88, 98, 116, 94, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2017-18,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 223, 226, 227, 0, 0, 0, 0, 0, 0, 676 -NA,NA,"",2017-18,Taunton - Mulcahey Elementary School,02930015, 0, 100, 94, 81, 118, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2017-18,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 18, 42, 35, 0, 95 -NA,NA,"",2017-18,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 693, 551, 492, 481, 407, 14," 2,638" -NA,NA,"",2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 37, 35, 42, 40, 43, 46, 90, 139, 156, 296, 242, 212, 160, 0," 1,538" -NA,NA,"",2017-18,Tewksbury - Heath-Brook,02950010, 0, 117, 128, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2017-18,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 247, 264, 0, 0, 0, 0, 0, 0, 0, 511 -NA,NA,"",2017-18,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 269, 312, 0, 0, 0, 0, 0, 581 -NA,NA,"",2017-18,Tewksbury - L F Dewing,02950001, 202, 117, 157, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 606 -NA,NA,"",2017-18,Tewksbury - Louise Davy Trahan,02950025, 0, 0, 0, 0, 103, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2017-18,Tewksbury - North Street,02950020, 0, 0, 0, 0, 146, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2017-18,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 224, 240, 234, 3, 918 -NA,NA,"",2017-18,Tisbury - Tisbury Elementary,02960005, 2, 24, 29, 31, 29, 43, 40, 37, 29, 42, 0, 0, 0, 0, 0, 306 -NA,NA,"",2017-18,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 99, 79, 76, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2017-18,Topsfield - Steward Elementary,02980010, 45, 82, 80, 84, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 271, 256, 211, 0, 986 -NA,NA,"",2017-18,Triton - Newbury Elementary,07730020, 51, 50, 44, 57, 59, 61, 56, 73, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2017-18,Triton - Pine Grove,07730025, 36, 53, 58, 53, 71, 57, 66, 57, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2017-18,Triton - Salisbury Elementary,07730015, 55, 59, 71, 60, 67, 81, 78, 57, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2017-18,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 189, 183, 175, 0, 719 -NA,NA,"",2017-18,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 214, 202, 0, 0, 0, 0, 0, 416 -NA,NA,"",2017-18,Truro - Truro Central,03000005, 17, 15, 12, 15, 12, 13, 19, 0, 0, 0, 0, 0, 0, 0, 0, 103 -NA,NA,"",2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 47, 76, 123, 122, 108, 140, 113, 0, 0, 0, 0, 0, 0, 0, 0, 729 -NA,NA,"",2017-18,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 123, 123, 124, 0, 476 -NA,NA,"",2017-18,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 120, 139, 150, 0, 0, 0, 0, 0, 409 -NA,NA,"",2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 183, 166, 153, 0, 0, 0, 0, 0, 502 -NA,NA,"",2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 59, 64, 71, 74, 75, 90, 90, 82, 71, 63, 0, 0, 0, 0, 0, 739 -NA,NA,"",2017-18,Up-Island Regional - Chilmark Elementary,07740010, 0, 11, 9, 6, 10, 10, 6, 0, 0, 0, 0, 0, 0, 0, 0, 52 -NA,NA,"",2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 6, 32, 27, 39, 39, 38, 32, 42, 53, 44, 0, 0, 0, 0, 0, 352 -NA,NA,"",2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 190, 186, 167, 172, 0, 715 -NA,NA,"",2017-18,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 9, 36, 0, 46 -NA,NA,"",2017-18,Uxbridge - McCloskey Middle School,03040015, 0, 0, 0, 0, 0, 0, 0, 135, 130, 138, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Uxbridge - Taft Early Learning Center,03040005, 86, 113, 125, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2017-18,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131, 111, 116, 119, 5, 482 -NA,NA,"",2017-18,Uxbridge - Whitin Elementary School,03040020, 0, 0, 0, 0, 125, 123, 135, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 90, 86, 82, 64, 0, 0, 0, 0, 0, 322 -NA,NA,"",2017-18,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 121, 132, 119, 0, 0, 0, 0, 0, 372 -NA,NA,"",2017-18,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 79, 95, 96, 94, 0, 0, 0, 0, 0, 364 -NA,NA,"",2017-18,Wachusett - Davis Hill Elementary,07750018, 0, 61, 74, 73, 74, 75, 94, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2017-18,Wachusett - Dawson,07750020, 0, 43, 79, 83, 79, 86, 90, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2017-18,Wachusett - Early Childhood Center,07750001, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 162 -NA,NA,"",2017-18,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 102, 112, 129, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2017-18,Wachusett - Houghton Elementary,07750027, 0, 65, 62, 84, 69, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375 -NA,NA,"",2017-18,Wachusett - Leroy E.Mayo,07750032, 0, 60, 79, 82, 83, 86, 87, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2017-18,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 281, 258, 263, 0, 0, 0, 0, 0, 802 -NA,NA,"",2017-18,Wachusett - Naquag Elementary School,07750005, 0, 91, 115, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2017-18,Wachusett - Paxton Center,07750040, 0, 26, 41, 38, 54, 55, 63, 66, 62, 63, 0, 0, 0, 0, 0, 468 -NA,NA,"",2017-18,Wachusett - Thomas Prince,07750045, 0, 33, 48, 38, 51, 47, 48, 50, 42, 44, 0, 0, 0, 0, 0, 401 -NA,NA,"",2017-18,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 522, 521, 581, 493, 13," 2,130" -NA,NA,"",2017-18,Wakefield - Dolbeare,03050005, 0, 88, 103, 90, 87, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 448 -NA,NA,"",2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126 -NA,NA,"",2017-18,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 262, 250, 248, 284, 0, 0, 0, 0, 0," 1,044" -NA,NA,"",2017-18,Wakefield - Greenwood,03050020, 0, 46, 43, 42, 49, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2017-18,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249, 266, 232, 272, 9," 1,028" -NA,NA,"",2017-18,Wakefield - Walton,03050040, 0, 0, 46, 46, 47, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 205 -NA,NA,"",2017-18,Wakefield - Woodville School,03050015, 0, 125, 80, 77, 80, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2017-18,Wales - Wales Elementary,03060005, 14, 21, 16, 26, 20, 25, 18, 21, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2017-18,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 178, 153, 160, 0, 0, 0, 0, 0, 491 -NA,NA,"",2017-18,Walpole - Boyden,03070010, 0, 63, 58, 58, 55, 56, 66, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 150, 139, 159, 0, 0, 0, 0, 0, 448 -NA,NA,"",2017-18,Walpole - Elm Street School,03070005, 0, 62, 77, 75, 65, 67, 85, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2017-18,Walpole - Fisher,03070015, 0, 71, 66, 78, 77, 95, 67, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2017-18,Walpole - Old Post Road,03070018, 0, 64, 79, 57, 78, 76, 65, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2017-18,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 276, 276, 293, 279, 8," 1,132" -NA,NA,"",2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 0, 78, 74, 81, 77, 68, 62, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2017-18,Waltham - Henry Whittemore Elementary School,03080065, 0, 65, 74, 76, 62, 80, 76, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2017-18,Waltham - James Fitzgerald Elementary School,03080060, 0, 79, 62, 61, 78, 69, 89, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2017-18,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 171, 177, 164, 0, 0, 0, 0, 0, 512 -NA,NA,"",2017-18,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 227, 206, 198, 0, 0, 0, 0, 0, 631 -NA,NA,"",2017-18,Waltham - Northeast Elementary School,03080040, 105, 101, 68, 98, 79, 75, 67, 0, 0, 0, 0, 0, 0, 0, 0, 593 -NA,NA,"",2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 0, 63, 71, 79, 67, 77, 65, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 0, 39, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2017-18,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 400, 456, 386, 377, 1," 1,620" -NA,NA,"",2017-18,Waltham - William F. Stanley Elementary School,03080005, 41, 62, 70, 71, 61, 60, 67, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2017-18,Ware - Stanley M Koziol Elementary School,03090020, 64, 77, 91, 86, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2017-18,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 95, 93, 79, 60, 78, 59, 2, 466 -NA,NA,"",2017-18,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 104, 116, 115, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2017-18,Wareham - John William Decas,03100003, 0, 222, 159, 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577 -NA,NA,"",2017-18,Wareham - Minot Forest,03100017, 82, 0, 0, 0, 205, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 490 -NA,NA,"",2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 18, 17, 18, 0, 63 -NA,NA,"",2017-18,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 173, 186, 180, 187, 0, 0, 0, 0, 0, 726 -NA,NA,"",2017-18,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126, 111, 88, 123, 10, 458 -NA,NA,"",2017-18,Watertown - Cunniff,03140015, 18, 58, 46, 40, 60, 46, 39, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2017-18,Watertown - Hosmer,03140020, 115, 115, 112, 86, 81, 82, 92, 0, 0, 0, 0, 0, 0, 0, 0, 683 -NA,NA,"",2017-18,Watertown - James Russell Lowell,03140025, 18, 69, 67, 67, 72, 58, 66, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2017-18,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186, 160, 161, 162, 5, 674 -NA,NA,"",2017-18,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 175, 187, 165, 0, 0, 0, 0, 0, 527 -NA,NA,"",2017-18,Wayland - Claypit Hill School,03150005, 0, 92, 93, 84, 74, 94, 105, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2017-18,Wayland - Happy Hollow School,03150015, 0, 59, 62, 61, 68, 61, 75, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2017-18,Wayland - Loker School,03150020, 0, 57, 41, 44, 44, 39, 56, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2017-18,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233, 210, 200, 213, 0, 856 -NA,NA,"",2017-18,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 221, 209, 207, 0, 0, 0, 0, 0, 637 -NA,NA,"",2017-18,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109, 105, 126, 93, 6, 439 -NA,NA,"",2017-18,Webster - Park Avenue Elementary,03160015, 61, 140, 156, 156, 158, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 827 -NA,NA,"",2017-18,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 151, 132, 152, 154, 0, 0, 0, 0, 0, 589 -NA,NA,"",2017-18,Wellesley - Ernest F Upham,03170050, 0, 37, 43, 26, 44, 46, 40, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2017-18,Wellesley - Hunnewell,03170025, 0, 41, 39, 40, 45, 50, 33, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Wellesley - John D Hardy,03170020, 0, 39, 41, 54, 44, 59, 58, 0, 0, 0, 0, 0, 0, 0, 0, 295 -NA,NA,"",2017-18,Wellesley - Joseph E Fiske,03170015, 100, 42, 53, 44, 55, 54, 50, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2017-18,Wellesley - Katharine Lee Bates,03170005, 0, 52, 60, 62, 59, 70, 69, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2017-18,Wellesley - Schofield,03170045, 0, 63, 54, 65, 64, 65, 66, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2017-18,Wellesley - Sprague Elementary School,03170048, 0, 64, 63, 62, 63, 65, 66, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2017-18,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 379, 393, 356, 0, 0, 0, 0, 0," 1,128" -NA,NA,"",2017-18,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 397, 385, 384, 403, 0," 1,569" -NA,NA,"",2017-18,Wellfleet - Wellfleet Elementary,03180005, 12, 14, 18, 16, 14, 9, 29, 0, 0, 0, 0, 0, 0, 0, 0, 112 -NA,NA,"",2017-18,West Boylston - Major Edwards Elementary,03220005, 33, 65, 61, 69, 60, 66, 67, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 68, 76, 93, 67, 58, 63, 60, 1, 486 -NA,NA,"",2017-18,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 101, 94, 93, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2017-18,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 84, 85, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2017-18,West Bridgewater - Spring Street School,03230005, 62, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 106, 116, 101, 104, 105, 94, 0, 626 -NA,NA,"",2017-18,West Springfield - 21st Century Skills Academy,03320515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 8 -NA,NA,"",2017-18,West Springfield - Cowing Early Childhood,03320001, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122 -NA,NA,"",2017-18,West Springfield - John Ashley,03320005, 0, 234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2017-18,West Springfield - John R Fausey,03320010, 0, 0, 82, 86, 92, 115, 85, 0, 0, 0, 0, 0, 0, 0, 0, 460 -NA,NA,"",2017-18,West Springfield - Memorial,03320025, 0, 0, 38, 45, 43, 44, 69, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2017-18,West Springfield - Mittineague,03320030, 0, 0, 37, 32, 32, 32, 28, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2017-18,West Springfield - Philip G Coburn,03320007, 0, 46, 118, 99, 110, 72, 73, 0, 0, 0, 0, 0, 0, 0, 0, 518 -NA,NA,"",2017-18,West Springfield - Tatham,03320040, 0, 2, 51, 42, 50, 45, 49, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2017-18,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329, 303, 295, 294, 13," 1,234" -NA,NA,"",2017-18,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 296, 317, 286, 0, 0, 0, 0, 0, 899 -NA,NA,"",2017-18,Westborough - Annie E Fales,03210010, 0, 66, 88, 92, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2017-18,Westborough - Elsie A Hastings Elementary,03210025, 143, 77, 101, 89, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2017-18,Westborough - J Harding Armstrong,03210005, 0, 118, 115, 95, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2017-18,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 299, 327, 309, 0, 0, 0, 0, 0, 0, 0, 935 -NA,NA,"",2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 282, 318, 0, 0, 0, 0, 0, 600 -NA,NA,"",2017-18,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324, 261, 272, 274, 0," 1,131" -NA,NA,"",2017-18,Westfield - Abner Gibbs,03250020, 0, 32, 39, 42, 26, 41, 43, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 196, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196 -NA,NA,"",2017-18,Westfield - Franklin Ave,03250015, 0, 32, 45, 48, 43, 48, 32, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Westfield - Highland,03250025, 0, 55, 58, 66, 63, 73, 58, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Westfield - Munger Hill,03250033, 0, 45, 63, 67, 58, 70, 76, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2017-18,Westfield - North Middle School,03250305, 0, 0, 0, 0, 0, 0, 0, 245, 199, 232, 0, 0, 0, 0, 0, 676 -NA,NA,"",2017-18,Westfield - Paper Mill,03250036, 0, 61, 72, 67, 69, 72, 71, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2017-18,Westfield - Russell Elementary School,03250055, 0, 19, 24, 20, 29, 38, 31, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2017-18,Westfield - South Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 189, 198, 201, 0, 0, 0, 0, 0, 588 -NA,NA,"",2017-18,Westfield - Southampton Road,03250040, 0, 64, 70, 70, 67, 75, 79, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2017-18,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 287, 330, 292, 320, 28," 1,257" -NA,NA,"",2017-18,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 142, 126, 133, 0, 541 -NA,NA,"",2017-18,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 128, 119, 120, 0, 0, 0, 0, 0, 0, 0, 0, 367 -NA,NA,"",2017-18,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 179, 193, 218, 0, 0, 0, 0, 0, 590 -NA,NA,"",2017-18,Westford - Col John Robinson,03260025, 0, 89, 105, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2017-18,Westford - Day Elementary,03260007, 0, 0, 0, 0, 125, 105, 126, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2017-18,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 109, 107, 127, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2017-18,Westford - Millennium Elementary,03260013, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 -NA,NA,"",2017-18,Westford - Nabnasset,03260015, 0, 89, 111, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2017-18,Westford - Rita E. Miller Elementary School,03260055, 0, 99, 108, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2017-18,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 204, 251, 192, 0, 0, 0, 0, 0, 647 -NA,NA,"",2017-18,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 447, 433, 443, 388, 4," 1,715" -NA,NA,"",2017-18,Westhampton - Westhampton Elementary School,03270005, 15, 8, 15, 17, 18, 16, 16, 17, 0, 0, 0, 0, 0, 0, 0, 122 -NA,NA,"",2017-18,Weston - Country,03300010, 25, 58, 60, 81, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2017-18,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 135, 190, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2017-18,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 171, 199, 150, 1, 694 -NA,NA,"",2017-18,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 160, 159, 165, 0, 0, 0, 0, 0, 484 -NA,NA,"",2017-18,Weston - Woodland,03300015, 20, 59, 79, 60, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2017-18,Westport - Alice A Macomber,03310015, 50, 103, 104, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2017-18,Westport - Westport Elementary,03310030, 0, 0, 0, 0, 121, 109, 124, 153, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2017-18,Westport - Westport Junior/Senior High School,03310515, 0, 0, 0, 0, 0, 0, 0, 0, 115, 118, 93, 59, 98, 67, 0, 550 -NA,NA,"",2017-18,Westwood - Deerfield School,03350010, 0, 18, 29, 33, 42, 30, 48, 0, 0, 0, 0, 0, 0, 0, 0, 200 -NA,NA,"",2017-18,Westwood - Downey,03350012, 0, 45, 43, 42, 42, 45, 33, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2017-18,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 271, 261, 261, 0, 0, 0, 0, 0, 793 -NA,NA,"",2017-18,Westwood - Martha Jones,03350017, 0, 53, 40, 47, 48, 51, 54, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2017-18,Westwood - Paul Hanlon,03350015, 0, 47, 31, 36, 38, 42, 26, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2017-18,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253, 236, 260, 250, 3," 1,002" -NA,NA,"",2017-18,Westwood - Westwood Integrated Preschool,03350050, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 46 -NA,NA,"",2017-18,Westwood - William E Sheehan,03350025, 0, 38, 46, 54, 68, 51, 61, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2017-18,Weymouth - Abigail Adams Middle School,03360310, 0, 0, 0, 0, 0, 0, 437, 469, 0, 0, 0, 0, 0, 0, 0, 906 -NA,NA,"",2017-18,Weymouth - Academy Avenue,03360005, 0, 52, 67, 49, 60, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2017-18,Weymouth - Frederick C Murphy,03360050, 0, 43, 45, 50, 48, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2017-18,Weymouth - Johnson Early Childhood Center,03360003, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2017-18,Weymouth - Lawrence W Pingree,03360065, 0, 37, 36, 44, 41, 35, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0, 0, 0, 0, 0, 0, 2, 3, 419, 458, 0, 0, 0, 0, 0, 882 -NA,NA,"",2017-18,Weymouth - Ralph Talbot,03360085, 0, 38, 50, 56, 58, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Weymouth - Thomas V Nash,03360060, 0, 27, 35, 47, 41, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 72, 64, 76, 61, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2017-18,Weymouth - Wessagusset,03360110, 0, 57, 54, 52, 62, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2017-18,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 495, 476, 456, 469, 4," 1,900" -NA,NA,"",2017-18,Weymouth - William Seach,03360080, 0, 57, 70, 61, 65, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2017-18,Whately - Whately Elementary,03370005, 16, 17, 20, 14, 18, 17, 20, 18, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2017-18,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 0, 125, 131, 137, 0, 0, 0, 0, 0, 393 -NA,NA,"",2017-18,Whitman-Hanson - Indian Head,07800035, 0, 0, 0, 0, 109, 103, 112, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2017-18,Whitman-Hanson - John H Duval,07800030, 0, 61, 72, 65, 76, 80, 90, 0, 0, 0, 0, 0, 0, 0, 0, 444 -NA,NA,"",2017-18,Whitman-Hanson - Louise A Conley,07800010, 0, 79, 86, 93, 82, 110, 112, 0, 0, 0, 0, 0, 0, 0, 0, 562 -NA,NA,"",2017-18,Whitman-Hanson - Maquan Elementary,07800025, 112, 107, 107, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 278, 293, 309, 8," 1,172" -NA,NA,"",2017-18,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 181, 195, 199, 0, 0, 0, 0, 0, 575 -NA,NA,"",2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288, 331, 332, 303, 0," 1,254" -NA,NA,"",2017-18,Williamsburg - Anne T. Dunphy School,03400020, 13, 16, 19, 22, 21, 23, 19, 30, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2017-18,Williamstown - Williamstown Elementary,03410010, 32, 56, 58, 72, 58, 56, 52, 73, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2017-18,Wilmington - Boutwell,03420005, 42, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2017-18,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 166, 137, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2017-18,Wilmington - Shawsheen Elementary,03420025, 0, 0, 111, 123, 111, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2017-18,Wilmington - West Intermediate,03420080, 0, 0, 0, 0, 0, 123, 124, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2017-18,Wilmington - Wildwood,03420015, 43, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2017-18,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 198, 213, 214, 236, 1, 862 -NA,NA,"",2017-18,Wilmington - Wilmington Middle School,03420330, 0, 0, 0, 0, 0, 0, 0, 269, 256, 311, 0, 0, 0, 0, 0, 836 -NA,NA,"",2017-18,Wilmington - Woburn Street,03420020, 0, 0, 132, 147, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2017-18,Winchendon - Memorial,03430040, 0, 110, 103, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2017-18,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 11, 8, 9, 0, 29 -NA,NA,"",2017-18,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 66, 86, 62, 0, 304 -NA,NA,"",2017-18,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 88, 90, 95, 0, 0, 0, 0, 0, 273 -NA,NA,"",2017-18,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 85, 92, 117, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2017-18,Winchendon - Winchendon PreSchool Program,03430010, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2017-18,Winchester - Ambrose Elementary,03440045, 0, 45, 61, 75, 79, 78, 83, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2017-18,Winchester - Lincoln Elementary,03440005, 0, 54, 83, 62, 79, 73, 52, 0, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Winchester - Lynch Elementary,03440020, 60, 92, 78, 82, 62, 91, 75, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2017-18,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 375, 377, 359, 0, 0, 0, 0, 0," 1,111" -NA,NA,"",2017-18,Winchester - Muraco Elementary,03440040, 0, 52, 66, 58, 63, 71, 71, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2017-18,Winchester - Vinson-Owen Elementary,03440025, 29, 61, 56, 69, 75, 84, 81, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2017-18,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 345, 307, 333, 0," 1,351" -NA,NA,"",2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 152, 160, 142, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 38, 146, 151, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2017-18,Winthrop - Winthrop High School,03460505, 14, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 149, 163, 116, 0, 615 -NA,NA,"",2017-18,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 171, 154, 157, 0, 0, 0, 0, 0, 482 -NA,NA,"",2017-18,Woburn - Clyde Reeves,03470040, 42, 53, 67, 55, 58, 82, 72, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2017-18,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 181, 159, 184, 0, 0, 0, 0, 0, 524 -NA,NA,"",2017-18,Woburn - Daniel P Hurld,03470020, 0, 38, 39, 33, 33, 28, 44, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2017-18,Woburn - Goodyear Elementary School,03470005, 0, 36, 53, 49, 51, 59, 59, 0, 0, 0, 0, 0, 0, 0, 0, 307 -NA,NA,"",2017-18,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 150, 147, 186, 0, 0, 0, 0, 0, 483 -NA,NA,"",2017-18,Woburn - Linscott-Rumford,03470025, 0, 32, 42, 32, 31, 27, 43, 0, 0, 0, 0, 0, 0, 0, 0, 207 -NA,NA,"",2017-18,Woburn - Malcolm White,03470055, 0, 59, 45, 55, 51, 58, 56, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2017-18,Woburn - Mary D Altavesta,03470065, 0, 35, 41, 51, 45, 43, 33, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2017-18,Woburn - Shamrock,03470043, 119, 43, 35, 43, 41, 41, 40, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2017-18,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297, 314, 355, 351, 0," 1,317" -NA,NA,"",2017-18,Woburn - Wyman,03470060, 0, 28, 29, 34, 38, 18, 35, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2017-18,Worcester - Belmont Street Community,03480020, 49, 84, 75, 76, 73, 83, 83, 58, 0, 0, 0, 0, 0, 0, 0, 581 -NA,NA,"",2017-18,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 335, 288, 0, 0, 0, 0, 0, 623 -NA,NA,"",2017-18,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 269, 270, 229, 16," 1,034" -NA,NA,"",2017-18,Worcester - Burncoat Street,03480035, 0, 41, 39, 48, 39, 49, 38, 39, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2017-18,Worcester - Canterbury,03480045, 26, 49, 60, 46, 42, 49, 55, 49, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2017-18,Worcester - Chandler Elementary Community,03480050, 0, 75, 69, 79, 80, 64, 76, 57, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2017-18,Worcester - Chandler Magnet,03480052, 11, 77, 63, 57, 63, 74, 45, 44, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2017-18,Worcester - City View,03480053, 28, 77, 59, 67, 76, 53, 52, 62, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2017-18,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 86, 95, 88, 102, 92, 89, 0, 552 -NA,NA,"",2017-18,Worcester - Clark St Community,03480055, 34, 40, 46, 30, 25, 27, 24, 34, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2017-18,Worcester - Columbus Park,03480060, 61, 72, 64, 61, 67, 58, 69, 55, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2017-18,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 383, 431, 350, 386, 9," 1,559" -NA,NA,"",2017-18,Worcester - Elm Park Community,03480095, 0, 78, 60, 75, 66, 67, 70, 61, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2017-18,Worcester - Flagg Street,03480090, 0, 55, 59, 64, 65, 59, 54, 53, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2017-18,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 486, 492, 0, 0, 0, 0, 0, 978 -NA,NA,"",2017-18,Worcester - Francis J McGrath Elementary,03480177, 0, 49, 36, 27, 37, 30, 30, 28, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2017-18,Worcester - Gates Lane,03480110, 68, 78, 72, 66, 67, 77, 50, 91, 0, 0, 0, 0, 0, 0, 0, 569 -NA,NA,"",2017-18,Worcester - Goddard School/Science Technical,03480100, 27, 57, 62, 66, 52, 64, 67, 70, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2017-18,Worcester - Grafton Street,03480115, 0, 62, 64, 61, 62, 56, 46, 36, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2017-18,Worcester - Head Start,03480002, 529, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2017-18,Worcester - Heard Street,03480136, 0, 61, 44, 35, 42, 40, 37, 37, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2017-18,Worcester - Jacob Hiatt Magnet,03480140, 43, 63, 56, 55, 57, 48, 45, 36, 0, 0, 0, 0, 0, 0, 0, 403 -NA,NA,"",2017-18,Worcester - Lake View,03480145, 0, 50, 49, 38, 37, 50, 33, 28, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2017-18,Worcester - Lincoln Street,03480160, 0, 69, 26, 42, 32, 30, 34, 37, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2017-18,Worcester - May Street,03480175, 0, 50, 44, 39, 54, 53, 52, 47, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2017-18,Worcester - Midland Street,03480185, 0, 41, 32, 32, 33, 38, 26, 28, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2017-18,Worcester - Nelson Place,03480200, 47, 68, 70, 51, 80, 65, 64, 77, 0, 0, 0, 0, 0, 0, 0, 522 -NA,NA,"",2017-18,Worcester - Norrback Avenue,03480202, 57, 72, 69, 75, 80, 78, 59, 74, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2017-18,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341, 302, 304, 332, 13," 1,292" -NA,NA,"",2017-18,Worcester - Quinsigamond,03480210, 28, 102, 105, 91, 102, 121, 107, 89, 0, 0, 0, 0, 0, 0, 0, 745 -NA,NA,"",2017-18,Worcester - Rice Square,03480215, 0, 78, 62, 60, 55, 63, 67, 42, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2017-18,Worcester - Roosevelt,03480220, 67, 98, 96, 85, 95, 89, 73, 70, 0, 0, 0, 0, 0, 0, 0, 673 -NA,NA,"",2017-18,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363, 363, 346, 313, 22," 1,407" -NA,NA,"",2017-18,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 48, 424, 393, 0, 0, 0, 0, 0, 865 -NA,NA,"",2017-18,Worcester - Tatnuck,03480230, 28, 62, 55, 47, 48, 64, 47, 41, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2017-18,Worcester - Thorndyke Road,03480235, 0, 59, 65, 54, 51, 57, 52, 43, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2017-18,Worcester - Union Hill School,03480240, 0, 60, 61, 65, 67, 68, 72, 61, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2017-18,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 44, 44, 36, 41, 36, 38, 0, 239 -NA,NA,"",2017-18,Worcester - Vernon Hill School,03480280, 55, 71, 66, 48, 67, 80, 87, 62, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2017-18,Worcester - Wawecus Road School,03480026, 0, 18, 13, 26, 22, 28, 22, 23, 0, 0, 0, 0, 0, 0, 0, 152 -NA,NA,"",2017-18,Worcester - West Tatnuck,03480260, 44, 59, 43, 42, 48, 45, 50, 39, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2017-18,Worcester - Woodland Academy,03480030, 0, 79, 96, 72, 82, 98, 81, 98, 0, 0, 0, 0, 0, 0, 0, 606 -NA,NA,"",2017-18,Worcester - Worcester Arts Magnet School,03480225, 23, 56, 58, 58, 61, 60, 51, 37, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2017-18,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 93, 390, 338, 0, 0, 0, 0, 0, 821 -NA,NA,"",2017-18,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 380, 346, 328, 335, 0," 1,389" -NA,NA,"",2017-18,Worthington - R. H. Conwell,03490010, 14, 13, 9, 9, 7, 5, 3, 2, 0, 0, 0, 0, 0, 0, 0, 62 -NA,NA,"",2017-18,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 161, 149, 156, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2017-18,Wrentham - Delaney,03500003, 83, 130, 122, 113, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 0, 116, 113, 118, 122, 119, 118, 127, 121, 115, 96, 86, 93, 81, 0," 1,425" -NA,NA,"",2016-17,Abington - Abington High,00010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 109, 123, 92, 4, 452 -NA,NA,"",2016-17,Abington - Beaver Brook Elementary School,00010003, 0, 0, 125, 164, 148, 143, 0, 0, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2016-17,Abington - Center Elementary School,00010002, 69, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2016-17,Abington - Frolio Middle School,00010405, 0, 0, 0, 0, 0, 0, 0, 0, 159, 169, 0, 0, 0, 0, 0, 328 -NA,NA,"",2016-17,Abington - Woodsdale Elementary School,00010015, 0, 0, 0, 0, 0, 0, 180, 173, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 0, 0, 0, 0, 0, 0, 79, 77, 81, 79, 64, 55, 43, 49, 0, 527 -NA,NA,"",2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 448, 492, 456, 467, 1," 1,864" -NA,NA,"",2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0, 60, 52, 53, 45, 63, 70, 70, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0, 46, 59, 69, 72, 68, 68, 74, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 97 -NA,NA,"",2016-17,Acton-Boxborough - Luther Conant School,06000030, 0, 58, 40, 45, 75, 90, 68, 75, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0, 63, 58, 68, 71, 72, 69, 74, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2016-17,Acton-Boxborough - Merriam School,06000010, 0, 63, 59, 69, 84, 74, 69, 99, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0, 40, 57, 68, 50, 45, 70, 74, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0, 0, 0, 0, 0, 0, 0, 0, 469, 442, 0, 0, 0, 0, 0, 911 -NA,NA,"",2016-17,Acushnet - Acushnet Elementary School,00030025, 50, 84, 99, 102, 107, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 538 -NA,NA,"",2016-17,Acushnet - Albert F Ford Middle School,00030305, 0, 0, 0, 0, 0, 0, 105, 121, 77, 114, 0, 0, 0, 0, 0, 417 -NA,NA,"",2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 63, 28, 28, 33, 32, 26, 34, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0, 0, 0, 0, 0, 0, 0, 91, 112, 96, 63, 94, 84, 80, 2, 622 -NA,NA,"",2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0, 65, 66, 83, 81, 84, 72, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0, 0, 0, 0, 0, 0, 0, 154, 151, 149, 142, 126, 105, 125, 0, 952 -NA,NA,"",2016-17,Agawam - Agawam Early Childhood Center,00050003, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2016-17,Agawam - Agawam High,00050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299, 309, 293, 315, 6," 1,222" -NA,NA,"",2016-17,Agawam - Agawam Junior High,00050405, 0, 0, 0, 0, 0, 0, 0, 0, 253, 309, 0, 0, 0, 0, 0, 562 -NA,NA,"",2016-17,Agawam - Benjamin J Phelps,00050020, 0, 91, 62, 72, 86, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2016-17,Agawam - Clifford M Granger,00050010, 0, 60, 43, 66, 64, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2016-17,Agawam - James Clark School,00050030, 0, 67, 67, 61, 74, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2016-17,Agawam - Roberta G. Doering School,00050303, 0, 0, 0, 0, 0, 0, 290, 304, 3, 2, 0, 0, 0, 0, 0, 599 -NA,NA,"",2016-17,Agawam - Robinson Park,00050025, 0, 78, 79, 61, 78, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377 -NA,NA,"",2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 0, 38, 40, 40, 42, 42, 40, 42, 40, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2016-17,Amesbury - Amesbury Elementary,00070005, 26, 56, 72, 85, 77, 72, 0, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2016-17,Amesbury - Amesbury High,00070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 138, 145, 163, 1, 594 -NA,NA,"",2016-17,Amesbury - Amesbury Innovation High School,00070515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 2, 11, 11, 0, 31 -NA,NA,"",2016-17,Amesbury - Amesbury Middle,00070013, 0, 0, 0, 0, 0, 0, 173, 158, 178, 170, 0, 0, 0, 0, 0, 679 -NA,NA,"",2016-17,Amesbury - Charles C Cashman Elementary,00070010, 25, 71, 86, 89, 93, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2016-17,Amherst - Crocker Farm Elementary,00080009, 66, 34, 43, 50, 58, 44, 60, 49, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Amherst - Fort River Elementary,00080020, 0, 42, 41, 42, 42, 65, 59, 44, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2016-17,Amherst - Wildwood Elementary,00080050, 0, 50, 57, 59, 57, 72, 57, 57, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2016-17,Amherst-Pelham - Amherst Regional High,06050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234, 220, 237, 228, 7, 926 -NA,NA,"",2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 0, 0, 0, 0, 0, 0, 0, 0, 214, 218, 0, 0, 0, 0, 0, 432 -NA,NA,"",2016-17,Andover - Andover High,00090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 446, 459, 421, 462, 18," 1,806" -NA,NA,"",2016-17,Andover - Andover West Middle,00090310, 0, 0, 0, 0, 0, 0, 0, 182, 172, 178, 0, 0, 0, 0, 0, 532 -NA,NA,"",2016-17,Andover - Bancroft Elementary,00090003, 0, 77, 93, 96, 97, 112, 118, 0, 0, 0, 0, 0, 0, 0, 0, 593 -NA,NA,"",2016-17,Andover - Doherty Middle,00090305, 0, 0, 0, 0, 0, 0, 0, 204, 168, 189, 0, 0, 0, 0, 0, 561 -NA,NA,"",2016-17,Andover - Henry C Sanborn Elementary,00090010, 0, 48, 62, 68, 63, 68, 72, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2016-17,Andover - High Plain Elementary,00090004, 0, 64, 80, 73, 96, 95, 107, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2016-17,Andover - Shawsheen School,00090005, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 73 -NA,NA,"",2016-17,Andover - South Elementary,00090020, 0, 70, 91, 68, 90, 85, 89, 0, 0, 0, 0, 0, 0, 0, 0, 493 -NA,NA,"",2016-17,Andover - West Elementary,00090025, 0, 96, 99, 107, 103, 112, 119, 0, 0, 0, 0, 0, 0, 0, 0, 636 -NA,NA,"",2016-17,Andover - Wood Hill Middle School,00090350, 0, 0, 0, 0, 0, 0, 0, 120, 143, 156, 0, 0, 0, 0, 0, 419 -NA,NA,"",2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 0, 0, 0, 0, 0, 0, 0, 102, 102, 103, 0, 0, 0, 0, 0, 307 -NA,NA,"",2016-17,Arlington - Arlington High,00100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332, 350, 312, 295, 1," 1,290" -NA,NA,"",2016-17,Arlington - Brackett,00100010, 0, 89, 70, 93, 79, 63, 82, 0, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2016-17,Arlington - Cyrus E Dallin,00100025, 0, 87, 70, 79, 79, 74, 77, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2016-17,Arlington - Hardy,00100030, 0, 95, 79, 76, 64, 61, 76, 0, 0, 0, 0, 0, 0, 0, 0, 451 -NA,NA,"",2016-17,Arlington - John A Bishop,00100005, 0, 69, 73, 69, 70, 68, 76, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2016-17,Arlington - M Norcross Stratton,00100055, 0, 68, 74, 58, 65, 67, 64, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2016-17,Arlington - Menotomy Preschool,00100038, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 70 -NA,NA,"",2016-17,Arlington - Ottoson Middle,00100410, 0, 0, 0, 0, 0, 0, 0, 421, 409, 378, 0, 0, 0, 0, 0," 1,208" -NA,NA,"",2016-17,Arlington - Peirce,00100045, 0, 48, 47, 44, 45, 47, 45, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2016-17,Arlington - Thompson,00100050, 0, 95, 76, 86, 76, 82, 51, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 58, 70, 76, 87, 85, 89, 71, 0, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 0, 71, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160 -NA,NA,"",2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 159, 183, 179, 9, 702 -NA,NA,"",2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 0, 0, 0, 0, 0, 0, 0, 188, 178, 204, 0, 0, 0, 0, 0, 570 -NA,NA,"",2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 0, 0, 0, 78, 91, 90, 113, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2016-17,Ashland - Ashland High,00140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 202, 172, 183, 187, 0, 744 -NA,NA,"",2016-17,Ashland - Ashland Middle,00140405, 0, 0, 0, 0, 0, 0, 0, 179, 206, 202, 0, 0, 0, 0, 0, 587 -NA,NA,"",2016-17,Ashland - David Mindess,00140015, 0, 0, 0, 0, 214, 208, 198, 0, 0, 0, 0, 0, 0, 0, 0, 620 -NA,NA,"",2016-17,Ashland - Henry E Warren Elementary,00140010, 0, 213, 187, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 619 -NA,NA,"",2016-17,Ashland - William Pittaway Elementary,00140005, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300, 273, 266, 264, 0," 1,103" -NA,NA,"",2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 92, 104, 96, 95, 95, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 577 -NA,NA,"",2016-17,Athol-Royalston - Athol High,06150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 76, 98, 73, 10, 358 -NA,NA,"",2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 0, 0, 0, 0, 0, 0, 80, 88, 107, 112, 0, 0, 0, 0, 0, 387 -NA,NA,"",2016-17,Athol-Royalston - Royalston Community School,06150050, 0, 12, 22, 16, 23, 27, 23, 21, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 0, 106, 106, 107, 106, 100, 100, 100, 100, 99, 62, 76, 49, 0, 0," 1,111" -NA,NA,"",2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0, 73, 97, 94, 80, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2016-17,Attleboro - Attleboro Community Academy,00160515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 35, 14, 0, 63 -NA,NA,"",2016-17,Attleboro - Attleboro High,00160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449, 401, 419, 392, 10," 1,671" -NA,NA,"",2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0, 0, 0, 0, 0, 0, 145, 123, 141, 143, 0, 0, 0, 0, 0, 552 -NA,NA,"",2016-17,Attleboro - Early Learning Center,00160008, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 0, 94, 96, 77, 95, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2016-17,Attleboro - Hyman Fine Elementary School,00160040, 0, 92, 92, 81, 97, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 443 -NA,NA,"",2016-17,Attleboro - Peter Thacher Elementary School,00160050, 0, 75, 71, 75, 87, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 0, 0, 0, 0, 0, 0, 164, 141, 195, 163, 0, 0, 0, 0, 0, 663 -NA,NA,"",2016-17,Attleboro - Thomas Willett Elementary School,00160035, 0, 91, 93, 90, 95, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 449 -NA,NA,"",2016-17,Attleboro - Wamsutta Middle School,00160320, 0, 0, 0, 0, 0, 0, 150, 146, 136, 147, 0, 0, 0, 0, 0, 579 -NA,NA,"",2016-17,Auburn - Auburn Middle,00170305, 0, 0, 0, 0, 0, 0, 0, 206, 210, 208, 0, 0, 0, 0, 0, 624 -NA,NA,"",2016-17,Auburn - Auburn Senior High,00170505, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 174, 197, 175, 157, 4, 795 -NA,NA,"",2016-17,Auburn - Bryn Mawr,00170010, 0, 100, 98, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2016-17,Auburn - Pakachoag School,00170025, 0, 95, 93, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2016-17,Auburn - Swanson Road Intermediate School,00170030, 0, 0, 0, 0, 188, 172, 177, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2016-17,Avon - Avon Middle High School,00180510, 0, 0, 0, 0, 0, 0, 0, 0, 59, 61, 53, 49, 48, 45, 4, 319 -NA,NA,"",2016-17,Avon - Ralph D Butler,00180010, 17, 46, 51, 52, 53, 57, 60, 59, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 119, 96, 86, 0, 409 -NA,NA,"",2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0, 0, 0, 0, 0, 0, 0, 153, 113, 129, 0, 0, 0, 0, 0, 395 -NA,NA,"",2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 30, 69, 50, 66, 52, 62, 60, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 33, 81, 86, 80, 89, 89, 70, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2016-17,Barnstable - Barnstable High,00200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 377, 380, 372, 393, 334, 10," 1,866" -NA,NA,"",2016-17,Barnstable - Barnstable Intermediate School,00200315, 0, 0, 0, 0, 0, 0, 0, 357, 397, 0, 0, 0, 0, 0, 0, 754 -NA,NA,"",2016-17,Barnstable - Barnstable United Elementary School,00200050, 0, 0, 0, 0, 0, 446, 406, 0, 0, 0, 0, 0, 0, 0, 0, 852 -NA,NA,"",2016-17,Barnstable - Centerville Elementary,00200010, 0, 56, 69, 79, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 126 -NA,NA,"",2016-17,Barnstable - Hyannis West Elementary,00200025, 0, 86, 89, 90, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2016-17,Barnstable - West Barnstable Elementary,00200005, 0, 61, 65, 67, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2016-17,Barnstable - West Villages Elementary School,00200045, 0, 104, 102, 122, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0, 80, 74, 74, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 0, 0, 0, 0, 0, 0, 0, 82, 82, 80, 79, 69, 0, 0, 0, 392 -NA,NA,"",2016-17,Bedford - Bedford High,00230505, 30, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 206, 220, 206, 0, 888 -NA,NA,"",2016-17,Bedford - John Glenn Middle,00230305, 0, 0, 0, 0, 0, 0, 0, 191, 207, 158, 0, 0, 0, 0, 0, 556 -NA,NA,"",2016-17,Bedford - Lt Elezer Davis,00230010, 0, 192, 200, 206, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 598 -NA,NA,"",2016-17,Bedford - Lt Job Lane School,00230012, 0, 0, 0, 0, 202, 182, 182, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2016-17,Belchertown - Belchertown High,00240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 185, 175, 167, 4, 710 -NA,NA,"",2016-17,Belchertown - Chestnut Hill Community School,00240006, 0, 0, 0, 0, 0, 182, 191, 205, 0, 0, 0, 0, 0, 0, 0, 578 -NA,NA,"",2016-17,Belchertown - Cold Spring,00240005, 29, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2016-17,Belchertown - Jabish Middle School,00240025, 0, 0, 0, 0, 0, 0, 0, 0, 188, 207, 0, 0, 0, 0, 0, 395 -NA,NA,"",2016-17,Belchertown - Swift River Elementary,00240018, 0, 0, 156, 161, 184, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96 -NA,NA,"",2016-17,Bellingham - Bellingham High School,00250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, 149, 142, 122, 141, 0, 739 -NA,NA,"",2016-17,Bellingham - Bellingham Memorial School,00250315, 0, 0, 0, 0, 0, 171, 188, 170, 182, 0, 0, 0, 0, 0, 0, 711 -NA,NA,"",2016-17,Bellingham - Keough Memorial Academy,00250510, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 10, 10, 8, 3, 0, 34 -NA,NA,"",2016-17,Bellingham - South Elementary,00250020, 0, 74, 79, 94, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2016-17,Bellingham - Stall Brook,00250025, 0, 87, 79, 89, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2016-17,Belmont - Belmont High,00260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 312, 332, 290, 0," 1,264" -NA,NA,"",2016-17,Belmont - Daniel Butler,00260015, 0, 72, 68, 82, 74, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2016-17,Belmont - Mary Lee Burbank,00260010, 0, 70, 65, 91, 74, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2016-17,Belmont - Roger E Wellington,00260035, 61, 114, 110, 122, 115, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 641 -NA,NA,"",2016-17,Belmont - Winn Brook,00260005, 0, 94, 86, 96, 101, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2016-17,Belmont - Winthrop L Chenery Middle,00260305, 0, 0, 0, 0, 0, 0, 348, 341, 343, 325, 0, 0, 0, 0, 0," 1,357" -NA,NA,"",2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 23, 48, 46, 47, 48, 61, 41, 33, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0, 50, 50, 50, 51, 50, 52, 48, 50, 46, 0, 0, 0, 0, 0, 447 -NA,NA,"",2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 0, 51, 43, 54, 38, 34, 37, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2016-17,Berkley - Berkley Community School,00270010, 59, 86, 95, 90, 112, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 537 -NA,NA,"",2016-17,Berkley - Berkley Middle School,00270305, 0, 0, 0, 0, 0, 0, 88, 99, 106, 99, 0, 0, 0, 0, 0, 392 -NA,NA,"",2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0, 0, 0, 0, 0, 0, 0, 71, 71, 67, 47, 53, 31, 16, 0, 356 -NA,NA,"",2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 121, 142, 125, 148, 11, 547 -NA,NA,"",2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 0, 0, 0, 0, 0, 0, 71, 93, 119, 104, 0, 0, 0, 0, 0, 387 -NA,NA,"",2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 14, 71, 70, 62, 65, 70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 352 -NA,NA,"",2016-17,Berlin - Berlin Memorial,00280005, 18, 28, 33, 20, 26, 29, 36, 0, 0, 0, 0, 0, 0, 0, 0, 190 -NA,NA,"",2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 0, 0, 0, 0, 0, 0, 0, 88, 93, 87, 73, 77, 79, 87, 0, 584 -NA,NA,"",2016-17,Beverly - Ayers/Ryal Side School,00300055, 0, 79, 107, 94, 88, 78, 79, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2016-17,Beverly - Beverly High,00300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 310, 301, 333, 332, 9," 1,285" -NA,NA,"",2016-17,Beverly - Briscoe Middle,00300305, 0, 0, 0, 0, 0, 0, 0, 332, 349, 328, 0, 0, 0, 0, 0," 1,009" -NA,NA,"",2016-17,Beverly - Centerville Elementary,00300010, 0, 63, 53, 58, 73, 60, 51, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2016-17,Beverly - Cove Elementary,00300015, 0, 93, 79, 83, 74, 79, 56, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2016-17,Beverly - Hannah Elementary,00300033, 0, 43, 49, 79, 59, 87, 64, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2016-17,Beverly - McKeown School,00300002, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112 -NA,NA,"",2016-17,Beverly - North Beverly Elementary,00300040, 0, 41, 60, 62, 93, 62, 73, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2016-17,Billerica - Billerica Memorial High School,00310505, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 274, 310, 280, 8," 1,376" -NA,NA,"",2016-17,Billerica - Eugene C Vining,00310030, 0, 33, 34, 31, 36, 33, 30, 0, 0, 0, 0, 0, 0, 0, 0, 197 -NA,NA,"",2016-17,Billerica - Frederick J Dutile,00310007, 0, 51, 45, 56, 39, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2016-17,Billerica - Hajjar Elementary,00310026, 0, 77, 73, 68, 101, 78, 80, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2016-17,Billerica - John F Kennedy,00310012, 0, 40, 63, 51, 53, 52, 62, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2016-17,Billerica - Locke Middle,00310310, 0, 0, 0, 0, 0, 0, 0, 174, 172, 190, 0, 0, 0, 0, 0, 536 -NA,NA,"",2016-17,Billerica - Marshall Middle School,00310305, 0, 0, 0, 0, 0, 0, 0, 204, 215, 204, 0, 0, 0, 0, 0, 623 -NA,NA,"",2016-17,Billerica - Parker,00310015, 0, 83, 96, 87, 90, 84, 67, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2016-17,Billerica - Thomas Ditson,00310005, 0, 94, 84, 89, 86, 107, 82, 0, 0, 0, 0, 0, 0, 0, 0, 542 -NA,NA,"",2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312, 308, 300, 286, 0," 1,206" -NA,NA,"",2016-17,Blackstone-Millville - A F Maloney,06220015, 0, 0, 0, 0, 108, 93, 91, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 119, 99, 115, 3, 448 -NA,NA,"",2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0, 0, 0, 0, 0, 0, 0, 142, 152, 138, 0, 0, 0, 0, 0, 432 -NA,NA,"",2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 0, 89, 117, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2016-17,Blackstone-Millville - Millville Elementary,06220010, 71, 37, 39, 36, 24, 46, 30, 0, 0, 0, 0, 0, 0, 0, 0, 283 -NA,NA,"",2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 204, 220, 227, 216, 0, 867 -NA,NA,"",2016-17,Boston - Another Course To College,00350541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 55, 62, 57, 0, 223 -NA,NA,"",2016-17,Boston - Baldwin Early Learning Center,00350003, 82, 45, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 159 -NA,NA,"",2016-17,Boston - Beethoven,00350021, 41, 81, 91, 111, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2016-17,Boston - Blackstone,00350390, 80, 81, 76, 83, 100, 99, 66, 0, 0, 0, 0, 0, 0, 0, 0, 585 -NA,NA,"",2016-17,Boston - Boston Adult Academy,00350548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 109, 88, 0, 197 -NA,NA,"",2016-17,Boston - Boston Arts Academy,00350546, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 132, 125, 94, 96, 0, 447 -NA,NA,"",2016-17,Boston - Boston Collaborative High School,00350755, 0, 0, 0, 0, 0, 0, 0, 0, 1, 7, 4, 27, 62, 91, 1, 193 -NA,NA,"",2016-17,Boston - Boston Community Leadership Academy,00350558, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 132, 120, 121, 4, 500 -NA,NA,"",2016-17,Boston - Boston International High School,00350507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 83, 69, 68, 0, 378 -NA,NA,"",2016-17,Boston - Boston Latin,00350560, 0, 0, 0, 0, 0, 0, 0, 0, 386, 387, 424, 407, 420, 379, 0," 2,403" -NA,NA,"",2016-17,Boston - Boston Latin Academy,00350545, 0, 0, 0, 0, 0, 0, 0, 0, 262, 269, 303, 293, 303, 268, 0," 1,698" -NA,NA,"",2016-17,Boston - Boston Teachers Union School,00350012, 21, 21, 20, 24, 32, 34, 28, 46, 35, 35, 0, 0, 0, 0, 0, 296 -NA,NA,"",2016-17,Boston - Brighton High,00350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 189, 213, 192, 14, 811 -NA,NA,"",2016-17,Boston - Carter Developmental Center,00350036, 0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 2, 5, 3, 9, 6, 29 -NA,NA,"",2016-17,Boston - Charles H Taylor,00350054, 21, 78, 74, 97, 95, 72, 70, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2016-17,Boston - Charles Sumner,00350052, 54, 92, 87, 98, 102, 80, 45, 0, 0, 0, 0, 0, 0, 0, 0, 558 -NA,NA,"",2016-17,Boston - Charlestown High,00350515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 188, 225, 195, 43, 910 -NA,NA,"",2016-17,Boston - Clarence R Edwards Middle,00350430, 0, 0, 0, 0, 0, 0, 0, 97, 110, 128, 0, 0, 0, 0, 0, 335 -NA,NA,"",2016-17,Boston - Community Academy,00350518, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 13, 16, 13, 0, 44 -NA,NA,"",2016-17,Boston - Community Academy of Science and Health,00350581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87, 76, 116, 63, 23, 365 -NA,NA,"",2016-17,Boston - Curley K-8 School,00350020, 106, 89, 87, 82, 110, 120, 90, 109, 70, 85, 0, 0, 0, 0, 0, 948 -NA,NA,"",2016-17,Boston - Curtis Guild,00350062, 29, 34, 33, 53, 54, 68, 38, 0, 0, 0, 0, 0, 0, 0, 0, 309 -NA,NA,"",2016-17,Boston - Dante Alighieri Montessori School,00350066, 28, 14, 13, 16, 10, 7, 4, 4, 0, 0, 0, 0, 0, 0, 0, 96 -NA,NA,"",2016-17,Boston - David A Ellis,00350072, 43, 81, 78, 73, 59, 60, 44, 0, 0, 0, 0, 0, 0, 0, 0, 438 -NA,NA,"",2016-17,Boston - Dearborn,00350074, 0, 0, 0, 0, 0, 0, 0, 58, 52, 53, 48, 39, 40, 19, 0, 309 -NA,NA,"",2016-17,Boston - Dennis C Haley,00350077, 25, 38, 40, 44, 47, 71, 48, 46, 42, 51, 0, 0, 0, 0, 0, 452 -NA,NA,"",2016-17,Boston - Donald Mckay,00350080, 19, 59, 68, 85, 73, 88, 69, 103, 76, 92, 0, 0, 0, 0, 0, 732 -NA,NA,"",2016-17,Boston - Dorchester Academy,00350651, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40, 18, 12, 29, 0, 99 -NA,NA,"",2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 44, 38, 39, 35, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189 -NA,NA,"",2016-17,Boston - Dr. William Henderson Lower,00350266, 74, 46, 49, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2016-17,Boston - Dr. William Henderson Upper,00350426, 0, 0, 0, 0, 39, 50, 38, 52, 59, 60, 67, 60, 45, 30, 5, 505 -NA,NA,"",2016-17,Boston - East Boston Early Childhood Center,00350009, 51, 65, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2016-17,Boston - East Boston High,00350530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 365, 393, 368, 354, 16," 1,496" -NA,NA,"",2016-17,Boston - Edison K-8,00350375, 20, 53, 53, 85, 77, 73, 82, 85, 73, 87, 0, 0, 0, 0, 0, 688 -NA,NA,"",2016-17,Boston - Edward Everett,00350088, 17, 39, 38, 40, 50, 50, 44, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2016-17,Boston - ELC - West Zone,00350006, 46, 37, 31, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114 -NA,NA,"",2016-17,Boston - Eliot Elementary,00350096, 38, 77, 77, 85, 65, 71, 44, 48, 26, 27, 0, 0, 0, 0, 0, 558 -NA,NA,"",2016-17,Boston - Ellis Mendell,00350100, 24, 41, 41, 41, 39, 35, 23, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2016-17,Boston - Excel High School,00350522, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 120, 160, 110, 1, 525 -NA,NA,"",2016-17,Boston - Fenway High School,00350540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 107, 96, 76, 81, 0, 360 -NA,NA,"",2016-17,Boston - Franklin D Roosevelt,00350116, 41, 40, 42, 40, 44, 47, 44, 54, 48, 53, 0, 0, 0, 0, 0, 453 -NA,NA,"",2016-17,Boston - Gardner Pilot Academy,00350326, 25, 45, 38, 44, 37, 43, 46, 49, 39, 35, 0, 0, 0, 0, 0, 401 -NA,NA,"",2016-17,Boston - George H Conley,00350122, 19, 23, 45, 27, 53, 25, 30, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2016-17,Boston - Greater Egleston Community High School,00350543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 18, 41, 163, 1, 225 -NA,NA,"",2016-17,Boston - Harvard-Kent,00350200, 38, 54, 58, 77, 108, 94, 66, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2016-17,Boston - Haynes Early Education Center,00350010, 47, 72, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2016-17,Boston - Henry Grew,00350135, 20, 44, 37, 41, 32, 37, 28, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2016-17,Boston - Higginson,00350015, 28, 45, 50, 50, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173 -NA,NA,"",2016-17,Boston - Higginson/Lewis K-8,00350377, 0, 2, 3, 56, 79, 78, 39, 22, 47, 29, 0, 0, 0, 0, 0, 355 -NA,NA,"",2016-17,Boston - Horace Mann School for the Deaf,00350750, 6, 8, 5, 9, 0, 9, 2, 6, 7, 3, 10, 10, 6, 7, 2, 90 -NA,NA,"",2016-17,Boston - Hugh Roe O'Donnell,00350141, 19, 40, 40, 42, 44, 39, 48, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2016-17,Boston - Jackson Mann,00350013, 48, 91, 87, 80, 84, 94, 79, 69, 57, 76, 0, 0, 0, 0, 0, 765 -NA,NA,"",2016-17,Boston - James Condon Elementary,00350146, 39, 76, 84, 100, 109, 131, 127, 115, 65, 0, 0, 0, 0, 0, 0, 846 -NA,NA,"",2016-17,Boston - James J Chittick,00350154, 42, 50, 45, 42, 42, 52, 23, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2016-17,Boston - James Otis,00350156, 49, 59, 58, 61, 63, 62, 46, 0, 0, 0, 0, 0, 0, 0, 0, 398 -NA,NA,"",2016-17,Boston - James P Timilty Middle,00350485, 0, 0, 0, 0, 0, 0, 0, 99, 117, 155, 0, 0, 0, 0, 0, 371 -NA,NA,"",2016-17,Boston - James W Hennigan,00350153, 0, 45, 51, 61, 93, 97, 91, 97, 50, 53, 0, 0, 0, 0, 0, 638 -NA,NA,"",2016-17,Boston - Jeremiah E Burke High,00350525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 109, 136, 143, 1, 489 -NA,NA,"",2016-17,Boston - John D Philbrick,00350172, 13, 25, 22, 43, 25, 25, 19, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2016-17,Boston - John F Kennedy,00350166, 26, 56, 58, 65, 57, 67, 53, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2016-17,Boston - John W McCormack,00350179, 0, 0, 0, 0, 0, 0, 0, 136, 143, 165, 0, 0, 0, 0, 0, 444 -NA,NA,"",2016-17,Boston - John Winthrop,00350180, 33, 59, 49, 49, 47, 56, 36, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2016-17,Boston - Joseph J Hurley,00350182, 29, 44, 48, 48, 42, 42, 31, 33, 19, 17, 0, 0, 0, 0, 0, 353 -NA,NA,"",2016-17,Boston - Joseph Lee,00350183, 50, 58, 55, 54, 66, 73, 66, 85, 60, 72, 0, 0, 0, 0, 0, 639 -NA,NA,"",2016-17,Boston - Joseph P Manning,00350184, 14, 21, 23, 27, 23, 26, 24, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2016-17,Boston - Joseph P Tynan,00350181, 36, 35, 31, 45, 50, 45, 26, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2016-17,Boston - Josiah Quincy,00350286, 84, 116, 118, 128, 135, 137, 136, 0, 0, 0, 0, 0, 0, 0, 0, 854 -NA,NA,"",2016-17,Boston - Joyce Kilmer,00350190, 41, 43, 47, 44, 69, 49, 39, 57, 22, 24, 0, 0, 0, 0, 0, 435 -NA,NA,"",2016-17,Boston - King K-8,00350376, 56, 59, 51, 73, 68, 50, 43, 42, 19, 29, 0, 0, 0, 0, 0, 490 -NA,NA,"",2016-17,Boston - Lee Academy,00350001, 43, 36, 55, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 187 -NA,NA,"",2016-17,Boston - Lilla G. Frederick Middle School,00350383, 0, 0, 0, 0, 0, 0, 0, 139, 176, 204, 0, 0, 0, 0, 0, 519 -NA,NA,"",2016-17,Boston - Lyndon,00350262, 70, 69, 66, 51, 82, 57, 56, 64, 30, 37, 0, 0, 0, 0, 0, 582 -NA,NA,"",2016-17,Boston - Lyon K-8,00350004, 0, 12, 14, 14, 16, 16, 16, 17, 17, 17, 0, 0, 0, 0, 0, 139 -NA,NA,"",2016-17,Boston - Lyon Upper 9-12,00350655, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 30, 33, 35, 27, 1, 126 -NA,NA,"",2016-17,Boston - Madison Park High,00350537, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222, 234, 150, 212, 23, 841 -NA,NA,"",2016-17,Boston - Manassah E Bradley,00350215, 36, 40, 36, 39, 49, 49, 37, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2016-17,Boston - Margarita Muniz Academy,00350549, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 74, 79, 60, 0, 284 -NA,NA,"",2016-17,Boston - Mario Umana Academy,00350656, 21, 68, 67, 69, 79, 86, 72, 166, 156, 138, 0, 0, 0, 0, 0, 922 -NA,NA,"",2016-17,Boston - Mather,00350227, 55, 92, 85, 94, 99, 101, 91, 0, 0, 0, 0, 0, 0, 0, 0, 617 -NA,NA,"",2016-17,Boston - Mattahunt,00350226, 96, 108, 91, 105, 93, 85, 56, 0, 0, 0, 0, 0, 0, 0, 0, 634 -NA,NA,"",2016-17,Boston - Maurice J Tobin,00350229, 20, 47, 59, 78, 59, 55, 46, 26, 28, 47, 0, 0, 0, 0, 0, 465 -NA,NA,"",2016-17,Boston - Michael J Perkins,00350231, 0, 36, 33, 37, 43, 49, 40, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2016-17,Boston - Mildred Avenue K-8,00350378, 44, 51, 42, 46, 0, 22, 27, 97, 86, 90, 0, 0, 0, 0, 0, 505 -NA,NA,"",2016-17,Boston - Mission Hill School,00350382, 34, 23, 23, 20, 19, 29, 19, 17, 21, 12, 0, 0, 0, 0, 0, 217 -NA,NA,"",2016-17,Boston - Mozart,00350237, 26, 27, 26, 22, 27, 25, 22, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2016-17,Boston - Nathan Hale,00350243, 20, 23, 18, 22, 24, 27, 40, 0, 0, 0, 0, 0, 0, 0, 0, 174 -NA,NA,"",2016-17,Boston - New Mission High School,00350542, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79, 76, 81, 84, 0, 320 -NA,NA,"",2016-17,Boston - O W Holmes,00350138, 24, 59, 59, 59, 64, 57, 46, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2016-17,Boston - O'Bryant School Math/Science,00350575, 0, 0, 0, 0, 0, 0, 0, 0, 162, 146, 276, 302, 286, 265, 0," 1,437" -NA,NA,"",2016-17,Boston - Oliver Hazard Perry,00350255, 16, 22, 29, 30, 20, 26, 23, 22, 14, 20, 0, 0, 0, 0, 0, 222 -NA,NA,"",2016-17,Boston - Orchard Gardens,00350257, 46, 92, 90, 92, 99, 107, 93, 104, 92, 71, 0, 0, 0, 0, 0, 886 -NA,NA,"",2016-17,Boston - Patrick J Kennedy,00350264, 23, 38, 44, 53, 66, 50, 23, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2016-17,Boston - Paul A Dever,00350268, 35, 69, 57, 59, 70, 67, 58, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 51, 45, 42, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2016-17,Boston - Phineas Bates,00350278, 22, 39, 35, 40, 49, 47, 48, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2016-17,Boston - Quincy Upper School,00350565, 0, 0, 0, 0, 0, 0, 0, 134, 71, 75, 63, 56, 44, 55, 8, 506 -NA,NA,"",2016-17,Boston - Rafael Hernandez,00350691, 50, 51, 50, 49, 50, 47, 28, 31, 26, 25, 0, 0, 0, 0, 0, 407 -NA,NA,"",2016-17,Boston - Richard J Murphy,00350240, 41, 64, 64, 87, 110, 135, 119, 150, 89, 87, 0, 0, 0, 0, 0, 946 -NA,NA,"",2016-17,Boston - Roger Clap,00350298, 12, 20, 32, 37, 25, 23, 21, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2016-17,Boston - Samuel Adams,00350302, 46, 36, 53, 53, 36, 42, 28, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2016-17,Boston - Samuel W Mason,00350304, 26, 36, 34, 38, 37, 37, 23, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2016-17,Boston - Sarah Greenwood,00350308, 32, 45, 39, 54, 46, 47, 45, 35, 22, 34, 0, 0, 0, 0, 0, 399 -NA,NA,"",2016-17,Boston - Snowden International School at Copley,00350690, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148, 125, 92, 74, 0, 439 -NA,NA,"",2016-17,Boston - TechBoston Academy,00350657, 0, 0, 0, 0, 0, 0, 0, 133, 116, 137, 159, 162, 134, 130, 1, 972 -NA,NA,"",2016-17,Boston - The English High,00350535, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 165, 107, 136, 129, 16, 553 -NA,NA,"",2016-17,Boston - Thomas J Kenny,00350328, 29, 45, 42, 46, 76, 47, 47, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2016-17,Boston - UP Academy Holland,00350167, 61, 105, 109, 120, 129, 129, 106, 0, 0, 0, 0, 0, 0, 0, 0, 759 -NA,NA,"",2016-17,Boston - Urban Science Academy,00350579, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113, 99, 87, 131, 2, 432 -NA,NA,"",2016-17,Boston - Warren-Prescott,00350346, 55, 68, 61, 68, 71, 69, 71, 61, 26, 32, 0, 0, 0, 0, 0, 582 -NA,NA,"",2016-17,Boston - Washington Irving Middle,00350445, 0, 0, 0, 0, 0, 0, 0, 147, 103, 94, 0, 0, 0, 0, 0, 344 -NA,NA,"",2016-17,Boston - West Roxbury Academy,00350658, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 130, 140, 116, 9, 496 -NA,NA,"",2016-17,Boston - William E Russell,00350366, 55, 67, 58, 64, 73, 37, 31, 0, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2016-17,Boston - William Ellery Channing,00350360, 26, 46, 41, 37, 31, 37, 26, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2016-17,Boston - William H Ohrenberger,00350258, 0, 0, 0, 0, 91, 112, 108, 123, 82, 86, 0, 0, 0, 0, 0, 602 -NA,NA,"",2016-17,Boston - William McKinley,00350363, 0, 0, 4, 6, 13, 16, 16, 16, 30, 33, 62, 41, 42, 41, 17, 337 -NA,NA,"",2016-17,Boston - William Monroe Trotter,00350370, 58, 68, 56, 69, 74, 73, 47, 37, 28, 26, 0, 0, 0, 0, 0, 536 -NA,NA,"",2016-17,Boston - Winship Elementary,00350374, 43, 29, 33, 41, 32, 38, 27, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2016-17,Boston - Young Achievers,00350380, 52, 60, 64, 63, 99, 59, 47, 45, 50, 43, 0, 0, 0, 0, 0, 582 -NA,NA,"",2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 0, 0, 0, 0, 0, 0, 96, 100, 98, 84, 76, 78, 78, 70, 0, 680 -NA,NA,"",2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122, 32, 3, 247, 0, 404 -NA,NA,"",2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 0, 0, 0, 0, 0, 0, 0, 68, 59, 58, 79, 65, 69, 78, 0, 476 -NA,NA,"",2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 0, 0, 0, 0, 0, 0, 0, 50, 61, 67, 69, 67, 53, 48, 0, 415 -NA,NA,"",2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 140, 142, 144, 119, 121, 115, 104, 70, 0, 0, 0, 0, 0, 0, 0, 955 -NA,NA,"",2016-17,Bourne - Bourne High School,00360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 105, 108, 94, 4, 436 -NA,NA,"",2016-17,Bourne - Bourne Middle School,00360325, 0, 0, 0, 0, 0, 0, 163, 174, 183, 191, 0, 0, 0, 0, 0, 711 -NA,NA,"",2016-17,Bourne - Bournedale Elementary School,00360005, 66, 67, 64, 91, 71, 74, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2016-17,Bourne - Peebles Elementary School,00360010, 0, 34, 82, 70, 84, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2016-17,Boxford - Harry Lee Cole,00380005, 41, 89, 109, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2016-17,Boxford - Spofford Pond,00380013, 0, 0, 0, 0, 92, 99, 106, 131, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2016-17,Boylston - Boylston Elementary,00390005, 29, 31, 43, 36, 45, 55, 54, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2016-17,Braintree - Archie T Morrison,00400033, 0, 24, 85, 64, 97, 81, 70, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2016-17,Braintree - Braintree High,00400505, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 425, 380, 429, 390, 9," 1,755" -NA,NA,"",2016-17,Braintree - Donald Ross,00400050, 0, 20, 40, 62, 53, 56, 51, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2016-17,Braintree - East Middle School,00400305, 0, 0, 0, 0, 0, 0, 0, 237, 245, 251, 0, 0, 0, 0, 0, 733 -NA,NA,"",2016-17,Braintree - Highlands,00400015, 0, 22, 89, 77, 80, 80, 77, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2016-17,Braintree - Hollis,00400005, 0, 30, 86, 76, 74, 86, 83, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2016-17,Braintree - Liberty,00400025, 0, 0, 85, 90, 88, 110, 75, 0, 0, 0, 0, 0, 0, 0, 0, 448 -NA,NA,"",2016-17,Braintree - Mary E Flaherty School,00400020, 0, 25, 63, 57, 80, 75, 71, 0, 0, 0, 0, 0, 0, 0, 0, 371 -NA,NA,"",2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 0, 262, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2016-17,Braintree - South Middle School,00400310, 0, 0, 0, 0, 0, 0, 0, 230, 222, 225, 0, 0, 0, 0, 0, 677 -NA,NA,"",2016-17,Brewster - Eddy Elementary,00410010, 0, 0, 0, 0, 83, 73, 77, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2016-17,Brewster - Stony Brook Elementary,00410005, 32, 75, 73, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 39, 36, 38, 40, 40, 39, 35, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0, 0, 0, 0, 0, 0, 0, 0, 252, 254, 0, 0, 0, 0, 0, 506 -NA,NA,"",2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 354, 401, 356, 392, 9," 1,512" -NA,NA,"",2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0, 0, 0, 159, 168, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 0, 166, 158, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 324 -NA,NA,"",2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 127, 219, 205, 213, 246, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,010" -NA,NA,"",2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 0, 0, 0, 0, 0, 0, 135, 180, 187, 189, 0, 0, 0, 0, 0, 691 -NA,NA,"",2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 4, 0, 2, 0, 11 -NA,NA,"",2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 0, 0, 0, 0, 0, 287, 243, 262, 0, 0, 0, 0, 0, 0, 0, 792 -NA,NA,"",2016-17,Brimfield - Brimfield Elementary,00430005, 30, 35, 29, 44, 37, 32, 44, 34, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 119, 116, 109, 0, 468 -NA,NA,"",2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345, 328, 311, 319, 0," 1,303" -NA,NA,"",2016-17,Brockton - Ashfield Middle School,00440421, 0, 0, 0, 0, 0, 0, 0, 164, 168, 155, 0, 0, 0, 0, 0, 487 -NA,NA,"",2016-17,Brockton - Barrett Russell School,00440007, 0, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2016-17,Brockton - Brockton Champion High School,00440515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47, 53, 31, 27, 19, 177 -NA,NA,"",2016-17,Brockton - Brockton High,00440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0," 1,223"," 1,048", 978, 993, 22," 4,264" -NA,NA,"",2016-17,Brockton - Brookfield,00440010, 0, 88, 106, 101, 126, 106, 105, 0, 0, 0, 0, 0, 0, 0, 0, 632 -NA,NA,"",2016-17,Brockton - Downey,00440110, 0, 95, 120, 103, 116, 109, 112, 0, 0, 0, 0, 0, 0, 0, 0, 655 -NA,NA,"",2016-17,Brockton - Dr W Arnone Community School,00440001, 0, 111, 140, 152, 129, 145, 131, 0, 0, 0, 0, 0, 0, 0, 0, 808 -NA,NA,"",2016-17,Brockton - East Middle School,00440405, 0, 0, 0, 0, 0, 0, 0, 163, 175, 202, 0, 0, 0, 0, 0, 540 -NA,NA,"",2016-17,Brockton - Edgar B Davis,00440023, 0, 117, 141, 111, 120, 121, 125, 108, 100, 99, 0, 0, 0, 0, 0," 1,042" -NA,NA,"",2016-17,Brockton - Edison Academy,00440520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 10, 78, 64, 0, 153 -NA,NA,"",2016-17,Brockton - Frederick Douglass Academy,00440080, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 17, 8, 2, 3, 0, 35 -NA,NA,"",2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 263, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2016-17,Brockton - Goddard Alternative School,00440400, 0, 0, 0, 0, 0, 0, 2, 3, 5, 8, 6, 11, 7, 6, 0, 48 -NA,NA,"",2016-17,Brockton - Hancock,00440045, 0, 97, 114, 120, 115, 112, 109, 0, 0, 0, 0, 0, 0, 0, 0, 667 -NA,NA,"",2016-17,Brockton - Huntington,00440055, 0, 75, 93, 91, 95, 102, 96, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2016-17,Brockton - John F Kennedy,00440017, 0, 92, 100, 108, 92, 117, 96, 0, 0, 0, 0, 0, 0, 0, 0, 605 -NA,NA,"",2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 0, 0, 0, 0, 0, 0, 0, 248, 234, 211, 0, 0, 0, 0, 0, 693 -NA,NA,"",2016-17,Brockton - Louis F Angelo Elementary,00440065, 0, 94, 140, 138, 126, 197, 188, 0, 0, 0, 0, 0, 0, 0, 0, 883 -NA,NA,"",2016-17,Brockton - Manthala George Jr. School,00440003, 0, 113, 153, 144, 161, 156, 164, 0, 0, 0, 0, 0, 0, 0, 0, 891 -NA,NA,"",2016-17,Brockton - Mary E. Baker School,00440002, 0, 115, 135, 138, 136, 112, 121, 0, 0, 0, 0, 0, 0, 0, 0, 757 -NA,NA,"",2016-17,Brockton - North Middle School,00440410, 0, 0, 0, 0, 0, 0, 0, 202, 189, 173, 0, 0, 0, 0, 0, 564 -NA,NA,"",2016-17,Brockton - Oscar F Raymond,00440078, 0, 138, 152, 149, 138, 156, 135, 0, 0, 0, 0, 0, 0, 0, 0, 868 -NA,NA,"",2016-17,Brockton - South Middle School,00440415, 0, 0, 0, 0, 0, 0, 0, 171, 166, 176, 0, 0, 0, 0, 0, 513 -NA,NA,"",2016-17,Brockton - West Middle School,00440420, 0, 0, 0, 0, 0, 0, 0, 230, 191, 208, 0, 0, 0, 0, 0, 629 -NA,NA,"",2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0, 178, 182, 183, 191, 191, 184, 187, 139, 105, 68, 0, 0, 0, 0," 1,608" -NA,NA,"",2016-17,Brookfield - Brookfield Elementary,00450005, 31, 41, 40, 39, 38, 39, 42, 48, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 60 -NA,NA,"",2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 -NA,NA,"",2016-17,Brookline - Brookline High,00460505, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 500, 509, 492, 479, 16," 2,009" -NA,NA,"",2016-17,Brookline - Edith C Baker,00460005, 0, 83, 76, 103, 72, 106, 80, 74, 91, 79, 0, 0, 0, 0, 0, 764 -NA,NA,"",2016-17,Brookline - Edward Devotion,00460015, 0, 91, 101, 93, 97, 100, 92, 77, 72, 75, 0, 0, 0, 0, 0, 798 -NA,NA,"",2016-17,Brookline - Heath,00460025, 29, 47, 66, 71, 67, 71, 53, 65, 52, 57, 0, 0, 0, 0, 0, 578 -NA,NA,"",2016-17,Brookline - John D Runkle,00460045, 14, 58, 66, 70, 74, 69, 66, 66, 70, 60, 0, 0, 0, 0, 0, 613 -NA,NA,"",2016-17,Brookline - Lawrence,00460030, 0, 80, 89, 88, 85, 88, 79, 62, 79, 61, 0, 0, 0, 0, 0, 711 -NA,NA,"",2016-17,Brookline - Michael Driscoll,00460020, 14, 61, 58, 76, 63, 70, 68, 66, 66, 58, 0, 0, 0, 0, 0, 600 -NA,NA,"",2016-17,Brookline - Pierce,00460040, 0, 96, 113, 106, 111, 91, 83, 88, 86, 80, 0, 0, 0, 0, 0, 854 -NA,NA,"",2016-17,Brookline - The Lynch Center,00460060, 68, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 68 -NA,NA,"",2016-17,Brookline - William H Lincoln,00460035, 0, 66, 58, 71, 64, 82, 63, 51, 60, 61, 0, 0, 0, 0, 0, 576 -NA,NA,"",2016-17,Burlington - Burlington High,00480505, 118, 8, 0, 0, 0, 0, 0, 0, 0, 0, 241, 249, 232, 255, 0," 1,103" -NA,NA,"",2016-17,Burlington - Fox Hill,00480007, 0, 80, 68, 68, 49, 66, 57, 0, 0, 0, 0, 0, 0, 0, 0, 388 -NA,NA,"",2016-17,Burlington - Francis Wyman Elementary,00480035, 0, 110, 78, 96, 81, 77, 87, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2016-17,Burlington - Marshall Simonds Middle,00480303, 0, 0, 0, 0, 0, 0, 0, 271, 273, 277, 0, 0, 0, 0, 0, 821 -NA,NA,"",2016-17,Burlington - Memorial,00480015, 0, 65, 70, 61, 62, 68, 60, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2016-17,Burlington - Pine Glen Elementary,00480020, 0, 47, 66, 39, 44, 58, 40, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2016-17,Cambridge - Amigos School,00490006, 34, 46, 47, 44, 45, 42, 34, 35, 25, 27, 0, 0, 0, 0, 0, 379 -NA,NA,"",2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 491, 511, 490, 462, 2," 1,956" -NA,NA,"",2016-17,Cambridge - Cambridge Street Upper School,00490305, 0, 0, 0, 0, 0, 0, 0, 87, 91, 83, 0, 0, 0, 0, 0, 261 -NA,NA,"",2016-17,Cambridge - Cambridgeport,00490007, 53, 52, 44, 44, 42, 41, 35, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 50, 41, 40, 34, 37, 38, 20, 0, 0, 0, 0, 0, 0, 0, 0, 260 -NA,NA,"",2016-17,Cambridge - Graham and Parks,00490080, 35, 55, 54, 63, 60, 75, 50, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2016-17,Cambridge - Haggerty,00490020, 25, 51, 41, 39, 37, 32, 28, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2016-17,Cambridge - John M Tobin,00490065, 93, 39, 39, 40, 29, 30, 21, 0, 0, 0, 0, 0, 0, 0, 0, 291 -NA,NA,"",2016-17,Cambridge - Kennedy-Longfellow,00490040, 45, 42, 45, 51, 28, 32, 23, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2016-17,Cambridge - King Open,00490035, 30, 56, 51, 50, 48, 46, 44, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2016-17,Cambridge - Maria L. Baldwin,00490005, 62, 64, 50, 56, 43, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2016-17,Cambridge - Martin Luther King Jr.,00490030, 47, 51, 51, 50, 44, 43, 31, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2016-17,Cambridge - Morse,00490045, 48, 51, 43, 42, 38, 43, 41, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2016-17,Cambridge - Peabody,00490050, 48, 49, 45, 44, 44, 41, 45, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2016-17,Cambridge - Putnam Avenue Upper School,00490310, 0, 0, 0, 0, 0, 0, 0, 89, 95, 78, 0, 0, 0, 0, 0, 262 -NA,NA,"",2016-17,Cambridge - Rindge Avenue Upper School,00490315, 0, 0, 0, 0, 0, 0, 0, 96, 94, 85, 0, 0, 0, 0, 0, 275 -NA,NA,"",2016-17,Cambridge - Vassal Lane Upper School,00490320, 0, 0, 0, 0, 0, 0, 0, 93, 93, 82, 0, 0, 0, 0, 0, 268 -NA,NA,"",2016-17,Canton - Canton High,00500505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235, 241, 260, 215, 0, 951 -NA,NA,"",2016-17,Canton - Dean S Luce,00500020, 0, 83, 78, 73, 88, 100, 70, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2016-17,Canton - John F Kennedy,00500017, 0, 63, 85, 79, 106, 87, 84, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2016-17,Canton - Lt Peter M Hansen,00500012, 0, 96, 76, 76, 89, 79, 86, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2016-17,Canton - Rodman Early Childhood Center,00500010, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90 -NA,NA,"",2016-17,Canton - Wm H Galvin Middle,00500305, 0, 0, 0, 0, 0, 0, 0, 258, 262, 266, 0, 0, 0, 0, 0, 786 -NA,NA,"",2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0, 0, 0, 0, 0, 0, 0, 80, 83, 80, 0, 0, 0, 0, 0, 243 -NA,NA,"",2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 160, 151, 161, 149, 2, 623 -NA,NA,"",2016-17,Carlisle - Carlisle School,00510025, 14, 51, 58, 54, 73, 59, 70, 70, 73, 68, 0, 0, 0, 0, 0, 590 -NA,NA,"",2016-17,Carver - Carver Elementary School,00520015, 45, 130, 123, 119, 124, 123, 126, 0, 0, 0, 0, 0, 0, 0, 0, 790 -NA,NA,"",2016-17,Carver - Carver Middle/High School,00520405, 0, 0, 0, 0, 0, 0, 0, 141, 116, 155, 114, 100, 102, 100, 8, 836 -NA,NA,"",2016-17,Central Berkshire - Becket Washington School,06350005, 23, 15, 15, 19, 20, 15, 18, 0, 0, 0, 0, 0, 0, 0, 0, 125 -NA,NA,"",2016-17,Central Berkshire - Craneville,06350025, 22, 64, 56, 57, 64, 75, 84, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2016-17,Central Berkshire - Kittredge,06350035, 15, 29, 17, 15, 13, 24, 21, 0, 0, 0, 0, 0, 0, 0, 0, 134 -NA,NA,"",2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 0, 0, 0, 0, 0, 0, 0, 111, 134, 151, 0, 0, 0, 0, 0, 396 -NA,NA,"",2016-17,Central Berkshire - Wahconah Regional High,06350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 125, 158, 121, 139, 0, 543 -NA,NA,"",2016-17,Chelmsford - Byam School,00560030, 0, 75, 99, 96, 113, 112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2016-17,Chelmsford - Center Elementary School,00560005, 0, 95, 80, 82, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2016-17,Chelmsford - Charles D Harrington,00560025, 0, 92, 92, 107, 96, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2016-17,Chelmsford - Chelmsford High,00560505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 347, 391, 373, 1," 1,484" -NA,NA,"",2016-17,Chelmsford - Col Moses Parker School,00560305, 0, 0, 0, 0, 0, 0, 170, 184, 181, 190, 0, 0, 0, 0, 0, 725 -NA,NA,"",2016-17,Chelmsford - Community Education Center,00560001, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2016-17,Chelmsford - McCarthy Middle School,00560310, 0, 0, 0, 0, 0, 0, 218, 200, 208, 224, 0, 0, 0, 0, 0, 850 -NA,NA,"",2016-17,Chelmsford - South Row,00560015, 0, 70, 75, 73, 85, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2016-17,Chelsea - Chelsea High,00570505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 439, 430, 384, 292, 0," 1,545" -NA,NA,"",2016-17,Chelsea - Clark Avenue School,00570050, 0, 0, 0, 0, 0, 0, 153, 147, 123, 122, 0, 0, 0, 0, 0, 545 -NA,NA,"",2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 0, 0, 145, 200, 143, 103, 0, 0, 0, 0, 0, 0, 0, 0, 0, 591 -NA,NA,"",2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0, 0, 0, 0, 0, 0, 159, 119, 131, 110, 0, 0, 0, 0, 0, 519 -NA,NA,"",2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 0, 0, 114, 127, 176, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2016-17,Chelsea - George F. Kelly Elementary,00570035, 0, 0, 132, 157, 150, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 571 -NA,NA,"",2016-17,Chelsea - Joseph A. Browne School,00570055, 0, 0, 0, 0, 0, 0, 154, 142, 133, 147, 0, 0, 0, 0, 0, 576 -NA,NA,"",2016-17,Chelsea - Shurtleff Early Childhood,00570003, 269, 557, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 863 -NA,NA,"",2016-17,Chelsea - William A Berkowitz Elementary,00570025, 0, 0, 117, 138, 150, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 541 -NA,NA,"",2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 15, 22, 14, 19, 12, 19, 19, 20, 0, 0, 0, 0, 0, 0, 0, 140 -NA,NA,"",2016-17,Chicopee - Barry,00610003, 0, 70, 65, 66, 79, 73, 72, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2016-17,Chicopee - Belcher,00610010, 0, 98, 81, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2016-17,Chicopee - Bellamy Middle,00610305, 0, 0, 0, 0, 0, 0, 0, 244, 279, 265, 0, 0, 0, 0, 0, 788 -NA,NA,"",2016-17,Chicopee - Bowe,00610015, 17, 68, 79, 74, 76, 77, 61, 0, 0, 0, 0, 0, 0, 0, 0, 452 -NA,NA,"",2016-17,Chicopee - Bowie,00610020, 0, 47, 74, 56, 61, 68, 60, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2016-17,Chicopee - Chicopee Academy,00610021, 0, 0, 0, 0, 0, 0, 0, 1, 10, 13, 30, 20, 19, 12, 1, 106 -NA,NA,"",2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343, 380, 331, 355, 21," 1,430" -NA,NA,"",2016-17,Chicopee - Chicopee High,00610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 236, 204, 255, 246, 6, 947 -NA,NA,"",2016-17,Chicopee - Dupont Middle,00610310, 0, 0, 0, 0, 0, 0, 0, 264, 236, 269, 0, 0, 0, 0, 0, 769 -NA,NA,"",2016-17,Chicopee - Fairview Elementary,00610050, 0, 74, 65, 78, 85, 73, 73, 0, 0, 0, 0, 0, 0, 0, 0, 448 -NA,NA,"",2016-17,Chicopee - Gen John J Stefanik,00610090, 0, 68, 72, 59, 70, 64, 58, 0, 0, 0, 0, 0, 0, 0, 0, 391 -NA,NA,"",2016-17,Chicopee - Lambert-Lavoie,00610040, 0, 41, 57, 53, 47, 55, 52, 0, 0, 0, 0, 0, 0, 0, 0, 305 -NA,NA,"",2016-17,Chicopee - Litwin,00610022, 0, 25, 22, 30, 116, 119, 110, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2016-17,Chicopee - Streiber Memorial School,00610065, 0, 50, 46, 45, 48, 51, 44, 0, 0, 0, 0, 0, 0, 0, 0, 284 -NA,NA,"",2016-17,Chicopee - Szetela Early Childhood Center,00610001, 281, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0, 0, 0, 0, 0, 0, 0, 143, 125, 127, 0, 0, 0, 0, 0, 395 -NA,NA,"",2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 67, 51, 50, 0, 279 -NA,NA,"",2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 114, 71, 56, 40, 0, 281 -NA,NA,"",2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 102, 55, 20, 0, 0, 177 -NA,NA,"",2016-17,Clarksburg - Clarksburg Elementary,00630010, 0, 16, 18, 19, 32, 19, 18, 16, 19, 16, 0, 0, 0, 0, 0, 173 -NA,NA,"",2016-17,Clinton - Clinton Elementary,00640050, 95, 139, 139, 147, 186, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 706 -NA,NA,"",2016-17,Clinton - Clinton Middle School,00640305, 0, 0, 0, 0, 0, 166, 145, 123, 127, 139, 0, 0, 0, 0, 0, 700 -NA,NA,"",2016-17,Clinton - Clinton Senior High,00640505, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 110, 110, 102, 3, 466 -NA,NA,"",2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 20, 18, 22, 21, 21, 20, 19, 20, 20, 23, 46, 47, 30, 32, 0, 359 -NA,NA,"",2016-17,Cohasset - Cohasset Middle/High School,00650505, 0, 0, 0, 0, 0, 0, 0, 143, 128, 134, 127, 116, 97, 93, 0, 838 -NA,NA,"",2016-17,Cohasset - Deer Hill,00650005, 0, 0, 0, 0, 136, 126, 120, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2016-17,Cohasset - Joseph Osgood,00650010, 24, 105, 110, 127, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 0, 100, 110, 94, 122, 90, 65, 65, 0, 0, 0, 0, 0, 0, 0, 646 -NA,NA,"",2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 0, 0, 0, 0, 0, 0, 0, 33, 50, 57, 64, 60, 57, 53, 0, 374 -NA,NA,"",2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 40, 42, 40, 42, 38, 40, 38, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 43, 43, 50, 47, 48, 44, 37, 20, 22, 46, 0, 0, 0, 0, 0, 400 -NA,NA,"",2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 41, 42, 42, 42, 42, 39, 32, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2016-17,Concord - Alcott,00670005, 6, 67, 90, 75, 81, 83, 71, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2016-17,Concord - Concord Middle,00670305, 0, 0, 0, 0, 0, 0, 0, 239, 249, 227, 0, 0, 0, 0, 0, 715 -NA,NA,"",2016-17,Concord - Thoreau,00670020, 9, 71, 75, 70, 81, 75, 86, 0, 0, 0, 0, 0, 0, 0, 0, 467 -NA,NA,"",2016-17,Concord - Willard,00670030, 5, 71, 72, 71, 83, 76, 75, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 301, 334, 325, 315, 1," 1,276" -NA,NA,"",2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 46, 46, 50, 50, 51, 50, 50, 44, 41, 22, 0, 0, 0, 0, 0, 450 -NA,NA,"",2016-17,Conway - Conway Grammar,00680005, 9, 17, 15, 15, 16, 19, 24, 26, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2016-17,Danvers - Danvers High,00710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230, 251, 231, 260, 2, 974 -NA,NA,"",2016-17,Danvers - Great Oak,00710015, 0, 16, 66, 57, 54, 57, 52, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2016-17,Danvers - Highlands,00710010, 0, 50, 65, 67, 61, 71, 60, 0, 0, 0, 0, 0, 0, 0, 0, 374 -NA,NA,"",2016-17,Danvers - Holten Richmond Middle School,00710305, 0, 0, 0, 0, 0, 0, 0, 288, 266, 284, 0, 0, 0, 0, 0, 838 -NA,NA,"",2016-17,Danvers - Ivan G Smith,00710032, 0, 37, 42, 44, 51, 49, 63, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2016-17,Danvers - Riverside,00710030, 46, 12, 37, 53, 47, 45, 38, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2016-17,Danvers - Willis E Thorpe,00710045, 0, 52, 48, 62, 57, 45, 63, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2016-17,Dartmouth - Andrew B. Cushman School,00720005, 66, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 161 -NA,NA,"",2016-17,Dartmouth - Dartmouth High,00720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 269, 270, 270, 255, 0," 1,064" -NA,NA,"",2016-17,Dartmouth - Dartmouth Middle,00720050, 0, 0, 0, 0, 0, 0, 0, 300, 334, 331, 0, 0, 0, 0, 0, 965 -NA,NA,"",2016-17,Dartmouth - George H Potter,00720030, 0, 66, 76, 74, 61, 75, 77, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2016-17,Dartmouth - James M. Quinn School,00720040, 0, 75, 97, 100, 99, 122, 124, 0, 0, 0, 0, 0, 0, 0, 0, 617 -NA,NA,"",2016-17,Dartmouth - Joseph Demello,00720015, 0, 0, 68, 82, 80, 92, 97, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2016-17,Dedham - Avery,00730010, 0, 0, 54, 55, 72, 72, 55, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2016-17,Dedham - Dedham High,00730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 180, 160, 191, 0, 739 -NA,NA,"",2016-17,Dedham - Dedham Middle School,00730305, 0, 0, 0, 0, 0, 0, 0, 203, 213, 215, 0, 0, 0, 0, 0, 631 -NA,NA,"",2016-17,Dedham - Early Childhood Center,00730005, 95, 187, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2016-17,Dedham - Greenlodge,00730025, 0, 0, 38, 52, 66, 64, 58, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2016-17,Dedham - Oakdale,00730030, 0, 0, 52, 56, 47, 65, 52, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2016-17,Dedham - Riverdale,00730045, 0, 0, 34, 31, 35, 43, 40, 0, 0, 0, 0, 0, 0, 0, 0, 183 -NA,NA,"",2016-17,Deerfield - Deerfield Elementary,00740015, 39, 49, 39, 52, 52, 51, 59, 60, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 0, 0, 0, 0, 0, 0, 0, 4, 0, 221, 194, 201, 202, 181, 0," 1,003" -NA,NA,"",2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0, 76, 91, 95, 90, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 76, 53, 63, 53, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0, 0, 0, 0, 0, 0, 0, 194, 229, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0, 0, 0, 0, 0, 272, 242, 0, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0, 101, 109, 106, 109, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 0, 81, 80, 79, 100, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 420 -NA,NA,"",2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 0, 0, 0, 0, 0, 0, 99, 94, 84, 119, 0, 0, 0, 0, 0, 396 -NA,NA,"",2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 191, 219, 207, 227, 0, 928 -NA,NA,"",2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0, 0, 0, 0, 0, 0, 148, 146, 145, 136, 0, 0, 0, 0, 0, 575 -NA,NA,"",2016-17,Dighton-Rehoboth - Palmer River,06500010, 0, 92, 111, 102, 128, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2016-17,Douglas - Douglas Elementary School,00770015, 0, 0, 0, 83, 80, 111, 130, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Douglas - Douglas High School,00770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 106, 99, 84, 104, 1, 394 -NA,NA,"",2016-17,Douglas - Douglas Middle School,00770305, 0, 0, 0, 0, 0, 0, 0, 105, 123, 132, 0, 0, 0, 0, 0, 360 -NA,NA,"",2016-17,Douglas - Douglas Primary School,00770005, 52, 79, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 230 -NA,NA,"",2016-17,Dover - Chickering,00780005, 12, 64, 72, 68, 83, 96, 88, 0, 0, 0, 0, 0, 0, 0, 0, 483 -NA,NA,"",2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 173, 154, 167, 158, 0, 652 -NA,NA,"",2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 0, 0, 0, 0, 0, 0, 0, 172, 174, 177, 0, 0, 0, 0, 0, 523 -NA,NA,"",2016-17,Dracut - Brookside Elementary,00790035, 0, 84, 69, 69, 77, 85, 79, 0, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2016-17,Dracut - Dracut Senior High,00790505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220, 204, 190, 187, 0, 801 -NA,NA,"",2016-17,Dracut - George H. Englesby Elementary School,00790045, 0, 79, 87, 78, 98, 86, 80, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2016-17,Dracut - Greenmont Avenue,00790030, 0, 40, 51, 51, 49, 49, 40, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2016-17,Dracut - Joseph A Campbell Elementary,00790020, 53, 68, 66, 94, 88, 100, 77, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2016-17,Dracut - Justus C. Richardson Middle School,00790410, 0, 0, 0, 0, 0, 0, 0, 277, 301, 323, 0, 0, 0, 0, 0, 901 -NA,NA,"",2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 41, 44, 43, 44, 44, 44, 32, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 66, 147, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 0, 0, 0, 0, 0, 0, 148, 175, 176, 205, 0, 0, 0, 0, 0, 704 -NA,NA,"",2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 0, 0, 0, 129, 127, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 0, 0, 0, 0, 0, 0, 142, 147, 166, 162, 0, 0, 0, 0, 0, 617 -NA,NA,"",2016-17,Dudley-Charlton Reg - Heritage School,06580030, 0, 0, 0, 154, 176, 166, 0, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 44, 95, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293, 269, 303, 300, 1," 1,166" -NA,NA,"",2016-17,Duxbury - Alden School,00820004, 0, 0, 0, 0, 225, 242, 239, 0, 0, 0, 0, 0, 0, 0, 0, 706 -NA,NA,"",2016-17,Duxbury - Chandler Elementary,00820006, 65, 166, 200, 176, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 607 -NA,NA,"",2016-17,Duxbury - Duxbury High,00820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 259, 251, 275, 272, 0," 1,057" -NA,NA,"",2016-17,Duxbury - Duxbury Middle,00820305, 0, 0, 0, 0, 0, 0, 0, 243, 243, 265, 0, 0, 0, 0, 0, 751 -NA,NA,"",2016-17,East Bridgewater - Central,00830005, 113, 142, 161, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0, 0, 0, 0, 0, 0, 0, 0, 196, 188, 175, 146, 168, 178, 0," 1,051" -NA,NA,"",2016-17,East Bridgewater - Gordon W Mitchell,00830010, 0, 0, 0, 0, 162, 164, 177, 187, 0, 0, 0, 0, 0, 0, 0, 690 -NA,NA,"",2016-17,East Longmeadow - Birchland Park,00870305, 0, 0, 0, 0, 0, 0, 0, 214, 225, 189, 0, 0, 0, 0, 0, 628 -NA,NA,"",2016-17,East Longmeadow - East Longmeadow High,00870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 210, 215, 218, 1, 870 -NA,NA,"",2016-17,East Longmeadow - Mapleshade,00870010, 0, 0, 0, 0, 98, 80, 91, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2016-17,East Longmeadow - Meadow Brook,00870013, 41, 171, 169, 182, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 563 -NA,NA,"",2016-17,East Longmeadow - Mountain View,00870015, 0, 0, 0, 0, 100, 99, 101, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2016-17,Eastham - Eastham Elementary,00850005, 11, 27, 29, 25, 24, 38, 28, 0, 0, 0, 0, 0, 0, 0, 0, 182 -NA,NA,"",2016-17,Easthampton - Center School,00860005, 0, 43, 42, 43, 41, 25, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2016-17,Easthampton - Easthampton High,00860505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 132, 103, 103, 4, 471 -NA,NA,"",2016-17,Easthampton - Maple,00860010, 43, 41, 40, 44, 40, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 256 -NA,NA,"",2016-17,Easthampton - Neil A Pepin,00860020, 0, 43, 38, 43, 20, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192 -NA,NA,"",2016-17,Easthampton - White Brook Middle School,00860305, 0, 0, 0, 0, 0, 0, 105, 109, 124, 111, 0, 0, 0, 0, 0, 449 -NA,NA,"",2016-17,Easton - Center School,00880003, 16, 66, 81, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 253 -NA,NA,"",2016-17,Easton - Easton Middle School,00880405, 0, 0, 0, 0, 0, 0, 0, 300, 294, 293, 0, 0, 0, 0, 0, 887 -NA,NA,"",2016-17,Easton - Moreau Hall,00880020, 14, 75, 64, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2016-17,Easton - Oliver Ames High,00880505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267, 302, 326, 304, 0," 1,199" -NA,NA,"",2016-17,Easton - Parkview Elementary,00880015, 48, 91, 99, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2016-17,Easton - Richardson Olmsted School,00880025, 0, 0, 0, 0, 255, 296, 284, 0, 0, 0, 0, 0, 0, 0, 0, 835 -NA,NA,"",2016-17,Edgartown - Edgartown Elementary,00890005, 5, 37, 36, 46, 42, 32, 42, 34, 34, 40, 0, 0, 0, 0, 0, 348 -NA,NA,"",2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105, 88, 79, 87, 0, 359 -NA,NA,"",2016-17,Erving - Erving Elementary,00910030, 26, 11, 19, 11, 17, 18, 22, 12, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 360, 349, 338, 260, 0," 1,307" -NA,NA,"",2016-17,Everett - Adams School,00930003, 209, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2016-17,Everett - Devens School,00930030, 0, 0, 2, 4, 5, 8, 6, 4, 4, 0, 9, 11, 7, 5, 0, 65 -NA,NA,"",2016-17,Everett - Everett High,00930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 469, 514, 551, 486, 3," 2,023" -NA,NA,"",2016-17,Everett - George Keverian School,00930028, 0, 106, 88, 90, 108, 120, 129, 101, 99, 101, 0, 0, 0, 0, 0, 942 -NA,NA,"",2016-17,Everett - Lafayette School,00930038, 0, 79, 119, 98, 106, 107, 111, 113, 104, 94, 0, 0, 0, 0, 0, 931 -NA,NA,"",2016-17,Everett - Madeline English School,00930018, 0, 85, 102, 84, 111, 104, 126, 102, 87, 77, 0, 0, 0, 0, 0, 878 -NA,NA,"",2016-17,Everett - Parlin School,00930058, 0, 100, 74, 103, 81, 111, 96, 98, 104, 104, 0, 0, 0, 0, 0, 871 -NA,NA,"",2016-17,Everett - Sumner G. Whittier School,00930010, 0, 77, 69, 92, 77, 74, 59, 58, 54, 35, 0, 0, 0, 0, 0, 595 -NA,NA,"",2016-17,Everett - Webster School,00930015, 289, 71, 60, 57, 46, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 0, 0, 0, 0, 0, 0, 168, 171, 174, 165, 173, 106, 0, 0, 0, 957 -NA,NA,"",2016-17,Fairhaven - East Fairhaven,00940010, 44, 60, 64, 72, 70, 59, 67, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2016-17,Fairhaven - Fairhaven High,00940505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170, 158, 139, 147, 2, 616 -NA,NA,"",2016-17,Fairhaven - Hastings Middle,00940305, 0, 0, 0, 0, 0, 0, 0, 165, 141, 152, 0, 0, 0, 0, 0, 458 -NA,NA,"",2016-17,Fairhaven - Leroy Wood,00940030, 0, 67, 95, 90, 82, 88, 92, 0, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2016-17,Fall River - B M C Durfee High,00950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 597, 513, 516, 497, 0," 2,123" -NA,NA,"",2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 0, 98, 134, 124, 130, 145, 94, 0, 0, 0, 0, 0, 0, 0, 0, 725 -NA,NA,"",2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 13, 0, 25 -NA,NA,"",2016-17,Fall River - Henry Lord Community School,00950017, 20, 71, 68, 79, 81, 59, 51, 61, 68, 66, 0, 0, 0, 0, 0, 624 -NA,NA,"",2016-17,Fall River - James Tansey,00950140, 0, 49, 46, 51, 54, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2016-17,Fall River - John J Doran,00950045, 21, 58, 58, 56, 67, 65, 64, 56, 48, 53, 0, 0, 0, 0, 0, 546 -NA,NA,"",2016-17,Fall River - Letourneau Elementary School,00950013, 27, 87, 102, 97, 104, 96, 84, 0, 0, 0, 0, 0, 0, 0, 0, 597 -NA,NA,"",2016-17,Fall River - Mary Fonseca Elementary School,00950011, 0, 129, 116, 135, 124, 91, 118, 0, 0, 0, 0, 0, 0, 0, 0, 713 -NA,NA,"",2016-17,Fall River - Matthew J Kuss Middle,00950320, 0, 0, 0, 0, 0, 0, 0, 294, 249, 227, 0, 0, 0, 0, 0, 770 -NA,NA,"",2016-17,Fall River - Morton Middle,00950315, 0, 0, 0, 0, 0, 0, 0, 214, 204, 204, 0, 0, 0, 0, 0, 622 -NA,NA,"",2016-17,Fall River - North End Elementary,00950005, 65, 110, 104, 113, 125, 131, 115, 0, 0, 0, 0, 0, 0, 0, 0, 763 -NA,NA,"",2016-17,Fall River - Resiliency Middle School,00950335, 0, 0, 0, 0, 0, 0, 0, 1, 6, 19, 1, 0, 0, 0, 0, 27 -NA,NA,"",2016-17,Fall River - Resiliency Preparatory School,00950325, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 54, 57, 33, 18, 0, 162 -NA,NA,"",2016-17,Fall River - Samuel Watson,00950145, 0, 57, 49, 52, 55, 46, 45, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2016-17,Fall River - Spencer Borden,00950130, 0, 85, 89, 88, 100, 87, 74, 0, 0, 0, 0, 0, 0, 0, 0, 523 -NA,NA,"",2016-17,Fall River - Stone Day School,00950340, 0, 0, 0, 2, 4, 2, 6, 5, 7, 6, 0, 0, 0, 0, 0, 32 -NA,NA,"",2016-17,Fall River - Talbot Innovation School,00950305, 0, 0, 0, 0, 0, 0, 0, 172, 184, 190, 0, 0, 0, 0, 0, 546 -NA,NA,"",2016-17,Fall River - William S Greene,00950065, 48, 118, 112, 116, 102, 131, 141, 0, 0, 0, 0, 0, 0, 0, 0, 768 -NA,NA,"",2016-17,Falmouth - East Falmouth Elementary,00960005, 75, 52, 47, 59, 64, 54, 0, 0, 0, 0, 0, 0, 0, 0, 0, 351 -NA,NA,"",2016-17,Falmouth - Falmouth High,00960505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, 207, 197, 234, 4, 882 -NA,NA,"",2016-17,Falmouth - Lawrence,00960405, 0, 0, 0, 0, 0, 0, 0, 0, 290, 278, 0, 0, 0, 0, 0, 568 -NA,NA,"",2016-17,Falmouth - Morse Pond School,00960305, 0, 0, 0, 0, 0, 0, 273, 316, 0, 0, 0, 0, 0, 0, 0, 589 -NA,NA,"",2016-17,Falmouth - Mullen-Hall,00960020, 0, 79, 84, 98, 96, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2016-17,Falmouth - North Falmouth Elementary,00960030, 0, 48, 63, 74, 65, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2016-17,Falmouth - Teaticket,00960015, 19, 53, 59, 58, 51, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 300 -NA,NA,"",2016-17,Farmington River Reg - Farmington River Elementary,06620020, 20, 14, 12, 13, 16, 16, 12, 11, 0, 0, 0, 0, 0, 0, 0, 114 -NA,NA,"",2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 0, 0, 0, 0, 0, 0, 167, 171, 110, 111, 0, 0, 0, 0, 0, 559 -NA,NA,"",2016-17,Fitchburg - Crocker Elementary,00970016, 92, 119, 122, 111, 99, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 642 -NA,NA,"",2016-17,Fitchburg - Fitchburg High,00970505, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 307, 304, 265, 4," 1,211" -NA,NA,"",2016-17,Fitchburg - Goodrich Academy,00970510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 19, 46, 84, 14, 172 -NA,NA,"",2016-17,Fitchburg - McKay Arts Academy,00970340, 22, 65, 70, 82, 71, 70, 76, 74, 68, 75, 0, 0, 0, 0, 0, 673 -NA,NA,"",2016-17,Fitchburg - Memorial Intermediate,00970048, 0, 0, 0, 0, 0, 0, 174, 204, 163, 175, 0, 0, 0, 0, 0, 716 -NA,NA,"",2016-17,Fitchburg - Reingold Elementary,00970043, 0, 126, 119, 136, 123, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 622 -NA,NA,"",2016-17,Fitchburg - South Street Elementary,00970060, 20, 124, 123, 135, 142, 133, 0, 0, 0, 0, 0, 0, 0, 0, 0, 677 -NA,NA,"",2016-17,Florida - Abbott Memorial,00980005, 11, 7, 7, 5, 9, 13, 9, 4, 11, 5, 0, 0, 0, 0, 0, 81 -NA,NA,"",2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0, 0, 0, 0, 0, 0, 0, 0, 36, 37, 38, 38, 37, 34, 0, 220 -NA,NA,"",2016-17,Foxborough - Charles Taylor Elementary,00990050, 0, 49, 38, 42, 58, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2016-17,Foxborough - Foxborough High,00990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 212, 205, 193, 216, 11, 837 -NA,NA,"",2016-17,Foxborough - John J Ahern,00990405, 0, 0, 0, 0, 0, 0, 205, 204, 214, 193, 0, 0, 0, 0, 0, 816 -NA,NA,"",2016-17,Foxborough - Mabelle M Burrell,00990015, 74, 42, 42, 39, 53, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 311 -NA,NA,"",2016-17,Foxborough - Vincent M Igo Elementary,00990020, 0, 73, 70, 81, 91, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 0, 100, 114, 113, 115, 112, 110, 110, 112, 110, 77, 68, 61, 59, 0," 1,261" -NA,NA,"",2016-17,Framingham - Barbieri Elementary,01000035, 0, 114, 119, 117, 115, 124, 103, 0, 0, 0, 0, 0, 0, 0, 0, 692 -NA,NA,"",2016-17,Framingham - Brophy,01000006, 0, 59, 76, 83, 103, 94, 100, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2016-17,Framingham - Cameron Middle School,01000302, 0, 0, 0, 0, 0, 0, 0, 182, 178, 186, 0, 0, 0, 0, 0, 546 -NA,NA,"",2016-17,Framingham - Charlotte A Dunning,01000007, 0, 64, 72, 72, 97, 87, 87, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2016-17,Framingham - Framingham High School,01000515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 536, 547, 509, 510, 0," 2,102" -NA,NA,"",2016-17,Framingham - Fuller Middle,01000305, 0, 0, 0, 0, 0, 0, 0, 151, 146, 168, 0, 0, 0, 0, 0, 465 -NA,NA,"",2016-17,Framingham - Hemenway,01000015, 0, 92, 98, 101, 91, 97, 94, 0, 0, 0, 0, 0, 0, 0, 0, 573 -NA,NA,"",2016-17,Framingham - Juniper Hill School,01000001, 234, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2016-17,Framingham - King Elementary School,01000005, 0, 81, 90, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2016-17,Framingham - Mary E Stapleton Elementary,01000045, 0, 54, 54, 55, 70, 84, 76, 0, 0, 0, 0, 0, 0, 0, 0, 393 -NA,NA,"",2016-17,Framingham - Miriam F McCarthy School,01000050, 0, 82, 84, 88, 104, 98, 101, 0, 0, 0, 0, 0, 0, 0, 0, 557 -NA,NA,"",2016-17,Framingham - Potter Road,01000039, 0, 70, 84, 81, 95, 86, 87, 0, 0, 0, 0, 0, 0, 0, 0, 503 -NA,NA,"",2016-17,Framingham - Walsh Middle,01000310, 0, 0, 0, 0, 0, 0, 0, 239, 257, 228, 0, 0, 0, 0, 0, 724 -NA,NA,"",2016-17,Framingham - Woodrow Wilson,01000055, 0, 77, 98, 103, 103, 107, 88, 0, 0, 0, 0, 0, 0, 0, 0, 576 -NA,NA,"",2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 0, 0, 0, 0, 0, 0, 0, 0, 69, 64, 63, 64, 73, 62, 0, 395 -NA,NA,"",2016-17,Franklin - Annie Sullivan Middle School,01010040, 0, 0, 0, 0, 0, 0, 0, 158, 154, 152, 0, 0, 0, 0, 0, 464 -NA,NA,"",2016-17,Franklin - Davis Thayer,01010035, 0, 44, 32, 40, 46, 44, 66, 0, 0, 0, 0, 0, 0, 0, 0, 272 -NA,NA,"",2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 131 -NA,NA,"",2016-17,Franklin - Franklin High,01010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436, 424, 470, 404, 5," 1,739" -NA,NA,"",2016-17,Franklin - Helen Keller Elementary,01010012, 0, 68, 76, 51, 71, 82, 65, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2016-17,Franklin - Horace Mann,01010405, 0, 0, 0, 0, 0, 0, 0, 153, 157, 156, 0, 0, 0, 0, 0, 466 -NA,NA,"",2016-17,Franklin - J F Kennedy Memorial,01010013, 0, 54, 63, 55, 53, 63, 72, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2016-17,Franklin - Jefferson Elementary,01010010, 0, 33, 51, 63, 57, 64, 61, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2016-17,Franklin - Oak Street Elementary,01010030, 0, 62, 49, 57, 71, 94, 80, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2016-17,Franklin - Parmenter,01010032, 0, 65, 47, 61, 52, 57, 83, 0, 0, 0, 0, 0, 0, 0, 0, 365 -NA,NA,"",2016-17,Franklin - Remington Middle,01010310, 0, 0, 0, 0, 0, 0, 0, 137, 157, 166, 0, 0, 0, 0, 0, 460 -NA,NA,"",2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 128, 129, 118, 113, 0, 488 -NA,NA,"",2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 189, 201, 153, 0, 725 -NA,NA,"",2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 0, 101, 120, 96, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 42, 72, 99, 89, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 0, 0, 0, 0, 0, 0, 0, 246, 235, 258, 0, 0, 0, 0, 0, 739 -NA,NA,"",2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0, 0, 0, 0, 3, 216, 254, 0, 0, 0, 0, 0, 0, 0, 0, 473 -NA,NA,"",2016-17,Frontier - Frontier Regional,06700505, 0, 0, 0, 0, 0, 0, 0, 0, 106, 127, 104, 95, 85, 89, 5, 611 -NA,NA,"",2016-17,Gardner - Elm Street School,01030001, 0, 0, 0, 190, 186, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 579 -NA,NA,"",2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 27, 22, 21, 23, 0, 93 -NA,NA,"",2016-17,Gardner - Gardner High,01030505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 181, 182, 104, 122, 122, 0, 711 -NA,NA,"",2016-17,Gardner - Gardner Middle School,01030405, 0, 0, 0, 0, 0, 0, 208, 158, 181, 0, 0, 0, 0, 0, 0, 547 -NA,NA,"",2016-17,Gardner - Waterford Street,01030020, 80, 194, 181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2016-17,Gateway - Chester Elementary,06720059, 19, 8, 19, 20, 10, 21, 19, 0, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2016-17,Gateway - Gateway Regional High,06720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 59, 42, 55, 3, 220 -NA,NA,"",2016-17,Gateway - Gateway Regional Middle School,06720405, 0, 0, 0, 0, 0, 0, 0, 65, 63, 80, 0, 0, 0, 0, 0, 208 -NA,NA,"",2016-17,Gateway - Littleville Elementary School,06720143, 20, 42, 35, 54, 46, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2016-17,Georgetown - Georgetown High School,01050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108, 98, 112, 93, 0, 411 -NA,NA,"",2016-17,Georgetown - Georgetown Middle School,01050305, 0, 0, 0, 0, 0, 0, 0, 0, 117, 114, 0, 0, 0, 0, 0, 231 -NA,NA,"",2016-17,Georgetown - Penn Brook,01050010, 0, 87, 101, 89, 115, 91, 103, 111, 0, 0, 0, 0, 0, 0, 0, 697 -NA,NA,"",2016-17,Georgetown - Perley Elementary,01050005, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 -NA,NA,"",2016-17,Gill-Montague - Gill Elementary,06740005, 0, 14, 19, 16, 20, 16, 16, 16, 0, 0, 0, 0, 0, 0, 0, 117 -NA,NA,"",2016-17,Gill-Montague - Great Falls Middle,06740310, 0, 0, 0, 0, 0, 0, 0, 73, 86, 79, 0, 0, 0, 0, 0, 238 -NA,NA,"",2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 38, 52, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 148 -NA,NA,"",2016-17,Gill-Montague - Sheffield Elementary School,06740050, 0, 0, 0, 54, 55, 51, 57, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2016-17,Gill-Montague - Turners Fall High,06740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58, 57, 55, 58, 3, 231 -NA,NA,"",2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 0, 0, 0, 0, 0, 0, 80, 90, 80, 77, 41, 46, 43, 50, 0, 507 -NA,NA,"",2016-17,Gloucester - Beeman Memorial,01070010, 0, 65, 57, 60, 55, 59, 59, 0, 0, 0, 0, 0, 0, 0, 0, 355 -NA,NA,"",2016-17,Gloucester - East Gloucester Elementary,01070020, 0, 33, 44, 39, 41, 34, 44, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2016-17,Gloucester - Gloucester High,01070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 201, 204, 183, 4, 818 -NA,NA,"",2016-17,Gloucester - Gloucester PreSchool,01070025, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 96 -NA,NA,"",2016-17,Gloucester - Plum Cove School,01070042, 0, 37, 37, 34, 39, 34, 32, 0, 0, 0, 0, 0, 0, 0, 0, 213 -NA,NA,"",2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 0, 0, 0, 0, 0, 0, 0, 215, 234, 188, 0, 0, 0, 0, 0, 637 -NA,NA,"",2016-17,Gloucester - Veterans Memorial,01070045, 0, 46, 44, 28, 36, 26, 40, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2016-17,Gloucester - West Parish,01070050, 0, 60, 63, 57, 55, 57, 64, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2016-17,Gosnold - Cuttyhunk Elementary,01090005, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 2 -NA,NA,"",2016-17,Grafton - Grafton High School,01100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 228, 185, 188, 13, 835 -NA,NA,"",2016-17,Grafton - Grafton Middle,01100305, 0, 0, 0, 0, 0, 0, 0, 0, 271, 214, 0, 0, 0, 0, 0, 485 -NA,NA,"",2016-17,Grafton - Millbury Street Elementary School,01100200, 0, 0, 0, 129, 131, 149, 129, 141, 0, 0, 0, 0, 0, 0, 0, 679 -NA,NA,"",2016-17,Grafton - North Grafton Elementary,01100025, 63, 108, 114, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2016-17,Grafton - North Street Elementary School,01100030, 0, 0, 0, 135, 105, 123, 111, 123, 0, 0, 0, 0, 0, 0, 0, 597 -NA,NA,"",2016-17,Grafton - South Grafton Elementary,01100005, 62, 126, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2016-17,Granby - East Meadow,01110004, 0, 0, 0, 0, 0, 49, 63, 57, 0, 0, 0, 0, 0, 0, 0, 169 -NA,NA,"",2016-17,Granby - Granby Jr Sr High School,01110505, 0, 0, 0, 0, 0, 0, 0, 0, 74, 61, 54, 51, 61, 78, 2, 381 -NA,NA,"",2016-17,Granby - West Street,01110010, 27, 43, 46, 44, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372, 347, 334, 341, 1," 1,395" -NA,NA,"",2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 415, 393, 340, 325, 0," 1,473" -NA,NA,"",2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 574, 567, 529, 489, 25," 2,184" -NA,NA,"",2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 562, 554, 530, 508, 0," 2,154" -NA,NA,"",2016-17,Greenfield - Discovery School at Four Corners,01140025, 0, 56, 51, 45, 55, 36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2016-17,Greenfield - Federal Street School,01140010, 0, 54, 46, 41, 48, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2016-17,Greenfield - Green River,01140030, 0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6 -NA,NA,"",2016-17,Greenfield - Greenfield High,01140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90, 84, 87, 86, 99, 2, 448 -NA,NA,"",2016-17,Greenfield - Greenfield Middle,01140305, 0, 0, 0, 0, 0, 9, 131, 129, 125, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2016-17,Greenfield - Newton School,01140035, 0, 48, 38, 40, 52, 37, 0, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 122 -NA,NA,"",2016-17,Groton-Dunstable - Boutwell School,06730001, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 -NA,NA,"",2016-17,Groton-Dunstable - Florence Roche School,06730010, 0, 85, 89, 103, 99, 102, 0, 0, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 182, 203, 210, 214, 3, 812 -NA,NA,"",2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0, 0, 0, 0, 0, 0, 201, 179, 202, 209, 0, 0, 0, 0, 0, 791 -NA,NA,"",2016-17,Groton-Dunstable - Swallow/Union School,06730005, 0, 56, 41, 66, 55, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280 -NA,NA,"",2016-17,Hadley - Hadley Elementary,01170015, 35, 28, 35, 26, 45, 39, 53, 43, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2016-17,Hadley - Hopkins Academy,01170505, 0, 0, 0, 0, 0, 0, 0, 0, 42, 49, 32, 52, 35, 46, 2, 258 -NA,NA,"",2016-17,Halifax - Halifax Elementary,01180005, 0, 95, 80, 79, 88, 91, 73, 86, 0, 0, 0, 0, 0, 0, 0, 592 -NA,NA,"",2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0, 39, 43, 45, 46, 39, 43, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2016-17,Hamilton-Wenham - Cutler School,06750010, 0, 41, 40, 41, 51, 45, 36, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 150, 133, 157, 0, 574 -NA,NA,"",2016-17,Hamilton-Wenham - Miles River Middle,06750310, 0, 0, 0, 0, 0, 0, 0, 131, 136, 140, 0, 0, 0, 0, 0, 407 -NA,NA,"",2016-17,Hamilton-Wenham - Winthrop School,06750015, 32, 44, 38, 55, 33, 42, 48, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 0, 0, 0, 0, 0, 0, 0, 109, 86, 86, 81, 40, 37, 39, 0, 478 -NA,NA,"",2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 24, 41, 40, 52, 46, 44, 0, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 40, 141, 134, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 303, 274, 284, 2," 1,147" -NA,NA,"",2016-17,Hampden-Wilbraham - Soule Road,06800030, 0, 0, 0, 0, 0, 165, 174, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 0, 0, 0, 144, 159, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 0, 0, 0, 0, 0, 0, 50, 48, 59, 65, 0, 0, 0, 0, 0, 222 -NA,NA,"",2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 0, 0, 0, 0, 0, 0, 0, 177, 200, 157, 0, 0, 0, 0, 0, 534 -NA,NA,"",2016-17,Hampshire - Hampshire Regional High,06830505, 0, 0, 0, 0, 0, 0, 0, 0, 159, 138, 118, 95, 110, 115, 6, 741 -NA,NA,"",2016-17,Hancock - Hancock Elementary,01210005, 5, 2, 4, 3, 4, 5, 8, 5, 0, 0, 0, 0, 0, 0, 0, 36 -NA,NA,"",2016-17,Hanover - Cedar Elementary,01220004, 65, 67, 74, 69, 66, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2016-17,Hanover - Center Elementary,01220005, 0, 120, 110, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 349 -NA,NA,"",2016-17,Hanover - Hanover High,01220505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 179, 219, 192, 198, 2, 790 -NA,NA,"",2016-17,Hanover - Hanover Middle,01220305, 0, 0, 0, 0, 0, 0, 219, 180, 209, 226, 0, 0, 0, 0, 0, 834 -NA,NA,"",2016-17,Hanover - Sylvester,01220015, 0, 0, 0, 0, 106, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2016-17,Harvard - Bromfield,01250505, 0, 0, 0, 0, 0, 0, 0, 72, 98, 103, 93, 103, 108, 107, 0, 684 -NA,NA,"",2016-17,Harvard - Hildreth Elementary School,01250005, 11, 60, 69, 62, 76, 79, 76, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2016-17,Hatfield - Hatfield Elementary,01270005, 21, 30, 21, 33, 36, 42, 30, 31, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2016-17,Hatfield - Smith Academy,01270505, 0, 0, 0, 0, 0, 0, 0, 0, 46, 34, 32, 28, 29, 29, 0, 198 -NA,NA,"",2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 0, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2016-17,Haverhill - Bradford Elementary,01280008, 0, 38, 50, 59, 153, 148, 168, 0, 0, 0, 0, 0, 0, 0, 0, 616 -NA,NA,"",2016-17,Haverhill - Caleb Dustin Hunking,01280035, 0, 0, 0, 0, 0, 0, 0, 156, 130, 130, 0, 0, 0, 0, 0, 416 -NA,NA,"",2016-17,Haverhill - Consentino Middle School,01280100, 0, 0, 44, 47, 56, 57, 162, 213, 206, 232, 0, 0, 0, 0, 0," 1,017" -NA,NA,"",2016-17,Haverhill - Crowell,01280020, 0, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150 -NA,NA,"",2016-17,Haverhill - Dr Paul Nettle,01280050, 0, 0, 0, 0, 0, 0, 120, 124, 119, 134, 0, 0, 0, 0, 0, 497 -NA,NA,"",2016-17,Haverhill - Golden Hill,01280026, 0, 4, 119, 149, 122, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 519 -NA,NA,"",2016-17,Haverhill - Greenleaf,01280027, 0, 82, 79, 87, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2016-17,Haverhill - Haverhill Alternative School,01280033, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 14, 5, 7, 6, 0, 46 -NA,NA,"",2016-17,Haverhill - Haverhill High,01280505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505, 451, 391, 453, 28," 1,828" -NA,NA,"",2016-17,Haverhill - John G Whittier,01280085, 0, 0, 0, 0, 0, 0, 123, 118, 139, 129, 0, 0, 0, 0, 0, 509 -NA,NA,"",2016-17,Haverhill - Moody,01280045, 203, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0, 64, 66, 89, 138, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 510 -NA,NA,"",2016-17,Haverhill - TEACH,01280073, 0, 0, 1, 5, 3, 5, 4, 5, 3, 5, 1, 4, 0, 1, 14, 51 -NA,NA,"",2016-17,Haverhill - Tilton,01280075, 0, 0, 142, 140, 139, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 540 -NA,NA,"",2016-17,Haverhill - Walnut Square,01280080, 0, 46, 58, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151 -NA,NA,"",2016-17,Hawlemont - Hawlemont Regional,06850005, 10, 17, 15, 17, 7, 17, 14, 8, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 0, 0, 0, 0, 0, 0, 0, 68, 77, 72, 0, 0, 0, 0, 0, 217 -NA,NA,"",2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0, 34, 36, 35, 36, 33, 34, 33, 31, 34, 0, 0, 0, 0, 0, 306 -NA,NA,"",2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0, 20, 20, 21, 21, 21, 23, 31, 32, 29, 0, 0, 0, 0, 0, 218 -NA,NA,"",2016-17,Hingham - East Elementary School,01310005, 65, 64, 79, 74, 91, 81, 89, 0, 0, 0, 0, 0, 0, 0, 0, 543 -NA,NA,"",2016-17,Hingham - Hingham High,01310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 284, 329, 296, 1," 1,225" -NA,NA,"",2016-17,Hingham - Hingham Middle School,01310410, 0, 0, 0, 0, 0, 0, 0, 362, 375, 360, 0, 0, 0, 0, 0," 1,097" -NA,NA,"",2016-17,Hingham - Plymouth River,01310019, 0, 57, 76, 82, 89, 73, 93, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2016-17,Hingham - South Elementary,01310020, 0, 83, 82, 84, 88, 95, 80, 0, 0, 0, 0, 0, 0, 0, 0, 512 -NA,NA,"",2016-17,Hingham - Wm L Foster Elementary,01310010, 0, 71, 87, 56, 95, 73, 88, 0, 0, 0, 0, 0, 0, 0, 0, 470 -NA,NA,"",2016-17,Holbrook - Holbrook Jr Sr High,01330505, 0, 0, 0, 0, 0, 0, 0, 0, 115, 89, 71, 53, 74, 62, 1, 465 -NA,NA,"",2016-17,Holbrook - John F Kennedy,01330018, 42, 103, 101, 87, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2016-17,Holbrook - South,01330025, 0, 0, 0, 0, 0, 86, 101, 91, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2016-17,Holland - Holland Elementary,01350005, 29, 34, 23, 29, 22, 32, 33, 35, 0, 0, 0, 0, 0, 0, 0, 237 -NA,NA,"",2016-17,Holliston - Holliston High,01360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 225, 186, 184, 211, 3, 809 -NA,NA,"",2016-17,Holliston - Miller School,01360007, 0, 0, 0, 0, 226, 231, 225, 0, 0, 0, 0, 0, 0, 0, 0, 682 -NA,NA,"",2016-17,Holliston - Placentino Elementary,01360010, 101, 208, 207, 219, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 735 -NA,NA,"",2016-17,Holliston - Robert H. Adams Middle School,01360305, 0, 0, 0, 0, 0, 0, 0, 213, 226, 224, 0, 0, 0, 0, 0, 663 -NA,NA,"",2016-17,Holyoke - E N White Elementary,01370045, 43, 61, 61, 50, 48, 46, 46, 51, 50, 45, 0, 0, 0, 0, 0, 501 -NA,NA,"",2016-17,Holyoke - H.B. Lawrence School,01370070, 0, 81, 77, 69, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2016-17,Holyoke - Holyoke High,01370505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 433, 320, 280, 250, 2," 1,285" -NA,NA,"",2016-17,Holyoke - Joseph Metcalf School,01370003, 149, 42, 38, 33, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262 -NA,NA,"",2016-17,Holyoke - Kelly Elementary,01370040, 0, 57, 74, 61, 91, 66, 58, 41, 53, 43, 0, 0, 0, 0, 0, 544 -NA,NA,"",2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 0, 62, 61, 52, 81, 70, 62, 63, 52, 56, 0, 0, 0, 0, 0, 559 -NA,NA,"",2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 20, 38, 35, 52, 43, 45, 48, 37, 52, 44, 0, 0, 0, 0, 0, 414 -NA,NA,"",2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 23, 40, 48, 54, 51, 49, 47, 40, 58, 49, 0, 0, 0, 0, 0, 459 -NA,NA,"",2016-17,Holyoke - Morgan Full Service Community School,01370025, 38, 39, 48, 42, 45, 49, 36, 40, 37, 39, 0, 0, 0, 0, 0, 413 -NA,NA,"",2016-17,Holyoke - William R. Peck School,01370030, 0, 0, 0, 0, 0, 61, 62, 80, 93, 70, 0, 0, 0, 0, 0, 366 -NA,NA,"",2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 79, 72, 0, 252 -NA,NA,"",2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 0, 78, 81, 88, 87, 85, 78, 86, 51, 68, 0, 0, 0, 0, 0, 702 -NA,NA,"",2016-17,Hopedale - Hopedale Jr Sr High,01380505, 0, 0, 0, 0, 0, 0, 0, 0, 103, 88, 72, 84, 88, 89, 0, 524 -NA,NA,"",2016-17,Hopedale - Memorial,01380010, 0, 74, 72, 68, 85, 78, 89, 83, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2016-17,Hopedale - Park Street School,01380003, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 -NA,NA,"",2016-17,Hopkinton - Center,01390005, 0, 224, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2016-17,Hopkinton - Elmwood,01390010, 0, 0, 0, 250, 238, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 488 -NA,NA,"",2016-17,Hopkinton - Hopkins Elementary School,01390015, 0, 0, 0, 0, 0, 271, 226, 0, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2016-17,Hopkinton - Hopkinton High,01390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 274, 264, 270, 282, 2," 1,092" -NA,NA,"",2016-17,Hopkinton - Hopkinton Middle School,01390305, 0, 0, 0, 0, 0, 0, 0, 286, 275, 309, 0, 0, 0, 0, 0, 870 -NA,NA,"",2016-17,Hopkinton - Hopkinton Pre-School,01390003, 65, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65 -NA,NA,"",2016-17,Hudson - C A Farley,01410030, 13, 94, 89, 75, 109, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2016-17,Hudson - David J. Quinn Middle School,01410410, 0, 0, 0, 0, 0, 0, 229, 204, 205, 0, 0, 0, 0, 0, 0, 638 -NA,NA,"",2016-17,Hudson - Forest Avenue Elementary,01410015, 0, 60, 74, 68, 63, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 325 -NA,NA,"",2016-17,Hudson - Hudson High,01410505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221, 197, 190, 189, 146, 0, 943 -NA,NA,"",2016-17,Hudson - Mulready Elementary,01410007, 12, 45, 46, 41, 48, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250 -NA,NA,"",2016-17,Hull - Hull High,01420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 71, 79, 62, 99, 0, 311 -NA,NA,"",2016-17,Hull - Lillian M Jacobs,01420015, 59, 57, 54, 62, 66, 56, 61, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2016-17,Hull - Memorial Middle,01420305, 0, 0, 0, 0, 0, 0, 0, 63, 63, 78, 0, 0, 0, 0, 0, 204 -NA,NA,"",2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 0, 0, 0, 0, 0, 0, 100, 104, 100, 100, 92, 104, 95, 97, 0, 792 -NA,NA,"",2016-17,Ipswich - Ipswich High,01440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 138, 124, 117, 158, 6, 543 -NA,NA,"",2016-17,Ipswich - Ipswich Middle School,01440305, 0, 0, 0, 0, 0, 0, 0, 134, 164, 160, 0, 0, 0, 0, 0, 458 -NA,NA,"",2016-17,Ipswich - Paul F Doyon Memorial,01440007, 21, 53, 63, 59, 64, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2016-17,Ipswich - Winthrop,01440015, 20, 48, 61, 52, 63, 67, 72, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2016-17,King Philip - King Philip Middle School,06900510, 0, 0, 0, 0, 0, 0, 0, 0, 400, 376, 0, 0, 0, 0, 0, 776 -NA,NA,"",2016-17,King Philip - King Philip Regional High,06900505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 318, 337, 319, 7," 1,320" -NA,NA,"",2016-17,Kingston - Kingston Elementary,01450005, 0, 131, 166, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2016-17,Kingston - Kingston Intermediate,01450020, 0, 0, 0, 0, 142, 148, 137, 153, 0, 0, 0, 0, 0, 0, 0, 580 -NA,NA,"",2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 0, 75, 75, 76, 0, 0, 70, 78, 69, 62, 0, 0, 0, 0, 0, 505 -NA,NA,"",2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 0, 122, 123, 0, 0, 0, 126, 124, 119, 117, 130, 130, 111, 94, 0," 1,196" -NA,NA,"",2016-17,Lanesborough - Lanesborough Elementary,01480005, 15, 29, 20, 21, 33, 34, 32, 22, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2016-17,Lawrence - Alexander B Bruce,01490015, 0, 0, 0, 0, 90, 75, 88, 97, 79, 85, 0, 0, 0, 0, 0, 514 -NA,NA,"",2016-17,Lawrence - Arlington Middle School,01490017, 0, 0, 0, 0, 0, 0, 127, 152, 146, 146, 0, 0, 0, 0, 0, 571 -NA,NA,"",2016-17,Lawrence - Community Day Arlington,01490009, 0, 99, 123, 119, 123, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 587 -NA,NA,"",2016-17,Lawrence - Edward F. Parthum,01490053, 0, 89, 143, 128, 134, 145, 0, 0, 0, 0, 0, 0, 0, 0, 0, 639 -NA,NA,"",2016-17,Lawrence - Emily G Wetherbee,01490080, 0, 76, 82, 67, 84, 90, 80, 88, 88, 96, 0, 0, 0, 0, 0, 751 -NA,NA,"",2016-17,Lawrence - Francis M Leahy,01490040, 0, 74, 97, 94, 94, 62, 63, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2016-17,Lawrence - Frost Middle School,01490525, 0, 0, 0, 0, 0, 0, 122, 115, 121, 118, 0, 0, 0, 0, 0, 476 -NA,NA,"",2016-17,Lawrence - Gerard A. Guilmette,01490022, 0, 0, 128, 135, 139, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2016-17,Lawrence - Guilmette Middle School,01490025, 0, 0, 0, 0, 0, 0, 116, 123, 130, 129, 0, 0, 0, 0, 0, 498 -NA,NA,"",2016-17,Lawrence - High School Learning Center,01490536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 32, 51, 87, 0, 176 -NA,NA,"",2016-17,Lawrence - James F Hennessey,01490020, 94, 100, 94, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2016-17,Lawrence - John Breen School,01490003, 204, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2016-17,Lawrence - John K Tarbox,01490075, 0, 0, 76, 76, 80, 78, 53, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 139 -NA,NA,"",2016-17,Lawrence - Lawrence Family Public Academy,01490011, 76, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2016-17,Lawrence - Lawrence High School,01490515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 990, 795, 793, 702, 15," 3,295" -NA,NA,"",2016-17,Lawrence - Oliver Partnership School,01490048, 0, 0, 96, 103, 94, 104, 103, 0, 0, 0, 0, 0, 0, 0, 0, 500 -NA,NA,"",2016-17,Lawrence - Parthum Middle School,01490027, 0, 0, 0, 0, 0, 0, 110, 146, 145, 126, 0, 0, 0, 0, 0, 527 -NA,NA,"",2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 61, 32, 25, 33, 0, 151 -NA,NA,"",2016-17,Lawrence - Robert Frost,01490018, 0, 87, 111, 132, 128, 141, 0, 0, 0, 0, 0, 0, 0, 0, 0, 599 -NA,NA,"",2016-17,Lawrence - Rollins Early Childhood Center,01490001, 117, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172 -NA,NA,"",2016-17,Lawrence - School for Exceptional Studies,01490537, 0, 0, 8, 10, 8, 13, 11, 15, 13, 19, 15, 12, 17, 16, 19, 176 -NA,NA,"",2016-17,Lawrence - South Lawrence East Elementary School,01490004, 0, 0, 135, 137, 157, 141, 141, 0, 0, 0, 0, 0, 0, 0, 0, 711 -NA,NA,"",2016-17,Lawrence - Spark Academy,01490085, 0, 0, 0, 0, 0, 0, 0, 140, 158, 160, 0, 0, 0, 0, 0, 458 -NA,NA,"",2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 0, 0, 0, 0, 0, 0, 0, 82, 123, 117, 0, 0, 0, 0, 0, 322 -NA,NA,"",2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 0, 0, 0, 0, 0, 0, 0, 125, 117, 103, 0, 0, 0, 0, 0, 345 -NA,NA,"",2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 85, 84, 84, 84, 84, 78, 56, 55, 52, 55, 0, 0, 0, 0, 0, 717 -NA,NA,"",2016-17,Lee - Lee Elementary,01500025, 15, 42, 53, 47, 37, 38, 44, 60, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2016-17,Lee - Lee Middle/High School,01500505, 0, 0, 0, 0, 0, 0, 0, 0, 47, 59, 64, 62, 55, 62, 0, 349 -NA,NA,"",2016-17,Leicester - Leicester High,01510505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 127, 105, 117, 106, 0, 455 -NA,NA,"",2016-17,Leicester - Leicester Memorial Elementary,01510005, 0, 0, 0, 0, 118, 113, 128, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2016-17,Leicester - Leicester Middle,01510015, 0, 0, 0, 0, 0, 0, 0, 120, 161, 121, 0, 0, 0, 0, 0, 402 -NA,NA,"",2016-17,Leicester - Leicester Primary School,01510010, 70, 89, 102, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 358 -NA,NA,"",2016-17,Lenox - Lenox Memorial High,01520505, 0, 0, 0, 0, 0, 0, 0, 68, 68, 69, 68, 50, 68, 64, 0, 455 -NA,NA,"",2016-17,Lenox - Morris,01520015, 12, 43, 52, 41, 52, 49, 61, 0, 0, 0, 0, 0, 0, 0, 0, 310 -NA,NA,"",2016-17,Leominster - Bennett,01530003, 105, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 105 -NA,NA,"",2016-17,Leominster - Center For Technical Education Innovation,01530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 280, 144, 146, 125, 1, 696 -NA,NA,"",2016-17,Leominster - Fall Brook,01530007, 0, 63, 125, 135, 110, 128, 126, 0, 0, 0, 0, 0, 0, 0, 0, 687 -NA,NA,"",2016-17,Leominster - Frances Drake School,01530010, 0, 88, 76, 80, 115, 101, 107, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2016-17,Leominster - Johnny Appleseed,01530025, 0, 81, 91, 139, 96, 114, 109, 0, 0, 0, 0, 0, 0, 0, 0, 630 -NA,NA,"",2016-17,Leominster - Leominster Center for Excellence,01530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 15, 8, 7, 0, 39 -NA,NA,"",2016-17,Leominster - Leominster High School,01530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 143, 316, 344, 283, 0," 1,086" -NA,NA,"",2016-17,Leominster - Lincoln School,01530005, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49 -NA,NA,"",2016-17,Leominster - Northwest,01530030, 0, 43, 124, 129, 146, 115, 135, 0, 0, 0, 0, 0, 0, 0, 0, 692 -NA,NA,"",2016-17,Leominster - Priest Street,01530040, 0, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2016-17,Leominster - Samoset School,01530045, 0, 0, 0, 0, 0, 0, 0, 163, 162, 157, 0, 0, 0, 0, 0, 482 -NA,NA,"",2016-17,Leominster - Sky View Middle School,01530320, 0, 0, 0, 0, 0, 0, 0, 285, 306, 293, 0, 0, 0, 0, 0, 884 -NA,NA,"",2016-17,Leverett - Leverett Elementary,01540005, 15, 15, 15, 24, 15, 21, 17, 14, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2016-17,Lexington - Bowman,01550008, 0, 71, 83, 95, 103, 115, 100, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2016-17,Lexington - Bridge,01550006, 0, 65, 95, 99, 97, 107, 102, 0, 0, 0, 0, 0, 0, 0, 0, 565 -NA,NA,"",2016-17,Lexington - Fiske,01550015, 0, 50, 86, 89, 90, 89, 75, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2016-17,Lexington - Harrington,01550030, 0, 77, 76, 65, 87, 79, 81, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2016-17,Lexington - Jonas Clarke Middle,01550305, 0, 0, 0, 0, 0, 0, 0, 303, 317, 271, 0, 0, 0, 0, 0, 891 -NA,NA,"",2016-17,Lexington - Joseph Estabrook,01550010, 0, 72, 90, 86, 106, 93, 88, 0, 0, 0, 0, 0, 0, 0, 0, 535 -NA,NA,"",2016-17,Lexington - Lexington Children's Place,01550001, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78 -NA,NA,"",2016-17,Lexington - Lexington High,01550505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 552, 555, 557, 521, 0," 2,185" -NA,NA,"",2016-17,Lexington - Maria Hastings,01550035, 0, 79, 63, 69, 73, 94, 77, 0, 0, 0, 0, 0, 0, 0, 0, 455 -NA,NA,"",2016-17,Lexington - Wm Diamond Middle,01550310, 0, 0, 0, 0, 0, 0, 0, 305, 281, 266, 0, 0, 0, 0, 0, 852 -NA,NA,"",2016-17,Lincoln - Hanscom Middle,01570305, 0, 0, 0, 0, 0, 62, 51, 53, 49, 34, 0, 0, 0, 0, 0, 249 -NA,NA,"",2016-17,Lincoln - Hanscom Primary,01570006, 52, 70, 71, 53, 76, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2016-17,Lincoln - Lincoln School,01570025, 57, 64, 50, 66, 69, 59, 69, 61, 62, 72, 0, 0, 0, 0, 0, 629 -NA,NA,"",2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 369, 378, 378, 440, 3," 1,568" -NA,NA,"",2016-17,Littleton - Littleton High School,01580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 124, 114, 106, 123, 0, 467 -NA,NA,"",2016-17,Littleton - Littleton Middle School,01580305, 0, 0, 0, 0, 0, 0, 0, 126, 103, 122, 0, 0, 0, 0, 0, 351 -NA,NA,"",2016-17,Littleton - Russell St Elementary,01580015, 0, 0, 0, 0, 133, 120, 134, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2016-17,Littleton - Shaker Lane Elementary,01580005, 65, 123, 122, 131, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2016-17,Longmeadow - Blueberry Hill,01590005, 0, 63, 66, 62, 95, 67, 73, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2016-17,Longmeadow - Center,01590010, 0, 55, 62, 58, 79, 75, 75, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Longmeadow - Glenbrook Middle,01590017, 0, 0, 0, 0, 0, 0, 0, 113, 112, 109, 0, 0, 0, 0, 0, 334 -NA,NA,"",2016-17,Longmeadow - Longmeadow High,01590505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 254, 240, 226, 226, 1, 947 -NA,NA,"",2016-17,Longmeadow - Williams Middle,01590305, 0, 0, 0, 0, 0, 0, 0, 101, 127, 116, 0, 0, 0, 0, 0, 344 -NA,NA,"",2016-17,Longmeadow - Wolf Swamp Road,01590025, 41, 49, 49, 56, 62, 66, 63, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2016-17,Lowell - Abraham Lincoln,01600020, 49, 89, 84, 94, 96, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2016-17,Lowell - B.F. Butler Middle School,01600310, 0, 0, 0, 0, 0, 0, 135, 132, 141, 137, 0, 0, 0, 0, 0, 545 -NA,NA,"",2016-17,Lowell - Bartlett Community Partnership,01600090, 50, 49, 44, 54, 48, 54, 59, 54, 59, 59, 0, 0, 0, 0, 0, 530 -NA,NA,"",2016-17,Lowell - Charles W Morey,01600030, 55, 93, 91, 100, 95, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 49, 95, 83, 97, 87, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2016-17,Lowell - Dr An Wang School,01600345, 0, 0, 0, 0, 0, 0, 206, 148, 165, 172, 0, 0, 0, 0, 0, 691 -NA,NA,"",2016-17,Lowell - Dr Gertrude Bailey,01600002, 28, 93, 93, 98, 97, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2016-17,Lowell - Greenhalge,01600015, 60, 89, 87, 92, 90, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2016-17,Lowell - Henry J Robinson Middle,01600330, 0, 0, 0, 0, 0, 0, 154, 139, 169, 156, 0, 0, 0, 0, 0, 618 -NA,NA,"",2016-17,Lowell - James S Daley Middle School,01600315, 0, 0, 0, 0, 0, 0, 176, 174, 169, 177, 0, 0, 0, 0, 0, 696 -NA,NA,"",2016-17,Lowell - James Sullivan Middle School,01600340, 0, 0, 0, 0, 0, 0, 175, 153, 172, 170, 0, 0, 0, 0, 0, 670 -NA,NA,"",2016-17,Lowell - John J Shaughnessy,01600050, 32, 85, 91, 90, 93, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2016-17,Lowell - Joseph McAvinnue,01600010, 30, 96, 82, 100, 94, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 496 -NA,NA,"",2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 0, 0, 0, 0, 0, 0, 166, 148, 181, 178, 0, 0, 0, 0, 0, 673 -NA,NA,"",2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 0, 0, 0, 1, 1, 4, 2, 4, 6, 0, 0, 0, 0, 0, 0, 18 -NA,NA,"",2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 8, 9, 5, 9, 0, 33 -NA,NA,"",2016-17,Lowell - Lowell High,01600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 839, 763, 784, 721, 38," 3,145" -NA,NA,"",2016-17,Lowell - Moody Elementary,01600027, 27, 47, 39, 45, 48, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 249 -NA,NA,"",2016-17,Lowell - Pawtucketville Memorial,01600036, 31, 93, 95, 98, 96, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2016-17,Lowell - Peter W Reilly,01600040, 0, 96, 111, 103, 123, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2016-17,Lowell - Pyne Arts,01600018, 32, 49, 49, 49, 53, 48, 60, 55, 50, 53, 0, 0, 0, 0, 0, 498 -NA,NA,"",2016-17,Lowell - Rogers STEM Academy,01600005, 57, 91, 102, 106, 102, 94, 55, 0, 0, 0, 0, 0, 0, 0, 0, 607 -NA,NA,"",2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 39, 92, 83, 91, 89, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2016-17,Lowell - The Career Academy,01600515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 20, 38, 18, 43, 0, 119 -NA,NA,"",2016-17,Lowell - Washington,01600055, 27, 40, 43, 48, 51, 49, 0, 0, 0, 0, 0, 0, 0, 0, 0, 258 -NA,NA,"",2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 40, 97, 88, 95, 97, 86, 89, 84, 70, 71, 0, 0, 0, 0, 0, 817 -NA,NA,"",2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 30, 16, 22, 0, 94 -NA,NA,"",2016-17,Ludlow - Chapin Street Elementary School,01610020, 0, 0, 0, 156, 190, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2016-17,Ludlow - East Street Elementary School,01610010, 74, 147, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2016-17,Ludlow - Ludlow Senior High,01610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 236, 209, 209, 4, 895 -NA,NA,"",2016-17,Ludlow - Paul R Baird Middle,01610305, 0, 0, 0, 0, 0, 0, 0, 207, 242, 235, 0, 0, 0, 0, 0, 684 -NA,NA,"",2016-17,Ludlow - Veterans Park Elementary,01610023, 0, 0, 0, 0, 0, 186, 180, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2016-17,Lunenburg - Lunenburg High,01620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 112, 114, 106, 101, 6, 439 -NA,NA,"",2016-17,Lunenburg - Lunenburg Middle School,01620305, 0, 0, 0, 0, 0, 0, 0, 120, 145, 123, 0, 0, 0, 0, 0, 388 -NA,NA,"",2016-17,Lunenburg - Lunenburg Primary School,01620010, 41, 118, 111, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 0, 0, 0, 0, 134, 125, 141, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2016-17,Lynn - A Drewicz Elementary,01630016, 0, 61, 73, 90, 117, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2016-17,Lynn - Aborn,01630011, 0, 31, 41, 45, 56, 45, 41, 0, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2016-17,Lynn - Breed Middle School,01630405, 0, 0, 0, 0, 0, 0, 0, 452, 447, 397, 0, 0, 0, 0, 0," 1,296" -NA,NA,"",2016-17,Lynn - Brickett Elementary,01630020, 0, 0, 42, 67, 64, 56, 53, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2016-17,Lynn - Capt William G Shoemaker,01630090, 13, 54, 46, 58, 52, 58, 31, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2016-17,Lynn - Classical High,01630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 401, 441, 382, 338, 7," 1,569" -NA,NA,"",2016-17,Lynn - Cobbet Elementary,01630035, 0, 111, 106, 91, 105, 110, 100, 0, 0, 0, 0, 0, 0, 0, 0, 623 -NA,NA,"",2016-17,Lynn - E J Harrington,01630045, 85, 87, 96, 115, 101, 93, 90, 0, 0, 0, 0, 0, 0, 0, 0, 667 -NA,NA,"",2016-17,Lynn - Early Childhood Center,01630004, 66, 224, 1, 2, 1, 2, 2, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2016-17,Lynn - Edward A Sisson,01630095, 0, 65, 79, 69, 74, 77, 73, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 0, 0, 0, 0, 0, 0, 0, 0, 11, 17, 195, 29, 30, 26, 0, 308 -NA,NA,"",2016-17,Lynn - Hood,01630055, 0, 59, 79, 96, 71, 90, 80, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2016-17,Lynn - Ingalls,01630060, 0, 109, 109, 111, 124, 117, 121, 0, 0, 0, 0, 0, 0, 0, 0, 691 -NA,NA,"",2016-17,Lynn - Julia F Callahan,01630030, 51, 54, 69, 62, 74, 83, 81, 0, 0, 0, 0, 0, 0, 0, 0, 474 -NA,NA,"",2016-17,Lynn - Lincoln-Thomson,01630070, 0, 38, 30, 49, 46, 51, 34, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2016-17,Lynn - Lynn English High,01630510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 440, 385, 433, 338, 2," 1,598" -NA,NA,"",2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 43, 0, 0, 0, 0, 0, 0, 3, 0, 0, 264, 229, 214, 187, 29, 969 -NA,NA,"",2016-17,Lynn - Lynn Woods,01630075, 0, 20, 22, 34, 23, 29, 35, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2016-17,Lynn - Pickering Middle,01630420, 0, 0, 0, 0, 0, 0, 0, 209, 202, 207, 0, 0, 0, 0, 0, 618 -NA,NA,"",2016-17,Lynn - Robert L Ford,01630050, 0, 0, 118, 83, 100, 115, 92, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2016-17,Lynn - Sewell-Anderson,01630085, 0, 39, 47, 57, 51, 54, 38, 0, 0, 0, 0, 0, 0, 0, 0, 286 -NA,NA,"",2016-17,Lynn - Thurgood Marshall Mid,01630305, 0, 0, 0, 0, 0, 0, 0, 387, 423, 353, 0, 0, 0, 0, 0," 1,163" -NA,NA,"",2016-17,Lynn - Tracy,01630100, 0, 0, 86, 92, 85, 94, 67, 0, 0, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2016-17,Lynn - Washington Elementary School,01630005, 0, 76, 90, 81, 91, 82, 48, 0, 0, 0, 0, 0, 0, 0, 0, 468 -NA,NA,"",2016-17,Lynn - William R Fallon,01630080, 0, 1, 4, 9, 11, 4, 10, 9, 0, 0, 0, 0, 0, 0, 0, 48 -NA,NA,"",2016-17,Lynn - Wm P Connery,01630040, 29, 94, 100, 96, 116, 106, 90, 0, 0, 0, 0, 0, 0, 0, 0, 631 -NA,NA,"",2016-17,Lynnfield - Huckleberry Hill,01640010, 0, 82, 92, 81, 78, 80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 413 -NA,NA,"",2016-17,Lynnfield - Lynnfield High,01640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 168, 160, 154, 0, 628 -NA,NA,"",2016-17,Lynnfield - Lynnfield Middle School,01640405, 0, 0, 0, 0, 0, 0, 174, 157, 177, 190, 0, 0, 0, 0, 0, 698 -NA,NA,"",2016-17,Lynnfield - Lynnfield Preschool,01640005, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 47 -NA,NA,"",2016-17,Lynnfield - Summer Street,01640020, 0, 68, 86, 97, 81, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 49, 48, 0, 97 -NA,NA,"",2016-17,Malden - Beebe,01650003, 0, 114, 102, 108, 91, 116, 95, 88, 85, 84, 0, 0, 0, 0, 0, 883 -NA,NA,"",2016-17,Malden - Ferryway,01650013, 0, 98, 96, 107, 102, 126, 92, 94, 94, 103, 0, 0, 0, 0, 0, 912 -NA,NA,"",2016-17,Malden - Forestdale,01650027, 0, 59, 64, 76, 68, 81, 63, 64, 51, 56, 0, 0, 0, 0, 0, 582 -NA,NA,"",2016-17,Malden - Linden,01650047, 0, 89, 95, 107, 106, 116, 105, 103, 87, 89, 0, 0, 0, 0, 0, 897 -NA,NA,"",2016-17,Malden - Malden Early Learning Center,01650049, 299, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2016-17,Malden - Malden High,01650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 473, 447, 484, 429, 0," 1,833" -NA,NA,"",2016-17,Malden - Salemwood,01650057, 0, 126, 158, 141, 136, 134, 132, 130, 146, 114, 0, 0, 0, 0, 0," 1,217" -NA,NA,"",2016-17,Manchester Essex Regional - Essex Elementary,06980020, 0, 29, 28, 37, 46, 43, 42, 0, 0, 0, 0, 0, 0, 0, 0, 225 -NA,NA,"",2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 103, 98, 108, 0, 424 -NA,NA,"",2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0, 0, 0, 0, 0, 0, 0, 123, 132, 131, 0, 0, 0, 0, 0, 386 -NA,NA,"",2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 12, 41, 39, 51, 66, 79, 73, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2016-17,Mansfield - Everett W Robinson,01670007, 0, 232, 245, 233, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 710 -NA,NA,"",2016-17,Mansfield - Harold L Qualters Middle,01670035, 0, 0, 0, 0, 0, 0, 0, 318, 318, 376, 0, 0, 0, 0, 0," 1,012" -NA,NA,"",2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0, 0, 0, 0, 270, 268, 297, 0, 0, 0, 0, 0, 0, 0, 0, 835 -NA,NA,"",2016-17,Mansfield - Mansfield High,01670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 334, 311, 343, 8," 1,315" -NA,NA,"",2016-17,Mansfield - Roland Green School,01670003, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 86 -NA,NA,"",2016-17,Marblehead - Elbridge Gerry,01680015, 0, 74, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2016-17,Marblehead - Glover,01680020, 36, 93, 65, 81, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2016-17,Marblehead - L H Coffin,01680010, 0, 0, 0, 79, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167 -NA,NA,"",2016-17,Marblehead - Malcolm L Bell,01680005, 0, 64, 58, 78, 67, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 267 -NA,NA,"",2016-17,Marblehead - Marblehead High,01680505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 267, 245, 278, 6," 1,051" -NA,NA,"",2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 0, 0, 0, 0, 0, 0, 0, 0, 246, 257, 0, 0, 0, 0, 0, 503 -NA,NA,"",2016-17,Marblehead - Village School,01680016, 0, 0, 0, 0, 0, 229, 212, 227, 0, 0, 0, 0, 0, 0, 0, 668 -NA,NA,"",2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0, 0, 0, 0, 0, 49, 47, 50, 44, 40, 0, 0, 0, 0, 0, 230 -NA,NA,"",2016-17,Marion - Sippican,01690005, 27, 51, 65, 53, 63, 68, 63, 68, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0, 0, 0, 0, 0, 0, 364, 309, 294, 318, 0, 0, 0, 0, 0," 1,285" -NA,NA,"",2016-17,Marlborough - Charles Jaworek School,01700030, 0, 177, 183, 164, 160, 152, 0, 0, 0, 0, 0, 0, 0, 0, 0, 836 -NA,NA,"",2016-17,Marlborough - Early Childhood Center,01700006, 164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 164 -NA,NA,"",2016-17,Marlborough - Francis J Kane,01700008, 0, 114, 106, 146, 123, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 621 -NA,NA,"",2016-17,Marlborough - Marlborough High,01700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 248, 292, 290, 252, 9," 1,091" -NA,NA,"",2016-17,Marlborough - Richer,01700025, 0, 87, 106, 105, 117, 113, 0, 0, 0, 0, 0, 0, 0, 0, 0, 528 -NA,NA,"",2016-17,Marshfield - Daniel Webster,01710015, 75, 50, 61, 47, 45, 64, 37, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2016-17,Marshfield - Eames Way School,01710005, 0, 47, 41, 42, 37, 38, 49, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2016-17,Marshfield - Furnace Brook Middle,01710310, 0, 0, 0, 0, 0, 0, 0, 345, 347, 324, 0, 0, 0, 0, 0," 1,016" -NA,NA,"",2016-17,Marshfield - Gov Edward Winslow,01710020, 0, 66, 72, 53, 69, 92, 71, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2016-17,Marshfield - Marshfield High,01710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 347, 358, 354, 311, 0," 1,370" -NA,NA,"",2016-17,Marshfield - Martinson Elementary,01710025, 54, 60, 51, 68, 67, 80, 62, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2016-17,Marshfield - South River,01710010, 0, 55, 48, 66, 61, 74, 57, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 167, 170, 151, 169, 4, 661 -NA,NA,"",2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 0, 14, 15, 16, 15, 15, 18, 14, 14, 15, 3, 7, 15, 12, 0, 173 -NA,NA,"",2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 0, 62, 63, 59, 61, 61, 60, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2016-17,Masconomet - Masconomet Regional High School,07050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285, 278, 289, 335, 1," 1,188" -NA,NA,"",2016-17,Masconomet - Masconomet Regional Middle School,07050405, 0, 0, 0, 0, 0, 0, 0, 0, 316, 333, 0, 0, 0, 0, 0, 649 -NA,NA,"",2016-17,Mashpee - Kenneth Coombs School,01720005, 30, 73, 116, 95, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 314 -NA,NA,"",2016-17,Mashpee - Mashpee High,01720505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113, 105, 95, 102, 0, 415 -NA,NA,"",2016-17,Mashpee - Mashpee Middle School,01720020, 0, 0, 0, 0, 0, 0, 0, 0, 129, 148, 0, 0, 0, 0, 0, 277 -NA,NA,"",2016-17,Mashpee - Quashnet School,01720035, 0, 0, 0, 0, 121, 134, 102, 137, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 0, 23, 32, 40, 59, 46, 39, 49, 72, 70, 81, 75, 51, 30, 0, 667 -NA,NA,"",2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 54, 72, 96, 95, 73, 73, 93, 96, 92, 94, 93, 72, 81, 61, 0," 1,145" -NA,NA,"",2016-17,Mattapoisett - Center,01730005, 21, 46, 55, 52, 61, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2016-17,Mattapoisett - Old Hammondtown,01730010, 0, 0, 0, 0, 0, 67, 73, 72, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2016-17,Maynard - Fowler School,01740305, 0, 0, 0, 0, 0, 118, 112, 91, 114, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2016-17,Maynard - Green Meadow,01740010, 50, 122, 109, 103, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 502 -NA,NA,"",2016-17,Maynard - Maynard High,01740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 111, 94, 105, 101, 91, 0, 502 -NA,NA,"",2016-17,Medfield - Dale Street,01750005, 0, 0, 0, 0, 0, 178, 191, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2016-17,Medfield - Medfield Senior High,01750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 196, 220, 218, 1, 842 -NA,NA,"",2016-17,Medfield - Memorial School,01750003, 60, 176, 183, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419 -NA,NA,"",2016-17,Medfield - Ralph Wheelock School,01750007, 0, 0, 0, 174, 174, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2016-17,Medfield - Thomas Blake Middle,01750305, 0, 0, 0, 0, 0, 0, 0, 215, 207, 204, 0, 0, 0, 0, 0, 626 -NA,NA,"",2016-17,Medford - Brooks School,01760130, 29, 78, 83, 72, 79, 67, 89, 0, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2016-17,Medford - Christopher Columbus,01760140, 11, 83, 64, 62, 70, 57, 79, 0, 0, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2016-17,Medford - Curtis-Tufts,01760510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 7, 11, 0, 22 -NA,NA,"",2016-17,Medford - John J McGlynn Elementary School,01760068, 22, 74, 90, 93, 90, 93, 82, 0, 0, 0, 0, 0, 0, 0, 0, 544 -NA,NA,"",2016-17,Medford - John J. McGlynn Middle School,01760320, 0, 0, 0, 0, 0, 0, 0, 153, 161, 162, 0, 0, 0, 0, 0, 476 -NA,NA,"",2016-17,Medford - Madeleine Dugger Andrews,01760315, 0, 0, 0, 0, 0, 0, 0, 181, 167, 158, 0, 0, 0, 0, 0, 506 -NA,NA,"",2016-17,Medford - Medford High,01760505, 48, 0, 0, 0, 0, 0, 0, 0, 0, 0, 283, 269, 309, 261, 4," 1,174" -NA,NA,"",2016-17,Medford - Medford Vocational Technical High,01760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 51, 94, 61, 50, 1, 257 -NA,NA,"",2016-17,Medford - Milton Fuller Roberts,01760150, 12, 84, 82, 111, 119, 88, 89, 0, 0, 0, 0, 0, 0, 0, 0, 585 -NA,NA,"",2016-17,Medway - Burke/Memorial Elementary School,01770015, 0, 0, 0, 156, 174, 171, 0, 0, 0, 0, 0, 0, 0, 0, 0, 501 -NA,NA,"",2016-17,Medway - John D Mc Govern Elementary,01770013, 36, 144, 163, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2016-17,Medway - Medway High,01770505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 178, 200, 190, 0, 762 -NA,NA,"",2016-17,Medway - Medway Middle,01770305, 0, 0, 0, 0, 0, 0, 165, 176, 195, 174, 0, 0, 0, 0, 0, 710 -NA,NA,"",2016-17,Melrose - Early Childhood Center,01780003, 290, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 290 -NA,NA,"",2016-17,Melrose - Herbert Clark Hoover,01780017, 0, 46, 42, 41, 41, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2016-17,Melrose - Horace Mann,01780025, 0, 47, 45, 46, 41, 47, 39, 0, 0, 0, 0, 0, 0, 0, 0, 265 -NA,NA,"",2016-17,Melrose - Lincoln,01780020, 0, 77, 89, 69, 66, 62, 67, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2016-17,Melrose - Melrose High,01780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255, 255, 234, 242, 2, 988 -NA,NA,"",2016-17,Melrose - Melrose Middle,01780305, 0, 0, 0, 0, 0, 0, 0, 245, 261, 266, 0, 0, 0, 0, 0, 772 -NA,NA,"",2016-17,Melrose - Roosevelt,01780035, 0, 79, 86, 70, 66, 65, 63, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2016-17,Melrose - Winthrop,01780050, 0, 63, 66, 63, 62, 58, 61, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2016-17,Mendon-Upton - Henry P Clough,07100179, 24, 65, 87, 73, 85, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2016-17,Mendon-Upton - Memorial School,07100001, 29, 71, 62, 79, 106, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2016-17,Mendon-Upton - Miscoe Hill School,07100015, 0, 0, 0, 0, 0, 0, 186, 196, 201, 197, 0, 0, 0, 0, 0, 780 -NA,NA,"",2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 161, 149, 122, 10, 593 -NA,NA,"",2016-17,Methuen - Comprehensive Grammar School,01810050, 24, 110, 105, 112, 117, 127, 107, 123, 147, 143, 0, 0, 0, 0, 0," 1,115" -NA,NA,"",2016-17,Methuen - Donald P Timony Grammar,01810060, 43, 128, 136, 153, 146, 152, 147, 142, 151, 151, 0, 0, 0, 0, 0," 1,349" -NA,NA,"",2016-17,Methuen - Marsh Grammar School,01810030, 46, 134, 126, 125, 136, 129, 136, 141, 128, 141, 0, 0, 0, 0, 0," 1,242" -NA,NA,"",2016-17,Methuen - Methuen High,01810505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 481, 499, 477, 411, 23," 1,891" -NA,NA,"",2016-17,Methuen - Tenney Grammar School,01810055, 24, 123, 146, 124, 144, 150, 145, 154, 154, 135, 0, 0, 0, 0, 0," 1,299" -NA,NA,"",2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 0, 0, 103, 100, 121, 130, 124, 0, 0, 0, 0, 0, 0, 0, 0, 578 -NA,NA,"",2016-17,Middleborough - John T. Nichols Middle,01820305, 0, 0, 0, 0, 0, 0, 0, 245, 257, 272, 0, 0, 0, 0, 0, 774 -NA,NA,"",2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 0, 0, 101, 110, 125, 125, 125, 0, 0, 0, 0, 0, 0, 0, 0, 586 -NA,NA,"",2016-17,Middleborough - Memorial Early Childhood Center,01820011, 44, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2016-17,Middleborough - Middleborough High,01820505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 185, 165, 174, 170, 0, 694 -NA,NA,"",2016-17,Middleton - Fuller Meadow,01840003, 0, 78, 65, 78, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 221 -NA,NA,"",2016-17,Middleton - Howe-Manning,01840005, 75, 0, 0, 0, 103, 84, 107, 109, 0, 0, 0, 0, 0, 0, 0, 478 -NA,NA,"",2016-17,Milford - Brookside,01850065, 0, 157, 170, 172, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2016-17,Milford - Memorial,01850010, 0, 161, 156, 149, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2016-17,Milford - Milford High,01850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277, 281, 297, 269, 11," 1,135" -NA,NA,"",2016-17,Milford - Shining Star Early Childhood Center,01850075, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2016-17,Milford - Stacy Middle,01850305, 0, 0, 0, 0, 0, 0, 0, 356, 299, 313, 0, 0, 0, 0, 0, 968 -NA,NA,"",2016-17,Milford - Woodland,01850090, 0, 0, 0, 0, 319, 331, 333, 0, 0, 0, 0, 0, 0, 0, 0, 983 -NA,NA,"",2016-17,Millbury - Elmwood Street,01860017, 53, 107, 121, 143, 139, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 563 -NA,NA,"",2016-17,Millbury - Millbury Junior/Senior High,01860505, 0, 0, 0, 0, 0, 0, 0, 0, 140, 139, 120, 106, 114, 104, 4, 727 -NA,NA,"",2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 0, 0, 0, 0, 0, 154, 146, 137, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2016-17,Millis - Clyde F Brown,01870005, 73, 85, 77, 105, 74, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 504 -NA,NA,"",2016-17,Millis - Millis High School,01870505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 100, 93, 109, 88, 0, 390 -NA,NA,"",2016-17,Millis - Millis Middle,01870020, 0, 0, 0, 0, 0, 0, 105, 107, 105, 112, 0, 0, 0, 0, 0, 429 -NA,NA,"",2016-17,Milton - Charles S Pierce Middle,01890410, 0, 0, 0, 0, 0, 0, 0, 327, 289, 299, 0, 0, 0, 0, 0, 915 -NA,NA,"",2016-17,Milton - Collicot,01890005, 83, 118, 99, 120, 99, 94, 92, 0, 0, 0, 0, 0, 0, 0, 0, 705 -NA,NA,"",2016-17,Milton - Cunningham School,01890007, 0, 91, 77, 88, 75, 100, 74, 0, 0, 0, 0, 0, 0, 0, 0, 505 -NA,NA,"",2016-17,Milton - Glover,01890010, 0, 87, 95, 93, 114, 94, 106, 0, 0, 0, 0, 0, 0, 0, 0, 589 -NA,NA,"",2016-17,Milton - Milton High,01890505, 12, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240, 242, 262, 244, 1," 1,001" -NA,NA,"",2016-17,Milton - Tucker,01890020, 40, 69, 66, 68, 63, 65, 64, 0, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 136, 143, 174, 0, 582 -NA,NA,"",2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 45, 37, 32, 38, 33, 30, 19, 25, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2016-17,Mohawk Trail - Colrain Central,07170010, 12, 13, 19, 19, 9, 13, 17, 10, 0, 0, 0, 0, 0, 0, 0, 112 -NA,NA,"",2016-17,Mohawk Trail - Heath Elementary,07170015, 7, 5, 6, 2, 2, 2, 4, 1, 0, 0, 0, 0, 0, 0, 0, 29 -NA,NA,"",2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 0, 0, 0, 0, 0, 0, 0, 0, 76, 92, 58, 67, 67, 58, 4, 422 -NA,NA,"",2016-17,Mohawk Trail - Sanderson Academy,07170020, 41, 19, 12, 18, 14, 17, 11, 11, 0, 0, 0, 0, 0, 0, 0, 143 -NA,NA,"",2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 20, 44, 42, 57, 48, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 273 -NA,NA,"",2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 48, 98, 95, 103, 97, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 119, 110, 111, 120, 9, 599 -NA,NA,"",2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0, 0, 0, 0, 0, 0, 149, 142, 135, 0, 0, 0, 0, 0, 0, 426 -NA,NA,"",2016-17,Monson - Granite Valley Middle,01910310, 0, 0, 0, 0, 0, 0, 67, 56, 98, 92, 0, 0, 0, 0, 0, 313 -NA,NA,"",2016-17,Monson - Monson High School,01910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 63, 73, 68, 83, 0, 287 -NA,NA,"",2016-17,Monson - Quarry Hill Community School,01910025, 41, 72, 76, 63, 65, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368, 357, 342, 362, 0," 1,429" -NA,NA,"",2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 0, 0, 0, 0, 0, 0, 0, 0, 90, 103, 89, 100, 84, 93, 3, 562 -NA,NA,"",2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0, 124, 120, 120, 129, 135, 143, 126, 105, 97, 106, 95, 90, 96, 0," 1,486" -NA,NA,"",2016-17,Nahant - Johnson,01960010, 19, 17, 23, 18, 12, 22, 17, 14, 0, 0, 0, 0, 0, 0, 0, 142 -NA,NA,"",2016-17,Nantucket - Cyrus Peirce,01970010, 0, 0, 0, 0, 0, 0, 0, 120, 103, 105, 0, 0, 0, 0, 0, 328 -NA,NA,"",2016-17,Nantucket - Nantucket Elementary,01970005, 35, 84, 117, 121, 134, 112, 114, 0, 0, 0, 0, 0, 0, 0, 0, 717 -NA,NA,"",2016-17,Nantucket - Nantucket High,01970505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 144, 137, 111, 2, 538 -NA,NA,"",2016-17,Narragansett - Baldwinville Elementary,07200005, 0, 0, 0, 100, 102, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 277 -NA,NA,"",2016-17,Narragansett - Narragansett Middle,07200305, 0, 0, 0, 0, 0, 0, 105, 99, 111, 106, 0, 0, 0, 0, 0, 421 -NA,NA,"",2016-17,Narragansett - Narragansett Regional High,07200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92, 95, 106, 78, 1, 372 -NA,NA,"",2016-17,Narragansett - Phillipston Memorial,07200003, 66, 22, 16, 17, 19, 23, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2016-17,Narragansett - Templeton Center,07200020, 0, 77, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2016-17,Nashoba - Center School,07250020, 39, 81, 81, 106, 96, 99, 107, 0, 0, 0, 0, 0, 0, 0, 0, 609 -NA,NA,"",2016-17,Nashoba - Florence Sawyer School,07250025, 56, 67, 82, 66, 75, 89, 62, 82, 97, 98, 0, 0, 0, 0, 0, 774 -NA,NA,"",2016-17,Nashoba - Hale,07250310, 0, 0, 0, 0, 0, 0, 0, 86, 114, 87, 0, 0, 0, 0, 0, 287 -NA,NA,"",2016-17,Nashoba - Luther Burbank Middle School,07250305, 0, 0, 0, 0, 0, 0, 0, 78, 75, 94, 0, 0, 0, 0, 0, 247 -NA,NA,"",2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 43, 62, 66, 81, 67, 73, 93, 0, 0, 0, 0, 0, 0, 0, 0, 485 -NA,NA,"",2016-17,Nashoba - Nashoba Regional,07250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 224, 253, 274, 247, 13," 1,011" -NA,NA,"",2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 188, 174, 193, 0, 732 -NA,NA,"",2016-17,Natick - Bennett-Hemenway,01980005, 0, 115, 119, 124, 143, 123, 0, 0, 0, 0, 0, 0, 0, 0, 0, 624 -NA,NA,"",2016-17,Natick - Brown,01980010, 0, 121, 106, 96, 109, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2016-17,Natick - J F Kennedy Middle School,01980305, 0, 0, 0, 0, 0, 0, 162, 164, 155, 168, 0, 0, 0, 0, 0, 649 -NA,NA,"",2016-17,Natick - Johnson,01980031, 0, 45, 45, 38, 48, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2016-17,Natick - Lilja Elementary,01980035, 0, 74, 86, 86, 88, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2016-17,Natick - Memorial,01980043, 0, 93, 77, 98, 77, 89, 0, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2016-17,Natick - Natick High,01980505, 125, 0, 0, 0, 0, 0, 0, 0, 0, 0, 423, 364, 383, 369, 0," 1,664" -NA,NA,"",2016-17,Natick - Wilson Middle,01980310, 0, 0, 0, 0, 0, 0, 252, 236, 225, 234, 0, 0, 0, 0, 0, 947 -NA,NA,"",2016-17,Nauset - Nauset Regional High,06600505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219, 237, 217, 251, 5, 929 -NA,NA,"",2016-17,Nauset - Nauset Regional Middle,06600305, 0, 0, 0, 0, 0, 0, 0, 159, 183, 193, 0, 0, 0, 0, 0, 535 -NA,NA,"",2016-17,Needham - Broadmeadow,01990005, 0, 71, 89, 84, 110, 107, 92, 0, 0, 0, 0, 0, 0, 0, 0, 553 -NA,NA,"",2016-17,Needham - High Rock School,01990410, 0, 0, 0, 0, 0, 0, 0, 421, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2016-17,Needham - Hillside Elementary,01990035, 0, 76, 82, 71, 87, 79, 77, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2016-17,Needham - John Eliot,01990020, 0, 57, 64, 57, 73, 74, 67, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2016-17,Needham - Needham High,01990505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 416, 446, 396, 401, 0," 1,659" -NA,NA,"",2016-17,Needham - Newman Elementary,01990050, 80, 88, 107, 103, 123, 106, 113, 0, 0, 0, 0, 0, 0, 0, 0, 720 -NA,NA,"",2016-17,Needham - Pollard Middle,01990405, 0, 0, 0, 0, 0, 0, 0, 0, 445, 431, 0, 0, 0, 0, 0, 876 -NA,NA,"",2016-17,Needham - William Mitchell,01990040, 0, 77, 91, 82, 80, 89, 76, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 41, 40, 40, 40, 44, 44, 66, 60, 38, 44, 0, 0, 0, 0, 0, 457 -NA,NA,"",2016-17,New Bedford - Abraham Lincoln,02010095, 0, 119, 125, 119, 155, 138, 127, 0, 0, 0, 0, 0, 0, 0, 0, 783 -NA,NA,"",2016-17,New Bedford - Alfred J Gomes,02010063, 29, 102, 96, 98, 77, 75, 71, 0, 0, 0, 0, 0, 0, 0, 0, 548 -NA,NA,"",2016-17,New Bedford - Betsey B Winslow,02010140, 0, 47, 48, 66, 52, 58, 26, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2016-17,New Bedford - Carlos Pacheco,02010105, 18, 55, 60, 64, 61, 74, 49, 0, 0, 0, 0, 0, 0, 0, 0, 381 -NA,NA,"",2016-17,New Bedford - Casimir Pulaski,02010123, 127, 97, 95, 107, 96, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 721 -NA,NA,"",2016-17,New Bedford - Charles S Ashley,02010010, 0, 54, 55, 50, 49, 51, 72, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 29, 56, 36, 44, 43, 45, 36, 0, 0, 0, 0, 0, 0, 0, 0, 289 -NA,NA,"",2016-17,New Bedford - Ellen R Hathaway,02010075, 0, 35, 49, 53, 58, 51, 42, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2016-17,New Bedford - Elwyn G Campbell,02010020, 48, 45, 36, 46, 27, 38, 35, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2016-17,New Bedford - Hayden/McFadden,02010078, 45, 113, 100, 93, 101, 87, 83, 0, 0, 0, 0, 0, 0, 0, 0, 622 -NA,NA,"",2016-17,New Bedford - James B Congdon,02010040, 0, 48, 67, 68, 62, 71, 48, 0, 0, 0, 0, 0, 0, 0, 0, 364 -NA,NA,"",2016-17,New Bedford - Jireh Swift,02010130, 0, 23, 41, 48, 40, 44, 37, 0, 0, 0, 0, 0, 0, 0, 0, 233 -NA,NA,"",2016-17,New Bedford - John Avery Parker,02010115, 26, 55, 52, 49, 41, 44, 30, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2016-17,New Bedford - John B Devalles,02010050, 0, 62, 59, 58, 57, 60, 42, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2016-17,New Bedford - John Hannigan,02010070, 64, 47, 64, 53, 51, 46, 48, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2016-17,New Bedford - Keith Middle School,02010405, 0, 0, 0, 0, 0, 0, 0, 296, 296, 293, 0, 0, 0, 0, 0, 885 -NA,NA,"",2016-17,New Bedford - New Bedford High,02010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 575, 527, 396, 516, 0," 2,014" -NA,NA,"",2016-17,New Bedford - Normandin Middle School,02010410, 0, 0, 0, 0, 0, 0, 0, 406, 390, 329, 0, 0, 0, 0, 0," 1,125" -NA,NA,"",2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 25, 39, 43, 33, 32, 44, 31, 0, 0, 0, 0, 0, 0, 0, 0, 247 -NA,NA,"",2016-17,New Bedford - Roosevelt Middle School,02010415, 0, 0, 0, 0, 0, 0, 0, 254, 271, 267, 0, 0, 0, 0, 0, 792 -NA,NA,"",2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 64, 115, 130, 109, 147, 128, 123, 0, 0, 0, 0, 0, 0, 0, 0, 816 -NA,NA,"",2016-17,New Bedford - Thomas R Rodman,02010125, 0, 43, 27, 38, 30, 40, 39, 0, 0, 0, 0, 0, 0, 0, 0, 217 -NA,NA,"",2016-17,New Bedford - Trinity Day Academy,02010510, 0, 0, 0, 0, 0, 0, 0, 3, 8, 9, 13, 17, 10, 3, 0, 63 -NA,NA,"",2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 0, 0, 0, 0, 0, 0, 0, 1, 6, 15, 26, 24, 27, 11, 0, 110 -NA,NA,"",2016-17,New Bedford - William H Taylor,02010135, 0, 43, 44, 47, 39, 27, 31, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 0, 0, 0, 0, 0, 0, 0, 105, 104, 104, 0, 0, 0, 0, 0, 313 -NA,NA,"",2016-17,New Salem-Wendell - Swift River,07280015, 31, 17, 18, 17, 21, 20, 21, 24, 0, 0, 0, 0, 0, 0, 0, 169 -NA,NA,"",2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 0, 0, 0, 0, 0, 146, 185, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 72, 132, 132, 134, 173, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 643 -NA,NA,"",2016-17,Newburyport - Newburyport High,02040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 180, 187, 192, 212, 8, 779 -NA,NA,"",2016-17,Newburyport - Rupert A Nock Middle,02040305, 0, 0, 0, 0, 0, 0, 0, 188, 163, 191, 0, 0, 0, 0, 0, 542 -NA,NA,"",2016-17,Newton - A E Angier,02070005, 0, 78, 66, 79, 71, 70, 57, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2016-17,Newton - Bigelow Middle,02070305, 0, 0, 0, 0, 0, 0, 0, 178, 184, 163, 0, 0, 0, 0, 0, 525 -NA,NA,"",2016-17,Newton - Bowen,02070015, 0, 60, 61, 60, 95, 68, 73, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2016-17,Newton - C C Burr,02070020, 0, 48, 68, 74, 80, 62, 70, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2016-17,Newton - Cabot,02070025, 0, 52, 56, 76, 69, 76, 71, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2016-17,Newton - Charles E Brown Middle,02070310, 0, 0, 0, 0, 0, 0, 0, 241, 281, 252, 0, 0, 0, 0, 0, 774 -NA,NA,"",2016-17,Newton - Countryside,02070040, 0, 63, 77, 81, 66, 73, 76, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2016-17,Newton - F A Day Middle,02070315, 0, 0, 0, 0, 0, 0, 0, 309, 316, 294, 0, 0, 0, 0, 0, 919 -NA,NA,"",2016-17,Newton - Franklin,02070055, 0, 79, 67, 89, 77, 64, 70, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2016-17,Newton - Horace Mann,02070075, 0, 62, 67, 62, 69, 71, 86, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2016-17,Newton - John Ward,02070120, 0, 49, 44, 54, 56, 58, 51, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2016-17,Newton - Lincoln-Eliot,02070070, 0, 62, 55, 57, 63, 51, 58, 0, 0, 0, 0, 0, 0, 0, 0, 346 -NA,NA,"",2016-17,Newton - Mason-Rice,02070080, 0, 67, 90, 99, 93, 90, 68, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2016-17,Newton - Memorial Spaulding,02070105, 0, 71, 84, 85, 74, 72, 68, 0, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2016-17,Newton - Newton Early Childhood Center,02070108, 193, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 193 -NA,NA,"",2016-17,Newton - Newton North High,02070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 521, 537, 559, 479, 30," 2,126" -NA,NA,"",2016-17,Newton - Newton South High,02070510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 483, 458, 459, 451, 0," 1,851" -NA,NA,"",2016-17,Newton - Oak Hill Middle,02070320, 0, 0, 0, 0, 0, 0, 0, 233, 189, 217, 0, 0, 0, 0, 0, 639 -NA,NA,"",2016-17,Newton - Peirce,02070100, 0, 38, 42, 60, 44, 53, 62, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2016-17,Newton - Underwood,02070115, 0, 47, 44, 65, 48, 55, 54, 0, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2016-17,Newton - Williams,02070125, 0, 44, 65, 44, 43, 58, 39, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2016-17,Newton - Zervas,02070130, 0, 65, 56, 57, 57, 55, 47, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2016-17,Norfolk - Freeman-Kennedy School,02080005, 0, 0, 0, 0, 142, 109, 125, 119, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2016-17,Norfolk - H Olive Day,02080015, 60, 130, 146, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 133, 146, 134, 121, 0, 534 -NA,NA,"",2016-17,North Adams - Brayton,02090035, 119, 29, 27, 32, 35, 43, 33, 43, 28, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2016-17,North Adams - Colegrove Park Elementary,02090008, 0, 48, 45, 36, 44, 49, 52, 37, 25, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2016-17,North Adams - Drury High,02090505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 86, 90, 67, 86, 7, 439 -NA,NA,"",2016-17,North Adams - Greylock,02090015, 0, 45, 35, 31, 42, 39, 49, 25, 36, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2016-17,North Andover - Annie L Sargent School,02110018, 0, 92, 81, 97, 94, 92, 96, 0, 0, 0, 0, 0, 0, 0, 0, 552 -NA,NA,"",2016-17,North Andover - Atkinson,02110001, 123, 70, 67, 73, 72, 81, 63, 0, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2016-17,North Andover - Franklin,02110010, 0, 71, 74, 81, 77, 74, 100, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2016-17,North Andover - Kittredge,02110015, 0, 47, 42, 51, 50, 53, 53, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2016-17,North Andover - North Andover High,02110505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 315, 388, 362, 326, 0," 1,391" -NA,NA,"",2016-17,North Andover - North Andover Middle,02110305, 0, 0, 0, 0, 0, 0, 0, 348, 375, 416, 0, 0, 0, 0, 0," 1,139" -NA,NA,"",2016-17,North Andover - Thomson,02110020, 0, 62, 64, 55, 73, 53, 55, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2016-17,North Attleborough - Amvet Boulevard,02120007, 0, 37, 64, 72, 70, 72, 80, 0, 0, 0, 0, 0, 0, 0, 0, 395 -NA,NA,"",2016-17,North Attleborough - Community,02120030, 0, 60, 58, 49, 60, 60, 50, 0, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2016-17,North Attleborough - Falls,02120010, 0, 24, 58, 45, 45, 64, 46, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0, 119, 87, 91, 110, 136, 140, 0, 0, 0, 0, 0, 0, 0, 0, 683 -NA,NA,"",2016-17,North Attleborough - North Attleboro High,02120505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 290, 308, 271, 10," 1,163" -NA,NA,"",2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 136 -NA,NA,"",2016-17,North Attleborough - North Attleborough Middle,02120305, 0, 0, 0, 0, 0, 0, 0, 342, 372, 359, 0, 0, 0, 0, 0," 1,073" -NA,NA,"",2016-17,North Attleborough - Roosevelt Avenue,02120015, 0, 66, 52, 38, 51, 55, 50, 0, 0, 0, 0, 0, 0, 0, 0, 312 -NA,NA,"",2016-17,North Brookfield - North Brookfield Elementary,02150015, 23, 44, 35, 35, 46, 48, 53, 45, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2016-17,North Brookfield - North Brookfield High,02150505, 0, 0, 0, 0, 0, 0, 0, 0, 53, 31, 41, 44, 28, 33, 0, 230 -NA,NA,"",2016-17,North Middlesex - Ashby Elementary,07350010, 0, 39, 35, 46, 45, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216 -NA,NA,"",2016-17,North Middlesex - Hawthorne Brook,07350030, 0, 0, 0, 0, 0, 0, 135, 109, 125, 121, 0, 0, 0, 0, 0, 490 -NA,NA,"",2016-17,North Middlesex - Nissitissit Middle School,07350310, 0, 0, 0, 0, 0, 0, 130, 125, 122, 149, 0, 0, 0, 0, 0, 526 -NA,NA,"",2016-17,North Middlesex - North Middlesex Regional,07350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 185, 196, 206, 0, 795 -NA,NA,"",2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 10 -NA,NA,"",2016-17,North Middlesex - Spaulding Memorial,07350005, 0, 82, 85, 83, 91, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 79, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 79 -NA,NA,"",2016-17,North Middlesex - Varnum Brook,07350035, 0, 95, 107, 107, 116, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 563 -NA,NA,"",2016-17,North Reading - E Ethel Little School,02170003, 50, 40, 51, 46, 51, 35, 49, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2016-17,North Reading - J Turner Hood,02170010, 2, 55, 56, 62, 67, 54, 45, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2016-17,North Reading - L D Batchelder,02170005, 0, 64, 79, 67, 80, 89, 67, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2016-17,North Reading - North Reading High,02170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 208, 189, 223, 188, 3, 811 -NA,NA,"",2016-17,North Reading - North Reading Middle,02170305, 0, 0, 0, 0, 0, 0, 0, 191, 185, 200, 0, 0, 0, 0, 0, 576 -NA,NA,"",2016-17,Northampton - Bridge Street,02100005, 37, 47, 39, 35, 32, 39, 37, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2016-17,Northampton - Jackson Street,02100020, 0, 59, 52, 62, 62, 53, 42, 0, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2016-17,Northampton - John F Kennedy Middle School,02100410, 0, 0, 0, 0, 0, 0, 0, 210, 220, 208, 0, 0, 0, 0, 0, 638 -NA,NA,"",2016-17,Northampton - Leeds,02100025, 30, 42, 42, 55, 58, 58, 54, 0, 0, 0, 0, 0, 0, 0, 0, 339 -NA,NA,"",2016-17,Northampton - Northampton High,02100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 227, 213, 213, 219, 2, 874 -NA,NA,"",2016-17,Northampton - R. K. Finn Ryan Road,02100029, 0, 37, 30, 35, 36, 47, 43, 0, 0, 0, 0, 0, 0, 0, 0, 228 -NA,NA,"",2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 123, 136, 114, 113, 0, 486 -NA,NA,"",2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 350, 370, 357, 357, 9," 1,443" -NA,NA,"",2016-17,Northborough - Fannie E Proctor,02130015, 0, 29, 39, 49, 31, 48, 43, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2016-17,Northborough - Lincoln Street,02130003, 0, 37, 39, 40, 38, 50, 57, 0, 0, 0, 0, 0, 0, 0, 0, 261 -NA,NA,"",2016-17,Northborough - Marguerite E Peaslee,02130014, 0, 41, 53, 46, 38, 47, 44, 0, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2016-17,Northborough - Marion E Zeh,02130020, 30, 53, 41, 40, 43, 41, 55, 0, 0, 0, 0, 0, 0, 0, 0, 303 -NA,NA,"",2016-17,Northborough - Robert E. Melican Middle School,02130305, 0, 0, 0, 0, 0, 0, 0, 199, 206, 236, 0, 0, 0, 0, 0, 641 -NA,NA,"",2016-17,Northbridge - Northbridge Elementary,02140005, 77, 156, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 390 -NA,NA,"",2016-17,Northbridge - Northbridge High,02140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141, 152, 154, 137, 0, 584 -NA,NA,"",2016-17,Northbridge - Northbridge Middle,02140305, 0, 0, 0, 0, 0, 0, 182, 185, 208, 191, 0, 0, 0, 0, 0, 766 -NA,NA,"",2016-17,Northbridge - W Edward Balmer,02140001, 0, 0, 0, 171, 194, 162, 0, 0, 0, 0, 0, 0, 0, 0, 0, 527 -NA,NA,"",2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 330, 322, 308, 301, 0," 1,261" -NA,NA,"",2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 120, 114, 116, 0, 484 -NA,NA,"",2016-17,Norton - Henri A. Yelle,02180060, 0, 0, 0, 0, 0, 201, 172, 0, 0, 0, 0, 0, 0, 0, 0, 373 -NA,NA,"",2016-17,Norton - J C Solmonese,02180015, 0, 91, 92, 96, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 401 -NA,NA,"",2016-17,Norton - L G Nourse Elementary,02180010, 81, 78, 61, 75, 73, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2016-17,Norton - Norton High,02180505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178, 187, 200, 195, 3, 763 -NA,NA,"",2016-17,Norton - Norton Middle,02180305, 0, 0, 0, 0, 0, 0, 0, 191, 196, 209, 0, 0, 0, 0, 0, 596 -NA,NA,"",2016-17,Norwell - Grace Farrar Cole,02190005, 19, 63, 78, 73, 71, 90, 81, 0, 0, 0, 0, 0, 0, 0, 0, 475 -NA,NA,"",2016-17,Norwell - Norwell High,02190505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 186, 171, 168, 184, 0, 709 -NA,NA,"",2016-17,Norwell - Norwell Middle School,02190405, 0, 0, 0, 0, 0, 0, 0, 177, 168, 174, 0, 0, 0, 0, 0, 519 -NA,NA,"",2016-17,Norwell - William G Vinal,02190020, 19, 65, 75, 85, 84, 83, 78, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2016-17,Norwood - Balch,02200005, 0, 0, 61, 58, 60, 61, 45, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2016-17,Norwood - Charles J Prescott,02200025, 0, 4, 52, 46, 47, 46, 51, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2016-17,Norwood - Cornelius M Callahan,02200010, 0, 0, 37, 38, 34, 46, 47, 0, 0, 0, 0, 0, 0, 0, 0, 202 -NA,NA,"",2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0, 0, 0, 0, 0, 0, 0, 263, 241, 249, 0, 0, 0, 0, 0, 753 -NA,NA,"",2016-17,Norwood - F A Cleveland,02200015, 0, 0, 76, 68, 59, 71, 66, 0, 0, 0, 0, 0, 0, 0, 0, 340 -NA,NA,"",2016-17,Norwood - George F. Willett,02200075, 105, 289, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2016-17,Norwood - John P Oldham,02200020, 0, 0, 53, 48, 54, 35, 44, 0, 0, 0, 0, 0, 0, 0, 0, 234 -NA,NA,"",2016-17,Norwood - Norwood High,02200505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 251, 226, 234, 246, 0, 957 -NA,NA,"",2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 13, 40, 53, 47, 57, 57, 48, 48, 26, 48, 0, 0, 0, 0, 0, 437 -NA,NA,"",2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 151, 139, 122, 134, 0, 546 -NA,NA,"",2016-17,Old Rochester - Old Rochester Regional High,07400505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 172, 191, 201, 180, 4, 748 -NA,NA,"",2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0, 0, 0, 0, 0, 0, 0, 0, 246, 245, 0, 0, 0, 0, 0, 491 -NA,NA,"",2016-17,Orange - Dexter Park,02230010, 0, 0, 0, 0, 90, 89, 73, 80, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2016-17,Orange - Fisher Hill,02230015, 73, 72, 81, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2016-17,Orleans - Orleans Elementary,02240005, 0, 35, 32, 33, 46, 34, 35, 0, 0, 0, 0, 0, 0, 0, 0, 215 -NA,NA,"",2016-17,Oxford - Alfred M Chaffee,02260010, 63, 145, 126, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2016-17,Oxford - Clara Barton,02260005, 0, 0, 0, 133, 128, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2016-17,Oxford - Oxford High,02260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 146, 98, 92, 101, 90, 11, 538 -NA,NA,"",2016-17,Oxford - Oxford Middle,02260405, 0, 0, 0, 0, 0, 0, 147, 140, 137, 0, 0, 0, 0, 0, 0, 424 -NA,NA,"",2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 9, 5, 8, 0, 25 -NA,NA,"",2016-17,Palmer - Converse Middle,02270305, 0, 0, 0, 0, 0, 0, 0, 129, 119, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2016-17,Palmer - Old Mill Pond,02270008, 37, 111, 96, 107, 105, 124, 113, 0, 0, 0, 0, 0, 0, 0, 0, 693 -NA,NA,"",2016-17,Palmer - Palmer High,02270505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 135, 86, 106, 80, 76, 3, 486 -NA,NA,"",2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 177, 160, 146, 134, 1, 618 -NA,NA,"",2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 92, 63, 70, 0, 328 -NA,NA,"",2016-17,Peabody - Captain Samuel Brown,02290005, 0, 67, 60, 49, 67, 56, 70, 0, 0, 0, 0, 0, 0, 0, 0, 369 -NA,NA,"",2016-17,Peabody - Center,02290015, 0, 67, 57, 64, 64, 72, 62, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2016-17,Peabody - J Henry Higgins Middle,02290305, 0, 0, 0, 0, 0, 0, 0, 476, 434, 429, 0, 0, 0, 0, 0," 1,339" -NA,NA,"",2016-17,Peabody - John E Burke,02290007, 0, 38, 42, 38, 56, 41, 60, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2016-17,Peabody - John E. McCarthy,02290016, 114, 47, 37, 43, 45, 30, 37, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2016-17,Peabody - Peabody Veterans Memorial High,02290510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 339, 351, 402, 438, 10," 1,540" -NA,NA,"",2016-17,Peabody - South Memorial,02290035, 76, 75, 56, 71, 70, 58, 59, 0, 0, 0, 0, 0, 0, 0, 0, 465 -NA,NA,"",2016-17,Peabody - Thomas Carroll,02290010, 0, 104, 89, 95, 104, 135, 92, 0, 0, 0, 0, 0, 0, 0, 0, 619 -NA,NA,"",2016-17,Peabody - West Memorial,02290045, 42, 33, 36, 29, 32, 37, 29, 0, 0, 0, 0, 0, 0, 0, 0, 238 -NA,NA,"",2016-17,Peabody - William A Welch Sr,02290027, 39, 52, 64, 57, 70, 40, 50, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2016-17,Pelham - Pelham Elementary,02300005, 0, 21, 21, 16, 20, 18, 18, 18, 0, 0, 0, 0, 0, 0, 0, 132 -NA,NA,"",2016-17,Pembroke - Bryantville Elementary,02310003, 0, 49, 68, 79, 75, 81, 72, 90, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2016-17,Pembroke - Hobomock Elementary,02310010, 0, 53, 72, 52, 48, 75, 60, 75, 0, 0, 0, 0, 0, 0, 0, 435 -NA,NA,"",2016-17,Pembroke - North Pembroke Elementary,02310015, 56, 60, 70, 76, 78, 70, 83, 83, 0, 0, 0, 0, 0, 0, 0, 576 -NA,NA,"",2016-17,Pembroke - Pembroke Community Middle School,02310305, 0, 0, 0, 0, 0, 0, 0, 0, 256, 248, 0, 0, 0, 0, 0, 504 -NA,NA,"",2016-17,Pembroke - Pembroke High School,02310505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 207, 249, 275, 236, 6, 973 -NA,NA,"",2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 31, 60, 62, 53, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2016-17,Pentucket - Dr John C Page School,07450015, 15, 42, 36, 50, 45, 55, 45, 60, 0, 0, 0, 0, 0, 0, 0, 348 -NA,NA,"",2016-17,Pentucket - Elmer S Bagnall,07450005, 34, 51, 70, 66, 53, 80, 71, 81, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2016-17,Pentucket - Helen R Donaghue School,07450010, 0, 0, 0, 0, 40, 68, 69, 66, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2016-17,Pentucket - Pentucket Regional Middle,07450405, 0, 0, 0, 0, 0, 0, 0, 0, 222, 239, 0, 0, 0, 0, 0, 461 -NA,NA,"",2016-17,Pentucket - Pentucket Regional Sr High,07450505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 203, 158, 188, 185, 0, 734 -NA,NA,"",2016-17,Petersham - Petersham Center,02340005, 0, 20, 16, 18, 16, 19, 18, 17, 0, 0, 0, 0, 0, 0, 0, 124 -NA,NA,"",2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 134, 18, 29, 12, 0, 193 -NA,NA,"",2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 113, 15, 17, 25, 0, 170 -NA,NA,"",2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0, 65, 66, 66, 0, 0, 0, 0, 69, 71, 64, 62, 39, 41, 0, 543 -NA,NA,"",2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 0, 0, 0, 0, 0, 0, 0, 0, 77, 75, 70, 51, 37, 12, 0, 322 -NA,NA,"",2016-17,Pioneer Valley - Bernardston Elementary,07500006, 23, 19, 20, 22, 15, 21, 29, 27, 0, 0, 0, 0, 0, 0, 0, 176 -NA,NA,"",2016-17,Pioneer Valley - Northfield Elementary,07500008, 14, 16, 24, 20, 21, 28, 28, 35, 0, 0, 0, 0, 0, 0, 0, 186 -NA,NA,"",2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 4, 8, 6, 6, 2, 3, 3, 7, 0, 0, 0, 0, 0, 0, 0, 39 -NA,NA,"",2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 0, 0, 0, 0, 0, 0, 0, 0, 72, 94, 44, 65, 64, 70, 0, 409 -NA,NA,"",2016-17,Pioneer Valley - Warwick Community School,07500009, 0, 8, 6, 10, 3, 8, 11, 11, 0, 0, 0, 0, 0, 0, 0, 57 -NA,NA,"",2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0, 44, 44, 45, 45, 43, 39, 58, 49, 44, 14, 20, 15, 11, 0, 471 -NA,NA,"",2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 0, 0, 0, 0, 0, 0, 0, 0, 68, 68, 69, 68, 61, 64, 0, 398 -NA,NA,"",2016-17,Pittsfield - Allendale,02360010, 0, 51, 40, 50, 41, 49, 51, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2016-17,Pittsfield - Crosby,02360065, 78, 58, 52, 66, 52, 71, 62, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2016-17,Pittsfield - Egremont,02360035, 0, 70, 64, 81, 78, 83, 93, 0, 0, 0, 0, 0, 0, 0, 0, 469 -NA,NA,"",2016-17,Pittsfield - John T Reid Middle,02360305, 0, 0, 0, 0, 0, 0, 0, 182, 194, 179, 0, 0, 0, 0, 0, 555 -NA,NA,"",2016-17,Pittsfield - Morningside Community School,02360055, 33, 49, 57, 59, 62, 87, 70, 0, 0, 0, 0, 0, 0, 0, 0, 417 -NA,NA,"",2016-17,Pittsfield - Pittsfield High,02360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 216, 226, 202, 217, 0, 861 -NA,NA,"",2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 17, 34, 28, 31, 33, 31, 35, 0, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2016-17,Pittsfield - Silvio O Conte Community,02360105, 33, 63, 55, 68, 51, 53, 39, 0, 0, 0, 0, 0, 0, 0, 0, 362 -NA,NA,"",2016-17,Pittsfield - Stearns,02360090, 0, 43, 42, 48, 33, 33, 36, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2016-17,Pittsfield - Taconic High,02360510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 169, 168, 163, 206, 0, 706 -NA,NA,"",2016-17,Pittsfield - Theodore Herberg Middle,02360310, 0, 0, 0, 0, 0, 0, 0, 205, 214, 210, 0, 0, 0, 0, 0, 629 -NA,NA,"",2016-17,Pittsfield - Williams,02360100, 0, 53, 48, 58, 50, 61, 53, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2016-17,Plainville - Anna Ware Jackson,02380010, 48, 88, 88, 83, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 408 -NA,NA,"",2016-17,Plainville - Beatrice H Wood Elementary,02380005, 0, 0, 0, 0, 0, 99, 110, 97, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2016-17,Plymouth - Cold Spring,02390005, 0, 35, 34, 37, 46, 53, 43, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2016-17,Plymouth - Federal Furnace School,02390011, 0, 70, 65, 78, 65, 70, 64, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2016-17,Plymouth - Hedge,02390010, 0, 16, 29, 36, 33, 53, 43, 0, 0, 0, 0, 0, 0, 0, 0, 210 -NA,NA,"",2016-17,Plymouth - Indian Brook,02390012, 0, 80, 92, 83, 101, 95, 115, 0, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2016-17,Plymouth - Manomet Elementary,02390015, 0, 48, 40, 52, 48, 55, 61, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 0, 86, 92, 115, 82, 112, 104, 0, 0, 0, 0, 0, 0, 0, 0, 591 -NA,NA,"",2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 0, 0, 0, 0, 0, 0, 0, 325, 328, 344, 0, 0, 0, 0, 0, 997 -NA,NA,"",2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2016-17,Plymouth - Plymouth North High,02390505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366, 318, 318, 303, 2," 1,307" -NA,NA,"",2016-17,Plymouth - Plymouth South High,02390515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262, 264, 267, 233, 0," 1,026" -NA,NA,"",2016-17,Plymouth - Plymouth South Middle,02390305, 0, 0, 0, 0, 0, 0, 118, 232, 238, 249, 0, 0, 0, 0, 0, 837 -NA,NA,"",2016-17,Plymouth - South Elementary,02390046, 0, 105, 98, 111, 119, 116, 0, 0, 0, 0, 0, 0, 0, 0, 0, 549 -NA,NA,"",2016-17,Plymouth - West Elementary,02390047, 0, 74, 57, 55, 63, 76, 64, 0, 0, 0, 0, 0, 0, 0, 0, 389 -NA,NA,"",2016-17,Plympton - Dennett Elementary,02400010, 0, 29, 34, 21, 31, 30, 32, 32, 0, 0, 0, 0, 0, 0, 0, 209 -NA,NA,"",2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 0, 80, 86, 86, 94, 95, 98, 90, 95, 100, 82, 85, 71, 73, 0," 1,135" -NA,NA,"",2016-17,Provincetown - Provincetown Schools,02420020, 20, 8, 14, 12, 18, 7, 9, 14, 10, 17, 0, 0, 0, 0, 0, 129 -NA,NA,"",2016-17,Quabbin - Hardwick Elementary,07530005, 0, 19, 28, 24, 34, 32, 28, 29, 0, 0, 0, 0, 0, 0, 0, 194 -NA,NA,"",2016-17,Quabbin - Hubbardston Center,07530010, 0, 46, 39, 45, 50, 42, 46, 48, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2016-17,Quabbin - IB School of Quabbin,07530515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 6, 0, 13 -NA,NA,"",2016-17,Quabbin - New Braintree Grade,07530020, 65, 19, 24, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 108 -NA,NA,"",2016-17,Quabbin - Oakham Center,07530025, 0, 0, 0, 28, 26, 29, 29, 37, 0, 0, 0, 0, 0, 0, 0, 149 -NA,NA,"",2016-17,Quabbin - Quabbin Regional High School,07530505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 188, 158, 166, 164, 0, 676 -NA,NA,"",2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0, 0, 0, 0, 0, 0, 0, 0, 208, 216, 0, 0, 0, 0, 0, 424 -NA,NA,"",2016-17,Quabbin - Ruggles Lane,07530030, 0, 39, 54, 58, 57, 43, 61, 56, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82, 105, 77, 101, 0, 365 -NA,NA,"",2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0, 0, 0, 0, 0, 0, 0, 0, 106, 131, 0, 0, 0, 0, 0, 237 -NA,NA,"",2016-17,Quaboag Regional - Warren Elementary,07780005, 36, 49, 56, 67, 52, 68, 68, 76, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 26, 38, 39, 46, 45, 38, 41, 53, 0, 0, 0, 0, 0, 0, 0, 326 -NA,NA,"",2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 170, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 170 -NA,NA,"",2016-17,Quincy - Atherton Hough,02430040, 0, 57, 43, 38, 44, 39, 47, 0, 0, 0, 0, 0, 0, 0, 0, 268 -NA,NA,"",2016-17,Quincy - Atlantic Middle,02430305, 0, 0, 0, 0, 0, 0, 0, 148, 160, 162, 0, 0, 0, 0, 0, 470 -NA,NA,"",2016-17,Quincy - Beechwood Knoll Elementary,02430020, 0, 68, 60, 52, 49, 58, 63, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2016-17,Quincy - Broad Meadows Middle,02430310, 0, 0, 0, 0, 0, 0, 0, 128, 115, 132, 0, 0, 0, 0, 0, 375 -NA,NA,"",2016-17,Quincy - Central Middle,02430315, 0, 0, 0, 0, 0, 0, 0, 211, 207, 221, 0, 0, 0, 0, 0, 639 -NA,NA,"",2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 0, 55, 63, 50, 62, 49, 63, 0, 0, 0, 0, 0, 0, 0, 0, 342 -NA,NA,"",2016-17,Quincy - Clifford H Marshall Elementary,02430055, 0, 125, 100, 123, 123, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 575 -NA,NA,"",2016-17,Quincy - Francis W Parker,02430075, 0, 45, 56, 59, 57, 56, 50, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2016-17,Quincy - Lincoln-Hancock Community School,02430035, 0, 116, 104, 94, 98, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2016-17,Quincy - Merrymount,02430060, 0, 53, 57, 64, 58, 53, 65, 0, 0, 0, 0, 0, 0, 0, 0, 350 -NA,NA,"",2016-17,Quincy - Montclair,02430065, 0, 86, 70, 65, 67, 63, 78, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2016-17,Quincy - North Quincy High,02430510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 303, 302, 285, 6," 1,168" -NA,NA,"",2016-17,Quincy - Point Webster Middle,02430325, 0, 0, 0, 0, 0, 0, 78, 91, 86, 80, 0, 0, 0, 0, 0, 335 -NA,NA,"",2016-17,Quincy - Quincy High,02430505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 381, 394, 386, 342, 0," 1,503" -NA,NA,"",2016-17,Quincy - Reay E Sterling Middle,02430320, 0, 0, 0, 0, 0, 0, 86, 81, 91, 82, 0, 0, 0, 0, 0, 340 -NA,NA,"",2016-17,Quincy - Snug Harbor Community School,02430090, 125, 48, 43, 50, 65, 50, 47, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2016-17,Quincy - Squantum,02430095, 0, 66, 55, 53, 51, 48, 65, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2016-17,Quincy - Wollaston School,02430110, 0, 63, 57, 58, 56, 59, 45, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 21, 17, 0, 38 -NA,NA,"",2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0, 0, 0, 0, 0, 0, 0, 0, 116, 119, 106, 109, 109, 76, 0, 635 -NA,NA,"",2016-17,Ralph C Mahar - The Gateway to College,07550525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 0, 13, 51, 0, 79 -NA,NA,"",2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 0, 48, 41, 45, 54, 53, 55, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2016-17,Randolph - J F Kennedy Elementary,02440018, 86, 56, 63, 81, 73, 73, 52, 0, 0, 0, 0, 0, 0, 0, 0, 484 -NA,NA,"",2016-17,Randolph - Margaret L Donovan,02440015, 0, 60, 64, 84, 78, 73, 75, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2016-17,Randolph - Martin E Young Elementary,02440040, 0, 46, 48, 59, 56, 64, 47, 0, 0, 0, 0, 0, 0, 0, 0, 320 -NA,NA,"",2016-17,Randolph - Randolph Community Middle,02440410, 0, 0, 0, 0, 0, 0, 0, 189, 216, 205, 0, 0, 0, 0, 0, 610 -NA,NA,"",2016-17,Randolph - Randolph High,02440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 197, 154, 172, 156, 0, 679 -NA,NA,"",2016-17,Reading - Alice M Barrows,02460002, 0, 53, 84, 63, 62, 55, 67, 0, 0, 0, 0, 0, 0, 0, 0, 384 -NA,NA,"",2016-17,Reading - Arthur W Coolidge Middle,02460305, 0, 0, 0, 0, 0, 0, 0, 152, 152, 162, 0, 0, 0, 0, 0, 466 -NA,NA,"",2016-17,Reading - Birch Meadow,02460005, 0, 64, 61, 65, 64, 57, 72, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2016-17,Reading - J Warren Killam,02460017, 0, 66, 74, 64, 70, 76, 73, 0, 0, 0, 0, 0, 0, 0, 0, 423 -NA,NA,"",2016-17,Reading - Joshua Eaton,02460010, 0, 37, 74, 82, 60, 83, 89, 0, 0, 0, 0, 0, 0, 0, 0, 425 -NA,NA,"",2016-17,Reading - Reading Memorial High,02460505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305, 333, 275, 352, 0," 1,265" -NA,NA,"",2016-17,Reading - RISE PreSchool,02460001, 91, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 91 -NA,NA,"",2016-17,Reading - Walter S Parker Middle,02460310, 0, 0, 0, 0, 0, 0, 0, 204, 172, 196, 0, 0, 0, 0, 0, 572 -NA,NA,"",2016-17,Reading - Wood End Elementary School,02460020, 0, 47, 44, 67, 48, 41, 68, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2016-17,Revere - A. C. Whelan Elementary School,02480003, 0, 118, 114, 113, 135, 122, 128, 0, 0, 0, 0, 0, 0, 0, 0, 730 -NA,NA,"",2016-17,Revere - Abraham Lincoln,02480025, 94, 82, 100, 78, 108, 117, 90, 0, 0, 0, 0, 0, 0, 0, 0, 669 -NA,NA,"",2016-17,Revere - Beachmont Veterans Memorial School,02480013, 42, 58, 63, 46, 53, 57, 51, 0, 0, 0, 0, 0, 0, 0, 0, 370 -NA,NA,"",2016-17,Revere - Garfield Elementary School,02480056, 98, 134, 123, 108, 126, 133, 121, 0, 0, 0, 0, 0, 0, 0, 0, 843 -NA,NA,"",2016-17,Revere - Garfield Middle School,02480057, 0, 0, 0, 0, 0, 0, 0, 187, 169, 185, 0, 0, 0, 0, 0, 541 -NA,NA,"",2016-17,Revere - Paul Revere,02480050, 0, 78, 84, 82, 89, 85, 76, 0, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2016-17,Revere - Revere High,02480505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 516, 452, 495, 367, 7," 1,837" -NA,NA,"",2016-17,Revere - Rumney Marsh Academy,02480014, 0, 0, 0, 0, 0, 0, 0, 205, 188, 200, 0, 0, 0, 0, 0, 593 -NA,NA,"",2016-17,Revere - Seacoast School,02480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 56, 41, 17, 7, 0, 121 -NA,NA,"",2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0, 108, 111, 117, 142, 123, 95, 0, 0, 0, 0, 0, 0, 0, 0, 696 -NA,NA,"",2016-17,Revere - Susan B. Anthony Middle School,02480305, 0, 0, 0, 0, 0, 0, 0, 189, 184, 184, 0, 0, 0, 0, 0, 557 -NA,NA,"",2016-17,Richmond - Richmond Consolidated,02490005, 12, 17, 19, 18, 15, 20, 27, 16, 21, 8, 0, 0, 0, 0, 0, 173 -NA,NA,"",2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0, 0, 0, 0, 0, 0, 90, 89, 89, 90, 90, 75, 73, 69, 0, 665 -NA,NA,"",2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 0, 32, 32, 34, 31, 33, 33, 30, 31, 32, 0, 0, 0, 0, 0, 288 -NA,NA,"",2016-17,Rochester - Rochester Memorial,02500005, 22, 49, 71, 58, 59, 76, 60, 71, 0, 0, 0, 0, 0, 0, 0, 466 -NA,NA,"",2016-17,Rockland - Jefferson Elementary School,02510060, 0, 124, 58, 53, 56, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2016-17,Rockland - John W Rogers Middle,02510305, 0, 0, 0, 0, 0, 0, 159, 172, 170, 179, 0, 0, 0, 0, 0, 680 -NA,NA,"",2016-17,Rockland - Memorial Park,02510020, 0, 60, 49, 55, 64, 47, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2016-17,Rockland - R Stewart Esten,02510025, 0, 0, 75, 68, 92, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304 -NA,NA,"",2016-17,Rockland - Rockland Senior High,02510505, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196, 137, 148, 150, 1, 703 -NA,NA,"",2016-17,Rockport - Rockport Elementary,02520005, 21, 61, 69, 60, 61, 66, 69, 0, 0, 0, 0, 0, 0, 0, 0, 407 -NA,NA,"",2016-17,Rockport - Rockport High,02520510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 69, 81, 63, 81, 0, 294 -NA,NA,"",2016-17,Rockport - Rockport Middle,02520305, 0, 0, 0, 0, 0, 0, 0, 73, 78, 76, 0, 0, 0, 0, 0, 227 -NA,NA,"",2016-17,Rowe - Rowe Elementary,02530005, 10, 12, 3, 8, 4, 6, 10, 6, 0, 0, 0, 0, 0, 0, 0, 59 -NA,NA,"",2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0, 0, 0, 0, 0, 0, 244, 242, 246, 241, 224, 109, 0, 0, 0," 1,306" -NA,NA,"",2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 0, 106, 112, 141, 128, 128, 128, 128, 129, 129, 117, 120, 108, 102, 0," 1,576" -NA,NA,"",2016-17,Salem - Bates,02580003, 0, 60, 59, 60, 54, 48, 46, 0, 0, 0, 0, 0, 0, 0, 0, 327 -NA,NA,"",2016-17,Salem - Carlton,02580015, 0, 54, 33, 39, 43, 32, 38, 0, 0, 0, 0, 0, 0, 0, 0, 239 -NA,NA,"",2016-17,Salem - Collins Middle,02580305, 0, 0, 0, 0, 0, 0, 0, 189, 172, 184, 0, 0, 0, 0, 0, 545 -NA,NA,"",2016-17,Salem - Horace Mann Laboratory,02580030, 0, 51, 40, 48, 62, 51, 35, 0, 0, 0, 0, 0, 0, 0, 0, 287 -NA,NA,"",2016-17,Salem - Nathaniel Bowditch,02580025, 0, 42, 52, 54, 50, 57, 56, 53, 43, 37, 0, 0, 0, 0, 0, 444 -NA,NA,"",2016-17,Salem - New Liberty Innovation School,02580510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 7, 25, 0, 41 -NA,NA,"",2016-17,Salem - Salem Early Childhood,02580001, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 92 -NA,NA,"",2016-17,Salem - Salem High,02580505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 241, 241, 227, 217, 7, 933 -NA,NA,"",2016-17,Salem - Salem Prep High School,02580515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 2, 2, 5, 0, 13 -NA,NA,"",2016-17,Salem - Saltonstall School,02580050, 0, 40, 42, 36, 48, 39, 50, 38, 42, 37, 0, 0, 0, 0, 0, 372 -NA,NA,"",2016-17,Salem - Witchcraft Heights,02580070, 0, 73, 67, 85, 87, 87, 80, 0, 0, 0, 0, 0, 0, 0, 0, 479 -NA,NA,"",2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 0, 0, 0, 0, 0, 0, 0, 72, 72, 72, 82, 60, 40, 44, 0, 442 -NA,NA,"",2016-17,Sandwich - Forestdale School,02610002, 71, 176, 216, 181, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 644 -NA,NA,"",2016-17,Sandwich - Oak Ridge,02610025, 0, 0, 0, 0, 211, 218, 238, 236, 0, 0, 0, 0, 0, 0, 0, 903 -NA,NA,"",2016-17,Sandwich - Sandwich High,02610505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 176, 175, 171, 187, 0, 709 -NA,NA,"",2016-17,Sandwich - Sandwich STEM Academy,02610305, 0, 0, 0, 0, 0, 0, 0, 0, 229, 241, 0, 0, 0, 0, 0, 470 -NA,NA,"",2016-17,Saugus - Ballard School,02620001, 110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 110 -NA,NA,"",2016-17,Saugus - Belmonte Saugus Middle,02620305, 0, 0, 0, 0, 0, 0, 0, 210, 222, 220, 0, 0, 0, 0, 0, 652 -NA,NA,"",2016-17,Saugus - Douglas Waybright,02620067, 0, 19, 43, 29, 38, 40, 37, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2016-17,Saugus - Lynnhurst,02620040, 0, 30, 41, 39, 40, 47, 38, 0, 0, 0, 0, 0, 0, 0, 0, 235 -NA,NA,"",2016-17,Saugus - Oaklandvale,02620050, 0, 29, 35, 33, 44, 34, 39, 0, 0, 0, 0, 0, 0, 0, 0, 214 -NA,NA,"",2016-17,Saugus - Saugus High,02620505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 176, 144, 196, 6, 678 -NA,NA,"",2016-17,Saugus - Veterans Memorial,02620065, 0, 88, 77, 68, 90, 83, 102, 0, 0, 0, 0, 0, 0, 0, 0, 508 -NA,NA,"",2016-17,Savoy - Emma L Miller Elementary School,02630010, 13, 9, 3, 9, 8, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0, 49 -NA,NA,"",2016-17,Scituate - Cushing Elementary,02640007, 0, 40, 51, 47, 54, 51, 71, 49, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2016-17,Scituate - Gates Intermediate School,02640305, 0, 0, 0, 0, 0, 0, 0, 0, 261, 260, 0, 0, 0, 0, 0, 521 -NA,NA,"",2016-17,Scituate - Hatherly Elementary,02640010, 0, 36, 47, 50, 50, 50, 41, 39, 0, 0, 0, 0, 0, 0, 0, 313 -NA,NA,"",2016-17,Scituate - Jenkins Elementary School,02640015, 0, 57, 49, 56, 57, 76, 73, 95, 0, 0, 0, 0, 0, 0, 0, 463 -NA,NA,"",2016-17,Scituate - Scituate High School,02640505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226, 213, 219, 255, 1, 914 -NA,NA,"",2016-17,Scituate - Wampatuck Elementary,02640020, 69, 56, 55, 56, 46, 51, 50, 44, 0, 0, 0, 0, 0, 0, 0, 427 -NA,NA,"",2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 0, 0, 0, 0, 0, 0, 0, 169, 174, 176, 0, 0, 0, 0, 0, 519 -NA,NA,"",2016-17,Seekonk - George R Martin,02650007, 0, 68, 66, 69, 55, 91, 88, 0, 0, 0, 0, 0, 0, 0, 0, 437 -NA,NA,"",2016-17,Seekonk - Mildred Aitken School,02650015, 34, 62, 59, 67, 60, 70, 63, 0, 0, 0, 0, 0, 0, 0, 0, 415 -NA,NA,"",2016-17,Seekonk - Seekonk High,02650505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 155, 141, 140, 0, 583 -NA,NA,"",2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 0, 56, 93, 85, 85, 81, 80, 69, 67, 51, 0, 0, 0, 0, 0, 667 -NA,NA,"",2016-17,Sharon - Cottage Street,02660005, 0, 65, 72, 97, 95, 100, 96, 0, 0, 0, 0, 0, 0, 0, 0, 525 -NA,NA,"",2016-17,Sharon - East Elementary,02660010, 0, 66, 74, 75, 84, 82, 76, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2016-17,Sharon - Heights Elementary,02660015, 0, 81, 89, 78, 92, 86, 103, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2016-17,Sharon - Sharon High,02660505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 250, 282, 260, 266, 0," 1,058" -NA,NA,"",2016-17,Sharon - Sharon Middle,02660305, 48, 0, 0, 0, 0, 0, 0, 266, 306, 279, 0, 0, 0, 0, 0, 899 -NA,NA,"",2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 340, 327, 344, 325, 0," 1,336" -NA,NA,"",2016-17,Sherborn - Pine Hill,02690010, 25, 61, 55, 63, 73, 80, 72, 0, 0, 0, 0, 0, 0, 0, 0, 429 -NA,NA,"",2016-17,Shrewsbury - Beal School,02710005, 0, 249, 69, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318 -NA,NA,"",2016-17,Shrewsbury - Calvin Coolidge,02710015, 0, 59, 72, 92, 89, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2016-17,Shrewsbury - Floral Street School,02710020, 0, 0, 134, 190, 209, 189, 0, 0, 0, 0, 0, 0, 0, 0, 0, 722 -NA,NA,"",2016-17,Shrewsbury - Oak Middle School,02710030, 0, 0, 0, 0, 0, 0, 0, 0, 511, 492, 0, 0, 0, 0, 0," 1,003" -NA,NA,"",2016-17,Shrewsbury - Parker Road Preschool,02710040, 232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 232 -NA,NA,"",2016-17,Shrewsbury - Sherwood Middle School,02710305, 0, 0, 0, 0, 0, 0, 487, 490, 0, 0, 0, 0, 0, 0, 0, 977 -NA,NA,"",2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 513, 428, 441, 410, 0," 1,792" -NA,NA,"",2016-17,Shrewsbury - Spring Street,02710035, 0, 60, 66, 87, 71, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 372 -NA,NA,"",2016-17,Shrewsbury - Walter J Paton,02710025, 0, 20, 77, 90, 91, 88, 0, 0, 0, 0, 0, 0, 0, 0, 0, 366 -NA,NA,"",2016-17,Shutesbury - Shutesbury Elementary,02720005, 18, 18, 6, 20, 12, 16, 18, 13, 0, 0, 0, 0, 0, 0, 0, 121 -NA,NA,"",2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0, 89, 91, 96, 99, 94, 98, 0, 0, 0, 0, 0, 0, 0, 0, 567 -NA,NA,"",2016-17,Silver Lake - Silver Lake Regional High,07600505, 84, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 278, 323, 275, 0," 1,279" -NA,NA,"",2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 0, 0, 0, 0, 0, 0, 0, 0, 271, 298, 0, 0, 0, 0, 0, 569 -NA,NA,"",2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0, 0, 0, 0, 0, 0, 0, 0, 72, 71, 74, 69, 34, 50, 0, 370 -NA,NA,"",2016-17,Somerset - Chace Street,02730005, 59, 66, 50, 47, 71, 49, 62, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Somerset - North Elementary,02730008, 0, 82, 71, 68, 91, 100, 94, 0, 0, 0, 0, 0, 0, 0, 0, 506 -NA,NA,"",2016-17,Somerset - Somerset Middle School,02730305, 0, 0, 0, 0, 0, 0, 0, 203, 197, 216, 0, 0, 0, 0, 0, 616 -NA,NA,"",2016-17,Somerset - South,02730015, 0, 44, 35, 47, 48, 48, 44, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 269, 212, 247, 0," 1,006" -NA,NA,"",2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 17, 40, 90, 93, 70, 80, 42, 47, 48, 37, 0, 0, 0, 0, 0, 564 -NA,NA,"",2016-17,Somerville - Arthur D Healey,02740075, 17, 43, 46, 52, 46, 49, 52, 37, 46, 40, 0, 0, 0, 0, 0, 428 -NA,NA,"",2016-17,Somerville - Benjamin G Brown,02740015, 0, 41, 47, 39, 33, 45, 31, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2016-17,Somerville - Capuano Early Childhood Center,02740005, 231, 101, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2016-17,Somerville - E Somerville Community,02740111, 0, 67, 100, 93, 97, 104, 90, 65, 54, 55, 0, 0, 0, 0, 0, 725 -NA,NA,"",2016-17,Somerville - Full Circle High School,02740510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 15, 21, 12, 12, 1, 61 -NA,NA,"",2016-17,Somerville - John F Kennedy,02740083, 4, 47, 50, 51, 48, 43, 60, 51, 62, 55, 0, 0, 0, 0, 0, 471 -NA,NA,"",2016-17,Somerville - Next Wave Junior High,02740410, 0, 0, 0, 0, 0, 0, 0, 1, 4, 11, 0, 0, 0, 0, 0, 16 -NA,NA,"",2016-17,Somerville - Somerville High,02740505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 355, 341, 264, 295, 4," 1,259" -NA,NA,"",2016-17,Somerville - West Somerville Neighborhood,02740115, 18, 43, 46, 45, 34, 37, 30, 35, 51, 38, 0, 0, 0, 0, 0, 377 -NA,NA,"",2016-17,Somerville - Winter Hill Community,02740120, 17, 37, 46, 49, 39, 40, 62, 56, 64, 52, 0, 0, 0, 0, 0, 462 -NA,NA,"",2016-17,South Hadley - Michael E. Smith Middle School,02780305, 0, 0, 0, 0, 0, 0, 139, 139, 137, 137, 0, 0, 0, 0, 0, 552 -NA,NA,"",2016-17,South Hadley - Mosier,02780020, 0, 0, 0, 148, 123, 157, 0, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2016-17,South Hadley - Plains Elementary,02780015, 66, 148, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2016-17,South Hadley - South Hadley High,02780505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 140, 118, 141, 138, 8, 545 -NA,NA,"",2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 200, 182, 184, 151, 0, 717 -NA,NA,"",2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 0, 72, 51, 50, 50, 50, 53, 53, 65, 66, 83, 59, 57, 49, 0, 758 -NA,NA,"",2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158, 176, 165, 137, 0, 636 -NA,NA,"",2016-17,Southampton - William E Norris,02750005, 34, 74, 64, 63, 66, 81, 71, 67, 0, 0, 0, 0, 0, 0, 0, 520 -NA,NA,"",2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 0, 0, 0, 127, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 245 -NA,NA,"",2016-17,Southborough - Margaret A Neary,02760020, 0, 0, 0, 0, 0, 137, 161, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2016-17,Southborough - Mary E Finn School,02760008, 43, 114, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2016-17,Southborough - P Brent Trottier,02760305, 0, 0, 0, 0, 0, 0, 0, 142, 157, 160, 0, 0, 0, 0, 0, 459 -NA,NA,"",2016-17,Southbridge - Charlton Street,02770005, 0, 0, 68, 84, 88, 96, 85, 0, 0, 0, 0, 0, 0, 0, 0, 421 -NA,NA,"",2016-17,Southbridge - Eastford Road,02770010, 75, 174, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 252 -NA,NA,"",2016-17,Southbridge - Southbridge High School,02770515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 152, 130, 117, 110, 0, 509 -NA,NA,"",2016-17,Southbridge - Southbridge Middle School,02770315, 0, 0, 0, 0, 0, 0, 0, 168, 161, 180, 0, 0, 0, 0, 0, 509 -NA,NA,"",2016-17,Southbridge - West Street,02770020, 0, 0, 87, 107, 80, 82, 75, 0, 0, 0, 0, 0, 0, 0, 0, 431 -NA,NA,"",2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 379, 361, 350, 326, 0," 1,416" -NA,NA,"",2016-17,Southern Berkshire - Mt Everett Regional,07650505, 0, 0, 0, 0, 0, 0, 0, 0, 46, 52, 55, 48, 45, 46, 0, 292 -NA,NA,"",2016-17,Southern Berkshire - New Marlborough Central,07650018, 11, 19, 10, 17, 15, 18, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90 -NA,NA,"",2016-17,Southern Berkshire - South Egremont,07650030, 0, 6, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13 -NA,NA,"",2016-17,Southern Berkshire - Undermountain,07650035, 33, 30, 35, 36, 33, 48, 51, 64, 0, 0, 0, 0, 0, 0, 0, 330 -NA,NA,"",2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 304, 299, 265, 246, 0," 1,114" -NA,NA,"",2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0, 7, 14, 8, 20, 10, 11, 12, 0, 0, 0, 0, 0, 0, 0, 82 -NA,NA,"",2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0, 0, 0, 0, 91, 103, 99, 99, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0, 0, 0, 0, 0, 0, 0, 0, 126, 122, 114, 125, 128, 120, 2, 737 -NA,NA,"",2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 62, 85, 94, 97, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2016-17,Spencer-E Brookfield - David Prouty High,07670505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 72, 90, 72, 102, 2, 338 -NA,NA,"",2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 46, 15, 27, 20, 32, 23, 18, 31, 0, 0, 0, 0, 0, 0, 0, 212 -NA,NA,"",2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0, 0, 0, 0, 0, 0, 112, 98, 97, 107, 0, 0, 0, 0, 0, 414 -NA,NA,"",2016-17,Spencer-E Brookfield - Wire Village School,07670040, 0, 60, 74, 101, 96, 99, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 76, 46, 37, 41, 43, 39, 40, 32, 31, 26, 0, 0, 0, 0, 0, 411 -NA,NA,"",2016-17,Springfield - Alice B Beal Elementary,02810175, 0, 52, 46, 49, 41, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 276 -NA,NA,"",2016-17,Springfield - Arthur T Talmadge,02810165, 0, 39, 49, 46, 46, 38, 52, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2016-17,Springfield - Balliet Middle School,02810360, 0, 0, 0, 0, 0, 0, 0, 7, 11, 28, 0, 0, 0, 0, 0, 46 -NA,NA,"",2016-17,Springfield - Brightwood,02810025, 0, 46, 53, 60, 57, 56, 51, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 0, 0, 0, 0, 0, 0, 0, 93, 104, 101, 0, 0, 0, 0, 0, 298 -NA,NA,"",2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 0, 0, 0, 0, 0, 0, 0, 111, 105, 101, 0, 0, 0, 0, 0, 317 -NA,NA,"",2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 0, 0, 0, 0, 0, 0, 0, 109, 104, 72, 0, 0, 0, 0, 0, 285 -NA,NA,"",2016-17,Springfield - Conservatory of the Arts,02810475, 0, 0, 0, 0, 0, 0, 0, 57, 59, 58, 57, 47, 59, 0, 0, 337 -NA,NA,"",2016-17,Springfield - Daniel B Brunton,02810035, 0, 81, 82, 83, 82, 79, 70, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2016-17,Springfield - Early Childhood Education Center,02810001, 144, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144 -NA,NA,"",2016-17,Springfield - Edward P. Boland School,02810010, 185, 113, 82, 96, 113, 99, 100, 0, 0, 0, 0, 0, 0, 0, 0, 788 -NA,NA,"",2016-17,Springfield - Elias Brookings,02810030, 48, 59, 59, 47, 62, 52, 52, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2016-17,Springfield - Forest Park Middle,02810325, 0, 0, 0, 0, 0, 0, 0, 231, 238, 245, 0, 0, 0, 0, 0, 714 -NA,NA,"",2016-17,Springfield - Frank H Freedman,02810075, 0, 50, 52, 51, 65, 55, 42, 0, 0, 0, 0, 0, 0, 0, 0, 315 -NA,NA,"",2016-17,Springfield - Frederick Harris,02810080, 46, 96, 95, 96, 89, 104, 68, 0, 0, 0, 0, 0, 0, 0, 0, 594 -NA,NA,"",2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 10, 7, 6, 0, 27 -NA,NA,"",2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 12, 11, 19, 0, 48 -NA,NA,"",2016-17,Springfield - German Gerena Community School,02810195, 133, 100, 100, 98, 104, 102, 94, 0, 0, 0, 0, 0, 0, 0, 0, 731 -NA,NA,"",2016-17,Springfield - Glenwood,02810065, 0, 38, 36, 54, 63, 61, 49, 0, 0, 0, 0, 0, 0, 0, 0, 301 -NA,NA,"",2016-17,Springfield - Glickman Elementary,02810068, 0, 63, 53, 51, 66, 64, 62, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2016-17,Springfield - High School Of Commerce,02810510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 373, 299, 338, 218, 22," 1,250" -NA,NA,"",2016-17,Springfield - Hiram L Dorman,02810050, 0, 43, 57, 59, 71, 36, 57, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2016-17,Springfield - Homer Street,02810085, 0, 71, 64, 80, 83, 79, 59, 0, 0, 0, 0, 0, 0, 0, 0, 436 -NA,NA,"",2016-17,Springfield - Indian Orchard Elementary,02810100, 76, 88, 107, 108, 100, 118, 69, 0, 0, 0, 0, 0, 0, 0, 0, 666 -NA,NA,"",2016-17,Springfield - John F Kennedy Middle,02810328, 0, 0, 0, 0, 0, 0, 0, 152, 150, 133, 0, 0, 0, 0, 0, 435 -NA,NA,"",2016-17,Springfield - John J Duggan Middle,02810320, 0, 0, 0, 0, 0, 0, 0, 185, 179, 162, 63, 40, 43, 0, 0, 672 -NA,NA,"",2016-17,Springfield - Kensington International School,02810110, 0, 50, 55, 45, 55, 46, 55, 0, 0, 0, 0, 0, 0, 0, 0, 306 -NA,NA,"",2016-17,Springfield - Liberty,02810115, 0, 49, 43, 48, 53, 53, 42, 0, 0, 0, 0, 0, 0, 0, 0, 288 -NA,NA,"",2016-17,Springfield - Liberty Preparatory Academy,02810560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 6, 0, 13 -NA,NA,"",2016-17,Springfield - Lincoln,02810120, 0, 71, 59, 74, 73, 73, 54, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Springfield - M Marcus Kiley Middle,02810330, 0, 0, 0, 0, 0, 0, 0, 207, 235, 201, 0, 0, 0, 0, 0, 643 -NA,NA,"",2016-17,Springfield - Margaret C Ells,02810060, 129, 39, 51, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 219 -NA,NA,"",2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 43, 44, 43, 61, 50, 56, 35, 0, 0, 0, 0, 0, 0, 0, 0, 332 -NA,NA,"",2016-17,Springfield - Mary M Lynch,02810140, 0, 47, 46, 51, 52, 36, 34, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2016-17,Springfield - Mary M Walsh,02810155, 0, 51, 49, 61, 55, 43, 49, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2016-17,Springfield - Mary O Pottenger,02810145, 0, 68, 70, 83, 88, 69, 68, 0, 0, 0, 0, 0, 0, 0, 0, 446 -NA,NA,"",2016-17,Springfield - Milton Bradley School,02810023, 46, 105, 90, 92, 93, 73, 77, 0, 0, 0, 0, 0, 0, 0, 0, 576 -NA,NA,"",2016-17,Springfield - Rebecca M Johnson,02810055, 144, 95, 90, 127, 104, 99, 116, 0, 0, 0, 0, 0, 0, 0, 0, 775 -NA,NA,"",2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 374, 360, 358, 342, 8," 1,442" -NA,NA,"",2016-17,Springfield - Samuel Bowles,02810020, 0, 54, 47, 70, 58, 57, 47, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2016-17,Springfield - South End Middle School,02810355, 0, 0, 0, 0, 0, 0, 0, 86, 82, 78, 0, 0, 0, 0, 0, 246 -NA,NA,"",2016-17,Springfield - Springfield Central High,02810500, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 683, 518, 378, 452, 24," 2,055" -NA,NA,"",2016-17,Springfield - Springfield High School,02810570, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 59, 36, 13, 8, 1, 117 -NA,NA,"",2016-17,Springfield - Springfield High School of Science and Technology,02810530, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 419, 351, 297, 265, 34," 1,366" -NA,NA,"",2016-17,Springfield - Springfield Public Day Elementary School,02810005, 0, 0, 3, 6, 15, 18, 12, 0, 0, 0, 0, 0, 0, 0, 0, 54 -NA,NA,"",2016-17,Springfield - Springfield Public Day High School,02810550, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 44, 28, 25, 10, 4, 111 -NA,NA,"",2016-17,Springfield - Springfield Public Day Middle School,02810345, 0, 0, 0, 0, 0, 0, 0, 17, 16, 23, 0, 0, 0, 0, 0, 56 -NA,NA,"",2016-17,Springfield - STEM Middle Academy,02810350, 0, 0, 0, 0, 0, 0, 0, 99, 101, 88, 0, 0, 0, 0, 0, 288 -NA,NA,"",2016-17,Springfield - Sumner Avenue,02810160, 71, 84, 87, 86, 88, 75, 85, 0, 0, 0, 0, 0, 0, 0, 0, 576 -NA,NA,"",2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 0, 0, 0, 0, 0, 0, 0, 107, 110, 99, 103, 98, 91, 91, 14, 713 -NA,NA,"",2016-17,Springfield - Thomas M Balliet,02810015, 45, 42, 43, 50, 50, 50, 43, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2016-17,Springfield - Van Sickle Academy,02810480, 0, 0, 0, 0, 0, 0, 0, 120, 98, 112, 0, 0, 0, 0, 0, 330 -NA,NA,"",2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 0, 0, 0, 0, 0, 0, 0, 125, 102, 138, 0, 0, 0, 0, 0, 365 -NA,NA,"",2016-17,Springfield - Warner,02810180, 31, 34, 49, 39, 50, 40, 36, 0, 0, 0, 0, 0, 0, 0, 0, 279 -NA,NA,"",2016-17,Springfield - Washington,02810185, 46, 57, 56, 58, 74, 74, 69, 0, 0, 0, 0, 0, 0, 0, 0, 434 -NA,NA,"",2016-17,Springfield - White Street,02810190, 0, 83, 77, 70, 75, 72, 72, 0, 0, 0, 0, 0, 0, 0, 0, 449 -NA,NA,"",2016-17,Springfield - William N. DeBerry,02810045, 0, 48, 49, 42, 52, 54, 53, 0, 0, 0, 0, 0, 0, 0, 0, 298 -NA,NA,"",2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 0, 54, 54, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2016-17,Stoneham - Colonial Park,02840005, 44, 48, 43, 45, 48, 38, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266 -NA,NA,"",2016-17,Stoneham - Robin Hood,02840025, 45, 62, 65, 62, 68, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2016-17,Stoneham - South,02840030, 0, 63, 67, 63, 70, 71, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334 -NA,NA,"",2016-17,Stoneham - Stoneham Central Middle School,02840405, 0, 0, 0, 0, 0, 0, 165, 166, 171, 204, 0, 0, 0, 0, 0, 706 -NA,NA,"",2016-17,Stoneham - Stoneham High,02840505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175, 178, 155, 171, 0, 679 -NA,NA,"",2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 90, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 90 -NA,NA,"",2016-17,Stoughton - Helen Hansen Elementary,02850010, 0, 39, 35, 42, 35, 53, 44, 0, 0, 0, 0, 0, 0, 0, 0, 248 -NA,NA,"",2016-17,Stoughton - Joseph H Gibbons,02850025, 0, 53, 49, 57, 74, 57, 73, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0, 68, 72, 48, 59, 53, 78, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2016-17,Stoughton - O'Donnell Middle School,02850405, 0, 0, 0, 0, 0, 0, 0, 257, 241, 299, 0, 0, 0, 0, 0, 797 -NA,NA,"",2016-17,Stoughton - South Elementary,02850015, 0, 33, 46, 42, 39, 48, 47, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2016-17,Stoughton - Stoughton High,02850505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 299, 282, 254, 224, 2," 1,061" -NA,NA,"",2016-17,Stoughton - West Elementary,02850020, 26, 50, 51, 52, 55, 60, 69, 0, 0, 0, 0, 0, 0, 0, 0, 363 -NA,NA,"",2016-17,Sturbridge - Burgess Elementary,02870005, 72, 113, 107, 107, 141, 123, 128, 126, 0, 0, 0, 0, 0, 0, 0, 917 -NA,NA,"",2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 217, 214, 191, 182, 0, 804 -NA,NA,"",2016-17,Sudbury - Ephraim Curtis Middle,02880305, 0, 0, 0, 0, 0, 0, 0, 305, 333, 339, 0, 0, 0, 0, 0, 977 -NA,NA,"",2016-17,Sudbury - General John Nixon Elementary,02880025, 0, 42, 61, 55, 71, 57, 71, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2016-17,Sudbury - Israel Loring School,02880015, 0, 76, 84, 66, 90, 82, 89, 0, 0, 0, 0, 0, 0, 0, 0, 487 -NA,NA,"",2016-17,Sudbury - Josiah Haynes,02880010, 0, 45, 59, 72, 54, 87, 70, 0, 0, 0, 0, 0, 0, 0, 0, 387 -NA,NA,"",2016-17,Sudbury - Peter Noyes,02880030, 68, 82, 83, 86, 81, 104, 91, 0, 0, 0, 0, 0, 0, 0, 0, 595 -NA,NA,"",2016-17,Sunderland - Sunderland Elementary,02890005, 25, 39, 36, 22, 39, 25, 31, 40, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2016-17,Sutton - Sutton Early Learning,02900003, 30, 84, 94, 108, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 316 -NA,NA,"",2016-17,Sutton - Sutton Elementary,02900005, 0, 0, 0, 0, 99, 119, 113, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2016-17,Sutton - Sutton High School,02900510, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 103, 108, 115, 100, 0, 426 -NA,NA,"",2016-17,Sutton - Sutton Middle School,02900305, 0, 0, 0, 0, 0, 0, 0, 132, 126, 117, 0, 0, 0, 0, 0, 375 -NA,NA,"",2016-17,Swampscott - Clarke,02910005, 0, 38, 39, 41, 45, 43, 0, 0, 0, 0, 0, 0, 0, 0, 0, 206 -NA,NA,"",2016-17,Swampscott - Hadley,02910010, 0, 55, 60, 57, 63, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 297 -NA,NA,"",2016-17,Swampscott - Stanley,02910020, 0, 53, 55, 53, 61, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278 -NA,NA,"",2016-17,Swampscott - Swampscott High,02910505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 153, 174, 162, 186, 2, 677 -NA,NA,"",2016-17,Swampscott - Swampscott Middle,02910305, 58, 0, 0, 0, 0, 0, 152, 161, 205, 197, 0, 0, 0, 0, 0, 773 -NA,NA,"",2016-17,Swansea - Elizabeth S Brown,02920006, 0, 0, 0, 0, 95, 95, 109, 0, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2016-17,Swansea - Gardner,02920015, 0, 92, 74, 77, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243 -NA,NA,"",2016-17,Swansea - Joseph Case High,02920505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 144, 128, 123, 133, 0, 528 -NA,NA,"",2016-17,Swansea - Joseph Case Jr High,02920305, 0, 0, 0, 0, 0, 0, 0, 156, 173, 168, 0, 0, 0, 0, 0, 497 -NA,NA,"",2016-17,Swansea - Joseph G Luther,02920020, 0, 0, 0, 0, 65, 82, 73, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2016-17,Swansea - Mark G Hoyle Elementary,02920017, 64, 72, 52, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 263 -NA,NA,"",2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 0, 0, 0, 0, 0, 0, 0, 0, 293, 289, 0, 0, 0, 0, 0, 582 -NA,NA,"",2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 194, 169, 182, 209, 6, 760 -NA,NA,"",2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119, 132, 119, 127, 0, 497 -NA,NA,"",2016-17,Taunton - Benjamin Friedman Middle,02930315, 0, 0, 0, 0, 0, 0, 269, 249, 286, 0, 0, 0, 0, 0, 0, 804 -NA,NA,"",2016-17,Taunton - East Taunton Elementary,02930010, 0, 121, 126, 128, 112, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 607 -NA,NA,"",2016-17,Taunton - Edmund Hatch Bennett,02930007, 0, 66, 57, 62, 82, 66, 0, 0, 0, 0, 0, 0, 0, 0, 0, 333 -NA,NA,"",2016-17,Taunton - Edward F. Leddy Preschool,02930005, 329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 329 -NA,NA,"",2016-17,Taunton - Elizabeth Pole,02930027, 0, 107, 128, 116, 137, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 610 -NA,NA,"",2016-17,Taunton - H H Galligan,02930057, 0, 47, 48, 43, 48, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2016-17,Taunton - Hopewell,02930035, 0, 59, 55, 59, 59, 60, 0, 0, 0, 0, 0, 0, 0, 0, 0, 292 -NA,NA,"",2016-17,Taunton - John F Parker Middle,02930305, 0, 0, 0, 0, 0, 0, 169, 136, 148, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2016-17,Taunton - Joseph C Chamberlain,02930008, 0, 83, 113, 94, 121, 118, 0, 0, 0, 0, 0, 0, 0, 0, 0, 529 -NA,NA,"",2016-17,Taunton - Joseph H Martin,02930042, 0, 0, 0, 0, 0, 0, 221, 233, 268, 0, 0, 0, 0, 0, 0, 722 -NA,NA,"",2016-17,Taunton - Mulcahey Elementary School,02930015, 0, 101, 89, 103, 92, 104, 0, 0, 0, 0, 0, 0, 0, 0, 0, 489 -NA,NA,"",2016-17,Taunton - Taunton Alternative High School,02930525, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 16, 14, 56, 0, 89 -NA,NA,"",2016-17,Taunton - Taunton High,02930505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 644, 502, 483, 431, 426, 16," 2,502" -NA,NA,"",2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0, 20, 27, 31, 36, 33, 40, 74, 90, 130, 210, 180, 131, 117, 0," 1,119" -NA,NA,"",2016-17,Tewksbury - Heath-Brook,02950010, 0, 126, 106, 106, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 338 -NA,NA,"",2016-17,Tewksbury - John F. Ryan,02950023, 0, 0, 0, 0, 0, 0, 261, 275, 0, 0, 0, 0, 0, 0, 0, 536 -NA,NA,"",2016-17,Tewksbury - John W. Wynn Middle,02950305, 0, 0, 0, 0, 0, 0, 0, 0, 312, 305, 0, 0, 0, 0, 0, 617 -NA,NA,"",2016-17,Tewksbury - L F Dewing,02950001, 138, 149, 131, 146, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 564 -NA,NA,"",2016-17,Tewksbury - Louise Davy Trahan,02950025, 0, 0, 0, 0, 133, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 255 -NA,NA,"",2016-17,Tewksbury - North Street,02950020, 0, 0, 0, 0, 127, 130, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2016-17,Tewksbury - Tewksbury Memorial High,02950505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 243, 235, 245, 251, 6, 980 -NA,NA,"",2016-17,Tisbury - Tisbury Elementary,02960005, 5, 28, 33, 31, 41, 43, 36, 29, 39, 36, 0, 0, 0, 0, 0, 321 -NA,NA,"",2016-17,Topsfield - Proctor Elementary,02980005, 0, 0, 0, 0, 0, 76, 79, 89, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2016-17,Topsfield - Steward Elementary,02980010, 43, 76, 80, 85, 98, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 382 -NA,NA,"",2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 284, 277, 225, 237, 0," 1,023" -NA,NA,"",2016-17,Triton - Newbury Elementary,07730020, 23, 42, 56, 55, 61, 53, 74, 76, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2016-17,Triton - Pine Grove,07730025, 21, 59, 51, 68, 59, 70, 54, 89, 0, 0, 0, 0, 0, 0, 0, 471 -NA,NA,"",2016-17,Triton - Salisbury Elementary,07730015, 33, 70, 57, 62, 79, 75, 62, 56, 0, 0, 0, 0, 0, 0, 0, 494 -NA,NA,"",2016-17,Triton - Triton Regional High School,07730505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 189, 181, 184, 162, 0, 716 -NA,NA,"",2016-17,Triton - Triton Regional Middle School,07730405, 0, 0, 0, 0, 0, 0, 0, 0, 193, 201, 0, 0, 0, 0, 0, 394 -NA,NA,"",2016-17,Truro - Truro Central,03000005, 21, 12, 14, 11, 14, 17, 18, 9, 0, 0, 0, 0, 0, 0, 0, 116 -NA,NA,"",2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 67, 121, 127, 103, 138, 115, 116, 0, 0, 0, 0, 0, 0, 0, 0, 787 -NA,NA,"",2016-17,Tyngsborough - Tyngsborough High School,03010505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 122, 128, 128, 0, 507 -NA,NA,"",2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0, 0, 0, 0, 0, 0, 0, 135, 148, 136, 0, 0, 0, 0, 0, 419 -NA,NA,"",2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 0, 0, 0, 0, 0, 0, 0, 183, 168, 121, 0, 0, 0, 0, 0, 472 -NA,NA,"",2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 52, 65, 72, 70, 97, 99, 89, 77, 73, 50, 0, 0, 0, 0, 0, 744 -NA,NA,"",2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0, 8, 4, 7, 8, 7, 10, 0, 0, 0, 0, 0, 0, 0, 0, 44 -NA,NA,"",2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 9, 31, 39, 38, 40, 34, 35, 57, 46, 20, 0, 0, 0, 0, 0, 349 -NA,NA,"",2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 192, 175, 176, 166, 0, 709 -NA,NA,"",2016-17,Uxbridge - Gateway to College,03040515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 10, 31, 0, 46 -NA,NA,"",2016-17,Uxbridge - McCloskey Middle School,03040015, 0, 0, 0, 0, 0, 0, 0, 127, 131, 161, 0, 0, 0, 0, 0, 419 -NA,NA,"",2016-17,Uxbridge - Taft Early Learning Center,03040005, 88, 124, 127, 138, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 477 -NA,NA,"",2016-17,Uxbridge - Uxbridge High,03040505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 115, 124, 120, 119, 4, 482 -NA,NA,"",2016-17,Uxbridge - Whitin Elementary School,03040020, 0, 0, 0, 0, 126, 141, 144, 0, 0, 0, 0, 0, 0, 0, 0, 411 -NA,NA,"",2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 0, 0, 0, 0, 0, 0, 88, 89, 79, 57, 0, 0, 0, 0, 0, 313 -NA,NA,"",2016-17,Wachusett - Central Tree Middle,07750310, 0, 0, 0, 0, 0, 0, 0, 137, 120, 145, 0, 0, 0, 0, 0, 402 -NA,NA,"",2016-17,Wachusett - Chocksett Middle School,07750315, 0, 0, 0, 0, 0, 0, 98, 96, 92, 91, 0, 0, 0, 0, 0, 377 -NA,NA,"",2016-17,Wachusett - Davis Hill Elementary,07750018, 0, 64, 75, 70, 62, 88, 97, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2016-17,Wachusett - Dawson,07750020, 0, 69, 82, 82, 88, 95, 91, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2016-17,Wachusett - Early Childhood Center,07750001, 150, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 150 -NA,NA,"",2016-17,Wachusett - Glenwood Elementary School,07750060, 0, 0, 0, 0, 111, 131, 118, 0, 0, 0, 0, 0, 0, 0, 0, 360 -NA,NA,"",2016-17,Wachusett - Houghton Elementary,07750027, 0, 56, 86, 70, 99, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2016-17,Wachusett - Leroy E.Mayo,07750032, 0, 71, 76, 83, 85, 85, 92, 0, 0, 0, 0, 0, 0, 0, 0, 492 -NA,NA,"",2016-17,Wachusett - Mountview Middle,07750305, 0, 0, 0, 0, 0, 0, 0, 253, 267, 289, 0, 0, 0, 0, 0, 809 -NA,NA,"",2016-17,Wachusett - Naquag Elementary School,07750005, 0, 95, 132, 96, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 323 -NA,NA,"",2016-17,Wachusett - Paxton Center,07750040, 0, 40, 36, 54, 51, 62, 62, 64, 62, 64, 0, 0, 0, 0, 0, 495 -NA,NA,"",2016-17,Wachusett - Thomas Prince,07750045, 0, 41, 35, 48, 41, 40, 49, 47, 44, 50, 0, 0, 0, 0, 0, 395 -NA,NA,"",2016-17,Wachusett - Wachusett Regional High,07750505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 528, 589, 502, 507, 14," 2,140" -NA,NA,"",2016-17,Wakefield - Dolbeare,03050005, 0, 102, 93, 85, 79, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129 -NA,NA,"",2016-17,Wakefield - Galvin Middle School,03050310, 0, 0, 0, 0, 0, 0, 244, 257, 290, 294, 0, 0, 0, 0, 0," 1,085" -NA,NA,"",2016-17,Wakefield - Greenwood,03050020, 0, 44, 43, 49, 46, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2016-17,Wakefield - Wakefield Memorial High,03050505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 272, 228, 271, 237, 8," 1,016" -NA,NA,"",2016-17,Wakefield - Walton,03050040, 0, 0, 46, 48, 66, 41, 0, 0, 0, 0, 0, 0, 0, 0, 0, 201 -NA,NA,"",2016-17,Wakefield - Woodville School,03050015, 0, 119, 81, 79, 70, 93, 0, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2016-17,Wales - Wales Elementary,03060005, 21, 19, 22, 18, 24, 19, 21, 20, 0, 0, 0, 0, 0, 0, 0, 164 -NA,NA,"",2016-17,Walpole - Bird Middle,03070305, 0, 0, 0, 0, 0, 0, 0, 162, 156, 162, 0, 0, 0, 0, 0, 480 -NA,NA,"",2016-17,Walpole - Boyden,03070010, 0, 60, 55, 51, 58, 68, 86, 0, 0, 0, 0, 0, 0, 0, 0, 378 -NA,NA,"",2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 82 -NA,NA,"",2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0, 0, 0, 0, 0, 0, 0, 146, 157, 143, 0, 0, 0, 0, 0, 446 -NA,NA,"",2016-17,Walpole - Elm Street School,03070005, 0, 72, 68, 63, 64, 84, 77, 0, 0, 0, 0, 0, 0, 0, 0, 428 -NA,NA,"",2016-17,Walpole - Fisher,03070015, 0, 69, 79, 79, 91, 66, 72, 0, 0, 0, 0, 0, 0, 0, 0, 456 -NA,NA,"",2016-17,Walpole - Old Post Road,03070018, 0, 78, 50, 79, 77, 66, 92, 0, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2016-17,Walpole - Walpole High,03070505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 278, 298, 286, 274, 7," 1,143" -NA,NA,"",2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 0, 79, 80, 80, 77, 62, 54, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2016-17,Waltham - Henry Whittemore Elementary School,03080065, 0, 73, 77, 64, 87, 80, 64, 0, 0, 0, 0, 0, 0, 0, 0, 445 -NA,NA,"",2016-17,Waltham - James Fitzgerald Elementary School,03080060, 0, 69, 60, 77, 73, 90, 79, 0, 0, 0, 0, 0, 0, 0, 0, 448 -NA,NA,"",2016-17,Waltham - John F Kennedy Middle,03080404, 0, 0, 0, 0, 0, 0, 0, 169, 159, 177, 0, 0, 0, 0, 0, 505 -NA,NA,"",2016-17,Waltham - John W. McDevitt Middle School,03080415, 0, 0, 0, 0, 0, 0, 0, 205, 191, 190, 0, 0, 0, 0, 0, 586 -NA,NA,"",2016-17,Waltham - Northeast Elementary School,03080040, 100, 65, 87, 72, 73, 61, 65, 0, 0, 0, 0, 0, 0, 0, 0, 523 -NA,NA,"",2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 0, 70, 85, 70, 78, 61, 75, 0, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 0, 40, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 40 -NA,NA,"",2016-17,Waltham - Waltham Sr High,03080505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 416, 403, 391, 376, 0," 1,586" -NA,NA,"",2016-17,Waltham - William F. Stanley Elementary School,03080005, 48, 76, 74, 60, 60, 69, 70, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2016-17,Ware - Stanley M Koziol Elementary School,03090020, 44, 96, 90, 92, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 414 -NA,NA,"",2016-17,Ware - Ware Junior/Senior High School,03090505, 0, 0, 0, 0, 0, 0, 0, 0, 92, 102, 70, 78, 65, 65, 3, 475 -NA,NA,"",2016-17,Ware - Ware Middle School,03090305, 0, 0, 0, 0, 0, 119, 119, 99, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2016-17,Wareham - John William Decas,03100003, 0, 173, 215, 220, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 608 -NA,NA,"",2016-17,Wareham - Minot Forest,03100017, 93, 0, 0, 0, 216, 198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 507 -NA,NA,"",2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 12, 12, 19, 18, 0, 61 -NA,NA,"",2016-17,Wareham - Wareham Middle,03100305, 0, 0, 0, 0, 0, 0, 190, 204, 191, 182, 0, 0, 0, 0, 0, 767 -NA,NA,"",2016-17,Wareham - Wareham Senior High,03100505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 106, 120, 112, 9, 518 -NA,NA,"",2016-17,Watertown - Cunniff,03140015, 9, 51, 42, 53, 47, 42, 52, 0, 0, 0, 0, 0, 0, 0, 0, 296 -NA,NA,"",2016-17,Watertown - Hosmer,03140020, 73, 120, 90, 92, 84, 92, 82, 0, 0, 0, 0, 0, 0, 0, 0, 633 -NA,NA,"",2016-17,Watertown - James Russell Lowell,03140025, 18, 89, 71, 72, 64, 63, 55, 0, 0, 0, 0, 0, 0, 0, 0, 432 -NA,NA,"",2016-17,Watertown - Watertown High,03140505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 154, 172, 164, 168, 4, 662 -NA,NA,"",2016-17,Watertown - Watertown Middle,03140305, 0, 0, 0, 0, 0, 0, 0, 194, 163, 212, 0, 0, 0, 0, 0, 569 -NA,NA,"",2016-17,Wayland - Claypit Hill School,03150005, 0, 90, 84, 82, 87, 101, 95, 0, 0, 0, 0, 0, 0, 0, 0, 539 -NA,NA,"",2016-17,Wayland - Happy Hollow School,03150015, 0, 58, 57, 66, 59, 73, 73, 0, 0, 0, 0, 0, 0, 0, 0, 386 -NA,NA,"",2016-17,Wayland - Loker School,03150020, 0, 36, 41, 42, 37, 53, 48, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2016-17,Wayland - Wayland High School,03150505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 214, 204, 219, 191, 0, 828 -NA,NA,"",2016-17,Wayland - Wayland Middle School,03150305, 0, 0, 0, 0, 0, 0, 0, 207, 197, 232, 0, 0, 0, 0, 0, 636 -NA,NA,"",2016-17,Webster - Bartlett High School,03160505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 101, 136, 113, 88, 5, 443 -NA,NA,"",2016-17,Webster - Park Avenue Elementary,03160015, 53, 149, 163, 168, 156, 156, 0, 0, 0, 0, 0, 0, 0, 0, 0, 845 -NA,NA,"",2016-17,Webster - Webster Middle School,03160315, 0, 0, 0, 0, 0, 0, 133, 146, 153, 134, 0, 0, 0, 0, 0, 566 -NA,NA,"",2016-17,Wellesley - Ernest F Upham,03170050, 0, 38, 22, 43, 46, 38, 35, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2016-17,Wellesley - Hunnewell,03170025, 0, 40, 40, 44, 46, 40, 41, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2016-17,Wellesley - John D Hardy,03170020, 0, 39, 53, 44, 55, 58, 59, 0, 0, 0, 0, 0, 0, 0, 0, 308 -NA,NA,"",2016-17,Wellesley - Joseph E Fiske,03170015, 106, 55, 44, 57, 61, 57, 61, 0, 0, 0, 0, 0, 0, 0, 0, 441 -NA,NA,"",2016-17,Wellesley - Katharine Lee Bates,03170005, 0, 54, 61, 58, 71, 68, 67, 0, 0, 0, 0, 0, 0, 0, 0, 379 -NA,NA,"",2016-17,Wellesley - Schofield,03170045, 0, 53, 58, 63, 67, 67, 60, 0, 0, 0, 0, 0, 0, 0, 0, 368 -NA,NA,"",2016-17,Wellesley - Sprague Elementary School,03170048, 0, 66, 65, 66, 67, 65, 63, 0, 0, 0, 0, 0, 0, 0, 0, 392 -NA,NA,"",2016-17,Wellesley - Wellesley Middle,03170305, 0, 0, 0, 0, 0, 0, 0, 392, 350, 403, 0, 0, 0, 0, 0," 1,145" -NA,NA,"",2016-17,Wellesley - Wellesley Sr High,03170505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 375, 383, 399, 355, 0," 1,512" -NA,NA,"",2016-17,Wellfleet - Wellfleet Elementary,03180005, 12, 18, 18, 15, 9, 31, 10, 0, 0, 0, 0, 0, 0, 0, 0, 113 -NA,NA,"",2016-17,West Boylston - Major Edwards Elementary,03220005, 26, 58, 62, 55, 68, 67, 66, 0, 0, 0, 0, 0, 0, 0, 0, 402 -NA,NA,"",2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 0, 0, 0, 0, 0, 0, 0, 82, 95, 84, 65, 60, 66, 61, 0, 513 -NA,NA,"",2016-17,West Bridgewater - Howard School,03230305, 0, 0, 0, 0, 0, 92, 85, 93, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2016-17,West Bridgewater - Rose L Macdonald,03230003, 0, 0, 82, 81, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 257 -NA,NA,"",2016-17,West Bridgewater - Spring Street School,03230005, 59, 82, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 141 -NA,NA,"",2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0, 0, 0, 0, 0, 0, 0, 0, 113, 105, 102, 106, 94, 99, 0, 619 -NA,NA,"",2016-17,West Springfield - 21st Century Skills Academy,03320515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 13, 0, 14 -NA,NA,"",2016-17,West Springfield - Cowing Early Childhood,03320001, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 120 -NA,NA,"",2016-17,West Springfield - John Ashley,03320005, 0, 226, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 226 -NA,NA,"",2016-17,West Springfield - John R Fausey,03320010, 0, 2, 82, 81, 107, 91, 99, 0, 0, 0, 0, 0, 0, 0, 0, 462 -NA,NA,"",2016-17,West Springfield - Memorial,03320025, 0, 0, 44, 50, 41, 63, 38, 0, 0, 0, 0, 0, 0, 0, 0, 236 -NA,NA,"",2016-17,West Springfield - Mittineague,03320030, 0, 0, 33, 30, 36, 30, 34, 0, 0, 0, 0, 0, 0, 0, 0, 163 -NA,NA,"",2016-17,West Springfield - Philip G Coburn,03320007, 0, 61, 112, 108, 91, 77, 66, 0, 0, 0, 0, 0, 0, 0, 0, 515 -NA,NA,"",2016-17,West Springfield - Tatham,03320040, 0, 0, 39, 47, 42, 44, 55, 0, 0, 0, 0, 0, 0, 0, 0, 227 -NA,NA,"",2016-17,West Springfield - West Springfield High,03320505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 321, 301, 300, 282, 15," 1,219" -NA,NA,"",2016-17,West Springfield - West Springfield Middle,03320305, 0, 0, 0, 0, 0, 0, 0, 316, 286, 310, 0, 0, 0, 0, 0, 912 -NA,NA,"",2016-17,Westborough - Annie E Fales,03210010, 0, 85, 79, 91, 86, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2016-17,Westborough - Elsie A Hastings Elementary,03210025, 102, 95, 94, 95, 100, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 486 -NA,NA,"",2016-17,Westborough - J Harding Armstrong,03210005, 0, 111, 97, 98, 94, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 400 -NA,NA,"",2016-17,Westborough - Mill Pond School,03210045, 0, 0, 0, 0, 0, 308, 302, 279, 0, 0, 0, 0, 0, 0, 0, 889 -NA,NA,"",2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0, 0, 0, 0, 0, 0, 0, 0, 315, 321, 0, 0, 0, 0, 0, 636 -NA,NA,"",2016-17,Westborough - Westborough High,03210505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 266, 267, 271, 245, 4," 1,053" -NA,NA,"",2016-17,Westfield - Abner Gibbs,03250020, 0, 40, 38, 25, 38, 43, 34, 0, 0, 0, 0, 0, 0, 0, 0, 218 -NA,NA,"",2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 175, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 175 -NA,NA,"",2016-17,Westfield - Franklin Ave,03250015, 0, 43, 45, 38, 45, 34, 46, 0, 0, 0, 0, 0, 0, 0, 0, 251 -NA,NA,"",2016-17,Westfield - Highland,03250025, 0, 53, 64, 72, 68, 65, 74, 0, 0, 0, 0, 0, 0, 0, 0, 396 -NA,NA,"",2016-17,Westfield - Munger Hill,03250033, 0, 56, 62, 53, 64, 72, 87, 0, 0, 0, 0, 0, 0, 0, 0, 394 -NA,NA,"",2016-17,Westfield - North Middle School,03250305, 0, 0, 0, 0, 0, 0, 0, 203, 227, 210, 0, 0, 0, 0, 0, 640 -NA,NA,"",2016-17,Westfield - Paper Mill,03250036, 0, 69, 71, 74, 71, 74, 74, 0, 0, 0, 0, 0, 0, 0, 0, 433 -NA,NA,"",2016-17,Westfield - Russell Elementary School,03250055, 0, 26, 22, 33, 44, 33, 26, 0, 0, 0, 0, 0, 0, 0, 0, 184 -NA,NA,"",2016-17,Westfield - South Middle School,03250310, 0, 0, 0, 0, 0, 0, 0, 193, 200, 197, 0, 0, 0, 0, 0, 590 -NA,NA,"",2016-17,Westfield - Southampton Road,03250040, 0, 82, 68, 69, 75, 72, 87, 0, 0, 0, 0, 0, 0, 0, 0, 453 -NA,NA,"",2016-17,Westfield - Westfield High,03250505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 319, 290, 322, 303, 35," 1,269" -NA,NA,"",2016-17,Westfield - Westfield Technical Academy,03250605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 156, 139, 143, 102, 0, 540 -NA,NA,"",2016-17,Westford - Abbot Elementary,03260004, 0, 0, 0, 0, 115, 118, 123, 0, 0, 0, 0, 0, 0, 0, 0, 356 -NA,NA,"",2016-17,Westford - Blanchard Middle,03260310, 0, 0, 0, 0, 0, 0, 0, 191, 214, 209, 0, 0, 0, 0, 0, 614 -NA,NA,"",2016-17,Westford - Col John Robinson,03260025, 0, 74, 105, 92, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271 -NA,NA,"",2016-17,Westford - Day Elementary,03260007, 0, 0, 0, 0, 104, 124, 129, 0, 0, 0, 0, 0, 0, 0, 0, 357 -NA,NA,"",2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0, 0, 0, 0, 100, 115, 121, 0, 0, 0, 0, 0, 0, 0, 0, 336 -NA,NA,"",2016-17,Westford - Millennium Elementary,03260013, 119, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 119 -NA,NA,"",2016-17,Westford - Nabnasset,03260015, 0, 90, 143, 128, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 361 -NA,NA,"",2016-17,Westford - Rita E. Miller Elementary School,03260055, 0, 95, 119, 121, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 335 -NA,NA,"",2016-17,Westford - Stony Brook School,03260330, 0, 0, 0, 0, 0, 0, 0, 251, 186, 254, 0, 0, 0, 0, 0, 691 -NA,NA,"",2016-17,Westford - Westford Academy,03260505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430, 455, 393, 398, 4," 1,680" -NA,NA,"",2016-17,Westhampton - Westhampton Elementary School,03270005, 14, 14, 17, 18, 17, 15, 18, 17, 0, 0, 0, 0, 0, 0, 0, 130 -NA,NA,"",2016-17,Weston - Country,03300010, 21, 56, 74, 77, 57, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2016-17,Weston - Field Elementary School,03300012, 0, 0, 0, 0, 0, 190, 157, 0, 0, 0, 0, 0, 0, 0, 0, 347 -NA,NA,"",2016-17,Weston - Weston High,03300505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 202, 146, 186, 1, 706 -NA,NA,"",2016-17,Weston - Weston Middle,03300305, 0, 0, 0, 0, 0, 0, 0, 165, 168, 181, 0, 0, 0, 0, 0, 514 -NA,NA,"",2016-17,Weston - Woodland,03300015, 21, 71, 59, 76, 75, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 302 -NA,NA,"",2016-17,Westport - Alice A Macomber,03310015, 45, 104, 114, 120, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 383 -NA,NA,"",2016-17,Westport - Westport Elementary,03310030, 0, 0, 0, 0, 111, 120, 147, 113, 0, 0, 0, 0, 0, 0, 0, 491 -NA,NA,"",2016-17,Westport - Westport Junior/Senior High School,03310515, 0, 0, 0, 0, 0, 0, 0, 0, 124, 138, 60, 99, 69, 86, 0, 576 -NA,NA,"",2016-17,Westwood - Deerfield School,03350010, 0, 23, 30, 42, 31, 49, 48, 0, 0, 0, 0, 0, 0, 0, 0, 223 -NA,NA,"",2016-17,Westwood - Downey,03350012, 0, 39, 42, 36, 44, 31, 52, 0, 0, 0, 0, 0, 0, 0, 0, 244 -NA,NA,"",2016-17,Westwood - E W Thurston Middle,03350305, 0, 0, 0, 0, 0, 0, 0, 273, 262, 260, 0, 0, 0, 0, 0, 795 -NA,NA,"",2016-17,Westwood - Martha Jones,03350017, 0, 39, 46, 44, 54, 50, 60, 0, 0, 0, 0, 0, 0, 0, 0, 293 -NA,NA,"",2016-17,Westwood - Paul Hanlon,03350015, 0, 30, 36, 40, 42, 27, 47, 0, 0, 0, 0, 0, 0, 0, 0, 222 -NA,NA,"",2016-17,Westwood - Westwood High,03350505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 237, 260, 248, 254, 0, 999 -NA,NA,"",2016-17,Westwood - Westwood Integrated Preschool,03350050, 42, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42 -NA,NA,"",2016-17,Westwood - William E Sheehan,03350025, 0, 46, 53, 71, 52, 65, 57, 0, 0, 0, 0, 0, 0, 0, 0, 344 -NA,NA,"",2016-17,Weymouth - Abigail Adams Middle School,03360310, 0, 0, 0, 0, 0, 0, 481, 458, 0, 0, 0, 0, 0, 0, 0, 939 -NA,NA,"",2016-17,Weymouth - Academy Avenue,03360005, 0, 61, 53, 60, 80, 63, 0, 0, 0, 0, 0, 0, 0, 0, 0, 317 -NA,NA,"",2016-17,Weymouth - Frederick C Murphy,03360050, 0, 22, 51, 50, 55, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 240 -NA,NA,"",2016-17,Weymouth - Johnson Early Childhood Center,03360003, 199, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 199 -NA,NA,"",2016-17,Weymouth - Lawrence W Pingree,03360065, 0, 49, 43, 49, 34, 45, 0, 0, 0, 0, 0, 0, 0, 0, 0, 220 -NA,NA,"",2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0, 0, 0, 0, 0, 0, 3, 3, 479, 431, 0, 0, 0, 0, 0, 916 -NA,NA,"",2016-17,Weymouth - Ralph Talbot,03360085, 0, 56, 61, 60, 49, 56, 0, 0, 0, 0, 0, 0, 0, 0, 0, 282 -NA,NA,"",2016-17,Weymouth - Thomas V Nash,03360060, 0, 45, 44, 41, 55, 46, 0, 0, 0, 0, 0, 0, 0, 0, 0, 231 -NA,NA,"",2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 0, 60, 78, 68, 77, 62, 0, 0, 0, 0, 0, 0, 0, 0, 0, 345 -NA,NA,"",2016-17,Weymouth - Wessagusset,03360110, 0, 48, 61, 66, 61, 58, 0, 0, 0, 0, 0, 0, 0, 0, 0, 294 -NA,NA,"",2016-17,Weymouth - Weymouth High School,03360505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 581, 468, 462, 436, 6," 1,953" -NA,NA,"",2016-17,Weymouth - William Seach,03360080, 0, 64, 70, 64, 74, 81, 0, 0, 0, 0, 0, 0, 0, 0, 0, 353 -NA,NA,"",2016-17,Whately - Whately Elementary,03370005, 12, 15, 12, 16, 16, 18, 20, 20, 0, 0, 0, 0, 0, 0, 0, 129 -NA,NA,"",2016-17,Whitman-Hanson - Hanson Middle School,07800315, 0, 0, 0, 0, 0, 0, 0, 136, 135, 131, 0, 0, 0, 0, 0, 402 -NA,NA,"",2016-17,Whitman-Hanson - Indian Head,07800035, 0, 0, 0, 0, 98, 111, 134, 0, 0, 0, 0, 0, 0, 0, 0, 343 -NA,NA,"",2016-17,Whitman-Hanson - John H Duval,07800030, 0, 75, 70, 79, 85, 93, 93, 0, 0, 0, 0, 0, 0, 0, 0, 495 -NA,NA,"",2016-17,Whitman-Hanson - Louise A Conley,07800010, 0, 82, 90, 86, 106, 110, 87, 0, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2016-17,Whitman-Hanson - Maquan Elementary,07800025, 113, 97, 113, 107, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 430 -NA,NA,"",2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 271, 291, 299, 297, 12," 1,170" -NA,NA,"",2016-17,Whitman-Hanson - Whitman Middle,07800310, 0, 0, 0, 0, 0, 0, 0, 196, 195, 208, 0, 0, 0, 0, 0, 599 -NA,NA,"",2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 318, 338, 316, 338, 0," 1,310" -NA,NA,"",2016-17,Williamsburg - Anne T. Dunphy School,03400020, 11, 16, 21, 16, 22, 20, 27, 25, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2016-17,Williamstown - Williamstown Elementary,03410010, 29, 47, 74, 60, 54, 56, 71, 59, 0, 0, 0, 0, 0, 0, 0, 450 -NA,NA,"",2016-17,Wilmington - Boutwell,03420005, 41, 117, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 158 -NA,NA,"",2016-17,Wilmington - North Intermediate,03420060, 0, 0, 0, 0, 0, 133, 137, 0, 0, 0, 0, 0, 0, 0, 0, 270 -NA,NA,"",2016-17,Wilmington - Shawsheen Elementary,03420025, 0, 0, 125, 112, 122, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359 -NA,NA,"",2016-17,Wilmington - West Intermediate,03420080, 0, 0, 0, 0, 0, 120, 134, 0, 0, 0, 0, 0, 0, 0, 0, 254 -NA,NA,"",2016-17,Wilmington - Wildwood,03420015, 42, 136, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 178 -NA,NA,"",2016-17,Wilmington - Wilmington High,03420505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 211, 215, 233, 230, 2, 891 -NA,NA,"",2016-17,Wilmington - Wilmington Middle School,03420330, 0, 0, 0, 0, 0, 0, 0, 265, 308, 296, 0, 0, 0, 0, 0, 869 -NA,NA,"",2016-17,Wilmington - Woburn Street,03420020, 0, 0, 142, 106, 164, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2016-17,Winchendon - Memorial,03430040, 0, 100, 90, 85, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 275 -NA,NA,"",2016-17,Winchendon - Murdock Academy for Success,03430405, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 11, 5, 0, 28 -NA,NA,"",2016-17,Winchendon - Murdock High School,03430515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 78, 84, 60, 67, 0, 289 -NA,NA,"",2016-17,Winchendon - Murdock Middle School,03430315, 0, 0, 0, 0, 0, 0, 0, 94, 94, 108, 0, 0, 0, 0, 0, 296 -NA,NA,"",2016-17,Winchendon - Toy Town Elementary,03430050, 0, 0, 0, 0, 91, 106, 84, 0, 0, 0, 0, 0, 0, 0, 0, 281 -NA,NA,"",2016-17,Winchendon - Winchendon PreSchool Program,03430010, 83, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 83 -NA,NA,"",2016-17,Winchester - Ambrose Elementary,03440045, 0, 50, 69, 82, 77, 84, 78, 0, 0, 0, 0, 0, 0, 0, 0, 440 -NA,NA,"",2016-17,Winchester - Lincoln Elementary,03440005, 0, 75, 64, 75, 71, 49, 76, 0, 0, 0, 0, 0, 0, 0, 0, 410 -NA,NA,"",2016-17,Winchester - Lynch Elementary,03440020, 87, 76, 85, 63, 87, 72, 76, 0, 0, 0, 0, 0, 0, 0, 0, 546 -NA,NA,"",2016-17,Winchester - McCall Middle,03440305, 0, 0, 0, 0, 0, 0, 0, 386, 365, 382, 0, 0, 0, 0, 0," 1,133" -NA,NA,"",2016-17,Winchester - Muraco Elementary,03440040, 0, 63, 58, 65, 68, 71, 79, 0, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Winchester - Vinson-Owen Elementary,03440025, 0, 48, 64, 67, 87, 82, 74, 0, 0, 0, 0, 0, 0, 0, 0, 422 -NA,NA,"",2016-17,Winchester - Winchester High School,03440505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 297, 334, 278, 0," 1,268" -NA,NA,"",2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 0, 0, 0, 0, 153, 145, 160, 0, 0, 0, 0, 0, 0, 0, 0, 458 -NA,NA,"",2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 41, 144, 136, 151, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 472 -NA,NA,"",2016-17,Winthrop - Winthrop High School,03460505, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 147, 165, 126, 125, 0, 576 -NA,NA,"",2016-17,Winthrop - Winthrop Middle School,03460305, 0, 0, 0, 0, 0, 0, 0, 146, 151, 168, 0, 0, 0, 0, 0, 465 -NA,NA,"",2016-17,Woburn - Clyde Reeves,03470040, 41, 65, 55, 59, 85, 76, 76, 0, 0, 0, 0, 0, 0, 0, 0, 457 -NA,NA,"",2016-17,Woburn - Daniel L Joyce Middle School,03470410, 0, 0, 0, 0, 0, 0, 0, 158, 186, 154, 0, 0, 0, 0, 0, 498 -NA,NA,"",2016-17,Woburn - Daniel P Hurld,03470020, 0, 36, 34, 35, 26, 43, 34, 0, 0, 0, 0, 0, 0, 0, 0, 208 -NA,NA,"",2016-17,Woburn - Goodyear Elementary School,03470005, 0, 50, 52, 52, 55, 52, 60, 0, 0, 0, 0, 0, 0, 0, 0, 321 -NA,NA,"",2016-17,Woburn - John F Kennedy Middle School,03470405, 0, 0, 0, 0, 0, 0, 0, 148, 190, 169, 0, 0, 0, 0, 0, 507 -NA,NA,"",2016-17,Woburn - Linscott-Rumford,03470025, 0, 46, 36, 37, 30, 42, 33, 0, 0, 0, 0, 0, 0, 0, 0, 224 -NA,NA,"",2016-17,Woburn - Malcolm White,03470055, 0, 43, 58, 57, 62, 54, 48, 0, 0, 0, 0, 0, 0, 0, 0, 322 -NA,NA,"",2016-17,Woburn - Mary D Altavesta,03470065, 0, 39, 51, 41, 49, 33, 33, 0, 0, 0, 0, 0, 0, 0, 0, 246 -NA,NA,"",2016-17,Woburn - Shamrock,03470043, 103, 34, 45, 39, 41, 34, 35, 0, 0, 0, 0, 0, 0, 0, 0, 331 -NA,NA,"",2016-17,Woburn - Woburn High,03470505, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 309, 357, 347, 320, 0," 1,333" -NA,NA,"",2016-17,Woburn - Wyman,03470060, 0, 29, 34, 36, 18, 35, 29, 0, 0, 0, 0, 0, 0, 0, 0, 181 -NA,NA,"",2016-17,Worcester - Belmont Street Community,03480020, 57, 85, 93, 60, 80, 65, 73, 45, 0, 0, 0, 0, 0, 0, 0, 558 -NA,NA,"",2016-17,Worcester - Burncoat Middle School,03480405, 0, 0, 0, 0, 0, 0, 0, 0, 295, 268, 0, 0, 0, 0, 0, 563 -NA,NA,"",2016-17,Worcester - Burncoat Senior High,03480503, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 242, 305, 251, 211, 14," 1,023" -NA,NA,"",2016-17,Worcester - Burncoat Street,03480035, 0, 45, 39, 34, 43, 30, 36, 32, 0, 0, 0, 0, 0, 0, 0, 259 -NA,NA,"",2016-17,Worcester - Canterbury,03480045, 26, 57, 55, 49, 43, 49, 54, 43, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2016-17,Worcester - Chandler Elementary Community,03480050, 0, 66, 80, 75, 78, 79, 67, 69, 0, 0, 0, 0, 0, 0, 0, 514 -NA,NA,"",2016-17,Worcester - Chandler Magnet,03480052, 23, 75, 73, 62, 71, 46, 42, 72, 0, 0, 0, 0, 0, 0, 0, 464 -NA,NA,"",2016-17,Worcester - City View,03480053, 24, 65, 73, 82, 63, 60, 75, 55, 0, 0, 0, 0, 0, 0, 0, 497 -NA,NA,"",2016-17,Worcester - Claremont Academy,03480350, 0, 0, 0, 0, 0, 0, 0, 0, 86, 77, 106, 94, 94, 75, 0, 532 -NA,NA,"",2016-17,Worcester - Clark St Community,03480055, 0, 39, 26, 28, 28, 26, 28, 28, 0, 0, 0, 0, 0, 0, 0, 203 -NA,NA,"",2016-17,Worcester - Columbus Park,03480060, 57, 63, 66, 72, 48, 70, 58, 42, 0, 0, 0, 0, 0, 0, 0, 476 -NA,NA,"",2016-17,Worcester - Doherty Memorial High,03480512, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 424, 385, 404, 329, 13," 1,555" -NA,NA,"",2016-17,Worcester - Elm Park Community,03480095, 27, 71, 77, 67, 78, 67, 55, 57, 0, 0, 0, 0, 0, 0, 0, 499 -NA,NA,"",2016-17,Worcester - Flagg Street,03480090, 0, 52, 59, 71, 57, 53, 62, 50, 0, 0, 0, 0, 0, 0, 0, 404 -NA,NA,"",2016-17,Worcester - Forest Grove Middle,03480415, 0, 0, 0, 0, 0, 0, 0, 0, 492, 505, 0, 0, 0, 0, 0, 997 -NA,NA,"",2016-17,Worcester - Francis J McGrath Elementary,03480177, 30, 52, 35, 41, 36, 30, 31, 44, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2016-17,Worcester - Gates Lane,03480110, 69, 69, 75, 77, 71, 58, 99, 78, 0, 0, 0, 0, 0, 0, 0, 596 -NA,NA,"",2016-17,Worcester - Goddard School/Science Technical,03480100, 37, 72, 65, 57, 70, 72, 79, 65, 0, 0, 0, 0, 0, 0, 0, 517 -NA,NA,"",2016-17,Worcester - Grafton Street,03480115, 28, 59, 67, 63, 64, 44, 56, 28, 0, 0, 0, 0, 0, 0, 0, 409 -NA,NA,"",2016-17,Worcester - Head Start,03480002, 560, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 560 -NA,NA,"",2016-17,Worcester - Heard Street,03480136, 0, 38, 43, 41, 38, 32, 43, 34, 0, 0, 0, 0, 0, 0, 0, 269 -NA,NA,"",2016-17,Worcester - Jacob Hiatt Magnet,03480140, 36, 72, 62, 58, 59, 55, 56, 44, 0, 0, 0, 0, 0, 0, 0, 442 -NA,NA,"",2016-17,Worcester - Lake View,03480145, 0, 53, 50, 43, 46, 36, 42, 29, 0, 0, 0, 0, 0, 0, 0, 299 -NA,NA,"",2016-17,Worcester - Lincoln Street,03480160, 14, 37, 48, 40, 34, 45, 41, 26, 0, 0, 0, 0, 0, 0, 0, 285 -NA,NA,"",2016-17,Worcester - May Street,03480175, 0, 49, 42, 51, 49, 49, 44, 53, 0, 0, 0, 0, 0, 0, 0, 337 -NA,NA,"",2016-17,Worcester - Midland Street,03480185, 0, 39, 37, 31, 37, 28, 40, 30, 0, 0, 0, 0, 0, 0, 0, 242 -NA,NA,"",2016-17,Worcester - Nelson Place,03480200, 0, 67, 52, 77, 58, 59, 80, 61, 0, 0, 0, 0, 0, 0, 0, 454 -NA,NA,"",2016-17,Worcester - Norrback Avenue,03480202, 50, 79, 73, 83, 79, 67, 74, 61, 0, 0, 0, 0, 0, 0, 0, 566 -NA,NA,"",2016-17,Worcester - North High,03480515, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 320, 308, 349, 311, 19," 1,307" -NA,NA,"",2016-17,Worcester - Quinsigamond,03480210, 25, 117, 97, 111, 133, 120, 92, 110, 0, 0, 0, 0, 0, 0, 0, 805 -NA,NA,"",2016-17,Worcester - Rice Square,03480215, 0, 58, 59, 58, 50, 62, 68, 57, 0, 0, 0, 0, 0, 0, 0, 412 -NA,NA,"",2016-17,Worcester - Roosevelt,03480220, 46, 94, 89, 93, 89, 80, 92, 71, 0, 0, 0, 0, 0, 0, 0, 654 -NA,NA,"",2016-17,Worcester - South High Community,03480520, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 385, 359, 359, 293, 25," 1,421" -NA,NA,"",2016-17,Worcester - Sullivan Middle,03480423, 0, 0, 0, 0, 0, 0, 0, 48, 413, 402, 0, 0, 0, 0, 0, 863 -NA,NA,"",2016-17,Worcester - Tatnuck,03480230, 20, 51, 58, 51, 59, 49, 46, 51, 0, 0, 0, 0, 0, 0, 0, 385 -NA,NA,"",2016-17,Worcester - Thorndyke Road,03480235, 0, 68, 61, 50, 57, 49, 47, 44, 0, 0, 0, 0, 0, 0, 0, 376 -NA,NA,"",2016-17,Worcester - Union Hill School,03480240, 0, 69, 78, 81, 70, 77, 85, 61, 0, 0, 0, 0, 0, 0, 0, 521 -NA,NA,"",2016-17,Worcester - University Pk Campus School,03480285, 0, 0, 0, 0, 0, 0, 0, 0, 47, 44, 41, 38, 39, 45, 0, 254 -NA,NA,"",2016-17,Worcester - Vernon Hill School,03480280, 81, 71, 55, 77, 76, 73, 66, 62, 0, 0, 0, 0, 0, 0, 0, 561 -NA,NA,"",2016-17,Worcester - Wawecus Road School,03480026, 0, 22, 19, 22, 23, 23, 22, 16, 0, 0, 0, 0, 0, 0, 0, 147 -NA,NA,"",2016-17,Worcester - West Tatnuck,03480260, 48, 42, 40, 48, 43, 42, 43, 35, 0, 0, 0, 0, 0, 0, 0, 341 -NA,NA,"",2016-17,Worcester - Woodland Academy,03480030, 13, 98, 81, 91, 92, 77, 100, 75, 0, 0, 0, 0, 0, 0, 0, 627 -NA,NA,"",2016-17,Worcester - Worcester Arts Magnet School,03480225, 27, 55, 64, 60, 62, 51, 44, 42, 0, 0, 0, 0, 0, 0, 0, 405 -NA,NA,"",2016-17,Worcester - Worcester East Middle,03480420, 0, 0, 0, 0, 0, 0, 0, 79, 365, 372, 0, 0, 0, 0, 0, 816 -NA,NA,"",2016-17,Worcester - Worcester Technical High,03480605, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 359, 325, 347, 358, 0," 1,389" -NA,NA,"",2016-17,Worthington - R. H. Conwell,03490010, 11, 12, 10, 7, 6, 3, 3, 8, 0, 0, 0, 0, 0, 0, 0, 60 -NA,NA,"",2016-17,Wrentham - Charles E Roderick,03500010, 0, 0, 0, 0, 0, 148, 151, 140, 0, 0, 0, 0, 0, 0, 0, 439 -NA,NA,"",2016-17,Wrentham - Delaney,03500003, 88, 117, 105, 129, 153, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 592 +NA,NA,,2022-23,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,0,120,120,118,121,124,121,122,114,110,89,83,90,90,0,1422 +NA,NA,,2022-23,Abington - Abington Early Education Program,10001,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87 +NA,NA,,2022-23,Abington - Abington High,10505,0,0,0,0,0,0,0,0,0,0,137,127,146,131,7,548 +NA,NA,,2022-23,Abington - Abington Middle School,10405,0,0,0,0,0,0,157,165,147,178,0,0,0,0,0,647 +NA,NA,,2022-23,Abington - Beaver Brook Elementary,10020,0,160,173,188,0,0,0,0,0,0,0,0,0,0,0,521 +NA,NA,,2022-23,Abington - Woodsdale Elementary School,10015,0,0,0,0,166,169,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2022-23,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,0,0,0,0,0,0,36,57,60,71,64,60,65,54,0,467 +NA,NA,,2022-23,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,0,0,0,0,0,0,0,0,0,418,396,414,454,1,1683 +NA,NA,,2022-23,Acton-Boxborough - Blanchard Memorial School,6000005,0,58,60,75,65,89,92,67,0,0,0,0,0,0,0,506 +NA,NA,,2022-23,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,54,63,58,65,45,45,47,0,0,0,0,0,0,0,377 +NA,NA,,2022-23,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107 +NA,NA,,2022-23,Acton-Boxborough - Luther Conant School,6000030,0,38,60,39,62,67,70,72,0,0,0,0,0,0,0,408 +NA,NA,,2022-23,Acton-Boxborough - McCarthy-Towne School,6000015,0,57,41,58,64,68,84,74,0,0,0,0,0,0,0,446 +NA,NA,,2022-23,Acton-Boxborough - Merriam School,6000010,0,34,61,59,65,69,71,72,0,0,0,0,0,0,0,431 +NA,NA,,2022-23,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,54,57,37,44,46,44,68,0,0,0,0,0,0,0,350 +NA,NA,,2022-23,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,0,0,0,0,0,0,0,410,415,0,0,0,0,0,825 +NA,NA,,2022-23,Acushnet - Acushnet Elementary School,30025,55,95,86,106,89,125,0,0,0,0,0,0,0,0,0,556 +NA,NA,,2022-23,Acushnet - Albert F Ford Middle School,30305,0,0,0,0,0,0,104,86,107,110,0,0,0,0,0,407 +NA,NA,,2022-23,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,0,0,0,0,0,0,141,141,142,138,131,129,144,0,966 +NA,NA,,2022-23,Agawam - Agawam Early Childhood Center,50003,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148 +NA,NA,,2022-23,Agawam - Agawam High,50505,0,0,0,0,0,0,0,0,0,0,312,252,240,243,5,1052 +NA,NA,,2022-23,Agawam - Agawam Junior High,50405,0,0,0,0,0,0,0,0,253,265,0,0,0,0,0,518 +NA,NA,,2022-23,Agawam - Benjamin J Phelps,50020,0,66,52,62,68,60,0,0,0,0,0,0,0,0,0,308 +NA,NA,,2022-23,Agawam - Clifford M Granger,50010,0,57,77,61,76,64,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2022-23,Agawam - James Clark School,50030,0,65,66,57,53,66,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2022-23,Agawam - Roberta G. Doering School,50303,0,0,0,0,0,0,235,277,0,0,0,0,0,0,0,512 +NA,NA,,2022-23,Agawam - Robinson Park,50025,0,46,47,60,60,64,0,0,0,0,0,0,0,0,0,277 +NA,NA,,2022-23,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,0,102,105,102,104,104,100,154,138,129,0,0,0,0,0,1038 +NA,NA,,2022-23,Amesbury - Amesbury Elementary,70005,30,55,65,60,66,52,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2022-23,Amesbury - Amesbury High,70505,0,0,0,0,0,0,0,0,0,0,124,103,113,108,5,453 +NA,NA,,2022-23,Amesbury - Amesbury Innovation High School,70515,0,0,0,0,0,0,0,0,0,0,10,16,10,9,0,45 +NA,NA,,2022-23,Amesbury - Amesbury Middle,70013,0,0,0,0,0,0,131,135,151,167,0,0,0,0,0,584 +NA,NA,,2022-23,Amesbury - Charles C Cashman Elementary,70010,24,65,77,82,62,59,0,0,0,0,0,0,0,0,0,369 +NA,NA,,2022-23,Amherst - Crocker Farm Elementary,80009,60,31,30,49,34,57,40,44,0,0,0,0,0,0,0,345 +NA,NA,,2022-23,Amherst - Fort River Elementary,80020,0,55,57,50,65,49,38,65,0,0,0,0,0,0,0,379 +NA,NA,,2022-23,Amherst - Wildwood Elementary,80050,0,45,34,45,45,53,61,43,0,0,0,0,0,0,0,326 +NA,NA,,2022-23,Amherst-Pelham - Amherst Regional High,6050505,0,0,0,0,0,0,0,0,0,0,225,203,216,211,3,858 +NA,NA,,2022-23,Amherst-Pelham - Amherst Regional Middle School,6050405,0,0,0,0,0,0,0,0,187,185,0,0,0,0,0,372 +NA,NA,,2022-23,Andover - Andover High,90505,0,0,0,0,0,0,0,0,0,0,403,421,419,420,39,1702 +NA,NA,,2022-23,Andover - Andover West Middle,90310,0,0,0,0,0,0,0,160,172,186,0,0,0,0,0,518 +NA,NA,,2022-23,Andover - Bancroft Elementary,90003,0,87,82,73,91,103,107,0,0,0,0,0,0,0,0,543 +NA,NA,,2022-23,Andover - Doherty Middle,90305,0,0,0,0,0,0,0,153,164,144,0,0,0,0,0,461 +NA,NA,,2022-23,Andover - Henry C Sanborn Elementary,90010,0,52,57,50,48,66,58,0,0,0,0,0,0,0,0,331 +NA,NA,,2022-23,Andover - High Plain Elementary,90004,0,62,93,86,88,112,86,0,0,0,0,0,0,0,0,527 +NA,NA,,2022-23,Andover - Shawsheen School,90005,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98 +NA,NA,,2022-23,Andover - South Elementary,90020,0,65,74,77,70,89,78,0,0,0,0,0,0,0,0,453 +NA,NA,,2022-23,Andover - West Elementary,90025,0,89,92,98,92,100,84,0,0,0,0,0,0,0,0,555 +NA,NA,,2022-23,Andover - Wood Hill Middle School,90350,0,0,0,0,0,0,0,97,118,123,0,0,0,0,0,338 +NA,NA,,2022-23,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,0,0,0,0,0,0,0,105,101,97,96,54,50,50,0,553 +NA,NA,,2022-23,Arlington - Arlington High,100505,0,0,0,0,0,0,0,0,0,0,382,385,381,379,0,1527 +NA,NA,,2022-23,Arlington - Brackett,100010,0,83,54,64,68,96,60,0,0,0,0,0,0,0,0,425 +NA,NA,,2022-23,Arlington - Cyrus E Dallin,100025,0,67,61,63,69,85,70,0,0,0,0,0,0,0,0,415 +NA,NA,,2022-23,Arlington - Gibbs School,100305,0,0,0,0,0,0,0,511,0,0,0,0,0,0,0,511 +NA,NA,,2022-23,Arlington - Hardy,100030,0,71,78,64,55,67,62,0,0,0,0,0,0,0,0,397 +NA,NA,,2022-23,Arlington - John A Bishop,100005,0,61,68,70,64,79,59,0,0,0,0,0,0,0,0,401 +NA,NA,,2022-23,Arlington - M Norcross Stratton,100055,0,50,84,73,86,69,73,0,0,0,0,0,0,0,0,435 +NA,NA,,2022-23,Arlington - Menotomy Preschool,100038,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88 +NA,NA,,2022-23,Arlington - Ottoson Middle,100410,0,0,0,0,0,0,0,0,451,471,0,0,0,0,0,922 +NA,NA,,2022-23,Arlington - Peirce,100045,0,66,51,63,58,61,65,0,0,0,0,0,0,0,0,364 +NA,NA,,2022-23,Arlington - Thompson,100050,0,88,96,82,88,73,75,0,0,0,0,0,0,0,0,502 +NA,NA,,2022-23,Ashburnham-Westminster - Briggs Elementary,6100025,48,79,84,69,69,91,84,0,0,0,0,0,0,0,0,524 +NA,NA,,2022-23,Ashburnham-Westminster - Meetinghouse School,6100010,29,77,83,0,0,0,0,0,0,0,0,0,0,0,0,189 +NA,NA,,2022-23,Ashburnham-Westminster - Oakmont Regional High School,6100505,0,0,0,0,0,0,0,0,0,0,172,155,159,164,8,658 +NA,NA,,2022-23,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0,0,0,0,0,172,183,194,0,0,0,0,0,549 +NA,NA,,2022-23,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,0,92,91,117,89,0,0,0,0,0,0,0,0,389 +NA,NA,,2022-23,Ashland - Ashland High,140505,0,0,0,0,0,0,0,0,0,0,227,220,216,177,0,840 +NA,NA,,2022-23,Ashland - Ashland Middle,140405,0,0,0,0,0,0,0,215,225,242,0,0,0,0,0,682 +NA,NA,,2022-23,Ashland - David Mindess,140015,0,0,0,0,195,224,225,0,0,0,0,0,0,0,0,644 +NA,NA,,2022-23,Ashland - Henry E Warren Elementary,140010,0,176,224,243,0,0,0,0,0,0,0,0,0,0,0,643 +NA,NA,,2022-23,Ashland - William Pittaway Elementary,140005,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82 +NA,NA,,2022-23,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0,0,0,0,0,0,0,0,0,0,303,286,277,262,0,1128 +NA,NA,,2022-23,Athol-Royalston - Athol Community Elementary School,6150020,42,110,125,93,91,111,0,0,0,0,0,0,0,0,0,572 +NA,NA,,2022-23,Athol-Royalston - Athol High,6150505,0,0,0,0,0,0,0,0,0,0,115,111,99,77,2,404 +NA,NA,,2022-23,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,0,0,0,100,110,116,103,0,0,0,0,0,429 +NA,NA,,2022-23,Athol-Royalston - Royalston Community School,6150050,23,19,22,21,20,21,16,16,0,0,0,0,0,0,0,158 +NA,NA,,2022-23,Atlantis Charter (District) - Atlantis Charter School,4910550,0,110,109,110,110,110,110,110,109,110,72,82,62,79,0,1283 +NA,NA,,2022-23,Attleboro - A. Irvin Studley Elementary School,160001,0,73,77,58,66,77,0,0,0,0,0,0,0,0,0,351 +NA,NA,,2022-23,Attleboro - Attleboro Community Academy,160515,0,0,0,0,0,0,0,0,0,0,1,6,22,27,0,56 +NA,NA,,2022-23,Attleboro - Attleboro High,160505,0,0,0,0,0,0,0,0,0,0,506,497,428,399,14,1844 +NA,NA,,2022-23,Attleboro - Attleboro Virtual Academy,160705,0,0,0,0,0,0,0,0,0,0,3,7,17,13,0,40 +NA,NA,,2022-23,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,0,0,0,136,150,164,173,0,0,0,0,0,623 +NA,NA,,2022-23,Attleboro - Early Learning Center,160008,190,0,0,0,0,0,0,0,0,0,0,0,0,0,0,190 +NA,NA,,2022-23,Attleboro - Hill-Roberts Elementary School,160045,0,66,92,74,93,84,0,0,0,0,0,0,0,0,0,409 +NA,NA,,2022-23,Attleboro - Hyman Fine Elementary School,160040,0,83,100,81,95,91,0,0,0,0,0,0,0,0,0,450 +NA,NA,,2022-23,Attleboro - Peter Thacher Elementary School,160050,0,94,93,83,91,81,0,0,0,0,0,0,0,0,0,442 +NA,NA,,2022-23,Attleboro - Robert J. Coelho Middle School,160305,0,0,0,0,0,0,135,145,145,148,0,0,0,0,0,573 +NA,NA,,2022-23,Attleboro - Thomas Willett Elementary School,160035,0,74,73,74,70,81,0,0,0,0,0,0,0,0,0,372 +NA,NA,,2022-23,Attleboro - Wamsutta Middle School,160320,0,0,0,0,0,0,148,134,155,139,0,0,0,0,0,576 +NA,NA,,2022-23,Auburn - Auburn Middle,170305,0,0,0,0,0,0,0,228,211,213,0,0,0,0,0,652 +NA,NA,,2022-23,Auburn - Auburn Senior High,170505,107,0,0,0,0,0,0,0,0,0,186,172,174,190,12,841 +NA,NA,,2022-23,Auburn - Bryn Mawr,170010,0,95,84,90,0,0,0,0,0,0,0,0,0,0,0,269 +NA,NA,,2022-23,Auburn - Pakachoag School,170025,0,77,76,89,0,0,0,0,0,0,0,0,0,0,0,242 +NA,NA,,2022-23,Auburn - Swanson Road Intermediate School,170030,0,0,0,0,189,194,171,0,0,0,0,0,0,0,0,554 +NA,NA,,2022-23,Avon - Avon Middle High School,180510,0,0,0,0,0,0,0,0,65,60,52,65,47,45,4,338 +NA,NA,,2022-23,Avon - Ralph D Butler,180010,23,48,50,49,48,53,59,62,0,0,0,0,0,0,0,392 +NA,NA,,2022-23,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,0,0,0,0,0,0,0,0,0,0,98,119,88,89,0,394 +NA,NA,,2022-23,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,0,0,0,0,0,0,0,127,114,126,0,0,0,0,0,367 +NA,NA,,2022-23,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,56,62,65,56,47,57,0,0,0,0,0,0,0,0,343 +NA,NA,,2022-23,Ayer Shirley School District - Page Hilltop Elementary School,6160002,73,80,89,53,84,75,78,0,0,0,0,0,0,0,0,532 +NA,NA,,2022-23,Barnstable - Barnstable Community Innovation School,200012,0,79,70,74,67,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2022-23,Barnstable - Barnstable High,200505,0,0,0,0,0,0,0,0,0,370,352,354,331,355,1,1763 +NA,NA,,2022-23,Barnstable - Barnstable Intermediate School,200315,0,0,0,0,0,0,0,312,339,0,0,0,0,0,0,651 +NA,NA,,2022-23,Barnstable - Barnstable United Elementary School,200050,0,0,0,0,0,369,366,0,0,0,0,0,0,0,0,735 +NA,NA,,2022-23,Barnstable - Centerville Elementary,200010,0,61,67,56,63,0,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2022-23,Barnstable - Enoch Cobb Early Learning Center,200001,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157 +NA,NA,,2022-23,Barnstable - Hyannis West Elementary,200025,0,81,81,88,80,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2022-23,Barnstable - West Barnstable Elementary,200005,0,71,66,64,63,0,0,0,0,0,0,0,0,0,0,264 +NA,NA,,2022-23,Barnstable - West Villages Elementary School,200045,0,92,110,106,93,0,0,0,0,0,0,0,0,0,0,401 +NA,NA,,2022-23,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,0,0,0,0,0,0,0,53,65,74,53,58,50,49,0,402 +NA,NA,,2022-23,Bedford - Bedford High,230505,0,0,0,0,0,0,0,0,0,0,221,226,194,200,0,841 +NA,NA,,2022-23,Bedford - John Glenn Middle,230305,0,0,0,0,0,0,0,188,202,207,0,0,0,0,0,597 +NA,NA,,2022-23,Bedford - Lt Eleazer Davis,230010,44,141,145,184,0,0,0,0,0,0,0,0,0,0,0,514 +NA,NA,,2022-23,Bedford - Lt Job Lane School,230012,0,0,0,0,179,190,218,0,0,0,0,0,0,0,0,587 +NA,NA,,2022-23,Belchertown - Belchertown High,240505,0,0,0,0,0,0,0,0,0,0,148,157,157,173,2,637 +NA,NA,,2022-23,Belchertown - Chestnut Hill Community School,240006,0,0,0,0,0,156,166,160,0,0,0,0,0,0,0,482 +NA,NA,,2022-23,Belchertown - Cold Spring,240005,67,127,0,0,0,0,0,0,0,0,0,0,0,0,0,194 +NA,NA,,2022-23,Belchertown - Jabish Middle School,240025,0,0,0,0,0,0,0,0,163,175,0,0,0,0,0,338 +NA,NA,,2022-23,Belchertown - Swift River Elementary,240018,0,0,163,158,153,0,0,0,0,0,0,0,0,0,0,474 +NA,NA,,2022-23,Bellingham - Bellingham Early Childhood Center,250003,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100 +NA,NA,,2022-23,Bellingham - Bellingham High School,250505,0,0,0,0,0,0,0,0,0,156,162,148,151,123,7,747 +NA,NA,,2022-23,Bellingham - Bellingham Memorial School,250315,0,0,0,0,0,146,142,156,143,0,0,0,0,0,0,587 +NA,NA,,2022-23,Bellingham - Joseph F DiPietro Elementary School,250020,0,77,73,67,83,0,0,0,0,0,0,0,0,0,0,300 +NA,NA,,2022-23,Bellingham - Keough Memorial Academy,250510,0,0,0,0,0,0,0,0,1,5,7,4,4,7,0,28 +NA,NA,,2022-23,Bellingham - Stall Brook,250025,0,64,56,60,65,0,0,0,0,0,0,0,0,0,0,245 +NA,NA,,2022-23,Belmont - Belmont High,260505,0,0,0,0,0,0,0,0,0,0,359,358,333,314,0,1364 +NA,NA,,2022-23,Belmont - Daniel Butler,260015,0,65,63,69,67,70,0,0,0,0,0,0,0,0,0,334 +NA,NA,,2022-23,Belmont - Mary Lee Burbank,260010,0,53,63,55,80,85,0,0,0,0,0,0,0,0,0,336 +NA,NA,,2022-23,Belmont - Roger E Wellington,260035,57,85,102,79,108,108,0,0,0,0,0,0,0,0,0,539 +NA,NA,,2022-23,Belmont - Winn Brook,260005,0,76,82,90,92,94,0,0,0,0,0,0,0,0,0,434 +NA,NA,,2022-23,Belmont - Winthrop L Chenery Middle,260305,0,0,0,0,0,0,354,348,306,363,0,0,0,0,0,1371 +NA,NA,,2022-23,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,20,44,46,48,42,47,46,39,0,0,0,0,0,0,0,332 +NA,NA,,2022-23,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,95,96,98,96,96,96,96,97,92,0,0,0,0,0,862 +NA,NA,,2022-23,Berkley - Berkley Community School,270010,61,83,75,81,93,86,0,0,0,0,0,0,0,0,0,479 +NA,NA,,2022-23,Berkley - Berkley Middle School,270305,0,0,0,0,0,0,80,101,95,97,0,0,0,0,0,373 +NA,NA,,2022-23,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,0,0,0,0,0,32,61,65,47,44,35,32,0,316 +NA,NA,,2022-23,Berkshire Hills - Monument Mt Regional High,6180505,0,0,0,0,0,0,0,0,0,0,118,134,105,113,2,472 +NA,NA,,2022-23,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,57,49,58,66,69,73,0,0,0,0,0,0,0,0,0,372 +NA,NA,,2022-23,Berkshire Hills - W.E.B. Du Bois Regional Middle School,6180310,0,0,0,0,0,0,64,77,96,88,0,0,0,0,0,325 +NA,NA,,2022-23,Berlin-Boylston - Berlin Memorial School,6200005,20,40,30,40,29,25,36,0,0,0,0,0,0,0,0,220 +NA,NA,,2022-23,Berlin-Boylston - Boylston Elementary School,6200010,29,48,58,42,58,44,58,0,0,0,0,0,0,0,0,337 +NA,NA,,2022-23,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,0,0,0,0,77,82,75,74,67,79,61,0,515 +NA,NA,,2022-23,Beverly - Ayers/Ryal Side School,300055,0,82,71,86,73,74,0,0,0,0,0,0,0,0,0,386 +NA,NA,,2022-23,Beverly - Beverly High,300505,0,0,0,0,0,0,0,0,0,0,342,313,292,332,7,1286 +NA,NA,,2022-23,Beverly - Beverly Middle School,300305,0,0,0,0,0,0,350,326,332,359,0,0,0,0,0,1367 +NA,NA,,2022-23,Beverly - Centerville Elementary,300010,0,76,53,69,64,55,0,0,0,0,0,0,0,0,0,317 +NA,NA,,2022-23,Beverly - Cove Elementary,300015,0,79,80,90,88,82,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2022-23,Beverly - Hannah Elementary,300033,0,62,70,52,81,65,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2022-23,Beverly - McKeown School,300002,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125 +NA,NA,,2022-23,Beverly - North Beverly Elementary,300040,0,62,68,78,63,74,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2022-23,Billerica - Billerica Memorial High School,310505,185,0,0,0,0,0,0,0,0,377,322,299,260,277,6,1726 +NA,NA,,2022-23,Billerica - Frederick J Dutile,310007,0,62,59,67,44,48,0,0,0,0,0,0,0,0,0,280 +NA,NA,,2022-23,Billerica - Hajjar Elementary,310026,0,74,69,81,77,74,0,0,0,0,0,0,0,0,0,375 +NA,NA,,2022-23,Billerica - John F Kennedy,310012,0,50,66,71,59,58,0,0,0,0,0,0,0,0,0,304 +NA,NA,,2022-23,Billerica - Locke Middle,310310,0,0,0,0,0,0,174,171,204,0,0,0,0,0,0,549 +NA,NA,,2022-23,Billerica - Marshall Middle School,310305,0,0,0,0,0,0,179,209,216,0,0,0,0,0,0,604 +NA,NA,,2022-23,Billerica - Parker,310015,0,85,98,86,84,74,0,0,0,0,0,0,0,0,0,427 +NA,NA,,2022-23,Billerica - Thomas Ditson,310005,0,105,114,110,104,124,0,0,0,0,0,0,0,0,0,557 +NA,NA,,2022-23,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0,0,0,0,0,0,0,0,310,312,313,295,0,1230 +NA,NA,,2022-23,Blackstone-Millville - A F Maloney,6220015,0,0,0,0,0,125,131,0,0,0,0,0,0,0,0,256 +NA,NA,,2022-23,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,0,0,0,0,0,0,0,0,106,94,88,102,6,396 +NA,NA,,2022-23,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,0,0,0,0,0,92,145,106,0,0,0,0,0,343 +NA,NA,,2022-23,Blackstone-Millville - John F Kennedy Elementary,6220008,0,0,0,0,109,0,0,0,0,0,0,0,0,0,0,109 +NA,NA,,2022-23,Blackstone-Millville - Millville Elementary,6220010,80,89,78,117,0,0,0,0,0,0,0,0,0,0,0,364 +NA,NA,,2022-23,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,0,0,0,0,0,0,0,0,0,0,247,236,227,210,0,920 +NA,NA,,2022-23,Boston - Adams Elementary School,350302,30,29,33,36,49,33,21,18,0,0,0,0,0,0,0,249 +NA,NA,,2022-23,Boston - Alighieri Dante Montessori School,350066,25,15,16,11,12,14,9,6,0,0,0,0,0,0,0,108 +NA,NA,,2022-23,Boston - Another Course To College,350541,0,0,0,0,0,0,0,0,0,0,49,65,58,58,0,230 +NA,NA,,2022-23,Boston - Baldwin Early Learning Pilot Academy,350003,83,49,40,0,0,0,0,0,0,0,0,0,0,0,0,172 +NA,NA,,2022-23,Boston - Bates Elementary School,350278,20,38,40,36,37,38,38,30,0,0,0,0,0,0,0,277 +NA,NA,,2022-23,Boston - Beethoven Elementary School,350021,42,65,71,85,0,0,0,0,0,0,0,0,0,0,0,263 +NA,NA,,2022-23,Boston - Blackstone Elementary School,350390,62,71,66,68,65,79,66,60,0,0,0,0,0,0,0,537 +NA,NA,,2022-23,Boston - Boston Adult Tech Academy,350548,0,0,0,0,0,0,0,0,0,0,0,0,33,88,0,121 +NA,NA,,2022-23,Boston - Boston Arts Academy,350546,0,0,0,0,0,0,0,0,0,0,144,119,123,107,1,494 +NA,NA,,2022-23,Boston - Boston Collaborative High School,350755,0,0,0,0,0,0,0,0,0,0,3,12,45,118,0,178 +NA,NA,,2022-23,Boston - Boston Community Leadership Academy,350558,0,0,0,0,0,0,0,0,44,87,115,113,106,108,25,598 +NA,NA,,2022-23,Boston - Boston International High School & Newcomers Academy,350507,0,0,0,0,0,0,0,0,0,0,163,133,99,76,1,472 +NA,NA,,2022-23,Boston - Boston Latin Academy,350545,0,0,0,0,0,0,0,0,269,255,322,288,281,308,0,1723 +NA,NA,,2022-23,Boston - Boston Latin School,350560,0,0,0,0,0,0,0,0,429,366,413,417,387,410,1,2423 +NA,NA,,2022-23,Boston - Boston Teachers Union K-8 Pilot,350012,29,23,26,29,26,23,25,37,35,46,0,0,0,0,0,299 +NA,NA,,2022-23,Boston - Bradley Elementary School,350215,36,35,38,41,45,38,31,25,0,0,0,0,0,0,0,289 +NA,NA,,2022-23,Boston - Brighton High School,350505,0,0,0,0,0,0,0,0,17,19,97,131,123,133,12,532 +NA,NA,,2022-23,Boston - Burke High School,350525,0,0,0,0,0,0,0,0,24,46,80,83,82,96,9,420 +NA,NA,,2022-23,Boston - Carter School,350036,0,0,0,0,0,0,0,0,2,2,2,3,3,6,8,26 +NA,NA,,2022-23,Boston - Channing Elementary School,350360,30,40,31,18,25,21,16,8,0,0,0,0,0,0,0,189 +NA,NA,,2022-23,Boston - Charlestown High School,350515,0,0,0,0,0,0,0,0,32,47,170,123,181,183,56,792 +NA,NA,,2022-23,Boston - Chittick Elementary School,350154,42,37,34,29,27,26,21,16,0,0,0,0,0,0,0,232 +NA,NA,,2022-23,Boston - Clap Elementary School,350298,11,16,14,13,15,17,11,13,0,0,0,0,0,0,0,110 +NA,NA,,2022-23,Boston - Community Academy,350518,0,0,0,0,0,0,0,0,0,0,4,11,16,24,0,55 +NA,NA,,2022-23,Boston - Community Academy of Science and Health,350581,0,0,0,0,0,0,0,0,0,0,77,87,98,57,28,347 +NA,NA,,2022-23,Boston - Condon K-8 School,350146,42,64,58,56,52,71,73,72,59,88,0,0,0,0,0,635 +NA,NA,,2022-23,Boston - Conley Elementary School,350122,21,24,22,14,23,18,18,23,0,0,0,0,0,0,0,163 +NA,NA,,2022-23,Boston - Curley K-8 School,350020,103,83,95,83,98,104,103,106,82,74,0,0,0,0,0,931 +NA,NA,,2022-23,Boston - Dearborn 6-12 STEM Academy,350074,0,0,0,0,0,0,0,33,87,85,87,90,83,76,0,541 +NA,NA,,2022-23,Boston - Dever Elementary School,350268,27,48,48,43,48,52,53,55,0,0,0,0,0,0,0,374 +NA,NA,,2022-23,Boston - East Boston Early Education Center,350009,90,53,44,0,0,0,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2022-23,Boston - East Boston High School,350530,0,0,0,0,0,0,0,0,116,125,217,270,285,247,16,1276 +NA,NA,,2022-23,Boston - Edison K-8 School,350375,28,49,55,83,68,83,82,62,46,62,0,0,0,0,0,618 +NA,NA,,2022-23,Boston - Eliot K-8 Innovation School,350096,59,80,80,79,86,93,92,96,68,76,0,0,0,0,0,809 +NA,NA,,2022-23,Boston - Ellis Elementary School,350072,35,45,46,48,41,31,42,30,0,0,0,0,0,0,0,318 +NA,NA,,2022-23,Boston - Ellison-Parks Early Education School,350008,58,34,37,35,27,0,0,0,0,0,0,0,0,0,0,191 +NA,NA,,2022-23,Boston - English High School,350535,0,0,0,0,0,0,0,0,34,45,145,133,122,163,9,651 +NA,NA,,2022-23,Boston - Everett Elementary School,350088,12,38,38,31,41,42,34,33,0,0,0,0,0,0,0,269 +NA,NA,,2022-23,Boston - Excel High School,350522,0,0,0,0,0,0,0,0,0,0,105,103,121,105,0,434 +NA,NA,,2022-23,Boston - Fenway High School,350540,0,0,0,0,0,0,0,0,0,0,97,99,87,93,1,377 +NA,NA,,2022-23,Boston - Frederick Pilot Middle School,350383,0,0,0,0,0,0,0,67,115,141,0,0,0,0,0,323 +NA,NA,,2022-23,Boston - Gardner Pilot Academy,350326,24,40,33,40,39,42,38,48,39,43,0,0,0,0,0,386 +NA,NA,,2022-23,Boston - Greater Egleston High School,350543,0,0,0,0,0,0,0,0,0,0,2,9,24,55,0,90 +NA,NA,,2022-23,Boston - Greenwood Sarah K-8 School,350308,49,48,47,39,37,26,41,27,28,32,0,0,0,0,0,374 +NA,NA,,2022-23,Boston - Grew Elementary School,350135,17,27,36,25,32,34,25,16,0,0,0,0,0,0,0,212 +NA,NA,,2022-23,Boston - Guild Elementary School,350062,33,27,33,32,40,32,28,26,0,0,0,0,0,0,0,251 +NA,NA,,2022-23,Boston - Hale Elementary School,350243,18,19,22,21,23,22,23,21,0,0,0,0,0,0,0,169 +NA,NA,,2022-23,Boston - Haley Pilot School,350077,25,34,41,40,48,43,49,48,20,23,0,0,0,0,0,371 +NA,NA,,2022-23,Boston - Harvard-Kent Elementary School,350200,41,48,45,44,42,43,40,39,0,0,0,0,0,0,0,342 +NA,NA,,2022-23,Boston - Haynes Early Education Center,350010,56,73,74,0,0,0,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2022-23,Boston - Henderson K-12 Inclusion School Lower,350266,69,58,60,0,0,0,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2022-23,Boston - Henderson K-12 Inclusion School Upper,350426,0,0,0,47,54,62,45,61,64,61,66,59,63,71,13,666 +NA,NA,,2022-23,Boston - Hennigan K-8 School,350153,0,36,35,51,46,69,54,75,76,67,0,0,0,0,0,509 +NA,NA,,2022-23,Boston - Hernandez K-8 School,350691,45,50,49,48,49,47,46,39,27,25,0,0,0,0,0,425 +NA,NA,,2022-23,Boston - Higginson Inclusion K0-2 School,350015,32,27,34,27,0,0,0,0,0,0,0,0,0,0,0,120 +NA,NA,,2022-23,Boston - Higginson-Lewis K-8 School,350377,0,0,0,0,21,29,30,33,25,39,0,0,0,0,0,177 +NA,NA,,2022-23,Boston - Holmes Elementary School,350138,21,35,36,35,45,47,32,29,0,0,0,0,0,0,0,280 +NA,NA,,2022-23,Boston - Horace Mann School for the Deaf Hard of Hearing,350750,4,5,4,5,0,4,4,5,5,10,1,9,3,5,6,70 +NA,NA,,2022-23,Boston - Hurley K-8 School,350182,26,45,48,47,41,34,38,34,22,17,0,0,0,0,0,352 +NA,NA,,2022-23,Boston - Kennedy John F Elementary School,350166,27,44,56,52,62,50,42,42,0,0,0,0,0,0,0,375 +NA,NA,,2022-23,Boston - Kennedy Patrick J Elementary School,350264,24,36,39,37,38,35,35,20,0,0,0,0,0,0,0,264 +NA,NA,,2022-23,Boston - Kenny Elementary School,350328,27,36,37,41,46,46,41,42,0,0,0,0,0,0,0,316 +NA,NA,,2022-23,Boston - Kilmer K-8 School,350190,46,41,44,34,35,37,37,39,37,46,0,0,0,0,0,396 +NA,NA,,2022-23,Boston - King Elementary School,350376,63,61,65,65,53,58,46,31,0,0,0,0,0,0,0,442 +NA,NA,,2022-23,Boston - Lee Academy,350001,54,36,32,35,30,0,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2022-23,Boston - Lee K-8 School,350183,65,50,56,57,51,60,52,55,43,52,0,0,0,0,0,541 +NA,NA,,2022-23,Boston - Lyndon K-8 School,350262,61,59,66,60,70,66,65,67,40,32,0,0,0,0,0,586 +NA,NA,,2022-23,Boston - Lyon High School,350655,0,0,0,0,0,0,0,0,0,0,32,25,31,28,0,116 +NA,NA,,2022-23,Boston - Lyon K-8 School,350004,0,11,10,15,12,13,13,12,15,25,0,0,0,0,0,126 +NA,NA,,2022-23,Boston - Madison Park Technical Vocational High School,350537,0,0,0,0,0,0,0,0,0,0,286,293,242,236,30,1087 +NA,NA,,2022-23,Boston - Manning Elementary School,350184,11,21,23,23,18,24,21,19,0,0,0,0,0,0,0,160 +NA,NA,,2022-23,Boston - Margarita Muniz Academy,350549,0,0,0,0,0,0,0,0,0,0,85,83,71,75,0,314 +NA,NA,,2022-23,Boston - Mario Umana Academy,350656,34,54,51,53,71,58,64,63,57,76,0,0,0,0,0,581 +NA,NA,,2022-23,Boston - Mason Elementary School,350304,23,25,30,27,27,32,24,0,0,0,0,0,0,0,0,188 +NA,NA,,2022-23,Boston - Mather Elementary School,350227,52,78,75,75,69,79,57,0,0,0,0,0,0,0,0,485 +NA,NA,,2022-23,Boston - Mattahunt Elementary School,350016,88,77,58,70,57,57,50,26,0,0,0,0,0,0,0,483 +NA,NA,,2022-23,Boston - McKay K-8 School,350080,20,50,44,75,84,76,82,72,85,93,0,0,0,0,0,681 +NA,NA,,2022-23,Boston - McKinley Schools,350363,0,0,0,1,3,3,7,12,13,12,21,28,25,22,11,158 +NA,NA,,2022-23,Boston - Mendell Elementary School,350100,31,39,41,38,44,41,41,37,0,0,0,0,0,0,0,312 +NA,NA,,2022-23,Boston - Mildred Avenue K-8 School,350378,42,37,37,41,41,65,82,80,89,104,0,0,0,0,0,618 +NA,NA,,2022-23,Boston - Mozart Elementary School,350237,26,22,23,24,23,21,21,16,0,0,0,0,0,0,0,176 +NA,NA,,2022-23,Boston - Murphy K-8 School,350240,40,62,66,86,90,102,105,136,71,78,0,0,0,0,0,836 +NA,NA,,2022-23,Boston - New Mission High School,350542,0,0,0,0,0,0,0,0,55,77,134,126,117,105,0,614 +NA,NA,,2022-23,Boston - O'Bryant School of Math & Science,350575,0,0,0,0,0,0,0,0,168,143,332,308,300,316,0,1567 +NA,NA,,2022-23,Boston - O'Donnell Elementary School,350141,22,34,42,37,40,41,36,29,0,0,0,0,0,0,0,281 +NA,NA,,2022-23,Boston - Ohrenberger School,350258,0,0,0,0,64,78,72,85,64,88,0,0,0,0,0,451 +NA,NA,,2022-23,Boston - Orchard Gardens K-8 School,350257,59,55,64,64,70,88,72,86,76,90,0,0,0,0,0,724 +NA,NA,,2022-23,Boston - Otis Elementary School,350156,44,55,63,60,60,59,41,32,0,0,0,0,0,0,0,414 +NA,NA,,2022-23,Boston - Perkins Elementary School,350231,8,21,17,28,27,20,14,23,0,0,0,0,0,0,0,158 +NA,NA,,2022-23,Boston - Perry Elementary School,350255,27,32,26,23,22,29,13,10,0,0,0,0,0,0,0,182 +NA,NA,,2022-23,Boston - Philbrick Elementary School,350172,13,18,14,14,12,16,16,11,0,0,0,0,0,0,0,114 +NA,NA,,2022-23,Boston - Quincy Elementary School,350286,76,103,115,101,112,121,110,0,0,0,0,0,0,0,0,738 +NA,NA,,2022-23,Boston - Quincy Upper School,350565,0,0,0,0,0,0,0,124,83,86,71,66,61,33,6,530 +NA,NA,,2022-23,Boston - Roosevelt K-8 School,350116,36,32,36,24,30,43,31,40,37,46,0,0,0,0,0,355 +NA,NA,,2022-23,Boston - Russell Elementary School,350366,60,59,51,51,48,50,44,0,0,0,0,0,0,0,0,363 +NA,NA,,2022-23,Boston - Shaw Elementary School,350014,47,41,25,32,18,24,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2022-23,Boston - Snowden International High School,350690,0,0,0,0,0,0,0,0,0,0,129,118,110,106,0,463 +NA,NA,,2022-23,Boston - Sumner Elementary School,350052,63,75,76,75,67,75,61,46,0,0,0,0,0,0,0,538 +NA,NA,,2022-23,Boston - Taylor Elementary School,350054,29,43,39,38,47,60,57,45,0,0,0,0,0,0,0,358 +NA,NA,,2022-23,Boston - TechBoston Academy,350657,0,0,0,0,0,0,0,34,103,130,154,148,161,141,0,871 +NA,NA,,2022-23,Boston - Tobin K-8 School,350229,21,43,37,37,41,49,49,46,48,55,0,0,0,0,0,426 +NA,NA,,2022-23,Boston - Trotter Elementary School,350370,37,36,38,34,34,50,38,30,0,0,0,0,0,0,0,297 +NA,NA,,2022-23,Boston - Tynan Elementary School,350181,20,25,26,34,26,25,17,24,0,0,0,0,0,0,0,197 +NA,NA,,2022-23,Boston - UP Academy Holland,350167,55,88,78,95,111,105,104,0,0,0,0,0,0,0,0,636 +NA,NA,,2022-23,Boston - Warren-Prescott K-8 School,350346,61,71,60,66,50,58,53,40,25,39,0,0,0,0,0,523 +NA,NA,,2022-23,Boston - West Zone Early Learning Center,350006,46,33,32,0,0,0,0,0,0,0,0,0,0,0,0,111 +NA,NA,,2022-23,Boston - Winship Elementary School,350374,49,45,42,41,50,50,39,22,0,0,0,0,0,0,0,338 +NA,NA,,2022-23,Boston - Winthrop Elementary School,350180,30,31,36,37,23,34,25,21,0,0,0,0,0,0,0,237 +NA,NA,,2022-23,Boston - Young Achievers K-8 School,350380,41,42,57,43,45,64,55,44,40,52,0,0,0,0,0,483 +NA,NA,,2022-23,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,0,0,0,0,0,0,100,100,83,88,89,88,70,80,0,698 +NA,NA,,2022-23,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,0,0,0,0,0,0,0,0,0,0,37,11,0,273,0,321 +NA,NA,,2022-23,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,0,0,0,0,0,0,0,46,55,61,84,80,72,65,13,476 +NA,NA,,2022-23,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,0,0,0,0,0,0,0,85,102,98,126,104,101,79,0,695 +NA,NA,,2022-23,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,108,124,130,139,128,125,99,69,0,0,0,0,0,0,0,922 +NA,NA,,2022-23,Bourne - Bourne High School,360505,0,0,0,0,0,0,0,0,0,0,82,79,94,86,10,351 +NA,NA,,2022-23,Bourne - Bourne Intermediate School,360030,0,0,0,0,117,113,140,0,0,0,0,0,0,0,0,370 +NA,NA,,2022-23,Bourne - Bourne Middle School,360325,0,0,0,0,0,0,0,128,151,152,0,0,0,0,0,431 +NA,NA,,2022-23,Bourne - Bournedale Elementary School,360005,67,109,117,109,0,0,0,0,0,0,0,0,0,0,0,402 +NA,NA,,2022-23,Boxford - Harry Lee Cole,380005,42,93,103,110,0,0,0,0,0,0,0,0,0,0,0,348 +NA,NA,,2022-23,Boxford - Spofford Pond,380013,0,0,0,0,107,89,94,94,0,0,0,0,0,0,0,384 +NA,NA,,2022-23,Braintree - Archie T Morrison,400033,0,27,72,73,58,75,0,0,0,0,0,0,0,0,0,305 +NA,NA,,2022-23,Braintree - Braintree High,400505,94,0,0,0,0,0,0,0,0,0,402,429,377,404,0,1706 +NA,NA,,2022-23,Braintree - Donald Ross,400050,0,36,36,37,46,51,0,0,0,0,0,0,0,0,0,206 +NA,NA,,2022-23,Braintree - East Middle School,400305,0,0,0,0,0,0,244,259,244,224,0,0,0,0,0,971 +NA,NA,,2022-23,Braintree - Highlands,400015,0,21,72,72,85,85,74,0,0,0,0,0,0,0,0,409 +NA,NA,,2022-23,Braintree - Hollis,400005,0,41,60,84,68,80,0,0,0,0,0,0,0,0,0,333 +NA,NA,,2022-23,Braintree - Liberty,400025,0,0,85,75,71,75,65,0,0,0,0,0,0,0,0,371 +NA,NA,,2022-23,Braintree - Mary E Flaherty School,400020,0,22,82,56,66,64,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2022-23,Braintree - Monatiquot Kindergarten Center,400009,0,200,0,0,0,0,0,0,0,0,0,0,0,0,0,200 +NA,NA,,2022-23,Braintree - South Middle School,400310,0,0,0,0,0,0,0,159,172,183,0,0,0,0,0,514 +NA,NA,,2022-23,Brewster - Eddy Elementary,410010,0,0,0,0,69,75,57,0,0,0,0,0,0,0,0,201 +NA,NA,,2022-23,Brewster - Stony Brook Elementary,410005,36,63,66,65,0,0,0,0,0,0,0,0,0,0,0,230 +NA,NA,,2022-23,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,31,37,37,39,37,38,35,35,22,23,0,0,0,0,0,334 +NA,NA,,2022-23,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,0,0,0,0,251,243,248,0,0,0,0,0,742 +NA,NA,,2022-23,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,0,0,0,0,0,0,0,0,0,0,351,388,327,311,13,1390 +NA,NA,,2022-23,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,156,166,179,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2022-23,Bridgewater-Raynham - Merrill Elementary School,6250020,0,178,174,0,0,0,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2022-23,Bridgewater-Raynham - Mitchell Elementary School,6250002,148,257,276,276,0,0,0,0,0,0,0,0,0,0,0,957 +NA,NA,,2022-23,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,0,0,0,178,191,191,165,0,0,0,0,0,725 +NA,NA,,2022-23,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,0,0,0,0,0,1,2,1,2,5,3,0,14 +NA,NA,,2022-23,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,0,268,270,263,0,0,0,0,0,0,0,0,801 +NA,NA,,2022-23,Brimfield - Brimfield Elementary,430005,34,32,36,29,43,30,44,39,0,0,0,0,0,0,0,287 +NA,NA,,2022-23,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,0,0,0,0,0,0,0,169,171,105,104,0,549 +NA,NA,,2022-23,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,0,0,0,0,0,0,0,0,0,0,346,328,320,316,0,1310 +NA,NA,,2022-23,Brockton - Ashfield Middle School,440421,0,0,0,0,0,0,0,159,147,142,0,0,0,0,0,448 +NA,NA,,2022-23,Brockton - Barrett Russell Early Childhood Center,440008,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229 +NA,NA,,2022-23,Brockton - Brockton Champion High School,440515,0,0,0,0,0,0,0,0,0,0,51,46,23,18,0,138 +NA,NA,,2022-23,Brockton - Brockton High,440505,0,0,0,0,0,0,0,0,0,0,1186,920,710,801,62,3679 +NA,NA,,2022-23,Brockton - Brockton Virtual Learning Academy,440705,0,0,4,6,8,9,15,17,18,14,35,16,19,12,0,173 +NA,NA,,2022-23,Brockton - Brookfield,440010,28,63,80,68,66,64,62,0,0,0,0,0,0,0,0,431 +NA,NA,,2022-23,Brockton - Downey,440110,61,76,103,110,77,75,90,0,0,0,0,0,0,0,0,592 +NA,NA,,2022-23,Brockton - Dr W Arnone Community School,440001,65,111,120,125,109,108,107,0,0,0,0,0,0,0,0,745 +NA,NA,,2022-23,Brockton - East Middle School,440405,0,0,0,0,0,0,0,164,133,155,0,0,0,0,0,452 +NA,NA,,2022-23,Brockton - Edgar B Davis,440023,0,92,123,103,83,85,115,118,94,117,0,0,0,0,0,930 +NA,NA,,2022-23,Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0,0,51,36,57,97,0,241 +NA,NA,,2022-23,Brockton - Gilmore Elementary School,440055,0,60,69,71,64,62,77,0,0,0,0,0,0,0,0,403 +NA,NA,,2022-23,Brockton - Hancock,440045,22,110,102,111,97,83,91,0,0,0,0,0,0,0,0,616 +NA,NA,,2022-23,Brockton - Huntington Therapeutic Day School,440400,0,0,0,0,0,0,0,1,5,7,8,13,11,4,0,49 +NA,NA,,2022-23,Brockton - John F Kennedy,440017,0,97,106,89,68,65,88,0,0,0,0,0,0,0,0,513 +NA,NA,,2022-23,Brockton - Louis F Angelo Elementary,440065,0,98,113,122,108,172,178,0,0,0,0,0,0,0,0,791 +NA,NA,,2022-23,Brockton - Manthala George Jr. School,440003,53,162,159,125,102,97,96,0,0,0,0,0,0,0,0,794 +NA,NA,,2022-23,Brockton - Mary E. Baker School,440002,0,108,128,108,110,112,107,0,0,0,0,0,0,0,0,673 +NA,NA,,2022-23,Brockton - North Middle School,440410,0,0,0,0,0,0,0,150,135,163,0,0,0,0,0,448 +NA,NA,,2022-23,Brockton - Oscar F Raymond,440078,26,155,129,140,114,115,117,0,0,0,0,0,0,0,0,796 +NA,NA,,2022-23,Brockton - Plouffe Middle School,440422,0,0,0,0,0,0,0,183,239,230,0,0,0,0,0,652 +NA,NA,,2022-23,Brockton - PROMISE College and Career Academy,440525,0,0,0,0,0,0,0,0,0,0,38,0,0,0,0,38 +NA,NA,,2022-23,Brockton - South Middle School,440415,0,0,0,0,0,0,0,177,179,162,0,0,0,0,0,518 +NA,NA,,2022-23,Brockton - West Middle School,440420,0,0,0,0,0,0,0,180,194,183,0,0,0,0,0,557 +NA,NA,,2022-23,Brooke Charter School (District) - Brooke Charter School,4280305,0,188,196,193,193,192,194,187,179,179,157,143,123,97,2,2223 +NA,NA,,2022-23,Brookfield - Brookfield Elementary,450005,25,35,38,39,37,40,40,37,0,0,0,0,0,0,0,291 +NA,NA,,2022-23,Brookline - Brookline Early Education Program at Beacon,460001,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50 +NA,NA,,2022-23,Brookline - Brookline Early Education Program at Clark Road,460003,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64 +NA,NA,,2022-23,Brookline - Brookline Early Education Program at Putterham,460002,52,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52 +NA,NA,,2022-23,Brookline - Brookline High,460505,0,0,0,0,0,0,0,0,0,0,510,552,507,497,21,2087 +NA,NA,,2022-23,Brookline - Edith C Baker,460005,0,68,82,74,77,76,76,66,66,87,0,0,0,0,0,672 +NA,NA,,2022-23,Brookline - Florida Ruffin Ridley School,460015,26,93,105,100,96,85,89,81,92,84,0,0,0,0,0,851 +NA,NA,,2022-23,Brookline - Heath,460025,0,40,51,51,57,52,64,39,48,57,0,0,0,0,0,459 +NA,NA,,2022-23,Brookline - John D Runkle,460045,15,49,53,42,58,59,50,57,63,62,0,0,0,0,0,508 +NA,NA,,2022-23,Brookline - Lawrence,460030,0,81,75,78,69,59,77,52,64,66,0,0,0,0,0,621 +NA,NA,,2022-23,Brookline - Michael Driscoll,460020,0,51,36,58,47,53,47,51,52,61,0,0,0,0,0,456 +NA,NA,,2022-23,Brookline - Pierce,460040,0,73,75,82,75,77,82,68,87,86,0,0,0,0,0,705 +NA,NA,,2022-23,Brookline - The Lynch Center,460060,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50 +NA,NA,,2022-23,Brookline - William H Lincoln,460035,0,54,50,62,55,43,59,53,49,60,0,0,0,0,0,485 +NA,NA,,2022-23,Burlington - Burlington High,480505,93,0,0,0,0,0,0,0,0,0,213,227,213,226,0,972 +NA,NA,,2022-23,Burlington - Fox Hill,480007,0,59,77,78,73,76,65,0,0,0,0,0,0,0,0,428 +NA,NA,,2022-23,Burlington - Francis Wyman Elementary,480035,0,90,78,84,84,71,86,0,0,0,0,0,0,0,0,493 +NA,NA,,2022-23,Burlington - Marshall Simonds Middle,480303,0,0,0,0,0,0,0,285,282,250,0,0,0,0,0,817 +NA,NA,,2022-23,Burlington - Memorial,480015,0,49,76,61,67,68,73,0,0,0,0,0,0,0,0,394 +NA,NA,,2022-23,Burlington - Pine Glen Elementary,480020,0,52,47,43,44,60,62,0,0,0,0,0,0,0,0,308 +NA,NA,,2022-23,Cambridge - Amigos School,490006,28,47,47,44,42,42,47,38,40,32,0,0,0,0,0,407 +NA,NA,,2022-23,Cambridge - Cambridge Rindge and Latin,490506,0,0,0,0,0,0,0,0,0,0,481,479,429,459,19,1867 +NA,NA,,2022-23,Cambridge - Cambridge Street Upper School,490305,0,0,0,0,0,0,0,97,98,98,0,0,0,0,0,293 +NA,NA,,2022-23,Cambridge - Cambridgeport,490007,31,32,29,45,34,37,47,0,0,0,0,0,0,0,0,255 +NA,NA,,2022-23,Cambridge - Fletcher/Maynard Academy,490090,33,37,42,37,36,36,33,0,0,0,0,0,0,0,0,254 +NA,NA,,2022-23,Cambridge - Graham and Parks,490080,33,52,52,68,53,54,50,0,0,0,0,0,0,0,0,362 +NA,NA,,2022-23,Cambridge - Haggerty,490020,17,34,34,41,30,36,40,0,0,0,0,0,0,0,0,232 +NA,NA,,2022-23,Cambridge - John M Tobin,490065,107,39,37,36,37,37,27,0,0,0,0,0,0,0,0,320 +NA,NA,,2022-23,Cambridge - Kennedy-Longfellow,490040,13,22,25,29,36,33,26,0,0,0,0,0,0,0,0,184 +NA,NA,,2022-23,Cambridge - King Open,490035,38,64,59,59,52,48,51,0,0,0,0,0,0,0,0,371 +NA,NA,,2022-23,Cambridge - Maria L. Baldwin,490005,38,62,55,51,44,48,42,0,0,0,0,0,0,0,0,340 +NA,NA,,2022-23,Cambridge - Martin Luther King Jr.,490030,39,55,51,50,45,46,46,0,0,0,0,0,0,0,0,332 +NA,NA,,2022-23,Cambridge - Morse,490045,52,47,45,43,29,34,44,0,0,0,0,0,0,0,0,294 +NA,NA,,2022-23,Cambridge - Peabody,490050,38,51,47,45,46,46,45,0,0,0,0,0,0,0,0,318 +NA,NA,,2022-23,Cambridge - Putnam Avenue Upper School,490310,0,0,0,0,0,0,0,87,79,85,0,0,0,0,0,251 +NA,NA,,2022-23,Cambridge - Rindge Avenue Upper School,490315,0,0,0,0,0,0,0,94,89,91,0,0,0,0,0,274 +NA,NA,,2022-23,Cambridge - Vassal Lane Upper School,490320,0,0,0,0,0,0,0,103,70,100,0,0,0,0,0,273 +NA,NA,,2022-23,Canton - Canton High,500505,0,0,0,0,0,0,0,0,0,0,259,222,211,203,9,904 +NA,NA,,2022-23,Canton - Dean S Luce,500020,0,79,73,88,69,79,69,0,0,0,0,0,0,0,0,457 +NA,NA,,2022-23,Canton - John F Kennedy,500017,0,71,95,62,85,72,85,0,0,0,0,0,0,0,0,470 +NA,NA,,2022-23,Canton - Lt Peter M Hansen,500012,0,85,89,99,96,92,85,0,0,0,0,0,0,0,0,546 +NA,NA,,2022-23,Canton - Rodman Early Childhood Center,500010,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89 +NA,NA,,2022-23,Canton - Wm H Galvin Middle,500305,0,0,0,0,0,0,0,252,257,244,0,0,0,0,0,753 +NA,NA,,2022-23,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,0,0,0,0,84,84,82,0,0,0,0,0,250 +NA,NA,,2022-23,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0,0,0,0,0,0,0,0,0,0,176,174,155,161,0,666 +NA,NA,,2022-23,Carlisle - Carlisle School,510025,12,63,77,60,57,69,65,72,60,66,0,0,0,0,0,601 +NA,NA,,2022-23,Carver - Carver Elementary School,520015,54,124,136,107,130,122,100,0,0,0,0,0,0,0,0,773 +NA,NA,,2022-23,Carver - Carver Middle/High School,520405,0,0,0,0,0,0,0,140,121,120,78,100,102,88,3,752 +NA,NA,,2022-23,Central Berkshire - Becket Washington School,6350005,17,20,12,8,16,13,14,0,0,0,0,0,0,0,0,100 +NA,NA,,2022-23,Central Berkshire - Craneville,6350025,0,77,76,57,86,69,81,0,0,0,0,0,0,0,0,446 +NA,NA,,2022-23,Central Berkshire - Kittredge,6350035,35,19,20,24,21,15,27,0,0,0,0,0,0,0,0,161 +NA,NA,,2022-23,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,0,0,0,0,123,107,115,0,0,0,0,0,345 +NA,NA,,2022-23,Central Berkshire - Wahconah Regional High,6350505,0,0,0,0,0,0,0,0,0,0,115,131,129,110,0,485 +NA,NA,,2022-23,Chelmsford - Byam School,560030,0,103,106,102,96,94,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2022-23,Chelmsford - Center Elementary School,560005,0,82,100,99,87,117,0,0,0,0,0,0,0,0,0,485 +NA,NA,,2022-23,Chelmsford - Charles D Harrington,560025,0,84,86,109,96,96,0,0,0,0,0,0,0,0,0,471 +NA,NA,,2022-23,Chelmsford - Chelmsford High,560505,0,0,0,0,0,0,0,0,0,0,356,340,351,320,0,1367 +NA,NA,,2022-23,Chelmsford - Col Moses Parker School,560305,0,0,0,0,0,0,178,177,177,191,0,0,0,0,0,723 +NA,NA,,2022-23,Chelmsford - Community Education Center,560001,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201 +NA,NA,,2022-23,Chelmsford - McCarthy Middle School,560310,0,0,0,0,0,0,212,215,206,211,0,0,0,0,0,844 +NA,NA,,2022-23,Chelmsford - South Row,560015,0,85,90,109,91,88,0,0,0,0,0,0,0,0,0,463 +NA,NA,,2022-23,Chelsea - Chelsea High,570505,0,0,0,0,0,0,0,0,0,0,505,444,338,318,6,1611 +NA,NA,,2022-23,Chelsea - Chelsea Opportunity Academy,570515,0,0,0,0,0,0,0,0,0,0,3,9,43,60,0,115 +NA,NA,,2022-23,Chelsea - Chelsea Virtual Learning Academy,570705,0,0,0,0,0,0,1,2,2,4,2,9,11,16,0,47 +NA,NA,,2022-23,Chelsea - Clark Avenue School,570050,0,0,0,0,0,0,154,169,165,183,0,0,0,0,0,671 +NA,NA,,2022-23,Chelsea - Edgar A Hooks Elementary,570030,0,0,101,123,138,136,0,0,0,0,0,0,0,0,0,498 +NA,NA,,2022-23,Chelsea - Eugene Wright Science and Technology Academy,570045,0,0,0,0,0,0,124,99,115,113,0,0,0,0,0,451 +NA,NA,,2022-23,Chelsea - Frank M Sokolowski Elementary,570040,0,0,88,138,136,133,0,0,0,0,0,0,0,0,0,495 +NA,NA,,2022-23,Chelsea - George F. Kelly Elementary,570035,0,0,113,119,85,96,33,32,0,0,0,0,0,0,0,478 +NA,NA,,2022-23,Chelsea - Joseph A. Browne School,570055,0,0,0,0,0,0,110,116,138,147,0,0,0,0,0,511 +NA,NA,,2022-23,Chelsea - Shurtleff Early Childhood,570003,268,452,103,0,0,0,0,0,0,0,0,0,0,0,0,823 +NA,NA,,2022-23,Chelsea - William A Berkowitz Elementary,570025,0,0,98,119,112,124,0,0,0,0,0,0,0,0,0,453 +NA,NA,,2022-23,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,24,18,25,11,18,15,16,18,0,0,0,0,0,0,0,145 +NA,NA,,2022-23,Chicopee - Barry,610003,0,44,48,58,75,58,62,0,0,0,0,0,0,0,0,345 +NA,NA,,2022-23,Chicopee - Belcher,610010,31,56,57,80,0,0,0,0,0,0,0,0,0,0,0,224 +NA,NA,,2022-23,Chicopee - Bellamy Middle,610305,0,0,0,0,0,0,0,261,268,247,0,0,0,0,0,776 +NA,NA,,2022-23,Chicopee - Bowe,610015,0,60,64,73,62,71,79,0,0,0,0,0,0,0,0,409 +NA,NA,,2022-23,Chicopee - Bowie,610020,0,35,50,42,44,56,48,0,0,0,0,0,0,0,0,275 +NA,NA,,2022-23,Chicopee - Chicopee Academy,610021,0,0,0,0,0,0,0,0,8,14,10,21,16,18,0,87 +NA,NA,,2022-23,Chicopee - Chicopee Comprehensive High School,610510,0,0,0,0,0,0,0,0,0,0,336,306,286,278,0,1206 +NA,NA,,2022-23,Chicopee - Chicopee High,610505,0,0,0,0,0,0,0,0,0,0,266,238,212,198,0,914 +NA,NA,,2022-23,Chicopee - Dupont Middle,610310,0,0,0,0,0,0,0,246,222,228,0,0,0,0,0,696 +NA,NA,,2022-23,Chicopee - Fairview Elementary,610050,17,68,56,59,61,55,53,0,0,0,0,0,0,0,0,369 +NA,NA,,2022-23,Chicopee - Gen John J Stefanik,610090,0,50,58,73,66,72,70,0,0,0,0,0,0,0,0,389 +NA,NA,,2022-23,Chicopee - Lambert-Lavoie,610040,0,33,35,39,41,40,53,0,0,0,0,0,0,0,0,241 +NA,NA,,2022-23,Chicopee - Litwin,610022,0,18,12,17,104,79,101,0,0,0,0,0,0,0,0,331 +NA,NA,,2022-23,Chicopee - Streiber Memorial School,610065,0,47,37,32,37,33,40,0,0,0,0,0,0,0,0,226 +NA,NA,,2022-23,Chicopee - Szetela Early Childhood Center,610001,222,0,0,0,0,0,0,0,0,0,0,0,0,0,0,222 +NA,NA,,2022-23,Christa McAuliffe Charter School (District) - Christa McAuliffe Charter School,4180305,0,0,0,0,0,0,0,96,128,105,0,0,0,0,0,329 +NA,NA,,2022-23,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,4370505,0,0,0,0,0,0,0,0,0,0,37,59,48,39,0,183 +NA,NA,,2022-23,Clarksburg - Clarksburg Elementary,630010,14,16,18,18,16,21,29,20,19,18,0,0,0,0,0,189 +NA,NA,,2022-23,Clinton - Clinton Elementary,640050,87,132,158,156,144,163,0,0,0,0,0,0,0,0,0,840 +NA,NA,,2022-23,Clinton - Clinton Middle School,640305,0,0,0,0,0,0,136,138,133,138,0,0,0,0,0,545 +NA,NA,,2022-23,Clinton - Clinton Senior High,640505,22,0,0,0,0,0,0,0,0,0,176,128,147,112,2,587 +NA,NA,,2022-23,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,22,20,20,20,21,22,17,17,20,20,37,39,33,28,0,336 +NA,NA,,2022-23,Cohasset - Cohasset High School,650505,0,0,0,0,0,0,0,0,0,0,111,107,98,115,0,431 +NA,NA,,2022-23,Cohasset - Cohasset Middle School,650305,0,0,0,0,0,0,0,110,86,99,0,0,0,0,0,295 +NA,NA,,2022-23,Cohasset - Deer Hill,650005,0,0,0,0,104,103,97,0,0,0,0,0,0,0,0,304 +NA,NA,,2022-23,Cohasset - Joseph Osgood,650010,26,115,128,107,0,0,0,0,0,0,0,0,0,0,0,376 +NA,NA,,2022-23,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,0,117,125,87,101,114,122,114,115,98,82,67,31,30,0,1203 +NA,NA,,2022-23,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,0,0,0,0,0,0,0,22,41,37,31,47,47,28,0,253 +NA,NA,,2022-23,Community Day Charter Public School (District) - Community Day Charter Public School,4400205,115,123,115,105,126,132,125,121,116,117,0,0,0,0,0,1195 +NA,NA,,2022-23,Concord - Alcott,670005,21,63,58,62,71,74,68,0,0,0,0,0,0,0,0,417 +NA,NA,,2022-23,Concord - Concord Middle,670305,0,0,0,0,0,0,0,214,225,211,0,0,0,0,0,650 +NA,NA,,2022-23,Concord - Thoreau,670020,16,56,68,67,73,77,76,0,0,0,0,0,0,0,0,433 +NA,NA,,2022-23,Concord - Willard,670030,17,68,65,73,73,74,76,0,0,0,0,0,0,0,0,446 +NA,NA,,2022-23,Concord-Carlisle - Concord Carlisle High,6400505,0,0,0,0,0,0,0,0,0,0,320,316,328,339,3,1306 +NA,NA,,2022-23,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,45,54,51,54,55,55,53,40,26,21,0,0,0,0,0,454 +NA,NA,,2022-23,Conway - Conway Grammar,680005,12,10,14,15,20,16,17,19,0,0,0,0,0,0,0,123 +NA,NA,,2022-23,Danvers - Danvers High,710505,0,0,0,0,0,0,0,0,0,0,177,181,211,200,8,777 +NA,NA,,2022-23,Danvers - Great Oak,710015,0,39,48,61,47,52,54,0,0,0,0,0,0,0,0,301 +NA,NA,,2022-23,Danvers - Highlands,710010,0,57,66,71,66,65,61,0,0,0,0,0,0,0,0,386 +NA,NA,,2022-23,Danvers - Holten Richmond Middle School,710305,0,0,0,0,0,0,0,245,248,279,0,0,0,0,0,772 +NA,NA,,2022-23,Danvers - Ivan G Smith,710032,0,65,53,58,55,58,50,0,0,0,0,0,0,0,0,339 +NA,NA,,2022-23,Danvers - Riverside,710030,59,45,40,49,44,56,38,0,0,0,0,0,0,0,0,331 +NA,NA,,2022-23,Danvers - Willis E Thorpe,710045,52,45,33,64,43,48,44,0,0,0,0,0,0,0,0,329 +NA,NA,,2022-23,Dartmouth - Andrew B. Cushman School,720005,75,56,0,0,0,0,0,0,0,0,0,0,0,0,0,131 +NA,NA,,2022-23,Dartmouth - Dartmouth High,720505,0,0,0,0,0,0,0,0,0,0,237,247,261,234,0,979 +NA,NA,,2022-23,Dartmouth - Dartmouth Middle,720050,0,0,0,0,0,0,0,265,257,282,0,0,0,0,0,804 +NA,NA,,2022-23,Dartmouth - George H Potter,720030,15,57,66,70,63,69,61,0,0,0,0,0,0,0,0,401 +NA,NA,,2022-23,Dartmouth - James M. Quinn School,720040,0,116,120,110,138,111,109,0,0,0,0,0,0,0,0,704 +NA,NA,,2022-23,Dartmouth - Joseph Demello,720015,0,0,64,64,68,71,84,0,0,0,0,0,0,0,0,351 +NA,NA,,2022-23,Dedham - Avery,730010,0,0,64,76,55,53,49,0,0,0,0,0,0,0,0,297 +NA,NA,,2022-23,Dedham - Dedham High,730505,0,0,0,0,0,0,0,0,0,0,176,193,170,171,5,715 +NA,NA,,2022-23,Dedham - Dedham Middle School,730305,0,0,0,0,0,0,0,178,164,198,0,0,0,0,0,540 +NA,NA,,2022-23,Dedham - Early Childhood Center,730005,106,201,0,0,0,0,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2022-23,Dedham - Greenlodge,730025,0,0,56,55,61,55,50,0,0,0,0,0,0,0,0,277 +NA,NA,,2022-23,Dedham - Oakdale,730030,0,0,54,46,57,39,49,0,0,0,0,0,0,0,0,245 +NA,NA,,2022-23,Dedham - Riverdale,730045,0,0,42,35,26,44,27,0,0,0,0,0,0,0,0,174 +NA,NA,,2022-23,Deerfield - Deerfield Elementary,740015,21,28,39,27,54,38,52,50,0,0,0,0,0,0,0,309 +NA,NA,,2022-23,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,0,0,0,0,0,0,0,0,0,199,187,185,151,166,0,888 +NA,NA,,2022-23,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,48,77,75,63,77,0,0,0,0,0,0,0,0,0,0,340 +NA,NA,,2022-23,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,63,52,60,53,54,0,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2022-23,Dennis-Yarmouth - Mattacheese Middle School,6450305,0,0,0,0,0,0,0,233,243,0,0,0,0,0,0,476 +NA,NA,,2022-23,Dennis-Yarmouth - Nathaniel H. Wixon School,6450050,0,0,0,0,0,253,200,1,0,0,0,0,0,0,0,454 +NA,NA,,2022-23,Dennis-Yarmouth - Station Avenue Elementary,6450025,0,116,98,98,105,0,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2022-23,Dighton-Rehoboth - Dighton Elementary,6500005,20,64,83,104,73,87,0,0,0,0,0,0,0,0,0,431 +NA,NA,,2022-23,Dighton-Rehoboth - Dighton Middle School,6500305,0,0,0,0,0,0,96,95,83,92,0,0,0,0,0,366 +NA,NA,,2022-23,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,16,0,0,0,0,0,0,0,0,0,164,169,171,163,4,687 +NA,NA,,2022-23,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0,0,0,0,0,0,108,122,109,107,0,0,0,0,0,446 +NA,NA,,2022-23,Dighton-Rehoboth - Palmer River,6500010,17,68,105,114,116,127,0,0,0,0,0,0,0,0,0,547 +NA,NA,,2022-23,Douglas - Douglas Elementary School,770015,0,0,0,68,101,94,81,0,0,0,0,0,0,0,0,344 +NA,NA,,2022-23,Douglas - Douglas High School,770505,0,0,0,0,0,0,0,0,0,0,72,71,93,87,1,324 +NA,NA,,2022-23,Douglas - Douglas Middle School,770305,0,0,0,0,0,0,0,106,99,93,0,0,0,0,0,298 +NA,NA,,2022-23,Douglas - Douglas Primary School,770005,60,75,85,0,0,0,0,0,0,0,0,0,0,0,0,220 +NA,NA,,2022-23,Dover - Chickering,780005,11,76,88,69,97,84,77,0,0,0,0,0,0,0,0,502 +NA,NA,,2022-23,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0,0,0,0,0,0,0,0,0,0,183,158,177,151,0,669 +NA,NA,,2022-23,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,0,0,0,0,0,0,0,172,153,157,0,0,0,0,0,482 +NA,NA,,2022-23,Dracut - Brookside Elementary,790035,34,86,86,77,80,78,77,0,0,0,0,0,0,0,0,518 +NA,NA,,2022-23,Dracut - Dracut Senior High,790505,0,0,0,0,0,0,0,0,0,0,233,217,198,193,6,847 +NA,NA,,2022-23,Dracut - George H. Englesby Elementary School,790045,0,69,89,92,96,94,92,0,0,0,0,0,0,0,0,532 +NA,NA,,2022-23,Dracut - Greenmont Avenue,790030,0,36,32,47,44,42,39,0,0,0,0,0,0,0,0,240 +NA,NA,,2022-23,Dracut - Joseph A Campbell Elementary,790020,29,77,93,100,96,100,101,0,0,0,0,0,0,0,0,596 +NA,NA,,2022-23,Dracut - Justus C. Richardson Middle School,790410,0,0,0,0,0,0,0,263,306,279,0,0,0,0,0,848 +NA,NA,,2022-23,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,31,42,37,44,42,43,39,0,0,0,0,0,0,0,0,278 +NA,NA,,2022-23,Dudley-Charlton Reg - Charlton Elementary,6580020,70,125,142,0,0,0,0,0,0,0,0,0,0,0,0,337 +NA,NA,,2022-23,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,0,0,0,0,150,144,150,148,0,0,0,0,0,592 +NA,NA,,2022-23,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,0,110,111,122,0,0,0,0,0,0,0,0,0,343 +NA,NA,,2022-23,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,0,0,0,134,132,132,149,0,0,0,0,0,547 +NA,NA,,2022-23,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,149,155,149,0,0,0,0,0,0,0,0,0,453 +NA,NA,,2022-23,Dudley-Charlton Reg - Mason Road School,6580010,51,78,105,0,0,0,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2022-23,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,0,0,0,0,0,0,0,0,278,210,226,204,5,923 +NA,NA,,2022-23,Duxbury - Alden School,820004,0,0,0,0,198,199,206,0,0,0,0,0,0,0,0,603 +NA,NA,,2022-23,Duxbury - Chandler Elementary,820006,53,203,192,209,0,0,0,0,0,0,0,0,0,0,0,657 +NA,NA,,2022-23,Duxbury - Duxbury High,820505,0,0,0,0,0,0,0,0,0,0,229,231,239,225,3,927 +NA,NA,,2022-23,Duxbury - Duxbury Middle,820305,0,0,0,0,0,0,0,208,224,191,0,0,0,0,0,623 +NA,NA,,2022-23,East Bridgewater - Central,830005,101,126,147,152,0,0,0,0,0,0,0,0,0,0,0,526 +NA,NA,,2022-23,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,0,0,0,0,0,165,160,149,129,139,160,2,904 +NA,NA,,2022-23,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,0,161,148,163,161,0,0,0,0,0,0,0,633 +NA,NA,,2022-23,East Longmeadow - Birchland Park,870305,0,0,0,0,0,0,0,193,209,196,0,0,0,0,0,598 +NA,NA,,2022-23,East Longmeadow - East Longmeadow High,870505,0,0,0,0,0,0,0,0,0,0,204,182,210,216,4,816 +NA,NA,,2022-23,East Longmeadow - Mapleshade,870010,0,0,0,0,91,92,109,0,0,0,0,0,0,0,0,292 +NA,NA,,2022-23,East Longmeadow - Meadow Brook,870013,68,157,178,163,0,0,0,0,0,0,0,0,0,0,0,566 +NA,NA,,2022-23,East Longmeadow - Mountain View,870015,0,0,0,0,98,85,86,0,0,0,0,0,0,0,0,269 +NA,NA,,2022-23,Eastham - Eastham Elementary,850005,7,30,37,24,26,30,32,0,0,0,0,0,0,0,0,186 +NA,NA,,2022-23,Easthampton - Easthampton High,860505,0,0,0,0,0,0,0,0,0,0,83,103,86,95,3,370 +NA,NA,,2022-23,Easthampton - Mountain View School,860415,31,101,105,117,118,117,115,115,109,115,0,0,0,0,0,1043 +NA,NA,,2022-23,Easton - Blanche A. Ames Elementary School,880015,85,198,239,225,0,0,0,0,0,0,0,0,0,0,0,747 +NA,NA,,2022-23,Easton - Easton Middle School,880405,0,0,0,0,0,0,0,257,266,298,0,0,0,0,0,821 +NA,NA,,2022-23,Easton - Oliver Ames High,880505,0,0,0,0,0,0,0,0,0,0,239,288,268,275,12,1082 +NA,NA,,2022-23,Easton - Richardson Olmsted School,880025,0,0,0,0,243,249,268,0,0,0,0,0,0,0,0,760 +NA,NA,,2022-23,Edgartown - Edgartown Elementary,890005,9,39,34,46,47,42,39,49,44,55,0,0,0,0,0,404 +NA,NA,,2022-23,Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School (District) - Edward M. Kennedy Academy for Health Careers: A Horace Mann Charter Public School,4520505,0,0,0,0,0,0,0,0,0,0,99,91,93,81,0,364 +NA,NA,,2022-23,Erving - Erving Elementary,910030,23,12,20,16,17,15,13,13,0,0,0,0,0,0,0,129 +NA,NA,,2022-23,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0,0,0,0,0,0,0,0,0,0,449,443,402,400,0,1694 +NA,NA,,2022-23,Everett - Adams School,930003,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182 +NA,NA,,2022-23,Everett - Devens School,930030,0,1,2,1,2,4,6,3,5,4,5,6,6,1,0,46 +NA,NA,,2022-23,Everett - Everett High,930505,0,0,0,0,0,0,0,0,0,0,604,620,562,445,0,2231 +NA,NA,,2022-23,Everett - George Keverian School,930028,0,59,95,70,95,88,105,130,134,121,0,0,0,0,0,897 +NA,NA,,2022-23,Everett - Lafayette School,930038,0,88,87,123,114,105,123,118,138,124,0,0,0,0,0,1020 +NA,NA,,2022-23,Everett - Madeline English School,930018,0,73,73,65,81,87,103,97,86,98,0,0,0,0,0,763 +NA,NA,,2022-23,Everett - Parlin School,930058,0,100,112,124,131,123,102,107,101,114,0,0,0,0,0,1014 +NA,NA,,2022-23,Everett - Sumner G. Whittier School,930010,0,57,74,66,73,73,74,71,72,70,0,0,0,0,0,630 +NA,NA,,2022-23,Everett - Webster Extension,930001,173,0,0,0,0,0,0,0,0,0,0,0,0,0,0,173 +NA,NA,,2022-23,Everett - Webster School,930015,0,53,65,54,61,50,46,0,0,0,0,0,0,0,0,329 +NA,NA,,2022-23,Excel Academy Charter (District) - Excel Academy Charter School,4100205,0,0,0,0,0,0,171,173,172,172,177,173,161,163,1,1363 +NA,NA,,2022-23,Fairhaven - East Fairhaven,940010,17,49,52,44,41,55,55,0,0,0,0,0,0,0,0,313 +NA,NA,,2022-23,Fairhaven - Fairhaven High,940505,0,0,0,0,0,0,0,0,0,0,160,157,147,168,1,633 +NA,NA,,2022-23,Fairhaven - Hastings Middle,940305,0,0,0,0,0,0,0,139,144,155,0,0,0,0,0,438 +NA,NA,,2022-23,Fairhaven - Leroy Wood,940030,20,59,64,74,79,70,76,0,0,0,0,0,0,0,0,442 +NA,NA,,2022-23,Fall River - B M C Durfee High,950505,0,0,0,0,0,0,0,0,0,0,708,637,536,577,2,2460 +NA,NA,,2022-23,Fall River - Carlton M. Viveiros Elementary School,950009,0,94,126,102,116,125,133,0,0,0,0,0,0,0,0,696 +NA,NA,,2022-23,Fall River - Early Learning Center,950001,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56 +NA,NA,,2022-23,Fall River - Henry Lord Community School,950017,35,90,101,93,87,82,80,85,81,81,0,0,0,0,0,815 +NA,NA,,2022-23,Fall River - James Tansey,950140,0,45,52,42,53,43,41,0,0,0,0,0,0,0,0,276 +NA,NA,,2022-23,Fall River - John J Doran,950045,30,45,56,57,50,54,62,54,51,50,0,0,0,0,0,509 +NA,NA,,2022-23,Fall River - Letourneau Elementary School,950013,29,88,103,92,98,91,96,0,0,0,0,0,0,0,0,597 +NA,NA,,2022-23,Fall River - Mary Fonseca Elementary School,950011,62,97,102,85,97,96,97,0,0,0,0,0,0,0,0,636 +NA,NA,,2022-23,Fall River - Matthew J Kuss Middle,950320,0,0,0,0,0,0,0,226,229,227,0,0,0,0,0,682 +NA,NA,,2022-23,Fall River - Morton Middle,950315,0,0,0,0,0,0,0,254,229,207,0,0,0,0,0,690 +NA,NA,,2022-23,Fall River - North End Elementary,950005,49,109,106,101,118,108,96,0,0,0,0,0,0,0,0,687 +NA,NA,,2022-23,Fall River - Resiliency Preparatory Academy,950525,0,0,0,0,0,0,0,0,6,26,29,40,59,37,0,197 +NA,NA,,2022-23,Fall River - Samuel Watson,950145,0,53,48,33,31,44,33,0,0,0,0,0,0,0,0,242 +NA,NA,,2022-23,Fall River - Spencer Borden,950130,28,78,94,89,94,85,108,0,0,0,0,0,0,0,0,576 +NA,NA,,2022-23,Fall River - Stone PK-12 School,950340,0,0,2,2,5,2,3,5,9,9,14,6,9,8,0,74 +NA,NA,,2022-23,Fall River - Talbot Innovation School,950305,0,0,0,0,0,0,0,181,179,173,0,0,0,0,0,533 +NA,NA,,2022-23,Fall River - William S Greene,950065,32,110,130,94,126,114,115,0,0,0,0,0,0,0,0,721 +NA,NA,,2022-23,Falmouth - East Falmouth Elementary,960005,98,32,48,28,31,45,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2022-23,Falmouth - Falmouth High,960505,0,0,0,0,0,0,0,0,0,0,182,209,180,191,4,766 +NA,NA,,2022-23,Falmouth - Lawrence,960405,0,0,0,0,0,0,0,0,231,246,0,0,0,0,0,477 +NA,NA,,2022-23,Falmouth - Morse Pond School,960305,0,0,0,0,0,0,252,230,0,0,0,0,0,0,0,482 +NA,NA,,2022-23,Falmouth - Mullen-Hall,960020,0,69,67,78,83,83,0,0,0,0,0,0,0,0,0,380 +NA,NA,,2022-23,Falmouth - North Falmouth Elementary,960030,0,52,87,54,65,57,0,0,0,0,0,0,0,0,0,315 +NA,NA,,2022-23,Falmouth - Teaticket,960015,25,56,51,41,50,42,0,0,0,0,0,0,0,0,0,265 +NA,NA,,2022-23,Farmington River Reg - Farmington River Elementary,6620020,15,15,16,17,15,11,15,16,0,0,0,0,0,0,0,120 +NA,NA,,2022-23,Fitchburg - Arthur M Longsjo Middle School,970315,0,0,0,0,0,0,0,217,181,190,0,0,0,0,0,588 +NA,NA,,2022-23,Fitchburg - Crocker Elementary,970016,0,0,129,120,129,126,112,0,0,0,0,0,0,0,0,616 +NA,NA,,2022-23,Fitchburg - Fitchburg High,970505,0,0,0,0,0,0,0,0,0,0,313,309,306,315,3,1246 +NA,NA,,2022-23,Fitchburg - Goodrich Academy,970510,0,0,0,0,0,0,0,0,0,0,13,17,49,103,12,194 +NA,NA,,2022-23,Fitchburg - McKay Elementary School,970340,0,0,129,134,156,177,131,0,0,0,0,0,0,0,0,727 +NA,NA,,2022-23,Fitchburg - Memorial Middle School,970048,0,0,0,0,0,0,0,197,183,201,0,0,0,0,0,581 +NA,NA,,2022-23,Fitchburg - Reingold Elementary,970043,0,0,127,115,125,144,140,0,0,0,0,0,0,0,0,651 +NA,NA,,2022-23,Fitchburg - South Street Early Learning Center,970060,154,410,0,0,0,0,0,0,0,0,0,0,0,0,0,564 +NA,NA,,2022-23,Florida - Abbott Memorial,980005,11,6,8,15,7,10,4,11,10,10,0,0,0,0,0,92 +NA,NA,,2022-23,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,0,0,0,0,0,38,38,38,38,29,38,0,219 +NA,NA,,2022-23,Foxborough - Charles Taylor Elementary,990050,0,41,46,58,55,54,0,0,0,0,0,0,0,0,0,254 +NA,NA,,2022-23,Foxborough - Foxborough High,990505,0,0,0,0,0,0,0,0,0,0,200,197,194,185,4,780 +NA,NA,,2022-23,Foxborough - John J Ahern,990405,0,0,0,0,0,0,177,202,172,182,0,0,0,0,0,733 +NA,NA,,2022-23,Foxborough - Mabelle M Burrell,990015,85,52,48,50,43,55,0,0,0,0,0,0,0,0,0,333 +NA,NA,,2022-23,Foxborough - Vincent M Igo Elementary,990020,0,64,74,68,82,66,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2022-23,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,0,140,144,150,144,146,129,122,109,105,108,98,88,86,0,1569 +NA,NA,,2022-23,Framingham - Barbieri Elementary,1000035,0,113,119,114,118,111,121,0,0,0,0,0,0,0,0,696 +NA,NA,,2022-23,Framingham - Brophy,1000006,0,84,93,91,81,80,58,0,0,0,0,0,0,0,0,487 +NA,NA,,2022-23,Framingham - Cameron Middle School,1000302,0,0,0,0,0,0,0,179,179,195,0,0,0,0,0,553 +NA,NA,,2022-23,Framingham - Charlotte A Dunning,1000007,0,69,76,64,65,94,65,0,0,0,0,0,0,0,0,433 +NA,NA,,2022-23,Framingham - Framingham High School,1000515,0,0,0,0,0,0,0,0,0,0,735,656,600,575,0,2566 +NA,NA,,2022-23,Framingham - Fuller Middle,1000305,0,0,0,0,0,0,0,217,198,201,0,0,0,0,0,616 +NA,NA,,2022-23,Framingham - Harmony Grove Elementary,1000055,0,77,88,80,73,89,89,0,0,0,0,0,0,0,0,496 +NA,NA,,2022-23,Framingham - Hemenway,1000015,0,82,92,89,88,98,94,0,0,0,0,0,0,0,0,543 +NA,NA,,2022-23,Framingham - Juniper Hill School,1000001,269,0,0,0,0,0,0,0,0,0,0,0,0,0,0,269 +NA,NA,,2022-23,Framingham - King Elementary School,1000005,0,62,56,76,58,76,64,0,0,0,0,0,0,0,0,392 +NA,NA,,2022-23,Framingham - Mary E Stapleton Elementary,1000045,0,57,53,52,65,63,53,0,0,0,0,0,0,0,0,343 +NA,NA,,2022-23,Framingham - Miriam F McCarthy School,1000050,0,98,88,92,83,104,85,0,0,0,0,0,0,0,0,550 +NA,NA,,2022-23,Framingham - Potter Road,1000039,0,82,87,91,91,93,97,0,0,0,0,0,0,0,0,541 +NA,NA,,2022-23,Framingham - Walsh Middle,1000310,0,0,0,0,0,0,0,249,259,281,0,0,0,0,0,789 +NA,NA,,2022-23,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,0,0,0,0,0,0,0,0,67,71,64,65,55,66,0,388 +NA,NA,,2022-23,Franklin - Annie Sullivan Middle School,1010040,0,0,0,0,0,0,0,115,108,95,0,0,0,0,0,318 +NA,NA,,2022-23,Franklin - Franklin Early Childhood Development Center,1010003,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149 +NA,NA,,2022-23,Franklin - Franklin High,1010505,0,0,0,0,0,0,0,0,0,0,385,395,410,424,16,1630 +NA,NA,,2022-23,Franklin - Helen Keller Elementary,1010012,0,83,90,85,95,101,78,0,0,0,0,0,0,0,0,532 +NA,NA,,2022-23,Franklin - Horace Mann,1010405,0,0,0,0,0,0,0,142,110,124,0,0,0,0,0,376 +NA,NA,,2022-23,Franklin - J F Kennedy Memorial,1010013,0,57,59,58,38,58,68,0,0,0,0,0,0,0,0,338 +NA,NA,,2022-23,Franklin - Jefferson Elementary,1010010,0,47,46,64,51,68,73,0,0,0,0,0,0,0,0,349 +NA,NA,,2022-23,Franklin - Oak Street Elementary,1010030,0,56,55,58,61,67,66,0,0,0,0,0,0,0,0,363 +NA,NA,,2022-23,Franklin - Parmenter,1010032,0,46,46,43,54,55,45,0,0,0,0,0,0,0,0,289 +NA,NA,,2022-23,Franklin - Remington Middle,1010310,0,0,0,0,0,0,0,121,113,133,0,0,0,0,0,367 +NA,NA,,2022-23,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,0,0,0,0,0,0,0,163,163,150,126,0,602 +NA,NA,,2022-23,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,0,0,0,0,0,0,0,0,175,181,189,181,3,729 +NA,NA,,2022-23,Freetown-Lakeville - Assawompset Elementary School,6650002,0,114,111,144,124,0,0,0,0,0,0,0,0,0,0,493 +NA,NA,,2022-23,Freetown-Lakeville - Freetown Elementary School,6650001,51,77,97,90,111,0,0,0,0,0,0,0,0,0,0,426 +NA,NA,,2022-23,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,0,0,0,0,0,0,0,233,227,215,0,0,0,0,0,675 +NA,NA,,2022-23,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,0,0,221,232,0,0,0,0,0,0,0,0,453 +NA,NA,,2022-23,Frontier - Frontier Regional,6700505,0,0,0,0,0,0,0,0,113,107,94,99,98,88,7,606 +NA,NA,,2022-23,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,0,0,0,0,0,0,0,10,19,42,37,0,108 +NA,NA,,2022-23,Gardner - Gardner Elementary School,1030001,87,188,195,186,171,159,0,0,0,0,0,0,0,0,0,986 +NA,NA,,2022-23,Gardner - Gardner High,1030505,0,0,0,0,0,0,0,0,0,196,173,157,148,125,5,804 +NA,NA,,2022-23,Gardner - Gardner Middle School,1030405,0,0,0,0,0,0,164,154,171,0,0,0,0,0,0,489 +NA,NA,,2022-23,Gateway - Chester Elementary,6720059,31,18,15,12,17,19,13,0,0,0,0,0,0,0,0,125 +NA,NA,,2022-23,Gateway - Gateway Regional High,6720505,0,0,0,0,0,0,0,0,0,0,43,32,46,40,2,163 +NA,NA,,2022-23,Gateway - Gateway Regional Middle School,6720405,0,0,0,0,0,0,0,52,58,78,0,0,0,0,0,188 +NA,NA,,2022-23,Gateway - Littleville Elementary School,6720143,38,49,42,36,40,40,54,0,0,0,0,0,0,0,0,299 +NA,NA,,2022-23,Georgetown - Georgetown High School,1050505,0,0,0,0,0,0,0,0,0,0,81,67,73,78,0,299 +NA,NA,,2022-23,Georgetown - Georgetown Middle School,1050305,0,0,0,0,0,0,0,0,96,90,0,0,0,0,0,186 +NA,NA,,2022-23,Georgetown - Penn Brook,1050010,0,106,95,92,103,108,110,89,0,0,0,0,0,0,0,703 +NA,NA,,2022-23,Georgetown - Perley Elementary,1050005,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82 +NA,NA,,2022-23,Gill-Montague - Gill Elementary,6740005,0,10,18,17,11,17,20,12,0,0,0,0,0,0,0,105 +NA,NA,,2022-23,Gill-Montague - Great Falls Middle,6740310,0,0,0,0,0,0,0,67,85,55,0,0,0,0,0,207 +NA,NA,,2022-23,Gill-Montague - Hillcrest Elementary School,6740015,41,46,59,0,0,0,0,0,0,0,0,0,0,0,0,146 +NA,NA,,2022-23,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,46,46,56,63,0,0,0,0,0,0,0,0,211 +NA,NA,,2022-23,Gill-Montague - Turners Fall High,6740505,0,0,0,0,0,0,0,0,0,0,49,49,58,33,5,194 +NA,NA,,2022-23,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,0,0,0,0,0,77,82,90,90,49,40,28,43,0,499 +NA,NA,,2022-23,Gloucester - Beeman Memorial,1070010,0,42,58,58,56,47,39,0,0,0,0,0,0,0,0,300 +NA,NA,,2022-23,Gloucester - East Gloucester Elementary,1070020,0,30,34,24,29,38,26,0,0,0,0,0,0,0,0,181 +NA,NA,,2022-23,Gloucester - Gloucester High,1070505,0,0,0,0,0,0,0,0,0,0,214,207,202,173,8,804 +NA,NA,,2022-23,Gloucester - Gloucester PreSchool,1070025,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105 +NA,NA,,2022-23,Gloucester - Plum Cove School,1070042,0,18,43,39,31,36,36,0,0,0,0,0,0,0,0,203 +NA,NA,,2022-23,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,0,0,0,0,203,215,204,0,0,0,0,0,622 +NA,NA,,2022-23,Gloucester - Veterans Memorial,1070045,0,43,39,37,37,28,32,0,0,0,0,0,0,0,0,216 +NA,NA,,2022-23,Gloucester - West Parish,1070050,0,58,59,62,64,57,74,0,0,0,0,0,0,0,0,374 +NA,NA,,2022-23,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +NA,NA,,2022-23,Grafton - Grafton High School,1100505,0,0,0,0,0,0,0,0,0,0,209,229,203,227,7,875 +NA,NA,,2022-23,Grafton - Grafton Middle,1100305,0,0,0,0,0,0,0,0,241,283,0,0,0,0,0,524 +NA,NA,,2022-23,Grafton - Millbury Street Elementary School,1100200,0,0,0,104,134,94,131,132,0,0,0,0,0,0,0,595 +NA,NA,,2022-23,Grafton - North Grafton Elementary,1100025,39,91,114,0,0,0,0,0,0,0,0,0,0,0,0,244 +NA,NA,,2022-23,Grafton - North Street Elementary School,1100030,0,0,0,118,118,96,116,100,0,0,0,0,0,0,0,548 +NA,NA,,2022-23,Grafton - South Grafton Elementary,1100005,55,114,125,0,0,0,0,0,0,0,0,0,0,0,0,294 +NA,NA,,2022-23,Granby - East Meadow,1110004,33,35,55,59,59,64,57,45,0,0,0,0,0,0,0,407 +NA,NA,,2022-23,Granby - Granby Jr Sr High School,1110505,0,0,0,0,0,0,0,0,54,51,51,49,49,57,0,311 +NA,NA,,2022-23,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900,0,30,41,43,57,49,60,77,76,113,145,145,163,156,0,1155 +NA,NA,,2022-23,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,0,0,0,0,0,0,0,0,0,0,375,368,347,322,0,1412 +NA,NA,,2022-23,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0,0,0,0,0,0,0,0,0,0,438,434,414,406,0,1692 +NA,NA,,2022-23,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,0,0,0,0,0,0,0,0,0,0,575,595,574,538,20,2302 +NA,NA,,2022-23,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,0,0,0,0,0,0,0,0,0,0,561,564,520,450,0,2095 +NA,NA,,2022-23,Greenfield - Discovery School at Four Corners,1140025,0,35,46,50,51,32,0,0,0,0,0,0,0,0,0,214 +NA,NA,,2022-23,Greenfield - Federal Street School,1140010,0,48,38,31,35,41,0,0,0,0,0,0,0,0,0,193 +NA,NA,,2022-23,Greenfield - Greenfield High,1140505,0,0,0,0,0,0,0,0,0,103,91,100,79,72,9,454 +NA,NA,,2022-23,Greenfield - Greenfield Middle,1140305,0,0,0,0,0,0,104,101,95,0,0,0,0,0,0,300 +NA,NA,,2022-23,Greenfield - Newton School,1140035,0,42,38,37,47,39,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2022-23,Greenfield - The Academy of Early Learning at North Parish,1140005,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82 +NA,NA,,2022-23,Groton-Dunstable - Boutwell School,6730001,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94 +NA,NA,,2022-23,Groton-Dunstable - Florence Roche School,6730010,0,80,106,110,110,120,0,0,0,0,0,0,0,0,0,526 +NA,NA,,2022-23,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,0,0,0,0,0,0,0,164,161,179,171,5,680 +NA,NA,,2022-23,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,0,0,0,176,188,157,202,0,0,0,0,0,723 +NA,NA,,2022-23,Groton-Dunstable - Swallow/Union School,6730005,0,68,71,57,66,66,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2022-23,Hadley - Hadley Elementary,1170015,40,35,23,37,27,39,33,37,0,0,0,0,0,0,0,271 +NA,NA,,2022-23,Hadley - Hopkins Academy,1170505,0,0,0,0,0,0,0,0,37,30,31,44,43,38,0,223 +NA,NA,,2022-23,Halifax - Halifax Elementary,1180005,0,69,70,73,67,86,92,104,0,0,0,0,0,0,0,561 +NA,NA,,2022-23,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,38,63,40,38,46,40,0,0,0,0,0,0,0,0,265 +NA,NA,,2022-23,Hamilton-Wenham - Cutler School,6750010,0,40,42,34,36,41,61,0,0,0,0,0,0,0,0,254 +NA,NA,,2022-23,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,0,0,0,0,0,0,0,0,0,106,108,119,117,0,450 +NA,NA,,2022-23,Hamilton-Wenham - Miles River Middle,6750310,0,0,0,0,0,0,0,109,128,134,0,0,0,0,0,371 +NA,NA,,2022-23,Hamilton-Wenham - Winthrop School,6750015,25,58,44,55,51,41,39,0,0,0,0,0,0,0,0,313 +NA,NA,,2022-23,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,0,0,0,0,0,0,0,88,88,86,77,80,64,66,0,549 +NA,NA,,2022-23,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,0,0,0,0,0,0,0,59,62,61,54,55,49,27,0,367 +NA,NA,,2022-23,Hampden-Wilbraham - Green Meadows Elementary,6800005,22,35,50,40,44,38,44,4,13,19,0,0,0,0,0,309 +NA,NA,,2022-23,Hampden-Wilbraham - Mile Tree Elementary,6800025,60,153,141,0,0,0,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2022-23,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0,0,0,0,0,0,0,0,0,273,246,238,227,0,984 +NA,NA,,2022-23,Hampden-Wilbraham - Soule Road,6800030,0,0,0,0,0,157,153,0,0,0,0,0,0,0,0,310 +NA,NA,,2022-23,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,142,161,0,0,0,0,0,0,0,0,0,0,303 +NA,NA,,2022-23,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,0,0,0,0,213,193,193,0,0,0,0,0,599 +NA,NA,,2022-23,Hampshire - Hampshire Regional High,6830505,0,0,0,0,0,0,0,0,131,123,103,99,101,101,4,662 +NA,NA,,2022-23,Hancock - Hancock Elementary,1210005,13,6,4,9,8,6,6,7,0,0,0,0,0,0,0,59 +NA,NA,,2022-23,Hanover - Cedar Elementary,1220004,106,179,185,0,0,0,0,0,0,0,0,0,0,0,0,470 +NA,NA,,2022-23,Hanover - Center Elementary,1220005,0,0,0,207,225,209,0,0,0,0,0,0,0,0,0,641 +NA,NA,,2022-23,Hanover - Hanover High,1220505,0,0,0,0,0,0,0,0,0,0,148,167,184,168,0,667 +NA,NA,,2022-23,Hanover - Hanover Middle,1220305,0,0,0,0,0,0,184,216,190,211,0,0,0,0,0,801 +NA,NA,,2022-23,Harvard - Bromfield,1250505,0,0,0,0,0,0,0,80,81,75,84,77,86,77,0,560 +NA,NA,,2022-23,Harvard - Hildreth Elementary School,1250005,25,71,79,60,71,74,80,0,0,0,0,0,0,0,0,460 +NA,NA,,2022-23,Hatfield - Hatfield Elementary,1270005,26,23,24,19,30,34,24,32,0,0,0,0,0,0,0,212 +NA,NA,,2022-23,Hatfield - Smith Academy,1270505,0,0,0,0,0,0,0,0,20,31,21,18,19,24,0,133 +NA,NA,,2022-23,Haverhill - Bartlett School and Assessment Center,1280073,0,0,1,3,3,4,4,1,3,3,2,1,0,4,6,35 +NA,NA,,2022-23,Haverhill - Bradford Elementary,1280008,0,96,112,107,88,105,0,0,0,0,0,0,0,0,0,508 +NA,NA,,2022-23,Haverhill - Caleb Dustin Hunking School,1280030,0,80,78,70,103,92,167,141,165,174,0,0,0,0,0,1070 +NA,NA,,2022-23,Haverhill - Consentino Middle School,1280100,0,0,0,0,0,0,73,212,198,217,0,0,0,0,0,700 +NA,NA,,2022-23,Haverhill - Dr Paul Nettle,1280050,0,0,0,0,0,0,134,137,133,166,0,0,0,0,0,570 +NA,NA,,2022-23,Haverhill - Gateway Academy,1280515,0,0,0,0,0,0,0,0,11,10,11,27,13,9,0,81 +NA,NA,,2022-23,Haverhill - Golden Hill,1280026,0,95,99,83,98,100,0,0,0,0,0,0,0,0,0,475 +NA,NA,,2022-23,Haverhill - Greenleaf Academy,1280033,0,0,0,0,0,0,0,3,2,9,5,3,7,3,0,32 +NA,NA,,2022-23,Haverhill - Haverhill High,1280505,0,0,0,0,0,0,0,0,0,0,589,466,451,408,30,1944 +NA,NA,,2022-23,Haverhill - John G Whittier,1280085,0,0,0,0,0,0,92,141,129,122,0,0,0,0,0,484 +NA,NA,,2022-23,Haverhill - Moody,1280045,172,8,0,0,0,0,0,0,0,0,0,0,0,0,0,180 +NA,NA,,2022-23,Haverhill - Moody Preschool Extension,1280001,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102 +NA,NA,,2022-23,Haverhill - Pentucket Lake Elementary,1280054,0,74,65,84,122,135,41,0,0,0,0,0,0,0,0,521 +NA,NA,,2022-23,Haverhill - Silver Hill Elementary School,1280067,0,79,89,79,70,87,67,0,0,0,0,0,0,0,0,471 +NA,NA,,2022-23,Haverhill - Tilton,1280075,0,55,85,74,81,0,0,0,0,0,0,0,0,0,0,295 +NA,NA,,2022-23,Haverhill - Tilton Upper Middle School,1280105,0,0,0,0,0,99,72,0,0,0,0,0,0,0,0,171 +NA,NA,,2022-23,Haverhill - Walnut Square,1280080,0,57,40,39,0,0,0,0,0,0,0,0,0,0,0,136 +NA,NA,,2022-23,Hawlemont - Hawlemont Regional,6850005,17,9,6,12,9,13,9,16,0,0,0,0,0,0,0,91 +NA,NA,,2022-23,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,0,0,0,0,0,0,0,32,35,47,0,0,0,0,0,114 +NA,NA,,2022-23,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,36,34,33,33,33,34,38,34,31,0,0,0,0,0,306 +NA,NA,,2022-23,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,20,20,21,21,21,20,32,32,30,0,0,0,0,0,217 +NA,NA,,2022-23,Hingham - East Elementary School,1310005,79,77,80,64,71,72,57,0,0,0,0,0,0,0,0,500 +NA,NA,,2022-23,Hingham - Hingham High,1310505,0,0,0,0,0,0,0,0,0,0,287,270,289,320,1,1167 +NA,NA,,2022-23,Hingham - Hingham Middle School,1310410,0,0,0,0,0,0,0,290,293,261,0,0,0,0,0,844 +NA,NA,,2022-23,Hingham - Plymouth River,1310019,0,64,56,57,67,62,75,0,0,0,0,0,0,0,0,381 +NA,NA,,2022-23,Hingham - South Elementary,1310020,0,81,90,72,80,89,90,0,0,0,0,0,0,0,0,502 +NA,NA,,2022-23,Hingham - Wm L Foster Elementary,1310010,0,61,53,71,81,63,74,0,0,0,0,0,0,0,0,403 +NA,NA,,2022-23,Holbrook - Holbrook Middle High School,1330505,0,0,0,0,0,0,0,123,111,97,71,71,79,81,2,635 +NA,NA,,2022-23,Holbrook - John F Kennedy,1330018,40,112,99,91,111,118,104,0,0,0,0,0,0,0,0,675 +NA,NA,,2022-23,Holland - Holland Elementary,1350005,27,30,33,25,21,32,32,31,0,0,0,0,0,0,0,231 +NA,NA,,2022-23,Holliston - Holliston High,1360505,0,0,0,0,0,0,0,0,0,0,212,203,194,197,8,814 +NA,NA,,2022-23,Holliston - Miller School,1360007,0,0,0,0,209,176,219,0,0,0,0,0,0,0,0,604 +NA,NA,,2022-23,Holliston - Placentino Elementary,1360010,86,191,234,192,0,0,0,0,0,0,0,0,0,0,0,703 +NA,NA,,2022-23,Holliston - Robert H. Adams Middle School,1360305,0,0,0,0,0,0,0,221,219,215,0,0,0,0,0,655 +NA,NA,,2022-23,Holyoke - E N White Elementary,1370045,78,68,49,62,57,57,42,0,0,0,0,0,0,0,0,413 +NA,NA,,2022-23,Holyoke - H.B. Lawrence School,1370070,17,32,36,54,34,0,0,0,0,0,0,0,0,0,0,173 +NA,NA,,2022-23,Holyoke - Holyoke High,1370505,0,0,0,0,0,0,0,0,0,0,384,372,358,401,0,1515 +NA,NA,,2022-23,Holyoke - Holyoke Middle School,1370325,0,0,0,0,0,0,0,81,104,96,0,0,0,0,0,281 +NA,NA,,2022-23,Holyoke - Holyoke STEM Academy,1370320,0,0,0,0,0,0,0,93,95,102,0,0,0,0,0,290 +NA,NA,,2022-23,Holyoke - Joseph Metcalf School,1370003,35,38,41,43,37,31,44,39,36,29,0,0,0,0,0,373 +NA,NA,,2022-23,Holyoke - Kelly Elementary,1370040,19,47,50,59,50,50,50,0,0,0,0,0,0,0,0,325 +NA,NA,,2022-23,Holyoke - Lt Clayre Sullivan Elementary,1370055,37,28,37,34,43,44,36,56,42,42,0,0,0,0,0,399 +NA,NA,,2022-23,Holyoke - Lt Elmer J McMahon Elementary,1370015,24,22,30,33,44,33,39,48,27,37,0,0,0,0,0,337 +NA,NA,,2022-23,Holyoke - Maurice A Donahue Elementary,1370060,33,45,57,59,52,57,57,0,0,0,0,0,0,0,0,360 +NA,NA,,2022-23,Holyoke - Morgan Full Service Community School,1370025,73,29,30,29,44,38,42,0,0,0,0,0,0,0,0,285 +NA,NA,,2022-23,Holyoke - William R. Peck School,1370030,0,0,0,0,0,40,42,42,35,33,0,0,0,0,0,192 +NA,NA,,2022-23,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,0,78,74,57,84,86,79,87,77,63,0,0,0,0,0,685 +NA,NA,,2022-23,Hoosac Valley Regional - Hoosac Valley Elementary School,6030020,47,70,98,68,91,0,0,0,0,0,0,0,0,0,0,374 +NA,NA,,2022-23,Hoosac Valley Regional - Hoosac Valley High School,6030505,0,0,0,0,0,0,0,0,0,100,82,49,41,51,1,324 +NA,NA,,2022-23,Hoosac Valley Regional - Hoosac Valley Middle School,6030315,0,0,0,0,0,67,77,66,78,0,0,0,0,0,0,288 +NA,NA,,2022-23,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,0,0,0,0,0,70,91,63,69,78,65,0,436 +NA,NA,,2022-23,Hopedale - Memorial,1380010,0,80,72,78,76,78,86,84,0,0,0,0,0,0,0,554 +NA,NA,,2022-23,Hopedale - Park Street School,1380003,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102 +NA,NA,,2022-23,Hopkinton - Elmwood,1390010,0,0,0,315,312,0,0,0,0,0,0,0,0,0,0,627 +NA,NA,,2022-23,Hopkinton - Hopkins Elementary School,1390015,0,0,0,0,0,341,298,0,0,0,0,0,0,0,0,639 +NA,NA,,2022-23,Hopkinton - Hopkinton High,1390505,0,0,0,0,0,0,0,0,0,0,313,326,280,310,5,1234 +NA,NA,,2022-23,Hopkinton - Hopkinton Middle School,1390305,0,0,0,0,0,0,0,338,319,315,0,0,0,0,0,972 +NA,NA,,2022-23,Hopkinton - Hopkinton Pre-School,1390003,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99 +NA,NA,,2022-23,Hopkinton - Marathon Elementary School,1390005,0,297,295,0,0,0,0,0,0,0,0,0,0,0,0,592 +NA,NA,,2022-23,Hudson - C A Farley,1410030,10,89,92,81,72,86,0,0,0,0,0,0,0,0,0,430 +NA,NA,,2022-23,Hudson - David J. Quinn Middle School,1410410,0,0,0,0,0,0,218,167,173,0,0,0,0,0,0,558 +NA,NA,,2022-23,Hudson - Forest Avenue Elementary,1410015,0,58,45,45,69,67,0,0,0,0,0,0,0,0,0,284 +NA,NA,,2022-23,Hudson - Hudson High,1410505,0,0,0,0,0,0,0,0,0,168,155,171,158,156,0,808 +NA,NA,,2022-23,Hudson - Mulready Elementary,1410007,20,40,35,56,39,53,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2022-23,Hull - Hull High,1420505,0,0,0,0,0,0,0,0,0,0,64,63,53,61,0,241 +NA,NA,,2022-23,Hull - Lillian M Jacobs,1420015,46,47,58,41,56,57,57,0,0,0,0,0,0,0,0,362 +NA,NA,,2022-23,Hull - Memorial Middle,1420305,0,0,0,0,0,0,0,57,55,60,0,0,0,0,0,172 +NA,NA,,2022-23,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,0,0,0,0,0,0,102,100,100,100,107,107,92,85,0,793 +NA,NA,,2022-23,Ipswich - Ipswich High,1440505,0,0,0,0,0,0,0,0,0,0,114,128,131,123,6,502 +NA,NA,,2022-23,Ipswich - Ipswich Middle School,1440305,0,0,0,0,0,0,0,127,115,120,0,0,0,0,0,362 +NA,NA,,2022-23,Ipswich - Paul F Doyon Memorial,1440007,21,55,62,50,50,59,69,0,0,0,0,0,0,0,0,366 +NA,NA,,2022-23,Ipswich - Winthrop,1440015,39,43,68,52,57,46,68,0,0,0,0,0,0,0,0,373 +NA,NA,,2022-23,King Philip - King Philip Middle School,6900510,0,0,0,0,0,0,0,0,349,321,0,0,0,0,0,670 +NA,NA,,2022-23,King Philip - King Philip Regional High,6900505,0,0,0,0,0,0,0,0,0,0,297,277,295,267,6,1142 +NA,NA,,2022-23,Kingston - Kingston Elementary,1450005,124,178,165,153,0,0,0,0,0,0,0,0,0,0,0,620 +NA,NA,,2022-23,Kingston - Kingston Intermediate,1450020,0,0,0,0,156,147,142,148,0,0,0,0,0,0,0,593 +NA,NA,,2022-23,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,0,66,67,69,71,71,62,59,58,54,0,0,0,0,0,577 +NA,NA,,2022-23,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,0,125,124,124,124,124,128,126,123,123,129,127,127,108,0,1612 +NA,NA,,2022-23,Lawrence - Alexander B Bruce,1490015,0,0,0,0,60,56,54,72,89,78,0,0,0,0,0,409 +NA,NA,,2022-23,Lawrence - Arlington Elementary,1490009,28,85,125,115,105,121,0,0,0,0,0,0,0,0,0,579 +NA,NA,,2022-23,Lawrence - Arlington Middle School,1490017,0,0,0,0,0,0,116,144,151,164,0,0,0,0,0,575 +NA,NA,,2022-23,Lawrence - Edward F. Parthum,1490053,0,106,151,139,138,143,0,0,0,0,0,0,0,0,0,677 +NA,NA,,2022-23,Lawrence - Emily G Wetherbee,1490080,0,38,49,43,56,58,58,70,64,59,0,0,0,0,0,495 +NA,NA,,2022-23,Lawrence - Francis M Leahy,1490040,0,0,75,76,81,71,77,0,0,0,0,0,0,0,0,380 +NA,NA,,2022-23,Lawrence - Frost Middle School,1490525,0,0,0,0,0,0,106,125,142,141,0,0,0,0,0,514 +NA,NA,,2022-23,Lawrence - Gerard A. Guilmette,1490022,0,0,139,122,106,114,0,0,0,0,0,0,0,0,0,481 +NA,NA,,2022-23,Lawrence - Guilmette Middle School,1490025,0,0,0,0,0,0,128,110,108,113,0,0,0,0,0,459 +NA,NA,,2022-23,Lawrence - High School Learning Center,1490536,0,0,0,0,0,0,0,0,0,0,0,12,77,220,1,310 +NA,NA,,2022-23,Lawrence - James F Hennessey,1490020,94,77,72,74,0,0,0,0,0,0,0,0,0,0,0,317 +NA,NA,,2022-23,Lawrence - John Breen School,1490003,158,100,0,0,0,0,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2022-23,Lawrence - John K Tarbox,1490075,0,0,52,63,46,47,67,0,0,0,0,0,0,0,0,275 +NA,NA,,2022-23,Lawrence - Lawlor Early Childhood Center,1490002,0,164,0,0,0,0,0,0,0,0,0,0,0,0,0,164 +NA,NA,,2022-23,Lawrence - Lawrence Family Public Academy,1490011,82,107,0,0,0,0,0,0,0,0,0,0,0,0,0,189 +NA,NA,,2022-23,Lawrence - Lawrence High School,1490515,0,0,0,0,0,0,0,0,0,0,910,811,673,667,23,3084 +NA,NA,,2022-23,Lawrence - Leonard Middle School,1490090,0,0,0,0,0,0,0,100,110,117,0,0,0,0,0,327 +NA,NA,,2022-23,Lawrence - Oliver Elementary School,1490048,0,0,80,80,86,96,91,0,0,0,0,0,0,0,0,433 +NA,NA,,2022-23,Lawrence - Oliver Middle School,1490049,0,0,0,0,0,0,0,117,118,116,0,0,0,0,0,351 +NA,NA,,2022-23,Lawrence - Parthum Middle School,1490027,0,0,0,0,0,0,149,139,140,140,0,0,0,0,0,568 +NA,NA,,2022-23,Lawrence - RISE Academy,1490615,0,0,0,0,0,0,0,1,1,2,0,11,19,22,0,56 +NA,NA,,2022-23,Lawrence - Robert Frost,1490018,0,98,113,112,122,127,0,0,0,0,0,0,0,0,0,572 +NA,NA,,2022-23,Lawrence - Rollins Early Childhood Center,1490001,135,67,0,0,0,0,0,0,0,0,0,0,0,0,0,202 +NA,NA,,2022-23,Lawrence - School for Exceptional Studies,1490537,1,2,2,5,5,7,8,9,12,13,7,8,10,5,8,102 +NA,NA,,2022-23,Lawrence - South Lawrence East Elementary School,1490004,0,0,122,143,131,133,124,0,0,0,0,0,0,0,0,653 +NA,NA,,2022-23,Lawrence - Spark Academy,1490085,0,0,0,0,0,0,0,149,146,142,0,0,0,0,0,437 +NA,NA,,2022-23,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,100,104,102,83,84,84,79,75,73,70,0,0,0,0,0,854 +NA,NA,,2022-23,Learning First Charter Public School (District) - Learning First Charter Public School,4860105,0,75,75,75,75,75,70,76,76,70,0,0,0,0,0,667 +NA,NA,,2022-23,Lee - Lee Elementary,1500025,18,51,38,40,43,49,57,45,0,0,0,0,0,0,0,341 +NA,NA,,2022-23,Lee - Lee Middle/High School,1500505,0,0,0,0,0,0,0,0,57,57,42,54,52,58,5,325 +NA,NA,,2022-23,Leicester - Leicester Elementary,1510005,0,91,112,94,97,99,0,0,0,0,0,0,0,0,0,493 +NA,NA,,2022-23,Leicester - Leicester High,1510505,0,0,0,0,0,0,0,0,0,0,116,90,111,97,0,414 +NA,NA,,2022-23,Leicester - Leicester Integrated Preschool,1510001,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38 +NA,NA,,2022-23,Leicester - Leicester Middle,1510015,0,0,0,0,0,0,126,87,97,99,0,0,0,0,0,409 +NA,NA,,2022-23,Lenox - Lenox Memorial High,1520505,0,0,0,0,0,0,0,60,59,64,60,58,64,63,3,431 +NA,NA,,2022-23,Lenox - Morris,1520015,23,55,48,50,53,60,50,0,0,0,0,0,0,0,0,339 +NA,NA,,2022-23,Leominster - Bennett,1530003,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94 +NA,NA,,2022-23,Leominster - Center For Technical Education Innovation,1530605,0,0,0,0,0,0,0,0,0,0,339,164,143,142,12,800 +NA,NA,,2022-23,Leominster - Fall Brook,1530007,0,64,122,107,106,104,112,0,0,0,0,0,0,0,0,615 +NA,NA,,2022-23,Leominster - Frances Drake School,1530010,0,65,76,69,90,81,84,0,0,0,0,0,0,0,0,465 +NA,NA,,2022-23,Leominster - Johnny Appleseed,1530025,0,85,123,103,114,122,114,0,0,0,0,0,0,0,0,661 +NA,NA,,2022-23,Leominster - Leominster Center for Excellence,1530515,0,0,0,0,0,0,0,0,0,0,14,11,15,10,0,50 +NA,NA,,2022-23,Leominster - Leominster High School,1530505,0,0,0,0,0,0,0,0,0,0,135,295,303,301,0,1034 +NA,NA,,2022-23,Leominster - Lincoln School,1530005,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30 +NA,NA,,2022-23,Leominster - Northwest,1530030,0,39,147,135,130,145,131,0,0,0,0,0,0,0,0,727 +NA,NA,,2022-23,Leominster - Priest Street,1530040,0,134,0,0,0,0,0,0,0,0,0,0,0,0,0,134 +NA,NA,,2022-23,Leominster - Samoset School,1530045,0,0,0,0,0,0,0,150,169,185,0,0,0,0,0,504 +NA,NA,,2022-23,Leominster - Sky View Middle School,1530320,0,0,0,0,0,0,0,297,292,297,0,0,0,0,0,886 +NA,NA,,2022-23,Leverett - Leverett Elementary,1540005,16,14,19,19,18,18,22,15,0,0,0,0,0,0,0,141 +NA,NA,,2022-23,Lexington - Bowman,1550008,0,64,59,68,75,88,97,0,0,0,0,0,0,0,0,451 +NA,NA,,2022-23,Lexington - Bridge,1550006,0,51,50,66,64,67,76,0,0,0,0,0,0,0,0,374 +NA,NA,,2022-23,Lexington - Fiske,1550015,0,43,47,54,67,56,74,0,0,0,0,0,0,0,0,341 +NA,NA,,2022-23,Lexington - Harrington,1550030,0,52,54,48,77,81,84,0,0,0,0,0,0,0,0,396 +NA,NA,,2022-23,Lexington - Jonas Clarke Middle,1550305,0,0,0,0,0,0,0,267,267,289,0,0,0,0,0,823 +NA,NA,,2022-23,Lexington - Joseph Estabrook,1550010,0,70,89,87,92,105,99,0,0,0,0,0,0,0,0,542 +NA,NA,,2022-23,Lexington - Lexington Children's Place,1550001,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75 +NA,NA,,2022-23,Lexington - Lexington High,1550505,0,0,0,0,0,0,0,0,0,0,593,591,540,579,0,2303 +NA,NA,,2022-23,Lexington - Maria Hastings,1550035,0,67,104,86,102,134,105,0,0,0,0,0,0,0,0,598 +NA,NA,,2022-23,Lexington - Wm Diamond Middle,1550310,0,0,0,0,0,0,0,299,308,335,0,0,0,0,0,942 +NA,NA,,2022-23,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,0,0,0,0,0,0,0,93,82,93,71,72,0,0,0,411 +NA,NA,,2022-23,Lincoln - Hanscom Middle,1570305,0,0,0,0,0,49,58,41,35,41,0,0,0,0,0,224 +NA,NA,,2022-23,Lincoln - Hanscom Primary,1570006,58,34,54,44,49,0,0,0,0,0,0,0,0,0,0,239 +NA,NA,,2022-23,Lincoln - Lincoln School,1570025,33,46,58,62,56,74,52,60,52,51,0,0,0,0,0,544 +NA,NA,,2022-23,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,0,0,0,0,0,0,0,0,0,0,376,387,355,361,5,1484 +NA,NA,,2022-23,Littleton - Littleton High School,1580505,0,0,0,0,0,0,0,0,0,0,127,123,118,108,4,480 +NA,NA,,2022-23,Littleton - Littleton Middle School,1580305,0,0,0,0,0,0,0,124,129,132,0,0,0,0,0,385 +NA,NA,,2022-23,Littleton - Russell St Elementary,1580015,0,0,0,0,125,123,141,0,0,0,0,0,0,0,0,389 +NA,NA,,2022-23,Littleton - Shaker Lane Elementary,1580005,59,129,138,110,0,0,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2022-23,Longmeadow - Blueberry Hill,1590005,0,61,63,57,59,72,80,0,0,0,0,0,0,0,0,392 +NA,NA,,2022-23,Longmeadow - Center,1590010,0,66,68,64,78,76,72,0,0,0,0,0,0,0,0,424 +NA,NA,,2022-23,Longmeadow - Glenbrook Middle,1590017,0,0,0,0,0,0,0,106,106,120,0,0,0,0,0,332 +NA,NA,,2022-23,Longmeadow - Longmeadow High,1590505,0,0,0,0,0,0,0,0,0,0,237,230,224,213,0,904 +NA,NA,,2022-23,Longmeadow - Williams Middle,1590305,0,0,0,0,0,0,0,100,88,94,0,0,0,0,0,282 +NA,NA,,2022-23,Longmeadow - Wolf Swamp Road,1590025,75,66,64,56,57,68,58,0,0,0,0,0,0,0,0,444 +NA,NA,,2022-23,Lowell - Abraham Lincoln,1600020,46,83,87,91,88,97,0,0,0,0,0,0,0,0,0,492 +NA,NA,,2022-23,Lowell - B.F. Butler Middle School,1600310,0,0,0,0,0,0,117,128,127,142,0,0,0,0,0,514 +NA,NA,,2022-23,Lowell - Bartlett Community Partnership,1600090,41,43,48,48,51,50,48,55,53,57,0,0,0,0,0,494 +NA,NA,,2022-23,Lowell - Cardinal O'Connell Early Learning Center,1600001,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99 +NA,NA,,2022-23,Lowell - Charles W Morey,1600030,47,84,86,86,82,96,0,0,0,0,0,0,0,0,0,481 +NA,NA,,2022-23,Lowell - Charlotte M Murkland Elementary,1600080,37,69,81,80,75,96,0,0,0,0,0,0,0,0,0,438 +NA,NA,,2022-23,Lowell - Dr An Wang School,1600345,0,0,0,0,0,0,159,167,162,171,0,0,0,0,0,659 +NA,NA,,2022-23,Lowell - Dr Gertrude Bailey,1600002,31,85,82,84,84,94,0,0,0,0,0,0,0,0,0,460 +NA,NA,,2022-23,Lowell - Dr. Janice Adie Day School,1600605,0,1,2,3,5,9,8,10,6,2,0,4,3,2,0,55 +NA,NA,,2022-23,Lowell - Greenhalge,1600015,44,78,87,88,83,93,0,0,0,0,0,0,0,0,0,473 +NA,NA,,2022-23,Lowell - Henry J Robinson Middle,1600330,0,0,0,0,0,0,133,148,152,170,0,0,0,0,0,603 +NA,NA,,2022-23,Lowell - James S Daley Middle School,1600315,0,0,0,0,0,0,179,155,166,174,0,0,0,0,0,674 +NA,NA,,2022-23,Lowell - James Sullivan Middle School,1600340,0,0,0,0,0,0,131,146,146,169,0,0,0,0,0,592 +NA,NA,,2022-23,Lowell - John J Shaughnessy,1600050,42,82,86,88,87,94,0,0,0,0,0,0,0,0,0,479 +NA,NA,,2022-23,Lowell - Joseph McAvinnue,1600010,30,66,81,82,76,93,0,0,0,0,0,0,0,0,0,428 +NA,NA,,2022-23,Lowell - Kathryn P. Stoklosa Middle School,1600360,0,0,0,0,0,0,146,158,153,176,0,0,0,0,0,633 +NA,NA,,2022-23,Lowell - Laura Lee Therapeutic Day School,1600085,0,0,0,0,1,0,0,5,5,3,0,0,0,0,0,14 +NA,NA,,2022-23,Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,0,0,0,0,12,10,5,6,0,33 +NA,NA,,2022-23,Lowell - Lowell High,1600505,0,0,0,0,0,0,0,0,0,0,974,795,741,632,25,3167 +NA,NA,,2022-23,Lowell - Moody Elementary,1600027,21,42,44,48,43,43,0,0,0,0,0,0,0,0,0,241 +NA,NA,,2022-23,Lowell - Pawtucketville Memorial,1600036,33,85,85,83,82,98,0,0,0,0,0,0,0,0,0,466 +NA,NA,,2022-23,Lowell - Peter W Reilly,1600040,28,85,94,93,88,97,0,0,0,0,0,0,0,0,0,485 +NA,NA,,2022-23,Lowell - Pyne Arts,1600018,31,45,45,50,47,52,56,59,57,61,0,0,0,0,0,503 +NA,NA,,2022-23,Lowell - Rogers STEM Academy,1600005,0,62,79,90,85,99,94,106,107,113,0,0,0,0,0,835 +NA,NA,,2022-23,Lowell - S Christa McAuliffe Elementary,1600075,34,83,86,94,86,97,0,0,0,0,0,0,0,0,0,480 +NA,NA,,2022-23,Lowell - The Career Academy,1600515,0,0,0,0,0,0,0,0,0,0,31,10,13,34,0,88 +NA,NA,,2022-23,Lowell - Washington,1600055,29,41,39,47,42,46,0,0,0,0,0,0,0,0,0,244 +NA,NA,,2022-23,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,40,99,94,93,92,88,81,82,69,75,0,0,0,0,0,813 +NA,NA,,2022-23,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,0,0,0,0,0,0,0,13,15,22,33,0,83 +NA,NA,,2022-23,Ludlow - East Street Elementary School,1610010,80,104,134,0,0,0,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2022-23,Ludlow - Harris Brook Elementary School,1610665,0,0,0,167,155,152,168,0,0,0,0,0,0,0,0,642 +NA,NA,,2022-23,Ludlow - Ludlow Senior High,1610505,0,0,0,0,0,0,0,0,0,0,228,200,170,196,1,795 +NA,NA,,2022-23,Ludlow - Paul R Baird Middle,1610305,0,0,0,0,0,0,0,178,174,164,0,0,0,0,0,516 +NA,NA,,2022-23,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5 +NA,NA,,2022-23,Lunenburg - Lunenburg High,1620505,0,0,0,0,0,0,0,0,0,0,125,104,112,99,0,440 +NA,NA,,2022-23,Lunenburg - Lunenburg Middle School,1620305,0,0,0,0,0,0,0,119,132,129,0,0,0,0,0,380 +NA,NA,,2022-23,Lunenburg - Lunenburg Primary School,1620010,42,106,125,111,0,0,0,0,0,0,0,0,0,0,0,384 +NA,NA,,2022-23,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,0,109,136,108,0,0,0,0,0,0,0,0,353 +NA,NA,,2022-23,Lynn - A Drewicz Elementary,1630016,7,98,85,86,62,71,79,0,0,0,0,0,0,0,0,488 +NA,NA,,2022-23,Lynn - Aborn,1630011,0,31,34,37,37,49,29,0,0,0,0,0,0,0,0,217 +NA,NA,,2022-23,Lynn - Breed Middle School,1630405,0,0,0,0,0,0,0,455,452,314,0,0,0,0,0,1221 +NA,NA,,2022-23,Lynn - Brickett Elementary,1630020,0,34,53,53,41,57,67,0,0,0,0,0,0,0,0,305 +NA,NA,,2022-23,Lynn - Capt William G Shoemaker,1630090,5,32,49,45,43,62,61,0,0,0,0,0,0,0,0,297 +NA,NA,,2022-23,Lynn - Classical High,1630505,0,0,0,0,0,0,0,0,0,0,474,562,357,425,0,1818 +NA,NA,,2022-23,Lynn - Cobbet Elementary,1630035,0,99,100,111,86,107,99,0,0,0,0,0,0,0,0,602 +NA,NA,,2022-23,Lynn - E J Harrington,1630045,58,70,97,102,87,93,83,0,0,0,0,0,0,0,0,590 +NA,NA,,2022-23,Lynn - Edward A Sisson,1630095,8,49,68,62,78,69,78,0,0,0,0,0,0,0,0,412 +NA,NA,,2022-23,Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,0,0,0,0,2,6,8,17,9,15,21,0,78 +NA,NA,,2022-23,Lynn - Fredrick Douglass Collegiate Academy,1630575,0,0,0,0,0,0,0,0,0,0,73,0,0,0,0,73 +NA,NA,,2022-23,Lynn - Hood,1630055,3,77,81,79,75,56,81,0,0,0,0,0,0,0,0,452 +NA,NA,,2022-23,Lynn - Ingalls,1630060,0,146,93,125,91,113,102,0,0,0,0,0,0,0,0,670 +NA,NA,,2022-23,Lynn - Julia F Callahan,1630030,57,35,52,61,48,60,52,0,0,0,0,0,0,0,0,365 +NA,NA,,2022-23,Lynn - Lincoln-Thomson,1630070,0,31,20,34,29,45,30,0,0,0,0,0,0,0,0,189 +NA,NA,,2022-23,Lynn - Lynn English High,1630510,0,0,0,0,0,0,0,0,0,0,522,762,488,403,1,2176 +NA,NA,,2022-23,Lynn - Lynn Vocational Technical Institute,1630605,63,8,1,0,1,2,3,3,0,281,290,289,273,259,50,1523 +NA,NA,,2022-23,Lynn - Lynn Woods,1630075,0,12,30,33,19,31,23,0,0,0,0,0,0,0,0,148 +NA,NA,,2022-23,Lynn - Pickering Middle,1630420,0,0,0,0,0,0,0,205,195,152,0,0,0,0,0,552 +NA,NA,,2022-23,Lynn - Robert L Ford,1630050,0,0,73,77,78,79,97,0,0,0,0,0,0,0,0,404 +NA,NA,,2022-23,Lynn - Sewell-Anderson,1630085,0,95,32,34,28,36,44,0,0,0,0,0,0,0,0,269 +NA,NA,,2022-23,Lynn - Thurgood Marshall Mid,1630305,0,0,0,0,0,0,0,445,427,343,0,0,0,0,0,1215 +NA,NA,,2022-23,Lynn - Tracy,1630100,0,0,76,70,68,68,80,0,0,0,0,0,0,0,0,362 +NA,NA,,2022-23,Lynn - Virginia Barton Early Childhood Center,1630004,32,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32 +NA,NA,,2022-23,Lynn - Washington Elementary School,1630005,1,53,78,69,77,68,70,0,0,0,0,0,0,0,0,416 +NA,NA,,2022-23,Lynn - William R Fallon,1630080,0,0,2,3,6,7,9,0,0,0,0,0,0,0,0,27 +NA,NA,,2022-23,Lynn - Wm P Connery,1630040,9,87,103,78,85,79,91,0,0,0,0,0,0,0,0,532 +NA,NA,,2022-23,Lynnfield - Huckleberry Hill,1640010,0,83,85,101,100,88,0,0,0,0,0,0,0,0,0,457 +NA,NA,,2022-23,Lynnfield - Lynnfield High,1640505,0,0,0,0,0,0,0,0,0,0,131,145,153,136,0,565 +NA,NA,,2022-23,Lynnfield - Lynnfield Middle School,1640405,0,0,0,0,0,0,187,160,188,178,0,0,0,0,0,713 +NA,NA,,2022-23,Lynnfield - Lynnfield Preschool,1640005,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39 +NA,NA,,2022-23,Lynnfield - Summer Street,1640020,0,84,95,81,74,87,0,0,0,0,0,0,0,0,0,421 +NA,NA,,2022-23,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,0,0,0,0,0,0,0,0,0,50,50,0,100 +NA,NA,,2022-23,Malden - Beebe,1650003,0,92,109,100,85,109,94,98,95,99,0,0,0,0,0,881 +NA,NA,,2022-23,Malden - Ferryway,1650013,0,99,112,100,96,100,97,100,96,94,0,0,0,0,0,894 +NA,NA,,2022-23,Malden - Forestdale,1650027,0,61,66,63,55,66,48,69,80,86,0,0,0,0,0,594 +NA,NA,,2022-23,Malden - Linden,1650047,0,82,91,90,96,89,85,94,95,98,0,0,0,0,0,820 +NA,NA,,2022-23,Malden - Malden Early Learning Center,1650049,239,0,0,0,0,0,0,0,0,0,0,0,0,0,0,239 +NA,NA,,2022-23,Malden - Malden High,1650505,0,0,0,0,0,0,0,0,0,0,484,488,455,417,12,1856 +NA,NA,,2022-23,Malden - Salemwood,1650057,0,96,131,99,110,103,115,121,125,124,0,0,0,0,0,1024 +NA,NA,,2022-23,Manchester Essex Regional - Essex Elementary,6980020,0,34,38,41,42,35,41,0,0,0,0,0,0,0,0,231 +NA,NA,,2022-23,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,0,0,0,0,0,0,0,0,93,114,86,123,0,416 +NA,NA,,2022-23,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,0,0,0,0,0,0,99,80,104,0,0,0,0,0,283 +NA,NA,,2022-23,Manchester Essex Regional - Manchester Memorial Elementary,6980010,33,39,36,43,44,46,50,0,0,0,0,0,0,0,0,291 +NA,NA,,2022-23,Mansfield - Everett W Robinson,1670007,0,236,249,269,0,0,0,0,0,0,0,0,0,0,0,754 +NA,NA,,2022-23,Mansfield - Harold L Qualters Middle,1670035,0,0,0,0,0,0,0,264,264,262,0,0,0,0,0,790 +NA,NA,,2022-23,Mansfield - Jordan/Jackson Elementary,1670014,0,0,0,0,228,234,242,0,0,0,0,0,0,0,0,704 +NA,NA,,2022-23,Mansfield - Mansfield High,1670505,0,0,0,0,0,0,0,0,0,0,258,246,277,305,6,1092 +NA,NA,,2022-23,Mansfield - Roland Green School,1670003,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91 +NA,NA,,2022-23,Map Academy Charter School (District) - Map Academy Charter School,35170505,0,0,0,0,0,0,0,0,0,0,36,67,88,60,0,251 +NA,NA,,2022-23,Marblehead - Glover,1680020,31,80,68,78,69,0,0,0,0,0,0,0,0,0,0,326 +NA,NA,,2022-23,Marblehead - Lucretia and Joseph Brown School,1680030,37,93,99,100,115,0,0,0,0,0,0,0,0,0,0,444 +NA,NA,,2022-23,Marblehead - Marblehead High,1680505,0,0,0,0,0,0,0,0,0,0,196,243,214,224,2,879 +NA,NA,,2022-23,Marblehead - Marblehead Veterans Middle School,1680300,0,0,0,0,0,0,0,0,206,212,0,0,0,0,0,418 +NA,NA,,2022-23,Marblehead - Village School,1680016,0,0,0,0,0,168,177,210,0,0,0,0,0,0,0,555 +NA,NA,,2022-23,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,0,0,48,50,51,36,39,0,0,0,0,0,224 +NA,NA,,2022-23,Marion - Sippican,1690005,25,47,48,53,54,62,56,58,0,0,0,0,0,0,0,403 +NA,NA,,2022-23,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,0,0,0,0,0,0,303,366,375,0,0,0,0,0,1044 +NA,NA,,2022-23,Marlborough - Charles Jaworek School,1700030,0,108,117,105,125,108,93,0,0,0,0,0,0,0,0,656 +NA,NA,,2022-23,Marlborough - Early Childhood Center,1700006,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191 +NA,NA,,2022-23,Marlborough - Francis J Kane,1700008,0,81,96,88,83,76,69,0,0,0,0,0,0,0,0,493 +NA,NA,,2022-23,Marlborough - Goodnow Brothers Elementary School,1700020,0,121,134,148,124,128,129,0,0,0,0,0,0,0,0,784 +NA,NA,,2022-23,Marlborough - Marlborough High,1700505,0,0,0,0,0,0,0,0,0,0,233,289,250,288,4,1064 +NA,NA,,2022-23,Marlborough - Richer,1700025,0,80,89,96,86,101,81,0,0,0,0,0,0,0,0,533 +NA,NA,,2022-23,Marshfield - Daniel Webster,1710015,101,43,41,46,44,45,51,0,0,0,0,0,0,0,0,371 +NA,NA,,2022-23,Marshfield - Eames Way School,1710005,53,37,31,36,32,34,41,0,0,0,0,0,0,0,0,264 +NA,NA,,2022-23,Marshfield - Furnace Brook Middle,1710310,0,0,0,0,0,0,0,309,276,283,0,0,0,0,0,868 +NA,NA,,2022-23,Marshfield - Gov Edward Winslow,1710020,0,56,56,62,64,59,55,0,0,0,0,0,0,0,0,352 +NA,NA,,2022-23,Marshfield - Marshfield High,1710505,0,0,0,0,0,0,0,0,0,0,291,332,261,303,3,1190 +NA,NA,,2022-23,Marshfield - Martinson Elementary,1710025,0,73,88,69,92,67,72,0,0,0,0,0,0,0,0,461 +NA,NA,,2022-23,Marshfield - South River,1710010,0,53,34,47,49,31,43,0,0,0,0,0,0,0,0,257 +NA,NA,,2022-23,Martha's Vineyard - Martha's Vineyard Regional High,7000505,0,0,0,0,0,0,0,0,0,0,209,200,158,186,4,757 +NA,NA,,2022-23,Martha's Vineyard Charter Public School (District) - Martha's Vineyard Charter Public School,4660550,0,11,13,16,14,16,22,12,19,20,15,4,10,9,0,181 +NA,NA,,2022-23,"Martin Luther King, Jr. Charter School of Excellence (District) - Martin Luther King, Jr. Charter School of Excellence",4920005,0,54,58,68,61,57,54,0,0,0,0,0,0,0,0,352 +NA,NA,,2022-23,Masconomet - Masconomet Regional High School,7050505,0,0,0,0,0,0,0,0,0,0,264,208,248,270,0,990 +NA,NA,,2022-23,Masconomet - Masconomet Regional Middle School,7050405,0,0,0,0,0,0,0,0,280,279,0,0,0,0,0,559 +NA,NA,,2022-23,Mashpee - Kenneth Coombs School,1720005,81,105,101,103,0,0,0,0,0,0,0,0,0,0,0,390 +NA,NA,,2022-23,Mashpee - Mashpee Middle-High School,1720505,0,0,0,0,0,0,0,0,115,123,103,115,89,110,0,655 +NA,NA,,2022-23,Mashpee - Quashnet School,1720035,0,0,0,0,94,89,113,102,0,0,0,0,0,0,0,398 +NA,NA,,2022-23,Match Charter Public School (District) - Match Charter Public School,4690505,52,90,96,95,97,99,97,85,86,99,74,77,69,70,0,1186 +NA,NA,,2022-23,Mattapoisett - Center,1730005,25,53,58,51,50,0,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2022-23,Mattapoisett - Old Hammondtown,1730010,0,0,0,0,0,62,67,63,0,0,0,0,0,0,0,192 +NA,NA,,2022-23,Maynard - Fowler School,1740305,0,0,0,0,0,93,107,86,97,76,0,0,0,0,0,459 +NA,NA,,2022-23,Maynard - Green Meadow,1740010,56,91,91,82,99,0,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2022-23,Maynard - Maynard High,1740505,0,0,0,0,0,0,0,0,0,0,82,89,69,75,1,316 +NA,NA,,2022-23,Medfield - Dale Street,1750005,0,0,0,0,0,198,191,0,0,0,0,0,0,0,0,389 +NA,NA,,2022-23,Medfield - Medfield Senior High,1750505,0,0,0,0,0,0,0,0,0,0,177,177,186,200,0,740 +NA,NA,,2022-23,Medfield - Memorial School,1750003,48,169,205,0,0,0,0,0,0,0,0,0,0,0,0,422 +NA,NA,,2022-23,Medfield - Ralph Wheelock School,1750007,0,0,0,179,201,0,0,0,0,0,0,0,0,0,0,380 +NA,NA,,2022-23,Medfield - Thomas Blake Middle,1750305,0,0,0,0,0,0,0,198,202,182,0,0,0,0,0,582 +NA,NA,,2022-23,Medford - Brooks School,1760130,47,80,94,79,89,73,85,0,0,0,0,0,0,0,0,547 +NA,NA,,2022-23,Medford - Curtis-Tufts,1760510,0,0,0,0,0,0,0,0,0,0,2,5,5,6,0,18 +NA,NA,,2022-23,Medford - John J McGlynn Elementary School,1760068,13,64,91,91,71,65,86,0,0,0,0,0,0,0,0,481 +NA,NA,,2022-23,Medford - John J. McGlynn Middle School,1760320,0,0,0,0,0,0,0,151,157,153,0,0,0,0,0,461 +NA,NA,,2022-23,Medford - Madeleine Dugger Andrews,1760315,0,0,0,0,0,0,0,161,153,142,0,0,0,0,0,456 +NA,NA,,2022-23,Medford - Medford High,1760505,3,0,0,0,0,0,0,0,0,0,340,301,299,310,7,1260 +NA,NA,,2022-23,Medford - Milton Fuller Roberts,1760150,23,94,102,93,80,86,74,0,0,0,0,0,0,0,0,552 +NA,NA,,2022-23,Medford - Missituk Elementary School,1760140,14,56,78,57,74,65,47,0,0,0,0,0,0,0,0,391 +NA,NA,,2022-23,Medway - Burke/Memorial Elementary School,1770015,0,0,0,154,171,159,0,0,0,0,0,0,0,0,0,484 +NA,NA,,2022-23,Medway - John D Mc Govern Elementary,1770013,47,158,153,0,0,0,0,0,0,0,0,0,0,0,0,358 +NA,NA,,2022-23,Medway - Medway High,1770505,0,0,0,0,0,0,0,0,0,0,144,163,144,162,0,613 +NA,NA,,2022-23,Medway - Medway Middle,1770305,0,0,0,0,0,0,166,152,177,158,0,0,0,0,0,653 +NA,NA,,2022-23,Melrose - Early Childhood Center,1780003,243,80,0,0,0,0,0,0,0,0,0,0,0,0,0,323 +NA,NA,,2022-23,Melrose - Herbert Clark Hoover,1780017,0,37,44,44,55,60,63,0,0,0,0,0,0,0,0,303 +NA,NA,,2022-23,Melrose - Horace Mann,1780025,0,21,46,43,45,45,44,0,0,0,0,0,0,0,0,244 +NA,NA,,2022-23,Melrose - Lincoln,1780020,0,37,78,88,60,66,64,0,0,0,0,0,0,0,0,393 +NA,NA,,2022-23,Melrose - Melrose High,1780505,0,0,0,0,0,0,0,0,0,0,233,233,232,223,5,926 +NA,NA,,2022-23,Melrose - Melrose Middle,1780305,0,0,0,0,0,0,0,313,280,276,0,0,0,0,0,869 +NA,NA,,2022-23,Melrose - Roosevelt,1780035,0,56,68,81,71,67,65,0,0,0,0,0,0,0,0,408 +NA,NA,,2022-23,Melrose - Winthrop,1780050,0,35,68,65,66,63,86,0,0,0,0,0,0,0,0,383 +NA,NA,,2022-23,Mendon-Upton - Henry P Clough,7100179,25,56,83,67,60,62,0,0,0,0,0,0,0,0,0,353 +NA,NA,,2022-23,Mendon-Upton - Memorial School,7100001,30,109,91,91,97,100,0,0,0,0,0,0,0,0,0,518 +NA,NA,,2022-23,Mendon-Upton - Miscoe Hill School,7100015,0,0,0,0,0,0,168,138,161,168,0,0,0,0,0,635 +NA,NA,,2022-23,Mendon-Upton - Nipmuc Regional High,7100510,0,0,0,0,0,0,0,0,0,0,135,163,156,141,4,599 +NA,NA,,2022-23,Methuen - Comprehensive Grammar School,1810050,37,87,92,87,96,101,112,117,121,105,0,0,0,0,0,955 +NA,NA,,2022-23,Methuen - Donald P Timony Grammar,1810060,61,111,137,125,146,148,137,117,130,151,0,0,0,0,0,1263 +NA,NA,,2022-23,Methuen - Marsh Grammar School,1810030,12,104,108,114,109,116,110,134,121,124,0,0,0,0,0,1052 +NA,NA,,2022-23,Methuen - Methuen High,1810505,0,0,0,0,0,0,0,0,0,0,491,508,452,460,5,1916 +NA,NA,,2022-23,Methuen - Tenney Grammar School,1810055,22,116,118,144,145,146,146,135,148,134,0,0,0,0,0,1254 +NA,NA,,2022-23,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,116,117,106,114,116,0,0,0,0,0,0,0,0,569 +NA,NA,,2022-23,Middleborough - John T. Nichols Middle,1820305,0,0,0,0,0,0,0,240,227,241,0,0,0,0,0,708 +NA,NA,,2022-23,Middleborough - Mary K. Goode Elementary School,1820010,0,0,129,128,123,122,125,0,0,0,0,0,0,0,0,627 +NA,NA,,2022-23,Middleborough - Memorial Early Childhood Center,1820011,56,225,0,0,0,0,0,0,0,0,0,0,0,0,0,281 +NA,NA,,2022-23,Middleborough - Middleborough High,1820505,0,0,0,0,0,0,0,0,0,0,250,202,196,199,4,851 +NA,NA,,2022-23,Middleton - Fuller Meadow,1840003,0,105,96,95,0,0,0,0,0,0,0,0,0,0,0,296 +NA,NA,,2022-23,Middleton - Howe-Manning,1840005,54,0,0,0,95,104,86,86,0,0,0,0,0,0,0,425 +NA,NA,,2022-23,Milford - Brookside,1850065,0,207,160,177,0,0,0,0,0,0,0,0,0,0,0,544 +NA,NA,,2022-23,Milford - Memorial,1850010,0,132,175,165,0,0,0,0,0,0,0,0,0,0,0,472 +NA,NA,,2022-23,Milford - Milford High,1850505,0,0,0,0,0,0,0,0,0,0,375,345,296,308,0,1324 +NA,NA,,2022-23,Milford - Shining Star Early Childhood Center,1850075,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170 +NA,NA,,2022-23,Milford - Stacy Middle,1850305,0,0,0,0,0,0,0,346,346,338,0,0,0,0,0,1030 +NA,NA,,2022-23,Milford - Woodland,1850090,0,0,0,0,317,315,311,0,0,0,0,0,0,0,0,943 +NA,NA,,2022-23,Millbury - Elmwood Street,1860017,67,121,133,100,0,0,0,0,0,0,0,0,0,0,0,421 +NA,NA,,2022-23,Millbury - Millbury Junior/Senior High,1860505,0,0,0,0,0,0,0,0,119,144,110,130,114,120,3,740 +NA,NA,,2022-23,Millbury - Raymond E. Shaw Elementary,1860025,0,0,0,0,122,108,129,99,0,0,0,0,0,0,0,458 +NA,NA,,2022-23,Millis - Clyde F Brown,1870005,74,90,96,80,93,82,102,0,0,0,0,0,0,0,0,617 +NA,NA,,2022-23,Millis - Millis High School,1870505,0,0,0,0,0,0,0,0,0,0,67,80,93,73,0,313 +NA,NA,,2022-23,Millis - Millis Middle,1870020,0,0,0,0,0,0,0,85,83,102,0,0,0,0,0,270 +NA,NA,,2022-23,Millis - TIES,1870515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6 +NA,NA,,2022-23,Milton - Charles S Pierce Middle,1890410,0,0,0,0,0,0,0,365,287,304,0,0,0,0,0,956 +NA,NA,,2022-23,Milton - Collicot,1890005,0,102,92,103,85,99,103,0,0,0,0,0,0,0,0,584 +NA,NA,,2022-23,Milton - Cunningham School,1890007,91,89,90,89,94,83,91,0,0,0,0,0,0,0,0,627 +NA,NA,,2022-23,Milton - Glover,1890010,0,87,116,85,117,115,113,0,0,0,0,0,0,0,0,633 +NA,NA,,2022-23,Milton - Milton High,1890505,0,0,0,0,0,0,0,0,0,0,247,263,276,269,7,1062 +NA,NA,,2022-23,Milton - Tucker,1890020,39,64,67,67,82,67,73,0,0,0,0,0,0,0,0,459 +NA,NA,,2022-23,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0,0,0,0,0,0,0,0,0,185,190,168,148,0,691 +NA,NA,,2022-23,Mohawk Trail - Buckland-Shelburne Regional,7170005,30,27,32,32,35,42,40,36,0,0,0,0,0,0,0,274 +NA,NA,,2022-23,Mohawk Trail - Colrain Central,7170010,18,12,9,15,7,14,14,15,0,0,0,0,0,0,0,104 +NA,NA,,2022-23,Mohawk Trail - Mohawk Trail Regional School,7170505,0,0,0,0,0,0,0,0,72,66,38,33,35,26,1,271 +NA,NA,,2022-23,Mohawk Trail - Sanderson Academy,7170020,31,16,13,12,13,15,22,17,0,0,0,0,0,0,0,139 +NA,NA,,2022-23,Monomoy Regional School District - Chatham Elementary School,7120001,0,27,32,20,40,32,0,0,0,0,0,0,0,0,0,151 +NA,NA,,2022-23,Monomoy Regional School District - Harwich Elementary School,7120002,43,81,85,93,84,91,0,0,0,0,0,0,0,0,0,477 +NA,NA,,2022-23,Monomoy Regional School District - Monomoy Regional High School,7120515,0,0,0,0,0,0,0,0,0,170,139,152,114,121,6,702 +NA,NA,,2022-23,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,0,0,0,150,144,145,0,0,0,0,0,0,439 +NA,NA,,2022-23,Monson - Granite Valley School,1910030,0,0,55,70,72,68,63,68,0,0,0,0,0,0,0,396 +NA,NA,,2022-23,Monson - Monson High School,1910505,0,0,0,0,0,0,0,0,68,70,42,32,43,36,4,295 +NA,NA,,2022-23,Monson - Quarry Hill Community School,1910010,72,58,0,0,0,0,0,0,0,0,0,0,0,0,0,130 +NA,NA,,2022-23,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0,0,0,0,0,0,0,0,0,0,369,368,350,322,0,1409 +NA,NA,,2022-23,Mount Greylock - Lanesborough Elementary,7150005,21,26,28,24,31,37,25,39,0,0,0,0,0,0,0,231 +NA,NA,,2022-23,Mount Greylock - Mt Greylock Regional High,7150505,0,0,0,0,0,0,0,0,100,105,72,72,103,83,1,536 +NA,NA,,2022-23,Mount Greylock - Williamstown Elementary,7150010,33,53,60,44,47,66,64,64,0,0,0,0,0,0,0,431 +NA,NA,,2022-23,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0,166,161,156,148,140,147,115,112,108,104,80,99,72,0,1608 +NA,NA,,2022-23,Nahant - Johnson,1960010,36,20,17,29,20,9,7,17,0,0,0,0,0,0,0,155 +NA,NA,,2022-23,Nantucket - Cyrus Peirce,1970010,0,0,0,0,0,0,0,102,126,152,0,0,0,0,0,380 +NA,NA,,2022-23,Nantucket - Nantucket Elementary,1970005,48,115,130,119,0,0,0,0,0,0,0,0,0,0,0,412 +NA,NA,,2022-23,Nantucket - Nantucket High,1970505,0,0,0,0,0,0,0,0,0,0,180,139,123,140,4,586 +NA,NA,,2022-23,Nantucket - Nantucket Intermediate School,1970020,0,0,0,0,106,112,122,0,0,0,0,0,0,0,0,340 +NA,NA,,2022-23,Narragansett - Narragansett Middle,7200305,0,0,0,0,0,0,117,119,123,0,0,0,0,0,0,359 +NA,NA,,2022-23,Narragansett - Narragansett Regional High,7200505,0,0,0,0,0,0,0,0,0,128,107,98,67,66,2,468 +NA,NA,,2022-23,Narragansett - Templeton Elementary School,7200020,94,106,93,109,114,128,0,0,0,0,0,0,0,0,0,644 +NA,NA,,2022-23,Nashoba - Center School,7250020,35,77,88,72,71,90,65,0,0,0,0,0,0,0,0,498 +NA,NA,,2022-23,Nashoba - Florence Sawyer School,7250025,24,72,82,94,69,82,75,72,95,70,0,0,0,0,0,735 +NA,NA,,2022-23,Nashoba - Hale,7250310,0,0,0,0,0,0,0,86,79,105,0,0,0,0,0,270 +NA,NA,,2022-23,Nashoba - Luther Burbank Middle School,7250305,0,0,0,0,0,0,0,86,69,88,0,0,0,0,0,243 +NA,NA,,2022-23,Nashoba - Mary Rowlandson Elementary,7250010,31,65,80,70,70,65,93,0,0,0,0,0,0,0,0,474 +NA,NA,,2022-23,Nashoba - Nashoba Regional,7250505,0,0,0,0,0,0,0,0,0,0,201,207,217,199,7,831 +NA,NA,,2022-23,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,0,0,0,0,0,0,0,0,0,0,218,199,170,163,0,750 +NA,NA,,2022-23,Natick - Bennett-Hemenway,1980005,0,73,114,93,98,102,0,0,0,0,0,0,0,0,0,480 +NA,NA,,2022-23,Natick - Brown,1980010,0,105,108,81,108,101,0,0,0,0,0,0,0,0,0,503 +NA,NA,,2022-23,Natick - J F Kennedy Middle School,1980305,0,0,0,0,0,0,205,233,207,239,0,0,0,0,0,884 +NA,NA,,2022-23,Natick - Johnson,1980031,0,0,30,32,31,43,0,0,0,0,0,0,0,0,0,136 +NA,NA,,2022-23,Natick - Lilja Elementary,1980035,0,92,81,75,78,80,0,0,0,0,0,0,0,0,0,406 +NA,NA,,2022-23,Natick - Memorial,1980043,0,86,85,87,80,94,0,0,0,0,0,0,0,0,0,432 +NA,NA,,2022-23,Natick - Natick High,1980505,138,0,0,0,0,0,0,0,0,0,420,395,380,394,0,1727 +NA,NA,,2022-23,Natick - Wilson Middle,1980310,0,0,0,0,0,0,200,178,197,203,0,0,0,0,0,778 +NA,NA,,2022-23,Nauset - Nauset Regional High,6600505,0,0,0,0,0,0,0,0,0,0,174,213,188,201,4,780 +NA,NA,,2022-23,Nauset - Nauset Regional Middle,6600305,0,0,0,0,0,0,0,174,178,176,0,0,0,0,0,528 +NA,NA,,2022-23,Needham - Broadmeadow,1990005,0,78,81,90,86,99,76,0,0,0,0,0,0,0,0,510 +NA,NA,,2022-23,Needham - High Rock School,1990410,0,0,0,0,0,0,0,446,0,0,0,0,0,0,0,446 +NA,NA,,2022-23,Needham - John Eliot,1990020,0,66,74,66,69,73,78,0,0,0,0,0,0,0,0,426 +NA,NA,,2022-23,Needham - Needham High,1990505,0,0,0,0,0,0,0,0,0,0,417,428,421,379,0,1645 +NA,NA,,2022-23,Needham - Newman Elementary,1990050,85,101,92,100,103,100,118,0,0,0,0,0,0,0,0,699 +NA,NA,,2022-23,Needham - Pollard Middle,1990405,0,0,0,0,0,0,0,0,443,375,0,0,0,0,0,818 +NA,NA,,2022-23,Needham - Sunita L. Williams Elementary,1990035,0,88,79,99,89,84,90,0,0,0,0,0,0,0,0,529 +NA,NA,,2022-23,Needham - William Mitchell,1990040,0,85,63,78,74,78,74,0,0,0,0,0,0,0,0,452 +NA,NA,,2022-23,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,37,40,42,39,43,45,57,53,59,69,76,81,76,49,0,766 +NA,NA,,2022-23,New Bedford - Abraham Lincoln,2010095,0,110,97,99,94,122,119,0,0,0,0,0,0,0,0,641 +NA,NA,,2022-23,New Bedford - Alfred J Gomes,2010063,12,89,85,78,80,82,70,0,0,0,0,0,0,0,0,496 +NA,NA,,2022-23,New Bedford - Betsey B Winslow,2010140,0,47,46,36,34,35,33,0,0,0,0,0,0,0,0,231 +NA,NA,,2022-23,New Bedford - Carlos Pacheco,2010105,33,52,42,40,47,38,41,35,0,0,0,0,0,0,0,328 +NA,NA,,2022-23,New Bedford - Casimir Pulaski,2010123,75,72,74,72,74,95,82,0,0,0,0,0,0,0,0,544 +NA,NA,,2022-23,New Bedford - Charles S Ashley,2010010,0,49,48,48,34,52,47,0,0,0,0,0,0,0,0,278 +NA,NA,,2022-23,New Bedford - Elizabeth Carter Brooks,2010015,0,31,42,55,51,55,41,0,0,0,0,0,0,0,0,275 +NA,NA,,2022-23,New Bedford - Ellen R Hathaway,2010075,39,23,38,35,34,36,31,0,0,0,0,0,0,0,0,236 +NA,NA,,2022-23,New Bedford - Elwyn G Campbell,2010020,71,39,32,47,35,30,30,0,0,0,0,0,0,0,0,284 +NA,NA,,2022-23,New Bedford - Hayden/McFadden,2010078,79,101,126,104,72,104,96,0,0,0,0,0,0,0,0,682 +NA,NA,,2022-23,New Bedford - Irwin M. Jacobs Elementary School,2010070,49,55,56,62,71,56,54,0,0,0,0,0,0,0,0,403 +NA,NA,,2022-23,New Bedford - James B Congdon,2010040,0,50,37,57,47,59,47,29,0,0,0,0,0,0,0,326 +NA,NA,,2022-23,New Bedford - Jireh Swift,2010130,50,34,36,29,31,23,23,0,0,0,0,0,0,0,0,226 +NA,NA,,2022-23,New Bedford - John Avery Parker,2010115,29,34,49,42,30,45,28,0,0,0,0,0,0,0,0,257 +NA,NA,,2022-23,New Bedford - John B Devalles,2010050,0,51,53,44,50,46,60,0,0,0,0,0,0,0,0,304 +NA,NA,,2022-23,New Bedford - Keith Middle School,2010405,0,0,0,0,0,0,0,269,270,331,0,0,0,0,0,870 +NA,NA,,2022-23,New Bedford - New Bedford High,2010505,0,0,0,0,0,0,0,0,0,0,755,825,670,648,0,2898 +NA,NA,,2022-23,New Bedford - Normandin Middle School,2010410,0,0,0,0,0,0,0,323,363,365,0,0,0,0,0,1051 +NA,NA,,2022-23,New Bedford - Renaissance Community Innovation School,2010124,23,16,18,16,19,21,18,0,0,0,0,0,0,0,0,131 +NA,NA,,2022-23,New Bedford - Roosevelt Middle School,2010415,0,0,0,0,0,0,0,253,263,262,0,0,0,0,0,778 +NA,NA,,2022-23,New Bedford - Sgt Wm H Carney Academy,2010045,55,92,105,87,96,91,85,0,0,0,0,0,0,0,0,611 +NA,NA,,2022-23,New Bedford - Thomas R Rodman,2010125,0,34,36,40,30,35,35,0,0,0,0,0,0,0,0,210 +NA,NA,,2022-23,New Bedford - Trinity Day Academy,2010510,0,0,0,0,0,0,7,3,10,12,16,14,9,12,0,83 +NA,NA,,2022-23,New Bedford - Whaling City Junior/Senior High School,2010515,0,0,0,0,0,0,0,0,4,5,22,32,36,36,0,135 +NA,NA,,2022-23,New Bedford - William H Taylor,2010135,23,32,46,44,41,36,22,0,0,0,0,0,0,0,0,244 +NA,NA,,2022-23,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,0,0,0,0,0,0,108,103,113,115,123,95,84,0,741 +NA,NA,,2022-23,New Salem-Wendell - Swift River,7280015,16,14,16,17,18,16,18,16,0,0,0,0,0,0,0,131 +NA,NA,,2022-23,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,0,0,143,136,0,0,0,0,0,0,0,0,279 +NA,NA,,2022-23,Newburyport - Francis T Bresnahan Elementary,2040005,53,103,126,138,155,0,0,0,0,0,0,0,0,0,0,575 +NA,NA,,2022-23,Newburyport - Newburyport High,2040505,0,0,0,0,0,0,0,0,0,0,192,204,207,213,4,820 +NA,NA,,2022-23,Newburyport - Rupert A Nock Middle,2040305,0,0,0,0,0,0,0,159,153,169,0,0,0,0,0,481 +NA,NA,,2022-23,Newton - A E Angier,2070005,0,43,57,65,69,73,69,0,0,0,0,0,0,0,0,376 +NA,NA,,2022-23,Newton - Bigelow Middle,2070305,0,0,0,0,0,0,0,126,142,167,0,0,0,0,0,435 +NA,NA,,2022-23,Newton - Bowen,2070015,0,51,57,61,61,65,65,0,0,0,0,0,0,0,0,360 +NA,NA,,2022-23,Newton - C C Burr,2070020,0,58,60,60,66,63,61,0,0,0,0,0,0,0,0,368 +NA,NA,,2022-23,Newton - Cabot,2070025,0,72,60,89,84,70,67,0,0,0,0,0,0,0,0,442 +NA,NA,,2022-23,Newton - Charles E Brown Middle,2070310,0,0,0,0,0,0,0,245,240,265,0,0,0,0,0,750 +NA,NA,,2022-23,Newton - Countryside,2070040,0,56,64,65,55,63,69,0,0,0,0,0,0,0,0,372 +NA,NA,,2022-23,Newton - F A Day Middle,2070315,0,0,0,0,0,0,0,296,290,334,0,0,0,0,0,920 +NA,NA,,2022-23,Newton - Franklin,2070055,0,40,61,70,60,67,65,0,0,0,0,0,0,0,0,363 +NA,NA,,2022-23,Newton - Horace Mann,2070075,0,45,60,62,70,62,58,0,0,0,0,0,0,0,0,357 +NA,NA,,2022-23,Newton - John Ward,2070120,0,16,33,42,35,41,27,0,0,0,0,0,0,0,0,194 +NA,NA,,2022-23,Newton - Lincoln-Eliot,2070070,0,55,52,64,45,64,58,0,0,0,0,0,0,0,0,338 +NA,NA,,2022-23,Newton - Mason-Rice,2070080,0,51,49,58,56,55,63,0,0,0,0,0,0,0,0,332 +NA,NA,,2022-23,Newton - Memorial Spaulding,2070105,0,56,86,49,62,63,81,0,0,0,0,0,0,0,0,397 +NA,NA,,2022-23,Newton - Newton Early Childhood Program,2070108,186,0,0,0,0,0,0,0,0,0,0,0,0,0,0,186 +NA,NA,,2022-23,Newton - Newton North High,2070505,0,0,0,0,0,0,0,0,0,0,510,535,517,501,36,2099 +NA,NA,,2022-23,Newton - Newton South High,2070510,0,0,0,0,0,0,0,0,0,0,460,455,431,486,5,1837 +NA,NA,,2022-23,Newton - Oak Hill Middle,2070320,0,0,0,0,0,0,0,226,203,228,0,0,0,0,0,657 +NA,NA,,2022-23,Newton - Peirce,2070100,0,36,36,38,39,48,44,0,0,0,0,0,0,0,0,241 +NA,NA,,2022-23,Newton - Underwood,2070115,0,37,38,44,35,41,26,0,0,0,0,0,0,0,0,221 +NA,NA,,2022-23,Newton - Williams,2070125,0,40,39,34,39,39,40,0,0,0,0,0,0,0,0,231 +NA,NA,,2022-23,Newton - Zervas,2070130,0,55,68,60,79,74,70,0,0,0,0,0,0,0,0,406 +NA,NA,,2022-23,Norfolk - Freeman-Kennedy School,2080005,0,0,0,0,127,137,129,134,0,0,0,0,0,0,0,527 +NA,NA,,2022-23,Norfolk - H Olive Day,2080015,58,128,145,158,0,0,0,0,0,0,0,0,0,0,0,489 +NA,NA,,2022-23,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,0,0,0,0,0,0,0,155,154,137,134,0,580 +NA,NA,,2022-23,North Adams - Brayton,2090035,23,32,40,27,20,33,27,26,0,0,0,0,0,0,0,228 +NA,NA,,2022-23,North Adams - Colegrove Park Elementary,2090008,33,25,31,35,33,26,26,26,0,0,0,0,0,0,0,235 +NA,NA,,2022-23,North Adams - Drury High,2090505,0,0,0,0,0,0,0,0,79,93,83,95,71,67,5,493 +NA,NA,,2022-23,North Adams - Greylock,2090015,27,38,36,29,35,38,28,21,0,0,0,0,0,0,0,252 +NA,NA,,2022-23,North Andover - Anne Bradstreet Early Childhood Center,2110005,128,302,0,0,0,0,0,0,0,0,0,0,0,0,0,430 +NA,NA,,2022-23,North Andover - Annie L Sargent School,2110018,0,0,91,94,88,101,93,0,0,0,0,0,0,0,0,467 +NA,NA,,2022-23,North Andover - Atkinson,2110001,0,0,45,51,61,54,63,0,0,0,0,0,0,0,0,274 +NA,NA,,2022-23,North Andover - Franklin,2110010,0,0,80,62,88,69,82,0,0,0,0,0,0,0,0,381 +NA,NA,,2022-23,North Andover - Kittredge,2110015,0,0,41,42,45,46,52,0,0,0,0,0,0,0,0,226 +NA,NA,,2022-23,North Andover - North Andover High,2110505,0,0,0,0,0,0,0,0,0,0,348,329,350,309,0,1336 +NA,NA,,2022-23,North Andover - North Andover Middle,2110305,0,0,0,0,0,0,0,329,335,371,0,0,0,0,0,1035 +NA,NA,,2022-23,North Andover - Thomson,2110020,0,0,51,64,59,79,48,0,0,0,0,0,0,0,0,301 +NA,NA,,2022-23,North Attleborough - Amvet Boulevard,2120007,0,43,76,68,72,63,80,0,0,0,0,0,0,0,0,402 +NA,NA,,2022-23,North Attleborough - Community,2120030,0,48,45,49,46,54,47,0,0,0,0,0,0,0,0,289 +NA,NA,,2022-23,North Attleborough - Falls,2120010,0,44,47,33,32,34,39,0,0,0,0,0,0,0,0,229 +NA,NA,,2022-23,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,80,88,95,88,95,90,0,0,0,0,0,0,0,0,536 +NA,NA,,2022-23,North Attleborough - North Attleboro High,2120505,0,0,0,0,0,0,0,0,0,0,231,301,293,282,0,1107 +NA,NA,,2022-23,North Attleborough - North Attleborough Early Learning Center,2120020,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148 +NA,NA,,2022-23,North Attleborough - North Attleborough Middle,2120305,0,0,0,0,0,0,0,328,325,303,0,0,0,0,0,956 +NA,NA,,2022-23,North Attleborough - Roosevelt Avenue,2120015,0,36,42,41,41,45,44,0,0,0,0,0,0,0,0,249 +NA,NA,,2022-23,North Brookfield - North Brookfield Elementary,2150015,28,27,42,37,41,41,38,48,0,0,0,0,0,0,0,302 +NA,NA,,2022-23,North Brookfield - North Brookfield High,2150505,0,0,0,0,0,0,0,0,18,25,24,18,32,19,0,136 +NA,NA,,2022-23,North Middlesex - Ashby Elementary,7350010,0,22,28,36,30,25,0,0,0,0,0,0,0,0,0,141 +NA,NA,,2022-23,North Middlesex - Hawthorne Brook,7350030,0,0,0,0,0,0,125,112,113,114,0,0,0,0,0,464 +NA,NA,,2022-23,North Middlesex - Nissitissit Middle School,7350310,0,0,0,0,0,0,115,126,117,123,0,0,0,0,0,481 +NA,NA,,2022-23,North Middlesex - North Middlesex Regional,7350505,0,0,0,0,0,0,0,0,0,0,190,214,187,178,10,779 +NA,NA,,2022-23,North Middlesex - Spaulding Memorial,7350005,0,71,96,79,82,91,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2022-23,North Middlesex - Squannacook Early Childhood Center,7350002,90,2,1,4,2,1,0,0,0,0,0,0,0,0,0,100 +NA,NA,,2022-23,North Middlesex - Varnum Brook,7350035,0,125,122,133,123,130,0,0,0,0,0,0,0,0,0,633 +NA,NA,,2022-23,North Reading - E Ethel Little School,2170003,27,61,44,50,58,27,56,0,0,0,0,0,0,0,0,323 +NA,NA,,2022-23,North Reading - J Turner Hood,2170010,22,66,62,63,61,53,56,0,0,0,0,0,0,0,0,383 +NA,NA,,2022-23,North Reading - L D Batchelder,2170005,0,73,75,77,88,70,80,0,0,0,0,0,0,0,0,463 +NA,NA,,2022-23,North Reading - North Reading High,2170505,0,0,0,0,0,0,0,0,0,0,176,163,127,177,1,644 +NA,NA,,2022-23,North Reading - North Reading Middle,2170305,0,0,0,0,0,0,0,168,192,181,0,0,0,0,0,541 +NA,NA,,2022-23,Northampton - Bridge Street,2100005,25,38,38,34,42,38,48,0,0,0,0,0,0,0,0,263 +NA,NA,,2022-23,Northampton - Jackson Street,2100020,0,52,41,50,54,44,50,0,0,0,0,0,0,0,0,291 +NA,NA,,2022-23,Northampton - John F Kennedy Middle School,2100410,0,0,0,0,0,0,0,199,157,227,0,0,0,0,0,583 +NA,NA,,2022-23,Northampton - Leeds,2100025,33,42,33,40,57,51,42,0,0,0,0,0,0,0,0,298 +NA,NA,,2022-23,Northampton - Northampton High,2100505,0,0,0,0,0,0,0,0,0,0,216,231,206,239,11,903 +NA,NA,,2022-23,Northampton - R. K. Finn Ryan Road,2100029,0,35,36,36,41,45,42,0,0,0,0,0,0,0,0,235 +NA,NA,,2022-23,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,0,0,0,0,0,0,0,0,151,150,135,130,0,566 +NA,NA,,2022-23,Northboro-Southboro - Algonquin Regional High,7300505,0,0,0,0,0,0,0,0,0,0,273,299,309,320,12,1213 +NA,NA,,2022-23,Northborough - Fannie E Proctor,2130015,0,39,41,39,48,43,42,0,0,0,0,0,0,0,0,252 +NA,NA,,2022-23,Northborough - Lincoln Street,2130003,0,41,41,51,44,50,59,0,0,0,0,0,0,0,0,286 +NA,NA,,2022-23,Northborough - Marguerite E Peaslee,2130014,0,34,48,49,44,43,33,0,0,0,0,0,0,0,0,251 +NA,NA,,2022-23,Northborough - Marion E Zeh,2130020,0,39,42,41,45,43,41,0,0,0,0,0,0,0,0,251 +NA,NA,,2022-23,Northborough - Robert E. Melican Middle School,2130305,0,0,0,0,0,0,0,176,192,169,0,0,0,0,0,537 +NA,NA,,2022-23,Northbridge - Northbridge Elementary School,2140001,98,146,152,155,148,119,135,0,0,0,0,0,0,0,0,953 +NA,NA,,2022-23,Northbridge - Northbridge High,2140505,0,0,0,0,0,0,0,0,0,0,157,124,108,124,0,513 +NA,NA,,2022-23,Northbridge - Northbridge Middle,2140305,0,0,0,0,0,0,0,149,163,169,0,0,0,0,0,481 +NA,NA,,2022-23,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,0,0,0,0,0,0,0,0,0,0,349,348,313,282,0,1292 +NA,NA,,2022-23,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,0,0,0,0,0,0,0,144,148,120,125,0,537 +NA,NA,,2022-23,Norton - Henri A. Yelle,2180060,0,0,0,0,0,148,185,0,0,0,0,0,0,0,0,333 +NA,NA,,2022-23,Norton - J C Solmonese,2180015,105,97,99,110,102,0,0,0,0,0,0,0,0,0,0,513 +NA,NA,,2022-23,Norton - L G Nourse Elementary,2180010,0,63,81,73,72,0,0,0,0,0,0,0,0,0,0,289 +NA,NA,,2022-23,Norton - Norton High,2180505,0,0,0,0,0,0,0,0,0,0,179,166,167,163,3,678 +NA,NA,,2022-23,Norton - Norton Middle,2180305,0,0,0,0,0,0,0,181,179,193,0,0,0,0,0,553 +NA,NA,,2022-23,Norwell - Grace Farrar Cole,2190005,23,68,81,94,88,87,81,0,0,0,0,0,0,0,0,522 +NA,NA,,2022-23,Norwell - Norwell High,2190505,0,0,0,0,0,0,0,0,0,0,145,154,152,151,0,602 +NA,NA,,2022-23,Norwell - Norwell Middle School,2190405,0,0,0,0,0,0,0,168,171,159,0,0,0,0,0,498 +NA,NA,,2022-23,Norwell - William G Vinal,2190020,18,83,84,76,104,79,87,0,0,0,0,0,0,0,0,531 +NA,NA,,2022-23,Norwood - Balch,2200005,0,0,68,53,54,68,69,0,0,0,0,0,0,0,0,312 +NA,NA,,2022-23,Norwood - Charles J Prescott,2200025,0,4,50,54,47,42,46,0,0,0,0,0,0,0,0,243 +NA,NA,,2022-23,Norwood - Cornelius M Callahan,2200010,0,0,40,37,42,59,46,0,0,0,0,0,0,0,0,224 +NA,NA,,2022-23,Norwood - Dr. Philip O. Coakley Middle School,2200305,0,0,0,0,0,0,0,272,258,246,0,0,0,0,0,776 +NA,NA,,2022-23,Norwood - F A Cleveland,2200015,0,0,56,78,70,58,51,0,0,0,0,0,0,0,0,313 +NA,NA,,2022-23,Norwood - George F. Willett,2200075,140,262,0,0,0,0,0,0,0,0,0,0,0,0,0,402 +NA,NA,,2022-23,Norwood - John P Oldham,2200020,0,0,56,74,44,52,49,0,0,0,0,0,0,0,0,275 +NA,NA,,2022-23,Norwood - Norwood High,2200505,0,0,0,0,0,0,0,0,0,0,205,243,229,260,4,941 +NA,NA,,2022-23,Oak Bluffs - Oak Bluffs Elementary,2210005,18,46,40,49,39,49,35,59,53,50,0,0,0,0,0,438 +NA,NA,,2022-23,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,0,0,0,0,0,0,0,0,0,139,142,140,140,0,561 +NA,NA,,2022-23,Old Rochester - Old Rochester Regional High,7400505,0,0,0,0,0,0,0,0,0,0,149,151,151,170,6,627 +NA,NA,,2022-23,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,0,0,0,0,0,230,194,0,0,0,0,0,424 +NA,NA,,2022-23,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,40,41,39,39,40,40,40,38,40,0,0,0,0,0,357 +NA,NA,,2022-23,Orange - Dexter Park,2230010,0,0,0,0,67,70,77,80,0,0,0,0,0,0,0,294 +NA,NA,,2022-23,Orange - Fisher Hill,2230015,40,63,76,51,0,0,0,0,0,0,0,0,0,0,0,230 +NA,NA,,2022-23,Orleans - Orleans Elementary,2240005,0,17,30,21,19,28,30,0,0,0,0,0,0,0,0,145 +NA,NA,,2022-23,Oxford - Alfred M Chaffee,2260010,0,99,107,81,0,0,0,0,0,0,0,0,0,0,0,287 +NA,NA,,2022-23,Oxford - Clara Barton,2260005,44,0,0,0,101,117,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2022-23,Oxford - Oxford High,2260505,0,0,0,0,0,0,0,0,0,0,103,101,90,84,6,384 +NA,NA,,2022-23,Oxford - Oxford Middle,2260405,0,0,0,0,0,0,104,143,130,127,0,0,0,0,0,504 +NA,NA,,2022-23,Palmer - Old Mill Pond,2270008,56,81,92,102,72,93,103,0,0,0,0,0,0,0,0,599 +NA,NA,,2022-23,Palmer - Palmer High,2270505,0,0,0,0,0,0,0,102,76,90,63,73,65,63,3,535 +NA,NA,,2022-23,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,0,0,0,0,0,0,0,185,168,159,128,0,640 +NA,NA,,2022-23,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,0,0,0,0,0,0,0,0,0,0,47,76,64,74,0,261 +NA,NA,,2022-23,Peabody - Captain Samuel Brown,2290005,0,54,69,61,69,56,67,0,0,0,0,0,0,0,0,376 +NA,NA,,2022-23,Peabody - Center,2290015,0,67,85,70,81,81,62,0,0,0,0,0,0,0,0,446 +NA,NA,,2022-23,Peabody - J Henry Higgins Middle,2290305,0,0,0,0,0,0,0,449,429,468,0,0,0,0,0,1346 +NA,NA,,2022-23,Peabody - John E Burke,2290007,0,38,48,39,37,52,38,0,0,0,0,0,0,0,0,252 +NA,NA,,2022-23,Peabody - John E. McCarthy,2290016,121,32,35,40,36,42,32,0,0,0,0,0,0,0,0,338 +NA,NA,,2022-23,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),2290705,0,1,2,8,5,6,3,1,6,7,9,12,21,13,0,94 +NA,NA,,2022-23,Peabody - Peabody Veterans Memorial High,2290510,0,0,0,0,0,0,0,0,0,0,348,366,368,383,11,1476 +NA,NA,,2022-23,Peabody - South Memorial,2290035,70,62,64,59,60,85,72,0,0,0,0,0,0,0,0,472 +NA,NA,,2022-23,Peabody - Thomas Carroll,2290010,0,82,94,90,83,118,119,0,0,0,0,0,0,0,0,586 +NA,NA,,2022-23,Peabody - West Memorial,2290045,35,36,38,38,38,38,36,0,0,0,0,0,0,0,0,259 +NA,NA,,2022-23,Peabody - William A Welch Sr,2290027,16,57,54,52,51,0,0,0,0,0,0,0,0,0,0,230 +NA,NA,,2022-23,Pelham - Pelham Elementary,2300005,0,17,19,21,19,20,15,20,0,0,0,0,0,0,0,131 +NA,NA,,2022-23,Pembroke - Bryantville Elementary,2310003,0,55,69,55,58,71,65,59,0,0,0,0,0,0,0,432 +NA,NA,,2022-23,Pembroke - Hobomock Elementary,2310010,0,64,60,54,51,61,63,56,0,0,0,0,0,0,0,409 +NA,NA,,2022-23,Pembroke - North Pembroke Elementary,2310015,67,72,62,75,55,64,64,57,0,0,0,0,0,0,0,516 +NA,NA,,2022-23,Pembroke - Pembroke Community Middle School,2310305,0,0,0,0,0,0,0,0,199,206,0,0,0,0,0,405 +NA,NA,,2022-23,Pembroke - Pembroke High School,2310505,0,0,0,0,0,0,0,0,0,0,168,191,174,191,9,733 +NA,NA,,2022-23,Pentucket - Dr Frederick N Sweetsir,7450020,37,69,66,55,0,0,0,0,0,0,0,0,0,0,0,227 +NA,NA,,2022-23,Pentucket - Dr John C Page School,7450015,26,41,41,30,57,41,41,40,0,0,0,0,0,0,0,317 +NA,NA,,2022-23,Pentucket - Elmer S Bagnall,7450005,35,62,81,63,64,60,69,52,0,0,0,0,0,0,0,486 +NA,NA,,2022-23,Pentucket - Helen R Donaghue School,7450010,0,0,0,0,60,65,62,63,0,0,0,0,0,0,0,250 +NA,NA,,2022-23,Pentucket - Pentucket Regional Middle,7450405,0,0,0,0,0,0,0,0,172,186,0,0,0,0,0,358 +NA,NA,,2022-23,Pentucket - Pentucket Regional Sr High,7450505,0,0,0,0,0,0,0,0,0,0,129,159,143,160,0,591 +NA,NA,,2022-23,Petersham - Petersham Center,2340005,0,17,17,18,20,26,12,16,0,0,0,0,0,0,0,126 +NA,NA,,2022-23,"Phoenix Academy Charter Public High School, Chelsea (District) - Phoenix Academy Charter Public High School, Chelsea",4930505,0,0,0,0,0,0,0,0,0,0,150,4,39,10,0,203 +NA,NA,,2022-23,"Phoenix Academy Public Charter High School, Lawrence (District) - Phoenix Academy Public Charter High School, Lawrence",35180505,0,0,0,0,0,0,0,0,0,0,82,3,35,5,0,125 +NA,NA,,2022-23,"Phoenix Academy Public Charter High School, Springfield (District) - Phoenix Academy Public Charter High School, Springfield",35080505,0,0,0,0,0,0,0,0,0,0,96,2,59,9,0,166 +NA,NA,,2022-23,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,0,63,63,64,63,63,64,64,64,64,63,58,45,45,0,783 +NA,NA,,2022-23,Pioneer Charter School of Science II (District) - Pioneer Charter School of Science II,35060505,0,40,23,29,0,0,0,0,74,75,72,53,48,48,0,462 +NA,NA,,2022-23,Pioneer Valley - Bernardston Elementary,7500006,19,30,27,30,16,22,36,24,0,0,0,0,0,0,0,204 +NA,NA,,2022-23,Pioneer Valley - Northfield Elementary,7500008,28,15,23,29,22,28,27,28,0,0,0,0,0,0,0,200 +NA,NA,,2022-23,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,0,0,0,0,0,56,54,18,38,42,48,0,256 +NA,NA,,2022-23,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,0,44,42,44,43,45,44,64,50,53,39,40,22,19,0,549 +NA,NA,,2022-23,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,0,0,0,0,0,0,0,0,66,71,70,64,60,59,0,390 +NA,NA,,2022-23,Pittsfield - Allendale,2360010,13,51,32,39,43,43,52,0,0,0,0,0,0,0,0,273 +NA,NA,,2022-23,Pittsfield - Crosby,2360065,22,40,27,48,39,36,58,0,0,0,0,0,0,0,0,270 +NA,NA,,2022-23,Pittsfield - Crosby Educational Academy,2360030,0,0,3,0,3,4,7,0,0,0,0,0,0,0,0,17 +NA,NA,,2022-23,Pittsfield - Eagle Education Academy,2360525,0,0,0,0,0,0,0,3,3,4,3,6,3,1,0,23 +NA,NA,,2022-23,Pittsfield - Egremont,2360035,14,53,73,46,57,66,73,0,0,0,0,0,0,0,0,382 +NA,NA,,2022-23,Pittsfield - John T Reid Middle,2360305,0,0,0,0,0,0,0,155,129,166,0,0,0,0,0,450 +NA,NA,,2022-23,Pittsfield - Morningside Community School,2360055,24,58,54,54,58,52,55,0,0,0,0,0,0,0,0,355 +NA,NA,,2022-23,Pittsfield - Pittsfield High,2360505,0,0,0,0,0,0,0,0,0,0,149,167,175,148,12,651 +NA,NA,,2022-23,Pittsfield - Pittsfield Public Virtual Academy,2360705,0,0,3,3,5,7,6,9,12,11,6,16,14,12,0,104 +NA,NA,,2022-23,Pittsfield - Robert T. Capeless Elementary School,2360045,14,36,29,23,25,22,32,0,0,0,0,0,0,0,0,181 +NA,NA,,2022-23,Pittsfield - Silvio O Conte Community,2360105,27,60,56,52,43,64,55,0,0,0,0,0,0,0,0,357 +NA,NA,,2022-23,Pittsfield - Stearns,2360090,14,37,31,27,36,44,45,0,0,0,0,0,0,0,0,234 +NA,NA,,2022-23,Pittsfield - Taconic High,2360510,0,0,0,0,0,0,0,0,0,0,256,214,205,185,0,860 +NA,NA,,2022-23,Pittsfield - Theodore Herberg Middle,2360310,0,0,0,0,0,0,0,165,146,185,0,0,0,0,0,496 +NA,NA,,2022-23,Pittsfield - Williams,2360100,15,37,42,42,46,35,39,0,0,0,0,0,0,0,0,256 +NA,NA,,2022-23,Plainville - Anna Ware Jackson,2380010,57,88,86,62,0,0,0,0,0,0,0,0,0,0,0,293 +NA,NA,,2022-23,Plainville - Beatrice H Wood Elementary,2380005,0,0,0,0,87,90,86,92,0,0,0,0,0,0,0,355 +NA,NA,,2022-23,Plymouth - Cold Spring,2390005,0,27,36,43,34,42,30,0,0,0,0,0,0,0,0,212 +NA,NA,,2022-23,Plymouth - Federal Furnace School,2390011,0,69,80,73,64,62,58,0,0,0,0,0,0,0,0,406 +NA,NA,,2022-23,Plymouth - Hedge,2390010,0,40,37,29,29,38,36,0,0,0,0,0,0,0,0,209 +NA,NA,,2022-23,Plymouth - Indian Brook,2390012,0,90,88,97,93,115,91,0,0,0,0,0,0,0,0,574 +NA,NA,,2022-23,Plymouth - Manomet Elementary,2390015,0,39,40,35,51,44,40,0,0,0,0,0,0,0,0,249 +NA,NA,,2022-23,Plymouth - Nathaniel Morton Elementary,2390030,0,84,86,84,85,89,84,0,0,0,0,0,0,0,0,512 +NA,NA,,2022-23,Plymouth - Plymouth Commun Intermediate,2390405,0,0,0,0,0,0,0,297,253,328,0,0,0,0,0,878 +NA,NA,,2022-23,Plymouth - Plymouth Early Childhood Center,2390003,191,0,0,0,0,0,0,0,0,0,0,0,0,0,0,191 +NA,NA,,2022-23,Plymouth - Plymouth North High,2390505,0,0,0,0,0,0,0,0,0,0,333,368,311,289,0,1301 +NA,NA,,2022-23,Plymouth - Plymouth South High,2390515,0,0,0,0,0,0,0,0,0,0,266,260,259,243,0,1028 +NA,NA,,2022-23,Plymouth - Plymouth South Middle,2390305,0,0,0,0,0,0,0,194,217,209,0,0,0,0,0,620 +NA,NA,,2022-23,Plymouth - South Elementary,2390046,0,93,126,97,99,105,99,0,0,0,0,0,0,0,0,619 +NA,NA,,2022-23,Plymouth - West Elementary,2390047,0,43,70,52,59,43,53,0,0,0,0,0,0,0,0,320 +NA,NA,,2022-23,Plympton - Dennett Elementary,2400010,0,33,45,33,43,29,29,25,0,0,0,0,0,0,0,237 +NA,NA,,2022-23,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,30,68,61,61,85,84,85,83,81,76,79,69,67,70,0,999 +NA,NA,,2022-23,Provincetown - Provincetown Schools,2420020,25,10,13,8,13,12,14,9,15,23,0,0,0,0,0,142 +NA,NA,,2022-23,Quabbin - Hardwick Elementary,7530005,18,22,37,20,32,27,28,0,0,0,0,0,0,0,0,184 +NA,NA,,2022-23,Quabbin - Hubbardston Center,7530010,38,43,37,46,47,43,51,0,0,0,0,0,0,0,0,305 +NA,NA,,2022-23,Quabbin - New Braintree Grade,7530020,28,0,0,0,0,0,0,0,0,0,0,0,0,0,10,38 +NA,NA,,2022-23,Quabbin - Oakham Center,7530025,0,18,23,33,25,32,43,0,0,0,0,0,0,0,0,174 +NA,NA,,2022-23,Quabbin - Quabbin Regional High School,7530505,0,0,0,0,0,0,0,0,0,0,177,131,122,136,0,566 +NA,NA,,2022-23,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,0,0,0,0,149,174,194,0,0,0,0,0,517 +NA,NA,,2022-23,Quabbin - Ruggles Lane,7530030,47,54,62,57,71,50,47,0,0,0,0,0,0,0,0,388 +NA,NA,,2022-23,Quaboag Regional - Quaboag Integrated Preschool,7780001,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47 +NA,NA,,2022-23,Quaboag Regional - Quaboag Regional High,7780505,0,0,0,0,0,0,0,0,0,0,92,81,87,94,0,354 +NA,NA,,2022-23,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,0,0,0,0,0,93,110,0,0,0,0,0,203 +NA,NA,,2022-23,Quaboag Regional - Warren Elementary,7780005,0,31,56,45,45,36,57,50,0,0,0,0,0,0,0,320 +NA,NA,,2022-23,Quaboag Regional - West Brookfield Elementary,7780010,0,29,34,31,42,33,48,40,0,0,0,0,0,0,0,257 +NA,NA,,2022-23,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,165,0,0,0,0,0,0,0,0,0,0,0,0,0,0,165 +NA,NA,,2022-23,Quincy - Atherton Hough,2430040,0,41,32,52,42,45,44,0,0,0,0,0,0,0,0,256 +NA,NA,,2022-23,Quincy - Atlantic Middle,2430305,0,0,0,0,0,0,0,199,168,184,0,0,0,0,0,551 +NA,NA,,2022-23,Quincy - Beechwood Knoll Elementary,2430020,0,49,56,53,57,53,62,0,0,0,0,0,0,0,0,330 +NA,NA,,2022-23,Quincy - Broad Meadows Middle,2430310,0,0,0,0,0,0,0,100,112,109,0,0,0,0,0,321 +NA,NA,,2022-23,Quincy - Central Middle,2430315,0,0,0,0,0,0,0,214,221,212,0,0,0,0,0,647 +NA,NA,,2022-23,Quincy - Charles A Bernazzani Elementary,2430025,0,63,53,56,56,58,54,0,0,0,0,0,0,0,0,340 +NA,NA,,2022-23,Quincy - Clifford H Marshall Elementary,2430055,0,101,102,113,104,94,0,0,0,0,0,0,0,0,0,514 +NA,NA,,2022-23,Quincy - Francis W Parker,2430075,0,45,55,55,47,62,55,0,0,0,0,0,0,0,0,319 +NA,NA,,2022-23,Quincy - Lincoln-Hancock Community School,2430035,0,117,128,116,94,87,0,0,0,0,0,0,0,0,0,542 +NA,NA,,2022-23,Quincy - Merrymount,2430060,0,51,57,50,48,64,57,0,0,0,0,0,0,0,0,327 +NA,NA,,2022-23,Quincy - Montclair,2430065,0,70,62,71,72,83,75,0,0,0,0,0,0,0,0,433 +NA,NA,,2022-23,Quincy - North Quincy High,2430510,0,0,0,0,0,0,0,0,0,0,381,360,374,335,26,1476 +NA,NA,,2022-23,Quincy - Point Webster Middle,2430325,62,0,0,0,0,0,83,91,73,102,0,0,0,0,0,411 +NA,NA,,2022-23,Quincy - Quincy High,2430505,0,0,0,0,0,0,0,0,0,0,366,385,361,383,0,1495 +NA,NA,,2022-23,Quincy - Snug Harbor Community School,2430090,95,37,52,52,62,44,58,0,0,0,0,0,0,0,0,400 +NA,NA,,2022-23,Quincy - South West Middle School,2430320,0,0,0,0,0,0,102,115,110,110,0,0,0,0,0,437 +NA,NA,,2022-23,Quincy - Squantum,2430095,0,66,57,48,59,58,64,0,0,0,0,0,0,0,0,352 +NA,NA,,2022-23,Quincy - Wollaston School,2430110,0,52,51,56,56,52,66,0,0,0,0,0,0,0,0,333 +NA,NA,,2022-23,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,0,0,0,0,0,0,0,92,97,112,79,77,66,0,523 +NA,NA,,2022-23,Randolph - Elizabeth G Lyons Elementary,2440020,0,39,52,44,47,45,58,0,0,0,0,0,0,0,0,285 +NA,NA,,2022-23,Randolph - J F Kennedy Elementary,2440018,102,61,59,44,52,52,50,0,0,0,0,0,0,0,0,420 +NA,NA,,2022-23,Randolph - Margaret L Donovan,2440015,0,65,72,58,81,72,73,0,0,0,0,0,0,0,0,421 +NA,NA,,2022-23,Randolph - Martin E Young Elementary,2440040,0,42,53,41,44,33,39,0,0,0,0,0,0,0,0,252 +NA,NA,,2022-23,Randolph - Randolph Community Middle,2440410,0,0,0,0,0,0,0,180,190,196,0,0,0,0,0,566 +NA,NA,,2022-23,Randolph - Randolph High,2440505,0,0,0,0,0,0,0,0,0,0,207,154,139,117,2,619 +NA,NA,,2022-23,Reading - Alice M Barrows,2460002,0,53,58,55,61,62,67,0,0,0,0,0,0,0,0,356 +NA,NA,,2022-23,Reading - Arthur W Coolidge Middle,2460305,0,0,0,0,0,0,0,146,135,148,0,0,0,0,0,429 +NA,NA,,2022-23,Reading - Birch Meadow,2460005,0,58,55,52,78,58,57,0,0,0,0,0,0,0,0,358 +NA,NA,,2022-23,Reading - J Warren Killam,2460017,0,62,77,54,77,71,65,0,0,0,0,0,0,0,0,406 +NA,NA,,2022-23,Reading - Joshua Eaton,2460010,0,61,62,60,70,72,64,0,0,0,0,0,0,0,0,389 +NA,NA,,2022-23,Reading - Reading Memorial High,2460505,0,0,0,0,0,0,0,0,0,0,257,255,290,294,0,1096 +NA,NA,,2022-23,Reading - RISE PreSchool,2460001,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103 +NA,NA,,2022-23,Reading - Walter S Parker Middle,2460310,0,0,0,0,0,0,0,123,167,174,0,0,0,0,0,464 +NA,NA,,2022-23,Reading - Wood End Elementary School,2460020,0,34,44,30,49,48,41,0,0,0,0,0,0,0,0,246 +NA,NA,,2022-23,Revere - A. C. Whelan Elementary School,2480003,0,98,90,135,120,138,142,0,0,0,0,0,0,0,0,723 +NA,NA,,2022-23,Revere - Abraham Lincoln,2480025,62,92,101,83,81,93,90,0,0,0,0,0,0,0,0,602 +NA,NA,,2022-23,Revere - Beachmont Veterans Memorial School,2480013,34,64,58,50,49,36,45,0,0,0,0,0,0,0,0,336 +NA,NA,,2022-23,Revere - CityLab Innovation High School,2480520,0,0,0,0,0,0,0,0,0,0,47,17,14,17,0,95 +NA,NA,,2022-23,Revere - Garfield Elementary School,2480056,42,105,103,109,102,122,102,0,0,0,0,0,0,0,0,685 +NA,NA,,2022-23,Revere - Garfield Middle School,2480057,0,0,0,0,0,0,0,176,183,187,0,0,0,0,0,546 +NA,NA,,2022-23,Revere - Paul Revere,2480050,0,77,83,75,78,67,76,0,0,0,0,0,0,0,0,456 +NA,NA,,2022-23,Revere - Revere High,2480505,0,0,0,0,0,0,0,0,0,0,559,634,476,400,15,2084 +NA,NA,,2022-23,Revere - Rumney Marsh Academy,2480014,0,0,0,0,0,0,0,189,194,185,0,0,0,0,0,568 +NA,NA,,2022-23,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,88,107,112,113,111,115,0,0,0,0,0,0,0,0,646 +NA,NA,,2022-23,Revere - Susan B. Anthony Middle School,2480305,0,0,0,0,0,0,0,185,186,186,0,0,0,0,0,557 +NA,NA,,2022-23,Richmond - Richmond Consolidated,2490005,11,12,18,16,17,19,15,15,18,13,0,0,0,0,0,154 +NA,NA,,2022-23,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,0,0,0,0,0,0,91,92,91,92,78,70,56,64,0,634 +NA,NA,,2022-23,River Valley Charter (District) - River Valley Charter School,4820050,0,32,32,32,34,32,32,30,30,34,0,0,0,0,0,288 +NA,NA,,2022-23,Rochester - Rochester Memorial,2500005,20,57,59,63,67,72,88,66,0,0,0,0,0,0,0,492 +NA,NA,,2022-23,Rockland - Jefferson Elementary School,2510060,0,52,48,48,37,62,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2022-23,Rockland - John W Rogers Middle,2510305,0,0,0,0,0,0,147,184,194,190,0,0,0,0,0,715 +NA,NA,,2022-23,Rockland - Memorial Park,2510020,0,53,39,36,59,60,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2022-23,Rockland - R Stewart Esten,2510025,0,42,75,68,73,55,0,0,0,0,0,0,0,0,0,313 +NA,NA,,2022-23,Rockland - Rockland Senior High,2510505,58,0,0,0,0,0,0,0,0,0,175,135,129,137,7,641 +NA,NA,,2022-23,Rockport - Rockport Elementary,2520005,22,42,44,48,36,54,58,0,0,0,0,0,0,0,0,304 +NA,NA,,2022-23,Rockport - Rockport High,2520510,0,0,0,0,0,0,0,0,0,0,55,46,68,62,0,231 +NA,NA,,2022-23,Rockport - Rockport Middle,2520305,0,0,0,0,0,0,0,54,68,73,0,0,0,0,0,195 +NA,NA,,2022-23,Rowe - Rowe Elementary,2530005,7,7,5,6,13,5,12,11,0,0,0,0,0,0,0,66 +NA,NA,,2022-23,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,0,0,0,0,0,0,110,177,222,231,179,144,120,112,0,1295 +NA,NA,,2022-23,Salem - Bates,2580003,36,54,49,48,67,54,66,0,0,0,0,0,0,0,0,374 +NA,NA,,2022-23,Salem - Bentley Academy Innovation School,2580010,0,41,47,58,48,41,39,0,0,0,0,0,0,0,0,274 +NA,NA,,2022-23,Salem - Carlton,2580015,0,42,36,44,46,36,42,0,0,0,0,0,0,0,0,246 +NA,NA,,2022-23,Salem - Collins Middle,2580305,0,0,0,0,0,0,0,204,201,207,0,0,0,0,0,612 +NA,NA,,2022-23,Salem - Horace Mann Laboratory,2580030,35,37,42,42,44,52,45,0,0,0,0,0,0,0,0,297 +NA,NA,,2022-23,Salem - New Liberty Innovation School,2580510,0,0,0,0,0,0,0,0,0,0,3,10,17,26,0,56 +NA,NA,,2022-23,Salem - Salem Early Childhood,2580001,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96 +NA,NA,,2022-23,Salem - Salem High,2580505,0,0,0,0,0,0,0,0,0,0,244,226,191,221,6,888 +NA,NA,,2022-23,Salem - Salem Prep High School,2580515,0,0,0,0,0,0,0,0,0,0,2,5,1,6,0,14 +NA,NA,,2022-23,Salem - Saltonstall School,2580050,0,41,37,42,43,47,49,44,44,50,0,0,0,0,0,397 +NA,NA,,2022-23,Salem - Witchcraft Heights,2580070,0,69,80,68,92,68,78,0,0,0,0,0,0,0,0,455 +NA,NA,,2022-23,Salem Academy Charter (District) - Salem Academy Charter School,4850485,0,0,0,0,0,0,0,75,69,70,71,70,66,68,0,489 +NA,NA,,2022-23,Sandwich - Forestdale School,2610002,79,151,145,165,0,0,0,0,0,0,0,0,0,0,0,540 +NA,NA,,2022-23,Sandwich - Oak Ridge,2610025,0,0,0,0,144,192,172,166,0,0,0,0,0,0,0,674 +NA,NA,,2022-23,Sandwich - Sandwich Middle High School,2610505,0,0,0,0,0,0,0,0,184,175,132,142,137,158,0,928 +NA,NA,,2022-23,Saugus - Belmonte STEAM Academy,2620060,0,0,0,205,182,192,201,0,0,0,0,0,0,0,0,780 +NA,NA,,2022-23,Saugus - Saugus High,2620505,0,0,0,0,0,0,0,0,0,0,184,174,178,173,4,713 +NA,NA,,2022-23,Saugus - Saugus Middle School,2620305,0,0,0,0,0,0,0,203,204,191,0,0,0,0,0,598 +NA,NA,,2022-23,Saugus - Veterans Early Learning Center,2620065,53,148,170,0,0,0,0,0,0,0,0,0,0,0,0,371 +NA,NA,,2022-23,Savoy - Emma L Miller Elementary School,2630010,3,6,2,3,5,6,10,5,0,0,0,0,0,0,0,40 +NA,NA,,2022-23,Scituate - Cushing Elementary,2640007,0,70,59,50,65,58,51,0,0,0,0,0,0,0,0,353 +NA,NA,,2022-23,Scituate - Gates Middle School,2640305,0,0,0,0,0,0,0,197,205,203,0,0,0,0,0,605 +NA,NA,,2022-23,Scituate - Hatherly Elementary,2640010,0,44,36,40,42,49,44,0,0,0,0,0,0,0,0,255 +NA,NA,,2022-23,Scituate - Jenkins Elementary School,2640015,0,53,46,54,58,59,59,0,0,0,0,0,0,0,0,329 +NA,NA,,2022-23,Scituate - Scituate High School,2640505,0,0,0,0,0,0,0,0,0,0,158,201,205,198,1,763 +NA,NA,,2022-23,Scituate - Wampatuck Elementary,2640020,82,68,63,57,59,62,63,0,0,0,0,0,0,0,0,454 +NA,NA,,2022-23,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,0,0,0,0,0,0,0,177,159,154,0,0,0,0,0,490 +NA,NA,,2022-23,Seekonk - George R Martin,2650007,0,70,71,75,82,72,86,0,0,0,0,0,0,0,0,456 +NA,NA,,2022-23,Seekonk - Mildred Aitken School,2650015,54,86,88,101,78,88,84,0,0,0,0,0,0,0,0,579 +NA,NA,,2022-23,Seekonk - Seekonk High,2650505,0,0,0,0,0,0,0,0,0,0,119,154,124,136,0,533 +NA,NA,,2022-23,Seekonk - Seekonk Transitions Academy,2650605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4 +NA,NA,,2022-23,Sharon - Cottage Street,2660005,0,72,62,73,72,78,83,0,0,0,0,0,0,0,0,440 +NA,NA,,2022-23,Sharon - East Elementary,2660010,0,66,69,83,82,110,79,0,0,0,0,0,0,0,0,489 +NA,NA,,2022-23,Sharon - Heights Elementary,2660015,0,92,88,89,107,99,94,0,0,0,0,0,0,0,0,569 +NA,NA,,2022-23,Sharon - Sharon Early Childhood Center,2660001,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56 +NA,NA,,2022-23,Sharon - Sharon High,2660505,0,0,0,0,0,0,0,0,0,0,297,280,262,304,0,1143 +NA,NA,,2022-23,Sharon - Sharon Middle,2660305,0,0,0,0,0,0,0,273,280,292,0,0,0,0,0,845 +NA,NA,,2022-23,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,0,0,0,0,0,0,0,0,331,339,337,285,0,1292 +NA,NA,,2022-23,Sherborn - Pine Hill,2690010,13,54,69,64,70,70,61,0,0,0,0,0,0,0,0,401 +NA,NA,,2022-23,Shrewsbury - Calvin Coolidge School,2710015,0,48,53,47,55,44,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2022-23,Shrewsbury - Floral Street School,2710020,0,91,107,101,110,110,0,0,0,0,0,0,0,0,0,519 +NA,NA,,2022-23,Shrewsbury - Major Howard W. Beal School,2710005,0,121,100,125,132,131,0,0,0,0,0,0,0,0,0,609 +NA,NA,,2022-23,Shrewsbury - Oak Middle School,2710030,0,0,0,0,0,0,0,0,465,479,0,0,0,0,0,944 +NA,NA,,2022-23,Shrewsbury - Parker Road Preschool,2710040,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2022-23,Shrewsbury - Sherwood Middle School,2710305,0,0,0,0,0,0,440,508,0,0,0,0,0,0,0,948 +NA,NA,,2022-23,Shrewsbury - Shrewsbury High School,2710505,0,0,0,0,0,0,0,0,0,0,486,452,430,453,2,1823 +NA,NA,,2022-23,Shrewsbury - Spring Street School,2710035,0,48,55,56,61,88,0,0,0,0,0,0,0,0,0,308 +NA,NA,,2022-23,Shrewsbury - Walter J. Paton School,2710025,0,50,57,46,66,72,0,0,0,0,0,0,0,0,0,291 +NA,NA,,2022-23,Shutesbury - Shutesbury Elementary,2720005,19,11,17,10,20,15,13,19,0,0,0,0,0,0,0,124 +NA,NA,,2022-23,Silver Lake - Silver Lake Regional High,7600505,0,0,0,0,0,0,0,0,0,0,261,266,247,263,9,1046 +NA,NA,,2022-23,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,0,0,0,0,0,281,247,0,0,0,0,0,528 +NA,NA,,2022-23,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,0,0,0,0,0,0,0,63,74,63,52,51,41,0,344 +NA,NA,,2022-23,Somerset - Chace Street,2730005,0,41,45,51,49,68,70,0,0,0,0,0,0,0,0,324 +NA,NA,,2022-23,Somerset - North Elementary,2730008,61,60,69,66,63,71,68,0,0,0,0,0,0,0,0,458 +NA,NA,,2022-23,Somerset - Somerset Middle School,2730305,0,0,0,0,0,0,0,209,171,195,0,0,0,0,0,575 +NA,NA,,2022-23,Somerset - South,2730015,0,38,46,37,41,50,46,0,0,0,0,0,0,0,0,258 +NA,NA,,2022-23,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,0,0,0,0,0,0,0,0,262,237,254,241,9,1003 +NA,NA,,2022-23,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,16,57,75,74,64,61,51,51,54,41,0,0,0,0,0,544 +NA,NA,,2022-23,Somerville - Arthur D Healey,2740075,23,48,65,60,58,60,47,50,48,47,0,0,0,0,0,506 +NA,NA,,2022-23,Somerville - Benjamin G Brown,2740015,0,43,45,33,41,30,19,0,0,0,0,0,0,0,0,211 +NA,NA,,2022-23,Somerville - Capuano Early Childhood Center,2740005,161,43,9,0,0,0,0,0,0,0,0,0,0,0,0,213 +NA,NA,,2022-23,Somerville - E Somerville Community,2740111,18,55,83,83,88,91,79,78,82,72,0,0,0,0,0,729 +NA,NA,,2022-23,Somerville - Full Circle High School,2740510,0,0,0,0,0,0,0,0,0,0,13,19,8,13,1,54 +NA,NA,,2022-23,Somerville - John F Kennedy,2740083,18,44,41,42,49,45,38,51,54,58,0,0,0,0,0,440 +NA,NA,,2022-23,Somerville - Next Wave Junior High,2740410,0,0,0,0,0,0,0,0,5,10,0,0,0,0,0,15 +NA,NA,,2022-23,Somerville - Somerville High,2740505,0,0,0,0,0,0,0,0,0,0,340,374,306,276,14,1310 +NA,NA,,2022-23,Somerville - West Somerville Neighborhood,2740115,18,37,40,37,41,39,32,45,43,39,0,0,0,0,0,371 +NA,NA,,2022-23,Somerville - Winter Hill Community,2740120,18,36,32,48,48,29,27,53,65,66,0,0,0,0,0,422 +NA,NA,,2022-23,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,0,0,0,133,145,117,131,0,0,0,0,0,526 +NA,NA,,2022-23,South Hadley - Mosier,2780020,0,0,0,95,108,142,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2022-23,South Hadley - Plains Elementary,2780015,61,104,142,0,0,0,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2022-23,South Hadley - South Hadley High,2780505,0,0,0,0,0,0,0,0,0,0,105,139,128,123,5,500 +NA,NA,,2022-23,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0,0,0,0,0,0,0,0,0,0,234,213,214,181,0,842 +NA,NA,,2022-23,South Shore Charter Public (District) - South Shore Charter Public School,4880550,0,74,81,82,81,84,81,80,81,79,93,87,73,78,0,1054 +NA,NA,,2022-23,South Shore Regional Vocational Technical - South Shore Vocational Technical High,8730605,0,0,0,0,0,0,0,0,0,0,165,170,161,157,0,653 +NA,NA,,2022-23,Southampton - William E Norris,2750005,43,60,63,60,58,63,53,77,0,0,0,0,0,0,0,477 +NA,NA,,2022-23,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,122,146,0,0,0,0,0,0,0,0,0,0,268 +NA,NA,,2022-23,Southborough - Margaret A Neary,2760020,0,0,0,0,0,129,138,0,0,0,0,0,0,0,0,267 +NA,NA,,2022-23,Southborough - Mary E Finn School,2760008,90,142,118,0,0,0,0,0,0,0,0,0,0,0,0,350 +NA,NA,,2022-23,Southborough - P Brent Trottier,2760305,0,0,0,0,0,0,0,128,133,124,0,0,0,0,0,385 +NA,NA,,2022-23,Southbridge - Charlton Street,2770005,0,0,1,59,68,54,67,0,0,0,0,0,0,0,0,249 +NA,NA,,2022-23,Southbridge - Eastford Road,2770010,55,134,141,0,0,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2022-23,Southbridge - Southbridge Academy,2770525,0,0,0,0,0,0,0,5,2,3,11,6,5,1,0,33 +NA,NA,,2022-23,Southbridge - Southbridge High School,2770515,0,0,0,0,0,0,0,0,0,0,138,115,109,95,0,457 +NA,NA,,2022-23,Southbridge - Southbridge Middle School,2770315,0,0,0,0,0,0,0,143,136,126,0,0,0,0,0,405 +NA,NA,,2022-23,Southbridge - West Street,2770020,0,0,1,86,95,64,89,0,0,0,0,0,0,0,0,335 +NA,NA,,2022-23,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,0,0,0,0,0,0,0,0,0,0,403,399,384,372,0,1558 +NA,NA,,2022-23,Southern Berkshire - Mt Everett Regional,7650505,0,0,0,0,0,0,0,46,45,40,40,48,27,48,0,294 +NA,NA,,2022-23,Southern Berkshire - New Marlborough Central,7650018,16,10,21,9,10,0,0,0,0,0,0,0,0,0,0,66 +NA,NA,,2022-23,Southern Berkshire - South Egremont,7650030,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13 +NA,NA,,2022-23,Southern Berkshire - Undermountain,7650035,30,28,42,41,33,40,27,0,0,0,0,0,0,0,0,241 +NA,NA,,2022-23,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,8760605,0,0,0,0,0,0,0,0,0,0,314,313,288,270,0,1185 +NA,NA,,2022-23,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,0,91,103,87,103,0,0,0,0,0,0,0,384 +NA,NA,,2022-23,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,0,0,0,0,0,0,110,121,112,93,97,91,1,625 +NA,NA,,2022-23,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,36,101,85,91,0,0,0,0,0,0,0,0,0,0,0,313 +NA,NA,,2022-23,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,0,0,0,0,0,0,0,99,91,90,72,5,357 +NA,NA,,2022-23,Spencer-E Brookfield - East Brookfield Elementary,7670008,110,18,20,15,25,15,19,18,0,0,0,0,0,0,0,240 +NA,NA,,2022-23,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,0,0,0,90,101,82,90,0,0,0,0,0,363 +NA,NA,,2022-23,Spencer-E Brookfield - Wire Village School,7670040,0,70,94,80,90,83,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2022-23,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,72,45,39,46,48,47,40,38,25,34,0,0,0,0,0,434 +NA,NA,,2022-23,Springfield - Alice B Beal Elementary,2810175,38,47,47,46,34,52,35,0,0,0,0,0,0,0,0,299 +NA,NA,,2022-23,Springfield - Arthur T Talmadge,2810165,20,38,26,37,40,35,36,0,0,0,0,0,0,0,0,232 +NA,NA,,2022-23,Springfield - Balliet Preschool,2810003,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149 +NA,NA,,2022-23,Springfield - Brightwood,2810025,60,57,68,77,65,73,71,0,0,0,0,0,0,0,0,471 +NA,NA,,2022-23,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,0,0,0,0,0,0,0,83,88,103,0,0,0,0,0,274 +NA,NA,,2022-23,Springfield - Conservatory of the Arts,2810475,0,0,0,0,0,0,0,53,42,47,49,44,48,39,0,322 +NA,NA,,2022-23,Springfield - Daniel B Brunton,2810035,46,56,58,41,59,43,54,0,0,0,0,0,0,0,0,357 +NA,NA,,2022-23,Springfield - Early Childhood Education Center,2810001,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179 +NA,NA,,2022-23,Springfield - Edward P. Boland School,2810010,121,73,76,88,64,62,67,0,0,0,0,0,0,0,0,551 +NA,NA,,2022-23,Springfield - Elias Brookings,2810030,39,31,44,38,43,42,33,0,0,0,0,0,0,0,0,270 +NA,NA,,2022-23,Springfield - Emergence Academy,2810318,0,0,0,0,0,0,0,21,35,23,35,0,0,0,0,114 +NA,NA,,2022-23,Springfield - Forest Park Middle,2810325,0,0,0,0,0,0,0,75,118,159,0,0,0,0,0,352 +NA,NA,,2022-23,Springfield - Frank H Freedman,2810075,20,51,50,35,42,39,40,0,0,0,0,0,0,0,0,277 +NA,NA,,2022-23,Springfield - Frederick Harris,2810080,67,83,82,81,81,93,94,0,0,0,0,0,0,0,0,581 +NA,NA,,2022-23,Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,0,0,0,0,0,0,0,1,7,9,9,0,26 +NA,NA,,2022-23,Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,0,0,0,0,0,0,0,3,6,13,8,0,30 +NA,NA,,2022-23,Springfield - German Gerena Community School,2810195,80,90,78,93,82,91,75,0,0,0,0,0,0,0,0,589 +NA,NA,,2022-23,Springfield - Glenwood,2810065,20,44,51,33,45,48,47,0,0,0,0,0,0,0,0,288 +NA,NA,,2022-23,Springfield - Glickman Elementary,2810068,37,36,39,38,52,52,58,0,0,0,0,0,0,0,0,312 +NA,NA,,2022-23,Springfield - High School Of Commerce,2810510,0,0,0,0,0,0,0,0,0,0,249,347,251,256,0,1103 +NA,NA,,2022-23,Springfield - Hiram L Dorman,2810050,28,35,47,40,39,44,38,0,0,0,0,0,0,0,0,271 +NA,NA,,2022-23,Springfield - Homer Street,2810085,36,67,75,63,55,60,49,0,0,0,0,0,0,0,0,405 +NA,NA,,2022-23,Springfield - Impact Prep at Chestnut,2810366,0,0,0,0,0,0,0,64,68,74,0,0,0,0,0,206 +NA,NA,,2022-23,Springfield - Indian Orchard Elementary,2810100,81,90,91,67,71,74,69,0,0,0,0,0,0,0,0,543 +NA,NA,,2022-23,Springfield - John F Kennedy Middle,2810328,0,0,0,0,0,0,0,127,139,124,0,0,0,0,0,390 +NA,NA,,2022-23,Springfield - John J Duggan Academy,2810320,0,0,0,0,0,0,0,177,176,158,82,82,62,78,0,815 +NA,NA,,2022-23,Springfield - Kensington International School,2810110,36,34,40,27,41,35,35,0,0,0,0,0,0,0,0,248 +NA,NA,,2022-23,Springfield - Kiley Academy,2810316,0,0,0,0,0,0,0,116,109,90,0,0,0,0,0,315 +NA,NA,,2022-23,Springfield - Kiley Prep,2810315,0,0,0,0,0,0,0,88,79,99,0,0,0,0,0,266 +NA,NA,,2022-23,Springfield - Liberty,2810115,37,30,33,36,38,44,33,0,0,0,0,0,0,0,0,251 +NA,NA,,2022-23,Springfield - Liberty Preparatory Academy,2810560,0,0,0,0,0,0,0,0,0,0,1,3,3,1,0,8 +NA,NA,,2022-23,Springfield - Lincoln,2810120,56,47,66,80,74,68,57,0,0,0,0,0,0,0,0,448 +NA,NA,,2022-23,Springfield - Margaret C Ells,2810060,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160 +NA,NA,,2022-23,Springfield - Mary A. Dryden Veterans Memorial School,2810125,40,50,44,38,49,40,37,0,0,0,0,0,0,0,0,298 +NA,NA,,2022-23,Springfield - Mary M Lynch,2810140,19,36,33,31,30,33,37,0,0,0,0,0,0,0,0,219 +NA,NA,,2022-23,Springfield - Mary M Walsh,2810155,27,34,38,36,42,41,43,0,0,0,0,0,0,0,0,261 +NA,NA,,2022-23,Springfield - Mary O Pottenger,2810145,34,45,52,62,74,67,61,0,0,0,0,0,0,0,0,395 +NA,NA,,2022-23,Springfield - Milton Bradley School,2810023,70,73,68,70,71,78,85,0,0,0,0,0,0,0,0,515 +NA,NA,,2022-23,Springfield - Rebecca M Johnson,2810055,70,88,94,79,86,93,69,0,0,0,0,0,0,0,0,579 +NA,NA,,2022-23,Springfield - Rise Academy at Van Sickle,2810480,0,0,0,0,0,0,0,83,80,78,0,0,0,0,0,241 +NA,NA,,2022-23,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,0,0,0,0,0,0,0,0,0,0,372,357,330,301,0,1360 +NA,NA,,2022-23,Springfield - Samuel Bowles,2810020,20,25,22,41,40,44,33,0,0,0,0,0,0,0,0,225 +NA,NA,,2022-23,Springfield - South End Middle School,2810355,0,0,0,0,0,0,0,64,61,62,0,0,0,0,0,187 +NA,NA,,2022-23,Springfield - Springfield Central High,2810500,0,0,0,0,0,0,0,0,0,0,675,534,398,488,0,2095 +NA,NA,,2022-23,Springfield - Springfield High School,2810570,0,0,0,0,0,0,0,0,0,0,17,29,40,117,0,203 +NA,NA,,2022-23,Springfield - Springfield High School of Science and Technology,2810530,0,0,0,0,0,0,0,0,0,0,361,275,209,242,0,1087 +NA,NA,,2022-23,Springfield - Springfield International Academy at Johnson,2810215,0,0,0,0,9,11,11,0,0,0,0,0,0,0,0,31 +NA,NA,,2022-23,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,0,0,0,0,0,0,0,0,33,34,6,15,0,88 +NA,NA,,2022-23,Springfield - Springfield Legacy Academy,2810317,0,0,0,0,0,0,0,87,113,121,0,0,0,0,0,321 +NA,NA,,2022-23,Springfield - Springfield Middle School,2810360,0,0,0,0,0,0,0,3,7,10,0,0,0,0,0,20 +NA,NA,,2022-23,Springfield - Springfield Public Day Elementary School,2810005,0,0,1,4,5,6,16,0,0,0,0,0,0,0,0,32 +NA,NA,,2022-23,Springfield - Springfield Public Day High School,2810550,0,0,0,0,0,0,0,0,0,0,16,21,14,10,0,61 +NA,NA,,2022-23,Springfield - Springfield Public Day Middle School,2810345,0,0,0,0,0,0,0,12,11,28,0,0,0,0,0,51 +NA,NA,,2022-23,Springfield - Springfield Realization Academy,2810335,0,0,0,0,0,0,0,69,64,0,0,0,0,0,0,133 +NA,NA,,2022-23,Springfield - Springfield Transition Academy,2810675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101,101 +NA,NA,,2022-23,Springfield - STEM Middle Academy,2810350,0,0,0,0,0,0,0,97,99,101,0,0,0,0,0,297 +NA,NA,,2022-23,Springfield - Sumner Avenue,2810160,70,56,61,66,73,82,52,0,0,0,0,0,0,0,0,460 +NA,NA,,2022-23,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,0,0,0,0,0,0,0,99,96,105,91,95,70,75,0,631 +NA,NA,,2022-23,Springfield - The Springfield Virtual School,2810705,0,0,14,17,36,37,39,42,44,48,43,43,33,34,0,430 +NA,NA,,2022-23,Springfield - Thomas M Balliet,2810015,41,37,52,47,37,32,31,0,0,0,0,0,0,0,0,277 +NA,NA,,2022-23,Springfield - Van Sickle Academy,2810485,0,0,0,0,0,0,0,87,86,83,0,0,0,0,0,256 +NA,NA,,2022-23,Springfield - Warner,2810180,55,35,29,34,38,31,28,0,0,0,0,0,0,0,0,250 +NA,NA,,2022-23,Springfield - Washington,2810185,48,77,75,49,60,55,56,0,0,0,0,0,0,0,0,420 +NA,NA,,2022-23,Springfield - White Street,2810190,20,65,66,67,66,66,67,0,0,0,0,0,0,0,0,417 +NA,NA,,2022-23,Springfield - William N. DeBerry,2810045,20,24,43,37,44,37,39,0,0,0,0,0,0,0,0,244 +NA,NA,,2022-23,Springfield International Charter (District) - Springfield International Charter School,4410505,0,95,103,111,130,126,156,126,126,154,107,105,97,84,0,1520 +NA,NA,,2022-23,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,0,54,54,55,54,54,54,54,54,54,0,0,0,0,0,487 +NA,NA,,2022-23,Stoneham - Colonial Park,2840005,26,36,46,46,46,41,0,0,0,0,0,0,0,0,0,241 +NA,NA,,2022-23,Stoneham - Robin Hood,2840025,28,76,75,73,67,74,0,0,0,0,0,0,0,0,0,393 +NA,NA,,2022-23,Stoneham - South,2840030,33,70,65,68,52,61,0,0,0,0,0,0,0,0,0,349 +NA,NA,,2022-23,Stoneham - Stoneham Central Middle School,2840405,0,0,0,0,0,0,162,186,177,153,0,0,0,0,0,678 +NA,NA,,2022-23,Stoneham - Stoneham High,2840505,0,0,0,0,0,0,0,0,0,0,174,144,152,144,5,619 +NA,NA,,2022-23,Stoughton - Edwin A Jones Early Childhood Center,2850012,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104 +NA,NA,,2022-23,Stoughton - Helen Hansen Elementary,2850010,0,40,54,38,50,38,44,0,0,0,0,0,0,0,0,264 +NA,NA,,2022-23,Stoughton - Joseph H Gibbons,2850025,0,54,59,57,60,67,52,0,0,0,0,0,0,0,0,349 +NA,NA,,2022-23,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,72,79,53,61,55,60,0,0,0,0,0,0,0,0,380 +NA,NA,,2022-23,Stoughton - O'Donnell Middle School,2850405,0,0,0,0,0,0,0,264,284,267,0,0,0,0,0,815 +NA,NA,,2022-23,Stoughton - Richard L. Wilkins Elementary School,2850020,19,68,66,42,42,34,41,0,0,0,0,0,0,0,0,312 +NA,NA,,2022-23,Stoughton - South Elementary,2850015,0,47,48,49,52,42,43,0,0,0,0,0,0,0,0,281 +NA,NA,,2022-23,Stoughton - Stoughton High,2850505,0,0,0,0,0,0,0,0,0,0,279,303,267,220,4,1073 +NA,NA,,2022-23,Sturbridge - Burgess Elementary,2870005,66,106,121,107,123,105,119,130,0,0,0,0,0,0,0,877 +NA,NA,,2022-23,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,0,0,0,0,0,0,0,0,0,215,215,192,208,0,830 +NA,NA,,2022-23,Sudbury - Ephraim Curtis Middle,2880305,0,0,0,0,0,0,0,272,291,287,0,0,0,0,0,850 +NA,NA,,2022-23,Sudbury - General John Nixon Elementary,2880025,0,52,53,52,68,49,51,0,0,0,0,0,0,0,0,325 +NA,NA,,2022-23,Sudbury - Israel Loring School,2880015,0,80,77,58,73,70,68,0,0,0,0,0,0,0,0,426 +NA,NA,,2022-23,Sudbury - Josiah Haynes,2880010,0,54,64,46,76,62,68,0,0,0,0,0,0,0,0,370 +NA,NA,,2022-23,Sudbury - Peter Noyes,2880030,58,86,72,84,92,86,86,0,0,0,0,0,0,0,0,564 +NA,NA,,2022-23,Sunderland - Sunderland Elementary,2890005,26,22,17,16,22,23,26,25,0,0,0,0,0,0,0,177 +NA,NA,,2022-23,Sutton - Sutton Early Learning,2900003,50,91,89,96,0,0,0,0,0,0,0,0,0,0,0,326 +NA,NA,,2022-23,Sutton - Sutton Elementary,2900005,0,0,0,0,90,117,97,0,0,0,0,0,0,0,0,304 +NA,NA,,2022-23,Sutton - Sutton High School,2900510,0,0,0,0,0,0,0,0,0,0,89,93,96,91,0,369 +NA,NA,,2022-23,Sutton - Sutton Middle School,2900305,0,0,0,0,0,0,0,85,104,107,0,0,0,0,0,296 +NA,NA,,2022-23,Swampscott - Clarke,2910005,0,43,43,39,46,34,0,0,0,0,0,0,0,0,0,205 +NA,NA,,2022-23,Swampscott - Hadley,2910010,0,117,65,55,58,55,0,0,0,0,0,0,0,0,0,350 +NA,NA,,2022-23,Swampscott - Stanley,2910020,0,0,43,40,43,35,0,0,0,0,0,0,0,0,0,161 +NA,NA,,2022-23,Swampscott - Swampscott High,2910505,0,0,0,0,0,0,0,0,0,0,169,159,155,153,5,641 +NA,NA,,2022-23,Swampscott - Swampscott Middle,2910305,61,0,0,0,0,0,135,137,176,170,0,0,0,0,0,679 +NA,NA,,2022-23,Swansea - Elizabeth S Brown,2920006,0,0,0,0,106,85,98,0,0,0,0,0,0,0,0,289 +NA,NA,,2022-23,Swansea - Gardner,2920015,0,81,94,79,0,0,0,0,0,0,0,0,0,0,0,254 +NA,NA,,2022-23,Swansea - Joseph Case High,2920505,0,0,0,0,0,0,0,0,0,0,142,128,154,109,4,537 +NA,NA,,2022-23,Swansea - Joseph Case Jr High,2920305,0,0,0,0,0,0,0,174,149,175,0,0,0,0,0,498 +NA,NA,,2022-23,Swansea - Joseph G Luther,2920020,0,0,0,0,50,59,69,0,0,0,0,0,0,0,0,178 +NA,NA,,2022-23,Swansea - Mark G Hoyle Elementary,2920017,47,59,66,60,0,0,0,0,0,0,0,0,0,0,0,232 +NA,NA,,2022-23,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,0,0,0,0,0,0,261,290,0,0,0,0,0,551 +NA,NA,,2022-23,Tantasqua - Tantasqua Regional Sr High,7700505,0,0,0,0,0,0,0,0,0,0,161,167,170,169,10,677 +NA,NA,,2022-23,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,0,0,0,0,0,0,0,148,148,124,104,0,524 +NA,NA,,2022-23,Taunton - Benjamin Friedman Middle,2930315,0,0,0,0,0,0,236,239,255,0,0,0,0,0,0,730 +NA,NA,,2022-23,Taunton - East Taunton Elementary,2930010,17,114,112,92,98,100,0,0,0,0,0,0,0,0,0,533 +NA,NA,,2022-23,Taunton - Edmund Hatch Bennett,2930007,0,55,50,55,63,62,0,0,0,0,0,0,0,0,0,285 +NA,NA,,2022-23,Taunton - Edward F. Leddy Preschool,2930005,252,0,0,0,0,0,0,0,0,0,0,0,0,0,0,252 +NA,NA,,2022-23,Taunton - Elizabeth Pole,2930027,0,113,122,118,105,119,0,0,0,0,0,0,0,0,0,577 +NA,NA,,2022-23,Taunton - H H Galligan,2930057,0,64,47,50,48,50,0,0,0,0,0,0,0,0,0,259 +NA,NA,,2022-23,Taunton - James L. Mulcahey Elementary School,2930015,51,154,171,147,160,168,0,0,0,0,0,0,0,0,0,851 +NA,NA,,2022-23,Taunton - John F Parker Middle,2930305,0,0,0,0,0,0,159,160,175,0,0,0,0,0,0,494 +NA,NA,,2022-23,Taunton - Joseph C Chamberlain,2930008,17,76,89,77,96,98,0,0,0,0,0,0,0,0,0,453 +NA,NA,,2022-23,Taunton - Joseph H Martin,2930042,0,0,0,0,0,0,222,220,200,0,0,0,0,0,0,642 +NA,NA,,2022-23,Taunton - Taunton Alternative High School,2930525,0,0,0,0,0,0,0,0,0,0,0,0,33,36,0,69 +NA,NA,,2022-23,Taunton - Taunton High,2930505,0,0,0,0,0,0,0,0,0,664,540,536,514,497,9,2760 +NA,NA,,2022-23,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,68,70,72,89,107,148,164,232,271,449,443,422,405,0,2940 +NA,NA,,2022-23,Tewksbury - Heath-Brook,2950010,0,139,94,99,0,0,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2022-23,Tewksbury - John F. Ryan,2950023,0,0,0,0,0,0,238,272,0,0,0,0,0,0,0,510 +NA,NA,,2022-23,Tewksbury - John W. Wynn Middle,2950305,0,0,0,0,0,0,0,0,242,254,0,0,0,0,0,496 +NA,NA,,2022-23,Tewksbury - L F Dewing,2950001,159,155,141,157,0,0,0,0,0,0,0,0,0,0,0,612 +NA,NA,,2022-23,Tewksbury - Louise Davy Trahan,2950025,0,0,0,0,119,97,0,0,0,0,0,0,0,0,0,216 +NA,NA,,2022-23,Tewksbury - North Street,2950020,0,0,0,0,148,135,0,0,0,0,0,0,0,0,0,283 +NA,NA,,2022-23,Tewksbury - Tewksbury Memorial High,2950505,0,0,0,0,0,0,0,0,0,0,179,180,196,193,4,752 +NA,NA,,2022-23,Tisbury - Tisbury Elementary,2960005,8,31,34,39,31,32,30,25,22,20,0,0,0,0,0,272 +NA,NA,,2022-23,Topsfield - Proctor Elementary,2980005,0,0,0,0,0,83,87,89,0,0,0,0,0,0,0,259 +NA,NA,,2022-23,Topsfield - Steward Elementary,2980010,47,69,86,82,85,0,0,0,0,0,0,0,0,0,0,369 +NA,NA,,2022-23,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0,0,0,0,0,0,0,0,0,273,236,233,215,0,957 +NA,NA,,2022-23,Triton - Newbury Elementary,7730020,57,60,57,56,52,52,44,34,0,0,0,0,0,0,0,412 +NA,NA,,2022-23,Triton - Pine Grove,7730025,35,63,69,42,58,46,57,62,0,0,0,0,0,0,0,432 +NA,NA,,2022-23,Triton - Salisbury Elementary,7730015,41,49,47,38,62,65,56,62,0,0,0,0,0,0,0,420 +NA,NA,,2022-23,Triton - Triton Regional High School,7730505,0,0,0,0,0,0,0,0,0,0,159,167,147,174,0,647 +NA,NA,,2022-23,Triton - Triton Regional Middle School,7730405,0,0,0,0,0,0,0,0,162,158,0,0,0,0,0,320 +NA,NA,,2022-23,Truro - Truro Central,3000005,22,10,17,10,13,13,14,0,0,0,0,0,0,0,0,99 +NA,NA,,2022-23,Tyngsborough - Tyngsborough Elementary,3010020,59,104,125,113,111,129,111,0,0,0,0,0,0,0,0,752 +NA,NA,,2022-23,Tyngsborough - Tyngsborough High School,3010505,0,0,0,0,0,0,0,0,0,0,117,98,90,109,0,414 +NA,NA,,2022-23,Tyngsborough - Tyngsborough Middle,3010305,0,0,0,0,0,0,0,150,117,133,0,0,0,0,0,400 +NA,NA,,2022-23,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,0,0,0,0,0,0,0,61,73,79,0,0,0,0,0,213 +NA,NA,,2022-23,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,56,62,66,67,67,73,74,60,46,44,0,0,0,0,0,615 +NA,NA,,2022-23,Up-Island Regional - Chilmark Elementary,7740010,0,18,13,12,8,12,7,0,0,0,0,0,0,0,0,70 +NA,NA,,2022-23,Up-Island Regional - West Tisbury Elementary,7740020,8,30,25,34,29,44,40,40,45,47,0,0,0,0,0,342 +NA,NA,,2022-23,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,0,0,0,0,0,0,0,229,201,183,156,0,769 +NA,NA,,2022-23,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0,0,8,11,19,0,38 +NA,NA,,2022-23,Uxbridge - Taft Early Learning Center,3040005,65,99,124,112,121,0,0,0,0,0,0,0,0,0,0,521 +NA,NA,,2022-23,Uxbridge - Uxbridge High,3040505,0,0,0,0,0,0,0,0,0,158,101,115,115,100,1,590 +NA,NA,,2022-23,Uxbridge - Whitin Intermediate,3040405,0,0,0,0,0,116,128,117,134,0,0,0,0,0,0,495 +NA,NA,,2022-23,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,0,0,0,0,0,0,102,100,101,103,95,0,0,0,0,501 +NA,NA,,2022-23,Wachusett - Central Tree Middle,7750310,0,0,0,0,0,0,0,121,136,114,0,0,0,0,0,371 +NA,NA,,2022-23,Wachusett - Chocksett Middle School,7750315,0,0,0,0,0,0,66,62,84,67,0,0,0,0,0,279 +NA,NA,,2022-23,Wachusett - Davis Hill Elementary,7750018,0,66,74,81,69,84,73,0,0,0,0,0,0,0,0,447 +NA,NA,,2022-23,Wachusett - Dawson,7750020,0,86,92,78,75,91,77,0,0,0,0,0,0,0,0,499 +NA,NA,,2022-23,Wachusett - Early Childhood Center,7750001,130,0,0,0,0,0,0,0,0,0,0,0,0,0,0,130 +NA,NA,,2022-23,Wachusett - Glenwood Elementary School,7750060,0,0,0,0,107,111,115,0,0,0,0,0,0,0,0,333 +NA,NA,,2022-23,Wachusett - Houghton Elementary,7750027,0,61,61,59,77,70,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2022-23,Wachusett - Leroy E.Mayo,7750032,0,78,76,97,73,84,83,0,0,0,0,0,0,0,0,491 +NA,NA,,2022-23,Wachusett - Mountview Middle,7750305,0,0,0,0,0,0,0,275,251,246,0,0,0,0,0,772 +NA,NA,,2022-23,Wachusett - Naquag Elementary School,7750005,0,99,141,123,0,0,0,0,0,0,0,0,0,0,0,363 +NA,NA,,2022-23,Wachusett - Paxton Center,7750040,0,53,46,46,50,45,41,57,46,70,0,0,0,0,0,454 +NA,NA,,2022-23,Wachusett - Thomas Prince,7750045,0,24,37,43,42,36,37,41,40,42,0,0,0,0,0,342 +NA,NA,,2022-23,Wachusett - Wachusett Regional High,7750505,0,0,0,0,0,0,0,0,0,0,447,490,493,482,18,1930 +NA,NA,,2022-23,Wakefield - Dolbeare,3050005,0,78,86,92,91,86,0,0,0,0,0,0,0,0,0,433 +NA,NA,,2022-23,Wakefield - Early Childhood Center at the Doyle School,3050001,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121 +NA,NA,,2022-23,Wakefield - Galvin Middle School,3050310,0,0,0,0,0,0,269,268,259,269,0,0,0,0,0,1065 +NA,NA,,2022-23,Wakefield - Greenwood,3050020,0,43,41,45,46,44,0,0,0,0,0,0,0,0,0,219 +NA,NA,,2022-23,Wakefield - Wakefield Memorial High,3050505,0,0,0,0,0,0,0,0,0,0,221,209,190,202,5,827 +NA,NA,,2022-23,Wakefield - Walton,3050040,0,39,45,44,42,43,0,0,0,0,0,0,0,0,0,213 +NA,NA,,2022-23,Wakefield - Woodville School,3050015,16,74,80,101,80,76,0,0,0,0,0,0,0,0,0,427 +NA,NA,,2022-23,Wales - Wales Elementary,3060005,4,17,10,14,14,10,13,14,0,0,0,0,0,0,0,96 +NA,NA,,2022-23,Walpole - Bird Middle,3070305,0,0,0,0,0,0,0,136,123,118,0,0,0,0,0,377 +NA,NA,,2022-23,Walpole - Boyden,3070010,0,81,70,59,65,66,67,0,0,0,0,0,0,0,0,408 +NA,NA,,2022-23,Walpole - Daniel Feeney Preschool Center,3070002,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88 +NA,NA,,2022-23,Walpole - Eleanor N Johnson Middle,3070310,0,0,0,0,0,0,0,138,147,132,0,0,0,0,0,417 +NA,NA,,2022-23,Walpole - Elm Street School,3070005,0,70,80,89,66,68,66,0,0,0,0,0,0,0,0,439 +NA,NA,,2022-23,Walpole - Fisher,3070015,0,86,58,98,79,78,77,0,0,0,0,0,0,0,0,476 +NA,NA,,2022-23,Walpole - Old Post Road,3070018,0,54,82,82,91,77,71,0,0,0,0,0,0,0,0,457 +NA,NA,,2022-23,Walpole - Walpole High,3070505,0,0,0,0,0,0,0,0,0,0,232,246,257,248,4,987 +NA,NA,,2022-23,Waltham - Douglas MacArthur Elementary School,3080032,0,86,85,96,57,80,73,0,0,0,0,0,0,0,0,477 +NA,NA,,2022-23,Waltham - Henry Whittemore Elementary School,3080065,0,55,70,55,72,68,65,0,0,0,0,0,0,0,0,385 +NA,NA,,2022-23,Waltham - James Fitzgerald Elementary School,3080060,0,57,70,58,53,67,73,0,0,0,0,0,0,0,0,378 +NA,NA,,2022-23,Waltham - John F Kennedy Middle,3080404,0,0,0,0,0,0,0,225,197,178,0,0,0,0,0,600 +NA,NA,,2022-23,Waltham - John W. McDevitt Middle School,3080415,0,0,0,0,0,0,0,201,196,198,0,0,0,0,0,595 +NA,NA,,2022-23,Waltham - Northeast Elementary School,3080040,62,74,73,77,79,62,80,0,0,0,0,0,0,0,0,507 +NA,NA,,2022-23,Waltham - Thomas R Plympton Elementary School,3080050,0,60,56,52,67,61,57,0,0,0,0,0,0,0,0,353 +NA,NA,,2022-23,Waltham - Waltham Public Schools Dual Language Program,3080001,0,41,40,39,34,30,30,0,0,0,0,0,0,0,0,214 +NA,NA,,2022-23,Waltham - Waltham Sr High,3080505,0,0,0,0,0,0,0,0,0,0,456,459,435,397,4,1751 +NA,NA,,2022-23,Waltham - William F. Stanley Elementary School,3080005,55,54,60,60,52,57,45,0,0,0,0,0,0,0,0,383 +NA,NA,,2022-23,Ware - Stanley M Koziol Elementary School,3090020,66,76,75,74,88,0,0,0,0,0,0,0,0,0,0,379 +NA,NA,,2022-23,Ware - Ware Junior/Senior High School,3090505,0,0,0,0,0,0,0,0,96,95,84,93,68,55,6,497 +NA,NA,,2022-23,Ware - Ware Middle School,3090305,0,0,0,0,0,90,79,79,0,0,0,0,0,0,0,248 +NA,NA,,2022-23,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,0,0,0,0,0,0,0,4,8,9,12,0,33 +NA,NA,,2022-23,Wareham - Wareham Elementary School,3100017,64,185,180,160,183,147,0,0,0,0,0,0,0,0,0,919 +NA,NA,,2022-23,Wareham - Wareham Middle,3100305,0,0,0,0,0,0,156,124,157,0,0,0,0,0,0,437 +NA,NA,,2022-23,Wareham - Wareham Senior High,3100505,0,0,0,0,0,0,0,0,0,208,130,99,96,81,12,626 +NA,NA,,2022-23,Watertown - Cunniff,3140015,0,47,65,57,46,58,53,0,0,0,0,0,0,0,0,326 +NA,NA,,2022-23,Watertown - Hosmer,3140020,128,119,117,83,86,98,85,0,0,0,0,0,0,0,0,716 +NA,NA,,2022-23,Watertown - James Russell Lowell,3140025,0,55,64,54,72,52,58,0,0,0,0,0,0,0,0,355 +NA,NA,,2022-23,Watertown - Watertown High,3140505,0,0,0,0,0,0,0,0,0,0,202,209,166,152,4,733 +NA,NA,,2022-23,Watertown - Watertown Middle,3140305,0,0,0,0,0,0,0,185,178,169,0,0,0,0,0,532 +NA,NA,,2022-23,Wayland - Claypit Hill School,3150005,0,73,80,93,70,73,109,0,0,0,0,0,0,0,0,498 +NA,NA,,2022-23,Wayland - Happy Hollow School,3150015,0,44,59,66,64,61,69,0,0,0,0,0,0,0,0,363 +NA,NA,,2022-23,Wayland - Loker School,3150020,0,53,63,66,66,66,71,0,0,0,0,0,0,0,0,385 +NA,NA,,2022-23,Wayland - The Children's Way Preschool,3150025,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63 +NA,NA,,2022-23,Wayland - Wayland High School,3150505,0,0,0,0,0,0,0,0,0,0,206,222,207,189,0,824 +NA,NA,,2022-23,Wayland - Wayland Middle School,3150305,0,0,0,0,0,0,0,218,203,200,0,0,0,0,0,621 +NA,NA,,2022-23,Webster - Bartlett High School,3160505,0,0,0,0,0,0,0,0,0,0,102,99,75,83,6,365 +NA,NA,,2022-23,Webster - Park Avenue Elementary,3160015,48,132,129,131,154,143,0,0,0,0,0,0,0,0,0,737 +NA,NA,,2022-23,Webster - Webster Middle School,3160315,0,0,0,0,0,0,123,155,156,156,0,0,0,0,0,590 +NA,NA,,2022-23,Wellesley - Ernest F Upham,3170050,0,21,32,22,23,26,36,0,0,0,0,0,0,0,0,160 +NA,NA,,2022-23,Wellesley - Hunnewell,3170025,0,26,29,34,33,39,37,0,0,0,0,0,0,0,0,198 +NA,NA,,2022-23,Wellesley - John D Hardy,3170020,0,31,39,32,37,33,34,0,0,0,0,0,0,0,0,206 +NA,NA,,2022-23,Wellesley - Joseph E Fiske,3170015,0,44,50,42,51,54,39,0,0,0,0,0,0,0,0,280 +NA,NA,,2022-23,Wellesley - Katharine Lee Bates,3170005,0,41,52,39,42,52,45,0,0,0,0,0,0,0,0,271 +NA,NA,,2022-23,Wellesley - Preschool at Wellesley Schools,3170001,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89 +NA,NA,,2022-23,Wellesley - Schofield,3170045,0,45,56,62,59,48,63,0,0,0,0,0,0,0,0,333 +NA,NA,,2022-23,Wellesley - Sprague Elementary School,3170048,0,40,41,37,48,55,66,0,0,0,0,0,0,0,0,287 +NA,NA,,2022-23,Wellesley - Wellesley Middle,3170305,0,0,0,0,0,0,0,297,306,319,0,0,0,0,0,922 +NA,NA,,2022-23,Wellesley - Wellesley Sr High,3170505,0,0,0,0,0,0,0,0,0,0,356,339,349,368,0,1412 +NA,NA,,2022-23,Wellfleet - Wellfleet Elementary,3180005,0,13,19,17,14,20,15,0,0,0,0,0,0,0,0,98 +NA,NA,,2022-23,West Boylston - Major Edwards Elementary,3220005,36,66,77,52,67,66,67,0,0,0,0,0,0,0,0,431 +NA,NA,,2022-23,West Boylston - West Boylston Junior/Senior High,3220505,0,0,0,0,0,0,0,62,71,70,63,48,57,62,0,433 +NA,NA,,2022-23,West Bridgewater - Howard School,3230305,0,0,0,0,0,106,99,106,0,0,0,0,0,0,0,311 +NA,NA,,2022-23,West Bridgewater - Rose L Macdonald,3230003,0,0,103,116,92,0,0,0,0,0,0,0,0,0,0,311 +NA,NA,,2022-23,West Bridgewater - Spring Street School,3230005,53,103,0,0,0,0,0,0,0,0,0,0,0,0,0,156 +NA,NA,,2022-23,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,0,0,0,0,0,106,113,108,96,102,100,0,625 +NA,NA,,2022-23,West Springfield - John Ashley,3320005,0,174,0,0,0,0,0,0,0,0,0,0,0,0,0,174 +NA,NA,,2022-23,West Springfield - John R Fausey,3320010,0,0,80,87,82,78,84,0,0,0,0,0,0,0,0,411 +NA,NA,,2022-23,West Springfield - Memorial,3320025,0,0,40,56,34,36,32,0,0,0,0,0,0,0,0,198 +NA,NA,,2022-23,West Springfield - Mittineague,3320030,0,0,23,25,26,40,35,0,0,0,0,0,0,0,0,149 +NA,NA,,2022-23,West Springfield - Philip G Coburn,3320007,0,92,90,83,97,80,92,0,0,0,0,0,0,0,0,534 +NA,NA,,2022-23,West Springfield - Tatham,3320040,0,0,28,50,45,56,51,0,0,0,0,0,0,0,0,230 +NA,NA,,2022-23,West Springfield - West Springfield Early Childhood,3320001,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89 +NA,NA,,2022-23,West Springfield - West Springfield High,3320505,0,0,0,0,0,0,0,0,0,0,324,297,266,287,12,1186 +NA,NA,,2022-23,West Springfield - West Springfield Middle,3320305,0,0,0,0,0,0,0,313,289,295,0,0,0,0,0,897 +NA,NA,,2022-23,Westborough - Annie E Fales,3210010,0,73,86,78,94,0,0,0,0,0,0,0,0,0,0,331 +NA,NA,,2022-23,Westborough - Elsie A Hastings Elementary,3210025,140,76,89,91,79,0,0,0,0,0,0,0,0,0,0,475 +NA,NA,,2022-23,Westborough - J Harding Armstrong,3210005,0,88,102,88,113,0,0,0,0,0,0,0,0,0,0,391 +NA,NA,,2022-23,Westborough - Mill Pond School,3210045,0,0,0,0,0,270,300,295,0,0,0,0,0,0,0,865 +NA,NA,,2022-23,Westborough - Sarah W Gibbons Middle,3210305,0,0,0,0,0,0,0,0,291,299,0,0,0,0,0,590 +NA,NA,,2022-23,Westborough - Westborough High,3210505,0,0,0,0,0,0,0,0,0,0,291,323,291,262,11,1178 +NA,NA,,2022-23,Westfield - Abner Gibbs,3250020,0,25,29,31,38,30,0,0,0,0,0,0,0,0,0,153 +NA,NA,,2022-23,Westfield - Fort Meadow Early Childhood Center,3250003,133,0,0,0,0,0,0,0,0,0,0,0,0,0,0,133 +NA,NA,,2022-23,Westfield - Franklin Ave,3250015,0,26,34,34,36,36,0,0,0,0,0,0,0,0,0,166 +NA,NA,,2022-23,Westfield - Highland,3250025,0,65,73,68,73,91,0,0,0,0,0,0,0,0,0,370 +NA,NA,,2022-23,Westfield - Munger Hill,3250033,0,53,65,75,65,82,0,0,0,0,0,0,0,0,0,340 +NA,NA,,2022-23,Westfield - Paper Mill,3250036,0,82,68,56,69,66,0,0,0,0,0,0,0,0,0,341 +NA,NA,,2022-23,Westfield - Southampton Road,3250040,28,55,62,60,57,63,0,0,0,0,0,0,0,0,0,325 +NA,NA,,2022-23,Westfield - Westfield High,3250505,0,0,0,0,0,0,0,0,0,0,253,265,258,241,10,1027 +NA,NA,,2022-23,Westfield - Westfield Intermediate School,3250075,0,0,0,0,0,0,317,351,0,0,0,0,0,0,0,668 +NA,NA,,2022-23,Westfield - Westfield Middle School,3250310,0,0,0,0,0,0,0,0,368,323,0,0,0,0,0,691 +NA,NA,,2022-23,Westfield - Westfield Technical Academy,3250605,0,0,0,0,0,0,0,0,0,0,138,150,127,128,0,543 +NA,NA,,2022-23,Westfield - Westfield Virtual School,3250705,0,0,1,7,5,1,2,9,10,13,7,6,8,10,0,79 +NA,NA,,2022-23,Westford - Abbot Elementary,3260004,0,0,0,0,116,119,125,0,0,0,0,0,0,0,0,360 +NA,NA,,2022-23,Westford - Blanchard Middle,3260310,0,0,0,0,0,0,0,178,182,183,0,0,0,0,0,543 +NA,NA,,2022-23,Westford - Col John Robinson,3260025,27,104,107,100,0,0,0,0,0,0,0,0,0,0,0,338 +NA,NA,,2022-23,Westford - Day Elementary,3260007,0,0,0,0,103,105,119,0,0,0,0,0,0,0,0,327 +NA,NA,,2022-23,Westford - John A. Crisafulli Elementary School,3260045,0,0,0,0,101,118,116,0,0,0,0,0,0,0,0,335 +NA,NA,,2022-23,Westford - Nabnasset,3260015,32,101,100,136,0,0,0,0,0,0,0,0,0,0,0,369 +NA,NA,,2022-23,Westford - Rita E. Miller Elementary School,3260055,38,79,94,90,0,0,0,0,0,0,0,0,0,0,0,301 +NA,NA,,2022-23,Westford - Stony Brook School,3260330,0,0,0,0,0,0,0,166,232,214,0,0,0,0,0,612 +NA,NA,,2022-23,Westford - Westford Academy,3260505,0,0,0,0,0,0,0,0,0,0,352,371,377,423,2,1525 +NA,NA,,2022-23,Westhampton - Westhampton Elementary School,3270005,10,14,15,10,14,12,11,18,0,0,0,0,0,0,0,104 +NA,NA,,2022-23,Weston - Country,3300010,17,92,76,64,82,0,0,0,0,0,0,0,0,0,0,331 +NA,NA,,2022-23,Weston - Field Elementary School,3300012,0,0,0,0,0,143,123,0,0,0,0,0,0,0,0,266 +NA,NA,,2022-23,Weston - Weston High,3300505,0,0,0,0,0,0,0,0,0,0,158,167,159,155,0,639 +NA,NA,,2022-23,Weston - Weston Middle,3300305,0,0,0,0,0,0,0,140,150,154,0,0,0,0,0,444 +NA,NA,,2022-23,Weston - Woodland,3300015,19,82,75,83,61,0,0,0,0,0,0,0,0,0,0,320 +NA,NA,,2022-23,Westport - Alice A Macomber,3310015,67,106,0,0,0,0,0,0,0,0,0,0,0,0,0,173 +NA,NA,,2022-23,Westport - Westport Elementary,3310030,0,0,107,109,109,116,0,0,0,0,0,0,0,0,0,441 +NA,NA,,2022-23,Westport - Westport Middle-High School,3310515,0,0,0,0,0,0,118,120,139,138,71,90,85,68,3,832 +NA,NA,,2022-23,Westwood - Deerfield School,3350010,0,34,41,35,29,27,30,0,0,0,0,0,0,0,0,196 +NA,NA,,2022-23,Westwood - Downey,3350012,2,49,51,46,42,65,53,0,0,0,0,0,0,0,0,308 +NA,NA,,2022-23,Westwood - E W Thurston Middle,3350305,0,0,0,0,0,0,0,218,214,229,0,0,0,0,0,661 +NA,NA,,2022-23,Westwood - Martha Jones,3350017,0,34,44,53,34,43,56,0,0,0,0,0,0,0,0,264 +NA,NA,,2022-23,Westwood - Paul Hanlon,3350015,0,36,42,36,35,34,47,0,0,0,0,0,0,0,0,230 +NA,NA,,2022-23,Westwood - Westwood High,3350505,0,0,0,0,0,0,0,0,0,0,201,217,235,249,0,902 +NA,NA,,2022-23,Westwood - Westwood Integrated Preschool,3350050,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42 +NA,NA,,2022-23,Westwood - William E Sheehan,3350025,0,42,46,53,44,60,42,0,0,0,0,0,0,0,0,287 +NA,NA,,2022-23,Weymouth - Academy Avenue,3360005,0,65,59,57,57,46,60,0,0,0,0,0,0,0,0,344 +NA,NA,,2022-23,Weymouth - Frederick C Murphy,3360050,0,46,42,48,52,46,45,0,0,0,0,0,0,0,0,279 +NA,NA,,2022-23,Weymouth - Johnson Early Childhood Center,3360003,178,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178 +NA,NA,,2022-23,Weymouth - Lawrence W Pingree,3360065,0,42,39,47,51,42,37,0,0,0,0,0,0,0,0,258 +NA,NA,,2022-23,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,0,0,0,0,1,402,382,410,0,0,0,0,0,1195 +NA,NA,,2022-23,Weymouth - Ralph Talbot,3360085,0,46,42,43,45,46,37,0,0,0,0,0,0,0,0,259 +NA,NA,,2022-23,Weymouth - Thomas V Nash,3360060,0,40,40,42,36,32,42,0,0,0,0,0,0,0,0,232 +NA,NA,,2022-23,Weymouth - Thomas W. Hamilton Primary School,3360105,0,69,67,65,38,51,60,0,0,0,0,0,0,0,0,350 +NA,NA,,2022-23,Weymouth - Wessagusset,3360110,0,45,74,63,46,54,59,0,0,0,0,0,0,0,0,341 +NA,NA,,2022-23,Weymouth - Weymouth High School,3360505,0,0,0,0,0,0,0,0,0,0,516,422,430,424,15,1807 +NA,NA,,2022-23,Weymouth - William Seach,3360080,0,67,60,54,60,59,56,0,0,0,0,0,0,0,0,356 +NA,NA,,2022-23,Whately - Whately Elementary,3370005,16,20,13,17,15,16,14,17,0,0,0,0,0,0,0,128 +NA,NA,,2022-23,Whitman-Hanson - Hanson Middle School,7800315,0,0,0,0,0,0,114,108,100,127,0,0,0,0,0,449 +NA,NA,,2022-23,Whitman-Hanson - Indian Head,7800035,0,93,101,91,100,100,0,0,0,0,0,0,0,0,0,485 +NA,NA,,2022-23,Whitman-Hanson - John H Duval,7800030,0,51,75,70,72,82,76,0,0,0,0,0,0,0,0,426 +NA,NA,,2022-23,Whitman-Hanson - Louise A Conley,7800010,0,70,82,67,98,80,85,0,0,0,0,0,0,0,0,482 +NA,NA,,2022-23,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,7800001,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100 +NA,NA,,2022-23,Whitman-Hanson - Whitman Hanson Regional,7800505,0,0,0,0,0,0,0,0,0,0,256,256,253,316,12,1093 +NA,NA,,2022-23,Whitman-Hanson - Whitman Middle,7800310,0,0,0,0,0,0,0,169,175,160,0,0,0,0,0,504 +NA,NA,,2022-23,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0,0,0,0,0,0,0,0,309,325,321,322,0,1277 +NA,NA,,2022-23,Williamsburg - Anne T. Dunphy School,3400020,10,13,16,12,18,23,18,17,0,0,0,0,0,0,0,127 +NA,NA,,2022-23,Wilmington - Boutwell,3420005,42,101,0,0,0,0,0,0,0,0,0,0,0,0,0,143 +NA,NA,,2022-23,Wilmington - North Intermediate,3420060,0,0,0,0,0,107,145,0,0,0,0,0,0,0,0,252 +NA,NA,,2022-23,Wilmington - Shawsheen Elementary,3420025,18,40,100,128,101,0,0,0,0,0,0,0,0,0,0,387 +NA,NA,,2022-23,Wilmington - West Intermediate,3420080,23,39,0,0,0,112,118,0,0,0,0,0,0,0,0,292 +NA,NA,,2022-23,Wilmington - Wilmington High,3420505,0,0,0,0,0,0,0,0,0,0,156,141,166,193,0,656 +NA,NA,,2022-23,Wilmington - Wilmington Middle School,3420330,0,0,0,0,0,0,0,209,235,187,0,0,0,0,0,631 +NA,NA,,2022-23,Wilmington - Woburn Street,3420020,0,57,122,112,134,0,0,0,0,0,0,0,0,0,0,425 +NA,NA,,2022-23,Winchendon - Memorial,3430040,0,114,110,95,0,0,0,0,0,0,0,0,0,0,0,319 +NA,NA,,2022-23,Winchendon - Murdock Academy for Success,3430405,0,0,0,0,0,0,0,0,0,0,3,5,8,6,0,22 +NA,NA,,2022-23,Winchendon - Murdock High School,3430515,0,0,0,0,0,0,0,0,0,0,87,76,50,50,0,263 +NA,NA,,2022-23,Winchendon - Murdock Middle School,3430315,0,0,0,0,0,0,0,98,90,81,0,0,0,0,0,269 +NA,NA,,2022-23,Winchendon - Toy Town Elementary,3430050,0,0,0,0,95,97,102,0,0,0,0,0,0,0,0,294 +NA,NA,,2022-23,Winchendon - Winchendon PreSchool Program,3430010,72,0,0,0,0,0,0,0,0,0,0,0,0,0,0,72 +NA,NA,,2022-23,Winchester - Ambrose Elementary,3440045,0,45,71,50,69,58,52,0,0,0,0,0,0,0,0,345 +NA,NA,,2022-23,Winchester - Lincoln Elementary,3440005,0,47,48,50,53,62,68,0,0,0,0,0,0,0,0,328 +NA,NA,,2022-23,Winchester - Lynch Elementary,3440020,36,59,72,67,84,77,78,0,0,0,0,0,0,0,0,473 +NA,NA,,2022-23,Winchester - McCall Middle,3440305,0,0,0,0,0,0,0,349,348,340,0,0,0,0,0,1037 +NA,NA,,2022-23,Winchester - Muraco Elementary,3440040,0,48,48,42,66,60,62,0,0,0,0,0,0,0,0,326 +NA,NA,,2022-23,Winchester - Vinson-Owen Elementary,3440025,29,52,65,63,84,80,68,0,0,0,0,0,0,0,0,441 +NA,NA,,2022-23,Winchester - Winchester High School,3440505,0,0,0,0,0,0,0,0,0,0,361,331,339,352,0,1383 +NA,NA,,2022-23,Winthrop - Arthur T. Cummings Elementary School,3460020,0,0,0,0,159,142,130,0,0,0,0,0,0,0,0,431 +NA,NA,,2022-23,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,58,141,150,142,0,0,0,0,0,0,0,0,0,0,0,491 +NA,NA,,2022-23,Winthrop - Winthrop High School,3460505,0,0,0,0,0,0,0,0,0,0,163,152,137,135,7,594 +NA,NA,,2022-23,Winthrop - Winthrop Middle School,3460305,0,0,0,0,0,0,0,157,130,138,0,0,0,0,0,425 +NA,NA,,2022-23,Woburn - Clyde Reeves,3470040,120,62,39,47,50,59,45,0,0,0,0,0,0,0,0,422 +NA,NA,,2022-23,Woburn - Daniel L Joyce Middle School,3470410,0,0,0,0,0,0,0,148,163,136,0,0,0,0,0,447 +NA,NA,,2022-23,Woburn - Goodyear Elementary School,3470005,0,48,67,42,62,58,45,0,0,0,0,0,0,0,0,322 +NA,NA,,2022-23,Woburn - Hurld-Wyman Elementary School,3470020,0,72,66,65,71,52,64,0,0,0,0,0,0,0,0,390 +NA,NA,,2022-23,Woburn - John F Kennedy Middle School,3470405,0,0,0,0,0,0,0,173,160,181,0,0,0,0,0,514 +NA,NA,,2022-23,Woburn - Linscott-Rumford,3470025,0,42,40,32,22,30,33,0,0,0,0,0,0,0,0,199 +NA,NA,,2022-23,Woburn - Malcolm White,3470055,0,56,49,46,53,58,55,0,0,0,0,0,0,0,0,317 +NA,NA,,2022-23,Woburn - Mary D Altavesta,3470065,0,35,41,36,31,35,25,0,0,0,0,0,0,0,0,203 +NA,NA,,2022-23,Woburn - Shamrock,3470043,22,53,42,43,52,37,35,0,0,0,0,0,0,0,0,284 +NA,NA,,2022-23,Woburn - Woburn High,3470505,0,0,0,0,0,0,0,0,0,0,283,333,281,276,5,1178 +NA,NA,,2022-23,Worcester - Belmont Street Community,3480020,48,79,70,79,71,104,71,63,0,0,0,0,0,0,0,585 +NA,NA,,2022-23,Worcester - Burncoat Middle School,3480405,0,0,0,0,0,0,0,0,368,344,0,0,0,0,0,712 +NA,NA,,2022-23,Worcester - Burncoat Senior High,3480503,0,0,0,0,0,0,0,0,0,0,326,262,298,279,14,1179 +NA,NA,,2022-23,Worcester - Burncoat Street,3480035,0,30,33,38,26,35,42,36,0,0,0,0,0,0,0,240 +NA,NA,,2022-23,Worcester - Canterbury,3480045,31,64,37,26,28,27,40,41,0,0,0,0,0,0,0,294 +NA,NA,,2022-23,Worcester - Chandler Elementary Community,3480050,0,58,62,45,57,73,58,73,0,0,0,0,0,0,0,426 +NA,NA,,2022-23,Worcester - Chandler Magnet,3480052,35,48,57,40,57,57,56,52,0,0,0,0,0,0,0,402 +NA,NA,,2022-23,Worcester - City View,3480053,23,50,69,37,51,60,77,63,0,0,0,0,0,0,0,430 +NA,NA,,2022-23,Worcester - Claremont Academy,3480350,0,0,0,0,0,0,0,0,80,91,68,93,78,74,4,488 +NA,NA,,2022-23,Worcester - Clark St Community,3480055,28,33,34,29,31,36,39,38,0,0,0,0,0,0,0,268 +NA,NA,,2022-23,Worcester - Columbus Park,3480060,21,52,50,50,64,45,55,49,0,0,0,0,0,0,0,386 +NA,NA,,2022-23,Worcester - Doherty Memorial High,3480512,0,0,0,0,0,0,0,0,0,0,377,337,313,308,9,1344 +NA,NA,,2022-23,Worcester - Elm Park Community,3480095,0,64,61,53,49,68,57,63,0,0,0,0,0,0,0,415 +NA,NA,,2022-23,Worcester - Flagg Street,3480090,0,67,67,45,58,48,39,35,0,0,0,0,0,0,0,359 +NA,NA,,2022-23,Worcester - Forest Grove Middle,3480415,0,0,0,0,0,0,0,0,425,472,0,0,0,0,0,897 +NA,NA,,2022-23,Worcester - Francis J McGrath Elementary,3480177,6,36,24,21,25,31,32,33,0,0,0,0,0,0,0,208 +NA,NA,,2022-23,Worcester - Gates Lane,3480110,65,79,86,60,72,58,70,54,0,0,0,0,0,0,0,544 +NA,NA,,2022-23,Worcester - Goddard School/Science Technical,3480100,14,51,69,45,56,49,56,40,0,0,0,0,0,0,0,380 +NA,NA,,2022-23,Worcester - Grafton Street,3480115,0,56,74,53,60,60,58,66,0,0,0,0,0,0,0,427 +NA,NA,,2022-23,Worcester - Head Start,3480002,407,0,0,0,0,0,0,0,0,0,0,0,0,0,0,407 +NA,NA,,2022-23,Worcester - Heard Street,3480136,0,42,31,44,25,35,43,26,0,0,0,0,0,0,0,246 +NA,NA,,2022-23,Worcester - Jacob Hiatt Magnet,3480140,41,70,43,39,47,49,43,40,0,0,0,0,0,0,0,372 +NA,NA,,2022-23,Worcester - La Familia Dual Language School,3480025,14,38,38,34,18,12,10,8,0,0,0,0,0,0,0,172 +NA,NA,,2022-23,Worcester - Lake View,3480145,0,46,56,34,46,39,44,43,0,0,0,0,0,0,0,308 +NA,NA,,2022-23,Worcester - Lincoln Street,3480160,0,54,49,24,33,30,28,24,0,0,0,0,0,0,0,242 +NA,NA,,2022-23,Worcester - May Street,3480175,0,49,45,35,43,37,45,41,0,0,0,0,0,0,0,295 +NA,NA,,2022-23,Worcester - Midland Street,3480185,0,36,38,29,24,32,31,16,0,0,0,0,0,0,0,206 +NA,NA,,2022-23,Worcester - Nelson Place,3480200,48,64,82,81,74,84,78,64,0,0,0,0,0,0,0,575 +NA,NA,,2022-23,Worcester - Norrback Avenue,3480202,40,69,64,53,78,81,65,57,0,0,0,0,0,0,0,507 +NA,NA,,2022-23,Worcester - North High,3480515,0,0,0,0,0,0,0,0,0,0,357,390,329,276,25,1377 +NA,NA,,2022-23,Worcester - Quinsigamond,3480210,23,100,113,96,106,92,96,87,0,0,0,0,0,0,0,713 +NA,NA,,2022-23,Worcester - Rice Square,3480215,0,69,70,76,79,48,57,59,0,0,0,0,0,0,0,458 +NA,NA,,2022-23,Worcester - Roosevelt,3480220,79,73,79,68,75,78,55,59,0,0,0,0,0,0,0,566 +NA,NA,,2022-23,Worcester - South High Community,3480520,0,0,0,0,0,0,0,0,0,0,452,440,424,339,11,1666 +NA,NA,,2022-23,Worcester - Sullivan Middle,3480423,0,0,0,0,0,0,0,49,376,402,0,0,0,0,0,827 +NA,NA,,2022-23,Worcester - Tatnuck,3480230,25,59,47,51,54,57,42,50,0,0,0,0,0,0,0,385 +NA,NA,,2022-23,Worcester - Thorndyke Road,3480235,0,58,58,44,50,47,58,48,0,0,0,0,0,0,0,363 +NA,NA,,2022-23,Worcester - Union Hill School,3480240,0,53,58,62,49,53,59,56,0,0,0,0,0,0,0,390 +NA,NA,,2022-23,Worcester - University Pk Campus School,3480285,0,0,0,0,0,0,0,0,39,38,36,37,36,38,0,224 +NA,NA,,2022-23,Worcester - Vernon Hill School,3480280,39,58,68,45,64,63,52,85,0,0,0,0,0,0,0,474 +NA,NA,,2022-23,Worcester - Wawecus Road School,3480026,0,19,19,16,21,22,17,19,0,0,0,0,0,0,0,133 +NA,NA,,2022-23,Worcester - West Tatnuck,3480260,54,49,40,42,47,44,56,32,0,0,0,0,0,0,0,364 +NA,NA,,2022-23,Worcester - Woodland Academy,3480030,0,63,76,49,70,61,74,94,0,0,0,0,0,0,0,487 +NA,NA,,2022-23,Worcester - Worcester Arts Magnet School,3480225,24,49,62,51,47,50,48,37,0,0,0,0,0,0,0,368 +NA,NA,,2022-23,Worcester - Worcester East Middle,3480420,0,0,0,0,0,0,0,0,348,392,0,0,0,0,0,740 +NA,NA,,2022-23,Worcester - Worcester Technical High,3480605,0,0,0,0,0,0,0,0,0,0,384,380,339,357,9,1469 +NA,NA,,2022-23,Worthington - R. H. Conwell,3490010,18,12,5,6,8,6,14,7,0,0,0,0,0,0,0,76 +NA,NA,,2022-23,Wrentham - Charles E Roderick,3500010,0,0,0,0,0,105,139,125,0,0,0,0,0,0,0,369 +NA,NA,,2022-23,Wrentham - Delaney,3500003,92,124,130,125,111,0,0,0,0,0,0,0,0,0,0,582 +NA,NA,,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Abington - Abington Early Education Program,10001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Abington - Abington High,10505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Abington - Abington Middle School,10405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Abington - Beaver Brook Elementary,10020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Abington - Woodsdale Elementary School,10015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,6000505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - Blanchard Memorial School,6000005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,6000020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - Luther Conant School,6000030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - McCarthy-Towne School,6000015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - Merriam School,6000010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - Paul P Gates Elementary School,6000025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acton-Boxborough - Raymond J Grey Junior High,6000405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acushnet - Acushnet Elementary School,30025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Acushnet - Albert F Ford Middle School,30305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - Agawam Early Childhood Center,50003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - Agawam High,50505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - Agawam Junior High,50405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - Benjamin J Phelps,50020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - Clifford M Granger,50010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - James Clark School,50030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - Roberta G. Doering School,50303,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Agawam - Robinson Park,50025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amesbury - Amesbury Elementary,70005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amesbury - Amesbury High,70505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amesbury - Amesbury Innovation High School,70515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amesbury - Amesbury Middle,70013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amesbury - Charles C Cashman Elementary,70010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amherst - Crocker Farm Elementary,80009,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amherst - Fort River Elementary,80020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amherst - Wildwood Elementary,80050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amherst-Pelham - Amherst Regional High,6050505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Amherst-Pelham - Amherst Regional Middle School,6050405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - Andover High,90505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - Andover West Middle,90310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - Bancroft Elementary,90003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - Doherty Middle,90305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - Henry C Sanborn Elementary,90010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - High Plain Elementary,90004,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - Shawsheen School,90005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - South Elementary,90020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - West Elementary,90025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Andover - Wood Hill Middle School,90350,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Arlington High,100505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Brackett,100010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Cyrus E Dallin,100025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Gibbs School,100305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Hardy,100030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - John A Bishop,100005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - M Norcross Stratton,100055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Menotomy Preschool,100038,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Ottoson Middle,100410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Peirce,100045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Arlington - Thompson,100050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashburnham-Westminster - Briggs Elementary,6100025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashburnham-Westminster - Meetinghouse School,6100010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashburnham-Westminster - Oakmont Regional High School,6100505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashburnham-Westminster - Overlook Middle School,6100305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashburnham-Westminster - Westminster Elementary,6100005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashland - Ashland High,140505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashland - Ashland Middle,140405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashland - David Mindess,140015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashland - Henry E Warren Elementary,140010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ashland - William Pittaway Elementary,140005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Athol-Royalston - Athol Community Elementary School,6150020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Athol-Royalston - Athol High,6150505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Athol-Royalston - Athol-Royalston Middle School,6150305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Athol-Royalston - Royalston Community School,6150050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Atlantis Charter (District) - Atlantis Charter School,4910550,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - A. Irvin Studley Elementary School,160001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Attleboro Community Academy,160515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Attleboro High,160505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Attleboro Virtual Academy,160705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Cyril K. Brennan Middle School,160315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Early Learning Center,160008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Hill-Roberts Elementary School,160045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Hyman Fine Elementary School,160040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Peter Thacher Elementary School,160050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Robert J. Coelho Middle School,160305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Thomas Willett Elementary School,160035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Attleboro - Wamsutta Middle School,160320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Auburn - Auburn Middle,170305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Auburn - Auburn Senior High,170505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Auburn - Bryn Mawr,170010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Auburn - Pakachoag School,170025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Auburn - Swanson Road Intermediate School,170030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Avon - Avon Middle High School,180510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Avon - Ralph D Butler,180010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ayer Shirley School District - Lura A. White Elementary School,6160001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,6160002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - Barnstable Community Innovation School,200012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - Barnstable High,200505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - Barnstable Intermediate School,200315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - Barnstable United Elementary School,200050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - Centerville Elementary,200010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - Enoch Cobb Early Learning Center,200001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - Hyannis West Elementary,200025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - West Barnstable Elementary,200005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Barnstable - West Villages Elementary School,200045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bedford - Bedford High,230505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bedford - John Glenn Middle,230305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bedford - Lt Elezer Davis,230010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bedford - Lt Job Lane School,230012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belchertown - Belchertown High,240505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belchertown - Chestnut Hill Community School,240006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belchertown - Cold Spring,240005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belchertown - Jabish Middle School,240025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belchertown - Swift River Elementary,240018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bellingham - Bellingham Early Childhood Center,250003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bellingham - Bellingham High School,250505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bellingham - Bellingham Memorial School,250315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bellingham - Joseph F DiPietro Elementary School,250020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bellingham - Keough Memorial Academy,250510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bellingham - Stall Brook,250025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belmont - Belmont High,260505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belmont - Daniel Butler,260015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belmont - Mary Lee Burbank,260010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belmont - Roger E Wellington,260035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belmont - Winn Brook,260005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Belmont - Winthrop L Chenery Middle,260305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berkley - Berkley Community School,270010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berkley - Berkley Middle School,270305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berkshire Hills - Monument Mt Regional High,6180505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,6180310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berlin-Boylston - Berlin Memorial School,6200005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berlin-Boylston - Boylston Elementary School,6200010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Berlin-Boylston - Tahanto Regional High,6200505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - Ayers/Ryal Side School,300055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - Beverly High,300505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - Beverly Middle School,300305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - Centerville Elementary,300010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - Cove Elementary,300015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - Hannah Elementary,300033,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - McKeown School,300002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Beverly - North Beverly Elementary,300040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - Billerica Memorial High School,310505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - Frederick J Dutile,310007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - Hajjar Elementary,310026,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - John F Kennedy,310012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - Locke Middle,310310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - Marshall Middle School,310305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - Parker,310015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Billerica - Thomas Ditson,310005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Blackstone-Millville - A F Maloney,6220015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Blackstone-Millville - Blackstone Millville RHS,6220505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Blackstone-Millville - John F Kennedy Elementary,6220008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Blackstone-Millville - Millville Elementary,6220010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Adams Elementary School,350302,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Alighieri Dante Montessori School,350066,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Another Course To College,350541,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Baldwin Early Learning Pilot Academy,350003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Bates Elementary School,350278,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Beethoven Elementary School,350021,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Blackstone Elementary School,350390,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston Adult Tech Academy,350548,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston Arts Academy,350546,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston Collaborative High School,350755,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston Community Leadership Academy,350558,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston International High School & Newcomers Academy,350507,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston Latin Academy,350545,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston Latin School,350560,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Boston Teachers Union K-8 Pilot,350012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Bradley Elementary School,350215,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Brighton High School,350505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Burke High School,350525,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Carter School,350036,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Channing Elementary School,350360,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Charlestown High School,350515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Chittick Elementary School,350154,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Clap Elementary School,350298,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Community Academy,350518,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Community Academy of Science and Health,350581,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Condon K-8 School,350146,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Conley Elementary School,350122,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Curley K-8 School,350020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Dearborn 6-12 STEM Academy,350074,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Dever Elementary School,350268,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - East Boston Early Education Center,350009,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - East Boston High School,350530,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Edison K-8 School,350375,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Eliot K-8 Innovation School,350096,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Ellis Elementary School,350072,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Ellison-Parks Early Education School,350008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - English High School,350535,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Everett Elementary School,350088,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Excel High School,350522,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Fenway High School,350540,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Frederick Pilot Middle School,350383,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Gardner Pilot Academy,350326,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Greater Egleston High School,350543,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Greenwood Sarah K-8 School,350308,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Grew Elementary School,350135,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Guild Elementary School,350062,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Hale Elementary School,350243,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Haley Pilot School,350077,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Harvard-Kent Elementary School,350200,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Haynes Early Education Center,350010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Henderson K-12 Inclusion School Lower,350266,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Henderson K-12 Inclusion School Upper,350426,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Hennigan K-8 School,350153,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Hernandez K-8 School,350691,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Higginson Inclusion K0-2 School,350015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Higginson-Lewis K-8 School,350377,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Holmes Elementary School,350138,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,350750,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Hurley K-8 School,350182,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Irving Middle School,350445,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Jackson-Mann K-8 School,350013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Kennedy John F Elementary School,350166,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Kennedy Patrick J Elementary School,350264,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Kenny Elementary School,350328,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Kilmer K-8 School,350190,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - King K-8 School,350376,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Lee Academy,350001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Lee K-8 School,350183,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Lyndon K-8 School,350262,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Lyon High School,350655,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Lyon K-8 School,350004,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Madison Park Technical Vocational High School,350537,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Manning Elementary School,350184,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Margarita Muniz Academy,350549,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mario Umana Academy,350656,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mason Elementary School,350304,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mather Elementary School,350227,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mattahunt Elementary School,350016,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - McKay K-8 School,350080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - McKinley Schools,350363,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mendell Elementary School,350100,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mildred Avenue K-8 School,350378,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mission Hill K-8 School,350382,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Mozart Elementary School,350237,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Murphy K-8 School,350240,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - New Mission High School,350542,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - O'Bryant School of Math & Science,350575,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - O'Donnell Elementary School,350141,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Ohrenberger School,350258,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Orchard Gardens K-8 School,350257,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Otis Elementary School,350156,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Perkins Elementary School,350231,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Perry K-8 School,350255,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Philbrick Elementary School,350172,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Quincy Elementary School,350286,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Quincy Upper School,350565,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Roosevelt K-8 School,350116,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Russell Elementary School,350366,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Shaw Elementary School,350014,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Snowden International High School,350690,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Sumner Elementary School,350052,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Taylor Elementary School,350054,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - TechBoston Academy,350657,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Timilty Middle School,350485,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Tobin K-8 School,350229,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Trotter K-8 School,350370,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Tynan Elementary School,350181,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - UP Academy Holland,350167,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Warren-Prescott K-8 School,350346,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - West Zone Early Learning Center,350006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Winship Elementary School,350374,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Winthrop Elementary School,350180,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston - Young Achievers K-8 School,350380,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bourne - Bourne High School,360505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bourne - Bourne Intermediate School,360030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bourne - Bourne Middle School,360325,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bourne - Bournedale Elementary School,360005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boxford - Harry Lee Cole,380005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Boxford - Spofford Pond,380013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Archie T Morrison,400033,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Braintree High,400505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Donald Ross,400050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - East Middle School,400305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Highlands,400015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Hollis,400005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Liberty,400025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Mary E Flaherty School,400020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - Monatiquot Kindergarten Center,400009,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Braintree - South Middle School,400310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brewster - Eddy Elementary,410010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brewster - Stony Brook Elementary,410005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Bridgewater Middle School,6250320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Laliberte Elementary School,6250050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Merrill Elementary School,6250020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Mitchell Elementary School,6250002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Raynham Middle School,6250315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Therapeutic Day School,6250415,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bridgewater-Raynham - Williams Intermediate School,6250300,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brimfield - Brimfield Elementary,430005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bristol County Agricultural - Bristol County Agricultural High,9100705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Ashfield Middle School,440421,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Barrett Russell Early Childhood Center,440008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Brockton Champion High School,440515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Brockton High,440505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Brockton Virtual Learning Academy,440705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Brookfield,440010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Downey,440110,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Dr W Arnone Community School,440001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - East Middle School,440405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Edgar B Davis,440023,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Edison Academy,440520,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Frederick Douglass Academy,440080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Gilmore Elementary School,440055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Hancock,440045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Huntington Therapeutic Day School,440400,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - John F Kennedy,440017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Joseph F. Plouffe Academy,440422,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Louis F Angelo Elementary,440065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Manthala George Jr. School,440003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Mary E. Baker School,440002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - North Middle School,440410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - Oscar F Raymond,440078,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - South Middle School,440415,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brockton - West Middle School,440420,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brooke Charter School (District) - Brooke Charter School,4280305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookfield - Brookfield Elementary,450005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Brookline Early Education Program at Beacon,460001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Brookline Early Education Program at Clark Road,460003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Brookline Early Education Program at Putterham,460002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Brookline High,460505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Edith C Baker,460005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Florida Ruffin Ridley School,460015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Heath,460025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - John D Runkle,460045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Lawrence,460030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Michael Driscoll,460020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - Pierce,460040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - The Lynch Center,460060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Brookline - William H Lincoln,460035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Burlington - Burlington High,480505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Burlington - Fox Hill,480007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Burlington - Francis Wyman Elementary,480035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Burlington - Marshall Simonds Middle,480303,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Burlington - Memorial,480015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Burlington - Pine Glen Elementary,480020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Amigos School,490006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Cambridge Rindge and Latin,490506,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Cambridge Street Upper School,490305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Cambridgeport,490007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Fletcher/Maynard Academy,490090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Graham and Parks,490080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Haggerty,490020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - John M Tobin,490065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Kennedy-Longfellow,490040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - King Open,490035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Maria L. Baldwin,490005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Martin Luther King Jr.,490030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Morse,490045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Peabody,490050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Putnam Avenue Upper School,490310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Rindge Avenue Upper School,490315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cambridge - Vassal Lane Upper School,490320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Canton - Canton High,500505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Canton - Dean S Luce,500020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Canton - John F Kennedy,500017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Canton - Lt Peter M Hansen,500012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Canton - Rodman Early Childhood Center,500010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Canton - Wm H Galvin Middle,500305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Carlisle - Carlisle School,510025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Carver - Carver Elementary School,520015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Carver - Carver Middle/High School,520405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Central Berkshire - Becket Washington School,6350005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Central Berkshire - Craneville,6350025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Central Berkshire - Kittredge,6350035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Central Berkshire - Nessacus Regional Middle School,6350305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Central Berkshire - Wahconah Regional High,6350505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - Byam School,560030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - Center Elementary School,560005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - Charles D Harrington,560025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - Chelmsford High,560505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - Col Moses Parker School,560305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - Community Education Center,560001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - McCarthy Middle School,560310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelmsford - South Row,560015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Chelsea High,570505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Chelsea Opportunity Academy,570515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Chelsea Virtual Learning Academy,570705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Clark Avenue School,570050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Edgar A Hooks Elementary,570030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Eugene Wright Science and Technology Academy,570045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Frank M Sokolowski Elementary,570040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - George F. Kelly Elementary,570035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Joseph A. Browne School,570055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - Shurtleff Early Childhood,570003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chelsea - William A Berkowitz Elementary,570025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Barry,610003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Belcher,610010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Bellamy Middle,610305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Bowe,610015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Bowie,610020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Chicopee Academy,610021,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Chicopee Comprehensive High School,610510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Chicopee High,610505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Dupont Middle,610310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Fairview Elementary,610050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Gen John J Stefanik,610090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Lambert-Lavoie,610040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Litwin,610022,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Streiber Memorial School,610065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Chicopee - Szetela Early Childhood Center,610001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,4370505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Clarksburg - Clarksburg Elementary,630010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Clinton - Clinton Elementary,640050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Clinton - Clinton Middle School,640305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Clinton - Clinton Senior High,640505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cohasset - Cohasset High School,650505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cohasset - Cohasset Middle School,650305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cohasset - Deer Hill,650005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Cohasset - Joseph Osgood,650010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Concord - Alcott,670005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Concord - Concord Middle,670305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Concord - Thoreau,670020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Concord - Willard,670030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Concord-Carlisle - Concord Carlisle High,6400505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Conway - Conway Grammar,680005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Danvers - Danvers High,710505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Danvers - Great Oak,710015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Danvers - Highlands,710010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Danvers - Holten Richmond Middle School,710305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Danvers - Ivan G Smith,710032,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Danvers - Riverside,710030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Danvers - Willis E Thorpe,710045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dartmouth - Andrew B. Cushman School,720005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dartmouth - Dartmouth High,720505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dartmouth - Dartmouth Middle,720050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dartmouth - George H Potter,720030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dartmouth - James M. Quinn School,720040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dartmouth - Joseph Demello,720015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dedham - Avery,730010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dedham - Dedham High,730505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dedham - Dedham Middle School,730305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dedham - Early Childhood Center,730005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dedham - Greenlodge,730025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dedham - Oakdale,730030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dedham - Riverdale,730045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Deerfield - Deerfield Elementary,740015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dennis-Yarmouth - Mattacheese Middle School,6450305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,6450050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dennis-Yarmouth - Station Avenue Elementary,6450025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dighton-Rehoboth - Dighton Elementary,6500005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dighton-Rehoboth - Dighton Middle School,6500305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,6500310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dighton-Rehoboth - Palmer River,6500010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Douglas - Douglas Elementary School,770015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Douglas - Douglas High School,770505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Douglas - Douglas Middle School,770305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Douglas - Douglas Primary School,770005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dover - Chickering,780005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,6550505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dracut - Brookside Elementary,790035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dracut - Dracut Senior High,790505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dracut - George H. Englesby Elementary School,790045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dracut - Greenmont Avenue,790030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dracut - Joseph A Campbell Elementary,790020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dracut - Justus C. Richardson Middle School,790410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley-Charlton Reg - Charlton Elementary,6580020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley-Charlton Reg - Charlton Middle School,6580310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley-Charlton Reg - Dudley Elementary,6580005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley-Charlton Reg - Dudley Middle School,6580305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley-Charlton Reg - Heritage School,6580030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley-Charlton Reg - Mason Road School,6580010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Duxbury - Alden School,820004,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Duxbury - Chandler Elementary,820006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Duxbury - Duxbury High,820505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Duxbury - Duxbury Middle,820305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Bridgewater - Central,830005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,830505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Bridgewater - Gordon W. Mitchell School,830010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Longmeadow - Birchland Park,870305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Longmeadow - East Longmeadow High,870505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Longmeadow - Mapleshade,870010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Longmeadow - Meadow Brook,870013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,East Longmeadow - Mountain View,870015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Eastham - Eastham Elementary,850005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easthampton - Center School,860005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easthampton - Easthampton High,860505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easthampton - Maple,860010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easthampton - Neil A Pepin,860020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easthampton - White Brook Middle School,860305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easton - Center School,880003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easton - Easton Middle School,880405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easton - Moreau Hall,880020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easton - Oliver Ames High,880505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easton - Parkview Elementary,880015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Easton - Richardson Olmsted School,880025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Edgartown - Edgartown Elementary,890005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Erving - Erving Elementary,910030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Adams School,930003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Devens School,930030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Everett High,930505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - George Keverian School,930028,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Lafayette School,930038,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Madeline English School,930018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Parlin School,930058,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Sumner G. Whittier School,930010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Webster Extension,930001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Everett - Webster School,930015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,4100205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fairhaven - East Fairhaven,940010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fairhaven - Fairhaven High,940505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fairhaven - Hastings Middle,940305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fairhaven - Leroy Wood,940030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - B M C Durfee High,950505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Carlton M. Viveiros Elementary School,950009,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Henry Lord Community School,950017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - James Tansey,950140,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - John J Doran,950045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Letourneau Elementary School,950013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Mary Fonseca Elementary School,950011,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Matthew J Kuss Middle,950320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Morton Middle,950315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - North End Elementary,950005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Resiliency Preparatory Academy,950525,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Samuel Watson,950145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Spencer Borden,950130,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Stone PK-12 School,950340,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - Talbot Innovation School,950305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fall River - William S Greene,950065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Falmouth - East Falmouth Elementary,960005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Falmouth - Falmouth High,960505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Falmouth - Lawrence,960405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Falmouth - Morse Pond School,960305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Falmouth - Mullen-Hall,960020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Falmouth - North Falmouth Elementary,960030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Falmouth - Teaticket,960015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Farmington River Reg - Farmington River Elementary,6620020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - Arthur M Longsjo Middle School,970315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - Crocker Elementary,970016,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - Fitchburg High,970505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - Goodrich Academy,970510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - McKay Arts Academy,970340,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - Memorial Middle School,970048,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - Reingold Elementary,970043,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Fitchburg - South Street Elementary,970060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Florida - Abbott Memorial,980005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Foxborough - Charles Taylor Elementary,990050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Foxborough - Foxborough High,990505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Foxborough - John J Ahern,990405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Foxborough - Mabelle M Burrell,990015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Foxborough - Vincent M Igo Elementary,990020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Barbieri Elementary,1000035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Brophy,1000006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Cameron Middle School,1000302,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Charlotte A Dunning,1000007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Framingham High School,1000515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Fuller Middle,1000305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Harmony Grove Elementary,1000055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Hemenway,1000015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Juniper Hill School,1000001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - King Elementary School,1000005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Mary E Stapleton Elementary,1000045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Miriam F McCarthy School,1000050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Potter Road,1000039,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Framingham - Walsh Middle,1000310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Annie Sullivan Middle School,1010040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Franklin Early Childhood Development Center,1010003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Franklin High,1010505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Helen Keller Elementary,1010012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Horace Mann,1010405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - J F Kennedy Memorial,1010013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Jefferson Elementary,1010010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Oak Street Elementary,1010030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Parmenter,1010032,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin - Remington Middle,1010310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Freetown-Lakeville - Apponequet Regional High,6650505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Freetown-Lakeville - Assawompset Elementary School,6650002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Freetown-Lakeville - Freetown Elementary School,6650001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Freetown-Lakeville - George R Austin Intermediate School,6650015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Frontier - Frontier Regional,6700505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gardner - Elm Street School,1030001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gardner - Gardner Academy for Learning and Technology,1030515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gardner - Gardner High,1030505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gardner - Gardner Middle School,1030405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gardner - Waterford Street,1030020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gateway - Chester Elementary,6720059,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gateway - Gateway Regional High,6720505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gateway - Gateway Regional Middle School,6720405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gateway - Littleville Elementary School,6720143,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Georgetown - Georgetown High School,1050505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Georgetown - Georgetown Middle School,1050305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Georgetown - Penn Brook,1050010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Georgetown - Perley Elementary,1050005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gill-Montague - Gill Elementary,6740005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gill-Montague - Great Falls Middle,6740310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gill-Montague - Hillcrest Elementary School,6740015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gill-Montague - Sheffield Elementary School,6740050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gill-Montague - Turners Fall High,6740505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - Beeman Memorial,1070010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - East Gloucester Elementary,1070020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - Gloucester High,1070505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - Gloucester PreSchool,1070025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - Plum Cove School,1070042,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - Ralph B O'Maley Middle,1070305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - Veterans Memorial,1070045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gloucester - West Parish,1070050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Gosnold - Cuttyhunk Elementary,1090005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Grafton - Grafton High School,1100505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Grafton - Grafton Middle,1100305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Grafton - Millbury Street Elementary School,1100200,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Grafton - North Grafton Elementary,1100025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Grafton - North Street Elementary School,1100030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Grafton - South Grafton Elementary,1100005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Granby - East Meadow,1110004,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Granby - Granby Jr Sr High School,1110505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greenfield - Discovery School at Four Corners,1140025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greenfield - Federal Street School,1140010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greenfield - Greenfield High,1140505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greenfield - Greenfield Middle,1140305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greenfield - Newton School,1140035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Greenfield - The Academy of Early Learning at North Parish,1140005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Groton-Dunstable - Boutwell School,6730001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Groton-Dunstable - Florence Roche School,6730010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Groton-Dunstable - Groton Dunstable Regional,6730505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Groton-Dunstable - Swallow/Union School,6730005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hadley - Hadley Elementary,1170015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hadley - Hopkins Academy,1170505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Halifax - Halifax Elementary,1180005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hamilton-Wenham - Bessie Buker Elementary,6750007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hamilton-Wenham - Cutler School,6750010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hamilton-Wenham - Miles River Middle,6750310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hamilton-Wenham - Winthrop School,6750015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden-Wilbraham - Green Meadows Elementary,6800005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden-Wilbraham - Mile Tree Elementary,6800025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden-Wilbraham - Minnechaug Regional High,6800505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden-Wilbraham - Soule Road,6800030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden-Wilbraham - Stony Hill School,6800050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampden-Wilbraham - Wilbraham Middle,6800310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hampshire - Hampshire Regional High,6830505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hancock - Hancock Elementary,1210005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hanover - Cedar Elementary,1220004,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hanover - Center Elementary,1220005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hanover - Hanover High,1220505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hanover - Hanover Middle,1220305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Harvard - Bromfield,1250505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Harvard - Hildreth Elementary School,1250005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hatfield - Hatfield Elementary,1270005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hatfield - Smith Academy,1270505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Bartlett School and Assessment Center,1280073,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Bradford Elementary,1280008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Caleb Dustin Hunking School,1280030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Consentino Middle School,1280100,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Crowell,1280515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Dr Paul Nettle,1280050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Golden Hill,1280026,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Greenleaf Academy,1280033,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Haverhill High,1280505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - John G Whittier,1280085,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Moody,1280045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Moody Preschool Extension,1280001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Pentucket Lake Elementary,1280054,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Silver Hill Elementary School,1280067,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Tilton,1280075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Tilton Upper Middle School,1280105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Haverhill - Walnut Square,1280080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hawlemont - Hawlemont Regional,6850005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hingham - East Elementary School,1310005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hingham - Hingham High,1310505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hingham - Hingham Middle School,1310410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hingham - Plymouth River,1310019,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hingham - South Elementary,1310020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hingham - Wm L Foster Elementary,1310010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holbrook - Holbrook Middle High School,1330505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holbrook - John F Kennedy,1330018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holland - Holland Elementary,1350005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holliston - Holliston High,1360505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holliston - Miller School,1360007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holliston - Placentino Elementary,1360010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holliston - Robert H. Adams Middle School,1360305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - E N White Elementary,1370045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - H.B. Lawrence School,1370070,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Holyoke High,1370505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Holyoke STEM Academy,1370320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Joseph Metcalf School,1370003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Kelly Elementary,1370040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Lt Clayre Sullivan Elementary,1370055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Lt Elmer J McMahon Elementary,1370015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Maurice A Donahue Elementary,1370060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Morgan Full Service Community School,1370025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - Veritas Prep Holyoke,1370075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke - William R. Peck School,1370030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,6030020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hoosac Valley Regional - Hoosac Valley High School,6030505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,6030315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopedale - Hopedale Jr Sr High,1380505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopedale - Memorial,1380010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopedale - Park Street School,1380003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopkinton - Elmwood,1390010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopkinton - Hopkins Elementary School,1390015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopkinton - Hopkinton High,1390505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopkinton - Hopkinton Middle School,1390305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopkinton - Hopkinton Pre-School,1390003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hopkinton - Marathon Elementary School,1390005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hudson - C A Farley,1410030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hudson - David J. Quinn Middle School,1410410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hudson - Forest Avenue Elementary,1410015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hudson - Hudson High,1410505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hudson - Mulready Elementary,1410007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hull - Hull High,1420505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hull - Lillian M Jacobs,1420015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Hull - Memorial Middle,1420305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ipswich - Ipswich High,1440505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ipswich - Ipswich Middle School,1440305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ipswich - Paul F Doyon Memorial,1440007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ipswich - Winthrop,1440015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,King Philip - King Philip Middle School,6900510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,King Philip - King Philip Regional High,6900505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Kingston - Kingston Elementary,1450005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Kingston - Kingston Intermediate,1450020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Alexander B Bruce,1490015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Arlington Elementary,1490009,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Arlington Middle School,1490017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Edward F. Parthum,1490053,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Emily G Wetherbee,1490080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Francis M Leahy,1490040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Frost Middle School,1490525,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Gerard A. Guilmette,1490022,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Guilmette Middle School,1490025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - High School Learning Center,1490536,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - James F Hennessey,1490020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - John Breen School,1490003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - John K Tarbox,1490075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Lawlor Early Childhood Center,1490002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Lawrence Family Public Academy,1490011,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Lawrence High School,1490515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Oliver Partnership School,1490048,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Parthum Middle School,1490027,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - RISE Academy,1490615,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Robert Frost,1490018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Rollins Early Childhood Center,1490001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - School for Exceptional Studies,1490537,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - South Lawrence East Elementary School,1490004,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - Spark Academy,1490085,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - UP Academy Leonard Middle School,1490090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence - UP Academy Oliver Middle School,1490049,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,4860105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lee - Lee Elementary,1500025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lee - Lee Middle/High School,1500505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leicester - Leicester Elementary,1510005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leicester - Leicester High,1510505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leicester - Leicester Integrated Preschool,1510001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leicester - Leicester Middle,1510015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lenox - Lenox Memorial High,1520505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lenox - Morris,1520015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Bennett,1530003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Center For Technical Education Innovation,1530605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Fall Brook,1530007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Frances Drake School,1530010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Johnny Appleseed,1530025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Leominster Center for Excellence,1530515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Leominster High School,1530505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Lincoln School,1530005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Northwest,1530030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Priest Street,1530040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Samoset School,1530045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leominster - Sky View Middle School,1530320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Leverett - Leverett Elementary,1540005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Bowman,1550008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Bridge,1550006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Fiske,1550015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Harrington,1550030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Jonas Clarke Middle,1550305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Joseph Estabrook,1550010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Lexington Children's Place,1550001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Lexington High,1550505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Maria Hastings,1550035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lexington - Wm Diamond Middle,1550310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lincoln - Hanscom Middle,1570305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lincoln - Hanscom Primary,1570006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lincoln - Lincoln School,1570025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Littleton - Littleton High School,1580505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Littleton - Littleton Middle School,1580305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Littleton - Russell St Elementary,1580015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Littleton - Shaker Lane Elementary,1580005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Longmeadow - Blueberry Hill,1590005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Longmeadow - Center,1590010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Longmeadow - Glenbrook Middle,1590017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Longmeadow - Longmeadow High,1590505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Longmeadow - Williams Middle,1590305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Longmeadow - Wolf Swamp Road,1590025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Abraham Lincoln,1600020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - B.F. Butler Middle School,1600310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Bartlett Community Partnership,1600090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Cardinal O'Connell Early Learning Center,1600001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Charles W Morey,1600030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Charlotte M Murkland Elementary,1600080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Dr An Wang School,1600345,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Dr Gertrude Bailey,1600002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Dr. Janice Adie Day School,1600605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Greenhalge,1600015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Henry J Robinson Middle,1600330,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - James S Daley Middle School,1600315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - James Sullivan Middle School,1600340,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - John J Shaughnessy,1600050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Joseph McAvinnue,1600010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Kathryn P. Stoklosa Middle School,1600360,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Laura Lee Therapeutic Day School,1600085,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Leblanc Therapeutic Day School,1600320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Lowell High,1600505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Moody Elementary,1600027,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Pawtucketville Memorial,1600036,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Peter W Reilly,1600040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Pyne Arts,1600018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Rogers STEM Academy,1600005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - S Christa McAuliffe Elementary,1600075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - The Career Academy,1600515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell - Washington,1600055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ludlow - East Street Elementary School,1610010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ludlow - Harris Brook Elementary School,1610665,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ludlow - Ludlow Senior High,1610505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ludlow - Paul R Baird Middle,1610305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lunenburg - Advanced Community Experience Program,1620605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lunenburg - Lunenburg High,1620505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lunenburg - Lunenburg Middle School,1620305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lunenburg - Lunenburg Primary School,1620010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lunenburg - Turkey Hill Elementary School,1620025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - A Drewicz Elementary,1630016,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Aborn,1630011,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Breed Middle School,1630405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Brickett Elementary,1630020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Capt William G Shoemaker,1630090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Classical High,1630505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Cobbet Elementary,1630035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - E J Harrington,1630045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Edward A Sisson,1630095,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,1630525,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Hood,1630055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Ingalls,1630060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Julia F Callahan,1630030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Lincoln-Thomson,1630070,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Lynn English High,1630510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Lynn Vocational Technical Institute,1630605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Lynn Woods,1630075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Pickering Middle,1630420,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Robert L Ford,1630050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Sewell-Anderson,1630085,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Thurgood Marshall Mid,1630305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Tracy,1630100,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Washington Elementary School,1630005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - William R Fallon,1630080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynn - Wm P Connery,1630040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynnfield - Huckleberry Hill,1640010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynnfield - Lynnfield High,1640505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynnfield - Lynnfield Middle School,1640405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynnfield - Lynnfield Preschool,1640005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Lynnfield - Summer Street,1640020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Malden - Beebe,1650003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Malden - Ferryway,1650013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Malden - Forestdale,1650027,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Malden - Linden,1650047,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Malden - Malden Early Learning Center,1650049,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Malden - Malden High,1650505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Malden - Salemwood,1650057,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Manchester Essex Regional - Essex Elementary,6980020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,6980510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,6980010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mansfield - Everett W Robinson,1670007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mansfield - Harold L Qualters Middle,1670035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mansfield - Jordan/Jackson Elementary,1670014,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mansfield - Mansfield High,1670505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mansfield - Roland Green School,1670003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marblehead - Glover,1680020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marblehead - Lucretia and Joseph Brown School,1680030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marblehead - Marblehead High,1680505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marblehead - Marblehead Veterans Middle School,1680300,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marblehead - Village School,1680016,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marion - Sippican,1690005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,1700045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marlborough - Charles Jaworek School,1700030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marlborough - Early Childhood Center,1700006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marlborough - Francis J Kane,1700008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marlborough - Goodnow Brothers Elementary School,1700020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marlborough - Marlborough High,1700505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marlborough - Richer,1700025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marshfield - Daniel Webster,1710015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marshfield - Eames Way School,1710005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marshfield - Furnace Brook Middle,1710310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marshfield - Gov Edward Winslow,1710020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marshfield - Marshfield High,1710505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marshfield - Martinson Elementary,1710025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Marshfield - South River,1710010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,7000505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Masconomet - Masconomet Regional High School,7050505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Masconomet - Masconomet Regional Middle School,7050405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mashpee - Kenneth Coombs School,1720005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mashpee - Mashpee High,1720505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mashpee - Mashpee Middle School,1720020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mashpee - Quashnet School,1720035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mattapoisett - Center,1730005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mattapoisett - Old Hammondtown,1730010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Maynard - Fowler School,1740305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Maynard - Green Meadow,1740010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Maynard - Maynard High,1740505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medfield - Dale Street,1750005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medfield - Medfield Senior High,1750505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medfield - Memorial School,1750003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medfield - Ralph Wheelock School,1750007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medfield - Thomas Blake Middle,1750305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - Brooks School,1760130,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - Curtis-Tufts,1760510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - John J McGlynn Elementary School,1760068,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - John J. McGlynn Middle School,1760320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - Madeleine Dugger Andrews,1760315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - Medford High,1760505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - Milton Fuller Roberts,1760150,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medford - Missituk Elementary School,1760140,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medway - Burke/Memorial Elementary School,1770015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medway - John D Mc Govern Elementary,1770013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medway - Medway High,1770505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Medway - Medway Middle,1770305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Early Childhood Center,1780003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Herbert Clark Hoover,1780017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Horace Mann,1780025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Lincoln,1780020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Melrose High,1780505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Melrose Middle,1780305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Roosevelt,1780035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Melrose - Winthrop,1780050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mendon-Upton - Henry P Clough,7100179,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mendon-Upton - Memorial School,7100001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mendon-Upton - Miscoe Hill School,7100015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mendon-Upton - Nipmuc Regional High,7100510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Methuen - Comprehensive Grammar School,1810050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Methuen - Donald P Timony Grammar,1810060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Methuen - Marsh Grammar School,1810030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Methuen - Methuen High,1810505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Methuen - Tenney Grammar School,1810055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Middleborough - Henry B. Burkland Elementary School,1820008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Middleborough - John T. Nichols Middle,1820305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Middleborough - Mary K. Goode Elementary School,1820010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Middleborough - Memorial Early Childhood Center,1820011,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Middleborough - Middleborough High,1820505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Middleton - Fuller Meadow,1840003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Middleton - Howe-Manning,1840005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milford - Brookside,1850065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milford - Memorial,1850010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milford - Milford High,1850505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milford - Shining Star Early Childhood Center,1850075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milford - Stacy Middle,1850305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milford - Woodland,1850090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Millbury - Elmwood Street,1860017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Millbury - Millbury Junior/Senior High,1860505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Millbury - Raymond E. Shaw Elementary,1860025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Millis - Clyde F Brown,1870005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Millis - Millis High School,1870505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Millis - Millis Middle,1870020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milton - Charles S Pierce Middle,1890410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milton - Collicot,1890005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milton - Cunningham School,1890007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milton - Glover,1890010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milton - Milton High,1890505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Milton - Tucker,1890020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mohawk Trail - Buckland-Shelburne Regional,7170005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mohawk Trail - Colrain Central,7170010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mohawk Trail - Mohawk Trail Regional School,7170505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mohawk Trail - Sanderson Academy,7170020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Monomoy Regional School District - Chatham Elementary School,7120001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Monomoy Regional School District - Harwich Elementary School,7120002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Monomoy Regional School District - Monomoy Regional High School,7120515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,7120315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Monson - Granite Valley School,1910030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Monson - Monson High School,1910505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Monson - Quarry Hill Community School,1910010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mount Greylock - Lanesborough Elementary,7150005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mount Greylock - Mt Greylock Regional High,7150505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mount Greylock - Williamstown Elementary,7150010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nahant - Johnson,1960010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nantucket - Cyrus Peirce,1970010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nantucket - Nantucket Elementary,1970005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nantucket - Nantucket High,1970505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nantucket - Nantucket Intermediate School,1970020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Narragansett - Narragansett Middle,7200305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Narragansett - Narragansett Regional High,7200505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Narragansett - Templeton Elementary School,7200020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nashoba - Center School,7250020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nashoba - Florence Sawyer School,7250025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nashoba - Hale,7250310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nashoba - Luther Burbank Middle School,7250305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nashoba - Mary Rowlandson Elementary,7250010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nashoba - Nashoba Regional,7250505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - Bennett-Hemenway,1980005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - Brown,1980010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - J F Kennedy Middle School,1980305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - Johnson,1980031,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - Lilja Elementary,1980035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - Memorial,1980043,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - Natick High,1980505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Natick - Wilson Middle,1980310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nauset - Nauset Regional High,6600505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Nauset - Nauset Regional Middle,6600305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - Broadmeadow,1990005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - High Rock School,1990410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - John Eliot,1990020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - Needham High,1990505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - Newman Elementary,1990050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - Pollard Middle,1990405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - Sunita L. Williams Elementary,1990035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Needham - William Mitchell,1990040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Abraham Lincoln,2010095,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Alfred J Gomes,2010063,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Betsey B Winslow,2010140,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Carlos Pacheco,2010105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Casimir Pulaski,2010123,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Charles S Ashley,2010010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Elizabeth Carter Brooks,2010015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Ellen R Hathaway,2010075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Elwyn G Campbell,2010020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Hayden/McFadden,2010078,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Irwin M. Jacobs Elementary School,2010070,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - James B Congdon,2010040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Jireh Swift,2010130,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - John Avery Parker,2010115,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - John B Devalles,2010050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Keith Middle School,2010405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - New Bedford High,2010505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Normandin Middle School,2010410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Renaissance Community Innovation School,2010124,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Roosevelt Middle School,2010415,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Sgt Wm H Carney Academy,2010045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Thomas R Rodman,2010125,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Trinity Day Academy,2010510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - Whaling City Junior/Senior High School,2010515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Bedford - William H Taylor,2010135,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,New Salem-Wendell - Swift River,7280015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newburyport - Edward G. Molin Elementary School,2040030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newburyport - Francis T Bresnahan Elementary,2040005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newburyport - Newburyport High,2040505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newburyport - Rupert A Nock Middle,2040305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - A E Angier,2070005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Bigelow Middle,2070305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Bowen,2070015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - C C Burr,2070020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Cabot,2070025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Charles E Brown Middle,2070310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Countryside,2070040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - F A Day Middle,2070315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Franklin,2070055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Horace Mann,2070075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - John Ward,2070120,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Lincoln-Eliot,2070070,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Mason-Rice,2070080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Memorial Spaulding,2070105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Newton Early Childhood Program,2070108,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Newton North High,2070505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Newton South High,2070510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Oak Hill Middle,2070320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Peirce,2070100,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Underwood,2070115,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Williams,2070125,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Newton - Zervas,2070130,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norfolk - Freeman-Kennedy School,2080005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norfolk - H Olive Day,2080015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,9150705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Adams - Brayton,2090035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Adams - Colegrove Park Elementary,2090008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Adams - Drury High,2090505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Adams - Greylock,2090015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - Anne Bradstreet Early Childhood Center,2110005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - Annie L Sargent School,2110018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - Atkinson,2110001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - Franklin,2110010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - Kittredge,2110015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - North Andover High,2110505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - North Andover Middle,2110305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Andover - Thomson,2110020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - Amvet Boulevard,2120007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - Community,2120030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - Falls,2120010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - Joseph W Martin Jr Elementary,2120013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - North Attleboro High,2120505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - North Attleborough Early Learning Center,2120020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - North Attleborough Middle,2120305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Attleborough - Roosevelt Avenue,2120015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Brookfield - North Brookfield Elementary,2150015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Brookfield - North Brookfield High,2150505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Middlesex - Ashby Elementary,7350010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Middlesex - Hawthorne Brook,7350030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Middlesex - Nissitissit Middle School,7350310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Middlesex - North Middlesex Regional,7350505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Middlesex - Spaulding Memorial,7350005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Middlesex - Squannacook Early Childhood Center,7350002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Middlesex - Varnum Brook,7350035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Reading - E Ethel Little School,2170003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Reading - J Turner Hood,2170010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Reading - L D Batchelder,2170005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Reading - North Reading High,2170505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,North Reading - North Reading Middle,2170305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northampton - Bridge Street,2100005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northampton - Jackson Street,2100020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northampton - John F Kennedy Middle School,2100410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northampton - Leeds,2100025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northampton - Northampton High,2100505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northampton - R. K. Finn Ryan Road,2100029,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northboro-Southboro - Algonquin Regional High,7300505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northborough - Fannie E Proctor,2130015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northborough - Lincoln Street,2130003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northborough - Marguerite E Peaslee,2130014,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northborough - Marion E Zeh,2130020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northborough - Robert E. Melican Middle School,2130305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northbridge - Northbridge Elementary School,2140001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northbridge - Northbridge High,2140505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northbridge - Northbridge Middle,2140305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norton - Henri A. Yelle,2180060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norton - J C Solmonese,2180015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norton - L G Nourse Elementary,2180010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norton - Norton High,2180505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norton - Norton Middle,2180305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwell - Grace Farrar Cole,2190005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwell - Norwell High,2190505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwell - Norwell Middle School,2190405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwell - William G Vinal,2190020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - Balch,2200005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - Charles J Prescott,2200025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - Cornelius M Callahan,2200010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - Dr. Philip O. Coakley Middle School,2200305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - F A Cleveland,2200015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - George F. Willett,2200075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - John P Oldham,2200020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Norwood - Norwood High,2200505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Oak Bluffs - Oak Bluffs Elementary,2210005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Old Rochester - Old Rochester Regional High,7400505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Old Rochester - Old Rochester Regional Jr High,7400405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Orange - Dexter Park,2230010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Orange - Fisher Hill,2230015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Orleans - Orleans Elementary,2240005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Oxford - Alfred M Chaffee,2260010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Oxford - Clara Barton,2260005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Oxford - Oxford High,2260505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Oxford - Oxford Middle,2260405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Palmer - Old Mill Pond,2270008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Palmer - Palmer High,2270505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - Captain Samuel Brown,2290005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - Center,2290015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - J Henry Higgins Middle,2290305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - John E Burke,2290007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - John E. McCarthy,2290016,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),2290705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - Peabody Veterans Memorial High,2290510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - South Memorial,2290035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - Thomas Carroll,2290010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - West Memorial,2290045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Peabody - William A Welch Sr,2290027,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pelham - Pelham Elementary,2300005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pembroke - Bryantville Elementary,2310003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pembroke - Hobomock Elementary,2310010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pembroke - North Pembroke Elementary,2310015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pembroke - Pembroke Community Middle School,2310305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pembroke - Pembroke High School,2310505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pentucket - Dr Frederick N Sweetsir,7450020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pentucket - Dr John C Page School,7450015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pentucket - Elmer S Bagnall,7450005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pentucket - Helen R Donaghue School,7450010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pentucket - Pentucket Regional Middle,7450405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pentucket - Pentucket Regional Sr High,7450505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Petersham - Petersham Center,2340005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pioneer Valley - Bernardston Elementary,7500006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pioneer Valley - Northfield Elementary,7500008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pioneer Valley - Pioneer Valley Regional,7500505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Allendale,2360010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Crosby,2360065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Crosby Educational Academy,2360030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Eagle Education Academy,2360525,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Egremont,2360035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - John T Reid Middle,2360305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Morningside Community School,2360055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Pittsfield High,2360505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Pittsfield Public Virtual Academy,2360705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Robert T. Capeless Elementary School,2360045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Silvio O Conte Community,2360105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Stearns,2360090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Taconic High,2360510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Theodore Herberg Middle,2360310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Pittsfield - Williams,2360100,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plainville - Anna Ware Jackson,2380010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plainville - Beatrice H Wood Elementary,2380005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Cold Spring,2390005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Federal Furnace School,2390011,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Hedge,2390010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Indian Brook,2390012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Manomet Elementary,2390015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Nathaniel Morton Elementary,2390030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Plymouth Commun Intermediate,2390405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Plymouth Early Childhood Center,2390003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Plymouth North High,2390505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Plymouth South High,2390515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - Plymouth South Middle,2390305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - South Elementary,2390046,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plymouth - West Elementary,2390047,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Plympton - Dennett Elementary,2400010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Provincetown - Provincetown Schools,2420020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quabbin - Hardwick Elementary,7530005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quabbin - Hubbardston Center,7530010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quabbin - New Braintree Grade,7530020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quabbin - Oakham Center,7530025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quabbin - Quabbin Regional High School,7530505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quabbin - Quabbin Regional Middle School,7530405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quabbin - Ruggles Lane,7530030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quaboag Regional - Quaboag Regional High,7780505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quaboag Regional - Warren Elementary,7780005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quaboag Regional - West Brookfield Elementary,7780010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Atherton Hough,2430040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Atlantic Middle,2430305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Beechwood Knoll Elementary,2430020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Broad Meadows Middle,2430310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Central Middle,2430315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Charles A Bernazzani Elementary,2430025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Clifford H Marshall Elementary,2430055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Francis W Parker,2430075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Lincoln-Hancock Community School,2430035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Merrymount,2430060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Montclair,2430065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - North Quincy High,2430510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Point Webster Middle,2430325,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Quincy High,2430505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Snug Harbor Community School,2430090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - South West Middle School,2430320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Squantum,2430095,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Quincy - Wollaston School,2430110,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ralph C Mahar - Ralph C Mahar Regional,7550505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Randolph - Elizabeth G Lyons Elementary,2440020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Randolph - J F Kennedy Elementary,2440018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Randolph - Margaret L Donovan,2440015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Randolph - Martin E Young Elementary,2440040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Randolph - Randolph Community Middle,2440410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Randolph - Randolph High,2440505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - Alice M Barrows,2460002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - Arthur W Coolidge Middle,2460305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - Birch Meadow,2460005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - J Warren Killam,2460017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - Joshua Eaton,2460010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - Reading Memorial High,2460505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - RISE PreSchool,2460001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - Walter S Parker Middle,2460310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Reading - Wood End Elementary School,2460020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - A. C. Whelan Elementary School,2480003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Abraham Lincoln,2480025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Beachmont Veterans Memorial School,2480013,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Garfield Elementary School,2480056,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Garfield Middle School,2480057,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Paul Revere,2480050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Revere High,2480505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Rumney Marsh Academy,2480014,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Seacoast School,2480520,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Staff Sargent James J. Hill Elementary School,2480035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Revere - Susan B. Anthony Middle School,2480305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Richmond - Richmond Consolidated,2490005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,River Valley Charter (District) - River Valley Charter School,4820050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rochester - Rochester Memorial,2500005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockland - Jefferson Elementary School,2510060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockland - John W Rogers Middle,2510305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockland - Memorial Park,2510020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockland - R Stewart Esten,2510025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockland - Rockland Senior High,2510505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockport - Rockport Elementary,2520005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockport - Rockport High,2520510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rockport - Rockport Middle,2520305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Rowe - Rowe Elementary,2530005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Bates,2580003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Bentley Academy Innovation School,2580010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Carlton,2580015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Collins Middle,2580305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Horace Mann Laboratory,2580030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - New Liberty Innovation School,2580510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Salem Early Childhood,2580001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Salem High,2580505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Salem Prep High School,2580515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Saltonstall School,2580050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem - Witchcraft Heights,2580070,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,4850485,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sandwich - Forestdale School,2610002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sandwich - Oak Ridge,2610025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sandwich - Sandwich High,2610505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sandwich - Sandwich STEM Academy,2610305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Saugus - Belmonte STEAM Academy,2620060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Saugus - Saugus High,2620505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Saugus - Saugus Middle School,2620305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Saugus - Veterans Early Learning Center,2620065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Savoy - Emma L Miller Elementary School,2630010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Scituate - Cushing Elementary,2640007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Scituate - Gates Middle School,2640305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Scituate - Hatherly Elementary,2640010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Scituate - Jenkins Elementary School,2640015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Scituate - Scituate High School,2640505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Scituate - Wampatuck Elementary,2640020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Seekonk - George R Martin,2650007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Seekonk - Mildred Aitken School,2650015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Seekonk - Seekonk High,2650505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sharon - Cottage Street,2660005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sharon - East Elementary,2660010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sharon - Heights Elementary,2660015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sharon - Sharon Early Childhood Center,2660001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sharon - Sharon High,2660505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sharon - Sharon Middle,2660305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sherborn - Pine Hill,2690010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Calvin Coolidge School,2710015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Floral Street School,2710020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Major Howard W. Beal School,2710005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Oak Middle School,2710030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Parker Road Preschool,2710040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Sherwood Middle School,2710305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Shrewsbury High School,2710505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Spring Street School,2710035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shrewsbury - Walter J. Paton School,2710025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Shutesbury - Shutesbury Elementary,2720005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Silver Lake - Silver Lake Regional High,7600505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Silver Lake - Silver Lake Regional Middle School,7600405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerset - Chace Street,2730005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerset - North Elementary,2730008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerset - Somerset Middle School,2730305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerset - South,2730015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Arthur D Healey,2740075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Benjamin G Brown,2740015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Capuano Early Childhood Center,2740005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - E Somerville Community,2740111,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Full Circle High School,2740510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - John F Kennedy,2740083,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Next Wave Junior High,2740410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Somerville High,2740505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - West Somerville Neighborhood,2740115,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Somerville - Winter Hill Community,2740120,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,South Hadley - Michael E. Smith Middle School,2780305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,South Hadley - Mosier,2780020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,South Hadley - Plains Elementary,2780015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,South Hadley - South Hadley High,2780505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,4880550,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southampton - William E Norris,2750005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southborough - Albert S. Woodward Memorial School,2760050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southborough - Margaret A Neary,2760020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southborough - Mary E Finn School,2760008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southborough - P Brent Trottier,2760305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southbridge - Charlton Street,2770005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southbridge - Eastford Road,2770010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southbridge - Southbridge Academy,2770525,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southbridge - Southbridge High School,2770515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southbridge - Southbridge Middle School,2770315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southbridge - West Street,2770020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southern Berkshire - Mt Everett Regional,7650505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southern Berkshire - New Marlborough Central,7650018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southern Berkshire - South Egremont,7650030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southern Berkshire - Undermountain,7650035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,8760605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Spencer-E Brookfield - David Prouty High,7670505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Spencer-E Brookfield - East Brookfield Elementary,7670008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Spencer-E Brookfield - Knox Trail Middle School,7670415,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Spencer-E Brookfield - Wire Village School,7670040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Alice B Beal Elementary,2810175,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Arthur T Talmadge,2810165,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Brightwood,2810025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Conservatory of the Arts,2810475,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Daniel B Brunton,2810035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Early Childhood Education Center,2810001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Edward P. Boland School,2810010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Elias Brookings,2810030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Emergence Academy,2810318,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Forest Park Middle,2810325,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Frank H Freedman,2810075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Frederick Harris,2810080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Gateway to College at Holyoke Community College,2810575,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Gateway to College at Springfield Technical Community College,2810580,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - German Gerena Community School,2810195,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Glenwood,2810065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Glickman Elementary,2810068,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - High School Of Commerce,2810510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Hiram L Dorman,2810050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Homer Street,2810085,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Impact Prep at Chestnut,2810366,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Indian Orchard Elementary,2810100,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - John F Kennedy Middle,2810328,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - John J Duggan Middle,2810320,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Kensington International School,2810110,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Kiley Academy,2810316,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Kiley Prep,2810315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Liberty,2810115,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Liberty Preparatory Academy,2810560,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Lincoln,2810120,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Lyceum Academy,2810317,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - M Marcus Kiley Middle,2810330,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Margaret C Ells,2810060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,2810125,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Mary M Lynch,2810140,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Mary M Walsh,2810155,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Mary O Pottenger,2810145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Milton Bradley School,2810023,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Rebecca M Johnson,2810055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Rise Academy at Van Sickle,2810480,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Samuel Bowles,2810020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - South End Middle School,2810355,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield Central High,2810500,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield High School,2810570,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield High School of Science and Technology,2810530,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield International Academy at Johnson,2810215,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield International Academy at Sci-Tech,2810700,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield Middle School,2810360,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield Public Day Elementary School,2810005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield Public Day High School,2810550,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield Public Day Middle School,2810345,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield Realization Academy,2810335,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Springfield Transition Academy,2810675,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - STEM Middle Academy,2810350,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Sumner Avenue,2810160,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - The Springfield Virtual School,2810705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Thomas M Balliet,2810015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Van Sickle Academy,2810485,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Warner,2810180,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - Washington,2810185,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - White Street,2810190,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield - William N. DeBerry,2810045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield International Charter (District) - Springfield International Charter School,4410505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoneham - Colonial Park,2840005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoneham - Robin Hood,2840025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoneham - South,2840030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoneham - Stoneham Central Middle School,2840405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoneham - Stoneham High,2840505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - Edwin A Jones Early Childhood Center,2850012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - Helen Hansen Elementary,2850010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - Joseph H Gibbons,2850025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - Joseph R Dawe Jr Elementary,2850014,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - O'Donnell Middle School,2850405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - Richard L. Wilkins Elementary School,2850020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - South Elementary,2850015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Stoughton - Stoughton High,2850505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sturbridge - Burgess Elementary,2870005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sudbury - Ephraim Curtis Middle,2880305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sudbury - General John Nixon Elementary,2880025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sudbury - Israel Loring School,2880015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sudbury - Josiah Haynes,2880010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sudbury - Peter Noyes,2880030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sunderland - Sunderland Elementary,2890005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sutton - Sutton Early Learning,2900003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sutton - Sutton Elementary,2900005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sutton - Sutton High School,2900510,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Sutton - Sutton Middle School,2900305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swampscott - Clarke,2910005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swampscott - Hadley,2910010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swampscott - Stanley,2910020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swampscott - Swampscott High,2910505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swampscott - Swampscott Middle,2910305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swansea - Elizabeth S Brown,2920006,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swansea - Gardner,2920015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swansea - Joseph Case High,2920505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swansea - Joseph Case Jr High,2920305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swansea - Joseph G Luther,2920020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Swansea - Mark G Hoyle Elementary,2920017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tantasqua - Tantasqua Regional Jr High,7700405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tantasqua - Tantasqua Regional Sr High,7700505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tantasqua - Tantasqua Regional Vocational,7700605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Benjamin Friedman Middle,2930315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - East Taunton Elementary,2930010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Edmund Hatch Bennett,2930007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Edward F. Leddy Preschool,2930005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Elizabeth Pole,2930027,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - H H Galligan,2930057,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - James L. Mulcahey Elementary School,2930015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - John F Parker Middle,2930305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Joseph C Chamberlain,2930008,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Joseph H Martin,2930042,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Taunton Alternative High School,2930525,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Taunton - Taunton High,2930505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tewksbury - Heath-Brook,2950010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tewksbury - John F. Ryan,2950023,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tewksbury - John W. Wynn Middle,2950305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tewksbury - L F Dewing,2950001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tewksbury - Louise Davy Trahan,2950025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tewksbury - North Street,2950020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tewksbury - Tewksbury Memorial High,2950505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tisbury - Tisbury Elementary,2960005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Topsfield - Proctor Elementary,2980005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Topsfield - Steward Elementary,2980010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Triton - Newbury Elementary,7730020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Triton - Pine Grove,7730025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Triton - Salisbury Elementary,7730015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Triton - Triton Regional High School,7730505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Triton - Triton Regional Middle School,7730405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Truro - Truro Central,3000005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tyngsborough - Tyngsborough Elementary,3010020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tyngsborough - Tyngsborough High School,3010505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Tyngsborough - Tyngsborough Middle,3010305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Up-Island Regional - Chilmark Elementary,7740010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Up-Island Regional - West Tisbury Elementary,7740020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Uxbridge - Gateway to College,3040515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Uxbridge - Taft Early Learning Center,3040005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Uxbridge - Uxbridge High,3040505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Uxbridge - Whitin Intermediate,3040405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Central Tree Middle,7750310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Chocksett Middle School,7750315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Davis Hill Elementary,7750018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Dawson,7750020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Early Childhood Center,7750001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Glenwood Elementary School,7750060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Houghton Elementary,7750027,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Leroy E.Mayo,7750032,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Mountview Middle,7750305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Naquag Elementary School,7750005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Paxton Center,7750040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Thomas Prince,7750045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wachusett - Wachusett Regional High,7750505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wakefield - Dolbeare,3050005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wakefield - Early Childhood Center at the Doyle School,3050001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wakefield - Galvin Middle School,3050310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wakefield - Greenwood,3050020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wakefield - Wakefield Memorial High,3050505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wakefield - Walton,3050040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wakefield - Woodville School,3050015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wales - Wales Elementary,3060005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Bird Middle,3070305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Boyden,3070010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Daniel Feeney Preschool Center,3070002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Eleanor N Johnson Middle,3070310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Elm Street School,3070005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Fisher,3070015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Old Post Road,3070018,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Walpole - Walpole High,3070505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - Douglas MacArthur Elementary School,3080032,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - Henry Whittemore Elementary School,3080065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - James Fitzgerald Elementary School,3080060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - John F Kennedy Middle,3080404,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - John W. McDevitt Middle School,3080415,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - Northeast Elementary School,3080040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - Thomas R Plympton Elementary School,3080050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - Waltham Public Schools Dual Language Program,3080001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - Waltham Sr High,3080505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Waltham - William F. Stanley Elementary School,3080005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ware - Stanley M Koziol Elementary School,3090020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ware - Ware Junior/Senior High School,3090505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Ware - Ware Middle School,3090305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wareham - John William Decas,3100003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wareham - Minot Forest,3100017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wareham - Wareham Cooperative Alternative School,3100315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wareham - Wareham Middle,3100305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wareham - Wareham Senior High,3100505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Watertown - Cunniff,3140015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Watertown - Hosmer,3140020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Watertown - James Russell Lowell,3140025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Watertown - Watertown High,3140505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Watertown - Watertown Middle,3140305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wayland - Claypit Hill School,3150005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wayland - Happy Hollow School,3150015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wayland - Loker School,3150020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wayland - Wayland High School,3150505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wayland - Wayland Middle School,3150305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Webster - Bartlett High School,3160505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Webster - Park Avenue Elementary,3160015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Webster - Webster Middle School,3160315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Ernest F Upham,3170050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Hunnewell,3170025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - John D Hardy,3170020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Joseph E Fiske,3170015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Katharine Lee Bates,3170005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Preschool at Wellesley Schools,3170001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Schofield,3170045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Sprague Elementary School,3170048,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Wellesley Middle,3170305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellesley - Wellesley Sr High,3170505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wellfleet - Wellfleet Elementary,3180005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Boylston - Major Edwards Elementary,3220005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Boylston - West Boylston Junior/Senior High,3220505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Bridgewater - Howard School,3230305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Bridgewater - Rose L Macdonald,3230003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Bridgewater - Spring Street School,3230005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Bridgewater - West Bridgewater Junior/Senior,3230505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - Cowing Early Childhood,3320001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - John Ashley,3320005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - John R Fausey,3320010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - Memorial,3320025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - Mittineague,3320030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - Philip G Coburn,3320007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - Tatham,3320040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - West Springfield High,3320505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,West Springfield - West Springfield Middle,3320305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westborough - Annie E Fales,3210010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westborough - Elsie A Hastings Elementary,3210025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westborough - J Harding Armstrong,3210005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westborough - Mill Pond School,3210045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westborough - Sarah W Gibbons Middle,3210305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westborough - Westborough High,3210505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Abner Gibbs,3250020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Fort Meadow Early Childhood Center,3250003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Franklin Ave,3250015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Highland,3250025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Munger Hill,3250033,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Paper Mill,3250036,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Southampton Road,3250040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Westfield High,3250505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Westfield Intermediate School,3250075,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Westfield Middle School,3250310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Westfield Technical Academy,3250605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westfield - Westfield Virtual School,3250705,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Abbot Elementary,3260004,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Blanchard Middle,3260310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Col John Robinson,3260025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Day Elementary,3260007,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - John A. Crisafulli Elementary School,3260045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Nabnasset,3260015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Rita E. Miller Elementary School,3260055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Stony Brook School,3260330,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westford - Westford Academy,3260505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westhampton - Westhampton Elementary School,3270005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weston - Country,3300010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weston - Field Elementary School,3300012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weston - Weston High,3300505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weston - Weston Middle,3300305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weston - Woodland,3300015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westport - Alice A Macomber,3310015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westport - Westport Elementary,3310030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westport - Westport Middle-High School,3310515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - Deerfield School,3350010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - Downey,3350012,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - E W Thurston Middle,3350305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - Martha Jones,3350017,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - Paul Hanlon,3350015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - Westwood High,3350505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - Westwood Integrated Preschool,3350050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Westwood - William E Sheehan,3350025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Abigail Adams Middle School,3360310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Academy Avenue,3360005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Frederick C Murphy,3360050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Johnson Early Childhood Center,3360003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Lawrence W Pingree,3360065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Ralph Talbot,3360085,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Thomas V Nash,3360060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Thomas W. Hamilton Primary School,3360105,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Wessagusset,3360110,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - Weymouth High School,3360505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Weymouth - William Seach,3360080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whately - Whately Elementary,3370005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whitman-Hanson - Hanson Middle School,7800315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whitman-Hanson - Indian Head,7800035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whitman-Hanson - John H Duval,7800030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whitman-Hanson - Louise A Conley,7800010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,7800001,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whitman-Hanson - Whitman Hanson Regional,7800505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whitman-Hanson - Whitman Middle,7800310,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Williamsburg - Anne T. Dunphy School,3400020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - Boutwell,3420005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - North Intermediate,3420060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - Shawsheen Elementary,3420025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - West Intermediate,3420080,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - Wildwood,3420015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - Wilmington High,3420505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - Wilmington Middle School,3420330,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wilmington - Woburn Street,3420020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchendon - Memorial,3430040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchendon - Murdock Academy for Success,3430405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchendon - Murdock High School,3430515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchendon - Murdock Middle School,3430315,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchendon - Toy Town Elementary,3430050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchendon - Winchendon PreSchool Program,3430010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchester - Ambrose Elementary,3440045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchester - Lincoln Elementary,3440005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchester - Lynch Elementary,3440020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchester - McCall Middle,3440305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchester - Muraco Elementary,3440040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchester - Vinson-Owen Elementary,3440025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winchester - Winchester High School,3440505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winthrop - Arthur T. Cummings Elementary School,3460020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winthrop - Winthrop High School,3460505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Winthrop - Winthrop Middle School,3460305,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Clyde Reeves,3470040,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Daniel L Joyce Middle School,3470410,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Goodyear Elementary School,3470005,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Hurld-Wyman Elementary School,3470020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - John F Kennedy Middle School,3470405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Linscott-Rumford,3470025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Malcolm White,3470055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Mary D Altavesta,3470065,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Shamrock,3470043,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Woburn - Woburn High,3470505,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Belmont Street Community,3480020,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Burncoat Middle School,3480405,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Burncoat Senior High,3480503,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Burncoat Street,3480035,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Canterbury,3480045,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Chandler Elementary Community,3480050,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Chandler Magnet,3480052,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - City View,3480053,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Claremont Academy,3480350,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Clark St Community,3480055,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Columbus Park,3480060,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Doherty Memorial High,3480512,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Elm Park Community,3480095,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Flagg Street,3480090,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Forest Grove Middle,3480415,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Francis J McGrath Elementary,3480177,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Gates Lane,3480110,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Goddard School/Science Technical,3480100,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Grafton Street,3480115,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Head Start,3480002,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Heard Street,3480136,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Jacob Hiatt Magnet,3480140,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - La Familia Dual Language School,3480025,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Lake View,3480145,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Lincoln Street,3480160,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - May Street,3480175,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Midland Street,3480185,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Nelson Place,3480200,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Norrback Avenue,3480202,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - North High,3480515,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Quinsigamond,3480210,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Rice Square,3480215,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Roosevelt,3480220,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - South High Community,3480520,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Sullivan Middle,3480423,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Tatnuck,3480230,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Thorndyke Road,3480235,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Union Hill School,3480240,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - University Pk Campus School,3480285,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Vernon Hill School,3480280,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Wawecus Road School,3480026,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - West Tatnuck,3480260,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Woodland Academy,3480030,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Worcester Arts Magnet School,3480225,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Worcester East Middle,3480420,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worcester - Worcester Technical High,3480605,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Worthington - R. H. Conwell,3490010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wrentham - Charles E Roderick,3500010,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2021-22,Wrentham - Delaney,3500003,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,150 +NA,NA,,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,0,117,116,120,118,117,115,117,114,111,97,99,98,86,0,1425 +NA,NA,,2020-21,Abington - Abington Early Education Program,10001,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51 +NA,NA,,2020-21,Abington - Abington High,10505,0,0,0,0,0,0,0,0,0,0,146,160,153,152,8,619 +NA,NA,,2020-21,Abington - Abington Middle School,10405,0,0,0,0,0,0,140,169,161,169,0,0,0,0,0,639 +NA,NA,,2020-21,Abington - Beaver Brook Elementary,10020,0,173,168,161,0,0,0,0,0,0,0,0,0,0,0,502 +NA,NA,,2020-21,Abington - Woodsdale Elementary School,10015,0,0,0,0,144,162,0,0,0,0,0,0,0,0,0,306 +NA,NA,,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,0,0,0,0,0,0,53,72,73,76,82,63,63,58,0,540 +NA,NA,,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,0,0,0,0,0,0,0,0,0,406,465,450,426,4,1751 +NA,NA,,2020-21,Acton-Boxborough - Blanchard Memorial School,6000005,0,69,55,82,79,72,64,66,0,0,0,0,0,0,0,487 +NA,NA,,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,51,56,44,43,50,66,68,0,0,0,0,0,0,0,378 +NA,NA,,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73 +NA,NA,,2020-21,Acton-Boxborough - Luther Conant School,6000030,0,34,57,66,67,73,47,50,0,0,0,0,0,0,0,394 +NA,NA,,2020-21,Acton-Boxborough - McCarthy-Towne School,6000015,0,51,55,69,82,70,71,85,0,0,0,0,0,0,0,483 +NA,NA,,2020-21,Acton-Boxborough - Merriam School,6000010,0,47,58,58,59,70,71,70,0,0,0,0,0,0,0,433 +NA,NA,,2020-21,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,34,40,46,42,69,71,75,0,0,0,0,0,0,0,377 +NA,NA,,2020-21,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,0,0,0,0,0,0,0,410,421,0,0,0,0,0,831 +NA,NA,,2020-21,Acushnet - Acushnet Elementary School,30025,28,86,83,117,95,80,0,0,0,0,0,0,0,0,0,489 +NA,NA,,2020-21,Acushnet - Albert F Ford Middle School,30305,0,0,0,0,0,0,108,104,100,109,0,0,0,0,0,421 +NA,NA,,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,0,0,0,0,0,0,127,125,125,146,155,147,141,0,966 +NA,NA,,2020-21,Agawam - Agawam Early Childhood Center,50003,106,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106 +NA,NA,,2020-21,Agawam - Agawam High,50505,0,0,0,0,0,0,0,0,0,0,281,281,217,271,0,1050 +NA,NA,,2020-21,Agawam - Agawam Junior High,50405,0,0,0,0,0,0,0,0,307,275,0,0,0,0,0,582 +NA,NA,,2020-21,Agawam - Benjamin J Phelps,50020,0,63,70,65,70,82,0,0,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Agawam - Clifford M Granger,50010,0,44,57,41,40,65,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2020-21,Agawam - James Clark School,50030,0,48,49,60,56,56,0,0,0,0,0,0,0,0,0,269 +NA,NA,,2020-21,Agawam - Roberta G. Doering School,50303,0,0,0,0,0,0,254,272,1,0,0,0,0,0,0,527 +NA,NA,,2020-21,Agawam - Robinson Park,50025,0,72,81,85,64,75,0,0,0,0,0,0,0,0,0,377 +NA,NA,,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,0,100,103,102,103,52,49,146,94,48,0,0,0,0,0,797 +NA,NA,,2020-21,Amesbury - Amesbury Elementary,70005,14,67,54,68,47,75,0,0,0,0,0,0,0,0,0,325 +NA,NA,,2020-21,Amesbury - Amesbury High,70505,0,0,0,0,0,0,0,0,0,0,132,118,123,140,8,521 +NA,NA,,2020-21,Amesbury - Amesbury Innovation High School,70515,0,0,0,0,0,0,0,0,0,0,4,8,13,17,0,42 +NA,NA,,2020-21,Amesbury - Amesbury Middle,70013,0,0,0,0,0,0,157,166,155,147,0,0,0,0,0,625 +NA,NA,,2020-21,Amesbury - Charles C Cashman Elementary,70010,11,67,68,48,78,67,0,0,0,0,0,0,0,0,0,339 +NA,NA,,2020-21,Amherst - Crocker Farm Elementary,80009,32,48,31,54,41,43,56,50,0,0,0,0,0,0,0,355 +NA,NA,,2020-21,Amherst - Fort River Elementary,80020,0,35,53,41,32,60,45,40,0,0,0,0,0,0,0,306 +NA,NA,,2020-21,Amherst - Wildwood Elementary,80050,0,44,50,51,59,54,60,50,0,0,0,0,0,0,0,368 +NA,NA,,2020-21,Amherst-Pelham - Amherst Regional High,6050505,0,0,0,0,0,0,0,0,0,0,212,206,220,224,8,870 +NA,NA,,2020-21,Amherst-Pelham - Amherst Regional Middle School,6050405,0,0,0,0,0,0,0,0,210,203,0,0,0,0,0,413 +NA,NA,,2020-21,Andover - Andover High,90505,0,0,0,0,0,0,0,0,0,0,437,437,408,446,28,1756 +NA,NA,,2020-21,Andover - Andover West Middle,90310,0,0,0,0,0,0,0,182,187,175,0,0,0,0,0,544 +NA,NA,,2020-21,Andover - Bancroft Elementary,90003,0,65,80,92,97,90,99,0,0,0,0,0,0,0,0,523 +NA,NA,,2020-21,Andover - Doherty Middle,90305,0,0,0,0,0,0,0,152,142,170,0,0,0,0,0,464 +NA,NA,,2020-21,Andover - Henry C Sanborn Elementary,90010,0,38,43,60,58,62,72,0,0,0,0,0,0,0,0,333 +NA,NA,,2020-21,Andover - High Plain Elementary,90004,0,70,76,106,87,87,91,0,0,0,0,0,0,0,0,517 +NA,NA,,2020-21,Andover - Shawsheen School,90005,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54 +NA,NA,,2020-21,Andover - South Elementary,90020,0,64,69,86,74,79,90,0,0,0,0,0,0,0,0,462 +NA,NA,,2020-21,Andover - West Elementary,90025,0,76,81,98,86,99,106,0,0,0,0,0,0,0,0,546 +NA,NA,,2020-21,Andover - Wood Hill Middle School,90350,0,0,0,0,0,0,0,121,123,131,0,0,0,0,0,375 +NA,NA,,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,0,0,0,0,0,0,0,108,109,109,65,85,64,31,0,571 +NA,NA,,2020-21,Arlington - Arlington High,100505,0,0,0,0,0,0,0,0,0,0,363,352,359,335,0,1409 +NA,NA,,2020-21,Arlington - Brackett,100010,0,68,76,101,68,88,64,0,0,0,0,0,0,0,0,465 +NA,NA,,2020-21,Arlington - Cyrus E Dallin,100025,0,59,63,79,74,80,70,0,0,0,0,0,0,0,0,425 +NA,NA,,2020-21,Arlington - Gibbs School,100305,0,0,0,0,0,0,0,483,0,0,0,0,0,0,0,483 +NA,NA,,2020-21,Arlington - Hardy,100030,0,56,67,66,69,78,69,0,0,0,0,0,0,0,0,405 +NA,NA,,2020-21,Arlington - John A Bishop,100005,0,55,64,75,55,67,65,0,0,0,0,0,0,0,0,381 +NA,NA,,2020-21,Arlington - M Norcross Stratton,100055,0,73,83,79,74,66,71,0,0,0,0,0,0,0,0,446 +NA,NA,,2020-21,Arlington - Menotomy Preschool,100038,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65 +NA,NA,,2020-21,Arlington - Ottoson Middle,100410,0,0,0,0,0,0,0,0,456,436,0,0,0,0,0,892 +NA,NA,,2020-21,Arlington - Peirce,100045,0,59,53,54,60,39,40,0,0,0,0,0,0,0,0,305 +NA,NA,,2020-21,Arlington - Thompson,100050,0,83,78,79,67,90,82,0,0,0,0,0,0,0,0,479 +NA,NA,,2020-21,Ashburnham-Westminster - Briggs Elementary,6100025,29,60,63,83,80,72,74,0,0,0,0,0,0,0,0,461 +NA,NA,,2020-21,Ashburnham-Westminster - Meetinghouse School,6100010,0,76,81,0,0,0,0,0,0,0,0,0,0,0,0,157 +NA,NA,,2020-21,Ashburnham-Westminster - Oakmont Regional High School,6100505,0,0,0,0,0,0,0,0,0,0,166,165,132,172,12,647 +NA,NA,,2020-21,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0,0,0,0,0,191,189,179,0,0,0,0,0,559 +NA,NA,,2020-21,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,0,101,76,89,104,0,0,0,0,0,0,0,0,370 +NA,NA,,2020-21,Ashland - Ashland High,140505,0,0,0,0,0,0,0,0,0,0,195,175,224,211,0,805 +NA,NA,,2020-21,Ashland - Ashland Middle,140405,0,0,0,0,0,0,0,229,224,218,0,0,0,0,0,671 +NA,NA,,2020-21,Ashland - David Mindess,140015,0,0,0,0,200,222,208,0,0,0,0,0,0,0,0,630 +NA,NA,,2020-21,Ashland - Henry E Warren Elementary,140010,0,191,180,202,0,0,0,0,0,0,0,0,0,0,0,573 +NA,NA,,2020-21,Ashland - William Pittaway Elementary,140005,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50 +NA,NA,,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0,0,0,0,0,0,0,0,0,0,306,291,283,269,0,1149 +NA,NA,,2020-21,Athol-Royalston - Athol Community Elementary School,6150020,46,85,91,96,107,101,0,0,0,0,0,0,0,0,0,526 +NA,NA,,2020-21,Athol-Royalston - Athol High,6150505,0,0,0,0,0,0,0,0,0,0,100,79,78,85,4,346 +NA,NA,,2020-21,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,0,0,0,95,95,116,111,0,0,0,0,0,417 +NA,NA,,2020-21,Athol-Royalston - Royalston Community School,6150050,0,15,18,21,20,21,23,18,0,0,0,0,0,0,0,136 +NA,NA,,2020-21,Atlantis Charter (District) - Atlantis Charter School,4910550,0,110,110,110,109,110,110,110,110,110,58,87,76,86,0,1296 +NA,NA,,2020-21,Attleboro - A. Irvin Studley Elementary School,160001,0,49,62,70,68,75,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2020-21,Attleboro - Attleboro Community Academy,160515,0,0,0,0,0,0,0,0,0,0,1,5,6,36,0,48 +NA,NA,,2020-21,Attleboro - Attleboro High,160505,0,0,0,0,0,0,0,0,0,0,449,443,465,420,15,1792 +NA,NA,,2020-21,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,0,0,0,159,163,134,164,0,0,0,0,0,620 +NA,NA,,2020-21,Attleboro - Early Learning Center,160008,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104 +NA,NA,,2020-21,Attleboro - Hill-Roberts Elementary School,160045,0,53,92,83,82,97,0,0,0,0,0,0,0,0,0,407 +NA,NA,,2020-21,Attleboro - Hyman Fine Elementary School,160040,0,73,98,84,98,86,0,0,0,0,0,0,0,0,0,439 +NA,NA,,2020-21,Attleboro - Peter Thacher Elementary School,160050,0,90,97,86,89,94,0,0,0,0,0,0,0,0,0,456 +NA,NA,,2020-21,Attleboro - Robert J. Coelho Middle School,160305,0,0,0,0,0,0,147,136,170,180,0,0,0,0,0,633 +NA,NA,,2020-21,Attleboro - Thomas Willett Elementary School,160035,0,70,67,74,70,70,0,0,0,0,0,0,0,0,0,351 +NA,NA,,2020-21,Attleboro - Wamsutta Middle School,160320,0,0,0,0,0,0,150,134,159,135,0,0,0,0,0,578 +NA,NA,,2020-21,Auburn - Auburn Middle,170305,0,0,0,0,0,0,0,213,218,202,0,0,0,0,0,633 +NA,NA,,2020-21,Auburn - Auburn Senior High,170505,66,0,0,0,0,0,0,0,0,0,168,201,176,171,5,787 +NA,NA,,2020-21,Auburn - Bryn Mawr,170010,0,86,93,83,0,0,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2020-21,Auburn - Pakachoag School,170025,0,75,89,104,0,0,0,0,0,0,0,0,0,0,0,268 +NA,NA,,2020-21,Auburn - Swanson Road Intermediate School,170030,0,0,0,0,167,206,195,0,0,0,0,0,0,0,0,568 +NA,NA,,2020-21,Avon - Avon Middle High School,180510,0,0,0,0,0,0,0,0,59,61,53,49,50,39,0,311 +NA,NA,,2020-21,Avon - Ralph D Butler,180010,11,42,46,52,54,50,62,55,0,0,0,0,0,0,0,372 +NA,NA,,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,0,0,0,0,0,0,0,0,0,0,99,95,81,82,0,357 +NA,NA,,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,0,0,0,0,0,0,0,136,137,137,0,0,0,0,0,410 +NA,NA,,2020-21,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,57,60,43,49,65,57,0,0,0,0,0,0,0,0,331 +NA,NA,,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,6160002,51,61,82,77,79,75,80,0,0,0,0,0,0,0,0,505 +NA,NA,,2020-21,Barnstable - Barnstable Community Innovation School,200012,0,65,68,78,81,0,0,0,0,0,0,0,0,0,0,292 +NA,NA,,2020-21,Barnstable - Barnstable High,200505,0,0,0,0,0,0,0,0,0,389,355,335,334,345,11,1769 +NA,NA,,2020-21,Barnstable - Barnstable Intermediate School,200315,0,0,0,0,0,0,0,358,351,0,0,0,0,0,0,709 +NA,NA,,2020-21,Barnstable - Barnstable United Elementary School,200050,0,0,0,0,1,340,364,0,0,0,0,0,0,0,0,705 +NA,NA,,2020-21,Barnstable - Centerville Elementary,200010,0,55,57,64,61,0,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2020-21,Barnstable - Enoch Cobb Early Learning Center,200001,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124 +NA,NA,,2020-21,Barnstable - Hyannis West Elementary,200025,0,67,61,71,77,0,0,0,0,0,0,0,0,0,0,276 +NA,NA,,2020-21,Barnstable - West Barnstable Elementary,200005,0,52,63,50,56,0,0,0,0,0,0,0,0,0,0,221 +NA,NA,,2020-21,Barnstable - West Villages Elementary School,200045,0,88,93,96,103,0,0,0,0,0,0,0,0,0,0,380 +NA,NA,,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,0,0,0,0,0,0,0,71,79,77,70,67,53,52,0,469 +NA,NA,,2020-21,Bedford - Bedford High,230505,0,0,0,0,0,0,0,0,0,0,207,209,230,183,0,829 +NA,NA,,2020-21,Bedford - John Glenn Middle,230305,0,0,0,0,0,0,0,205,200,206,0,0,0,0,0,611 +NA,NA,,2020-21,Bedford - Lt Elezer Davis,230010,28,160,183,201,0,0,0,0,0,0,0,0,0,0,0,572 +NA,NA,,2020-21,Bedford - Lt Job Lane School,230012,0,0,0,0,213,191,199,0,0,0,0,0,0,0,0,603 +NA,NA,,2020-21,Belchertown - Belchertown High,240505,0,0,0,0,0,0,0,0,0,0,174,187,157,171,5,694 +NA,NA,,2020-21,Belchertown - Chestnut Hill Community School,240006,0,0,0,0,0,150,161,175,0,0,0,0,0,0,0,486 +NA,NA,,2020-21,Belchertown - Cold Spring,240005,35,141,0,0,0,0,0,0,0,0,0,0,0,0,0,176 +NA,NA,,2020-21,Belchertown - Jabish Middle School,240025,0,0,0,0,0,0,0,0,167,187,0,0,0,0,0,354 +NA,NA,,2020-21,Belchertown - Swift River Elementary,240018,0,0,138,146,155,0,0,0,0,0,0,0,0,0,0,439 +NA,NA,,2020-21,Bellingham - Bellingham Early Childhood Center,250003,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57 +NA,NA,,2020-21,Bellingham - Bellingham High School,250505,0,0,0,0,0,0,0,0,0,163,154,124,140,142,3,726 +NA,NA,,2020-21,Bellingham - Bellingham Memorial School,250315,0,0,0,0,0,157,143,159,188,0,0,0,0,0,0,647 +NA,NA,,2020-21,Bellingham - Joseph F DiPietro Elementary School,250020,0,62,67,85,71,0,0,0,0,0,0,0,0,0,0,285 +NA,NA,,2020-21,Bellingham - Keough Memorial Academy,250510,0,0,0,0,0,0,0,0,0,1,2,4,7,7,0,21 +NA,NA,,2020-21,Bellingham - Stall Brook,250025,0,63,63,54,68,0,0,0,0,0,0,0,0,0,0,248 +NA,NA,,2020-21,Belmont - Belmont High,260505,0,0,0,0,0,0,0,0,0,0,334,318,335,322,0,1309 +NA,NA,,2020-21,Belmont - Daniel Butler,260015,0,57,64,64,67,81,0,0,0,0,0,0,0,0,0,333 +NA,NA,,2020-21,Belmont - Mary Lee Burbank,260010,0,57,76,84,74,84,0,0,0,0,0,0,0,0,0,375 +NA,NA,,2020-21,Belmont - Roger E Wellington,260035,48,72,109,102,114,117,0,0,0,0,0,0,0,0,0,562 +NA,NA,,2020-21,Belmont - Winn Brook,260005,0,67,92,89,93,90,0,0,0,0,0,0,0,0,0,431 +NA,NA,,2020-21,Belmont - Winthrop L Chenery Middle,260305,0,0,0,0,0,0,335,365,367,343,0,0,0,0,0,1410 +NA,NA,,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,19,52,46,47,50,48,42,40,0,0,0,0,0,0,0,344 +NA,NA,,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,96,96,96,96,96,96,96,52,52,0,0,0,0,0,776 +NA,NA,,2020-21,Berkley - Berkley Community School,270010,41,77,95,86,75,101,0,0,0,0,0,0,0,0,0,475 +NA,NA,,2020-21,Berkley - Berkley Middle School,270305,0,0,0,0,0,0,93,91,109,96,0,0,0,0,0,389 +NA,NA,,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,0,0,0,0,0,64,68,67,51,43,47,32,0,372 +NA,NA,,2020-21,Berkshire Hills - Monument Mt Regional High,6180505,0,0,0,0,0,0,0,0,0,0,113,118,148,122,1,502 +NA,NA,,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,15,68,60,66,53,56,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,6180310,0,0,0,0,0,0,84,70,90,100,0,0,0,0,0,344 +NA,NA,,2020-21,Berlin-Boylston - Berlin Memorial School,6200005,11,33,29,27,30,30,30,0,0,0,0,0,0,0,0,190 +NA,NA,,2020-21,Berlin-Boylston - Boylston Elementary School,6200010,22,41,55,43,48,37,54,0,0,0,0,0,0,0,0,300 +NA,NA,,2020-21,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,0,0,0,0,74,92,77,85,72,74,82,0,556 +NA,NA,,2020-21,Beverly - Ayers/Ryal Side School,300055,0,70,65,58,152,58,0,0,0,0,0,0,0,0,0,403 +NA,NA,,2020-21,Beverly - Beverly High,300505,0,0,0,0,0,0,0,0,0,0,295,339,341,302,9,1286 +NA,NA,,2020-21,Beverly - Beverly Middle School,300305,0,0,0,0,0,0,348,364,373,350,0,0,0,0,0,1435 +NA,NA,,2020-21,Beverly - Centerville Elementary,300010,0,48,58,48,44,136,0,0,0,0,0,0,0,0,0,334 +NA,NA,,2020-21,Beverly - Cove Elementary,300015,0,66,152,70,62,54,0,0,0,0,0,0,0,0,0,404 +NA,NA,,2020-21,Beverly - Hannah Elementary,300033,0,126,60,47,43,40,0,0,0,0,0,0,0,0,0,316 +NA,NA,,2020-21,Beverly - McKeown School,300002,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82 +NA,NA,,2020-21,Beverly - North Beverly Elementary,300040,0,61,50,143,58,61,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2020-21,Billerica - Billerica Memorial High School,310505,106,0,0,0,0,0,0,0,0,403,266,279,302,239,10,1605 +NA,NA,,2020-21,Billerica - Frederick J Dutile,310007,0,57,47,52,49,39,0,0,0,0,0,0,0,0,0,244 +NA,NA,,2020-21,Billerica - Hajjar Elementary,310026,0,73,71,75,59,72,0,0,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Billerica - John F Kennedy,310012,0,69,67,59,66,46,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2020-21,Billerica - Locke Middle,310310,0,0,0,0,0,0,196,176,181,0,0,0,0,0,0,553 +NA,NA,,2020-21,Billerica - Marshall Middle School,310305,0,0,0,0,0,0,200,193,204,0,0,0,0,0,0,597 +NA,NA,,2020-21,Billerica - Parker,310015,0,78,85,72,79,72,0,0,0,0,0,0,0,0,0,386 +NA,NA,,2020-21,Billerica - Thomas Ditson,310005,0,94,94,106,111,122,0,0,0,0,0,0,0,0,0,527 +NA,NA,,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0,0,0,0,0,0,0,0,318,314,298,301,0,1231 +NA,NA,,2020-21,Blackstone-Millville - A F Maloney,6220015,0,0,0,0,88,76,113,0,0,0,0,0,0,0,0,277 +NA,NA,,2020-21,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,0,0,0,0,0,0,0,0,99,110,112,94,4,419 +NA,NA,,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,0,0,0,0,0,112,132,145,0,0,0,0,0,389 +NA,NA,,2020-21,Blackstone-Millville - John F Kennedy Elementary,6220008,0,25,88,91,0,0,0,0,0,0,0,0,0,0,0,204 +NA,NA,,2020-21,Blackstone-Millville - Millville Elementary,6220010,46,80,19,28,37,32,34,0,0,0,0,0,0,0,0,276 +NA,NA,,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,0,0,0,0,0,0,0,0,0,0,247,232,217,194,0,890 +NA,NA,,2020-21,Boston - Another Course To College,350541,0,0,0,0,0,0,0,0,0,0,59,60,56,61,0,236 +NA,NA,,2020-21,Boston - Baldwin Early Learning Center,350003,76,42,29,0,0,0,0,0,0,0,0,0,0,0,0,147 +NA,NA,,2020-21,Boston - Beethoven,350021,42,76,73,88,0,0,0,0,0,0,0,0,0,0,0,279 +NA,NA,,2020-21,Boston - Blackstone,350390,60,77,63,89,72,87,69,0,0,0,0,0,0,0,0,517 +NA,NA,,2020-21,Boston - Boston Adult Academy,350548,0,0,0,0,0,0,0,0,0,0,0,0,82,51,0,133 +NA,NA,,2020-21,Boston - Boston Arts Academy,350546,0,0,0,0,0,0,0,0,0,0,130,135,117,100,0,482 +NA,NA,,2020-21,Boston - Boston Collaborative High School,350755,0,0,0,0,0,0,0,0,0,0,0,13,36,108,3,160 +NA,NA,,2020-21,Boston - Boston Community Leadership Academy,350558,0,0,0,0,0,0,0,0,0,0,121,111,123,103,20,478 +NA,NA,,2020-21,Boston - Boston International High School,350507,0,0,0,0,0,0,0,0,0,0,122,97,83,96,0,398 +NA,NA,,2020-21,Boston - Boston Latin,350560,0,0,0,0,0,0,0,0,419,417,424,430,378,415,0,2483 +NA,NA,,2020-21,Boston - Boston Latin Academy,350545,0,0,0,0,0,0,0,0,257,281,309,338,267,335,0,1787 +NA,NA,,2020-21,Boston - Boston Teachers Union School,350012,27,25,25,19,24,25,24,47,31,30,0,0,0,0,0,277 +NA,NA,,2020-21,Boston - Brighton High,350505,0,0,0,0,0,0,0,0,0,0,57,99,109,125,12,402 +NA,NA,,2020-21,Boston - Carter School,350036,0,0,0,0,0,0,0,0,1,1,4,1,4,2,14,27 +NA,NA,,2020-21,Boston - Charles H Taylor,350054,18,31,47,59,61,53,58,0,0,0,0,0,0,0,0,327 +NA,NA,,2020-21,Boston - Charles Sumner,350052,55,73,67,76,76,73,72,0,0,0,0,0,0,0,0,492 +NA,NA,,2020-21,Boston - Charlestown High,350515,0,0,0,0,0,0,0,0,0,0,118,224,203,187,53,785 +NA,NA,,2020-21,Boston - Clarence R Edwards Middle,350430,0,0,0,0,0,0,0,0,89,117,0,0,0,0,0,206 +NA,NA,,2020-21,Boston - Community Academy,350518,0,0,0,0,0,0,0,0,0,0,4,11,16,18,2,51 +NA,NA,,2020-21,Boston - Community Academy of Science and Health,350581,0,0,0,0,0,0,0,0,0,0,65,86,94,86,3,334 +NA,NA,,2020-21,Boston - Condon K-8,350146,39,63,62,72,80,86,78,99,78,78,0,0,0,0,0,735 +NA,NA,,2020-21,Boston - Curley K-8 School,350020,86,83,87,87,96,99,93,110,89,83,0,0,0,0,0,913 +NA,NA,,2020-21,Boston - Curtis Guild,350062,20,28,31,37,39,33,32,36,0,0,0,0,0,0,0,256 +NA,NA,,2020-21,Boston - Dante Alighieri Montessori School,350066,26,14,14,15,14,10,6,12,0,0,0,0,0,0,0,111 +NA,NA,,2020-21,Boston - David A Ellis,350072,44,55,56,39,55,59,54,0,0,0,0,0,0,0,0,362 +NA,NA,,2020-21,Boston - Dearborn,350074,0,0,0,0,0,0,0,79,91,89,90,85,88,56,0,578 +NA,NA,,2020-21,Boston - Dennis C Haley,350077,25,33,38,40,44,45,39,46,24,45,0,0,0,0,0,379 +NA,NA,,2020-21,Boston - Donald Mckay,350080,21,42,60,83,84,85,72,97,100,98,0,0,0,0,0,742 +NA,NA,,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,46,27,33,33,35,0,0,0,0,0,0,0,0,0,0,174 +NA,NA,,2020-21,Boston - Dr. William Henderson Lower,350266,68,64,66,0,0,0,0,0,0,0,0,0,0,0,0,198 +NA,NA,,2020-21,Boston - Dr. William Henderson Upper,350426,0,0,0,69,67,68,47,65,63,61,67,72,67,65,15,726 +NA,NA,,2020-21,Boston - East Boston Early Childhood Center,350009,71,56,60,0,0,0,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2020-21,Boston - East Boston High,350530,0,0,0,0,0,0,0,0,0,0,207,292,293,247,16,1055 +NA,NA,,2020-21,Boston - Edison K-8,350375,19,31,50,73,69,60,54,70,38,56,0,0,0,0,0,520 +NA,NA,,2020-21,Boston - Edward Everett,350088,10,33,40,40,39,43,37,43,0,0,0,0,0,0,0,285 +NA,NA,,2020-21,Boston - ELC - West Zone,350006,39,26,33,0,0,0,0,0,0,0,0,0,0,0,0,98 +NA,NA,,2020-21,Boston - Eliot Elementary,350096,58,81,81,81,94,90,97,105,44,50,0,0,0,0,0,781 +NA,NA,,2020-21,Boston - Ellis Mendell,350100,24,38,39,42,44,42,40,0,0,0,0,0,0,0,0,269 +NA,NA,,2020-21,Boston - Excel High School,350522,0,0,0,0,0,0,0,0,0,0,102,111,124,131,3,471 +NA,NA,,2020-21,Boston - Fenway High School,350540,0,0,0,0,0,0,0,0,0,0,106,96,97,88,1,388 +NA,NA,,2020-21,Boston - Franklin D Roosevelt,350116,36,31,37,41,37,46,38,49,43,46,0,0,0,0,0,404 +NA,NA,,2020-21,Boston - Gardner Pilot Academy,350326,21,39,36,40,38,40,39,45,36,39,0,0,0,0,0,373 +NA,NA,,2020-21,Boston - George H Conley,350122,19,17,21,21,18,24,48,24,0,0,0,0,0,0,0,192 +NA,NA,,2020-21,Boston - Greater Egleston Community High School,350543,0,0,0,0,0,0,0,0,0,0,1,26,35,51,1,114 +NA,NA,,2020-21,Boston - Harvard-Kent,350200,42,45,50,50,45,49,51,56,0,0,0,0,0,0,0,388 +NA,NA,,2020-21,Boston - Haynes Early Education Center,350010,50,62,60,0,0,0,0,0,0,0,0,0,0,0,0,172 +NA,NA,,2020-21,Boston - Henry Grew,350135,20,30,27,39,34,37,30,0,0,0,0,0,0,0,0,217 +NA,NA,,2020-21,Boston - Higginson,350015,30,28,37,39,0,0,0,0,0,0,0,0,0,0,0,134 +NA,NA,,2020-21,Boston - Higginson/Lewis K-8,350377,0,0,0,0,29,33,23,39,49,46,0,0,0,0,0,219 +NA,NA,,2020-21,Boston - Horace Mann School for the Deaf,350750,4,2,1,3,7,5,4,8,0,9,2,6,7,4,5,67 +NA,NA,,2020-21,Boston - Hugh Roe O'Donnell,350141,16,32,42,40,43,35,29,35,0,0,0,0,0,0,0,272 +NA,NA,,2020-21,Boston - Jackson Mann,350013,20,35,44,47,48,55,60,55,28,37,0,0,0,0,0,429 +NA,NA,,2020-21,Boston - James J Chittick,350154,38,33,41,28,35,38,33,0,0,0,0,0,0,0,0,246 +NA,NA,,2020-21,Boston - James Otis,350156,39,57,56,62,60,55,41,40,0,0,0,0,0,0,0,410 +NA,NA,,2020-21,Boston - James P Timilty Middle,350485,0,0,0,0,0,0,0,55,85,93,0,0,0,0,0,233 +NA,NA,,2020-21,Boston - James W Hennigan,350153,0,19,35,53,61,63,66,78,86,73,0,0,0,0,0,534 +NA,NA,,2020-21,Boston - Jeremiah E Burke High,350525,0,0,0,0,0,0,0,0,0,0,81,103,81,116,9,390 +NA,NA,,2020-21,Boston - John D Philbrick,350172,13,14,14,22,15,15,18,0,0,0,0,0,0,0,0,111 +NA,NA,,2020-21,Boston - John F Kennedy,350166,26,47,47,54,58,58,57,0,0,0,0,0,0,0,0,347 +NA,NA,,2020-21,Boston - John W McCormack,350179,0,0,0,0,0,0,0,66,79,105,0,0,0,0,0,250 +NA,NA,,2020-21,Boston - John Winthrop,350180,27,41,28,43,36,34,22,0,0,0,0,0,0,0,0,231 +NA,NA,,2020-21,Boston - Joseph J Hurley,350182,30,41,47,44,42,41,35,37,19,20,0,0,0,0,0,356 +NA,NA,,2020-21,Boston - Joseph Lee,350183,49,49,48,53,54,56,54,81,69,60,0,0,0,0,0,573 +NA,NA,,2020-21,Boston - Joseph P Manning,350184,12,22,22,25,25,25,20,24,0,0,0,0,0,0,0,175 +NA,NA,,2020-21,Boston - Joseph P Tynan,350181,29,45,38,40,20,28,26,23,0,0,0,0,0,0,0,249 +NA,NA,,2020-21,Boston - Josiah Quincy,350286,70,89,113,112,113,124,121,0,0,0,0,0,0,0,0,742 +NA,NA,,2020-21,Boston - Joyce Kilmer,350190,42,41,47,40,48,45,40,56,41,28,0,0,0,0,0,428 +NA,NA,,2020-21,Boston - King K-8,350376,65,62,62,64,65,47,42,58,43,41,0,0,0,0,0,549 +NA,NA,,2020-21,Boston - Lee Academy,350001,47,46,33,32,34,0,0,0,0,0,0,0,0,0,0,192 +NA,NA,,2020-21,Boston - Lilla G. Frederick Middle School,350383,0,0,0,0,0,0,0,98,140,143,0,0,0,0,0,381 +NA,NA,,2020-21,Boston - Lyndon,350262,64,64,65,70,77,86,81,67,43,27,0,0,0,0,0,644 +NA,NA,,2020-21,Boston - Lyon K-8,350004,0,7,11,16,14,15,14,18,12,17,0,0,0,0,0,124 +NA,NA,,2020-21,Boston - Lyon Upper 9-12,350655,0,0,0,0,0,0,0,0,0,0,36,35,34,30,2,137 +NA,NA,,2020-21,Boston - Madison Park High,350537,0,0,0,0,0,0,0,0,0,0,300,308,229,187,19,1043 +NA,NA,,2020-21,Boston - Manassah E Bradley,350215,35,39,40,41,43,42,36,27,0,0,0,0,0,0,0,303 +NA,NA,,2020-21,Boston - Margarita Muniz Academy,350549,0,0,0,0,0,0,0,0,0,0,70,86,86,73,0,315 +NA,NA,,2020-21,Boston - Mario Umana Academy,350656,26,43,55,62,72,62,53,65,173,147,0,0,0,0,0,758 +NA,NA,,2020-21,Boston - Mather,350227,29,72,75,82,74,82,70,0,0,0,0,0,0,0,0,484 +NA,NA,,2020-21,Boston - Mattahunt Elementary School,350016,69,70,80,80,69,40,0,0,0,0,0,0,0,0,0,408 +NA,NA,,2020-21,Boston - Maurice J Tobin,350229,16,37,34,42,50,51,43,48,49,38,0,0,0,0,0,408 +NA,NA,,2020-21,Boston - Michael J Perkins,350231,4,22,21,24,17,37,24,17,0,0,0,0,0,0,0,166 +NA,NA,,2020-21,Boston - Mildred Avenue K-8,350378,37,42,40,40,46,91,76,112,94,91,0,0,0,0,0,669 +NA,NA,,2020-21,Boston - Mission Hill School,350382,31,18,26,24,22,35,20,16,18,18,0,0,0,0,0,228 +NA,NA,,2020-21,Boston - Mozart,350237,28,24,23,23,24,23,23,0,0,0,0,0,0,0,0,168 +NA,NA,,2020-21,Boston - Nathan Hale,350243,19,17,22,22,23,23,22,23,0,0,0,0,0,0,0,171 +NA,NA,,2020-21,Boston - New Mission High School,350542,0,0,0,0,0,0,0,0,46,50,116,103,87,78,1,481 +NA,NA,,2020-21,Boston - O W Holmes,350138,22,40,49,49,33,40,41,0,0,0,0,0,0,0,0,274 +NA,NA,,2020-21,Boston - O'Bryant School Math/Science,350575,0,0,0,0,0,0,0,0,158,169,323,357,285,332,0,1624 +NA,NA,,2020-21,Boston - Oliver Hazard Perry,350255,22,23,25,22,30,25,20,22,0,14,0,0,0,0,0,203 +NA,NA,,2020-21,Boston - Orchard Gardens,350257,49,56,82,92,89,97,96,86,83,90,0,0,0,0,0,820 +NA,NA,,2020-21,Boston - Patrick J Kennedy,350264,26,32,37,36,39,28,38,42,0,0,0,0,0,0,0,278 +NA,NA,,2020-21,Boston - Paul A Dever,350268,24,37,45,62,65,61,60,0,0,0,0,0,0,0,0,354 +NA,NA,,2020-21,Boston - Pauline Agassiz Shaw Elementary School,350014,31,37,25,35,34,0,0,0,0,0,0,0,0,0,0,162 +NA,NA,,2020-21,Boston - Phineas Bates,350278,21,34,38,37,39,29,40,0,0,0,0,0,0,0,0,238 +NA,NA,,2020-21,Boston - Quincy Upper School,350565,0,0,0,0,0,0,0,136,82,76,67,36,56,65,17,535 +NA,NA,,2020-21,Boston - Rafael Hernandez,350691,46,50,49,47,49,47,39,37,29,25,0,0,0,0,0,418 +NA,NA,,2020-21,Boston - Richard J Murphy,350240,42,61,66,92,90,115,118,139,97,87,0,0,0,0,0,907 +NA,NA,,2020-21,Boston - Roger Clap,350298,9,13,17,17,20,18,19,10,0,0,0,0,0,0,0,123 +NA,NA,,2020-21,Boston - Samuel Adams,350302,21,29,39,43,37,29,25,25,0,0,0,0,0,0,0,248 +NA,NA,,2020-21,Boston - Samuel W Mason,350304,22,29,35,39,32,35,29,0,0,0,0,0,0,0,0,221 +NA,NA,,2020-21,Boston - Sarah Greenwood,350308,42,42,45,34,48,38,40,42,36,27,0,0,0,0,0,394 +NA,NA,,2020-21,Boston - Snowden International School at Copley,350690,0,0,0,0,0,0,0,0,0,0,126,126,120,111,0,483 +NA,NA,,2020-21,Boston - TechBoston Academy,350657,0,0,0,0,0,0,0,104,108,121,166,149,124,128,1,901 +NA,NA,,2020-21,Boston - The English High,350535,0,0,0,0,0,0,0,0,0,0,100,154,119,132,13,518 +NA,NA,,2020-21,Boston - Thomas J Kenny,350328,27,37,38,41,43,48,55,50,0,0,0,0,0,0,0,339 +NA,NA,,2020-21,Boston - UP Academy Holland,350167,56,69,105,120,108,117,99,0,0,0,0,0,0,0,0,674 +NA,NA,,2020-21,Boston - Warren-Prescott,350346,48,72,61,66,65,52,56,63,32,33,0,0,0,0,0,548 +NA,NA,,2020-21,Boston - Washington Irving Middle,350445,0,0,0,0,0,0,0,52,55,77,0,0,0,0,0,184 +NA,NA,,2020-21,Boston - William E Russell,350366,52,51,53,64,58,46,41,0,0,0,0,0,0,0,0,365 +NA,NA,,2020-21,Boston - William Ellery Channing,350360,24,34,34,28,26,24,20,25,0,0,0,0,0,0,0,215 +NA,NA,,2020-21,Boston - William H Ohrenberger,350258,0,0,0,0,88,89,94,118,81,70,0,0,0,0,0,540 +NA,NA,,2020-21,Boston - William McKinley,350363,0,0,1,5,9,13,15,12,22,27,26,45,32,35,25,267 +NA,NA,,2020-21,Boston - William Monroe Trotter,350370,39,34,42,47,53,42,43,35,26,19,0,0,0,0,0,380 +NA,NA,,2020-21,Boston - Winship Elementary,350374,35,43,40,42,35,18,14,0,0,0,0,0,0,0,0,227 +NA,NA,,2020-21,Boston - Young Achievers,350380,38,41,50,57,58,74,73,69,54,44,0,0,0,0,0,558 +NA,NA,,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,0,0,0,0,0,0,88,97,106,95,91,93,80,73,0,723 +NA,NA,,2020-21,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,0,0,0,0,0,0,0,0,0,0,73,52,26,205,0,356 +NA,NA,,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,0,0,0,0,0,0,0,47,62,66,87,78,84,81,4,509 +NA,NA,,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,0,0,0,0,0,0,0,100,107,105,124,85,78,72,0,671 +NA,NA,,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,117,125,140,141,139,120,102,59,0,0,0,0,0,0,0,943 +NA,NA,,2020-21,Bourne - Bourne High School,360505,0,0,0,0,0,0,0,0,0,0,98,94,111,114,11,428 +NA,NA,,2020-21,Bourne - Bourne Intermediate School,360030,0,0,0,0,141,128,155,0,0,0,0,0,0,0,0,424 +NA,NA,,2020-21,Bourne - Bourne Middle School,360325,0,0,0,0,0,0,0,138,165,157,0,0,0,0,0,460 +NA,NA,,2020-21,Bourne - Bournedale Elementary School,360005,39,81,115,103,0,0,0,0,0,0,0,0,0,0,0,338 +NA,NA,,2020-21,Boxford - Harry Lee Cole,380005,27,78,105,80,0,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2020-21,Boxford - Spofford Pond,380013,0,0,0,0,87,99,111,92,0,0,0,0,0,0,0,389 +NA,NA,,2020-21,Braintree - Archie T Morrison,400033,0,42,62,84,68,68,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2020-21,Braintree - Braintree High,400505,79,0,0,0,0,0,0,0,0,0,366,413,438,430,0,1726 +NA,NA,,2020-21,Braintree - Donald Ross,400050,0,41,52,53,55,53,0,0,0,0,0,0,0,0,0,254 +NA,NA,,2020-21,Braintree - East Middle School,400305,0,0,0,0,0,0,248,239,275,243,0,0,0,0,0,1005 +NA,NA,,2020-21,Braintree - Highlands,400015,0,17,90,72,64,79,73,0,0,0,0,0,0,0,0,395 +NA,NA,,2020-21,Braintree - Hollis,400005,0,37,72,82,59,78,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2020-21,Braintree - Liberty,400025,0,0,62,68,64,72,99,0,0,0,0,0,0,0,0,365 +NA,NA,,2020-21,Braintree - Mary E Flaherty School,400020,0,32,57,62,56,63,0,0,0,0,0,0,0,0,0,270 +NA,NA,,2020-21,Braintree - Monatiquot Kindergarten Center,400009,0,144,0,0,0,0,0,0,0,0,0,0,0,0,0,144 +NA,NA,,2020-21,Braintree - South Middle School,400310,0,0,0,0,0,0,0,199,204,242,0,0,0,0,0,645 +NA,NA,,2020-21,Brewster - Eddy Elementary,410010,0,0,0,0,53,80,76,0,0,0,0,0,0,0,0,209 +NA,NA,,2020-21,Brewster - Stony Brook Elementary,410005,18,67,64,62,0,0,0,0,0,0,0,0,0,0,0,211 +NA,NA,,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,31,40,38,37,40,40,35,30,27,20,0,0,0,0,0,338 +NA,NA,,2020-21,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,0,0,0,0,0,255,296,0,0,0,0,0,551 +NA,NA,,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,0,0,0,0,0,0,0,0,0,0,305,327,355,372,11,1370 +NA,NA,,2020-21,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,172,177,185,0,0,0,0,0,0,0,0,0,534 +NA,NA,,2020-21,Bridgewater-Raynham - Merrill Elementary School,6250020,0,145,154,0,0,0,0,0,0,0,0,0,0,0,0,299 +NA,NA,,2020-21,Bridgewater-Raynham - Mitchell Elementary School,6250002,93,241,247,251,258,0,0,0,0,0,0,0,0,0,0,1090 +NA,NA,,2020-21,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,0,0,0,183,172,176,188,0,0,0,0,0,719 +NA,NA,,2020-21,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,0,0,0,0,0,0,1,4,0,6,1,0,12 +NA,NA,,2020-21,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,0,0,239,222,236,0,0,0,0,0,0,0,697 +NA,NA,,2020-21,Brimfield - Brimfield Elementary,430005,10,31,43,26,41,40,31,47,0,0,0,0,0,0,0,269 +NA,NA,,2020-21,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,0,0,0,0,0,0,0,123,120,107,98,0,448 +NA,NA,,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,0,0,0,0,0,0,0,0,0,0,343,351,334,291,0,1319 +NA,NA,,2020-21,Brockton - Ashfield Middle School,440421,0,0,0,0,0,0,0,137,209,218,0,0,0,0,0,564 +NA,NA,,2020-21,Brockton - Barrett Russell Early Childhood Center,440008,145,7,0,0,0,0,0,0,0,0,0,0,0,0,0,152 +NA,NA,,2020-21,Brockton - Brockton Champion High School,440515,0,0,0,0,0,0,0,0,0,0,30,30,22,28,27,137 +NA,NA,,2020-21,Brockton - Brockton High,440505,0,0,0,0,0,0,0,0,0,0,1044,1171,905,895,31,4046 +NA,NA,,2020-21,Brockton - Brookfield,440010,0,78,70,82,79,87,97,0,0,0,0,0,0,0,0,493 +NA,NA,,2020-21,Brockton - Downey,440110,0,101,95,83,100,103,113,0,0,0,0,0,0,0,0,595 +NA,NA,,2020-21,Brockton - Dr W Arnone Community School,440001,67,95,108,90,117,127,117,0,0,0,0,0,0,0,0,721 +NA,NA,,2020-21,Brockton - East Middle School,440405,0,0,0,0,0,0,0,147,232,258,0,0,0,0,0,637 +NA,NA,,2020-21,Brockton - Edgar B Davis,440023,0,100,99,89,121,119,106,131,122,124,0,0,0,0,0,1011 +NA,NA,,2020-21,Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0,0,3,15,44,71,0,133 +NA,NA,,2020-21,Brockton - Frederick Douglass Academy,440080,0,0,0,0,0,0,0,0,0,0,9,4,1,3,0,17 +NA,NA,,2020-21,Brockton - Gilmore Elementary School,440055,0,73,65,72,74,90,83,0,0,0,0,0,0,0,0,457 +NA,NA,,2020-21,Brockton - Hancock,440045,0,98,72,72,86,89,91,0,0,0,0,0,0,0,0,508 +NA,NA,,2020-21,Brockton - Huntington Therapeutic Day School,440400,0,0,0,0,1,2,2,6,6,8,10,8,9,12,0,64 +NA,NA,,2020-21,Brockton - John F Kennedy,440017,0,85,79,92,91,87,108,0,0,0,0,0,0,0,0,542 +NA,NA,,2020-21,Brockton - Joseph F. Plouffe Academy,440422,0,0,0,0,0,0,0,225,248,263,0,0,0,0,0,736 +NA,NA,,2020-21,Brockton - Louis F Angelo Elementary,440065,0,100,101,101,109,190,189,0,0,0,0,0,0,0,0,790 +NA,NA,,2020-21,Brockton - Manthala George Jr. School,440003,0,169,149,161,151,155,124,0,0,0,0,0,0,0,0,909 +NA,NA,,2020-21,Brockton - Mary E. Baker School,440002,0,97,95,112,114,95,110,0,0,0,0,0,0,0,0,623 +NA,NA,,2020-21,Brockton - North Middle School,440410,0,0,0,0,0,0,0,200,0,0,0,0,0,0,0,200 +NA,NA,,2020-21,Brockton - Oscar F Raymond,440078,0,146,113,115,130,152,143,0,0,0,0,0,0,0,0,799 +NA,NA,,2020-21,Brockton - South Middle School,440415,0,0,0,0,0,0,0,168,203,204,0,0,0,0,0,575 +NA,NA,,2020-21,Brockton - West Middle School,440420,0,0,0,0,0,0,0,204,220,251,0,0,0,0,0,675 +NA,NA,,2020-21,Brooke Charter School (District) - Brooke Charter School,4280305,0,185,195,190,196,192,177,182,176,178,148,120,73,41,0,2053 +NA,NA,,2020-21,Brookfield - Brookfield Elementary,450005,12,32,35,35,40,35,41,36,0,0,0,0,0,0,0,266 +NA,NA,,2020-21,Brookline - Brookline Early Education Program at Beacon,460001,26,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26 +NA,NA,,2020-21,Brookline - Brookline Early Education Program at Clark Road,460003,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31 +NA,NA,,2020-21,Brookline - Brookline Early Education Program at Putterham,460002,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28 +NA,NA,,2020-21,Brookline - Brookline High,460505,0,0,0,0,0,0,0,0,0,0,509,490,515,503,18,2035 +NA,NA,,2020-21,Brookline - Edith C Baker,460005,0,64,76,68,77,72,69,86,52,86,0,0,0,0,0,650 +NA,NA,,2020-21,Brookline - Florida Ruffin Ridley School,460015,19,95,86,90,86,91,88,80,86,85,0,0,0,0,0,806 +NA,NA,,2020-21,Brookline - Heath,460025,10,47,51,56,56,42,51,62,45,57,0,0,0,0,0,477 +NA,NA,,2020-21,Brookline - John D Runkle,460045,9,38,54,54,52,51,63,55,61,67,0,0,0,0,0,504 +NA,NA,,2020-21,Brookline - Lawrence,460030,0,69,70,68,74,59,72,61,56,61,0,0,0,0,0,590 +NA,NA,,2020-21,Brookline - Michael Driscoll,460020,0,49,50,44,55,55,58,68,56,57,0,0,0,0,0,492 +NA,NA,,2020-21,Brookline - Pierce,460040,0,70,67,77,85,72,84,93,92,69,0,0,0,0,0,709 +NA,NA,,2020-21,Brookline - The Lynch Center,460060,30,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30 +NA,NA,,2020-21,Brookline - William H Lincoln,460035,0,56,47,48,60,53,58,63,55,73,0,0,0,0,0,513 +NA,NA,,2020-21,Burlington - Burlington High,480505,73,0,0,0,0,0,0,0,0,0,205,218,229,241,0,966 +NA,NA,,2020-21,Burlington - Fox Hill,480007,0,59,70,85,99,77,53,0,0,0,0,0,0,0,0,443 +NA,NA,,2020-21,Burlington - Francis Wyman Elementary,480035,0,84,85,84,79,77,107,0,0,0,0,0,0,0,0,516 +NA,NA,,2020-21,Burlington - Marshall Simonds Middle,480303,0,0,0,0,0,0,0,256,239,256,0,0,0,0,0,751 +NA,NA,,2020-21,Burlington - Memorial,480015,0,73,61,54,63,77,73,0,0,0,0,0,0,0,0,401 +NA,NA,,2020-21,Burlington - Pine Glen Elementary,480020,0,44,53,59,45,66,44,0,0,0,0,0,0,0,0,311 +NA,NA,,2020-21,Cambridge - Amigos School,490006,27,49,46,45,47,43,44,39,39,41,0,0,0,0,0,420 +NA,NA,,2020-21,Cambridge - Cambridge Rindge and Latin,490506,0,0,0,0,0,0,0,0,0,0,428,478,476,451,14,1847 +NA,NA,,2020-21,Cambridge - Cambridge Street Upper School,490305,0,0,0,0,0,0,0,107,104,93,0,0,0,0,0,304 +NA,NA,,2020-21,Cambridge - Cambridgeport,490007,22,43,37,41,51,39,38,0,0,0,0,0,0,0,0,271 +NA,NA,,2020-21,Cambridge - Fletcher/Maynard Academy,490090,37,50,46,40,38,35,30,0,0,0,0,0,0,0,0,276 +NA,NA,,2020-21,Cambridge - Graham and Parks,490080,23,46,51,53,49,55,45,0,0,0,0,0,0,0,0,322 +NA,NA,,2020-21,Cambridge - Haggerty,490020,21,46,32,38,41,35,34,0,0,0,0,0,0,0,0,247 +NA,NA,,2020-21,Cambridge - John M Tobin,490065,81,41,40,41,33,33,38,0,0,0,0,0,0,0,0,307 +NA,NA,,2020-21,Cambridge - Kennedy-Longfellow,490040,32,34,44,32,43,28,30,0,0,0,0,0,0,0,0,243 +NA,NA,,2020-21,Cambridge - King Open,490035,29,72,57,51,52,42,55,0,0,0,0,0,0,0,0,358 +NA,NA,,2020-21,Cambridge - Maria L. Baldwin,490005,54,60,50,56,48,48,38,0,0,0,0,0,0,0,0,354 +NA,NA,,2020-21,Cambridge - Martin Luther King Jr.,490030,24,55,48,47,47,41,37,0,0,0,0,0,0,0,0,299 +NA,NA,,2020-21,Cambridge - Morse,490045,58,49,35,39,39,38,44,0,0,0,0,0,0,0,0,302 +NA,NA,,2020-21,Cambridge - Peabody,490050,40,46,45,42,46,44,44,0,0,0,0,0,0,0,0,307 +NA,NA,,2020-21,Cambridge - Putnam Avenue Upper School,490310,0,0,0,0,0,0,0,88,78,95,0,0,0,0,0,261 +NA,NA,,2020-21,Cambridge - Rindge Avenue Upper School,490315,0,0,0,0,0,0,0,90,88,91,0,0,0,0,0,269 +NA,NA,,2020-21,Cambridge - Vassal Lane Upper School,490320,0,0,0,0,0,0,0,100,94,97,0,0,0,0,0,291 +NA,NA,,2020-21,Canton - Canton High,500505,0,0,0,0,0,0,0,0,0,0,213,209,265,258,6,951 +NA,NA,,2020-21,Canton - Dean S Luce,500020,0,78,73,79,61,93,79,0,0,0,0,0,0,0,0,463 +NA,NA,,2020-21,Canton - John F Kennedy,500017,0,59,81,77,82,77,87,0,0,0,0,0,0,0,0,463 +NA,NA,,2020-21,Canton - Lt Peter M Hansen,500012,0,82,87,78,78,86,84,0,0,0,0,0,0,0,0,495 +NA,NA,,2020-21,Canton - Rodman Early Childhood Center,500010,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24 +NA,NA,,2020-21,Canton - Wm H Galvin Middle,500305,0,0,0,0,0,0,0,242,283,243,0,0,0,0,0,768 +NA,NA,,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,0,0,0,0,84,84,82,0,0,0,0,0,250 +NA,NA,,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0,0,0,0,0,0,0,0,0,0,174,168,150,134,0,626 +NA,NA,,2020-21,Carlisle - Carlisle School,510025,9,53,51,63,68,68,58,66,78,65,0,0,0,0,0,579 +NA,NA,,2020-21,Carver - Carver Elementary School,520015,35,98,127,124,108,139,112,0,0,0,0,0,0,0,0,743 +NA,NA,,2020-21,Carver - Carver Middle/High School,520405,0,0,0,0,0,0,0,114,114,125,106,98,72,104,0,733 +NA,NA,,2020-21,Central Berkshire - Becket Washington School,6350005,13,7,15,15,16,19,16,0,0,0,0,0,0,0,0,101 +NA,NA,,2020-21,Central Berkshire - Craneville,6350025,0,55,74,62,73,70,62,0,0,0,0,0,0,0,0,396 +NA,NA,,2020-21,Central Berkshire - Kittredge,6350035,28,19,21,18,21,24,15,0,0,0,0,0,0,0,0,146 +NA,NA,,2020-21,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,0,0,0,0,107,115,136,0,0,0,0,0,358 +NA,NA,,2020-21,Central Berkshire - Wahconah Regional High,6350505,0,0,0,0,0,0,0,0,0,0,144,117,122,131,0,514 +NA,NA,,2020-21,Chelmsford - Byam School,560030,0,82,91,86,105,92,0,0,0,0,0,0,0,0,0,456 +NA,NA,,2020-21,Chelmsford - Center Elementary School,560005,0,86,84,106,102,96,0,0,0,0,0,0,0,0,0,474 +NA,NA,,2020-21,Chelmsford - Charles D Harrington,560025,0,96,93,98,97,108,0,0,0,0,0,0,0,0,0,492 +NA,NA,,2020-21,Chelmsford - Chelmsford High,560505,0,0,0,0,0,0,0,0,0,0,358,335,342,373,0,1408 +NA,NA,,2020-21,Chelmsford - Col Moses Parker School,560305,0,0,0,0,0,0,172,187,187,182,0,0,0,0,0,728 +NA,NA,,2020-21,Chelmsford - Community Education Center,560001,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76 +NA,NA,,2020-21,Chelmsford - McCarthy Middle School,560310,0,0,0,0,0,0,191,196,206,177,0,0,0,0,0,770 +NA,NA,,2020-21,Chelmsford - South Row,560015,0,86,81,91,87,77,0,0,0,0,0,0,0,0,0,422 +NA,NA,,2020-21,Chelsea - Chelsea High,570505,0,0,0,0,0,0,0,0,0,0,432,449,325,240,9,1455 +NA,NA,,2020-21,Chelsea - Chelsea Opportunity Academy,570515,0,0,0,0,0,0,0,0,0,0,0,8,43,50,0,101 +NA,NA,,2020-21,Chelsea - Clark Avenue School,570050,0,0,0,0,0,0,176,177,191,160,0,0,0,0,0,704 +NA,NA,,2020-21,Chelsea - Edgar A Hooks Elementary,570030,0,0,100,131,148,142,0,0,0,0,0,0,0,0,0,521 +NA,NA,,2020-21,Chelsea - Eugene Wright Science and Technology Academy,570045,0,0,0,0,0,0,116,133,145,127,0,0,0,0,0,521 +NA,NA,,2020-21,Chelsea - Frank M Sokolowski Elementary,570040,0,0,99,128,140,137,0,0,0,0,0,0,0,0,0,504 +NA,NA,,2020-21,Chelsea - George F. Kelly Elementary,570035,0,0,94,112,100,98,30,39,0,0,0,0,0,0,0,473 +NA,NA,,2020-21,Chelsea - Joseph A. Browne School,570055,0,0,0,0,0,0,100,123,169,137,0,0,0,0,0,529 +NA,NA,,2020-21,Chelsea - Shurtleff Early Childhood,570003,57,477,103,0,0,0,0,0,0,0,0,0,0,0,0,637 +NA,NA,,2020-21,Chelsea - William A Berkowitz Elementary,570025,0,0,94,144,127,126,0,0,0,0,0,0,0,0,0,491 +NA,NA,,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,0,11,18,12,16,16,13,15,0,0,0,0,0,0,0,101 +NA,NA,,2020-21,Chicopee - Barry,610003,0,54,63,56,61,71,72,0,0,0,0,0,0,0,0,377 +NA,NA,,2020-21,Chicopee - Belcher,610010,0,62,87,63,0,0,0,0,0,0,0,0,0,0,0,212 +NA,NA,,2020-21,Chicopee - Bellamy Middle,610305,0,0,0,0,0,0,0,267,291,271,0,0,0,0,0,829 +NA,NA,,2020-21,Chicopee - Bowe,610015,0,63,61,70,81,86,67,0,0,0,0,0,0,0,0,428 +NA,NA,,2020-21,Chicopee - Bowie,610020,0,38,41,41,41,53,62,0,0,0,0,0,0,0,0,276 +NA,NA,,2020-21,Chicopee - Chicopee Academy,610021,0,0,0,0,0,0,0,0,3,10,11,17,5,12,2,60 +NA,NA,,2020-21,Chicopee - Chicopee Comprehensive High School,610510,0,0,0,0,0,0,0,0,0,0,320,294,245,303,0,1162 +NA,NA,,2020-21,Chicopee - Chicopee High,610505,0,0,0,0,0,0,0,0,0,0,211,228,277,248,0,964 +NA,NA,,2020-21,Chicopee - Dupont Middle,610310,0,0,0,0,0,0,0,253,275,266,0,0,0,0,0,794 +NA,NA,,2020-21,Chicopee - Fairview Elementary,610050,0,64,68,81,80,60,61,0,0,0,0,0,0,0,0,414 +NA,NA,,2020-21,Chicopee - Gen John J Stefanik,610090,0,49,44,55,58,63,77,0,0,0,0,0,0,0,0,346 +NA,NA,,2020-21,Chicopee - Lambert-Lavoie,610040,0,35,39,40,57,49,49,0,0,0,0,0,0,0,0,269 +NA,NA,,2020-21,Chicopee - Litwin,610022,0,11,15,19,90,121,94,0,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Chicopee - Streiber Memorial School,610065,0,36,46,34,37,49,46,0,0,0,0,0,0,0,0,248 +NA,NA,,2020-21,Chicopee - Szetela Early Childhood Center,610001,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121 +NA,NA,,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,0,0,0,0,0,0,0,130,140,129,0,0,0,0,0,399 +NA,NA,,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,0,0,0,0,0,0,0,0,0,0,69,74,67,89,0,299 +NA,NA,,2020-21,Clarksburg - Clarksburg Elementary,630010,0,18,15,20,30,13,22,20,30,22,0,0,0,0,0,190 +NA,NA,,2020-21,Clinton - Clinton Elementary,640050,30,146,124,171,135,149,0,0,0,0,0,0,0,0,0,755 +NA,NA,,2020-21,Clinton - Clinton Middle School,640305,0,0,0,0,0,0,140,133,165,143,0,0,0,0,0,581 +NA,NA,,2020-21,Clinton - Clinton Senior High,640505,11,0,0,0,0,0,0,0,0,0,135,120,103,121,1,491 +NA,NA,,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,20,20,21,21,21,22,21,23,22,21,43,39,31,23,0,348 +NA,NA,,2020-21,Cohasset - Cohasset High School,650505,0,0,0,0,0,0,0,0,0,0,103,116,103,125,0,447 +NA,NA,,2020-21,Cohasset - Cohasset Middle School,650305,0,0,0,0,0,0,0,119,130,108,0,0,0,0,0,357 +NA,NA,,2020-21,Cohasset - Deer Hill,650005,0,0,0,0,103,114,94,0,0,0,0,0,0,0,0,311 +NA,NA,,2020-21,Cohasset - Joseph Osgood,650010,25,100,105,103,0,0,0,0,0,0,0,0,0,0,0,333 +NA,NA,,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,0,77,84,116,122,116,120,100,121,90,29,40,0,0,0,1015 +NA,NA,,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,0,0,0,0,0,0,0,30,40,64,55,37,47,31,0,304 +NA,NA,,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,34,40,40,43,44,42,41,43,35,38,0,0,0,0,0,400 +NA,NA,,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,32,21,30,48,50,50,42,42,43,41,0,0,0,0,0,399 +NA,NA,,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,32,42,42,44,45,44,40,41,35,35,0,0,0,0,0,400 +NA,NA,,2020-21,Concord - Alcott,670005,14,56,75,79,75,65,86,0,0,0,0,0,0,0,0,450 +NA,NA,,2020-21,Concord - Concord Middle,670305,0,0,0,0,0,0,0,215,230,236,0,0,0,0,0,681 +NA,NA,,2020-21,Concord - Thoreau,670020,12,56,74,72,82,73,72,0,0,0,0,0,0,0,0,441 +NA,NA,,2020-21,Concord - Willard,670030,11,63,68,69,72,71,75,0,0,0,0,0,0,0,0,429 +NA,NA,,2020-21,Concord-Carlisle - Concord Carlisle High,6400505,0,0,0,0,0,0,0,0,0,0,339,340,321,311,5,1316 +NA,NA,,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,49,49,53,54,54,55,51,30,32,30,0,0,0,0,0,457 +NA,NA,,2020-21,Conway - Conway Grammar,680005,7,13,16,17,16,19,20,17,0,0,0,0,0,0,0,125 +NA,NA,,2020-21,Danvers - Danvers High,710505,0,0,0,0,0,0,0,0,0,0,218,205,205,236,4,868 +NA,NA,,2020-21,Danvers - Great Oak,710015,0,57,45,54,62,59,67,0,0,0,0,0,0,0,0,344 +NA,NA,,2020-21,Danvers - Highlands,710010,0,58,66,60,63,59,61,0,0,0,0,0,0,0,0,367 +NA,NA,,2020-21,Danvers - Holten Richmond Middle School,710305,0,0,0,0,0,0,0,273,258,259,0,0,0,0,0,790 +NA,NA,,2020-21,Danvers - Ivan G Smith,710032,0,54,53,55,45,50,51,0,0,0,0,0,0,0,0,308 +NA,NA,,2020-21,Danvers - Riverside,710030,56,39,46,51,37,40,36,0,0,0,0,0,0,0,0,305 +NA,NA,,2020-21,Danvers - Willis E Thorpe,710045,31,56,46,41,49,57,47,0,0,0,0,0,0,0,0,327 +NA,NA,,2020-21,Dartmouth - Andrew B. Cushman School,720005,66,54,0,0,0,0,0,0,0,0,0,0,0,0,0,120 +NA,NA,,2020-21,Dartmouth - Dartmouth High,720505,0,0,0,0,0,0,0,0,0,0,260,242,282,261,0,1045 +NA,NA,,2020-21,Dartmouth - Dartmouth Middle,720050,0,0,0,0,0,0,0,284,280,308,0,0,0,0,0,872 +NA,NA,,2020-21,Dartmouth - George H Potter,720030,13,55,59,61,60,59,62,0,0,0,0,0,0,0,0,369 +NA,NA,,2020-21,Dartmouth - James M. Quinn School,720040,0,104,122,115,104,99,102,0,0,0,0,0,0,0,0,646 +NA,NA,,2020-21,Dartmouth - Joseph Demello,720015,0,0,70,59,74,92,72,0,0,0,0,0,0,0,0,367 +NA,NA,,2020-21,Dedham - Avery,730010,0,0,62,49,51,63,55,0,0,0,0,0,0,0,0,280 +NA,NA,,2020-21,Dedham - Dedham High,730505,0,0,0,0,0,0,0,0,0,0,163,172,170,177,8,690 +NA,NA,,2020-21,Dedham - Dedham Middle School,730305,0,0,0,0,0,0,0,203,209,247,0,0,0,0,0,659 +NA,NA,,2020-21,Dedham - Early Childhood Center,730005,72,202,0,0,0,0,0,0,0,0,0,0,0,0,0,274 +NA,NA,,2020-21,Dedham - Greenlodge,730025,0,0,63,52,47,39,35,0,0,0,0,0,0,0,0,236 +NA,NA,,2020-21,Dedham - Oakdale,730030,0,0,63,36,48,51,49,0,0,0,0,0,0,0,0,247 +NA,NA,,2020-21,Dedham - Riverdale,730045,0,0,29,46,29,34,32,0,0,0,0,0,0,0,0,170 +NA,NA,,2020-21,Deerfield - Deerfield Elementary,740015,8,24,52,39,54,47,38,49,0,0,0,0,0,0,0,311 +NA,NA,,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,0,0,0,0,0,0,0,0,1,228,148,170,156,178,0,881 +NA,NA,,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,32,58,72,68,52,0,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,45,55,51,61,46,0,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2020-21,Dennis-Yarmouth - Mattacheese Middle School,6450305,0,0,0,0,0,0,0,199,232,0,0,0,0,0,0,431 +NA,NA,,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,6450050,0,0,0,0,0,228,245,3,0,0,0,0,0,0,0,476 +NA,NA,,2020-21,Dennis-Yarmouth - Station Avenue Elementary,6450025,0,93,104,117,97,0,0,0,0,0,0,0,0,0,0,411 +NA,NA,,2020-21,Dighton-Rehoboth - Dighton Elementary,6500005,10,98,65,87,91,94,0,0,0,0,0,0,0,0,0,445 +NA,NA,,2020-21,Dighton-Rehoboth - Dighton Middle School,6500305,0,0,0,0,0,0,91,90,100,95,0,0,0,0,0,376 +NA,NA,,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,0,0,0,0,0,0,0,0,0,0,180,169,178,220,6,753 +NA,NA,,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0,0,0,0,0,0,110,108,131,136,0,0,0,0,0,485 +NA,NA,,2020-21,Dighton-Rehoboth - Palmer River,6500010,28,88,111,120,102,108,0,0,0,0,0,0,0,0,0,557 +NA,NA,,2020-21,Douglas - Douglas Elementary School,770015,0,0,0,83,74,95,95,0,0,0,0,0,0,0,0,347 +NA,NA,,2020-21,Douglas - Douglas High School,770505,0,0,0,0,0,0,0,0,0,0,84,75,94,93,0,346 +NA,NA,,2020-21,Douglas - Douglas Middle School,770305,0,0,0,0,0,0,0,89,86,101,0,0,0,0,0,276 +NA,NA,,2020-21,Douglas - Douglas Primary School,770005,31,60,91,0,0,0,0,0,0,0,0,0,0,0,0,182 +NA,NA,,2020-21,Dover - Chickering,780005,8,61,80,76,75,88,87,0,0,0,0,0,0,0,0,475 +NA,NA,,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0,0,0,0,0,0,0,0,0,0,176,161,164,169,4,674 +NA,NA,,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,0,0,0,0,0,0,0,162,187,162,0,0,0,0,0,511 +NA,NA,,2020-21,Dracut - Brookside Elementary,790035,0,77,75,83,69,64,76,0,0,0,0,0,0,0,0,444 +NA,NA,,2020-21,Dracut - Dracut Senior High,790505,0,0,0,0,0,0,0,0,0,0,211,214,227,229,8,889 +NA,NA,,2020-21,Dracut - George H. Englesby Elementary School,790045,0,82,90,94,95,95,88,0,0,0,0,0,0,0,0,544 +NA,NA,,2020-21,Dracut - Greenmont Avenue,790030,0,44,50,44,44,41,60,0,0,0,0,0,0,0,0,283 +NA,NA,,2020-21,Dracut - Joseph A Campbell Elementary,790020,40,97,93,86,103,75,85,0,0,0,0,0,0,0,0,579 +NA,NA,,2020-21,Dracut - Justus C. Richardson Middle School,790410,0,0,0,0,0,0,0,294,303,323,0,0,0,0,0,920 +NA,NA,,2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,45,47,43,43,39,42,35,0,0,0,0,0,0,0,0,294 +NA,NA,,2020-21,Dudley-Charlton Reg - Charlton Elementary,6580020,42,123,137,0,0,0,0,0,0,0,0,0,0,0,0,302 +NA,NA,,2020-21,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,0,0,0,0,135,148,184,164,0,0,0,0,0,631 +NA,NA,,2020-21,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,0,99,122,108,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2020-21,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,0,0,0,126,141,145,127,0,0,0,0,0,539 +NA,NA,,2020-21,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,142,131,136,0,0,0,0,0,0,0,0,0,409 +NA,NA,,2020-21,Dudley-Charlton Reg - Mason Road School,6580010,31,95,98,0,0,0,0,0,0,0,0,0,0,0,0,224 +NA,NA,,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,0,0,0,0,0,0,0,0,262,213,261,264,5,1005 +NA,NA,,2020-21,Duxbury - Alden School,820004,0,0,0,0,194,195,217,0,0,0,0,0,0,0,0,606 +NA,NA,,2020-21,Duxbury - Chandler Elementary,820006,29,185,170,175,0,0,0,0,0,0,0,0,0,0,0,559 +NA,NA,,2020-21,Duxbury - Duxbury High,820505,0,0,0,0,0,0,0,0,0,0,242,241,226,249,1,959 +NA,NA,,2020-21,Duxbury - Duxbury Middle,820305,0,0,0,0,0,0,0,194,227,245,0,0,0,0,0,666 +NA,NA,,2020-21,East Bridgewater - Central,830005,71,134,143,139,0,0,0,0,0,0,0,0,0,0,0,487 +NA,NA,,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,0,0,0,0,0,178,172,143,164,160,151,0,968 +NA,NA,,2020-21,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,0,165,149,164,149,0,0,0,0,0,0,0,627 +NA,NA,,2020-21,East Longmeadow - Birchland Park,870305,0,0,0,0,0,0,0,193,204,188,0,0,0,0,0,585 +NA,NA,,2020-21,East Longmeadow - East Longmeadow High,870505,0,0,0,0,0,0,0,0,0,0,203,221,206,172,2,804 +NA,NA,,2020-21,East Longmeadow - Mapleshade,870010,0,0,0,0,103,76,96,0,0,0,0,0,0,0,0,275 +NA,NA,,2020-21,East Longmeadow - Meadow Brook,870013,12,139,166,153,0,0,0,0,0,0,0,0,0,0,0,470 +NA,NA,,2020-21,East Longmeadow - Mountain View,870015,0,0,0,0,87,91,92,0,0,0,0,0,0,0,0,270 +NA,NA,,2020-21,Eastham - Eastham Elementary,850005,22,21,30,28,29,34,30,0,0,0,0,0,0,0,0,194 +NA,NA,,2020-21,Easthampton - Center School,860005,0,38,40,39,36,39,0,0,0,0,0,0,0,0,0,192 +NA,NA,,2020-21,Easthampton - Easthampton High,860505,0,0,0,0,0,0,0,0,0,0,97,101,111,108,2,419 +NA,NA,,2020-21,Easthampton - Maple,860010,22,34,39,41,33,35,0,0,0,0,0,0,0,0,0,204 +NA,NA,,2020-21,Easthampton - Neil A Pepin,860020,0,37,38,36,38,39,0,0,0,0,0,0,0,0,0,188 +NA,NA,,2020-21,Easthampton - White Brook Middle School,860305,0,0,0,0,0,0,126,110,92,114,0,0,0,0,0,442 +NA,NA,,2020-21,Easton - Center School,880003,1,47,75,63,0,0,0,0,0,0,0,0,0,0,0,186 +NA,NA,,2020-21,Easton - Easton Middle School,880405,0,0,0,0,0,0,0,294,268,307,0,0,0,0,0,869 +NA,NA,,2020-21,Easton - Moreau Hall,880020,10,43,58,73,0,0,0,0,0,0,0,0,0,0,0,184 +NA,NA,,2020-21,Easton - Oliver Ames High,880505,0,0,0,0,0,0,0,0,0,0,265,286,286,274,14,1125 +NA,NA,,2020-21,Easton - Parkview Elementary,880015,46,56,89,92,0,0,0,0,0,0,0,0,0,0,0,283 +NA,NA,,2020-21,Easton - Richardson Olmsted School,880025,0,0,0,0,244,248,271,0,0,0,0,0,0,0,0,763 +NA,NA,,2020-21,Edgartown - Edgartown Elementary,890005,5,40,46,47,37,43,36,55,35,38,0,0,0,0,0,382 +NA,NA,,2020-21,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,0,0,0,0,0,0,0,0,0,0,100,98,98,89,0,385 +NA,NA,,2020-21,Erving - Erving Elementary,910030,13,14,17,15,11,13,21,9,0,0,0,0,0,0,0,113 +NA,NA,,2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0,0,0,0,0,0,0,0,0,0,426,413,381,344,0,1564 +NA,NA,,2020-21,Everett - Adams School,930003,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108 +NA,NA,,2020-21,Everett - Devens School,930030,0,1,0,2,5,3,6,3,10,6,6,6,6,3,0,57 +NA,NA,,2020-21,Everett - Everett High,930505,0,0,0,0,0,0,0,0,0,0,556,526,524,454,1,2061 +NA,NA,,2020-21,Everett - George Keverian School,930028,0,61,84,77,87,113,95,116,121,138,0,0,0,0,0,892 +NA,NA,,2020-21,Everett - Lafayette School,930038,0,88,107,96,102,94,120,121,131,132,0,0,0,0,0,991 +NA,NA,,2020-21,Everett - Madeline English School,930018,0,53,83,80,97,76,87,84,88,90,0,0,0,0,0,738 +NA,NA,,2020-21,Everett - Parlin School,930058,0,69,109,105,109,94,88,112,106,123,0,0,0,0,0,915 +NA,NA,,2020-21,Everett - Sumner G. Whittier School,930010,0,46,73,65,74,80,86,78,72,58,0,0,0,0,0,632 +NA,NA,,2020-21,Everett - Webster Extension,930001,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142 +NA,NA,,2020-21,Everett - Webster School,930015,0,45,76,65,62,57,42,0,0,0,0,0,0,0,0,347 +NA,NA,,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,4100205,0,0,0,0,0,0,174,181,177,180,181,174,164,158,0,1389 +NA,NA,,2020-21,Fairhaven - East Fairhaven,940010,9,46,38,46,52,70,68,0,0,0,0,0,0,0,0,329 +NA,NA,,2020-21,Fairhaven - Fairhaven High,940505,0,0,0,0,0,0,0,0,0,0,150,183,158,188,3,682 +NA,NA,,2020-21,Fairhaven - Hastings Middle,940305,0,0,0,0,0,0,0,160,150,144,0,0,0,0,0,454 +NA,NA,,2020-21,Fairhaven - Leroy Wood,940030,11,69,75,76,78,70,74,0,0,0,0,0,0,0,0,453 +NA,NA,,2020-21,Fall River - B M C Durfee High,950505,0,0,0,0,0,0,0,0,0,0,525,583,511,511,0,2130 +NA,NA,,2020-21,Fall River - Carlton M. Viveiros Elementary School,950009,0,100,107,111,125,107,142,0,0,0,0,0,0,0,0,692 +NA,NA,,2020-21,Fall River - Henry Lord Community School,950017,35,75,102,92,82,92,68,82,87,84,0,0,0,0,0,799 +NA,NA,,2020-21,Fall River - James Tansey,950140,0,35,49,50,45,54,48,0,0,0,0,0,0,0,0,281 +NA,NA,,2020-21,Fall River - John J Doran,950045,17,44,52,54,59,54,55,50,48,51,0,0,0,0,0,484 +NA,NA,,2020-21,Fall River - Letourneau Elementary School,950013,26,69,82,83,90,93,99,0,0,0,0,0,0,0,0,542 +NA,NA,,2020-21,Fall River - Mary Fonseca Elementary School,950011,29,74,97,93,95,109,108,0,0,0,0,0,0,0,0,605 +NA,NA,,2020-21,Fall River - Matthew J Kuss Middle,950320,0,0,0,0,0,0,0,237,245,253,0,0,0,0,0,735 +NA,NA,,2020-21,Fall River - Morton Middle,950315,0,0,0,0,0,0,0,225,235,219,0,0,0,0,0,679 +NA,NA,,2020-21,Fall River - North End Elementary,950005,70,103,116,100,105,117,131,0,0,0,0,0,0,0,0,742 +NA,NA,,2020-21,Fall River - Resiliency Preparatory Academy,950525,0,0,0,0,0,0,0,0,7,25,33,51,47,39,0,202 +NA,NA,,2020-21,Fall River - Samuel Watson,950145,0,45,37,47,46,38,37,0,0,0,0,0,0,0,0,250 +NA,NA,,2020-21,Fall River - Spencer Borden,950130,23,93,87,92,109,93,84,0,0,0,0,0,0,0,0,581 +NA,NA,,2020-21,Fall River - Stone PK-12 School,950340,0,0,0,2,3,3,7,6,8,10,9,10,6,2,0,66 +NA,NA,,2020-21,Fall River - Talbot Innovation School,950305,0,0,0,0,0,0,0,184,198,168,0,0,0,0,0,550 +NA,NA,,2020-21,Fall River - William S Greene,950065,23,77,119,104,107,107,123,0,0,0,0,0,0,0,0,660 +NA,NA,,2020-21,Falmouth - East Falmouth Elementary,960005,65,33,29,45,45,40,0,0,0,0,0,0,0,0,0,257 +NA,NA,,2020-21,Falmouth - Falmouth High,960505,0,0,0,0,0,0,0,0,0,0,199,240,185,183,4,811 +NA,NA,,2020-21,Falmouth - Lawrence,960405,0,0,0,0,0,0,0,0,253,257,0,0,0,0,0,510 +NA,NA,,2020-21,Falmouth - Morse Pond School,960305,0,0,0,0,0,0,247,248,0,0,0,0,0,0,0,495 +NA,NA,,2020-21,Falmouth - Mullen-Hall,960020,0,72,88,83,83,79,0,0,0,0,0,0,0,0,0,405 +NA,NA,,2020-21,Falmouth - North Falmouth Elementary,960030,0,45,59,62,82,58,0,0,0,0,0,0,0,0,0,306 +NA,NA,,2020-21,Falmouth - Teaticket,960015,17,43,47,38,49,51,0,0,0,0,0,0,0,0,0,245 +NA,NA,,2020-21,Farmington River Reg - Farmington River Elementary,6620020,18,16,17,10,12,14,10,10,0,0,0,0,0,0,0,107 +NA,NA,,2020-21,Fitchburg - Arthur M Longsjo Middle School,970315,0,0,0,0,0,0,178,169,165,152,0,0,0,0,0,664 +NA,NA,,2020-21,Fitchburg - Crocker Elementary,970016,23,74,116,130,100,123,0,0,0,0,0,0,0,0,0,566 +NA,NA,,2020-21,Fitchburg - Fitchburg High,970505,15,0,0,0,0,0,0,0,0,0,332,362,280,279,0,1268 +NA,NA,,2020-21,Fitchburg - Goodrich Academy,970510,0,0,0,0,0,0,0,0,0,0,5,11,36,73,13,138 +NA,NA,,2020-21,Fitchburg - McKay Arts Academy,970340,19,72,76,76,72,68,75,77,61,61,0,0,0,0,0,657 +NA,NA,,2020-21,Fitchburg - Memorial Middle School,970048,0,0,0,0,0,0,163,170,162,161,0,0,0,0,0,656 +NA,NA,,2020-21,Fitchburg - Reingold Elementary,970043,19,79,112,133,102,129,0,0,0,0,0,0,0,0,0,574 +NA,NA,,2020-21,Fitchburg - South Street Elementary,970060,25,90,112,129,116,121,0,0,0,0,0,0,0,0,0,593 +NA,NA,,2020-21,Florida - Abbott Memorial,980005,0,11,7,8,2,11,6,4,18,13,0,0,0,0,0,80 +NA,NA,,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,0,0,0,0,0,38,37,35,37,40,28,0,215 +NA,NA,,2020-21,Foxborough - Charles Taylor Elementary,990050,0,51,57,44,38,59,0,0,0,0,0,0,0,0,0,249 +NA,NA,,2020-21,Foxborough - Foxborough High,990505,0,0,0,0,0,0,0,0,0,0,189,188,197,183,11,768 +NA,NA,,2020-21,Foxborough - John J Ahern,990405,0,0,0,0,0,0,164,173,215,209,0,0,0,0,0,761 +NA,NA,,2020-21,Foxborough - Mabelle M Burrell,990015,67,51,41,49,51,43,0,0,0,0,0,0,0,0,0,302 +NA,NA,,2020-21,Foxborough - Vincent M Igo Elementary,990020,0,65,80,62,78,85,0,0,0,0,0,0,0,0,0,370 +NA,NA,,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,0,148,150,154,153,152,149,152,145,151,117,95,85,63,0,1714 +NA,NA,,2020-21,Framingham - Barbieri Elementary,1000035,0,116,115,121,116,107,104,0,0,0,0,0,0,0,0,679 +NA,NA,,2020-21,Framingham - Brophy,1000006,0,84,72,87,63,65,75,0,0,0,0,0,0,0,0,446 +NA,NA,,2020-21,Framingham - Cameron Middle School,1000302,0,0,0,0,0,0,0,179,203,192,0,0,0,0,0,574 +NA,NA,,2020-21,Framingham - Charlotte A Dunning,1000007,0,59,66,93,60,75,69,0,0,0,0,0,0,0,0,422 +NA,NA,,2020-21,Framingham - Framingham High School,1000515,0,0,0,0,0,0,0,0,0,0,661,654,554,516,0,2385 +NA,NA,,2020-21,Framingham - Fuller Middle,1000305,0,0,0,0,0,0,0,189,187,191,0,0,0,0,0,567 +NA,NA,,2020-21,Framingham - Hemenway,1000015,0,84,89,91,94,86,94,0,0,0,0,0,0,0,0,538 +NA,NA,,2020-21,Framingham - Juniper Hill School,1000001,195,0,0,0,0,0,0,0,0,0,0,0,0,0,0,195 +NA,NA,,2020-21,Framingham - King Elementary School,1000005,0,58,54,70,60,64,57,0,0,0,0,0,0,0,0,363 +NA,NA,,2020-21,Framingham - Mary E Stapleton Elementary,1000045,0,42,48,63,49,51,60,0,0,0,0,0,0,0,0,313 +NA,NA,,2020-21,Framingham - Miriam F McCarthy School,1000050,0,71,66,93,78,93,85,0,0,0,0,0,0,0,0,486 +NA,NA,,2020-21,Framingham - Potter Road,1000039,0,77,88,94,86,87,87,0,0,0,0,0,0,0,0,519 +NA,NA,,2020-21,Framingham - Walsh Middle,1000310,0,0,0,0,0,0,0,256,266,244,0,0,0,0,0,766 +NA,NA,,2020-21,Framingham - Woodrow Wilson,1000055,0,69,61,82,82,94,92,0,0,0,0,0,0,0,0,480 +NA,NA,,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,0,0,0,0,0,0,0,0,64,75,68,68,66,58,0,399 +NA,NA,,2020-21,Franklin - Annie Sullivan Middle School,1010040,0,0,0,0,0,0,0,92,131,125,0,0,0,0,0,348 +NA,NA,,2020-21,Franklin - Davis Thayer,1010035,0,30,41,44,24,40,34,0,0,0,0,0,0,0,0,213 +NA,NA,,2020-21,Franklin - Franklin Early Childhood Development Center,1010003,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73 +NA,NA,,2020-21,Franklin - Franklin High,1010505,0,0,0,0,0,0,0,0,0,0,414,429,436,449,6,1734 +NA,NA,,2020-21,Franklin - Helen Keller Elementary,1010012,0,35,51,50,50,69,72,0,0,0,0,0,0,0,0,327 +NA,NA,,2020-21,Franklin - Horace Mann,1010405,0,0,0,0,0,0,0,118,131,166,0,0,0,0,0,415 +NA,NA,,2020-21,Franklin - J F Kennedy Memorial,1010013,0,52,34,54,72,61,59,0,0,0,0,0,0,0,0,332 +NA,NA,,2020-21,Franklin - Jefferson Elementary,1010010,0,52,37,61,69,49,60,0,0,0,0,0,0,0,0,328 +NA,NA,,2020-21,Franklin - Oak Street Elementary,1010030,0,50,60,66,71,68,53,0,0,0,0,0,0,0,0,368 +NA,NA,,2020-21,Franklin - Parmenter,1010032,0,46,55,53,43,63,50,0,0,0,0,0,0,0,0,310 +NA,NA,,2020-21,Franklin - Remington Middle,1010310,0,0,0,0,0,0,0,138,121,123,0,0,0,0,0,382 +NA,NA,,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,0,0,0,0,0,0,0,171,147,131,106,0,555 +NA,NA,,2020-21,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,0,0,0,0,0,0,0,0,198,194,156,205,0,753 +NA,NA,,2020-21,Freetown-Lakeville - Assawompset Elementary School,6650002,0,116,109,115,113,0,0,0,0,0,0,0,0,0,0,453 +NA,NA,,2020-21,Freetown-Lakeville - Freetown Elementary School,6650001,33,83,105,93,97,0,0,0,0,0,0,0,0,0,0,411 +NA,NA,,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,0,0,0,0,0,0,0,202,229,234,1,0,0,0,0,666 +NA,NA,,2020-21,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,0,0,200,217,2,0,0,0,0,0,0,0,419 +NA,NA,,2020-21,Frontier - Frontier Regional,6700505,0,0,0,0,0,0,0,0,114,126,99,99,102,103,6,649 +NA,NA,,2020-21,Gardner - Elm Street School,1030001,0,0,0,145,167,140,0,0,0,0,0,0,0,0,0,452 +NA,NA,,2020-21,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,0,0,0,0,0,0,0,14,31,40,29,0,114 +NA,NA,,2020-21,Gardner - Gardner High,1030505,0,0,0,0,0,0,0,0,0,205,170,106,111,130,9,731 +NA,NA,,2020-21,Gardner - Gardner Middle School,1030405,0,0,0,0,0,0,177,191,176,0,0,0,0,0,0,544 +NA,NA,,2020-21,Gardner - Waterford Street,1030020,56,153,161,0,0,0,0,0,0,0,0,0,0,0,0,370 +NA,NA,,2020-21,Gateway - Chester Elementary,6720059,10,13,11,17,16,14,21,0,0,0,0,0,0,0,0,102 +NA,NA,,2020-21,Gateway - Gateway Regional High,6720505,0,0,0,0,0,0,0,0,0,0,49,50,39,53,3,194 +NA,NA,,2020-21,Gateway - Gateway Regional Middle School,6720405,0,0,0,0,0,0,0,0,69,58,0,0,0,0,0,127 +NA,NA,,2020-21,Gateway - Littleville Elementary School,6720143,16,33,38,35,56,37,38,77,0,0,0,0,0,0,0,330 +NA,NA,,2020-21,Georgetown - Georgetown High School,1050505,0,0,0,0,0,0,0,0,0,0,74,83,91,89,0,337 +NA,NA,,2020-21,Georgetown - Georgetown Middle School,1050305,0,0,0,0,0,0,0,0,116,88,0,0,0,0,0,204 +NA,NA,,2020-21,Georgetown - Penn Brook,1050010,0,83,105,104,99,91,96,82,0,0,0,0,0,0,0,660 +NA,NA,,2020-21,Georgetown - Perley Elementary,1050005,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17 +NA,NA,,2020-21,Gill-Montague - Gill Elementary,6740005,0,13,12,14,18,19,16,19,0,0,0,0,0,0,0,111 +NA,NA,,2020-21,Gill-Montague - Great Falls Middle,6740310,0,0,0,0,0,0,0,52,82,76,0,0,0,0,0,210 +NA,NA,,2020-21,Gill-Montague - Hillcrest Elementary School,6740015,34,42,44,0,0,0,0,0,0,0,0,0,0,0,0,120 +NA,NA,,2020-21,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,56,57,46,56,0,0,0,0,0,0,0,0,215 +NA,NA,,2020-21,Gill-Montague - Turners Fall High,6740505,0,0,0,0,0,0,0,0,0,0,49,38,39,58,6,190 +NA,NA,,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,0,0,0,0,0,89,89,91,90,39,47,34,24,0,503 +NA,NA,,2020-21,Gloucester - Beeman Memorial,1070010,0,53,60,52,45,53,49,0,0,0,0,0,0,0,0,312 +NA,NA,,2020-21,Gloucester - East Gloucester Elementary,1070020,0,35,26,36,23,27,44,0,0,0,0,0,0,0,0,191 +NA,NA,,2020-21,Gloucester - Gloucester High,1070505,0,0,0,0,0,0,0,0,0,0,258,202,193,159,7,819 +NA,NA,,2020-21,Gloucester - Gloucester PreSchool,1070025,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66 +NA,NA,,2020-21,Gloucester - Plum Cove School,1070042,0,39,31,36,32,34,33,0,0,0,0,0,0,0,0,205 +NA,NA,,2020-21,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,0,0,0,0,206,201,199,0,0,0,0,0,606 +NA,NA,,2020-21,Gloucester - Veterans Memorial,1070045,0,39,42,27,28,39,38,0,0,0,0,0,0,0,0,213 +NA,NA,,2020-21,Gloucester - West Parish,1070050,0,58,60,51,71,55,59,0,0,0,0,0,0,0,0,354 +NA,NA,,2020-21,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,1,0,0,1,0,2,0,0,0,0,0,0,4 +NA,NA,,2020-21,Grafton - Grafton High School,1100505,0,0,0,0,0,0,0,0,0,0,213,234,240,183,5,875 +NA,NA,,2020-21,Grafton - Grafton Middle,1100305,0,0,0,0,0,0,0,0,246,267,0,0,0,0,0,513 +NA,NA,,2020-21,Grafton - Millbury Street Elementary School,1100200,0,0,0,95,124,136,132,143,0,0,0,0,0,0,0,630 +NA,NA,,2020-21,Grafton - North Grafton Elementary,1100025,44,100,109,0,0,0,0,0,0,0,0,0,0,0,0,253 +NA,NA,,2020-21,Grafton - North Street Elementary School,1100030,0,0,0,98,111,102,112,143,0,0,0,0,0,0,0,566 +NA,NA,,2020-21,Grafton - South Grafton Elementary,1100005,42,104,138,0,0,0,0,0,0,0,0,0,0,0,0,284 +NA,NA,,2020-21,Granby - East Meadow,1110004,24,47,54,65,52,43,58,45,0,0,0,0,0,0,0,388 +NA,NA,,2020-21,Granby - Granby Jr Sr High School,1110505,0,0,0,0,0,0,0,0,51,51,49,58,65,54,0,328 +NA,NA,,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,0,0,0,0,0,0,0,0,0,0,374,367,359,352,0,1452 +NA,NA,,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0,0,0,0,0,0,0,0,0,0,420,428,400,386,0,1634 +NA,NA,,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,0,0,0,0,0,0,0,0,0,0,596,584,560,538,18,2296 +NA,NA,,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,0,0,0,0,0,0,0,0,0,0,567,527,521,498,0,2113 +NA,NA,,2020-21,Greenfield - Discovery School at Four Corners,1140025,0,47,48,34,44,46,0,0,0,0,0,0,0,0,0,219 +NA,NA,,2020-21,Greenfield - Federal Street School,1140010,0,35,31,43,47,52,0,0,0,0,0,0,0,0,0,208 +NA,NA,,2020-21,Greenfield - Greenfield High,1140505,0,0,0,0,0,0,0,0,0,116,95,88,103,78,0,480 +NA,NA,,2020-21,Greenfield - Greenfield Middle,1140305,0,0,0,0,0,0,122,119,119,0,0,0,0,0,0,360 +NA,NA,,2020-21,Greenfield - Newton School,1140035,0,39,62,44,39,40,0,0,0,0,0,0,0,0,0,224 +NA,NA,,2020-21,Greenfield - The Academy of Early Learning at North Parish,1140005,54,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54 +NA,NA,,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,0,32,37,40,51,46,48,55,101,109,132,112,87,93,0,943 +NA,NA,,2020-21,Groton-Dunstable - Boutwell School,6730001,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37 +NA,NA,,2020-21,Groton-Dunstable - Florence Roche School,6730010,0,80,98,109,110,118,0,0,0,0,0,0,0,0,0,515 +NA,NA,,2020-21,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,0,0,0,0,0,0,0,171,168,188,189,5,721 +NA,NA,,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,0,0,0,155,197,172,182,0,0,0,0,0,706 +NA,NA,,2020-21,Groton-Dunstable - Swallow/Union School,6730005,0,47,57,60,62,57,0,0,0,0,0,0,0,0,0,283 +NA,NA,,2020-21,Hadley - Hadley Elementary,1170015,18,36,28,35,26,31,39,35,0,0,0,0,0,0,0,248 +NA,NA,,2020-21,Hadley - Hopkins Academy,1170505,0,0,0,0,0,0,0,0,44,48,50,38,36,42,0,258 +NA,NA,,2020-21,Halifax - Halifax Elementary,1180005,0,67,60,82,99,100,80,81,0,0,0,0,0,0,0,569 +NA,NA,,2020-21,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,38,33,44,36,34,38,0,0,0,0,0,0,0,0,223 +NA,NA,,2020-21,Hamilton-Wenham - Cutler School,6750010,0,30,37,40,60,44,45,0,0,0,0,0,0,0,0,256 +NA,NA,,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,0,0,0,0,0,0,0,0,0,124,129,131,140,0,524 +NA,NA,,2020-21,Hamilton-Wenham - Miles River Middle,6750310,0,0,0,0,0,0,0,136,127,130,0,0,0,0,0,393 +NA,NA,,2020-21,Hamilton-Wenham - Winthrop School,6750015,31,54,52,38,38,44,37,0,0,0,0,0,0,0,0,294 +NA,NA,,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,0,0,0,0,0,0,0,86,85,88,83,87,56,55,0,540 +NA,NA,,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,0,0,0,0,0,0,0,54,71,68,59,41,27,0,0,320 +NA,NA,,2020-21,Hampden-Wilbraham - Green Meadows Elementary,6800005,27,35,48,38,45,41,41,20,15,14,0,0,0,0,0,324 +NA,NA,,2020-21,Hampden-Wilbraham - Mile Tree Elementary,6800025,58,121,145,0,0,0,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2020-21,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0,0,0,0,0,0,0,0,0,261,246,276,242,0,1025 +NA,NA,,2020-21,Hampden-Wilbraham - Soule Road,6800030,0,0,0,0,0,156,163,0,0,0,0,0,0,0,0,319 +NA,NA,,2020-21,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,147,144,0,0,0,0,0,0,0,0,0,0,291 +NA,NA,,2020-21,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,0,0,0,0,176,201,205,0,0,0,0,0,582 +NA,NA,,2020-21,Hampshire - Hampshire Regional High,6830505,0,0,0,0,0,0,0,0,128,117,101,99,135,98,5,683 +NA,NA,,2020-21,Hancock - Hancock Elementary,1210005,5,5,9,7,4,9,6,12,0,0,0,0,0,0,0,57 +NA,NA,,2020-21,Hanover - Cedar Elementary,1220004,52,192,211,0,0,0,0,0,0,0,0,0,0,0,0,455 +NA,NA,,2020-21,Hanover - Center Elementary,1220005,0,0,0,204,176,209,0,0,0,0,0,0,0,0,0,589 +NA,NA,,2020-21,Hanover - Hanover High,1220505,0,0,0,0,0,0,0,0,0,0,182,175,188,212,5,762 +NA,NA,,2020-21,Hanover - Hanover Middle,1220305,0,0,0,0,0,0,197,212,183,216,0,0,0,0,0,808 +NA,NA,,2020-21,Harvard - Bromfield,1250505,0,0,0,0,0,0,0,77,86,85,85,71,92,97,0,593 +NA,NA,,2020-21,Harvard - Hildreth Elementary School,1250005,22,47,61,58,78,67,80,0,0,0,0,0,0,0,0,413 +NA,NA,,2020-21,Hatfield - Hatfield Elementary,1270005,12,17,29,33,23,38,27,37,0,0,0,0,0,0,0,216 +NA,NA,,2020-21,Hatfield - Smith Academy,1270505,0,0,0,0,0,0,0,0,33,35,22,25,41,25,0,181 +NA,NA,,2020-21,Haverhill - Bradford Elementary,1280008,0,96,107,102,111,94,0,0,0,0,0,0,0,0,0,510 +NA,NA,,2020-21,Haverhill - Caleb Dustin Hunking School,1280030,0,61,92,83,89,73,157,167,172,179,0,0,0,0,0,1073 +NA,NA,,2020-21,Haverhill - Consentino Middle School,1280100,0,0,0,0,0,0,38,234,216,224,0,0,0,0,0,712 +NA,NA,,2020-21,Haverhill - Crowell,1280515,0,0,0,0,0,0,0,0,0,0,3,8,8,4,0,23 +NA,NA,,2020-21,Haverhill - Dr Paul Nettle,1280050,0,0,0,0,0,0,122,185,143,141,0,0,0,0,0,591 +NA,NA,,2020-21,Haverhill - Golden Hill,1280026,0,74,86,93,107,121,0,0,0,0,0,0,0,0,0,481 +NA,NA,,2020-21,Haverhill - Greenleaf Academy,1280033,0,0,0,0,0,0,0,2,4,5,10,2,6,7,0,36 +NA,NA,,2020-21,Haverhill - Haverhill High,1280505,0,0,0,0,0,0,0,0,0,0,519,439,398,470,26,1852 +NA,NA,,2020-21,Haverhill - John G Whittier,1280085,0,0,0,0,0,0,113,112,140,147,0,0,0,0,0,512 +NA,NA,,2020-21,Haverhill - Moody,1280045,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182 +NA,NA,,2020-21,Haverhill - Pentucket Lake Elementary,1280054,0,72,81,92,139,140,0,0,0,0,0,0,0,0,0,524 +NA,NA,,2020-21,Haverhill - Silver Hill Elementary School,1280067,0,71,84,75,96,124,118,0,0,0,0,0,0,0,0,568 +NA,NA,,2020-21,Haverhill - TEACH,1280073,0,0,1,2,3,0,2,5,2,1,1,2,1,1,7,28 +NA,NA,,2020-21,Haverhill - Tilton,1280075,0,66,86,116,106,0,0,0,0,0,0,0,0,0,0,374 +NA,NA,,2020-21,Haverhill - Tilton Upper Middle School,1280105,0,0,0,0,0,89,93,0,0,0,0,0,0,0,0,182 +NA,NA,,2020-21,Haverhill - Walnut Square,1280080,0,32,48,43,0,0,0,0,0,0,0,0,0,0,0,123 +NA,NA,,2020-21,Hawlemont - Hawlemont Regional,6850005,13,13,11,13,12,23,16,17,0,0,0,0,0,0,0,118 +NA,NA,,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,0,0,0,0,0,0,0,33,80,80,0,0,0,0,0,193 +NA,NA,,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,35,32,33,34,40,34,31,32,32,0,0,0,0,0,303 +NA,NA,,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,20,20,20,21,22,22,30,31,32,0,0,0,0,0,218 +NA,NA,,2020-21,Hingham - East Elementary School,1310005,27,47,51,60,63,68,81,0,0,0,0,0,0,0,0,397 +NA,NA,,2020-21,Hingham - Hingham High,1310505,0,0,0,0,0,0,0,0,0,0,306,332,327,317,4,1286 +NA,NA,,2020-21,Hingham - Hingham Middle School,1310410,0,0,0,0,0,0,0,298,336,291,0,0,0,0,0,925 +NA,NA,,2020-21,Hingham - Plymouth River,1310019,0,46,60,54,65,63,75,0,0,0,0,0,0,0,0,363 +NA,NA,,2020-21,Hingham - South Elementary,1310020,0,64,71,87,88,82,86,0,0,0,0,0,0,0,0,478 +NA,NA,,2020-21,Hingham - Wm L Foster Elementary,1310010,0,58,72,74,76,86,79,0,0,0,0,0,0,0,0,445 +NA,NA,,2020-21,Holbrook - Holbrook Middle High School,1330505,0,0,0,0,0,0,0,89,101,96,96,78,67,57,5,589 +NA,NA,,2020-21,Holbrook - John F Kennedy,1330018,37,87,110,117,106,116,106,0,0,0,0,0,0,0,0,679 +NA,NA,,2020-21,Holland - Holland Elementary,1350005,11,20,18,26,33,29,26,31,0,0,0,0,0,0,0,194 +NA,NA,,2020-21,Holliston - Holliston High,1360505,0,0,0,0,0,0,0,0,0,0,194,199,212,201,5,811 +NA,NA,,2020-21,Holliston - Miller School,1360007,0,0,0,0,213,224,229,0,0,0,0,0,0,0,0,666 +NA,NA,,2020-21,Holliston - Placentino Elementary,1360010,61,176,192,169,0,0,0,0,0,0,0,0,0,0,0,598 +NA,NA,,2020-21,Holliston - Robert H. Adams Middle School,1360305,0,0,0,0,0,0,0,227,222,230,0,0,0,0,0,679 +NA,NA,,2020-21,Holyoke - E N White Elementary,1370045,76,64,68,69,48,54,50,0,0,0,0,0,0,0,0,429 +NA,NA,,2020-21,Holyoke - H.B. Lawrence School,1370070,0,39,52,45,42,0,0,0,0,0,0,0,0,0,0,178 +NA,NA,,2020-21,Holyoke - Holyoke High,1370505,0,0,0,0,0,0,0,0,0,0,361,380,378,447,0,1566 +NA,NA,,2020-21,Holyoke - Holyoke STEM Academy,1370320,0,0,0,0,0,0,0,95,56,97,0,0,0,0,0,248 +NA,NA,,2020-21,Holyoke - Joseph Metcalf School,1370003,31,39,42,41,38,41,34,32,0,0,0,0,0,0,0,298 +NA,NA,,2020-21,Holyoke - Kelly Elementary,1370040,17,52,58,53,51,57,0,0,0,48,0,0,0,0,0,336 +NA,NA,,2020-21,Holyoke - Lt Clayre Sullivan Elementary,1370055,23,34,45,45,37,64,51,52,60,50,0,0,0,0,0,461 +NA,NA,,2020-21,Holyoke - Lt Elmer J McMahon Elementary,1370015,25,27,40,27,43,45,29,41,43,43,0,0,0,0,0,363 +NA,NA,,2020-21,Holyoke - Maurice A Donahue Elementary,1370060,32,51,46,58,53,50,47,0,42,44,0,0,0,0,0,423 +NA,NA,,2020-21,Holyoke - Morgan Full Service Community School,1370025,62,43,49,41,39,42,0,0,0,0,0,0,0,0,0,276 +NA,NA,,2020-21,Holyoke - Veritas Prep Holyoke,1370075,0,0,0,0,0,0,101,100,119,0,0,0,0,0,0,320 +NA,NA,,2020-21,Holyoke - William R. Peck School,1370030,0,0,0,0,0,52,41,48,55,59,0,0,0,0,0,255 +NA,NA,,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,0,57,82,88,77,86,83,85,73,71,0,0,0,0,0,702 +NA,NA,,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,6030020,27,73,90,72,70,0,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2020-21,Hoosac Valley Regional - Hoosac Valley High School,6030505,0,0,0,0,0,0,0,0,0,95,64,58,70,47,3,337 +NA,NA,,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,6030315,0,0,0,0,0,80,76,103,107,0,0,0,0,0,0,366 +NA,NA,,2020-21,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,0,0,0,0,0,90,90,81,67,84,74,0,486 +NA,NA,,2020-21,Hopedale - Memorial,1380010,0,81,71,66,78,82,78,77,0,0,0,0,0,0,0,533 +NA,NA,,2020-21,Hopedale - Park Street School,1380003,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80 +NA,NA,,2020-21,Hopkinton - Elmwood,1390010,0,0,0,308,272,0,0,0,0,0,0,0,0,0,0,580 +NA,NA,,2020-21,Hopkinton - Hopkins Elementary School,1390015,0,0,0,0,0,312,297,0,0,0,0,0,0,0,0,609 +NA,NA,,2020-21,Hopkinton - Hopkinton High,1390505,0,0,0,0,0,0,0,0,0,0,260,315,289,327,7,1198 +NA,NA,,2020-21,Hopkinton - Hopkinton Middle School,1390305,0,0,0,0,0,0,0,303,297,322,0,0,0,0,0,922 +NA,NA,,2020-21,Hopkinton - Hopkinton Pre-School,1390003,75,0,0,0,0,0,0,0,0,0,0,0,0,0,0,75 +NA,NA,,2020-21,Hopkinton - Marathon Elementary School,1390005,0,270,278,0,0,0,0,0,0,0,0,0,0,0,0,548 +NA,NA,,2020-21,Hudson - C A Farley,1410030,14,68,77,76,83,79,0,0,0,0,0,0,0,0,0,397 +NA,NA,,2020-21,Hudson - David J. Quinn Middle School,1410410,0,0,0,0,0,0,209,163,200,0,0,0,0,0,0,572 +NA,NA,,2020-21,Hudson - Forest Avenue Elementary,1410015,0,46,65,62,81,68,0,0,0,0,0,0,0,0,0,322 +NA,NA,,2020-21,Hudson - Hudson High,1410505,0,0,0,0,0,0,0,0,0,206,171,182,169,144,0,872 +NA,NA,,2020-21,Hudson - Mulready Elementary,1410007,12,52,42,48,49,50,0,0,0,0,0,0,0,0,0,253 +NA,NA,,2020-21,Hull - Hull High,1420505,0,0,0,0,0,0,0,0,0,0,59,65,65,73,0,262 +NA,NA,,2020-21,Hull - Lillian M Jacobs,1420015,31,43,54,54,55,58,57,0,0,0,0,0,0,0,0,352 +NA,NA,,2020-21,Hull - Memorial Middle,1420305,0,0,0,0,0,0,0,61,62,65,0,0,0,0,0,188 +NA,NA,,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,0,0,0,0,0,0,100,100,102,100,108,98,86,96,0,790 +NA,NA,,2020-21,Ipswich - Ipswich High,1440505,0,0,0,0,0,0,0,0,0,0,134,123,142,136,2,537 +NA,NA,,2020-21,Ipswich - Ipswich Middle School,1440305,0,0,0,0,0,0,0,113,122,136,0,0,0,0,0,371 +NA,NA,,2020-21,Ipswich - Paul F Doyon Memorial,1440007,0,44,47,57,67,58,59,0,0,0,0,0,0,0,0,332 +NA,NA,,2020-21,Ipswich - Winthrop,1440015,27,44,50,50,64,57,62,0,0,0,0,0,0,0,0,354 +NA,NA,,2020-21,King Philip - King Philip Middle School,6900510,0,0,0,0,0,0,0,0,385,347,0,0,0,0,0,732 +NA,NA,,2020-21,King Philip - King Philip Regional High,6900505,0,0,0,0,0,0,0,0,0,0,306,269,328,305,6,1214 +NA,NA,,2020-21,Kingston - Kingston Elementary,1450005,0,134,149,150,0,0,0,0,0,0,0,0,0,0,0,433 +NA,NA,,2020-21,Kingston - Kingston Intermediate,1450020,0,0,0,0,150,140,162,150,0,0,0,0,0,0,0,602 +NA,NA,,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,0,65,71,71,72,72,74,71,58,59,0,0,0,0,0,613 +NA,NA,,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,0,125,124,124,124,125,128,126,124,124,130,126,117,118,0,1615 +NA,NA,,2020-21,Lawrence - Alexander B Bruce,1490015,0,0,0,0,60,65,75,86,96,76,0,0,0,0,0,458 +NA,NA,,2020-21,Lawrence - Arlington Middle School,1490017,0,0,0,0,0,0,126,150,145,163,0,0,0,0,0,584 +NA,NA,,2020-21,Lawrence - Community Day Arlington,1490009,0,66,119,118,130,131,0,0,0,0,0,0,0,0,0,564 +NA,NA,,2020-21,Lawrence - Edward F. Parthum,1490053,0,86,147,144,144,128,0,0,0,0,0,0,0,0,0,649 +NA,NA,,2020-21,Lawrence - Emily G Wetherbee,1490080,0,29,61,63,61,76,73,58,74,72,0,0,0,0,0,567 +NA,NA,,2020-21,Lawrence - Francis M Leahy,1490040,0,0,75,76,84,92,101,0,0,0,0,0,0,0,0,428 +NA,NA,,2020-21,Lawrence - Frost Middle School,1490525,0,0,0,0,0,0,131,132,134,145,0,0,0,0,0,542 +NA,NA,,2020-21,Lawrence - Gerard A. Guilmette,1490022,0,0,91,111,135,121,0,0,0,0,0,0,0,0,0,458 +NA,NA,,2020-21,Lawrence - Guilmette Middle School,1490025,0,0,0,0,0,0,120,127,135,112,0,0,0,0,0,494 +NA,NA,,2020-21,Lawrence - High School Learning Center,1490536,0,0,0,0,0,0,0,0,0,0,1,11,44,111,0,167 +NA,NA,,2020-21,Lawrence - James F Hennessey,1490020,80,58,75,78,0,0,0,0,0,0,0,0,0,0,0,291 +NA,NA,,2020-21,Lawrence - John Breen School,1490003,116,114,0,0,0,0,0,0,0,0,0,0,0,0,0,230 +NA,NA,,2020-21,Lawrence - John K Tarbox,1490075,0,0,51,59,54,55,63,0,0,0,0,0,0,0,0,282 +NA,NA,,2020-21,Lawrence - Lawlor Early Childhood Center,1490002,0,127,0,0,0,0,0,0,0,0,0,0,0,0,0,127 +NA,NA,,2020-21,Lawrence - Lawrence Family Public Academy,1490011,35,112,0,0,0,0,0,0,0,0,0,0,0,0,0,147 +NA,NA,,2020-21,Lawrence - Lawrence High School,1490515,0,0,0,0,0,0,0,0,0,0,785,890,745,684,28,3132 +NA,NA,,2020-21,Lawrence - Oliver Partnership School,1490048,0,0,86,89,94,105,88,0,0,0,0,0,0,0,0,462 +NA,NA,,2020-21,Lawrence - Parthum Middle School,1490027,0,0,0,0,0,0,142,136,167,160,0,0,0,0,0,605 +NA,NA,,2020-21,Lawrence - RISE Academy,1490615,0,0,0,0,0,0,0,0,0,0,8,11,2,0,0,21 +NA,NA,,2020-21,Lawrence - Robert Frost,1490018,0,72,111,124,108,122,0,0,0,0,0,0,0,0,0,537 +NA,NA,,2020-21,Lawrence - Rollins Early Childhood Center,1490001,91,66,0,0,0,0,0,0,0,0,0,0,0,0,0,157 +NA,NA,,2020-21,Lawrence - School for Exceptional Studies,1490537,0,0,3,6,7,8,7,12,11,15,11,11,13,12,11,127 +NA,NA,,2020-21,Lawrence - South Lawrence East Elementary School,1490004,0,0,132,144,139,141,148,0,0,0,0,0,0,0,0,704 +NA,NA,,2020-21,Lawrence - Spark Academy,1490085,0,0,0,0,0,0,0,148,164,164,0,0,0,0,0,476 +NA,NA,,2020-21,Lawrence - UP Academy Leonard Middle School,1490090,0,0,0,0,0,0,0,121,109,90,0,0,0,0,0,320 +NA,NA,,2020-21,Lawrence - UP Academy Oliver Middle School,1490049,0,0,0,0,0,0,0,101,100,112,0,0,0,0,0,313 +NA,NA,,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,63,81,81,84,84,83,81,77,75,77,0,0,0,0,0,786 +NA,NA,,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,4860105,0,71,75,75,74,75,81,73,70,71,0,0,0,0,0,665 +NA,NA,,2020-21,Lee - Lee Elementary,1500025,12,41,45,49,58,47,48,50,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Lee - Lee Middle/High School,1500505,0,0,0,0,0,0,0,0,40,53,57,62,57,60,4,333 +NA,NA,,2020-21,Leicester - Leicester Elementary,1510005,0,80,97,90,117,92,0,0,0,0,0,0,0,0,0,476 +NA,NA,,2020-21,Leicester - Leicester High,1510505,0,0,0,0,0,0,0,0,0,0,112,98,131,99,0,440 +NA,NA,,2020-21,Leicester - Leicester Integrated Preschool,1510001,33,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33 +NA,NA,,2020-21,Leicester - Leicester Middle,1510015,0,0,0,0,0,0,88,96,128,113,0,0,0,0,0,425 +NA,NA,,2020-21,Lenox - Lenox Memorial High,1520505,0,0,0,0,0,0,0,60,62,61,65,66,70,61,0,445 +NA,NA,,2020-21,Lenox - Morris,1520015,15,44,47,49,48,52,50,0,0,0,0,0,0,0,0,305 +NA,NA,,2020-21,Leominster - Bennett,1530003,51,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51 +NA,NA,,2020-21,Leominster - Center For Technical Education Innovation,1530605,0,0,0,0,0,0,0,0,0,0,298,168,155,163,0,784 +NA,NA,,2020-21,Leominster - Fall Brook,1530007,0,61,99,102,110,102,119,0,0,0,0,0,0,0,0,593 +NA,NA,,2020-21,Leominster - Frances Drake School,1530010,0,72,89,80,80,89,91,0,0,0,0,0,0,0,0,501 +NA,NA,,2020-21,Leominster - Johnny Appleseed,1530025,0,86,120,114,108,118,99,0,0,0,0,0,0,0,0,645 +NA,NA,,2020-21,Leominster - Leominster Center for Excellence,1530515,0,0,0,0,0,0,0,0,0,0,10,11,12,11,0,44 +NA,NA,,2020-21,Leominster - Leominster High School,1530505,0,0,0,0,0,0,0,0,0,0,152,299,304,305,0,1060 +NA,NA,,2020-21,Leominster - Lincoln School,1530005,24,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24 +NA,NA,,2020-21,Leominster - Northwest,1530030,0,42,116,133,125,121,139,0,0,0,0,0,0,0,0,676 +NA,NA,,2020-21,Leominster - Priest Street,1530040,0,84,0,0,0,0,0,0,0,0,0,0,0,0,0,84 +NA,NA,,2020-21,Leominster - Samoset School,1530045,0,0,0,0,0,0,0,168,170,172,0,0,0,0,0,510 +NA,NA,,2020-21,Leominster - Sky View Middle School,1530320,0,0,0,0,0,0,0,305,294,288,0,0,0,0,0,887 +NA,NA,,2020-21,Leverett - Leverett Elementary,1540005,0,15,14,14,18,17,15,23,0,0,0,0,0,0,0,116 +NA,NA,,2020-21,Lexington - Bowman,1550008,0,54,71,75,87,89,94,0,0,0,0,0,0,0,0,470 +NA,NA,,2020-21,Lexington - Bridge,1550006,0,39,57,65,69,74,96,0,0,0,0,0,0,0,0,400 +NA,NA,,2020-21,Lexington - Fiske,1550015,0,41,58,62,75,62,89,0,0,0,0,0,0,0,0,387 +NA,NA,,2020-21,Lexington - Harrington,1550030,0,44,67,77,85,97,76,0,0,0,0,0,0,0,0,446 +NA,NA,,2020-21,Lexington - Jonas Clarke Middle,1550305,0,0,0,0,0,0,0,278,302,301,0,0,0,0,0,881 +NA,NA,,2020-21,Lexington - Joseph Estabrook,1550010,0,66,79,90,97,87,103,0,0,0,0,0,0,0,0,522 +NA,NA,,2020-21,Lexington - Lexington Children's Place,1550001,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57 +NA,NA,,2020-21,Lexington - Lexington High,1550505,0,0,0,0,0,0,0,0,0,0,550,599,582,530,0,2261 +NA,NA,,2020-21,Lexington - Maria Hastings,1550035,0,65,76,111,94,123,96,0,0,0,0,0,0,0,0,565 +NA,NA,,2020-21,Lexington - Wm Diamond Middle,1550310,0,0,0,0,0,0,0,289,299,324,0,0,0,0,0,912 +NA,NA,,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,0,0,0,0,0,0,0,80,86,94,0,0,0,0,0,260 +NA,NA,,2020-21,Lincoln - Hanscom Middle,1570305,0,0,0,0,0,48,45,49,52,42,0,0,0,0,0,236 +NA,NA,,2020-21,Lincoln - Hanscom Primary,1570006,55,50,68,66,57,0,0,0,0,0,0,0,0,0,0,296 +NA,NA,,2020-21,Lincoln - Lincoln School,1570025,20,41,52,75,53,64,49,57,60,45,0,0,0,0,0,516 +NA,NA,,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,0,0,0,0,0,0,0,0,0,0,369,363,406,381,6,1525 +NA,NA,,2020-21,Littleton - Littleton High School,1580505,0,0,0,0,0,0,0,0,0,0,117,109,98,108,3,435 +NA,NA,,2020-21,Littleton - Littleton Middle School,1580305,0,0,0,0,0,0,0,136,129,128,0,0,0,0,0,393 +NA,NA,,2020-21,Littleton - Russell St Elementary,1580015,0,0,0,0,134,112,127,0,0,0,0,0,0,0,0,373 +NA,NA,,2020-21,Littleton - Shaker Lane Elementary,1580005,34,95,114,109,0,0,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2020-21,Longmeadow - Blueberry Hill,1590005,0,48,51,72,73,75,74,0,0,0,0,0,0,0,0,393 +NA,NA,,2020-21,Longmeadow - Center,1590010,0,54,73,69,67,70,68,0,0,0,0,0,0,0,0,401 +NA,NA,,2020-21,Longmeadow - Glenbrook Middle,1590017,0,0,0,0,0,0,0,113,109,111,0,0,0,0,0,333 +NA,NA,,2020-21,Longmeadow - Longmeadow High,1590505,0,0,0,0,0,0,0,0,0,0,223,217,240,220,0,900 +NA,NA,,2020-21,Longmeadow - Williams Middle,1590305,0,0,0,0,0,0,0,94,129,112,0,0,0,0,0,335 +NA,NA,,2020-21,Longmeadow - Wolf Swamp Road,1590025,59,46,55,65,57,55,52,0,0,0,0,0,0,0,0,389 +NA,NA,,2020-21,Lowell - Abraham Lincoln,1600020,27,75,81,97,90,90,0,0,0,0,0,0,0,0,0,460 +NA,NA,,2020-21,Lowell - B.F. Butler Middle School,1600310,0,0,0,0,0,0,130,140,140,140,0,0,0,0,0,550 +NA,NA,,2020-21,Lowell - Bartlett Community Partnership,1600090,38,46,43,46,45,42,45,59,57,53,0,0,0,0,0,474 +NA,NA,,2020-21,Lowell - Cardinal O'Connell Early Learning Center,1600001,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70 +NA,NA,,2020-21,Lowell - Charles W Morey,1600030,45,84,81,94,87,88,0,0,0,0,0,0,0,0,0,479 +NA,NA,,2020-21,Lowell - Charlotte M Murkland Elementary,1600080,40,84,83,92,88,87,0,0,0,0,0,0,0,0,0,474 +NA,NA,,2020-21,Lowell - Dr An Wang School,1600345,0,0,0,0,0,0,166,163,168,171,0,0,0,0,0,668 +NA,NA,,2020-21,Lowell - Dr Gertrude Bailey,1600002,20,67,88,96,91,90,0,0,0,0,0,0,0,0,0,452 +NA,NA,,2020-21,Lowell - Dr. Janice Adie Day School,1600605,1,2,5,6,4,11,7,3,1,5,3,0,1,0,1,50 +NA,NA,,2020-21,Lowell - Greenhalge,1600015,33,75,82,93,72,88,0,0,0,0,0,0,0,0,0,443 +NA,NA,,2020-21,Lowell - Henry J Robinson Middle,1600330,0,0,0,0,0,0,157,172,165,164,0,0,0,0,0,658 +NA,NA,,2020-21,Lowell - James S Daley Middle School,1600315,0,0,0,0,0,0,173,180,169,169,0,0,0,0,0,691 +NA,NA,,2020-21,Lowell - James Sullivan Middle School,1600340,0,0,0,0,0,0,141,168,166,166,0,0,0,0,0,641 +NA,NA,,2020-21,Lowell - John J Shaughnessy,1600050,18,82,85,95,80,92,0,0,0,0,0,0,0,0,0,452 +NA,NA,,2020-21,Lowell - Joseph McAvinnue,1600010,23,62,88,87,82,86,0,0,0,0,0,0,0,0,0,428 +NA,NA,,2020-21,Lowell - Kathryn P. Stoklosa Middle School,1600360,0,0,0,0,0,0,150,169,168,169,0,0,0,0,0,656 +NA,NA,,2020-21,Lowell - Laura Lee Therapeutic Day School,1600085,0,0,0,0,0,3,2,1,7,10,0,0,0,0,0,23 +NA,NA,,2020-21,Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,0,0,0,0,9,8,10,9,0,36 +NA,NA,,2020-21,Lowell - Lowell High,1600505,0,0,0,0,0,0,0,0,0,0,880,660,736,751,21,3048 +NA,NA,,2020-21,Lowell - Moody Elementary,1600027,0,47,43,47,48,43,0,0,0,0,0,0,0,0,0,228 +NA,NA,,2020-21,Lowell - Pawtucketville Memorial,1600036,27,78,88,88,91,91,0,0,0,0,0,0,0,0,0,463 +NA,NA,,2020-21,Lowell - Peter W Reilly,1600040,28,65,86,92,85,89,0,0,0,0,0,0,0,0,0,445 +NA,NA,,2020-21,Lowell - Pyne Arts,1600018,19,47,45,50,44,46,45,59,59,55,0,0,0,0,0,469 +NA,NA,,2020-21,Lowell - Rogers STEM Academy,1600005,0,77,80,95,86,89,93,111,109,108,0,0,0,0,0,848 +NA,NA,,2020-21,Lowell - S Christa McAuliffe Elementary,1600075,41,90,86,94,80,91,0,0,0,0,0,0,0,0,0,482 +NA,NA,,2020-21,Lowell - The Career Academy,1600515,0,0,0,0,0,0,0,0,0,0,13,21,21,39,0,94 +NA,NA,,2020-21,Lowell - Washington,1600055,23,38,44,47,43,46,0,0,0,0,0,0,0,0,0,241 +NA,NA,,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,40,95,94,91,84,87,83,84,76,69,0,0,0,0,0,803 +NA,NA,,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,0,0,0,0,0,0,0,23,20,20,25,0,88 +NA,NA,,2020-21,Ludlow - Chapin Street Elementary School,1610020,0,0,0,151,149,0,0,0,0,0,0,0,0,0,0,300 +NA,NA,,2020-21,Ludlow - East Street Elementary School,1610010,49,133,149,0,0,0,0,0,0,0,0,0,0,0,0,331 +NA,NA,,2020-21,Ludlow - Ludlow Senior High,1610505,0,0,0,0,0,0,0,0,0,0,211,220,210,202,0,843 +NA,NA,,2020-21,Ludlow - Paul R Baird Middle,1610305,0,0,0,0,0,0,0,170,202,209,0,0,0,0,0,581 +NA,NA,,2020-21,Ludlow - Veterans Park Elementary,1610023,0,0,0,0,0,160,168,0,0,0,0,0,0,0,0,328 +NA,NA,,2020-21,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,4 +NA,NA,,2020-21,Lunenburg - Lunenburg High,1620505,0,0,0,0,0,0,0,0,0,0,122,113,125,114,0,474 +NA,NA,,2020-21,Lunenburg - Lunenburg Middle School,1620305,0,0,0,0,0,0,0,125,141,120,0,0,0,0,0,386 +NA,NA,,2020-21,Lunenburg - Lunenburg Primary School,1620010,33,106,105,141,0,0,0,0,0,0,0,0,0,0,0,385 +NA,NA,,2020-21,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,0,110,111,123,0,0,0,0,0,0,0,0,344 +NA,NA,,2020-21,Lynn - A Drewicz Elementary,1630016,3,86,73,70,79,67,79,0,0,0,0,0,0,0,0,457 +NA,NA,,2020-21,Lynn - Aborn,1630011,0,32,37,47,41,39,40,0,0,0,0,0,0,0,0,236 +NA,NA,,2020-21,Lynn - Breed Middle School,1630405,0,0,0,0,0,0,0,475,500,357,0,0,0,0,0,1332 +NA,NA,,2020-21,Lynn - Brickett Elementary,1630020,0,54,51,63,55,58,59,0,0,0,0,0,0,0,0,340 +NA,NA,,2020-21,Lynn - Capt William G Shoemaker,1630090,5,41,50,64,64,57,36,0,0,0,0,0,0,0,0,317 +NA,NA,,2020-21,Lynn - Classical High,1630505,0,0,0,0,0,0,0,0,0,0,348,476,462,372,0,1658 +NA,NA,,2020-21,Lynn - Cobbet Elementary,1630035,0,113,101,105,90,104,97,0,0,0,0,0,0,0,0,610 +NA,NA,,2020-21,Lynn - E J Harrington,1630045,39,110,99,107,92,94,81,0,0,0,0,0,0,0,0,622 +NA,NA,,2020-21,Lynn - Edward A Sisson,1630095,13,50,70,69,76,74,72,0,0,0,0,0,0,0,0,424 +NA,NA,,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,0,0,0,0,7,10,10,12,23,21,17,0,100 +NA,NA,,2020-21,Lynn - Hood,1630055,29,70,80,63,88,85,76,0,0,0,0,0,0,0,0,491 +NA,NA,,2020-21,Lynn - Ingalls,1630060,0,185,90,99,100,103,101,0,0,0,0,0,0,0,0,678 +NA,NA,,2020-21,Lynn - Julia F Callahan,1630030,32,46,42,60,53,57,70,0,0,0,0,0,0,0,0,360 +NA,NA,,2020-21,Lynn - Lincoln-Thomson,1630070,0,34,26,31,30,49,41,0,0,0,0,0,0,0,0,211 +NA,NA,,2020-21,Lynn - Lynn English High,1630510,0,0,0,0,0,0,0,0,0,0,503,538,536,435,0,2012 +NA,NA,,2020-21,Lynn - Lynn Vocational Technical Institute,1630605,34,2,2,2,3,3,0,0,0,291,297,281,267,240,44,1466 +NA,NA,,2020-21,Lynn - Lynn Woods,1630075,0,21,19,27,27,27,32,0,0,0,0,0,0,0,0,153 +NA,NA,,2020-21,Lynn - Pickering Middle,1630420,0,0,0,0,0,0,0,187,216,187,0,0,0,0,0,590 +NA,NA,,2020-21,Lynn - Robert L Ford,1630050,0,0,76,97,108,92,112,0,0,0,0,0,0,0,0,485 +NA,NA,,2020-21,Lynn - Sewell-Anderson,1630085,0,105,21,32,43,37,35,0,0,0,0,0,0,0,0,273 +NA,NA,,2020-21,Lynn - Thurgood Marshall Mid,1630305,0,0,0,0,0,0,0,469,485,363,0,0,0,0,0,1317 +NA,NA,,2020-21,Lynn - Tracy,1630100,0,0,90,89,89,86,82,0,0,0,0,0,0,0,0,436 +NA,NA,,2020-21,Lynn - Washington Elementary School,1630005,16,63,76,78,78,72,55,0,0,0,0,0,0,0,0,438 +NA,NA,,2020-21,Lynn - William R Fallon,1630080,0,0,4,5,5,9,8,0,0,0,0,0,0,0,0,31 +NA,NA,,2020-21,Lynn - Wm P Connery,1630040,9,74,81,81,100,97,108,0,0,0,0,0,0,0,0,550 +NA,NA,,2020-21,Lynnfield - Huckleberry Hill,1640010,0,96,94,82,92,88,0,0,0,0,0,0,0,0,0,452 +NA,NA,,2020-21,Lynnfield - Lynnfield High,1640505,0,0,0,0,0,0,0,0,0,0,147,139,146,168,0,600 +NA,NA,,2020-21,Lynnfield - Lynnfield Middle School,1640405,0,0,0,0,0,0,194,180,162,161,0,0,0,0,0,697 +NA,NA,,2020-21,Lynnfield - Lynnfield Preschool,1640005,27,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27 +NA,NA,,2020-21,Lynnfield - Summer Street,1640020,0,74,67,84,97,69,0,0,0,0,0,0,0,0,0,391 +NA,NA,,2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,0,0,0,0,0,0,0,0,0,50,48,0,98 +NA,NA,,2020-21,Malden - Beebe,1650003,0,97,96,117,98,96,97,102,100,99,0,0,0,0,0,902 +NA,NA,,2020-21,Malden - Ferryway,1650013,0,96,103,101,99,95,93,104,96,117,0,0,0,0,0,904 +NA,NA,,2020-21,Malden - Forestdale,1650027,0,56,58,56,54,61,57,76,74,69,0,0,0,0,0,561 +NA,NA,,2020-21,Malden - Linden,1650047,0,82,106,85,90,99,89,100,84,90,0,0,0,0,0,825 +NA,NA,,2020-21,Malden - Malden Early Learning Center,1650049,217,0,0,0,0,0,0,0,0,0,0,0,0,0,0,217 +NA,NA,,2020-21,Malden - Malden High,1650505,0,0,0,0,0,0,0,0,0,0,434,440,445,397,23,1739 +NA,NA,,2020-21,Malden - Salemwood,1650057,0,70,94,87,109,116,134,131,116,115,0,0,0,0,0,972 +NA,NA,,2020-21,Manchester Essex Regional - Essex Elementary,6980020,0,28,36,31,36,26,32,0,0,0,0,0,0,0,0,189 +NA,NA,,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,0,0,0,0,0,0,0,0,96,117,123,123,0,459 +NA,NA,,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,0,0,0,0,0,0,102,113,128,0,0,0,0,0,343 +NA,NA,,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,6980010,12,28,42,41,48,60,42,0,0,0,0,0,0,0,0,273 +NA,NA,,2020-21,Mansfield - Everett W Robinson,1670007,0,222,211,223,0,0,0,0,0,0,0,0,0,0,0,656 +NA,NA,,2020-21,Mansfield - Harold L Qualters Middle,1670035,0,0,0,0,0,0,0,255,283,266,0,0,0,0,0,804 +NA,NA,,2020-21,Mansfield - Jordan/Jackson Elementary,1670014,0,0,0,0,237,243,268,0,0,0,0,0,0,0,0,748 +NA,NA,,2020-21,Mansfield - Mansfield High,1670505,0,0,0,0,0,0,0,0,0,0,275,307,285,326,12,1205 +NA,NA,,2020-21,Mansfield - Roland Green School,1670003,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91 +NA,NA,,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505,0,0,0,0,0,0,0,0,0,0,39,51,73,43,0,206 +NA,NA,,2020-21,Marblehead - Dr. Samuel C. Eveleth,1680025,0,71,0,0,0,0,0,0,0,0,0,0,0,0,0,71 +NA,NA,,2020-21,Marblehead - Glover,1680020,41,65,72,77,85,0,0,0,0,0,0,0,0,0,0,340 +NA,NA,,2020-21,Marblehead - L H Coffin,1680010,0,0,88,103,0,0,0,0,0,0,0,0,0,0,0,191 +NA,NA,,2020-21,Marblehead - Marblehead High,1680505,0,0,0,0,0,0,0,0,0,0,225,228,248,247,5,953 +NA,NA,,2020-21,Marblehead - Marblehead Veterans Middle School,1680300,0,0,0,0,0,0,0,0,203,249,0,0,0,0,0,452 +NA,NA,,2020-21,Marblehead - Village School,1680016,0,0,0,0,105,200,190,202,0,0,0,0,0,0,0,697 +NA,NA,,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,0,0,50,49,52,32,25,0,0,0,0,0,208 +NA,NA,,2020-21,Marion - Sippican,1690005,13,41,54,59,55,54,60,60,0,0,0,0,0,0,0,396 +NA,NA,,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,0,0,0,0,0,0,375,368,396,0,0,0,0,0,1139 +NA,NA,,2020-21,Marlborough - Charles Jaworek School,1700030,0,93,133,119,99,113,115,0,0,0,0,0,0,0,0,672 +NA,NA,,2020-21,Marlborough - Early Childhood Center,1700006,157,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157 +NA,NA,,2020-21,Marlborough - Francis J Kane,1700008,0,77,79,75,74,92,91,0,0,0,0,0,0,0,0,488 +NA,NA,,2020-21,Marlborough - Goodnow Brothers Elementary School,1700020,0,124,119,115,122,111,124,0,0,0,0,0,0,0,0,715 +NA,NA,,2020-21,Marlborough - Marlborough High,1700505,0,0,0,0,0,0,0,0,0,0,207,277,248,262,12,1006 +NA,NA,,2020-21,Marlborough - Richer,1700025,0,90,90,93,75,71,86,0,0,0,0,0,0,0,0,505 +NA,NA,,2020-21,Marshfield - Daniel Webster,1710015,62,44,38,41,51,55,53,0,0,0,0,0,0,0,0,344 +NA,NA,,2020-21,Marshfield - Eames Way School,1710005,0,30,32,33,38,44,37,0,0,0,0,0,0,0,0,214 +NA,NA,,2020-21,Marshfield - Furnace Brook Middle,1710310,0,0,0,0,0,0,0,291,286,328,0,0,0,0,0,905 +NA,NA,,2020-21,Marshfield - Gov Edward Winslow,1710020,0,60,63,61,54,69,73,0,0,0,0,0,0,0,0,380 +NA,NA,,2020-21,Marshfield - Marshfield High,1710505,0,0,0,0,0,0,0,0,0,0,262,328,327,303,0,1220 +NA,NA,,2020-21,Marshfield - Martinson Elementary,1710025,36,60,79,53,61,70,54,0,0,0,0,0,0,0,0,413 +NA,NA,,2020-21,Marshfield - South River,1710010,0,50,45,30,48,61,50,0,0,0,0,0,0,0,0,284 +NA,NA,,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,7000505,0,0,0,0,0,0,0,0,0,0,165,190,162,168,4,689 +NA,NA,,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,0,12,13,16,17,11,20,18,14,20,9,5,16,5,0,176 +NA,NA,,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,0,66,60,61,59,60,59,0,0,0,0,0,0,0,0,365 +NA,NA,,2020-21,Masconomet - Masconomet Regional High School,7050505,0,0,0,0,0,0,0,0,0,0,265,282,279,282,0,1108 +NA,NA,,2020-21,Masconomet - Masconomet Regional Middle School,7050405,0,0,0,0,0,0,0,0,314,262,0,0,0,0,0,576 +NA,NA,,2020-21,Mashpee - Kenneth Coombs School,1720005,54,93,92,91,0,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2020-21,Mashpee - Mashpee High,1720505,0,0,0,0,0,0,0,0,0,0,95,122,106,119,0,442 +NA,NA,,2020-21,Mashpee - Mashpee Middle School,1720020,0,0,0,0,0,0,0,0,115,141,0,0,0,0,0,256 +NA,NA,,2020-21,Mashpee - Quashnet School,1720035,0,0,0,0,105,97,119,119,0,0,0,0,0,0,0,440 +NA,NA,,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,53,90,95,99,95,96,95,92,96,88,85,83,73,73,0,1213 +NA,NA,,2020-21,Mattapoisett - Center,1730005,21,48,49,63,54,0,0,0,0,0,0,0,0,0,0,235 +NA,NA,,2020-21,Mattapoisett - Old Hammondtown,1730010,0,0,0,0,0,57,61,52,0,0,0,0,0,0,0,170 +NA,NA,,2020-21,Maynard - Fowler School,1740305,0,0,0,0,0,95,96,74,94,97,0,0,0,0,0,456 +NA,NA,,2020-21,Maynard - Green Meadow,1740010,34,79,100,87,110,0,0,0,0,0,0,0,0,0,0,410 +NA,NA,,2020-21,Maynard - Maynard High,1740505,0,0,0,0,0,0,0,0,0,0,69,72,91,79,2,313 +NA,NA,,2020-21,Medfield - Dale Street,1750005,0,0,0,0,0,196,211,0,0,0,0,0,0,0,0,407 +NA,NA,,2020-21,Medfield - Medfield Senior High,1750505,0,0,0,0,0,0,0,0,0,0,185,201,192,195,2,775 +NA,NA,,2020-21,Medfield - Memorial School,1750003,36,163,188,0,0,0,0,0,0,0,0,0,0,0,0,387 +NA,NA,,2020-21,Medfield - Ralph Wheelock School,1750007,0,0,0,192,190,0,0,0,0,0,0,0,0,0,0,382 +NA,NA,,2020-21,Medfield - Thomas Blake Middle,1750305,0,0,0,0,0,0,0,191,186,183,0,0,0,0,0,560 +NA,NA,,2020-21,Medford - Brooks School,1760130,42,65,78,62,84,68,84,0,0,0,0,0,0,0,0,483 +NA,NA,,2020-21,Medford - Christopher Columbus,1760140,7,44,66,73,53,87,48,0,0,0,0,0,0,0,0,378 +NA,NA,,2020-21,Medford - Curtis-Tufts,1760510,0,0,0,0,0,0,0,0,0,0,0,0,6,6,0,12 +NA,NA,,2020-21,Medford - John J McGlynn Elementary School,1760068,6,67,59,63,74,76,90,0,0,0,0,0,0,0,0,435 +NA,NA,,2020-21,Medford - John J. McGlynn Middle School,1760320,0,0,0,0,0,0,0,143,156,141,0,0,0,0,0,440 +NA,NA,,2020-21,Medford - Madeleine Dugger Andrews,1760315,0,0,0,0,0,0,0,161,153,139,0,0,0,0,0,453 +NA,NA,,2020-21,Medford - Medford High,1760505,0,0,0,0,0,0,0,0,0,0,307,352,297,298,7,1261 +NA,NA,,2020-21,Medford - Milton Fuller Roberts,1760150,11,92,76,84,72,74,72,0,0,0,0,0,0,0,0,481 +NA,NA,,2020-21,Medway - Burke/Memorial Elementary School,1770015,0,0,0,146,148,149,0,0,0,0,0,0,0,0,0,443 +NA,NA,,2020-21,Medway - John D Mc Govern Elementary,1770013,27,143,152,0,0,0,0,0,0,0,0,0,0,0,0,322 +NA,NA,,2020-21,Medway - Medway High,1770505,0,0,0,0,0,0,0,0,0,0,143,160,176,152,0,631 +NA,NA,,2020-21,Medway - Medway Middle,1770305,0,0,0,0,0,0,167,161,178,172,0,0,0,0,0,678 +NA,NA,,2020-21,Melrose - Early Childhood Center,1780003,118,41,0,0,0,0,0,0,0,0,0,0,0,0,0,159 +NA,NA,,2020-21,Melrose - Herbert Clark Hoover,1780017,0,43,56,63,54,45,39,0,0,0,0,0,0,0,0,300 +NA,NA,,2020-21,Melrose - Horace Mann,1780025,0,40,46,46,49,48,42,0,0,0,0,0,0,0,0,271 +NA,NA,,2020-21,Melrose - Lincoln,1780020,0,61,56,66,65,80,76,0,0,0,0,0,0,0,0,404 +NA,NA,,2020-21,Melrose - Melrose High,1780505,0,0,0,0,0,0,0,0,0,0,221,222,245,235,6,929 +NA,NA,,2020-21,Melrose - Melrose Middle,1780305,0,0,0,0,0,0,0,274,278,272,0,0,0,0,0,824 +NA,NA,,2020-21,Melrose - Roosevelt,1780035,0,61,72,65,65,79,79,0,0,0,0,0,0,0,0,421 +NA,NA,,2020-21,Melrose - Winthrop,1780050,0,54,66,64,79,68,62,0,0,0,0,0,0,0,0,393 +NA,NA,,2020-21,Mendon-Upton - Henry P Clough,7100179,19,63,58,65,68,71,0,0,0,0,0,0,0,0,0,344 +NA,NA,,2020-21,Mendon-Upton - Memorial School,7100001,28,73,96,91,98,75,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2020-21,Mendon-Upton - Miscoe Hill School,7100015,0,0,0,0,0,0,156,165,195,208,0,0,0,0,0,724 +NA,NA,,2020-21,Mendon-Upton - Nipmuc Regional High,7100510,0,0,0,0,0,0,0,0,0,0,153,151,175,155,3,637 +NA,NA,,2020-21,Methuen - Comprehensive Grammar School,1810050,12,64,96,100,107,123,123,108,129,126,0,0,0,0,0,988 +NA,NA,,2020-21,Methuen - Donald P Timony Grammar,1810060,31,94,131,130,152,103,117,143,148,139,0,0,0,0,0,1188 +NA,NA,,2020-21,Methuen - Marsh Grammar School,1810030,19,100,110,116,109,139,112,120,133,143,0,0,0,0,0,1101 +NA,NA,,2020-21,Methuen - Methuen High,1810505,0,0,0,0,0,0,0,0,0,0,432,510,492,472,0,1906 +NA,NA,,2020-21,Methuen - Tenney Grammar School,1810055,20,107,138,135,133,127,150,142,138,177,0,0,0,0,0,1267 +NA,NA,,2020-21,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,101,104,111,101,107,0,0,0,0,0,0,0,0,524 +NA,NA,,2020-21,Middleborough - John T. Nichols Middle,1820305,0,0,0,0,0,0,0,226,256,265,0,0,0,0,0,747 +NA,NA,,2020-21,Middleborough - Mary K. Goode Elementary School,1820010,0,0,112,105,119,117,108,0,0,0,0,0,0,0,0,561 +NA,NA,,2020-21,Middleborough - Memorial Early Childhood Center,1820011,49,202,0,0,0,0,0,0,0,0,0,0,0,0,0,251 +NA,NA,,2020-21,Middleborough - Middleborough High,1820505,0,0,0,0,0,0,0,0,0,0,213,210,218,185,7,833 +NA,NA,,2020-21,Middleton - Fuller Meadow,1840003,0,98,87,101,0,0,0,0,0,0,0,0,0,0,0,286 +NA,NA,,2020-21,Middleton - Howe-Manning,1840005,60,0,0,0,80,83,81,88,0,0,0,0,0,0,0,392 +NA,NA,,2020-21,Milford - Brookside,1850065,0,151,150,146,0,0,0,0,0,0,0,0,0,0,0,447 +NA,NA,,2020-21,Milford - Memorial,1850010,0,144,151,142,0,0,0,0,0,0,0,0,0,0,0,437 +NA,NA,,2020-21,Milford - Milford High,1850505,0,0,0,0,0,0,0,0,0,0,309,348,304,280,16,1257 +NA,NA,,2020-21,Milford - Shining Star Early Childhood Center,1850075,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92 +NA,NA,,2020-21,Milford - Stacy Middle,1850305,0,0,0,0,0,0,0,330,347,355,0,0,0,0,0,1032 +NA,NA,,2020-21,Milford - Woodland,1850090,0,0,0,0,314,324,332,0,0,0,0,0,0,0,0,970 +NA,NA,,2020-21,Millbury - Elmwood Street,1860017,55,91,121,118,124,0,0,0,0,0,0,0,0,0,0,509 +NA,NA,,2020-21,Millbury - Millbury Junior/Senior High,1860505,0,0,0,0,0,0,0,0,120,151,119,130,93,119,1,733 +NA,NA,,2020-21,Millbury - Raymond E. Shaw Elementary,1860025,0,0,0,0,0,96,117,132,0,0,0,0,0,0,0,345 +NA,NA,,2020-21,Millis - Clyde F Brown,1870005,42,82,83,78,99,82,82,0,0,0,0,0,0,0,0,548 +NA,NA,,2020-21,Millis - Millis High School,1870505,0,0,0,0,0,0,0,0,0,0,96,72,72,92,0,332 +NA,NA,,2020-21,Millis - Millis Middle,1870020,0,0,0,0,0,0,0,105,77,94,0,0,0,0,0,276 +NA,NA,,2020-21,Milton - Charles S Pierce Middle,1890410,0,0,0,0,0,0,0,344,307,306,0,0,0,0,0,957 +NA,NA,,2020-21,Milton - Collicot,1890005,0,92,90,99,108,124,99,0,0,0,0,0,0,0,0,612 +NA,NA,,2020-21,Milton - Cunningham School,1890007,66,84,92,86,89,99,93,0,0,0,0,0,0,0,0,609 +NA,NA,,2020-21,Milton - Glover,1890010,0,73,107,118,115,93,98,0,0,0,0,0,0,0,0,604 +NA,NA,,2020-21,Milton - Milton High,1890505,0,0,0,0,0,0,0,0,0,0,293,272,277,276,9,1127 +NA,NA,,2020-21,Milton - Tucker,1890020,28,62,81,64,72,78,61,0,0,0,0,0,0,0,0,446 +NA,NA,,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0,0,0,0,0,0,0,0,0,179,180,134,142,0,635 +NA,NA,,2020-21,Mohawk Trail - Buckland-Shelburne Regional,7170005,20,20,34,31,38,35,35,32,0,0,0,0,0,0,0,245 +NA,NA,,2020-21,Mohawk Trail - Colrain Central,7170010,13,11,7,11,4,7,15,12,0,0,0,0,0,0,0,80 +NA,NA,,2020-21,Mohawk Trail - Mohawk Trail Regional School,7170505,0,0,0,0,0,0,0,0,55,66,35,28,46,50,4,284 +NA,NA,,2020-21,Mohawk Trail - Sanderson Academy,7170020,20,10,13,19,20,20,10,18,0,0,0,0,0,0,0,130 +NA,NA,,2020-21,Monomoy Regional School District - Chatham Elementary School,7120001,4,16,36,30,31,41,0,0,0,0,0,0,0,0,0,158 +NA,NA,,2020-21,Monomoy Regional School District - Harwich Elementary School,7120002,17,86,78,88,106,102,0,0,0,0,0,0,0,0,0,477 +NA,NA,,2020-21,Monomoy Regional School District - Monomoy Regional High School,7120515,0,0,0,0,0,0,0,0,0,181,112,124,133,121,6,677 +NA,NA,,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,0,0,0,153,158,140,0,0,0,0,0,0,451 +NA,NA,,2020-21,Monson - Granite Valley School,1910030,0,0,69,68,60,67,73,78,0,0,0,0,0,0,0,415 +NA,NA,,2020-21,Monson - Monson High School,1910505,0,0,0,0,0,0,0,0,72,58,47,40,66,59,4,346 +NA,NA,,2020-21,Monson - Quarry Hill Community School,1910010,33,64,0,0,0,0,0,0,0,0,0,0,0,0,0,97 +NA,NA,,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0,0,0,0,0,0,0,0,0,0,355,354,363,345,0,1417 +NA,NA,,2020-21,Mount Greylock - Lanesborough Elementary,7150005,7,20,27,27,22,35,23,28,0,0,0,0,0,0,0,189 +NA,NA,,2020-21,Mount Greylock - Mt Greylock Regional High,7150505,0,0,0,0,0,0,0,0,77,86,115,89,73,87,1,528 +NA,NA,,2020-21,Mount Greylock - Williamstown Elementary,7150010,11,36,37,55,54,60,66,57,0,0,0,0,0,0,0,376 +NA,NA,,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0,162,159,150,153,123,123,124,149,126,125,87,62,86,0,1629 +NA,NA,,2020-21,Nahant - Johnson,1960010,13,28,20,14,15,18,20,19,0,0,0,0,0,0,0,147 +NA,NA,,2020-21,Nantucket - Cyrus Peirce,1970010,0,0,0,0,0,0,0,144,151,129,0,0,0,0,0,424 +NA,NA,,2020-21,Nantucket - Nantucket Elementary,1970005,49,114,119,114,0,0,0,0,0,0,0,0,0,0,0,396 +NA,NA,,2020-21,Nantucket - Nantucket High,1970505,0,0,0,0,0,0,0,0,0,0,133,141,139,109,5,527 +NA,NA,,2020-21,Nantucket - Nantucket Intermediate School,1970020,0,0,0,0,114,88,117,0,0,0,0,0,0,0,0,319 +NA,NA,,2020-21,Narragansett - Narragansett Middle,7200305,0,0,0,0,0,0,103,113,123,0,0,0,0,0,0,339 +NA,NA,,2020-21,Narragansett - Narragansett Regional High,7200505,0,0,0,0,0,0,0,0,0,117,89,77,77,55,4,419 +NA,NA,,2020-21,Narragansett - Templeton Elementary School,7200020,50,89,110,103,104,113,0,0,0,0,0,0,0,0,0,569 +NA,NA,,2020-21,Nashoba - Center School,7250020,17,68,70,86,67,87,77,0,0,0,0,0,0,0,0,472 +NA,NA,,2020-21,Nashoba - Florence Sawyer School,7250025,20,89,60,73,70,78,88,69,77,93,0,0,0,0,0,717 +NA,NA,,2020-21,Nashoba - Hale,7250310,0,0,0,0,0,0,0,111,96,93,0,0,0,0,0,300 +NA,NA,,2020-21,Nashoba - Luther Burbank Middle School,7250305,0,0,0,0,0,0,0,86,74,79,0,0,0,0,0,239 +NA,NA,,2020-21,Nashoba - Mary Rowlandson Elementary,7250010,25,59,68,51,91,75,69,0,0,0,0,0,0,0,0,438 +NA,NA,,2020-21,Nashoba - Nashoba Regional,7250505,0,0,0,0,0,0,0,0,0,0,223,200,255,236,6,920 +NA,NA,,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,0,0,0,0,0,0,0,0,0,0,190,179,180,176,1,726 +NA,NA,,2020-21,Natick - Bennett-Hemenway,1980005,0,84,97,101,108,117,0,0,0,0,0,0,0,0,0,507 +NA,NA,,2020-21,Natick - Brown,1980010,0,84,100,95,83,103,0,0,0,0,0,0,0,0,0,465 +NA,NA,,2020-21,Natick - J F Kennedy Middle School,1980305,0,0,0,0,0,0,212,229,187,167,0,0,0,0,0,795 +NA,NA,,2020-21,Natick - Johnson,1980031,0,34,36,44,53,42,0,0,0,0,0,0,0,0,0,209 +NA,NA,,2020-21,Natick - Lilja Elementary,1980035,0,64,74,85,86,64,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2020-21,Natick - Memorial,1980043,0,66,86,92,75,88,0,0,0,0,0,0,0,0,0,407 +NA,NA,,2020-21,Natick - Natick High,1980505,76,0,0,0,0,0,0,0,0,0,379,380,383,408,0,1626 +NA,NA,,2020-21,Natick - Wilson Middle,1980310,0,0,0,0,0,0,210,201,224,234,0,0,0,0,0,869 +NA,NA,,2020-21,Nauset - Nauset Regional High,6600505,0,0,0,0,0,0,0,0,0,0,192,209,219,234,1,855 +NA,NA,,2020-21,Nauset - Nauset Regional Middle,6600305,0,0,0,0,0,0,0,174,190,207,0,0,0,0,0,571 +NA,NA,,2020-21,Needham - Broadmeadow,1990005,0,74,73,98,85,93,92,0,0,0,0,0,0,0,0,515 +NA,NA,,2020-21,Needham - High Rock School,1990410,0,0,0,0,0,0,0,394,0,0,0,0,0,0,0,394 +NA,NA,,2020-21,Needham - John Eliot,1990020,0,61,67,72,74,64,72,0,0,0,0,0,0,0,0,410 +NA,NA,,2020-21,Needham - Needham High,1990505,0,0,0,0,0,0,0,0,0,0,424,377,445,423,1,1670 +NA,NA,,2020-21,Needham - Newman Elementary,1990050,50,78,106,99,118,95,101,0,0,0,0,0,0,0,0,647 +NA,NA,,2020-21,Needham - Pollard Middle,1990405,0,0,0,0,0,0,0,0,461,440,0,0,0,0,0,901 +NA,NA,,2020-21,Needham - Sunita L. Williams Elementary,1990035,0,59,84,78,90,89,88,0,0,0,0,0,0,0,0,488 +NA,NA,,2020-21,Needham - William Mitchell,1990040,0,61,71,79,71,87,89,0,0,0,0,0,0,0,0,458 +NA,NA,,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,39,37,39,43,44,43,63,68,86,82,81,68,63,54,0,810 +NA,NA,,2020-21,New Bedford - Abraham Lincoln,2010095,0,114,137,125,123,108,106,0,0,0,0,0,0,0,0,713 +NA,NA,,2020-21,New Bedford - Alfred J Gomes,2010063,0,67,83,81,86,99,85,0,0,0,0,0,0,0,0,501 +NA,NA,,2020-21,New Bedford - Betsey B Winslow,2010140,0,28,28,40,34,50,25,0,0,0,0,0,0,0,0,205 +NA,NA,,2020-21,New Bedford - Carlos Pacheco,2010105,11,55,64,42,46,81,81,0,0,0,0,0,0,0,0,380 +NA,NA,,2020-21,New Bedford - Casimir Pulaski,2010123,37,76,88,99,94,94,86,0,0,0,0,0,0,0,0,574 +NA,NA,,2020-21,New Bedford - Charles S Ashley,2010010,0,40,28,37,29,31,36,0,0,0,0,0,0,0,0,201 +NA,NA,,2020-21,New Bedford - Elizabeth Carter Brooks,2010015,0,39,39,64,36,42,27,0,0,0,0,0,0,0,0,247 +NA,NA,,2020-21,New Bedford - Ellen R Hathaway,2010075,25,27,64,58,36,37,37,0,0,0,0,0,0,0,0,284 +NA,NA,,2020-21,New Bedford - Elwyn G Campbell,2010020,37,39,32,42,29,60,26,0,0,0,0,0,0,0,0,265 +NA,NA,,2020-21,New Bedford - Hayden/McFadden,2010078,53,93,81,98,131,93,95,0,0,0,0,0,0,0,0,644 +NA,NA,,2020-21,New Bedford - Irwin M. Jacobs Elementary School,2010070,17,43,54,71,56,53,46,0,0,0,0,0,0,0,0,340 +NA,NA,,2020-21,New Bedford - James B Congdon,2010040,0,62,36,55,46,58,49,0,0,0,0,0,0,0,0,306 +NA,NA,,2020-21,New Bedford - Jireh Swift,2010130,14,24,29,18,17,24,31,0,0,0,0,0,0,0,0,157 +NA,NA,,2020-21,New Bedford - John Avery Parker,2010115,15,37,24,42,27,36,31,0,0,0,0,0,0,0,0,212 +NA,NA,,2020-21,New Bedford - John B Devalles,2010050,0,51,56,53,68,56,59,0,0,0,0,0,0,0,0,343 +NA,NA,,2020-21,New Bedford - Keith Middle School,2010405,0,0,0,0,0,0,0,347,351,336,0,0,0,0,0,1034 +NA,NA,,2020-21,New Bedford - New Bedford High,2010505,0,0,0,0,0,0,0,0,0,0,756,756,671,539,0,2722 +NA,NA,,2020-21,New Bedford - Normandin Middle School,2010410,0,0,0,0,0,0,0,345,377,392,0,0,0,0,0,1114 +NA,NA,,2020-21,New Bedford - Renaissance Community Innovation School,2010124,12,16,18,22,18,50,42,0,0,0,0,0,0,0,0,178 +NA,NA,,2020-21,New Bedford - Roosevelt Middle School,2010415,0,0,0,0,0,0,0,280,284,322,0,0,0,0,0,886 +NA,NA,,2020-21,New Bedford - Sgt Wm H Carney Academy,2010045,44,85,94,78,100,120,130,0,0,0,0,0,0,0,0,651 +NA,NA,,2020-21,New Bedford - Thomas R Rodman,2010125,0,33,23,21,33,34,16,0,0,0,0,0,0,0,0,160 +NA,NA,,2020-21,New Bedford - Trinity Day Academy,2010510,0,0,0,0,0,0,12,9,12,10,14,13,15,10,0,95 +NA,NA,,2020-21,New Bedford - Whaling City Junior/Senior High School,2010515,0,0,0,0,0,0,0,0,2,6,18,36,33,11,0,106 +NA,NA,,2020-21,New Bedford - William H Taylor,2010135,21,27,59,32,48,31,29,0,0,0,0,0,0,0,0,247 +NA,NA,,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,0,0,0,0,0,0,117,122,123,98,93,101,88,0,742 +NA,NA,,2020-21,New Salem-Wendell - Swift River,7280015,9,16,17,22,16,18,17,14,0,0,0,0,0,0,0,129 +NA,NA,,2020-21,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,0,0,141,147,0,0,0,0,0,0,0,0,288 +NA,NA,,2020-21,Newburyport - Francis T Bresnahan Elementary,2040005,42,107,132,137,122,0,0,0,0,0,0,0,0,0,0,540 +NA,NA,,2020-21,Newburyport - Newburyport High,2040505,0,0,0,0,0,0,0,0,0,0,202,211,178,207,3,801 +NA,NA,,2020-21,Newburyport - Rupert A Nock Middle,2040305,0,0,0,0,0,0,0,161,165,171,0,0,0,0,0,497 +NA,NA,,2020-21,Newton - A E Angier,2070005,0,49,62,76,65,100,76,0,0,0,0,0,0,0,0,428 +NA,NA,,2020-21,Newton - Bigelow Middle,2070305,0,0,0,0,0,0,0,168,164,174,0,0,0,0,0,506 +NA,NA,,2020-21,Newton - Bowen,2070015,0,44,56,57,61,59,65,0,0,0,0,0,0,0,0,342 +NA,NA,,2020-21,Newton - C C Burr,2070020,0,50,64,61,67,42,55,0,0,0,0,0,0,0,0,339 +NA,NA,,2020-21,Newton - Cabot,2070025,0,56,71,63,63,57,69,0,0,0,0,0,0,0,0,379 +NA,NA,,2020-21,Newton - Charles E Brown Middle,2070310,0,0,0,0,0,0,0,271,253,270,0,0,0,0,0,794 +NA,NA,,2020-21,Newton - Countryside,2070040,0,54,57,62,66,69,61,0,0,0,0,0,0,0,0,369 +NA,NA,,2020-21,Newton - F A Day Middle,2070315,0,0,0,0,0,0,0,335,308,313,0,0,0,0,0,956 +NA,NA,,2020-21,Newton - Franklin,2070055,0,57,60,61,66,80,55,0,0,0,0,0,0,0,0,379 +NA,NA,,2020-21,Newton - Horace Mann,2070075,0,45,68,59,60,71,74,0,0,0,0,0,0,0,0,377 +NA,NA,,2020-21,Newton - John Ward,2070120,0,29,37,37,30,41,42,0,0,0,0,0,0,0,0,216 +NA,NA,,2020-21,Newton - Lincoln-Eliot,2070070,0,57,55,67,66,55,53,0,0,0,0,0,0,0,0,353 +NA,NA,,2020-21,Newton - Mason-Rice,2070080,0,45,52,53,64,69,83,0,0,0,0,0,0,0,0,366 +NA,NA,,2020-21,Newton - Memorial Spaulding,2070105,0,49,53,59,80,82,81,0,0,0,0,0,0,0,0,404 +NA,NA,,2020-21,Newton - Newton Early Childhood Program,2070108,125,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125 +NA,NA,,2020-21,Newton - Newton North High,2070505,0,0,0,0,0,0,0,0,0,0,515,493,538,499,28,2073 +NA,NA,,2020-21,Newton - Newton South High,2070510,0,0,0,0,0,0,0,0,0,0,413,485,479,491,1,1869 +NA,NA,,2020-21,Newton - Oak Hill Middle,2070320,0,0,0,0,0,0,0,224,231,192,0,0,0,0,0,647 +NA,NA,,2020-21,Newton - Peirce,2070100,0,32,34,49,40,41,42,0,0,0,0,0,0,0,0,238 +NA,NA,,2020-21,Newton - Underwood,2070115,0,33,39,39,31,42,41,0,0,0,0,0,0,0,0,225 +NA,NA,,2020-21,Newton - Williams,2070125,0,32,36,38,46,39,55,0,0,0,0,0,0,0,0,246 +NA,NA,,2020-21,Newton - Zervas,2070130,0,42,75,73,65,81,57,0,0,0,0,0,0,0,0,393 +NA,NA,,2020-21,Norfolk - Freeman-Kennedy School,2080005,0,0,0,0,122,139,144,113,0,0,0,0,0,0,0,518 +NA,NA,,2020-21,Norfolk - H Olive Day,2080015,52,162,122,133,0,0,0,0,0,0,0,0,0,0,0,469 +NA,NA,,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,0,0,0,0,0,0,0,158,149,152,129,0,588 +NA,NA,,2020-21,North Adams - Brayton,2090035,23,19,23,37,31,33,29,30,0,0,0,0,0,0,0,225 +NA,NA,,2020-21,North Adams - Colegrove Park Elementary,2090008,23,27,39,29,37,40,37,27,0,0,0,0,0,0,0,259 +NA,NA,,2020-21,North Adams - Drury High,2090505,0,0,0,0,0,0,0,0,91,125,88,77,64,72,3,520 +NA,NA,,2020-21,North Adams - Greylock,2090015,31,29,31,28,26,26,26,22,0,0,0,0,0,0,0,219 +NA,NA,,2020-21,North Andover - Anne Bradstreet Early Childhood Center,2110005,60,283,0,0,0,0,0,0,0,0,0,0,0,0,0,343 +NA,NA,,2020-21,North Andover - Annie L Sargent School,2110018,0,0,76,93,93,88,87,0,0,0,0,0,0,0,0,437 +NA,NA,,2020-21,North Andover - Atkinson,2110001,0,0,71,60,62,63,67,0,0,0,0,0,0,0,0,323 +NA,NA,,2020-21,North Andover - Franklin,2110010,0,0,81,66,77,79,77,0,0,0,0,0,0,0,0,380 +NA,NA,,2020-21,North Andover - Kittredge,2110015,0,0,37,44,53,48,46,0,0,0,0,0,0,0,0,228 +NA,NA,,2020-21,North Andover - North Andover High,2110505,0,0,0,0,0,0,0,0,0,0,335,311,357,374,0,1377 +NA,NA,,2020-21,North Andover - North Andover Middle,2110305,0,0,0,0,0,0,0,371,372,361,0,0,0,0,0,1104 +NA,NA,,2020-21,North Andover - Thomson,2110020,0,0,61,81,49,59,68,0,0,0,0,0,0,0,0,318 +NA,NA,,2020-21,North Attleborough - Amvet Boulevard,2120007,0,40,75,68,82,71,85,0,0,0,0,0,0,0,0,421 +NA,NA,,2020-21,North Attleborough - Community,2120030,0,66,39,35,53,60,52,0,0,0,0,0,0,0,0,305 +NA,NA,,2020-21,North Attleborough - Falls,2120010,0,18,26,31,33,32,45,0,0,0,0,0,0,0,0,185 +NA,NA,,2020-21,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,101,95,111,74,115,112,0,0,0,0,0,0,0,0,608 +NA,NA,,2020-21,North Attleborough - North Attleboro High,2120505,0,0,0,0,0,0,0,0,0,0,286,261,267,275,0,1089 +NA,NA,,2020-21,North Attleborough - North Attleborough Early Learning Center,2120020,141,0,0,0,0,0,0,0,0,0,0,0,0,0,0,141 +NA,NA,,2020-21,North Attleborough - North Attleborough Middle,2120305,0,0,0,0,0,0,0,283,325,385,0,0,0,0,0,993 +NA,NA,,2020-21,North Attleborough - Roosevelt Avenue,2120015,0,33,29,31,32,33,36,0,0,0,0,0,0,0,0,194 +NA,NA,,2020-21,North Brookfield - North Brookfield Elementary,2150015,23,39,39,30,39,44,33,40,0,0,0,0,0,0,0,287 +NA,NA,,2020-21,North Brookfield - North Brookfield High,2150505,0,0,0,0,0,0,0,0,43,40,49,23,33,28,0,216 +NA,NA,,2020-21,North Middlesex - Ashby Elementary,7350010,0,39,36,16,44,37,0,0,0,0,0,0,0,0,0,172 +NA,NA,,2020-21,North Middlesex - Hawthorne Brook,7350030,0,0,0,0,0,0,114,107,133,134,0,0,0,0,0,488 +NA,NA,,2020-21,North Middlesex - Nissitissit Middle School,7350310,0,0,0,0,0,0,114,118,119,150,0,0,0,0,0,501 +NA,NA,,2020-21,North Middlesex - North Middlesex Regional,7350505,0,0,0,0,0,0,0,0,0,0,187,178,210,211,7,793 +NA,NA,,2020-21,North Middlesex - Spaulding Memorial,7350005,0,83,80,78,73,83,0,0,0,0,0,0,0,0,0,397 +NA,NA,,2020-21,North Middlesex - Squannacook Early Childhood Center,7350002,36,3,3,0,3,2,0,0,0,0,0,0,0,0,0,47 +NA,NA,,2020-21,North Middlesex - Varnum Brook,7350035,0,100,87,118,96,94,0,0,0,0,0,0,0,0,0,495 +NA,NA,,2020-21,North Reading - E Ethel Little School,2170003,24,49,60,27,50,42,56,0,0,0,0,0,0,0,0,308 +NA,NA,,2020-21,North Reading - J Turner Hood,2170010,16,54,56,51,50,59,52,0,0,0,0,0,0,0,0,338 +NA,NA,,2020-21,North Reading - L D Batchelder,2170005,0,72,84,68,73,72,83,0,0,0,0,0,0,0,0,452 +NA,NA,,2020-21,North Reading - North Reading High,2170505,0,0,0,0,0,0,0,0,0,0,130,181,164,186,1,662 +NA,NA,,2020-21,North Reading - North Reading Middle,2170305,0,0,0,0,0,0,0,174,190,185,0,0,0,0,0,549 +NA,NA,,2020-21,Northampton - Bridge Street,2100005,22,34,31,35,49,41,28,0,0,0,0,0,0,0,0,240 +NA,NA,,2020-21,Northampton - Jackson Street,2100020,0,39,52,58,54,68,57,0,0,0,0,0,0,0,0,328 +NA,NA,,2020-21,Northampton - John F Kennedy Middle School,2100410,0,0,0,0,0,0,0,204,206,213,0,0,0,0,0,623 +NA,NA,,2020-21,Northampton - Leeds,2100025,24,36,50,56,43,45,39,0,0,0,0,0,0,0,0,293 +NA,NA,,2020-21,Northampton - Northampton High,2100505,0,0,0,0,0,0,0,0,0,0,191,236,210,223,1,861 +NA,NA,,2020-21,Northampton - R. K. Finn Ryan Road,2100029,0,34,41,41,41,43,34,0,0,0,0,0,0,0,0,234 +NA,NA,,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,0,0,0,0,0,0,0,0,140,148,117,123,0,528 +NA,NA,,2020-21,Northboro-Southboro - Algonquin Regional High,7300505,0,0,0,0,0,0,0,0,0,0,314,321,320,390,10,1355 +NA,NA,,2020-21,Northborough - Fannie E Proctor,2130015,0,35,49,36,38,39,41,0,0,0,0,0,0,0,0,238 +NA,NA,,2020-21,Northborough - Lincoln Street,2130003,0,38,39,40,55,44,46,0,0,0,0,0,0,0,0,262 +NA,NA,,2020-21,Northborough - Marguerite E Peaslee,2130014,0,37,41,43,35,57,62,0,0,0,0,0,0,0,0,275 +NA,NA,,2020-21,Northborough - Marion E Zeh,2130020,0,36,39,39,38,40,43,0,0,0,0,0,0,0,0,235 +NA,NA,,2020-21,Northborough - Robert E. Melican Middle School,2130305,0,0,0,0,0,0,0,174,160,183,0,0,0,0,0,517 +NA,NA,,2020-21,Northbridge - Northbridge Elementary,2140005,57,145,151,0,0,0,0,0,0,0,0,0,0,0,0,353 +NA,NA,,2020-21,Northbridge - Northbridge High,2140505,0,0,0,0,0,0,0,0,0,0,134,132,145,114,0,525 +NA,NA,,2020-21,Northbridge - Northbridge Middle,2140305,0,0,0,0,0,0,150,172,191,144,0,0,0,0,0,657 +NA,NA,,2020-21,Northbridge - W Edward Balmer,2140001,0,0,0,114,127,148,0,0,0,0,0,0,0,0,0,389 +NA,NA,,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,0,0,0,0,0,0,0,0,0,0,332,322,326,301,0,1281 +NA,NA,,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,0,0,0,0,0,0,0,128,142,122,114,0,506 +NA,NA,,2020-21,Norton - Henri A. Yelle,2180060,0,0,0,0,0,174,172,0,0,0,0,0,0,0,0,346 +NA,NA,,2020-21,Norton - J C Solmonese,2180015,69,103,96,86,107,0,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2020-21,Norton - L G Nourse Elementary,2180010,0,72,64,63,71,0,0,0,0,0,0,0,0,0,0,270 +NA,NA,,2020-21,Norton - Norton High,2180505,0,0,0,0,0,0,0,0,0,0,163,180,162,175,4,684 +NA,NA,,2020-21,Norton - Norton Middle,2180305,0,0,0,0,0,0,0,189,206,202,0,0,0,0,0,597 +NA,NA,,2020-21,Norwell - Grace Farrar Cole,2190005,15,77,78,75,72,72,79,0,0,0,0,0,0,0,0,468 +NA,NA,,2020-21,Norwell - Norwell High,2190505,0,0,0,0,0,0,0,0,0,0,156,155,166,166,1,644 +NA,NA,,2020-21,Norwell - Norwell Middle School,2190405,0,0,0,0,0,0,0,164,162,180,0,0,0,0,0,506 +NA,NA,,2020-21,Norwell - William G Vinal,2190020,18,79,102,80,98,91,96,0,0,0,0,0,0,0,0,564 +NA,NA,,2020-21,Norwood - Balch,2200005,0,0,53,55,65,70,51,0,0,0,0,0,0,0,0,294 +NA,NA,,2020-21,Norwood - Charles J Prescott,2200025,0,2,57,50,51,56,42,0,0,0,0,0,0,0,0,258 +NA,NA,,2020-21,Norwood - Cornelius M Callahan,2200010,0,0,42,53,45,47,34,0,0,0,0,0,0,0,0,221 +NA,NA,,2020-21,Norwood - Dr. Philip O. Coakley Middle School,2200305,0,0,0,0,0,0,0,258,215,245,0,0,0,0,0,718 +NA,NA,,2020-21,Norwood - F A Cleveland,2200015,0,0,74,59,55,62,79,0,0,0,0,0,0,0,0,329 +NA,NA,,2020-21,Norwood - George F. Willett,2200075,83,265,0,0,0,0,0,0,0,0,0,0,0,0,0,348 +NA,NA,,2020-21,Norwood - John P Oldham,2200020,0,0,44,52,51,42,57,0,0,0,0,0,0,0,0,246 +NA,NA,,2020-21,Norwood - Norwood High,2200505,0,0,0,0,0,0,0,0,0,0,224,261,252,231,5,973 +NA,NA,,2020-21,Oak Bluffs - Oak Bluffs Elementary,2210005,7,46,36,44,27,50,52,50,50,52,0,0,0,0,0,414 +NA,NA,,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,0,0,0,0,0,0,0,0,0,150,151,132,130,0,563 +NA,NA,,2020-21,Old Rochester - Old Rochester Regional High,7400505,0,0,0,0,0,0,0,0,0,0,152,168,200,190,6,716 +NA,NA,,2020-21,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,0,0,0,0,0,203,211,0,0,0,0,0,414 +NA,NA,,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,40,40,40,40,40,40,40,0,0,0,0,0,0,0,280 +NA,NA,,2020-21,Orange - Dexter Park,2230010,0,0,0,0,62,71,70,61,0,0,0,0,0,0,0,264 +NA,NA,,2020-21,Orange - Fisher Hill,2230015,11,54,65,71,0,0,0,0,0,0,0,0,0,0,0,201 +NA,NA,,2020-21,Orleans - Orleans Elementary,2240005,0,17,24,29,32,36,37,0,0,0,0,0,0,0,0,175 +NA,NA,,2020-21,Oxford - Alfred M Chaffee,2260010,38,64,100,0,0,0,0,0,0,0,0,0,0,0,0,202 +NA,NA,,2020-21,Oxford - Clara Barton,2260005,0,0,0,116,99,141,0,0,0,0,0,0,0,0,0,356 +NA,NA,,2020-21,Oxford - Oxford High,2260505,0,0,0,0,0,0,0,0,0,140,110,94,91,96,11,542 +NA,NA,,2020-21,Oxford - Oxford Middle,2260405,0,0,0,0,0,0,126,117,115,0,0,0,0,0,0,358 +NA,NA,,2020-21,Palmer - Old Mill Pond,2270008,20,88,83,97,106,111,83,0,0,0,0,0,0,0,0,588 +NA,NA,,2020-21,Palmer - Palmer High,2270505,0,0,0,0,0,0,0,88,110,121,62,73,60,81,5,600 +NA,NA,,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,0,0,0,0,0,0,0,156,161,150,143,0,610 +NA,NA,,2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,0,0,0,0,0,0,0,0,0,0,69,67,63,64,0,263 +NA,NA,,2020-21,Peabody - Captain Samuel Brown,2290005,0,49,66,55,57,58,61,0,0,0,0,0,0,0,0,346 +NA,NA,,2020-21,Peabody - Center,2290015,0,64,88,71,59,59,60,0,0,0,0,0,0,0,0,401 +NA,NA,,2020-21,Peabody - J Henry Higgins Middle,2290305,0,0,0,0,0,0,0,476,500,467,0,0,0,0,0,1443 +NA,NA,,2020-21,Peabody - John E Burke,2290007,0,44,34,45,34,38,54,0,0,0,0,0,0,0,0,249 +NA,NA,,2020-21,Peabody - John E. McCarthy,2290016,72,39,39,42,36,32,41,0,0,0,0,0,0,0,0,301 +NA,NA,,2020-21,Peabody - Peabody Veterans Memorial High,2290510,0,0,0,0,0,0,0,0,0,0,386,381,359,372,2,1500 +NA,NA,,2020-21,Peabody - South Memorial,2290035,47,58,63,54,50,75,51,0,0,0,0,0,0,0,0,398 +NA,NA,,2020-21,Peabody - Thomas Carroll,2290010,0,84,79,110,106,99,86,0,0,0,0,0,0,0,0,564 +NA,NA,,2020-21,Peabody - West Memorial,2290045,15,32,37,42,31,40,37,0,0,0,0,0,0,0,0,234 +NA,NA,,2020-21,Peabody - William A Welch Sr,2290027,19,39,63,51,55,58,55,0,0,0,0,0,0,0,0,340 +NA,NA,,2020-21,Pelham - Pelham Elementary,2300005,0,16,10,17,14,20,16,14,0,0,0,0,0,0,0,107 +NA,NA,,2020-21,Pembroke - Bryantville Elementary,2310003,0,55,58,73,67,59,67,73,0,0,0,0,0,0,0,452 +NA,NA,,2020-21,Pembroke - Hobomock Elementary,2310010,0,43,52,53,61,57,72,59,0,0,0,0,0,0,0,397 +NA,NA,,2020-21,Pembroke - North Pembroke Elementary,2310015,49,68,51,62,62,63,70,86,0,0,0,0,0,0,0,511 +NA,NA,,2020-21,Pembroke - Pembroke Community Middle School,2310305,0,0,0,0,0,0,0,0,201,230,0,0,0,0,0,431 +NA,NA,,2020-21,Pembroke - Pembroke High School,2310505,0,0,0,0,0,0,0,0,0,0,194,204,199,208,3,808 +NA,NA,,2020-21,Pentucket - Dr Frederick N Sweetsir,7450020,26,50,62,64,0,0,0,0,0,0,0,0,0,0,0,202 +NA,NA,,2020-21,Pentucket - Dr John C Page School,7450015,19,30,39,40,35,42,35,58,0,0,0,0,0,0,0,298 +NA,NA,,2020-21,Pentucket - Elmer S Bagnall,7450005,36,54,60,57,66,54,65,73,0,0,0,0,0,0,0,465 +NA,NA,,2020-21,Pentucket - Helen R Donaghue School,7450010,0,0,0,0,62,60,68,48,0,0,0,0,0,0,0,238 +NA,NA,,2020-21,Pentucket - Pentucket Regional Middle,7450405,0,0,0,0,0,0,0,0,145,203,0,0,0,0,0,348 +NA,NA,,2020-21,Pentucket - Pentucket Regional Sr High,7450505,0,0,0,0,0,0,0,0,0,0,143,161,178,191,0,673 +NA,NA,,2020-21,Petersham - Petersham Center,2340005,0,15,19,24,10,19,16,20,0,0,0,0,0,0,0,123 +NA,NA,,2020-21,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,0,0,0,0,0,0,0,0,0,0,120,4,35,0,0,159 +NA,NA,,2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,0,0,0,0,0,0,0,0,0,0,149,1,49,9,0,208 +NA,NA,,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,0,0,0,0,0,0,0,0,0,0,162,2,43,14,0,221 +NA,NA,,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,0,63,59,63,63,66,65,67,64,59,60,57,55,53,0,794 +NA,NA,,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,0,0,0,0,0,0,0,0,64,67,62,61,63,53,0,370 +NA,NA,,2020-21,Pioneer Valley - Bernardston Elementary,7500006,15,24,17,19,28,24,23,32,0,0,0,0,0,0,0,182 +NA,NA,,2020-21,Pioneer Valley - Northfield Elementary,7500008,8,19,17,23,21,29,29,23,0,0,0,0,0,0,0,169 +NA,NA,,2020-21,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,0,0,0,0,0,57,63,40,47,23,50,0,280 +NA,NA,,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,0,44,44,45,44,44,44,62,55,56,31,23,40,28,0,560 +NA,NA,,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,0,0,0,0,0,0,0,0,72,72,68,62,58,59,0,391 +NA,NA,,2020-21,Pittsfield - Allendale,2360010,0,36,51,50,56,39,37,0,0,0,0,0,0,0,0,269 +NA,NA,,2020-21,Pittsfield - Crosby,2360065,31,53,35,37,59,44,41,0,0,0,0,0,0,0,0,300 +NA,NA,,2020-21,Pittsfield - Crosby Educational Academy,2360030,0,0,3,2,5,6,5,0,0,0,0,0,0,0,0,21 +NA,NA,,2020-21,Pittsfield - Eagle Education Academy,2360525,0,0,0,0,0,0,0,2,1,6,9,5,5,4,0,32 +NA,NA,,2020-21,Pittsfield - Egremont,2360035,0,52,69,79,74,71,69,0,0,0,0,0,0,0,0,414 +NA,NA,,2020-21,Pittsfield - John T Reid Middle,2360305,0,0,0,0,0,0,0,184,166,175,0,0,0,0,0,525 +NA,NA,,2020-21,Pittsfield - Morningside Community School,2360055,16,58,53,52,62,48,58,0,0,0,0,0,0,0,0,347 +NA,NA,,2020-21,Pittsfield - Pittsfield High,2360505,0,0,0,0,0,0,0,0,0,0,176,170,180,190,14,730 +NA,NA,,2020-21,Pittsfield - Robert T. Capeless Elementary School,2360045,3,29,24,26,32,29,24,0,0,0,0,0,0,0,0,167 +NA,NA,,2020-21,Pittsfield - Silvio O Conte Community,2360105,12,56,47,57,59,54,37,0,0,0,0,0,0,0,0,322 +NA,NA,,2020-21,Pittsfield - Stearns,2360090,0,15,32,40,48,36,37,0,0,0,0,0,0,0,0,208 +NA,NA,,2020-21,Pittsfield - Taconic High,2360510,0,0,0,0,0,0,0,0,0,0,232,219,211,207,0,869 +NA,NA,,2020-21,Pittsfield - Theodore Herberg Middle,2360310,0,0,0,0,0,0,0,177,176,201,0,0,0,0,0,554 +NA,NA,,2020-21,Pittsfield - Williams,2360100,0,44,39,36,41,47,47,0,0,0,0,0,0,0,0,254 +NA,NA,,2020-21,Plainville - Anna Ware Jackson,2380010,42,64,85,82,89,0,0,0,0,0,0,0,0,0,0,362 +NA,NA,,2020-21,Plainville - Beatrice H Wood Elementary,2380005,0,0,0,0,0,88,88,85,0,0,0,0,0,0,0,261 +NA,NA,,2020-21,Plymouth - Cold Spring,2390005,0,29,32,35,39,32,22,0,0,0,0,0,0,0,0,189 +NA,NA,,2020-21,Plymouth - Federal Furnace School,2390011,0,53,57,57,68,68,47,0,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Plymouth - Hedge,2390010,0,34,28,36,30,26,30,0,0,0,0,0,0,0,0,184 +NA,NA,,2020-21,Plymouth - Indian Brook,2390012,0,98,84,106,88,71,92,0,0,0,0,0,0,0,0,539 +NA,NA,,2020-21,Plymouth - Manomet Elementary,2390015,0,32,53,47,39,48,33,0,0,0,0,0,0,0,0,252 +NA,NA,,2020-21,Plymouth - Nathaniel Morton Elementary,2390030,0,73,79,83,86,92,80,0,0,0,0,0,0,0,0,493 +NA,NA,,2020-21,Plymouth - Plymouth Commun Intermediate,2390405,0,0,0,0,0,0,0,324,321,365,0,0,0,0,0,1010 +NA,NA,,2020-21,Plymouth - Plymouth Early Childhood Center,2390003,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142 +NA,NA,,2020-21,Plymouth - Plymouth North High,2390505,0,0,0,0,0,0,0,0,0,0,341,318,320,288,1,1268 +NA,NA,,2020-21,Plymouth - Plymouth South High,2390515,0,0,0,0,0,0,0,0,0,0,275,262,258,271,0,1066 +NA,NA,,2020-21,Plymouth - Plymouth South Middle,2390305,0,0,0,0,0,0,0,211,211,243,0,0,0,0,0,665 +NA,NA,,2020-21,Plymouth - South Elementary,2390046,0,97,93,100,103,113,103,0,0,0,0,0,0,0,0,609 +NA,NA,,2020-21,Plymouth - West Elementary,2390047,0,42,56,44,60,62,54,0,0,0,0,0,0,0,0,318 +NA,NA,,2020-21,Plympton - Dennett Elementary,2400010,0,30,39,28,28,27,38,19,0,0,0,0,0,0,0,209 +NA,NA,,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,0,60,86,87,91,94,87,86,100,94,96,89,65,72,0,1107 +NA,NA,,2020-21,Provincetown - Provincetown Schools,2420020,24,11,8,10,10,11,15,16,18,10,0,0,0,0,0,133 +NA,NA,,2020-21,Quabbin - Hardwick Elementary,7530005,33,23,35,27,29,23,27,0,0,0,0,0,0,0,0,197 +NA,NA,,2020-21,Quabbin - Hubbardston Center,7530010,0,39,45,37,48,40,34,0,0,0,0,0,0,0,0,243 +NA,NA,,2020-21,Quabbin - New Braintree Grade,7530020,0,26,22,0,0,0,0,0,0,0,0,0,0,0,0,48 +NA,NA,,2020-21,Quabbin - Oakham Center,7530025,0,0,0,29,43,28,23,0,0,0,0,0,0,0,0,123 +NA,NA,,2020-21,Quabbin - Quabbin Regional High School,7530505,0,0,0,0,0,0,0,0,0,0,176,135,160,155,6,632 +NA,NA,,2020-21,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,0,0,0,0,166,181,168,0,0,0,0,0,515 +NA,NA,,2020-21,Quabbin - Ruggles Lane,7530030,36,47,66,43,47,43,55,0,0,0,0,0,0,0,0,337 +NA,NA,,2020-21,Quaboag Regional - Quaboag Regional High,7780505,0,0,0,0,0,0,0,0,0,0,89,98,80,94,0,361 +NA,NA,,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,0,0,0,0,0,88,85,0,0,0,0,0,173 +NA,NA,,2020-21,Quaboag Regional - Warren Elementary,7780005,23,39,42,41,55,42,60,71,0,0,0,0,0,0,0,373 +NA,NA,,2020-21,Quaboag Regional - West Brookfield Elementary,7780010,14,25,33,33,36,36,33,44,0,0,0,0,0,0,0,254 +NA,NA,,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,149,0,0,0,0,0,0,0,0,0,0,0,0,0,0,149 +NA,NA,,2020-21,Quincy - Atherton Hough,2430040,0,50,45,43,40,49,47,0,0,0,0,0,0,0,0,274 +NA,NA,,2020-21,Quincy - Atlantic Middle,2430305,0,0,0,0,0,0,0,170,183,193,0,0,0,0,0,546 +NA,NA,,2020-21,Quincy - Beechwood Knoll Elementary,2430020,0,53,55,58,64,61,61,0,0,0,0,0,0,0,0,352 +NA,NA,,2020-21,Quincy - Broad Meadows Middle,2430310,0,0,0,0,0,0,0,114,107,117,0,0,0,0,0,338 +NA,NA,,2020-21,Quincy - Central Middle,2430315,0,0,0,0,0,0,0,199,217,200,0,0,0,0,0,616 +NA,NA,,2020-21,Quincy - Charles A Bernazzani Elementary,2430025,0,44,55,61,58,49,56,0,0,0,0,0,0,0,0,323 +NA,NA,,2020-21,Quincy - Clifford H Marshall Elementary,2430055,0,101,123,103,97,101,0,0,0,0,0,0,0,0,0,525 +NA,NA,,2020-21,Quincy - Francis W Parker,2430075,0,45,47,64,53,50,47,0,0,0,0,0,0,0,0,306 +NA,NA,,2020-21,Quincy - Lincoln-Hancock Community School,2430035,0,127,115,99,101,102,0,0,0,0,0,0,0,0,0,544 +NA,NA,,2020-21,Quincy - Merrymount,2430060,0,53,51,69,55,46,62,0,0,0,0,0,0,0,0,336 +NA,NA,,2020-21,Quincy - Montclair,2430065,0,67,70,85,71,66,78,0,0,0,0,0,0,0,0,437 +NA,NA,,2020-21,Quincy - North Quincy High,2430510,0,0,0,0,0,0,0,0,0,0,353,330,344,316,13,1356 +NA,NA,,2020-21,Quincy - Point Webster Middle,2430325,60,0,0,0,0,0,82,100,89,86,0,0,0,0,0,417 +NA,NA,,2020-21,Quincy - Quincy High,2430505,0,0,0,0,0,0,0,0,0,0,335,373,393,398,0,1499 +NA,NA,,2020-21,Quincy - Snug Harbor Community School,2430090,90,42,61,46,60,47,51,0,0,0,0,0,0,0,0,397 +NA,NA,,2020-21,Quincy - South West Middle School,2430320,0,0,0,0,0,0,90,105,112,84,0,0,0,0,0,391 +NA,NA,,2020-21,Quincy - Squantum,2430095,0,44,64,61,59,68,43,0,0,0,0,0,0,0,0,339 +NA,NA,,2020-21,Quincy - Wollaston School,2430110,0,51,57,58,60,50,59,0,0,0,0,0,0,0,0,335 +NA,NA,,2020-21,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,0,0,0,0,0,0,0,127,127,81,103,92,89,0,619 +NA,NA,,2020-21,Randolph - Elizabeth G Lyons Elementary,2440020,0,31,48,52,65,54,47,0,0,0,0,0,0,0,0,297 +NA,NA,,2020-21,Randolph - J F Kennedy Elementary,2440018,66,30,55,58,65,54,40,0,0,0,0,0,0,0,0,368 +NA,NA,,2020-21,Randolph - Margaret L Donovan,2440015,0,52,86,73,80,66,69,0,0,0,0,0,0,0,0,426 +NA,NA,,2020-21,Randolph - Martin E Young Elementary,2440040,0,36,46,38,46,39,48,0,0,0,0,0,0,0,0,253 +NA,NA,,2020-21,Randolph - Randolph Community Middle,2440410,0,0,0,0,0,0,0,222,241,211,0,0,0,0,0,674 +NA,NA,,2020-21,Randolph - Randolph High,2440505,0,0,0,0,0,0,0,0,0,0,133,165,166,168,10,642 +NA,NA,,2020-21,Reading - Alice M Barrows,2460002,0,44,55,60,66,54,75,0,0,0,0,0,0,0,0,354 +NA,NA,,2020-21,Reading - Arthur W Coolidge Middle,2460305,0,0,0,0,0,0,0,143,132,124,0,0,0,0,0,399 +NA,NA,,2020-21,Reading - Birch Meadow,2460005,0,40,72,61,54,61,57,0,0,0,0,0,0,0,0,345 +NA,NA,,2020-21,Reading - J Warren Killam,2460017,0,50,77,68,64,66,70,0,0,0,0,0,0,0,0,395 +NA,NA,,2020-21,Reading - Joshua Eaton,2460010,0,79,68,75,64,45,64,0,0,0,0,0,0,0,0,395 +NA,NA,,2020-21,Reading - Reading Memorial High,2460505,0,0,0,0,0,0,0,0,0,0,299,301,292,330,0,1222 +NA,NA,,2020-21,Reading - RISE PreSchool,2460001,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97 +NA,NA,,2020-21,Reading - Walter S Parker Middle,2460310,0,0,0,0,0,0,0,176,156,163,0,0,0,0,0,495 +NA,NA,,2020-21,Reading - Wood End Elementary School,2460020,0,25,40,52,42,44,46,0,0,0,0,0,0,0,0,249 +NA,NA,,2020-21,Revere - A. C. Whelan Elementary School,2480003,0,100,104,142,138,133,123,0,0,0,0,0,0,0,0,740 +NA,NA,,2020-21,Revere - Abraham Lincoln,2480025,31,70,87,80,94,86,89,0,0,0,0,0,0,0,0,537 +NA,NA,,2020-21,Revere - Beachmont Veterans Memorial School,2480013,27,50,57,37,44,47,50,0,0,0,0,0,0,0,0,312 +NA,NA,,2020-21,Revere - Garfield Elementary School,2480056,37,90,116,114,99,104,97,0,0,0,0,0,0,0,0,657 +NA,NA,,2020-21,Revere - Garfield Middle School,2480057,0,0,0,0,0,0,0,169,193,206,0,0,0,0,0,568 +NA,NA,,2020-21,Revere - Paul Revere,2480050,0,65,83,72,71,85,74,0,0,0,0,0,0,0,0,450 +NA,NA,,2020-21,Revere - Revere High,2480505,0,0,0,0,0,0,0,0,0,0,542,524,431,472,9,1978 +NA,NA,,2020-21,Revere - Rumney Marsh Academy,2480014,0,0,0,0,0,0,0,175,217,208,0,0,0,0,0,600 +NA,NA,,2020-21,Revere - Seacoast School,2480520,0,0,0,0,0,0,0,0,0,0,21,16,32,12,0,81 +NA,NA,,2020-21,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,96,114,112,109,110,127,0,0,0,0,0,0,0,0,668 +NA,NA,,2020-21,Revere - Susan B. Anthony Middle School,2480305,0,0,0,0,0,0,0,172,198,205,0,0,0,0,0,575 +NA,NA,,2020-21,Richmond - Richmond Consolidated,2490005,12,16,14,12,18,14,17,14,17,18,0,0,0,0,0,152 +NA,NA,,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,0,0,0,0,0,0,91,91,90,87,85,75,80,67,0,666 +NA,NA,,2020-21,River Valley Charter (District) - River Valley Charter School,4820050,0,30,34,32,33,32,32,32,32,31,0,0,0,0,0,288 +NA,NA,,2020-21,Rochester - Rochester Memorial,2500005,20,51,56,64,74,63,82,66,0,0,0,0,0,0,0,476 +NA,NA,,2020-21,Rockland - Jefferson Elementary School,2510060,0,37,34,58,50,55,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2020-21,Rockland - John W Rogers Middle,2510305,0,0,0,0,0,0,184,195,193,193,0,0,0,0,0,765 +NA,NA,,2020-21,Rockland - Memorial Park,2510020,0,37,60,59,42,58,0,0,0,0,0,0,0,0,0,256 +NA,NA,,2020-21,Rockland - R Stewart Esten,2510025,0,58,70,55,64,69,0,0,0,0,0,0,0,0,0,316 +NA,NA,,2020-21,Rockland - Rockland Senior High,2510505,38,0,0,0,0,0,0,0,0,0,144,145,140,136,5,608 +NA,NA,,2020-21,Rockport - Rockport Elementary,2520005,8,41,38,49,53,52,64,0,0,0,0,0,0,0,0,305 +NA,NA,,2020-21,Rockport - Rockport High,2520510,0,0,0,0,0,0,0,0,0,0,72,60,57,66,0,255 +NA,NA,,2020-21,Rockport - Rockport Middle,2520305,0,0,0,0,0,0,0,67,68,67,0,0,0,0,0,202 +NA,NA,,2020-21,Rowe - Rowe Elementary,2530005,0,5,12,6,11,14,5,10,0,0,0,0,0,0,0,63 +NA,NA,,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,0,0,0,0,0,0,148,282,264,254,238,171,139,100,0,1596 +NA,NA,,2020-21,Sabis International Charter (District) - Sabis International Charter School,4410505,0,105,111,120,156,128,129,157,129,123,108,91,99,101,0,1557 +NA,NA,,2020-21,Salem - Bates,2580003,0,46,58,59,59,69,71,0,0,0,0,0,0,0,0,362 +NA,NA,,2020-21,Salem - Bentley Academy Innovation School,2580010,0,61,54,51,53,51,51,0,0,0,0,0,0,0,0,321 +NA,NA,,2020-21,Salem - Carlton,2580015,0,41,43,36,49,48,39,0,0,0,0,0,0,0,0,256 +NA,NA,,2020-21,Salem - Collins Middle,2580305,0,0,0,0,0,0,0,223,222,206,0,0,0,0,0,651 +NA,NA,,2020-21,Salem - Horace Mann Laboratory,2580030,0,34,48,59,42,45,42,0,0,0,0,0,0,0,0,270 +NA,NA,,2020-21,Salem - New Liberty Innovation School,2580510,0,0,0,0,0,0,0,0,0,0,2,11,18,19,0,50 +NA,NA,,2020-21,Salem - Salem Early Childhood,2580001,48,13,0,0,0,0,0,0,0,0,0,0,0,0,0,61 +NA,NA,,2020-21,Salem - Salem High,2580505,0,0,0,0,0,0,0,0,0,0,248,208,180,217,7,860 +NA,NA,,2020-21,Salem - Salem Prep High School,2580515,0,0,0,0,0,0,0,0,0,0,1,4,5,10,0,20 +NA,NA,,2020-21,Salem - Saltonstall School,2580050,0,36,39,41,42,46,47,52,43,45,0,0,0,0,0,391 +NA,NA,,2020-21,Salem - Witchcraft Heights,2580070,0,63,79,82,94,91,83,0,0,0,0,0,0,0,0,492 +NA,NA,,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,4850485,0,0,0,0,0,0,0,72,73,72,74,75,70,59,0,495 +NA,NA,,2020-21,Sandwich - Forestdale School,2610002,63,140,151,185,0,0,0,0,0,0,0,0,0,0,0,539 +NA,NA,,2020-21,Sandwich - Oak Ridge,2610025,0,0,0,0,174,167,192,179,0,0,0,0,0,0,0,712 +NA,NA,,2020-21,Sandwich - Sandwich High,2610505,0,0,0,0,0,0,0,0,0,0,150,166,165,156,4,641 +NA,NA,,2020-21,Sandwich - Sandwich STEM Academy,2610305,0,0,0,0,0,0,0,0,212,222,0,0,0,0,0,434 +NA,NA,,2020-21,Saugus - Douglas Waybright,2620067,0,8,27,28,40,21,39,0,0,0,0,0,0,0,0,163 +NA,NA,,2020-21,Saugus - Lynnhurst,2620040,0,9,39,41,41,41,45,0,0,0,0,0,0,0,0,216 +NA,NA,,2020-21,Saugus - Oaklandvale,2620050,0,8,37,34,38,43,41,0,0,0,0,0,0,0,0,201 +NA,NA,,2020-21,Saugus - Saugus High,2620505,0,0,0,0,0,0,0,0,0,0,172,160,176,167,5,680 +NA,NA,,2020-21,Saugus - Saugus Middle School,2620305,0,0,0,0,0,0,0,200,217,206,0,0,0,0,0,623 +NA,NA,,2020-21,Saugus - Veterans Memorial,2620065,28,40,58,69,76,73,70,0,0,0,0,0,0,0,0,414 +NA,NA,,2020-21,Savoy - Emma L Miller Elementary School,2630010,4,4,3,4,9,6,5,9,0,0,0,0,0,0,0,44 +NA,NA,,2020-21,Scituate - Cushing Elementary,2640007,0,51,62,60,48,53,55,0,0,0,0,0,0,0,0,329 +NA,NA,,2020-21,Scituate - Gates Middle School,2640305,0,0,0,0,0,0,0,213,203,221,0,0,0,0,0,637 +NA,NA,,2020-21,Scituate - Hatherly Elementary,2640010,0,35,42,49,42,37,50,0,0,0,0,0,0,0,0,255 +NA,NA,,2020-21,Scituate - Jenkins Elementary School,2640015,0,48,52,58,60,55,46,0,0,0,0,0,0,0,0,319 +NA,NA,,2020-21,Scituate - Scituate High School,2640505,0,0,0,0,0,0,0,0,0,0,211,196,260,252,2,921 +NA,NA,,2020-21,Scituate - Wampatuck Elementary,2640020,51,48,55,59,67,55,55,0,0,0,0,0,0,0,0,390 +NA,NA,,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,0,0,0,0,0,0,0,146,149,183,0,0,0,0,0,478 +NA,NA,,2020-21,Seekonk - George R Martin,2650007,27,76,89,83,78,93,77,0,0,0,0,0,0,0,0,523 +NA,NA,,2020-21,Seekonk - Mildred Aitken School,2650015,21,72,64,73,81,75,72,0,0,0,0,0,0,0,0,458 +NA,NA,,2020-21,Seekonk - Seekonk High,2650505,0,0,0,0,0,0,0,0,0,0,130,144,164,150,0,588 +NA,NA,,2020-21,Sharon - Cottage Street,2660005,0,45,74,64,77,79,86,0,0,0,0,0,0,0,0,425 +NA,NA,,2020-21,Sharon - East Elementary,2660010,0,61,68,106,79,86,92,0,0,0,0,0,0,0,0,492 +NA,NA,,2020-21,Sharon - Heights Elementary,2660015,0,86,97,88,89,89,94,0,0,0,0,0,0,0,0,543 +NA,NA,,2020-21,Sharon - Sharon Early Childhood Center,2660001,31,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31 +NA,NA,,2020-21,Sharon - Sharon High,2660505,0,0,0,0,0,0,0,0,0,0,277,281,301,272,0,1131 +NA,NA,,2020-21,Sharon - Sharon Middle,2660305,0,0,0,0,0,0,0,292,291,288,0,0,0,0,0,871 +NA,NA,,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,0,0,0,0,0,0,0,0,357,307,329,315,0,1308 +NA,NA,,2020-21,Sherborn - Pine Hill,2690010,13,55,68,64,50,77,64,0,0,0,0,0,0,0,0,391 +NA,NA,,2020-21,Shrewsbury - Beal School,2710005,0,174,77,0,0,0,0,0,0,0,0,0,0,0,0,251 +NA,NA,,2020-21,Shrewsbury - Calvin Coolidge,2710015,0,42,89,83,96,120,0,0,0,0,0,0,0,0,0,430 +NA,NA,,2020-21,Shrewsbury - Floral Street School,2710020,0,0,114,180,172,213,0,0,0,0,0,0,0,0,0,679 +NA,NA,,2020-21,Shrewsbury - Oak Middle School,2710030,0,0,0,0,0,0,0,0,502,483,0,0,0,0,0,985 +NA,NA,,2020-21,Shrewsbury - Parker Road Preschool,2710040,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110 +NA,NA,,2020-21,Shrewsbury - Sherwood Middle School,2710305,0,0,0,0,0,0,473,491,0,0,0,0,0,0,0,964 +NA,NA,,2020-21,Shrewsbury - Shrewsbury Sr High,2710505,0,0,0,0,0,0,0,0,0,0,459,480,470,464,0,1873 +NA,NA,,2020-21,Shrewsbury - Spring Street,2710035,0,39,60,83,72,78,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2020-21,Shrewsbury - Walter J Paton,2710025,0,32,67,88,90,73,0,0,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Shutesbury - Shutesbury Elementary,2720005,10,11,19,12,9,16,12,23,0,0,0,0,0,0,0,112 +NA,NA,,2020-21,Silver Lake - Silver Lake Regional High,7600505,99,0,0,0,0,0,0,0,0,0,257,279,267,266,7,1175 +NA,NA,,2020-21,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,0,0,0,0,0,264,259,0,0,0,0,0,523 +NA,NA,,2020-21,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,0,0,0,0,0,0,0,68,71,69,59,47,52,0,366 +NA,NA,,2020-21,Somerset - Chace Street,2730005,0,42,43,54,65,62,59,0,0,0,0,0,0,0,0,325 +NA,NA,,2020-21,Somerset - North Elementary,2730008,35,52,60,62,68,81,65,0,0,0,0,0,0,0,0,423 +NA,NA,,2020-21,Somerset - Somerset Middle School,2730305,0,0,0,0,0,0,0,179,223,212,0,0,0,0,0,614 +NA,NA,,2020-21,Somerset - South,2730015,0,37,40,42,39,50,36,0,0,0,0,0,0,0,0,244 +NA,NA,,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,0,0,0,0,0,0,0,0,257,247,249,247,7,1007 +NA,NA,,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,17,70,77,67,69,64,72,44,46,64,0,0,0,0,0,590 +NA,NA,,2020-21,Somerville - Arthur D Healey,2740075,12,38,52,55,54,49,41,47,47,51,0,0,0,0,0,446 +NA,NA,,2020-21,Somerville - Benjamin G Brown,2740015,0,42,41,39,25,37,41,0,0,0,0,0,0,0,0,225 +NA,NA,,2020-21,Somerville - Capuano Early Childhood Center,2740005,151,51,0,0,0,0,0,0,0,0,0,0,0,0,0,202 +NA,NA,,2020-21,Somerville - E Somerville Community,2740111,0,67,83,94,84,74,90,74,78,76,0,0,0,0,0,720 +NA,NA,,2020-21,Somerville - Full Circle High School,2740510,0,0,0,0,0,0,0,0,0,0,11,12,15,14,4,56 +NA,NA,,2020-21,Somerville - John F Kennedy,2740083,16,43,50,49,42,47,38,71,48,47,0,0,0,0,0,451 +NA,NA,,2020-21,Somerville - Next Wave Junior High,2740410,0,0,0,0,0,0,0,0,8,7,0,0,0,0,0,15 +NA,NA,,2020-21,Somerville - Somerville High,2740505,0,0,0,0,0,0,0,0,0,0,332,291,321,264,7,1215 +NA,NA,,2020-21,Somerville - West Somerville Neighborhood,2740115,16,46,48,43,34,31,40,41,43,38,0,0,0,0,0,380 +NA,NA,,2020-21,Somerville - Winter Hill Community,2740120,16,36,45,32,32,28,40,67,46,49,0,0,0,0,0,391 +NA,NA,,2020-21,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,0,0,0,124,125,123,147,0,0,0,0,0,519 +NA,NA,,2020-21,South Hadley - Mosier,2780020,0,0,0,148,127,143,0,0,0,0,0,0,0,0,0,418 +NA,NA,,2020-21,South Hadley - Plains Elementary,2780015,63,81,111,0,0,0,0,0,0,0,0,0,0,0,0,255 +NA,NA,,2020-21,South Hadley - South Hadley High,2780505,0,0,0,0,0,0,0,0,0,0,140,141,135,146,9,571 +NA,NA,,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0,0,0,0,0,0,0,0,0,0,226,204,212,175,0,817 +NA,NA,,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,4880550,0,44,76,79,80,79,79,82,84,82,86,91,71,76,0,1009 +NA,NA,,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,0,0,0,0,0,0,0,0,168,162,161,155,0,646 +NA,NA,,2020-21,Southampton - William E Norris,2750005,26,62,59,61,55,76,56,53,0,0,0,0,0,0,0,448 +NA,NA,,2020-21,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,120,133,0,0,0,0,0,0,0,0,0,0,253 +NA,NA,,2020-21,Southborough - Margaret A Neary,2760020,0,0,0,0,0,123,129,0,0,0,0,0,0,0,0,252 +NA,NA,,2020-21,Southborough - Mary E Finn School,2760008,84,104,142,0,0,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2020-21,Southborough - P Brent Trottier,2760305,0,0,0,0,0,0,0,127,124,130,0,0,0,0,0,381 +NA,NA,,2020-21,Southbridge - Charlton Street,2770005,0,0,1,55,71,72,70,0,0,0,0,0,0,0,0,269 +NA,NA,,2020-21,Southbridge - Eastford Road,2770010,53,142,157,0,0,0,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2020-21,Southbridge - Southbridge Academy,2770525,0,0,0,0,0,0,0,3,8,6,11,6,12,3,0,49 +NA,NA,,2020-21,Southbridge - Southbridge High School,2770515,0,0,0,0,0,0,0,0,0,0,171,111,99,83,0,464 +NA,NA,,2020-21,Southbridge - Southbridge Middle School,2770315,0,0,0,0,0,0,0,136,147,136,0,0,0,0,0,419 +NA,NA,,2020-21,Southbridge - West Street,2770020,0,0,0,81,90,81,61,0,0,0,0,0,0,0,0,313 +NA,NA,,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,0,0,0,0,0,0,0,0,0,0,410,399,357,361,0,1527 +NA,NA,,2020-21,Southern Berkshire - Mt Everett Regional,7650505,0,0,0,0,0,0,0,43,35,57,35,54,50,51,0,325 +NA,NA,,2020-21,Southern Berkshire - New Marlborough Central,7650018,7,16,12,14,7,17,0,0,0,0,0,0,0,0,0,73 +NA,NA,,2020-21,Southern Berkshire - South Egremont,7650030,0,15,0,0,0,0,0,0,0,0,0,0,0,0,0,15 +NA,NA,,2020-21,Southern Berkshire - Undermountain,7650035,31,32,35,30,27,33,44,0,0,0,0,0,0,0,0,232 +NA,NA,,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,0,0,0,0,0,0,0,0,314,293,291,273,0,1171 +NA,NA,,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,0,88,100,112,125,0,0,0,0,0,0,0,425 +NA,NA,,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,0,0,0,0,0,0,122,124,104,101,121,101,0,673 +NA,NA,,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,28,80,85,102,0,0,0,0,0,0,0,0,0,0,0,295 +NA,NA,,2020-21,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,0,0,0,0,0,0,0,92,79,64,60,3,298 +NA,NA,,2020-21,Spencer-E Brookfield - East Brookfield Elementary,7670008,47,15,28,18,21,24,21,17,0,0,0,0,0,0,0,191 +NA,NA,,2020-21,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,0,0,0,67,90,128,120,0,0,0,0,0,405 +NA,NA,,2020-21,Spencer-E Brookfield - Wire Village School,7670040,0,70,90,77,96,104,0,0,0,0,0,0,0,0,0,437 +NA,NA,,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,45,46,49,40,43,48,32,37,34,27,0,0,0,0,0,401 +NA,NA,,2020-21,Springfield - Alice B Beal Elementary,2810175,0,43,51,51,38,46,43,0,0,0,0,0,0,0,0,272 +NA,NA,,2020-21,Springfield - Arthur T Talmadge,2810165,0,31,45,36,41,43,40,0,0,0,0,0,0,0,0,236 +NA,NA,,2020-21,Springfield - Balliet Middle School,2810360,0,0,0,0,0,0,0,1,9,10,0,0,0,0,0,20 +NA,NA,,2020-21,Springfield - Brightwood,2810025,26,37,59,64,53,47,56,0,0,0,0,0,0,0,0,342 +NA,NA,,2020-21,Springfield - Chestnut Academy,2810365,0,0,0,0,0,0,0,0,0,95,0,0,0,0,0,95 +NA,NA,,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,0,0,0,0,0,0,0,118,106,97,0,0,0,0,0,321 +NA,NA,,2020-21,Springfield - Conservatory of the Arts,2810475,0,0,0,0,0,0,0,56,53,52,53,48,41,28,0,331 +NA,NA,,2020-21,Springfield - Daniel B Brunton,2810035,27,60,74,63,68,65,63,0,0,0,0,0,0,0,0,420 +NA,NA,,2020-21,Springfield - Early Childhood Education Center,2810001,109,15,0,0,0,0,0,0,0,0,0,0,0,0,0,124 +NA,NA,,2020-21,Springfield - Edward P. Boland School,2810010,147,70,87,73,61,82,60,0,0,0,0,0,0,0,0,580 +NA,NA,,2020-21,Springfield - Elias Brookings,2810030,31,31,43,50,40,51,51,0,0,0,0,0,0,0,0,297 +NA,NA,,2020-21,Springfield - Emergence Academy,2810318,0,0,0,0,0,0,0,3,5,5,0,0,0,0,0,13 +NA,NA,,2020-21,Springfield - Forest Park Middle,2810325,0,0,0,0,0,0,0,194,214,233,0,0,0,0,0,641 +NA,NA,,2020-21,Springfield - Frank H Freedman,2810075,0,38,54,46,42,46,46,0,0,0,0,0,0,0,0,272 +NA,NA,,2020-21,Springfield - Frederick Harris,2810080,66,69,99,103,107,98,78,0,0,0,0,0,0,0,0,620 +NA,NA,,2020-21,Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,0,0,0,0,0,0,0,1,11,5,16,0,33 +NA,NA,,2020-21,Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,0,0,0,0,0,0,0,1,1,10,13,0,25 +NA,NA,,2020-21,Springfield - German Gerena Community School,2810195,82,102,99,97,98,84,87,0,0,0,0,0,0,0,0,649 +NA,NA,,2020-21,Springfield - Glenwood,2810065,0,38,41,50,56,48,43,0,0,0,0,0,0,0,0,276 +NA,NA,,2020-21,Springfield - Glickman Elementary,2810068,0,46,44,49,46,45,62,0,0,0,0,0,0,0,0,292 +NA,NA,,2020-21,Springfield - High School Of Commerce,2810510,0,0,0,0,0,0,0,0,0,0,368,341,284,214,0,1207 +NA,NA,,2020-21,Springfield - Hiram L Dorman,2810050,0,27,38,42,50,47,36,0,0,0,0,0,0,0,0,240 +NA,NA,,2020-21,Springfield - Homer Street,2810085,0,63,92,69,54,66,49,0,0,0,0,0,0,0,0,393 +NA,NA,,2020-21,Springfield - Impact Prep at Chestnut,2810366,0,0,0,0,0,0,0,77,80,72,0,0,0,0,0,229 +NA,NA,,2020-21,Springfield - Indian Orchard Elementary,2810100,69,75,92,78,92,83,90,0,0,0,0,0,0,0,0,579 +NA,NA,,2020-21,Springfield - John F Kennedy Middle,2810328,0,0,0,0,0,0,0,154,163,154,0,0,0,0,0,471 +NA,NA,,2020-21,Springfield - John J Duggan Middle,2810320,0,0,0,0,0,0,0,148,169,174,77,86,59,51,0,764 +NA,NA,,2020-21,Springfield - Kensington International School,2810110,34,25,47,36,47,32,45,0,0,0,0,0,0,0,0,266 +NA,NA,,2020-21,Springfield - Kiley Academy,2810316,0,0,0,0,0,0,0,115,0,0,0,0,0,0,0,115 +NA,NA,,2020-21,Springfield - Kiley Prep,2810315,0,0,0,0,0,0,0,104,0,0,0,0,0,0,0,104 +NA,NA,,2020-21,Springfield - Liberty,2810115,0,43,47,63,48,45,43,0,0,0,0,0,0,0,0,289 +NA,NA,,2020-21,Springfield - Liberty Preparatory Academy,2810560,0,0,0,0,0,0,0,0,0,0,0,3,3,1,0,7 +NA,NA,,2020-21,Springfield - Lincoln,2810120,0,75,62,74,70,63,71,0,0,0,0,0,0,0,0,415 +NA,NA,,2020-21,Springfield - Lyceum Academy,2810317,0,0,0,0,0,0,0,144,153,74,0,0,0,0,0,371 +NA,NA,,2020-21,Springfield - M Marcus Kiley Middle,2810330,0,0,0,0,0,0,0,0,245,236,0,0,0,0,0,481 +NA,NA,,2020-21,Springfield - Margaret C Ells,2810060,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135 +NA,NA,,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,2810125,41,52,47,40,39,41,51,0,0,0,0,0,0,0,0,311 +NA,NA,,2020-21,Springfield - Mary M Lynch,2810140,0,29,30,44,46,53,31,0,0,0,0,0,0,0,0,233 +NA,NA,,2020-21,Springfield - Mary M Walsh,2810155,11,44,41,47,42,51,49,0,0,0,0,0,0,0,0,285 +NA,NA,,2020-21,Springfield - Mary O Pottenger,2810145,30,52,73,62,77,66,63,0,0,0,0,0,0,0,0,423 +NA,NA,,2020-21,Springfield - Milton Bradley School,2810023,63,69,64,81,81,85,78,0,0,0,0,0,0,0,0,521 +NA,NA,,2020-21,Springfield - Rebecca M Johnson,2810055,79,89,98,111,96,126,106,0,0,0,0,0,0,0,0,705 +NA,NA,,2020-21,Springfield - Rise Academy at Van Sickle,2810480,0,0,0,0,0,0,0,87,114,103,0,0,0,0,0,304 +NA,NA,,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,0,0,0,0,0,0,0,0,0,0,362,359,364,319,0,1404 +NA,NA,,2020-21,Springfield - Samuel Bowles,2810020,0,34,44,53,40,29,42,0,0,0,0,0,0,0,0,242 +NA,NA,,2020-21,Springfield - South End Middle School,2810355,0,0,0,0,0,0,0,76,77,90,0,0,0,0,0,243 +NA,NA,,2020-21,Springfield - Springfield Central High,2810500,0,0,0,0,0,0,0,0,0,0,659,524,406,497,0,2086 +NA,NA,,2020-21,Springfield - Springfield High School,2810570,0,0,0,0,0,0,0,0,0,0,23,38,51,94,0,206 +NA,NA,,2020-21,Springfield - Springfield High School of Science and Technology,2810530,0,0,0,0,0,0,0,0,0,0,392,292,262,226,11,1183 +NA,NA,,2020-21,Springfield - Springfield International Academy at Johnson,2810215,0,0,0,0,1,11,4,0,0,0,0,0,0,0,0,16 +NA,NA,,2020-21,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,0,0,0,0,0,0,0,0,10,35,19,0,0,64 +NA,NA,,2020-21,Springfield - Springfield Public Day Elementary School,2810005,0,0,2,3,9,16,11,0,0,0,0,0,0,0,0,41 +NA,NA,,2020-21,Springfield - Springfield Public Day High School,2810550,0,0,0,0,0,0,0,0,0,0,23,29,19,15,0,86 +NA,NA,,2020-21,Springfield - Springfield Public Day Middle School,2810345,0,0,0,0,0,0,0,23,12,21,0,0,0,0,0,56 +NA,NA,,2020-21,Springfield - Springfield Vocational Academy,2810675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127,127 +NA,NA,,2020-21,Springfield - STEM Middle Academy,2810350,0,0,0,0,0,0,0,96,99,92,0,0,0,0,0,287 +NA,NA,,2020-21,Springfield - Sumner Avenue,2810160,73,65,76,91,71,70,61,0,0,0,0,0,0,0,0,507 +NA,NA,,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,0,0,0,0,0,0,0,103,104,96,80,81,85,85,4,638 +NA,NA,,2020-21,Springfield - Thomas M Balliet,2810015,60,32,48,42,36,43,48,0,0,0,0,0,0,0,0,309 +NA,NA,,2020-21,Springfield - Van Sickle Academy,2810485,0,0,0,0,0,0,0,94,105,77,0,0,0,0,0,276 +NA,NA,,2020-21,Springfield - Warner,2810180,37,39,37,35,26,40,26,0,0,0,0,0,0,0,0,240 +NA,NA,,2020-21,Springfield - Washington,2810185,54,55,71,62,66,60,46,0,0,0,0,0,0,0,0,414 +NA,NA,,2020-21,Springfield - White Street,2810190,0,54,83,77,74,63,71,0,0,0,0,0,0,0,0,422 +NA,NA,,2020-21,Springfield - William N. DeBerry,2810045,0,41,58,45,47,54,39,0,0,0,0,0,0,0,0,284 +NA,NA,,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,0,54,54,54,56,54,53,53,0,0,0,0,0,0,0,378 +NA,NA,,2020-21,Stoneham - Colonial Park,2840005,25,46,44,43,48,45,0,0,0,0,0,0,0,0,0,251 +NA,NA,,2020-21,Stoneham - Robin Hood,2840025,16,71,68,67,61,74,0,0,0,0,0,0,0,0,0,357 +NA,NA,,2020-21,Stoneham - South,2840030,19,55,61,64,67,62,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2020-21,Stoneham - Stoneham Central Middle School,2840405,0,0,0,0,0,0,176,163,197,172,0,0,0,0,0,708 +NA,NA,,2020-21,Stoneham - Stoneham High,2840505,0,0,0,0,0,0,0,0,0,0,148,145,139,178,0,610 +NA,NA,,2020-21,Stoughton - Edwin A Jones Early Childhood Center,2850012,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65 +NA,NA,,2020-21,Stoughton - Helen Hansen Elementary,2850010,0,34,47,38,39,46,37,0,0,0,0,0,0,0,0,241 +NA,NA,,2020-21,Stoughton - Joseph H Gibbons,2850025,0,52,61,60,56,58,63,0,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,50,56,56,70,57,77,0,0,0,0,0,0,0,0,366 +NA,NA,,2020-21,Stoughton - O'Donnell Middle School,2850405,0,0,0,0,0,0,0,250,268,290,0,0,0,0,0,808 +NA,NA,,2020-21,Stoughton - Richard L. Wilkins Elementary School,2850020,15,45,47,41,43,47,46,0,0,0,0,0,0,0,0,284 +NA,NA,,2020-21,Stoughton - South Elementary,2850015,0,46,40,38,35,34,44,0,0,0,0,0,0,0,0,237 +NA,NA,,2020-21,Stoughton - Stoughton High,2850505,0,0,0,0,0,0,0,0,0,0,290,242,232,264,7,1035 +NA,NA,,2020-21,Sturbridge - Burgess Elementary,2870005,40,91,106,97,110,123,115,110,0,0,0,0,0,0,0,792 +NA,NA,,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,0,0,0,0,0,0,0,0,0,211,231,216,195,0,853 +NA,NA,,2020-21,Sudbury - Ephraim Curtis Middle,2880305,0,0,0,0,0,0,0,278,293,339,0,0,0,0,0,910 +NA,NA,,2020-21,Sudbury - General John Nixon Elementary,2880025,0,36,56,42,53,45,67,0,0,0,0,0,0,0,0,299 +NA,NA,,2020-21,Sudbury - Israel Loring School,2880015,0,51,78,76,68,79,76,0,0,0,0,0,0,0,0,428 +NA,NA,,2020-21,Sudbury - Josiah Haynes,2880010,0,37,62,57,58,61,63,0,0,0,0,0,0,0,0,338 +NA,NA,,2020-21,Sudbury - Peter Noyes,2880030,39,75,88,83,84,92,85,0,0,0,0,0,0,0,0,546 +NA,NA,,2020-21,Sunderland - Sunderland Elementary,2890005,12,17,24,26,28,29,35,13,0,0,0,0,0,0,0,184 +NA,NA,,2020-21,Sutton - Sutton Early Learning,2900003,36,82,82,105,0,0,0,0,0,0,0,0,0,0,0,305 +NA,NA,,2020-21,Sutton - Sutton Elementary,2900005,0,0,0,0,97,78,109,0,0,0,0,0,0,0,0,284 +NA,NA,,2020-21,Sutton - Sutton High School,2900510,0,0,0,0,0,0,0,0,0,0,90,91,98,88,0,367 +NA,NA,,2020-21,Sutton - Sutton Middle School,2900305,0,0,0,0,0,0,0,103,102,118,0,0,0,0,0,323 +NA,NA,,2020-21,Swampscott - Clarke,2910005,0,38,44,46,44,42,0,0,0,0,0,0,0,0,0,214 +NA,NA,,2020-21,Swampscott - Hadley,2910010,0,51,62,58,64,60,0,0,0,0,0,0,0,0,0,295 +NA,NA,,2020-21,Swampscott - Stanley,2910020,0,42,51,43,42,44,0,0,0,0,0,0,0,0,0,222 +NA,NA,,2020-21,Swampscott - Swampscott High,2910505,0,0,0,0,0,0,0,0,0,0,161,156,191,191,1,700 +NA,NA,,2020-21,Swampscott - Swampscott Middle,2910305,40,0,0,0,0,0,152,153,172,184,0,0,0,0,0,701 +NA,NA,,2020-21,Swansea - Elizabeth S Brown,2920006,0,0,0,0,92,90,92,0,0,0,0,0,0,0,0,274 +NA,NA,,2020-21,Swansea - Gardner,2920015,0,75,97,83,0,0,0,0,0,0,0,0,0,0,0,255 +NA,NA,,2020-21,Swansea - Joseph Case High,2920505,0,0,0,0,0,0,0,0,0,0,167,118,126,135,4,550 +NA,NA,,2020-21,Swansea - Joseph Case Jr High,2920305,0,0,0,0,0,0,0,176,175,189,0,0,0,0,0,540 +NA,NA,,2020-21,Swansea - Joseph G Luther,2920020,0,0,0,0,69,71,52,0,0,0,0,0,0,0,0,192 +NA,NA,,2020-21,Swansea - Mark G Hoyle Elementary,2920017,38,57,51,59,0,0,0,0,0,0,0,0,0,0,0,205 +NA,NA,,2020-21,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,0,0,0,0,0,0,299,286,0,0,0,0,0,585 +NA,NA,,2020-21,Tantasqua - Tantasqua Regional Sr High,7700505,0,0,0,0,0,0,0,0,0,0,170,172,171,173,1,687 +NA,NA,,2020-21,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,0,0,0,0,0,0,0,140,132,114,113,0,499 +NA,NA,,2020-21,Taunton - Benjamin Friedman Middle,2930315,0,0,0,0,0,0,240,256,275,0,0,0,0,0,0,771 +NA,NA,,2020-21,Taunton - East Taunton Elementary,2930010,0,94,102,99,121,128,0,0,0,0,0,0,0,0,0,544 +NA,NA,,2020-21,Taunton - Edmund Hatch Bennett,2930007,0,44,55,60,77,57,0,0,0,0,0,0,0,0,0,293 +NA,NA,,2020-21,Taunton - Edward F. Leddy Preschool,2930005,148,0,0,0,0,0,0,0,0,0,0,0,0,0,0,148 +NA,NA,,2020-21,Taunton - Elizabeth Pole,2930027,0,117,97,107,112,120,0,0,0,0,0,0,0,0,0,553 +NA,NA,,2020-21,Taunton - H H Galligan,2930057,0,54,54,41,55,47,0,0,0,0,0,0,0,0,0,251 +NA,NA,,2020-21,Taunton - John F Parker Middle,2930305,0,0,0,0,0,0,162,157,159,0,0,0,0,0,0,478 +NA,NA,,2020-21,Taunton - Joseph C Chamberlain,2930008,0,76,95,97,89,99,0,0,0,0,0,0,0,0,0,456 +NA,NA,,2020-21,Taunton - Joseph H Martin,2930042,0,0,0,0,0,0,210,231,225,0,0,0,0,0,0,666 +NA,NA,,2020-21,Taunton - Mulcahey Elementary School,2930015,22,133,166,166,142,146,0,0,0,0,0,0,0,0,0,775 +NA,NA,,2020-21,Taunton - Taunton Alternative High School,2930525,0,0,0,0,0,0,0,0,0,0,0,1,20,79,0,100 +NA,NA,,2020-21,Taunton - Taunton High,2930505,0,0,0,0,0,0,0,0,0,675,565,508,495,450,7,2700 +NA,NA,,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,51,58,80,82,96,120,187,241,271,361,357,311,299,0,2514 +NA,NA,,2020-21,Tewksbury - Heath-Brook,2950010,0,96,112,105,0,0,0,0,0,0,0,0,0,0,0,313 +NA,NA,,2020-21,Tewksbury - John F. Ryan,2950023,0,0,0,0,0,0,229,246,0,0,0,0,0,0,0,475 +NA,NA,,2020-21,Tewksbury - John W. Wynn Middle,2950305,0,0,0,0,0,0,0,0,261,250,0,0,0,0,0,511 +NA,NA,,2020-21,Tewksbury - L F Dewing,2950001,111,164,131,141,0,0,0,0,0,0,0,0,0,0,0,547 +NA,NA,,2020-21,Tewksbury - Louise Davy Trahan,2950025,0,0,0,0,115,128,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2020-21,Tewksbury - North Street,2950020,0,0,0,0,120,147,0,0,0,0,0,0,0,0,0,267 +NA,NA,,2020-21,Tewksbury - Tewksbury Memorial High,2950505,0,0,0,0,0,0,0,0,0,0,191,191,228,209,7,826 +NA,NA,,2020-21,Tisbury - Tisbury Elementary,2960005,15,35,31,22,35,28,30,24,38,31,0,0,0,0,0,289 +NA,NA,,2020-21,Topsfield - Proctor Elementary,2980005,0,0,0,0,0,86,79,87,0,0,0,0,0,0,0,252 +NA,NA,,2020-21,Topsfield - Steward Elementary,2980010,36,67,75,72,84,0,0,0,0,0,0,0,0,0,0,334 +NA,NA,,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0,0,0,0,0,0,0,0,0,260,231,239,223,0,953 +NA,NA,,2020-21,Triton - Newbury Elementary,7730020,27,54,46,48,48,39,56,41,0,0,0,0,0,0,0,359 +NA,NA,,2020-21,Triton - Pine Grove,7730025,33,31,52,46,50,58,50,66,0,0,0,0,0,0,0,386 +NA,NA,,2020-21,Triton - Salisbury Elementary,7730015,26,40,57,59,60,65,60,59,0,0,0,0,0,0,0,426 +NA,NA,,2020-21,Triton - Triton Regional High School,7730505,0,0,0,0,0,0,0,0,0,0,154,190,153,149,0,646 +NA,NA,,2020-21,Triton - Triton Regional Middle School,7730405,0,0,0,0,0,0,0,0,170,189,0,0,0,0,0,359 +NA,NA,,2020-21,Truro - Truro Central,3000005,21,14,13,16,16,15,18,0,0,0,0,0,0,0,0,113 +NA,NA,,2020-21,Tyngsborough - Tyngsborough Elementary,3010020,22,98,110,124,113,146,110,0,0,0,0,0,0,0,0,723 +NA,NA,,2020-21,Tyngsborough - Tyngsborough High School,3010505,0,0,0,0,0,0,0,0,0,0,96,108,126,115,0,445 +NA,NA,,2020-21,Tyngsborough - Tyngsborough Middle,3010305,0,0,0,0,0,0,0,119,149,125,0,0,0,0,0,393 +NA,NA,,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,0,0,0,0,0,0,0,104,118,127,0,0,0,0,0,349 +NA,NA,,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,54,65,70,67,75,75,77,69,68,65,0,0,0,0,0,685 +NA,NA,,2020-21,Up-Island Regional - Chilmark Elementary,7740010,0,11,6,10,10,7,6,0,0,0,0,0,0,0,0,50 +NA,NA,,2020-21,Up-Island Regional - West Tisbury Elementary,7740020,8,32,32,40,31,33,38,46,51,37,0,0,0,0,0,348 +NA,NA,,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,0,0,0,0,0,0,0,204,163,181,174,0,722 +NA,NA,,2020-21,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0,0,5,12,24,0,41 +NA,NA,,2020-21,Uxbridge - Taft Early Learning Center,3040005,46,107,117,108,128,0,0,0,0,0,0,0,0,0,0,506 +NA,NA,,2020-21,Uxbridge - Uxbridge High,3040505,0,0,0,0,0,0,0,0,0,143,132,120,94,104,7,600 +NA,NA,,2020-21,Uxbridge - Whitin Intermediate,3040405,0,0,0,0,0,110,124,140,118,0,0,0,0,0,0,492 +NA,NA,,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,0,0,0,0,0,0,111,111,121,76,0,0,0,0,0,419 +NA,NA,,2020-21,Wachusett - Central Tree Middle,7750310,0,0,0,0,0,0,0,107,109,128,0,0,0,0,0,344 +NA,NA,,2020-21,Wachusett - Chocksett Middle School,7750315,0,0,0,0,0,0,77,65,83,75,0,0,0,0,0,300 +NA,NA,,2020-21,Wachusett - Davis Hill Elementary,7750018,0,67,52,76,62,90,77,0,0,0,0,0,0,0,0,424 +NA,NA,,2020-21,Wachusett - Dawson,7750020,0,62,73,81,66,82,81,0,0,0,0,0,0,0,0,445 +NA,NA,,2020-21,Wachusett - Early Childhood Center,7750001,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93 +NA,NA,,2020-21,Wachusett - Glenwood Elementary School,7750060,0,0,0,0,97,112,131,0,0,0,0,0,0,0,0,340 +NA,NA,,2020-21,Wachusett - Houghton Elementary,7750027,0,55,65,67,69,50,0,0,0,0,0,0,0,0,0,306 +NA,NA,,2020-21,Wachusett - Leroy E.Mayo,7750032,0,78,68,79,73,90,91,0,0,0,0,0,0,0,0,479 +NA,NA,,2020-21,Wachusett - Mountview Middle,7750305,0,0,0,0,0,0,0,256,246,274,0,0,0,0,0,776 +NA,NA,,2020-21,Wachusett - Naquag Elementary School,7750005,0,100,93,102,0,0,0,0,0,0,0,0,0,0,0,295 +NA,NA,,2020-21,Wachusett - Paxton Center,7750040,0,34,40,39,31,52,44,65,69,66,0,0,0,0,0,440 +NA,NA,,2020-21,Wachusett - Thomas Prince,7750045,0,30,35,29,35,41,36,45,44,44,0,0,0,0,0,339 +NA,NA,,2020-21,Wachusett - Wachusett Regional High,7750505,0,0,0,0,0,0,0,0,0,0,494,504,488,501,16,2003 +NA,NA,,2020-21,Wakefield - Dolbeare,3050005,0,82,83,83,94,101,0,0,0,0,0,0,0,0,0,443 +NA,NA,,2020-21,Wakefield - Early Childhood Center at the Doyle School,3050001,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68 +NA,NA,,2020-21,Wakefield - Galvin Middle School,3050310,0,0,0,0,0,0,259,268,264,267,0,0,0,0,0,1058 +NA,NA,,2020-21,Wakefield - Greenwood,3050020,0,42,41,41,47,44,0,0,0,0,0,0,0,0,0,215 +NA,NA,,2020-21,Wakefield - Wakefield Memorial High,3050505,0,0,0,0,0,0,0,0,0,0,190,212,244,247,0,893 +NA,NA,,2020-21,Wakefield - Walton,3050040,0,44,41,47,45,46,0,0,0,0,0,0,0,0,0,223 +NA,NA,,2020-21,Wakefield - Woodville School,3050015,0,101,82,74,77,75,0,0,0,0,0,0,0,0,0,409 +NA,NA,,2020-21,Wales - Wales Elementary,3060005,12,16,18,12,12,14,24,16,0,0,0,0,0,0,0,124 +NA,NA,,2020-21,Walpole - Bird Middle,3070305,0,0,0,0,0,0,0,126,143,128,0,0,0,0,0,397 +NA,NA,,2020-21,Walpole - Boyden,3070010,0,53,61,60,67,56,53,0,0,0,0,0,0,0,0,350 +NA,NA,,2020-21,Walpole - Daniel Feeney Preschool Center,3070002,62,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62 +NA,NA,,2020-21,Walpole - Eleanor N Johnson Middle,3070310,0,0,0,0,0,0,0,146,136,141,0,0,0,0,0,423 +NA,NA,,2020-21,Walpole - Elm Street School,3070005,0,86,61,67,69,74,77,0,0,0,0,0,0,0,0,434 +NA,NA,,2020-21,Walpole - Fisher,3070015,0,96,71,78,74,60,78,0,0,0,0,0,0,0,0,457 +NA,NA,,2020-21,Walpole - Old Post Road,3070018,0,74,86,78,71,83,62,0,0,0,0,0,0,0,0,454 +NA,NA,,2020-21,Walpole - Walpole High,3070505,0,0,0,0,0,0,0,0,0,0,255,259,290,270,4,1078 +NA,NA,,2020-21,Waltham - Douglas MacArthur Elementary School,3080032,0,91,61,82,69,82,73,0,0,0,0,0,0,0,0,458 +NA,NA,,2020-21,Waltham - Henry Whittemore Elementary School,3080065,0,52,65,67,70,81,78,0,0,0,0,0,0,0,0,413 +NA,NA,,2020-21,Waltham - James Fitzgerald Elementary School,3080060,0,60,59,66,72,55,60,0,0,0,0,0,0,0,0,372 +NA,NA,,2020-21,Waltham - John F Kennedy Middle,3080404,0,0,0,0,0,0,0,186,185,164,0,0,0,0,0,535 +NA,NA,,2020-21,Waltham - John W. McDevitt Middle School,3080415,0,0,0,0,0,0,0,207,222,240,0,0,0,0,0,669 +NA,NA,,2020-21,Waltham - Northeast Elementary School,3080040,52,54,86,67,80,67,76,0,0,0,0,0,0,0,0,482 +NA,NA,,2020-21,Waltham - Thomas R Plympton Elementary School,3080050,0,49,67,67,64,53,77,0,0,0,0,0,0,0,0,377 +NA,NA,,2020-21,Waltham - Waltham Public Schools Dual Language Program,3080001,0,39,37,33,30,35,0,0,0,0,0,0,0,0,0,174 +NA,NA,,2020-21,Waltham - Waltham Sr High,3080505,0,0,0,0,0,0,0,0,0,0,415,428,389,387,1,1620 +NA,NA,,2020-21,Waltham - William F. Stanley Elementary School,3080005,57,65,48,56,51,68,62,0,0,0,0,0,0,0,0,407 +NA,NA,,2020-21,Ware - Stanley M Koziol Elementary School,3090020,37,68,82,85,71,0,0,0,0,0,0,0,0,0,0,343 +NA,NA,,2020-21,Ware - Ware Junior/Senior High School,3090505,0,0,0,0,0,0,0,0,102,114,105,69,66,64,3,523 +NA,NA,,2020-21,Ware - Ware Middle School,3090305,0,0,0,0,0,76,97,101,0,0,0,0,0,0,0,274 +NA,NA,,2020-21,Wareham - John William Decas,3100003,48,163,184,141,0,0,0,0,0,0,0,0,0,0,0,536 +NA,NA,,2020-21,Wareham - Minot Forest,3100017,0,0,0,0,167,134,0,0,0,0,0,0,0,0,0,301 +NA,NA,,2020-21,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,0,0,0,0,0,0,0,7,3,13,10,0,33 +NA,NA,,2020-21,Wareham - Wareham Middle,3100305,0,0,0,0,0,0,166,180,187,0,0,0,0,0,0,533 +NA,NA,,2020-21,Wareham - Wareham Senior High,3100505,0,0,0,0,0,0,0,0,0,164,131,108,97,79,6,585 +NA,NA,,2020-21,Watertown - Cunniff,3140015,0,52,38,54,51,38,34,0,0,0,0,0,0,0,0,267 +NA,NA,,2020-21,Watertown - Hosmer,3140020,77,87,84,87,89,88,79,0,0,0,0,0,0,0,0,591 +NA,NA,,2020-21,Watertown - James Russell Lowell,3140025,0,50,79,70,73,68,61,0,0,0,0,0,0,0,0,401 +NA,NA,,2020-21,Watertown - Watertown High,3140505,0,0,0,0,0,0,0,0,0,0,177,164,159,189,6,695 +NA,NA,,2020-21,Watertown - Watertown Middle,3140305,0,0,0,0,0,0,0,178,184,210,0,0,0,0,0,572 +NA,NA,,2020-21,Wayland - Claypit Hill School,3150005,0,74,66,75,97,104,88,0,0,0,0,0,0,0,0,504 +NA,NA,,2020-21,Wayland - Happy Hollow School,3150015,0,71,55,52,60,64,59,0,0,0,0,0,0,0,0,361 +NA,NA,,2020-21,Wayland - Loker School,3150020,0,57,80,56,76,44,44,0,0,0,0,0,0,0,0,357 +NA,NA,,2020-21,Wayland - Wayland High School,3150505,0,0,0,0,0,0,0,0,0,0,213,196,196,231,0,836 +NA,NA,,2020-21,Wayland - Wayland Middle School,3150305,0,0,0,0,0,0,0,199,203,240,0,0,0,0,0,642 +NA,NA,,2020-21,Webster - Bartlett High School,3160505,0,0,0,0,0,0,0,0,0,0,87,98,111,89,5,390 +NA,NA,,2020-21,Webster - Park Avenue Elementary,3160015,43,91,147,144,140,156,0,0,0,0,0,0,0,0,0,721 +NA,NA,,2020-21,Webster - Webster Middle School,3160315,0,0,0,0,0,0,148,149,129,145,0,0,0,0,0,571 +NA,NA,,2020-21,Wellesley - Ernest F Upham,3170050,0,18,19,27,35,33,26,0,0,0,0,0,0,0,0,158 +NA,NA,,2020-21,Wellesley - Hunnewell,3170025,0,29,38,40,45,35,41,0,0,0,0,0,0,0,0,228 +NA,NA,,2020-21,Wellesley - John D Hardy,3170020,0,32,29,35,43,36,48,0,0,0,0,0,0,0,0,223 +NA,NA,,2020-21,Wellesley - Joseph E Fiske,3170015,0,29,48,49,40,56,42,0,0,0,0,0,0,0,0,264 +NA,NA,,2020-21,Wellesley - Katharine Lee Bates,3170005,0,33,40,55,47,56,53,0,0,0,0,0,0,0,0,284 +NA,NA,,2020-21,Wellesley - Preschool at Wellesley Schools,3170001,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64 +NA,NA,,2020-21,Wellesley - Schofield,3170045,0,46,58,55,65,53,58,0,0,0,0,0,0,0,0,335 +NA,NA,,2020-21,Wellesley - Sprague Elementary School,3170048,0,33,48,55,63,63,54,0,0,0,0,0,0,0,0,316 +NA,NA,,2020-21,Wellesley - Wellesley Middle,3170305,0,0,0,0,0,0,0,337,382,372,0,0,0,0,0,1091 +NA,NA,,2020-21,Wellesley - Wellesley Sr High,3170505,0,0,0,0,0,0,0,0,0,0,364,367,340,392,6,1469 +NA,NA,,2020-21,Wellfleet - Wellfleet Elementary,3180005,0,14,16,23,15,20,15,0,0,0,0,0,0,0,0,103 +NA,NA,,2020-21,West Boylston - Major Edwards Elementary,3220005,26,40,68,60,66,64,62,0,0,0,0,0,0,0,0,386 +NA,NA,,2020-21,West Boylston - West Boylston Junior/Senior High,3220505,0,0,0,0,0,0,0,66,77,72,62,68,87,70,0,502 +NA,NA,,2020-21,West Bridgewater - Howard School,3230305,0,0,0,0,0,104,99,90,0,0,0,0,0,0,0,293 +NA,NA,,2020-21,West Bridgewater - Rose L Macdonald,3230003,0,0,91,112,85,0,0,0,0,0,0,0,0,0,0,288 +NA,NA,,2020-21,West Bridgewater - Spring Street School,3230005,44,113,0,0,0,0,0,0,0,0,0,0,0,0,0,157 +NA,NA,,2020-21,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,0,0,0,0,0,115,112,98,103,105,103,0,636 +NA,NA,,2020-21,West Springfield - Cowing Early Childhood,3320001,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82 +NA,NA,,2020-21,West Springfield - John Ashley,3320005,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,226 +NA,NA,,2020-21,West Springfield - John R Fausey,3320010,0,1,80,79,79,80,98,0,0,0,0,0,0,0,0,417 +NA,NA,,2020-21,West Springfield - Memorial,3320025,0,0,32,37,29,43,43,0,0,0,0,0,0,0,0,184 +NA,NA,,2020-21,West Springfield - Mittineague,3320030,0,0,26,37,30,35,34,0,0,0,0,0,0,0,0,162 +NA,NA,,2020-21,West Springfield - Philip G Coburn,3320007,0,33,93,85,89,102,69,0,0,0,0,0,0,0,0,471 +NA,NA,,2020-21,West Springfield - Tatham,3320040,0,0,47,58,47,47,55,0,0,0,0,0,0,0,0,254 +NA,NA,,2020-21,West Springfield - West Springfield High,3320505,0,0,0,0,0,0,0,0,0,0,315,291,294,288,17,1205 +NA,NA,,2020-21,West Springfield - West Springfield Middle,3320305,0,0,0,0,0,0,0,298,312,302,0,0,0,0,0,912 +NA,NA,,2020-21,Westborough - Annie E Fales,3210010,0,67,78,99,74,0,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2020-21,Westborough - Elsie A Hastings Elementary,3210025,83,95,83,95,97,0,0,0,0,0,0,0,0,0,0,453 +NA,NA,,2020-21,Westborough - J Harding Armstrong,3210005,0,77,103,80,113,0,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2020-21,Westborough - Mill Pond School,3210045,0,0,0,0,0,297,287,295,0,0,0,0,0,0,0,879 +NA,NA,,2020-21,Westborough - Sarah W Gibbons Middle,3210305,0,0,0,0,0,0,0,0,289,331,0,0,0,0,0,620 +NA,NA,,2020-21,Westborough - Westborough High,3210505,0,0,0,0,0,0,0,0,0,0,298,268,290,318,8,1182 +NA,NA,,2020-21,Westfield - Abner Gibbs,3250020,0,36,37,39,45,43,0,0,0,0,0,0,0,0,0,200 +NA,NA,,2020-21,Westfield - Fort Meadow Early Childhood Center,3250003,118,0,0,0,0,0,0,0,0,0,0,0,0,0,0,118 +NA,NA,,2020-21,Westfield - Franklin Ave,3250015,0,35,36,36,40,44,0,0,0,0,0,0,0,0,0,191 +NA,NA,,2020-21,Westfield - Highland,3250025,0,52,71,78,57,61,0,0,0,0,0,0,0,0,0,319 +NA,NA,,2020-21,Westfield - Munger Hill,3250033,0,57,63,75,70,89,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2020-21,Westfield - Paper Mill,3250036,0,58,71,70,54,62,0,0,0,0,0,0,0,0,0,315 +NA,NA,,2020-21,Westfield - Southampton Road,3250040,0,53,57,66,52,60,0,0,0,0,0,0,0,0,0,288 +NA,NA,,2020-21,Westfield - Westfield High,3250505,0,0,0,0,0,0,0,0,0,0,260,257,290,285,14,1106 +NA,NA,,2020-21,Westfield - Westfield Intermediate School,3250075,0,0,0,0,0,0,364,329,0,0,0,0,0,0,0,693 +NA,NA,,2020-21,Westfield - Westfield Middle School,3250310,0,0,0,0,0,0,0,0,384,387,0,0,0,0,0,771 +NA,NA,,2020-21,Westfield - Westfield Technical Academy,3250605,0,0,0,0,0,0,0,0,0,0,149,152,138,134,3,576 +NA,NA,,2020-21,Westford - Abbot Elementary,3260004,0,0,0,0,124,95,138,0,0,0,0,0,0,0,0,357 +NA,NA,,2020-21,Westford - Blanchard Middle,3260310,0,0,0,0,0,0,0,181,169,183,0,0,0,0,0,533 +NA,NA,,2020-21,Westford - Col John Robinson,3260025,8,90,81,100,0,0,0,0,0,0,0,0,0,0,0,279 +NA,NA,,2020-21,Westford - Day Elementary,3260007,0,0,0,0,113,92,125,0,0,0,0,0,0,0,0,330 +NA,NA,,2020-21,Westford - John A. Crisafulli Elementary School,3260045,0,0,0,0,108,120,120,0,0,0,0,0,0,0,0,348 +NA,NA,,2020-21,Westford - Nabnasset,3260015,15,108,101,107,0,0,0,0,0,0,0,0,0,0,0,331 +NA,NA,,2020-21,Westford - Rita E. Miller Elementary School,3260055,22,73,95,100,0,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2020-21,Westford - Stony Brook School,3260330,0,0,0,0,0,0,0,206,198,197,0,0,0,0,0,601 +NA,NA,,2020-21,Westford - Westford Academy,3260505,0,0,0,0,0,0,0,0,0,0,384,424,390,444,3,1645 +NA,NA,,2020-21,Westhampton - Westhampton Elementary School,3270005,7,8,12,11,9,19,17,21,0,0,0,0,0,0,0,104 +NA,NA,,2020-21,Weston - Country,3300010,20,69,79,90,72,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2020-21,Weston - Field Elementary School,3300012,0,0,0,0,0,137,149,0,0,0,0,0,0,0,0,286 +NA,NA,,2020-21,Weston - Weston High,3300505,0,0,0,0,0,0,0,0,0,0,157,148,161,164,0,630 +NA,NA,,2020-21,Weston - Weston Middle,3300305,0,0,0,0,0,0,0,142,147,175,0,0,0,0,0,464 +NA,NA,,2020-21,Weston - Woodland,3300015,7,47,49,47,46,0,0,0,0,0,0,0,0,0,0,196 +NA,NA,,2020-21,Westport - Alice A Macomber,3310015,39,99,100,107,0,0,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2020-21,Westport - Westport Elementary,3310030,0,0,0,0,97,108,123,132,0,0,0,0,0,0,0,460 +NA,NA,,2020-21,Westport - Westport Junior/Senior High School,3310515,0,0,0,0,0,0,0,0,106,124,92,71,73,82,2,550 +NA,NA,,2020-21,Westwood - Deerfield School,3350010,0,36,25,28,29,31,42,0,0,0,0,0,0,0,0,191 +NA,NA,,2020-21,Westwood - Downey,3350012,3,43,43,64,50,45,47,0,0,0,0,0,0,0,0,295 +NA,NA,,2020-21,Westwood - E W Thurston Middle,3350305,0,0,0,0,0,0,0,249,211,223,0,0,0,0,0,683 +NA,NA,,2020-21,Westwood - Martha Jones,3350017,0,49,32,40,53,49,48,0,0,0,0,0,0,0,0,271 +NA,NA,,2020-21,Westwood - Paul Hanlon,3350015,0,30,27,29,43,31,32,0,0,0,0,0,0,0,0,192 +NA,NA,,2020-21,Westwood - Westwood High,3350505,0,0,0,0,0,0,0,0,0,0,243,248,253,246,3,993 +NA,NA,,2020-21,Westwood - Westwood Integrated Preschool,3350050,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38 +NA,NA,,2020-21,Westwood - William E Sheehan,3350025,0,45,40,58,44,48,54,0,0,0,0,0,0,0,0,289 +NA,NA,,2020-21,Weymouth - Abigail Adams Middle School,3360310,0,0,0,0,0,0,0,424,456,0,0,0,0,0,0,880 +NA,NA,,2020-21,Weymouth - Academy Avenue,3360005,0,50,52,52,62,73,52,0,0,0,0,0,0,0,0,341 +NA,NA,,2020-21,Weymouth - Frederick C Murphy,3360050,0,41,49,45,46,42,48,0,0,0,0,0,0,0,0,271 +NA,NA,,2020-21,Weymouth - Johnson Early Childhood Center,3360003,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120 +NA,NA,,2020-21,Weymouth - Lawrence W Pingree,3360065,0,36,48,31,35,37,32,0,0,0,0,0,0,0,0,219 +NA,NA,,2020-21,Weymouth - Ralph Talbot,3360085,0,45,49,40,43,38,51,0,0,0,0,0,0,0,0,266 +NA,NA,,2020-21,Weymouth - Thomas V Nash,3360060,0,31,36,30,34,32,42,0,0,0,0,0,0,0,0,205 +NA,NA,,2020-21,Weymouth - Thomas W. Hamilton Primary School,3360105,0,67,44,53,60,63,70,0,0,0,0,0,0,0,0,357 +NA,NA,,2020-21,Weymouth - Wessagusset,3360110,0,47,44,51,55,51,53,0,0,0,0,0,0,0,0,301 +NA,NA,,2020-21,Weymouth - Weymouth High School,3360505,0,0,0,0,0,0,0,0,0,434,494,428,437,437,17,2247 +NA,NA,,2020-21,Weymouth - William Seach,3360080,0,57,60,75,61,65,60,0,0,0,0,0,0,0,0,378 +NA,NA,,2020-21,Whately - Whately Elementary,3370005,11,17,18,16,13,15,11,15,0,0,0,0,0,0,0,116 +NA,NA,,2020-21,Whitman-Hanson - Hanson Middle School,7800315,0,0,0,0,0,0,104,115,116,119,0,0,0,0,0,454 +NA,NA,,2020-21,Whitman-Hanson - Indian Head,7800035,0,79,96,95,100,100,0,0,0,0,0,0,0,0,0,470 +NA,NA,,2020-21,Whitman-Hanson - John H Duval,7800030,0,62,70,69,71,75,70,0,0,0,0,0,0,0,0,417 +NA,NA,,2020-21,Whitman-Hanson - Louise A Conley,7800010,0,63,82,74,91,90,96,0,0,0,0,0,0,0,0,496 +NA,NA,,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,7800001,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80 +NA,NA,,2020-21,Whitman-Hanson - Whitman Hanson Regional,7800505,0,0,0,0,0,0,0,0,0,0,240,285,283,302,7,1117 +NA,NA,,2020-21,Whitman-Hanson - Whitman Middle,7800310,0,0,0,0,0,0,0,153,193,203,0,0,0,0,0,549 +NA,NA,,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0,0,0,0,0,0,0,0,335,341,305,268,0,1249 +NA,NA,,2020-21,Williamsburg - Anne T. Dunphy School,3400020,4,6,12,23,12,17,24,21,0,0,0,0,0,0,0,119 +NA,NA,,2020-21,Wilmington - Boutwell,3420005,6,106,0,0,0,0,0,0,0,0,0,0,0,0,0,112 +NA,NA,,2020-21,Wilmington - North Intermediate,3420060,0,0,0,0,0,111,135,0,0,0,0,0,0,0,0,246 +NA,NA,,2020-21,Wilmington - Shawsheen Elementary,3420025,0,0,103,105,109,0,0,0,0,0,0,0,0,0,0,317 +NA,NA,,2020-21,Wilmington - West Intermediate,3420080,0,0,0,0,0,105,115,0,0,0,0,0,0,0,0,220 +NA,NA,,2020-21,Wilmington - Wildwood,3420015,10,90,0,0,0,0,0,0,0,0,0,0,0,0,0,100 +NA,NA,,2020-21,Wilmington - Wilmington High,3420505,0,0,0,0,0,0,0,0,0,0,168,192,201,194,0,755 +NA,NA,,2020-21,Wilmington - Wilmington Middle School,3420330,0,0,0,0,0,0,0,198,268,249,0,0,0,0,0,715 +NA,NA,,2020-21,Wilmington - Woburn Street,3420020,0,0,118,107,140,0,0,0,0,0,0,0,0,0,0,365 +NA,NA,,2020-21,Winchendon - Memorial,3430040,0,91,77,90,0,0,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2020-21,Winchendon - Murdock Academy for Success,3430405,0,0,0,0,0,0,0,0,0,0,4,8,7,16,0,35 +NA,NA,,2020-21,Winchendon - Murdock High School,3430515,0,0,0,0,0,0,0,0,0,0,69,58,68,67,0,262 +NA,NA,,2020-21,Winchendon - Murdock Middle School,3430315,0,0,0,0,0,0,0,87,86,101,0,0,0,0,0,274 +NA,NA,,2020-21,Winchendon - Toy Town Elementary,3430050,0,0,0,0,97,109,87,0,0,0,0,0,0,0,0,293 +NA,NA,,2020-21,Winchendon - Winchendon PreSchool Program,3430010,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56 +NA,NA,,2020-21,Winchester - Ambrose Elementary,3440045,0,41,56,62,48,57,73,0,0,0,0,0,0,0,0,337 +NA,NA,,2020-21,Winchester - Lincoln Elementary,3440005,0,47,59,69,61,87,70,0,0,0,0,0,0,0,0,393 +NA,NA,,2020-21,Winchester - Lynch Elementary,3440020,36,56,83,85,91,82,76,0,0,0,0,0,0,0,0,509 +NA,NA,,2020-21,Winchester - McCall Middle,3440305,0,0,0,0,0,0,0,348,388,348,0,0,0,0,0,1084 +NA,NA,,2020-21,Winchester - Muraco Elementary,3440040,0,37,78,56,60,70,66,0,0,0,0,0,0,0,0,367 +NA,NA,,2020-21,Winchester - Vinson-Owen Elementary,3440025,14,55,70,63,65,59,77,0,0,0,0,0,0,0,0,403 +NA,NA,,2020-21,Winchester - Winchester High School,3440505,0,0,0,0,0,0,0,0,0,0,344,348,337,374,0,1403 +NA,NA,,2020-21,Winthrop - Arthur T. Cummings Elementary School,3460020,0,0,0,0,124,149,130,0,0,0,0,0,0,0,0,403 +NA,NA,,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,10,124,161,149,0,0,0,0,0,0,0,0,0,0,0,444 +NA,NA,,2020-21,Winthrop - Winthrop High School,3460505,5,0,0,0,0,0,0,0,0,0,139,132,135,146,5,562 +NA,NA,,2020-21,Winthrop - Winthrop Middle School,3460305,0,0,0,0,0,0,0,137,162,157,0,0,0,0,0,456 +NA,NA,,2020-21,Woburn - Clyde Reeves,3470040,58,47,51,69,46,55,46,0,0,0,0,0,0,0,0,372 +NA,NA,,2020-21,Woburn - Daniel L Joyce Middle School,3470410,0,0,0,0,0,0,0,146,183,195,0,0,0,0,0,524 +NA,NA,,2020-21,Woburn - Goodyear Elementary School,3470005,0,34,50,53,39,50,53,0,0,0,0,0,0,0,0,279 +NA,NA,,2020-21,Woburn - Hurld-Wyman Elementary School,3470020,0,57,66,59,60,54,71,0,0,0,0,0,0,0,0,367 +NA,NA,,2020-21,Woburn - John F Kennedy Middle School,3470405,0,0,0,0,0,0,0,191,144,175,0,0,0,0,0,510 +NA,NA,,2020-21,Woburn - Linscott-Rumford,3470025,0,36,25,36,39,37,24,0,0,0,0,0,0,0,0,197 +NA,NA,,2020-21,Woburn - Malcolm White,3470055,0,36,53,44,55,48,47,0,0,0,0,0,0,0,0,283 +NA,NA,,2020-21,Woburn - Mary D Altavesta,3470065,0,40,40,41,36,47,35,0,0,0,0,0,0,0,0,239 +NA,NA,,2020-21,Woburn - Shamrock,3470043,46,35,50,34,38,30,39,0,0,0,0,0,0,0,0,272 +NA,NA,,2020-21,Woburn - Woburn High,3470505,0,0,0,0,0,0,0,0,0,0,280,288,343,313,12,1236 +NA,NA,,2020-21,Worcester - Belmont Street Community,3480020,42,64,84,90,81,61,81,73,0,0,0,0,0,0,0,576 +NA,NA,,2020-21,Worcester - Burncoat Middle School,3480405,0,0,0,0,0,0,0,0,337,351,0,0,0,0,0,688 +NA,NA,,2020-21,Worcester - Burncoat Senior High,3480503,0,0,0,0,0,0,0,0,0,0,320,320,261,241,11,1153 +NA,NA,,2020-21,Worcester - Burncoat Street,3480035,0,31,27,31,43,48,44,36,0,0,0,0,0,0,0,260 +NA,NA,,2020-21,Worcester - Canterbury,3480045,17,33,32,38,33,44,53,50,0,0,0,0,0,0,0,300 +NA,NA,,2020-21,Worcester - Chandler Elementary Community,3480050,0,41,64,67,52,74,73,82,0,0,0,0,0,0,0,453 +NA,NA,,2020-21,Worcester - Chandler Magnet,3480052,28,54,64,66,64,55,67,77,0,0,0,0,0,0,0,475 +NA,NA,,2020-21,Worcester - City View,3480053,13,37,61,57,78,71,76,69,0,0,0,0,0,0,0,462 +NA,NA,,2020-21,Worcester - Claremont Academy,3480350,0,0,0,0,0,0,0,0,98,105,85,86,91,80,1,546 +NA,NA,,2020-21,Worcester - Clark St Community,3480055,24,29,28,28,36,34,33,27,0,0,0,0,0,0,0,239 +NA,NA,,2020-21,Worcester - Columbus Park,3480060,13,44,57,53,63,54,40,59,0,0,0,0,0,0,0,383 +NA,NA,,2020-21,Worcester - Doherty Memorial High,3480512,0,0,0,0,0,0,0,0,0,0,335,348,357,388,11,1439 +NA,NA,,2020-21,Worcester - Elm Park Community,3480095,0,38,58,64,62,58,63,58,0,0,0,0,0,0,0,401 +NA,NA,,2020-21,Worcester - Flagg Street,3480090,0,43,53,52,41,45,63,48,0,0,0,0,0,0,0,345 +NA,NA,,2020-21,Worcester - Forest Grove Middle,3480415,0,0,0,0,0,0,0,0,458,447,0,0,0,0,0,905 +NA,NA,,2020-21,Worcester - Francis J McGrath Elementary,3480177,0,33,27,34,34,29,33,34,0,0,0,0,0,0,0,224 +NA,NA,,2020-21,Worcester - Gates Lane,3480110,42,58,82,75,72,69,64,54,0,0,0,0,0,0,0,516 +NA,NA,,2020-21,Worcester - Goddard School/Science Technical,3480100,20,47,46,42,48,52,56,45,0,0,0,0,0,0,0,356 +NA,NA,,2020-21,Worcester - Grafton Street,3480115,0,50,65,50,44,50,53,65,0,0,0,0,0,0,0,377 +NA,NA,,2020-21,Worcester - Head Start,3480002,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319 +NA,NA,,2020-21,Worcester - Heard Street,3480136,0,28,29,37,45,35,39,35,0,0,0,0,0,0,0,248 +NA,NA,,2020-21,Worcester - Jacob Hiatt Magnet,3480140,34,39,63,56,53,50,44,44,0,0,0,0,0,0,0,383 +NA,NA,,2020-21,Worcester - Lake View,3480145,0,40,52,45,48,47,48,39,0,0,0,0,0,0,0,319 +NA,NA,,2020-21,Worcester - Lincoln Street,3480160,4,43,40,45,32,23,38,24,0,0,0,0,0,0,0,249 +NA,NA,,2020-21,Worcester - May Street,3480175,0,30,49,34,38,48,38,46,0,0,0,0,0,0,0,283 +NA,NA,,2020-21,Worcester - Midland Street,3480185,0,26,33,31,31,22,25,42,0,0,0,0,0,0,0,210 +NA,NA,,2020-21,Worcester - Nelson Place,3480200,33,63,75,86,81,66,48,80,0,0,0,0,0,0,0,532 +NA,NA,,2020-21,Worcester - Norrback Avenue,3480202,36,50,75,85,73,64,65,70,0,0,0,0,0,0,0,518 +NA,NA,,2020-21,Worcester - North High,3480515,0,0,0,0,0,0,0,0,0,0,351,326,316,285,21,1299 +NA,NA,,2020-21,Worcester - Quinsigamond,3480210,19,93,111,92,103,96,87,95,0,0,0,0,0,0,0,696 +NA,NA,,2020-21,Worcester - Rice Square,3480215,0,68,92,65,69,60,61,50,0,0,0,0,0,0,0,465 +NA,NA,,2020-21,Worcester - Roosevelt,3480220,53,81,88,92,72,85,70,85,0,0,0,0,0,0,0,626 +NA,NA,,2020-21,Worcester - South High Community,3480520,0,0,0,0,0,0,0,0,0,0,436,349,331,294,15,1425 +NA,NA,,2020-21,Worcester - Sullivan Middle,3480423,0,0,0,0,0,0,0,50,444,437,0,0,0,0,0,931 +NA,NA,,2020-21,Worcester - Tatnuck,3480230,18,61,63,63,44,54,50,44,0,0,0,0,0,0,0,397 +NA,NA,,2020-21,Worcester - Thorndyke Road,3480235,0,46,44,48,53,58,56,41,0,0,0,0,0,0,0,346 +NA,NA,,2020-21,Worcester - Union Hill School,3480240,0,50,52,55,58,64,50,60,0,0,0,0,0,0,0,389 +NA,NA,,2020-21,Worcester - University Pk Campus School,3480285,0,0,0,0,0,0,0,0,40,41,39,39,36,38,0,233 +NA,NA,,2020-21,Worcester - Vernon Hill School,3480280,23,55,70,82,61,63,51,62,0,0,0,0,0,0,0,467 +NA,NA,,2020-21,Worcester - Wawecus Road School,3480026,0,8,23,13,15,20,24,24,0,0,0,0,0,0,0,127 +NA,NA,,2020-21,Worcester - West Tatnuck,3480260,39,38,50,43,58,36,34,39,0,0,0,0,0,0,0,337 +NA,NA,,2020-21,Worcester - Woodland Academy,3480030,0,57,70,74,67,82,68,86,0,0,0,0,0,0,0,504 +NA,NA,,2020-21,Worcester - Worcester Arts Magnet School,3480225,17,51,49,58,48,48,56,41,0,0,0,0,0,0,0,368 +NA,NA,,2020-21,Worcester - Worcester East Middle,3480420,0,0,0,0,0,0,0,0,384,352,0,0,0,0,0,736 +NA,NA,,2020-21,Worcester - Worcester Technical High,3480605,0,0,0,0,0,0,0,0,0,0,369,381,374,357,0,1481 +NA,NA,,2020-21,Worthington - R. H. Conwell,3490010,2,10,7,7,14,9,9,5,0,0,0,0,0,0,0,63 +NA,NA,,2020-21,Wrentham - Charles E Roderick,3500010,0,0,0,0,0,122,118,133,0,0,0,0,0,0,0,373 +NA,NA,,2020-21,Wrentham - Delaney,3500003,48,102,103,103,133,0,0,0,0,0,0,0,0,0,0,489 +NA,NA,,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,0,114,120,119,120,116,116,120,115,106,102,104,89,84,0,1425 +NA,NA,,2019-20,Abington - Abington Early Education Program,10001,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88 +NA,NA,,2019-20,Abington - Abington High,10505,0,0,0,0,0,0,0,0,0,0,160,156,154,117,6,593 +NA,NA,,2019-20,Abington - Abington Middle School,10405,0,0,0,0,0,0,167,172,164,187,0,0,0,0,0,690 +NA,NA,,2019-20,Abington - Beaver Brook Elementary,10020,0,169,157,145,0,0,0,0,0,0,0,0,0,0,0,471 +NA,NA,,2019-20,Abington - Woodsdale Elementary School,10015,0,0,0,0,165,136,0,0,0,0,0,0,0,0,0,301 +NA,NA,,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,0,0,0,0,0,0,66,75,74,75,70,71,56,40,0,527 +NA,NA,,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,0,0,0,0,0,0,0,0,0,470,463,427,449,5,1814 +NA,NA,,2019-20,Acton-Boxborough - Blanchard Memorial School,6000005,0,52,79,87,70,67,65,52,0,0,0,0,0,0,0,472 +NA,NA,,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,56,42,43,45,68,69,70,0,0,0,0,0,0,0,393 +NA,NA,,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,102,0,0,0,0,0,0,0,0,0,0,0,0,0,0,102 +NA,NA,,2019-20,Acton-Boxborough - Luther Conant School,6000030,0,54,60,65,64,48,46,72,0,0,0,0,0,0,0,409 +NA,NA,,2019-20,Acton-Boxborough - McCarthy-Towne School,6000015,0,55,62,81,67,69,90,91,0,0,0,0,0,0,0,515 +NA,NA,,2019-20,Acton-Boxborough - Merriam School,6000010,0,53,61,63,66,70,71,91,0,0,0,0,0,0,0,475 +NA,NA,,2019-20,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,36,42,42,65,70,71,45,0,0,0,0,0,0,0,371 +NA,NA,,2019-20,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,0,0,0,0,0,0,0,412,448,0,0,0,0,0,860 +NA,NA,,2019-20,Acushnet - Acushnet Elementary School,30025,46,89,127,109,85,111,0,0,0,0,0,0,0,0,0,567 +NA,NA,,2019-20,Acushnet - Albert F Ford Middle School,30305,0,0,0,0,0,0,110,101,112,120,0,0,0,0,0,443 +NA,NA,,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,0,0,0,0,0,0,104,125,146,157,154,142,135,0,963 +NA,NA,,2019-20,Agawam - Agawam Early Childhood Center,50003,160,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160 +NA,NA,,2019-20,Agawam - Agawam High,50505,0,0,0,0,0,0,0,0,0,0,297,234,278,265,0,1074 +NA,NA,,2019-20,Agawam - Agawam Junior High,50405,0,0,0,0,0,0,0,0,270,287,0,0,0,0,0,557 +NA,NA,,2019-20,Agawam - Benjamin J Phelps,50020,0,67,63,69,83,60,0,0,0,0,0,0,0,0,0,342 +NA,NA,,2019-20,Agawam - Clifford M Granger,50010,0,58,41,38,70,49,0,0,0,0,0,0,0,0,0,256 +NA,NA,,2019-20,Agawam - James Clark School,50030,0,57,61,59,58,66,0,0,0,0,0,0,0,0,0,301 +NA,NA,,2019-20,Agawam - Roberta G. Doering School,50303,0,0,0,0,0,0,274,312,0,3,0,0,0,0,0,589 +NA,NA,,2019-20,Agawam - Robinson Park,50025,0,81,85,68,77,80,0,0,0,0,0,0,0,0,0,391 +NA,NA,,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,0,103,102,105,53,51,51,96,49,43,0,0,0,0,0,653 +NA,NA,,2019-20,Amesbury - Amesbury Elementary,70005,33,63,51,71,62,66,0,0,0,0,0,0,0,0,0,346 +NA,NA,,2019-20,Amesbury - Amesbury High,70505,0,0,0,0,0,0,0,0,0,0,118,124,139,142,6,529 +NA,NA,,2019-20,Amesbury - Amesbury Innovation High School,70515,0,0,0,0,0,0,0,0,0,0,8,13,13,19,0,53 +NA,NA,,2019-20,Amesbury - Amesbury Middle,70013,0,0,0,0,0,0,181,162,156,169,0,0,0,0,0,668 +NA,NA,,2019-20,Amesbury - Charles C Cashman Elementary,70010,26,71,64,76,82,97,0,0,0,0,0,0,0,0,0,416 +NA,NA,,2019-20,Amherst - Crocker Farm Elementary,80009,53,32,55,44,45,56,54,61,0,0,0,0,0,0,0,400 +NA,NA,,2019-20,Amherst - Fort River Elementary,80020,0,49,41,31,55,43,42,50,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Amherst - Wildwood Elementary,80050,0,47,52,64,50,62,50,57,0,0,0,0,0,0,0,382 +NA,NA,,2019-20,Amherst-Pelham - Amherst Regional High,6050505,0,0,0,0,0,0,0,0,0,0,205,239,236,231,9,920 +NA,NA,,2019-20,Amherst-Pelham - Amherst Regional Middle School,6050405,0,0,0,0,0,0,0,0,214,212,0,0,0,0,0,426 +NA,NA,,2019-20,Andover - Andover High,90505,0,0,0,0,0,0,0,0,0,0,455,427,455,424,34,1795 +NA,NA,,2019-20,Andover - Andover West Middle,90310,0,0,0,0,0,0,0,184,176,172,0,0,0,0,0,532 +NA,NA,,2019-20,Andover - Bancroft Elementary,90003,0,81,93,97,90,102,103,0,0,0,0,0,0,0,0,566 +NA,NA,,2019-20,Andover - Doherty Middle,90305,0,0,0,0,0,0,0,158,179,181,0,0,0,0,0,518 +NA,NA,,2019-20,Andover - Henry C Sanborn Elementary,90010,0,41,54,54,61,74,74,0,0,0,0,0,0,0,0,358 +NA,NA,,2019-20,Andover - High Plain Elementary,90004,0,69,106,84,85,87,96,0,0,0,0,0,0,0,0,527 +NA,NA,,2019-20,Andover - Shawsheen School,90005,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,81 +NA,NA,,2019-20,Andover - South Elementary,90020,0,66,88,78,81,93,73,0,0,0,0,0,0,0,0,479 +NA,NA,,2019-20,Andover - West Elementary,90025,0,83,102,86,105,102,116,0,0,0,0,0,0,0,0,594 +NA,NA,,2019-20,Andover - Wood Hill Middle School,90350,0,0,0,0,0,0,0,125,133,148,0,0,0,0,0,406 +NA,NA,,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,0,0,0,0,0,0,0,118,120,98,93,66,30,0,0,525 +NA,NA,,2019-20,Arlington - Arlington High,100505,0,0,0,0,0,0,0,0,0,0,368,364,342,337,0,1411 +NA,NA,,2019-20,Arlington - Brackett,100010,0,87,106,82,93,67,100,0,0,0,0,0,0,0,0,535 +NA,NA,,2019-20,Arlington - Cyrus E Dallin,100025,0,70,87,75,87,72,81,0,0,0,0,0,0,0,0,472 +NA,NA,,2019-20,Arlington - Gibbs School,100305,0,0,0,0,0,0,0,486,0,0,0,0,0,0,0,486 +NA,NA,,2019-20,Arlington - Hardy,100030,0,68,75,79,78,75,69,0,0,0,0,0,0,0,0,444 +NA,NA,,2019-20,Arlington - John A Bishop,100005,0,71,93,67,70,70,69,0,0,0,0,0,0,0,0,440 +NA,NA,,2019-20,Arlington - M Norcross Stratton,100055,0,84,84,77,72,71,62,0,0,0,0,0,0,0,0,450 +NA,NA,,2019-20,Arlington - Menotomy Preschool,100038,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89 +NA,NA,,2019-20,Arlington - Ottoson Middle,100410,0,0,0,0,0,0,0,0,455,444,0,0,0,0,0,899 +NA,NA,,2019-20,Arlington - Peirce,100045,0,57,57,65,40,42,46,0,0,0,0,0,0,0,0,307 +NA,NA,,2019-20,Arlington - Thompson,100050,0,87,92,72,93,90,80,0,0,0,0,0,0,0,0,514 +NA,NA,,2019-20,Ashburnham-Westminster - Briggs Elementary,6100025,59,70,82,77,76,70,95,0,0,0,0,0,0,0,0,529 +NA,NA,,2019-20,Ashburnham-Westminster - Meetinghouse School,6100010,0,86,113,0,0,0,0,0,0,0,0,0,0,0,0,199 +NA,NA,,2019-20,Ashburnham-Westminster - Oakmont Regional High School,6100505,0,0,0,0,0,0,0,0,0,0,171,140,172,168,16,667 +NA,NA,,2019-20,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0,0,0,0,0,195,190,197,0,0,0,0,0,582 +NA,NA,,2019-20,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,0,79,95,104,99,0,0,0,0,0,0,0,0,377 +NA,NA,,2019-20,Ashland - Ashland High,140505,0,0,0,0,0,0,0,0,0,0,180,218,212,215,0,825 +NA,NA,,2019-20,Ashland - Ashland Middle,140405,0,0,0,0,0,0,0,229,219,210,0,0,0,0,0,658 +NA,NA,,2019-20,Ashland - David Mindess,140015,0,0,0,0,229,203,227,0,0,0,0,0,0,0,0,659 +NA,NA,,2019-20,Ashland - Henry E Warren Elementary,140010,0,188,222,204,0,0,0,0,0,0,0,0,0,0,0,614 +NA,NA,,2019-20,Ashland - William Pittaway Elementary,140005,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93 +NA,NA,,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0,0,0,0,0,0,0,0,0,0,300,298,277,266,0,1141 +NA,NA,,2019-20,Athol-Royalston - Athol Community Elementary School,6150020,68,104,108,121,107,101,0,0,0,0,0,0,0,0,0,609 +NA,NA,,2019-20,Athol-Royalston - Athol High,6150505,0,0,0,0,0,0,0,0,0,0,75,79,87,80,7,328 +NA,NA,,2019-20,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,0,0,0,96,108,113,119,0,0,0,0,0,436 +NA,NA,,2019-20,Athol-Royalston - Royalston Community School,6150050,0,20,24,22,19,24,20,18,0,0,0,0,0,0,0,147 +NA,NA,,2019-20,Atlantis Charter (District) - Atlantis Charter School,4910550,0,110,110,110,110,110,110,110,110,110,84,74,94,60,0,1302 +NA,NA,,2019-20,Attleboro - A. Irvin Studley Elementary School,160001,0,77,70,71,73,88,0,0,0,0,0,0,0,0,0,379 +NA,NA,,2019-20,Attleboro - Attleboro Community Academy,160515,0,0,0,0,0,0,0,0,0,0,1,3,20,29,0,53 +NA,NA,,2019-20,Attleboro - Attleboro High,160505,0,0,0,0,0,0,0,0,0,0,454,465,439,396,16,1770 +NA,NA,,2019-20,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,0,0,0,167,141,162,151,0,0,0,0,0,621 +NA,NA,,2019-20,Attleboro - Early Learning Center,160008,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184 +NA,NA,,2019-20,Attleboro - Hill-Roberts Elementary School,160045,0,95,88,78,96,99,0,0,0,0,0,0,0,0,0,456 +NA,NA,,2019-20,Attleboro - Hyman Fine Elementary School,160040,0,93,87,92,89,100,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2019-20,Attleboro - Peter Thacher Elementary School,160050,0,93,86,98,90,83,0,0,0,0,0,0,0,0,0,450 +NA,NA,,2019-20,Attleboro - Robert J. Coelho Middle School,160305,0,0,0,0,0,0,141,162,175,177,0,0,0,0,0,655 +NA,NA,,2019-20,Attleboro - Thomas Willett Elementary School,160035,0,75,77,68,76,94,0,0,0,0,0,0,0,0,0,390 +NA,NA,,2019-20,Attleboro - Wamsutta Middle School,160320,0,0,0,0,0,0,129,157,132,145,0,0,0,0,0,563 +NA,NA,,2019-20,Auburn - Auburn Middle,170305,0,0,0,0,0,0,0,216,202,209,0,0,0,0,0,627 +NA,NA,,2019-20,Auburn - Auburn Senior High,170505,59,0,0,0,0,0,0,0,0,0,196,179,175,183,2,794 +NA,NA,,2019-20,Auburn - Bryn Mawr,170010,0,100,90,96,0,0,0,0,0,0,0,0,0,0,0,286 +NA,NA,,2019-20,Auburn - Pakachoag School,170025,48,84,101,75,0,0,0,0,0,0,0,0,0,0,0,308 +NA,NA,,2019-20,Auburn - Swanson Road Intermediate School,170030,0,0,0,0,210,203,208,0,0,0,0,0,0,0,0,621 +NA,NA,,2019-20,Avon - Avon Middle High School,180510,0,0,0,0,0,0,0,0,62,62,50,47,40,47,1,309 +NA,NA,,2019-20,Avon - Ralph D Butler,180010,22,48,53,57,59,64,55,58,0,0,0,0,0,0,0,416 +NA,NA,,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,0,0,0,0,0,0,0,0,0,0,102,82,88,102,0,374 +NA,NA,,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,0,0,0,0,0,0,0,140,141,126,0,0,0,0,0,407 +NA,NA,,2019-20,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,64,48,46,66,57,62,0,0,0,0,0,0,0,0,343 +NA,NA,,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,6160002,62,86,87,86,74,81,82,0,0,0,0,0,0,0,0,558 +NA,NA,,2019-20,Barnstable - Barnstable Community Innovation School,200012,0,66,77,84,65,0,0,0,0,0,0,0,0,0,0,292 +NA,NA,,2019-20,Barnstable - Barnstable High,200505,0,0,0,0,0,0,0,0,0,406,332,338,367,351,13,1807 +NA,NA,,2019-20,Barnstable - Barnstable Intermediate School,200315,0,0,0,0,0,0,0,375,381,0,0,0,0,0,0,756 +NA,NA,,2019-20,Barnstable - Barnstable United Elementary School,200050,0,0,0,0,0,394,410,0,0,0,0,0,0,0,0,804 +NA,NA,,2019-20,Barnstable - Centerville Elementary,200010,0,55,71,60,57,0,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2019-20,Barnstable - Enoch Cobb Early Learning Center,200001,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161 +NA,NA,,2019-20,Barnstable - Hyannis West Elementary,200025,0,72,72,84,81,0,0,0,0,0,0,0,0,0,0,309 +NA,NA,,2019-20,Barnstable - West Barnstable Elementary,200005,0,58,62,62,63,0,0,0,0,0,0,0,0,0,0,245 +NA,NA,,2019-20,Barnstable - West Villages Elementary School,200045,0,92,105,115,112,0,0,0,0,0,0,0,0,0,0,424 +NA,NA,,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,0,0,0,0,0,0,0,79,75,77,65,53,60,54,0,463 +NA,NA,,2019-20,Bedford - Bedford High,230505,0,0,0,0,0,0,0,0,0,0,228,236,183,194,0,841 +NA,NA,,2019-20,Bedford - John Glenn Middle,230305,0,0,0,0,0,0,0,202,210,181,0,0,0,0,0,593 +NA,NA,,2019-20,Bedford - Lt Elezer Davis,230010,45,183,198,217,0,0,0,0,0,0,0,0,0,0,0,643 +NA,NA,,2019-20,Bedford - Lt Job Lane School,230012,0,0,0,0,197,202,213,0,0,0,0,0,0,0,0,612 +NA,NA,,2019-20,Belchertown - Belchertown High,240505,0,0,0,0,0,0,0,0,0,0,192,160,173,169,7,701 +NA,NA,,2019-20,Belchertown - Chestnut Hill Community School,240006,0,0,0,0,0,163,166,172,0,0,0,0,0,0,0,501 +NA,NA,,2019-20,Belchertown - Cold Spring,240005,43,146,0,0,0,0,0,0,0,0,0,0,0,0,0,189 +NA,NA,,2019-20,Belchertown - Jabish Middle School,240025,0,0,0,0,0,0,0,0,184,188,0,0,0,0,0,372 +NA,NA,,2019-20,Belchertown - Swift River Elementary,240018,0,0,151,168,158,0,0,0,0,0,0,0,0,0,0,477 +NA,NA,,2019-20,Bellingham - Bellingham Early Childhood Center,250003,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98 +NA,NA,,2019-20,Bellingham - Bellingham High School,250505,0,0,0,0,0,0,0,0,0,182,126,141,151,146,0,746 +NA,NA,,2019-20,Bellingham - Bellingham Memorial School,250315,0,0,0,0,0,141,164,185,165,0,0,0,0,0,0,655 +NA,NA,,2019-20,Bellingham - Joseph F DiPietro Elementary School,250020,0,77,87,84,85,0,0,0,0,0,0,0,0,0,0,333 +NA,NA,,2019-20,Bellingham - Keough Memorial Academy,250510,0,0,0,0,0,0,0,0,0,2,8,6,7,9,0,32 +NA,NA,,2019-20,Bellingham - Stall Brook,250025,0,63,61,69,81,0,0,0,0,0,0,0,0,0,0,274 +NA,NA,,2019-20,Belmont - Belmont High,260505,0,0,0,0,0,0,0,0,0,0,318,341,328,331,0,1318 +NA,NA,,2019-20,Belmont - Daniel Butler,260015,0,66,69,72,86,72,0,0,0,0,0,0,0,0,0,365 +NA,NA,,2019-20,Belmont - Mary Lee Burbank,260010,0,85,86,88,89,87,0,0,0,0,0,0,0,0,0,435 +NA,NA,,2019-20,Belmont - Roger E Wellington,260035,66,110,108,112,119,113,0,0,0,0,0,0,0,0,0,628 +NA,NA,,2019-20,Belmont - Winn Brook,260005,0,88,90,96,96,95,0,0,0,0,0,0,0,0,0,465 +NA,NA,,2019-20,Belmont - Winthrop L Chenery Middle,260305,0,0,0,0,0,0,387,385,359,358,0,0,0,0,0,1489 +NA,NA,,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,23,46,45,51,48,45,40,38,0,0,0,0,0,0,0,336 +NA,NA,,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,92,92,92,92,92,92,52,52,52,0,0,0,0,0,708 +NA,NA,,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,0,52,57,58,55,55,55,0,0,0,0,0,0,0,0,332 +NA,NA,,2019-20,Berkley - Berkley Community School,270010,61,96,85,80,102,98,0,0,0,0,0,0,0,0,0,522 +NA,NA,,2019-20,Berkley - Berkley Middle School,270305,0,0,0,0,0,0,88,114,97,94,0,0,0,0,0,393 +NA,NA,,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,0,0,0,0,0,72,64,68,52,53,36,27,0,372 +NA,NA,,2019-20,Berkshire Hills - Monument Mt Regional High,6180505,0,0,0,0,0,0,0,0,0,0,119,142,128,112,7,508 +NA,NA,,2019-20,Berkshire Hills - Monument Valley Regional Middle School,6180310,0,0,0,0,0,0,68,79,97,84,0,0,0,0,0,328 +NA,NA,,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,22,72,67,58,55,75,0,0,0,0,0,0,0,0,0,349 +NA,NA,,2019-20,Berlin-Boylston - Berlin Memorial School,6200005,16,29,24,30,30,31,23,0,0,0,0,0,0,0,0,183 +NA,NA,,2019-20,Berlin-Boylston - Boylston Elementary School,6200010,32,53,38,45,38,49,43,0,0,0,0,0,0,0,0,298 +NA,NA,,2019-20,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,0,0,0,0,89,81,97,68,72,82,76,0,565 +NA,NA,,2019-20,Beverly - Ayers/Ryal Side School,300055,0,87,81,87,74,91,0,0,0,0,0,0,0,0,0,420 +NA,NA,,2019-20,Beverly - Beverly High,300505,0,0,0,0,0,0,0,0,0,0,347,360,309,287,9,1312 +NA,NA,,2019-20,Beverly - Beverly Middle School,300305,0,0,0,0,0,0,367,392,363,320,0,0,0,0,0,1442 +NA,NA,,2019-20,Beverly - Centerville Elementary,300010,0,67,54,56,72,65,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2019-20,Beverly - Cove Elementary,300015,0,92,95,80,83,79,0,0,0,0,0,0,0,0,0,429 +NA,NA,,2019-20,Beverly - Hannah Elementary,300033,0,87,63,68,59,56,0,0,0,0,0,0,0,0,0,333 +NA,NA,,2019-20,Beverly - McKeown School,300002,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108 +NA,NA,,2019-20,Beverly - North Beverly Elementary,300040,0,65,78,69,68,62,0,0,0,0,0,0,0,0,0,342 +NA,NA,,2019-20,Billerica - Billerica Memorial High School,310505,185,0,0,0,0,0,0,0,0,402,293,303,246,333,7,1769 +NA,NA,,2019-20,Billerica - Frederick J Dutile,310007,0,50,58,47,40,48,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2019-20,Billerica - Hajjar Elementary,310026,0,70,67,60,76,75,0,0,0,0,0,0,0,0,0,348 +NA,NA,,2019-20,Billerica - John F Kennedy,310012,0,67,63,62,47,81,0,0,0,0,0,0,0,0,0,320 +NA,NA,,2019-20,Billerica - Locke Middle,310310,0,0,0,0,0,0,179,172,188,0,0,0,0,0,0,539 +NA,NA,,2019-20,Billerica - Marshall Middle School,310305,0,0,0,0,0,0,183,220,206,0,0,0,0,0,0,609 +NA,NA,,2019-20,Billerica - Parker,310015,0,93,78,84,71,99,0,0,0,0,0,0,0,0,0,425 +NA,NA,,2019-20,Billerica - Thomas Ditson,310005,0,93,110,109,117,115,0,0,0,0,0,0,0,0,0,544 +NA,NA,,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0,0,0,0,0,0,0,0,313,307,302,302,0,1224 +NA,NA,,2019-20,Blackstone-Millville - A F Maloney,6220015,0,0,0,0,83,123,83,0,0,0,0,0,0,0,0,289 +NA,NA,,2019-20,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,0,0,0,0,0,0,0,0,103,116,100,106,2,427 +NA,NA,,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,0,0,0,0,0,136,148,125,0,0,0,0,0,409 +NA,NA,,2019-20,Blackstone-Millville - John F Kennedy Elementary,6220008,0,91,89,86,0,0,0,0,0,0,0,0,0,0,0,266 +NA,NA,,2019-20,Blackstone-Millville - Millville Elementary,6220010,60,20,28,36,32,40,38,0,0,0,0,0,0,0,0,254 +NA,NA,,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,0,0,0,0,0,0,0,0,0,0,238,229,198,191,0,856 +NA,NA,,2019-20,Boston - Another Course To College,350541,0,0,0,0,0,0,0,0,0,0,62,58,57,55,0,232 +NA,NA,,2019-20,Boston - Baldwin Early Learning Center,350003,80,40,34,0,0,0,0,0,0,0,0,0,0,0,0,154 +NA,NA,,2019-20,Boston - Beethoven,350021,44,76,92,92,0,0,0,0,0,0,0,0,0,0,0,304 +NA,NA,,2019-20,Boston - Blackstone,350390,83,71,79,75,89,81,74,0,0,0,0,0,0,0,0,552 +NA,NA,,2019-20,Boston - Boston Adult Academy,350548,0,0,0,0,0,0,0,0,0,0,0,0,96,85,2,183 +NA,NA,,2019-20,Boston - Boston Arts Academy,350546,0,0,0,0,0,0,0,0,0,0,132,133,100,112,0,477 +NA,NA,,2019-20,Boston - Boston Collaborative High School,350755,0,0,0,0,0,0,0,0,0,0,4,15,40,115,1,175 +NA,NA,,2019-20,Boston - Boston Community Leadership Academy,350558,0,0,0,0,0,0,0,0,0,0,123,135,111,112,25,506 +NA,NA,,2019-20,Boston - Boston International High School,350507,0,0,0,0,0,0,0,0,0,0,155,101,93,80,0,429 +NA,NA,,2019-20,Boston - Boston Latin,350560,0,0,0,0,0,0,0,0,417,404,452,384,421,393,0,2471 +NA,NA,,2019-20,Boston - Boston Latin Academy,350545,0,0,0,0,0,0,0,0,286,269,343,283,336,256,0,1773 +NA,NA,,2019-20,Boston - Boston Teachers Union School,350012,31,26,23,22,24,22,25,48,30,23,0,0,0,0,0,274 +NA,NA,,2019-20,Boston - Brighton High,350505,0,0,0,0,0,0,0,0,0,0,114,128,133,144,16,535 +NA,NA,,2019-20,Boston - Carter School,350036,0,0,0,0,0,0,0,0,1,3,2,4,2,3,13,28 +NA,NA,,2019-20,Boston - Charles H Taylor,350054,20,53,66,61,68,85,75,0,0,0,0,0,0,0,0,428 +NA,NA,,2019-20,Boston - Charles Sumner,350052,63,68,82,82,81,80,76,0,0,0,0,0,0,0,0,532 +NA,NA,,2019-20,Boston - Charlestown High,350515,0,0,0,0,0,0,0,0,0,0,242,199,161,202,52,856 +NA,NA,,2019-20,Boston - Clarence R Edwards Middle,350430,0,0,0,0,0,0,0,140,129,104,0,0,0,0,0,373 +NA,NA,,2019-20,Boston - Community Academy,350518,0,0,0,0,0,0,0,0,0,0,5,17,19,15,1,57 +NA,NA,,2019-20,Boston - Community Academy of Science and Health,350581,0,0,0,0,0,0,0,0,0,0,84,75,125,70,6,360 +NA,NA,,2019-20,Boston - Condon K-8,350146,48,60,72,81,86,86,106,104,83,71,0,0,0,0,0,797 +NA,NA,,2019-20,Boston - Curley K-8 School,350020,105,88,85,90,99,96,99,117,91,89,0,0,0,0,0,959 +NA,NA,,2019-20,Boston - Curtis Guild,350062,26,36,37,38,35,40,42,0,0,0,0,0,0,0,0,254 +NA,NA,,2019-20,Boston - Dante Alighieri Montessori School,350066,26,15,15,14,11,8,11,3,0,0,0,0,0,0,0,103 +NA,NA,,2019-20,Boston - David A Ellis,350072,50,67,53,60,69,60,54,0,0,0,0,0,0,0,0,413 +NA,NA,,2019-20,Boston - Dearborn,350074,0,0,0,0,0,0,0,101,84,65,105,81,47,35,0,518 +NA,NA,,2019-20,Boston - Dennis C Haley,350077,26,39,37,42,48,49,42,46,41,23,0,0,0,0,0,393 +NA,NA,,2019-20,Boston - Donald Mckay,350080,21,60,66,91,84,88,91,103,105,101,0,0,0,0,0,810 +NA,NA,,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,51,34,35,37,34,0,0,0,0,0,0,0,0,0,0,191 +NA,NA,,2019-20,Boston - Dr. William Henderson Lower,350266,75,67,70,0,0,0,0,0,0,0,0,0,0,0,0,212 +NA,NA,,2019-20,Boston - Dr. William Henderson Upper,350426,0,0,0,71,68,49,47,64,63,51,74,60,66,65,14,692 +NA,NA,,2019-20,Boston - East Boston Early Childhood Center,350009,88,63,58,0,0,0,0,0,0,0,0,0,0,0,0,209 +NA,NA,,2019-20,Boston - East Boston High,350530,0,0,0,0,0,0,0,0,0,0,263,296,279,234,12,1084 +NA,NA,,2019-20,Boston - Edison K-8,350375,20,50,60,72,73,62,68,59,62,72,0,0,0,0,0,598 +NA,NA,,2019-20,Boston - Edward Everett,350088,12,39,42,40,40,33,28,0,0,0,0,0,0,0,0,234 +NA,NA,,2019-20,Boston - ELC - West Zone,350006,46,29,33,0,0,0,0,0,0,0,0,0,0,0,0,108 +NA,NA,,2019-20,Boston - Eliot Elementary,350096,59,81,79,81,91,89,93,79,43,27,0,0,0,0,0,722 +NA,NA,,2019-20,Boston - Ellis Mendell,350100,26,41,41,41,43,44,34,0,0,0,0,0,0,0,0,270 +NA,NA,,2019-20,Boston - Excel High School,350522,0,0,0,0,0,0,0,0,0,0,104,130,131,122,1,488 +NA,NA,,2019-20,Boston - Fenway High School,350540,0,0,0,0,0,0,0,0,0,0,111,100,96,86,3,396 +NA,NA,,2019-20,Boston - Franklin D Roosevelt,350116,41,40,43,38,48,47,41,55,44,38,0,0,0,0,0,435 +NA,NA,,2019-20,Boston - Gardner Pilot Academy,350326,29,39,41,40,41,40,42,44,38,38,0,0,0,0,0,392 +NA,NA,,2019-20,Boston - George H Conley,350122,18,19,19,23,25,54,26,0,0,0,0,0,0,0,0,184 +NA,NA,,2019-20,Boston - Greater Egleston Community High School,350543,0,0,0,0,0,0,0,0,0,0,20,32,28,20,0,100 +NA,NA,,2019-20,Boston - Harvard-Kent,350200,48,53,52,46,48,54,64,0,0,0,0,0,0,0,0,365 +NA,NA,,2019-20,Boston - Haynes Early Education Center,350010,58,74,73,0,0,0,0,0,0,0,0,0,0,0,0,205 +NA,NA,,2019-20,Boston - Henry Grew,350135,20,32,38,36,36,30,40,0,0,0,0,0,0,0,0,232 +NA,NA,,2019-20,Boston - Higginson,350015,27,37,37,40,0,0,0,0,0,0,0,0,0,0,0,141 +NA,NA,,2019-20,Boston - Higginson/Lewis K-8,350377,0,0,0,0,36,30,37,46,45,36,0,0,0,0,0,230 +NA,NA,,2019-20,Boston - Horace Mann School for the Deaf,350750,2,0,3,9,5,6,8,0,8,3,6,7,3,10,6,76 +NA,NA,,2019-20,Boston - Hugh Roe O'Donnell,350141,21,39,39,47,39,34,44,0,0,0,0,0,0,0,0,263 +NA,NA,,2019-20,Boston - Jackson Mann,350013,23,53,57,55,62,66,68,60,38,37,0,0,0,0,0,519 +NA,NA,,2019-20,Boston - James J Chittick,350154,46,45,38,38,38,41,34,0,0,0,0,0,0,0,0,280 +NA,NA,,2019-20,Boston - James Otis,350156,50,57,60,63,56,55,41,0,0,0,0,0,0,0,0,382 +NA,NA,,2019-20,Boston - James P Timilty Middle,350485,0,0,0,0,0,0,0,102,104,114,0,0,0,0,0,320 +NA,NA,,2019-20,Boston - James W Hennigan,350153,0,40,41,59,61,80,76,117,75,52,0,0,0,0,0,601 +NA,NA,,2019-20,Boston - Jeremiah E Burke High,350525,0,0,0,0,0,0,0,0,0,0,98,88,102,117,12,417 +NA,NA,,2019-20,Boston - John D Philbrick,350172,13,18,21,20,18,22,34,0,0,0,0,0,0,0,0,146 +NA,NA,,2019-20,Boston - John F Kennedy,350166,30,50,55,61,65,68,56,0,0,0,0,0,0,0,0,385 +NA,NA,,2019-20,Boston - John W McCormack,350179,0,0,0,0,0,0,0,90,111,116,0,0,0,0,0,317 +NA,NA,,2019-20,Boston - John Winthrop,350180,39,33,42,39,46,30,29,0,0,0,0,0,0,0,0,258 +NA,NA,,2019-20,Boston - Joseph J Hurley,350182,28,47,44,49,44,38,42,32,20,15,0,0,0,0,0,359 +NA,NA,,2019-20,Boston - Joseph Lee,350183,66,50,61,52,58,66,78,96,64,51,0,0,0,0,0,642 +NA,NA,,2019-20,Boston - Joseph P Manning,350184,11,20,23,23,22,20,25,0,0,0,0,0,0,0,0,144 +NA,NA,,2019-20,Boston - Joseph P Tynan,350181,31,42,50,24,28,33,26,0,0,0,0,0,0,0,0,234 +NA,NA,,2019-20,Boston - Josiah Quincy,350286,76,112,114,117,124,125,127,0,0,0,0,0,0,0,0,795 +NA,NA,,2019-20,Boston - Joyce Kilmer,350190,45,42,41,53,43,48,50,81,25,20,0,0,0,0,0,448 +NA,NA,,2019-20,Boston - King K-8,350376,66,60,63,67,46,40,54,52,53,40,0,0,0,0,0,541 +NA,NA,,2019-20,Boston - Lee Academy,350001,51,35,34,36,38,0,0,0,0,0,0,0,0,0,0,194 +NA,NA,,2019-20,Boston - Lilla G. Frederick Middle School,350383,0,0,0,0,0,0,0,140,149,165,0,0,0,0,0,454 +NA,NA,,2019-20,Boston - Lyndon,350262,66,66,68,72,85,79,59,88,30,37,0,0,0,0,0,650 +NA,NA,,2019-20,Boston - Lyon K-8,350004,0,10,15,15,16,16,15,17,15,13,0,0,0,0,0,132 +NA,NA,,2019-20,Boston - Lyon Upper 9-12,350655,0,0,0,0,0,0,0,0,0,0,30,35,32,31,5,133 +NA,NA,,2019-20,Boston - Madison Park High,350537,0,0,0,0,0,0,0,0,0,0,351,279,238,134,19,1021 +NA,NA,,2019-20,Boston - Manassah E Bradley,350215,31,39,41,41,40,50,31,0,0,0,0,0,0,0,0,273 +NA,NA,,2019-20,Boston - Margarita Muniz Academy,350549,0,0,0,0,0,0,0,0,0,0,90,83,80,66,0,319 +NA,NA,,2019-20,Boston - Mario Umana Academy,350656,31,68,63,81,67,61,65,189,153,152,0,0,0,0,0,930 +NA,NA,,2019-20,Boston - Mather,350227,61,83,87,80,87,88,81,0,0,0,0,0,0,0,0,567 +NA,NA,,2019-20,Boston - Mattahunt Elementary School,350016,90,94,92,84,46,0,0,0,0,0,0,0,0,0,0,406 +NA,NA,,2019-20,Boston - Maurice J Tobin,350229,14,42,46,49,53,48,50,52,39,33,0,0,0,0,0,426 +NA,NA,,2019-20,Boston - Michael J Perkins,350231,7,25,20,19,38,30,22,0,0,0,0,0,0,0,0,161 +NA,NA,,2019-20,Boston - Mildred Avenue K-8,350378,41,40,41,43,47,89,93,99,94,91,0,0,0,0,0,678 +NA,NA,,2019-20,Boston - Mission Hill School,350382,30,23,22,21,32,24,19,20,18,14,0,0,0,0,0,223 +NA,NA,,2019-20,Boston - Mozart,350237,30,22,25,25,23,27,15,0,0,0,0,0,0,0,0,167 +NA,NA,,2019-20,Boston - Nathan Hale,350243,21,20,23,19,24,22,20,0,0,0,0,0,0,0,0,149 +NA,NA,,2019-20,Boston - New Mission High School,350542,0,0,0,0,0,0,0,0,37,56,96,91,88,77,2,447 +NA,NA,,2019-20,Boston - O W Holmes,350138,27,51,52,39,41,43,41,0,0,0,0,0,0,0,0,294 +NA,NA,,2019-20,Boston - O'Bryant School Math/Science,350575,0,0,0,0,0,0,0,0,175,155,374,305,334,245,1,1589 +NA,NA,,2019-20,Boston - Oliver Hazard Perry,350255,24,23,27,27,28,27,24,24,20,28,0,0,0,0,0,252 +NA,NA,,2019-20,Boston - Orchard Gardens,350257,53,82,82,92,102,100,101,94,87,94,0,0,0,0,0,887 +NA,NA,,2019-20,Boston - Patrick J Kennedy,350264,28,34,38,41,31,46,48,0,0,0,0,0,0,0,0,266 +NA,NA,,2019-20,Boston - Paul A Dever,350268,40,56,58,70,66,57,62,0,0,0,0,0,0,0,0,409 +NA,NA,,2019-20,Boston - Pauline Agassiz Shaw Elementary School,350014,46,32,36,33,30,0,0,0,0,0,0,0,0,0,0,177 +NA,NA,,2019-20,Boston - Phineas Bates,350278,21,33,40,40,33,35,38,0,0,0,0,0,0,0,0,240 +NA,NA,,2019-20,Boston - Quincy Upper School,350565,0,0,0,0,0,0,0,141,77,85,37,59,58,57,19,533 +NA,NA,,2019-20,Boston - Rafael Hernandez,350691,46,47,50,50,47,47,42,32,25,15,0,0,0,0,0,401 +NA,NA,,2019-20,Boston - Richard J Murphy,350240,41,62,72,89,86,124,127,152,81,79,0,0,0,0,0,913 +NA,NA,,2019-20,Boston - Roger Clap,350298,8,18,18,17,19,20,14,0,0,0,0,0,0,0,0,114 +NA,NA,,2019-20,Boston - Samuel Adams,350302,25,33,32,39,30,35,28,0,0,0,0,0,0,0,0,222 +NA,NA,,2019-20,Boston - Samuel W Mason,350304,22,37,37,40,39,29,26,0,0,0,0,0,0,0,0,230 +NA,NA,,2019-20,Boston - Sarah Greenwood,350308,50,48,39,45,41,43,41,44,28,23,0,0,0,0,0,402 +NA,NA,,2019-20,Boston - Snowden International School at Copley,350690,0,0,0,0,0,0,0,0,0,0,143,115,122,93,1,474 +NA,NA,,2019-20,Boston - TechBoston Academy,350657,0,0,0,0,0,0,0,109,116,118,145,131,134,137,1,891 +NA,NA,,2019-20,Boston - The English High,350535,0,0,0,0,0,0,0,0,0,0,181,121,121,138,5,566 +NA,NA,,2019-20,Boston - Thomas J Kenny,350328,28,39,42,40,44,55,48,0,0,0,0,0,0,0,0,296 +NA,NA,,2019-20,Boston - UP Academy Holland,350167,58,107,116,112,127,127,111,0,0,0,0,0,0,0,0,758 +NA,NA,,2019-20,Boston - Urban Science Academy,350579,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,39 +NA,NA,,2019-20,Boston - Warren-Prescott,350346,56,68,71,69,53,60,69,62,32,32,0,0,0,0,0,572 +NA,NA,,2019-20,Boston - Washington Irving Middle,350445,0,0,0,0,0,0,0,76,86,82,0,0,0,0,0,244 +NA,NA,,2019-20,Boston - West Roxbury Academy,350658,0,0,0,0,0,0,0,0,0,0,0,0,0,28,0,28 +NA,NA,,2019-20,Boston - William E Russell,350366,66,55,58,64,52,47,39,0,0,0,0,0,0,0,0,381 +NA,NA,,2019-20,Boston - William Ellery Channing,350360,35,42,36,37,26,24,23,0,0,0,0,0,0,0,0,223 +NA,NA,,2019-20,Boston - William H Ohrenberger,350258,0,0,0,0,90,106,126,130,75,72,0,0,0,0,0,599 +NA,NA,,2019-20,Boston - William McKinley,350363,0,1,4,7,12,15,16,21,29,19,56,39,42,27,31,319 +NA,NA,,2019-20,Boston - William Monroe Trotter,350370,41,42,56,60,46,54,42,36,28,27,0,0,0,0,0,432 +NA,NA,,2019-20,Boston - Winship Elementary,350374,47,42,42,38,25,22,24,0,0,0,0,0,0,0,0,240 +NA,NA,,2019-20,Boston - Young Achievers,350380,46,51,57,63,58,87,82,74,42,38,0,0,0,0,0,598 +NA,NA,,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,0,0,0,0,0,0,98,102,97,95,90,77,74,60,0,693 +NA,NA,,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,0,0,0,0,0,0,0,0,0,0,96,45,43,230,0,414 +NA,NA,,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,0,0,0,0,0,0,0,63,62,53,81,82,83,71,5,500 +NA,NA,,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,0,0,0,0,0,0,0,99,97,96,87,80,71,51,0,581 +NA,NA,,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,116,136,132,138,123,127,81,77,0,0,0,0,0,0,0,930 +NA,NA,,2019-20,Bourne - Bourne High School,360505,0,0,0,0,0,0,0,0,0,0,103,115,112,124,7,461 +NA,NA,,2019-20,Bourne - Bourne Intermediate School,360030,0,0,0,0,138,171,165,0,0,0,0,0,0,0,0,474 +NA,NA,,2019-20,Bourne - Bourne Middle School,360325,0,0,0,0,0,0,0,174,166,171,0,0,0,0,0,511 +NA,NA,,2019-20,Bourne - Bournedale Elementary School,360005,62,132,124,143,0,0,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2019-20,Boxford - Harry Lee Cole,380005,47,109,80,87,0,0,0,0,0,0,0,0,0,0,0,323 +NA,NA,,2019-20,Boxford - Spofford Pond,380013,0,0,0,0,102,119,96,107,0,0,0,0,0,0,0,424 +NA,NA,,2019-20,Braintree - Archie T Morrison,400033,0,19,95,75,68,79,69,0,0,0,0,0,0,0,0,405 +NA,NA,,2019-20,Braintree - Braintree High,400505,113,0,0,0,0,0,0,0,0,0,422,439,428,426,0,1828 +NA,NA,,2019-20,Braintree - Donald Ross,400050,0,21,44,51,56,35,51,0,0,0,0,0,0,0,0,258 +NA,NA,,2019-20,Braintree - East Middle School,400305,0,0,0,0,0,0,0,285,258,212,0,0,0,0,0,755 +NA,NA,,2019-20,Braintree - Highlands,400015,0,20,80,64,82,90,82,0,0,0,0,0,0,0,0,418 +NA,NA,,2019-20,Braintree - Hollis,400005,0,46,85,60,79,89,81,0,0,0,0,0,0,0,0,440 +NA,NA,,2019-20,Braintree - Liberty,400025,0,0,79,71,74,83,94,0,0,0,0,0,0,0,0,401 +NA,NA,,2019-20,Braintree - Mary E Flaherty School,400020,0,23,58,64,65,61,73,0,0,0,0,0,0,0,0,344 +NA,NA,,2019-20,Braintree - Monatiquot Kindergarten Center,400009,0,255,0,0,0,0,0,0,0,0,0,0,0,0,0,255 +NA,NA,,2019-20,Braintree - South Middle School,400310,0,0,0,0,0,0,0,212,252,227,0,0,0,0,0,691 +NA,NA,,2019-20,Brewster - Eddy Elementary,410010,0,0,0,0,85,77,84,0,0,0,0,0,0,0,0,246 +NA,NA,,2019-20,Brewster - Stony Brook Elementary,410005,34,62,71,57,0,0,0,0,0,0,0,0,0,0,0,224 +NA,NA,,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,31,36,35,40,39,40,34,34,23,22,0,0,0,0,0,334 +NA,NA,,2019-20,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,0,0,0,0,0,301,254,0,0,0,0,0,555 +NA,NA,,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,0,0,0,0,0,0,0,0,0,0,324,357,368,360,10,1419 +NA,NA,,2019-20,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,167,181,177,0,0,0,0,0,0,0,0,0,525 +NA,NA,,2019-20,Bridgewater-Raynham - Merrill Elementary School,6250020,0,164,166,0,0,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2019-20,Bridgewater-Raynham - Mitchell Elementary School,6250002,151,255,254,256,252,0,0,0,0,0,0,0,0,0,0,1168 +NA,NA,,2019-20,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,0,0,0,166,171,185,146,0,0,0,0,0,668 +NA,NA,,2019-20,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,0,0,0,0,0,1,2,0,6,1,4,0,14 +NA,NA,,2019-20,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,0,0,215,238,260,0,0,0,0,0,0,0,713 +NA,NA,,2019-20,Brimfield - Brimfield Elementary,430005,33,44,28,40,37,32,43,42,0,0,0,0,0,0,0,299 +NA,NA,,2019-20,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,0,0,0,0,0,0,0,123,113,108,107,0,451 +NA,NA,,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,0,0,0,0,0,0,0,0,0,0,357,352,315,281,0,1305 +NA,NA,,2019-20,Brockton - Ashfield Middle School,440421,0,0,0,0,0,0,0,203,221,144,0,0,0,0,0,568 +NA,NA,,2019-20,Brockton - Barrett Russell Early Childhood Center,440008,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2019-20,Brockton - Brockton Champion High School,440515,0,0,0,0,0,0,0,0,0,0,18,23,19,10,33,103 +NA,NA,,2019-20,Brockton - Brockton High,440505,0,0,0,0,0,0,0,0,0,0,1352,890,908,909,18,4077 +NA,NA,,2019-20,Brockton - Brookfield,440010,0,75,85,78,89,98,98,0,0,0,0,0,0,0,0,523 +NA,NA,,2019-20,Brockton - Downey,440110,0,83,85,102,98,110,110,0,0,0,0,0,0,0,0,588 +NA,NA,,2019-20,Brockton - Dr W Arnone Community School,440001,87,104,96,113,126,120,121,0,0,0,0,0,0,0,0,767 +NA,NA,,2019-20,Brockton - East Middle School,440405,0,0,0,0,0,0,0,231,272,191,0,0,0,0,0,694 +NA,NA,,2019-20,Brockton - Edgar B Davis,440023,0,89,94,132,128,109,113,127,129,120,0,0,0,0,0,1041 +NA,NA,,2019-20,Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0,0,41,50,65,93,0,249 +NA,NA,,2019-20,Brockton - Frederick Douglass Academy,440080,0,0,0,0,0,0,0,0,0,0,8,3,3,1,0,15 +NA,NA,,2019-20,Brockton - Gilmore Elementary School,440055,0,63,66,70,91,72,73,0,0,0,0,0,0,0,0,435 +NA,NA,,2019-20,Brockton - Hancock,440045,0,75,77,85,98,88,93,0,0,0,0,0,0,0,0,516 +NA,NA,,2019-20,Brockton - Huntington Therapeutic Day School,440400,0,0,0,1,2,3,3,6,4,9,6,10,11,9,0,64 +NA,NA,,2019-20,Brockton - John F Kennedy,440017,0,85,100,95,93,116,104,0,0,0,0,0,0,0,0,593 +NA,NA,,2019-20,Brockton - Joseph F. Plouffe Academy,440422,0,0,0,0,0,0,0,266,272,223,0,0,0,0,0,761 +NA,NA,,2019-20,Brockton - Louis F Angelo Elementary,440065,0,97,116,112,132,199,225,0,0,0,0,0,0,0,0,881 +NA,NA,,2019-20,Brockton - Manthala George Jr. School,440003,0,166,189,158,168,140,140,0,0,0,0,0,0,0,0,961 +NA,NA,,2019-20,Brockton - Mary E. Baker School,440002,0,98,94,120,123,107,126,0,0,0,0,0,0,0,0,668 +NA,NA,,2019-20,Brockton - North Middle School,440410,0,0,0,0,0,0,0,0,0,168,0,0,0,0,0,168 +NA,NA,,2019-20,Brockton - Oscar F Raymond,440078,0,118,122,129,151,154,144,0,0,0,0,0,0,0,0,818 +NA,NA,,2019-20,Brockton - South Middle School,440415,0,0,0,0,0,0,0,193,198,211,0,0,0,0,0,602 +NA,NA,,2019-20,Brockton - West Middle School,440420,0,0,0,0,0,0,0,233,247,215,0,0,0,0,0,695 +NA,NA,,2019-20,Brooke Charter School (District) - Brooke Charter School,4280305,0,186,189,187,182,181,181,176,182,179,131,89,50,56,0,1969 +NA,NA,,2019-20,Brookfield - Brookfield Elementary,450005,23,44,39,41,38,42,43,37,0,0,0,0,0,0,0,307 +NA,NA,,2019-20,Brookline - Brookline Early Education Program at Beacon,460001,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48 +NA,NA,,2019-20,Brookline - Brookline Early Education Program at Clark Road,460003,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17 +NA,NA,,2019-20,Brookline - Brookline Early Education Program at Putterham,460002,56,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56 +NA,NA,,2019-20,Brookline - Brookline High,460505,0,0,0,0,0,0,0,0,0,0,521,557,512,474,19,2083 +NA,NA,,2019-20,Brookline - Coolidge Corner School,460015,31,105,115,93,103,102,92,102,93,83,0,0,0,0,0,919 +NA,NA,,2019-20,Brookline - Edith C Baker,460005,0,83,78,86,81,85,101,64,95,77,0,0,0,0,0,750 +NA,NA,,2019-20,Brookline - Heath,460025,27,58,60,61,47,61,69,54,62,53,0,0,0,0,0,552 +NA,NA,,2019-20,Brookline - John D Runkle,460045,16,63,61,63,61,62,66,70,73,63,0,0,0,0,0,598 +NA,NA,,2019-20,Brookline - Lawrence,460030,0,80,85,81,71,84,72,62,72,72,0,0,0,0,0,679 +NA,NA,,2019-20,Brookline - Michael Driscoll,460020,0,56,62,63,63,66,82,64,66,78,0,0,0,0,0,600 +NA,NA,,2019-20,Brookline - Pierce,460040,0,93,95,96,91,104,106,103,79,75,0,0,0,0,0,842 +NA,NA,,2019-20,Brookline - The Lynch Center,460060,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57 +NA,NA,,2019-20,Brookline - William H Lincoln,460035,0,62,57,70,57,63,66,63,78,60,0,0,0,0,0,576 +NA,NA,,2019-20,Burlington - Burlington High,480505,103,6,0,0,0,0,0,0,0,0,221,224,244,248,0,1046 +NA,NA,,2019-20,Burlington - Fox Hill,480007,0,65,92,75,82,71,61,0,0,0,0,0,0,0,0,446 +NA,NA,,2019-20,Burlington - Francis Wyman Elementary,480035,0,83,79,91,101,82,98,0,0,0,0,0,0,0,0,534 +NA,NA,,2019-20,Burlington - Marshall Simonds Middle,480303,0,0,0,0,0,0,0,244,272,254,0,0,0,0,0,770 +NA,NA,,2019-20,Burlington - Memorial,480015,0,64,67,68,62,72,60,0,0,0,0,0,0,0,0,393 +NA,NA,,2019-20,Burlington - Pine Glen Elementary,480020,0,47,58,64,52,59,40,0,0,0,0,0,0,0,0,320 +NA,NA,,2019-20,Cambridge - Amigos School,490006,30,50,45,48,44,43,45,42,44,37,0,0,0,0,0,428 +NA,NA,,2019-20,Cambridge - Cambridge Rindge and Latin,490506,0,0,0,0,0,0,0,0,0,0,494,512,471,494,6,1977 +NA,NA,,2019-20,Cambridge - Cambridge Street Upper School,490305,0,0,0,0,0,0,0,106,99,78,0,0,0,0,0,283 +NA,NA,,2019-20,Cambridge - Cambridgeport,490007,54,44,45,55,40,42,45,0,0,0,0,0,0,0,0,325 +NA,NA,,2019-20,Cambridge - Fletcher/Maynard Academy,490090,50,48,44,40,33,35,35,0,0,0,0,0,0,0,0,285 +NA,NA,,2019-20,Cambridge - Graham and Parks,490080,41,47,59,57,59,56,62,0,0,0,0,0,0,0,0,381 +NA,NA,,2019-20,Cambridge - Haggerty,490020,27,43,42,42,41,35,28,0,0,0,0,0,0,0,0,258 +NA,NA,,2019-20,Cambridge - John M Tobin,490065,90,39,42,36,36,39,29,0,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Cambridge - Kennedy-Longfellow,490040,59,60,45,48,32,36,31,0,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Cambridge - King Open,490035,38,73,57,63,48,55,49,0,0,0,0,0,0,0,0,383 +NA,NA,,2019-20,Cambridge - Maria L. Baldwin,490005,36,68,57,53,50,42,44,0,0,0,0,0,0,0,0,350 +NA,NA,,2019-20,Cambridge - Martin Luther King Jr.,490030,32,61,53,52,45,42,41,0,0,0,0,0,0,0,0,326 +NA,NA,,2019-20,Cambridge - Morse,490045,68,47,47,45,41,43,35,0,0,0,0,0,0,0,0,326 +NA,NA,,2019-20,Cambridge - Peabody,490050,46,50,45,46,44,46,43,0,0,0,0,0,0,0,0,320 +NA,NA,,2019-20,Cambridge - Putnam Avenue Upper School,490310,0,0,0,0,0,0,0,81,98,85,0,0,0,0,0,264 +NA,NA,,2019-20,Cambridge - Rindge Avenue Upper School,490315,0,0,0,0,0,0,0,87,95,99,0,0,0,0,0,281 +NA,NA,,2019-20,Cambridge - Vassal Lane Upper School,490320,0,0,0,0,0,0,0,102,100,80,0,0,0,0,0,282 +NA,NA,,2019-20,Canton - Canton High,500505,0,0,0,0,0,0,0,0,0,0,213,255,260,243,3,974 +NA,NA,,2019-20,Canton - Dean S Luce,500020,0,80,82,66,91,79,75,0,0,0,0,0,0,0,0,473 +NA,NA,,2019-20,Canton - John F Kennedy,500017,0,87,86,87,77,85,83,0,0,0,0,0,0,0,0,505 +NA,NA,,2019-20,Canton - Lt Peter M Hansen,500012,0,83,74,76,85,87,85,0,0,0,0,0,0,0,0,490 +NA,NA,,2019-20,Canton - Rodman Early Childhood Center,500010,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87 +NA,NA,,2019-20,Canton - Wm H Galvin Middle,500305,0,0,0,0,0,0,0,291,251,226,0,0,0,0,0,768 +NA,NA,,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,0,0,0,0,81,81,77,0,0,0,0,0,239 +NA,NA,,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0,0,0,0,0,0,0,0,0,0,162,158,148,148,0,616 +NA,NA,,2019-20,Carlisle - Carlisle School,510025,14,52,61,65,68,62,63,77,64,71,0,0,0,0,0,597 +NA,NA,,2019-20,Carver - Carver Elementary School,520015,64,127,131,113,139,128,112,0,0,0,0,0,0,0,0,814 +NA,NA,,2019-20,Carver - Carver Middle/High School,520405,0,0,0,0,0,0,0,122,123,131,101,76,104,101,5,763 +NA,NA,,2019-20,Central Berkshire - Becket Washington School,6350005,13,15,17,16,18,14,20,0,0,0,0,0,0,0,0,113 +NA,NA,,2019-20,Central Berkshire - Craneville,6350025,0,79,64,72,71,63,75,0,0,0,0,0,0,0,0,424 +NA,NA,,2019-20,Central Berkshire - Kittredge,6350035,29,21,17,25,24,18,16,0,0,0,0,0,0,0,0,150 +NA,NA,,2019-20,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,0,0,0,0,110,128,139,0,0,0,0,0,377 +NA,NA,,2019-20,Central Berkshire - Wahconah Regional High,6350505,0,0,0,0,0,0,0,0,0,0,122,126,134,118,1,501 +NA,NA,,2019-20,Chelmsford - Byam School,560030,0,99,91,110,91,99,0,0,0,0,0,0,0,0,0,490 +NA,NA,,2019-20,Chelmsford - Center Elementary School,560005,0,85,107,105,102,89,0,0,0,0,0,0,0,0,0,488 +NA,NA,,2019-20,Chelmsford - Charles D Harrington,560025,0,96,101,99,107,91,0,0,0,0,0,0,0,0,0,494 +NA,NA,,2019-20,Chelmsford - Chelmsford High,560505,0,0,0,0,0,0,0,0,0,0,329,348,371,364,0,1412 +NA,NA,,2019-20,Chelmsford - Col Moses Parker School,560305,0,0,0,0,0,0,195,186,179,173,0,0,0,0,0,733 +NA,NA,,2019-20,Chelmsford - Community Education Center,560001,166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166 +NA,NA,,2019-20,Chelmsford - McCarthy Middle School,560310,0,0,0,0,0,0,192,195,181,227,0,0,0,0,0,795 +NA,NA,,2019-20,Chelmsford - South Row,560015,0,85,94,91,85,88,0,0,0,0,0,0,0,0,0,443 +NA,NA,,2019-20,Chelsea - Chelsea High,570505,0,0,0,0,0,0,0,0,0,0,472,365,294,268,3,1402 +NA,NA,,2019-20,Chelsea - Chelsea Opportunity Academy,570515,0,0,0,0,0,0,0,0,0,0,4,28,32,31,0,95 +NA,NA,,2019-20,Chelsea - Clark Avenue School,570050,0,0,0,0,0,0,181,193,168,152,0,0,0,0,0,694 +NA,NA,,2019-20,Chelsea - Edgar A Hooks Elementary,570030,0,0,106,150,152,137,0,0,0,0,0,0,0,0,0,545 +NA,NA,,2019-20,Chelsea - Eugene Wright Science and Technology Academy,570045,0,0,0,0,0,0,134,134,129,130,0,0,0,0,0,527 +NA,NA,,2019-20,Chelsea - Frank M Sokolowski Elementary,570040,0,0,101,145,140,142,0,0,0,0,0,0,0,0,0,528 +NA,NA,,2019-20,Chelsea - George F. Kelly Elementary,570035,0,0,106,105,103,121,40,32,0,0,0,0,0,0,0,507 +NA,NA,,2019-20,Chelsea - Joseph A. Browne School,570055,0,0,0,0,0,0,121,158,147,144,0,0,0,0,0,570 +NA,NA,,2019-20,Chelsea - Shurtleff Early Childhood,570003,290,495,103,0,0,0,0,0,0,0,0,0,0,0,0,888 +NA,NA,,2019-20,Chelsea - William A Berkowitz Elementary,570025,0,0,124,131,128,116,0,0,0,0,0,0,0,0,0,499 +NA,NA,,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,14,21,13,18,18,16,16,12,0,0,0,0,0,0,0,128 +NA,NA,,2019-20,Chicopee - Barry,610003,0,69,60,72,74,69,76,0,0,0,0,0,0,0,0,420 +NA,NA,,2019-20,Chicopee - Belcher,610010,0,80,76,98,0,0,0,0,0,0,0,0,0,0,0,254 +NA,NA,,2019-20,Chicopee - Bellamy Middle,610305,0,0,0,0,0,0,0,301,279,274,0,0,0,0,0,854 +NA,NA,,2019-20,Chicopee - Bowe,610015,0,67,74,76,90,74,78,0,0,0,0,0,0,0,0,459 +NA,NA,,2019-20,Chicopee - Bowie,610020,0,48,51,38,54,66,54,0,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Chicopee - Chicopee Academy,610021,0,0,0,0,0,0,0,0,5,4,19,13,12,5,1,59 +NA,NA,,2019-20,Chicopee - Chicopee Comprehensive High School,610510,0,0,0,0,0,0,0,0,0,0,306,270,311,296,0,1183 +NA,NA,,2019-20,Chicopee - Chicopee High,610505,0,0,0,0,0,0,0,0,0,0,230,286,252,219,0,987 +NA,NA,,2019-20,Chicopee - Dupont Middle,610310,0,0,0,0,0,0,0,283,271,243,0,0,0,0,0,797 +NA,NA,,2019-20,Chicopee - Fairview Elementary,610050,0,66,84,74,66,67,80,0,0,0,0,0,0,0,0,437 +NA,NA,,2019-20,Chicopee - Gen John J Stefanik,610090,0,40,44,52,65,76,69,0,0,0,0,0,0,0,0,346 +NA,NA,,2019-20,Chicopee - Lambert-Lavoie,610040,0,44,43,46,47,55,53,0,0,0,0,0,0,0,0,288 +NA,NA,,2019-20,Chicopee - Litwin,610022,0,18,20,24,111,95,112,0,0,0,0,0,0,0,0,380 +NA,NA,,2019-20,Chicopee - Streiber Memorial School,610065,0,41,42,39,48,41,33,0,0,0,0,0,0,0,0,244 +NA,NA,,2019-20,Chicopee - Szetela Early Childhood Center,610001,249,0,0,0,0,0,0,0,0,0,0,0,0,0,0,249 +NA,NA,,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,0,0,0,0,0,0,0,145,136,120,0,0,0,0,0,401 +NA,NA,,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,0,0,0,0,0,0,0,0,0,0,66,60,54,48,0,228 +NA,NA,,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,0,0,0,0,0,0,0,0,0,0,41,58,39,55,0,193 +NA,NA,,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,0,0,0,0,0,0,0,0,0,0,48,30,41,30,0,149 +NA,NA,,2019-20,Clarksburg - Clarksburg Elementary,630010,0,15,22,32,14,22,20,34,22,16,0,0,0,0,0,197 +NA,NA,,2019-20,Clinton - Clinton Elementary,640050,98,138,171,139,143,148,0,0,0,0,0,0,0,0,0,837 +NA,NA,,2019-20,Clinton - Clinton Middle School,640305,0,0,0,0,0,0,151,165,140,147,0,0,0,0,0,603 +NA,NA,,2019-20,Clinton - Clinton Senior High,640505,16,0,0,0,0,0,0,0,0,0,128,100,120,95,1,460 +NA,NA,,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,21,22,20,21,21,21,19,20,19,19,40,36,26,34,0,339 +NA,NA,,2019-20,Cohasset - Cohasset High School,650505,0,0,0,0,0,0,0,0,0,0,117,106,128,118,0,469 +NA,NA,,2019-20,Cohasset - Cohasset Middle School,650305,0,0,0,0,0,0,0,134,116,97,0,0,0,0,0,347 +NA,NA,,2019-20,Cohasset - Deer Hill,650005,0,0,0,0,118,109,122,0,0,0,0,0,0,0,0,349 +NA,NA,,2019-20,Cohasset - Joseph Osgood,650010,24,103,105,103,0,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,0,78,107,114,111,114,93,120,91,61,43,0,0,0,0,932 +NA,NA,,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,0,0,0,0,0,0,0,28,66,59,43,52,31,47,0,326 +NA,NA,,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,40,40,43,44,42,42,43,35,38,33,0,0,0,0,0,400 +NA,NA,,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,21,25,47,51,50,47,43,43,41,32,0,0,0,0,0,400 +NA,NA,,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,41,41,44,45,44,42,41,35,36,30,0,0,0,0,0,399 +NA,NA,,2019-20,Concord - Alcott,670005,7,76,87,81,68,94,74,0,0,0,0,0,0,0,0,487 +NA,NA,,2019-20,Concord - Concord Middle,670305,0,0,0,0,0,0,0,241,236,236,0,0,0,0,0,713 +NA,NA,,2019-20,Concord - Thoreau,670020,10,69,69,84,76,72,67,0,0,0,0,0,0,0,0,447 +NA,NA,,2019-20,Concord - Willard,670030,9,62,60,72,69,72,74,0,0,0,0,0,0,0,0,418 +NA,NA,,2019-20,Concord-Carlisle - Concord Carlisle High,6400505,0,0,0,0,0,0,0,0,0,0,344,325,317,294,0,1280 +NA,NA,,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,51,49,54,54,54,57,37,40,33,24,0,0,0,0,0,453 +NA,NA,,2019-20,Conway - Conway Grammar,680005,16,14,15,16,16,22,18,16,0,0,0,0,0,0,0,133 +NA,NA,,2019-20,Danvers - Danvers High,710505,0,0,0,0,0,0,0,0,0,0,211,204,235,235,4,889 +NA,NA,,2019-20,Danvers - Great Oak,710015,0,54,54,63,57,69,60,0,0,0,0,0,0,0,0,357 +NA,NA,,2019-20,Danvers - Highlands,710010,0,62,64,64,60,64,69,0,0,0,0,0,0,0,0,383 +NA,NA,,2019-20,Danvers - Holten Richmond Middle School,710305,0,0,0,0,0,0,0,272,265,279,0,0,0,0,0,816 +NA,NA,,2019-20,Danvers - Ivan G Smith,710032,0,52,59,44,50,49,45,0,0,0,0,0,0,0,0,299 +NA,NA,,2019-20,Danvers - Riverside,710030,108,45,48,37,41,33,51,0,0,0,0,0,0,0,0,363 +NA,NA,,2019-20,Danvers - Willis E Thorpe,710045,0,45,46,54,57,47,61,0,0,0,0,0,0,0,0,310 +NA,NA,,2019-20,Dartmouth - Andrew B. Cushman School,720005,77,83,0,0,0,0,0,0,0,0,0,0,0,0,0,160 +NA,NA,,2019-20,Dartmouth - Dartmouth High,720505,0,0,0,0,0,0,0,0,0,0,235,285,269,250,0,1039 +NA,NA,,2019-20,Dartmouth - Dartmouth Middle,720050,0,0,0,0,0,0,0,272,307,318,0,0,0,0,0,897 +NA,NA,,2019-20,Dartmouth - George H Potter,720030,15,58,66,65,60,61,73,0,0,0,0,0,0,0,0,398 +NA,NA,,2019-20,Dartmouth - James M. Quinn School,720040,0,129,123,111,94,105,117,0,0,0,0,0,0,0,0,679 +NA,NA,,2019-20,Dartmouth - Joseph Demello,720015,0,0,65,78,99,77,88,0,0,0,0,0,0,0,0,407 +NA,NA,,2019-20,Dedham - Avery,730010,0,0,53,55,68,56,57,0,0,0,0,0,0,0,0,289 +NA,NA,,2019-20,Dedham - Dedham High,730505,0,0,0,0,0,0,0,0,0,0,169,170,178,199,6,722 +NA,NA,,2019-20,Dedham - Dedham Middle School,730305,0,0,0,0,0,0,0,221,258,195,0,0,0,0,0,674 +NA,NA,,2019-20,Dedham - Early Childhood Center,730005,129,229,0,0,0,0,0,0,0,0,0,0,0,0,0,358 +NA,NA,,2019-20,Dedham - Greenlodge,730025,0,0,55,48,47,39,61,0,0,0,0,0,0,0,0,250 +NA,NA,,2019-20,Dedham - Oakdale,730030,0,0,35,52,58,50,59,0,0,0,0,0,0,0,0,254 +NA,NA,,2019-20,Dedham - Riverdale,730045,0,0,53,31,34,37,34,0,0,0,0,0,0,0,0,189 +NA,NA,,2019-20,Deerfield - Deerfield Elementary,740015,40,50,46,54,45,39,52,60,0,0,0,0,0,0,0,386 +NA,NA,,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,0,0,0,0,0,0,0,0,0,217,187,163,176,194,0,937 +NA,NA,,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,32,73,72,58,73,0,0,0,0,0,0,0,0,0,0,308 +NA,NA,,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,64,53,67,52,58,0,0,0,0,0,0,0,0,0,0,294 +NA,NA,,2019-20,Dennis-Yarmouth - Mattacheese Middle School,6450305,0,0,0,0,0,0,0,230,238,0,0,0,0,0,0,468 +NA,NA,,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,6450050,0,0,0,0,0,255,240,0,0,0,0,0,0,0,0,495 +NA,NA,,2019-20,Dennis-Yarmouth - Station Avenue Elementary,6450025,0,102,115,97,96,0,0,0,0,0,0,0,0,0,0,410 +NA,NA,,2019-20,Dighton-Rehoboth - Dighton Elementary,6500005,40,71,93,95,98,95,0,0,0,0,0,0,0,0,0,492 +NA,NA,,2019-20,Dighton-Rehoboth - Dighton Middle School,6500305,0,0,0,0,0,0,92,107,97,110,0,0,0,0,0,406 +NA,NA,,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,8,0,0,0,0,0,0,0,0,0,176,187,208,183,9,771 +NA,NA,,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0,0,0,0,0,0,109,140,139,157,0,0,0,0,0,545 +NA,NA,,2019-20,Dighton-Rehoboth - Palmer River,6500010,43,121,136,110,107,119,0,0,0,0,0,0,0,0,0,636 +NA,NA,,2019-20,Douglas - Douglas Elementary School,770015,0,0,0,79,96,96,93,0,0,0,0,0,0,0,0,364 +NA,NA,,2019-20,Douglas - Douglas High School,770505,0,0,0,0,0,0,0,0,0,0,76,91,93,106,0,366 +NA,NA,,2019-20,Douglas - Douglas Middle School,770305,0,0,0,0,0,0,0,83,105,116,0,0,0,0,0,304 +NA,NA,,2019-20,Douglas - Douglas Primary School,770005,59,98,91,0,0,0,0,0,0,0,0,0,0,0,0,248 +NA,NA,,2019-20,Dover - Chickering,780005,9,78,80,72,85,82,84,0,0,0,0,0,0,0,0,490 +NA,NA,,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0,0,0,0,0,0,0,0,0,0,171,168,174,166,1,680 +NA,NA,,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,0,0,0,0,0,0,0,184,163,177,0,0,0,0,0,524 +NA,NA,,2019-20,Dracut - Brookside Elementary,790035,0,80,95,73,69,75,64,0,0,0,0,0,0,0,0,456 +NA,NA,,2019-20,Dracut - Dracut Senior High,790505,0,0,0,0,0,0,0,0,0,0,225,222,230,199,1,877 +NA,NA,,2019-20,Dracut - George H. Englesby Elementary School,790045,0,96,92,96,92,90,86,0,0,0,0,0,0,0,0,552 +NA,NA,,2019-20,Dracut - Greenmont Avenue,790030,0,42,43,49,37,60,52,0,0,0,0,0,0,0,0,283 +NA,NA,,2019-20,Dracut - Joseph A Campbell Elementary,790020,53,87,86,99,76,83,97,0,0,0,0,0,0,0,0,581 +NA,NA,,2019-20,Dracut - Justus C. Richardson Middle School,790410,0,0,0,0,0,0,0,305,335,288,0,0,0,0,0,928 +NA,NA,,2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,42,41,44,41,40,35,28,0,0,0,0,0,0,0,0,271 +NA,NA,,2019-20,Dudley-Charlton Reg - Charlton Elementary,6580020,65,142,147,0,0,0,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2019-20,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,0,0,0,0,152,185,169,165,0,0,0,0,0,671 +NA,NA,,2019-20,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,0,127,110,127,0,0,0,0,0,0,0,0,0,364 +NA,NA,,2019-20,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,0,0,0,147,135,126,151,0,0,0,0,0,559 +NA,NA,,2019-20,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,139,152,139,0,0,0,0,0,0,0,0,0,430 +NA,NA,,2019-20,Dudley-Charlton Reg - Mason Road School,6580010,57,104,115,0,0,0,0,0,0,0,0,0,0,0,0,276 +NA,NA,,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,0,0,0,0,0,0,0,0,243,261,282,258,4,1048 +NA,NA,,2019-20,Duxbury - Alden School,820004,0,0,0,0,206,213,196,0,0,0,0,0,0,0,0,615 +NA,NA,,2019-20,Duxbury - Chandler Elementary,820006,66,182,190,199,0,0,0,0,0,0,0,0,0,0,0,637 +NA,NA,,2019-20,Duxbury - Duxbury High,820505,0,0,0,0,0,0,0,0,0,0,244,229,253,254,1,981 +NA,NA,,2019-20,Duxbury - Duxbury Middle,820305,0,0,0,0,0,0,0,233,258,248,0,0,0,0,0,739 +NA,NA,,2019-20,East Bridgewater - Central,830005,114,149,144,161,0,0,0,0,0,0,0,0,0,0,0,568 +NA,NA,,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,0,0,0,0,0,169,179,166,168,157,170,0,1009 +NA,NA,,2019-20,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,0,151,164,147,177,0,0,0,0,0,0,0,639 +NA,NA,,2019-20,East Longmeadow - Birchland Park,870305,0,0,0,0,0,0,0,209,190,209,0,0,0,0,0,608 +NA,NA,,2019-20,East Longmeadow - East Longmeadow High,870505,0,0,0,0,0,0,0,0,0,0,221,210,177,225,1,834 +NA,NA,,2019-20,East Longmeadow - Mapleshade,870010,0,0,0,0,82,98,104,0,0,0,0,0,0,0,0,284 +NA,NA,,2019-20,East Longmeadow - Meadow Brook,870013,48,181,165,193,0,0,0,0,0,0,0,0,0,0,0,587 +NA,NA,,2019-20,East Longmeadow - Mountain View,870015,0,0,0,0,99,90,86,0,0,0,0,0,0,0,0,275 +NA,NA,,2019-20,Eastham - Eastham Elementary,850005,29,32,25,27,29,26,26,0,0,0,0,0,0,0,0,194 +NA,NA,,2019-20,Easthampton - Center School,860005,0,41,40,42,39,43,0,0,0,0,0,0,0,0,0,205 +NA,NA,,2019-20,Easthampton - Easthampton High,860505,0,0,0,0,0,0,0,0,0,0,106,117,114,117,2,456 +NA,NA,,2019-20,Easthampton - Maple,860010,55,41,42,37,39,42,0,0,0,0,0,0,0,0,0,256 +NA,NA,,2019-20,Easthampton - Neil A Pepin,860020,0,38,37,36,39,45,0,0,0,0,0,0,0,0,0,195 +NA,NA,,2019-20,Easthampton - White Brook Middle School,860305,0,0,0,0,0,0,124,100,111,97,0,0,0,0,0,432 +NA,NA,,2019-20,Easton - Center School,880003,18,79,62,86,0,0,0,0,0,0,0,0,0,0,0,245 +NA,NA,,2019-20,Easton - Easton Middle School,880405,0,0,0,0,0,0,0,277,307,293,0,0,0,0,0,877 +NA,NA,,2019-20,Easton - Moreau Hall,880020,12,67,80,63,0,0,0,0,0,0,0,0,0,0,0,222 +NA,NA,,2019-20,Easton - Oliver Ames High,880505,0,0,0,0,0,0,0,0,0,0,277,283,280,264,10,1114 +NA,NA,,2019-20,Easton - Parkview Elementary,880015,43,78,98,94,0,0,0,0,0,0,0,0,0,0,0,313 +NA,NA,,2019-20,Easton - Richardson Olmsted School,880025,0,0,0,0,249,267,292,0,0,0,0,0,0,0,0,808 +NA,NA,,2019-20,Edgartown - Edgartown Elementary,890005,6,45,42,37,48,39,59,41,38,36,0,0,0,0,0,391 +NA,NA,,2019-20,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,0,0,0,0,0,0,0,0,0,0,106,104,94,84,0,388 +NA,NA,,2019-20,Erving - Erving Elementary,910030,27,18,15,10,14,22,9,18,0,0,0,0,0,0,0,133 +NA,NA,,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0,0,0,0,0,0,0,0,0,0,419,388,352,333,0,1492 +NA,NA,,2019-20,Everett - Adams School,930003,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127 +NA,NA,,2019-20,Everett - Devens School,930030,0,1,2,3,2,5,2,9,9,5,7,6,5,4,0,60 +NA,NA,,2019-20,Everett - Everett High,930505,0,0,0,0,0,0,0,0,0,0,493,534,442,527,1,1997 +NA,NA,,2019-20,Everett - George Keverian School,930028,0,84,76,80,115,96,91,109,130,132,0,0,0,0,0,913 +NA,NA,,2019-20,Everett - Lafayette School,930038,0,102,93,103,94,129,102,131,138,109,0,0,0,0,0,1001 +NA,NA,,2019-20,Everett - Madeline English School,930018,0,71,76,96,84,82,76,94,91,101,0,0,0,0,0,771 +NA,NA,,2019-20,Everett - Parlin School,930058,0,101,109,107,102,79,117,101,119,134,0,0,0,0,0,969 +NA,NA,,2019-20,Everett - Sumner G. Whittier School,930010,0,66,61,65,83,86,76,86,61,58,0,0,0,0,0,642 +NA,NA,,2019-20,Everett - Webster Extension,930001,211,0,0,0,0,0,0,0,0,0,0,0,0,0,0,211 +NA,NA,,2019-20,Everett - Webster School,930015,7,83,71,68,57,43,37,0,0,0,0,0,0,0,0,366 +NA,NA,,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,4100205,0,0,0,0,0,0,176,177,174,177,178,174,168,146,0,1370 +NA,NA,,2019-20,Fairhaven - East Fairhaven,940010,23,38,54,57,68,73,79,0,0,0,0,0,0,0,0,392 +NA,NA,,2019-20,Fairhaven - Fairhaven High,940505,0,0,0,0,0,0,0,0,0,0,185,167,187,158,2,699 +NA,NA,,2019-20,Fairhaven - Hastings Middle,940305,0,0,0,0,0,0,0,155,144,160,0,0,0,0,0,459 +NA,NA,,2019-20,Fairhaven - Leroy Wood,940030,22,78,74,75,75,80,88,0,0,0,0,0,0,0,0,492 +NA,NA,,2019-20,Fall River - B M C Durfee High,950505,0,0,0,0,0,0,0,0,0,0,581,567,521,478,0,2147 +NA,NA,,2019-20,Fall River - Carlton M. Viveiros Elementary School,950009,0,109,119,130,105,138,122,0,0,0,0,0,0,0,0,723 +NA,NA,,2019-20,Fall River - Henry Lord Community School,950017,38,100,84,82,90,78,86,87,85,50,0,0,0,0,0,780 +NA,NA,,2019-20,Fall River - James Tansey,950140,0,53,50,47,55,49,50,0,0,0,0,0,0,0,0,304 +NA,NA,,2019-20,Fall River - John J Doran,950045,20,52,54,59,50,56,57,51,53,41,0,0,0,0,0,493 +NA,NA,,2019-20,Fall River - Letourneau Elementary School,950013,39,91,86,100,104,99,85,0,0,0,0,0,0,0,0,604 +NA,NA,,2019-20,Fall River - Mary Fonseca Elementary School,950011,32,93,94,106,122,116,114,0,0,0,0,0,0,0,0,677 +NA,NA,,2019-20,Fall River - Matthew J Kuss Middle,950320,0,0,0,0,0,0,0,256,260,226,0,0,0,0,0,742 +NA,NA,,2019-20,Fall River - Morton Middle,950315,0,0,0,0,0,0,0,214,216,195,0,0,0,0,0,625 +NA,NA,,2019-20,Fall River - North End Elementary,950005,82,110,102,107,114,135,124,0,0,0,0,0,0,0,0,774 +NA,NA,,2019-20,Fall River - Resiliency Preparatory Academy,950525,0,0,0,0,0,0,0,0,16,26,27,38,63,44,0,214 +NA,NA,,2019-20,Fall River - Samuel Watson,950145,0,41,50,50,47,39,47,0,0,0,0,0,0,0,0,274 +NA,NA,,2019-20,Fall River - Spencer Borden,950130,15,89,85,102,94,76,92,0,0,0,0,0,0,0,0,553 +NA,NA,,2019-20,Fall River - Stone PK-12 School,950340,0,0,1,4,2,3,4,5,11,8,6,8,3,1,0,56 +NA,NA,,2019-20,Fall River - Talbot Innovation School,950305,0,0,0,0,0,0,0,187,175,174,0,0,0,0,0,536 +NA,NA,,2019-20,Fall River - William S Greene,950065,41,116,104,109,107,124,126,0,0,0,0,0,0,0,0,727 +NA,NA,,2019-20,Falmouth - East Falmouth Elementary,960005,90,32,50,44,44,45,0,0,0,0,0,0,0,0,0,305 +NA,NA,,2019-20,Falmouth - Falmouth High,960505,0,0,0,0,0,0,0,0,0,0,252,211,187,189,3,842 +NA,NA,,2019-20,Falmouth - Lawrence,960405,0,0,0,0,0,0,0,0,266,256,0,0,0,0,0,522 +NA,NA,,2019-20,Falmouth - Morse Pond School,960305,0,0,0,0,0,0,269,280,0,0,0,0,0,0,0,549 +NA,NA,,2019-20,Falmouth - Mullen-Hall,960020,0,87,92,89,84,94,0,0,0,0,0,0,0,0,0,446 +NA,NA,,2019-20,Falmouth - North Falmouth Elementary,960030,0,54,62,79,55,68,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2019-20,Falmouth - Teaticket,960015,25,53,37,50,51,53,0,0,0,0,0,0,0,0,0,269 +NA,NA,,2019-20,Farmington River Reg - Farmington River Elementary,6620020,24,13,12,11,13,9,10,13,0,0,0,0,0,0,0,105 +NA,NA,,2019-20,Fitchburg - Arthur M Longsjo Middle School,970315,0,0,0,0,0,0,170,183,149,155,0,0,0,0,0,657 +NA,NA,,2019-20,Fitchburg - Crocker Elementary,970016,54,120,127,103,130,115,0,0,0,0,0,0,0,0,0,649 +NA,NA,,2019-20,Fitchburg - Fitchburg High,970505,30,0,0,0,0,0,0,0,0,0,359,277,306,245,4,1221 +NA,NA,,2019-20,Fitchburg - Goodrich Academy,970510,0,0,0,0,0,0,0,0,0,0,4,23,61,98,11,197 +NA,NA,,2019-20,Fitchburg - McKay Arts Academy,970340,22,77,72,71,76,76,85,71,73,66,0,0,0,0,0,689 +NA,NA,,2019-20,Fitchburg - Memorial Middle School,970048,0,0,0,0,0,0,175,181,160,178,0,0,0,0,0,694 +NA,NA,,2019-20,Fitchburg - Reingold Elementary,970043,30,113,134,107,130,116,0,0,0,0,0,0,0,0,0,630 +NA,NA,,2019-20,Fitchburg - South Street Elementary,970060,34,109,127,107,109,115,0,0,0,0,0,0,0,0,0,601 +NA,NA,,2019-20,Florida - Abbott Memorial,980005,22,7,9,1,9,8,4,14,14,7,0,0,0,0,0,95 +NA,NA,,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,0,0,0,0,0,38,38,37,38,30,36,0,217 +NA,NA,,2019-20,Foxborough - Charles Taylor Elementary,990050,0,56,41,40,58,46,0,0,0,0,0,0,0,0,0,241 +NA,NA,,2019-20,Foxborough - Foxborough High,990505,0,0,0,0,0,0,0,0,0,0,181,200,188,212,12,793 +NA,NA,,2019-20,Foxborough - John J Ahern,990405,0,0,0,0,0,0,180,217,216,209,0,0,0,0,0,822 +NA,NA,,2019-20,Foxborough - Mabelle M Burrell,990015,85,43,51,52,44,43,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2019-20,Foxborough - Vincent M Igo Elementary,990020,0,85,65,77,82,71,0,0,0,0,0,0,0,0,0,380 +NA,NA,,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,0,145,144,153,150,152,149,145,148,149,103,90,67,63,0,1658 +NA,NA,,2019-20,Framingham - Barbieri Elementary,1000035,0,118,122,121,109,107,113,0,0,0,0,0,0,0,0,690 +NA,NA,,2019-20,Framingham - Brophy,1000006,0,80,87,65,71,82,85,0,0,0,0,0,0,0,0,470 +NA,NA,,2019-20,Framingham - Cameron Middle School,1000302,0,0,0,0,0,0,0,215,205,180,0,0,0,0,0,600 +NA,NA,,2019-20,Framingham - Charlotte A Dunning,1000007,0,63,96,61,75,69,72,0,0,0,0,0,0,0,0,436 +NA,NA,,2019-20,Framingham - Framingham High School,1000515,0,0,0,0,0,0,0,0,0,0,684,567,568,492,0,2311 +NA,NA,,2019-20,Framingham - Fuller Middle,1000305,0,0,0,0,0,0,0,179,196,250,0,0,0,0,0,625 +NA,NA,,2019-20,Framingham - Hemenway,1000015,0,89,97,89,84,93,94,0,0,0,0,0,0,0,0,546 +NA,NA,,2019-20,Framingham - Juniper Hill School,1000001,309,0,0,0,0,0,0,0,0,0,0,0,0,0,0,309 +NA,NA,,2019-20,Framingham - King Elementary School,1000005,0,65,77,65,72,67,73,0,0,0,0,0,0,0,0,419 +NA,NA,,2019-20,Framingham - Mary E Stapleton Elementary,1000045,0,55,65,57,51,58,55,0,0,0,0,0,0,0,0,341 +NA,NA,,2019-20,Framingham - Miriam F McCarthy School,1000050,0,74,86,78,93,82,98,0,0,0,0,0,0,0,0,511 +NA,NA,,2019-20,Framingham - Potter Road,1000039,0,85,91,87,92,87,80,0,0,0,0,0,0,0,0,522 +NA,NA,,2019-20,Framingham - Walsh Middle,1000310,0,0,0,0,0,0,0,276,237,252,0,0,0,0,0,765 +NA,NA,,2019-20,Framingham - Woodrow Wilson,1000055,0,67,91,84,100,99,102,0,0,0,0,0,0,0,0,543 +NA,NA,,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,0,0,0,0,0,0,0,0,75,69,74,65,60,54,0,397 +NA,NA,,2019-20,Franklin - Annie Sullivan Middle School,1010040,0,0,0,0,0,0,0,130,122,130,0,0,0,0,0,382 +NA,NA,,2019-20,Franklin - Davis Thayer,1010035,0,41,53,23,39,35,36,0,0,0,0,0,0,0,0,227 +NA,NA,,2019-20,Franklin - Franklin Early Childhood Development Center,1010003,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111 +NA,NA,,2019-20,Franklin - Franklin High,1010505,0,0,0,0,0,0,0,0,0,0,435,432,447,429,7,1750 +NA,NA,,2019-20,Franklin - Helen Keller Elementary,1010012,0,46,49,53,67,75,56,0,0,0,0,0,0,0,0,346 +NA,NA,,2019-20,Franklin - Horace Mann,1010405,0,0,0,0,0,0,0,133,167,150,0,0,0,0,0,450 +NA,NA,,2019-20,Franklin - J F Kennedy Memorial,1010013,0,36,54,73,65,61,62,0,0,0,0,0,0,0,0,351 +NA,NA,,2019-20,Franklin - Jefferson Elementary,1010010,0,39,59,71,46,59,72,0,0,0,0,0,0,0,0,346 +NA,NA,,2019-20,Franklin - Oak Street Elementary,1010030,0,60,59,68,68,48,56,0,0,0,0,0,0,0,0,359 +NA,NA,,2019-20,Franklin - Parmenter,1010032,0,63,51,49,64,51,67,0,0,0,0,0,0,0,0,345 +NA,NA,,2019-20,Franklin - Remington Middle,1010310,0,0,0,0,0,0,0,122,126,153,0,0,0,0,0,401 +NA,NA,,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,0,0,0,0,0,0,0,153,137,106,109,0,505 +NA,NA,,2019-20,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,0,0,0,0,0,0,0,0,191,154,212,175,0,732 +NA,NA,,2019-20,Freetown-Lakeville - Assawompset Elementary School,6650002,0,113,125,117,119,0,0,0,0,0,0,0,0,0,0,474 +NA,NA,,2019-20,Freetown-Lakeville - Freetown Elementary School,6650001,57,106,91,107,85,0,0,0,0,0,0,0,0,0,0,446 +NA,NA,,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,0,0,0,0,0,0,0,232,249,262,1,0,0,0,0,744 +NA,NA,,2019-20,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,0,0,232,203,1,0,0,0,0,0,0,0,436 +NA,NA,,2019-20,Frontier - Frontier Regional,6700505,0,0,0,0,0,0,0,0,122,123,96,102,109,96,7,655 +NA,NA,,2019-20,Gardner - Elm Street School,1030001,0,0,0,180,165,189,0,0,0,0,0,0,0,0,0,534 +NA,NA,,2019-20,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,0,0,0,0,0,0,0,34,10,28,54,0,126 +NA,NA,,2019-20,Gardner - Gardner High,1030505,0,0,0,0,0,0,0,0,0,191,138,105,132,118,5,689 +NA,NA,,2019-20,Gardner - Gardner Middle School,1030405,0,0,0,0,0,0,200,186,200,0,0,0,0,0,0,586 +NA,NA,,2019-20,Gardner - Waterford Street,1030020,75,176,160,0,0,0,0,0,0,0,0,0,0,0,0,411 +NA,NA,,2019-20,Gateway - Chester Elementary,6720059,16,13,21,17,12,23,18,0,0,0,0,0,0,0,0,120 +NA,NA,,2019-20,Gateway - Gateway Regional High,6720505,0,0,0,0,0,0,0,0,0,0,53,37,61,48,6,205 +NA,NA,,2019-20,Gateway - Gateway Regional Middle School,6720405,0,0,0,0,0,0,0,66,62,66,0,0,0,0,0,194 +NA,NA,,2019-20,Gateway - Littleville Elementary School,6720143,40,36,35,56,39,42,60,0,0,0,0,0,0,0,0,308 +NA,NA,,2019-20,Georgetown - Georgetown High School,1050505,0,0,0,0,0,0,0,0,0,0,85,96,91,106,0,378 +NA,NA,,2019-20,Georgetown - Georgetown Middle School,1050305,0,0,0,0,0,0,0,0,88,96,0,0,0,0,0,184 +NA,NA,,2019-20,Georgetown - Penn Brook,1050010,0,105,111,106,91,105,87,116,0,0,0,0,0,0,0,721 +NA,NA,,2019-20,Georgetown - Perley Elementary,1050005,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85 +NA,NA,,2019-20,Gill-Montague - Gill Elementary,6740005,0,20,15,20,19,20,19,27,0,0,0,0,0,0,0,140 +NA,NA,,2019-20,Gill-Montague - Great Falls Middle,6740310,0,0,0,0,0,0,0,60,79,85,0,0,0,0,0,224 +NA,NA,,2019-20,Gill-Montague - Hillcrest Elementary School,6740015,38,51,64,0,0,0,0,0,0,0,0,0,0,0,0,153 +NA,NA,,2019-20,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,59,47,55,55,0,0,0,0,0,0,0,0,216 +NA,NA,,2019-20,Gill-Montague - Turners Fall High,6740505,0,0,0,0,0,0,0,0,0,0,43,42,60,49,4,198 +NA,NA,,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,0,0,0,0,0,94,93,89,91,48,39,24,29,0,507 +NA,NA,,2019-20,Gloucester - Beeman Memorial,1070010,0,56,58,49,57,53,56,0,0,0,0,0,0,0,0,329 +NA,NA,,2019-20,Gloucester - East Gloucester Elementary,1070020,0,34,34,24,25,45,40,0,0,0,0,0,0,0,0,202 +NA,NA,,2019-20,Gloucester - Gloucester High,1070505,0,0,0,0,0,0,0,0,0,0,230,208,150,175,5,768 +NA,NA,,2019-20,Gloucester - Gloucester PreSchool,1070025,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116 +NA,NA,,2019-20,Gloucester - Plum Cove School,1070042,0,34,38,36,34,35,29,0,0,0,0,0,0,0,0,206 +NA,NA,,2019-20,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,0,0,0,0,218,202,237,0,0,0,0,0,657 +NA,NA,,2019-20,Gloucester - Veterans Memorial,1070045,0,44,27,30,42,37,32,0,0,0,0,0,0,0,0,212 +NA,NA,,2019-20,Gloucester - West Parish,1070050,0,58,55,68,57,65,58,0,0,0,0,0,0,0,0,361 +NA,NA,,2019-20,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 +NA,NA,,2019-20,Grafton - Grafton High School,1100505,0,0,0,0,0,0,0,0,0,0,239,248,183,198,4,872 +NA,NA,,2019-20,Grafton - Grafton Middle,1100305,0,0,0,0,0,0,0,0,270,260,0,0,0,0,0,530 +NA,NA,,2019-20,Grafton - Millbury Street Elementary School,1100200,0,0,0,129,135,128,148,141,0,0,0,0,0,0,0,681 +NA,NA,,2019-20,Grafton - North Grafton Elementary,1100025,47,107,103,0,0,0,0,0,0,0,0,0,0,0,0,257 +NA,NA,,2019-20,Grafton - North Street Elementary School,1100030,0,0,0,110,101,110,140,104,0,0,0,0,0,0,0,565 +NA,NA,,2019-20,Grafton - South Grafton Elementary,1100005,70,130,100,0,0,0,0,0,0,0,0,0,0,0,0,300 +NA,NA,,2019-20,Granby - East Meadow,1110004,37,57,66,55,51,55,42,49,0,0,0,0,0,0,0,412 +NA,NA,,2019-20,Granby - Granby Jr Sr High School,1110505,0,0,0,0,0,0,0,0,52,57,58,65,55,54,0,341 +NA,NA,,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,0,0,0,0,0,0,0,0,0,0,372,369,357,335,0,1433 +NA,NA,,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0,0,0,0,0,0,0,0,0,0,432,406,388,365,0,1591 +NA,NA,,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,0,0,0,0,0,0,0,0,0,0,607,584,557,510,13,2271 +NA,NA,,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,0,0,0,0,0,0,0,0,0,0,549,542,515,518,0,2124 +NA,NA,,2019-20,Greenfield - Discovery School at Four Corners,1140025,0,55,45,53,51,51,0,0,0,0,0,0,0,0,0,255 +NA,NA,,2019-20,Greenfield - Federal Street School,1140010,0,39,46,53,54,45,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2019-20,Greenfield - Greenfield High,1140505,0,0,0,0,0,0,0,0,0,118,104,117,79,66,0,484 +NA,NA,,2019-20,Greenfield - Greenfield Middle,1140305,0,0,0,0,0,0,126,137,118,0,0,0,0,0,0,381 +NA,NA,,2019-20,Greenfield - Newton School,1140035,0,67,49,42,39,43,0,0,0,0,0,0,0,0,0,240 +NA,NA,,2019-20,Greenfield - The Academy of Early Learning at North Parish,1140005,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121 +NA,NA,,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,0,15,19,28,22,26,34,59,60,76,110,72,78,64,0,663 +NA,NA,,2019-20,Groton-Dunstable - Boutwell School,6730001,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58 +NA,NA,,2019-20,Groton-Dunstable - Florence Roche School,6730010,0,95,107,109,111,106,0,0,0,0,0,0,0,0,0,528 +NA,NA,,2019-20,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,0,0,0,0,0,0,0,168,178,192,183,4,725 +NA,NA,,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,0,0,0,197,171,184,203,0,0,0,0,0,755 +NA,NA,,2019-20,Groton-Dunstable - Swallow/Union School,6730005,0,55,63,60,54,55,0,0,0,0,0,0,0,0,0,287 +NA,NA,,2019-20,Hadley - Hadley Elementary,1170015,35,29,36,26,34,39,33,48,0,0,0,0,0,0,0,280 +NA,NA,,2019-20,Hadley - Hopkins Academy,1170505,0,0,0,0,0,0,0,0,49,51,38,39,40,31,1,249 +NA,NA,,2019-20,Halifax - Halifax Elementary,1180005,0,64,83,92,100,82,82,83,0,0,0,0,0,0,0,586 +NA,NA,,2019-20,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,43,46,43,40,44,41,0,0,0,0,0,0,0,0,257 +NA,NA,,2019-20,Hamilton-Wenham - Cutler School,6750010,0,38,45,63,44,45,43,0,0,0,0,0,0,0,0,278 +NA,NA,,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,0,0,0,0,0,0,0,0,0,134,135,143,139,0,551 +NA,NA,,2019-20,Hamilton-Wenham - Miles River Middle,6750310,0,0,0,0,0,0,0,142,139,137,0,0,0,0,0,418 +NA,NA,,2019-20,Hamilton-Wenham - Winthrop School,6750015,39,64,45,44,45,38,57,0,0,0,0,0,0,0,0,332 +NA,NA,,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,0,0,0,0,0,0,0,91,92,85,84,66,57,49,0,524 +NA,NA,,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,0,0,0,0,0,0,0,67,67,57,43,28,0,0,0,262 +NA,NA,,2019-20,Hampden-Wilbraham - Green Meadows Elementary,6800005,26,47,36,46,41,42,42,14,15,13,0,0,0,0,0,322 +NA,NA,,2019-20,Hampden-Wilbraham - Mile Tree Elementary,6800025,62,148,152,0,0,0,0,0,0,0,0,0,0,0,0,362 +NA,NA,,2019-20,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0,0,0,0,0,0,0,0,0,258,283,247,261,4,1053 +NA,NA,,2019-20,Hampden-Wilbraham - Soule Road,6800030,0,0,0,0,0,160,160,0,0,0,0,0,0,0,0,320 +NA,NA,,2019-20,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,153,171,0,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2019-20,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,0,0,0,0,214,198,212,0,0,0,0,0,624 +NA,NA,,2019-20,Hampshire - Hampshire Regional High,6830505,0,0,0,0,0,0,0,0,121,142,104,137,105,119,6,734 +NA,NA,,2019-20,Hancock - Hancock Elementary,1210005,8,11,5,4,5,4,6,4,0,0,0,0,0,0,0,47 +NA,NA,,2019-20,Hanover - Cedar Elementary,1220004,80,198,200,0,0,0,0,0,0,0,0,0,0,0,0,478 +NA,NA,,2019-20,Hanover - Center Elementary,1220005,0,0,0,169,207,195,0,0,0,0,0,0,0,0,0,571 +NA,NA,,2019-20,Hanover - Hanover High,1220505,0,0,0,0,0,0,0,0,0,0,172,191,213,190,3,769 +NA,NA,,2019-20,Hanover - Hanover Middle,1220305,0,0,0,0,0,0,207,185,215,224,0,0,0,0,0,831 +NA,NA,,2019-20,Harvard - Bromfield,1250505,0,0,0,0,0,0,0,95,80,84,74,99,99,88,0,619 +NA,NA,,2019-20,Harvard - Hildreth Elementary School,1250005,17,58,58,74,70,80,72,0,0,0,0,0,0,0,0,429 +NA,NA,,2019-20,Hatfield - Hatfield Elementary,1270005,17,28,35,21,39,28,37,38,0,0,0,0,0,0,0,243 +NA,NA,,2019-20,Hatfield - Smith Academy,1270505,0,0,0,0,0,0,0,0,39,30,25,40,23,31,0,188 +NA,NA,,2019-20,Haverhill - Bradford Elementary,1280008,0,115,112,109,109,75,0,0,0,0,0,0,0,0,0,520 +NA,NA,,2019-20,Haverhill - Caleb Dustin Hunking School,1280030,0,84,90,92,73,93,169,174,174,214,0,0,0,0,0,1163 +NA,NA,,2019-20,Haverhill - Consentino Middle School,1280100,0,0,0,0,0,0,103,206,224,216,0,0,0,0,0,749 +NA,NA,,2019-20,Haverhill - Crowell,1280515,0,0,0,0,0,0,0,0,0,0,14,8,2,0,0,24 +NA,NA,,2019-20,Haverhill - Dr Paul Nettle,1280050,0,0,0,0,0,0,173,135,147,125,0,0,0,0,0,580 +NA,NA,,2019-20,Haverhill - Golden Hill,1280026,0,81,95,111,125,114,0,0,0,0,0,0,0,0,0,526 +NA,NA,,2019-20,Haverhill - Greenleaf Academy,1280033,0,0,0,0,0,0,0,1,3,5,4,9,7,2,0,31 +NA,NA,,2019-20,Haverhill - Haverhill High,1280505,0,0,0,0,0,0,0,0,0,0,506,426,479,396,25,1832 +NA,NA,,2019-20,Haverhill - John G Whittier,1280085,0,0,0,0,0,0,101,137,149,126,0,0,0,0,0,513 +NA,NA,,2019-20,Haverhill - Moody,1280045,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207 +NA,NA,,2019-20,Haverhill - Pentucket Lake Elementary,1280054,0,80,94,104,139,129,0,0,0,0,0,0,0,0,0,546 +NA,NA,,2019-20,Haverhill - Silver Hill Elementary School,1280067,0,83,72,91,113,126,140,0,0,0,0,0,0,0,0,625 +NA,NA,,2019-20,Haverhill - TEACH,1280073,0,0,0,1,2,2,5,1,2,2,2,1,2,0,9,29 +NA,NA,,2019-20,Haverhill - Tilton,1280075,0,84,121,108,96,0,0,0,0,0,0,0,0,0,0,409 +NA,NA,,2019-20,Haverhill - Tilton Upper Middle School,1280105,0,0,0,0,0,104,34,27,0,0,0,0,0,0,0,165 +NA,NA,,2019-20,Haverhill - Walnut Square,1280080,0,54,48,42,0,0,0,0,0,0,0,0,0,0,0,144 +NA,NA,,2019-20,Hawlemont - Hawlemont Regional,6850005,23,16,15,17,28,18,18,8,0,0,0,0,0,0,0,143 +NA,NA,,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,0,0,0,0,0,0,0,73,80,54,0,0,0,0,0,207 +NA,NA,,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,36,33,35,36,31,34,34,33,35,0,0,0,0,0,307 +NA,NA,,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,20,20,21,22,22,22,32,32,27,0,0,0,0,0,218 +NA,NA,,2019-20,Hingham - East Elementary School,1310005,70,81,74,70,76,84,70,0,0,0,0,0,0,0,0,525 +NA,NA,,2019-20,Hingham - Hingham High,1310505,0,0,0,0,0,0,0,0,0,0,343,330,318,306,5,1302 +NA,NA,,2019-20,Hingham - Hingham Middle School,1310410,0,0,0,0,0,0,0,356,307,336,0,0,0,0,0,999 +NA,NA,,2019-20,Hingham - Plymouth River,1310019,0,60,64,77,68,78,81,0,0,0,0,0,0,0,0,428 +NA,NA,,2019-20,Hingham - South Elementary,1310020,0,80,84,90,82,90,87,0,0,0,0,0,0,0,0,513 +NA,NA,,2019-20,Hingham - Wm L Foster Elementary,1310010,0,83,88,80,90,86,68,0,0,0,0,0,0,0,0,495 +NA,NA,,2019-20,Holbrook - Holbrook Middle High School,1330505,0,0,0,0,0,0,0,106,94,121,89,80,62,74,4,630 +NA,NA,,2019-20,Holbrook - John F Kennedy,1330018,42,106,117,104,110,110,90,0,0,0,0,0,0,0,0,679 +NA,NA,,2019-20,Holland - Holland Elementary,1350005,38,18,31,35,31,25,32,22,0,0,0,0,0,0,0,232 +NA,NA,,2019-20,Holliston - Holliston High,1360505,0,0,0,0,0,0,0,0,0,0,203,218,195,222,5,843 +NA,NA,,2019-20,Holliston - Miller School,1360007,0,0,0,0,234,228,227,0,0,0,0,0,0,0,0,689 +NA,NA,,2019-20,Holliston - Placentino Elementary,1360010,105,194,177,210,0,0,0,0,0,0,0,0,0,0,0,686 +NA,NA,,2019-20,Holliston - Robert H. Adams Middle School,1360305,0,0,0,0,0,0,0,229,235,228,0,0,0,0,0,692 +NA,NA,,2019-20,Holyoke - E N White Elementary,1370045,87,66,63,54,59,52,56,0,0,0,0,0,0,0,0,437 +NA,NA,,2019-20,Holyoke - H.B. Lawrence School,1370070,0,66,59,57,60,0,0,0,0,0,0,0,0,0,0,242 +NA,NA,,2019-20,Holyoke - Holyoke High,1370505,0,0,0,0,0,0,0,0,0,0,370,388,373,386,0,1517 +NA,NA,,2019-20,Holyoke - Holyoke STEM Academy,1370320,0,0,0,0,0,0,0,48,98,75,0,0,0,0,0,221 +NA,NA,,2019-20,Holyoke - Joseph Metcalf School,1370003,36,44,44,38,43,37,30,0,0,0,0,0,0,0,0,272 +NA,NA,,2019-20,Holyoke - Kelly Elementary,1370040,26,62,61,52,57,60,0,0,49,39,0,0,0,0,0,406 +NA,NA,,2019-20,Holyoke - Lt Clayre Sullivan Elementary,1370055,25,41,47,37,67,51,56,63,63,58,0,0,0,0,0,508 +NA,NA,,2019-20,Holyoke - Lt Elmer J McMahon Elementary,1370015,26,43,34,44,40,34,53,43,45,49,0,0,0,0,0,411 +NA,NA,,2019-20,Holyoke - Maurice A Donahue Elementary,1370060,39,47,61,55,49,52,47,45,48,41,0,0,0,0,0,484 +NA,NA,,2019-20,Holyoke - Morgan Full Service Community School,1370025,120,50,45,44,50,53,0,0,0,0,0,0,0,0,0,362 +NA,NA,,2019-20,Holyoke - Veritas Prep Holyoke,1370075,0,0,0,0,0,0,103,126,0,0,0,0,0,0,0,229 +NA,NA,,2019-20,Holyoke - William R. Peck School,1370030,0,0,0,0,0,43,57,60,53,48,0,0,0,0,0,261 +NA,NA,,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,0,81,81,77,86,82,81,74,75,64,0,0,0,0,0,701 +NA,NA,,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,6030020,62,88,80,78,79,0,0,0,0,0,0,0,0,0,0,387 +NA,NA,,2019-20,Hoosac Valley Regional - Hoosac Valley High School,6030505,0,0,0,0,0,0,0,0,0,92,59,73,43,71,3,341 +NA,NA,,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,6030315,0,0,0,0,0,71,106,104,94,0,0,0,0,0,0,375 +NA,NA,,2019-20,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,0,0,0,0,0,85,90,65,83,72,71,0,466 +NA,NA,,2019-20,Hopedale - Memorial,1380010,0,66,63,77,79,76,73,86,0,0,0,0,0,0,0,520 +NA,NA,,2019-20,Hopedale - Park Street School,1380003,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94 +NA,NA,,2019-20,Hopkinton - Elmwood,1390010,0,0,0,254,303,0,0,0,0,0,0,0,0,0,0,557 +NA,NA,,2019-20,Hopkinton - Hopkins Elementary School,1390015,0,0,0,0,0,287,288,0,0,0,0,0,0,0,0,575 +NA,NA,,2019-20,Hopkinton - Hopkinton High,1390505,0,0,0,0,0,0,0,0,0,0,318,289,323,294,5,1229 +NA,NA,,2019-20,Hopkinton - Hopkinton Middle School,1390305,0,0,0,0,0,0,0,287,316,255,0,0,0,0,0,858 +NA,NA,,2019-20,Hopkinton - Hopkinton Pre-School,1390003,80,0,0,0,0,0,0,0,0,0,0,0,0,0,0,80 +NA,NA,,2019-20,Hopkinton - Marathon Elementary School,1390005,0,268,295,0,0,0,0,0,0,0,0,0,0,0,0,563 +NA,NA,,2019-20,Hudson - C A Farley,1410030,15,78,77,86,85,85,0,0,0,0,0,0,0,0,0,426 +NA,NA,,2019-20,Hudson - David J. Quinn Middle School,1410410,0,0,0,0,0,0,207,214,203,0,0,0,0,0,0,624 +NA,NA,,2019-20,Hudson - Forest Avenue Elementary,1410015,0,70,63,86,68,72,0,0,0,0,0,0,0,0,0,359 +NA,NA,,2019-20,Hudson - Hudson High,1410505,0,0,0,0,0,0,0,0,0,217,190,165,143,183,0,898 +NA,NA,,2019-20,Hudson - Mulready Elementary,1410007,13,48,54,45,48,51,0,0,0,0,0,0,0,0,0,259 +NA,NA,,2019-20,Hull - Hull High,1420505,0,0,0,0,0,0,0,0,0,0,61,61,76,76,0,274 +NA,NA,,2019-20,Hull - Lillian M Jacobs,1420015,55,52,59,60,56,57,64,0,0,0,0,0,0,0,0,403 +NA,NA,,2019-20,Hull - Memorial Middle,1420305,0,0,0,0,0,0,0,61,57,59,0,0,0,0,0,177 +NA,NA,,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,0,0,0,0,0,0,100,100,101,100,110,101,99,87,0,798 +NA,NA,,2019-20,Ipswich - Ipswich High,1440505,0,0,0,0,0,0,0,0,0,0,128,141,140,137,1,547 +NA,NA,,2019-20,Ipswich - Ipswich Middle School,1440305,0,0,0,0,0,0,0,125,127,147,0,0,0,0,0,399 +NA,NA,,2019-20,Ipswich - Paul F Doyon Memorial,1440007,0,53,60,66,59,63,65,0,0,0,0,0,0,0,0,366 +NA,NA,,2019-20,Ipswich - Winthrop,1440015,33,52,48,60,57,62,55,0,0,0,0,0,0,0,0,367 +NA,NA,,2019-20,King Philip - King Philip Middle School,6900510,0,0,0,0,0,0,0,0,352,383,0,0,0,0,0,735 +NA,NA,,2019-20,King Philip - King Philip Regional High,6900505,0,0,0,0,0,0,0,0,0,0,270,329,314,325,6,1244 +NA,NA,,2019-20,Kingston - Kingston Elementary,1450005,0,154,148,154,0,0,0,0,0,0,0,0,0,0,0,456 +NA,NA,,2019-20,Kingston - Kingston Intermediate,1450020,0,0,0,0,137,174,147,151,0,0,0,0,0,0,0,609 +NA,NA,,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,0,62,64,63,72,75,69,62,56,58,0,0,0,0,0,581 +NA,NA,,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,0,125,124,124,124,124,128,124,124,124,130,119,118,114,0,1602 +NA,NA,,2019-20,Lawrence - Alexander B Bruce,1490015,0,0,0,0,65,79,79,93,83,91,0,0,0,0,0,490 +NA,NA,,2019-20,Lawrence - Arlington Middle School,1490017,0,0,0,0,0,0,130,145,165,149,0,0,0,0,0,589 +NA,NA,,2019-20,Lawrence - Community Day Arlington,1490009,0,97,120,122,132,123,0,0,0,0,0,0,0,0,0,594 +NA,NA,,2019-20,Lawrence - Edward F. Parthum,1490053,0,113,133,140,131,145,0,0,0,0,0,0,0,0,0,662 +NA,NA,,2019-20,Lawrence - Emily G Wetherbee,1490080,0,55,62,71,75,81,65,78,74,68,0,0,0,0,0,629 +NA,NA,,2019-20,Lawrence - Francis M Leahy,1490040,0,0,82,87,96,98,99,0,0,0,0,0,0,0,0,462 +NA,NA,,2019-20,Lawrence - Frost Middle School,1490525,0,0,0,0,0,0,134,138,136,129,0,0,0,0,0,537 +NA,NA,,2019-20,Lawrence - Gerard A. Guilmette,1490022,0,0,123,140,129,125,0,0,0,0,0,0,0,0,0,517 +NA,NA,,2019-20,Lawrence - Guilmette Middle School,1490025,0,0,0,0,0,0,124,140,123,109,0,0,0,0,0,496 +NA,NA,,2019-20,Lawrence - High School Learning Center,1490536,0,0,0,0,0,0,0,0,0,0,1,19,49,81,0,150 +NA,NA,,2019-20,Lawrence - James F Hennessey,1490020,88,70,88,75,0,0,0,0,0,0,0,0,0,0,0,321 +NA,NA,,2019-20,Lawrence - John Breen School,1490003,184,130,0,0,0,0,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2019-20,Lawrence - John K Tarbox,1490075,0,0,66,55,50,73,57,0,0,0,0,0,0,0,0,301 +NA,NA,,2019-20,Lawrence - Lawlor Early Childhood Center,1490002,0,172,0,0,0,0,0,0,0,0,0,0,0,0,0,172 +NA,NA,,2019-20,Lawrence - Lawrence Family Public Academy,1490011,71,96,0,0,0,0,0,0,0,0,0,0,0,0,0,167 +NA,NA,,2019-20,Lawrence - Lawrence High School,1490515,0,0,0,0,0,0,0,0,0,0,919,886,723,760,33,3321 +NA,NA,,2019-20,Lawrence - Oliver Partnership School,1490048,0,0,103,87,106,98,88,0,0,0,0,0,0,0,0,482 +NA,NA,,2019-20,Lawrence - Parthum Middle School,1490027,0,0,0,0,0,0,138,161,156,139,0,0,0,0,0,594 +NA,NA,,2019-20,Lawrence - Robert Frost,1490018,0,95,117,106,129,134,0,0,0,0,0,0,0,0,0,581 +NA,NA,,2019-20,Lawrence - Rollins Early Childhood Center,1490001,130,79,0,0,0,0,0,0,0,0,0,0,0,0,0,209 +NA,NA,,2019-20,Lawrence - School for Exceptional Studies,1490537,0,1,2,7,8,7,11,9,16,13,11,10,14,7,12,128 +NA,NA,,2019-20,Lawrence - South Lawrence East Elementary School,1490004,0,0,149,139,147,161,139,0,0,0,0,0,0,0,0,735 +NA,NA,,2019-20,Lawrence - Spark Academy,1490085,0,0,0,0,0,0,0,160,158,156,0,0,0,0,0,474 +NA,NA,,2019-20,Lawrence - UP Academy Leonard Middle School,1490090,0,0,0,0,0,0,0,114,83,104,0,0,0,0,0,301 +NA,NA,,2019-20,Lawrence - UP Academy Oliver Middle School,1490049,0,0,0,0,0,0,0,97,109,118,0,0,0,0,0,324 +NA,NA,,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,82,81,84,84,82,82,79,76,82,48,0,0,0,0,0,780 +NA,NA,,2019-20,Lee - Lee Elementary,1500025,18,53,48,58,48,48,49,38,0,0,0,0,0,0,0,360 +NA,NA,,2019-20,Lee - Lee Middle/High School,1500505,0,0,0,0,0,0,0,0,53,58,66,59,65,50,2,353 +NA,NA,,2019-20,Leicester - Leicester Elementary,1510005,0,97,95,119,88,92,0,0,0,0,0,0,0,0,0,491 +NA,NA,,2019-20,Leicester - Leicester High,1510505,0,0,0,0,0,0,0,0,0,0,102,139,104,126,0,471 +NA,NA,,2019-20,Leicester - Leicester Integrated Preschool,1510001,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60 +NA,NA,,2019-20,Leicester - Leicester Middle,1510015,0,0,0,0,0,0,101,119,111,135,0,0,0,0,0,466 +NA,NA,,2019-20,Lenox - Lenox Memorial High,1520505,0,0,0,0,0,0,0,64,62,72,69,68,63,61,0,459 +NA,NA,,2019-20,Lenox - Morris,1520015,26,44,52,46,53,52,44,0,0,0,0,0,0,0,0,317 +NA,NA,,2019-20,Leominster - Bennett,1530003,113,0,0,0,0,0,0,0,0,0,0,0,0,0,0,113 +NA,NA,,2019-20,Leominster - Center For Technical Education Innovation,1530605,0,0,0,0,0,0,0,0,0,0,258,172,148,144,0,722 +NA,NA,,2019-20,Leominster - Fall Brook,1530007,0,71,115,118,100,121,112,0,0,0,0,0,0,0,0,637 +NA,NA,,2019-20,Leominster - Frances Drake School,1530010,0,99,86,77,87,98,95,0,0,0,0,0,0,0,0,542 +NA,NA,,2019-20,Leominster - Johnny Appleseed,1530025,0,88,113,109,119,100,138,0,0,0,0,0,0,0,0,667 +NA,NA,,2019-20,Leominster - Leominster Center for Excellence,1530515,0,0,0,0,0,0,0,0,0,0,10,9,15,9,0,43 +NA,NA,,2019-20,Leominster - Leominster High School,1530505,0,0,0,0,0,0,0,0,0,0,213,299,313,287,0,1112 +NA,NA,,2019-20,Leominster - Lincoln School,1530005,37,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37 +NA,NA,,2019-20,Leominster - Northwest,1530030,0,47,127,118,117,136,134,0,0,0,0,0,0,0,0,679 +NA,NA,,2019-20,Leominster - Priest Street,1530040,0,115,0,0,0,0,0,0,0,0,0,0,0,0,0,115 +NA,NA,,2019-20,Leominster - Samoset School,1530045,0,0,0,0,0,0,0,174,169,172,0,0,0,0,0,515 +NA,NA,,2019-20,Leominster - Sky View Middle School,1530320,0,0,0,0,0,0,0,311,285,300,0,0,0,0,0,896 +NA,NA,,2019-20,Leverett - Leverett Elementary,1540005,19,15,17,20,18,15,23,15,0,0,0,0,0,0,0,142 +NA,NA,,2019-20,Lexington - Bowman,1550008,0,61,79,97,93,100,101,0,0,0,0,0,0,0,0,531 +NA,NA,,2019-20,Lexington - Bridge,1550006,0,62,74,79,90,109,111,0,0,0,0,0,0,0,0,525 +NA,NA,,2019-20,Lexington - Fiske,1550015,0,61,69,82,74,89,106,0,0,0,0,0,0,0,0,481 +NA,NA,,2019-20,Lexington - Harrington,1550030,0,57,78,83,94,81,78,0,0,0,0,0,0,0,0,471 +NA,NA,,2019-20,Lexington - Jonas Clarke Middle,1550305,0,0,0,0,0,0,0,315,304,307,0,0,0,0,0,926 +NA,NA,,2019-20,Lexington - Joseph Estabrook,1550010,0,82,87,102,94,108,101,0,0,0,0,0,0,0,0,574 +NA,NA,,2019-20,Lexington - Lexington Children's Place,1550001,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68 +NA,NA,,2019-20,Lexington - Lexington High,1550505,0,0,0,0,0,0,0,0,0,0,607,591,526,551,0,2275 +NA,NA,,2019-20,Lexington - Maria Hastings,1550035,0,59,66,64,93,76,79,0,0,0,0,0,0,0,0,437 +NA,NA,,2019-20,Lexington - Wm Diamond Middle,1550310,0,0,0,0,0,0,0,300,321,281,0,0,0,0,0,902 +NA,NA,,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,0,0,0,0,0,0,0,90,90,87,0,0,0,0,0,267 +NA,NA,,2019-20,Lincoln - Hanscom Middle,1570305,0,0,0,0,0,55,63,57,44,39,0,0,0,0,0,258 +NA,NA,,2019-20,Lincoln - Hanscom Primary,1570006,66,59,64,67,55,0,0,0,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Lincoln - Lincoln School,1570025,26,50,76,52,69,50,58,58,48,58,0,0,0,0,0,545 +NA,NA,,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,0,0,0,0,0,0,0,0,0,0,353,411,389,352,7,1512 +NA,NA,,2019-20,Littleton - Littleton High School,1580505,0,0,0,0,0,0,0,0,0,0,111,99,109,120,1,440 +NA,NA,,2019-20,Littleton - Littleton Middle School,1580305,0,0,0,0,0,0,0,143,122,125,0,0,0,0,0,390 +NA,NA,,2019-20,Littleton - Russell St Elementary,1580015,0,0,0,0,118,132,138,0,0,0,0,0,0,0,0,388 +NA,NA,,2019-20,Littleton - Shaker Lane Elementary,1580005,65,116,127,137,0,0,0,0,0,0,0,0,0,0,0,445 +NA,NA,,2019-20,Longmeadow - Blueberry Hill,1590005,0,49,72,67,71,76,63,0,0,0,0,0,0,0,0,398 +NA,NA,,2019-20,Longmeadow - Center,1590010,0,73,77,67,71,69,66,0,0,0,0,0,0,0,0,423 +NA,NA,,2019-20,Longmeadow - Glenbrook Middle,1590017,0,0,0,0,0,0,0,110,108,112,0,0,0,0,0,330 +NA,NA,,2019-20,Longmeadow - Longmeadow High,1590505,0,0,0,0,0,0,0,0,0,0,218,247,221,256,0,942 +NA,NA,,2019-20,Longmeadow - Williams Middle,1590305,0,0,0,0,0,0,0,129,112,112,0,0,0,0,0,353 +NA,NA,,2019-20,Longmeadow - Wolf Swamp Road,1590025,57,55,60,55,53,54,67,0,0,0,0,0,0,0,0,401 +NA,NA,,2019-20,Lowell - Abraham Lincoln,1600020,46,86,93,92,91,85,0,0,0,0,0,0,0,0,0,493 +NA,NA,,2019-20,Lowell - B.F. Butler Middle School,1600310,0,0,0,0,0,0,141,147,144,139,0,0,0,0,0,571 +NA,NA,,2019-20,Lowell - Bartlett Community Partnership,1600090,41,40,45,42,43,44,62,56,55,60,0,0,0,0,0,488 +NA,NA,,2019-20,Lowell - Cardinal O'Connell Early Learning Center,1600001,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109 +NA,NA,,2019-20,Lowell - Charles W Morey,1600030,57,82,93,90,89,87,0,0,0,0,0,0,0,0,0,498 +NA,NA,,2019-20,Lowell - Charlotte M Murkland Elementary,1600080,46,77,89,89,93,81,0,0,0,0,0,0,0,0,0,475 +NA,NA,,2019-20,Lowell - Dr An Wang School,1600345,0,0,0,0,0,0,169,174,172,200,0,0,0,0,0,715 +NA,NA,,2019-20,Lowell - Dr Gertrude Bailey,1600002,30,92,95,91,92,89,0,0,0,0,0,0,0,0,0,489 +NA,NA,,2019-20,Lowell - Dr. Janice Adie Day School,1600605,3,3,7,7,11,7,3,1,5,4,0,1,0,1,0,53 +NA,NA,,2019-20,Lowell - Greenhalge,1600015,51,81,93,74,86,88,0,0,0,0,0,0,0,0,0,473 +NA,NA,,2019-20,Lowell - Henry J Robinson Middle,1600330,0,0,0,0,0,0,162,152,158,171,0,0,0,0,0,643 +NA,NA,,2019-20,Lowell - James S Daley Middle School,1600315,0,0,0,0,0,0,179,179,166,173,0,0,0,0,0,697 +NA,NA,,2019-20,Lowell - James Sullivan Middle School,1600340,0,0,0,0,0,0,160,166,175,175,0,0,0,0,0,676 +NA,NA,,2019-20,Lowell - John J Shaughnessy,1600050,30,86,97,87,87,94,0,0,0,0,0,0,0,0,0,481 +NA,NA,,2019-20,Lowell - Joseph McAvinnue,1600010,31,82,92,89,90,88,0,0,0,0,0,0,0,0,0,472 +NA,NA,,2019-20,Lowell - Kathryn P. Stoklosa Middle School,1600360,0,0,0,0,0,0,168,170,167,177,0,0,0,0,0,682 +NA,NA,,2019-20,Lowell - Laura Lee Therapeutic Day School,1600085,0,0,0,0,2,1,1,5,9,3,0,0,0,0,0,21 +NA,NA,,2019-20,Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,0,0,0,2,7,7,10,7,0,33 +NA,NA,,2019-20,Lowell - Lowell High,1600505,0,0,0,0,0,0,0,0,0,0,740,754,743,741,33,3011 +NA,NA,,2019-20,Lowell - Moody Elementary,1600027,0,41,48,46,45,45,0,0,0,0,0,0,0,0,0,225 +NA,NA,,2019-20,Lowell - Pawtucketville Memorial,1600036,28,92,93,92,92,92,0,0,0,0,0,0,0,0,0,489 +NA,NA,,2019-20,Lowell - Peter W Reilly,1600040,22,89,95,91,86,90,0,0,0,0,0,0,0,0,0,473 +NA,NA,,2019-20,Lowell - Pyne Arts,1600018,31,49,48,50,46,48,59,60,55,59,0,0,0,0,0,505 +NA,NA,,2019-20,Lowell - Rogers STEM Academy,1600005,0,81,95,89,86,93,116,110,115,58,0,0,0,0,0,843 +NA,NA,,2019-20,Lowell - S Christa McAuliffe Elementary,1600075,49,78,99,77,90,98,0,0,0,0,0,0,0,0,0,491 +NA,NA,,2019-20,Lowell - The Career Academy,1600515,0,0,0,0,0,0,0,0,0,0,10,17,23,40,1,91 +NA,NA,,2019-20,Lowell - Washington,1600055,29,39,44,40,44,41,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,40,100,97,96,90,88,89,77,73,71,0,0,0,0,0,821 +NA,NA,,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,0,0,0,0,0,0,0,10,27,22,26,0,85 +NA,NA,,2019-20,Ludlow - Chapin Street Elementary School,1610020,0,0,0,163,163,0,0,0,0,0,0,0,0,0,0,326 +NA,NA,,2019-20,Ludlow - East Street Elementary School,1610010,88,161,147,0,0,0,0,0,0,0,0,0,0,0,0,396 +NA,NA,,2019-20,Ludlow - Ludlow Senior High,1610505,0,0,0,0,0,0,0,0,0,0,241,222,208,195,2,868 +NA,NA,,2019-20,Ludlow - Paul R Baird Middle,1610305,0,0,0,0,0,0,0,208,205,199,0,0,0,0,0,612 +NA,NA,,2019-20,Ludlow - Veterans Park Elementary,1610023,0,0,0,0,0,165,171,0,0,0,0,0,0,0,0,336 +NA,NA,,2019-20,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,6 +NA,NA,,2019-20,Lunenburg - Lunenburg High,1620505,0,0,0,0,0,0,0,0,0,0,107,126,118,101,0,452 +NA,NA,,2019-20,Lunenburg - Lunenburg Middle School,1620305,0,0,0,0,0,0,0,141,124,141,0,0,0,0,0,406 +NA,NA,,2019-20,Lunenburg - Lunenburg Primary School,1620010,38,121,147,111,0,0,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2019-20,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,0,120,122,118,0,0,0,0,0,0,0,0,360 +NA,NA,,2019-20,Lynn - A Drewicz Elementary,1630016,7,77,76,76,72,81,81,0,0,0,0,0,0,0,0,470 +NA,NA,,2019-20,Lynn - Aborn,1630011,0,37,52,42,39,37,41,0,0,0,0,0,0,0,0,248 +NA,NA,,2019-20,Lynn - Breed Middle School,1630405,0,0,0,0,0,0,0,517,518,320,0,0,0,0,0,1355 +NA,NA,,2019-20,Lynn - Brickett Elementary,1630020,0,48,66,54,58,57,54,0,0,0,0,0,0,0,0,337 +NA,NA,,2019-20,Lynn - Capt William G Shoemaker,1630090,10,47,68,69,55,40,46,0,0,0,0,0,0,0,0,335 +NA,NA,,2019-20,Lynn - Classical High,1630505,0,0,0,0,0,0,0,0,0,0,481,525,385,392,0,1783 +NA,NA,,2019-20,Lynn - Cobbet Elementary,1630035,0,105,108,97,109,96,97,0,0,0,0,0,0,0,0,612 +NA,NA,,2019-20,Lynn - E J Harrington,1630045,86,102,108,102,98,85,97,0,0,0,0,0,0,0,0,678 +NA,NA,,2019-20,Lynn - Edward A Sisson,1630095,6,63,76,84,75,74,72,0,0,0,0,0,0,0,0,450 +NA,NA,,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,0,0,0,0,14,9,12,13,23,26,19,0,116 +NA,NA,,2019-20,Lynn - Hood,1630055,45,71,74,88,87,74,88,0,0,0,0,0,0,0,0,527 +NA,NA,,2019-20,Lynn - Ingalls,1630060,0,167,97,112,103,96,106,0,0,0,0,0,0,0,0,681 +NA,NA,,2019-20,Lynn - Julia F Callahan,1630030,60,42,63,56,52,70,68,0,0,0,0,0,0,0,0,411 +NA,NA,,2019-20,Lynn - Lincoln-Thomson,1630070,0,24,35,29,47,44,46,0,0,0,0,0,0,0,0,225 +NA,NA,,2019-20,Lynn - Lynn English High,1630510,0,0,0,0,0,0,0,0,0,0,532,576,475,383,0,1966 +NA,NA,,2019-20,Lynn - Lynn Vocational Technical Institute,1630605,68,2,1,3,2,1,0,1,2,287,287,276,244,243,34,1451 +NA,NA,,2019-20,Lynn - Lynn Woods,1630075,0,24,28,27,30,32,39,0,0,0,0,0,0,0,0,180 +NA,NA,,2019-20,Lynn - Pickering Middle,1630420,0,0,0,0,0,0,0,225,233,181,0,0,0,0,0,639 +NA,NA,,2019-20,Lynn - Robert L Ford,1630050,0,0,97,105,96,116,83,0,0,0,0,0,0,0,0,497 +NA,NA,,2019-20,Lynn - Sewell-Anderson,1630085,0,108,30,45,40,37,49,0,0,0,0,0,0,0,0,309 +NA,NA,,2019-20,Lynn - Thurgood Marshall Mid,1630305,0,0,0,0,0,0,0,497,460,373,0,0,0,0,0,1330 +NA,NA,,2019-20,Lynn - Tracy,1630100,0,0,87,93,87,81,73,0,0,0,0,0,0,0,0,421 +NA,NA,,2019-20,Lynn - Washington Elementary School,1630005,0,79,78,75,84,58,59,0,0,0,0,0,0,0,0,433 +NA,NA,,2019-20,Lynn - William R Fallon,1630080,0,0,3,6,8,8,8,0,0,0,0,0,0,0,0,33 +NA,NA,,2019-20,Lynn - Wm P Connery,1630040,28,87,83,107,98,109,89,0,0,0,0,0,0,0,0,601 +NA,NA,,2019-20,Lynnfield - Huckleberry Hill,1640010,0,101,81,86,89,105,0,0,0,0,0,0,0,0,0,462 +NA,NA,,2019-20,Lynnfield - Lynnfield High,1640505,0,0,0,0,0,0,0,0,0,0,135,142,173,155,0,605 +NA,NA,,2019-20,Lynnfield - Lynnfield Middle School,1640405,0,0,0,0,0,0,186,165,161,175,0,0,0,0,0,687 +NA,NA,,2019-20,Lynnfield - Lynnfield Preschool,1640005,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40 +NA,NA,,2019-20,Lynnfield - Summer Street,1640020,0,69,84,97,68,90,0,0,0,0,0,0,0,0,0,408 +NA,NA,,2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,0,0,0,0,0,0,0,0,0,51,48,0,99 +NA,NA,,2019-20,Malden - Beebe,1650003,0,101,114,99,97,97,103,90,98,104,0,0,0,0,0,903 +NA,NA,,2019-20,Malden - Ferryway,1650013,0,105,98,101,97,98,103,97,122,106,0,0,0,0,0,927 +NA,NA,,2019-20,Malden - Forestdale,1650027,0,60,59,52,61,58,75,72,75,57,0,0,0,0,0,569 +NA,NA,,2019-20,Malden - Linden,1650047,0,111,82,89,100,91,101,91,97,94,0,0,0,0,0,856 +NA,NA,,2019-20,Malden - Malden Early Learning Center,1650049,330,0,0,0,0,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2019-20,Malden - Malden High,1650505,0,0,0,0,0,0,0,0,0,0,487,454,433,384,15,1773 +NA,NA,,2019-20,Malden - Salemwood,1650057,0,97,105,120,129,139,141,127,127,138,0,0,0,0,0,1123 +NA,NA,,2019-20,Manchester Essex Regional - Essex Elementary,6980020,0,39,33,40,30,36,41,0,0,0,0,0,0,0,0,219 +NA,NA,,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,0,0,0,0,0,0,0,0,125,127,121,110,0,483 +NA,NA,,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,0,0,0,0,0,0,118,128,111,0,0,0,0,0,357 +NA,NA,,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,6980010,12,44,42,46,61,44,62,0,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Mansfield - Everett W Robinson,1670007,0,205,228,235,0,0,0,0,0,0,0,0,0,0,0,668 +NA,NA,,2019-20,Mansfield - Harold L Qualters Middle,1670035,0,0,0,0,0,0,0,283,267,302,0,0,0,0,0,852 +NA,NA,,2019-20,Mansfield - Jordan/Jackson Elementary,1670014,0,0,0,0,254,268,258,0,0,0,0,0,0,0,0,780 +NA,NA,,2019-20,Mansfield - Mansfield High,1670505,0,0,0,0,0,0,0,0,0,0,310,276,331,308,15,1240 +NA,NA,,2019-20,Mansfield - Roland Green School,1670003,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111 +NA,NA,,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505,0,0,0,0,0,0,0,0,0,0,54,30,50,27,0,161 +NA,NA,,2019-20,Marblehead - Dr. Samuel C. Eveleth,1680025,0,83,0,0,0,0,0,0,0,0,0,0,0,0,0,83 +NA,NA,,2019-20,Marblehead - Glover,1680020,43,81,76,96,88,0,0,0,0,0,0,0,0,0,0,384 +NA,NA,,2019-20,Marblehead - L H Coffin,1680010,0,0,114,112,0,0,0,0,0,0,0,0,0,0,0,226 +NA,NA,,2019-20,Marblehead - Marblehead High,1680505,0,0,0,0,0,0,0,0,0,0,231,258,253,256,4,1002 +NA,NA,,2019-20,Marblehead - Marblehead Veterans Middle School,1680300,0,0,0,0,0,0,0,0,260,228,0,0,0,0,0,488 +NA,NA,,2019-20,Marblehead - Village School,1680016,0,0,0,0,157,204,222,197,0,0,0,0,0,0,0,780 +NA,NA,,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,0,0,46,52,52,19,36,0,0,0,0,0,205 +NA,NA,,2019-20,Marion - Sippican,1690005,21,55,61,53,58,64,59,62,0,0,0,0,0,0,0,433 +NA,NA,,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,0,0,0,0,0,413,371,384,310,0,0,0,0,0,1478 +NA,NA,,2019-20,Marlborough - Charles Jaworek School,1700030,0,173,159,156,156,167,0,0,0,0,0,0,0,0,0,811 +NA,NA,,2019-20,Marlborough - Early Childhood Center,1700006,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175 +NA,NA,,2019-20,Marlborough - Francis J Kane,1700008,0,103,111,114,125,113,0,0,0,0,0,0,0,0,0,566 +NA,NA,,2019-20,Marlborough - Marlborough High,1700505,0,0,0,0,0,0,0,0,0,0,278,256,260,246,10,1050 +NA,NA,,2019-20,Marlborough - Richer,1700025,0,141,139,128,124,145,0,0,0,0,0,0,0,0,0,677 +NA,NA,,2019-20,Marshfield - Daniel Webster,1710015,75,42,42,53,53,57,49,0,0,0,0,0,0,0,0,371 +NA,NA,,2019-20,Marshfield - Eames Way School,1710005,0,32,36,41,42,37,41,0,0,0,0,0,0,0,0,229 +NA,NA,,2019-20,Marshfield - Furnace Brook Middle,1710310,0,0,0,0,0,0,0,291,335,278,0,0,0,0,0,904 +NA,NA,,2019-20,Marshfield - Gov Edward Winslow,1710020,0,63,59,56,69,71,58,0,0,0,0,0,0,0,0,376 +NA,NA,,2019-20,Marshfield - Marshfield High,1710505,0,0,0,0,0,0,0,0,0,0,334,339,309,325,0,1307 +NA,NA,,2019-20,Marshfield - Martinson Elementary,1710025,54,82,60,62,78,49,82,0,0,0,0,0,0,0,0,467 +NA,NA,,2019-20,Marshfield - South River,1710010,0,50,29,49,61,51,66,0,0,0,0,0,0,0,0,306 +NA,NA,,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,7000505,0,0,0,0,0,0,0,0,0,0,180,157,171,157,5,670 +NA,NA,,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,0,14,17,15,12,17,16,13,19,21,3,14,6,5,0,172 +NA,NA,,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,0,62,58,59,63,61,57,0,0,0,0,0,0,0,0,360 +NA,NA,,2019-20,Masconomet - Masconomet Regional High School,7050505,0,0,0,0,0,0,0,0,0,0,287,292,283,282,0,1144 +NA,NA,,2019-20,Masconomet - Masconomet Regional Middle School,7050405,0,0,0,0,0,0,0,0,265,312,0,0,0,0,0,577 +NA,NA,,2019-20,Mashpee - Kenneth Coombs School,1720005,91,96,95,111,0,0,0,0,0,0,0,0,0,0,0,393 +NA,NA,,2019-20,Mashpee - Mashpee High,1720505,0,0,0,0,0,0,0,0,0,0,119,116,113,106,0,454 +NA,NA,,2019-20,Mashpee - Mashpee Middle School,1720020,0,0,0,0,0,0,0,0,147,109,0,0,0,0,0,256 +NA,NA,,2019-20,Mashpee - Quashnet School,1720035,0,0,0,0,100,120,117,123,0,0,0,0,0,0,0,460 +NA,NA,,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,51,92,98,98,95,100,95,95,90,94,87,83,70,75,0,1223 +NA,NA,,2019-20,Mattapoisett - Center,1730005,23,52,58,60,57,0,0,0,0,0,0,0,0,0,0,250 +NA,NA,,2019-20,Mattapoisett - Old Hammondtown,1730010,0,0,0,0,0,62,55,75,0,0,0,0,0,0,0,192 +NA,NA,,2019-20,Maynard - Fowler School,1740305,0,0,0,0,0,100,88,99,94,85,0,0,0,0,0,466 +NA,NA,,2019-20,Maynard - Green Meadow,1740010,50,101,100,112,99,0,0,0,0,0,0,0,0,0,0,462 +NA,NA,,2019-20,Maynard - Maynard High,1740505,0,0,0,0,0,0,0,0,0,0,71,90,81,94,1,337 +NA,NA,,2019-20,Medfield - Dale Street,1750005,0,0,0,0,0,204,194,0,0,0,0,0,0,0,0,398 +NA,NA,,2019-20,Medfield - Medfield Senior High,1750505,0,0,0,0,0,0,0,0,0,0,199,198,201,206,0,804 +NA,NA,,2019-20,Medfield - Memorial School,1750003,50,195,191,0,0,0,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2019-20,Medfield - Ralph Wheelock School,1750007,0,0,0,187,201,0,0,0,0,0,0,0,0,0,0,388 +NA,NA,,2019-20,Medfield - Thomas Blake Middle,1750305,0,0,0,0,0,0,0,193,186,196,0,0,0,0,0,575 +NA,NA,,2019-20,Medford - Brooks School,1760130,17,89,80,94,77,84,72,0,0,0,0,0,0,0,0,513 +NA,NA,,2019-20,Medford - Christopher Columbus,1760140,15,63,68,53,76,48,54,0,0,0,0,0,0,0,0,377 +NA,NA,,2019-20,Medford - Curtis-Tufts,1760510,0,0,0,0,0,0,0,0,0,0,0,6,5,3,0,14 +NA,NA,,2019-20,Medford - John J McGlynn Elementary School,1760068,35,79,66,81,73,77,86,0,0,0,0,0,0,0,0,497 +NA,NA,,2019-20,Medford - John J. McGlynn Middle School,1760320,0,0,0,0,0,0,0,163,152,139,0,0,0,0,0,454 +NA,NA,,2019-20,Medford - Madeleine Dugger Andrews,1760315,0,0,0,0,0,0,0,161,142,164,0,0,0,0,0,467 +NA,NA,,2019-20,Medford - Medford High,1760505,57,0,0,0,0,0,0,0,0,0,343,307,302,299,7,1315 +NA,NA,,2019-20,Medford - Milton Fuller Roberts,1760150,15,82,90,78,88,95,118,0,0,0,0,0,0,0,0,566 +NA,NA,,2019-20,Medway - Burke/Memorial Elementary School,1770015,0,0,0,154,151,172,0,0,0,0,0,0,0,0,0,477 +NA,NA,,2019-20,Medway - John D Mc Govern Elementary,1770013,40,145,149,0,0,0,0,0,0,0,0,0,0,0,0,334 +NA,NA,,2019-20,Medway - Medway High,1770505,0,0,0,0,0,0,0,0,0,0,162,178,154,189,0,683 +NA,NA,,2019-20,Medway - Medway Middle,1770305,0,0,0,0,0,0,161,186,171,166,0,0,0,0,0,684 +NA,NA,,2019-20,Melrose - Early Childhood Center,1780003,281,28,0,0,0,0,0,0,0,0,0,0,0,0,0,309 +NA,NA,,2019-20,Melrose - Herbert Clark Hoover,1780017,0,61,67,58,45,42,45,0,0,0,0,0,0,0,0,318 +NA,NA,,2019-20,Melrose - Horace Mann,1780025,0,48,48,48,49,44,47,0,0,0,0,0,0,0,0,284 +NA,NA,,2019-20,Melrose - Lincoln,1780020,0,54,67,68,82,75,68,0,0,0,0,0,0,0,0,414 +NA,NA,,2019-20,Melrose - Melrose High,1780505,0,0,0,0,0,0,0,0,0,0,221,242,244,274,5,986 +NA,NA,,2019-20,Melrose - Melrose Middle,1780305,0,0,0,0,0,0,0,287,273,258,0,0,0,0,0,818 +NA,NA,,2019-20,Melrose - Roosevelt,1780035,0,61,68,69,87,80,67,0,0,0,0,0,0,0,0,432 +NA,NA,,2019-20,Melrose - Winthrop,1780050,0,68,66,83,68,68,63,0,0,0,0,0,0,0,0,416 +NA,NA,,2019-20,Mendon-Upton - Henry P Clough,7100179,28,62,65,73,75,75,0,0,0,0,0,0,0,0,0,378 +NA,NA,,2019-20,Mendon-Upton - Memorial School,7100001,28,92,94,95,79,84,0,0,0,0,0,0,0,0,0,472 +NA,NA,,2019-20,Mendon-Upton - Miscoe Hill School,7100015,0,0,0,0,0,0,160,193,205,203,0,0,0,0,0,761 +NA,NA,,2019-20,Mendon-Upton - Nipmuc Regional High,7100510,0,0,0,0,0,0,0,0,0,0,151,174,159,154,3,641 +NA,NA,,2019-20,Methuen - Comprehensive Grammar School,1810050,23,111,106,111,113,126,107,139,130,106,0,0,0,0,0,1072 +NA,NA,,2019-20,Methuen - Donald P Timony Grammar,1810060,30,121,138,153,111,129,151,158,137,158,0,0,0,0,0,1286 +NA,NA,,2019-20,Methuen - Marsh Grammar School,1810030,30,113,119,108,155,119,123,129,136,141,0,0,0,0,0,1173 +NA,NA,,2019-20,Methuen - Methuen High,1810505,0,0,0,0,0,0,0,0,0,0,481,530,494,457,2,1964 +NA,NA,,2019-20,Methuen - Tenney Grammar School,1810055,34,131,143,140,138,148,143,141,173,165,0,0,0,0,0,1356 +NA,NA,,2019-20,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,101,109,109,102,116,0,0,0,0,0,0,0,0,537 +NA,NA,,2019-20,Middleborough - John T. Nichols Middle,1820305,0,0,0,0,0,0,0,259,261,263,0,0,0,0,0,783 +NA,NA,,2019-20,Middleborough - Mary K. Goode Elementary School,1820010,0,0,112,127,118,108,114,0,0,0,0,0,0,0,0,579 +NA,NA,,2019-20,Middleborough - Memorial Early Childhood Center,1820011,63,219,0,0,0,0,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2019-20,Middleborough - Middleborough High,1820505,0,0,0,0,0,0,0,0,0,0,221,219,182,178,8,808 +NA,NA,,2019-20,Middleton - Fuller Meadow,1840003,0,86,103,86,0,0,0,0,0,0,0,0,0,0,0,275 +NA,NA,,2019-20,Middleton - Howe-Manning,1840005,75,0,0,0,84,82,89,108,0,0,0,0,0,0,0,438 +NA,NA,,2019-20,Milford - Brookside,1850065,0,150,150,161,0,0,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2019-20,Milford - Memorial,1850010,0,161,152,161,0,0,0,0,0,0,0,0,0,0,0,474 +NA,NA,,2019-20,Milford - Milford High,1850505,0,0,0,0,0,0,0,0,0,0,354,318,304,279,11,1266 +NA,NA,,2019-20,Milford - Shining Star Early Childhood Center,1850075,182,0,0,0,0,0,0,0,0,0,0,0,0,0,0,182 +NA,NA,,2019-20,Milford - Stacy Middle,1850305,0,0,0,0,0,0,0,337,351,331,0,0,0,0,0,1019 +NA,NA,,2019-20,Milford - Woodland,1850090,0,0,0,0,328,344,333,0,0,0,0,0,0,0,0,1005 +NA,NA,,2019-20,Millbury - Elmwood Street,1860017,69,126,120,132,103,0,0,0,0,0,0,0,0,0,0,550 +NA,NA,,2019-20,Millbury - Millbury Junior/Senior High,1860505,0,0,0,0,0,0,0,0,157,137,130,95,117,108,1,745 +NA,NA,,2019-20,Millbury - Raymond E. Shaw Elementary,1860025,0,0,0,0,0,127,144,134,0,0,0,0,0,0,0,405 +NA,NA,,2019-20,Millis - Clyde F Brown,1870005,61,80,77,95,80,84,100,0,0,0,0,0,0,0,0,577 +NA,NA,,2019-20,Millis - Millis High School,1870505,0,0,0,0,0,0,0,0,0,0,79,70,93,91,0,333 +NA,NA,,2019-20,Millis - Millis Middle,1870020,0,0,0,0,0,0,0,76,90,103,0,0,0,0,0,269 +NA,NA,,2019-20,Milton - Charles S Pierce Middle,1890410,0,0,0,0,0,0,0,351,324,304,0,0,0,0,0,979 +NA,NA,,2019-20,Milton - Collicot,1890005,0,96,105,112,128,104,124,0,0,0,0,0,0,0,0,669 +NA,NA,,2019-20,Milton - Cunningham School,1890007,87,88,89,88,99,96,91,0,0,0,0,0,0,0,0,638 +NA,NA,,2019-20,Milton - Glover,1890010,0,108,114,111,97,99,87,0,0,0,0,0,0,0,0,616 +NA,NA,,2019-20,Milton - Milton High,1890505,13,0,0,0,0,0,0,0,0,0,269,277,272,233,6,1070 +NA,NA,,2019-20,Milton - Tucker,1890020,38,79,67,71,74,64,66,0,0,0,0,0,0,0,0,459 +NA,NA,,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0,0,0,0,0,0,0,0,0,191,135,145,127,0,598 +NA,NA,,2019-20,Mohawk Trail - Buckland-Shelburne Regional,7170005,15,27,30,40,34,35,31,33,0,0,0,0,0,0,0,245 +NA,NA,,2019-20,Mohawk Trail - Colrain Central,7170010,18,11,16,5,14,17,18,10,0,0,0,0,0,0,0,109 +NA,NA,,2019-20,Mohawk Trail - Mohawk Trail Regional School,7170505,0,0,0,0,0,0,0,0,74,69,36,52,51,50,4,336 +NA,NA,,2019-20,Mohawk Trail - Sanderson Academy,7170020,25,15,21,27,21,13,20,13,0,0,0,0,0,0,0,155 +NA,NA,,2019-20,Monomoy Regional School District - Chatham Elementary School,7120001,16,34,34,31,46,43,0,0,0,0,0,0,0,0,0,204 +NA,NA,,2019-20,Monomoy Regional School District - Harwich Elementary School,7120002,53,88,89,116,100,106,0,0,0,0,0,0,0,0,0,552 +NA,NA,,2019-20,Monomoy Regional School District - Monomoy Regional High School,7120515,0,0,0,0,0,0,0,0,0,133,128,131,117,124,6,639 +NA,NA,,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,0,0,0,162,136,183,0,0,0,0,0,0,481 +NA,NA,,2019-20,Monson - Granite Valley School,1910030,0,0,72,62,68,75,75,73,0,0,0,0,0,0,0,425 +NA,NA,,2019-20,Monson - Monson High School,1910505,0,0,0,0,0,0,0,0,60,70,45,67,63,55,2,362 +NA,NA,,2019-20,Monson - Quarry Hill Community School,1910010,66,71,0,0,0,0,0,0,0,0,0,0,0,0,0,137 +NA,NA,,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0,0,0,0,0,0,0,0,0,0,358,377,353,342,0,1430 +NA,NA,,2019-20,Mount Greylock - Lanesborough Elementary,7150005,13,28,27,24,34,22,26,24,0,0,0,0,0,0,0,198 +NA,NA,,2019-20,Mount Greylock - Mt Greylock Regional High,7150505,0,0,0,0,0,0,0,0,91,130,85,77,84,84,2,553 +NA,NA,,2019-20,Mount Greylock - Williamstown Elementary,7150010,16,38,56,61,58,68,60,52,0,0,0,0,0,0,0,409 +NA,NA,,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0,155,156,155,127,127,128,154,138,133,95,66,88,82,0,1604 +NA,NA,,2019-20,Nahant - Johnson,1960010,36,17,13,14,21,21,17,15,0,0,0,0,0,0,0,154 +NA,NA,,2019-20,Nantucket - Cyrus Peirce,1970010,0,0,0,0,0,0,0,153,124,119,0,0,0,0,0,396 +NA,NA,,2019-20,Nantucket - Nantucket Elementary,1970005,59,103,119,121,0,0,0,0,0,0,0,0,0,0,0,402 +NA,NA,,2019-20,Nantucket - Nantucket High,1970505,0,0,0,0,0,0,0,0,0,0,141,134,125,133,0,533 +NA,NA,,2019-20,Nantucket - Nantucket Intermediate School,1970020,0,0,0,0,95,114,138,0,0,0,0,0,0,0,0,347 +NA,NA,,2019-20,Narragansett - Narragansett Middle,7200305,0,0,0,0,0,0,0,135,122,116,0,0,0,0,0,373 +NA,NA,,2019-20,Narragansett - Narragansett Regional High,7200505,0,0,0,0,0,0,0,0,0,0,94,91,63,74,5,327 +NA,NA,,2019-20,Narragansett - Phillipston Memorial,7200003,0,21,20,20,18,15,19,0,0,0,0,0,0,0,0,113 +NA,NA,,2019-20,Narragansett - Templeton Elementary School,7200020,81,93,90,95,99,95,101,0,0,0,0,0,0,0,0,654 +NA,NA,,2019-20,Nashoba - Center School,7250020,26,74,87,68,90,78,109,0,0,0,0,0,0,0,0,532 +NA,NA,,2019-20,Nashoba - Florence Sawyer School,7250025,24,58,77,68,79,94,69,79,92,71,0,0,0,0,0,711 +NA,NA,,2019-20,Nashoba - Hale,7250310,0,0,0,0,0,0,0,99,98,106,0,0,0,0,0,303 +NA,NA,,2019-20,Nashoba - Luther Burbank Middle School,7250305,0,0,0,0,0,0,0,75,77,91,0,0,0,0,0,243 +NA,NA,,2019-20,Nashoba - Mary Rowlandson Elementary,7250010,30,70,56,80,74,66,94,0,0,0,0,0,0,0,0,470 +NA,NA,,2019-20,Nashoba - Nashoba Regional,7250505,0,0,0,0,0,0,0,0,0,0,197,268,235,217,4,921 +NA,NA,,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,0,0,0,0,0,0,0,0,0,0,181,185,181,162,0,709 +NA,NA,,2019-20,Natick - Bennett-Hemenway,1980005,0,95,105,113,119,118,0,0,0,0,0,0,0,0,0,550 +NA,NA,,2019-20,Natick - Brown,1980010,0,104,94,84,106,101,0,0,0,0,0,0,0,0,0,489 +NA,NA,,2019-20,Natick - J F Kennedy Middle School,1980305,0,0,0,0,0,0,233,192,167,156,0,0,0,0,0,748 +NA,NA,,2019-20,Natick - Johnson,1980031,0,41,45,55,46,45,0,0,0,0,0,0,0,0,0,232 +NA,NA,,2019-20,Natick - Lilja Elementary,1980035,0,88,90,94,69,90,0,0,0,0,0,0,0,0,0,431 +NA,NA,,2019-20,Natick - Memorial,1980043,0,79,87,77,85,75,0,0,0,0,0,0,0,0,0,403 +NA,NA,,2019-20,Natick - Natick High,1980505,136,0,0,0,0,0,0,0,0,0,392,387,408,439,0,1762 +NA,NA,,2019-20,Natick - Wilson Middle,1980310,0,0,0,0,0,0,214,229,239,232,0,0,0,0,0,914 +NA,NA,,2019-20,Nauset - Nauset Regional High,6600505,0,0,0,0,0,0,0,0,0,0,204,221,240,233,2,900 +NA,NA,,2019-20,Nauset - Nauset Regional Middle,6600305,0,0,0,0,0,0,0,185,203,192,0,0,0,0,0,580 +NA,NA,,2019-20,Needham - Broadmeadow,1990005,0,77,102,84,95,97,93,0,0,0,0,0,0,0,0,548 +NA,NA,,2019-20,Needham - High Rock School,1990410,0,0,0,0,0,0,0,499,0,0,0,0,0,0,0,499 +NA,NA,,2019-20,Needham - John Eliot,1990020,0,64,67,75,61,73,72,0,0,0,0,0,0,0,0,412 +NA,NA,,2019-20,Needham - Needham High,1990505,0,0,0,0,0,0,0,0,0,0,380,453,421,401,3,1658 +NA,NA,,2019-20,Needham - Newman Elementary,1990050,72,101,104,120,97,107,95,0,0,0,0,0,0,0,0,696 +NA,NA,,2019-20,Needham - Pollard Middle,1990405,0,0,0,0,0,0,0,0,459,432,0,0,0,0,0,891 +NA,NA,,2019-20,Needham - Sunita L. Williams Elementary,1990035,0,83,80,92,93,92,78,0,0,0,0,0,0,0,0,518 +NA,NA,,2019-20,Needham - William Mitchell,1990040,0,65,83,70,88,94,84,0,0,0,0,0,0,0,0,484 +NA,NA,,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,39,39,42,41,44,41,65,66,70,70,64,67,55,0,0,703 +NA,NA,,2019-20,New Bedford - Abraham Lincoln,2010095,0,100,117,131,121,131,110,0,0,0,0,0,0,0,0,710 +NA,NA,,2019-20,New Bedford - Alfred J Gomes,2010063,0,84,89,78,97,97,86,0,0,0,0,0,0,0,0,531 +NA,NA,,2019-20,New Bedford - Betsey B Winslow,2010140,0,39,48,41,47,40,58,0,0,0,0,0,0,0,0,273 +NA,NA,,2019-20,New Bedford - Carlos Pacheco,2010105,0,48,48,50,60,66,57,0,0,0,0,0,0,0,0,329 +NA,NA,,2019-20,New Bedford - Casimir Pulaski,2010123,98,97,101,95,96,94,98,0,0,0,0,0,0,0,0,679 +NA,NA,,2019-20,New Bedford - Charles S Ashley,2010010,0,37,50,37,46,50,45,0,0,0,0,0,0,0,0,265 +NA,NA,,2019-20,New Bedford - Elizabeth Carter Brooks,2010015,0,53,56,50,57,39,38,0,0,0,0,0,0,0,0,293 +NA,NA,,2019-20,New Bedford - Ellen R Hathaway,2010075,66,40,41,42,41,47,44,0,0,0,0,0,0,0,0,321 +NA,NA,,2019-20,New Bedford - Elwyn G Campbell,2010020,68,38,28,34,41,30,39,0,0,0,0,0,0,0,0,278 +NA,NA,,2019-20,New Bedford - Hayden/McFadden,2010078,69,75,111,110,97,117,85,0,0,0,0,0,0,0,0,664 +NA,NA,,2019-20,New Bedford - Irwin M. Jacobs Elementary School,2010070,32,69,50,64,63,57,55,0,0,0,0,0,0,0,0,390 +NA,NA,,2019-20,New Bedford - James B Congdon,2010040,0,41,53,44,51,47,55,0,0,0,0,0,0,0,0,291 +NA,NA,,2019-20,New Bedford - Jireh Swift,2010130,0,28,19,20,28,32,41,0,0,0,0,0,0,0,0,168 +NA,NA,,2019-20,New Bedford - John Avery Parker,2010115,28,31,42,27,35,36,24,0,0,0,0,0,0,0,0,223 +NA,NA,,2019-20,New Bedford - John B Devalles,2010050,0,54,56,67,61,61,56,0,0,0,0,0,0,0,0,355 +NA,NA,,2019-20,New Bedford - Keith Middle School,2010405,0,0,0,0,0,0,0,361,338,310,0,0,0,0,0,1009 +NA,NA,,2019-20,New Bedford - New Bedford High,2010505,0,0,0,0,0,0,0,0,0,0,733,652,532,484,0,2401 +NA,NA,,2019-20,New Bedford - Normandin Middle School,2010410,0,0,0,0,0,0,0,367,412,419,0,0,0,0,0,1198 +NA,NA,,2019-20,New Bedford - Renaissance Community Innovation School,2010124,23,20,25,22,30,34,30,0,0,0,0,0,0,0,0,184 +NA,NA,,2019-20,New Bedford - Roosevelt Middle School,2010415,0,0,0,0,0,0,0,288,325,297,0,0,0,0,0,910 +NA,NA,,2019-20,New Bedford - Sgt Wm H Carney Academy,2010045,66,106,118,88,111,141,110,0,0,0,0,0,0,0,0,740 +NA,NA,,2019-20,New Bedford - Thomas R Rodman,2010125,0,32,33,35,42,23,26,0,0,0,0,0,0,0,0,191 +NA,NA,,2019-20,New Bedford - Trinity Day Academy,2010510,0,0,0,0,0,3,5,11,9,9,18,15,12,11,0,93 +NA,NA,,2019-20,New Bedford - Whaling City Junior/Senior High School,2010515,0,0,0,0,0,0,0,1,5,14,29,37,23,17,0,126 +NA,NA,,2019-20,New Bedford - William H Taylor,2010135,31,46,41,31,43,38,28,0,0,0,0,0,0,0,0,258 +NA,NA,,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,0,0,0,0,0,0,104,107,110,92,104,85,0,0,602 +NA,NA,,2019-20,New Salem-Wendell - Swift River,7280015,19,19,23,14,18,17,15,20,0,0,0,0,0,0,0,145 +NA,NA,,2019-20,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,0,0,149,146,0,0,0,0,0,0,0,0,295 +NA,NA,,2019-20,Newburyport - Francis T Bresnahan Elementary,2040005,73,153,140,128,138,0,0,0,0,0,0,0,0,0,0,632 +NA,NA,,2019-20,Newburyport - Newburyport High,2040505,0,0,0,0,0,0,0,0,0,0,216,182,211,185,3,797 +NA,NA,,2019-20,Newburyport - Rupert A Nock Middle,2040305,0,0,0,0,0,0,0,167,172,199,0,0,0,0,0,538 +NA,NA,,2019-20,Newton - A E Angier,2070005,0,65,86,73,99,82,97,0,0,0,0,0,0,0,0,502 +NA,NA,,2019-20,Newton - Bigelow Middle,2070305,0,0,0,0,0,0,0,162,176,156,0,0,0,0,0,494 +NA,NA,,2019-20,Newton - Bowen,2070015,0,55,62,68,62,62,63,0,0,0,0,0,0,0,0,372 +NA,NA,,2019-20,Newton - C C Burr,2070020,0,62,60,72,46,56,70,0,0,0,0,0,0,0,0,366 +NA,NA,,2019-20,Newton - Cabot,2070025,0,66,65,62,60,68,72,0,0,0,0,0,0,0,0,393 +NA,NA,,2019-20,Newton - Charles E Brown Middle,2070310,0,0,0,0,0,0,0,263,277,238,0,0,0,0,0,778 +NA,NA,,2019-20,Newton - Countryside,2070040,0,55,68,67,72,66,85,0,0,0,0,0,0,0,0,413 +NA,NA,,2019-20,Newton - F A Day Middle,2070315,0,0,0,0,0,0,0,330,328,339,0,0,0,0,0,997 +NA,NA,,2019-20,Newton - Franklin,2070055,0,65,61,66,83,57,81,0,0,0,0,0,0,0,0,413 +NA,NA,,2019-20,Newton - Horace Mann,2070075,0,57,63,61,71,75,64,0,0,0,0,0,0,0,0,391 +NA,NA,,2019-20,Newton - John Ward,2070120,0,34,40,35,45,47,54,0,0,0,0,0,0,0,0,255 +NA,NA,,2019-20,Newton - Lincoln-Eliot,2070070,0,55,68,66,58,53,62,0,0,0,0,0,0,0,0,362 +NA,NA,,2019-20,Newton - Mason-Rice,2070080,0,58,61,67,78,91,91,0,0,0,0,0,0,0,0,446 +NA,NA,,2019-20,Newton - Memorial Spaulding,2070105,0,51,63,83,84,91,93,0,0,0,0,0,0,0,0,465 +NA,NA,,2019-20,Newton - Newton Early Childhood Center,2070108,181,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181 +NA,NA,,2019-20,Newton - Newton North High,2070505,0,0,0,0,0,0,0,0,0,0,502,538,497,524,27,2088 +NA,NA,,2019-20,Newton - Newton South High,2070510,0,0,0,0,0,0,0,0,0,0,494,497,500,491,1,1983 +NA,NA,,2019-20,Newton - Oak Hill Middle,2070320,0,0,0,0,0,0,0,240,202,190,0,0,0,0,0,632 +NA,NA,,2019-20,Newton - Peirce,2070100,0,43,49,47,43,45,57,0,0,0,0,0,0,0,0,284 +NA,NA,,2019-20,Newton - Underwood,2070115,0,42,40,36,45,42,64,0,0,0,0,0,0,0,0,269 +NA,NA,,2019-20,Newton - Williams,2070125,0,38,40,51,39,56,37,0,0,0,0,0,0,0,0,261 +NA,NA,,2019-20,Newton - Zervas,2070130,0,79,76,64,83,61,71,0,0,0,0,0,0,0,0,434 +NA,NA,,2019-20,Norfolk - Freeman-Kennedy School,2080005,0,0,0,0,133,153,116,132,0,0,0,0,0,0,0,534 +NA,NA,,2019-20,Norfolk - H Olive Day,2080015,70,133,129,117,0,0,0,0,0,0,0,0,0,0,0,449 +NA,NA,,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,0,0,0,0,0,0,0,144,152,136,119,0,551 +NA,NA,,2019-20,North Adams - Brayton,2090035,34,21,35,33,33,29,36,34,0,0,0,0,0,0,0,255 +NA,NA,,2019-20,North Adams - Colegrove Park Elementary,2090008,43,50,34,35,47,38,33,31,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,North Adams - Drury High,2090505,0,0,0,0,0,0,0,0,125,114,78,66,77,77,5,542 +NA,NA,,2019-20,North Adams - Greylock,2090015,40,41,30,30,25,30,22,32,0,0,0,0,0,0,0,250 +NA,NA,,2019-20,North Andover - Anne Bradstreet Early Childhood Center,2110005,125,322,0,0,0,0,0,0,0,0,0,0,0,0,0,447 +NA,NA,,2019-20,North Andover - Annie L Sargent School,2110018,0,0,95,94,86,91,104,0,0,0,0,0,0,0,0,470 +NA,NA,,2019-20,North Andover - Atkinson,2110001,0,0,67,65,67,64,81,0,0,0,0,0,0,0,0,344 +NA,NA,,2019-20,North Andover - Franklin,2110010,0,0,64,72,73,73,84,0,0,0,0,0,0,0,0,366 +NA,NA,,2019-20,North Andover - Kittredge,2110015,0,0,43,49,47,43,52,0,0,0,0,0,0,0,0,234 +NA,NA,,2019-20,North Andover - North Andover High,2110505,0,0,0,0,0,0,0,0,0,0,318,360,370,329,0,1377 +NA,NA,,2019-20,North Andover - North Andover Middle,2110305,0,0,0,0,0,0,0,376,365,368,0,0,0,0,0,1109 +NA,NA,,2019-20,North Andover - Thomson,2110020,0,0,81,51,57,73,58,0,0,0,0,0,0,0,0,320 +NA,NA,,2019-20,North Attleborough - Amvet Boulevard,2120007,0,53,58,69,64,69,67,0,0,0,0,0,0,0,0,380 +NA,NA,,2019-20,North Attleborough - Community,2120030,0,48,44,41,38,71,51,0,0,0,0,0,0,0,0,293 +NA,NA,,2019-20,North Attleborough - Falls,2120010,0,27,37,45,40,52,41,0,0,0,0,0,0,0,0,242 +NA,NA,,2019-20,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,92,104,88,127,96,99,0,0,0,0,0,0,0,0,606 +NA,NA,,2019-20,North Attleborough - North Attleboro High,2120505,0,0,0,0,0,0,0,0,0,0,261,274,266,305,0,1106 +NA,NA,,2019-20,North Attleborough - North Attleborough Early Learning Center,2120020,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159 +NA,NA,,2019-20,North Attleborough - North Attleborough Middle,2120305,0,0,0,0,0,0,0,338,396,366,0,0,0,0,0,1100 +NA,NA,,2019-20,North Attleborough - Roosevelt Avenue,2120015,0,59,41,40,44,47,38,0,0,0,0,0,0,0,0,269 +NA,NA,,2019-20,North Brookfield - North Brookfield Elementary,2150015,27,39,39,40,51,33,40,48,0,0,0,0,0,0,0,317 +NA,NA,,2019-20,North Brookfield - North Brookfield High,2150505,0,0,0,0,0,0,0,0,38,60,31,32,26,41,0,228 +NA,NA,,2019-20,North Middlesex - Ashby Elementary,7350010,0,37,26,35,34,33,0,0,0,0,0,0,0,0,0,165 +NA,NA,,2019-20,North Middlesex - Hawthorne Brook,7350030,0,0,0,0,0,0,114,134,135,124,0,0,0,0,0,507 +NA,NA,,2019-20,North Middlesex - Nissitissit Middle School,7350310,0,0,0,0,0,0,119,126,150,128,0,0,0,0,0,523 +NA,NA,,2019-20,North Middlesex - North Middlesex Regional,7350505,0,0,0,0,0,0,0,0,0,0,170,206,206,217,18,817 +NA,NA,,2019-20,North Middlesex - Spaulding Memorial,7350005,0,94,87,90,88,83,0,0,0,0,0,0,0,0,0,442 +NA,NA,,2019-20,North Middlesex - Squannacook Early Childhood Center,7350002,88,3,0,1,1,1,0,0,0,0,0,0,0,0,0,94 +NA,NA,,2019-20,North Middlesex - Varnum Brook,7350035,0,102,108,107,108,117,0,0,0,0,0,0,0,0,0,542 +NA,NA,,2019-20,North Reading - E Ethel Little School,2170003,60,60,27,50,42,55,45,0,0,0,0,0,0,0,0,339 +NA,NA,,2019-20,North Reading - J Turner Hood,2170010,0,54,55,51,57,52,69,0,0,0,0,0,0,0,0,338 +NA,NA,,2019-20,North Reading - L D Batchelder,2170005,0,82,69,73,70,81,69,0,0,0,0,0,0,0,0,444 +NA,NA,,2019-20,North Reading - North Reading High,2170505,0,0,0,0,0,0,0,0,0,0,176,174,190,197,3,740 +NA,NA,,2019-20,North Reading - North Reading Middle,2170305,0,0,0,0,0,0,0,196,183,157,0,0,0,0,0,536 +NA,NA,,2019-20,Northampton - Bridge Street,2100005,34,40,41,51,41,32,43,0,0,0,0,0,0,0,0,282 +NA,NA,,2019-20,Northampton - Jackson Street,2100020,0,51,59,54,68,59,63,0,0,0,0,0,0,0,0,354 +NA,NA,,2019-20,Northampton - John F Kennedy Middle School,2100410,0,0,0,0,0,0,0,207,214,201,0,0,0,0,0,622 +NA,NA,,2019-20,Northampton - Leeds,2100025,32,51,52,48,41,41,60,0,0,0,0,0,0,0,0,325 +NA,NA,,2019-20,Northampton - Northampton High,2100505,0,0,0,0,0,0,0,0,0,0,243,210,216,206,3,878 +NA,NA,,2019-20,Northampton - R. K. Finn Ryan Road,2100029,0,41,41,42,42,30,41,0,0,0,0,0,0,0,0,237 +NA,NA,,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,0,0,0,0,0,0,0,0,145,116,123,112,0,496 +NA,NA,,2019-20,Northboro-Southboro - Algonquin Regional High,7300505,0,0,0,0,0,0,0,0,0,0,321,334,388,340,7,1390 +NA,NA,,2019-20,Northborough - Fannie E Proctor,2130015,0,55,41,39,40,42,48,0,0,0,0,0,0,0,0,265 +NA,NA,,2019-20,Northborough - Lincoln Street,2130003,0,37,40,51,43,45,44,0,0,0,0,0,0,0,0,260 +NA,NA,,2019-20,Northborough - Marguerite E Peaslee,2130014,0,40,40,33,52,62,42,0,0,0,0,0,0,0,0,269 +NA,NA,,2019-20,Northborough - Marion E Zeh,2130020,0,40,38,40,44,44,40,0,0,0,0,0,0,0,0,246 +NA,NA,,2019-20,Northborough - Robert E. Melican Middle School,2130305,0,0,0,0,0,0,0,159,184,204,0,0,0,0,0,547 +NA,NA,,2019-20,Northbridge - Northbridge Elementary,2140005,77,162,121,0,0,0,0,0,0,0,0,0,0,0,0,360 +NA,NA,,2019-20,Northbridge - Northbridge High,2140505,0,0,0,0,0,0,0,0,0,0,154,151,120,111,0,536 +NA,NA,,2019-20,Northbridge - Northbridge Middle,2140305,0,0,0,0,0,0,169,189,154,164,0,0,0,0,0,676 +NA,NA,,2019-20,Northbridge - W Edward Balmer,2140001,0,0,0,137,143,147,0,0,0,0,0,0,0,0,0,427 +NA,NA,,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,0,0,0,0,0,0,0,0,0,0,336,341,310,288,0,1275 +NA,NA,,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,0,0,0,0,0,0,0,140,134,116,117,0,507 +NA,NA,,2019-20,Norton - Henri A. Yelle,2180060,0,0,0,0,0,170,186,0,0,0,0,0,0,0,0,356 +NA,NA,,2019-20,Norton - J C Solmonese,2180015,109,98,92,105,97,0,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2019-20,Norton - L G Nourse Elementary,2180010,0,67,60,74,71,0,0,0,0,0,0,0,0,0,0,272 +NA,NA,,2019-20,Norton - Norton High,2180505,0,0,0,0,0,0,0,0,0,0,173,168,178,176,7,702 +NA,NA,,2019-20,Norton - Norton Middle,2180305,0,0,0,0,0,0,0,207,198,193,0,0,0,0,0,598 +NA,NA,,2019-20,Norwell - Grace Farrar Cole,2190005,21,82,78,79,72,87,71,0,0,0,0,0,0,0,0,490 +NA,NA,,2019-20,Norwell - Norwell High,2190505,0,0,0,0,0,0,0,0,0,0,159,164,166,185,0,674 +NA,NA,,2019-20,Norwell - Norwell Middle School,2190405,0,0,0,0,0,0,0,166,184,162,0,0,0,0,0,512 +NA,NA,,2019-20,Norwell - William G Vinal,2190020,26,86,74,86,84,88,90,0,0,0,0,0,0,0,0,534 +NA,NA,,2019-20,Norwood - Balch,2200005,0,0,64,70,70,55,57,0,0,0,0,0,0,0,0,316 +NA,NA,,2019-20,Norwood - Charles J Prescott,2200025,0,4,48,60,59,47,43,0,0,0,0,0,0,0,0,261 +NA,NA,,2019-20,Norwood - Cornelius M Callahan,2200010,0,0,50,47,48,39,41,0,0,0,0,0,0,0,0,225 +NA,NA,,2019-20,Norwood - Dr. Philip O. Coakley Middle School,2200305,0,0,0,0,0,0,0,220,255,245,0,0,0,0,0,720 +NA,NA,,2019-20,Norwood - F A Cleveland,2200015,0,0,60,57,64,81,72,0,0,0,0,0,0,0,0,334 +NA,NA,,2019-20,Norwood - George F. Willett,2200075,122,268,0,0,0,0,0,0,0,0,0,0,0,0,0,390 +NA,NA,,2019-20,Norwood - John P Oldham,2200020,0,0,52,57,48,51,43,0,0,0,0,0,0,0,0,251 +NA,NA,,2019-20,Norwood - Norwood High,2200505,0,0,0,0,0,0,0,0,0,0,252,260,231,244,6,993 +NA,NA,,2019-20,Oak Bluffs - Oak Bluffs Elementary,2210005,10,35,48,31,47,55,49,52,52,47,0,0,0,0,0,426 +NA,NA,,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,0,0,0,0,0,0,0,0,0,150,139,132,135,0,556 +NA,NA,,2019-20,Old Rochester - Old Rochester Regional High,7400505,0,0,0,0,0,0,0,0,0,0,174,201,188,180,6,749 +NA,NA,,2019-20,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,0,0,0,0,0,214,216,0,0,0,0,0,430 +NA,NA,,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,40,40,40,40,40,40,0,0,0,0,0,0,0,0,240 +NA,NA,,2019-20,Orange - Dexter Park,2230010,0,0,0,0,69,70,62,99,0,0,0,0,0,0,0,300 +NA,NA,,2019-20,Orange - Fisher Hill,2230015,39,66,64,65,0,0,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2019-20,Orleans - Orleans Elementary,2240005,0,22,32,34,38,39,32,0,0,0,0,0,0,0,0,197 +NA,NA,,2019-20,Oxford - ACE Program,2260305,0,0,0,0,0,0,0,0,0,0,0,2,1,4,1,8 +NA,NA,,2019-20,Oxford - Alfred M Chaffee,2260010,46,102,112,0,0,0,0,0,0,0,0,0,0,0,0,260 +NA,NA,,2019-20,Oxford - Clara Barton,2260005,0,0,0,103,143,133,0,0,0,0,0,0,0,0,0,379 +NA,NA,,2019-20,Oxford - Oxford High,2260505,0,0,0,0,0,0,0,0,0,143,98,100,97,93,7,538 +NA,NA,,2019-20,Oxford - Oxford Middle,2260405,0,0,0,0,0,0,121,118,148,0,0,0,0,0,0,387 +NA,NA,,2019-20,Palmer - Old Mill Pond,2270008,43,95,100,104,119,88,93,0,0,0,0,0,0,0,0,642 +NA,NA,,2019-20,Palmer - Palmer High,2270505,0,0,0,0,0,0,0,113,122,116,84,63,77,82,5,662 +NA,NA,,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,0,0,0,0,0,0,0,160,158,151,157,0,626 +NA,NA,,2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,0,0,0,0,0,0,0,0,0,0,83,75,64,56,0,278 +NA,NA,,2019-20,Peabody - Captain Samuel Brown,2290005,0,59,57,62,67,58,53,0,0,0,0,0,0,0,0,356 +NA,NA,,2019-20,Peabody - Center,2290015,0,94,70,67,58,64,70,0,0,0,0,0,0,0,0,423 +NA,NA,,2019-20,Peabody - J Henry Higgins Middle,2290305,0,0,0,0,0,0,0,505,477,481,0,0,0,0,0,1463 +NA,NA,,2019-20,Peabody - John E Burke,2290007,0,37,44,29,36,55,56,0,0,0,0,0,0,0,0,257 +NA,NA,,2019-20,Peabody - John E. McCarthy,2290016,103,45,44,42,37,36,43,0,0,0,0,0,0,0,0,350 +NA,NA,,2019-20,Peabody - Peabody Veterans Memorial High,2290510,0,0,0,0,0,0,0,0,0,0,386,361,356,352,0,1455 +NA,NA,,2019-20,Peabody - South Memorial,2290035,73,69,56,51,74,55,69,0,0,0,0,0,0,0,0,447 +NA,NA,,2019-20,Peabody - Thomas Carroll,2290010,0,82,109,111,100,90,95,0,0,0,0,0,0,0,0,587 +NA,NA,,2019-20,Peabody - West Memorial,2290045,37,36,43,32,41,41,34,0,0,0,0,0,0,0,0,264 +NA,NA,,2019-20,Peabody - William A Welch Sr,2290027,30,65,57,62,54,55,69,0,0,0,0,0,0,0,0,392 +NA,NA,,2019-20,Pelham - Pelham Elementary,2300005,0,13,20,15,21,17,17,22,0,0,0,0,0,0,0,125 +NA,NA,,2019-20,Pembroke - Bryantville Elementary,2310003,0,67,73,71,62,69,75,70,0,0,0,0,0,0,0,487 +NA,NA,,2019-20,Pembroke - Hobomock Elementary,2310010,0,52,54,61,53,72,55,57,0,0,0,0,0,0,0,404 +NA,NA,,2019-20,Pembroke - North Pembroke Elementary,2310015,75,58,70,64,65,70,87,73,0,0,0,0,0,0,0,562 +NA,NA,,2019-20,Pembroke - Pembroke Community Middle School,2310305,0,0,0,0,0,0,0,0,231,223,0,0,0,0,0,454 +NA,NA,,2019-20,Pembroke - Pembroke High School,2310505,0,0,0,0,0,0,0,0,0,0,208,204,206,191,7,816 +NA,NA,,2019-20,Pentucket - Dr Frederick N Sweetsir,7450020,35,63,64,59,0,0,0,0,0,0,0,0,0,0,0,221 +NA,NA,,2019-20,Pentucket - Dr John C Page School,7450015,11,44,40,42,47,37,57,46,0,0,0,0,0,0,0,324 +NA,NA,,2019-20,Pentucket - Elmer S Bagnall,7450005,36,66,57,70,56,74,73,54,0,0,0,0,0,0,0,486 +NA,NA,,2019-20,Pentucket - Helen R Donaghue School,7450010,0,0,0,0,64,67,51,47,0,0,0,0,0,0,0,229 +NA,NA,,2019-20,Pentucket - Pentucket Regional Middle,7450405,0,0,0,0,0,0,0,0,204,189,0,0,0,0,0,393 +NA,NA,,2019-20,Pentucket - Pentucket Regional Sr High,7450505,0,0,0,0,0,0,0,0,0,0,165,191,204,183,0,743 +NA,NA,,2019-20,Petersham - Petersham Center,2340005,0,22,23,8,20,17,20,21,0,0,0,0,0,0,0,131 +NA,NA,,2019-20,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,0,0,0,0,0,0,0,0,0,0,74,9,29,12,0,124 +NA,NA,,2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,0,0,0,0,0,0,0,0,0,0,132,14,31,11,0,188 +NA,NA,,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,0,0,0,0,0,0,0,0,0,0,165,9,33,9,0,216 +NA,NA,,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,0,60,63,64,66,66,67,64,60,60,61,60,54,48,0,793 +NA,NA,,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,0,0,0,0,0,0,0,0,66,65,62,66,56,45,0,360 +NA,NA,,2019-20,Pioneer Valley - Bernardston Elementary,7500006,23,18,21,28,24,22,30,18,0,0,0,0,0,0,0,184 +NA,NA,,2019-20,Pioneer Valley - Northfield Elementary,7500008,18,17,23,25,21,24,23,22,0,0,0,0,0,0,0,173 +NA,NA,,2019-20,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,0,0,0,0,0,61,66,52,27,51,40,1,298 +NA,NA,,2019-20,Pioneer Valley - Warwick Community School,7500009,0,0,3,12,10,6,11,3,0,0,0,0,0,0,0,45 +NA,NA,,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,0,44,45,44,44,44,46,69,59,40,26,42,29,8,0,540 +NA,NA,,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,0,0,0,0,0,0,0,0,69,70,68,65,61,63,0,396 +NA,NA,,2019-20,Pittsfield - Allendale,2360010,0,59,54,58,46,47,53,0,0,0,0,0,0,0,0,317 +NA,NA,,2019-20,Pittsfield - Crosby,2360065,70,44,45,61,59,49,61,0,0,0,0,0,0,0,0,389 +NA,NA,,2019-20,Pittsfield - Egremont,2360035,0,72,82,73,72,68,68,0,0,0,0,0,0,0,0,435 +NA,NA,,2019-20,Pittsfield - John T Reid Middle,2360305,0,0,0,0,0,0,0,177,176,172,0,0,0,0,0,525 +NA,NA,,2019-20,Pittsfield - Morningside Community School,2360055,18,68,54,66,46,60,56,0,0,0,0,0,0,0,0,368 +NA,NA,,2019-20,Pittsfield - Pittsfield High,2360505,0,0,0,0,0,0,0,0,0,0,180,189,197,178,11,755 +NA,NA,,2019-20,Pittsfield - Robert T. Capeless Elementary School,2360045,15,28,26,32,33,25,34,0,0,0,0,0,0,0,0,193 +NA,NA,,2019-20,Pittsfield - Silvio O Conte Community,2360105,18,47,55,65,55,37,63,0,0,0,0,0,0,0,0,340 +NA,NA,,2019-20,Pittsfield - Stearns,2360090,0,30,29,51,38,38,44,0,0,0,0,0,0,0,0,230 +NA,NA,,2019-20,Pittsfield - Taconic High,2360510,0,0,0,0,0,0,0,0,0,0,219,225,212,174,0,830 +NA,NA,,2019-20,Pittsfield - Theodore Herberg Middle,2360310,0,0,0,0,0,0,0,174,211,218,0,0,0,0,0,603 +NA,NA,,2019-20,Pittsfield - Williams,2360100,0,42,40,41,48,49,56,0,0,0,0,0,0,0,0,276 +NA,NA,,2019-20,Plainville - Anna Ware Jackson,2380010,61,85,85,91,97,0,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2019-20,Plainville - Beatrice H Wood Elementary,2380005,0,0,0,0,0,86,89,115,0,0,0,0,0,0,0,290 +NA,NA,,2019-20,Plymouth - Cold Spring,2390005,0,34,36,37,39,29,34,0,0,0,0,0,0,0,0,209 +NA,NA,,2019-20,Plymouth - Federal Furnace School,2390011,0,54,55,62,65,55,68,0,0,0,0,0,0,0,0,359 +NA,NA,,2019-20,Plymouth - Hedge,2390010,0,20,33,32,25,33,31,0,0,0,0,0,0,0,0,174 +NA,NA,,2019-20,Plymouth - Indian Brook,2390012,0,85,107,95,78,96,88,0,0,0,0,0,0,0,0,549 +NA,NA,,2019-20,Plymouth - Manomet Elementary,2390015,0,48,43,41,53,38,51,0,0,0,0,0,0,0,0,274 +NA,NA,,2019-20,Plymouth - Nathaniel Morton Elementary,2390030,0,91,89,91,94,102,104,0,0,0,0,0,0,0,0,571 +NA,NA,,2019-20,Plymouth - Plymouth Commun Intermediate,2390405,0,0,0,0,0,0,0,315,365,357,0,0,0,0,0,1037 +NA,NA,,2019-20,Plymouth - Plymouth Early Childhood Center,2390003,189,0,0,0,0,0,0,0,0,0,0,0,0,0,0,189 +NA,NA,,2019-20,Plymouth - Plymouth North High,2390505,0,0,0,0,0,0,0,0,0,0,346,310,295,301,0,1252 +NA,NA,,2019-20,Plymouth - Plymouth South High,2390515,0,0,0,0,0,0,0,0,0,0,260,260,276,252,0,1048 +NA,NA,,2019-20,Plymouth - Plymouth South Middle,2390305,0,0,0,0,0,0,0,212,230,257,0,0,0,0,0,699 +NA,NA,,2019-20,Plymouth - South Elementary,2390046,0,96,99,102,109,108,110,0,0,0,0,0,0,0,0,624 +NA,NA,,2019-20,Plymouth - West Elementary,2390047,0,58,46,64,72,62,46,0,0,0,0,0,0,0,0,348 +NA,NA,,2019-20,Plympton - Dennett Elementary,2400010,0,40,28,36,26,38,21,31,0,0,0,0,0,0,0,220 +NA,NA,,2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,0,80,85,90,94,91,90,95,96,89,89,74,73,60,0,1106 +NA,NA,,2019-20,Provincetown - Provincetown Schools,2420020,20,9,11,9,11,16,13,17,10,15,0,0,0,0,0,131 +NA,NA,,2019-20,Quabbin - Hardwick Elementary,7530005,28,30,21,25,19,25,23,32,0,0,0,0,0,0,0,203 +NA,NA,,2019-20,Quabbin - Hubbardston Center,7530010,0,45,39,49,44,40,43,49,0,0,0,0,0,0,0,309 +NA,NA,,2019-20,Quabbin - New Braintree Grade,7530020,0,25,21,0,0,0,0,0,0,0,0,0,0,0,0,46 +NA,NA,,2019-20,Quabbin - Oakham Center,7530025,0,0,0,40,24,23,32,30,0,0,0,0,0,0,0,149 +NA,NA,,2019-20,Quabbin - Quabbin Regional High School,7530505,0,0,0,0,0,0,0,0,0,0,157,164,149,147,4,621 +NA,NA,,2019-20,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,0,0,0,0,0,177,189,0,0,0,0,0,366 +NA,NA,,2019-20,Quabbin - Ruggles Lane,7530030,42,72,51,51,46,55,73,64,0,0,0,0,0,0,0,454 +NA,NA,,2019-20,Quaboag Regional - Quaboag Regional High,7780505,0,0,0,0,0,0,0,0,0,0,108,87,95,60,0,350 +NA,NA,,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,0,0,0,0,0,81,99,0,0,0,0,0,180 +NA,NA,,2019-20,Quaboag Regional - Warren Elementary,7780005,25,44,54,57,48,58,72,59,0,0,0,0,0,0,0,417 +NA,NA,,2019-20,Quaboag Regional - West Brookfield Elementary,7780010,20,33,38,33,35,36,45,41,0,0,0,0,0,0,0,281 +NA,NA,,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183 +NA,NA,,2019-20,Quincy - Atherton Hough,2430040,0,50,46,37,48,51,46,0,0,0,0,0,0,0,0,278 +NA,NA,,2019-20,Quincy - Atlantic Middle,2430305,0,0,0,0,0,0,0,180,194,193,0,0,0,0,0,567 +NA,NA,,2019-20,Quincy - Beechwood Knoll Elementary,2430020,0,56,58,63,66,61,52,0,0,0,0,0,0,0,0,356 +NA,NA,,2019-20,Quincy - Broad Meadows Middle,2430310,0,0,0,0,0,0,0,107,117,128,0,0,0,0,0,352 +NA,NA,,2019-20,Quincy - Central Middle,2430315,0,0,0,0,0,0,0,219,201,206,0,0,0,0,0,626 +NA,NA,,2019-20,Quincy - Charles A Bernazzani Elementary,2430025,0,62,62,56,52,57,47,0,0,0,0,0,0,0,0,336 +NA,NA,,2019-20,Quincy - Clifford H Marshall Elementary,2430055,0,130,117,97,110,90,0,0,0,0,0,0,0,0,0,544 +NA,NA,,2019-20,Quincy - Francis W Parker,2430075,0,40,65,51,53,48,65,0,0,0,0,0,0,0,0,322 +NA,NA,,2019-20,Quincy - Lincoln-Hancock Community School,2430035,0,127,102,110,103,91,0,0,0,0,0,0,0,0,0,533 +NA,NA,,2019-20,Quincy - Merrymount,2430060,0,55,70,60,48,60,56,0,0,0,0,0,0,0,0,349 +NA,NA,,2019-20,Quincy - Montclair,2430065,0,73,83,69,68,80,68,0,0,0,0,0,0,0,0,441 +NA,NA,,2019-20,Quincy - North Quincy High,2430510,0,0,0,0,0,0,0,0,0,0,326,334,312,277,15,1264 +NA,NA,,2019-20,Quincy - Point Webster Middle,2430325,57,0,0,0,0,0,113,92,92,74,0,0,0,0,0,428 +NA,NA,,2019-20,Quincy - Quincy High,2430505,0,0,0,0,0,0,0,0,0,0,384,390,401,368,0,1543 +NA,NA,,2019-20,Quincy - Snug Harbor Community School,2430090,98,53,48,57,50,51,47,0,0,0,0,0,0,0,0,404 +NA,NA,,2019-20,Quincy - South West Middle School,2430320,0,0,0,0,0,0,98,105,87,102,0,0,0,0,0,392 +NA,NA,,2019-20,Quincy - Squantum,2430095,0,70,66,63,66,44,54,0,0,0,0,0,0,0,0,363 +NA,NA,,2019-20,Quincy - Wollaston School,2430110,0,52,58,60,54,58,62,0,0,0,0,0,0,0,0,344 +NA,NA,,2019-20,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,0,0,0,0,0,0,0,126,110,120,91,104,77,0,628 +NA,NA,,2019-20,Randolph - Elizabeth G Lyons Elementary,2440020,0,47,46,61,53,48,49,0,0,0,0,0,0,0,0,304 +NA,NA,,2019-20,Randolph - J F Kennedy Elementary,2440018,82,53,63,62,50,47,63,0,0,0,0,0,0,0,0,420 +NA,NA,,2019-20,Randolph - Margaret L Donovan,2440015,0,73,77,81,58,72,81,0,0,0,0,0,0,0,0,442 +NA,NA,,2019-20,Randolph - Martin E Young Elementary,2440040,0,53,35,42,33,51,50,0,0,0,0,0,0,0,0,264 +NA,NA,,2019-20,Randolph - Randolph Community Middle,2440410,0,0,0,0,0,0,0,239,221,197,0,0,0,0,0,657 +NA,NA,,2019-20,Randolph - Randolph High,2440505,0,0,0,0,0,0,0,0,0,0,159,170,158,157,11,655 +NA,NA,,2019-20,Reading - Alice M Barrows,2460002,0,60,63,68,55,76,63,0,0,0,0,0,0,0,0,385 +NA,NA,,2019-20,Reading - Arthur W Coolidge Middle,2460305,0,0,0,0,0,0,0,135,128,161,0,0,0,0,0,424 +NA,NA,,2019-20,Reading - Birch Meadow,2460005,0,64,67,58,68,62,65,0,0,0,0,0,0,0,0,384 +NA,NA,,2019-20,Reading - J Warren Killam,2460017,0,83,70,63,66,77,56,0,0,0,0,0,0,0,0,415 +NA,NA,,2019-20,Reading - Joshua Eaton,2460010,0,69,75,66,45,66,83,0,0,0,0,0,0,0,0,404 +NA,NA,,2019-20,Reading - Reading Memorial High,2460505,0,0,0,0,0,0,0,0,0,0,301,294,331,304,0,1230 +NA,NA,,2019-20,Reading - RISE PreSchool,2460001,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105 +NA,NA,,2019-20,Reading - Walter S Parker Middle,2460310,0,0,0,0,0,0,0,157,163,180,0,0,0,0,0,500 +NA,NA,,2019-20,Reading - Wood End Elementary School,2460020,0,42,55,42,48,50,67,0,0,0,0,0,0,0,0,304 +NA,NA,,2019-20,Revere - A. C. Whelan Elementary School,2480003,0,99,134,138,143,124,114,0,0,0,0,0,0,0,0,752 +NA,NA,,2019-20,Revere - Abraham Lincoln,2480025,95,85,92,89,91,87,81,0,0,0,0,0,0,0,0,620 +NA,NA,,2019-20,Revere - Beachmont Veterans Memorial School,2480013,50,58,50,50,46,51,45,0,0,0,0,0,0,0,0,350 +NA,NA,,2019-20,Revere - Garfield Elementary School,2480056,71,110,127,103,111,105,102,0,0,0,0,0,0,0,0,729 +NA,NA,,2019-20,Revere - Garfield Middle School,2480057,0,0,0,0,0,0,0,200,205,192,0,0,0,0,0,597 +NA,NA,,2019-20,Revere - Paul Revere,2480050,0,76,76,71,85,80,73,0,0,0,0,0,0,0,0,461 +NA,NA,,2019-20,Revere - Revere High,2480505,0,0,0,0,0,0,0,0,0,0,553,508,549,401,8,2019 +NA,NA,,2019-20,Revere - Rumney Marsh Academy,2480014,0,0,0,0,0,0,0,221,215,184,0,0,0,0,0,620 +NA,NA,,2019-20,Revere - Seacoast School,2480520,0,0,0,0,0,0,0,0,0,0,26,17,14,8,0,65 +NA,NA,,2019-20,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,116,120,115,116,116,115,0,0,0,0,0,0,0,0,698 +NA,NA,,2019-20,Revere - Susan B. Anthony Middle School,2480305,0,0,0,0,0,0,0,207,211,203,0,0,0,0,0,621 +NA,NA,,2019-20,Richmond - Richmond Consolidated,2490005,17,18,16,18,15,16,16,14,19,22,0,0,0,0,0,171 +NA,NA,,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,0,0,0,0,0,0,88,92,91,91,85,75,68,67,0,657 +NA,NA,,2019-20,River Valley Charter (District) - River Valley Charter School,4820050,0,34,32,32,33,32,33,34,32,26,0,0,0,0,0,288 +NA,NA,,2019-20,Rochester - Rochester Memorial,2500005,24,55,66,78,60,86,72,68,0,0,0,0,0,0,0,509 +NA,NA,,2019-20,Rockland - Jefferson Elementary School,2510060,0,54,59,52,53,55,0,0,0,0,0,0,0,0,0,273 +NA,NA,,2019-20,Rockland - John W Rogers Middle,2510305,0,0,0,0,0,0,187,194,192,160,0,0,0,0,0,733 +NA,NA,,2019-20,Rockland - Memorial Park,2510020,0,59,67,43,64,57,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2019-20,Rockland - R Stewart Esten,2510025,0,59,56,63,65,78,0,0,0,0,0,0,0,0,0,321 +NA,NA,,2019-20,Rockland - Rockland Senior High,2510505,67,0,0,0,0,0,0,0,0,0,149,135,141,158,6,656 +NA,NA,,2019-20,Rockport - Rockport Elementary,2520005,24,49,52,56,62,68,64,0,0,0,0,0,0,0,0,375 +NA,NA,,2019-20,Rockport - Rockport High,2520510,0,0,0,0,0,0,0,0,0,0,62,58,68,74,0,262 +NA,NA,,2019-20,Rockport - Rockport Middle,2520305,0,0,0,0,0,0,0,70,65,79,0,0,0,0,0,214 +NA,NA,,2019-20,Rowe - Rowe Elementary,2530005,10,11,4,8,13,5,13,9,0,0,0,0,0,0,0,73 +NA,NA,,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,0,0,0,0,0,0,228,251,234,231,253,161,111,99,0,1568 +NA,NA,,2019-20,Sabis International Charter (District) - Sabis International Charter School,4410505,0,105,115,149,129,128,160,132,131,128,97,102,104,92,2,1574 +NA,NA,,2019-20,Salem - Bates,2580003,0,62,63,58,70,73,66,0,0,0,0,0,0,0,0,392 +NA,NA,,2019-20,Salem - Carlton,2580015,0,41,39,48,42,32,48,0,0,0,0,0,0,0,0,250 +NA,NA,,2019-20,Salem - Collins Middle,2580305,0,0,0,0,0,0,0,232,213,224,0,0,0,0,0,669 +NA,NA,,2019-20,Salem - Horace Mann Laboratory,2580030,0,62,59,46,52,42,47,0,0,0,0,0,0,0,0,308 +NA,NA,,2019-20,Salem - New Liberty Innovation School,2580510,0,0,0,0,0,0,0,0,0,0,8,8,18,14,1,49 +NA,NA,,2019-20,Salem - Salem Early Childhood,2580001,87,9,0,0,0,0,0,0,0,0,0,0,0,0,0,96 +NA,NA,,2019-20,Salem - Salem High,2580505,0,0,0,0,0,0,0,0,0,0,237,193,241,207,8,886 +NA,NA,,2019-20,Salem - Salem Prep High School,2580515,0,0,0,0,0,0,0,0,0,0,3,5,5,6,0,19 +NA,NA,,2019-20,Salem - Saltonstall School,2580050,0,41,42,46,45,49,55,45,43,44,0,0,0,0,0,410 +NA,NA,,2019-20,Salem - Witchcraft Heights,2580070,0,83,86,106,99,85,82,0,0,0,0,0,0,0,0,541 +NA,NA,,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,4850485,0,0,0,0,0,0,0,73,72,72,82,70,60,66,0,495 +NA,NA,,2019-20,Sandwich - Forestdale School,2610002,62,155,190,188,0,0,0,0,0,0,0,0,0,0,0,595 +NA,NA,,2019-20,Sandwich - Oak Ridge,2610025,0,0,0,0,182,199,181,203,0,0,0,0,0,0,0,765 +NA,NA,,2019-20,Sandwich - Sandwich High,2610505,0,0,0,0,0,0,0,0,0,0,165,162,158,173,0,658 +NA,NA,,2019-20,Sandwich - Sandwich STEM Academy,2610305,0,0,0,0,0,0,0,0,219,229,0,0,0,0,0,448 +NA,NA,,2019-20,Saugus - Belmonte Saugus Middle,2620305,0,0,0,0,0,0,0,233,204,205,0,0,0,0,0,642 +NA,NA,,2019-20,Saugus - Douglas Waybright,2620067,0,18,39,39,24,41,28,0,0,0,0,0,0,0,0,189 +NA,NA,,2019-20,Saugus - Lynnhurst,2620040,0,69,42,43,42,45,49,0,0,0,0,0,0,0,0,290 +NA,NA,,2019-20,Saugus - Oaklandvale,2620050,0,37,42,42,43,41,51,0,0,0,0,0,0,0,0,256 +NA,NA,,2019-20,Saugus - Saugus High,2620505,0,0,0,0,0,0,0,0,0,0,163,175,183,161,7,689 +NA,NA,,2019-20,Saugus - Veterans Memorial,2620065,84,54,80,80,86,80,77,0,0,0,0,0,0,0,0,541 +NA,NA,,2019-20,Savoy - Emma L Miller Elementary School,2630010,10,7,5,10,6,8,12,0,0,0,0,0,0,0,0,58 +NA,NA,,2019-20,Scituate - Cushing Elementary,2640007,0,61,61,55,53,56,53,0,0,0,0,0,0,0,0,339 +NA,NA,,2019-20,Scituate - Gates Middle School,2640305,0,0,0,0,0,0,0,210,226,226,0,0,0,0,0,662 +NA,NA,,2019-20,Scituate - Hatherly Elementary,2640010,0,45,47,43,35,50,48,0,0,0,0,0,0,0,0,268 +NA,NA,,2019-20,Scituate - Jenkins Elementary School,2640015,0,53,59,63,57,51,57,0,0,0,0,0,0,0,0,340 +NA,NA,,2019-20,Scituate - Scituate High School,2640505,0,0,0,0,0,0,0,0,0,0,190,261,251,227,5,934 +NA,NA,,2019-20,Scituate - Wampatuck Elementary,2640020,64,62,63,73,58,54,60,0,0,0,0,0,0,0,0,434 +NA,NA,,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,0,0,0,0,0,0,0,144,184,159,0,0,0,0,0,487 +NA,NA,,2019-20,Seekonk - George R Martin,2650007,26,89,90,81,87,77,81,0,0,0,0,0,0,0,0,531 +NA,NA,,2019-20,Seekonk - Mildred Aitken School,2650015,22,67,72,80,78,72,69,0,0,0,0,0,0,0,0,460 +NA,NA,,2019-20,Seekonk - Seekonk High,2650505,0,0,0,0,0,0,0,0,0,0,141,165,149,147,0,602 +NA,NA,,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,0,75,74,74,75,82,74,75,70,70,0,0,0,0,0,669 +NA,NA,,2019-20,Sharon - Cottage Street,2660005,0,68,65,86,76,80,106,0,0,0,0,0,0,0,0,481 +NA,NA,,2019-20,Sharon - East Elementary,2660010,0,86,95,76,87,102,86,0,0,0,0,0,0,0,0,532 +NA,NA,,2019-20,Sharon - Heights Elementary,2660015,0,88,99,90,95,93,91,0,0,0,0,0,0,0,0,556 +NA,NA,,2019-20,Sharon - Sharon Early Childhood Center,2660001,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47 +NA,NA,,2019-20,Sharon - Sharon High,2660505,0,0,0,0,0,0,0,0,0,0,288,303,267,261,0,1119 +NA,NA,,2019-20,Sharon - Sharon Middle,2660305,0,0,0,0,0,0,0,297,285,290,0,0,0,0,0,872 +NA,NA,,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,0,0,0,0,0,0,0,0,307,334,316,308,0,1265 +NA,NA,,2019-20,Sherborn - Pine Hill,2690010,27,65,63,54,73,62,69,0,0,0,0,0,0,0,0,413 +NA,NA,,2019-20,Shrewsbury - Beal School,2710005,0,250,66,0,0,0,0,0,0,0,0,0,0,0,0,316 +NA,NA,,2019-20,Shrewsbury - Calvin Coolidge,2710015,0,39,85,95,116,75,0,0,0,0,0,0,0,0,0,410 +NA,NA,,2019-20,Shrewsbury - Floral Street School,2710020,0,0,121,180,207,218,0,0,0,0,0,0,0,0,0,726 +NA,NA,,2019-20,Shrewsbury - Oak Middle School,2710030,0,0,0,0,0,0,0,0,480,514,0,0,0,0,0,994 +NA,NA,,2019-20,Shrewsbury - Parker Road Preschool,2710040,230,0,0,0,0,0,0,0,0,0,0,0,0,0,0,230 +NA,NA,,2019-20,Shrewsbury - Sherwood Middle School,2710305,0,0,0,0,0,0,497,504,0,0,0,0,0,0,0,1001 +NA,NA,,2019-20,Shrewsbury - Shrewsbury Sr High,2710505,0,0,0,0,0,0,0,0,0,0,467,467,452,499,0,1885 +NA,NA,,2019-20,Shrewsbury - Spring Street,2710035,0,41,79,73,79,80,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2019-20,Shrewsbury - Walter J Paton,2710025,0,29,80,92,67,86,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2019-20,Shutesbury - Shutesbury Elementary,2720005,17,17,12,13,19,12,21,13,0,0,0,0,0,0,0,124 +NA,NA,,2019-20,Silver Lake - Silver Lake Regional High,7600505,109,0,0,0,0,0,0,0,0,0,283,270,280,288,7,1237 +NA,NA,,2019-20,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,0,0,0,0,0,262,242,0,0,0,0,0,504 +NA,NA,,2019-20,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,0,0,0,0,0,0,0,67,74,60,55,52,47,0,355 +NA,NA,,2019-20,Somerset - Chace Street,2730005,0,44,62,64,67,57,53,0,0,0,0,0,0,0,0,347 +NA,NA,,2019-20,Somerset - North Elementary,2730008,58,66,62,64,87,70,76,0,0,0,0,0,0,0,0,483 +NA,NA,,2019-20,Somerset - Somerset Middle School,2730305,0,0,0,0,0,0,0,222,210,218,0,0,0,0,0,650 +NA,NA,,2019-20,Somerset - South,2730015,0,39,41,45,47,35,52,0,0,0,0,0,0,0,0,259 +NA,NA,,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,0,0,0,0,0,0,0,0,250,259,246,267,4,1026 +NA,NA,,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,18,71,83,86,77,86,48,46,65,45,0,0,0,0,0,625 +NA,NA,,2019-20,Somerville - Arthur D Healey,2740075,17,53,65,55,48,45,40,50,55,46,0,0,0,0,0,474 +NA,NA,,2019-20,Somerville - Benjamin G Brown,2740015,0,48,47,30,43,43,38,0,0,0,0,0,0,0,0,249 +NA,NA,,2019-20,Somerville - Capuano Early Childhood Center,2740005,227,55,0,0,0,0,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2019-20,Somerville - E Somerville Community,2740111,0,66,88,86,76,90,82,82,78,82,0,0,0,0,0,730 +NA,NA,,2019-20,Somerville - Full Circle High School,2740510,0,0,0,0,0,0,0,0,0,0,9,10,14,20,1,54 +NA,NA,,2019-20,Somerville - John F Kennedy,2740083,1,48,49,44,52,36,44,56,50,67,0,0,0,0,0,447 +NA,NA,,2019-20,Somerville - Next Wave Junior High,2740410,0,0,0,0,0,0,0,1,4,10,0,0,0,0,0,15 +NA,NA,,2019-20,Somerville - Somerville High,2740505,0,0,0,0,0,0,0,0,0,0,317,319,280,301,11,1228 +NA,NA,,2019-20,Somerville - West Somerville Neighborhood,2740115,18,50,42,42,35,46,42,50,42,29,0,0,0,0,0,396 +NA,NA,,2019-20,Somerville - Winter Hill Community,2740120,24,41,37,34,31,35,73,50,54,60,0,0,0,0,0,439 +NA,NA,,2019-20,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,0,0,0,137,130,150,144,0,0,0,0,0,561 +NA,NA,,2019-20,South Hadley - Mosier,2780020,0,0,0,138,148,133,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2019-20,South Hadley - Plains Elementary,2780015,73,126,153,0,0,0,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2019-20,South Hadley - South Hadley High,2780505,0,0,0,0,0,0,0,0,0,0,138,139,145,137,9,568 +NA,NA,,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0,0,0,0,0,0,0,0,0,0,214,220,190,175,0,799 +NA,NA,,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,4880550,0,75,82,80,79,61,80,81,78,80,86,71,79,69,0,1001 +NA,NA,,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,0,0,0,0,0,0,0,0,171,167,156,144,0,638 +NA,NA,,2019-20,Southampton - William E Norris,2750005,43,60,63,59,75,61,58,73,0,0,0,0,0,0,0,492 +NA,NA,,2019-20,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,138,120,0,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2019-20,Southborough - Margaret A Neary,2760020,0,0,0,0,0,135,133,0,0,0,0,0,0,0,0,268 +NA,NA,,2019-20,Southborough - Mary E Finn School,2760008,82,140,117,0,0,0,0,0,0,0,0,0,0,0,0,339 +NA,NA,,2019-20,Southborough - P Brent Trottier,2760305,0,0,0,0,0,0,0,128,134,153,0,0,0,0,0,415 +NA,NA,,2019-20,Southbridge - Charlton Street,2770005,0,1,1,76,66,69,60,0,0,0,0,0,0,0,0,273 +NA,NA,,2019-20,Southbridge - Eastford Road,2770010,68,167,129,0,0,0,0,0,0,0,0,0,0,0,0,364 +NA,NA,,2019-20,Southbridge - Southbridge Academy,2770525,0,0,0,0,0,0,0,0,0,0,9,17,4,1,0,31 +NA,NA,,2019-20,Southbridge - Southbridge High School,2770515,0,0,0,0,0,0,0,0,0,0,142,112,96,99,2,451 +NA,NA,,2019-20,Southbridge - Southbridge Middle School,2770315,0,0,0,0,0,0,0,160,153,159,0,0,0,0,0,472 +NA,NA,,2019-20,Southbridge - West Street,2770020,0,0,0,82,91,66,77,0,0,0,0,0,0,0,0,316 +NA,NA,,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,0,0,0,0,0,0,0,0,0,0,388,367,370,333,0,1458 +NA,NA,,2019-20,Southern Berkshire - Mt Everett Regional,7650505,0,0,0,0,0,0,0,39,54,40,55,49,50,57,0,344 +NA,NA,,2019-20,Southern Berkshire - New Marlborough Central,7650018,17,10,15,5,18,12,0,0,0,0,0,0,0,0,0,77 +NA,NA,,2019-20,Southern Berkshire - South Egremont,7650030,0,10,1,0,0,0,0,0,0,0,0,0,0,0,0,11 +NA,NA,,2019-20,Southern Berkshire - Undermountain,7650035,34,28,30,28,37,42,44,0,0,0,0,0,0,0,0,243 +NA,NA,,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,0,0,0,0,0,0,0,0,315,302,278,250,0,1145 +NA,NA,,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,0,108,112,127,121,0,0,0,0,0,0,0,468 +NA,NA,,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,0,0,0,0,0,0,120,114,99,121,107,113,2,676 +NA,NA,,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,51,92,111,88,0,0,0,0,0,0,0,0,0,0,0,342 +NA,NA,,2019-20,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,0,0,0,0,0,0,0,75,63,64,59,0,261 +NA,NA,,2019-20,Spencer-E Brookfield - East Brookfield Elementary,7670008,80,26,19,23,23,24,17,28,0,0,0,0,0,0,0,240 +NA,NA,,2019-20,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,0,0,0,89,114,112,123,0,0,0,0,0,438 +NA,NA,,2019-20,Spencer-E Brookfield - Wire Village School,7670040,0,90,75,97,109,70,0,0,0,0,0,0,0,0,0,441 +NA,NA,,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,74,48,40,45,49,34,45,38,29,30,0,0,0,0,0,432 +NA,NA,,2019-20,Springfield - Alice B Beal Elementary,2810175,0,38,52,40,46,40,40,0,0,0,0,0,0,0,0,256 +NA,NA,,2019-20,Springfield - Arthur T Talmadge,2810165,0,40,34,42,39,43,35,0,0,0,0,0,0,0,0,233 +NA,NA,,2019-20,Springfield - Balliet Middle School,2810360,0,0,0,0,0,0,0,2,10,18,0,0,0,0,0,30 +NA,NA,,2019-20,Springfield - Brightwood,2810025,40,62,59,52,43,55,46,0,0,0,0,0,0,0,0,357 +NA,NA,,2019-20,Springfield - Chestnut Academy,2810365,0,0,0,0,0,0,0,108,132,110,0,0,0,0,0,350 +NA,NA,,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,0,0,0,0,0,0,0,109,106,98,0,0,0,0,0,313 +NA,NA,,2019-20,Springfield - Conservatory of the Arts,2810475,0,0,0,0,0,0,0,54,52,52,54,49,32,37,0,330 +NA,NA,,2019-20,Springfield - Daniel B Brunton,2810035,20,66,60,72,67,72,68,0,0,0,0,0,0,0,0,425 +NA,NA,,2019-20,Springfield - Early Childhood Education Center,2810001,153,16,0,0,0,0,0,0,0,0,0,0,0,0,0,169 +NA,NA,,2019-20,Springfield - Edward P. Boland School,2810010,190,90,88,71,97,72,89,0,0,0,0,0,0,0,0,697 +NA,NA,,2019-20,Springfield - Elias Brookings,2810030,46,49,47,39,49,53,42,0,0,0,0,0,0,0,0,325 +NA,NA,,2019-20,Springfield - Forest Park Middle,2810325,0,0,0,0,0,0,0,231,246,234,0,0,0,0,0,711 +NA,NA,,2019-20,Springfield - Frank H Freedman,2810075,0,55,60,40,44,49,42,0,0,0,0,0,0,0,0,290 +NA,NA,,2019-20,Springfield - Frederick Harris,2810080,64,109,100,112,112,81,76,0,0,0,0,0,0,0,0,654 +NA,NA,,2019-20,Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,0,0,0,0,0,0,0,0,3,13,16,0,32 +NA,NA,,2019-20,Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,0,0,0,0,0,0,0,13,6,18,5,0,42 +NA,NA,,2019-20,Springfield - German Gerena Community School,2810195,107,100,103,106,90,96,93,0,0,0,0,0,0,0,0,695 +NA,NA,,2019-20,Springfield - Glenwood,2810065,0,31,49,52,38,40,51,0,0,0,0,0,0,0,0,261 +NA,NA,,2019-20,Springfield - Glickman Elementary,2810068,0,46,56,47,42,72,55,0,0,0,0,0,0,0,0,318 +NA,NA,,2019-20,Springfield - High School Of Commerce,2810510,0,0,0,0,0,0,0,0,0,0,405,302,207,181,1,1096 +NA,NA,,2019-20,Springfield - Hiram L Dorman,2810050,0,31,44,47,47,42,51,0,0,0,0,0,0,0,0,262 +NA,NA,,2019-20,Springfield - Homer Street,2810085,0,92,65,63,69,54,64,0,0,0,0,0,0,0,0,407 +NA,NA,,2019-20,Springfield - Impact Prep at Chestnut,2810366,0,0,0,0,0,0,0,131,137,128,0,0,0,0,0,396 +NA,NA,,2019-20,Springfield - Indian Orchard Elementary,2810100,98,87,77,90,87,107,98,0,0,0,0,0,0,0,0,644 +NA,NA,,2019-20,Springfield - John F Kennedy Middle,2810328,0,0,0,0,0,0,0,174,163,144,0,0,0,0,0,481 +NA,NA,,2019-20,Springfield - John J Duggan Middle,2810320,0,0,0,0,0,0,0,168,173,185,91,71,54,34,0,776 +NA,NA,,2019-20,Springfield - Kensington International School,2810110,39,36,44,47,38,47,34,0,0,0,0,0,0,0,0,285 +NA,NA,,2019-20,Springfield - Liberty,2810115,0,45,53,49,47,42,37,0,0,0,0,0,0,0,0,273 +NA,NA,,2019-20,Springfield - Liberty Preparatory Academy,2810560,0,0,0,0,0,0,0,0,0,0,2,7,3,3,0,15 +NA,NA,,2019-20,Springfield - Lincoln,2810120,0,57,75,73,63,72,60,0,0,0,0,0,0,0,0,400 +NA,NA,,2019-20,Springfield - M Marcus Kiley Middle,2810330,0,0,0,0,0,0,0,250,245,238,0,0,0,0,0,733 +NA,NA,,2019-20,Springfield - Margaret C Ells,2810060,187,1,0,0,0,0,0,0,0,0,0,0,0,0,0,188 +NA,NA,,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,2810125,43,49,47,49,43,53,52,0,0,0,0,0,0,0,0,336 +NA,NA,,2019-20,Springfield - Mary M Lynch,2810140,0,32,44,46,57,32,36,0,0,0,0,0,0,0,0,247 +NA,NA,,2019-20,Springfield - Mary M Walsh,2810155,0,46,46,39,51,55,39,0,0,0,0,0,0,0,0,276 +NA,NA,,2019-20,Springfield - Mary O Pottenger,2810145,40,72,72,78,62,71,78,0,0,0,0,0,0,0,0,473 +NA,NA,,2019-20,Springfield - Milton Bradley School,2810023,82,61,74,80,84,74,68,0,0,0,0,0,0,0,0,523 +NA,NA,,2019-20,Springfield - Rebecca M Johnson,2810055,126,88,119,88,109,112,121,0,0,0,0,0,0,0,0,763 +NA,NA,,2019-20,Springfield - Rise Academy at Van Sickle,2810480,0,0,0,0,0,0,0,113,106,88,0,0,0,0,0,307 +NA,NA,,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,0,0,0,0,0,0,0,0,0,0,360,371,334,327,1,1393 +NA,NA,,2019-20,Springfield - Samuel Bowles,2810020,0,50,61,50,46,48,67,0,0,0,0,0,0,0,0,322 +NA,NA,,2019-20,Springfield - South End Middle School,2810355,0,0,0,0,0,0,0,88,83,68,0,0,0,0,0,239 +NA,NA,,2019-20,Springfield - Springfield Central High,2810500,0,0,0,0,0,0,0,0,0,0,641,523,418,479,2,2063 +NA,NA,,2019-20,Springfield - Springfield High School,2810570,0,0,0,0,0,0,0,0,0,0,38,41,39,87,0,205 +NA,NA,,2019-20,Springfield - Springfield High School of Science and Technology,2810530,0,0,0,0,0,0,0,0,0,0,410,275,280,265,15,1245 +NA,NA,,2019-20,Springfield - Springfield International Academy at Johnson,2810215,0,0,0,0,9,8,8,0,0,0,0,0,0,0,0,25 +NA,NA,,2019-20,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,0,0,0,0,0,0,0,0,24,27,0,0,0,51 +NA,NA,,2019-20,Springfield - Springfield Public Day Elementary School,2810005,0,0,2,8,13,10,19,0,0,0,0,0,0,0,0,52 +NA,NA,,2019-20,Springfield - Springfield Public Day High School,2810550,0,0,0,0,0,0,0,0,0,0,35,21,11,10,1,78 +NA,NA,,2019-20,Springfield - Springfield Public Day Middle School,2810345,0,0,0,0,0,0,0,14,19,14,0,0,0,0,0,47 +NA,NA,,2019-20,Springfield - Springfield Vocational Academy,2810675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107,107 +NA,NA,,2019-20,Springfield - STEM Middle Academy,2810350,0,0,0,0,0,0,0,91,92,91,0,0,0,0,0,274 +NA,NA,,2019-20,Springfield - Sumner Avenue,2810160,95,69,97,70,73,73,71,0,0,0,0,0,0,0,0,548 +NA,NA,,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,0,0,0,0,0,0,0,104,98,105,81,88,92,81,1,650 +NA,NA,,2019-20,Springfield - Thomas M Balliet,2810015,60,45,43,44,47,48,36,0,0,0,0,0,0,0,0,323 +NA,NA,,2019-20,Springfield - Van Sickle Academy,2810485,0,0,0,0,0,0,0,97,70,80,0,0,0,0,0,247 +NA,NA,,2019-20,Springfield - Warner,2810180,32,43,34,32,39,27,33,0,0,0,0,0,0,0,0,240 +NA,NA,,2019-20,Springfield - Washington,2810185,40,58,69,66,62,44,53,0,0,0,0,0,0,0,0,392 +NA,NA,,2019-20,Springfield - White Street,2810190,0,82,82,77,66,73,64,0,0,0,0,0,0,0,0,444 +NA,NA,,2019-20,Springfield - William N. DeBerry,2810045,0,41,30,45,49,43,53,0,0,0,0,0,0,0,0,261 +NA,NA,,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,0,54,53,55,54,54,54,0,0,0,0,0,0,0,0,324 +NA,NA,,2019-20,Stoneham - Colonial Park,2840005,38,48,43,47,46,42,0,0,0,0,0,0,0,0,0,264 +NA,NA,,2019-20,Stoneham - Robin Hood,2840025,41,66,71,65,79,72,0,0,0,0,0,0,0,0,0,394 +NA,NA,,2019-20,Stoneham - South,2840030,20,64,68,69,62,72,0,0,0,0,0,0,0,0,0,355 +NA,NA,,2019-20,Stoneham - Stoneham Central Middle School,2840405,0,0,0,0,0,0,172,192,174,176,0,0,0,0,0,714 +NA,NA,,2019-20,Stoneham - Stoneham High,2840505,0,0,0,0,0,0,0,0,0,0,146,140,179,180,0,645 +NA,NA,,2019-20,Stoughton - Edwin A Jones Early Childhood Center,2850012,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79 +NA,NA,,2019-20,Stoughton - Helen Hansen Elementary,2850010,0,48,41,37,46,36,41,0,0,0,0,0,0,0,0,249 +NA,NA,,2019-20,Stoughton - Joseph H Gibbons,2850025,0,59,62,57,67,61,64,0,0,0,0,0,0,0,0,370 +NA,NA,,2019-20,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,53,58,63,54,71,44,0,0,0,0,0,0,0,0,343 +NA,NA,,2019-20,Stoughton - O'Donnell Middle School,2850405,0,0,0,0,0,0,0,270,292,304,0,0,0,0,0,866 +NA,NA,,2019-20,Stoughton - Richard L. Wilkins Elementary School,2850020,30,54,41,47,56,47,54,0,0,0,0,0,0,0,0,329 +NA,NA,,2019-20,Stoughton - South Elementary,2850015,0,41,35,35,29,46,48,0,0,0,0,0,0,0,0,234 +NA,NA,,2019-20,Stoughton - Stoughton High,2850505,0,0,0,0,0,0,0,0,0,0,255,240,264,257,6,1022 +NA,NA,,2019-20,Sturbridge - Burgess Elementary,2870005,81,107,99,113,119,115,118,135,0,0,0,0,0,0,0,887 +NA,NA,,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,0,0,0,0,0,0,0,0,0,217,222,202,191,0,832 +NA,NA,,2019-20,Sudbury - Ephraim Curtis Middle,2880305,0,0,0,0,0,0,0,296,344,305,0,0,0,0,0,945 +NA,NA,,2019-20,Sudbury - General John Nixon Elementary,2880025,0,55,39,59,46,73,61,0,0,0,0,0,0,0,0,333 +NA,NA,,2019-20,Sudbury - Israel Loring School,2880015,0,78,80,63,81,84,63,0,0,0,0,0,0,0,0,449 +NA,NA,,2019-20,Sudbury - Josiah Haynes,2880010,0,59,57,57,64,65,73,0,0,0,0,0,0,0,0,375 +NA,NA,,2019-20,Sudbury - Peter Noyes,2880030,40,87,86,85,91,90,86,0,0,0,0,0,0,0,0,565 +NA,NA,,2019-20,Sunderland - Sunderland Elementary,2890005,20,28,28,26,31,37,18,34,0,0,0,0,0,0,0,222 +NA,NA,,2019-20,Sutton - Sutton Early Learning,2900003,37,93,105,100,0,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2019-20,Sutton - Sutton Elementary,2900005,0,0,0,0,88,108,106,0,0,0,0,0,0,0,0,302 +NA,NA,,2019-20,Sutton - Sutton High School,2900510,0,0,0,0,0,0,0,0,0,0,85,97,86,105,2,375 +NA,NA,,2019-20,Sutton - Sutton Middle School,2900305,0,0,0,0,0,0,0,107,122,116,0,0,0,0,0,345 +NA,NA,,2019-20,Swampscott - Clarke,2910005,0,43,44,41,46,39,0,0,0,0,0,0,0,0,0,213 +NA,NA,,2019-20,Swampscott - Hadley,2910010,0,65,64,65,61,69,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2019-20,Swampscott - Stanley,2910020,0,54,47,47,50,43,0,0,0,0,0,0,0,0,0,241 +NA,NA,,2019-20,Swampscott - Swampscott High,2910505,0,0,0,0,0,0,0,0,0,0,158,193,183,168,1,703 +NA,NA,,2019-20,Swampscott - Swampscott Middle,2910305,59,0,0,0,0,0,154,160,188,176,0,0,0,0,0,737 +NA,NA,,2019-20,Swansea - Elizabeth S Brown,2920006,0,0,0,0,95,91,92,0,0,0,0,0,0,0,0,278 +NA,NA,,2019-20,Swansea - Gardner,2920015,0,98,84,95,0,0,0,0,0,0,0,0,0,0,0,277 +NA,NA,,2019-20,Swansea - Joseph Case High,2920505,0,0,0,0,0,0,0,0,0,0,130,131,132,131,3,527 +NA,NA,,2019-20,Swansea - Joseph Case Jr High,2920305,0,0,0,0,0,0,0,178,186,200,0,0,0,0,0,564 +NA,NA,,2019-20,Swansea - Joseph G Luther,2920020,0,0,0,0,72,51,82,0,0,0,0,0,0,0,0,205 +NA,NA,,2019-20,Swansea - Mark G Hoyle Elementary,2920017,57,55,67,73,0,0,0,0,0,0,0,0,0,0,0,252 +NA,NA,,2019-20,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,0,0,0,0,0,0,293,294,0,0,0,0,0,587 +NA,NA,,2019-20,Tantasqua - Tantasqua Regional Sr High,7700505,0,0,0,0,0,0,0,0,0,0,161,174,183,194,3,715 +NA,NA,,2019-20,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,0,0,0,0,0,0,0,146,130,115,100,0,491 +NA,NA,,2019-20,Taunton - Benjamin Friedman Middle,2930315,0,0,0,0,0,0,261,260,270,0,0,0,0,0,0,791 +NA,NA,,2019-20,Taunton - East Taunton Elementary,2930010,0,110,112,131,128,124,0,0,0,0,0,0,0,0,0,605 +NA,NA,,2019-20,Taunton - Edmund Hatch Bennett,2930007,0,57,62,80,59,53,0,0,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Taunton - Edward F. Leddy Preschool,2930005,278,0,0,0,0,0,0,0,0,0,0,0,0,0,0,278 +NA,NA,,2019-20,Taunton - Elizabeth Pole,2930027,0,105,107,115,127,118,0,0,0,0,0,0,0,0,0,572 +NA,NA,,2019-20,Taunton - H H Galligan,2930057,0,57,46,54,49,56,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2019-20,Taunton - Hopewell,2930035,0,58,51,49,54,62,0,0,0,0,0,0,0,0,0,274 +NA,NA,,2019-20,Taunton - John F Parker Middle,2930305,0,0,0,0,0,0,153,156,163,0,0,0,0,0,0,472 +NA,NA,,2019-20,Taunton - Joseph C Chamberlain,2930008,0,96,92,87,104,128,0,0,0,0,0,0,0,0,0,507 +NA,NA,,2019-20,Taunton - Joseph H Martin,2930042,0,0,0,0,0,0,236,233,235,0,0,0,0,0,0,704 +NA,NA,,2019-20,Taunton - Mulcahey Elementary School,2930015,34,99,110,90,92,80,0,0,0,0,0,0,0,0,0,505 +NA,NA,,2019-20,Taunton - Taunton Alternative High School,2930525,0,0,0,0,0,0,0,0,0,0,0,6,25,55,0,86 +NA,NA,,2019-20,Taunton - Taunton High,2930505,0,0,0,0,0,0,0,0,0,690,519,509,490,451,10,2669 +NA,NA,,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,38,41,54,49,70,68,124,181,237,378,357,309,277,0,2183 +NA,NA,,2019-20,Tewksbury - Heath-Brook,2950010,0,111,107,118,0,0,0,0,0,0,0,0,0,0,0,336 +NA,NA,,2019-20,Tewksbury - John F. Ryan,2950023,0,0,0,0,0,0,252,259,0,0,0,0,0,0,0,511 +NA,NA,,2019-20,Tewksbury - John W. Wynn Middle,2950305,0,0,0,0,0,0,0,0,259,279,0,0,0,0,0,538 +NA,NA,,2019-20,Tewksbury - L F Dewing,2950001,173,136,142,119,0,0,0,0,0,0,0,0,0,0,0,570 +NA,NA,,2019-20,Tewksbury - Louise Davy Trahan,2950025,0,0,0,0,134,102,0,0,0,0,0,0,0,0,0,236 +NA,NA,,2019-20,Tewksbury - North Street,2950020,0,0,0,0,162,138,0,0,0,0,0,0,0,0,0,300 +NA,NA,,2019-20,Tewksbury - Tewksbury Memorial High,2950505,0,0,0,0,0,0,0,0,0,0,198,219,213,220,7,857 +NA,NA,,2019-20,Tisbury - Tisbury Elementary,2960005,9,32,23,33,32,32,24,42,34,38,0,0,0,0,0,299 +NA,NA,,2019-20,Topsfield - Proctor Elementary,2980005,0,0,0,0,0,83,92,96,0,0,0,0,0,0,0,271 +NA,NA,,2019-20,Topsfield - Steward Elementary,2980010,44,79,81,85,88,0,0,0,0,0,0,0,0,0,0,377 +NA,NA,,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0,0,0,0,0,0,0,0,0,229,258,233,249,0,969 +NA,NA,,2019-20,Triton - Newbury Elementary,7730020,43,49,48,52,41,53,53,54,0,0,0,0,0,0,0,393 +NA,NA,,2019-20,Triton - Pine Grove,7730025,28,53,48,59,59,57,76,55,0,0,0,0,0,0,0,435 +NA,NA,,2019-20,Triton - Salisbury Elementary,7730015,47,58,69,63,63,52,61,70,0,0,0,0,0,0,0,483 +NA,NA,,2019-20,Triton - Triton Regional High School,7730505,0,0,0,0,0,0,0,0,0,0,194,161,156,171,0,682 +NA,NA,,2019-20,Triton - Triton Regional Middle School,7730405,0,0,0,0,0,0,0,0,183,178,0,0,0,0,0,361 +NA,NA,,2019-20,Truro - Truro Central,3000005,21,12,15,14,15,19,12,5,0,0,0,0,0,0,0,113 +NA,NA,,2019-20,Tyngsborough - Tyngsborough Elementary,3010020,52,116,126,114,148,122,116,0,0,0,0,0,0,0,0,794 +NA,NA,,2019-20,Tyngsborough - Tyngsborough High School,3010505,0,0,0,0,0,0,0,0,0,0,100,122,109,119,0,450 +NA,NA,,2019-20,Tyngsborough - Tyngsborough Middle,3010305,0,0,0,0,0,0,0,150,120,116,0,0,0,0,0,386 +NA,NA,,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,0,0,0,0,0,0,0,135,145,141,0,0,0,0,0,421 +NA,NA,,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,60,59,72,69,72,75,73,85,77,69,0,0,0,0,0,711 +NA,NA,,2019-20,Up-Island Regional - Chilmark Elementary,7740010,0,5,10,10,9,8,12,0,0,0,0,0,0,0,0,54 +NA,NA,,2019-20,Up-Island Regional - West Tisbury Elementary,7740020,8,27,37,33,32,38,42,57,40,44,0,0,0,0,0,358 +NA,NA,,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,0,0,0,0,0,0,0,173,186,177,170,0,706 +NA,NA,,2019-20,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0,0,2,6,28,0,36 +NA,NA,,2019-20,Uxbridge - Taft Early Learning Center,3040005,83,127,120,126,117,0,0,0,0,0,0,0,0,0,0,573 +NA,NA,,2019-20,Uxbridge - Uxbridge High,3040505,0,0,0,0,0,0,0,0,0,150,129,95,110,103,5,592 +NA,NA,,2019-20,Uxbridge - Whitin Intermediate,3040405,0,0,0,0,0,122,137,124,134,0,0,0,0,0,0,517 +NA,NA,,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,0,0,0,0,0,0,110,111,79,65,0,0,0,0,0,365 +NA,NA,,2019-20,Wachusett - Central Tree Middle,7750310,0,0,0,0,0,0,0,113,127,121,0,0,0,0,0,361 +NA,NA,,2019-20,Wachusett - Chocksett Middle School,7750315,0,0,0,0,0,0,68,91,78,95,0,0,0,0,0,332 +NA,NA,,2019-20,Wachusett - Davis Hill Elementary,7750018,0,60,84,76,90,80,84,0,0,0,0,0,0,0,0,474 +NA,NA,,2019-20,Wachusett - Dawson,7750020,0,78,94,71,94,83,90,0,0,0,0,0,0,0,0,510 +NA,NA,,2019-20,Wachusett - Early Childhood Center,7750001,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,159 +NA,NA,,2019-20,Wachusett - Glenwood Elementary School,7750060,0,0,0,0,116,135,108,0,0,0,0,0,0,0,0,359 +NA,NA,,2019-20,Wachusett - Houghton Elementary,7750027,0,58,77,72,61,86,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2019-20,Wachusett - Leroy E.Mayo,7750032,0,62,79,70,91,91,89,0,0,0,0,0,0,0,0,482 +NA,NA,,2019-20,Wachusett - Mountview Middle,7750305,0,0,0,0,0,0,0,258,286,276,0,0,0,0,0,820 +NA,NA,,2019-20,Wachusett - Naquag Elementary School,7750005,0,91,107,99,0,0,0,0,0,0,0,0,0,0,0,297 +NA,NA,,2019-20,Wachusett - Paxton Center,7750040,0,39,37,33,48,41,60,64,64,64,0,0,0,0,0,450 +NA,NA,,2019-20,Wachusett - Thomas Prince,7750045,0,35,26,33,52,36,52,44,46,43,0,0,0,0,0,367 +NA,NA,,2019-20,Wachusett - Wachusett Regional High,7750505,0,0,0,0,0,0,0,0,0,0,509,499,523,500,14,2045 +NA,NA,,2019-20,Wakefield - Dolbeare,3050005,0,88,89,95,103,90,0,0,0,0,0,0,0,0,0,465 +NA,NA,,2019-20,Wakefield - Early Childhood Center at the Doyle School,3050001,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140 +NA,NA,,2019-20,Wakefield - Galvin Middle School,3050310,0,0,0,0,0,0,266,264,265,253,0,0,0,0,0,1048 +NA,NA,,2019-20,Wakefield - Greenwood,3050020,0,44,43,44,49,44,0,0,0,0,0,0,0,0,0,224 +NA,NA,,2019-20,Wakefield - Wakefield Memorial High,3050505,0,0,0,0,0,0,0,0,0,0,219,250,252,262,0,983 +NA,NA,,2019-20,Wakefield - Walton,3050040,0,43,49,43,46,47,0,0,0,0,0,0,0,0,0,228 +NA,NA,,2019-20,Wakefield - Woodville School,3050015,0,86,80,79,75,77,0,0,0,0,0,0,0,0,0,397 +NA,NA,,2019-20,Wales - Wales Elementary,3060005,19,16,13,14,15,26,17,25,0,0,0,0,0,0,0,145 +NA,NA,,2019-20,Walpole - Bird Middle,3070305,0,0,0,0,0,0,0,148,126,168,0,0,0,0,0,442 +NA,NA,,2019-20,Walpole - Boyden,3070010,0,55,58,64,59,55,52,0,0,0,0,0,0,0,0,343 +NA,NA,,2019-20,Walpole - Daniel Feeney Preschool Center,3070002,76,0,0,0,0,0,0,0,0,0,0,0,0,0,0,76 +NA,NA,,2019-20,Walpole - Eleanor N Johnson Middle,3070310,0,0,0,0,0,0,0,146,145,141,0,0,0,0,0,432 +NA,NA,,2019-20,Walpole - Elm Street School,3070005,0,56,71,68,76,79,69,0,0,0,0,0,0,0,0,419 +NA,NA,,2019-20,Walpole - Fisher,3070015,0,70,75,74,65,80,78,0,0,0,0,0,0,0,0,442 +NA,NA,,2019-20,Walpole - Old Post Road,3070018,0,85,75,66,83,61,77,0,0,0,0,0,0,0,0,447 +NA,NA,,2019-20,Walpole - Walpole High,3070505,0,0,0,0,0,0,0,0,0,0,246,284,269,273,6,1078 +NA,NA,,2019-20,Waltham - Douglas MacArthur Elementary School,3080032,0,72,84,75,82,77,74,0,0,0,0,0,0,0,0,464 +NA,NA,,2019-20,Waltham - Henry Whittemore Elementary School,3080065,0,61,68,71,81,78,66,0,0,0,0,0,0,0,0,425 +NA,NA,,2019-20,Waltham - James Fitzgerald Elementary School,3080060,0,60,73,75,62,65,67,0,0,0,0,0,0,0,0,402 +NA,NA,,2019-20,Waltham - John F Kennedy Middle,3080404,0,0,0,0,0,0,0,184,168,185,0,0,0,0,0,537 +NA,NA,,2019-20,Waltham - John W. McDevitt Middle School,3080415,0,0,0,0,0,0,0,230,252,231,0,0,0,0,0,713 +NA,NA,,2019-20,Waltham - Northeast Elementary School,3080040,73,86,73,91,70,83,89,0,0,0,0,0,0,0,0,565 +NA,NA,,2019-20,Waltham - Thomas R Plympton Elementary School,3080050,0,66,64,62,57,81,69,0,0,0,0,0,0,0,0,399 +NA,NA,,2019-20,Waltham - Waltham Public Schools Dual Language Program,3080001,0,37,38,35,36,0,0,0,0,0,0,0,0,0,0,146 +NA,NA,,2019-20,Waltham - Waltham Sr High,3080505,0,0,0,0,0,0,0,0,0,0,434,407,408,404,1,1654 +NA,NA,,2019-20,Waltham - William F. Stanley Elementary School,3080005,75,56,54,57,71,66,54,0,0,0,0,0,0,0,0,433 +NA,NA,,2019-20,Ware - Stanley M Koziol Elementary School,3090020,58,86,85,72,77,0,0,0,0,0,0,0,0,0,0,378 +NA,NA,,2019-20,Ware - Ware Junior/Senior High School,3090505,0,0,0,0,0,0,0,0,113,107,69,61,69,42,7,468 +NA,NA,,2019-20,Ware - Ware Middle School,3090305,0,0,0,0,0,87,100,101,0,0,0,0,0,0,0,288 +NA,NA,,2019-20,Wareham - John William Decas,3100003,80,198,161,191,0,0,0,0,0,0,0,0,0,0,0,630 +NA,NA,,2019-20,Wareham - Minot Forest,3100017,0,0,0,0,150,173,0,0,0,0,0,0,0,0,0,323 +NA,NA,,2019-20,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,0,0,0,0,0,0,0,3,9,15,17,0,44 +NA,NA,,2019-20,Wareham - Wareham Middle,3100305,0,0,0,0,0,0,176,190,157,0,0,0,0,0,0,523 +NA,NA,,2019-20,Wareham - Wareham Senior High,3100505,0,0,0,0,0,0,0,0,0,187,146,101,79,92,8,613 +NA,NA,,2019-20,Watertown - Cunniff,3140015,14,42,56,59,42,41,55,0,0,0,0,0,0,0,0,309 +NA,NA,,2019-20,Watertown - Hosmer,3140020,118,97,107,100,98,77,70,0,0,0,0,0,0,0,0,667 +NA,NA,,2019-20,Watertown - James Russell Lowell,3140025,14,82,79,74,66,55,61,0,0,0,0,0,0,0,0,431 +NA,NA,,2019-20,Watertown - Watertown High,3140505,0,0,0,0,0,0,0,0,0,0,173,163,184,154,3,677 +NA,NA,,2019-20,Watertown - Watertown Middle,3140305,0,0,0,0,0,0,0,193,205,181,0,0,0,0,0,579 +NA,NA,,2019-20,Wayland - Claypit Hill School,3150005,0,80,62,104,98,84,78,0,0,0,0,0,0,0,0,506 +NA,NA,,2019-20,Wayland - Happy Hollow School,3150015,0,60,56,69,66,63,69,0,0,0,0,0,0,0,0,383 +NA,NA,,2019-20,Wayland - Loker School,3150020,0,62,60,65,47,47,43,0,0,0,0,0,0,0,0,324 +NA,NA,,2019-20,Wayland - Wayland High School,3150505,0,0,0,0,0,0,0,0,0,0,202,198,230,206,0,836 +NA,NA,,2019-20,Wayland - Wayland Middle School,3150305,0,0,0,0,0,0,0,206,241,211,0,0,0,0,0,658 +NA,NA,,2019-20,Webster - Bartlett High School,3160505,0,0,0,0,0,0,0,0,0,0,108,114,102,102,6,432 +NA,NA,,2019-20,Webster - Park Avenue Elementary,3160015,40,157,154,147,165,155,0,0,0,0,0,0,0,0,0,818 +NA,NA,,2019-20,Webster - Webster Middle School,3160315,0,0,0,0,0,0,155,149,161,126,0,0,0,0,0,591 +NA,NA,,2019-20,Wellesley - Ernest F Upham,3170050,0,34,28,45,41,32,45,0,0,0,0,0,0,0,0,225 +NA,NA,,2019-20,Wellesley - Hunnewell,3170025,0,41,43,42,37,44,47,0,0,0,0,0,0,0,0,254 +NA,NA,,2019-20,Wellesley - John D Hardy,3170020,0,39,40,44,38,51,44,0,0,0,0,0,0,0,0,256 +NA,NA,,2019-20,Wellesley - Joseph E Fiske,3170015,0,50,50,46,55,41,53,0,0,0,0,0,0,0,0,295 +NA,NA,,2019-20,Wellesley - Katharine Lee Bates,3170005,0,51,54,57,61,62,50,0,0,0,0,0,0,0,0,335 +NA,NA,,2019-20,Wellesley - Preschool at Wellesley Schools,3170001,99,0,0,0,0,0,0,0,0,0,0,0,0,0,0,99 +NA,NA,,2019-20,Wellesley - Schofield,3170045,0,62,60,66,58,61,67,0,0,0,0,0,0,0,0,374 +NA,NA,,2019-20,Wellesley - Sprague Elementary School,3170048,0,50,56,66,69,54,60,0,0,0,0,0,0,0,0,355 +NA,NA,,2019-20,Wellesley - Wellesley Middle,3170305,0,0,0,0,0,0,0,408,382,375,0,0,0,0,0,1165 +NA,NA,,2019-20,Wellesley - Wellesley Sr High,3170505,0,0,0,0,0,0,0,0,0,0,376,350,393,380,5,1504 +NA,NA,,2019-20,Wellfleet - Wellfleet Elementary,3180005,0,19,18,15,19,16,19,0,0,0,0,0,0,0,0,106 +NA,NA,,2019-20,West Boylston - Major Edwards Elementary,3220005,32,62,67,59,65,63,60,0,0,0,0,0,0,0,0,408 +NA,NA,,2019-20,West Boylston - West Boylston Junior/Senior High,3220505,0,0,0,0,0,0,0,69,76,73,68,87,72,56,0,501 +NA,NA,,2019-20,West Bridgewater - Howard School,3230305,0,0,0,0,0,92,87,108,0,0,0,0,0,0,0,287 +NA,NA,,2019-20,West Bridgewater - Rose L Macdonald,3230003,0,0,112,90,95,0,0,0,0,0,0,0,0,0,0,297 +NA,NA,,2019-20,West Bridgewater - Spring Street School,3230005,63,95,0,0,0,0,0,0,0,0,0,0,0,0,0,158 +NA,NA,,2019-20,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,0,0,0,0,0,107,107,105,103,103,106,0,631 +NA,NA,,2019-20,West Springfield - Cowing Early Childhood,3320001,124,0,0,0,0,0,0,0,0,0,0,0,0,0,0,124 +NA,NA,,2019-20,West Springfield - John Ashley,3320005,0,233,0,0,0,0,0,0,0,0,0,0,0,0,0,233 +NA,NA,,2019-20,West Springfield - John R Fausey,3320010,0,0,73,76,80,97,91,0,0,0,0,0,0,0,0,417 +NA,NA,,2019-20,West Springfield - Memorial,3320025,0,0,41,31,47,46,48,0,0,0,0,0,0,0,0,213 +NA,NA,,2019-20,West Springfield - Mittineague,3320030,0,0,38,35,39,35,35,0,0,0,0,0,0,0,0,182 +NA,NA,,2019-20,West Springfield - Philip G Coburn,3320007,0,46,87,96,114,81,95,0,0,0,0,0,0,0,0,519 +NA,NA,,2019-20,West Springfield - Tatham,3320040,0,3,57,48,49,52,53,0,0,0,0,0,0,0,0,262 +NA,NA,,2019-20,West Springfield - West Springfield High,3320505,0,0,0,0,0,0,0,0,0,0,336,303,282,296,15,1232 +NA,NA,,2019-20,West Springfield - West Springfield Middle,3320305,0,0,0,0,0,0,0,314,303,291,0,0,0,0,0,908 +NA,NA,,2019-20,Westborough - Annie E Fales,3210010,0,73,101,75,96,0,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2019-20,Westborough - Elsie A Hastings Elementary,3210025,128,79,94,97,105,0,0,0,0,0,0,0,0,0,0,503 +NA,NA,,2019-20,Westborough - J Harding Armstrong,3210005,0,101,86,122,110,0,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2019-20,Westborough - Mill Pond School,3210045,0,0,0,0,0,284,291,307,0,0,0,0,0,0,0,882 +NA,NA,,2019-20,Westborough - Sarah W Gibbons Middle,3210305,0,0,0,0,0,0,0,0,330,316,0,0,0,0,0,646 +NA,NA,,2019-20,Westborough - Westborough High,3210505,0,0,0,0,0,0,0,0,0,0,266,302,318,261,0,1147 +NA,NA,,2019-20,Westfield - Abner Gibbs,3250020,0,38,39,48,43,40,0,0,0,0,0,0,0,0,0,208 +NA,NA,,2019-20,Westfield - Fort Meadow Early Childhood Center,3250003,171,0,0,0,0,0,0,0,0,0,0,0,0,0,0,171 +NA,NA,,2019-20,Westfield - Franklin Ave,3250015,0,48,40,36,38,45,0,0,0,0,0,0,0,0,0,207 +NA,NA,,2019-20,Westfield - Highland,3250025,0,86,85,59,60,77,0,0,0,0,0,0,0,0,0,367 +NA,NA,,2019-20,Westfield - Munger Hill,3250033,0,61,73,72,85,82,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2019-20,Westfield - Paper Mill,3250036,0,72,73,54,60,58,0,0,0,0,0,0,0,0,0,317 +NA,NA,,2019-20,Westfield - Southampton Road,3250040,0,66,71,56,68,68,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2019-20,Westfield - Westfield High,3250505,0,0,0,0,0,0,0,0,0,0,260,298,293,312,21,1184 +NA,NA,,2019-20,Westfield - Westfield Intermediate School,3250075,0,0,0,0,0,0,346,398,0,0,0,0,0,0,0,744 +NA,NA,,2019-20,Westfield - Westfield Middle School,3250310,0,0,0,0,0,0,0,0,383,410,0,0,0,0,0,793 +NA,NA,,2019-20,Westfield - Westfield Technical Academy,3250605,0,0,0,0,0,0,0,0,0,0,155,147,142,124,0,568 +NA,NA,,2019-20,Westford - Abbot Elementary,3260004,0,0,0,0,100,136,134,0,0,0,0,0,0,0,0,370 +NA,NA,,2019-20,Westford - Blanchard Middle,3260310,0,0,0,0,0,0,0,167,184,186,0,0,0,0,0,537 +NA,NA,,2019-20,Westford - Col John Robinson,3260025,0,79,92,103,0,0,0,0,0,0,0,0,0,0,0,274 +NA,NA,,2019-20,Westford - Day Elementary,3260007,0,0,0,0,92,120,133,0,0,0,0,0,0,0,0,345 +NA,NA,,2019-20,Westford - John A. Crisafulli Elementary School,3260045,0,0,0,0,115,117,122,0,0,0,0,0,0,0,0,354 +NA,NA,,2019-20,Westford - Millennium Elementary,3260013,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70 +NA,NA,,2019-20,Westford - Nabnasset,3260015,0,99,107,123,0,0,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2019-20,Westford - Rita E. Miller Elementary School,3260055,44,95,106,111,0,0,0,0,0,0,0,0,0,0,0,356 +NA,NA,,2019-20,Westford - Stony Brook School,3260330,0,0,0,0,0,0,0,191,202,209,0,0,0,0,0,602 +NA,NA,,2019-20,Westford - Westford Academy,3260505,0,0,0,0,0,0,0,0,0,0,431,392,443,424,1,1691 +NA,NA,,2019-20,Westhampton - Westhampton Elementary School,3270005,9,13,15,10,20,17,20,16,0,0,0,0,0,0,0,120 +NA,NA,,2019-20,Weston - Country,3300010,21,72,80,61,63,0,0,0,0,0,0,0,0,0,0,297 +NA,NA,,2019-20,Weston - Field Elementary School,3300012,0,0,0,0,0,155,152,0,0,0,0,0,0,0,0,307 +NA,NA,,2019-20,Weston - Weston High,3300505,0,0,0,0,0,0,0,0,0,0,159,166,168,170,0,663 +NA,NA,,2019-20,Weston - Weston Middle,3300305,0,0,0,0,0,0,0,149,180,158,0,0,0,0,0,487 +NA,NA,,2019-20,Weston - Woodland,3300015,21,56,60,64,84,0,0,0,0,0,0,0,0,0,0,285 +NA,NA,,2019-20,Westport - Alice A Macomber,3310015,52,105,106,108,0,0,0,0,0,0,0,0,0,0,0,371 +NA,NA,,2019-20,Westport - Westport Elementary,3310030,0,0,0,0,112,124,134,113,0,0,0,0,0,0,0,483 +NA,NA,,2019-20,Westport - Westport Junior/Senior High School,3310515,0,0,0,0,0,0,0,0,123,145,83,78,87,48,0,564 +NA,NA,,2019-20,Westwood - Deerfield School,3350010,0,27,26,24,33,41,43,0,0,0,0,0,0,0,0,194 +NA,NA,,2019-20,Westwood - Downey,3350012,2,43,60,49,44,46,42,0,0,0,0,0,0,0,0,286 +NA,NA,,2019-20,Westwood - E W Thurston Middle,3350305,0,0,0,0,0,0,0,223,228,247,0,0,0,0,0,698 +NA,NA,,2019-20,Westwood - Martha Jones,3350017,0,31,39,55,45,51,48,0,0,0,0,0,0,0,0,269 +NA,NA,,2019-20,Westwood - Paul Hanlon,3350015,0,28,31,46,32,34,38,0,0,0,0,0,0,0,0,209 +NA,NA,,2019-20,Westwood - Westwood High,3350505,0,0,0,0,0,0,0,0,0,0,256,255,247,236,0,994 +NA,NA,,2019-20,Westwood - Westwood Integrated Preschool,3350050,40,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40 +NA,NA,,2019-20,Westwood - William E Sheehan,3350025,0,41,57,41,48,56,67,0,0,0,0,0,0,0,0,310 +NA,NA,,2019-20,Weymouth - Abigail Adams Middle School,3360310,0,0,0,0,0,0,422,463,3,1,0,0,0,0,0,889 +NA,NA,,2019-20,Weymouth - Academy Avenue,3360005,0,57,60,64,74,55,0,0,0,0,0,0,0,0,0,310 +NA,NA,,2019-20,Weymouth - Frederick C Murphy,3360050,0,29,40,42,40,51,0,0,0,0,0,0,0,0,0,202 +NA,NA,,2019-20,Weymouth - Johnson Early Childhood Center,3360003,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199 +NA,NA,,2019-20,Weymouth - Lawrence W Pingree,3360065,0,59,33,34,35,38,0,0,0,0,0,0,0,0,0,199 +NA,NA,,2019-20,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,0,0,0,0,0,1,441,449,0,0,0,0,0,891 +NA,NA,,2019-20,Weymouth - Ralph Talbot,3360085,0,57,42,45,47,54,0,0,0,0,0,0,0,0,0,245 +NA,NA,,2019-20,Weymouth - Thomas V Nash,3360060,0,21,26,34,32,41,0,0,0,0,0,0,0,0,0,154 +NA,NA,,2019-20,Weymouth - Thomas W. Hamilton Primary School,3360105,0,42,50,56,69,68,0,0,0,0,0,0,0,0,0,285 +NA,NA,,2019-20,Weymouth - Wessagusset,3360110,0,41,49,58,53,52,0,0,0,0,0,0,0,0,0,253 +NA,NA,,2019-20,Weymouth - Weymouth High School,3360505,0,0,0,0,0,0,0,0,0,0,464,459,429,464,14,1830 +NA,NA,,2019-20,Weymouth - William Seach,3360080,0,54,64,63,68,57,0,0,0,0,0,0,0,0,0,306 +NA,NA,,2019-20,Whately - Whately Elementary,3370005,19,16,15,14,19,12,15,17,0,0,0,0,0,0,0,127 +NA,NA,,2019-20,Whitman-Hanson - Hanson Middle School,7800315,0,0,0,0,0,0,113,108,118,127,0,0,0,0,0,466 +NA,NA,,2019-20,Whitman-Hanson - Indian Head,7800035,0,92,98,102,104,102,0,0,0,0,0,0,0,0,0,498 +NA,NA,,2019-20,Whitman-Hanson - John H Duval,7800030,0,67,73,77,75,73,81,0,0,0,0,0,0,0,0,446 +NA,NA,,2019-20,Whitman-Hanson - Louise A Conley,7800010,0,79,77,88,85,92,82,0,0,0,0,0,0,0,0,503 +NA,NA,,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,7800001,109,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109 +NA,NA,,2019-20,Whitman-Hanson - Whitman Hanson Regional,7800505,0,0,0,0,0,0,0,0,0,0,282,290,291,290,5,1158 +NA,NA,,2019-20,Whitman-Hanson - Whitman Middle,7800310,0,0,0,0,0,0,0,197,205,177,0,0,0,0,0,579 +NA,NA,,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0,0,0,0,0,0,0,0,352,312,273,317,0,1254 +NA,NA,,2019-20,Williamsburg - Anne T. Dunphy School,3400020,7,19,19,16,16,24,19,17,0,0,0,0,0,0,0,137 +NA,NA,,2019-20,Wilmington - Boutwell,3420005,37,102,0,0,0,0,0,0,0,0,0,0,0,0,0,139 +NA,NA,,2019-20,Wilmington - North Intermediate,3420060,0,0,0,0,0,146,100,0,0,0,0,0,0,0,0,246 +NA,NA,,2019-20,Wilmington - Shawsheen Elementary,3420025,0,0,111,118,117,0,0,0,0,0,0,0,0,0,0,346 +NA,NA,,2019-20,Wilmington - West Intermediate,3420080,0,0,0,0,0,125,110,0,0,0,0,0,0,0,0,235 +NA,NA,,2019-20,Wilmington - Wildwood,3420015,40,143,0,0,0,0,0,0,0,0,0,0,0,0,0,183 +NA,NA,,2019-20,Wilmington - Wilmington High,3420505,0,0,0,0,0,0,0,0,0,0,195,203,197,213,0,808 +NA,NA,,2019-20,Wilmington - Wilmington Middle School,3420330,0,0,0,0,0,0,0,290,262,266,0,0,0,0,0,818 +NA,NA,,2019-20,Wilmington - Woburn Street,3420020,0,0,121,148,122,0,0,0,0,0,0,0,0,0,0,391 +NA,NA,,2019-20,Winchendon - Memorial,3430040,0,95,100,108,0,0,0,0,0,0,0,0,0,0,0,303 +NA,NA,,2019-20,Winchendon - Murdock Academy for Success,3430405,0,0,0,0,0,0,0,0,0,0,5,7,11,11,0,34 +NA,NA,,2019-20,Winchendon - Murdock High School,3430515,0,0,0,0,0,0,0,0,0,0,70,67,55,69,0,261 +NA,NA,,2019-20,Winchendon - Murdock Middle School,3430315,0,0,0,0,0,0,0,82,101,82,0,0,0,0,0,265 +NA,NA,,2019-20,Winchendon - Toy Town Elementary,3430050,0,0,0,0,101,90,85,0,0,0,0,0,0,0,0,276 +NA,NA,,2019-20,Winchendon - Winchendon PreSchool Program,3430010,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85 +NA,NA,,2019-20,Winchester - Ambrose Elementary,3440045,0,55,64,54,62,75,74,0,0,0,0,0,0,0,0,384 +NA,NA,,2019-20,Winchester - Lincoln Elementary,3440005,0,55,68,63,87,68,79,0,0,0,0,0,0,0,0,420 +NA,NA,,2019-20,Winchester - Lynch Elementary,3440020,53,77,88,90,79,77,60,0,0,0,0,0,0,0,0,524 +NA,NA,,2019-20,Winchester - McCall Middle,3440305,0,0,0,0,0,0,0,404,349,366,0,0,0,0,0,1119 +NA,NA,,2019-20,Winchester - Muraco Elementary,3440040,0,79,59,60,70,63,60,0,0,0,0,0,0,0,0,391 +NA,NA,,2019-20,Winchester - Vinson-Owen Elementary,3440025,15,67,64,63,59,77,77,0,0,0,0,0,0,0,0,422 +NA,NA,,2019-20,Winchester - Winchester High School,3440505,0,0,0,0,0,0,0,0,0,0,362,344,367,345,0,1418 +NA,NA,,2019-20,Winthrop - Arthur T. Cummings Elementary School,3460020,0,0,0,0,144,133,136,0,0,0,0,0,0,0,0,413 +NA,NA,,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,36,162,156,132,0,0,0,0,0,0,0,0,0,0,0,486 +NA,NA,,2019-20,Winthrop - Winthrop High School,3460505,14,0,0,0,0,0,0,0,0,0,138,147,160,125,2,586 +NA,NA,,2019-20,Winthrop - Winthrop Middle School,3460305,0,0,0,0,0,0,0,164,155,161,0,0,0,0,0,480 +NA,NA,,2019-20,Woburn - Clyde Reeves,3470040,41,55,70,48,63,50,59,0,0,0,0,0,0,0,0,386 +NA,NA,,2019-20,Woburn - Daniel L Joyce Middle School,3470410,0,0,0,0,0,0,0,191,205,171,0,0,0,0,0,567 +NA,NA,,2019-20,Woburn - Goodyear Elementary School,3470005,0,51,58,40,50,53,59,0,0,0,0,0,0,0,0,311 +NA,NA,,2019-20,Woburn - Hurld-Wyman Elementary School,3470020,0,53,58,65,61,72,72,0,0,0,0,0,0,0,0,381 +NA,NA,,2019-20,Woburn - John F Kennedy Middle School,3470405,0,0,0,0,0,0,0,156,170,147,0,0,0,0,0,473 +NA,NA,,2019-20,Woburn - Linscott-Rumford,3470025,0,26,35,35,35,25,26,0,0,0,0,0,0,0,0,182 +NA,NA,,2019-20,Woburn - Malcolm White,3470055,0,51,49,59,45,53,55,0,0,0,0,0,0,0,0,312 +NA,NA,,2019-20,Woburn - Mary D Altavesta,3470065,0,40,45,34,39,39,42,0,0,0,0,0,0,0,0,239 +NA,NA,,2019-20,Woburn - Shamrock,3470043,115,54,37,38,35,39,33,0,0,0,0,0,0,0,0,351 +NA,NA,,2019-20,Woburn - Woburn High,3470505,0,0,0,0,0,0,0,0,0,0,283,354,312,300,0,1249 +NA,NA,,2019-20,Worcester - Belmont Street Community,3480020,65,98,100,80,68,80,77,53,0,0,0,0,0,0,0,621 +NA,NA,,2019-20,Worcester - Burncoat Middle School,3480405,0,0,0,0,0,0,0,0,361,359,0,0,0,0,0,720 +NA,NA,,2019-20,Worcester - Burncoat Senior High,3480503,0,0,0,0,0,0,0,0,0,0,339,264,247,250,11,1111 +NA,NA,,2019-20,Worcester - Burncoat Street,3480035,0,37,28,39,45,50,40,43,0,0,0,0,0,0,0,282 +NA,NA,,2019-20,Worcester - Canterbury,3480045,33,39,40,41,47,58,52,49,0,0,0,0,0,0,0,359 +NA,NA,,2019-20,Worcester - Chandler Elementary Community,3480050,0,75,67,58,72,77,80,64,0,0,0,0,0,0,0,493 +NA,NA,,2019-20,Worcester - Chandler Magnet,3480052,13,72,77,69,53,76,79,74,0,0,0,0,0,0,0,513 +NA,NA,,2019-20,Worcester - City View,3480053,28,56,56,76,65,72,70,54,0,0,0,0,0,0,0,477 +NA,NA,,2019-20,Worcester - Claremont Academy,3480350,0,0,0,0,0,0,0,0,109,102,95,97,74,104,0,581 +NA,NA,,2019-20,Worcester - Clark St Community,3480055,41,42,30,37,38,31,27,19,0,0,0,0,0,0,0,265 +NA,NA,,2019-20,Worcester - Columbus Park,3480060,9,55,55,71,59,46,61,71,0,0,0,0,0,0,0,427 +NA,NA,,2019-20,Worcester - Doherty Memorial High,3480512,0,0,0,0,0,0,0,0,0,0,374,365,367,379,14,1499 +NA,NA,,2019-20,Worcester - Elm Park Community,3480095,0,68,68,57,52,68,59,54,0,0,0,0,0,0,0,426 +NA,NA,,2019-20,Worcester - Flagg Street,3480090,0,59,57,49,47,66,55,52,0,0,0,0,0,0,0,385 +NA,NA,,2019-20,Worcester - Forest Grove Middle,3480415,0,0,0,0,0,0,0,0,461,477,0,0,0,0,0,938 +NA,NA,,2019-20,Worcester - Francis J McGrath Elementary,3480177,0,37,37,36,29,34,37,27,0,0,0,0,0,0,0,237 +NA,NA,,2019-20,Worcester - Gates Lane,3480110,61,85,83,71,64,66,55,76,0,0,0,0,0,0,0,561 +NA,NA,,2019-20,Worcester - Goddard School/Science Technical,3480100,24,58,49,41,49,53,42,58,0,0,0,0,0,0,0,374 +NA,NA,,2019-20,Worcester - Grafton Street,3480115,0,54,53,43,45,49,61,64,0,0,0,0,0,0,0,369 +NA,NA,,2019-20,Worcester - Head Start,3480002,393,0,0,0,0,0,0,0,0,0,0,0,0,0,0,393 +NA,NA,,2019-20,Worcester - Heard Street,3480136,0,33,37,45,39,38,38,33,0,0,0,0,0,0,0,263 +NA,NA,,2019-20,Worcester - Jacob Hiatt Magnet,3480140,38,69,60,56,54,48,49,38,0,0,0,0,0,0,0,412 +NA,NA,,2019-20,Worcester - Lake View,3480145,0,53,49,45,44,41,45,49,0,0,0,0,0,0,0,326 +NA,NA,,2019-20,Worcester - Lincoln Street,3480160,0,42,44,42,23,39,22,17,0,0,0,0,0,0,0,229 +NA,NA,,2019-20,Worcester - May Street,3480175,0,42,41,39,48,38,52,53,0,0,0,0,0,0,0,313 +NA,NA,,2019-20,Worcester - Midland Street,3480185,0,40,37,30,25,23,39,28,0,0,0,0,0,0,0,222 +NA,NA,,2019-20,Worcester - Nelson Place,3480200,41,79,94,77,73,55,87,65,0,0,0,0,0,0,0,571 +NA,NA,,2019-20,Worcester - Norrback Avenue,3480202,51,78,92,72,57,68,73,72,0,0,0,0,0,0,0,563 +NA,NA,,2019-20,Worcester - North High,3480515,0,0,0,0,0,0,0,0,0,0,352,336,282,263,20,1253 +NA,NA,,2019-20,Worcester - Quinsigamond,3480210,27,112,102,108,106,81,97,111,0,0,0,0,0,0,0,744 +NA,NA,,2019-20,Worcester - Rice Square,3480215,0,92,62,76,61,69,57,60,0,0,0,0,0,0,0,477 +NA,NA,,2019-20,Worcester - Roosevelt,3480220,67,98,100,82,88,79,93,90,0,0,0,0,0,0,0,697 +NA,NA,,2019-20,Worcester - South High Community,3480520,0,0,0,0,0,0,0,0,0,0,386,332,306,336,19,1379 +NA,NA,,2019-20,Worcester - Sullivan Middle,3480423,0,0,0,0,0,0,0,50,430,432,0,0,0,0,0,912 +NA,NA,,2019-20,Worcester - Tatnuck,3480230,27,68,67,45,60,49,51,58,0,0,0,0,0,0,0,425 +NA,NA,,2019-20,Worcester - Thorndyke Road,3480235,0,45,44,61,58,50,51,45,0,0,0,0,0,0,0,354 +NA,NA,,2019-20,Worcester - Union Hill School,3480240,0,52,46,59,64,49,58,57,0,0,0,0,0,0,0,385 +NA,NA,,2019-20,Worcester - University Pk Campus School,3480285,0,0,0,0,0,0,0,0,45,44,39,37,40,40,0,245 +NA,NA,,2019-20,Worcester - Vernon Hill School,3480280,52,72,82,62,72,54,64,74,0,0,0,0,0,0,0,532 +NA,NA,,2019-20,Worcester - Wawecus Road School,3480026,0,27,13,15,23,21,27,28,0,0,0,0,0,0,0,154 +NA,NA,,2019-20,Worcester - West Tatnuck,3480260,46,50,42,54,41,33,43,43,0,0,0,0,0,0,0,352 +NA,NA,,2019-20,Worcester - Woodland Academy,3480030,0,82,86,76,88,83,89,97,0,0,0,0,0,0,0,601 +NA,NA,,2019-20,Worcester - Worcester Arts Magnet School,3480225,28,56,58,56,48,59,52,53,0,0,0,0,0,0,0,410 +NA,NA,,2019-20,Worcester - Worcester East Middle,3480420,0,0,0,0,0,0,0,0,353,375,0,0,0,0,0,728 +NA,NA,,2019-20,Worcester - Worcester Technical High,3480605,0,0,0,0,0,0,0,0,0,0,393,377,359,337,0,1466 +NA,NA,,2019-20,Worthington - R. H. Conwell,3490010,15,10,10,14,9,9,10,11,0,0,0,0,0,0,0,88 +NA,NA,,2019-20,Wrentham - Charles E Roderick,3500010,0,0,0,0,0,115,133,152,0,0,0,0,0,0,0,400 +NA,NA,,2019-20,Wrentham - Delaney,3500003,87,109,103,130,123,0,0,0,0,0,0,0,0,0,0,552 +NA,NA,,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,0,117,114,116,118,116,118,120,114,120,109,96,87,83,0,1428 +NA,NA,,2018-19,Abington - Abington Early Education Program,10001,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90 +NA,NA,,2018-19,Abington - Abington High,10505,0,0,0,0,0,0,0,0,0,0,159,149,125,107,5,545 +NA,NA,,2018-19,Abington - Abington Middle School,10405,0,0,0,0,0,0,159,154,187,172,0,0,0,0,0,672 +NA,NA,,2018-19,Abington - Beaver Brook Elementary,10020,0,153,142,160,0,0,0,0,0,0,0,0,0,0,0,455 +NA,NA,,2018-19,Abington - Woodsdale Elementary School,10015,0,0,0,0,129,165,0,0,0,0,0,0,0,0,0,294 +NA,NA,,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,0,0,0,0,0,0,72,80,75,73,71,70,47,38,0,526 +NA,NA,,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,0,0,0,0,0,0,0,0,0,460,429,445,500,3,1837 +NA,NA,,2018-19,Acton-Boxborough - Blanchard Memorial School,6000005,0,70,86,61,68,59,52,68,0,0,0,0,0,0,0,464 +NA,NA,,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,41,42,43,69,69,69,72,0,0,0,0,0,0,0,405 +NA,NA,,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105 +NA,NA,,2018-19,Acton-Boxborough - Luther Conant School,6000030,0,59,64,62,46,50,74,94,0,0,0,0,0,0,0,449 +NA,NA,,2018-19,Acton-Boxborough - McCarthy-Towne School,6000015,0,62,75,66,70,84,89,74,0,0,0,0,0,0,0,520 +NA,NA,,2018-19,Acton-Boxborough - Merriam School,6000010,0,59,62,62,70,71,96,72,0,0,0,0,0,0,0,492 +NA,NA,,2018-19,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,39,42,61,70,67,49,48,0,0,0,0,0,0,0,376 +NA,NA,,2018-19,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,0,0,0,0,0,0,0,435,488,0,0,0,0,0,923 +NA,NA,,2018-19,Acushnet - Acushnet Elementary School,30025,46,121,105,80,109,104,0,0,0,0,0,0,0,0,0,565 +NA,NA,,2018-19,Acushnet - Albert F Ford Middle School,30305,0,0,0,0,0,0,102,105,121,111,0,0,0,0,0,439 +NA,NA,,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,6030020,62,79,78,80,76,0,0,0,0,0,0,0,0,0,0,375 +NA,NA,,2018-19,Adams-Cheshire - Hoosac Valley High School,6030505,0,0,0,0,0,0,0,0,0,89,81,50,74,87,3,384 +NA,NA,,2018-19,Adams-Cheshire - Hoosac Valley Middle School,6030315,0,0,0,0,0,106,108,97,91,0,0,0,0,0,0,402 +NA,NA,,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,0,0,0,0,0,0,106,144,158,156,154,137,119,0,974 +NA,NA,,2018-19,Agawam - Agawam Early Childhood Center,50003,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162 +NA,NA,,2018-19,Agawam - Agawam High,50505,0,0,0,0,0,0,0,0,0,0,265,292,270,277,9,1113 +NA,NA,,2018-19,Agawam - Agawam Junior High,50405,0,0,0,0,0,0,0,0,291,300,0,0,0,0,0,591 +NA,NA,,2018-19,Agawam - Benjamin J Phelps,50020,0,58,70,85,60,75,0,0,0,0,0,0,0,0,0,348 +NA,NA,,2018-19,Agawam - Clifford M Granger,50010,0,39,39,67,48,65,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2018-19,Agawam - James Clark School,50030,0,66,60,63,68,59,0,0,0,0,0,0,0,0,0,316 +NA,NA,,2018-19,Agawam - Roberta G. Doering School,50303,0,0,0,0,0,0,316,275,3,0,0,0,0,0,0,594 +NA,NA,,2018-19,Agawam - Robinson Park,50025,0,77,71,78,78,61,0,0,0,0,0,0,0,0,0,365 +NA,NA,,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,0,53,52,49,50,50,50,49,48,40,0,0,0,0,0,441 +NA,NA,,2018-19,Amesbury - Amesbury Elementary,70005,28,53,71,64,70,88,0,0,0,0,0,0,0,0,0,374 +NA,NA,,2018-19,Amesbury - Amesbury High,70505,0,0,0,0,0,0,0,0,0,0,134,145,143,138,5,565 +NA,NA,,2018-19,Amesbury - Amesbury Innovation High School,70515,0,0,0,0,0,0,0,0,0,0,12,10,14,15,0,51 +NA,NA,,2018-19,Amesbury - Amesbury Middle,70013,0,0,0,0,0,0,162,151,166,165,0,0,0,0,0,644 +NA,NA,,2018-19,Amesbury - Charles C Cashman Elementary,70010,26,63,75,74,97,89,0,0,0,0,0,0,0,0,0,424 +NA,NA,,2018-19,Amherst - Crocker Farm Elementary,80009,48,63,40,43,53,53,62,32,0,0,0,0,0,0,0,394 +NA,NA,,2018-19,Amherst - Fort River Elementary,80020,0,38,33,47,41,42,47,67,0,0,0,0,0,0,0,315 +NA,NA,,2018-19,Amherst - Wildwood Elementary,80050,0,59,60,53,61,56,66,67,0,0,0,0,0,0,0,422 +NA,NA,,2018-19,Amherst-Pelham - Amherst Regional High,6050505,0,0,0,0,0,0,0,0,0,0,231,231,230,225,7,924 +NA,NA,,2018-19,Amherst-Pelham - Amherst Regional Middle School,6050405,0,0,0,0,0,0,0,0,223,193,0,0,0,0,0,416 +NA,NA,,2018-19,Andover - Andover High,90505,0,0,0,0,0,0,0,0,0,0,426,460,430,445,29,1790 +NA,NA,,2018-19,Andover - Andover West Middle,90310,0,0,0,0,0,0,0,171,174,177,0,0,0,0,0,522 +NA,NA,,2018-19,Andover - Bancroft Elementary,90003,0,86,96,88,103,106,110,0,0,0,0,0,0,0,0,589 +NA,NA,,2018-19,Andover - Doherty Middle,90305,0,0,0,0,0,0,0,183,187,201,0,0,0,0,0,571 +NA,NA,,2018-19,Andover - Henry C Sanborn Elementary,90010,0,58,52,62,70,75,67,0,0,0,0,0,0,0,0,384 +NA,NA,,2018-19,Andover - High Plain Elementary,90004,0,93,73,83,89,93,111,0,0,0,0,0,0,0,0,542 +NA,NA,,2018-19,Andover - Shawsheen School,90005,66,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66 +NA,NA,,2018-19,Andover - South Elementary,90020,0,75,74,82,95,68,87,0,0,0,0,0,0,0,0,481 +NA,NA,,2018-19,Andover - West Elementary,90025,0,94,87,103,98,115,104,0,0,0,0,0,0,0,0,601 +NA,NA,,2018-19,Andover - Wood Hill Middle School,90350,0,0,0,0,0,0,0,133,149,129,0,0,0,0,0,411 +NA,NA,,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,0,0,0,0,0,0,0,110,106,103,114,33,0,0,0,466 +NA,NA,,2018-19,Arlington - Arlington High,100505,0,0,0,0,0,0,0,0,0,0,364,344,328,344,0,1380 +NA,NA,,2018-19,Arlington - Brackett,100010,0,101,80,94,64,97,81,0,0,0,0,0,0,0,0,517 +NA,NA,,2018-19,Arlington - Cyrus E Dallin,100025,0,83,72,90,71,80,88,0,0,0,0,0,0,0,0,484 +NA,NA,,2018-19,Arlington - Gibbs School,100305,0,0,0,0,0,0,0,463,0,0,0,0,0,0,0,463 +NA,NA,,2018-19,Arlington - Hardy,100030,0,80,79,86,74,69,63,0,0,0,0,0,0,0,0,451 +NA,NA,,2018-19,Arlington - John A Bishop,100005,0,92,67,75,75,72,71,0,0,0,0,0,0,0,0,452 +NA,NA,,2018-19,Arlington - M Norcross Stratton,100055,0,81,76,71,73,63,62,0,0,0,0,0,0,0,0,426 +NA,NA,,2018-19,Arlington - Menotomy Preschool,100038,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96 +NA,NA,,2018-19,Arlington - Ottoson Middle,100410,0,0,0,0,0,0,0,0,441,414,0,0,0,0,0,855 +NA,NA,,2018-19,Arlington - Peirce,100045,0,61,68,42,45,43,49,0,0,0,0,0,0,0,0,308 +NA,NA,,2018-19,Arlington - Thompson,100050,0,89,78,93,88,84,75,0,0,0,0,0,0,0,0,507 +NA,NA,,2018-19,Ashburnham-Westminster - Briggs Elementary,6100025,61,73,72,73,69,92,90,0,0,0,0,0,0,0,0,530 +NA,NA,,2018-19,Ashburnham-Westminster - Meetinghouse School,6100010,0,101,82,0,0,0,0,0,0,0,0,0,0,0,0,183 +NA,NA,,2018-19,Ashburnham-Westminster - Oakmont Regional High School,6100505,0,0,0,0,0,0,0,0,0,0,145,174,179,159,18,675 +NA,NA,,2018-19,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0,0,0,0,0,189,186,200,0,0,0,0,0,575 +NA,NA,,2018-19,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,0,90,102,92,107,0,0,0,0,0,0,0,0,391 +NA,NA,,2018-19,Ashland - Ashland High,140505,0,0,0,0,0,0,0,0,0,0,224,210,214,184,0,832 +NA,NA,,2018-19,Ashland - Ashland Middle,140405,0,0,0,0,0,0,0,215,208,185,0,0,0,0,0,608 +NA,NA,,2018-19,Ashland - David Mindess,140015,0,0,0,0,191,219,218,0,0,0,0,0,0,0,0,628 +NA,NA,,2018-19,Ashland - Henry E Warren Elementary,140010,0,227,204,230,0,0,0,0,0,0,0,0,0,0,0,661 +NA,NA,,2018-19,Ashland - William Pittaway Elementary,140005,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116 +NA,NA,,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0,0,0,0,0,0,0,0,0,0,300,288,273,273,0,1134 +NA,NA,,2018-19,Athol-Royalston - Athol Community Elementary School,6150020,63,99,115,105,94,91,0,0,0,0,0,0,0,0,0,567 +NA,NA,,2018-19,Athol-Royalston - Athol High,6150505,0,0,0,0,0,0,0,0,0,0,85,90,85,75,4,339 +NA,NA,,2018-19,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,0,0,0,101,98,116,94,0,0,0,0,0,409 +NA,NA,,2018-19,Athol-Royalston - Royalston Community School,6150050,0,20,20,17,24,19,18,20,0,0,0,0,0,0,0,138 +NA,NA,,2018-19,Atlantis Charter (District) - Atlantis Charter School,4910550,0,110,110,110,111,110,110,110,110,109,82,85,72,65,0,1294 +NA,NA,,2018-19,Attleboro - A. Irvin Studley Elementary School,160001,0,87,68,72,90,79,0,0,0,0,0,0,0,0,0,396 +NA,NA,,2018-19,Attleboro - Attleboro Community Academy,160515,0,0,0,0,0,0,0,0,0,0,0,7,18,33,0,58 +NA,NA,,2018-19,Attleboro - Attleboro High,160505,0,0,0,0,0,0,0,0,0,0,479,452,415,386,14,1746 +NA,NA,,2018-19,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,0,0,0,137,165,149,143,0,0,0,0,0,594 +NA,NA,,2018-19,Attleboro - Early Learning Center,160008,179,0,0,0,0,0,0,0,0,0,0,0,0,0,0,179 +NA,NA,,2018-19,Attleboro - Hill-Roberts Elementary School,160045,0,89,82,95,106,82,0,0,0,0,0,0,0,0,0,454 +NA,NA,,2018-19,Attleboro - Hyman Fine Elementary School,160040,0,91,90,91,105,84,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2018-19,Attleboro - Peter Thacher Elementary School,160050,0,79,92,94,81,79,0,0,0,0,0,0,0,0,0,425 +NA,NA,,2018-19,Attleboro - Robert J. Coelho Middle School,160305,0,0,0,0,0,0,168,169,178,136,0,0,0,0,0,651 +NA,NA,,2018-19,Attleboro - Thomas Willett Elementary School,160035,0,73,71,71,88,101,0,0,0,0,0,0,0,0,0,404 +NA,NA,,2018-19,Attleboro - Wamsutta Middle School,160320,0,0,0,0,0,0,154,136,149,139,0,0,0,0,0,578 +NA,NA,,2018-19,Auburn - Auburn Middle,170305,0,0,0,0,0,0,0,196,206,221,0,0,0,0,0,623 +NA,NA,,2018-19,Auburn - Auburn Senior High,170505,64,0,0,0,0,0,0,0,0,0,173,184,180,189,2,792 +NA,NA,,2018-19,Auburn - Bryn Mawr,170010,0,90,96,113,0,0,0,0,0,0,0,0,0,0,0,299 +NA,NA,,2018-19,Auburn - Pakachoag School,170025,40,97,75,94,0,0,0,0,0,0,0,0,0,0,0,306 +NA,NA,,2018-19,Auburn - Swanson Road Intermediate School,170030,0,0,0,0,199,204,205,0,0,0,0,0,0,0,0,608 +NA,NA,,2018-19,Avon - Avon Middle High School,180510,0,0,0,0,0,0,0,0,57,66,56,42,47,51,3,322 +NA,NA,,2018-19,Avon - Ralph D Butler,180010,17,42,51,53,61,58,60,64,0,0,0,0,0,0,0,406 +NA,NA,,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,0,0,0,0,0,0,0,0,0,0,87,95,104,103,0,389 +NA,NA,,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,0,0,0,0,0,0,0,150,125,141,0,0,0,0,0,416 +NA,NA,,2018-19,Ayer Shirley School District - Lura A. White Elementary School,6160001,40,50,54,61,57,61,54,0,0,0,0,0,0,0,0,377 +NA,NA,,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,6160002,28,92,85,73,79,83,90,0,0,0,0,0,0,0,0,530 +NA,NA,,2018-19,Barnstable - Barnstable High,200505,0,0,0,0,0,0,0,0,0,362,341,362,361,362,14,1802 +NA,NA,,2018-19,Barnstable - Barnstable Intermediate School,200315,0,0,0,0,0,0,0,399,382,0,0,0,0,0,0,781 +NA,NA,,2018-19,Barnstable - Barnstable United Elementary School,200050,0,0,0,0,0,414,396,0,0,0,0,0,0,0,0,810 +NA,NA,,2018-19,Barnstable - Centerville Elementary,200010,0,64,63,52,72,0,0,0,0,0,0,0,0,0,0,251 +NA,NA,,2018-19,Barnstable - Enoch Cobb Early Learning Center,200001,146,0,0,0,0,0,0,0,0,0,0,0,0,0,0,146 +NA,NA,,2018-19,Barnstable - Hyannis West Elementary,200025,0,76,77,77,92,0,0,0,0,0,0,0,0,0,0,322 +NA,NA,,2018-19,Barnstable - West Barnstable Elementary,200005,0,57,67,64,70,0,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2018-19,Barnstable - West Villages Elementary School,200045,0,104,112,109,96,0,0,0,0,0,0,0,0,0,0,421 +NA,NA,,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,4270010,0,72,82,66,70,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,0,0,0,0,0,0,0,82,82,82,67,76,61,50,0,500 +NA,NA,,2018-19,Bedford - Bedford High,230505,39,0,0,0,0,0,0,0,0,0,242,188,202,203,0,874 +NA,NA,,2018-19,Bedford - John Glenn Middle,230305,0,0,0,0,0,0,0,197,178,191,0,0,0,0,0,566 +NA,NA,,2018-19,Bedford - Lt Elezer Davis,230010,0,191,211,197,0,0,0,0,0,0,0,0,0,0,0,599 +NA,NA,,2018-19,Bedford - Lt Job Lane School,230012,0,0,0,0,202,212,205,0,0,0,0,0,0,0,0,619 +NA,NA,,2018-19,Belchertown - Belchertown High,240505,0,0,0,0,0,0,0,0,0,0,165,174,167,176,5,687 +NA,NA,,2018-19,Belchertown - Chestnut Hill Community School,240006,0,0,0,0,0,169,178,193,0,0,0,0,0,0,0,540 +NA,NA,,2018-19,Belchertown - Cold Spring,240005,41,138,0,0,0,0,0,0,0,0,0,0,0,0,0,179 +NA,NA,,2018-19,Belchertown - Jabish Middle School,240025,0,0,0,0,0,0,0,0,188,197,0,0,0,0,0,385 +NA,NA,,2018-19,Belchertown - Swift River Elementary,240018,0,0,165,157,154,0,0,0,0,0,0,0,0,0,0,476 +NA,NA,,2018-19,Bellingham - Bellingham Early Childhood Center,250003,98,0,0,0,0,0,0,0,0,0,0,0,0,0,0,98 +NA,NA,,2018-19,Bellingham - Bellingham High School,250505,0,0,0,0,0,0,0,0,0,165,141,152,144,142,0,744 +NA,NA,,2018-19,Bellingham - Bellingham Memorial School,250315,0,0,0,0,0,172,190,164,185,0,0,0,0,0,0,711 +NA,NA,,2018-19,Bellingham - Joseph F DiPietro Elementary School,250020,0,93,81,86,85,0,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2018-19,Bellingham - Keough Memorial Academy,250510,0,0,0,0,0,0,0,0,0,6,6,6,8,9,0,35 +NA,NA,,2018-19,Bellingham - Stall Brook,250025,0,67,82,84,57,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2018-19,Belmont - Belmont High,260505,0,0,0,0,0,0,0,0,0,0,344,330,330,304,0,1308 +NA,NA,,2018-19,Belmont - Daniel Butler,260015,0,66,66,90,72,90,0,0,0,0,0,0,0,0,0,384 +NA,NA,,2018-19,Belmont - Mary Lee Burbank,260010,0,82,88,82,72,93,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2018-19,Belmont - Roger E Wellington,260035,67,106,111,115,111,120,0,0,0,0,0,0,0,0,0,630 +NA,NA,,2018-19,Belmont - Winn Brook,260005,0,88,88,95,96,94,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2018-19,Belmont - Winthrop L Chenery Middle,260305,0,0,0,0,0,0,366,364,360,338,0,0,0,0,0,1428 +NA,NA,,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,24,45,50,50,48,48,41,48,0,0,0,0,0,0,0,354 +NA,NA,,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,52,51,52,51,51,52,52,52,46,0,0,0,0,0,459 +NA,NA,,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,0,58,63,62,60,57,39,0,0,0,0,0,0,0,0,339 +NA,NA,,2018-19,Berkley - Berkley Community School,270010,69,79,78,91,95,85,0,0,0,0,0,0,0,0,0,497 +NA,NA,,2018-19,Berkley - Berkley Middle School,270305,0,0,0,0,0,0,114,90,92,95,0,0,0,0,0,391 +NA,NA,,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,0,0,0,0,0,59,75,78,59,45,31,31,0,378 +NA,NA,,2018-19,Berkshire Hills - Monument Mt Regional High,6180505,0,0,0,0,0,0,0,0,0,0,149,127,108,141,5,530 +NA,NA,,2018-19,Berkshire Hills - Monument Valley Regional Middle School,6180310,0,0,0,0,0,0,74,87,81,102,0,0,0,0,0,344 +NA,NA,,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,19,78,53,49,70,60,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2018-19,Berlin - Berlin Memorial,280005,20,22,29,28,33,22,29,0,0,0,0,0,0,0,0,183 +NA,NA,,2018-19,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,0,0,0,0,85,96,90,77,80,74,81,0,583 +NA,NA,,2018-19,Beverly - Ayers/Ryal Side School,300055,0,83,85,72,93,93,0,0,0,0,0,0,0,0,0,426 +NA,NA,,2018-19,Beverly - Beverly High,300505,0,0,0,0,0,0,0,0,0,0,359,325,288,278,1,1251 +NA,NA,,2018-19,Beverly - Beverly Middle School,300305,0,0,0,0,0,0,392,363,320,329,0,0,0,0,0,1404 +NA,NA,,2018-19,Beverly - Centerville Elementary,300010,0,44,55,68,63,66,0,0,0,0,0,0,0,0,0,296 +NA,NA,,2018-19,Beverly - Cove Elementary,300015,0,112,86,75,76,74,0,0,0,0,0,0,0,0,0,423 +NA,NA,,2018-19,Beverly - Hannah Elementary,300033,0,58,69,65,56,81,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2018-19,Beverly - McKeown School,300002,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123 +NA,NA,,2018-19,Beverly - North Beverly Elementary,300040,0,66,61,64,63,59,0,0,0,0,0,0,0,0,0,313 +NA,NA,,2018-19,Billerica - Billerica Memorial High School,310505,182,0,0,0,0,0,0,0,0,0,304,241,343,260,6,1336 +NA,NA,,2018-19,Billerica - Eugene C Vining,310030,0,18,39,32,34,35,22,0,0,0,0,0,0,0,0,180 +NA,NA,,2018-19,Billerica - Frederick J Dutile,310007,0,50,48,46,46,50,38,0,0,0,0,0,0,0,0,278 +NA,NA,,2018-19,Billerica - Hajjar Elementary,310026,0,77,71,82,83,65,99,0,0,0,0,0,0,0,0,477 +NA,NA,,2018-19,Billerica - John F Kennedy,310012,0,48,53,42,67,55,52,0,0,0,0,0,0,0,0,317 +NA,NA,,2018-19,Billerica - Locke Middle,310310,0,0,0,0,0,0,0,184,167,168,0,0,0,0,0,519 +NA,NA,,2018-19,Billerica - Marshall Middle School,310305,0,0,0,0,0,0,0,198,231,217,0,0,0,0,0,646 +NA,NA,,2018-19,Billerica - Parker,310015,0,78,87,74,105,77,81,0,0,0,0,0,0,0,0,502 +NA,NA,,2018-19,Billerica - Thomas Ditson,310005,0,88,73,85,80,94,89,0,0,0,0,0,0,0,0,509 +NA,NA,,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0,0,0,0,0,0,0,0,310,311,307,302,0,1230 +NA,NA,,2018-19,Blackstone-Millville - A F Maloney,6220015,0,0,0,0,119,90,105,0,0,0,0,0,0,0,0,314 +NA,NA,,2018-19,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,0,0,0,0,0,0,0,0,118,103,111,105,2,439 +NA,NA,,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,0,0,0,0,0,151,125,137,0,0,0,0,0,413 +NA,NA,,2018-19,Blackstone-Millville - John F Kennedy Elementary,6220008,0,94,83,85,0,0,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2018-19,Blackstone-Millville - Millville Elementary,6220010,59,28,38,34,43,39,30,0,0,0,0,0,0,0,0,271 +NA,NA,,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,0,0,0,0,0,0,0,0,0,0,237,214,196,209,0,856 +NA,NA,,2018-19,Boston - Another Course To College,350541,0,0,0,0,0,0,0,0,0,0,62,53,52,57,0,224 +NA,NA,,2018-19,Boston - Baldwin Early Learning Center,350003,82,42,35,0,0,0,0,0,0,0,0,0,0,0,0,159 +NA,NA,,2018-19,Boston - Beethoven,350021,44,82,87,94,0,0,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2018-19,Boston - Blackstone,350390,79,74,80,82,77,74,85,0,0,0,0,0,0,0,0,551 +NA,NA,,2018-19,Boston - Boston Adult Academy,350548,0,0,0,0,0,0,0,0,0,0,0,0,105,39,0,144 +NA,NA,,2018-19,Boston - Boston Arts Academy,350546,0,0,0,0,0,0,0,0,0,0,114,116,122,117,0,469 +NA,NA,,2018-19,Boston - Boston Collaborative High School,350755,0,0,0,0,0,0,0,0,0,0,2,18,48,91,1,160 +NA,NA,,2018-19,Boston - Boston Community Leadership Academy,350558,0,0,0,0,0,0,0,0,0,0,132,115,114,111,15,487 +NA,NA,,2018-19,Boston - Boston International High School,350507,0,0,0,0,0,0,0,0,0,0,133,94,69,73,0,369 +NA,NA,,2018-19,Boston - Boston Latin,350560,0,0,0,0,0,0,0,0,410,407,407,431,402,383,0,2440 +NA,NA,,2018-19,Boston - Boston Latin Academy,350545,0,0,0,0,0,0,0,0,283,298,298,362,260,266,0,1767 +NA,NA,,2018-19,Boston - Boston Teachers Union School,350012,23,22,22,21,23,26,36,51,18,28,0,0,0,0,0,270 +NA,NA,,2018-19,Boston - Brighton High,350505,0,0,0,0,0,0,0,0,0,0,117,124,132,191,22,586 +NA,NA,,2018-19,Boston - Carter School,350036,0,0,0,0,0,0,0,0,3,2,4,2,2,7,9,29 +NA,NA,,2018-19,Boston - Charles H Taylor,350054,17,61,77,80,83,109,90,0,0,0,0,0,0,0,0,517 +NA,NA,,2018-19,Boston - Charles Sumner,350052,58,78,81,86,80,94,69,0,0,0,0,0,0,0,0,546 +NA,NA,,2018-19,Boston - Charlestown High,350515,0,0,0,0,0,0,0,0,0,0,252,173,203,214,39,881 +NA,NA,,2018-19,Boston - Clarence R Edwards Middle,350430,0,0,0,0,0,0,0,149,108,105,0,0,0,0,0,362 +NA,NA,,2018-19,Boston - Community Academy,350518,0,0,0,0,0,0,0,0,0,0,11,12,15,7,0,45 +NA,NA,,2018-19,Boston - Community Academy of Science and Health,350581,0,0,0,0,0,0,0,0,0,0,78,81,107,80,22,368 +NA,NA,,2018-19,Boston - Condon K-8,350146,44,74,77,87,83,111,119,102,82,72,0,0,0,0,0,851 +NA,NA,,2018-19,Boston - Curley K-8 School,350020,103,88,94,87,84,102,104,131,95,80,0,0,0,0,0,968 +NA,NA,,2018-19,Boston - Curtis Guild,350062,29,36,36,32,38,48,41,0,0,0,0,0,0,0,0,260 +NA,NA,,2018-19,Boston - Dante Alighieri Montessori School,350066,26,15,14,13,10,12,3,4,0,0,0,0,0,0,0,97 +NA,NA,,2018-19,Boston - David A Ellis,350072,47,64,70,72,60,63,39,0,0,0,0,0,0,0,0,415 +NA,NA,,2018-19,Boston - Dearborn,350074,0,0,0,0,0,0,0,94,58,61,82,56,35,33,0,419 +NA,NA,,2018-19,Boston - Dennis C Haley,350077,27,38,41,40,46,46,47,66,28,43,0,0,0,0,0,422 +NA,NA,,2018-19,Boston - Donald Mckay,350080,22,67,59,84,86,91,96,101,101,104,0,0,0,0,0,811 +NA,NA,,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,49,38,36,36,32,0,0,0,0,0,0,0,0,0,0,191 +NA,NA,,2018-19,Boston - Dr. William Henderson Lower,350266,77,68,70,0,0,0,0,0,0,0,0,0,0,0,0,215 +NA,NA,,2018-19,Boston - Dr. William Henderson Upper,350426,0,0,0,71,45,47,41,66,51,60,63,62,57,58,9,630 +NA,NA,,2018-19,Boston - East Boston Early Childhood Center,350009,74,61,49,0,0,0,0,0,0,0,0,0,0,0,0,184 +NA,NA,,2018-19,Boston - East Boston High,350530,0,0,0,0,0,0,0,0,0,0,292,272,263,351,11,1189 +NA,NA,,2018-19,Boston - Edison K-8,350375,21,48,60,73,60,79,61,76,66,59,0,0,0,0,0,603 +NA,NA,,2018-19,Boston - Edward Everett,350088,20,43,37,43,35,40,46,0,0,0,0,0,0,0,0,264 +NA,NA,,2018-19,Boston - ELC - West Zone,350006,46,33,32,0,0,0,0,0,0,0,0,0,0,0,0,111 +NA,NA,,2018-19,Boston - Eliot Elementary,350096,58,77,79,82,87,94,63,81,24,30,0,0,0,0,0,675 +NA,NA,,2018-19,Boston - Ellis Mendell,350100,23,42,42,42,41,44,39,0,0,0,0,0,0,0,0,273 +NA,NA,,2018-19,Boston - Excel High School,350522,0,0,0,0,0,0,0,0,0,0,128,135,134,121,0,518 +NA,NA,,2018-19,Boston - Fenway High School,350540,0,0,0,0,0,0,0,0,0,0,104,93,93,84,3,377 +NA,NA,,2018-19,Boston - Franklin D Roosevelt,350116,42,42,44,43,45,45,43,52,43,39,0,0,0,0,0,438 +NA,NA,,2018-19,Boston - Gardner Pilot Academy,350326,26,39,43,40,40,39,36,48,36,36,0,0,0,0,0,383 +NA,NA,,2018-19,Boston - George H Conley,350122,18,19,19,25,52,23,44,0,0,0,0,0,0,0,0,200 +NA,NA,,2018-19,Boston - Greater Egleston Community High School,350543,0,0,0,0,0,0,0,0,0,0,12,20,28,35,0,95 +NA,NA,,2018-19,Boston - Harvard-Kent,350200,43,46,49,54,58,72,91,0,0,0,0,0,0,0,0,413 +NA,NA,,2018-19,Boston - Haynes Early Education Center,350010,51,67,70,0,0,0,0,0,0,0,0,0,0,0,0,188 +NA,NA,,2018-19,Boston - Henry Grew,350135,22,43,37,38,31,49,19,0,0,0,0,0,0,0,0,239 +NA,NA,,2018-19,Boston - Higginson,350015,29,42,46,51,0,0,0,0,0,0,0,0,0,0,0,168 +NA,NA,,2018-19,Boston - Higginson/Lewis K-8,350377,0,0,0,2,37,61,45,53,39,24,0,0,0,0,0,261 +NA,NA,,2018-19,Boston - Horace Mann School for the Deaf,350750,2,2,8,6,6,8,0,9,4,6,7,3,11,11,5,88 +NA,NA,,2018-19,Boston - Hugh Roe O'Donnell,350141,21,38,45,40,41,43,37,0,0,0,0,0,0,0,0,265 +NA,NA,,2018-19,Boston - Jackson Mann,350013,51,63,57,62,71,86,72,66,45,37,0,0,0,0,0,610 +NA,NA,,2018-19,Boston - James J Chittick,350154,44,40,39,45,39,40,31,0,0,0,0,0,0,0,0,278 +NA,NA,,2018-19,Boston - James Otis,350156,46,60,59,58,64,63,43,0,0,0,0,0,0,0,0,393 +NA,NA,,2018-19,Boston - James P Timilty Middle,350485,0,0,0,0,0,0,0,99,98,111,0,0,0,0,0,308 +NA,NA,,2018-19,Boston - James W Hennigan,350153,0,35,41,59,65,70,110,91,52,58,0,0,0,0,0,581 +NA,NA,,2018-19,Boston - Jeremiah E Burke High,350525,0,0,0,0,0,0,0,0,0,0,83,93,107,120,0,403 +NA,NA,,2018-19,Boston - John D Philbrick,350172,10,19,21,23,20,47,20,0,0,0,0,0,0,0,0,160 +NA,NA,,2018-19,Boston - John F Kennedy,350166,26,58,56,60,60,68,43,0,0,0,0,0,0,0,0,371 +NA,NA,,2018-19,Boston - John W McCormack,350179,0,0,0,0,0,0,0,121,120,124,0,0,0,0,0,365 +NA,NA,,2018-19,Boston - John Winthrop,350180,35,53,45,55,39,43,38,0,0,0,0,0,0,0,0,308 +NA,NA,,2018-19,Boston - Joseph J Hurley,350182,28,41,44,48,43,44,34,36,16,16,0,0,0,0,0,350 +NA,NA,,2018-19,Boston - Joseph Lee,350183,60,59,48,58,60,83,77,91,56,61,0,0,0,0,0,653 +NA,NA,,2018-19,Boston - Joseph P Manning,350184,10,22,23,24,23,25,20,0,0,0,0,0,0,0,0,147 +NA,NA,,2018-19,Boston - Joseph P Tynan,350181,29,51,34,31,23,32,29,0,0,0,0,0,0,0,0,229 +NA,NA,,2018-19,Boston - Josiah Quincy,350286,75,113,116,122,125,120,132,0,0,0,0,0,0,0,0,803 +NA,NA,,2018-19,Boston - Joyce Kilmer,350190,37,40,59,40,47,51,63,60,14,28,0,0,0,0,0,439 +NA,NA,,2018-19,Boston - King K-8,350376,56,63,62,55,39,58,42,47,41,26,0,0,0,0,0,489 +NA,NA,,2018-19,Boston - Lee Academy,350001,55,35,34,39,50,0,0,0,0,0,0,0,0,0,0,213 +NA,NA,,2018-19,Boston - Lilla G. Frederick Middle School,350383,0,0,0,0,0,0,0,125,161,167,0,0,0,0,0,453 +NA,NA,,2018-19,Boston - Lyndon,350262,66,65,72,75,76,57,80,59,35,34,0,0,0,0,0,619 +NA,NA,,2018-19,Boston - Lyon K-8,350004,0,13,12,14,15,15,15,16,18,14,0,0,0,0,0,132 +NA,NA,,2018-19,Boston - Lyon Upper 9-12,350655,0,0,0,0,0,0,0,0,0,0,30,35,29,39,0,133 +NA,NA,,2018-19,Boston - Madison Park High,350537,0,0,0,0,0,0,0,0,0,0,241,272,195,150,29,887 +NA,NA,,2018-19,Boston - Manassah E Bradley,350215,28,42,42,42,43,46,33,0,0,0,0,0,0,0,0,276 +NA,NA,,2018-19,Boston - Margarita Muniz Academy,350549,0,0,0,0,0,0,0,0,0,0,85,74,74,62,0,295 +NA,NA,,2018-19,Boston - Mario Umana Academy,350656,29,60,77,72,63,66,85,192,166,139,0,0,0,0,0,949 +NA,NA,,2018-19,Boston - Mather,350227,62,82,77,84,91,94,84,0,0,0,0,0,0,0,0,574 +NA,NA,,2018-19,Boston - Mattahunt Elementary School,350016,87,124,102,60,0,0,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2018-19,Boston - Maurice J Tobin,350229,13,42,58,58,51,63,40,50,36,26,0,0,0,0,0,437 +NA,NA,,2018-19,Boston - Michael J Perkins,350231,6,21,22,37,29,25,42,0,0,0,0,0,0,0,0,182 +NA,NA,,2018-19,Boston - Mildred Avenue K-8,350378,39,39,45,41,47,116,26,96,93,80,0,0,0,0,0,622 +NA,NA,,2018-19,Boston - Mission Hill School,350382,29,22,19,33,19,22,24,21,18,13,0,0,0,0,0,220 +NA,NA,,2018-19,Boston - Mozart,350237,25,24,22,25,27,25,23,0,0,0,0,0,0,0,0,171 +NA,NA,,2018-19,Boston - Nathan Hale,350243,19,22,21,21,25,24,23,0,0,0,0,0,0,0,0,155 +NA,NA,,2018-19,Boston - New Mission High School,350542,0,0,0,0,0,0,0,0,44,74,102,84,72,85,1,462 +NA,NA,,2018-19,Boston - O W Holmes,350138,25,54,47,49,53,60,47,0,0,0,0,0,0,0,0,335 +NA,NA,,2018-19,Boston - O'Bryant School Math/Science,350575,0,0,0,0,0,0,0,0,160,174,330,358,259,254,0,1535 +NA,NA,,2018-19,Boston - Oliver Hazard Perry,350255,22,26,27,26,31,30,24,25,22,12,0,0,0,0,0,245 +NA,NA,,2018-19,Boston - Orchard Gardens,350257,51,80,97,92,96,105,101,106,86,90,0,0,0,0,0,904 +NA,NA,,2018-19,Boston - Patrick J Kennedy,350264,27,39,42,35,50,56,44,0,0,0,0,0,0,0,0,293 +NA,NA,,2018-19,Boston - Paul A Dever,350268,34,59,63,68,61,69,56,0,0,0,0,0,0,0,0,410 +NA,NA,,2018-19,Boston - Pauline Agassiz Shaw Elementary School,350014,33,38,43,40,44,0,0,0,0,0,0,0,0,0,0,198 +NA,NA,,2018-19,Boston - Phineas Bates,350278,19,37,39,40,34,40,42,0,0,0,0,0,0,0,0,251 +NA,NA,,2018-19,Boston - Quincy Upper School,350565,0,0,0,0,0,0,0,143,93,58,62,62,59,59,13,549 +NA,NA,,2018-19,Boston - Rafael Hernandez,350691,49,49,49,48,44,44,40,38,16,22,0,0,0,0,0,399 +NA,NA,,2018-19,Boston - Richard J Murphy,350240,39,65,67,88,88,125,132,146,69,91,0,0,0,0,0,910 +NA,NA,,2018-19,Boston - Roger Clap,350298,15,18,16,20,29,27,12,0,0,0,0,0,0,0,0,137 +NA,NA,,2018-19,Boston - Samuel Adams,350302,44,30,41,37,45,43,18,0,0,0,0,0,0,0,0,258 +NA,NA,,2018-19,Boston - Samuel W Mason,350304,27,36,38,37,37,37,29,0,0,0,0,0,0,0,0,241 +NA,NA,,2018-19,Boston - Sarah Greenwood,350308,42,44,47,46,48,34,49,31,23,25,0,0,0,0,0,389 +NA,NA,,2018-19,Boston - Snowden International School at Copley,350690,0,0,0,0,0,0,0,0,0,0,160,123,108,98,0,489 +NA,NA,,2018-19,Boston - TechBoston Academy,350657,0,0,0,0,0,0,0,113,115,136,127,143,148,134,1,917 +NA,NA,,2018-19,Boston - The English High,350535,0,0,0,0,0,0,0,0,0,0,165,99,122,135,0,521 +NA,NA,,2018-19,Boston - Thomas J Kenny,350328,27,39,37,36,47,56,54,0,0,0,0,0,0,0,0,296 +NA,NA,,2018-19,Boston - UP Academy Holland,350167,51,117,110,118,127,122,126,0,0,0,0,0,0,0,0,771 +NA,NA,,2018-19,Boston - Urban Science Academy,350579,0,0,0,0,0,0,0,0,0,0,74,74,79,96,5,328 +NA,NA,,2018-19,Boston - Warren-Prescott,350346,58,69,72,65,61,70,62,61,35,27,0,0,0,0,0,580 +NA,NA,,2018-19,Boston - Washington Irving Middle,350445,0,0,0,0,0,0,0,111,91,97,0,0,0,0,0,299 +NA,NA,,2018-19,Boston - West Roxbury Academy,350658,0,0,0,0,0,0,0,0,0,0,82,81,89,154,2,408 +NA,NA,,2018-19,Boston - William E Russell,350366,58,59,58,61,57,49,55,0,0,0,0,0,0,0,0,397 +NA,NA,,2018-19,Boston - William Ellery Channing,350360,30,33,38,39,26,26,16,0,0,0,0,0,0,0,0,208 +NA,NA,,2018-19,Boston - William H Ohrenberger,350258,0,0,0,0,96,138,111,137,78,75,0,0,0,0,0,635 +NA,NA,,2018-19,Boston - William McKinley,350363,0,0,6,8,10,17,19,21,20,29,56,51,35,26,29,327 +NA,NA,,2018-19,Boston - William Monroe Trotter,350370,37,65,60,64,63,64,54,44,27,25,0,0,0,0,0,503 +NA,NA,,2018-19,Boston - Winship Elementary,350374,44,43,31,25,21,17,18,0,0,0,0,0,0,0,0,199 +NA,NA,,2018-19,Boston - Young Achievers,350380,43,54,60,60,54,98,81,43,43,33,0,0,0,0,0,569 +NA,NA,,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,0,0,0,0,0,0,94,100,96,90,91,85,64,73,0,693 +NA,NA,,2018-19,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,0,0,0,0,0,0,0,0,0,0,94,70,3,254,0,421 +NA,NA,,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,0,0,0,0,0,0,0,52,52,61,86,86,77,52,10,476 +NA,NA,,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,0,0,0,0,0,0,0,88,87,62,90,85,54,60,0,526 +NA,NA,,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,116,139,138,137,136,116,99,73,0,0,0,0,0,0,0,954 +NA,NA,,2018-19,Bourne - Bourne High School,360505,0,0,0,0,0,0,0,0,0,0,118,112,128,112,6,476 +NA,NA,,2018-19,Bourne - Bourne Middle School,360325,0,0,0,0,0,0,172,162,177,177,0,0,0,0,0,688 +NA,NA,,2018-19,Bourne - Bournedale Elementary School,360005,53,82,74,68,69,87,0,0,0,0,0,0,0,0,0,433 +NA,NA,,2018-19,Bourne - Peebles Elementary School,360010,0,40,65,65,89,79,0,0,0,0,0,0,0,0,0,338 +NA,NA,,2018-19,Boxford - Harry Lee Cole,380005,44,76,85,100,0,0,0,0,0,0,0,0,0,0,0,305 +NA,NA,,2018-19,Boxford - Spofford Pond,380013,0,0,0,0,116,92,105,100,0,0,0,0,0,0,0,413 +NA,NA,,2018-19,Boylston - Boylston Elementary,390005,34,38,43,38,49,43,53,0,0,0,0,0,0,0,0,298 +NA,NA,,2018-19,Braintree - Archie T Morrison,400033,0,20,78,63,87,71,107,0,0,0,0,0,0,0,0,426 +NA,NA,,2018-19,Braintree - Braintree High,400505,123,0,0,0,0,0,0,0,0,0,414,430,425,385,16,1793 +NA,NA,,2018-19,Braintree - Donald Ross,400050,0,21,50,54,37,55,53,0,0,0,0,0,0,0,0,270 +NA,NA,,2018-19,Braintree - East Middle School,400305,0,0,0,0,0,0,0,262,220,249,0,0,0,0,0,731 +NA,NA,,2018-19,Braintree - Highlands,400015,0,21,64,73,85,81,77,0,0,0,0,0,0,0,0,401 +NA,NA,,2018-19,Braintree - Hollis,400005,0,47,65,82,85,76,82,0,0,0,0,0,0,0,0,437 +NA,NA,,2018-19,Braintree - Liberty,400025,0,0,75,81,89,95,92,0,0,0,0,0,0,0,0,432 +NA,NA,,2018-19,Braintree - Mary E Flaherty School,400020,0,26,64,68,68,70,80,0,0,0,0,0,0,0,0,376 +NA,NA,,2018-19,Braintree - Monatiquot Kindergarten Center,400009,0,272,0,0,0,0,0,0,0,0,0,0,0,0,0,272 +NA,NA,,2018-19,Braintree - South Middle School,400310,0,0,0,0,0,0,0,252,223,229,0,0,0,0,0,704 +NA,NA,,2018-19,Brewster - Eddy Elementary,410010,0,0,0,0,76,83,85,0,0,0,0,0,0,0,0,244 +NA,NA,,2018-19,Brewster - Stony Brook Elementary,410005,32,66,55,81,0,0,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,38,37,40,40,40,41,40,39,24,0,0,0,0,0,0,339 +NA,NA,,2018-19,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,0,0,0,0,0,246,249,0,0,0,0,0,495 +NA,NA,,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,0,0,0,0,0,0,0,0,0,0,342,359,364,394,11,1470 +NA,NA,,2018-19,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,176,173,169,0,0,0,0,0,0,0,0,0,518 +NA,NA,,2018-19,Bridgewater-Raynham - Merrill Elementary School,6250020,0,179,156,0,0,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2018-19,Bridgewater-Raynham - Mitchell Elementary School,6250002,135,249,249,242,220,0,0,0,0,0,0,0,0,0,0,1095 +NA,NA,,2018-19,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,0,0,0,170,180,142,179,0,0,0,0,0,671 +NA,NA,,2018-19,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,0,0,0,0,1,2,1,3,1,3,7,0,18 +NA,NA,,2018-19,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,0,0,227,250,296,0,0,0,0,0,0,0,773 +NA,NA,,2018-19,Brimfield - Brimfield Elementary,430005,39,24,35,38,31,42,43,41,0,0,0,0,0,0,0,293 +NA,NA,,2018-19,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,0,0,0,0,0,0,0,119,115,109,111,0,454 +NA,NA,,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,0,0,0,0,0,0,0,0,0,0,359,340,297,292,0,1288 +NA,NA,,2018-19,Brockton - Ashfield Middle School,440421,0,0,0,0,0,0,0,230,166,173,0,0,0,0,0,569 +NA,NA,,2018-19,Brockton - Barrett Russell Early Childhood Center,440008,207,0,0,0,0,0,0,0,0,0,0,0,0,0,0,207 +NA,NA,,2018-19,Brockton - Brockton Champion High School,440515,0,0,0,0,0,0,0,0,0,0,39,34,21,14,30,138 +NA,NA,,2018-19,Brockton - Brockton High,440505,0,0,0,0,0,0,0,0,0,0,1108,995,960,964,5,4032 +NA,NA,,2018-19,Brockton - Brookfield,440010,0,88,76,90,110,109,119,0,0,0,0,0,0,0,0,592 +NA,NA,,2018-19,Brockton - Downey,440110,0,79,101,97,119,112,107,0,0,0,0,0,0,0,0,615 +NA,NA,,2018-19,Brockton - Dr W Arnone Community School,440001,65,104,110,121,126,117,119,0,0,0,0,0,0,0,0,762 +NA,NA,,2018-19,Brockton - East Middle School,440405,0,0,0,0,0,0,0,262,169,188,0,0,0,0,0,619 +NA,NA,,2018-19,Brockton - Edgar B Davis,440023,0,94,122,135,123,111,106,131,113,102,0,0,0,0,0,1037 +NA,NA,,2018-19,Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0,0,33,31,69,105,0,238 +NA,NA,,2018-19,Brockton - Frederick Douglass Academy,440080,0,0,0,0,0,0,0,0,1,6,4,4,3,0,0,18 +NA,NA,,2018-19,Brockton - Gilmore Elementary School,440055,0,65,76,99,87,83,77,0,0,0,0,0,0,0,0,487 +NA,NA,,2018-19,Brockton - Hancock,440045,0,72,101,102,87,96,107,0,0,0,0,0,0,0,0,565 +NA,NA,,2018-19,Brockton - Huntington Therapeutic Day School,440400,0,0,0,0,1,3,4,4,7,5,9,8,8,10,0,59 +NA,NA,,2018-19,Brockton - John F Kennedy,440017,0,95,95,99,108,108,90,0,0,0,0,0,0,0,0,595 +NA,NA,,2018-19,Brockton - Joseph F. Plouffe Academy,440422,0,0,0,0,0,0,0,259,232,233,0,0,0,0,0,724 +NA,NA,,2018-19,Brockton - Louis F Angelo Elementary,440065,0,96,105,122,133,212,216,0,0,0,0,0,0,0,0,884 +NA,NA,,2018-19,Brockton - Manthala George Jr. School,440003,0,205,172,172,144,145,163,0,0,0,0,0,0,0,0,1001 +NA,NA,,2018-19,Brockton - Mary E. Baker School,440002,0,98,127,141,122,111,115,0,0,0,0,0,0,0,0,714 +NA,NA,,2018-19,Brockton - North Middle School,440410,0,0,0,0,0,0,0,0,155,153,0,0,0,0,0,308 +NA,NA,,2018-19,Brockton - Oscar F Raymond,440078,0,138,130,153,152,143,144,0,0,0,0,0,0,0,0,860 +NA,NA,,2018-19,Brockton - South Middle School,440415,0,0,0,0,0,0,0,205,205,215,0,0,0,0,0,625 +NA,NA,,2018-19,Brockton - West Middle School,440420,0,0,0,0,0,0,0,265,221,214,0,0,0,0,0,700 +NA,NA,,2018-19,Brooke Charter School (District) - Brooke Charter School,4280305,0,177,179,185,184,183,181,183,179,170,108,60,64,0,0,1853 +NA,NA,,2018-19,Brookfield - Brookfield Elementary,450005,33,36,42,39,44,41,36,45,0,0,0,0,0,0,0,316 +NA,NA,,2018-19,Brookline - Brookline Early Education Program at Beacon,460001,57,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57 +NA,NA,,2018-19,Brookline - Brookline Early Education Program at Putterham,460002,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48 +NA,NA,,2018-19,Brookline - Brookline High,460505,0,0,0,0,0,0,0,0,0,0,554,542,489,499,17,2101 +NA,NA,,2018-19,Brookline - Coolidge Corner School,460015,29,109,93,93,109,93,107,97,90,82,0,0,0,0,0,902 +NA,NA,,2018-19,Brookline - Edith C Baker,460005,0,73,86,83,88,115,62,102,79,74,0,0,0,0,0,762 +NA,NA,,2018-19,Brookline - Heath,460025,29,49,58,45,60,71,58,68,55,58,0,0,0,0,0,551 +NA,NA,,2018-19,Brookline - John D Runkle,460045,16,54,60,61,63,70,71,73,64,65,0,0,0,0,0,597 +NA,NA,,2018-19,Brookline - Lawrence,460030,0,87,90,78,86,79,76,77,73,59,0,0,0,0,0,705 +NA,NA,,2018-19,Brookline - Michael Driscoll,460020,17,70,60,68,66,77,58,73,74,68,0,0,0,0,0,631 +NA,NA,,2018-19,Brookline - Pierce,460040,0,99,103,87,109,106,110,90,80,81,0,0,0,0,0,865 +NA,NA,,2018-19,Brookline - The Lynch Center,460060,55,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55 +NA,NA,,2018-19,Brookline - William H Lincoln,460035,0,62,65,59,64,69,63,85,56,58,0,0,0,0,0,581 +NA,NA,,2018-19,Burlington - Burlington High,480505,106,14,0,0,0,0,0,0,0,0,217,237,247,250,0,1071 +NA,NA,,2018-19,Burlington - Fox Hill,480007,0,88,74,79,70,66,49,0,0,0,0,0,0,0,0,426 +NA,NA,,2018-19,Burlington - Francis Wyman Elementary,480035,0,74,92,104,84,96,82,0,0,0,0,0,0,0,0,532 +NA,NA,,2018-19,Burlington - Marshall Simonds Middle,480303,0,0,0,0,0,0,0,269,251,267,0,0,0,0,0,787 +NA,NA,,2018-19,Burlington - Memorial,480015,0,63,66,66,70,63,70,0,0,0,0,0,0,0,0,398 +NA,NA,,2018-19,Burlington - Pine Glen Elementary,480020,0,60,62,52,59,40,46,0,0,0,0,0,0,0,0,319 +NA,NA,,2018-19,Cambridge - Amigos School,490006,31,47,50,43,45,42,43,45,37,36,0,0,0,0,0,419 +NA,NA,,2018-19,Cambridge - Cambridge Rindge and Latin,490506,0,0,0,0,0,0,0,0,0,0,512,493,483,493,2,1983 +NA,NA,,2018-19,Cambridge - Cambridge Street Upper School,490305,0,0,0,0,0,0,0,102,69,85,0,0,0,0,0,256 +NA,NA,,2018-19,Cambridge - Cambridgeport,490007,51,50,59,43,45,45,45,0,0,0,0,0,0,0,0,338 +NA,NA,,2018-19,Cambridge - Fletcher/Maynard Academy,490090,56,50,47,34,37,40,33,0,0,0,0,0,0,0,0,297 +NA,NA,,2018-19,Cambridge - Graham and Parks,490080,35,54,55,62,58,59,56,0,0,0,0,0,0,0,0,379 +NA,NA,,2018-19,Cambridge - Haggerty,490020,23,48,46,43,38,32,31,0,0,0,0,0,0,0,0,261 +NA,NA,,2018-19,Cambridge - John M Tobin,490065,92,40,40,40,38,32,25,0,0,0,0,0,0,0,0,307 +NA,NA,,2018-19,Cambridge - Kennedy-Longfellow,490040,49,41,56,41,37,30,29,0,0,0,0,0,0,0,0,283 +NA,NA,,2018-19,Cambridge - King Open,490035,39,60,60,45,54,50,51,0,0,0,0,0,0,0,0,359 +NA,NA,,2018-19,Cambridge - Maria L. Baldwin,490005,56,64,54,54,43,46,44,0,0,0,0,0,0,0,0,361 +NA,NA,,2018-19,Cambridge - Martin Luther King Jr.,490030,34,67,54,42,44,42,44,0,0,0,0,0,0,0,0,327 +NA,NA,,2018-19,Cambridge - Morse,490045,45,51,45,42,45,40,29,0,0,0,0,0,0,0,0,297 +NA,NA,,2018-19,Cambridge - Peabody,490050,50,50,47,44,48,43,44,0,0,0,0,0,0,0,0,326 +NA,NA,,2018-19,Cambridge - Putnam Avenue Upper School,490310,0,0,0,0,0,0,0,101,83,87,0,0,0,0,0,271 +NA,NA,,2018-19,Cambridge - Rindge Avenue Upper School,490315,0,0,0,0,0,0,0,100,94,95,0,0,0,0,0,289 +NA,NA,,2018-19,Cambridge - Vassal Lane Upper School,490320,0,0,0,0,0,0,0,113,88,98,0,0,0,0,0,299 +NA,NA,,2018-19,Canton - Canton High,500505,0,0,0,0,0,0,0,0,0,0,248,254,240,224,2,968 +NA,NA,,2018-19,Canton - Dean S Luce,500020,0,78,67,84,83,80,95,0,0,0,0,0,0,0,0,487 +NA,NA,,2018-19,Canton - John F Kennedy,500017,0,87,92,77,87,76,102,0,0,0,0,0,0,0,0,521 +NA,NA,,2018-19,Canton - Lt Peter M Hansen,500012,0,70,69,82,89,82,92,0,0,0,0,0,0,0,0,484 +NA,NA,,2018-19,Canton - Rodman Early Childhood Center,500010,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87 +NA,NA,,2018-19,Canton - Wm H Galvin Middle,500305,0,0,0,0,0,0,0,266,224,235,0,0,0,0,0,725 +NA,NA,,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,0,0,0,0,81,80,81,0,0,0,0,0,242 +NA,NA,,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0,0,0,0,0,0,0,0,0,0,152,146,155,116,2,571 +NA,NA,,2018-19,Carlisle - Carlisle School,510025,14,58,62,62,60,62,76,64,71,71,0,0,0,0,0,600 +NA,NA,,2018-19,Carver - Carver Elementary School,520015,58,129,116,136,121,118,117,0,0,0,0,0,0,0,0,795 +NA,NA,,2018-19,Carver - Carver Middle/High School,520405,0,0,0,0,0,0,0,123,128,133,79,108,99,82,8,760 +NA,NA,,2018-19,Central Berkshire - Becket Washington School,6350005,18,18,14,18,14,22,21,0,0,0,0,0,0,0,0,125 +NA,NA,,2018-19,Central Berkshire - Craneville,6350025,0,59,68,71,63,69,70,0,0,0,0,0,0,0,0,400 +NA,NA,,2018-19,Central Berkshire - Kittredge,6350035,33,22,22,29,15,13,15,0,0,0,0,0,0,0,0,149 +NA,NA,,2018-19,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,0,0,0,0,124,129,121,0,0,0,0,0,374 +NA,NA,,2018-19,Central Berkshire - Wahconah Regional High,6350505,0,0,0,0,0,0,0,0,0,0,129,137,116,148,1,531 +NA,NA,,2018-19,Chelmsford - Byam School,560030,0,86,100,90,96,105,0,0,0,0,0,0,0,0,0,477 +NA,NA,,2018-19,Chelmsford - Center Elementary School,560005,0,103,102,97,83,89,0,0,0,0,0,0,0,0,0,474 +NA,NA,,2018-19,Chelmsford - Charles D Harrington,560025,0,95,95,111,88,105,0,0,0,0,0,0,0,0,0,494 +NA,NA,,2018-19,Chelmsford - Chelmsford High,560505,0,0,0,0,0,0,0,0,0,0,356,368,369,351,0,1444 +NA,NA,,2018-19,Chelmsford - Col Moses Parker School,560305,0,0,0,0,0,0,169,178,171,180,0,0,0,0,0,698 +NA,NA,,2018-19,Chelmsford - Community Education Center,560001,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151 +NA,NA,,2018-19,Chelmsford - McCarthy Middle School,560310,0,0,0,0,0,0,200,181,226,200,0,0,0,0,0,807 +NA,NA,,2018-19,Chelmsford - South Row,560015,0,92,85,78,81,80,0,0,0,0,0,0,0,0,0,416 +NA,NA,,2018-19,Chelsea - Chelsea High,570505,0,0,0,0,0,0,0,0,0,0,371,349,343,295,2,1360 +NA,NA,,2018-19,Chelsea - Chelsea Opportunity Academy,570515,0,0,0,0,0,0,0,0,0,0,5,21,20,6,0,52 +NA,NA,,2018-19,Chelsea - Clark Avenue School,570050,0,0,0,0,0,0,201,167,140,137,0,0,0,0,0,645 +NA,NA,,2018-19,Chelsea - Edgar A Hooks Elementary,570030,0,0,105,147,139,151,0,0,0,0,0,0,0,0,0,542 +NA,NA,,2018-19,Chelsea - Eugene Wright Science and Technology Academy,570045,0,0,0,0,0,0,117,130,135,124,0,0,0,0,0,506 +NA,NA,,2018-19,Chelsea - Frank M Sokolowski Elementary,570040,0,0,96,149,136,149,0,0,0,0,0,0,0,0,0,530 +NA,NA,,2018-19,Chelsea - George F. Kelly Elementary,570035,0,0,108,110,118,145,39,0,0,0,0,0,0,0,0,520 +NA,NA,,2018-19,Chelsea - Joseph A. Browne School,570055,0,0,0,0,0,0,157,146,141,138,0,0,0,0,0,582 +NA,NA,,2018-19,Chelsea - Shurtleff Early Childhood,570003,247,520,103,0,0,0,0,0,0,0,0,0,0,0,0,870 +NA,NA,,2018-19,Chelsea - William A Berkowitz Elementary,570025,0,0,106,131,116,128,0,0,0,0,0,0,0,0,0,481 +NA,NA,,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,15,13,19,19,14,17,12,20,0,0,0,0,0,0,0,129 +NA,NA,,2018-19,Chicopee - Barry,610003,0,69,66,74,67,73,82,0,0,0,0,0,0,0,0,431 +NA,NA,,2018-19,Chicopee - Belcher,610010,0,74,97,93,0,0,0,0,0,0,0,0,0,0,0,264 +NA,NA,,2018-19,Chicopee - Bellamy Middle,610305,0,0,0,0,0,0,0,288,269,251,0,0,0,0,0,808 +NA,NA,,2018-19,Chicopee - Bowe,610015,0,75,89,97,73,77,89,0,0,0,0,0,0,0,0,500 +NA,NA,,2018-19,Chicopee - Bowie,610020,0,48,34,52,64,53,71,0,0,0,0,0,0,0,0,322 +NA,NA,,2018-19,Chicopee - Chicopee Academy,610021,0,0,0,0,0,0,0,0,4,16,33,20,6,10,1,90 +NA,NA,,2018-19,Chicopee - Chicopee Comprehensive High School,610510,0,0,0,0,0,0,0,0,0,0,280,331,302,340,0,1253 +NA,NA,,2018-19,Chicopee - Chicopee High,610505,0,0,0,0,0,0,0,0,0,0,288,264,222,204,0,978 +NA,NA,,2018-19,Chicopee - Dupont Middle,610310,0,0,0,0,0,0,0,260,244,244,0,0,0,0,0,748 +NA,NA,,2018-19,Chicopee - Fairview Elementary,610050,0,70,83,68,68,77,82,0,0,0,0,0,0,0,0,448 +NA,NA,,2018-19,Chicopee - Gen John J Stefanik,610090,0,52,57,63,73,62,76,0,0,0,0,0,0,0,0,383 +NA,NA,,2018-19,Chicopee - Lambert-Lavoie,610040,0,43,46,41,58,50,54,0,0,0,0,0,0,0,0,292 +NA,NA,,2018-19,Chicopee - Litwin,610022,0,20,23,29,103,112,113,0,0,0,0,0,0,0,0,400 +NA,NA,,2018-19,Chicopee - Streiber Memorial School,610065,0,36,42,45,40,40,43,0,0,0,0,0,0,0,0,246 +NA,NA,,2018-19,Chicopee - Szetela Early Childhood Center,610001,229,0,0,0,0,0,0,0,0,0,0,0,0,0,0,229 +NA,NA,,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,0,0,0,0,0,0,0,139,133,126,0,0,0,0,0,398 +NA,NA,,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,0,0,0,0,0,0,0,0,0,0,87,76,69,39,0,271 +NA,NA,,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,0,0,0,0,0,0,0,0,0,0,77,53,56,59,0,245 +NA,NA,,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,0,0,0,0,0,0,0,0,0,0,78,60,49,30,0,217 +NA,NA,,2018-19,Clarksburg - Clarksburg Elementary,630010,0,18,31,14,19,16,32,23,17,15,0,0,0,0,0,185 +NA,NA,,2018-19,Clinton - Clinton Elementary,640050,80,164,150,135,146,149,0,0,0,0,0,0,0,0,0,824 +NA,NA,,2018-19,Clinton - Clinton Middle School,640305,0,0,0,0,0,0,171,140,136,131,0,0,0,0,0,578 +NA,NA,,2018-19,Clinton - Clinton Senior High,640505,22,0,0,0,0,0,0,0,0,0,100,128,102,104,0,456 +NA,NA,,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,20,20,20,20,20,19,19,19,18,18,40,34,35,40,0,342 +NA,NA,,2018-19,Cohasset - Cohasset Middle/High School,650505,0,0,0,0,0,0,0,120,105,127,111,130,121,119,0,833 +NA,NA,,2018-19,Cohasset - Deer Hill,650005,0,0,0,0,113,123,139,0,0,0,0,0,0,0,0,375 +NA,NA,,2018-19,Cohasset - Joseph Osgood,650010,24,101,106,118,0,0,0,0,0,0,0,0,0,0,0,349 +NA,NA,,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,0,100,110,109,112,94,120,80,63,58,0,0,0,0,0,846 +NA,NA,,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,0,0,0,0,0,0,0,35,56,52,57,35,47,50,0,332 +NA,NA,,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,40,42,42,42,42,43,37,39,33,0,0,0,0,0,0,360 +NA,NA,,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,20,44,48,48,50,47,46,42,34,20,0,0,0,0,0,399 +NA,NA,,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,41,42,44,44,43,41,37,36,32,0,0,0,0,0,0,360 +NA,NA,,2018-19,Concord - Alcott,670005,8,81,78,67,93,72,80,0,0,0,0,0,0,0,0,479 +NA,NA,,2018-19,Concord - Concord Middle,670305,0,0,0,0,0,0,0,245,234,255,0,0,0,0,0,734 +NA,NA,,2018-19,Concord - Thoreau,670020,11,69,85,75,75,67,83,0,0,0,0,0,0,0,0,465 +NA,NA,,2018-19,Concord - Willard,670030,7,58,71,66,74,74,71,0,0,0,0,0,0,0,0,421 +NA,NA,,2018-19,Concord-Carlisle - Concord Carlisle High,6400505,0,0,0,0,0,0,0,0,0,0,330,306,298,340,0,1274 +NA,NA,,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,51,52,53,53,54,48,39,43,26,22,0,0,0,0,0,441 +NA,NA,,2018-19,Conway - Conway Grammar,680005,16,14,15,15,23,17,15,20,0,0,0,0,0,0,0,135 +NA,NA,,2018-19,Danvers - Danvers High,710505,0,0,0,0,0,0,0,0,0,0,208,242,236,242,2,930 +NA,NA,,2018-19,Danvers - Great Oak,710015,0,53,65,57,72,63,61,0,0,0,0,0,0,0,0,371 +NA,NA,,2018-19,Danvers - Highlands,710010,0,66,63,61,66,66,62,0,0,0,0,0,0,0,0,384 +NA,NA,,2018-19,Danvers - Holten Richmond Middle School,710305,0,0,0,0,0,0,0,273,280,280,0,0,0,0,0,833 +NA,NA,,2018-19,Danvers - Ivan G Smith,710032,0,54,45,47,49,47,50,0,0,0,0,0,0,0,0,292 +NA,NA,,2018-19,Danvers - Riverside,710030,95,48,36,38,30,54,51,0,0,0,0,0,0,0,0,352 +NA,NA,,2018-19,Danvers - Willis E Thorpe,710045,0,48,53,55,45,62,56,0,0,0,0,0,0,0,0,319 +NA,NA,,2018-19,Dartmouth - Andrew B. Cushman School,720005,78,61,0,0,0,0,0,0,0,0,0,0,0,0,0,139 +NA,NA,,2018-19,Dartmouth - Dartmouth High,720505,0,0,0,0,0,0,0,0,0,0,281,272,267,251,0,1071 +NA,NA,,2018-19,Dartmouth - Dartmouth Middle,720050,0,0,0,0,0,0,0,307,320,312,0,0,0,0,0,939 +NA,NA,,2018-19,Dartmouth - George H Potter,720030,11,66,67,63,65,69,64,0,0,0,0,0,0,0,0,405 +NA,NA,,2018-19,Dartmouth - James M. Quinn School,720040,0,112,108,88,107,115,112,0,0,0,0,0,0,0,0,642 +NA,NA,,2018-19,Dartmouth - Joseph Demello,720015,0,0,78,97,72,88,87,0,0,0,0,0,0,0,0,422 +NA,NA,,2018-19,Dedham - Avery,730010,0,0,58,70,55,56,66,0,0,0,0,0,0,0,0,305 +NA,NA,,2018-19,Dedham - Dedham High,730505,0,0,0,0,0,0,0,0,0,0,170,188,203,187,0,748 +NA,NA,,2018-19,Dedham - Dedham Middle School,730305,0,0,0,0,0,0,0,255,194,198,0,0,0,0,0,647 +NA,NA,,2018-19,Dedham - Early Childhood Center,730005,98,201,0,0,0,0,0,0,0,0,0,0,0,0,0,299 +NA,NA,,2018-19,Dedham - Greenlodge,730025,0,0,43,45,38,60,61,0,0,0,0,0,0,0,0,247 +NA,NA,,2018-19,Dedham - Oakdale,730030,0,0,47,59,53,59,51,0,0,0,0,0,0,0,0,269 +NA,NA,,2018-19,Dedham - Riverdale,730045,0,0,29,33,37,35,38,0,0,0,0,0,0,0,0,172 +NA,NA,,2018-19,Deerfield - Deerfield Elementary,740015,35,47,54,48,40,54,58,56,0,0,0,0,0,0,0,392 +NA,NA,,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,0,0,0,0,0,0,0,0,0,234,193,187,190,208,0,1012 +NA,NA,,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,21,75,58,69,91,0,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,61,69,52,61,58,0,0,0,0,0,0,0,0,0,0,301 +NA,NA,,2018-19,Dennis-Yarmouth - Mattacheese Middle School,6450305,0,0,0,0,0,0,0,235,215,0,0,0,0,0,0,450 +NA,NA,,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,6450050,0,0,0,0,0,247,265,0,0,0,0,0,0,0,0,512 +NA,NA,,2018-19,Dennis-Yarmouth - Station Avenue Elementary,6450025,0,111,99,109,117,0,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2018-19,Dighton-Rehoboth - Dighton Elementary,6500005,32,95,94,93,97,87,0,0,0,0,0,0,0,0,0,498 +NA,NA,,2018-19,Dighton-Rehoboth - Dighton Middle School,6500305,0,0,0,0,0,0,104,96,110,105,0,0,0,0,0,415 +NA,NA,,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,9,0,0,0,0,0,0,0,0,0,202,213,194,194,12,824 +NA,NA,,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0,0,0,0,0,0,137,140,156,146,0,0,0,0,0,579 +NA,NA,,2018-19,Dighton-Rehoboth - Palmer River,6500010,33,119,111,103,113,107,0,0,0,0,0,0,0,0,0,586 +NA,NA,,2018-19,Douglas - Douglas Elementary School,770015,0,0,0,89,104,81,81,0,0,0,0,0,0,0,0,355 +NA,NA,,2018-19,Douglas - Douglas High School,770505,0,0,0,0,0,0,0,0,0,0,95,94,101,107,0,397 +NA,NA,,2018-19,Douglas - Douglas Middle School,770305,0,0,0,0,0,0,0,101,122,99,0,0,0,0,0,322 +NA,NA,,2018-19,Douglas - Douglas Primary School,770005,56,85,81,0,0,0,0,0,0,0,0,0,0,0,0,222 +NA,NA,,2018-19,Dover - Chickering,780005,22,75,71,81,78,84,88,0,0,0,0,0,0,0,0,499 +NA,NA,,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0,0,0,0,0,0,0,0,0,0,177,178,167,152,0,674 +NA,NA,,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,0,0,0,0,0,0,0,172,173,177,0,0,0,0,0,522 +NA,NA,,2018-19,Dracut - Brookside Elementary,790035,0,75,72,71,72,70,79,0,0,0,0,0,0,0,0,439 +NA,NA,,2018-19,Dracut - Dracut Senior High,790505,0,0,0,0,0,0,0,0,0,0,235,224,207,208,1,875 +NA,NA,,2018-19,Dracut - George H. Englesby Elementary School,790045,0,93,92,87,88,89,94,0,0,0,0,0,0,0,0,543 +NA,NA,,2018-19,Dracut - Greenmont Avenue,790030,0,44,47,31,53,43,47,0,0,0,0,0,0,0,0,265 +NA,NA,,2018-19,Dracut - Joseph A Campbell Elementary,790020,57,77,98,73,78,95,81,0,0,0,0,0,0,0,0,559 +NA,NA,,2018-19,Dracut - Justus C. Richardson Middle School,790410,0,0,0,0,0,0,0,320,282,299,0,0,0,0,0,901 +NA,NA,,2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,39,33,38,42,39,37,28,0,0,0,0,0,0,0,0,256 +NA,NA,,2018-19,Dudley-Charlton Reg - Charlton Elementary,6580020,64,144,139,0,0,0,0,0,0,0,0,0,0,0,0,347 +NA,NA,,2018-19,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,0,0,0,0,180,167,159,175,0,0,0,0,0,681 +NA,NA,,2018-19,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,0,103,130,136,0,0,0,0,0,0,0,0,0,369 +NA,NA,,2018-19,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,0,0,0,131,122,152,149,0,0,0,0,0,554 +NA,NA,,2018-19,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,155,142,154,0,0,0,0,0,0,0,0,0,451 +NA,NA,,2018-19,Dudley-Charlton Reg - Mason Road School,6580010,48,107,128,0,0,0,0,0,0,0,0,0,0,0,0,283 +NA,NA,,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,0,0,0,0,0,0,0,0,288,286,273,267,1,1115 +NA,NA,,2018-19,Duxbury - Alden School,820004,0,0,0,0,209,192,229,0,0,0,0,0,0,0,0,630 +NA,NA,,2018-19,Duxbury - Chandler Elementary,820006,69,177,190,193,0,0,0,0,0,0,0,0,0,0,0,629 +NA,NA,,2018-19,Duxbury - Duxbury High,820505,0,0,0,0,0,0,0,0,0,0,236,255,261,251,1,1004 +NA,NA,,2018-19,Duxbury - Duxbury Middle,820305,0,0,0,0,0,0,0,258,243,251,0,0,0,0,0,752 +NA,NA,,2018-19,East Bridgewater - Central,830005,131,142,162,151,0,0,0,0,0,0,0,0,0,0,0,586 +NA,NA,,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,0,0,0,0,0,179,195,174,153,172,138,0,1011 +NA,NA,,2018-19,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,0,161,149,178,167,0,0,0,0,0,0,0,655 +NA,NA,,2018-19,East Longmeadow - Birchland Park,870305,0,0,0,0,0,0,0,193,218,233,0,0,0,0,0,644 +NA,NA,,2018-19,East Longmeadow - East Longmeadow High,870505,0,0,0,0,0,0,0,0,0,0,214,177,221,213,1,826 +NA,NA,,2018-19,East Longmeadow - Mapleshade,870010,0,0,0,0,92,101,105,0,0,0,0,0,0,0,0,298 +NA,NA,,2018-19,East Longmeadow - Meadow Brook,870013,51,163,192,177,0,0,0,0,0,0,0,0,0,0,0,583 +NA,NA,,2018-19,East Longmeadow - Mountain View,870015,0,0,0,0,89,86,98,0,0,0,0,0,0,0,0,273 +NA,NA,,2018-19,Eastham - Eastham Elementary,850005,15,24,27,28,27,26,24,0,0,0,0,0,0,0,0,171 +NA,NA,,2018-19,Easthampton - Center School,860005,0,42,39,38,41,44,0,0,0,0,0,0,0,0,0,204 +NA,NA,,2018-19,Easthampton - Easthampton High,860505,0,0,0,0,0,0,0,0,0,0,118,115,117,119,5,474 +NA,NA,,2018-19,Easthampton - Maple,860010,46,43,34,40,43,44,0,0,0,0,0,0,0,0,0,250 +NA,NA,,2018-19,Easthampton - Neil A Pepin,860020,0,42,38,40,42,42,0,0,0,0,0,0,0,0,0,204 +NA,NA,,2018-19,Easthampton - White Brook Middle School,860305,0,0,0,0,0,0,99,116,96,102,0,0,0,0,0,413 +NA,NA,,2018-19,Easton - Center School,880003,23,69,85,78,0,0,0,0,0,0,0,0,0,0,0,255 +NA,NA,,2018-19,Easton - Easton Middle School,880405,0,0,0,0,0,0,0,303,285,299,0,0,0,0,0,887 +NA,NA,,2018-19,Easton - Moreau Hall,880020,11,72,61,81,0,0,0,0,0,0,0,0,0,0,0,225 +NA,NA,,2018-19,Easton - Oliver Ames High,880505,0,0,0,0,0,0,0,0,0,0,282,283,271,299,10,1145 +NA,NA,,2018-19,Easton - Parkview Elementary,880015,39,93,91,85,0,0,0,0,0,0,0,0,0,0,0,308 +NA,NA,,2018-19,Easton - Richardson Olmsted School,880025,0,0,0,0,256,289,267,0,0,0,0,0,0,0,0,812 +NA,NA,,2018-19,Edgartown - Edgartown Elementary,890005,5,37,43,41,38,58,41,37,38,32,0,0,0,0,0,370 +NA,NA,,2018-19,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,0,0,0,0,0,0,0,0,0,0,105,100,90,88,0,383 +NA,NA,,2018-19,Erving - Erving Elementary,910030,24,15,9,12,20,9,18,20,0,0,0,0,0,0,1,128 +NA,NA,,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0,0,0,0,0,0,0,0,0,0,379,364,340,330,0,1413 +NA,NA,,2018-19,Everett - Adams School,930003,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194 +NA,NA,,2018-19,Everett - Devens School,930030,0,1,3,1,5,2,6,11,6,8,7,8,8,4,0,70 +NA,NA,,2018-19,Everett - Everett High,930505,0,0,0,0,0,0,0,0,0,0,503,438,522,512,3,1978 +NA,NA,,2018-19,Everett - George Keverian School,930028,0,65,79,114,87,89,90,127,124,95,0,0,0,0,0,870 +NA,NA,,2018-19,Everett - Lafayette School,930038,0,88,100,86,123,107,110,131,111,102,0,0,0,0,0,958 +NA,NA,,2018-19,Everett - Madeline English School,930018,0,79,97,79,77,73,93,98,113,81,0,0,0,0,0,790 +NA,NA,,2018-19,Everett - Parlin School,930058,0,108,105,101,76,107,96,109,113,121,0,0,0,0,0,936 +NA,NA,,2018-19,Everett - Sumner G. Whittier School,930010,0,66,68,78,81,79,83,78,57,45,0,0,0,0,0,635 +NA,NA,,2018-19,Everett - Webster School,930015,320,85,76,62,54,42,37,0,0,0,0,0,0,0,0,676 +NA,NA,,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,4100205,0,0,0,0,0,0,173,177,175,175,170,171,156,100,0,1297 +NA,NA,,2018-19,Fairhaven - East Fairhaven,940010,14,54,55,68,72,75,74,0,0,0,0,0,0,0,0,412 +NA,NA,,2018-19,Fairhaven - Fairhaven High,940505,0,0,0,0,0,0,0,0,0,0,179,186,163,131,2,661 +NA,NA,,2018-19,Fairhaven - Hastings Middle,940305,0,0,0,0,0,0,0,148,159,169,0,0,0,0,0,476 +NA,NA,,2018-19,Fairhaven - Leroy Wood,940030,22,63,70,68,82,88,83,0,0,0,0,0,0,0,0,476 +NA,NA,,2018-19,Fall River - B M C Durfee High,950505,0,0,0,0,0,0,0,0,0,0,577,564,520,435,0,2096 +NA,NA,,2018-19,Fall River - Carlton M. Viveiros Elementary School,950009,0,112,137,101,144,117,117,0,0,0,0,0,0,0,0,728 +NA,NA,,2018-19,Fall River - Henry Lord Community School,950017,39,88,84,86,67,87,69,83,51,55,0,0,0,0,0,709 +NA,NA,,2018-19,Fall River - James Tansey,950140,0,49,47,56,50,56,54,0,0,0,0,0,0,0,0,312 +NA,NA,,2018-19,Fall River - John J Doran,950045,21,54,55,51,58,59,69,53,44,47,0,0,0,0,0,511 +NA,NA,,2018-19,Fall River - Letourneau Elementary School,950013,33,73,99,102,100,86,92,0,0,0,0,0,0,0,0,585 +NA,NA,,2018-19,Fall River - Mary Fonseca Elementary School,950011,31,87,110,117,109,108,116,0,0,0,0,0,0,0,0,678 +NA,NA,,2018-19,Fall River - Matthew J Kuss Middle,950320,0,0,0,0,0,0,0,254,240,242,0,0,0,0,0,736 +NA,NA,,2018-19,Fall River - Morton Middle,950315,0,0,0,0,0,0,0,224,195,199,0,0,0,0,0,618 +NA,NA,,2018-19,Fall River - North End Elementary,950005,71,102,105,114,114,133,122,0,0,0,0,0,0,0,0,761 +NA,NA,,2018-19,Fall River - Resiliency Preparatory Academy,950525,0,0,0,0,0,0,0,0,17,21,24,45,33,51,0,191 +NA,NA,,2018-19,Fall River - Samuel Watson,950145,0,48,53,54,45,47,52,0,0,0,0,0,0,0,0,299 +NA,NA,,2018-19,Fall River - Spencer Borden,950130,0,85,100,90,83,86,118,0,0,0,0,0,0,0,0,562 +NA,NA,,2018-19,Fall River - Stone PK-12 School,950340,0,0,1,1,4,3,6,4,9,6,9,1,1,5,0,50 +NA,NA,,2018-19,Fall River - Talbot Innovation School,950305,0,0,0,0,0,0,0,184,181,162,0,0,0,0,0,527 +NA,NA,,2018-19,Fall River - William S Greene,950065,54,112,108,112,113,133,125,0,0,0,0,0,0,0,0,757 +NA,NA,,2018-19,Falmouth - East Falmouth Elementary,960005,0,50,47,44,50,49,0,0,0,0,0,0,0,0,0,240 +NA,NA,,2018-19,Falmouth - Falmouth High,960505,0,0,0,0,0,0,0,0,0,0,240,205,213,179,4,841 +NA,NA,,2018-19,Falmouth - Lawrence,960405,0,0,0,0,0,0,0,0,266,306,0,0,0,0,0,572 +NA,NA,,2018-19,Falmouth - Morse Pond School,960305,0,0,0,0,0,0,286,269,0,0,0,0,0,0,0,555 +NA,NA,,2018-19,Falmouth - Mullen-Hall,960020,0,92,86,82,87,89,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2018-19,Falmouth - North Falmouth Elementary,960030,0,66,76,54,68,82,0,0,0,0,0,0,0,0,0,346 +NA,NA,,2018-19,Falmouth - Teaticket,960015,115,38,51,53,51,53,0,0,0,0,0,0,0,0,0,361 +NA,NA,,2018-19,Farmington River Reg - Farmington River Elementary,6620020,25,15,15,15,10,11,11,13,0,0,0,0,0,0,0,115 +NA,NA,,2018-19,Fitchburg - Arthur M Longsjo Middle School,970315,0,0,0,0,0,0,184,156,156,151,0,0,0,0,0,647 +NA,NA,,2018-19,Fitchburg - Crocker Elementary,970016,72,128,104,127,112,100,0,0,0,0,0,0,0,0,0,643 +NA,NA,,2018-19,Fitchburg - Fitchburg High,970505,31,0,0,0,0,0,0,0,0,0,273,305,252,296,1,1158 +NA,NA,,2018-19,Fitchburg - Goodrich Academy,970510,0,0,0,0,0,0,0,0,0,0,11,19,55,109,13,207 +NA,NA,,2018-19,Fitchburg - McKay Arts Academy,970340,23,79,71,71,74,80,72,72,62,68,0,0,0,0,0,672 +NA,NA,,2018-19,Fitchburg - Memorial Middle School,970048,0,0,0,0,0,0,193,182,173,200,0,0,0,0,0,748 +NA,NA,,2018-19,Fitchburg - Reingold Elementary,970043,28,125,118,128,119,128,0,0,0,0,0,0,0,0,0,646 +NA,NA,,2018-19,Fitchburg - South Street Elementary,970060,31,128,117,116,120,129,0,0,0,0,0,0,0,0,0,641 +NA,NA,,2018-19,Florida - Abbott Memorial,980005,17,10,6,8,7,3,10,13,9,4,0,0,0,0,0,87 +NA,NA,,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,0,0,0,0,0,37,38,38,38,37,31,0,219 +NA,NA,,2018-19,Foxborough - Charles Taylor Elementary,990050,0,41,41,53,46,43,0,0,0,0,0,0,0,0,0,224 +NA,NA,,2018-19,Foxborough - Foxborough High,990505,0,0,0,0,0,0,0,0,0,0,200,182,211,212,8,813 +NA,NA,,2018-19,Foxborough - John J Ahern,990405,0,0,0,0,0,0,213,215,214,200,0,0,0,0,0,842 +NA,NA,,2018-19,Foxborough - Mabelle M Burrell,990015,84,44,54,43,43,40,0,0,0,0,0,0,0,0,0,308 +NA,NA,,2018-19,Foxborough - Vincent M Igo Elementary,990020,0,65,72,78,68,83,0,0,0,0,0,0,0,0,0,366 +NA,NA,,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,0,145,148,147,146,152,147,147,144,146,106,74,65,63,0,1630 +NA,NA,,2018-19,Framingham - Barbieri Elementary,1000035,0,121,120,104,110,122,95,0,0,0,0,0,0,0,0,672 +NA,NA,,2018-19,Framingham - Brophy,1000006,0,80,65,58,77,79,105,0,0,0,0,0,0,0,0,464 +NA,NA,,2018-19,Framingham - Cameron Middle School,1000302,0,0,0,0,0,0,0,221,186,174,0,0,0,0,0,581 +NA,NA,,2018-19,Framingham - Charlotte A Dunning,1000007,0,86,63,74,68,71,95,0,0,0,0,0,0,0,0,457 +NA,NA,,2018-19,Framingham - Framingham High School,1000515,0,0,0,0,0,0,0,0,0,0,602,574,555,540,0,2271 +NA,NA,,2018-19,Framingham - Fuller Middle,1000305,0,0,0,0,0,0,0,154,216,176,0,0,0,0,0,546 +NA,NA,,2018-19,Framingham - Hemenway,1000015,0,103,86,92,91,94,97,0,0,0,0,0,0,0,0,563 +NA,NA,,2018-19,Framingham - Juniper Hill School,1000001,276,0,0,0,0,0,0,0,0,0,0,0,0,0,0,276 +NA,NA,,2018-19,Framingham - King Elementary School,1000005,0,66,58,66,73,60,0,0,0,0,0,0,0,0,0,323 +NA,NA,,2018-19,Framingham - Mary E Stapleton Elementary,1000045,0,48,57,45,63,53,70,0,0,0,0,0,0,0,0,336 +NA,NA,,2018-19,Framingham - Miriam F McCarthy School,1000050,0,78,79,83,79,94,115,0,0,0,0,0,0,0,0,528 +NA,NA,,2018-19,Framingham - Potter Road,1000039,0,87,86,88,92,86,94,0,0,0,0,0,0,0,0,533 +NA,NA,,2018-19,Framingham - Walsh Middle,1000310,0,0,0,0,0,0,0,242,249,242,0,0,0,0,0,733 +NA,NA,,2018-19,Framingham - Woodrow Wilson,1000055,0,86,79,90,86,94,104,0,0,0,0,0,0,0,0,539 +NA,NA,,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,0,0,0,0,0,0,0,0,70,76,71,65,57,58,0,397 +NA,NA,,2018-19,Franklin - Annie Sullivan Middle School,1010040,0,0,0,0,0,0,0,122,127,158,0,0,0,0,0,407 +NA,NA,,2018-19,Franklin - Davis Thayer,1010035,0,50,28,41,36,39,50,0,0,0,0,0,0,0,0,244 +NA,NA,,2018-19,Franklin - Franklin Early Childhood Development Center,1010003,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107 +NA,NA,,2018-19,Franklin - Franklin High,1010505,0,0,0,0,0,0,0,0,0,0,445,438,437,424,5,1749 +NA,NA,,2018-19,Franklin - Helen Keller Elementary,1010012,0,51,54,66,80,59,77,0,0,0,0,0,0,0,0,387 +NA,NA,,2018-19,Franklin - Horace Mann,1010405,0,0,0,0,0,0,0,164,149,155,0,0,0,0,0,468 +NA,NA,,2018-19,Franklin - J F Kennedy Memorial,1010013,0,50,68,67,65,60,55,0,0,0,0,0,0,0,0,365 +NA,NA,,2018-19,Franklin - Jefferson Elementary,1010010,0,56,61,44,57,69,62,0,0,0,0,0,0,0,0,349 +NA,NA,,2018-19,Franklin - Oak Street Elementary,1010030,0,54,65,68,45,57,80,0,0,0,0,0,0,0,0,369 +NA,NA,,2018-19,Franklin - Parmenter,1010032,0,53,51,63,55,65,52,0,0,0,0,0,0,0,0,339 +NA,NA,,2018-19,Franklin - Remington Middle,1010310,0,0,0,0,0,0,0,121,155,138,0,0,0,0,0,414 +NA,NA,,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,0,0,0,0,0,0,0,144,112,119,119,0,494 +NA,NA,,2018-19,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,0,0,0,0,0,0,0,0,154,207,174,192,0,727 +NA,NA,,2018-19,Freetown-Lakeville - Assawompset Elementary School,6650002,0,118,106,112,129,0,0,0,0,0,0,0,0,0,0,465 +NA,NA,,2018-19,Freetown-Lakeville - Freetown Elementary School,6650001,48,91,107,83,99,0,0,0,0,0,0,0,0,0,0,428 +NA,NA,,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,0,0,0,0,0,0,0,238,264,248,0,0,0,0,0,750 +NA,NA,,2018-19,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,0,0,206,223,2,0,0,0,0,0,0,0,431 +NA,NA,,2018-19,Frontier - Frontier Regional,6700505,0,0,0,0,0,0,0,0,118,122,100,110,95,95,7,647 +NA,NA,,2018-19,Gardner - Elm Street School,1030001,0,0,0,179,183,192,0,0,0,0,0,0,0,0,0,554 +NA,NA,,2018-19,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,0,0,0,0,0,0,0,10,22,21,7,0,60 +NA,NA,,2018-19,Gardner - Gardner High,1030505,0,0,0,0,0,0,0,0,0,150,137,142,121,103,7,660 +NA,NA,,2018-19,Gardner - Gardner Middle School,1030405,0,0,0,0,0,0,183,206,189,0,0,0,0,0,0,578 +NA,NA,,2018-19,Gardner - Waterford Street,1030020,75,173,190,0,0,0,0,0,0,0,0,0,0,0,0,438 +NA,NA,,2018-19,Gateway - Chester Elementary,6720059,12,20,20,11,23,16,16,0,0,0,0,0,0,0,0,118 +NA,NA,,2018-19,Gateway - Gateway Regional High,6720505,0,0,0,0,0,0,0,0,0,0,39,54,59,41,5,198 +NA,NA,,2018-19,Gateway - Gateway Regional Middle School,6720405,0,0,0,0,0,0,0,68,64,70,0,0,0,0,0,202 +NA,NA,,2018-19,Gateway - Littleville Elementary School,6720143,34,34,52,43,39,59,46,0,0,0,0,0,0,0,0,307 +NA,NA,,2018-19,Georgetown - Georgetown High School,1050505,0,0,0,0,0,0,0,0,0,0,97,95,106,100,0,398 +NA,NA,,2018-19,Georgetown - Georgetown Middle School,1050305,0,0,0,0,0,0,0,0,97,111,0,0,0,0,0,208 +NA,NA,,2018-19,Georgetown - Penn Brook,1050010,0,109,105,90,104,87,120,94,0,0,0,0,0,0,0,709 +NA,NA,,2018-19,Georgetown - Perley Elementary,1050005,89,0,0,0,0,0,0,0,0,0,0,0,0,0,0,89 +NA,NA,,2018-19,Gill-Montague - Gill Elementary,6740005,0,16,15,19,20,19,25,14,0,0,0,0,0,0,0,128 +NA,NA,,2018-19,Gill-Montague - Great Falls Middle,6740310,0,0,0,0,0,0,0,56,94,89,0,0,0,0,0,239 +NA,NA,,2018-19,Gill-Montague - Hillcrest Elementary School,6740015,32,58,65,0,0,0,0,0,0,0,0,0,0,0,0,155 +NA,NA,,2018-19,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,49,50,57,55,0,0,0,0,0,0,0,0,211 +NA,NA,,2018-19,Gill-Montague - Turners Fall High,6740505,0,0,0,0,0,0,0,0,0,0,37,62,53,50,0,202 +NA,NA,,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,0,0,0,0,0,90,89,90,95,41,26,30,44,0,505 +NA,NA,,2018-19,Gloucester - Beeman Memorial,1070010,0,60,47,60,55,56,53,0,0,0,0,0,0,0,0,331 +NA,NA,,2018-19,Gloucester - East Gloucester Elementary,1070020,0,36,25,24,41,40,43,0,0,0,0,0,0,0,0,209 +NA,NA,,2018-19,Gloucester - Gloucester High,1070505,0,0,0,0,0,0,0,0,0,0,238,182,173,211,5,809 +NA,NA,,2018-19,Gloucester - Gloucester PreSchool,1070025,123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,123 +NA,NA,,2018-19,Gloucester - Plum Cove School,1070042,0,35,37,34,34,32,36,0,0,0,0,0,0,0,0,208 +NA,NA,,2018-19,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,0,0,0,0,204,230,207,0,0,0,0,0,641 +NA,NA,,2018-19,Gloucester - Veterans Memorial,1070045,0,27,40,40,37,30,43,0,0,0,0,0,0,0,0,217 +NA,NA,,2018-19,Gloucester - West Parish,1070050,0,57,65,58,61,59,48,0,0,0,0,0,0,0,0,348 +NA,NA,,2018-19,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,2 +NA,NA,,2018-19,Grafton - Grafton High School,1100505,0,0,0,0,0,0,0,0,0,0,242,192,201,221,7,863 +NA,NA,,2018-19,Grafton - Grafton Middle,1100305,0,0,0,0,0,0,0,0,249,265,0,0,0,0,0,514 +NA,NA,,2018-19,Grafton - Millbury Street Elementary School,1100200,0,0,0,135,123,140,141,147,0,0,0,0,0,0,0,686 +NA,NA,,2018-19,Grafton - North Grafton Elementary,1100025,39,94,104,0,0,0,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2018-19,Grafton - North Street Elementary School,1100030,0,0,0,99,112,138,103,120,0,0,0,0,0,0,0,572 +NA,NA,,2018-19,Grafton - South Grafton Elementary,1100005,68,106,127,0,0,0,0,0,0,0,0,0,0,0,0,301 +NA,NA,,2018-19,Granby - East Meadow,1110004,35,56,54,48,56,44,45,52,0,0,0,0,0,0,0,390 +NA,NA,,2018-19,Granby - Granby Jr Sr High School,1110505,0,0,0,0,0,0,0,0,56,59,64,55,54,49,0,337 +NA,NA,,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,0,0,0,0,0,0,0,0,0,0,377,364,350,321,1,1413 +NA,NA,,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0,0,0,0,0,0,0,0,0,0,428,408,382,358,0,1576 +NA,NA,,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,0,0,0,0,0,0,0,0,0,0,598,586,536,514,22,2256 +NA,NA,,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,0,0,0,0,0,0,0,0,0,0,554,541,551,493,0,2139 +NA,NA,,2018-19,Greenfield - Discovery School at Four Corners,1140025,0,43,54,48,51,42,0,0,0,0,0,0,0,0,0,238 +NA,NA,,2018-19,Greenfield - Federal Street School,1140010,0,45,54,55,45,47,0,0,0,0,0,0,0,0,0,246 +NA,NA,,2018-19,Greenfield - Greenfield High,1140505,0,0,0,0,0,0,0,0,0,125,123,85,69,84,1,487 +NA,NA,,2018-19,Greenfield - Greenfield Middle,1140305,0,0,0,0,0,0,146,125,119,0,0,0,0,0,0,390 +NA,NA,,2018-19,Greenfield - Newton School,1140035,0,60,51,42,46,51,0,0,0,0,0,0,0,0,0,250 +NA,NA,,2018-19,Greenfield - The Academy of Early Learning at North Parish,1140005,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121 +NA,NA,,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,0,11,24,26,27,33,50,43,49,72,86,73,51,45,0,590 +NA,NA,,2018-19,Groton-Dunstable - Boutwell School,6730001,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58 +NA,NA,,2018-19,Groton-Dunstable - Florence Roche School,6730010,0,104,109,110,103,116,0,0,0,0,0,0,0,0,0,542 +NA,NA,,2018-19,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,0,0,0,0,0,0,0,182,191,181,207,2,763 +NA,NA,,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,0,0,0,169,185,200,179,0,0,0,0,0,733 +NA,NA,,2018-19,Groton-Dunstable - Swallow/Union School,6730005,0,60,56,56,55,77,0,0,0,0,0,0,0,0,0,304 +NA,NA,,2018-19,Hadley - Hadley Elementary,1170015,35,34,25,31,35,29,49,45,0,0,0,0,0,0,0,283 +NA,NA,,2018-19,Hadley - Hopkins Academy,1170505,0,0,0,0,0,0,0,0,45,46,36,40,33,51,2,253 +NA,NA,,2018-19,Halifax - Halifax Elementary,1180005,0,82,93,99,79,85,83,87,0,0,0,0,0,0,0,608 +NA,NA,,2018-19,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,43,40,38,41,41,42,0,0,0,0,0,0,0,0,245 +NA,NA,,2018-19,Hamilton-Wenham - Cutler School,6750010,0,42,61,39,43,45,55,0,0,0,0,0,0,0,0,285 +NA,NA,,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,0,0,0,0,0,0,0,0,0,136,145,137,145,0,563 +NA,NA,,2018-19,Hamilton-Wenham - Miles River Middle,6750310,0,0,0,0,0,0,0,135,125,135,0,0,0,0,0,395 +NA,NA,,2018-19,Hamilton-Wenham - Winthrop School,6750015,33,42,40,44,40,51,31,0,0,0,0,0,0,0,0,281 +NA,NA,,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,0,0,0,0,0,0,0,85,88,93,73,68,65,36,0,508 +NA,NA,,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,0,0,0,0,0,0,0,59,56,53,41,0,0,0,0,209 +NA,NA,,2018-19,Hampden-Wilbraham - Green Meadows Elementary,6800005,14,33,43,41,37,44,48,19,18,15,0,0,0,0,0,312 +NA,NA,,2018-19,Hampden-Wilbraham - Mile Tree Elementary,6800025,67,147,149,0,0,0,0,0,0,0,0,0,0,0,0,363 +NA,NA,,2018-19,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0,0,0,0,0,0,0,0,0,287,256,271,292,1,1107 +NA,NA,,2018-19,Hampden-Wilbraham - Soule Road,6800030,0,0,0,0,0,161,179,0,0,0,0,0,0,0,0,340 +NA,NA,,2018-19,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,168,153,0,0,0,0,0,0,0,0,0,0,321 +NA,NA,,2018-19,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,0,0,0,0,194,210,210,0,0,0,0,0,614 +NA,NA,,2018-19,Hampshire - Hampshire Regional High,6830505,0,0,0,0,0,0,0,0,136,130,134,105,123,87,4,719 +NA,NA,,2018-19,Hancock - Hancock Elementary,1210005,9,4,1,3,5,5,2,5,0,0,0,0,0,0,0,34 +NA,NA,,2018-19,Hanover - Cedar Elementary,1220004,71,88,66,78,74,78,0,0,0,0,0,0,0,0,0,455 +NA,NA,,2018-19,Hanover - Center Elementary,1220005,0,110,105,126,0,0,0,0,0,0,0,0,0,0,0,341 +NA,NA,,2018-19,Hanover - Hanover High,1220505,0,0,0,0,0,0,0,0,0,0,194,209,183,215,3,804 +NA,NA,,2018-19,Hanover - Hanover Middle,1220305,0,0,0,0,0,0,180,218,220,181,0,0,0,0,0,799 +NA,NA,,2018-19,Hanover - Sylvester,1220015,0,0,0,0,120,126,0,0,0,0,0,0,0,0,0,246 +NA,NA,,2018-19,Harvard - Bromfield,1250505,0,0,0,0,0,0,0,74,80,74,103,100,89,107,0,627 +NA,NA,,2018-19,Harvard - Hildreth Elementary School,1250005,10,53,72,67,75,73,88,0,0,0,0,0,0,0,0,438 +NA,NA,,2018-19,Hatfield - Hatfield Elementary,1270005,23,30,22,32,28,36,36,40,0,0,0,0,0,0,0,247 +NA,NA,,2018-19,Hatfield - Smith Academy,1270505,0,0,0,0,0,0,0,0,31,31,44,25,32,26,0,189 +NA,NA,,2018-19,Haverhill - Bradford Elementary,1280008,0,70,65,57,76,84,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2018-19,Haverhill - Caleb Dustin Hunking School,1280030,0,88,80,67,87,89,159,161,201,171,0,0,0,0,0,1103 +NA,NA,,2018-19,Haverhill - Consentino Annex at Bartlett School,1280005,0,40,43,40,0,0,0,0,0,0,0,0,0,0,0,123 +NA,NA,,2018-19,Haverhill - Consentino Middle School,1280100,0,0,0,0,0,90,185,254,219,210,0,0,0,0,0,958 +NA,NA,,2018-19,Haverhill - Crowell,1280020,0,95,0,0,0,0,0,0,0,0,0,0,0,0,0,95 +NA,NA,,2018-19,Haverhill - Dr Paul Nettle,1280050,0,0,0,0,0,0,132,136,130,140,0,0,0,0,0,538 +NA,NA,,2018-19,Haverhill - Golden Hill,1280026,0,0,125,132,112,132,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2018-19,Haverhill - Greenleaf Kindergarten Center,1280027,0,79,0,0,0,0,0,0,0,0,0,0,0,0,0,79 +NA,NA,,2018-19,Haverhill - Haverhill Alternative School,1280033,0,0,0,0,0,0,0,0,6,3,8,10,3,6,0,36 +NA,NA,,2018-19,Haverhill - Haverhill High,1280505,0,0,0,0,0,0,0,0,0,0,494,523,412,388,24,1841 +NA,NA,,2018-19,Haverhill - John G Whittier,1280085,0,0,0,0,0,0,125,156,121,123,0,0,0,0,0,525 +NA,NA,,2018-19,Haverhill - Moody,1280045,200,0,0,0,0,0,0,0,0,0,0,0,0,0,0,200 +NA,NA,,2018-19,Haverhill - Pentucket Lake Elementary,1280054,0,68,92,80,121,122,0,0,0,0,0,0,0,0,0,483 +NA,NA,,2018-19,Haverhill - Silver Hill Elementary School,1280067,0,41,89,99,124,144,74,0,0,0,0,0,0,0,0,571 +NA,NA,,2018-19,Haverhill - TEACH,1280073,0,0,1,2,2,6,5,8,5,2,2,5,1,2,6,47 +NA,NA,,2018-19,Haverhill - Tilton,1280075,0,65,127,109,117,42,0,0,0,0,0,0,0,0,0,460 +NA,NA,,2018-19,Haverhill - Walnut Square,1280080,0,43,43,49,0,0,0,0,0,0,0,0,0,0,0,135 +NA,NA,,2018-19,Hawlemont - Hawlemont Regional,6850005,29,15,22,24,17,19,6,19,0,0,0,0,0,0,0,151 +NA,NA,,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,0,0,0,0,0,0,0,69,63,59,0,0,0,0,0,191 +NA,NA,,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,36,35,35,35,35,34,32,35,27,0,0,0,0,0,304 +NA,NA,,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,20,20,21,21,22,21,32,30,30,0,0,0,0,0,217 +NA,NA,,2018-19,Hingham - East Elementary School,1310005,76,64,66,74,78,71,91,0,0,0,0,0,0,0,0,520 +NA,NA,,2018-19,Hingham - Hingham High,1310505,0,0,0,0,0,0,0,0,0,0,340,317,313,279,4,1253 +NA,NA,,2018-19,Hingham - Hingham Middle School,1310410,0,0,0,0,0,0,0,322,339,358,0,0,0,0,0,1019 +NA,NA,,2018-19,Hingham - Plymouth River,1310019,0,60,77,66,78,80,91,0,0,0,0,0,0,0,0,452 +NA,NA,,2018-19,Hingham - South Elementary,1310020,0,80,89,79,88,89,93,0,0,0,0,0,0,0,0,518 +NA,NA,,2018-19,Hingham - Wm L Foster Elementary,1310010,0,80,75,89,85,62,89,0,0,0,0,0,0,0,0,480 +NA,NA,,2018-19,Holbrook - Holbrook Middle High School,1330505,0,0,0,0,0,0,0,99,110,102,78,69,78,57,1,594 +NA,NA,,2018-19,Holbrook - John F Kennedy,1330018,48,114,98,107,103,90,105,0,0,0,0,0,0,0,0,665 +NA,NA,,2018-19,Holland - Holland Elementary,1350005,24,28,28,29,28,31,26,32,0,0,0,0,0,0,0,226 +NA,NA,,2018-19,Holliston - Holliston High,1360505,0,0,0,0,0,0,0,0,0,0,218,195,225,184,3,825 +NA,NA,,2018-19,Holliston - Miller School,1360007,0,0,0,0,220,223,230,0,0,0,0,0,0,0,0,673 +NA,NA,,2018-19,Holliston - Placentino Elementary,1360010,97,173,206,229,0,0,0,0,0,0,0,0,0,0,0,705 +NA,NA,,2018-19,Holliston - Robert H. Adams Middle School,1360305,0,0,0,0,0,0,0,237,230,219,0,0,0,0,0,686 +NA,NA,,2018-19,Holyoke - E N White Elementary,1370045,73,67,52,61,55,49,48,0,0,0,0,0,0,0,0,405 +NA,NA,,2018-19,Holyoke - H.B. Lawrence School,1370070,0,73,50,67,61,0,0,0,0,0,0,0,0,0,0,251 +NA,NA,,2018-19,Holyoke - Holyoke High,1370505,0,0,0,0,0,0,0,0,0,0,387,388,405,328,0,1508 +NA,NA,,2018-19,Holyoke - Holyoke STEM Academy,1370320,0,0,0,0,0,0,0,92,85,81,0,0,0,0,0,258 +NA,NA,,2018-19,Holyoke - Joseph Metcalf School,1370003,71,41,39,42,40,29,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2018-19,Holyoke - Kelly Elementary,1370040,28,62,54,58,73,57,0,49,51,41,0,0,0,0,0,473 +NA,NA,,2018-19,Holyoke - Lt Clayre Sullivan Elementary,1370055,0,49,40,63,52,55,70,69,60,58,0,0,0,0,0,516 +NA,NA,,2018-19,Holyoke - Lt Elmer J McMahon Elementary,1370015,26,31,46,38,27,47,41,48,41,34,0,0,0,0,0,379 +NA,NA,,2018-19,Holyoke - Maurice A Donahue Elementary,1370060,44,52,54,42,47,48,55,46,40,39,0,0,0,0,0,467 +NA,NA,,2018-19,Holyoke - Morgan Full Service Community School,1370025,73,46,44,47,51,45,0,0,0,0,0,0,0,0,0,306 +NA,NA,,2018-19,Holyoke - Veritas Prep Holyoke,1370075,0,0,0,0,0,0,139,0,0,0,0,0,0,0,0,139 +NA,NA,,2018-19,Holyoke - William R. Peck School,1370030,0,0,0,0,0,62,51,53,45,66,0,0,0,0,0,277 +NA,NA,,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,0,76,79,86,86,84,78,84,71,60,0,0,0,0,0,704 +NA,NA,,2018-19,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,0,0,0,0,0,87,82,81,77,73,78,0,478 +NA,NA,,2018-19,Hopedale - Memorial,1380010,0,66,73,75,76,69,82,81,0,0,0,0,0,0,0,522 +NA,NA,,2018-19,Hopedale - Park Street School,1380003,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,87 +NA,NA,,2018-19,Hopkinton - Elmwood,1390010,0,0,0,281,268,0,0,0,0,0,0,0,0,0,0,549 +NA,NA,,2018-19,Hopkinton - Hopkins Elementary School,1390015,0,0,0,0,0,274,277,0,0,0,0,0,0,0,0,551 +NA,NA,,2018-19,Hopkinton - Hopkinton High,1390505,0,0,0,0,0,0,0,0,0,0,282,323,286,286,5,1182 +NA,NA,,2018-19,Hopkinton - Hopkinton Middle School,1390305,0,0,0,0,0,0,0,301,234,313,0,0,0,0,0,848 +NA,NA,,2018-19,Hopkinton - Hopkinton Pre-School,1390003,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69 +NA,NA,,2018-19,Hopkinton - Marathon Elementary School,1390005,0,260,226,0,0,0,0,0,0,0,0,0,0,0,0,486 +NA,NA,,2018-19,Hudson - C A Farley,1410030,9,77,84,77,82,82,0,0,0,0,0,0,0,0,0,411 +NA,NA,,2018-19,Hudson - David J. Quinn Middle School,1410410,0,0,0,0,0,0,219,206,212,0,0,0,0,0,0,637 +NA,NA,,2018-19,Hudson - Forest Avenue Elementary,1410015,0,61,83,69,75,67,0,0,0,0,0,0,0,0,0,355 +NA,NA,,2018-19,Hudson - Hudson High,1410505,0,0,0,0,0,0,0,0,0,215,161,158,179,181,0,894 +NA,NA,,2018-19,Hudson - Mulready Elementary,1410007,12,54,43,46,49,43,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2018-19,Hull - Hull High,1420505,0,0,0,0,0,0,0,0,0,0,58,77,71,80,1,287 +NA,NA,,2018-19,Hull - Lillian M Jacobs,1420015,51,64,58,56,56,66,64,0,0,0,0,0,0,0,0,415 +NA,NA,,2018-19,Hull - Memorial Middle,1420305,0,0,0,0,0,0,0,54,63,68,0,0,0,0,0,185 +NA,NA,,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,0,0,0,0,0,0,100,100,100,100,104,103,91,99,0,797 +NA,NA,,2018-19,Ipswich - Ipswich High,1440505,0,0,0,0,0,0,0,0,0,0,143,139,137,119,3,541 +NA,NA,,2018-19,Ipswich - Ipswich Middle School,1440305,0,0,0,0,0,0,0,124,146,137,0,0,0,0,0,407 +NA,NA,,2018-19,Ipswich - Paul F Doyon Memorial,1440007,18,55,70,58,62,65,66,0,0,0,0,0,0,0,1,395 +NA,NA,,2018-19,Ipswich - Winthrop,1440015,19,50,62,55,61,54,64,0,0,0,0,0,0,0,0,365 +NA,NA,,2018-19,King Philip - King Philip Middle School,6900510,0,0,0,0,0,0,0,0,388,341,0,0,0,0,0,729 +NA,NA,,2018-19,King Philip - King Philip Regional High,6900505,0,0,0,0,0,0,0,0,0,0,333,312,330,314,6,1295 +NA,NA,,2018-19,Kingston - Kingston Elementary,1450005,0,151,147,142,0,0,0,0,0,0,0,0,0,0,0,440 +NA,NA,,2018-19,Kingston - Kingston Intermediate,1450020,0,0,0,0,164,140,141,155,0,0,0,0,0,0,0,600 +NA,NA,,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,0,63,62,74,73,72,62,64,59,65,0,0,0,0,0,594 +NA,NA,,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,0,122,122,122,122,0,122,122,122,122,124,125,118,113,0,1456 +NA,NA,,2018-19,Lawrence - Alexander B Bruce,1490015,0,0,0,0,90,87,96,74,85,97,0,0,0,0,0,529 +NA,NA,,2018-19,Lawrence - Arlington Middle School,1490017,0,0,0,0,0,0,138,167,143,169,0,0,0,0,0,617 +NA,NA,,2018-19,Lawrence - Community Day Arlington,1490009,0,98,117,127,118,134,0,0,0,0,0,0,0,0,0,594 +NA,NA,,2018-19,Lawrence - Edward F. Parthum,1490053,4,109,143,128,136,141,0,0,0,0,0,0,0,0,0,661 +NA,NA,,2018-19,Lawrence - Emily G Wetherbee,1490080,0,56,71,72,74,64,71,81,76,85,0,0,0,0,0,650 +NA,NA,,2018-19,Lawrence - Francis M Leahy,1490040,0,0,85,95,98,99,88,0,0,0,0,0,0,0,0,465 +NA,NA,,2018-19,Lawrence - Frost Middle School,1490525,0,0,0,0,0,0,130,132,125,130,0,0,0,0,0,517 +NA,NA,,2018-19,Lawrence - Gerard A. Guilmette,1490022,0,0,132,112,132,141,0,0,0,0,0,0,0,0,0,517 +NA,NA,,2018-19,Lawrence - Guilmette Middle School,1490025,0,0,0,0,0,0,132,113,113,133,0,0,0,0,0,491 +NA,NA,,2018-19,Lawrence - High School Learning Center,1490536,0,0,0,0,0,0,0,0,0,0,7,50,60,70,0,187 +NA,NA,,2018-19,Lawrence - James F Hennessey,1490020,87,86,99,80,0,0,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2018-19,Lawrence - John Breen School,1490003,202,125,0,0,0,0,0,0,0,0,0,0,0,0,0,327 +NA,NA,,2018-19,Lawrence - John K Tarbox,1490075,0,0,65,52,78,58,43,0,0,0,0,0,0,0,0,296 +NA,NA,,2018-19,Lawrence - Lawlor Early Childhood Center,1490002,0,190,0,0,0,0,0,0,0,0,0,0,0,0,0,190 +NA,NA,,2018-19,Lawrence - Lawrence Family Public Academy,1490011,54,138,0,0,0,0,0,0,0,0,0,0,0,0,0,192 +NA,NA,,2018-19,Lawrence - Lawrence High School,1490515,0,0,0,0,0,0,0,0,0,0,969,743,808,664,34,3218 +NA,NA,,2018-19,Lawrence - Oliver Partnership School,1490048,0,0,96,110,88,97,104,0,0,0,0,0,0,0,0,495 +NA,NA,,2018-19,Lawrence - Parthum Middle School,1490027,0,0,0,0,0,0,150,151,138,164,0,0,0,0,0,603 +NA,NA,,2018-19,Lawrence - Robert Frost,1490018,0,120,106,120,132,128,0,0,0,0,0,0,0,0,0,606 +NA,NA,,2018-19,Lawrence - Rollins Early Childhood Center,1490001,103,69,0,0,0,0,0,0,0,0,0,0,0,0,0,172 +NA,NA,,2018-19,Lawrence - School for Exceptional Studies,1490537,0,0,5,10,8,14,8,14,11,9,15,22,7,11,11,145 +NA,NA,,2018-19,Lawrence - South Lawrence East Elementary School,1490004,0,0,144,159,154,140,157,0,0,0,0,0,0,0,0,754 +NA,NA,,2018-19,Lawrence - Spark Academy,1490085,0,0,0,0,0,0,0,152,151,155,0,0,0,0,0,458 +NA,NA,,2018-19,Lawrence - UP Academy Leonard Middle School,1490090,0,0,0,0,0,0,0,72,101,115,0,0,0,0,0,288 +NA,NA,,2018-19,Lawrence - UP Academy Oliver Middle School,1490049,0,0,0,0,0,0,0,107,113,114,0,0,0,0,0,334 +NA,NA,,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,85,84,84,84,82,83,78,81,50,49,0,0,0,0,0,760 +NA,NA,,2018-19,Lee - Lee Elementary,1500025,14,52,56,45,49,49,39,39,0,0,0,0,0,0,0,343 +NA,NA,,2018-19,Lee - Lee Middle/High School,1500505,0,0,0,0,0,0,0,0,56,58,68,65,53,57,3,360 +NA,NA,,2018-19,Leicester - Leicester High,1510505,0,0,0,0,0,0,0,0,0,0,136,107,127,100,0,470 +NA,NA,,2018-19,Leicester - Leicester Memorial Elementary,1510005,0,0,0,0,96,107,126,0,0,0,0,0,0,0,0,329 +NA,NA,,2018-19,Leicester - Leicester Middle,1510015,0,0,0,0,0,0,0,115,137,118,0,0,0,0,0,370 +NA,NA,,2018-19,Leicester - Leicester Primary School,1510010,77,86,112,92,0,0,0,0,0,0,0,0,0,0,0,367 +NA,NA,,2018-19,Lenox - Lenox Memorial High,1520505,0,0,0,0,0,0,0,54,67,71,64,64,61,50,0,431 +NA,NA,,2018-19,Lenox - Morris,1520015,23,48,44,54,55,47,54,0,0,0,0,0,0,0,0,325 +NA,NA,,2018-19,Leominster - Bennett,1530003,101,0,0,0,0,0,0,0,0,0,0,0,0,0,0,101 +NA,NA,,2018-19,Leominster - Center For Technical Education Innovation,1530605,0,0,0,0,0,0,0,0,0,0,235,162,134,151,0,682 +NA,NA,,2018-19,Leominster - Fall Brook,1530007,0,74,112,113,118,114,100,0,0,0,0,0,0,0,0,631 +NA,NA,,2018-19,Leominster - Frances Drake School,1530010,0,94,75,77,101,105,106,0,0,0,0,0,0,0,0,558 +NA,NA,,2018-19,Leominster - Johnny Appleseed,1530025,0,93,101,119,100,142,117,0,0,0,0,0,0,0,0,672 +NA,NA,,2018-19,Leominster - Leominster Center for Excellence,1530515,0,0,0,0,0,0,0,0,0,0,15,14,12,16,0,57 +NA,NA,,2018-19,Leominster - Leominster High School,1530505,0,0,0,0,0,0,0,0,0,0,212,295,273,292,0,1072 +NA,NA,,2018-19,Leominster - Lincoln School,1530005,39,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39 +NA,NA,,2018-19,Leominster - Northwest,1530030,0,45,108,111,134,125,149,0,0,0,0,0,0,0,0,672 +NA,NA,,2018-19,Leominster - Priest Street,1530040,0,143,0,0,0,0,0,0,0,0,0,0,0,0,0,143 +NA,NA,,2018-19,Leominster - Samoset School,1530045,0,0,0,0,0,0,0,156,177,164,0,0,0,0,0,497 +NA,NA,,2018-19,Leominster - Sky View Middle School,1530320,0,0,0,0,0,0,0,311,298,294,0,0,0,0,0,903 +NA,NA,,2018-19,Leverett - Leverett Elementary,1540005,17,16,16,18,15,21,15,17,0,0,0,0,0,0,0,135 +NA,NA,,2018-19,Lexington - Bowman,1550008,0,69,83,87,100,99,108,0,0,0,0,0,0,0,0,546 +NA,NA,,2018-19,Lexington - Bridge,1550006,0,62,77,90,101,104,107,0,0,0,0,0,0,0,0,541 +NA,NA,,2018-19,Lexington - Fiske,1550015,0,60,68,64,92,106,90,0,0,0,0,0,0,0,0,480 +NA,NA,,2018-19,Lexington - Harrington,1550030,0,71,73,94,82,74,99,0,0,0,0,0,0,0,0,493 +NA,NA,,2018-19,Lexington - Jonas Clarke Middle,1550305,0,0,0,0,0,0,0,306,296,312,0,0,0,0,0,914 +NA,NA,,2018-19,Lexington - Joseph Estabrook,1550010,0,76,99,86,102,98,119,0,0,0,0,0,0,0,0,580 +NA,NA,,2018-19,Lexington - Lexington Children's Place,1550001,69,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69 +NA,NA,,2018-19,Lexington - Lexington High,1550505,0,0,0,0,0,0,0,0,0,0,598,542,572,551,0,2263 +NA,NA,,2018-19,Lexington - Maria Hastings,1550035,0,63,67,88,75,79,82,0,0,0,0,0,0,0,0,454 +NA,NA,,2018-19,Lexington - Wm Diamond Middle,1550310,0,0,0,0,0,0,0,313,278,328,0,0,0,0,0,919 +NA,NA,,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,0,0,0,0,0,0,0,87,91,0,0,0,0,0,0,178 +NA,NA,,2018-19,Lincoln - Hanscom Middle,1570305,0,0,0,0,0,69,71,51,51,53,0,0,0,0,0,295 +NA,NA,,2018-19,Lincoln - Hanscom Primary,1570006,36,65,70,66,68,0,0,0,0,0,0,0,0,0,0,305 +NA,NA,,2018-19,Lincoln - Lincoln School,1570025,47,73,51,70,51,63,60,53,62,62,0,0,0,0,0,592 +NA,NA,,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,0,0,0,0,0,0,0,0,0,0,406,395,353,369,5,1528 +NA,NA,,2018-19,Littleton - Littleton High School,1580505,0,0,0,0,0,0,0,0,0,0,105,111,119,115,0,450 +NA,NA,,2018-19,Littleton - Littleton Middle School,1580305,0,0,0,0,0,0,0,124,122,118,0,0,0,0,0,364 +NA,NA,,2018-19,Littleton - Russell St Elementary,1580015,0,0,0,0,127,135,137,0,0,0,0,0,0,0,0,399 +NA,NA,,2018-19,Littleton - Shaker Lane Elementary,1580005,68,120,136,116,0,0,0,0,0,0,0,0,0,0,0,440 +NA,NA,,2018-19,Longmeadow - Blueberry Hill,1590005,0,68,64,74,74,64,94,0,0,0,0,0,0,0,0,438 +NA,NA,,2018-19,Longmeadow - Center,1590010,0,69,64,70,62,66,87,0,0,0,0,0,0,0,0,418 +NA,NA,,2018-19,Longmeadow - Glenbrook Middle,1590017,0,0,0,0,0,0,0,112,116,112,0,0,0,0,0,340 +NA,NA,,2018-19,Longmeadow - Longmeadow High,1590505,0,0,0,0,0,0,0,0,0,0,249,227,257,242,0,975 +NA,NA,,2018-19,Longmeadow - Williams Middle,1590305,0,0,0,0,0,0,0,106,108,100,0,0,0,0,0,314 +NA,NA,,2018-19,Longmeadow - Wolf Swamp Road,1590025,45,59,59,51,51,65,59,0,0,0,0,0,0,0,0,389 +NA,NA,,2018-19,Lowell - Abraham Lincoln,1600020,47,93,91,91,87,100,0,0,0,0,0,0,0,0,0,509 +NA,NA,,2018-19,Lowell - B.F. Butler Middle School,1600310,0,0,0,0,0,0,153,141,147,126,0,0,0,0,0,567 +NA,NA,,2018-19,Lowell - Bartlett Community Partnership,1600090,37,45,49,45,39,48,52,52,53,54,0,0,0,0,0,474 +NA,NA,,2018-19,Lowell - Cardinal O'Connell Early Learning Center,1600001,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104 +NA,NA,,2018-19,Lowell - Charles W Morey,1600030,49,93,89,88,92,100,0,0,0,0,0,0,0,0,0,511 +NA,NA,,2018-19,Lowell - Charlotte M Murkland Elementary,1600080,49,94,87,89,89,101,0,0,0,0,0,0,0,0,0,509 +NA,NA,,2018-19,Lowell - Dr An Wang School,1600345,0,0,0,0,0,0,180,166,189,153,0,0,0,0,0,688 +NA,NA,,2018-19,Lowell - Dr Gertrude Bailey,1600002,30,99,94,95,90,100,0,0,0,0,0,0,0,0,0,508 +NA,NA,,2018-19,Lowell - Dr. Janice Adie Day School,1600605,2,5,6,8,7,2,2,6,3,0,3,0,2,0,0,46 +NA,NA,,2018-19,Lowell - Greenhalge,1600015,60,94,82,86,95,85,0,0,0,0,0,0,0,0,0,502 +NA,NA,,2018-19,Lowell - Henry J Robinson Middle,1600330,0,0,0,0,0,0,158,162,166,152,0,0,0,0,0,638 +NA,NA,,2018-19,Lowell - James S Daley Middle School,1600315,0,0,0,0,0,0,184,171,172,168,0,0,0,0,0,695 +NA,NA,,2018-19,Lowell - James Sullivan Middle School,1600340,0,0,0,0,0,0,0,173,172,149,0,0,0,0,0,494 +NA,NA,,2018-19,Lowell - John J Shaughnessy,1600050,31,99,87,83,97,96,0,0,0,0,0,0,0,0,0,493 +NA,NA,,2018-19,Lowell - Joseph McAvinnue,1600010,25,93,83,88,82,98,0,0,0,0,0,0,0,0,0,469 +NA,NA,,2018-19,Lowell - Kathryn P. Stoklosa Middle School,1600360,0,0,0,0,0,0,162,167,178,168,0,0,0,0,0,675 +NA,NA,,2018-19,Lowell - Laura Lee Therapeutic Day School,1600085,0,0,0,1,1,0,3,6,4,5,0,0,0,0,0,20 +NA,NA,,2018-19,Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,0,0,0,0,4,10,10,11,0,35 +NA,NA,,2018-19,Lowell - Lowell High,1600505,0,0,0,0,0,0,0,0,0,0,824,765,782,771,32,3174 +NA,NA,,2018-19,Lowell - Moody Elementary,1600027,0,46,44,48,43,47,49,0,0,0,0,0,0,0,0,277 +NA,NA,,2018-19,Lowell - Pawtucketville Memorial,1600036,29,91,85,92,93,106,0,0,0,0,0,0,0,0,0,496 +NA,NA,,2018-19,Lowell - Peter W Reilly,1600040,0,95,86,87,99,105,103,0,0,0,0,0,0,0,0,575 +NA,NA,,2018-19,Lowell - Pyne Arts,1600018,24,46,49,48,46,49,59,52,60,54,0,0,0,0,0,487 +NA,NA,,2018-19,Lowell - Rogers STEM Academy,1600005,0,96,93,79,86,107,109,113,55,0,0,0,0,0,0,738 +NA,NA,,2018-19,Lowell - S Christa McAuliffe Elementary,1600075,50,94,84,90,91,97,0,0,0,0,0,0,0,0,0,506 +NA,NA,,2018-19,Lowell - The Career Academy,1600515,0,0,0,0,0,0,0,0,0,0,18,28,27,44,1,118 +NA,NA,,2018-19,Lowell - Washington,1600055,25,50,43,42,40,40,0,0,0,0,0,0,0,0,0,240 +NA,NA,,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,40,96,93,94,91,94,82,77,76,77,0,0,0,0,0,820 +NA,NA,,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,0,0,0,0,0,0,0,11,23,21,27,0,82 +NA,NA,,2018-19,Ludlow - Chapin Street Elementary School,1610020,0,0,0,165,165,0,0,0,0,0,0,0,0,0,0,330 +NA,NA,,2018-19,Ludlow - East Street Elementary School,1610010,89,148,155,0,0,0,0,0,0,0,0,0,0,0,0,392 +NA,NA,,2018-19,Ludlow - Ludlow Senior High,1610505,0,0,0,0,0,0,0,0,0,0,256,229,194,209,3,891 +NA,NA,,2018-19,Ludlow - Paul R Baird Middle,1610305,0,0,0,0,0,0,0,211,191,208,0,0,0,0,0,610 +NA,NA,,2018-19,Ludlow - Veterans Park Elementary,1610023,0,0,0,0,0,167,204,0,0,0,0,0,0,0,0,371 +NA,NA,,2018-19,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8 +NA,NA,,2018-19,Lunenburg - Lunenburg High,1620505,0,0,0,0,0,0,0,0,0,0,126,122,101,109,0,458 +NA,NA,,2018-19,Lunenburg - Lunenburg Middle School,1620305,0,0,0,0,0,0,0,126,141,126,0,0,0,0,0,393 +NA,NA,,2018-19,Lunenburg - Lunenburg Primary School,1620010,42,144,114,118,0,0,0,0,0,0,0,0,0,0,0,418 +NA,NA,,2018-19,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,0,121,115,136,0,0,0,0,0,0,0,0,372 +NA,NA,,2018-19,Lynn - A Drewicz Elementary,1630016,0,75,75,72,79,85,113,0,0,0,0,0,0,0,0,499 +NA,NA,,2018-19,Lynn - Aborn,1630011,0,45,45,36,40,44,46,0,0,0,0,0,0,0,0,256 +NA,NA,,2018-19,Lynn - Breed Middle School,1630405,0,0,0,0,0,0,0,529,462,438,0,0,0,0,0,1429 +NA,NA,,2018-19,Lynn - Brickett Elementary,1630020,0,58,57,52,56,59,55,0,0,0,0,0,0,0,0,337 +NA,NA,,2018-19,Lynn - Capt William G Shoemaker,1630090,5,55,63,55,41,53,46,0,0,0,0,0,0,0,0,318 +NA,NA,,2018-19,Lynn - Classical High,1630505,0,0,0,0,0,0,0,0,0,0,472,418,414,412,0,1716 +NA,NA,,2018-19,Lynn - Cobbet Elementary,1630035,0,113,94,99,94,94,109,0,0,0,0,0,0,0,0,603 +NA,NA,,2018-19,Lynn - E J Harrington,1630045,83,97,99,104,77,99,104,0,0,0,0,0,0,0,0,663 +NA,NA,,2018-19,Lynn - Early Childhood Center,1630004,104,181,3,2,1,0,1,0,0,0,0,0,0,0,0,292 +NA,NA,,2018-19,Lynn - Edward A Sisson,1630095,0,64,74,81,72,71,82,0,0,0,0,0,0,0,0,444 +NA,NA,,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,0,0,0,0,3,8,13,21,15,15,16,0,91 +NA,NA,,2018-19,Lynn - Hood,1630055,0,58,86,74,83,98,75,0,0,0,0,0,0,0,0,474 +NA,NA,,2018-19,Lynn - Ingalls,1630060,0,89,110,99,95,117,124,0,0,0,0,0,0,0,0,634 +NA,NA,,2018-19,Lynn - Julia F Callahan,1630030,40,62,55,61,78,77,67,0,0,0,0,0,0,0,0,440 +NA,NA,,2018-19,Lynn - Lincoln-Thomson,1630070,0,31,39,45,34,46,42,0,0,0,0,0,0,0,0,237 +NA,NA,,2018-19,Lynn - Lynn English High,1630510,0,0,0,0,0,0,0,0,0,0,528,503,416,339,0,1786 +NA,NA,,2018-19,Lynn - Lynn Vocational Technical Institute,1630605,48,0,0,0,0,0,0,2,0,3,275,256,247,212,20,1063 +NA,NA,,2018-19,Lynn - Lynn Woods,1630075,0,28,26,28,23,37,35,0,0,0,0,0,0,0,0,177 +NA,NA,,2018-19,Lynn - Pickering Middle,1630420,0,0,0,0,0,0,0,248,218,205,0,0,0,0,0,671 +NA,NA,,2018-19,Lynn - Robert L Ford,1630050,0,0,101,96,116,89,84,0,0,0,0,0,0,0,0,486 +NA,NA,,2018-19,Lynn - Sewell-Anderson,1630085,0,25,52,53,48,58,45,0,0,0,0,0,0,0,0,281 +NA,NA,,2018-19,Lynn - Thurgood Marshall Mid,1630305,0,0,0,0,0,0,0,449,465,402,0,0,0,0,0,1316 +NA,NA,,2018-19,Lynn - Tracy,1630100,0,0,93,94,79,85,76,0,0,0,0,0,0,0,0,427 +NA,NA,,2018-19,Lynn - Washington Elementary School,1630005,0,77,77,80,77,66,73,0,0,0,0,0,0,0,0,450 +NA,NA,,2018-19,Lynn - William R Fallon,1630080,0,1,5,6,12,10,13,0,0,0,0,0,0,0,0,47 +NA,NA,,2018-19,Lynn - Wm P Connery,1630040,19,87,107,93,101,99,108,0,0,0,0,0,0,0,0,614 +NA,NA,,2018-19,Lynnfield - Huckleberry Hill,1640010,0,79,84,86,101,84,0,0,0,0,0,0,0,0,0,434 +NA,NA,,2018-19,Lynnfield - Lynnfield High,1640505,0,0,0,0,0,0,0,0,0,0,142,167,153,167,0,629 +NA,NA,,2018-19,Lynnfield - Lynnfield Middle School,1640405,0,0,0,0,0,0,165,167,177,155,0,0,0,0,0,664 +NA,NA,,2018-19,Lynnfield - Lynnfield Preschool,1640005,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42 +NA,NA,,2018-19,Lynnfield - Summer Street,1640020,0,85,93,68,87,99,0,0,0,0,0,0,0,0,0,432 +NA,NA,,2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,0,0,0,0,0,0,0,0,0,49,49,0,98 +NA,NA,,2018-19,Malden - Beebe,1650003,0,116,101,96,103,102,91,103,101,90,0,0,0,0,0,903 +NA,NA,,2018-19,Malden - Ferryway,1650013,0,104,101,96,101,101,96,126,97,94,0,0,0,0,0,916 +NA,NA,,2018-19,Malden - Forestdale,1650027,0,59,46,59,60,76,72,70,60,57,0,0,0,0,0,559 +NA,NA,,2018-19,Malden - Linden,1650047,0,81,90,101,89,107,90,106,96,93,0,0,0,0,0,853 +NA,NA,,2018-19,Malden - Malden Early Learning Center,1650049,319,0,0,0,0,0,0,0,0,0,0,0,0,0,0,319 +NA,NA,,2018-19,Malden - Malden High,1650505,0,0,0,0,0,0,0,0,0,0,502,440,465,425,13,1845 +NA,NA,,2018-19,Malden - Salemwood,1650057,0,100,126,142,139,144,129,129,131,129,0,0,0,0,0,1169 +NA,NA,,2018-19,Manchester Essex Regional - Essex Elementary,6980020,0,31,38,29,37,39,48,0,0,0,0,0,0,0,0,222 +NA,NA,,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,0,0,0,0,0,0,0,0,129,122,113,107,0,471 +NA,NA,,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,0,0,0,0,0,0,127,113,128,0,0,0,0,0,368 +NA,NA,,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,6980010,10,43,44,56,44,59,70,0,0,0,0,0,0,0,0,326 +NA,NA,,2018-19,Mansfield - Everett W Robinson,1670007,0,222,234,249,0,0,0,0,0,0,0,0,0,0,0,705 +NA,NA,,2018-19,Mansfield - Harold L Qualters Middle,1670035,0,0,0,0,0,0,0,269,299,334,0,0,0,0,0,902 +NA,NA,,2018-19,Mansfield - Jordan/Jackson Elementary,1670014,0,0,0,0,260,256,280,0,0,0,0,0,0,0,0,796 +NA,NA,,2018-19,Mansfield - Mansfield High,1670505,0,0,0,0,0,0,0,0,0,0,274,341,311,327,14,1267 +NA,NA,,2018-19,Mansfield - Roland Green School,1670003,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114 +NA,NA,,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505,0,0,0,0,0,0,0,0,0,0,29,45,42,14,0,130 +NA,NA,,2018-19,Marblehead - Glover,1680020,45,69,87,94,75,0,0,0,0,0,0,0,0,0,0,370 +NA,NA,,2018-19,Marblehead - L H Coffin,1680010,0,0,61,83,72,0,0,0,0,0,0,0,0,0,0,216 +NA,NA,,2018-19,Marblehead - Malcolm L Bell,1680005,0,107,55,83,58,0,0,0,0,0,0,0,0,0,0,303 +NA,NA,,2018-19,Marblehead - Marblehead High,1680505,0,0,0,0,0,0,0,0,0,0,258,267,261,263,5,1054 +NA,NA,,2018-19,Marblehead - Marblehead Veterans Middle School,1680300,0,0,0,0,0,0,0,0,230,236,0,0,0,0,0,466 +NA,NA,,2018-19,Marblehead - Village School,1680016,0,0,0,0,0,221,197,224,0,0,0,0,0,0,0,642 +NA,NA,,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,0,0,45,51,52,37,41,0,0,0,0,0,226 +NA,NA,,2018-19,Marion - Sippican,1690005,22,55,58,59,61,55,61,76,0,0,0,0,0,0,0,447 +NA,NA,,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,0,0,0,0,0,402,381,299,320,0,0,0,0,0,1402 +NA,NA,,2018-19,Marlborough - Charles Jaworek School,1700030,0,164,145,162,158,148,0,0,0,0,0,0,0,0,0,777 +NA,NA,,2018-19,Marlborough - Early Childhood Center,1700006,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175 +NA,NA,,2018-19,Marlborough - Francis J Kane,1700008,0,107,114,117,113,141,0,0,0,0,0,0,0,0,0,592 +NA,NA,,2018-19,Marlborough - Marlborough High,1700505,0,0,0,0,0,0,0,0,0,0,254,257,257,299,8,1075 +NA,NA,,2018-19,Marlborough - Richer,1700025,0,137,130,117,142,110,0,0,0,0,0,0,0,0,0,636 +NA,NA,,2018-19,Marshfield - Daniel Webster,1710015,71,44,51,51,58,47,43,0,0,0,0,0,0,0,0,365 +NA,NA,,2018-19,Marshfield - Eames Way School,1710005,0,35,44,40,41,41,41,0,0,0,0,0,0,0,0,242 +NA,NA,,2018-19,Marshfield - Furnace Brook Middle,1710310,0,0,0,0,0,0,0,340,280,340,0,0,0,0,0,960 +NA,NA,,2018-19,Marshfield - Gov Edward Winslow,1710020,26,56,58,72,77,56,70,0,0,0,0,0,0,0,0,415 +NA,NA,,2018-19,Marshfield - Marshfield High,1710505,0,0,0,0,0,0,0,0,0,0,339,317,340,335,0,1331 +NA,NA,,2018-19,Marshfield - Martinson Elementary,1710025,29,66,62,74,48,74,70,0,0,0,0,0,0,0,0,423 +NA,NA,,2018-19,Marshfield - South River,1710010,0,32,48,65,49,67,63,0,0,0,0,0,0,0,0,324 +NA,NA,,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,7000505,0,0,0,0,0,0,0,0,0,0,153,171,166,152,0,642 +NA,NA,,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,0,15,14,12,19,14,17,21,20,19,10,6,5,10,0,182 +NA,NA,,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,0,64,62,64,61,61,60,0,0,0,0,0,0,0,0,372 +NA,NA,,2018-19,Masconomet - Masconomet Regional High School,7050505,0,0,0,0,0,0,0,0,0,0,296,292,283,269,0,1140 +NA,NA,,2018-19,Masconomet - Masconomet Regional Middle School,7050405,0,0,0,0,0,0,0,0,309,336,0,0,0,0,0,645 +NA,NA,,2018-19,Mashpee - Kenneth Coombs School,1720005,94,97,114,103,0,0,0,0,0,0,0,0,0,0,0,408 +NA,NA,,2018-19,Mashpee - Mashpee High,1720505,0,0,0,0,0,0,0,0,0,0,115,120,108,111,0,454 +NA,NA,,2018-19,Mashpee - Mashpee Middle School,1720020,0,0,0,0,0,0,0,0,111,140,0,0,0,0,0,251 +NA,NA,,2018-19,Mashpee - Quashnet School,1720035,0,0,0,0,119,116,128,140,0,0,0,0,0,0,0,503 +NA,NA,,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,52,90,97,94,95,97,94,96,92,95,95,79,73,69,0,1218 +NA,NA,,2018-19,Mattapoisett - Center,1730005,26,51,60,52,60,0,0,0,0,0,0,0,0,0,0,249 +NA,NA,,2018-19,Mattapoisett - Old Hammondtown,1730010,0,0,0,0,0,55,67,70,0,0,0,0,0,0,0,192 +NA,NA,,2018-19,Maynard - Fowler School,1740305,0,0,0,0,0,92,115,100,86,91,0,0,0,0,0,484 +NA,NA,,2018-19,Maynard - Green Meadow,1740010,54,110,115,107,105,0,0,0,0,0,0,0,0,0,0,491 +NA,NA,,2018-19,Maynard - Maynard High,1740505,0,0,0,0,0,0,0,0,0,0,94,86,93,102,0,375 +NA,NA,,2018-19,Medfield - Dale Street,1750005,0,0,0,0,0,189,188,0,0,0,0,0,0,0,0,377 +NA,NA,,2018-19,Medfield - Medfield Senior High,1750505,0,0,0,0,0,0,0,0,0,0,205,198,206,190,0,799 +NA,NA,,2018-19,Medfield - Memorial School,1750003,52,184,187,0,0,0,0,0,0,0,0,0,0,0,0,423 +NA,NA,,2018-19,Medfield - Ralph Wheelock School,1750007,0,0,0,202,201,0,0,0,0,0,0,0,0,0,0,403 +NA,NA,,2018-19,Medfield - Thomas Blake Middle,1750305,0,0,0,0,0,0,0,186,195,217,0,0,0,0,0,598 +NA,NA,,2018-19,Medford - Brooks School,1760130,29,77,93,83,85,74,76,0,0,0,0,0,0,0,0,517 +NA,NA,,2018-19,Medford - Christopher Columbus,1760140,12,74,57,80,52,61,69,0,0,0,0,0,0,0,0,405 +NA,NA,,2018-19,Medford - Curtis-Tufts,1760510,0,0,0,0,0,0,0,0,0,0,2,2,2,8,0,14 +NA,NA,,2018-19,Medford - John J McGlynn Elementary School,1760068,18,67,76,65,75,87,85,0,0,0,0,0,0,0,0,473 +NA,NA,,2018-19,Medford - John J. McGlynn Middle School,1760320,0,0,0,0,0,0,0,145,140,163,0,0,0,0,0,448 +NA,NA,,2018-19,Medford - Madeleine Dugger Andrews,1760315,0,0,0,0,0,0,0,142,166,164,0,0,0,0,0,472 +NA,NA,,2018-19,Medford - Medford High,1760505,59,0,0,0,0,0,0,0,0,0,314,308,313,343,3,1340 +NA,NA,,2018-19,Medford - Milton Fuller Roberts,1760150,14,87,81,75,86,112,108,0,0,0,0,0,0,0,0,563 +NA,NA,,2018-19,Medway - Burke/Memorial Elementary School,1770015,0,0,0,158,170,166,0,0,0,0,0,0,0,0,0,494 +NA,NA,,2018-19,Medway - John D Mc Govern Elementary,1770013,33,145,150,0,0,0,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2018-19,Medway - Medway High,1770505,0,0,0,0,0,0,0,0,0,0,180,158,193,177,0,708 +NA,NA,,2018-19,Medway - Medway Middle,1770305,0,0,0,0,0,0,183,168,166,175,0,0,0,0,0,692 +NA,NA,,2018-19,Melrose - Early Childhood Center,1780003,290,29,0,0,0,0,0,0,0,0,0,0,0,0,0,319 +NA,NA,,2018-19,Melrose - Herbert Clark Hoover,1780017,0,59,60,46,42,44,39,0,0,0,0,0,0,0,0,290 +NA,NA,,2018-19,Melrose - Horace Mann,1780025,0,46,48,49,44,47,43,0,0,0,0,0,0,0,0,277 +NA,NA,,2018-19,Melrose - Lincoln,1780020,0,64,69,80,82,66,68,0,0,0,0,0,0,0,0,429 +NA,NA,,2018-19,Melrose - Melrose High,1780505,0,0,0,0,0,0,0,0,0,0,240,238,274,256,6,1014 +NA,NA,,2018-19,Melrose - Melrose Middle,1780305,0,0,0,0,0,0,0,273,260,253,0,0,0,0,0,786 +NA,NA,,2018-19,Melrose - Roosevelt,1780035,0,61,63,90,82,62,61,0,0,0,0,0,0,0,0,419 +NA,NA,,2018-19,Melrose - Winthrop,1780050,0,62,84,68,68,61,68,0,0,0,0,0,0,0,0,411 +NA,NA,,2018-19,Mendon-Upton - Henry P Clough,7100179,25,57,75,69,76,66,0,0,0,0,0,0,0,0,0,368 +NA,NA,,2018-19,Mendon-Upton - Memorial School,7100001,27,97,99,77,89,95,0,0,0,0,0,0,0,0,0,484 +NA,NA,,2018-19,Mendon-Upton - Miscoe Hill School,7100015,0,0,0,0,0,0,194,201,198,200,0,0,0,0,0,793 +NA,NA,,2018-19,Mendon-Upton - Nipmuc Regional High,7100510,0,0,0,0,0,0,0,0,0,0,171,164,158,160,4,657 +NA,NA,,2018-19,Methuen - Comprehensive Grammar School,1810050,28,99,100,114,116,104,132,127,103,132,0,0,0,0,0,1055 +NA,NA,,2018-19,Methuen - Donald P Timony Grammar,1810060,42,133,151,109,131,149,157,147,152,146,0,0,0,0,0,1317 +NA,NA,,2018-19,Methuen - Marsh Grammar School,1810030,26,104,118,152,121,127,128,136,141,139,0,0,0,0,0,1192 +NA,NA,,2018-19,Methuen - Methuen High,1810505,0,0,0,0,0,0,0,0,0,0,506,518,463,492,3,1982 +NA,NA,,2018-19,Methuen - Tenney Grammar School,1810055,39,128,142,135,154,143,143,180,161,156,0,0,0,0,0,1381 +NA,NA,,2018-19,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,104,103,102,113,126,0,0,0,0,0,0,0,0,548 +NA,NA,,2018-19,Middleborough - John T. Nichols Middle,1820305,0,0,0,0,0,0,0,265,263,257,0,0,0,0,0,785 +NA,NA,,2018-19,Middleborough - Mary K. Goode Elementary School,1820010,0,0,134,119,115,111,136,0,0,0,0,0,0,0,0,615 +NA,NA,,2018-19,Middleborough - Memorial Early Childhood Center,1820011,54,205,0,0,0,0,0,0,0,0,0,0,0,0,0,259 +NA,NA,,2018-19,Middleborough - Middleborough High,1820505,0,0,0,0,0,0,0,0,0,0,227,190,170,179,3,769 +NA,NA,,2018-19,Middleton - Fuller Meadow,1840003,0,106,78,84,0,0,0,0,0,0,0,0,0,0,0,268 +NA,NA,,2018-19,Middleton - Howe-Manning,1840005,79,0,0,0,78,89,102,84,0,0,0,0,0,0,0,432 +NA,NA,,2018-19,Milford - Brookside,1850065,0,156,156,158,0,0,0,0,0,0,0,0,0,0,0,470 +NA,NA,,2018-19,Milford - Memorial,1850010,0,137,153,160,0,0,0,0,0,0,0,0,0,0,0,450 +NA,NA,,2018-19,Milford - Milford High,1850505,0,0,0,0,0,0,0,0,0,0,287,314,296,262,11,1170 +NA,NA,,2018-19,Milford - Shining Star Early Childhood Center,1850075,161,0,0,0,0,0,0,0,0,0,0,0,0,0,0,161 +NA,NA,,2018-19,Milford - Stacy Middle,1850305,0,0,0,0,0,0,0,341,333,361,0,0,0,0,0,1035 +NA,NA,,2018-19,Milford - Woodland,1850090,0,0,0,0,326,336,329,0,0,0,0,0,0,0,0,991 +NA,NA,,2018-19,Millbury - Elmwood Street,1860017,72,109,130,103,132,0,0,0,0,0,0,0,0,0,0,546 +NA,NA,,2018-19,Millbury - Millbury Junior/Senior High,1860505,0,0,0,0,0,0,0,0,136,142,96,116,115,96,2,703 +NA,NA,,2018-19,Millbury - Raymond E. Shaw Elementary,1860025,0,0,0,0,0,146,139,158,0,0,0,0,0,0,0,443 +NA,NA,,2018-19,Millis - Clyde F Brown,1870005,49,81,96,83,79,103,0,0,0,0,0,0,0,0,0,491 +NA,NA,,2018-19,Millis - Millis High School,1870505,0,0,0,0,0,0,0,0,0,0,73,92,94,97,0,356 +NA,NA,,2018-19,Millis - Millis Middle,1870020,0,0,0,0,0,0,77,93,100,106,0,0,0,0,0,376 +NA,NA,,2018-19,Milton - Charles S Pierce Middle,1890410,0,0,0,0,0,0,0,341,300,294,0,0,0,0,0,935 +NA,NA,,2018-19,Milton - Collicot,1890005,0,96,111,124,104,122,101,0,0,0,0,0,0,0,0,658 +NA,NA,,2018-19,Milton - Cunningham School,1890007,78,94,87,93,95,83,70,0,0,0,0,0,0,0,0,600 +NA,NA,,2018-19,Milton - Glover,1890010,0,101,107,93,96,89,112,0,0,0,0,0,0,0,0,598 +NA,NA,,2018-19,Milton - Milton High,1890505,14,0,0,0,0,0,0,0,0,0,271,272,234,245,0,1036 +NA,NA,,2018-19,Milton - Tucker,1890020,42,64,67,71,60,67,67,0,0,0,0,0,0,0,0,438 +NA,NA,,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0,0,0,0,0,0,0,0,0,121,147,129,118,0,515 +NA,NA,,2018-19,Mohawk Trail - Buckland-Shelburne Regional,7170005,46,30,40,33,37,35,33,33,0,0,0,0,0,0,0,287 +NA,NA,,2018-19,Mohawk Trail - Colrain Central,7170010,14,12,6,13,18,18,10,15,0,0,0,0,0,0,0,106 +NA,NA,,2018-19,Mohawk Trail - Mohawk Trail Regional High,7170505,0,0,0,0,0,0,0,0,68,54,62,51,47,65,5,352 +NA,NA,,2018-19,Mohawk Trail - Sanderson Academy,7170020,29,22,28,20,12,18,13,17,0,0,0,0,0,0,0,159 +NA,NA,,2018-19,Monomoy Regional School District - Chatham Elementary School,7120001,21,34,32,45,42,55,0,0,0,0,0,0,0,0,0,229 +NA,NA,,2018-19,Monomoy Regional School District - Harwich Elementary School,7120002,53,90,109,96,100,108,0,0,0,0,0,0,0,0,0,556 +NA,NA,,2018-19,Monomoy Regional School District - Monomoy Regional High School,7120515,0,0,0,0,0,0,0,0,0,143,135,114,132,114,4,642 +NA,NA,,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,0,0,0,149,181,134,0,0,0,0,0,0,464 +NA,NA,,2018-19,Monson - Granite Valley Middle,1910310,0,0,0,0,0,0,72,61,68,50,0,0,0,0,0,251 +NA,NA,,2018-19,Monson - Monson High School,1910505,0,0,0,0,0,0,0,0,0,0,73,64,57,67,3,264 +NA,NA,,2018-19,Monson - Quarry Hill Community School,1910025,57,71,61,69,73,71,0,0,0,0,0,0,0,0,0,402 +NA,NA,,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0,0,0,0,0,0,0,0,0,0,375,367,361,319,0,1422 +NA,NA,,2018-19,Mount Greylock - Lanesborough Elementary,7150005,15,29,24,34,20,25,31,30,0,0,0,0,0,0,0,208 +NA,NA,,2018-19,Mount Greylock - Mt Greylock Regional High,7150505,0,0,0,0,0,0,0,0,122,90,79,88,84,86,3,552 +NA,NA,,2018-19,Mount Greylock - Williamstown Elementary,7150010,12,59,62,57,72,62,55,57,0,0,0,0,0,0,0,436 +NA,NA,,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0,152,155,128,126,128,147,147,132,114,79,88,90,89,0,1575 +NA,NA,,2018-19,Nahant - Johnson,1960010,33,12,14,18,21,17,13,23,0,0,0,0,0,0,0,151 +NA,NA,,2018-19,Nantucket - Cyrus Peirce,1970010,0,0,0,0,0,0,0,123,122,136,0,0,0,0,0,381 +NA,NA,,2018-19,Nantucket - Nantucket Elementary,1970005,51,111,123,93,0,0,0,0,0,0,0,0,0,0,0,378 +NA,NA,,2018-19,Nantucket - Nantucket High,1970505,0,0,0,0,0,0,0,0,0,0,135,119,149,129,0,532 +NA,NA,,2018-19,Nantucket - Nantucket Intermediate School,1970020,0,0,0,0,114,125,140,0,0,0,0,0,0,0,0,379 +NA,NA,,2018-19,Narragansett - Baldwinville Elementary,7200005,0,0,0,91,89,100,0,0,0,0,0,0,0,0,0,280 +NA,NA,,2018-19,Narragansett - Narragansett Middle,7200305,0,0,0,0,0,0,127,122,115,114,0,0,0,0,0,478 +NA,NA,,2018-19,Narragansett - Narragansett Regional High,7200505,0,0,0,0,0,0,0,0,0,0,94,66,81,79,4,324 +NA,NA,,2018-19,Narragansett - Phillipston Memorial,7200003,71,20,18,18,20,15,0,0,0,0,0,0,0,0,0,162 +NA,NA,,2018-19,Narragansett - Templeton Center,7200020,0,94,88,0,0,0,0,0,0,0,0,0,0,0,0,182 +NA,NA,,2018-19,Nashoba - Center School,7250020,29,86,69,84,79,104,97,0,0,0,0,0,0,0,0,548 +NA,NA,,2018-19,Nashoba - Florence Sawyer School,7250025,23,70,65,76,91,67,78,92,68,87,0,0,0,0,0,717 +NA,NA,,2018-19,Nashoba - Hale,7250310,0,0,0,0,0,0,0,95,105,79,0,0,0,0,0,279 +NA,NA,,2018-19,Nashoba - Luther Burbank Middle School,7250305,0,0,0,0,0,0,0,80,93,70,0,0,0,0,0,243 +NA,NA,,2018-19,Nashoba - Mary Rowlandson Elementary,7250010,31,53,77,72,63,94,73,0,0,0,0,0,0,0,0,463 +NA,NA,,2018-19,Nashoba - Nashoba Regional,7250505,0,0,0,0,0,0,0,0,0,0,266,243,216,246,7,978 +NA,NA,,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,0,0,0,0,0,0,0,0,0,0,170,180,167,167,0,684 +NA,NA,,2018-19,Natick - Bennett-Hemenway,1980005,0,100,110,117,120,119,0,0,0,0,0,0,0,0,0,566 +NA,NA,,2018-19,Natick - Brown,1980010,0,107,88,111,102,97,0,0,0,0,0,0,0,0,0,505 +NA,NA,,2018-19,Natick - J F Kennedy Middle School,1980305,0,0,0,0,0,0,215,162,162,162,0,0,0,0,0,701 +NA,NA,,2018-19,Natick - Johnson,1980031,0,46,57,48,46,39,0,0,0,0,0,0,0,0,0,236 +NA,NA,,2018-19,Natick - Lilja Elementary,1980035,0,87,102,69,88,90,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2018-19,Natick - Memorial,1980043,0,84,79,89,72,100,0,0,0,0,0,0,0,0,0,424 +NA,NA,,2018-19,Natick - Natick High,1980505,132,0,0,0,0,0,0,0,0,0,384,408,430,378,0,1732 +NA,NA,,2018-19,Natick - Wilson Middle,1980310,0,0,0,0,0,0,235,244,240,221,0,0,0,0,0,940 +NA,NA,,2018-19,Nauset - Nauset Regional High,6600505,0,0,0,0,0,0,0,0,0,0,213,249,231,240,4,937 +NA,NA,,2018-19,Nauset - Nauset Regional Middle,6600305,0,0,0,0,0,0,0,192,196,183,0,0,0,0,0,571 +NA,NA,,2018-19,Needham - Broadmeadow,1990005,0,97,83,95,96,88,107,0,0,0,0,0,0,0,0,566 +NA,NA,,2018-19,Needham - High Rock School,1990410,0,0,0,0,0,0,0,450,0,0,0,0,0,0,0,450 +NA,NA,,2018-19,Needham - Hillside Elementary,1990035,0,75,86,90,88,76,87,0,0,0,0,0,0,0,0,502 +NA,NA,,2018-19,Needham - John Eliot,1990020,0,60,70,59,68,69,76,0,0,0,0,0,0,0,0,402 +NA,NA,,2018-19,Needham - Needham High,1990505,0,0,0,0,0,0,0,0,0,0,450,428,402,436,2,1718 +NA,NA,,2018-19,Needham - Newman Elementary,1990050,82,101,122,102,114,96,139,0,0,0,0,0,0,0,0,756 +NA,NA,,2018-19,Needham - Pollard Middle,1990405,0,0,0,0,0,0,0,0,439,392,0,0,0,0,0,831 +NA,NA,,2018-19,Needham - William Mitchell,1990040,0,78,69,88,94,86,81,0,0,0,0,0,0,0,0,496 +NA,NA,,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,40,40,40,40,44,43,68,66,72,66,65,62,0,0,0,646 +NA,NA,,2018-19,New Bedford - Abraham Lincoln,2010095,0,105,129,117,114,108,115,0,0,0,0,0,0,0,0,688 +NA,NA,,2018-19,New Bedford - Alfred J Gomes,2010063,0,96,91,101,89,94,78,0,0,0,0,0,0,0,0,549 +NA,NA,,2018-19,New Bedford - Betsey B Winslow,2010140,0,46,44,49,44,61,38,0,0,0,0,0,0,0,0,282 +NA,NA,,2018-19,New Bedford - Carlos Pacheco,2010105,0,51,57,57,54,64,50,0,0,0,0,0,0,0,0,333 +NA,NA,,2018-19,New Bedford - Casimir Pulaski,2010123,105,100,98,106,99,106,88,0,0,0,0,0,0,0,0,702 +NA,NA,,2018-19,New Bedford - Charles S Ashley,2010010,0,46,41,40,54,53,55,0,0,0,0,0,0,0,0,289 +NA,NA,,2018-19,New Bedford - Elizabeth Carter Brooks,2010015,31,56,44,52,36,41,33,0,0,0,0,0,0,0,0,293 +NA,NA,,2018-19,New Bedford - Ellen R Hathaway,2010075,50,41,42,38,51,50,43,0,0,0,0,0,0,0,0,315 +NA,NA,,2018-19,New Bedford - Elwyn G Campbell,2010020,69,32,35,39,28,37,30,0,0,0,0,0,0,0,0,270 +NA,NA,,2018-19,New Bedford - Hayden/McFadden,2010078,79,111,109,113,107,89,93,0,0,0,0,0,0,0,0,701 +NA,NA,,2018-19,New Bedford - Irwin M. Jacobs Elementary School,2010070,43,62,66,56,63,63,60,0,0,0,0,0,0,0,0,413 +NA,NA,,2018-19,New Bedford - James B Congdon,2010040,0,54,55,47,54,60,53,0,0,0,0,0,0,0,0,323 +NA,NA,,2018-19,New Bedford - Jireh Swift,2010130,0,24,22,32,34,46,39,0,0,0,0,0,0,0,0,197 +NA,NA,,2018-19,New Bedford - John Avery Parker,2010115,28,44,33,35,39,34,35,0,0,0,0,0,0,0,0,248 +NA,NA,,2018-19,New Bedford - John B Devalles,2010050,0,50,71,59,53,65,57,0,0,0,0,0,0,0,0,355 +NA,NA,,2018-19,New Bedford - Keith Middle School,2010405,0,0,0,0,0,0,0,364,312,274,0,0,0,0,0,950 +NA,NA,,2018-19,New Bedford - New Bedford High,2010505,0,0,0,0,0,0,0,0,0,0,639,537,542,453,0,2171 +NA,NA,,2018-19,New Bedford - Normandin Middle School,2010410,0,0,0,0,0,0,0,402,425,405,0,0,0,0,0,1232 +NA,NA,,2018-19,New Bedford - Renaissance Community Innovation School,2010124,26,22,23,30,35,37,23,0,0,0,0,0,0,0,0,196 +NA,NA,,2018-19,New Bedford - Roosevelt Middle School,2010415,0,0,0,0,0,0,0,322,273,266,0,0,0,0,0,861 +NA,NA,,2018-19,New Bedford - Sgt Wm H Carney Academy,2010045,71,105,106,118,127,127,137,0,0,0,0,0,0,0,0,791 +NA,NA,,2018-19,New Bedford - Thomas R Rodman,2010125,0,39,37,43,26,36,19,0,0,0,0,0,0,0,0,200 +NA,NA,,2018-19,New Bedford - Trinity Day Academy,2010510,0,0,0,0,0,2,6,8,6,20,17,14,11,11,0,95 +NA,NA,,2018-19,New Bedford - Whaling City Junior/Senior High School,2010515,0,0,0,0,0,0,0,2,9,16,14,27,29,17,0,114 +NA,NA,,2018-19,New Bedford - William H Taylor,2010135,49,46,35,43,41,36,27,0,0,0,0,0,0,0,0,277 +NA,NA,,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,0,0,0,0,0,0,109,114,108,109,92,0,0,0,532 +NA,NA,,2018-19,New Salem-Wendell - Swift River,7280015,19,21,16,18,18,15,20,22,0,0,0,0,0,0,0,149 +NA,NA,,2018-19,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,0,0,136,174,0,0,0,0,0,0,0,0,310 +NA,NA,,2018-19,Newburyport - Francis T Bresnahan Elementary,2040005,74,134,126,136,146,0,0,0,0,0,0,0,0,0,0,616 +NA,NA,,2018-19,Newburyport - Newburyport High,2040505,0,0,0,0,0,0,0,0,0,0,178,210,182,184,5,759 +NA,NA,,2018-19,Newburyport - Rupert A Nock Middle,2040305,0,0,0,0,0,0,0,158,200,189,0,0,0,0,0,547 +NA,NA,,2018-19,Newton - A E Angier,2070005,0,84,73,97,86,89,74,0,0,0,0,0,0,0,0,503 +NA,NA,,2018-19,Newton - Bigelow Middle,2070305,0,0,0,0,0,0,0,170,157,174,0,0,0,0,0,501 +NA,NA,,2018-19,Newton - Bowen,2070015,0,54,67,60,66,55,95,0,0,0,0,0,0,0,0,397 +NA,NA,,2018-19,Newton - C C Burr,2070020,0,55,69,51,62,72,75,0,0,0,0,0,0,0,0,384 +NA,NA,,2018-19,Newton - Cabot,2070025,0,60,59,61,67,70,69,0,0,0,0,0,0,0,0,386 +NA,NA,,2018-19,Newton - Charles E Brown Middle,2070310,0,0,0,0,0,0,0,274,231,239,0,0,0,0,0,744 +NA,NA,,2018-19,Newton - Countryside,2070040,0,59,64,66,67,81,76,0,0,0,0,0,0,0,0,413 +NA,NA,,2018-19,Newton - F A Day Middle,2070315,0,0,0,0,0,0,0,323,350,301,0,0,0,0,0,974 +NA,NA,,2018-19,Newton - Franklin,2070055,0,59,64,85,61,86,72,0,0,0,0,0,0,0,0,427 +NA,NA,,2018-19,Newton - Horace Mann,2070075,0,61,61,70,73,62,72,0,0,0,0,0,0,0,0,399 +NA,NA,,2018-19,Newton - John Ward,2070120,0,41,39,47,51,58,60,0,0,0,0,0,0,0,0,296 +NA,NA,,2018-19,Newton - Lincoln-Eliot,2070070,0,57,62,65,51,63,67,0,0,0,0,0,0,0,0,365 +NA,NA,,2018-19,Newton - Mason-Rice,2070080,0,56,68,77,92,98,96,0,0,0,0,0,0,0,0,487 +NA,NA,,2018-19,Newton - Memorial Spaulding,2070105,0,60,79,79,82,89,75,0,0,0,0,0,0,0,0,464 +NA,NA,,2018-19,Newton - Newton Early Childhood Center,2070108,212,0,0,0,0,0,0,0,0,0,0,0,0,0,0,212 +NA,NA,,2018-19,Newton - Newton North High,2070505,0,0,0,0,0,0,0,0,0,0,541,498,522,544,19,2124 +NA,NA,,2018-19,Newton - Newton South High,2070510,0,0,0,0,0,0,0,0,0,0,479,496,490,446,0,1911 +NA,NA,,2018-19,Newton - Oak Hill Middle,2070320,0,0,0,0,0,0,0,206,193,231,0,0,0,0,0,630 +NA,NA,,2018-19,Newton - Peirce,2070100,0,44,44,45,43,58,37,0,0,0,0,0,0,0,0,271 +NA,NA,,2018-19,Newton - Underwood,2070115,0,43,40,49,45,66,47,0,0,0,0,0,0,0,0,290 +NA,NA,,2018-19,Newton - Williams,2070125,0,47,51,42,58,37,43,0,0,0,0,0,0,0,0,278 +NA,NA,,2018-19,Newton - Zervas,2070130,0,68,67,86,66,74,66,0,0,0,0,0,0,0,0,427 +NA,NA,,2018-19,Norfolk - Freeman-Kennedy School,2080005,0,0,0,0,149,118,135,117,0,0,0,0,0,0,0,519 +NA,NA,,2018-19,Norfolk - H Olive Day,2080015,70,124,119,131,0,0,0,0,0,0,0,0,0,0,0,444 +NA,NA,,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,0,0,0,0,0,0,0,154,145,120,138,0,557 +NA,NA,,2018-19,North Adams - Brayton,2090035,20,34,34,29,26,37,35,41,0,0,0,0,0,0,0,256 +NA,NA,,2018-19,North Adams - Colegrove Park Elementary,2090008,44,39,37,49,40,35,39,46,0,0,0,0,0,0,0,329 +NA,NA,,2018-19,North Adams - Drury High,2090505,0,0,0,0,0,0,0,0,114,103,58,89,68,89,3,524 +NA,NA,,2018-19,North Adams - Greylock,2090015,42,32,29,28,33,22,36,34,0,0,0,0,0,0,0,256 +NA,NA,,2018-19,North Andover - Anne Bradstreet Early Childhood Center,2110005,128,343,0,0,0,0,0,0,0,0,0,0,0,0,0,471 +NA,NA,,2018-19,North Andover - Annie L Sargent School,2110018,0,0,96,87,94,100,94,0,0,0,0,0,0,0,0,471 +NA,NA,,2018-19,North Andover - Atkinson,2110001,0,0,67,75,66,74,77,0,0,0,0,0,0,0,0,359 +NA,NA,,2018-19,North Andover - Franklin,2110010,0,0,68,76,72,84,84,0,0,0,0,0,0,0,0,384 +NA,NA,,2018-19,North Andover - Kittredge,2110015,0,0,48,49,41,52,45,0,0,0,0,0,0,0,0,235 +NA,NA,,2018-19,North Andover - North Andover High,2110505,0,0,0,0,0,0,0,0,0,0,364,377,324,397,0,1462 +NA,NA,,2018-19,North Andover - North Andover Middle,2110305,0,0,0,0,0,0,0,363,366,370,0,0,0,0,0,1099 +NA,NA,,2018-19,North Andover - Thomson,2110020,0,0,41,59,63,51,74,0,0,0,0,0,0,0,0,288 +NA,NA,,2018-19,North Attleborough - Amvet Boulevard,2120007,0,39,69,61,66,71,72,0,0,0,0,0,0,0,0,378 +NA,NA,,2018-19,North Attleborough - Community,2120030,0,54,42,41,66,56,56,0,0,0,0,0,0,0,0,315 +NA,NA,,2018-19,North Attleborough - Falls,2120010,0,25,46,34,54,41,47,0,0,0,0,0,0,0,0,247 +NA,NA,,2018-19,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,102,89,124,95,93,111,0,0,0,0,0,0,0,0,614 +NA,NA,,2018-19,North Attleborough - North Attleboro High,2120505,0,0,0,0,0,0,0,0,0,0,270,254,294,290,0,1108 +NA,NA,,2018-19,North Attleborough - North Attleborough Early Learning Center,2120020,134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,134 +NA,NA,,2018-19,North Attleborough - North Attleborough Middle,2120305,0,0,0,0,0,0,0,391,364,346,0,0,0,0,0,1101 +NA,NA,,2018-19,North Attleborough - Roosevelt Avenue,2120015,0,49,35,42,48,34,50,0,0,0,0,0,0,0,0,258 +NA,NA,,2018-19,North Brookfield - North Brookfield Elementary,2150015,25,38,38,49,34,37,49,46,0,0,0,0,0,0,0,316 +NA,NA,,2018-19,North Brookfield - North Brookfield High,2150505,0,0,0,0,0,0,0,0,63,46,39,28,37,41,0,254 +NA,NA,,2018-19,North Middlesex - Ashby Elementary,7350010,0,28,37,34,36,38,0,0,0,0,0,0,0,0,0,173 +NA,NA,,2018-19,North Middlesex - Hawthorne Brook,7350030,0,0,0,0,0,0,131,133,124,102,0,0,0,0,0,490 +NA,NA,,2018-19,North Middlesex - Nissitissit Middle School,7350310,0,0,0,0,0,0,123,148,128,127,0,0,0,0,0,526 +NA,NA,,2018-19,North Middlesex - North Middlesex Regional,7350505,0,0,0,0,0,0,0,0,0,0,205,206,218,181,20,830 +NA,NA,,2018-19,North Middlesex - Spaulding Memorial,7350005,0,88,85,85,80,88,0,0,0,0,0,0,0,0,0,426 +NA,NA,,2018-19,North Middlesex - Squannacook Early Childhood Center,7350002,85,0,1,1,1,1,0,0,0,0,0,0,0,0,0,89 +NA,NA,,2018-19,North Middlesex - Varnum Brook,7350035,0,103,102,104,116,111,0,0,0,0,0,0,0,0,0,536 +NA,NA,,2018-19,North Reading - E Ethel Little School,2170003,56,22,52,44,54,44,51,0,0,0,0,0,0,0,0,323 +NA,NA,,2018-19,North Reading - J Turner Hood,2170010,0,62,51,53,54,66,64,0,0,0,0,0,0,0,0,350 +NA,NA,,2018-19,North Reading - L D Batchelder,2170005,0,66,71,68,77,67,84,0,0,0,0,0,0,0,0,433 +NA,NA,,2018-19,North Reading - North Reading High,2170505,0,0,0,0,0,0,0,0,0,0,171,192,201,184,4,752 +NA,NA,,2018-19,North Reading - North Reading Middle,2170305,0,0,0,0,0,0,0,183,159,198,0,0,0,0,0,540 +NA,NA,,2018-19,Northampton - Bridge Street,2100005,38,37,48,37,30,37,30,0,0,0,0,0,0,0,0,257 +NA,NA,,2018-19,Northampton - Jackson Street,2100020,0,54,51,63,56,67,61,0,0,0,0,0,0,0,0,352 +NA,NA,,2018-19,Northampton - John F Kennedy Middle School,2100410,0,0,0,0,0,0,0,203,191,220,0,0,0,0,0,614 +NA,NA,,2018-19,Northampton - Leeds,2100025,42,50,44,42,43,53,58,0,0,0,0,0,0,0,0,332 +NA,NA,,2018-19,Northampton - Northampton High,2100505,0,0,0,0,0,0,0,0,0,0,211,212,203,222,1,849 +NA,NA,,2018-19,Northampton - R. K. Finn Ryan Road,2100029,0,33,44,39,31,36,39,0,0,0,0,0,0,0,0,222 +NA,NA,,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,0,0,0,0,0,0,0,0,117,131,119,128,0,495 +NA,NA,,2018-19,Northboro-Southboro - Algonquin Regional High,7300505,0,0,0,0,0,0,0,0,0,0,334,394,344,368,10,1450 +NA,NA,,2018-19,Northborough - Fannie E Proctor,2130015,0,36,35,40,43,50,34,0,0,0,0,0,0,0,0,238 +NA,NA,,2018-19,Northborough - Lincoln Street,2130003,0,41,40,40,48,43,37,0,0,0,0,0,0,0,0,249 +NA,NA,,2018-19,Northborough - Marguerite E Peaslee,2130014,0,40,38,54,63,42,40,0,0,0,0,0,0,0,0,277 +NA,NA,,2018-19,Northborough - Marion E Zeh,2130020,0,34,40,40,43,42,45,0,0,0,0,0,0,0,0,244 +NA,NA,,2018-19,Northborough - Robert E. Melican Middle School,2130305,0,0,0,0,0,0,0,181,201,197,0,0,0,0,0,579 +NA,NA,,2018-19,Northbridge - Northbridge Elementary,2140005,77,132,153,0,0,0,0,0,0,0,0,0,0,0,0,362 +NA,NA,,2018-19,Northbridge - Northbridge High,2140505,0,0,0,0,0,0,0,0,0,0,168,122,120,132,3,545 +NA,NA,,2018-19,Northbridge - Northbridge Middle,2140305,0,0,0,0,0,0,186,158,169,184,0,0,0,0,0,697 +NA,NA,,2018-19,Northbridge - W Edward Balmer,2140001,0,0,0,149,151,173,0,0,0,0,0,0,0,0,0,473 +NA,NA,,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,0,0,0,0,0,0,0,0,0,0,330,329,301,289,0,1249 +NA,NA,,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,0,0,0,0,0,0,0,134,130,123,109,0,496 +NA,NA,,2018-19,Norton - Henri A. Yelle,2180060,0,0,0,0,0,182,200,0,0,0,0,0,0,0,0,382 +NA,NA,,2018-19,Norton - J C Solmonese,2180015,96,89,107,99,97,0,0,0,0,0,0,0,0,0,0,488 +NA,NA,,2018-19,Norton - L G Nourse Elementary,2180010,0,58,69,71,67,0,0,0,0,0,0,0,0,0,0,265 +NA,NA,,2018-19,Norton - Norton High,2180505,0,0,0,0,0,0,0,0,0,0,165,180,180,185,6,716 +NA,NA,,2018-19,Norton - Norton Middle,2180305,0,0,0,0,0,0,0,203,190,194,0,0,0,0,0,587 +NA,NA,,2018-19,Norwell - Grace Farrar Cole,2190005,19,79,79,73,82,70,76,0,0,0,0,0,0,0,0,478 +NA,NA,,2018-19,Norwell - Norwell High,2190505,0,0,0,0,0,0,0,0,0,0,159,162,191,172,0,684 +NA,NA,,2018-19,Norwell - Norwell Middle School,2190405,0,0,0,0,0,0,0,182,159,169,0,0,0,0,0,510 +NA,NA,,2018-19,Norwell - William G Vinal,2190020,22,73,83,79,86,89,88,0,0,0,0,0,0,0,0,520 +NA,NA,,2018-19,Norwood - Balch,2200005,0,0,69,66,53,62,54,0,0,0,0,0,0,0,0,304 +NA,NA,,2018-19,Norwood - Charles J Prescott,2200025,0,0,55,59,49,43,37,0,0,0,0,0,0,0,0,243 +NA,NA,,2018-19,Norwood - Cornelius M Callahan,2200010,0,0,48,51,37,40,30,0,0,0,0,0,0,0,0,206 +NA,NA,,2018-19,Norwood - Dr. Philip O. Coakley Middle School,2200305,0,0,0,0,0,0,0,255,237,258,0,0,0,0,0,750 +NA,NA,,2018-19,Norwood - F A Cleveland,2200015,0,0,60,64,82,70,51,0,0,0,0,0,0,0,0,327 +NA,NA,,2018-19,Norwood - George F. Willett,2200075,105,264,0,0,0,0,0,0,0,0,0,0,0,0,0,369 +NA,NA,,2018-19,Norwood - John P Oldham,2200020,0,0,52,42,45,45,54,0,0,0,0,0,0,0,0,238 +NA,NA,,2018-19,Norwood - Norwood High,2200505,0,0,0,0,0,0,0,0,0,0,255,242,245,236,7,985 +NA,NA,,2018-19,Oak Bluffs - Oak Bluffs Elementary,2210005,12,49,30,40,55,47,52,54,47,49,0,0,0,0,0,435 +NA,NA,,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,0,0,0,0,0,0,0,0,0,144,137,140,129,0,550 +NA,NA,,2018-19,Old Rochester - Old Rochester Regional High,7400505,0,0,0,0,0,0,0,0,0,0,206,196,178,189,6,775 +NA,NA,,2018-19,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,0,0,0,0,0,212,225,0,0,0,0,0,437 +NA,NA,,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,40,40,40,40,40,0,0,0,0,0,0,0,0,0,200 +NA,NA,,2018-19,Orange - Dexter Park,2230010,0,0,0,0,78,64,97,87,0,0,0,0,0,0,0,326 +NA,NA,,2018-19,Orange - Fisher Hill,2230015,55,69,68,70,0,0,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2018-19,Orleans - Orleans Elementary,2240005,0,32,37,36,38,30,45,0,0,0,0,0,0,0,0,218 +NA,NA,,2018-19,Oxford - Alfred M Chaffee,2260010,39,117,100,0,0,0,0,0,0,0,0,0,0,0,0,256 +NA,NA,,2018-19,Oxford - Clara Barton,2260005,0,0,0,139,133,132,0,0,0,0,0,0,0,0,0,404 +NA,NA,,2018-19,Oxford - Oxford High,2260505,0,0,0,0,0,0,0,0,0,139,99,98,97,91,8,532 +NA,NA,,2018-19,Oxford - Oxford Middle,2260405,0,0,0,0,0,0,125,155,148,0,0,0,0,0,0,428 +NA,NA,,2018-19,Oxford - Project C.O.F.F.E.E.,2260305,0,0,0,0,0,0,0,0,0,0,2,4,5,8,0,19 +NA,NA,,2018-19,Palmer - Old Mill Pond,2270008,36,102,101,117,90,96,114,0,0,0,0,0,0,0,0,656 +NA,NA,,2018-19,Palmer - Palmer High,2270505,0,0,0,0,0,0,0,121,105,120,69,76,79,105,4,679 +NA,NA,,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,0,0,0,0,0,0,0,180,170,165,133,0,648 +NA,NA,,2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,0,0,0,0,0,0,0,0,0,0,79,73,60,63,0,275 +NA,NA,,2018-19,Peabody - Captain Samuel Brown,2290005,0,51,65,59,56,55,72,0,0,0,0,0,0,0,0,358 +NA,NA,,2018-19,Peabody - Center,2290015,0,68,67,62,54,67,66,0,0,0,0,0,0,0,0,384 +NA,NA,,2018-19,Peabody - J Henry Higgins Middle,2290305,0,0,0,0,0,0,0,477,471,491,0,0,0,0,0,1439 +NA,NA,,2018-19,Peabody - John E Burke,2290007,0,39,31,32,48,52,62,0,0,0,0,0,0,0,0,264 +NA,NA,,2018-19,Peabody - John E. McCarthy,2290016,119,45,41,37,35,44,41,0,0,0,0,0,0,0,0,362 +NA,NA,,2018-19,Peabody - Peabody Veterans Memorial High,2290510,0,0,0,0,0,0,0,0,0,0,358,352,349,366,11,1436 +NA,NA,,2018-19,Peabody - South Memorial,2290035,77,63,49,76,57,75,74,0,0,0,0,0,0,0,0,471 +NA,NA,,2018-19,Peabody - Thomas Carroll,2290010,0,108,112,107,96,99,94,0,0,0,0,0,0,0,0,616 +NA,NA,,2018-19,Peabody - West Memorial,2290045,37,42,32,40,39,32,39,0,0,0,0,0,0,0,0,261 +NA,NA,,2018-19,Peabody - William A Welch Sr,2290027,29,61,65,50,51,58,68,0,0,0,0,0,0,0,0,382 +NA,NA,,2018-19,Pelham - Pelham Elementary,2300005,0,19,13,22,18,18,24,21,0,0,0,0,0,0,0,135 +NA,NA,,2018-19,Pembroke - Bryantville Elementary,2310003,0,66,73,60,75,78,68,80,0,0,0,0,0,0,0,500 +NA,NA,,2018-19,Pembroke - Hobomock Elementary,2310010,0,54,57,55,72,51,53,83,0,0,0,0,0,0,0,425 +NA,NA,,2018-19,Pembroke - North Pembroke Elementary,2310015,68,77,59,60,72,82,75,68,0,0,0,0,0,0,0,561 +NA,NA,,2018-19,Pembroke - Pembroke Community Middle School,2310305,0,0,0,0,0,0,0,0,219,243,0,0,0,0,0,462 +NA,NA,,2018-19,Pembroke - Pembroke High School,2310505,0,0,0,0,0,0,0,0,0,0,208,208,191,232,10,849 +NA,NA,,2018-19,Pentucket - Dr Frederick N Sweetsir,7450020,39,68,59,64,0,0,0,0,0,0,0,0,0,0,0,230 +NA,NA,,2018-19,Pentucket - Dr John C Page School,7450015,10,39,48,47,38,57,49,53,0,0,0,0,0,0,0,341 +NA,NA,,2018-19,Pentucket - Elmer S Bagnall,7450005,36,52,67,56,71,70,56,85,0,0,0,0,0,0,0,493 +NA,NA,,2018-19,Pentucket - Helen R Donaghue School,7450010,0,0,0,0,68,52,45,70,0,0,0,0,0,0,0,235 +NA,NA,,2018-19,Pentucket - Pentucket Regional Middle,7450405,0,0,0,0,0,0,0,0,191,207,0,0,0,0,0,398 +NA,NA,,2018-19,Pentucket - Pentucket Regional Sr High,7450505,0,0,0,0,0,0,0,0,0,0,193,200,192,155,0,740 +NA,NA,,2018-19,Petersham - Petersham Center,2340005,0,22,9,20,13,18,19,14,0,0,0,0,0,0,0,115 +NA,NA,,2018-19,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,0,0,0,0,0,0,0,0,0,0,73,8,22,16,0,119 +NA,NA,,2018-19,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,0,0,0,0,0,0,0,0,0,0,144,11,22,21,0,198 +NA,NA,,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,0,0,0,0,0,0,0,0,0,0,153,15,7,26,0,201 +NA,NA,,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,0,63,64,66,66,66,65,60,59,67,69,57,49,38,0,789 +NA,NA,,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,0,0,0,0,0,0,0,0,61,73,70,64,49,45,0,362 +NA,NA,,2018-19,Pioneer Valley - Bernardston Elementary,7500006,16,18,19,19,21,23,17,26,0,0,0,0,0,0,0,159 +NA,NA,,2018-19,Pioneer Valley - Northfield Elementary,7500008,17,24,23,22,27,24,21,26,0,0,0,0,0,0,0,184 +NA,NA,,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,7500007,6,5,7,5,3,6,0,0,0,0,0,0,0,0,0,32 +NA,NA,,2018-19,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,0,0,0,0,0,63,71,33,48,39,57,0,311 +NA,NA,,2018-19,Pioneer Valley - Warwick Community School,7500009,2,6,12,9,5,10,4,9,0,0,0,0,0,0,0,57 +NA,NA,,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,0,45,44,44,42,46,46,71,47,42,47,32,8,15,0,529 +NA,NA,,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,0,0,0,0,0,0,0,0,69,70,68,63,66,64,0,400 +NA,NA,,2018-19,Pittsfield - Allendale,2360010,0,54,60,47,52,56,44,0,0,0,0,0,0,0,0,313 +NA,NA,,2018-19,Pittsfield - Crosby,2360065,64,51,63,60,48,67,51,0,0,0,0,0,0,0,0,404 +NA,NA,,2018-19,Pittsfield - Egremont,2360035,0,80,72,70,64,75,71,0,0,0,0,0,0,0,0,432 +NA,NA,,2018-19,Pittsfield - John T Reid Middle,2360305,0,0,0,0,0,0,0,194,179,178,0,0,0,0,0,551 +NA,NA,,2018-19,Pittsfield - Morningside Community School,2360055,19,51,71,48,53,57,56,0,0,0,0,0,0,0,0,355 +NA,NA,,2018-19,Pittsfield - Pittsfield High,2360505,0,0,0,0,0,0,0,0,0,0,211,205,186,186,15,803 +NA,NA,,2018-19,Pittsfield - Robert T. Capeless Elementary School,2360045,21,27,37,33,25,33,35,0,0,0,0,0,0,0,0,211 +NA,NA,,2018-19,Pittsfield - Silvio O Conte Community,2360105,18,60,69,59,46,62,56,0,0,0,0,0,0,0,0,370 +NA,NA,,2018-19,Pittsfield - Stearns,2360090,0,31,53,36,38,45,30,0,0,0,0,0,0,0,0,233 +NA,NA,,2018-19,Pittsfield - Taconic High,2360510,0,0,0,0,0,0,0,0,0,0,234,226,171,184,0,815 +NA,NA,,2018-19,Pittsfield - Theodore Herberg Middle,2360310,0,0,0,0,0,0,0,227,222,196,0,0,0,0,0,645 +NA,NA,,2018-19,Pittsfield - Williams,2360100,0,41,44,52,47,59,54,0,0,0,0,0,0,0,0,297 +NA,NA,,2018-19,Plainville - Anna Ware Jackson,2380010,63,87,93,92,89,0,0,0,0,0,0,0,0,0,0,424 +NA,NA,,2018-19,Plainville - Beatrice H Wood Elementary,2380005,0,0,0,0,0,84,107,96,0,0,0,0,0,0,0,287 +NA,NA,,2018-19,Plymouth - Cold Spring,2390005,0,33,37,40,37,36,38,0,0,0,0,0,0,0,0,221 +NA,NA,,2018-19,Plymouth - Federal Furnace School,2390011,0,55,59,62,58,77,51,0,0,0,0,0,0,0,0,362 +NA,NA,,2018-19,Plymouth - Hedge,2390010,0,33,26,25,32,30,35,0,0,0,0,0,0,0,0,181 +NA,NA,,2018-19,Plymouth - Indian Brook,2390012,0,111,93,79,97,88,101,0,0,0,0,0,0,0,0,569 +NA,NA,,2018-19,Plymouth - Manomet Elementary,2390015,0,44,38,51,36,50,47,0,0,0,0,0,0,0,0,266 +NA,NA,,2018-19,Plymouth - Nathaniel Morton Elementary,2390030,0,84,92,95,91,121,74,0,0,0,0,0,0,0,0,557 +NA,NA,,2018-19,Plymouth - Plymouth Commun Intermediate,2390405,0,0,0,0,0,0,0,360,358,336,0,0,0,0,0,1054 +NA,NA,,2018-19,Plymouth - Plymouth Early Childhood Center,2390003,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155 +NA,NA,,2018-19,Plymouth - Plymouth North High,2390505,0,0,0,0,0,0,0,0,0,0,356,296,316,299,0,1267 +NA,NA,,2018-19,Plymouth - Plymouth South High,2390515,0,0,0,0,0,0,0,0,0,0,262,283,266,263,0,1074 +NA,NA,,2018-19,Plymouth - Plymouth South Middle,2390305,0,0,0,0,0,0,0,226,246,232,0,0,0,0,0,704 +NA,NA,,2018-19,Plymouth - South Elementary,2390046,0,97,102,110,106,113,104,0,0,0,0,0,0,0,0,632 +NA,NA,,2018-19,Plymouth - West Elementary,2390047,0,42,61,67,60,55,67,0,0,0,0,0,0,0,0,352 +NA,NA,,2018-19,Plympton - Dennett Elementary,2400010,0,29,33,27,36,22,32,20,0,0,0,0,0,0,0,199 +NA,NA,,2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,0,78,85,85,92,95,99,95,89,87,91,92,67,70,0,1125 +NA,NA,,2018-19,Provincetown - Provincetown Schools,2420020,18,10,11,12,14,14,18,9,12,7,0,0,0,0,0,125 +NA,NA,,2018-19,Quabbin - Hardwick Elementary,7530005,0,23,22,17,26,24,33,29,0,0,0,0,0,0,0,174 +NA,NA,,2018-19,Quabbin - Hubbardston Center,7530010,0,35,49,45,42,45,47,46,0,0,0,0,0,0,0,309 +NA,NA,,2018-19,Quabbin - New Braintree Grade,7530020,0,23,38,0,0,0,0,0,0,0,0,0,0,0,0,61 +NA,NA,,2018-19,Quabbin - Oakham Center,7530025,0,0,0,20,23,30,24,30,0,0,0,0,0,0,0,127 +NA,NA,,2018-19,Quabbin - Quabbin Regional High School,7530505,0,0,0,0,0,0,0,0,0,0,186,149,146,144,1,626 +NA,NA,,2018-19,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,0,0,0,0,0,183,176,0,0,0,0,0,359 +NA,NA,,2018-19,Quabbin - Ruggles Lane,7530030,67,51,52,48,53,75,63,53,0,0,0,0,0,0,0,462 +NA,NA,,2018-19,Quaboag Regional - Quaboag Regional High,7780505,0,0,0,0,0,0,0,0,0,0,87,98,65,100,0,350 +NA,NA,,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,0,0,0,0,0,96,126,0,0,0,0,0,222 +NA,NA,,2018-19,Quaboag Regional - Warren Elementary,7780005,36,52,54,46,56,72,55,64,0,0,0,0,0,0,0,435 +NA,NA,,2018-19,Quaboag Regional - West Brookfield Elementary,7780010,24,34,35,35,39,45,44,40,0,0,0,0,0,0,0,296 +NA,NA,,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,177,0,0,0,0,0,0,0,0,0,0,0,0,0,0,177 +NA,NA,,2018-19,Quincy - Atherton Hough,2430040,0,44,38,54,46,44,45,0,0,0,0,0,0,0,0,271 +NA,NA,,2018-19,Quincy - Atlantic Middle,2430305,0,0,0,0,0,0,0,186,187,161,0,0,0,0,0,534 +NA,NA,,2018-19,Quincy - Beechwood Knoll Elementary,2430020,0,46,63,63,58,49,44,0,0,0,0,0,0,0,0,323 +NA,NA,,2018-19,Quincy - Broad Meadows Middle,2430310,0,0,0,0,0,0,0,111,136,124,0,0,0,0,0,371 +NA,NA,,2018-19,Quincy - Central Middle,2430315,0,0,0,0,0,0,0,197,202,218,0,0,0,0,0,617 +NA,NA,,2018-19,Quincy - Charles A Bernazzani Elementary,2430025,0,67,58,50,59,48,65,0,0,0,0,0,0,0,0,347 +NA,NA,,2018-19,Quincy - Clifford H Marshall Elementary,2430055,0,122,103,108,86,108,0,0,0,0,0,0,0,0,0,527 +NA,NA,,2018-19,Quincy - Francis W Parker,2430075,0,58,58,46,48,61,54,0,0,0,0,0,0,0,0,325 +NA,NA,,2018-19,Quincy - Lincoln-Hancock Community School,2430035,0,113,105,97,97,93,0,0,0,0,0,0,0,0,0,505 +NA,NA,,2018-19,Quincy - Merrymount,2430060,0,69,61,57,61,57,63,0,0,0,0,0,0,0,0,368 +NA,NA,,2018-19,Quincy - Montclair,2430065,0,75,65,72,77,67,64,0,0,0,0,0,0,0,0,420 +NA,NA,,2018-19,Quincy - North Quincy High,2430510,0,0,0,0,0,0,0,0,0,0,326,302,281,342,7,1258 +NA,NA,,2018-19,Quincy - Point Webster Middle,2430325,36,0,0,0,0,0,110,95,69,87,0,0,0,0,0,397 +NA,NA,,2018-19,Quincy - Quincy High,2430505,0,0,0,0,0,0,0,0,0,0,375,385,389,368,0,1517 +NA,NA,,2018-19,Quincy - Snug Harbor Community School,2430090,126,48,58,50,49,53,53,0,0,0,0,0,0,0,0,437 +NA,NA,,2018-19,Quincy - South West Middle School,2430320,0,0,0,0,0,0,99,87,92,81,0,0,0,0,0,359 +NA,NA,,2018-19,Quincy - Squantum,2430095,0,63,63,63,53,55,49,0,0,0,0,0,0,0,0,346 +NA,NA,,2018-19,Quincy - Wollaston School,2430110,0,56,55,55,54,61,56,0,0,0,0,0,0,0,0,337 +NA,NA,,2018-19,Ralph C Mahar - Pathways Early College Innovation School,7550515,0,0,0,0,0,0,0,0,0,0,0,0,17,18,0,35 +NA,NA,,2018-19,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,0,0,0,0,0,0,0,102,132,110,105,92,81,1,623 +NA,NA,,2018-19,Ralph C Mahar - The Gateway to College,7550525,0,0,0,0,0,0,0,0,0,0,14,0,20,39,0,73 +NA,NA,,2018-19,Randolph - Elizabeth G Lyons Elementary,2440020,0,44,55,52,50,51,52,0,0,0,0,0,0,0,0,304 +NA,NA,,2018-19,Randolph - J F Kennedy Elementary,2440018,82,59,60,61,52,69,58,0,0,0,0,0,0,0,0,441 +NA,NA,,2018-19,Randolph - Margaret L Donovan,2440015,0,82,72,58,74,86,81,0,0,0,0,0,0,0,0,453 +NA,NA,,2018-19,Randolph - Martin E Young Elementary,2440040,0,39,40,35,51,53,62,0,0,0,0,0,0,0,0,280 +NA,NA,,2018-19,Randolph - Randolph Community Middle,2440410,0,0,0,0,0,0,0,229,201,183,0,0,0,0,0,613 +NA,NA,,2018-19,Randolph - Randolph High,2440505,0,0,0,0,0,0,0,0,0,0,197,156,158,135,0,646 +NA,NA,,2018-19,Reading - Alice M Barrows,2460002,0,55,67,53,80,61,58,0,0,0,0,0,0,0,0,374 +NA,NA,,2018-19,Reading - Arthur W Coolidge Middle,2460305,0,0,0,0,0,0,0,128,167,148,0,0,0,0,0,443 +NA,NA,,2018-19,Reading - Birch Meadow,2460005,0,62,60,64,62,63,66,0,0,0,0,0,0,0,0,377 +NA,NA,,2018-19,Reading - J Warren Killam,2460017,0,79,63,67,80,57,66,0,0,0,0,0,0,0,0,412 +NA,NA,,2018-19,Reading - Joshua Eaton,2460010,0,76,64,43,67,77,59,0,0,0,0,0,0,0,0,386 +NA,NA,,2018-19,Reading - Reading Memorial High,2460505,0,0,0,0,0,0,0,0,0,0,293,329,307,322,0,1251 +NA,NA,,2018-19,Reading - RISE PreSchool,2460001,115,0,0,0,0,0,0,0,0,0,0,0,0,0,0,115 +NA,NA,,2018-19,Reading - Walter S Parker Middle,2460310,0,0,0,0,0,0,0,163,188,196,0,0,0,0,0,547 +NA,NA,,2018-19,Reading - Wood End Elementary School,2460020,0,53,42,50,49,66,45,0,0,0,0,0,0,0,0,305 +NA,NA,,2018-19,Revere - A. C. Whelan Elementary School,2480003,0,128,138,137,125,125,133,0,0,0,0,0,0,0,0,786 +NA,NA,,2018-19,Revere - Abraham Lincoln,2480025,101,88,97,94,95,85,109,0,0,0,0,0,0,0,0,669 +NA,NA,,2018-19,Revere - Beachmont Veterans Memorial School,2480013,35,41,65,41,51,43,50,0,0,0,0,0,0,0,0,326 +NA,NA,,2018-19,Revere - Garfield Elementary School,2480056,55,115,111,121,113,98,119,0,0,0,0,0,0,0,0,732 +NA,NA,,2018-19,Revere - Garfield Middle School,2480057,0,0,0,0,0,0,0,201,180,178,0,0,0,0,0,559 +NA,NA,,2018-19,Revere - Paul Revere,2480050,0,73,80,76,89,77,83,0,0,0,0,0,0,0,0,478 +NA,NA,,2018-19,Revere - Revere High,2480505,0,0,0,0,0,0,0,0,0,0,541,554,463,413,7,1978 +NA,NA,,2018-19,Revere - Rumney Marsh Academy,2480014,0,0,0,0,0,0,0,215,198,198,0,0,0,0,0,611 +NA,NA,,2018-19,Revere - Seacoast School,2480520,0,0,0,0,0,0,0,0,0,0,34,14,21,21,0,90 +NA,NA,,2018-19,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,108,119,114,120,124,137,0,0,0,0,0,0,0,0,722 +NA,NA,,2018-19,Revere - Susan B. Anthony Middle School,2480305,0,0,0,0,0,0,0,210,202,181,0,0,0,0,0,593 +NA,NA,,2018-19,Richmond - Richmond Consolidated,2490005,19,14,17,17,19,20,16,21,24,12,0,0,0,0,0,179 +NA,NA,,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,0,0,0,0,0,0,95,94,92,91,80,67,72,65,0,656 +NA,NA,,2018-19,River Valley Charter (District) - River Valley Charter School,4820050,0,32,32,32,32,34,32,33,33,28,0,0,0,0,0,288 +NA,NA,,2018-19,Rochester - Rochester Memorial,2500005,25,62,76,58,80,67,68,75,0,0,0,0,0,0,0,511 +NA,NA,,2018-19,Rockland - Jefferson Elementary School,2510060,0,60,49,54,52,52,0,0,0,0,0,0,0,0,0,267 +NA,NA,,2018-19,Rockland - John W Rogers Middle,2510305,0,0,0,0,0,0,198,178,163,165,0,0,0,0,0,704 +NA,NA,,2018-19,Rockland - Memorial Park,2510020,0,64,50,67,54,54,0,0,0,0,0,0,0,0,0,289 +NA,NA,,2018-19,Rockland - R Stewart Esten,2510025,0,59,57,65,77,74,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2018-19,Rockland - Rockland Senior High,2510505,71,0,0,0,0,0,0,0,0,0,144,141,156,117,7,636 +NA,NA,,2018-19,Rockport - Rockport Elementary,2520005,20,54,58,62,73,63,63,0,0,0,0,0,0,0,0,393 +NA,NA,,2018-19,Rockport - Rockport High,2520510,0,0,0,0,0,0,0,0,0,0,61,66,72,81,0,280 +NA,NA,,2018-19,Rockport - Rockport Middle,2520305,0,0,0,0,0,0,0,67,74,74,0,0,0,0,0,215 +NA,NA,,2018-19,Rowe - Rowe Elementary,2530005,14,4,7,12,5,10,9,5,0,0,0,0,0,0,0,66 +NA,NA,,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,0,0,0,0,0,0,223,239,238,250,225,147,123,73,0,1518 +NA,NA,,2018-19,Sabis International Charter (District) - Sabis International Charter School,4410505,0,104,118,126,128,161,128,130,128,128,117,105,93,111,0,1577 +NA,NA,,2018-19,Salem - Bates,2580003,0,56,59,69,70,68,67,0,0,0,0,0,0,0,0,389 +NA,NA,,2018-19,Salem - Carlton,2580015,0,46,51,44,36,51,51,0,0,0,0,0,0,0,0,279 +NA,NA,,2018-19,Salem - Collins Middle,2580305,0,0,0,0,0,0,0,223,225,232,0,0,0,0,0,680 +NA,NA,,2018-19,Salem - Horace Mann Laboratory,2580030,0,57,40,52,41,45,65,0,0,0,0,0,0,0,0,300 +NA,NA,,2018-19,Salem - New Liberty Innovation School,2580510,0,0,0,0,0,0,0,0,0,0,8,20,8,16,0,52 +NA,NA,,2018-19,Salem - Salem Early Childhood,2580001,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91 +NA,NA,,2018-19,Salem - Salem High,2580505,0,0,0,0,0,0,0,0,0,0,219,235,227,229,6,916 +NA,NA,,2018-19,Salem - Salem Prep High School,2580515,0,0,0,0,0,0,0,0,0,2,6,5,6,3,0,22 +NA,NA,,2018-19,Salem - Saltonstall School,2580050,0,41,39,47,46,51,55,42,40,49,0,0,0,0,0,410 +NA,NA,,2018-19,Salem - Witchcraft Heights,2580070,0,94,102,105,97,90,91,0,0,0,0,0,0,0,0,579 +NA,NA,,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,4850485,0,0,0,0,0,0,0,73,76,72,79,65,70,56,0,491 +NA,NA,,2018-19,Sandwich - Forestdale School,2610002,63,182,178,186,0,0,0,0,0,0,0,0,0,0,0,609 +NA,NA,,2018-19,Sandwich - Oak Ridge,2610025,0,0,0,0,203,192,210,208,0,0,0,0,0,0,0,813 +NA,NA,,2018-19,Sandwich - Sandwich High,2610505,0,0,0,0,0,0,0,0,0,0,157,150,170,165,0,642 +NA,NA,,2018-19,Sandwich - Sandwich STEM Academy,2610305,0,0,0,0,0,0,0,0,221,225,0,0,0,0,0,446 +NA,NA,,2018-19,Saugus - Belmonte Saugus Middle,2620305,0,0,0,0,0,0,0,215,208,211,0,0,0,0,0,634 +NA,NA,,2018-19,Saugus - Douglas Waybright,2620067,43,19,39,23,36,28,41,0,0,0,0,0,0,0,0,229 +NA,NA,,2018-19,Saugus - Lynnhurst,2620040,0,64,43,43,44,45,43,0,0,0,0,0,0,0,0,282 +NA,NA,,2018-19,Saugus - Oaklandvale,2620050,0,29,38,43,39,46,46,0,0,0,0,0,0,0,0,241 +NA,NA,,2018-19,Saugus - Saugus High,2620505,0,0,0,0,0,0,0,0,0,0,172,173,167,180,7,699 +NA,NA,,2018-19,Saugus - Veterans Memorial,2620065,48,58,82,90,80,71,95,0,0,0,0,0,0,0,0,524 +NA,NA,,2018-19,Savoy - Emma L Miller Elementary School,2630010,9,7,10,8,10,10,9,0,0,0,0,0,0,0,0,63 +NA,NA,,2018-19,Scituate - Cushing Elementary,2640007,0,60,54,55,54,49,54,0,0,0,0,0,0,0,0,326 +NA,NA,,2018-19,Scituate - Gates Middle School,2640305,0,0,0,0,0,0,0,231,234,217,0,0,0,0,0,682 +NA,NA,,2018-19,Scituate - Hatherly Elementary,2640010,0,40,41,36,48,48,48,0,0,0,0,0,0,0,0,261 +NA,NA,,2018-19,Scituate - Jenkins Elementary School,2640015,0,67,61,52,53,59,60,0,0,0,0,0,0,0,0,352 +NA,NA,,2018-19,Scituate - Scituate High School,2640505,0,0,0,0,0,0,0,0,0,0,258,252,228,220,1,959 +NA,NA,,2018-19,Scituate - Wampatuck Elementary,2640020,59,60,72,58,55,62,45,0,0,0,0,0,0,0,0,411 +NA,NA,,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,0,0,0,0,0,0,0,179,156,174,0,0,0,0,0,509 +NA,NA,,2018-19,Seekonk - George R Martin,2650007,23,91,77,83,74,78,73,0,0,0,0,0,0,0,0,499 +NA,NA,,2018-19,Seekonk - Mildred Aitken School,2650015,21,70,75,74,74,69,71,0,0,0,0,0,0,0,0,454 +NA,NA,,2018-19,Seekonk - Seekonk High,2650505,0,0,0,0,0,0,0,0,0,0,164,155,149,157,0,625 +NA,NA,,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,0,78,78,75,86,79,78,73,74,49,0,0,0,0,0,670 +NA,NA,,2018-19,Sharon - Cottage Street,2660005,0,65,84,91,82,102,95,0,0,0,0,0,0,0,0,519 +NA,NA,,2018-19,Sharon - East Elementary,2660010,0,89,68,79,93,85,96,0,0,0,0,0,0,0,0,510 +NA,NA,,2018-19,Sharon - Heights Elementary,2660015,0,92,82,82,94,90,97,0,0,0,0,0,0,0,0,537 +NA,NA,,2018-19,Sharon - Sharon Early Childhood Center,2660001,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49 +NA,NA,,2018-19,Sharon - Sharon High,2660505,0,0,0,0,0,0,0,0,0,0,308,269,255,289,0,1121 +NA,NA,,2018-19,Sharon - Sharon Middle,2660305,0,0,0,0,0,0,0,286,291,275,0,0,0,0,0,852 +NA,NA,,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,0,0,0,0,0,0,0,0,339,331,319,305,0,1294 +NA,NA,,2018-19,Sherborn - Pine Hill,2690010,34,54,53,68,58,64,82,0,0,0,0,0,0,0,0,413 +NA,NA,,2018-19,Shrewsbury - Beal School,2710005,0,221,73,0,0,0,0,0,0,0,0,0,0,0,0,294 +NA,NA,,2018-19,Shrewsbury - Calvin Coolidge,2710015,0,43,85,110,76,95,0,0,0,0,0,0,0,0,0,409 +NA,NA,,2018-19,Shrewsbury - Floral Street School,2710020,0,0,111,201,211,197,0,0,0,0,0,0,0,0,0,720 +NA,NA,,2018-19,Shrewsbury - Oak Middle School,2710030,0,0,0,0,0,0,0,0,511,494,0,0,0,0,0,1005 +NA,NA,,2018-19,Shrewsbury - Parker Road Preschool,2710040,242,0,0,0,0,0,0,0,0,0,0,0,0,0,0,242 +NA,NA,,2018-19,Shrewsbury - Sherwood Middle School,2710305,0,0,0,0,0,0,490,468,0,0,0,0,0,0,0,958 +NA,NA,,2018-19,Shrewsbury - Shrewsbury Sr High,2710505,0,0,0,0,0,0,0,0,0,0,460,446,500,428,1,1835 +NA,NA,,2018-19,Shrewsbury - Spring Street,2710035,0,42,69,72,76,105,0,0,0,0,0,0,0,0,0,364 +NA,NA,,2018-19,Shrewsbury - Walter J Paton,2710025,0,44,83,67,89,97,0,0,0,0,0,0,0,0,0,380 +NA,NA,,2018-19,Shutesbury - Shutesbury Elementary,2720005,18,13,16,19,12,22,15,13,0,0,0,0,0,0,0,128 +NA,NA,,2018-19,Silver Lake - Silver Lake Regional High,7600505,111,0,0,0,0,0,0,0,0,0,270,282,305,273,0,1241 +NA,NA,,2018-19,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,0,0,0,0,0,250,264,0,0,0,0,0,514 +NA,NA,,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,0,0,0,0,0,0,0,74,74,68,65,51,37,0,369 +NA,NA,,2018-19,Somerset - Chace Street,2730005,61,65,59,68,54,52,66,0,0,0,0,0,0,0,0,425 +NA,NA,,2018-19,Somerset - North Elementary,2730008,0,67,68,86,68,72,101,0,0,0,0,0,0,0,0,462 +NA,NA,,2018-19,Somerset - Somerset Middle School,2730305,0,0,0,0,0,0,0,206,207,206,0,0,0,0,0,619 +NA,NA,,2018-19,Somerset - South,2730015,0,39,45,46,35,53,47,0,0,0,0,0,0,0,0,265 +NA,NA,,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,0,0,0,0,0,0,0,0,253,251,270,260,3,1037 +NA,NA,,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,18,47,92,81,88,88,48,66,45,43,0,0,0,0,0,616 +NA,NA,,2018-19,Somerville - Arthur D Healey,2740075,17,43,62,49,53,39,46,56,46,39,0,0,0,0,0,450 +NA,NA,,2018-19,Somerville - Benjamin G Brown,2740015,0,37,36,41,43,36,36,0,0,0,0,0,0,0,0,229 +NA,NA,,2018-19,Somerville - Capuano Early Childhood Center,2740005,238,94,0,0,0,0,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2018-19,Somerville - E Somerville Community,2740111,0,68,91,82,92,82,80,85,80,59,0,0,0,0,0,719 +NA,NA,,2018-19,Somerville - Full Circle High School,2740510,0,0,0,0,0,0,0,0,0,0,7,14,18,7,2,48 +NA,NA,,2018-19,Somerville - John F Kennedy,2740083,0,46,50,50,41,46,43,53,70,42,0,0,0,0,0,441 +NA,NA,,2018-19,Somerville - Next Wave Junior High,2740410,0,0,0,0,0,0,0,0,6,8,0,0,0,0,0,14 +NA,NA,,2018-19,Somerville - Somerville High,2740505,0,0,0,0,0,0,0,0,0,0,329,298,304,312,8,1251 +NA,NA,,2018-19,Somerville - West Somerville Neighborhood,2740115,18,44,44,39,45,40,31,45,30,34,0,0,0,0,0,370 +NA,NA,,2018-19,Somerville - Winter Hill Community,2740120,18,39,41,36,38,45,56,49,62,55,0,0,0,0,0,439 +NA,NA,,2018-19,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,0,0,0,133,153,139,146,0,0,0,0,0,571 +NA,NA,,2018-19,South Hadley - Mosier,2780020,0,0,0,155,136,143,0,0,0,0,0,0,0,0,0,434 +NA,NA,,2018-19,South Hadley - Plains Elementary,2780015,69,144,139,0,0,0,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2018-19,South Hadley - South Hadley High,2780505,0,0,0,0,0,0,0,0,0,0,139,146,142,124,6,557 +NA,NA,,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0,0,0,0,0,0,0,0,0,0,209,199,185,157,0,750 +NA,NA,,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,4880550,0,74,76,78,60,65,75,78,78,78,67,74,75,62,0,940 +NA,NA,,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,0,0,0,0,0,0,0,0,172,163,150,160,0,645 +NA,NA,,2018-19,Southampton - William E Norris,2750005,35,65,58,75,61,58,75,74,0,0,0,0,0,0,0,501 +NA,NA,,2018-19,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,124,134,0,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2018-19,Southborough - Margaret A Neary,2760020,0,0,0,0,0,129,129,0,0,0,0,0,0,0,0,258 +NA,NA,,2018-19,Southborough - Mary E Finn School,2760008,82,111,133,0,0,0,0,0,0,0,0,0,0,0,0,326 +NA,NA,,2018-19,Southborough - P Brent Trottier,2760305,0,0,0,0,0,0,0,136,152,143,0,0,0,0,0,431 +NA,NA,,2018-19,Southbridge - Charlton Street,2770005,1,0,0,66,70,73,81,0,0,0,0,0,0,0,0,291 +NA,NA,,2018-19,Southbridge - Eastford Road,2770010,62,141,165,0,0,0,0,0,0,0,0,0,0,0,0,368 +NA,NA,,2018-19,Southbridge - Southbridge Academy,2770525,0,0,0,0,0,0,0,0,0,3,13,8,4,4,0,32 +NA,NA,,2018-19,Southbridge - Southbridge High School,2770515,0,0,0,0,0,0,0,0,0,0,150,108,117,107,0,482 +NA,NA,,2018-19,Southbridge - Southbridge Middle School,2770315,0,0,0,0,0,0,0,163,164,170,0,0,0,0,0,497 +NA,NA,,2018-19,Southbridge - West Street,2770020,0,0,0,99,70,76,89,0,0,0,0,0,0,0,0,334 +NA,NA,,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,0,0,0,0,0,0,0,0,0,0,376,377,343,348,0,1444 +NA,NA,,2018-19,Southern Berkshire - Mt Everett Regional,7650505,0,0,0,0,0,0,0,0,45,62,52,51,56,43,0,309 +NA,NA,,2018-19,Southern Berkshire - New Marlborough Central,7650018,11,12,8,19,11,16,0,0,0,0,0,0,0,0,0,77 +NA,NA,,2018-19,Southern Berkshire - South Egremont,7650030,0,13,0,0,0,0,0,0,0,0,0,0,0,0,0,13 +NA,NA,,2018-19,Southern Berkshire - Undermountain,7650035,28,31,30,32,42,31,41,54,0,0,0,0,0,0,0,289 +NA,NA,,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,0,0,0,0,0,0,0,0,309,292,257,273,0,1131 +NA,NA,,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,0,109,119,115,115,0,0,0,0,0,0,0,458 +NA,NA,,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,0,0,0,0,0,0,113,120,122,115,117,122,3,712 +NA,NA,,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,44,104,89,104,0,0,0,0,0,0,0,0,0,0,0,341 +NA,NA,,2018-19,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,0,0,0,0,0,0,0,65,58,65,85,1,274 +NA,NA,,2018-19,Spencer-E Brookfield - East Brookfield Elementary,7670008,85,19,27,20,23,19,30,20,0,0,0,0,0,0,0,243 +NA,NA,,2018-19,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,0,0,0,107,103,119,109,0,0,0,0,0,438 +NA,NA,,2018-19,Spencer-E Brookfield - Wire Village School,7670040,0,69,95,104,69,87,0,0,0,0,0,0,0,0,0,424 +NA,NA,,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,82,42,43,49,43,46,40,29,35,29,0,0,0,0,0,438 +NA,NA,,2018-19,Springfield - Alice B Beal Elementary,2810175,0,52,35,44,39,40,43,0,0,0,0,0,0,0,0,253 +NA,NA,,2018-19,Springfield - Arthur T Talmadge,2810165,0,31,43,38,47,39,42,0,0,0,0,0,0,0,0,240 +NA,NA,,2018-19,Springfield - Balliet Middle School,2810360,0,0,0,0,0,0,0,2,9,22,0,0,0,0,0,33 +NA,NA,,2018-19,Springfield - Brightwood,2810025,23,48,60,44,58,50,54,0,0,0,0,0,0,0,0,337 +NA,NA,,2018-19,Springfield - Chestnut Academy,2810365,0,0,0,0,0,0,0,118,101,85,0,0,0,0,0,304 +NA,NA,,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,0,0,0,0,0,0,0,118,113,95,0,0,0,0,0,326 +NA,NA,,2018-19,Springfield - Conservatory of the Arts,2810475,0,0,0,0,0,0,0,56,56,57,51,47,37,40,0,344 +NA,NA,,2018-19,Springfield - Daniel B Brunton,2810035,0,62,74,80,73,75,81,0,0,0,0,0,0,0,0,445 +NA,NA,,2018-19,Springfield - Early Childhood Education Center,2810001,155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,155 +NA,NA,,2018-19,Springfield - Edward P. Boland School,2810010,209,89,95,91,82,90,108,0,0,0,0,0,0,0,0,764 +NA,NA,,2018-19,Springfield - Elias Brookings,2810030,47,46,43,51,50,39,60,0,0,0,0,0,0,0,0,336 +NA,NA,,2018-19,Springfield - Forest Park Middle,2810325,0,0,0,0,0,0,0,255,247,223,0,0,0,0,0,725 +NA,NA,,2018-19,Springfield - Frank H Freedman,2810075,0,56,62,47,50,52,57,0,0,0,0,0,0,0,0,324 +NA,NA,,2018-19,Springfield - Frederick Harris,2810080,54,103,111,106,75,87,89,0,0,0,0,0,0,0,0,625 +NA,NA,,2018-19,Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,0,0,0,0,0,0,0,1,2,13,6,0,22 +NA,NA,,2018-19,Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,0,0,0,0,0,0,0,7,12,6,7,0,32 +NA,NA,,2018-19,Springfield - German Gerena Community School,2810195,110,102,107,98,94,99,102,0,0,0,0,0,0,0,0,712 +NA,NA,,2018-19,Springfield - Glenwood,2810065,0,41,51,47,43,53,50,0,0,0,0,0,0,0,0,285 +NA,NA,,2018-19,Springfield - Glickman Elementary,2810068,0,51,47,46,68,56,61,0,0,0,0,0,0,0,0,329 +NA,NA,,2018-19,Springfield - High School Of Commerce,2810510,0,0,0,0,0,0,0,0,0,0,363,237,180,231,4,1015 +NA,NA,,2018-19,Springfield - Hiram L Dorman,2810050,0,37,44,45,43,52,62,0,0,0,0,0,0,0,0,283 +NA,NA,,2018-19,Springfield - Homer Street,2810085,0,60,67,71,58,65,74,0,0,0,0,0,0,0,0,395 +NA,NA,,2018-19,Springfield - Impact Prep at Chestnut,2810366,0,0,0,0,0,0,0,144,116,116,0,0,0,0,0,376 +NA,NA,,2018-19,Springfield - Indian Orchard Elementary,2810100,95,82,88,88,117,97,89,0,0,0,0,0,0,0,0,656 +NA,NA,,2018-19,Springfield - John F Kennedy Middle,2810328,0,0,0,0,0,0,0,175,162,154,0,0,0,0,0,491 +NA,NA,,2018-19,Springfield - John J Duggan Middle,2810320,0,0,0,0,0,0,0,183,177,181,85,61,44,28,0,759 +NA,NA,,2018-19,Springfield - Kensington International School,2810110,29,45,47,49,51,40,53,0,0,0,0,0,0,0,0,314 +NA,NA,,2018-19,Springfield - Liberty,2810115,0,49,52,47,41,45,48,0,0,0,0,0,0,0,0,282 +NA,NA,,2018-19,Springfield - Liberty Preparatory Academy,2810560,0,0,0,0,0,0,0,0,0,0,3,2,3,1,0,9 +NA,NA,,2018-19,Springfield - Lincoln,2810120,0,63,67,65,69,60,75,0,0,0,0,0,0,0,0,399 +NA,NA,,2018-19,Springfield - M Marcus Kiley Middle,2810330,0,0,0,0,0,0,0,229,213,241,0,0,0,0,0,683 +NA,NA,,2018-19,Springfield - Margaret C Ells,2810060,155,35,39,0,0,0,0,0,0,0,0,0,0,0,0,229 +NA,NA,,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,2810125,47,43,48,43,54,55,48,0,0,0,0,0,0,0,0,338 +NA,NA,,2018-19,Springfield - Mary M Lynch,2810140,0,39,53,50,41,44,38,0,0,0,0,0,0,0,0,265 +NA,NA,,2018-19,Springfield - Mary M Walsh,2810155,0,50,37,49,65,49,46,0,0,0,0,0,0,0,0,296 +NA,NA,,2018-19,Springfield - Mary O Pottenger,2810145,18,65,71,60,68,81,74,0,0,0,0,0,0,0,0,437 +NA,NA,,2018-19,Springfield - Milton Bradley School,2810023,59,83,96,98,85,68,76,0,0,0,0,0,0,0,0,565 +NA,NA,,2018-19,Springfield - Rebecca M Johnson,2810055,120,111,86,120,105,118,100,0,0,0,0,0,0,0,0,760 +NA,NA,,2018-19,Springfield - Rise Academy at Van Sickle,2810480,0,0,0,0,0,0,0,99,92,130,0,0,0,0,0,321 +NA,NA,,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,0,0,0,0,0,0,0,0,0,0,375,357,349,334,0,1415 +NA,NA,,2018-19,Springfield - Samuel Bowles,2810020,0,60,45,48,56,70,48,0,0,0,0,0,0,0,0,327 +NA,NA,,2018-19,Springfield - South End Middle School,2810355,0,0,0,0,0,0,0,71,85,73,0,0,0,0,0,229 +NA,NA,,2018-19,Springfield - Springfield Central High,2810500,0,0,0,0,0,0,0,0,0,0,658,521,424,501,0,2104 +NA,NA,,2018-19,Springfield - Springfield High School,2810570,0,0,0,0,0,0,0,0,0,0,51,39,48,93,0,231 +NA,NA,,2018-19,Springfield - Springfield High School of Science and Technology,2810530,0,0,0,0,0,0,0,0,0,0,376,288,335,245,16,1260 +NA,NA,,2018-19,Springfield - Springfield International Academy at Johnson,2810215,0,0,0,0,7,9,9,0,0,0,0,0,0,0,0,25 +NA,NA,,2018-19,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,0,0,0,0,0,0,0,0,19,12,0,0,0,31 +NA,NA,,2018-19,Springfield - Springfield Public Day Elementary School,2810005,0,0,4,12,7,22,16,0,0,0,0,0,0,0,0,61 +NA,NA,,2018-19,Springfield - Springfield Public Day High School,2810550,0,0,0,0,0,0,0,0,0,0,41,21,25,12,0,99 +NA,NA,,2018-19,Springfield - Springfield Public Day Middle School,2810345,0,0,0,0,0,0,0,13,19,17,0,0,0,0,0,49 +NA,NA,,2018-19,Springfield - Springfield Vocational Academy,2810675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97,97 +NA,NA,,2018-19,Springfield - STEM Middle Academy,2810350,0,0,0,0,0,0,0,99,98,99,0,0,0,0,0,296 +NA,NA,,2018-19,Springfield - Sumner Avenue,2810160,72,75,72,75,76,76,84,0,0,0,0,0,0,0,0,530 +NA,NA,,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,0,0,0,0,0,0,0,104,107,113,94,101,92,77,0,688 +NA,NA,,2018-19,Springfield - Thomas M Balliet,2810015,59,48,32,52,46,44,43,0,0,0,0,0,0,0,0,324 +NA,NA,,2018-19,Springfield - Van Sickle Academy,2810485,0,0,0,0,0,0,0,75,73,112,0,0,0,0,0,260 +NA,NA,,2018-19,Springfield - Warner,2810180,35,34,34,40,38,42,43,0,0,0,0,0,0,0,0,266 +NA,NA,,2018-19,Springfield - Washington,2810185,46,65,75,59,46,64,65,0,0,0,0,0,0,0,0,420 +NA,NA,,2018-19,Springfield - White Street,2810190,0,74,84,75,74,74,68,0,0,0,0,0,0,0,0,449 +NA,NA,,2018-19,Springfield - William N. DeBerry,2810045,0,30,37,36,35,48,48,0,0,0,0,0,0,0,0,234 +NA,NA,,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,0,55,54,54,50,58,0,0,0,0,0,0,0,0,0,271 +NA,NA,,2018-19,Stoneham - Colonial Park,2840005,50,44,49,46,44,42,0,0,0,0,0,0,0,0,0,275 +NA,NA,,2018-19,Stoneham - Robin Hood,2840025,49,68,68,73,74,62,0,0,0,0,0,0,0,0,0,394 +NA,NA,,2018-19,Stoneham - South,2840030,0,73,57,69,69,64,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2018-19,Stoneham - Stoneham Central Middle School,2840405,0,0,0,0,0,0,192,181,178,175,0,0,0,0,0,726 +NA,NA,,2018-19,Stoneham - Stoneham High,2840505,0,0,0,0,0,0,0,0,0,0,139,188,171,171,0,669 +NA,NA,,2018-19,Stoughton - Edwin A Jones Early Childhood Center,2850012,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91 +NA,NA,,2018-19,Stoughton - Helen Hansen Elementary,2850010,0,37,33,49,31,40,32,0,0,0,0,0,0,0,0,222 +NA,NA,,2018-19,Stoughton - Joseph H Gibbons,2850025,0,60,55,57,58,59,68,0,0,0,0,0,0,0,0,357 +NA,NA,,2018-19,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,52,65,59,67,45,59,0,0,0,0,0,0,0,0,347 +NA,NA,,2018-19,Stoughton - O'Donnell Middle School,2850405,0,0,0,0,0,0,0,277,312,259,0,0,0,0,0,848 +NA,NA,,2018-19,Stoughton - Richard L. Wilkins Elementary School,2850020,28,46,50,55,54,57,59,0,0,0,0,0,0,0,0,349 +NA,NA,,2018-19,Stoughton - South Elementary,2850015,0,39,34,31,49,49,45,0,0,0,0,0,0,0,0,247 +NA,NA,,2018-19,Stoughton - Stoughton High,2850505,0,0,0,0,0,0,0,0,0,0,238,272,266,260,3,1039 +NA,NA,,2018-19,Sturbridge - Burgess Elementary,2870005,76,99,114,111,112,119,134,122,0,0,0,0,0,0,0,887 +NA,NA,,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,0,0,0,0,0,0,0,0,0,223,220,202,191,0,836 +NA,NA,,2018-19,Sudbury - Ephraim Curtis Middle,2880305,0,0,0,0,0,0,0,335,310,298,0,0,0,0,0,943 +NA,NA,,2018-19,Sudbury - General John Nixon Elementary,2880025,0,34,53,44,69,58,78,0,0,0,0,0,0,0,0,336 +NA,NA,,2018-19,Sudbury - Israel Loring School,2880015,0,74,67,83,90,64,97,0,0,0,0,0,0,0,0,475 +NA,NA,,2018-19,Sudbury - Josiah Haynes,2880010,0,53,53,61,64,73,54,0,0,0,0,0,0,0,0,358 +NA,NA,,2018-19,Sudbury - Peter Noyes,2880030,48,77,87,86,86,84,73,0,0,0,0,0,0,0,0,541 +NA,NA,,2018-19,Sunderland - Sunderland Elementary,2890005,23,32,28,33,36,20,40,20,0,0,0,0,0,0,0,232 +NA,NA,,2018-19,Sutton - Sutton Early Learning,2900003,26,99,85,84,0,0,0,0,0,0,0,0,0,0,0,294 +NA,NA,,2018-19,Sutton - Sutton Elementary,2900005,0,0,0,0,104,106,104,0,0,0,0,0,0,0,0,314 +NA,NA,,2018-19,Sutton - Sutton High School,2900510,0,0,0,0,0,0,0,0,0,0,99,78,104,105,0,386 +NA,NA,,2018-19,Sutton - Sutton Middle School,2900305,0,0,0,0,0,0,0,115,113,132,0,0,0,0,0,360 +NA,NA,,2018-19,Swampscott - Clarke,2910005,0,46,40,39,48,40,0,0,0,0,0,0,0,0,0,213 +NA,NA,,2018-19,Swampscott - Hadley,2910010,0,65,65,63,68,60,0,0,0,0,0,0,0,0,0,321 +NA,NA,,2018-19,Swampscott - Stanley,2910020,0,44,48,46,51,50,0,0,0,0,0,0,0,0,0,239 +NA,NA,,2018-19,Swampscott - Swampscott High,2910505,0,0,0,0,0,0,0,0,0,0,183,186,161,176,1,707 +NA,NA,,2018-19,Swampscott - Swampscott Middle,2910305,60,0,0,0,0,0,158,167,173,174,0,0,0,0,0,732 +NA,NA,,2018-19,Swansea - Elizabeth S Brown,2920006,0,0,0,0,86,86,103,0,0,0,0,0,0,0,0,275 +NA,NA,,2018-19,Swansea - Gardner,2920015,0,81,86,97,0,0,0,0,0,0,0,0,0,0,0,264 +NA,NA,,2018-19,Swansea - Joseph Case High,2920505,0,0,0,0,0,0,0,0,0,0,134,136,132,133,1,536 +NA,NA,,2018-19,Swansea - Joseph Case Jr High,2920305,0,0,0,0,0,0,0,189,196,162,0,0,0,0,0,547 +NA,NA,,2018-19,Swansea - Joseph G Luther,2920020,0,0,0,0,55,81,66,0,0,0,0,0,0,0,0,202 +NA,NA,,2018-19,Swansea - Mark G Hoyle Elementary,2920017,59,59,70,72,0,0,0,0,0,0,0,0,0,0,0,260 +NA,NA,,2018-19,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,0,0,0,0,0,0,295,297,0,0,0,0,0,592 +NA,NA,,2018-19,Tantasqua - Tantasqua Regional Sr High,7700505,0,0,0,0,0,0,0,0,0,0,178,184,196,170,6,734 +NA,NA,,2018-19,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,0,0,0,0,0,0,0,147,130,107,102,0,486 +NA,NA,,2018-19,Taunton - Benjamin Friedman Middle,2930315,0,0,0,0,0,0,260,261,256,0,0,0,0,0,0,777 +NA,NA,,2018-19,Taunton - East Taunton Elementary,2930010,0,111,123,120,122,128,0,0,0,0,0,0,0,0,0,604 +NA,NA,,2018-19,Taunton - Edmund Hatch Bennett,2930007,0,63,73,60,52,63,0,0,0,0,0,0,0,0,0,311 +NA,NA,,2018-19,Taunton - Edward F. Leddy Preschool,2930005,282,0,0,0,0,0,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2018-19,Taunton - Elizabeth Pole,2930027,0,92,115,128,114,120,0,0,0,0,0,0,0,0,0,569 +NA,NA,,2018-19,Taunton - H H Galligan,2930057,0,45,50,51,46,50,0,0,0,0,0,0,0,0,0,242 +NA,NA,,2018-19,Taunton - Hopewell,2930035,0,54,44,61,63,60,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2018-19,Taunton - John F Parker Middle,2930305,0,0,0,0,0,0,150,172,177,0,0,0,0,0,0,499 +NA,NA,,2018-19,Taunton - Joseph C Chamberlain,2930008,0,88,92,99,121,100,0,0,0,0,0,0,0,0,0,500 +NA,NA,,2018-19,Taunton - Joseph H Martin,2930042,0,0,0,0,0,0,234,222,228,0,0,0,0,0,0,684 +NA,NA,,2018-19,Taunton - Mulcahey Elementary School,2930015,37,113,89,88,77,124,0,0,0,0,0,0,0,0,0,528 +NA,NA,,2018-19,Taunton - Taunton Alternative High School,2930525,0,0,0,0,0,0,0,0,0,0,0,6,16,79,0,101 +NA,NA,,2018-19,Taunton - Taunton High,2930505,0,0,0,0,0,0,0,0,0,631,549,507,489,437,11,2624 +NA,NA,,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,61,59,53,59,70,83,115,181,231,390,320,296,225,0,2143 +NA,NA,,2018-19,Tewksbury - Heath-Brook,2950010,0,103,115,128,0,0,0,0,0,0,0,0,0,0,0,346 +NA,NA,,2018-19,Tewksbury - John F. Ryan,2950023,0,0,0,0,0,0,257,254,0,0,0,0,0,0,0,511 +NA,NA,,2018-19,Tewksbury - John W. Wynn Middle,2950305,0,0,0,0,0,0,0,0,275,274,0,0,0,0,0,549 +NA,NA,,2018-19,Tewksbury - L F Dewing,2950001,173,145,118,158,0,0,0,0,0,0,0,0,0,0,0,594 +NA,NA,,2018-19,Tewksbury - Louise Davy Trahan,2950025,0,0,0,0,99,104,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2018-19,Tewksbury - North Street,2950020,0,0,0,0,138,145,0,0,0,0,0,0,0,0,0,283 +NA,NA,,2018-19,Tewksbury - Tewksbury Memorial High,2950505,0,0,0,0,0,0,0,0,0,0,226,216,226,241,7,916 +NA,NA,,2018-19,Tisbury - Tisbury Elementary,2960005,2,21,31,34,32,26,41,42,36,32,0,0,0,0,0,297 +NA,NA,,2018-19,Topsfield - Proctor Elementary,2980005,0,0,0,0,0,92,101,77,0,0,0,0,0,0,0,270 +NA,NA,,2018-19,Topsfield - Steward Elementary,2980010,42,71,87,84,87,0,0,0,0,0,0,0,0,0,0,371 +NA,NA,,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0,0,0,0,0,0,0,0,0,275,244,258,247,0,1024 +NA,NA,,2018-19,Triton - Newbury Elementary,7730020,43,48,53,43,53,55,63,53,0,0,0,0,0,0,0,411 +NA,NA,,2018-19,Triton - Pine Grove,7730025,28,47,57,57,55,72,54,61,0,0,0,0,0,0,0,431 +NA,NA,,2018-19,Triton - Salisbury Elementary,7730015,50,71,61,62,57,64,71,79,0,0,0,0,0,0,0,515 +NA,NA,,2018-19,Triton - Triton Regional High School,7730505,0,0,0,0,0,0,0,0,0,0,166,153,182,180,0,681 +NA,NA,,2018-19,Triton - Triton Regional Middle School,7730405,0,0,0,0,0,0,0,0,179,204,0,0,0,0,0,383 +NA,NA,,2018-19,Truro - Truro Central,3000005,19,11,13,14,16,12,16,5,0,0,0,0,0,0,0,106 +NA,NA,,2018-19,Tyngsborough - Tyngsborough Elementary,3010020,56,107,111,143,119,115,147,0,0,0,0,0,0,0,0,798 +NA,NA,,2018-19,Tyngsborough - Tyngsborough High School,3010505,0,0,0,0,0,0,0,0,0,0,125,109,121,123,0,478 +NA,NA,,2018-19,Tyngsborough - Tyngsborough Middle,3010305,0,0,0,0,0,0,0,114,116,134,0,0,0,0,0,364 +NA,NA,,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,0,0,0,0,0,0,0,182,169,166,0,0,0,0,0,517 +NA,NA,,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,56,61,73,70,74,73,91,91,77,58,0,0,0,0,0,724 +NA,NA,,2018-19,Up-Island Regional - Chilmark Elementary,7740010,0,10,11,10,9,11,9,0,0,0,0,0,0,0,0,60 +NA,NA,,2018-19,Up-Island Regional - West Tisbury Elementary,7740020,7,37,30,29,37,38,43,39,43,53,0,0,0,0,0,356 +NA,NA,,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,0,0,0,0,0,0,0,184,188,172,159,0,703 +NA,NA,,2018-19,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0,0,1,9,34,0,44 +NA,NA,,2018-19,Uxbridge - Taft Early Learning Center,3040005,90,107,121,120,123,0,0,0,0,0,0,0,0,0,0,561 +NA,NA,,2018-19,Uxbridge - Uxbridge High,3040505,0,0,0,0,0,0,0,0,0,134,109,115,112,113,6,589 +NA,NA,,2018-19,Uxbridge - Whitin Intermediate,3040405,0,0,0,0,0,132,124,130,142,0,0,0,0,0,0,528 +NA,NA,,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,0,0,0,0,0,0,115,88,77,67,0,0,0,0,0,347 +NA,NA,,2018-19,Wachusett - Central Tree Middle,7750310,0,0,0,0,0,0,0,128,120,135,0,0,0,0,0,383 +NA,NA,,2018-19,Wachusett - Chocksett Middle School,7750315,0,0,0,0,0,0,93,78,94,96,0,0,0,0,0,361 +NA,NA,,2018-19,Wachusett - Davis Hill Elementary,7750018,0,70,76,79,73,78,79,0,0,0,0,0,0,0,0,455 +NA,NA,,2018-19,Wachusett - Dawson,7750020,0,81,65,82,82,81,88,0,0,0,0,0,0,0,0,479 +NA,NA,,2018-19,Wachusett - Early Childhood Center,7750001,154,0,0,0,0,0,0,0,0,0,0,0,0,0,0,154 +NA,NA,,2018-19,Wachusett - Glenwood Elementary School,7750060,0,0,0,0,135,109,111,0,0,0,0,0,0,0,0,355 +NA,NA,,2018-19,Wachusett - Houghton Elementary,7750027,0,72,71,63,84,71,0,0,0,0,0,0,0,0,0,361 +NA,NA,,2018-19,Wachusett - Leroy E.Mayo,7750032,0,66,66,85,88,83,91,0,0,0,0,0,0,0,0,479 +NA,NA,,2018-19,Wachusett - Mountview Middle,7750305,0,0,0,0,0,0,0,277,283,261,0,0,0,0,0,821 +NA,NA,,2018-19,Wachusett - Naquag Elementary School,7750005,0,97,101,116,0,0,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2018-19,Wachusett - Paxton Center,7750040,0,37,30,47,39,56,55,66,62,63,0,0,0,0,0,455 +NA,NA,,2018-19,Wachusett - Thomas Prince,7750045,0,27,36,48,38,49,48,48,46,43,0,0,0,0,0,383 +NA,NA,,2018-19,Wachusett - Wachusett Regional High,7750505,0,0,0,0,0,0,0,0,0,0,480,526,513,569,15,2103 +NA,NA,,2018-19,Wakefield - Dolbeare,3050005,0,88,91,101,90,87,0,0,0,0,0,0,0,0,0,457 +NA,NA,,2018-19,Wakefield - Early Childhood Center at the Doyle School,3050001,142,0,0,0,0,0,0,0,0,0,0,0,0,0,0,142 +NA,NA,,2018-19,Wakefield - Galvin Middle School,3050310,0,0,0,0,0,0,267,268,253,251,0,0,0,0,0,1039 +NA,NA,,2018-19,Wakefield - Greenwood,3050020,0,43,44,44,42,47,0,0,0,0,0,0,0,0,0,220 +NA,NA,,2018-19,Wakefield - Wakefield Memorial High,3050505,0,0,0,0,0,0,0,0,0,0,246,257,262,227,0,992 +NA,NA,,2018-19,Wakefield - Walton,3050040,0,46,44,46,46,49,0,0,0,0,0,0,0,0,0,231 +NA,NA,,2018-19,Wakefield - Woodville School,3050015,0,87,81,78,75,83,0,0,0,0,0,0,0,0,0,404 +NA,NA,,2018-19,Wales - Wales Elementary,3060005,17,12,17,13,27,15,26,20,0,0,0,0,0,0,0,147 +NA,NA,,2018-19,Walpole - Bird Middle,3070305,0,0,0,0,0,0,0,130,169,150,0,0,0,0,0,449 +NA,NA,,2018-19,Walpole - Boyden,3070010,0,58,61,56,58,50,59,0,0,0,0,0,0,0,0,342 +NA,NA,,2018-19,Walpole - Daniel Feeney Preschool Center,3070002,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64 +NA,NA,,2018-19,Walpole - Eleanor N Johnson Middle,3070310,0,0,0,0,0,0,0,155,143,139,0,0,0,0,0,437 +NA,NA,,2018-19,Walpole - Elm Street School,3070005,0,66,69,78,79,68,66,0,0,0,0,0,0,0,0,426 +NA,NA,,2018-19,Walpole - Fisher,3070015,0,73,74,63,81,77,93,0,0,0,0,0,0,0,0,461 +NA,NA,,2018-19,Walpole - Old Post Road,3070018,0,73,69,79,65,81,79,0,0,0,0,0,0,0,0,446 +NA,NA,,2018-19,Walpole - Walpole High,3070505,0,0,0,0,0,0,0,0,0,0,278,270,278,294,8,1128 +NA,NA,,2018-19,Waltham - Douglas MacArthur Elementary School,3080032,0,88,70,77,79,76,74,0,0,0,0,0,0,0,0,464 +NA,NA,,2018-19,Waltham - Henry Whittemore Elementary School,3080065,0,69,62,77,70,55,81,0,0,0,0,0,0,0,0,414 +NA,NA,,2018-19,Waltham - James Fitzgerald Elementary School,3080060,0,78,76,58,63,73,67,0,0,0,0,0,0,0,0,415 +NA,NA,,2018-19,Waltham - John F Kennedy Middle,3080404,0,0,0,0,0,0,0,174,175,180,0,0,0,0,0,529 +NA,NA,,2018-19,Waltham - John W. McDevitt Middle School,3080415,0,0,0,0,0,0,0,247,226,204,0,0,0,0,0,677 +NA,NA,,2018-19,Waltham - Northeast Elementary School,3080040,66,69,95,69,96,85,72,0,0,0,0,0,0,0,0,552 +NA,NA,,2018-19,Waltham - Thomas R Plympton Elementary School,3080050,0,70,68,65,79,70,76,0,0,0,0,0,0,0,0,428 +NA,NA,,2018-19,Waltham - Waltham Public Schools Dual Language Program,3080001,0,37,38,38,0,0,0,0,0,0,0,0,0,0,0,113 +NA,NA,,2018-19,Waltham - Waltham Sr High,3080505,0,0,0,0,0,0,0,0,0,0,384,413,426,385,1,1609 +NA,NA,,2018-19,Waltham - William F. Stanley Elementary School,3080005,69,54,59,69,67,53,61,0,0,0,0,0,0,0,0,432 +NA,NA,,2018-19,Ware - Stanley M Koziol Elementary School,3090020,65,84,72,85,89,0,0,0,0,0,0,0,0,0,0,395 +NA,NA,,2018-19,Ware - Ware Junior/Senior High School,3090505,0,0,0,0,0,0,0,0,107,94,82,73,52,65,3,476 +NA,NA,,2018-19,Ware - Ware Middle School,3090305,0,0,0,0,0,99,101,118,0,0,0,0,0,0,0,318 +NA,NA,,2018-19,Wareham - John William Decas,3100003,81,169,199,154,0,0,0,0,0,0,0,0,0,0,0,603 +NA,NA,,2018-19,Wareham - Minot Forest,3100017,0,0,0,0,166,192,0,0,0,0,0,0,0,0,0,358 +NA,NA,,2018-19,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,0,0,0,0,0,0,0,1,15,14,28,0,58 +NA,NA,,2018-19,Wareham - Wareham Middle,3100305,0,0,0,0,0,0,183,167,167,0,0,0,0,0,0,517 +NA,NA,,2018-19,Wareham - Wareham Senior High,3100505,0,0,0,0,0,0,0,0,0,167,138,83,100,94,8,590 +NA,NA,,2018-19,Watertown - Cunniff,3140015,15,60,57,47,43,63,45,0,0,0,0,0,0,0,0,330 +NA,NA,,2018-19,Watertown - Hosmer,3140020,95,116,105,107,77,72,83,0,0,0,0,0,0,0,0,655 +NA,NA,,2018-19,Watertown - James Russell Lowell,3140025,14,69,74,67,57,64,59,0,0,0,0,0,0,0,0,404 +NA,NA,,2018-19,Watertown - Watertown High,3140505,0,0,0,0,0,0,0,0,0,0,164,185,150,153,7,659 +NA,NA,,2018-19,Watertown - Watertown Middle,3140305,0,0,0,0,0,0,0,202,173,185,0,0,0,0,0,560 +NA,NA,,2018-19,Wayland - Claypit Hill School,3150005,0,78,100,98,87,75,97,0,0,0,0,0,0,0,0,535 +NA,NA,,2018-19,Wayland - Happy Hollow School,3150015,0,53,65,62,61,69,65,0,0,0,0,0,0,0,0,375 +NA,NA,,2018-19,Wayland - Loker School,3150020,0,39,60,44,46,41,40,0,0,0,0,0,0,0,0,270 +NA,NA,,2018-19,Wayland - Wayland High School,3150505,0,0,0,0,0,0,0,0,0,0,199,235,208,204,0,846 +NA,NA,,2018-19,Wayland - Wayland Middle School,3150305,0,0,0,0,0,0,0,242,217,210,0,0,0,0,0,669 +NA,NA,,2018-19,Webster - Bartlett High School,3160505,0,0,0,0,0,0,0,0,0,0,127,107,108,112,4,458 +NA,NA,,2018-19,Webster - Park Avenue Elementary,3160015,51,151,148,162,137,154,0,0,0,0,0,0,0,0,0,803 +NA,NA,,2018-19,Webster - Webster Middle School,3160315,0,0,0,0,0,0,142,154,124,150,0,0,0,0,0,570 +NA,NA,,2018-19,Wellesley - Ernest F Upham,3170050,0,22,44,42,32,44,48,0,0,0,0,0,0,0,0,232 +NA,NA,,2018-19,Wellesley - Hunnewell,3170025,0,39,44,41,41,49,46,0,0,0,0,0,0,0,0,260 +NA,NA,,2018-19,Wellesley - John D Hardy,3170020,0,42,44,43,54,45,59,0,0,0,0,0,0,0,0,287 +NA,NA,,2018-19,Wellesley - Joseph E Fiske,3170015,0,51,44,51,42,51,52,0,0,0,0,0,0,0,0,291 +NA,NA,,2018-19,Wellesley - Katharine Lee Bates,3170005,0,54,56,58,63,55,71,0,0,0,0,0,0,0,0,357 +NA,NA,,2018-19,Wellesley - Preschool at Wellesley Schools,3170001,100,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100 +NA,NA,,2018-19,Wellesley - Schofield,3170045,0,61,65,57,64,67,68,0,0,0,0,0,0,0,0,382 +NA,NA,,2018-19,Wellesley - Sprague Elementary School,3170048,0,55,61,66,57,62,65,0,0,0,0,0,0,0,0,366 +NA,NA,,2018-19,Wellesley - Wellesley Middle,3170305,0,0,0,0,0,0,0,394,379,386,0,0,0,0,0,1159 +NA,NA,,2018-19,Wellesley - Wellesley Sr High,3170505,0,0,0,0,0,0,0,0,0,0,355,405,379,384,6,1529 +NA,NA,,2018-19,Wellfleet - Wellfleet Elementary,3180005,14,17,16,16,16,15,11,0,0,0,0,0,0,0,0,105 +NA,NA,,2018-19,West Boylston - Major Edwards Elementary,3220005,24,68,61,60,64,59,68,0,0,0,0,0,0,0,0,404 +NA,NA,,2018-19,West Boylston - West Boylston Junior/Senior High,3220505,0,0,0,0,0,0,0,71,70,72,88,66,58,61,0,486 +NA,NA,,2018-19,West Bridgewater - Howard School,3230305,0,0,0,0,0,84,101,98,0,0,0,0,0,0,0,283 +NA,NA,,2018-19,West Bridgewater - Rose L Macdonald,3230003,0,0,85,90,87,0,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2018-19,West Bridgewater - Spring Street School,3230005,67,114,0,0,0,0,0,0,0,0,0,0,0,0,0,181 +NA,NA,,2018-19,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,0,0,0,0,0,97,112,104,100,111,102,0,626 +NA,NA,,2018-19,West Springfield - Cowing Early Childhood,3320001,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116 +NA,NA,,2018-19,West Springfield - John Ashley,3320005,0,249,0,0,0,0,0,0,0,0,0,0,0,0,0,249 +NA,NA,,2018-19,West Springfield - John R Fausey,3320010,0,1,77,77,97,95,112,0,0,0,0,0,0,0,0,459 +NA,NA,,2018-19,West Springfield - Memorial,3320025,0,0,32,41,43,46,52,0,0,0,0,0,0,0,0,214 +NA,NA,,2018-19,West Springfield - Mittineague,3320030,0,0,33,42,30,35,30,0,0,0,0,0,0,0,0,170 +NA,NA,,2018-19,West Springfield - Philip G Coburn,3320007,0,48,99,111,92,98,68,0,0,0,0,0,0,0,0,516 +NA,NA,,2018-19,West Springfield - Tatham,3320040,0,4,48,50,48,56,49,0,0,0,0,0,0,0,0,255 +NA,NA,,2018-19,West Springfield - West Springfield High,3320505,0,0,0,0,0,0,0,0,0,0,320,301,296,282,16,1215 +NA,NA,,2018-19,West Springfield - West Springfield Middle,3320305,0,0,0,0,0,0,0,305,293,321,0,0,0,0,0,919 +NA,NA,,2018-19,Westborough - Annie E Fales,3210010,0,90,74,96,94,0,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2018-19,Westborough - Elsie A Hastings Elementary,3210025,127,97,84,101,93,0,0,0,0,0,0,0,0,0,0,502 +NA,NA,,2018-19,Westborough - J Harding Armstrong,3210005,0,85,112,121,97,0,0,0,0,0,0,0,0,0,0,415 +NA,NA,,2018-19,Westborough - Mill Pond School,3210045,0,0,0,0,0,283,308,321,0,0,0,0,0,0,0,912 +NA,NA,,2018-19,Westborough - Sarah W Gibbons Middle,3210305,0,0,0,0,0,0,0,0,312,278,0,0,0,0,0,590 +NA,NA,,2018-19,Westborough - Westborough High,3210505,0,0,0,0,0,0,0,0,0,0,308,314,259,271,0,1152 +NA,NA,,2018-19,Westfield - Abner Gibbs,3250020,0,42,47,48,50,31,0,0,0,0,0,0,0,0,0,218 +NA,NA,,2018-19,Westfield - Fort Meadow Early Childhood Center,3250003,183,0,0,0,0,0,0,0,0,0,0,0,0,0,0,183 +NA,NA,,2018-19,Westfield - Franklin Ave,3250015,0,41,37,44,48,41,0,0,0,0,0,0,0,0,0,211 +NA,NA,,2018-19,Westfield - Highland,3250025,0,79,58,61,68,74,0,0,0,0,0,0,0,0,0,340 +NA,NA,,2018-19,Westfield - Munger Hill,3250033,0,68,66,75,81,71,0,0,0,0,0,0,0,0,0,361 +NA,NA,,2018-19,Westfield - Paper Mill,3250036,0,76,58,64,61,69,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2018-19,Westfield - Southampton Road,3250040,0,65,57,65,65,72,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2018-19,Westfield - Westfield High,3250505,0,0,0,0,0,0,0,0,0,0,305,284,353,262,24,1228 +NA,NA,,2018-19,Westfield - Westfield Intermediate School,3250075,0,0,0,0,0,0,417,388,0,0,0,0,0,0,0,805 +NA,NA,,2018-19,Westfield - Westfield Middle School,3250310,0,0,0,0,0,0,0,0,413,389,0,0,0,0,0,802 +NA,NA,,2018-19,Westfield - Westfield Technical Academy,3250605,0,0,0,0,0,0,0,0,0,0,144,146,130,107,0,527 +NA,NA,,2018-19,Westford - Abbot Elementary,3260004,0,0,0,0,135,129,117,0,0,0,0,0,0,0,0,381 +NA,NA,,2018-19,Westford - Blanchard Middle,3260310,0,0,0,0,0,0,0,181,184,194,0,0,0,0,0,559 +NA,NA,,2018-19,Westford - Col John Robinson,3260025,0,79,118,106,0,0,0,0,0,0,0,0,0,0,0,303 +NA,NA,,2018-19,Westford - Day Elementary,3260007,0,0,0,0,117,128,104,0,0,0,0,0,0,0,0,349 +NA,NA,,2018-19,Westford - John A. Crisafulli Elementary School,3260045,0,0,0,0,112,120,116,0,0,0,0,0,0,0,0,348 +NA,NA,,2018-19,Westford - Millennium Elementary,3260013,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116 +NA,NA,,2018-19,Westford - Nabnasset,3260015,0,91,127,98,0,0,0,0,0,0,0,0,0,0,0,316 +NA,NA,,2018-19,Westford - Rita E. Miller Elementary School,3260055,0,95,119,93,0,0,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2018-19,Westford - Stony Brook School,3260330,0,0,0,0,0,0,0,204,208,254,0,0,0,0,0,666 +NA,NA,,2018-19,Westford - Westford Academy,3260505,0,0,0,0,0,0,0,0,0,0,397,444,433,447,3,1724 +NA,NA,,2018-19,Westhampton - Westhampton Elementary School,3270005,8,16,9,18,17,20,16,17,0,0,0,0,0,0,0,121 +NA,NA,,2018-19,Weston - Country,3300010,23,79,62,61,86,0,0,0,0,0,0,0,0,0,0,311 +NA,NA,,2018-19,Weston - Field Elementary School,3300012,0,0,0,0,0,152,148,0,0,0,0,0,0,0,0,300 +NA,NA,,2018-19,Weston - Weston High,3300505,0,0,0,0,0,0,0,0,0,0,164,169,173,201,0,707 +NA,NA,,2018-19,Weston - Weston Middle,3300305,0,0,0,0,0,0,0,181,160,156,0,0,0,0,0,497 +NA,NA,,2018-19,Weston - Woodland,3300015,22,60,60,80,66,0,0,0,0,0,0,0,0,0,0,288 +NA,NA,,2018-19,Westport - Alice A Macomber,3310015,48,102,107,108,0,0,0,0,0,0,0,0,0,0,0,365 +NA,NA,,2018-19,Westport - Westport Elementary,3310030,0,0,0,0,120,125,113,118,0,0,0,0,0,0,0,476 +NA,NA,,2018-19,Westport - Westport Junior/Senior High School,3310515,0,0,0,0,0,0,0,0,150,119,89,90,52,97,0,597 +NA,NA,,2018-19,Westwood - Deerfield School,3350010,0,22,20,32,36,40,31,0,0,0,0,0,0,0,0,181 +NA,NA,,2018-19,Westwood - Downey,3350012,1,61,48,43,46,39,43,0,0,0,0,0,0,0,0,281 +NA,NA,,2018-19,Westwood - E W Thurston Middle,3350305,0,0,0,0,0,0,0,234,257,255,0,0,0,0,0,746 +NA,NA,,2018-19,Westwood - Martha Jones,3350017,0,37,54,41,50,49,52,0,0,0,0,0,0,0,0,283 +NA,NA,,2018-19,Westwood - Paul Hanlon,3350015,0,32,46,32,36,38,42,0,0,0,0,0,0,0,0,226 +NA,NA,,2018-19,Westwood - Westwood High,3350505,0,0,0,0,0,0,0,0,0,0,257,249,239,264,0,1009 +NA,NA,,2018-19,Westwood - Westwood Integrated Preschool,3350050,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41 +NA,NA,,2018-19,Westwood - William E Sheehan,3350025,0,54,41,46,56,67,53,0,0,0,0,0,0,0,0,317 +NA,NA,,2018-19,Weymouth - Abigail Adams Middle School,3360310,0,0,0,0,0,0,454,431,0,0,0,0,0,0,0,885 +NA,NA,,2018-19,Weymouth - Academy Avenue,3360005,0,54,58,71,54,56,0,0,0,0,0,0,0,0,0,293 +NA,NA,,2018-19,Weymouth - Frederick C Murphy,3360050,0,24,40,45,53,52,0,0,0,0,0,0,0,0,0,214 +NA,NA,,2018-19,Weymouth - Johnson Early Childhood Center,3360003,194,0,0,0,0,0,0,0,0,0,0,0,0,0,0,194 +NA,NA,,2018-19,Weymouth - Lawrence W Pingree,3360065,0,44,34,35,42,38,0,0,0,0,0,0,0,0,0,193 +NA,NA,,2018-19,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,0,0,0,0,0,1,453,429,0,0,0,0,0,883 +NA,NA,,2018-19,Weymouth - Ralph Talbot,3360085,0,50,42,45,55,53,0,0,0,0,0,0,0,0,0,245 +NA,NA,,2018-19,Weymouth - Thomas V Nash,3360060,0,21,35,32,42,45,0,0,0,0,0,0,0,0,0,175 +NA,NA,,2018-19,Weymouth - Thomas W. Hamilton Primary School,3360105,0,54,61,66,70,63,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2018-19,Weymouth - Wessagusset,3360110,0,48,60,54,50,63,0,0,0,0,0,0,0,0,0,275 +NA,NA,,2018-19,Weymouth - Weymouth High School,3360505,0,0,0,0,0,0,0,0,0,0,501,442,463,455,2,1863 +NA,NA,,2018-19,Weymouth - William Seach,3360080,0,61,66,73,58,65,0,0,0,0,0,0,0,0,0,323 +NA,NA,,2018-19,Whately - Whately Elementary,3370005,19,17,14,19,14,17,18,21,0,0,0,0,0,0,0,139 +NA,NA,,2018-19,Whitman-Hanson - Hanson Middle School,7800315,0,0,0,0,0,0,104,116,124,135,0,0,0,0,0,479 +NA,NA,,2018-19,Whitman-Hanson - Indian Head,7800035,0,102,98,101,104,110,0,0,0,0,0,0,0,0,0,515 +NA,NA,,2018-19,Whitman-Hanson - John H Duval,7800030,0,60,77,78,66,80,82,0,0,0,0,0,0,0,0,443 +NA,NA,,2018-19,Whitman-Hanson - Louise A Conley,7800010,0,75,87,81,95,80,110,0,0,0,0,0,0,0,0,528 +NA,NA,,2018-19,Whitman-Hanson - Whitman Hanson Regional,7800505,104,0,0,0,0,0,0,0,0,0,290,295,281,303,4,1277 +NA,NA,,2018-19,Whitman-Hanson - Whitman Middle,7800310,0,0,0,0,0,0,0,205,177,198,0,0,0,0,0,580 +NA,NA,,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0,0,0,0,0,0,0,0,320,284,324,318,0,1246 +NA,NA,,2018-19,Williamsburg - Anne T. Dunphy School,3400020,13,18,17,17,25,20,20,17,0,0,0,0,0,0,0,147 +NA,NA,,2018-19,Wilmington - Boutwell,3420005,37,98,0,0,0,0,0,0,0,0,0,0,0,0,0,135 +NA,NA,,2018-19,Wilmington - North Intermediate,3420060,0,0,0,0,0,99,166,0,0,0,0,0,0,0,0,265 +NA,NA,,2018-19,Wilmington - Shawsheen Elementary,3420025,0,0,121,113,127,0,0,0,0,0,0,0,0,0,0,361 +NA,NA,,2018-19,Wilmington - West Intermediate,3420080,0,0,0,0,0,109,127,0,0,0,0,0,0,0,0,236 +NA,NA,,2018-19,Wilmington - Wildwood,3420015,43,128,0,0,0,0,0,0,0,0,0,0,0,0,0,171 +NA,NA,,2018-19,Wilmington - Wilmington High,3420505,0,0,0,0,0,0,0,0,0,0,208,196,217,208,0,829 +NA,NA,,2018-19,Wilmington - Wilmington Middle School,3420330,0,0,0,0,0,0,0,259,274,248,0,0,0,0,0,781 +NA,NA,,2018-19,Wilmington - Woburn Street,3420020,0,0,149,123,147,0,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2018-19,Winchendon - Memorial,3430040,0,102,102,99,0,0,0,0,0,0,0,0,0,0,0,303 +NA,NA,,2018-19,Winchendon - Murdock Academy for Success,3430405,0,0,0,0,0,0,0,0,0,0,13,7,12,7,0,39 +NA,NA,,2018-19,Winchendon - Murdock High School,3430515,0,0,0,0,0,0,0,0,0,0,83,67,67,83,0,300 +NA,NA,,2018-19,Winchendon - Murdock Middle School,3430315,0,0,0,0,0,0,0,109,87,86,0,0,0,0,0,282 +NA,NA,,2018-19,Winchendon - Toy Town Elementary,3430050,0,0,0,0,93,84,86,0,0,0,0,0,0,0,0,263 +NA,NA,,2018-19,Winchendon - Winchendon PreSchool Program,3430010,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78 +NA,NA,,2018-19,Winchester - Ambrose Elementary,3440045,0,54,49,64,76,76,75,0,0,0,0,0,0,0,0,394 +NA,NA,,2018-19,Winchester - Lincoln Elementary,3440005,0,62,65,83,67,81,73,0,0,0,0,0,0,0,0,431 +NA,NA,,2018-19,Winchester - Lynch Elementary,3440020,48,89,88,81,79,59,91,0,0,0,0,0,0,0,0,535 +NA,NA,,2018-19,Winchester - McCall Middle,3440305,0,0,0,0,0,0,0,353,377,374,0,0,0,0,0,1104 +NA,NA,,2018-19,Winchester - Muraco Elementary,3440040,0,52,60,66,59,64,75,0,0,0,0,0,0,0,0,376 +NA,NA,,2018-19,Winchester - Vinson-Owen Elementary,3440025,23,60,64,55,78,76,84,0,0,0,0,0,0,0,0,440 +NA,NA,,2018-19,Winchester - Winchester High School,3440505,0,0,0,0,0,0,0,0,0,0,344,366,339,310,0,1359 +NA,NA,,2018-19,Winthrop - Arthur T. Cummings Elementary School,3460020,0,0,0,0,132,148,166,0,0,0,0,0,0,0,0,446 +NA,NA,,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,42,154,139,145,0,0,0,0,0,0,0,0,0,0,0,480 +NA,NA,,2018-19,Winthrop - Winthrop High School,3460505,0,0,0,0,0,0,0,0,0,0,149,156,137,153,0,595 +NA,NA,,2018-19,Winthrop - Winthrop Middle School,3460305,0,0,0,0,0,0,0,144,164,154,0,0,0,0,0,462 +NA,NA,,2018-19,Woburn - Clyde Reeves,3470040,35,70,48,63,52,58,81,0,0,0,0,0,0,0,0,407 +NA,NA,,2018-19,Woburn - Daniel L Joyce Middle School,3470410,0,0,0,0,0,0,0,191,176,157,0,0,0,0,0,524 +NA,NA,,2018-19,Woburn - Goodyear Elementary School,3470005,0,58,38,48,49,53,58,0,0,0,0,0,0,0,0,304 +NA,NA,,2018-19,Woburn - Hurld-Wyman Elementary School,3470020,0,59,70,70,71,77,46,0,0,0,0,0,0,0,0,393 +NA,NA,,2018-19,Woburn - John F Kennedy Middle School,3470405,0,0,0,0,0,0,0,175,150,146,0,0,0,0,0,471 +NA,NA,,2018-19,Woburn - Linscott-Rumford,3470025,0,35,38,38,31,30,31,0,0,0,0,0,0,0,0,203 +NA,NA,,2018-19,Woburn - Malcolm White,3470055,0,48,60,49,56,53,56,0,0,0,0,0,0,0,0,322 +NA,NA,,2018-19,Woburn - Mary D Altavesta,3470065,0,47,42,39,50,40,38,0,0,0,0,0,0,0,0,256 +NA,NA,,2018-19,Woburn - Shamrock,3470043,123,32,40,33,38,37,40,0,0,0,0,0,0,0,0,343 +NA,NA,,2018-19,Woburn - Woburn High,3470505,0,0,0,0,0,0,0,0,0,0,341,307,305,348,0,1301 +NA,NA,,2018-19,Worcester - Belmont Street Community,3480020,50,102,82,72,77,74,64,88,0,0,0,0,0,0,0,609 +NA,NA,,2018-19,Worcester - Burncoat Middle School,3480405,0,0,0,0,0,0,0,0,362,323,0,0,0,0,0,685 +NA,NA,,2018-19,Worcester - Burncoat Senior High,3480503,0,0,0,0,0,0,0,0,0,0,290,270,263,244,14,1081 +NA,NA,,2018-19,Worcester - Burncoat Street,3480035,0,29,46,45,52,48,50,39,0,0,0,0,0,0,0,309 +NA,NA,,2018-19,Worcester - Canterbury,3480045,41,40,46,52,43,50,42,51,0,0,0,0,0,0,0,365 +NA,NA,,2018-19,Worcester - Chandler Elementary Community,3480050,0,69,66,73,81,79,64,75,0,0,0,0,0,0,0,507 +NA,NA,,2018-19,Worcester - Chandler Magnet,3480052,12,77,63,61,68,76,71,43,0,0,0,0,0,0,0,471 +NA,NA,,2018-19,Worcester - City View,3480053,23,58,78,63,76,73,52,50,0,0,0,0,0,0,0,473 +NA,NA,,2018-19,Worcester - Claremont Academy,3480350,0,0,0,0,0,0,0,0,108,83,100,69,99,87,0,546 +NA,NA,,2018-19,Worcester - Clark St Community,3480055,51,39,37,46,31,26,20,24,0,0,0,0,0,0,0,274 +NA,NA,,2018-19,Worcester - Columbus Park,3480060,13,60,78,62,58,61,68,65,0,0,0,0,0,0,0,465 +NA,NA,,2018-19,Worcester - Doherty Memorial High,3480512,0,0,0,0,0,0,0,0,0,0,361,414,400,341,13,1529 +NA,NA,,2018-19,Worcester - Elm Park Community,3480095,0,75,68,49,64,71,60,69,0,0,0,0,0,0,0,456 +NA,NA,,2018-19,Worcester - Flagg Street,3480090,0,56,53,53,64,61,55,46,0,0,0,0,0,0,0,388 +NA,NA,,2018-19,Worcester - Forest Grove Middle,3480415,0,0,0,0,0,0,0,0,474,502,0,0,0,0,0,976 +NA,NA,,2018-19,Worcester - Francis J McGrath Elementary,3480177,0,47,43,32,32,39,29,23,0,0,0,0,0,0,0,245 +NA,NA,,2018-19,Worcester - Gates Lane,3480110,67,86,73,68,65,65,77,52,0,0,0,0,0,0,0,553 +NA,NA,,2018-19,Worcester - Goddard School/Science Technical,3480100,23,62,50,51,57,45,58,61,0,0,0,0,0,0,0,407 +NA,NA,,2018-19,Worcester - Grafton Street,3480115,0,57,59,63,53,66,64,40,0,0,0,0,0,0,0,402 +NA,NA,,2018-19,Worcester - Head Start,3480002,551,0,0,0,0,0,0,0,0,0,0,0,0,0,0,551 +NA,NA,,2018-19,Worcester - Heard Street,3480136,0,40,53,40,37,44,37,34,0,0,0,0,0,0,0,285 +NA,NA,,2018-19,Worcester - Jacob Hiatt Magnet,3480140,41,65,61,56,52,52,43,40,0,0,0,0,0,0,0,410 +NA,NA,,2018-19,Worcester - Lake View,3480145,0,46,59,45,47,41,55,36,0,0,0,0,0,0,0,329 +NA,NA,,2018-19,Worcester - Lincoln Street,3480160,0,50,58,24,39,23,25,36,0,0,0,0,0,0,0,255 +NA,NA,,2018-19,Worcester - May Street,3480175,0,37,44,45,42,60,51,53,0,0,0,0,0,0,0,332 +NA,NA,,2018-19,Worcester - Midland Street,3480185,0,42,36,28,28,35,37,24,0,0,0,0,0,0,0,230 +NA,NA,,2018-19,Worcester - Nelson Place,3480200,48,85,75,78,54,83,63,63,0,0,0,0,0,0,0,549 +NA,NA,,2018-19,Worcester - Norrback Avenue,3480202,73,90,71,62,72,72,79,60,0,0,0,0,0,0,0,579 +NA,NA,,2018-19,Worcester - North High,3480515,0,0,0,0,0,0,0,0,0,0,369,339,281,274,16,1279 +NA,NA,,2018-19,Worcester - Quinsigamond,3480210,29,103,111,103,81,96,119,103,0,0,0,0,0,0,0,745 +NA,NA,,2018-19,Worcester - Rice Square,3480215,0,73,82,54,72,62,69,64,0,0,0,0,0,0,0,476 +NA,NA,,2018-19,Worcester - Roosevelt,3480220,61,100,94,95,80,98,94,66,0,0,0,0,0,0,0,688 +NA,NA,,2018-19,Worcester - South High Community,3480520,0,0,0,0,0,0,0,0,0,0,376,338,347,318,18,1397 +NA,NA,,2018-19,Worcester - Sullivan Middle,3480423,0,0,0,0,0,0,0,48,424,430,0,0,0,0,0,902 +NA,NA,,2018-19,Worcester - Tatnuck,3480230,25,69,53,57,51,51,55,49,0,0,0,0,0,0,0,410 +NA,NA,,2018-19,Worcester - Thorndyke Road,3480235,0,42,56,66,52,48,57,51,0,0,0,0,0,0,0,372 +NA,NA,,2018-19,Worcester - Union Hill School,3480240,0,48,65,61,54,64,68,55,0,0,0,0,0,0,0,415 +NA,NA,,2018-19,Worcester - University Pk Campus School,3480285,0,0,0,0,0,0,0,0,44,44,38,39,40,35,0,240 +NA,NA,,2018-19,Worcester - Vernon Hill School,3480280,55,86,51,60,48,56,80,81,0,0,0,0,0,0,0,517 +NA,NA,,2018-19,Worcester - Wawecus Road School,3480026,0,12,16,19,24,23,28,22,0,0,0,0,0,0,0,144 +NA,NA,,2018-19,Worcester - West Tatnuck,3480260,51,43,57,43,38,47,48,44,0,0,0,0,0,0,0,371 +NA,NA,,2018-19,Worcester - Woodland Academy,3480030,0,79,85,92,73,81,100,90,0,0,0,0,0,0,0,600 +NA,NA,,2018-19,Worcester - Worcester Arts Magnet School,3480225,27,59,59,47,57,55,59,43,0,0,0,0,0,0,0,406 +NA,NA,,2018-19,Worcester - Worcester East Middle,3480420,0,0,0,0,0,0,0,0,384,382,0,0,0,0,0,766 +NA,NA,,2018-19,Worcester - Worcester Technical High,3480605,0,0,0,0,0,0,0,0,0,0,386,374,337,329,0,1426 +NA,NA,,2018-19,Worthington - R. H. Conwell,3490010,17,10,13,7,9,8,7,3,0,0,0,0,0,0,0,74 +NA,NA,,2018-19,Wrentham - Charles E Roderick,3500010,0,0,0,0,0,131,158,153,0,0,0,0,0,0,0,442 +NA,NA,,2018-19,Wrentham - Delaney,3500003,91,106,128,124,118,0,0,0,0,0,0,0,0,0,0,567 +NA,NA,,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,0,117,116,113,117,122,118,115,123,120,101,88,84,91,0,1425 +NA,NA,,2017-18,Abington - Abington Early Education Program,10001,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,84 +NA,NA,,2017-18,Abington - Abington High,10505,0,0,0,0,0,0,0,0,0,0,153,130,111,123,3,520 +NA,NA,,2017-18,Abington - Abington Middle School,10405,0,0,0,0,0,0,154,188,178,167,0,0,0,0,0,687 +NA,NA,,2017-18,Abington - Beaver Brook Elementary,10020,0,137,155,132,0,0,0,0,0,0,0,0,0,0,0,424 +NA,NA,,2017-18,Abington - Woodsdale Elementary School,10015,0,0,0,0,168,151,0,0,0,0,0,0,0,0,0,319 +NA,NA,,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,0,0,0,0,0,0,80,76,76,81,69,56,48,38,0,524 +NA,NA,,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,0,0,0,0,0,0,0,0,0,427,447,501,452,0,1827 +NA,NA,,2017-18,Acton-Boxborough - Blanchard Memorial School,6000005,0,78,59,62,55,50,69,74,0,0,0,0,0,0,0,447 +NA,NA,,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,38,44,64,71,73,69,68,0,0,0,0,0,0,0,427 +NA,NA,,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,111 +NA,NA,,2017-18,Acton-Boxborough - Luther Conant School,6000030,0,60,56,45,47,73,93,68,0,0,0,0,0,0,0,442 +NA,NA,,2017-18,Acton-Boxborough - McCarthy-Towne School,6000015,0,75,64,65,70,73,70,70,0,0,0,0,0,0,0,487 +NA,NA,,2017-18,Acton-Boxborough - Merriam School,6000010,0,60,63,64,72,96,72,71,0,0,0,0,0,0,0,498 +NA,NA,,2017-18,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,41,57,65,73,50,47,69,0,0,0,0,0,0,0,402 +NA,NA,,2017-18,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,0,0,0,0,0,0,0,486,478,0,0,0,0,0,964 +NA,NA,,2017-18,Acushnet - Acushnet Elementary School,30025,51,108,81,99,105,106,0,0,0,0,0,0,0,0,0,550 +NA,NA,,2017-18,Acushnet - Albert F Ford Middle School,30305,0,0,0,0,0,0,103,114,119,77,0,0,0,0,0,413 +NA,NA,,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,6030020,53,85,79,80,106,0,0,0,0,0,0,0,0,0,0,403 +NA,NA,,2017-18,Adams-Cheshire - Hoosac Valley High School,6030505,0,0,0,0,0,0,0,0,0,115,52,64,95,85,6,417 +NA,NA,,2017-18,Adams-Cheshire - Hoosac Valley Middle School,6030315,0,0,0,0,0,111,106,92,92,0,0,0,0,0,0,401 +NA,NA,,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,0,0,0,0,0,0,144,158,159,158,149,121,104,0,993 +NA,NA,,2017-18,Agawam - Agawam Early Childhood Center,50003,163,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163 +NA,NA,,2017-18,Agawam - Agawam High,50505,0,0,0,0,0,0,0,0,0,0,318,279,291,277,10,1175 +NA,NA,,2017-18,Agawam - Agawam Junior High,50405,0,0,0,0,0,0,0,0,311,262,0,0,0,0,0,573 +NA,NA,,2017-18,Agawam - Benjamin J Phelps,50020,0,68,92,65,78,85,0,0,0,0,0,0,0,0,0,388 +NA,NA,,2017-18,Agawam - Clifford M Granger,50010,0,36,64,44,69,67,0,0,0,0,0,0,0,0,0,280 +NA,NA,,2017-18,Agawam - James Clark School,50030,0,57,68,71,64,80,0,0,0,0,0,0,0,0,0,340 +NA,NA,,2017-18,Agawam - Roberta G. Doering School,50303,0,0,0,0,0,0,271,300,0,1,0,0,0,0,0,572 +NA,NA,,2017-18,Agawam - Robinson Park,50025,0,72,80,78,61,82,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,0,50,49,46,47,46,46,46,44,39,0,0,0,0,0,413 +NA,NA,,2017-18,Amesbury - Amesbury Elementary,70005,25,74,65,73,86,72,0,0,0,0,0,0,0,0,0,395 +NA,NA,,2017-18,Amesbury - Amesbury High,70505,0,0,0,0,0,0,0,0,0,0,156,146,141,147,2,592 +NA,NA,,2017-18,Amesbury - Amesbury Innovation High School,70515,0,0,0,0,0,0,0,0,0,0,9,12,6,13,0,40 +NA,NA,,2017-18,Amesbury - Amesbury Middle,70013,0,0,0,0,0,0,167,167,167,176,0,0,0,0,0,677 +NA,NA,,2017-18,Amesbury - Charles C Cashman Elementary,70010,28,71,72,92,91,89,0,0,0,0,0,0,0,0,0,443 +NA,NA,,2017-18,Amherst - Crocker Farm Elementary,80009,65,36,41,51,53,58,39,65,0,0,0,0,0,0,0,408 +NA,NA,,2017-18,Amherst - Fort River Elementary,80020,0,33,45,46,43,45,73,50,0,0,0,0,0,0,0,335 +NA,NA,,2017-18,Amherst - Wildwood Elementary,80050,0,52,52,58,56,56,70,59,0,0,0,0,0,0,0,403 +NA,NA,,2017-18,Amherst-Pelham - Amherst Regional High,6050505,0,0,0,0,0,0,0,0,0,0,241,233,221,228,10,933 +NA,NA,,2017-18,Amherst-Pelham - Amherst Regional Middle School,6050405,0,0,0,0,0,0,0,0,194,216,0,0,0,0,0,410 +NA,NA,,2017-18,Andover - Andover High,90505,0,0,0,0,0,0,0,0,0,0,472,427,454,411,18,1782 +NA,NA,,2017-18,Andover - Andover West Middle,90310,0,0,0,0,0,0,0,176,181,168,0,0,0,0,0,525 +NA,NA,,2017-18,Andover - Bancroft Elementary,90003,0,91,78,94,95,105,115,0,0,0,0,0,0,0,0,578 +NA,NA,,2017-18,Andover - Doherty Middle,90305,0,0,0,0,0,0,0,185,202,169,0,0,0,0,0,556 +NA,NA,,2017-18,Andover - Henry C Sanborn Elementary,90010,0,51,58,70,69,67,73,0,0,0,0,0,0,0,0,388 +NA,NA,,2017-18,Andover - High Plain Elementary,90004,0,59,80,78,81,106,96,0,0,0,0,0,0,0,0,500 +NA,NA,,2017-18,Andover - Shawsheen School,90005,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85 +NA,NA,,2017-18,Andover - South Elementary,90020,0,77,79,93,68,87,87,0,0,0,0,0,0,0,0,491 +NA,NA,,2017-18,Andover - West Elementary,90025,0,85,103,97,113,97,113,0,0,0,0,0,0,0,0,608 +NA,NA,,2017-18,Andover - Wood Hill Middle School,90350,0,0,0,0,0,0,0,143,125,143,0,0,0,0,0,411 +NA,NA,,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,0,0,0,0,0,0,0,103,103,102,90,0,0,0,0,398 +NA,NA,,2017-18,Arlington - Arlington High,100505,0,0,0,0,0,0,0,0,0,0,350,321,339,315,0,1325 +NA,NA,,2017-18,Arlington - Brackett,100010,0,78,91,68,94,87,70,0,0,0,0,0,0,0,0,488 +NA,NA,,2017-18,Arlington - Cyrus E Dallin,100025,0,73,90,74,79,87,78,0,0,0,0,0,0,0,0,481 +NA,NA,,2017-18,Arlington - Hardy,100030,0,90,90,77,73,66,62,0,0,0,0,0,0,0,0,458 +NA,NA,,2017-18,Arlington - John A Bishop,100005,0,64,77,70,71,73,65,0,0,0,0,0,0,0,0,420 +NA,NA,,2017-18,Arlington - M Norcross Stratton,100055,0,72,69,72,59,60,70,0,0,0,0,0,0,0,0,402 +NA,NA,,2017-18,Arlington - Menotomy Preschool,100038,85,0,0,0,0,0,0,0,0,0,0,0,0,0,0,85 +NA,NA,,2017-18,Arlington - Ottoson Middle,100410,0,0,0,0,0,0,0,442,415,401,0,0,0,0,0,1258 +NA,NA,,2017-18,Arlington - Peirce,100045,0,67,50,46,45,49,48,0,0,0,0,0,0,0,0,305 +NA,NA,,2017-18,Arlington - Thompson,100050,0,78,88,79,86,77,81,0,0,0,0,0,0,0,0,489 +NA,NA,,2017-18,Ashburnham-Westminster - Briggs Elementary,6100025,65,72,71,73,92,94,86,0,0,0,0,0,0,0,0,553 +NA,NA,,2017-18,Ashburnham-Westminster - Meetinghouse School,6100010,0,79,83,0,0,0,0,0,0,0,0,0,0,0,0,162 +NA,NA,,2017-18,Ashburnham-Westminster - Oakmont Regional High School,6100505,0,0,0,0,0,0,0,0,0,0,177,181,161,183,17,719 +NA,NA,,2017-18,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0,0,0,0,0,190,199,184,0,0,0,0,0,573 +NA,NA,,2017-18,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,0,97,81,101,98,0,0,0,0,0,0,0,0,377 +NA,NA,,2017-18,Ashland - Ashland High,140505,0,0,0,0,0,0,0,0,0,0,206,207,177,179,0,769 +NA,NA,,2017-18,Ashland - Ashland Middle,140405,0,0,0,0,0,0,0,207,186,208,0,0,0,0,0,601 +NA,NA,,2017-18,Ashland - David Mindess,140015,0,0,0,0,220,211,216,0,0,0,0,0,0,0,0,647 +NA,NA,,2017-18,Ashland - Henry E Warren Elementary,140010,0,202,221,189,0,0,0,0,0,0,0,0,0,0,0,612 +NA,NA,,2017-18,Ashland - William Pittaway Elementary,140005,127,0,0,0,0,0,0,0,0,0,0,0,0,0,0,127 +NA,NA,,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0,0,0,0,0,0,0,0,0,0,300,284,275,254,0,1113 +NA,NA,,2017-18,Athol-Royalston - Athol Community Elementary School,6150020,93,104,107,99,98,101,0,0,0,0,0,0,0,0,0,602 +NA,NA,,2017-18,Athol-Royalston - Athol High,6150505,0,0,0,0,0,0,0,0,0,0,95,93,72,102,6,368 +NA,NA,,2017-18,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,0,0,0,99,83,100,109,0,0,0,0,0,391 +NA,NA,,2017-18,Athol-Royalston - Royalston Community School,6150050,0,20,13,22,17,20,23,24,0,0,0,0,0,0,0,139 +NA,NA,,2017-18,Atlantis Charter (District) - Atlantis Charter School,4910550,0,107,106,106,106,106,110,110,109,109,75,59,66,43,0,1212 +NA,NA,,2017-18,Attleboro - A. Irvin Studley Elementary School,160001,0,66,66,93,82,77,0,0,0,0,0,0,0,0,0,384 +NA,NA,,2017-18,Attleboro - Attleboro Community Academy,160515,0,0,0,0,0,0,0,0,0,0,1,6,17,37,0,61 +NA,NA,,2017-18,Attleboro - Attleboro High,160505,0,0,0,0,0,0,0,0,0,0,456,441,405,390,11,1703 +NA,NA,,2017-18,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,0,0,0,165,144,132,141,0,0,0,0,0,582 +NA,NA,,2017-18,Attleboro - Early Learning Center,160008,184,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184 +NA,NA,,2017-18,Attleboro - Hill-Roberts Elementary School,160045,0,81,98,97,80,102,0,0,0,0,0,0,0,0,0,458 +NA,NA,,2017-18,Attleboro - Hyman Fine Elementary School,160040,0,94,99,102,84,104,0,0,0,0,0,0,0,0,0,483 +NA,NA,,2017-18,Attleboro - Peter Thacher Elementary School,160050,0,95,86,76,78,85,0,0,0,0,0,0,0,0,0,420 +NA,NA,,2017-18,Attleboro - Robert J. Coelho Middle School,160305,0,0,0,0,0,0,168,167,137,192,0,0,0,0,0,664 +NA,NA,,2017-18,Attleboro - Thomas Willett Elementary School,160035,0,89,76,85,94,89,0,0,0,0,0,0,0,0,0,433 +NA,NA,,2017-18,Attleboro - Wamsutta Middle School,160320,0,0,0,0,0,0,135,155,143,143,0,0,0,0,0,576 +NA,NA,,2017-18,Auburn - Auburn Middle,170305,0,0,0,0,0,0,0,198,218,216,0,0,0,0,0,632 +NA,NA,,2017-18,Auburn - Auburn Senior High,170505,68,0,0,0,0,0,0,0,0,0,181,184,191,174,3,801 +NA,NA,,2017-18,Auburn - Bryn Mawr,170010,0,96,109,94,0,0,0,0,0,0,0,0,0,0,0,299 +NA,NA,,2017-18,Auburn - Pakachoag School,170025,41,71,97,92,0,0,0,0,0,0,0,0,0,0,0,301 +NA,NA,,2017-18,Auburn - Swanson Road Intermediate School,170030,0,0,0,0,200,197,180,0,0,0,0,0,0,0,0,577 +NA,NA,,2017-18,Avon - Avon Middle High School,180510,0,0,0,0,0,0,0,0,65,59,39,53,54,39,3,312 +NA,NA,,2017-18,Avon - Ralph D Butler,180010,19,48,55,61,53,56,63,59,0,0,0,0,0,0,0,414 +NA,NA,,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,0,0,0,0,0,0,0,0,0,0,106,106,109,88,0,409 +NA,NA,,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,0,0,0,0,0,0,0,127,138,105,0,0,0,0,0,370 +NA,NA,,2017-18,Ayer Shirley School District - Lura A. White Elementary School,6160001,40,61,66,50,63,54,66,0,0,0,0,0,0,0,0,400 +NA,NA,,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,6160002,26,81,80,81,85,86,88,0,0,0,0,0,0,0,0,527 +NA,NA,,2017-18,Barnstable - Barnstable High,200505,0,0,0,0,0,0,0,0,0,391,369,356,383,345,13,1857 +NA,NA,,2017-18,Barnstable - Barnstable Intermediate School,200315,0,0,0,0,0,0,0,378,359,0,0,0,0,0,0,737 +NA,NA,,2017-18,Barnstable - Barnstable United Elementary School,200050,0,0,0,0,0,424,433,0,0,0,0,0,0,0,0,857 +NA,NA,,2017-18,Barnstable - Centerville Elementary,200010,0,65,48,68,78,0,0,0,0,0,0,0,0,0,0,259 +NA,NA,,2017-18,Barnstable - Enoch Cobb Early Learning Center,200001,135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,135 +NA,NA,,2017-18,Barnstable - Hyannis West Elementary,200025,0,79,77,90,88,0,0,0,0,0,0,0,0,0,0,334 +NA,NA,,2017-18,Barnstable - West Barnstable Elementary,200005,0,62,63,66,69,0,0,0,0,0,0,0,0,0,0,260 +NA,NA,,2017-18,Barnstable - West Villages Elementary School,200045,0,108,110,95,118,0,0,0,0,0,0,0,0,0,0,431 +NA,NA,,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,4270010,0,85,78,75,69,0,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,0,0,0,0,0,0,0,80,80,80,75,73,57,0,0,445 +NA,NA,,2017-18,Bedford - Bedford High,230505,42,0,0,0,0,0,0,0,0,0,180,210,209,217,0,858 +NA,NA,,2017-18,Bedford - John Glenn Middle,230305,0,0,0,0,0,0,0,181,189,213,0,0,0,0,0,583 +NA,NA,,2017-18,Bedford - Lt Elezer Davis,230010,0,197,199,201,0,0,0,0,0,0,0,0,0,0,0,597 +NA,NA,,2017-18,Bedford - Lt Job Lane School,230012,0,0,0,0,211,203,195,0,0,0,0,0,0,0,0,609 +NA,NA,,2017-18,Belchertown - Belchertown High,240505,0,0,0,0,0,0,0,0,0,0,183,178,182,163,5,711 +NA,NA,,2017-18,Belchertown - Chestnut Hill Community School,240006,0,0,0,0,0,181,186,187,0,0,0,0,0,0,0,554 +NA,NA,,2017-18,Belchertown - Cold Spring,240005,35,158,0,0,0,0,0,0,0,0,0,0,0,0,0,193 +NA,NA,,2017-18,Belchertown - Jabish Middle School,240025,0,0,0,0,0,0,0,0,206,192,0,0,0,0,0,398 +NA,NA,,2017-18,Belchertown - Swift River Elementary,240018,0,0,149,156,162,0,0,0,0,0,0,0,0,0,0,467 +NA,NA,,2017-18,Bellingham - Bellingham Early Childhood Center,250003,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110 +NA,NA,,2017-18,Bellingham - Bellingham High School,250505,0,0,0,0,0,0,0,0,0,181,158,149,145,130,0,763 +NA,NA,,2017-18,Bellingham - Bellingham Memorial School,250315,0,0,0,0,0,188,172,189,170,0,0,0,0,0,0,719 +NA,NA,,2017-18,Bellingham - Keough Memorial Academy,250510,0,0,0,0,0,0,0,0,0,4,4,9,8,9,0,34 +NA,NA,,2017-18,Bellingham - South Elementary,250020,0,75,80,83,97,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2017-18,Bellingham - Stall Brook,250025,0,81,81,70,90,0,0,0,0,0,0,0,0,0,0,322 +NA,NA,,2017-18,Belmont - Belmont High,260505,0,0,0,0,0,0,0,0,0,0,331,331,302,330,0,1294 +NA,NA,,2017-18,Belmont - Daniel Butler,260015,0,66,88,71,87,76,0,0,0,0,0,0,0,0,0,388 +NA,NA,,2017-18,Belmont - Mary Lee Burbank,260010,0,74,72,67,87,74,0,0,0,0,0,0,0,0,0,374 +NA,NA,,2017-18,Belmont - Roger E Wellington,260035,65,91,117,114,118,120,0,0,0,0,0,0,0,0,0,625 +NA,NA,,2017-18,Belmont - Winn Brook,260005,0,89,96,96,96,113,0,0,0,0,0,0,0,0,0,490 +NA,NA,,2017-18,Belmont - Winthrop L Chenery Middle,260305,0,0,0,0,0,0,371,361,343,346,0,0,0,0,0,1421 +NA,NA,,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,22,49,48,46,47,47,57,38,0,0,0,0,0,0,0,354 +NA,NA,,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,50,50,50,50,51,52,50,45,45,0,0,0,0,0,443 +NA,NA,,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,0,59,60,50,53,38,36,0,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,Berkley - Berkley Community School,270010,66,77,89,93,88,116,0,0,0,0,0,0,0,0,0,529 +NA,NA,,2017-18,Berkley - Berkley Middle School,270305,0,0,0,0,0,0,94,91,97,109,0,0,0,0,0,391 +NA,NA,,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,0,0,0,0,0,60,73,70,48,34,38,31,0,354 +NA,NA,,2017-18,Berkshire Hills - Monument Mt Regional High,6180505,0,0,0,0,0,0,0,0,0,0,128,118,145,126,6,523 +NA,NA,,2017-18,Berkshire Hills - Monument Valley Regional Middle School,6180310,0,0,0,0,0,0,78,75,101,120,0,0,0,0,0,374 +NA,NA,,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,14,84,48,73,61,68,0,0,0,0,0,0,0,0,0,348 +NA,NA,,2017-18,Berlin - Berlin Memorial,280005,15,27,28,31,21,29,32,0,0,0,0,0,0,0,0,183 +NA,NA,,2017-18,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,0,0,0,0,95,91,90,84,73,83,78,0,594 +NA,NA,,2017-18,Beverly - Ayers/Ryal Side School,300055,0,85,69,92,88,91,76,0,0,0,0,0,0,0,0,501 +NA,NA,,2017-18,Beverly - Beverly High,300505,0,0,0,0,0,0,0,0,0,0,319,312,272,339,2,1244 +NA,NA,,2017-18,Beverly - Briscoe Middle,300305,0,0,0,0,0,0,0,318,329,350,0,0,0,0,0,997 +NA,NA,,2017-18,Beverly - Centerville Elementary,300010,0,46,67,56,61,73,59,0,0,0,0,0,0,0,0,362 +NA,NA,,2017-18,Beverly - Cove Elementary,300015,0,105,74,81,82,73,77,0,0,0,0,0,0,0,0,492 +NA,NA,,2017-18,Beverly - Hannah Elementary,300033,0,63,55,55,78,58,82,0,0,0,0,0,0,0,0,391 +NA,NA,,2017-18,Beverly - McKeown School,300002,114,0,0,0,0,0,0,0,0,0,0,0,0,0,0,114 +NA,NA,,2017-18,Beverly - North Beverly Elementary,300040,0,65,53,63,59,92,66,0,0,0,0,0,0,0,1,399 +NA,NA,,2017-18,Billerica - Billerica Memorial High School,310505,144,0,0,0,0,0,0,0,0,0,272,347,290,281,6,1340 +NA,NA,,2017-18,Billerica - Eugene C Vining,310030,0,35,31,34,31,33,31,0,0,0,0,0,0,0,0,195 +NA,NA,,2017-18,Billerica - Frederick J Dutile,310007,0,44,45,45,49,38,52,0,0,0,0,0,0,0,0,273 +NA,NA,,2017-18,Billerica - Hajjar Elementary,310026,0,74,77,78,66,97,70,0,0,0,0,0,0,0,0,462 +NA,NA,,2017-18,Billerica - John F Kennedy,310012,0,49,43,64,54,56,47,0,0,0,0,0,0,0,0,313 +NA,NA,,2017-18,Billerica - Locke Middle,310310,0,0,0,0,0,0,0,162,172,172,0,0,0,0,0,506 +NA,NA,,2017-18,Billerica - Marshall Middle School,310305,0,0,0,0,0,0,0,225,210,217,0,0,0,0,0,652 +NA,NA,,2017-18,Billerica - Parker,310015,0,77,75,95,84,90,81,0,0,0,0,0,0,0,0,502 +NA,NA,,2017-18,Billerica - Thomas Ditson,310005,0,74,91,82,94,90,105,0,0,0,0,0,0,0,0,536 +NA,NA,,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0,0,0,0,0,0,0,0,311,311,305,296,0,1223 +NA,NA,,2017-18,Blackstone-Millville - A F Maloney,6220015,0,0,0,0,92,107,100,0,0,0,0,0,0,0,0,299 +NA,NA,,2017-18,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,0,0,0,0,0,0,0,0,101,106,107,91,2,407 +NA,NA,,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,0,0,0,0,0,130,141,155,0,0,0,0,0,426 +NA,NA,,2017-18,Blackstone-Millville - John F Kennedy Elementary,6220008,0,91,86,119,0,0,0,0,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,Blackstone-Millville - Millville Elementary,6220010,60,38,35,40,37,26,49,0,0,0,0,0,0,0,0,285 +NA,NA,,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,0,0,0,0,0,0,0,0,0,0,224,201,214,215,0,854 +NA,NA,,2017-18,Boston - Another Course To College,350541,0,0,0,0,0,0,0,0,0,0,52,55,63,54,0,224 +NA,NA,,2017-18,Boston - Baldwin Early Learning Center,350003,83,57,33,0,0,0,0,0,0,0,0,0,0,0,0,173 +NA,NA,,2017-18,Boston - Beethoven,350021,44,85,93,93,9,0,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2017-18,Boston - Blackstone,350390,76,78,82,78,85,92,84,0,0,0,0,0,0,0,0,575 +NA,NA,,2017-18,Boston - Boston Adult Academy,350548,0,0,0,0,0,0,0,0,0,0,0,0,121,33,0,154 +NA,NA,,2017-18,Boston - Boston Arts Academy,350546,0,0,0,0,0,0,0,0,0,0,128,136,125,80,0,469 +NA,NA,,2017-18,Boston - Boston Collaborative High School,350755,0,0,0,0,0,0,0,0,0,0,3,34,38,107,0,182 +NA,NA,,2017-18,Boston - Boston Community Leadership Academy,350558,0,0,0,0,0,0,0,0,0,0,120,131,116,107,0,474 +NA,NA,,2017-18,Boston - Boston International High School,350507,0,0,0,0,0,0,0,0,0,0,135,90,67,74,0,366 +NA,NA,,2017-18,Boston - Boston Latin,350560,0,0,0,0,0,0,0,0,417,380,443,411,390,412,0,2453 +NA,NA,,2017-18,Boston - Boston Latin Academy,350545,0,0,0,0,0,0,0,0,300,257,372,285,285,282,0,1781 +NA,NA,,2017-18,Boston - Boston Teachers Union School,350012,20,21,24,19,26,31,31,46,30,39,0,0,0,0,0,287 +NA,NA,,2017-18,Boston - Brighton High,350505,0,0,0,0,0,0,0,0,0,0,132,141,204,205,0,682 +NA,NA,,2017-18,Boston - Carter Developmental Center,350036,0,0,0,0,0,0,0,0,2,3,2,2,6,14,0,29 +NA,NA,,2017-18,Boston - Charles H Taylor,350054,21,75,85,72,107,98,69,0,0,0,0,0,0,0,0,527 +NA,NA,,2017-18,Boston - Charles Sumner,350052,61,101,85,90,90,89,65,0,0,0,0,0,0,0,0,581 +NA,NA,,2017-18,Boston - Charlestown High,350515,0,0,0,0,0,0,0,0,0,0,269,209,200,242,0,920 +NA,NA,,2017-18,Boston - Clarence R Edwards Middle,350430,0,0,0,0,0,0,0,102,105,99,0,0,0,0,0,306 +NA,NA,,2017-18,Boston - Community Academy,350518,0,0,0,0,0,0,0,0,0,0,14,14,22,29,0,79 +NA,NA,,2017-18,Boston - Community Academy of Science and Health,350581,0,0,0,0,0,0,0,0,0,0,103,63,126,97,0,389 +NA,NA,,2017-18,Boston - Curley K-8 School,350020,100,94,90,79,90,118,108,111,79,75,0,0,0,0,0,944 +NA,NA,,2017-18,Boston - Curtis Guild,350062,32,36,32,41,55,47,52,0,0,0,0,0,0,0,0,295 +NA,NA,,2017-18,Boston - Dante Alighieri Montessori School,350066,28,14,13,12,13,9,3,0,0,0,0,0,0,0,0,92 +NA,NA,,2017-18,Boston - David A Ellis,350072,58,74,83,68,74,54,46,0,0,0,0,0,0,0,0,457 +NA,NA,,2017-18,Boston - Dearborn,350074,0,0,0,0,0,0,0,62,56,62,64,35,39,36,0,354 +NA,NA,,2017-18,Boston - Dennis C Haley,350077,27,39,44,45,46,46,66,48,41,45,0,0,0,0,0,447 +NA,NA,,2017-18,Boston - Donald Mckay,350080,22,62,66,89,90,83,92,98,101,75,0,0,0,0,0,778 +NA,NA,,2017-18,Boston - Dorchester Academy,350651,0,0,0,0,0,0,0,0,0,0,7,3,13,19,0,42 +NA,NA,,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,44,37,38,38,32,0,0,0,0,0,0,0,0,0,0,189 +NA,NA,,2017-18,Boston - Dr. William Henderson Lower,350266,74,69,69,0,0,0,0,0,0,0,0,0,0,0,0,212 +NA,NA,,2017-18,Boston - Dr. William Henderson Upper,350426,0,0,0,44,51,47,46,62,59,68,58,56,57,58,0,606 +NA,NA,,2017-18,Boston - East Boston Early Childhood Center,350009,70,76,51,0,0,0,0,0,0,0,0,0,0,0,0,197 +NA,NA,,2017-18,Boston - East Boston High,350530,0,0,0,0,0,0,0,0,0,0,340,274,372,358,0,1344 +NA,NA,,2017-18,Boston - Edison K-8,350375,20,50,61,66,90,72,74,85,58,59,0,0,0,0,0,635 +NA,NA,,2017-18,Boston - Edward Everett,350088,23,40,38,39,44,47,41,0,0,0,0,0,0,0,0,272 +NA,NA,,2017-18,Boston - ELC - West Zone,350006,45,36,34,0,0,0,0,0,0,0,0,0,0,0,0,115 +NA,NA,,2017-18,Boston - Eliot Elementary,350096,58,81,81,79,95,64,74,48,29,26,0,0,0,0,0,635 +NA,NA,,2017-18,Boston - Ellis Mendell,350100,29,39,43,41,44,41,30,0,0,0,0,0,0,0,0,267 +NA,NA,,2017-18,Boston - Excel High School,350522,0,0,0,0,0,0,0,0,0,0,115,110,146,120,0,491 +NA,NA,,2017-18,Boston - Fenway High School,350540,0,0,0,0,0,0,0,0,0,0,102,97,89,76,0,364 +NA,NA,,2017-18,Boston - Franklin D Roosevelt,350116,44,44,42,43,44,50,46,55,37,48,0,0,0,0,0,453 +NA,NA,,2017-18,Boston - Gardner Pilot Academy,350326,35,41,40,40,40,38,41,47,37,42,0,0,0,0,0,401 +NA,NA,,2017-18,Boston - George H Conley,350122,21,16,26,48,25,53,23,0,0,0,0,0,0,0,0,212 +NA,NA,,2017-18,Boston - Greater Egleston Community High School,350543,0,0,0,0,0,0,0,0,0,0,0,13,28,64,0,105 +NA,NA,,2017-18,Boston - Harvard-Kent,350200,50,45,54,62,81,107,74,0,0,0,0,0,0,0,0,473 +NA,NA,,2017-18,Boston - Haynes Early Education Center,350010,59,75,78,0,0,0,0,0,0,0,0,0,0,0,0,212 +NA,NA,,2017-18,Boston - Henry Grew,350135,21,42,40,33,48,31,39,0,0,0,0,0,0,0,0,254 +NA,NA,,2017-18,Boston - Higginson,350015,31,53,42,45,0,0,0,0,0,0,0,0,0,0,0,171 +NA,NA,,2017-18,Boston - Higginson/Lewis K-8,350377,0,0,2,8,83,59,51,45,25,35,0,0,0,0,0,308 +NA,NA,,2017-18,Boston - Horace Mann School for the Deaf,350750,1,7,7,5,8,0,8,2,6,7,3,10,12,8,0,84 +NA,NA,,2017-18,Boston - Hugh Roe O'Donnell,350141,21,42,33,38,44,32,37,0,0,0,0,0,0,0,0,247 +NA,NA,,2017-18,Boston - Jackson Mann,350013,47,69,70,74,78,82,74,67,40,55,0,0,0,0,0,656 +NA,NA,,2017-18,Boston - James Condon Elementary,350146,50,73,79,81,111,124,125,121,76,65,0,0,0,0,0,905 +NA,NA,,2017-18,Boston - James J Chittick,350154,46,37,47,43,40,52,41,0,0,0,0,0,0,0,0,306 +NA,NA,,2017-18,Boston - James Otis,350156,47,61,59,60,65,65,48,0,0,0,0,0,0,0,0,405 +NA,NA,,2017-18,Boston - James P Timilty Middle,350485,0,0,0,0,0,0,0,102,92,137,0,0,0,0,0,331 +NA,NA,,2017-18,Boston - James W Hennigan,350153,0,42,44,57,61,107,94,72,59,46,0,0,0,0,0,582 +NA,NA,,2017-18,Boston - Jeremiah E Burke High,350525,0,0,0,0,0,0,0,0,0,0,102,87,114,169,0,472 +NA,NA,,2017-18,Boston - John D Philbrick,350172,11,20,21,22,49,23,17,0,0,0,0,0,0,0,0,163 +NA,NA,,2017-18,Boston - John F Kennedy,350166,30,56,61,63,72,60,50,0,0,0,0,0,0,0,0,392 +NA,NA,,2017-18,Boston - John W McCormack,350179,0,0,0,0,0,0,0,118,124,129,0,0,0,0,0,371 +NA,NA,,2017-18,Boston - John Winthrop,350180,30,54,59,41,48,50,45,0,0,0,0,0,0,0,0,327 +NA,NA,,2017-18,Boston - Joseph J Hurley,350182,33,48,46,49,44,40,37,30,17,16,0,0,0,0,0,360 +NA,NA,,2017-18,Boston - Joseph Lee,350183,66,53,58,53,60,85,74,79,68,65,0,0,0,0,0,661 +NA,NA,,2017-18,Boston - Joseph P Manning,350184,12,22,20,24,25,23,26,0,0,0,0,0,0,0,0,152 +NA,NA,,2017-18,Boston - Joseph P Tynan,350181,44,25,30,31,31,38,34,0,0,0,0,0,0,0,0,233 +NA,NA,,2017-18,Boston - Josiah Quincy,350286,83,113,120,117,123,130,146,0,0,0,0,0,0,0,0,832 +NA,NA,,2017-18,Boston - Joyce Kilmer,350190,44,60,44,44,52,73,51,44,27,27,0,0,0,0,0,466 +NA,NA,,2017-18,Boston - King K-8,350376,59,61,62,54,59,50,41,46,28,27,0,0,0,0,0,487 +NA,NA,,2017-18,Boston - Lee Academy,350001,45,36,36,52,54,0,0,0,0,0,0,0,0,0,0,223 +NA,NA,,2017-18,Boston - Lilla G. Frederick Middle School,350383,0,0,0,0,0,0,0,143,149,202,0,0,0,0,0,494 +NA,NA,,2017-18,Boston - Lyndon,350262,66,65,71,68,55,80,51,59,35,32,0,0,0,0,0,582 +NA,NA,,2017-18,Boston - Lyon K-8,350004,0,11,15,14,14,16,14,17,10,20,0,0,0,0,0,131 +NA,NA,,2017-18,Boston - Lyon Upper 9-12,350655,0,0,0,0,0,0,0,0,0,0,27,34,36,27,0,124 +NA,NA,,2017-18,Boston - Madison Park High,350537,0,0,0,0,0,0,0,0,0,0,232,238,198,191,0,859 +NA,NA,,2017-18,Boston - Manassah E Bradley,350215,35,41,35,42,44,62,36,0,0,0,0,0,0,0,0,295 +NA,NA,,2017-18,Boston - Margarita Muniz Academy,350549,0,0,0,0,0,0,0,0,0,0,82,73,75,68,0,298 +NA,NA,,2017-18,Boston - Mario Umana Academy,350656,27,74,75,71,67,93,90,205,142,160,0,0,0,0,0,1004 +NA,NA,,2017-18,Boston - Mather,350227,62,86,82,93,107,95,83,0,0,0,0,0,0,0,0,608 +NA,NA,,2017-18,Boston - Mattapan Early Elementary School,350016,94,126,70,0,0,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2017-18,Boston - Maurice J Tobin,350229,18,40,53,59,72,48,47,40,25,27,0,0,0,0,0,429 +NA,NA,,2017-18,Boston - Michael J Perkins,350231,0,28,40,35,22,50,43,0,0,0,0,0,0,0,0,218 +NA,NA,,2017-18,Boston - Mildred Avenue K-8,350378,44,42,43,44,49,32,23,108,81,84,0,0,0,0,0,550 +NA,NA,,2017-18,Boston - Mission Hill School,350382,36,21,30,22,26,28,25,19,16,18,0,0,0,0,0,241 +NA,NA,,2017-18,Boston - Mozart,350237,25,23,24,28,27,30,22,0,0,0,0,0,0,0,0,179 +NA,NA,,2017-18,Boston - Nathan Hale,350243,18,22,24,21,25,24,24,0,0,0,0,0,0,0,0,158 +NA,NA,,2017-18,Boston - New Mission High School,350542,0,0,0,0,0,0,0,0,72,0,88,73,83,76,0,392 +NA,NA,,2017-18,Boston - O W Holmes,350138,25,45,53,56,62,63,43,0,0,0,0,0,0,0,0,347 +NA,NA,,2017-18,Boston - O'Bryant School Math/Science,350575,0,0,0,0,0,0,0,0,179,160,397,264,276,286,0,1562 +NA,NA,,2017-18,Boston - Oliver Hazard Perry,350255,22,26,24,30,31,25,17,23,12,10,0,0,0,0,0,220 +NA,NA,,2017-18,Boston - Orchard Gardens,350257,53,90,92,98,99,107,101,92,89,84,0,0,0,0,0,905 +NA,NA,,2017-18,Boston - Patrick J Kennedy,350264,25,37,39,50,52,62,40,0,0,0,0,0,0,0,0,305 +NA,NA,,2017-18,Boston - Paul A Dever,350268,35,47,55,56,54,54,55,0,0,0,0,0,0,0,0,356 +NA,NA,,2017-18,Boston - Pauline Agassiz Shaw Elementary School,350014,49,46,48,45,68,0,0,0,0,0,0,0,0,0,0,256 +NA,NA,,2017-18,Boston - Phineas Bates,350278,20,37,40,38,37,49,41,0,0,0,0,0,0,0,0,262 +NA,NA,,2017-18,Boston - Quincy Upper School,350565,0,0,0,0,0,0,0,147,63,68,61,60,56,52,0,507 +NA,NA,,2017-18,Boston - Rafael Hernandez,350691,46,49,50,48,49,42,35,25,22,23,0,0,0,0,0,389 +NA,NA,,2017-18,Boston - Richard J Murphy,350240,44,65,61,86,96,136,134,146,84,89,0,0,0,0,0,941 +NA,NA,,2017-18,Boston - Roger Clap,350298,12,18,17,33,42,17,18,0,0,0,0,0,0,0,0,157 +NA,NA,,2017-18,Boston - Samuel Adams,350302,40,52,41,48,51,26,33,0,0,0,0,0,0,0,0,291 +NA,NA,,2017-18,Boston - Samuel W Mason,350304,26,37,37,38,35,35,34,0,0,0,0,0,0,0,0,242 +NA,NA,,2017-18,Boston - Sarah Greenwood,350308,38,49,43,55,45,43,39,40,28,22,0,0,0,0,0,402 +NA,NA,,2017-18,Boston - Snowden International School at Copley,350690,0,0,0,0,0,0,0,0,0,0,142,104,115,83,0,444 +NA,NA,,2017-18,Boston - TechBoston Academy,350657,0,0,0,0,0,0,0,112,121,125,140,148,135,136,0,917 +NA,NA,,2017-18,Boston - The English High,350535,0,0,0,0,0,0,0,0,0,0,182,98,119,140,0,539 +NA,NA,,2017-18,Boston - Thomas J Kenny,350328,29,41,38,46,57,73,41,0,0,0,0,0,0,0,0,325 +NA,NA,,2017-18,Boston - UP Academy Holland,350167,54,107,111,114,128,133,115,0,0,0,0,0,0,0,0,762 +NA,NA,,2017-18,Boston - Urban Science Academy,350579,0,0,0,0,0,0,0,0,0,0,96,69,102,125,0,392 +NA,NA,,2017-18,Boston - Warren-Prescott,350346,57,75,70,69,68,70,66,71,28,28,0,0,0,0,0,602 +NA,NA,,2017-18,Boston - Washington Irving Middle,350445,0,0,0,0,0,0,0,126,100,95,0,0,0,0,0,321 +NA,NA,,2017-18,Boston - West Roxbury Academy,350658,0,0,0,0,0,0,0,0,0,0,110,84,162,119,0,475 +NA,NA,,2017-18,Boston - William E Russell,350366,66,58,60,58,51,66,49,0,0,0,0,0,0,0,0,408 +NA,NA,,2017-18,Boston - William Ellery Channing,350360,27,37,40,38,29,21,24,0,0,0,0,0,0,0,0,216 +NA,NA,,2017-18,Boston - William H Ohrenberger,350258,0,0,0,0,117,123,117,126,77,88,0,0,0,0,0,648 +NA,NA,,2017-18,Boston - William McKinley,350363,0,0,7,7,12,13,18,18,31,37,67,52,34,59,0,355 +NA,NA,,2017-18,Boston - William Monroe Trotter,350370,53,59,57,62,69,72,65,45,20,23,0,0,0,0,0,525 +NA,NA,,2017-18,Boston - Winship Elementary,350374,43,34,29,32,34,24,25,0,0,0,0,0,0,0,0,221 +NA,NA,,2017-18,Boston - Young Achievers,350380,44,54,61,60,66,114,41,48,43,34,0,0,0,0,0,565 +NA,NA,,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,0,0,0,0,0,0,96,99,98,94,87,75,75,76,0,700 +NA,NA,,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,0,0,0,0,0,0,0,0,0,0,107,47,2,248,0,404 +NA,NA,,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,0,0,0,0,0,0,0,45,60,62,88,84,58,74,0,471 +NA,NA,,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,0,0,0,0,0,0,0,87,52,61,89,61,61,52,0,463 +NA,NA,,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,118,131,141,141,117,115,97,78,0,0,0,0,0,0,0,938 +NA,NA,,2017-18,Bourne - Bourne High School,360505,0,0,0,0,0,0,0,0,0,0,129,127,120,100,4,480 +NA,NA,,2017-18,Bourne - Bourne Middle School,360325,0,0,0,0,0,0,156,173,161,193,0,0,0,0,0,683 +NA,NA,,2017-18,Bourne - Bournedale Elementary School,360005,73,79,67,70,87,73,0,0,0,0,0,0,0,0,0,449 +NA,NA,,2017-18,Bourne - Peebles Elementary School,360010,0,40,58,83,70,88,0,0,0,0,0,0,0,0,0,339 +NA,NA,,2017-18,Boxford - Harry Lee Cole,380005,46,80,92,113,0,0,0,0,0,0,0,0,0,0,0,331 +NA,NA,,2017-18,Boxford - Spofford Pond,380013,0,0,0,0,90,91,101,106,0,0,0,0,0,0,0,388 +NA,NA,,2017-18,Boylston - Boylston Elementary,390005,34,39,33,49,40,49,55,0,0,0,0,0,0,0,0,299 +NA,NA,,2017-18,Braintree - Archie T Morrison,400033,0,20,65,86,67,99,81,0,0,0,0,0,0,0,0,418 +NA,NA,,2017-18,Braintree - Braintree High,400505,135,0,0,0,0,0,0,0,0,0,422,426,389,418,11,1801 +NA,NA,,2017-18,Braintree - Donald Ross,400050,0,19,55,42,63,50,56,0,0,0,0,0,0,0,0,285 +NA,NA,,2017-18,Braintree - East Middle School,400305,0,0,0,0,0,0,0,232,242,241,0,0,0,0,0,715 +NA,NA,,2017-18,Braintree - Highlands,400015,0,21,75,85,79,79,85,0,0,0,0,0,0,0,0,424 +NA,NA,,2017-18,Braintree - Hollis,400005,0,24,79,82,77,79,91,0,0,0,0,0,0,0,0,432 +NA,NA,,2017-18,Braintree - Liberty,400025,0,0,83,86,94,87,110,0,0,0,0,0,0,0,0,460 +NA,NA,,2017-18,Braintree - Mary E Flaherty School,400020,0,22,73,68,62,78,74,0,0,0,0,0,0,0,0,377 +NA,NA,,2017-18,Braintree - Monatiquot Kindergarten Center,400009,0,250,0,0,0,0,0,0,0,0,0,0,0,0,0,250 +NA,NA,,2017-18,Braintree - South Middle School,400310,0,0,0,0,0,0,0,214,230,222,0,0,0,0,0,666 +NA,NA,,2017-18,Brewster - Eddy Elementary,410010,0,0,0,0,82,82,78,0,0,0,0,0,0,0,0,242 +NA,NA,,2017-18,Brewster - Stony Brook Elementary,410005,30,54,78,72,0,0,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,36,39,40,40,40,40,38,35,0,0,0,0,0,0,0,308 +NA,NA,,2017-18,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,0,0,0,0,0,255,255,0,0,0,0,0,510 +NA,NA,,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,0,0,0,0,0,0,0,0,0,0,352,352,404,346,9,1463 +NA,NA,,2017-18,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,159,161,170,0,0,0,0,0,0,0,0,0,490 +NA,NA,,2017-18,Bridgewater-Raynham - Merrill Elementary School,6250020,0,145,165,0,0,0,0,0,0,0,0,0,0,0,0,310 +NA,NA,,2017-18,Bridgewater-Raynham - Mitchell Elementary School,6250002,127,239,238,213,219,0,0,0,0,0,0,0,0,0,0,1036 +NA,NA,,2017-18,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,0,0,0,170,132,176,185,0,0,0,0,0,663 +NA,NA,,2017-18,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,0,0,0,0,0,1,4,1,4,4,1,1,16 +NA,NA,,2017-18,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,0,0,253,300,248,0,0,0,0,0,0,0,801 +NA,NA,,2017-18,Brimfield - Brimfield Elementary,430005,35,32,35,27,42,38,33,44,0,0,0,0,0,0,0,286 +NA,NA,,2017-18,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,0,0,0,0,0,0,0,120,113,116,107,0,456 +NA,NA,,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,0,0,0,0,0,0,0,0,0,0,360,326,306,286,0,1278 +NA,NA,,2017-18,Brockton - Ashfield Middle School,440421,0,0,0,0,0,0,0,170,168,166,0,0,0,0,0,504 +NA,NA,,2017-18,Brockton - Barrett Russell Early Childhood Center,440008,237,0,0,0,0,0,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2017-18,Brockton - Brockton Champion High School,440515,0,0,0,0,0,0,0,0,0,0,42,35,34,27,38,176 +NA,NA,,2017-18,Brockton - Brockton High,440505,0,0,0,0,0,0,0,0,0,0,1143,1022,992,950,16,4123 +NA,NA,,2017-18,Brockton - Brookfield,440010,0,84,95,109,116,133,110,0,0,0,0,0,0,0,0,647 +NA,NA,,2017-18,Brockton - Downey,440110,0,94,99,110,111,114,101,0,0,0,0,0,0,0,0,629 +NA,NA,,2017-18,Brockton - Dr W Arnone Community School,440001,0,119,126,122,134,116,119,0,0,0,0,0,0,0,0,736 +NA,NA,,2017-18,Brockton - East Middle School,440405,0,0,0,0,0,0,0,157,166,158,0,0,0,0,0,481 +NA,NA,,2017-18,Brockton - Edgar B Davis,440023,0,111,125,134,118,106,122,113,100,93,0,0,0,0,0,1022 +NA,NA,,2017-18,Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0,0,1,20,97,78,0,196 +NA,NA,,2017-18,Brockton - Frederick Douglass Academy,440080,0,0,0,0,0,0,0,0,3,3,17,8,3,0,0,34 +NA,NA,,2017-18,Brockton - Gilmore Elementary School,440055,0,82,105,94,93,84,100,0,0,0,0,0,0,0,0,558 +NA,NA,,2017-18,Brockton - Hancock,440045,0,114,104,99,115,110,117,0,0,0,0,0,0,0,0,659 +NA,NA,,2017-18,Brockton - Huntington Therapeutic Day School,440400,0,0,0,2,1,2,1,6,3,3,13,8,10,9,0,58 +NA,NA,,2017-18,Brockton - John F Kennedy,440017,0,93,95,100,104,87,108,0,0,0,0,0,0,0,0,587 +NA,NA,,2017-18,Brockton - Joseph F. Plouffe Academy,440422,0,0,0,0,0,0,0,232,233,221,0,0,0,0,0,686 +NA,NA,,2017-18,Brockton - Louis F Angelo Elementary,440065,0,105,121,134,136,212,208,0,0,0,0,0,0,0,0,916 +NA,NA,,2017-18,Brockton - Manthala George Jr. School,440003,0,148,158,149,140,152,173,0,0,0,0,0,0,0,0,920 +NA,NA,,2017-18,Brockton - Mary E. Baker School,440002,0,145,147,139,134,119,131,0,0,0,0,0,0,0,0,815 +NA,NA,,2017-18,Brockton - North Middle School,440410,0,0,0,0,0,0,0,212,201,216,0,0,0,0,0,629 +NA,NA,,2017-18,Brockton - Oscar F Raymond,440078,0,166,167,145,144,133,157,0,0,0,0,0,0,0,0,912 +NA,NA,,2017-18,Brockton - South Middle School,440415,0,0,0,0,0,0,0,164,163,162,0,0,0,0,0,489 +NA,NA,,2017-18,Brockton - West Middle School,440420,0,0,0,0,0,0,0,213,226,198,0,0,0,0,0,637 +NA,NA,,2017-18,Brooke Charter School (District) - Brooke Charter School,4280305,0,178,184,180,187,187,186,188,174,138,66,68,0,0,0,1736 +NA,NA,,2017-18,Brookfield - Brookfield Elementary,450005,33,40,38,42,39,38,40,41,0,0,0,0,0,0,0,311 +NA,NA,,2017-18,Brookline - Brookline Early Education Program at Beacon,460001,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60 +NA,NA,,2017-18,Brookline - Brookline Early Education Program at Putterham,460002,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60 +NA,NA,,2017-18,Brookline - Brookline High,460505,17,0,0,0,0,0,0,0,0,0,531,510,497,506,19,2080 +NA,NA,,2017-18,Brookline - Edith C Baker,460005,0,78,85,76,111,68,101,85,75,83,0,0,0,0,0,762 +NA,NA,,2017-18,Brookline - Edward Devotion,460015,0,92,85,96,92,96,93,94,78,75,0,0,0,0,0,801 +NA,NA,,2017-18,Brookline - Heath,460025,31,55,45,61,72,62,68,55,63,53,0,0,0,0,0,565 +NA,NA,,2017-18,Brookline - John D Runkle,460045,15,62,61,66,71,78,71,65,68,70,0,0,0,0,0,627 +NA,NA,,2017-18,Brookline - Lawrence,460030,0,88,76,91,86,83,84,75,60,79,0,0,0,0,0,722 +NA,NA,,2017-18,Brookline - Michael Driscoll,460020,16,61,62,68,81,61,73,75,68,64,0,0,0,0,0,629 +NA,NA,,2017-18,Brookline - Pierce,460040,0,108,91,111,108,114,84,76,84,83,0,0,0,0,0,859 +NA,NA,,2017-18,Brookline - The Lynch Center,460060,58,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58 +NA,NA,,2017-18,Brookline - William H Lincoln,460035,0,65,61,62,70,59,86,60,54,61,0,0,0,0,0,578 +NA,NA,,2017-18,Burlington - Burlington High,480505,94,9,0,0,0,0,0,0,0,0,229,251,251,230,0,1064 +NA,NA,,2017-18,Burlington - Fox Hill,480007,0,72,81,71,64,47,64,0,0,0,0,0,0,0,0,399 +NA,NA,,2017-18,Burlington - Francis Wyman Elementary,480035,0,86,116,84,91,85,77,0,0,0,0,0,0,0,0,539 +NA,NA,,2017-18,Burlington - Marshall Simonds Middle,480303,0,0,0,0,0,0,0,253,272,276,0,0,0,0,0,801 +NA,NA,,2017-18,Burlington - Memorial,480015,0,78,62,76,61,65,65,0,0,0,0,0,0,0,0,407 +NA,NA,,2017-18,Burlington - Pine Glen Elementary,480020,0,54,51,66,38,41,60,0,0,0,0,0,0,0,0,310 +NA,NA,,2017-18,Cambridge - Amigos School,490006,24,56,45,45,41,41,46,36,38,25,0,0,0,0,0,397 +NA,NA,,2017-18,Cambridge - Cambridge Rindge and Latin,490506,0,0,0,0,0,0,0,0,0,0,484,486,507,485,3,1965 +NA,NA,,2017-18,Cambridge - Cambridge Street Upper School,490305,0,0,0,0,0,0,0,77,80,91,0,0,0,0,0,248 +NA,NA,,2017-18,Cambridge - Cambridgeport,490007,59,70,46,42,44,44,37,0,0,0,0,0,0,0,0,342 +NA,NA,,2017-18,Cambridge - Fletcher/Maynard Academy,490090,61,51,40,37,37,33,37,0,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,Cambridge - Graham and Parks,490080,33,50,59,56,51,52,61,0,0,0,0,0,0,0,0,362 +NA,NA,,2017-18,Cambridge - Haggerty,490020,27,43,47,42,35,34,29,0,0,0,0,0,0,0,0,257 +NA,NA,,2017-18,Cambridge - John M Tobin,490065,91,39,40,39,32,26,26,0,0,0,0,0,0,0,0,293 +NA,NA,,2017-18,Cambridge - Kennedy-Longfellow,490040,41,59,46,45,46,26,30,0,0,0,0,0,0,0,0,293 +NA,NA,,2017-18,Cambridge - King Open,490035,31,57,50,51,47,50,43,0,0,0,0,0,0,0,0,329 +NA,NA,,2017-18,Cambridge - Maria L. Baldwin,490005,58,65,59,45,49,43,45,0,0,0,0,0,0,0,0,364 +NA,NA,,2017-18,Cambridge - Martin Luther King Jr.,490030,38,62,51,48,44,44,41,0,0,0,0,0,0,0,0,328 +NA,NA,,2017-18,Cambridge - Morse,490045,60,44,42,43,43,30,44,0,0,0,0,0,0,0,0,306 +NA,NA,,2017-18,Cambridge - Peabody,490050,46,50,48,47,42,44,46,0,0,0,0,0,0,0,0,323 +NA,NA,,2017-18,Cambridge - Putnam Avenue Upper School,490310,0,0,0,0,0,0,0,79,90,94,0,0,0,0,0,263 +NA,NA,,2017-18,Cambridge - Rindge Avenue Upper School,490315,0,0,0,0,0,0,0,84,89,94,0,0,0,0,0,267 +NA,NA,,2017-18,Cambridge - Vassal Lane Upper School,490320,0,0,0,0,0,0,0,90,100,91,0,0,0,0,0,281 +NA,NA,,2017-18,Canton - Canton High,500505,0,0,0,0,0,0,0,0,0,0,252,239,235,255,1,982 +NA,NA,,2017-18,Canton - Dean S Luce,500020,0,65,84,81,78,90,101,0,0,0,0,0,0,0,0,499 +NA,NA,,2017-18,Canton - John F Kennedy,500017,0,87,83,88,79,103,90,0,0,0,0,0,0,0,0,530 +NA,NA,,2017-18,Canton - Lt Peter M Hansen,500012,0,69,79,79,81,89,78,0,0,0,0,0,0,0,0,475 +NA,NA,,2017-18,Canton - Rodman Early Childhood Center,500010,88,0,0,0,0,0,0,0,0,0,0,0,0,0,0,88 +NA,NA,,2017-18,Canton - Wm H Galvin Middle,500305,0,0,0,0,0,0,0,235,239,262,0,0,0,0,0,736 +NA,NA,,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,0,0,0,0,80,81,81,0,0,0,0,0,242 +NA,NA,,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0,0,0,0,0,0,0,0,0,0,144,163,138,142,3,590 +NA,NA,,2017-18,Carlisle - Carlisle School,510025,8,63,57,60,59,75,65,70,73,76,0,0,0,0,0,606 +NA,NA,,2017-18,Carver - Carver Elementary School,520015,57,119,129,122,115,123,119,0,0,0,0,0,0,0,0,784 +NA,NA,,2017-18,Carver - Carver Middle/High School,520405,0,0,0,0,0,0,0,125,138,113,120,105,86,99,6,792 +NA,NA,,2017-18,Central Berkshire - Becket Washington School,6350005,17,14,19,14,22,22,17,0,0,0,0,0,0,0,0,125 +NA,NA,,2017-18,Central Berkshire - Craneville,6350025,0,64,67,64,68,68,81,0,0,0,0,0,0,0,0,412 +NA,NA,,2017-18,Central Berkshire - Kittredge,6350035,32,22,27,16,13,15,25,0,0,0,0,0,0,0,0,150 +NA,NA,,2017-18,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,0,0,0,0,130,115,136,0,0,0,0,0,381 +NA,NA,,2017-18,Central Berkshire - Wahconah Regional High,6350505,0,0,0,0,0,0,0,0,0,0,141,129,147,117,1,535 +NA,NA,,2017-18,Chelmsford - Byam School,560030,0,103,91,99,100,113,0,0,0,0,0,0,0,0,0,506 +NA,NA,,2017-18,Chelmsford - Center Elementary School,560005,0,90,94,82,92,93,0,0,0,0,0,0,0,0,0,451 +NA,NA,,2017-18,Chelmsford - Charles D Harrington,560025,0,93,107,91,109,94,0,0,0,0,0,0,0,0,0,494 +NA,NA,,2017-18,Chelmsford - Chelmsford High,560505,0,0,0,0,0,0,0,0,0,0,372,367,351,389,0,1479 +NA,NA,,2017-18,Chelmsford - Col Moses Parker School,560305,0,0,0,0,0,0,178,176,181,180,0,0,0,0,0,715 +NA,NA,,2017-18,Chelmsford - Community Education Center,560001,132,0,0,0,0,0,0,0,0,0,0,0,0,0,0,132 +NA,NA,,2017-18,Chelmsford - McCarthy Middle School,560310,0,0,0,0,0,0,181,224,199,212,0,0,0,0,0,816 +NA,NA,,2017-18,Chelmsford - South Row,560015,0,82,77,77,78,87,0,0,0,0,0,0,0,0,0,401 +NA,NA,,2017-18,Chelsea - Chelsea High,570505,0,0,0,0,0,0,0,0,0,0,398,413,393,333,1,1538 +NA,NA,,2017-18,Chelsea - Clark Avenue School,570050,0,0,0,0,0,0,156,147,136,115,0,0,0,0,0,554 +NA,NA,,2017-18,Chelsea - Edgar A Hooks Elementary,570030,0,0,116,153,169,152,0,0,0,0,0,0,0,0,0,590 +NA,NA,,2017-18,Chelsea - Eugene Wright Science and Technology Academy,570045,0,0,0,0,0,0,146,149,116,124,0,0,0,0,0,535 +NA,NA,,2017-18,Chelsea - Frank M Sokolowski Elementary,570040,0,0,109,139,150,170,0,0,0,0,0,0,0,0,0,568 +NA,NA,,2017-18,Chelsea - George F. Kelly Elementary,570035,0,0,135,120,152,140,0,0,0,0,0,0,0,0,0,547 +NA,NA,,2017-18,Chelsea - Joseph A. Browne School,570055,0,0,0,0,0,0,165,166,144,140,0,0,0,0,0,615 +NA,NA,,2017-18,Chelsea - Shurtleff Early Childhood,570003,275,513,81,0,0,0,0,0,0,0,0,0,0,0,0,869 +NA,NA,,2017-18,Chelsea - William A Berkowitz Elementary,570025,0,0,117,119,139,135,0,0,0,0,0,0,0,0,0,510 +NA,NA,,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,13,19,22,14,18,14,20,16,0,0,0,0,0,0,0,136 +NA,NA,,2017-18,Chicopee - Barry,610003,0,59,70,57,66,76,71,0,0,0,0,0,0,0,0,399 +NA,NA,,2017-18,Chicopee - Belcher,610010,0,101,94,76,0,0,0,0,0,0,0,0,0,0,0,271 +NA,NA,,2017-18,Chicopee - Bellamy Middle,610305,0,0,0,0,0,0,0,263,268,266,0,0,0,0,0,797 +NA,NA,,2017-18,Chicopee - Bowe,610015,20,100,75,67,72,76,68,0,0,0,0,0,0,0,0,478 +NA,NA,,2017-18,Chicopee - Bowie,610020,0,43,48,63,51,64,64,0,0,0,0,0,0,0,0,333 +NA,NA,,2017-18,Chicopee - Chicopee Academy,610021,0,0,0,0,0,0,0,1,3,12,25,17,13,11,0,82 +NA,NA,,2017-18,Chicopee - Chicopee Comprehensive High School,610510,0,0,0,0,0,0,0,0,0,0,342,331,357,317,18,1365 +NA,NA,,2017-18,Chicopee - Chicopee High,610505,0,0,0,0,0,0,0,0,0,0,264,226,206,244,10,950 +NA,NA,,2017-18,Chicopee - Dupont Middle,610310,0,0,0,0,0,0,0,253,250,247,0,0,0,0,0,750 +NA,NA,,2017-18,Chicopee - Fairview Elementary,610050,0,71,70,72,80,90,78,0,0,0,0,0,0,0,0,461 +NA,NA,,2017-18,Chicopee - Gen John J Stefanik,610090,0,61,73,72,62,67,68,0,0,0,0,0,0,0,0,403 +NA,NA,,2017-18,Chicopee - Lambert-Lavoie,610040,0,50,43,57,60,53,54,0,0,0,0,0,0,0,0,317 +NA,NA,,2017-18,Chicopee - Litwin,610022,0,23,27,26,105,113,124,0,0,0,0,0,0,0,0,418 +NA,NA,,2017-18,Chicopee - Streiber Memorial School,610065,0,44,53,43,42,47,50,0,0,0,0,0,0,0,0,279 +NA,NA,,2017-18,Chicopee - Szetela Early Childhood Center,610001,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,241 +NA,NA,,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,0,0,0,0,0,0,0,139,141,115,0,0,0,0,0,395 +NA,NA,,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,0,0,0,0,0,0,0,0,0,0,123,72,52,36,0,283 +NA,NA,,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,0,0,0,0,0,0,0,0,0,0,88,71,62,51,0,272 +NA,NA,,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,0,0,0,0,0,0,0,0,0,0,107,62,42,25,0,236 +NA,NA,,2017-18,Clarksburg - Clarksburg Elementary,630010,0,31,16,21,16,32,20,20,16,21,0,0,0,0,0,193 +NA,NA,,2017-18,Clinton - Clinton Elementary,640050,101,146,139,145,149,0,0,0,0,0,0,0,0,0,0,680 +NA,NA,,2017-18,Clinton - Clinton Middle School,640305,0,0,0,0,0,184,173,133,125,131,0,0,0,0,0,746 +NA,NA,,2017-18,Clinton - Clinton Senior High,640505,18,0,0,0,0,0,0,0,0,0,119,111,99,109,1,457 +NA,NA,,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,20,19,20,20,20,20,19,20,16,20,41,39,43,28,0,345 +NA,NA,,2017-18,Cohasset - Cohasset Middle/High School,650505,0,0,0,0,0,0,0,119,133,125,129,127,119,94,0,846 +NA,NA,,2017-18,Cohasset - Deer Hill,650005,0,0,0,0,127,141,122,0,0,0,0,0,0,0,0,390 +NA,NA,,2017-18,Cohasset - Joseph Osgood,650010,24,95,119,108,0,0,0,0,0,0,0,0,0,0,0,346 +NA,NA,,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,0,99,111,108,95,125,93,64,64,0,0,0,0,0,0,759 +NA,NA,,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,0,0,0,0,0,0,0,37,65,62,46,50,54,51,0,365 +NA,NA,,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,40,40,42,41,42,39,40,36,0,0,0,0,0,0,0,320 +NA,NA,,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,44,46,47,50,48,48,42,33,20,22,0,0,0,0,0,400 +NA,NA,,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,42,42,43,42,42,39,38,32,0,0,0,0,0,0,0,320 +NA,NA,,2017-18,Concord - Alcott,670005,8,75,68,94,79,80,87,0,0,0,0,0,0,0,0,491 +NA,NA,,2017-18,Concord - Concord Middle,670305,0,0,0,0,0,0,0,230,249,247,0,0,0,0,0,726 +NA,NA,,2017-18,Concord - Thoreau,670020,9,76,72,74,70,80,76,0,0,0,0,0,0,0,0,457 +NA,NA,,2017-18,Concord - Willard,670030,6,69,65,73,74,73,79,0,0,0,0,0,0,0,0,439 +NA,NA,,2017-18,Concord-Carlisle - Concord Carlisle High,6400505,0,0,0,0,0,0,0,0,0,0,295,307,337,334,0,1273 +NA,NA,,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,51,49,51,52,48,47,43,41,33,35,0,0,0,0,0,450 +NA,NA,,2017-18,Conway - Conway Grammar,680005,14,13,17,20,16,14,21,23,0,0,0,0,0,0,0,138 +NA,NA,,2017-18,Danvers - Danvers High,710505,0,0,0,0,0,0,0,0,0,0,231,234,245,228,3,941 +NA,NA,,2017-18,Danvers - Great Oak,710015,0,61,62,71,61,61,63,0,0,0,0,0,0,0,0,379 +NA,NA,,2017-18,Danvers - Highlands,710010,0,61,58,63,67,59,65,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Danvers - Holten Richmond Middle School,710305,0,0,0,0,0,0,0,273,281,270,0,0,0,0,0,824 +NA,NA,,2017-18,Danvers - Ivan G Smith,710032,0,43,46,47,47,52,48,0,0,0,0,0,0,0,0,283 +NA,NA,,2017-18,Danvers - Riverside,710030,86,42,44,34,50,48,50,0,0,0,0,0,0,0,0,354 +NA,NA,,2017-18,Danvers - Willis E Thorpe,710045,0,51,52,46,60,56,45,0,0,0,0,0,0,0,0,310 +NA,NA,,2017-18,Dartmouth - Andrew B. Cushman School,720005,66,74,0,0,0,0,0,0,0,0,0,0,0,0,0,140 +NA,NA,,2017-18,Dartmouth - Dartmouth High,720505,0,0,0,0,0,0,0,0,0,0,263,283,266,260,0,1072 +NA,NA,,2017-18,Dartmouth - Dartmouth Middle,720050,0,0,0,0,0,0,0,319,305,342,0,0,0,0,0,966 +NA,NA,,2017-18,Dartmouth - George H Potter,720030,12,67,62,77,74,63,75,0,0,0,0,0,0,0,0,430 +NA,NA,,2017-18,Dartmouth - James M. Quinn School,720040,0,111,84,99,112,105,123,0,0,0,0,0,0,0,0,634 +NA,NA,,2017-18,Dartmouth - Joseph Demello,720015,0,0,96,67,84,86,99,0,0,0,0,0,0,0,0,432 +NA,NA,,2017-18,Dedham - Avery,730010,0,0,71,48,57,71,74,0,0,0,0,0,0,0,0,321 +NA,NA,,2017-18,Dedham - Dedham High,730505,0,0,0,0,0,0,0,0,0,0,186,198,188,162,0,734 +NA,NA,,2017-18,Dedham - Dedham Middle School,730305,0,0,0,0,0,0,0,197,198,208,0,0,0,0,0,603 +NA,NA,,2017-18,Dedham - Early Childhood Center,730005,97,173,0,0,0,0,0,0,0,0,0,0,0,0,0,270 +NA,NA,,2017-18,Dedham - Greenlodge,730025,0,0,45,37,52,66,66,0,0,0,0,0,0,0,0,266 +NA,NA,,2017-18,Dedham - Oakdale,730030,0,0,55,55,58,48,69,0,0,0,0,0,0,0,0,285 +NA,NA,,2017-18,Dedham - Riverdale,730045,0,0,30,34,33,36,46,0,0,0,0,0,0,0,0,179 +NA,NA,,2017-18,Deerfield - Deerfield Elementary,740015,41,51,47,38,53,57,58,56,0,0,0,0,0,0,0,401 +NA,NA,,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,0,0,0,0,0,0,0,0,0,230,189,190,209,211,0,1029 +NA,NA,,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,24,59,77,94,93,2,0,0,0,0,0,0,0,0,0,349 +NA,NA,,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,53,52,52,59,56,0,0,0,0,0,0,0,0,0,0,272 +NA,NA,,2017-18,Dennis-Yarmouth - Mattacheese Middle School,6450305,0,0,0,0,0,0,1,225,217,4,0,0,0,0,0,447 +NA,NA,,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,6450050,0,0,0,0,0,270,271,0,0,0,0,0,0,0,0,541 +NA,NA,,2017-18,Dennis-Yarmouth - Station Avenue Elementary,6450025,0,96,100,116,105,0,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2017-18,Dighton-Rehoboth - Dighton Elementary,6500005,0,86,92,95,85,105,0,0,0,0,0,0,0,0,0,463 +NA,NA,,2017-18,Dighton-Rehoboth - Dighton Middle School,6500305,0,0,0,0,0,0,91,110,102,89,0,0,0,0,0,392 +NA,NA,,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,83,0,0,0,0,0,0,0,0,0,219,193,205,209,0,909 +NA,NA,,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0,0,0,0,0,0,138,154,146,145,0,0,0,0,0,583 +NA,NA,,2017-18,Dighton-Rehoboth - Palmer River,6500010,0,107,103,109,107,127,0,0,0,0,0,0,0,0,0,553 +NA,NA,,2017-18,Douglas - Douglas Elementary School,770015,0,0,0,102,85,81,107,0,0,0,0,0,0,0,0,375 +NA,NA,,2017-18,Douglas - Douglas High School,770505,0,0,0,0,0,0,0,0,0,0,89,100,100,93,0,382 +NA,NA,,2017-18,Douglas - Douglas Middle School,770305,0,0,0,0,0,0,0,128,100,120,0,0,0,0,0,348 +NA,NA,,2017-18,Douglas - Douglas Primary School,770005,67,79,78,0,0,0,0,0,0,0,0,0,0,0,0,224 +NA,NA,,2017-18,Dover - Chickering,780005,23,61,74,78,76,87,93,0,0,0,0,0,0,0,0,492 +NA,NA,,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0,0,0,0,0,0,0,0,0,0,180,171,152,162,0,665 +NA,NA,,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,0,0,0,0,0,0,0,168,178,181,0,0,0,0,0,527 +NA,NA,,2017-18,Dracut - Brookside Elementary,790035,0,74,80,72,68,76,87,0,0,0,0,0,0,0,0,457 +NA,NA,,2017-18,Dracut - Dracut Senior High,790505,0,0,0,0,0,0,0,0,0,0,225,213,209,189,0,836 +NA,NA,,2017-18,Dracut - George H. Englesby Elementary School,790045,0,83,77,91,82,100,82,0,0,0,0,0,0,0,0,515 +NA,NA,,2017-18,Dracut - Greenmont Avenue,790030,0,56,38,55,54,49,42,0,0,0,0,0,0,0,0,294 +NA,NA,,2017-18,Dracut - Joseph A Campbell Elementary,790020,56,100,73,71,94,88,90,0,0,0,0,0,0,0,0,572 +NA,NA,,2017-18,Dracut - Justus C. Richardson Middle School,790410,0,0,0,0,0,0,0,278,288,311,0,0,0,0,0,877 +NA,NA,,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,39,38,43,44,43,42,35,0,0,0,0,0,0,0,0,284 +NA,NA,,2017-18,Dudley-Charlton Reg - Charlton Elementary,6580020,48,144,153,0,0,0,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2017-18,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,0,0,0,0,170,159,181,181,0,0,0,0,0,691 +NA,NA,,2017-18,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,0,127,137,127,0,0,0,0,0,0,0,0,0,391 +NA,NA,,2017-18,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,0,0,0,117,145,147,165,0,0,0,0,0,574 +NA,NA,,2017-18,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,150,154,176,0,0,0,0,0,0,0,0,0,480 +NA,NA,,2017-18,Dudley-Charlton Reg - Mason Road School,6580010,54,123,99,0,0,0,0,0,0,0,0,0,0,0,0,276 +NA,NA,,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,0,0,0,0,0,0,0,0,307,287,278,293,3,1168 +NA,NA,,2017-18,Duxbury - Alden School,820004,0,0,0,0,191,232,253,0,0,0,0,0,0,0,0,676 +NA,NA,,2017-18,Duxbury - Chandler Elementary,820006,64,173,182,206,0,0,0,0,0,0,0,0,0,0,0,625 +NA,NA,,2017-18,Duxbury - Duxbury High,820505,0,0,0,0,0,0,0,0,0,0,262,258,256,277,0,1053 +NA,NA,,2017-18,Duxbury - Duxbury Middle,820305,0,0,0,0,0,0,0,246,250,247,0,0,0,0,0,743 +NA,NA,,2017-18,East Bridgewater - Central,830005,129,160,150,162,0,0,0,0,0,0,0,0,0,0,0,601 +NA,NA,,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,0,0,0,0,0,193,204,153,174,143,165,0,1032 +NA,NA,,2017-18,East Bridgewater - Gordon W Mitchell,830010,0,0,0,0,147,170,169,177,0,0,0,0,0,0,0,663 +NA,NA,,2017-18,East Longmeadow - Birchland Park,870305,0,0,0,0,0,0,0,212,221,230,0,0,0,0,0,663 +NA,NA,,2017-18,East Longmeadow - East Longmeadow High,870505,0,0,0,0,0,0,0,0,0,0,181,226,217,210,1,835 +NA,NA,,2017-18,East Longmeadow - Mapleshade,870010,0,0,0,0,98,100,84,0,0,0,0,0,0,0,0,282 +NA,NA,,2017-18,East Longmeadow - Meadow Brook,870013,44,187,170,178,0,0,0,0,0,0,0,0,0,0,0,579 +NA,NA,,2017-18,East Longmeadow - Mountain View,870015,0,0,0,0,84,104,105,0,0,0,0,0,0,0,0,293 +NA,NA,,2017-18,Eastham - Eastham Elementary,850005,10,24,26,26,23,24,39,0,0,0,0,0,0,0,0,172 +NA,NA,,2017-18,Easthampton - Center School,860005,0,35,43,40,42,37,0,0,0,0,0,0,0,0,0,197 +NA,NA,,2017-18,Easthampton - Easthampton High,860505,0,0,0,0,0,0,0,0,0,0,115,121,123,103,4,466 +NA,NA,,2017-18,Easthampton - Maple,860010,41,40,41,39,44,43,0,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Easthampton - Neil A Pepin,860020,0,36,41,41,43,19,0,0,0,0,0,0,0,0,0,180 +NA,NA,,2017-18,Easthampton - White Brook Middle School,860305,0,0,0,0,0,0,122,104,105,119,0,0,0,0,0,450 +NA,NA,,2017-18,Easton - Center School,880003,22,85,74,86,0,0,0,0,0,0,0,0,0,0,0,267 +NA,NA,,2017-18,Easton - Easton Middle School,880405,0,0,0,0,0,0,0,286,305,293,0,0,0,0,0,884 +NA,NA,,2017-18,Easton - Moreau Hall,880020,21,66,80,60,0,0,0,0,0,0,0,0,0,0,0,227 +NA,NA,,2017-18,Easton - Oliver Ames High,880505,0,0,0,0,0,0,0,0,0,0,284,270,301,327,7,1189 +NA,NA,,2017-18,Easton - Parkview Elementary,880015,42,92,85,100,0,0,0,0,0,0,0,0,0,0,0,319 +NA,NA,,2017-18,Easton - Richardson Olmsted School,880025,0,0,0,0,285,257,294,0,0,0,0,0,0,0,0,836 +NA,NA,,2017-18,Edgartown - Edgartown Elementary,890005,3,38,38,34,50,41,34,37,30,36,0,0,0,0,0,341 +NA,NA,,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,0,0,0,0,0,0,0,0,0,0,107,104,89,80,0,380 +NA,NA,,2017-18,Erving - Erving Elementary,910030,29,11,13,20,11,18,20,19,0,0,0,0,0,0,1,142 +NA,NA,,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,8170505,0,0,0,0,0,0,0,0,0,0,364,354,339,325,0,1382 +NA,NA,,2017-18,Everett - Adams School,930003,201,0,0,0,0,0,0,0,0,0,0,0,0,0,0,201 +NA,NA,,2017-18,Everett - Devens School,930030,0,0,1,3,3,5,5,3,4,7,6,6,6,7,0,56 +NA,NA,,2017-18,Everett - Everett High,930505,0,0,0,0,0,0,0,0,0,0,436,525,518,500,4,1983 +NA,NA,,2017-18,Everett - George Keverian School,930028,0,70,110,85,85,90,117,126,92,87,0,0,0,0,0,862 +NA,NA,,2017-18,Everett - Lafayette School,930038,0,90,81,126,97,113,118,113,106,100,0,0,0,0,0,944 +NA,NA,,2017-18,Everett - Madeline English School,930018,0,97,86,86,77,96,104,121,85,80,0,0,0,0,0,832 +NA,NA,,2017-18,Everett - Parlin School,930058,0,0,98,70,119,90,110,113,106,129,0,0,0,0,0,835 +NA,NA,,2017-18,Everett - Sumner G. Whittier School,930010,0,61,80,69,89,85,71,60,51,51,0,0,0,0,0,617 +NA,NA,,2017-18,Everett - Webster School,930015,327,174,67,49,49,35,37,0,0,0,0,0,0,0,0,738 +NA,NA,,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,4100205,0,0,0,0,0,0,169,172,171,172,172,168,103,0,0,1127 +NA,NA,,2017-18,Fairhaven - East Fairhaven,940010,21,60,68,65,73,72,60,0,0,0,0,0,0,0,0,419 +NA,NA,,2017-18,Fairhaven - Fairhaven High,940505,0,0,0,0,0,0,0,0,0,0,201,171,135,145,2,654 +NA,NA,,2017-18,Fairhaven - Hastings Middle,940305,0,0,0,0,0,0,0,158,168,142,0,0,0,0,0,468 +NA,NA,,2017-18,Fairhaven - Leroy Wood,940030,21,70,65,88,93,88,86,0,0,0,0,0,0,0,0,511 +NA,NA,,2017-18,Fall River - B M C Durfee High,950505,0,0,0,0,0,0,0,0,0,0,615,544,484,469,0,2112 +NA,NA,,2017-18,Fall River - Carlton M. Viveiros Elementary School,950009,0,124,99,134,119,119,144,0,0,0,0,0,0,0,0,739 +NA,NA,,2017-18,Fall River - Fall River Gateway to College @ BCC,950515,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1 +NA,NA,,2017-18,Fall River - Henry Lord Community School,950017,35,76,78,64,80,69,57,62,64,66,0,0,0,0,0,651 +NA,NA,,2017-18,Fall River - James Tansey,950140,0,51,51,54,63,49,47,0,0,0,0,0,0,0,0,315 +NA,NA,,2017-18,Fall River - John J Doran,950045,24,55,56,54,59,65,66,47,53,46,0,0,0,0,0,525 +NA,NA,,2017-18,Fall River - Letourneau Elementary School,950013,30,100,107,102,94,94,91,0,0,0,0,0,0,0,0,618 +NA,NA,,2017-18,Fall River - Mary Fonseca Elementary School,950011,23,100,123,115,125,124,99,0,0,0,0,0,0,0,0,709 +NA,NA,,2017-18,Fall River - Matthew J Kuss Middle,950320,0,0,0,0,0,0,0,256,267,227,0,0,0,0,0,750 +NA,NA,,2017-18,Fall River - Morton Middle,950315,0,0,0,0,0,0,0,187,207,193,0,0,0,0,0,587 +NA,NA,,2017-18,Fall River - North End Elementary,950005,52,103,115,114,120,129,137,0,0,0,0,0,0,0,0,770 +NA,NA,,2017-18,Fall River - Resiliency Preparatory Academy,950525,0,0,0,0,0,0,0,0,23,13,32,32,42,40,0,182 +NA,NA,,2017-18,Fall River - Samuel Watson,950145,0,51,47,46,46,55,46,0,0,0,0,0,0,0,0,291 +NA,NA,,2017-18,Fall River - Spencer Borden,950130,0,103,94,86,96,116,89,0,0,0,0,0,0,0,0,584 +NA,NA,,2017-18,Fall River - Stone PK-12 School,950340,0,1,0,2,4,4,3,8,8,4,4,0,0,1,0,39 +NA,NA,,2017-18,Fall River - Talbot Innovation School,950305,0,0,0,0,0,0,0,152,173,181,0,0,0,0,0,506 +NA,NA,,2017-18,Fall River - William S Greene,950065,47,109,113,110,116,127,127,0,0,0,0,0,0,0,0,749 +NA,NA,,2017-18,Falmouth - East Falmouth Elementary,960005,0,46,48,52,56,62,0,0,0,0,0,0,0,0,0,264 +NA,NA,,2017-18,Falmouth - Falmouth High,960505,0,0,0,0,0,0,0,0,0,0,231,222,195,189,5,842 +NA,NA,,2017-18,Falmouth - Lawrence,960405,0,0,0,0,0,0,0,0,312,287,0,0,0,0,0,599 +NA,NA,,2017-18,Falmouth - Morse Pond School,960305,0,0,0,0,0,0,277,278,0,0,0,0,0,0,0,555 +NA,NA,,2017-18,Falmouth - Mullen-Hall,960020,0,81,81,87,93,92,0,0,0,0,0,0,0,0,0,434 +NA,NA,,2017-18,Falmouth - North Falmouth Elementary,960030,0,66,48,61,79,66,0,0,0,0,0,0,0,0,0,320 +NA,NA,,2017-18,Falmouth - Teaticket,960015,96,54,55,54,58,48,0,0,0,0,0,0,0,0,0,365 +NA,NA,,2017-18,Farmington River Reg - Farmington River Elementary,6620020,29,16,14,10,11,12,17,12,0,0,0,0,0,0,0,121 +NA,NA,,2017-18,Fitchburg - Arthur M Longsjo Middle School,970315,0,0,0,0,0,0,160,170,158,102,0,0,0,0,0,590 +NA,NA,,2017-18,Fitchburg - Crocker Elementary,970016,96,110,126,119,112,102,0,0,0,0,0,0,0,0,0,665 +NA,NA,,2017-18,Fitchburg - Fitchburg High,970505,30,0,0,0,0,0,0,0,0,0,304,276,296,295,4,1205 +NA,NA,,2017-18,Fitchburg - Goodrich Academy,970510,0,0,0,0,0,0,0,0,0,0,6,26,50,76,11,169 +NA,NA,,2017-18,Fitchburg - McKay Arts Academy,970340,28,73,71,73,77,74,79,71,67,68,0,0,0,0,0,681 +NA,NA,,2017-18,Fitchburg - Memorial Intermediate,970048,0,0,0,0,0,0,170,187,183,168,0,0,0,0,0,708 +NA,NA,,2017-18,Fitchburg - Reingold Elementary,970043,33,113,127,122,138,132,0,0,0,0,0,0,0,0,0,665 +NA,NA,,2017-18,Fitchburg - South Street Elementary,970060,21,122,126,121,137,139,0,0,0,0,0,0,0,0,0,666 +NA,NA,,2017-18,Florida - Abbott Memorial,980005,12,4,7,8,3,10,14,8,3,11,0,0,0,0,0,80 +NA,NA,,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,0,0,0,0,0,36,36,38,38,37,37,0,222 +NA,NA,,2017-18,Foxborough - Charles Taylor Elementary,990050,0,40,50,45,42,60,0,0,0,0,0,0,0,0,0,237 +NA,NA,,2017-18,Foxborough - Foxborough High,990505,0,0,0,0,0,0,0,0,0,0,179,217,208,195,7,806 +NA,NA,,2017-18,Foxborough - John J Ahern,990405,0,0,0,0,0,0,208,208,204,223,0,0,0,0,0,843 +NA,NA,,2017-18,Foxborough - Mabelle M Burrell,990015,80,50,44,45,40,58,0,0,0,0,0,0,0,0,0,317 +NA,NA,,2017-18,Foxborough - Vincent M Igo Elementary,990020,0,83,74,66,81,89,0,0,0,0,0,0,0,0,0,393 +NA,NA,,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,0,130,132,134,136,133,135,136,128,125,85,72,66,57,0,1469 +NA,NA,,2017-18,Framingham - Barbieri Elementary,1000035,0,122,111,111,119,103,115,0,0,0,0,0,0,0,0,681 +NA,NA,,2017-18,Framingham - Brophy,1000006,0,71,56,74,79,104,92,0,0,0,0,0,0,0,0,476 +NA,NA,,2017-18,Framingham - Cameron Middle School,1000302,0,0,0,0,0,0,0,188,168,179,0,0,0,0,0,535 +NA,NA,,2017-18,Framingham - Charlotte A Dunning,1000007,0,70,68,74,69,103,87,0,0,0,0,0,0,0,0,471 +NA,NA,,2017-18,Framingham - Framingham High School,1000515,0,0,0,0,0,0,0,0,0,0,580,552,557,488,0,2177 +NA,NA,,2017-18,Framingham - Fuller Middle,1000305,0,0,0,0,0,0,0,184,158,159,0,0,0,0,0,501 +NA,NA,,2017-18,Framingham - Hemenway,1000015,0,88,95,99,96,95,95,0,0,0,0,0,0,0,0,568 +NA,NA,,2017-18,Framingham - Juniper Hill School,1000001,273,0,0,0,0,0,0,0,0,0,0,0,0,0,0,273 +NA,NA,,2017-18,Framingham - King Elementary School,1000005,0,64,75,80,64,0,0,0,0,0,0,0,0,0,0,283 +NA,NA,,2017-18,Framingham - Mary E Stapleton Elementary,1000045,0,59,47,58,55,71,79,0,0,0,0,0,0,0,0,369 +NA,NA,,2017-18,Framingham - Miriam F McCarthy School,1000050,0,86,90,83,97,111,97,0,0,0,0,0,0,0,0,564 +NA,NA,,2017-18,Framingham - Potter Road,1000039,0,74,84,89,83,95,88,0,0,0,0,0,0,0,0,513 +NA,NA,,2017-18,Framingham - Walsh Middle,1000310,0,0,0,0,0,0,0,262,243,257,0,0,0,0,0,762 +NA,NA,,2017-18,Framingham - Woodrow Wilson,1000055,0,86,80,94,99,102,105,0,0,0,0,0,0,0,0,566 +NA,NA,,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,0,0,0,0,0,0,0,0,69,73,68,58,61,67,0,396 +NA,NA,,2017-18,Franklin - Annie Sullivan Middle School,1010040,0,0,0,0,0,0,0,130,159,157,0,0,0,0,0,446 +NA,NA,,2017-18,Franklin - Davis Thayer,1010035,0,28,44,33,37,48,41,0,0,0,0,0,0,0,0,231 +NA,NA,,2017-18,Franklin - Franklin Early Childhood Development Center,1010003,104,0,0,0,0,0,0,0,0,0,0,0,0,0,0,104 +NA,NA,,2017-18,Franklin - Franklin High,1010505,0,0,0,0,0,0,0,0,0,0,452,437,423,467,8,1787 +NA,NA,,2017-18,Franklin - Helen Keller Elementary,1010012,0,50,67,74,53,73,85,0,0,0,0,0,0,0,0,402 +NA,NA,,2017-18,Franklin - Horace Mann,1010405,0,0,0,0,0,0,0,152,151,161,0,0,0,0,0,464 +NA,NA,,2017-18,Franklin - J F Kennedy Memorial,1010013,0,66,62,63,57,55,64,0,0,0,0,0,0,0,0,367 +NA,NA,,2017-18,Franklin - Jefferson Elementary,1010010,0,59,38,54,62,59,64,0,0,0,0,0,0,0,0,336 +NA,NA,,2017-18,Franklin - Oak Street Elementary,1010030,0,58,61,44,58,73,96,0,0,0,0,0,0,0,0,390 +NA,NA,,2017-18,Franklin - Parmenter,1010032,0,46,64,48,61,51,53,0,0,0,0,0,0,0,0,323 +NA,NA,,2017-18,Franklin - Remington Middle,1010310,0,0,0,0,0,0,0,153,136,152,0,0,0,0,0,441 +NA,NA,,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,0,0,0,0,0,0,0,126,127,121,113,0,487 +NA,NA,,2017-18,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,0,0,0,0,0,0,0,0,208,183,196,188,0,775 +NA,NA,,2017-18,Freetown-Lakeville - Assawompset Elementary School,6650002,0,103,106,123,102,0,0,0,0,0,0,0,0,0,0,434 +NA,NA,,2017-18,Freetown-Lakeville - Freetown Elementary School,6650001,48,105,77,94,88,0,0,0,0,0,0,0,0,0,0,412 +NA,NA,,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,0,0,0,0,0,0,0,264,251,237,0,0,0,0,0,752 +NA,NA,,2017-18,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,0,0,212,228,0,0,0,0,0,0,0,0,440 +NA,NA,,2017-18,Frontier - Frontier Regional,6700505,0,0,0,0,0,0,0,0,116,105,111,100,101,85,5,623 +NA,NA,,2017-18,Gardner - Elm Street School,1030001,0,0,0,182,185,185,0,0,0,0,0,0,0,0,0,552 +NA,NA,,2017-18,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,0,0,0,0,0,0,0,15,26,21,11,0,73 +NA,NA,,2017-18,Gardner - Gardner High,1030505,0,0,0,0,0,0,0,0,0,163,169,136,103,114,5,690 +NA,NA,,2017-18,Gardner - Gardner Middle School,1030405,0,0,0,0,0,0,208,189,146,0,0,0,0,0,0,543 +NA,NA,,2017-18,Gardner - Waterford Street,1030020,80,205,183,0,0,0,0,0,0,0,0,0,0,0,0,468 +NA,NA,,2017-18,Gateway - Chester Elementary,6720059,13,23,12,20,18,12,21,0,0,0,0,0,0,0,0,119 +NA,NA,,2017-18,Gateway - Gateway Regional High,6720505,0,0,0,0,0,0,0,0,0,0,68,58,47,39,3,215 +NA,NA,,2017-18,Gateway - Gateway Regional Middle School,6720405,0,0,0,0,0,0,0,67,67,64,0,0,0,0,0,198 +NA,NA,,2017-18,Gateway - Littleville Elementary School,6720143,19,48,43,39,55,45,50,0,0,0,0,0,0,0,0,299 +NA,NA,,2017-18,Georgetown - Georgetown High School,1050505,0,0,0,0,0,0,0,0,0,0,90,103,99,109,0,401 +NA,NA,,2017-18,Georgetown - Georgetown Middle School,1050305,0,0,0,0,0,0,0,0,112,118,0,0,0,0,0,230 +NA,NA,,2017-18,Georgetown - Penn Brook,1050010,0,98,92,100,88,119,95,99,0,0,0,0,0,0,0,691 +NA,NA,,2017-18,Georgetown - Perley Elementary,1050005,121,0,0,0,0,0,0,0,0,0,0,0,0,0,0,121 +NA,NA,,2017-18,Gill-Montague - Gill Elementary,6740005,0,19,17,21,20,25,21,11,0,0,0,0,0,0,0,134 +NA,NA,,2017-18,Gill-Montague - Great Falls Middle,6740310,0,0,0,0,0,0,0,66,94,85,0,0,0,0,0,245 +NA,NA,,2017-18,Gill-Montague - Hillcrest Elementary School,6740015,40,74,48,0,0,0,0,0,0,0,0,0,0,0,0,162 +NA,NA,,2017-18,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,55,55,56,50,0,0,0,0,0,0,0,0,216 +NA,NA,,2017-18,Gill-Montague - Turners Fall High,6740505,0,0,0,0,0,0,0,0,0,0,53,57,52,56,1,219 +NA,NA,,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,0,0,0,0,0,89,88,92,88,32,35,47,38,0,509 +NA,NA,,2017-18,Gloucester - Beeman Memorial,1070010,0,48,64,57,55,53,62,0,0,0,0,0,0,0,0,339 +NA,NA,,2017-18,Gloucester - East Gloucester Elementary,1070020,0,28,24,43,42,43,35,0,0,0,0,0,0,0,0,215 +NA,NA,,2017-18,Gloucester - Gloucester High,1070505,0,0,0,0,0,0,0,0,0,0,202,213,168,213,2,798 +NA,NA,,2017-18,Gloucester - Gloucester PreSchool,1070025,107,0,0,0,0,0,0,0,0,0,0,0,0,0,0,107 +NA,NA,,2017-18,Gloucester - Plum Cove School,1070042,0,42,35,34,31,39,31,0,0,0,0,0,0,0,0,212 +NA,NA,,2017-18,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,0,0,0,0,228,213,229,0,0,0,0,0,670 +NA,NA,,2017-18,Gloucester - Veterans Memorial,1070045,0,41,39,36,29,37,25,0,0,0,0,0,0,0,0,207 +NA,NA,,2017-18,Gloucester - West Parish,1070050,0,62,59,65,61,54,55,0,0,0,0,0,0,0,0,356 +NA,NA,,2017-18,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,2 +NA,NA,,2017-18,Grafton - Grafton High School,1100505,0,0,0,0,0,0,0,0,0,0,195,218,225,184,13,835 +NA,NA,,2017-18,Grafton - Grafton Middle,1100305,0,0,0,0,0,0,0,0,257,267,0,0,0,0,0,524 +NA,NA,,2017-18,Grafton - Millbury Street Elementary School,1100200,0,0,0,120,133,132,142,129,0,0,0,0,0,0,0,656 +NA,NA,,2017-18,Grafton - North Grafton Elementary,1100025,43,103,108,0,0,0,0,0,0,0,0,0,0,0,0,254 +NA,NA,,2017-18,Grafton - North Street Elementary School,1100030,0,0,0,108,139,104,123,110,0,0,0,0,0,0,0,584 +NA,NA,,2017-18,Grafton - South Grafton Elementary,1100005,60,114,128,0,0,0,0,0,0,0,0,0,0,0,0,302 +NA,NA,,2017-18,Granby - East Meadow,1110004,0,0,0,0,0,44,47,57,0,0,0,0,0,0,0,148 +NA,NA,,2017-18,Granby - Granby Jr Sr High School,1110505,0,0,0,0,0,0,0,0,58,69,54,54,49,57,0,341 +NA,NA,,2017-18,Granby - West Street,1110010,30,43,45,51,43,0,0,0,0,0,0,0,0,0,0,212 +NA,NA,,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,0,0,0,0,0,0,0,0,0,0,375,361,333,328,1,1398 +NA,NA,,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0,0,0,0,0,0,0,0,0,0,419,396,378,316,0,1509 +NA,NA,,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,0,0,0,0,0,0,0,0,0,0,620,564,545,513,28,2270 +NA,NA,,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,0,0,0,0,0,0,0,0,0,0,557,563,526,507,0,2153 +NA,NA,,2017-18,Greenfield - Discovery School at Four Corners,1140025,0,53,55,47,44,53,0,0,0,0,0,0,0,0,0,252 +NA,NA,,2017-18,Greenfield - Federal Street School,1140010,0,55,51,44,44,53,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2017-18,Greenfield - Greenfield High,1140505,0,0,0,0,0,0,0,0,0,130,89,73,85,85,0,462 +NA,NA,,2017-18,Greenfield - Greenfield Middle,1140305,0,0,0,0,0,0,126,131,122,0,0,0,0,0,0,379 +NA,NA,,2017-18,Greenfield - Newton School,1140035,0,54,44,44,48,52,0,0,0,0,0,0,0,0,0,242 +NA,NA,,2017-18,Greenfield - The Academy of Early Learning at North Parish,1140005,117,0,0,0,0,0,0,0,0,0,0,0,0,0,0,117 +NA,NA,,2017-18,Groton-Dunstable - Boutwell School,6730001,63,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63 +NA,NA,,2017-18,Groton-Dunstable - Florence Roche School,6730010,0,94,105,98,109,107,0,0,0,0,0,0,0,0,0,513 +NA,NA,,2017-18,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,0,0,0,0,0,0,0,186,183,207,209,1,786 +NA,NA,,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,0,0,0,177,205,180,203,0,0,0,0,0,765 +NA,NA,,2017-18,Groton-Dunstable - Swallow/Union School,6730005,0,55,54,51,72,58,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2017-18,Hadley - Hadley Elementary,1170015,37,24,31,32,29,45,38,51,0,0,0,0,0,0,0,287 +NA,NA,,2017-18,Hadley - Hopkins Academy,1170505,0,0,0,0,0,0,0,0,48,41,38,30,48,36,1,242 +NA,NA,,2017-18,Halifax - Halifax Elementary,1180005,0,94,92,76,80,86,92,77,0,0,0,0,0,0,0,597 +NA,NA,,2017-18,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,41,42,43,43,45,43,0,0,0,0,0,0,0,0,257 +NA,NA,,2017-18,Hamilton-Wenham - Cutler School,6750010,0,61,40,41,44,57,46,0,0,0,0,0,0,0,0,289 +NA,NA,,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,0,0,0,0,0,0,0,0,0,143,136,148,133,0,560 +NA,NA,,2017-18,Hamilton-Wenham - Miles River Middle,6750310,0,0,0,0,0,0,0,116,134,133,0,0,0,0,0,383 +NA,NA,,2017-18,Hamilton-Wenham - Winthrop School,6750015,30,44,45,40,54,32,46,0,0,0,0,0,0,0,0,291 +NA,NA,,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,0,0,0,0,0,0,0,86,109,85,76,67,37,30,1,491 +NA,NA,,2017-18,Hampden-Wilbraham - Green Meadows Elementary,6800005,14,32,41,35,47,41,40,0,0,0,0,0,0,0,0,250 +NA,NA,,2017-18,Hampden-Wilbraham - Mile Tree Elementary,6800025,59,140,148,0,0,0,0,0,0,0,0,0,0,0,0,347 +NA,NA,,2017-18,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0,0,0,0,0,0,0,0,0,261,271,300,276,1,1109 +NA,NA,,2017-18,Hampden-Wilbraham - Soule Road,6800030,0,0,0,0,0,167,177,0,0,0,0,0,0,0,0,344 +NA,NA,,2017-18,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,142,155,0,0,0,0,0,0,0,0,0,0,297 +NA,NA,,2017-18,Hampden-Wilbraham - Thornton Burgess,6800305,0,0,0,0,0,0,0,28,34,43,0,0,0,0,0,105 +NA,NA,,2017-18,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,0,0,0,0,194,195,219,0,0,0,0,0,608 +NA,NA,,2017-18,Hampshire - Hampshire Regional High,6830505,0,0,0,0,0,0,0,0,118,163,106,118,90,102,4,701 +NA,NA,,2017-18,Hancock - Hancock Elementary,1210005,11,4,3,4,3,2,5,10,0,0,0,0,0,0,0,42 +NA,NA,,2017-18,Hanover - Cedar Elementary,1220004,65,58,75,73,74,69,0,0,0,0,0,0,0,0,0,414 +NA,NA,,2017-18,Hanover - Center Elementary,1220005,0,96,123,116,0,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2017-18,Hanover - Hanover High,1220505,0,0,0,0,0,0,0,0,0,0,206,183,216,193,3,801 +NA,NA,,2017-18,Hanover - Hanover Middle,1220305,0,0,0,0,0,0,214,223,178,216,0,0,0,0,0,831 +NA,NA,,2017-18,Hanover - Sylvester,1220015,0,0,0,0,120,109,0,0,0,0,0,0,0,0,0,229 +NA,NA,,2017-18,Harvard - Bromfield,1250505,0,0,0,0,0,0,0,81,75,97,104,91,101,106,0,655 +NA,NA,,2017-18,Harvard - Hildreth Elementary School,1250005,9,64,63,68,73,84,79,0,0,0,0,0,0,0,0,440 +NA,NA,,2017-18,Hatfield - Hatfield Elementary,1270005,31,20,30,25,32,36,41,32,0,0,0,0,0,0,0,247 +NA,NA,,2017-18,Hatfield - Smith Academy,1270505,0,0,0,0,0,0,0,0,31,48,24,30,27,29,0,189 +NA,NA,,2017-18,Haverhill - Bradford Elementary,1280008,0,57,61,61,65,72,0,0,0,0,0,0,0,0,0,316 +NA,NA,,2017-18,Haverhill - Caleb Dustin Hunking School,1280030,0,70,69,79,80,76,154,199,168,132,0,0,0,0,0,1027 +NA,NA,,2017-18,Haverhill - Consentino Annex at Bartlett School,1280005,0,46,26,35,0,0,0,0,0,0,0,0,0,0,0,107 +NA,NA,,2017-18,Haverhill - Consentino Middle School,1280100,0,0,0,0,65,99,177,218,213,204,0,0,0,0,0,976 +NA,NA,,2017-18,Haverhill - Crowell,1280020,0,97,0,0,0,0,0,0,0,0,0,0,0,0,0,97 +NA,NA,,2017-18,Haverhill - Dr Paul Nettle,1280050,0,0,0,0,0,0,125,129,130,116,0,0,0,0,0,500 +NA,NA,,2017-18,Haverhill - Golden Hill,1280026,0,0,135,122,129,111,0,0,0,0,0,0,0,0,0,497 +NA,NA,,2017-18,Haverhill - Greenleaf Kindergarten Center,1280027,0,108,0,0,0,0,0,0,0,0,0,0,0,0,0,108 +NA,NA,,2017-18,Haverhill - Haverhill Alternative School,1280033,0,0,0,0,0,0,0,3,2,10,6,6,9,10,0,46 +NA,NA,,2017-18,Haverhill - Haverhill High,1280505,0,0,0,0,0,0,0,0,0,0,576,428,415,382,30,1831 +NA,NA,,2017-18,Haverhill - John G Whittier,1280085,0,0,0,0,0,0,153,126,120,143,0,0,0,0,0,542 +NA,NA,,2017-18,Haverhill - Moody,1280045,221,0,0,0,0,0,0,0,0,0,0,0,0,0,0,221 +NA,NA,,2017-18,Haverhill - Pentucket Lake Elementary,1280054,0,65,88,74,135,142,0,0,0,0,0,0,0,0,0,504 +NA,NA,,2017-18,Haverhill - TEACH,1280073,0,1,2,1,5,7,6,3,3,3,5,2,3,1,8,50 +NA,NA,,2017-18,Haverhill - Tilton,1280075,0,39,141,134,129,94,0,0,0,0,0,0,0,0,0,537 +NA,NA,,2017-18,Haverhill - Walnut Square,1280080,0,41,48,51,0,0,0,0,0,0,0,0,0,0,0,140 +NA,NA,,2017-18,Hawlemont - Hawlemont Regional,6850005,26,25,26,20,17,10,22,17,0,0,0,0,0,0,0,163 +NA,NA,,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,0,0,0,0,0,0,0,60,73,81,0,0,0,0,0,214 +NA,NA,,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,36,31,37,35,35,33,35,30,31,0,0,0,0,0,303 +NA,NA,,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,20,20,21,21,21,21,32,30,32,0,0,0,0,0,218 +NA,NA,,2017-18,Hingham - East Elementary School,1310005,67,61,68,82,74,96,79,0,0,0,0,0,0,0,0,527 +NA,NA,,2017-18,Hingham - Hingham High,1310505,0,0,0,0,0,0,0,0,0,0,328,314,284,326,4,1256 +NA,NA,,2017-18,Hingham - Hingham Middle School,1310410,0,0,0,0,0,0,0,351,358,366,0,0,0,0,0,1075 +NA,NA,,2017-18,Hingham - Plymouth River,1310019,0,77,63,79,81,93,75,0,0,0,0,0,0,0,0,468 +NA,NA,,2017-18,Hingham - South Elementary,1310020,0,86,80,81,90,91,99,0,0,0,0,0,0,0,0,527 +NA,NA,,2017-18,Hingham - Wm L Foster Elementary,1310010,0,65,85,80,59,88,69,0,0,0,0,0,0,0,0,446 +NA,NA,,2017-18,Holbrook - Holbrook Middle High School,1330505,0,0,0,0,0,0,0,107,98,113,67,73,58,72,1,589 +NA,NA,,2017-18,Holbrook - John F Kennedy,1330018,50,95,103,102,85,102,89,0,0,0,0,0,0,0,0,626 +NA,NA,,2017-18,Holland - Holland Elementary,1350005,24,29,32,24,31,24,33,36,0,0,0,0,0,0,0,233 +NA,NA,,2017-18,Holliston - Holliston High,1360505,0,0,0,0,0,0,0,0,0,0,202,221,185,186,3,797 +NA,NA,,2017-18,Holliston - Miller School,1360007,0,0,0,0,221,226,238,0,0,0,0,0,0,0,0,685 +NA,NA,,2017-18,Holliston - Placentino Elementary,1360010,106,200,227,213,0,0,0,0,0,0,0,0,0,0,0,746 +NA,NA,,2017-18,Holliston - Robert H. Adams Middle School,1360305,0,0,0,0,0,0,0,225,220,232,0,0,0,0,0,677 +NA,NA,,2017-18,Holyoke - E N White Elementary,1370045,43,46,66,62,53,48,47,43,42,52,0,0,0,0,0,502 +NA,NA,,2017-18,Holyoke - H.B. Lawrence School,1370070,0,59,75,72,72,0,0,0,0,0,0,0,0,0,0,278 +NA,NA,,2017-18,Holyoke - Holyoke High,1370505,0,0,0,0,0,0,0,0,0,0,465,317,257,293,0,1332 +NA,NA,,2017-18,Holyoke - Joseph Metcalf School,1370003,100,40,42,42,35,0,0,0,0,0,0,0,0,0,0,259 +NA,NA,,2017-18,Holyoke - Kelly Elementary,1370040,15,56,62,75,58,83,62,56,50,45,0,0,0,0,0,562 +NA,NA,,2017-18,Holyoke - Lt Clayre Sullivan Elementary,1370055,0,40,67,51,57,74,74,62,62,54,0,0,0,0,0,541 +NA,NA,,2017-18,Holyoke - Lt Elmer J McMahon Elementary,1370015,26,40,40,31,46,42,45,54,33,62,0,0,0,0,0,419 +NA,NA,,2017-18,Holyoke - Maurice A Donahue Elementary,1370060,38,51,38,48,49,49,51,44,40,54,0,0,0,0,0,462 +NA,NA,,2017-18,Holyoke - Morgan Full Service Community School,1370025,34,45,42,48,35,50,47,39,39,37,0,0,0,0,0,416 +NA,NA,,2017-18,Holyoke - William R. Peck School,1370030,0,0,0,0,0,61,57,58,80,83,0,0,0,0,0,339 +NA,NA,,2017-18,Holyoke - Wm J Dean Vocational Technical High,1370605,0,0,0,0,0,0,0,0,0,0,0,42,79,62,0,183 +NA,NA,,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,0,78,84,90,87,88,85,75,72,43,0,0,0,0,0,702 +NA,NA,,2017-18,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,0,0,0,0,0,85,101,77,71,81,90,0,505 +NA,NA,,2017-18,Hopedale - Memorial,1380010,0,73,74,72,72,83,81,90,0,0,0,0,0,0,0,545 +NA,NA,,2017-18,Hopedale - Park Street School,1380003,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83 +NA,NA,,2017-18,Hopkinton - Center,1390005,0,202,256,0,0,0,0,0,0,0,0,0,0,0,0,458 +NA,NA,,2017-18,Hopkinton - Elmwood,1390010,0,0,0,238,263,0,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2017-18,Hopkinton - Hopkins Elementary School,1390015,0,0,0,0,0,262,278,0,0,0,0,0,0,0,0,540 +NA,NA,,2017-18,Hopkinton - Hopkinton High,1390505,0,0,0,0,0,0,0,0,0,0,312,286,265,290,2,1155 +NA,NA,,2017-18,Hopkinton - Hopkinton Middle School,1390305,0,0,0,0,0,0,0,234,294,277,0,0,0,0,0,805 +NA,NA,,2017-18,Hopkinton - Hopkinton Pre-School,1390003,59,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59 +NA,NA,,2017-18,Hudson - C A Farley,1410030,13,87,88,86,77,110,0,0,0,0,0,0,0,0,0,461 +NA,NA,,2017-18,Hudson - David J. Quinn Middle School,1410410,0,0,0,0,0,0,230,210,209,0,0,0,0,0,0,649 +NA,NA,,2017-18,Hudson - Forest Avenue Elementary,1410015,0,82,64,76,68,64,0,0,0,0,0,0,0,0,0,354 +NA,NA,,2017-18,Hudson - Hudson High,1410505,0,0,0,0,0,0,0,0,0,209,168,186,188,182,0,933 +NA,NA,,2017-18,Hudson - Mulready Elementary,1410007,13,41,47,48,45,42,0,0,0,0,0,0,0,0,0,236 +NA,NA,,2017-18,Hull - Hull High,1420505,0,0,0,0,0,0,0,0,0,0,78,70,78,68,0,294 +NA,NA,,2017-18,Hull - Lillian M Jacobs,1420015,54,62,58,53,62,67,54,0,0,0,0,0,0,0,0,410 +NA,NA,,2017-18,Hull - Memorial Middle,1420305,0,0,0,0,0,0,0,61,65,62,0,0,0,0,0,188 +NA,NA,,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,0,0,0,0,0,0,100,100,100,100,110,98,100,94,0,802 +NA,NA,,2017-18,Ipswich - Ipswich High,1440505,0,0,0,0,0,0,0,0,0,0,134,140,121,115,6,516 +NA,NA,,2017-18,Ipswich - Ipswich Middle School,1440305,0,0,0,0,0,0,0,141,135,164,0,0,0,0,0,440 +NA,NA,,2017-18,Ipswich - Paul F Doyon Memorial,1440007,22,68,55,64,62,66,64,0,0,0,0,0,0,0,0,401 +NA,NA,,2017-18,Ipswich - Winthrop,1440015,18,62,50,62,53,67,66,0,0,0,0,0,0,0,0,378 +NA,NA,,2017-18,King Philip - King Philip Middle School,6900510,0,0,0,0,0,0,0,0,346,394,0,0,0,0,0,740 +NA,NA,,2017-18,King Philip - King Philip Regional High,6900505,0,0,0,0,0,0,0,0,0,0,310,333,321,328,8,1300 +NA,NA,,2017-18,Kingston - Kingston Elementary,1450005,0,146,139,166,0,0,0,0,0,0,0,0,0,0,0,451 +NA,NA,,2017-18,Kingston - Kingston Intermediate,1450020,0,0,0,0,139,148,152,134,0,0,0,0,0,0,0,573 +NA,NA,,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,0,62,75,74,73,0,62,70,74,68,0,0,0,0,0,558 +NA,NA,,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,0,122,122,122,0,0,122,122,122,121,131,127,113,112,0,1336 +NA,NA,,2017-18,Lanesborough - Lanesborough Elementary,1480005,18,25,32,19,25,28,31,32,0,0,0,0,0,0,0,210 +NA,NA,,2017-18,Lawrence - Alexander B Bruce,1490015,0,0,0,0,86,90,79,80,99,83,0,0,0,0,0,517 +NA,NA,,2017-18,Lawrence - Arlington Middle School,1490017,0,0,0,0,0,0,138,149,148,151,0,0,0,0,0,586 +NA,NA,,2017-18,Lawrence - Community Day Arlington,1490009,0,96,116,126,121,128,0,0,0,0,0,0,0,0,0,587 +NA,NA,,2017-18,Lawrence - Edward F. Parthum,1490053,0,91,122,137,137,138,0,0,0,0,0,0,0,0,0,625 +NA,NA,,2017-18,Lawrence - Emily G Wetherbee,1490080,0,63,79,79,75,84,85,74,83,78,0,0,0,0,0,700 +NA,NA,,2017-18,Lawrence - Francis M Leahy,1490040,0,51,92,100,105,101,69,0,0,0,0,0,0,0,0,518 +NA,NA,,2017-18,Lawrence - Frost Middle School,1490525,0,0,0,0,0,0,135,123,124,125,0,0,0,0,0,507 +NA,NA,,2017-18,Lawrence - Gerard A. Guilmette,1490022,0,0,106,130,137,141,0,0,0,0,0,0,0,0,0,514 +NA,NA,,2017-18,Lawrence - Guilmette Middle School,1490025,0,0,0,0,0,0,109,118,131,128,0,0,0,0,0,486 +NA,NA,,2017-18,Lawrence - High School Learning Center,1490536,0,0,0,0,0,0,0,0,0,0,14,27,41,105,0,187 +NA,NA,,2017-18,Lawrence - James F Hennessey,1490020,93,82,80,92,0,0,0,0,0,0,0,0,0,0,0,347 +NA,NA,,2017-18,Lawrence - John Breen School,1490003,219,116,0,0,0,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2017-18,Lawrence - John K Tarbox,1490075,0,0,63,69,72,62,61,0,0,0,0,0,0,0,0,327 +NA,NA,,2017-18,Lawrence - Lawlor Early Childhood Center,1490002,0,163,0,0,0,0,0,0,0,0,0,0,0,0,0,163 +NA,NA,,2017-18,Lawrence - Lawrence Family Public Academy,1490011,65,147,0,0,0,0,0,0,0,0,0,0,0,0,0,212 +NA,NA,,2017-18,Lawrence - Lawrence High School,1490515,0,0,0,0,0,0,0,0,0,0,911,882,741,731,39,3304 +NA,NA,,2017-18,Lawrence - Oliver Partnership School,1490048,0,0,99,81,82,94,91,0,0,0,0,0,0,0,0,447 +NA,NA,,2017-18,Lawrence - Parthum Middle School,1490027,0,0,0,0,0,0,148,124,162,147,0,0,0,0,0,581 +NA,NA,,2017-18,Lawrence - Phoenix Academy Lawrence,1490540,0,0,0,0,0,0,0,0,0,0,13,63,30,19,0,125 +NA,NA,,2017-18,Lawrence - Robert Frost,1490018,0,93,127,114,121,135,0,0,0,0,0,0,0,0,0,590 +NA,NA,,2017-18,Lawrence - Rollins Early Childhood Center,1490001,112,78,0,0,0,0,0,0,0,0,0,0,0,0,0,190 +NA,NA,,2017-18,Lawrence - School for Exceptional Studies,1490537,0,0,10,6,9,9,10,11,11,10,25,16,8,12,13,150 +NA,NA,,2017-18,Lawrence - South Lawrence East Elementary School,1490004,0,0,155,159,139,158,137,0,0,0,0,0,0,0,0,748 +NA,NA,,2017-18,Lawrence - Spark Academy,1490085,0,0,0,0,0,0,0,157,140,163,0,0,0,0,0,460 +NA,NA,,2017-18,Lawrence - UP Academy Leonard Middle School,1490090,0,0,0,0,0,0,0,78,100,119,0,0,0,0,0,297 +NA,NA,,2017-18,Lawrence - UP Academy Oliver Middle School,1490049,0,0,0,0,0,0,0,111,119,113,0,0,0,0,0,343 +NA,NA,,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,84,85,83,84,83,82,82,52,54,48,0,0,0,0,0,737 +NA,NA,,2017-18,Lee - Lee Elementary,1500025,14,63,44,51,48,36,36,51,0,0,0,0,0,0,0,343 +NA,NA,,2017-18,Lee - Lee Middle/High School,1500505,0,0,0,0,0,0,0,0,59,51,72,55,59,53,0,349 +NA,NA,,2017-18,Leicester - Leicester High,1510505,0,0,0,0,0,0,0,0,0,0,114,125,105,117,0,461 +NA,NA,,2017-18,Leicester - Leicester Memorial Elementary,1510005,0,0,0,0,102,118,113,0,0,0,0,0,0,0,0,333 +NA,NA,,2017-18,Leicester - Leicester Middle,1510015,0,0,0,0,0,0,0,132,116,164,0,0,0,0,0,412 +NA,NA,,2017-18,Leicester - Leicester Primary School,1510010,69,107,88,99,0,0,0,0,0,0,0,0,0,0,0,363 +NA,NA,,2017-18,Lenox - Lenox Memorial High,1520505,0,0,0,0,0,0,0,63,70,66,66,63,50,66,0,444 +NA,NA,,2017-18,Lenox - Morris,1520015,24,34,54,51,45,53,50,0,0,0,0,0,0,0,0,311 +NA,NA,,2017-18,Leominster - Bennett,1530003,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86 +NA,NA,,2017-18,Leominster - Center For Technical Education Innovation,1530605,0,0,0,0,0,0,0,0,0,0,278,152,136,151,0,717 +NA,NA,,2017-18,Leominster - Fall Brook,1530007,0,71,120,117,125,105,119,0,0,0,0,0,0,0,0,657 +NA,NA,,2017-18,Leominster - Frances Drake School,1530010,0,91,66,81,96,110,100,0,0,0,0,0,0,0,0,544 +NA,NA,,2017-18,Leominster - Johnny Appleseed,1530025,0,69,119,100,134,112,117,0,0,0,0,0,0,0,0,651 +NA,NA,,2017-18,Leominster - Leominster Center for Excellence,1530515,0,0,0,0,0,0,0,0,0,0,14,11,17,8,0,50 +NA,NA,,2017-18,Leominster - Leominster High School,1530505,0,0,0,0,0,0,0,0,0,0,174,273,282,327,0,1056 +NA,NA,,2017-18,Leominster - Lincoln School,1530005,48,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48 +NA,NA,,2017-18,Leominster - Northwest,1530030,0,48,115,134,121,151,116,0,0,0,0,0,0,0,0,685 +NA,NA,,2017-18,Leominster - Priest Street,1530040,0,125,0,0,0,0,0,0,0,0,0,0,0,0,0,125 +NA,NA,,2017-18,Leominster - Samoset School,1530045,0,0,0,0,0,0,0,174,163,154,0,0,0,0,0,491 +NA,NA,,2017-18,Leominster - Sky View Middle School,1530320,0,0,0,0,0,0,0,311,282,302,0,0,0,0,0,895 +NA,NA,,2017-18,Leverett - Leverett Elementary,1540005,14,12,17,12,22,16,15,17,0,0,0,0,0,0,0,125 +NA,NA,,2017-18,Lexington - Bowman,1550008,0,71,83,91,98,106,111,0,0,0,0,0,0,0,0,560 +NA,NA,,2017-18,Lexington - Bridge,1550006,0,72,86,99,101,107,107,0,0,0,0,0,0,0,0,572 +NA,NA,,2017-18,Lexington - Fiske,1550015,0,62,61,88,99,93,99,0,0,0,0,0,0,0,0,502 +NA,NA,,2017-18,Lexington - Harrington,1550030,0,70,89,79,74,89,77,0,0,0,0,0,0,0,0,478 +NA,NA,,2017-18,Lexington - Jonas Clarke Middle,1550305,0,0,0,0,0,0,0,303,309,314,0,0,0,0,0,926 +NA,NA,,2017-18,Lexington - Joseph Estabrook,1550010,0,83,85,96,90,116,102,0,0,0,0,0,0,0,0,572 +NA,NA,,2017-18,Lexington - Lexington Children's Place,1550001,71,0,0,0,0,0,0,0,0,0,0,0,0,0,0,71 +NA,NA,,2017-18,Lexington - Lexington High,1550505,0,0,0,0,0,0,0,0,0,0,530,576,554,552,0,2212 +NA,NA,,2017-18,Lexington - Maria Hastings,1550035,0,54,89,73,73,79,98,0,0,0,0,0,0,0,0,466 +NA,NA,,2017-18,Lexington - Wm Diamond Middle,1550310,0,0,0,0,0,0,0,265,321,301,0,0,0,0,0,887 +NA,NA,,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,0,0,0,0,0,0,0,90,0,0,0,0,0,0,0,90 +NA,NA,,2017-18,Lincoln - Hanscom Middle,1570305,0,0,0,0,0,74,53,51,46,47,0,0,0,0,0,271 +NA,NA,,2017-18,Lincoln - Hanscom Primary,1570006,48,81,65,75,63,0,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2017-18,Lincoln - Lincoln School,1570025,51,40,70,50,65,66,53,68,63,60,0,0,0,0,0,586 +NA,NA,,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,0,0,0,0,0,0,0,0,0,0,409,359,374,382,5,1529 +NA,NA,,2017-18,Littleton - Littleton High School,1580505,0,0,0,0,0,0,0,0,0,0,116,116,119,112,0,463 +NA,NA,,2017-18,Littleton - Littleton Middle School,1580305,0,0,0,0,0,0,0,133,119,110,0,0,0,0,0,362 +NA,NA,,2017-18,Littleton - Russell St Elementary,1580015,0,0,0,0,133,131,122,0,0,0,0,0,0,0,0,386 +NA,NA,,2017-18,Littleton - Shaker Lane Elementary,1580005,63,145,113,126,0,0,0,0,0,0,0,0,0,0,0,447 +NA,NA,,2017-18,Longmeadow - Blueberry Hill,1590005,0,61,71,71,67,96,73,0,0,0,0,0,0,0,0,439 +NA,NA,,2017-18,Longmeadow - Center,1590010,0,55,65,62,62,84,76,0,0,0,0,0,0,0,0,404 +NA,NA,,2017-18,Longmeadow - Glenbrook Middle,1590017,0,0,0,0,0,0,0,114,113,115,0,0,0,0,0,342 +NA,NA,,2017-18,Longmeadow - Longmeadow High,1590505,0,0,0,0,0,0,0,0,0,0,235,256,245,221,1,958 +NA,NA,,2017-18,Longmeadow - Williams Middle,1590305,0,0,0,0,0,0,0,108,98,124,0,0,0,0,0,330 +NA,NA,,2017-18,Longmeadow - Wolf Swamp Road,1590025,53,57,54,51,60,61,68,0,0,0,0,0,0,0,0,404 +NA,NA,,2017-18,Lowell - Abraham Lincoln,1600020,49,85,90,75,96,92,0,0,0,0,0,0,0,0,0,487 +NA,NA,,2017-18,Lowell - B.F. Butler Middle School,1600310,0,0,0,0,0,0,130,137,127,140,0,0,0,0,0,534 +NA,NA,,2017-18,Lowell - Bartlett Community Partnership,1600090,49,46,52,41,53,52,52,61,55,60,0,0,0,0,0,521 +NA,NA,,2017-18,Lowell - Charles W Morey,1600030,49,89,94,92,98,93,0,0,0,0,0,0,0,0,0,515 +NA,NA,,2017-18,Lowell - Charlotte M Murkland Elementary,1600080,43,86,93,86,97,96,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2017-18,Lowell - Dr An Wang School,1600345,0,0,0,0,0,0,172,197,150,173,0,0,0,0,0,692 +NA,NA,,2017-18,Lowell - Dr Gertrude Bailey,1600002,26,91,94,93,97,87,0,0,0,0,0,0,0,0,0,488 +NA,NA,,2017-18,Lowell - Greenhalge,1600015,61,83,85,92,92,89,0,0,0,0,0,0,0,0,0,502 +NA,NA,,2017-18,Lowell - Henry J Robinson Middle,1600330,0,0,0,0,0,0,179,161,156,170,0,0,0,0,0,666 +NA,NA,,2017-18,Lowell - James S Daley Middle School,1600315,0,0,0,0,0,0,179,186,173,162,0,0,0,0,0,700 +NA,NA,,2017-18,Lowell - James Sullivan Middle School,1600340,0,0,0,0,0,0,160,170,144,169,0,0,0,0,0,643 +NA,NA,,2017-18,Lowell - John J Shaughnessy,1600050,28,81,86,88,90,89,0,0,0,0,0,0,0,0,0,462 +NA,NA,,2017-18,Lowell - Joseph McAvinnue,1600010,29,88,95,81,103,91,0,0,0,0,0,0,0,0,0,487 +NA,NA,,2017-18,Lowell - Kathryn P. Stoklosa Middle School,1600360,0,0,0,0,0,0,160,175,168,181,0,0,0,0,0,684 +NA,NA,,2017-18,Lowell - Laura Lee Therapeutic Day School,1600085,0,1,1,0,0,2,5,4,5,5,0,0,0,0,0,23 +NA,NA,,2017-18,Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,0,0,0,0,6,10,14,6,0,36 +NA,NA,,2017-18,Lowell - Lowell Day School on Broadway,1600605,4,6,5,4,2,1,3,1,0,0,0,0,0,0,0,26 +NA,NA,,2017-18,Lowell - Lowell High,1600505,0,0,0,0,0,0,0,0,0,0,822,780,780,742,30,3154 +NA,NA,,2017-18,Lowell - Moody Elementary,1600027,27,43,46,40,40,47,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2017-18,Lowell - Pawtucketville Memorial,1600036,31,84,99,94,102,101,0,0,0,0,0,0,0,0,0,511 +NA,NA,,2017-18,Lowell - Peter W Reilly,1600040,0,97,100,109,120,116,0,0,0,0,0,0,0,0,0,542 +NA,NA,,2017-18,Lowell - Pyne Arts,1600018,28,48,48,48,50,51,50,61,56,50,0,0,0,0,0,490 +NA,NA,,2017-18,Lowell - Rogers STEM Academy,1600005,54,87,82,97,109,95,108,53,0,0,0,0,0,0,0,685 +NA,NA,,2017-18,Lowell - S Christa McAuliffe Elementary,1600075,45,81,84,89,96,88,0,0,0,0,0,0,0,0,0,483 +NA,NA,,2017-18,Lowell - The Career Academy,1600515,0,0,0,0,0,0,0,0,0,0,28,21,22,40,2,113 +NA,NA,,2017-18,Lowell - Washington,1600055,33,42,40,40,42,51,0,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,41,96,94,92,96,89,80,79,82,65,0,0,0,0,0,814 +NA,NA,,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,0,0,0,0,0,0,0,21,28,24,18,0,91 +NA,NA,,2017-18,Ludlow - Chapin Street Elementary School,1610020,0,0,0,162,160,0,0,0,0,0,0,0,0,0,0,322 +NA,NA,,2017-18,Ludlow - East Street Elementary School,1610010,91,149,161,0,0,0,0,0,0,0,0,0,0,0,0,401 +NA,NA,,2017-18,Ludlow - Ludlow Senior High,1610505,0,0,0,0,0,0,0,0,0,0,253,214,217,205,5,894 +NA,NA,,2017-18,Ludlow - Paul R Baird Middle,1610305,0,0,0,0,0,0,0,193,209,236,0,0,0,0,0,638 +NA,NA,,2017-18,Ludlow - Veterans Park Elementary,1610023,0,0,0,0,0,203,191,0,0,0,0,0,0,0,0,394 +NA,NA,,2017-18,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9 +NA,NA,,2017-18,Lunenburg - Lunenburg High,1620505,0,0,0,0,0,0,0,0,0,0,124,107,114,97,0,442 +NA,NA,,2017-18,Lunenburg - Lunenburg Middle School,1620305,0,0,0,0,0,0,0,151,125,147,0,0,0,0,0,423 +NA,NA,,2017-18,Lunenburg - Lunenburg Primary School,1620010,42,109,120,123,0,0,0,0,0,0,0,0,0,0,0,394 +NA,NA,,2017-18,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,0,117,131,125,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Lynn - A Drewicz Elementary,1630016,0,71,68,74,86,120,73,0,0,0,0,0,0,0,0,492 +NA,NA,,2017-18,Lynn - Aborn,1630011,0,43,36,36,46,54,38,0,0,0,0,0,0,0,0,253 +NA,NA,,2017-18,Lynn - Breed Middle School,1630405,0,0,0,0,0,0,0,470,434,429,0,0,0,0,0,1333 +NA,NA,,2017-18,Lynn - Brickett Elementary,1630020,0,48,45,49,51,60,48,0,0,0,0,0,0,0,0,301 +NA,NA,,2017-18,Lynn - Capt William G Shoemaker,1630090,9,60,54,41,55,53,57,0,0,0,0,0,0,0,0,329 +NA,NA,,2017-18,Lynn - Classical High,1630505,0,0,0,0,0,0,0,0,0,0,411,451,420,378,3,1663 +NA,NA,,2017-18,Lynn - Cobbet Elementary,1630035,0,109,105,101,103,113,108,0,0,0,0,0,0,0,0,639 +NA,NA,,2017-18,Lynn - E J Harrington,1630045,72,88,94,87,99,112,79,0,0,0,0,0,0,0,0,631 +NA,NA,,2017-18,Lynn - Early Childhood Center,1630004,107,185,2,1,1,1,2,0,0,0,0,0,0,0,0,299 +NA,NA,,2017-18,Lynn - Edward A Sisson,1630095,0,62,83,71,65,82,71,0,0,0,0,0,0,0,0,434 +NA,NA,,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,0,0,0,0,0,8,13,25,25,21,15,0,107 +NA,NA,,2017-18,Lynn - Hood,1630055,0,80,68,82,100,77,80,0,0,0,0,0,0,0,0,487 +NA,NA,,2017-18,Lynn - Ingalls,1630060,0,90,107,104,107,134,112,0,0,0,0,0,0,0,0,654 +NA,NA,,2017-18,Lynn - Julia F Callahan,1630030,51,46,66,73,72,69,80,0,0,0,0,0,0,0,0,457 +NA,NA,,2017-18,Lynn - Lincoln-Thomson,1630070,0,31,46,33,44,45,41,0,0,0,0,0,0,0,0,240 +NA,NA,,2017-18,Lynn - Lynn English High,1630510,0,0,0,0,0,0,0,0,0,0,517,440,380,386,0,1723 +NA,NA,,2017-18,Lynn - Lynn Vocational Technical Institute,1630605,42,0,0,0,0,0,0,2,3,0,256,266,203,224,12,1008 +NA,NA,,2017-18,Lynn - Lynn Woods,1630075,0,25,26,22,34,26,30,0,0,0,0,0,0,0,0,163 +NA,NA,,2017-18,Lynn - Pickering Middle,1630420,0,0,0,0,0,0,0,217,199,199,0,0,0,0,0,615 +NA,NA,,2017-18,Lynn - Robert L Ford,1630050,0,0,90,119,84,94,105,0,0,0,0,0,0,0,0,492 +NA,NA,,2017-18,Lynn - Sewell-Anderson,1630085,0,49,53,49,55,51,53,0,0,0,0,0,0,0,0,310 +NA,NA,,2017-18,Lynn - Thurgood Marshall Mid,1630305,0,0,0,0,0,0,0,455,398,440,0,0,0,0,0,1293 +NA,NA,,2017-18,Lynn - Tracy,1630100,0,0,95,84,86,83,86,0,0,0,0,0,0,0,0,434 +NA,NA,,2017-18,Lynn - Washington Elementary School,1630005,0,72,90,87,66,88,67,0,0,0,0,0,0,0,0,470 +NA,NA,,2017-18,Lynn - William R Fallon,1630080,0,1,6,11,7,12,5,8,0,0,0,0,0,0,0,50 +NA,NA,,2017-18,Lynn - Wm P Connery,1630040,28,106,91,97,98,122,98,0,0,0,0,0,0,0,0,640 +NA,NA,,2017-18,Lynnfield - Huckleberry Hill,1640010,0,81,85,98,83,80,0,0,0,0,0,0,0,0,0,427 +NA,NA,,2017-18,Lynnfield - Lynnfield High,1640505,0,0,0,0,0,0,0,0,0,0,169,147,170,162,0,648 +NA,NA,,2017-18,Lynnfield - Lynnfield Middle School,1640405,0,0,0,0,0,0,169,175,159,174,0,0,0,0,0,677 +NA,NA,,2017-18,Lynnfield - Lynnfield Preschool,1640005,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38 +NA,NA,,2017-18,Lynnfield - Summer Street,1640020,0,89,73,86,100,83,0,0,0,0,0,0,0,0,0,431 +NA,NA,,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,0,0,0,0,0,0,0,0,0,50,46,0,96 +NA,NA,,2017-18,Malden - Beebe,1650003,0,115,99,99,98,92,108,103,87,92,0,0,0,0,0,893 +NA,NA,,2017-18,Malden - Ferryway,1650013,0,101,87,96,101,95,124,88,84,99,0,0,0,0,0,875 +NA,NA,,2017-18,Malden - Forestdale,1650027,0,47,52,60,76,68,66,64,62,52,0,0,0,0,0,547 +NA,NA,,2017-18,Malden - Linden,1650047,0,88,95,98,110,97,109,102,91,81,0,0,0,0,0,871 +NA,NA,,2017-18,Malden - Malden Early Learning Center,1650049,314,0,0,0,0,0,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2017-18,Malden - Malden High,1650505,0,0,0,0,0,0,0,0,0,0,472,429,455,454,13,1823 +NA,NA,,2017-18,Malden - Salemwood,1650057,0,117,136,138,144,132,132,138,134,146,0,0,0,0,0,1217 +NA,NA,,2017-18,Manchester Essex Regional - Essex Elementary,6980020,0,35,31,32,37,48,45,0,0,0,0,0,0,0,0,228 +NA,NA,,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,0,0,0,0,0,0,0,0,131,114,100,98,0,443 +NA,NA,,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,0,0,0,0,0,0,117,125,130,0,0,0,0,0,372 +NA,NA,,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,6980010,11,41,50,41,55,67,78,0,0,0,0,0,0,0,0,343 +NA,NA,,2017-18,Mansfield - Everett W Robinson,1670007,0,223,236,255,0,0,0,0,0,0,0,0,0,0,0,714 +NA,NA,,2017-18,Mansfield - Harold L Qualters Middle,1670035,0,0,0,0,0,0,0,302,326,313,0,0,0,0,0,941 +NA,NA,,2017-18,Mansfield - Jordan/Jackson Elementary,1670014,0,0,0,0,243,275,269,0,0,0,0,0,0,0,0,787 +NA,NA,,2017-18,Mansfield - Mansfield High,1670505,0,0,0,0,0,0,0,0,0,0,348,320,337,302,10,1317 +NA,NA,,2017-18,Mansfield - Roland Green School,1670003,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97 +NA,NA,,2017-18,Marblehead - Elbridge Gerry,1680015,0,59,79,0,0,0,0,0,0,0,0,0,0,0,0,138 +NA,NA,,2017-18,Marblehead - Glover,1680020,40,73,96,73,88,0,0,0,0,0,0,0,0,0,0,370 +NA,NA,,2017-18,Marblehead - L H Coffin,1680010,0,0,0,73,80,0,0,0,0,0,0,0,0,0,0,153 +NA,NA,,2017-18,Marblehead - Malcolm L Bell,1680005,0,55,74,64,80,0,0,0,0,0,0,0,0,0,0,273 +NA,NA,,2017-18,Marblehead - Marblehead High,1680505,0,0,0,0,0,0,0,0,0,0,266,255,258,251,7,1037 +NA,NA,,2017-18,Marblehead - Marblehead Veterans Middle School,1680300,0,0,0,0,0,0,0,0,236,253,0,0,0,0,0,489 +NA,NA,,2017-18,Marblehead - Village School,1680016,0,0,0,0,0,189,232,215,0,0,0,0,0,0,0,636 +NA,NA,,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,0,0,51,50,51,41,36,0,0,0,0,0,229 +NA,NA,,2017-18,Marion - Sippican,1690005,27,56,61,61,54,61,73,61,0,0,0,0,0,0,0,454 +NA,NA,,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,0,0,0,0,0,395,290,325,298,0,0,0,0,0,1308 +NA,NA,,2017-18,Marlborough - Charles Jaworek School,1700030,0,149,155,160,146,151,0,0,0,0,0,0,0,0,0,761 +NA,NA,,2017-18,Marlborough - Early Childhood Center,1700006,174,0,0,0,0,0,0,0,0,0,0,0,0,0,0,174 +NA,NA,,2017-18,Marlborough - Francis J Kane,1700008,0,118,122,106,150,122,0,0,0,0,0,0,0,0,0,618 +NA,NA,,2017-18,Marlborough - Marlborough High,1700505,0,0,0,0,0,0,0,0,0,0,254,264,286,298,8,1110 +NA,NA,,2017-18,Marlborough - Richer,1700025,0,124,104,132,110,134,0,0,0,0,0,0,0,0,0,604 +NA,NA,,2017-18,Marshfield - Daniel Webster,1710015,100,41,54,61,46,42,59,0,0,0,0,0,0,0,0,403 +NA,NA,,2017-18,Marshfield - Eames Way School,1710005,0,43,43,39,42,39,37,0,0,0,0,0,0,0,0,243 +NA,NA,,2017-18,Marshfield - Furnace Brook Middle,1710310,0,0,0,0,0,0,0,276,345,349,0,0,0,0,0,970 +NA,NA,,2017-18,Marshfield - Gov Edward Winslow,1710020,0,57,68,71,57,67,93,0,0,0,0,0,0,0,0,413 +NA,NA,,2017-18,Marshfield - Marshfield High,1710505,0,0,0,0,0,0,0,0,0,0,320,344,338,344,0,1346 +NA,NA,,2017-18,Marshfield - Martinson Elementary,1710025,29,66,70,48,71,67,79,0,0,0,0,0,0,0,0,430 +NA,NA,,2017-18,Marshfield - South River,1710010,0,47,63,48,68,67,80,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,7000505,0,0,0,0,0,0,0,0,0,0,171,166,155,142,0,634 +NA,NA,,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,0,15,13,17,15,17,21,20,19,14,5,6,9,13,0,184 +NA,NA,,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,0,64,59,60,59,59,60,0,0,0,0,0,0,0,0,361 +NA,NA,,2017-18,Masconomet - Masconomet Regional High School,7050505,0,0,0,0,0,0,0,0,0,0,297,280,274,292,0,1143 +NA,NA,,2017-18,Masconomet - Masconomet Regional Middle School,7050405,0,0,0,0,0,0,0,0,333,322,0,0,0,0,0,655 +NA,NA,,2017-18,Mashpee - Kenneth Coombs School,1720005,74,122,101,119,0,0,0,0,0,0,0,0,0,0,0,416 +NA,NA,,2017-18,Mashpee - Mashpee High,1720505,0,0,0,0,0,0,0,0,0,0,129,112,111,99,0,451 +NA,NA,,2017-18,Mashpee - Mashpee Middle School,1720020,0,0,0,0,0,0,0,0,140,130,0,0,0,0,0,270 +NA,NA,,2017-18,Mashpee - Quashnet School,1720035,0,0,0,0,116,132,135,102,0,0,0,0,0,0,0,485 +NA,NA,,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,0,19,17,30,31,48,39,31,58,63,81,65,57,46,0,585 +NA,NA,,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,53,94,95,96,96,96,90,96,92,96,91,83,72,75,0,1225 +NA,NA,,2017-18,Mattapoisett - Center,1730005,25,58,46,58,52,0,0,0,0,0,0,0,0,0,0,239 +NA,NA,,2017-18,Mattapoisett - Old Hammondtown,1730010,0,0,0,0,0,62,69,74,0,0,0,0,0,0,0,205 +NA,NA,,2017-18,Maynard - Fowler School,1740305,0,0,0,0,0,112,110,96,90,114,0,0,0,0,0,522 +NA,NA,,2017-18,Maynard - Green Meadow,1740010,51,121,109,107,98,0,0,0,0,0,0,0,0,0,0,486 +NA,NA,,2017-18,Maynard - Maynard High,1740505,0,0,0,0,0,0,0,0,0,0,93,100,103,94,0,390 +NA,NA,,2017-18,Medfield - Dale Street,1750005,0,0,0,0,0,183,182,0,0,0,0,0,0,0,0,365 +NA,NA,,2017-18,Medfield - Medfield Senior High,1750505,0,0,0,0,0,0,0,0,0,0,199,209,191,229,0,828 +NA,NA,,2017-18,Medfield - Memorial School,1750003,69,174,193,0,0,0,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2017-18,Medfield - Ralph Wheelock School,1750007,0,0,0,195,183,0,0,0,0,0,0,0,0,0,0,378 +NA,NA,,2017-18,Medfield - Thomas Blake Middle,1750305,0,0,0,0,0,0,0,195,218,209,0,0,0,0,0,622 +NA,NA,,2017-18,Medford - Brooks School,1760130,29,79,80,95,74,81,64,0,0,0,0,0,0,0,0,502 +NA,NA,,2017-18,Medford - Christopher Columbus,1760140,9,56,80,56,60,62,54,0,0,0,0,0,0,0,0,377 +NA,NA,,2017-18,Medford - Curtis-Tufts,1760510,0,0,0,0,0,0,0,0,0,0,1,3,3,6,0,13 +NA,NA,,2017-18,Medford - John J McGlynn Elementary School,1760068,17,84,71,78,99,87,88,0,0,0,0,0,0,0,0,524 +NA,NA,,2017-18,Medford - John J. McGlynn Middle School,1760320,0,0,0,0,0,0,0,130,162,168,0,0,0,0,0,460 +NA,NA,,2017-18,Medford - Madeleine Dugger Andrews,1760315,0,0,0,0,0,0,0,177,165,158,0,0,0,0,0,500 +NA,NA,,2017-18,Medford - Medford High,1760505,47,0,0,0,0,0,0,0,0,0,334,318,355,356,3,1413 +NA,NA,,2017-18,Medford - Milton Fuller Roberts,1760150,12,85,83,67,105,107,81,0,0,0,0,0,0,0,0,540 +NA,NA,,2017-18,Medway - Burke/Memorial Elementary School,1770015,0,0,0,168,161,176,0,0,0,0,0,0,0,0,0,505 +NA,NA,,2017-18,Medway - John D Mc Govern Elementary,1770013,34,147,154,0,0,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2017-18,Medway - Medway High,1770505,0,0,0,0,0,0,0,0,0,0,155,195,176,202,0,728 +NA,NA,,2017-18,Medway - Medway Middle,1770305,0,0,0,0,0,0,174,164,175,190,0,0,0,0,0,703 +NA,NA,,2017-18,Melrose - Early Childhood Center,1780003,318,0,0,0,0,0,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2017-18,Melrose - Herbert Clark Hoover,1780017,0,54,46,42,41,38,48,0,0,0,0,0,0,0,0,269 +NA,NA,,2017-18,Melrose - Horace Mann,1780025,0,50,48,45,46,44,48,0,0,0,0,0,0,0,0,281 +NA,NA,,2017-18,Melrose - Lincoln,1780020,0,65,78,82,70,67,59,0,0,0,0,0,0,0,0,421 +NA,NA,,2017-18,Melrose - Melrose High,1780505,0,0,0,0,0,0,0,0,0,0,239,267,262,231,3,1002 +NA,NA,,2017-18,Melrose - Melrose Middle,1780305,0,0,0,0,0,0,0,265,247,265,0,0,0,0,0,777 +NA,NA,,2017-18,Melrose - Roosevelt,1780035,0,65,89,86,66,62,68,0,0,0,0,0,0,0,0,436 +NA,NA,,2017-18,Melrose - Winthrop,1780050,0,87,68,69,62,60,59,0,0,0,0,0,0,0,0,405 +NA,NA,,2017-18,Mendon-Upton - Henry P Clough,7100179,24,70,67,65,62,85,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Mendon-Upton - Memorial School,7100001,25,94,75,87,93,103,0,0,0,0,0,0,0,0,0,477 +NA,NA,,2017-18,Mendon-Upton - Miscoe Hill School,7100015,0,0,0,0,0,0,193,189,196,200,0,0,0,0,0,778 +NA,NA,,2017-18,Mendon-Upton - Nipmuc Regional High,7100510,0,0,0,0,0,0,0,0,0,0,163,154,160,149,8,634 +NA,NA,,2017-18,Methuen - Comprehensive Grammar School,1810050,20,96,109,107,97,134,132,118,123,145,0,0,0,0,0,1081 +NA,NA,,2017-18,Methuen - Donald P Timony Grammar,1810060,46,149,115,138,149,151,152,150,149,153,0,0,0,0,0,1352 +NA,NA,,2017-18,Methuen - Marsh Grammar School,1810030,29,113,145,119,123,132,131,136,142,129,0,0,0,0,0,1199 +NA,NA,,2017-18,Methuen - Methuen High,1810505,0,0,0,0,0,0,0,0,0,0,498,493,493,464,1,1949 +NA,NA,,2017-18,Methuen - Tenney Grammar School,1810055,29,126,131,149,135,141,169,151,172,151,0,0,0,0,0,1354 +NA,NA,,2017-18,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,105,96,105,121,134,0,0,0,0,0,0,0,0,561 +NA,NA,,2017-18,Middleborough - John T. Nichols Middle,1820305,0,0,0,0,0,0,0,256,253,274,0,0,0,0,0,783 +NA,NA,,2017-18,Middleborough - Mary K. Goode Elementary School,1820010,0,0,113,110,110,130,129,0,0,0,0,0,0,0,0,592 +NA,NA,,2017-18,Middleborough - Memorial Early Childhood Center,1820011,59,232,0,0,0,0,0,0,0,0,0,0,0,0,0,291 +NA,NA,,2017-18,Middleborough - Middleborough High,1820505,0,0,0,0,0,0,0,0,0,0,201,173,165,179,0,718 +NA,NA,,2017-18,Middleton - Fuller Meadow,1840003,0,73,84,71,0,0,0,0,0,0,0,0,0,0,0,228 +NA,NA,,2017-18,Middleton - Howe-Manning,1840005,79,0,0,0,83,104,87,106,0,0,0,0,0,0,0,459 +NA,NA,,2017-18,Milford - Brookside,1850065,0,154,155,167,0,0,0,0,0,0,0,0,0,0,0,476 +NA,NA,,2017-18,Milford - Memorial,1850010,0,151,157,161,0,0,0,0,0,0,0,0,0,0,0,469 +NA,NA,,2017-18,Milford - Milford High,1850505,0,0,0,0,0,0,0,0,0,0,291,291,279,282,9,1152 +NA,NA,,2017-18,Milford - Shining Star Early Childhood Center,1850075,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144 +NA,NA,,2017-18,Milford - Stacy Middle,1850305,0,0,0,0,0,0,0,326,355,299,0,0,0,0,0,980 +NA,NA,,2017-18,Milford - Woodland,1850090,0,0,0,0,324,315,326,0,0,0,0,0,0,0,0,965 +NA,NA,,2017-18,Millbury - Elmwood Street,1860017,70,127,112,125,146,0,0,0,0,0,0,0,0,0,0,580 +NA,NA,,2017-18,Millbury - Millbury Junior/Senior High,1860505,0,0,0,0,0,0,0,0,132,140,119,115,98,111,3,718 +NA,NA,,2017-18,Millbury - Raymond E. Shaw Elementary,1860025,0,0,0,0,0,136,156,144,0,0,0,0,0,0,0,436 +NA,NA,,2017-18,Millis - Clyde F Brown,1870005,58,102,82,79,103,78,0,0,0,0,0,0,0,0,0,502 +NA,NA,,2017-18,Millis - Millis High School,1870505,0,0,0,0,0,0,0,0,0,0,91,97,96,109,0,393 +NA,NA,,2017-18,Millis - Millis Middle,1870020,0,0,0,0,0,0,93,105,105,104,0,0,0,0,0,407 +NA,NA,,2017-18,Milton - Charles S Pierce Middle,1890410,0,0,0,0,0,0,0,323,305,286,0,0,0,0,0,914 +NA,NA,,2017-18,Milton - Collicot,1890005,77,97,120,99,122,103,95,0,0,0,0,0,0,0,0,713 +NA,NA,,2017-18,Milton - Cunningham School,1890007,0,86,91,92,86,75,99,0,0,0,0,0,0,0,0,529 +NA,NA,,2017-18,Milton - Glover,1890010,0,104,92,94,90,115,91,0,0,0,0,0,0,0,0,586 +NA,NA,,2017-18,Milton - Milton High,1890505,15,0,0,0,0,0,0,0,0,0,268,241,239,265,0,1028 +NA,NA,,2017-18,Milton - Tucker,1890020,42,66,69,63,68,63,70,0,0,0,0,0,0,0,0,441 +NA,NA,,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0,0,0,0,0,0,0,0,0,145,134,126,133,0,538 +NA,NA,,2017-18,Mohawk Trail - Buckland-Shelburne Regional,7170005,49,40,33,36,34,32,29,20,0,0,0,0,0,0,0,273 +NA,NA,,2017-18,Mohawk Trail - Colrain Central,7170010,13,6,13,20,15,9,11,19,0,0,0,0,0,0,0,106 +NA,NA,,2017-18,Mohawk Trail - Mohawk Trail Regional High,7170505,0,0,0,0,0,0,0,0,54,79,61,53,70,64,6,387 +NA,NA,,2017-18,Mohawk Trail - Sanderson Academy,7170020,37,31,19,12,18,14,18,10,0,0,0,0,0,0,0,159 +NA,NA,,2017-18,Monomoy Regional School District - Chatham Elementary School,7120001,20,34,45,42,57,44,0,0,0,0,0,0,0,0,0,242 +NA,NA,,2017-18,Monomoy Regional School District - Harwich Elementary School,7120002,46,111,97,101,104,91,0,0,0,0,0,0,0,0,0,550 +NA,NA,,2017-18,Monomoy Regional School District - Monomoy Regional High School,7120515,0,0,0,0,0,0,0,0,0,142,112,122,117,117,10,620 +NA,NA,,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,0,0,0,190,132,132,0,0,0,0,0,0,454 +NA,NA,,2017-18,Monson - Granite Valley Middle,1910310,0,0,0,0,0,0,65,65,50,98,0,0,0,0,0,278 +NA,NA,,2017-18,Monson - Monson High School,1910505,0,0,0,0,0,0,0,0,0,0,61,60,69,68,0,258 +NA,NA,,2017-18,Monson - Quarry Hill Community School,1910025,56,61,71,71,64,70,0,0,0,0,0,0,0,0,0,393 +NA,NA,,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0,0,0,0,0,0,0,0,0,0,374,382,337,331,0,1424 +NA,NA,,2017-18,Mount Greylock - Mt Greylock Regional High,7150505,0,0,0,0,0,0,0,0,94,90,94,82,92,81,3,536 +NA,NA,,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0,156,127,128,127,148,150,149,128,93,91,96,89,89,0,1571 +NA,NA,,2017-18,Nahant - Johnson,1960010,22,13,19,19,20,12,23,19,0,0,0,0,0,0,0,147 +NA,NA,,2017-18,Nantucket - Cyrus Peirce,1970010,0,0,0,0,0,0,0,114,127,107,0,0,0,0,0,348 +NA,NA,,2017-18,Nantucket - Nantucket Elementary,1970005,36,118,94,115,0,0,0,0,0,0,0,0,0,0,0,363 +NA,NA,,2017-18,Nantucket - Nantucket High,1970505,0,0,0,0,0,0,0,0,0,0,120,149,136,126,2,533 +NA,NA,,2017-18,Nantucket - Nantucket Intermediate School,1970020,0,0,0,0,124,136,115,0,0,0,0,0,0,0,0,375 +NA,NA,,2017-18,Narragansett - Baldwinville Elementary,7200005,0,0,0,88,99,102,0,0,0,0,0,0,0,0,0,289 +NA,NA,,2017-18,Narragansett - Narragansett Middle,7200305,0,0,0,0,0,0,116,118,104,119,0,0,0,0,0,457 +NA,NA,,2017-18,Narragansett - Narragansett Regional High,7200505,0,0,0,0,0,0,0,0,0,0,73,90,84,94,4,345 +NA,NA,,2017-18,Narragansett - Phillipston Memorial,7200003,77,19,20,17,15,21,0,0,0,0,0,0,0,0,0,169 +NA,NA,,2017-18,Narragansett - Templeton Center,7200020,0,82,88,0,0,0,0,0,0,0,0,0,0,0,0,170 +NA,NA,,2017-18,Nashoba - Center School,7250020,38,67,81,81,107,94,99,0,0,0,0,0,0,0,0,567 +NA,NA,,2017-18,Nashoba - Florence Sawyer School,7250025,48,69,74,92,66,76,95,66,82,99,0,0,0,0,0,767 +NA,NA,,2017-18,Nashoba - Hale,7250310,0,0,0,0,0,0,0,104,84,113,0,0,0,0,0,301 +NA,NA,,2017-18,Nashoba - Luther Burbank Middle School,7250305,0,0,0,0,0,0,0,93,74,82,0,0,0,0,0,249 +NA,NA,,2017-18,Nashoba - Mary Rowlandson Elementary,7250010,40,70,66,65,84,68,78,0,0,0,0,0,0,0,0,471 +NA,NA,,2017-18,Nashoba - Nashoba Regional,7250505,0,0,0,0,0,0,0,0,0,0,241,221,246,268,12,988 +NA,NA,,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,0,0,0,0,0,0,0,0,0,0,176,176,176,169,1,698 +NA,NA,,2017-18,Natick - Bennett-Hemenway,1980005,0,108,119,118,118,131,0,0,0,0,0,0,0,0,0,594 +NA,NA,,2017-18,Natick - Brown,1980010,0,95,116,105,94,114,0,0,0,0,0,0,0,0,0,524 +NA,NA,,2017-18,Natick - J F Kennedy Middle School,1980305,0,0,0,0,0,0,172,162,157,150,0,0,0,0,0,641 +NA,NA,,2017-18,Natick - Johnson,1980031,0,50,48,45,39,47,0,0,0,0,0,0,0,0,0,229 +NA,NA,,2017-18,Natick - Lilja Elementary,1980035,0,95,73,88,86,89,0,0,0,0,0,0,0,0,0,431 +NA,NA,,2017-18,Natick - Memorial,1980043,0,78,87,73,98,77,0,0,0,0,0,0,0,0,0,413 +NA,NA,,2017-18,Natick - Natick High,1980505,130,0,0,0,0,0,0,0,0,0,396,433,374,397,0,1730 +NA,NA,,2017-18,Natick - Wilson Middle,1980310,0,0,0,0,0,0,251,243,223,228,0,0,0,0,0,945 +NA,NA,,2017-18,Nauset - Nauset Regional High,6600505,0,0,0,0,0,0,0,0,0,0,236,222,235,214,4,911 +NA,NA,,2017-18,Nauset - Nauset Regional Middle,6600305,0,0,0,0,0,0,0,185,183,184,0,0,0,0,0,552 +NA,NA,,2017-18,Needham - Broadmeadow,1990005,0,71,85,90,85,106,106,0,0,0,0,0,0,0,0,543 +NA,NA,,2017-18,Needham - High Rock School,1990410,0,0,0,0,0,0,0,450,0,0,0,0,0,0,0,450 +NA,NA,,2017-18,Needham - Hillside Elementary,1990035,0,83,82,85,72,86,79,0,0,0,0,0,0,0,0,487 +NA,NA,,2017-18,Needham - John Eliot,1990020,0,64,58,65,57,75,74,0,0,0,0,0,0,0,0,393 +NA,NA,,2017-18,Needham - Needham High,1990505,0,0,0,0,0,0,0,0,0,0,435,414,441,396,0,1686 +NA,NA,,2017-18,Needham - Newman Elementary,1990050,83,118,101,116,98,135,104,0,0,0,0,0,0,0,0,755 +NA,NA,,2017-18,Needham - Pollard Middle,1990405,0,0,0,0,0,0,0,0,408,446,0,0,0,0,0,854 +NA,NA,,2017-18,Needham - William Mitchell,1990040,0,68,85,92,84,79,90,0,0,0,0,0,0,0,0,498 +NA,NA,,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,38,38,40,40,44,45,64,63,56,58,47,0,0,0,0,533 +NA,NA,,2017-18,New Bedford - Abraham Lincoln,2010095,0,109,125,111,114,132,126,0,0,0,0,0,0,0,0,717 +NA,NA,,2017-18,New Bedford - Alfred J Gomes,2010063,43,65,104,90,85,89,77,0,0,0,0,0,0,0,0,553 +NA,NA,,2017-18,New Bedford - Betsey B Winslow,2010140,0,47,53,43,72,50,45,0,0,0,0,0,0,0,0,310 +NA,NA,,2017-18,New Bedford - Carlos Pacheco,2010105,0,54,58,55,70,55,66,0,0,0,0,0,0,0,0,358 +NA,NA,,2017-18,New Bedford - Casimir Pulaski,2010123,131,97,112,104,103,90,93,0,0,0,0,0,0,0,0,730 +NA,NA,,2017-18,New Bedford - Charles S Ashley,2010010,0,34,41,55,50,54,48,0,0,0,0,0,0,0,0,282 +NA,NA,,2017-18,New Bedford - Elizabeth Carter Brooks,2010015,29,47,53,39,47,41,42,0,0,0,0,0,0,0,0,298 +NA,NA,,2017-18,New Bedford - Ellen R Hathaway,2010075,23,41,40,43,53,56,47,0,0,0,0,0,0,0,0,303 +NA,NA,,2017-18,New Bedford - Elwyn G Campbell,2010020,49,38,45,37,45,32,28,0,0,0,0,0,0,0,0,274 +NA,NA,,2017-18,New Bedford - Hayden/McFadden,2010078,73,109,115,112,85,100,83,0,0,0,0,0,0,0,0,677 +NA,NA,,2017-18,New Bedford - Irwin M. Jacobs Elementary School,2010070,42,54,45,58,54,47,45,0,0,0,0,0,0,0,0,345 +NA,NA,,2017-18,New Bedford - James B Congdon,2010040,0,49,51,54,65,56,61,0,0,0,0,0,0,0,0,336 +NA,NA,,2017-18,New Bedford - Jireh Swift,2010130,0,23,27,39,47,38,41,0,0,0,0,0,0,0,0,215 +NA,NA,,2017-18,New Bedford - John Avery Parker,2010115,30,39,43,49,42,40,42,0,0,0,0,0,0,0,0,285 +NA,NA,,2017-18,New Bedford - John B Devalles,2010050,0,66,62,67,69,64,61,0,0,0,0,0,0,0,0,389 +NA,NA,,2017-18,New Bedford - Keith Middle School,2010405,0,0,0,0,0,0,0,329,286,277,0,0,0,0,0,892 +NA,NA,,2017-18,New Bedford - New Bedford High,2010505,0,0,0,0,0,0,0,0,0,0,517,586,510,349,0,1962 +NA,NA,,2017-18,New Bedford - Normandin Middle School,2010410,0,0,0,0,0,0,0,440,417,397,0,0,0,0,0,1254 +NA,NA,,2017-18,New Bedford - Renaissance Community School for the Arts,2010124,30,28,34,39,39,28,25,0,0,0,0,0,0,0,0,223 +NA,NA,,2017-18,New Bedford - Roosevelt Middle School,2010415,0,0,0,0,0,0,0,286,256,263,0,0,0,0,0,805 +NA,NA,,2017-18,New Bedford - Sgt Wm H Carney Academy,2010045,71,86,124,132,100,152,117,0,0,0,0,0,0,0,0,782 +NA,NA,,2017-18,New Bedford - Thomas R Rodman,2010125,0,39,48,21,36,25,26,0,0,0,0,0,0,0,0,195 +NA,NA,,2017-18,New Bedford - Trinity Day Academy,2010510,0,0,0,0,0,0,0,2,7,15,13,15,15,12,0,79 +NA,NA,,2017-18,New Bedford - Whaling City Junior/Senior High School,2010515,0,0,0,0,0,0,0,1,7,14,32,12,23,11,0,100 +NA,NA,,2017-18,New Bedford - William H Taylor,2010135,44,39,40,40,42,29,28,0,0,0,0,0,0,0,0,262 +NA,NA,,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,0,0,0,0,0,0,107,108,108,99,0,0,0,0,422 +NA,NA,,2017-18,New Salem-Wendell - Swift River,7280015,24,17,17,18,15,22,21,18,0,0,0,0,0,0,0,152 +NA,NA,,2017-18,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,0,0,175,146,0,0,0,0,0,0,0,0,321 +NA,NA,,2017-18,Newburyport - Francis T Bresnahan Elementary,2040005,81,118,137,138,141,0,0,0,0,0,0,0,0,0,0,615 +NA,NA,,2017-18,Newburyport - Newburyport High,2040505,0,0,0,0,0,0,0,0,0,0,208,179,187,192,8,774 +NA,NA,,2017-18,Newburyport - Rupert A Nock Middle,2040305,0,0,0,0,0,0,0,198,194,167,0,0,0,0,0,559 +NA,NA,,2017-18,Newton - A E Angier,2070005,0,65,92,78,86,76,70,0,0,0,0,0,0,0,0,467 +NA,NA,,2017-18,Newton - Bigelow Middle,2070305,0,0,0,0,0,0,0,163,171,187,0,0,0,0,0,521 +NA,NA,,2017-18,Newton - Bowen,2070015,0,64,69,61,56,98,73,0,0,0,0,0,0,0,0,421 +NA,NA,,2017-18,Newton - C C Burr,2070020,0,60,51,69,70,76,60,0,0,0,0,0,0,0,0,386 +NA,NA,,2017-18,Newton - Cabot,2070025,0,57,57,64,68,65,80,0,0,0,0,0,0,0,0,391 +NA,NA,,2017-18,Newton - Charles E Brown Middle,2070310,0,0,0,0,0,0,0,230,240,283,0,0,0,0,0,753 +NA,NA,,2017-18,Newton - Countryside,2070040,0,56,65,69,77,73,70,0,0,0,0,0,0,0,0,410 +NA,NA,,2017-18,Newton - F A Day Middle,2070315,0,0,0,0,0,0,0,350,304,324,0,0,0,0,0,978 +NA,NA,,2017-18,Newton - Franklin,2070055,0,62,85,63,85,74,65,0,0,0,0,0,0,0,0,434 +NA,NA,,2017-18,Newton - Horace Mann,2070075,0,60,67,68,64,74,71,0,0,0,0,0,0,0,0,404 +NA,NA,,2017-18,Newton - John Ward,2070120,0,35,52,49,57,56,60,0,0,0,0,0,0,0,0,309 +NA,NA,,2017-18,Newton - Lincoln-Eliot,2070070,0,67,67,59,57,65,59,0,0,0,0,0,0,0,0,374 +NA,NA,,2017-18,Newton - Mason-Rice,2070080,0,68,67,89,103,96,89,0,0,0,0,0,0,0,0,512 +NA,NA,,2017-18,Newton - Memorial Spaulding,2070105,0,75,74,79,86,72,67,0,0,0,0,0,0,0,0,453 +NA,NA,,2017-18,Newton - Newton Early Childhood Center,2070108,197,0,0,0,0,0,0,0,0,0,0,0,0,0,0,197 +NA,NA,,2017-18,Newton - Newton North High,2070505,0,0,0,0,0,0,0,0,0,0,503,522,544,552,27,2148 +NA,NA,,2017-18,Newton - Newton South High,2070510,0,0,0,0,0,0,0,0,0,0,485,488,452,467,1,1893 +NA,NA,,2017-18,Newton - Oak Hill Middle,2070320,0,0,0,0,0,0,0,187,233,194,0,0,0,0,0,614 +NA,NA,,2017-18,Newton - Peirce,2070100,0,41,44,43,61,38,49,0,0,0,0,0,0,0,0,276 +NA,NA,,2017-18,Newton - Underwood,2070115,0,35,47,40,61,47,54,0,0,0,0,0,0,0,0,284 +NA,NA,,2017-18,Newton - Williams,2070125,0,47,45,65,40,45,54,0,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,Newton - Zervas,2070130,0,58,84,64,70,65,66,0,0,0,0,0,0,0,0,407 +NA,NA,,2017-18,Norfolk - Freeman-Kennedy School,2080005,0,0,0,0,114,139,115,121,0,0,0,0,0,0,0,489 +NA,NA,,2017-18,Norfolk - H Olive Day,2080015,62,120,133,147,0,0,0,0,0,0,0,0,0,0,0,462 +NA,NA,,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,0,0,0,0,0,0,0,143,130,144,133,0,550 +NA,NA,,2017-18,North Adams - Brayton,2090035,35,35,28,22,34,38,41,27,0,0,0,0,0,0,0,260 +NA,NA,,2017-18,North Adams - Colegrove Park Elementary,2090008,42,37,52,46,34,42,57,51,0,0,0,0,0,0,0,361 +NA,NA,,2017-18,North Adams - Drury High,2090505,0,0,0,0,0,0,0,0,100,93,98,78,78,71,4,522 +NA,NA,,2017-18,North Adams - Greylock,2090015,41,33,37,36,28,37,43,41,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,North Andover - Annie L Sargent School,2110018,0,88,92,91,102,91,95,0,0,0,0,0,0,0,0,559 +NA,NA,,2017-18,North Andover - Atkinson,2110001,120,70,72,72,74,70,90,0,0,0,0,0,0,0,0,568 +NA,NA,,2017-18,North Andover - Franklin,2110010,0,65,72,76,82,83,74,0,0,0,0,0,0,0,0,452 +NA,NA,,2017-18,North Andover - Kittredge,2110015,0,44,51,41,51,50,51,0,0,0,0,0,0,0,0,288 +NA,NA,,2017-18,North Andover - North Andover High,2110505,0,0,0,0,0,0,0,0,0,0,390,328,395,377,0,1490 +NA,NA,,2017-18,North Andover - North Andover Middle,2110305,0,0,0,0,0,0,0,361,354,389,0,0,0,0,0,1104 +NA,NA,,2017-18,North Andover - Thomson,2110020,0,41,61,63,53,71,56,0,0,0,0,0,0,0,0,345 +NA,NA,,2017-18,North Attleborough - Amvet Boulevard,2120007,0,44,64,68,72,75,75,0,0,0,0,0,0,0,0,398 +NA,NA,,2017-18,North Attleborough - Community,2120030,0,49,44,59,52,55,61,0,0,0,0,0,0,0,0,320 +NA,NA,,2017-18,North Attleborough - Falls,2120010,0,26,41,54,41,47,66,0,0,0,0,0,0,0,0,275 +NA,NA,,2017-18,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,97,118,93,90,110,128,0,0,0,0,0,0,0,0,636 +NA,NA,,2017-18,North Attleborough - North Attleboro High,2120505,0,0,0,0,0,0,0,0,0,0,253,302,287,314,0,1156 +NA,NA,,2017-18,North Attleborough - North Attleborough Early Learning Center,2120020,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126 +NA,NA,,2017-18,North Attleborough - North Attleborough Middle,2120305,0,0,0,0,0,0,0,369,346,373,0,0,0,0,0,1088 +NA,NA,,2017-18,North Attleborough - Roosevelt Avenue,2120015,0,53,47,47,31,49,56,0,0,0,0,0,0,0,0,283 +NA,NA,,2017-18,North Brookfield - North Brookfield Elementary,2150015,27,41,43,34,37,46,47,55,0,0,0,0,0,0,0,330 +NA,NA,,2017-18,North Brookfield - North Brookfield High,2150505,0,0,0,0,0,0,0,0,47,50,24,37,37,32,0,227 +NA,NA,,2017-18,North Middlesex - Ashby Elementary,7350010,0,35,35,34,39,41,0,0,0,0,0,0,0,0,0,184 +NA,NA,,2017-18,North Middlesex - Hawthorne Brook,7350030,0,0,0,0,0,0,129,134,108,131,0,0,0,0,0,502 +NA,NA,,2017-18,North Middlesex - Nissitissit Middle School,7350310,0,0,0,0,0,0,148,129,125,123,0,0,0,0,0,525 +NA,NA,,2017-18,North Middlesex - North Middlesex Regional,7350505,0,0,0,0,0,0,0,0,0,0,217,206,184,189,0,796 +NA,NA,,2017-18,North Middlesex - Peter Fitzpatrick School,7350515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18 +NA,NA,,2017-18,North Middlesex - Spaulding Memorial,7350005,0,83,77,85,86,91,0,0,0,0,0,0,0,0,0,422 +NA,NA,,2017-18,North Middlesex - Squannacook Early Childhood Center,7350002,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90 +NA,NA,,2017-18,North Middlesex - Varnum Brook,7350035,0,92,96,110,111,128,0,0,0,0,0,0,0,0,0,537 +NA,NA,,2017-18,North Reading - E Ethel Little School,2170003,46,56,44,53,43,54,35,0,0,0,0,0,0,0,0,331 +NA,NA,,2017-18,North Reading - J Turner Hood,2170010,0,44,53,54,64,64,57,0,0,0,0,0,0,0,0,336 +NA,NA,,2017-18,North Reading - L D Batchelder,2170005,0,79,69,78,67,86,85,0,0,0,0,0,0,0,0,464 +NA,NA,,2017-18,North Reading - North Reading High,2170505,0,0,0,0,0,0,0,0,0,0,195,208,189,217,3,812 +NA,NA,,2017-18,North Reading - North Reading Middle,2170305,0,0,0,0,0,0,0,165,195,188,0,0,0,0,0,548 +NA,NA,,2017-18,Northampton - Bridge Street,2100005,38,50,48,32,39,30,37,0,0,0,0,0,0,0,0,274 +NA,NA,,2017-18,Northampton - Jackson Street,2100020,0,55,63,55,66,61,58,0,0,0,0,0,0,0,0,358 +NA,NA,,2017-18,Northampton - John F Kennedy Middle School,2100410,0,0,0,0,0,0,0,176,223,216,0,0,0,0,0,615 +NA,NA,,2017-18,Northampton - Leeds,2100025,38,43,40,34,53,59,54,0,0,0,0,0,0,0,0,321 +NA,NA,,2017-18,Northampton - Northampton High,2100505,0,0,0,0,0,0,0,0,0,0,222,217,214,216,0,869 +NA,NA,,2017-18,Northampton - R. K. Finn Ryan Road,2100029,0,40,35,28,34,36,48,0,0,0,0,0,0,0,0,221 +NA,NA,,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,0,0,0,0,0,0,0,0,129,127,132,110,0,498 +NA,NA,,2017-18,Northboro-Southboro - Algonquin Regional High,7300505,0,0,0,0,0,0,0,0,0,0,386,353,365,359,8,1471 +NA,NA,,2017-18,Northborough - Fannie E Proctor,2130015,0,31,37,44,52,33,52,0,0,0,0,0,0,0,0,249 +NA,NA,,2017-18,Northborough - Lincoln Street,2130003,0,40,38,45,43,39,50,0,0,0,0,0,0,0,0,255 +NA,NA,,2017-18,Northborough - Marguerite E Peaslee,2130014,0,33,51,65,43,39,44,0,0,0,0,0,0,0,0,275 +NA,NA,,2017-18,Northborough - Marion E Zeh,2130020,0,35,40,43,42,43,40,0,0,0,0,0,0,0,0,243 +NA,NA,,2017-18,Northborough - Robert E. Melican Middle School,2130305,0,0,0,0,0,0,0,200,205,221,0,0,0,0,0,626 +NA,NA,,2017-18,Northbridge - Northbridge Elementary,2140005,76,156,148,0,0,0,0,0,0,0,0,0,0,0,0,380 +NA,NA,,2017-18,Northbridge - Northbridge High,2140505,0,0,0,0,0,0,0,0,0,0,149,130,140,148,0,567 +NA,NA,,2017-18,Northbridge - Northbridge Middle,2140305,0,0,0,0,0,0,157,180,185,201,0,0,0,0,0,723 +NA,NA,,2017-18,Northbridge - W Edward Balmer,2140001,0,0,0,156,169,180,0,0,0,0,0,0,0,0,0,505 +NA,NA,,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,0,0,0,0,0,0,0,0,0,0,331,320,301,294,0,1246 +NA,NA,,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,0,0,0,0,0,0,0,129,137,114,108,0,488 +NA,NA,,2017-18,Norton - Henri A. Yelle,2180060,0,0,0,0,0,195,200,0,0,0,0,0,0,0,0,395 +NA,NA,,2017-18,Norton - J C Solmonese,2180015,68,104,94,95,101,0,0,0,0,0,0,0,0,0,0,462 +NA,NA,,2017-18,Norton - L G Nourse Elementary,2180010,0,74,74,60,77,0,0,0,0,0,0,0,0,0,0,285 +NA,NA,,2017-18,Norton - Norton High,2180505,0,0,0,0,0,0,0,0,0,0,172,178,187,201,6,744 +NA,NA,,2017-18,Norton - Norton Middle,2180305,0,0,0,0,0,0,0,184,192,211,0,0,0,0,0,587 +NA,NA,,2017-18,Norwell - Grace Farrar Cole,2190005,21,70,71,81,68,71,94,0,0,0,0,0,0,0,0,476 +NA,NA,,2017-18,Norwell - Norwell High,2190505,0,0,0,0,0,0,0,0,0,0,166,189,173,167,0,695 +NA,NA,,2017-18,Norwell - Norwell Middle School,2190405,0,0,0,0,0,0,0,163,177,167,0,0,0,0,0,507 +NA,NA,,2017-18,Norwell - William G Vinal,2190020,23,73,73,79,91,89,91,0,0,0,0,0,0,0,0,519 +NA,NA,,2017-18,Norwood - Balch,2200005,0,0,69,53,56,58,60,0,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,Norwood - Charles J Prescott,2200025,0,3,59,56,46,40,45,0,0,0,0,0,0,0,0,249 +NA,NA,,2017-18,Norwood - Cornelius M Callahan,2200010,0,0,58,39,43,35,44,0,0,0,0,0,0,0,0,219 +NA,NA,,2017-18,Norwood - Dr. Philip O. Coakley Middle School,2200305,0,0,0,0,0,0,0,244,258,235,0,0,0,0,0,737 +NA,NA,,2017-18,Norwood - F A Cleveland,2200015,0,0,60,74,69,54,71,0,0,0,0,0,0,0,0,328 +NA,NA,,2017-18,Norwood - George F. Willett,2200075,109,280,0,0,0,0,0,0,0,0,0,0,0,0,0,389 +NA,NA,,2017-18,Norwood - John P Oldham,2200020,0,0,44,53,44,52,34,0,0,0,0,0,0,0,0,227 +NA,NA,,2017-18,Norwood - Norwood High,2200505,0,0,0,0,0,0,0,0,0,0,244,242,238,228,6,958 +NA,NA,,2017-18,Oak Bluffs - Oak Bluffs Elementary,2210005,18,29,43,50,47,55,57,49,48,30,0,0,0,0,0,426 +NA,NA,,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,0,0,0,0,0,0,0,0,0,137,149,133,119,0,538 +NA,NA,,2017-18,Old Rochester - Old Rochester Regional High,7400505,0,0,0,0,0,0,0,0,0,0,199,181,185,206,6,777 +NA,NA,,2017-18,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,0,0,0,0,0,218,261,0,0,0,0,0,479 +NA,NA,,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,40,40,40,40,0,0,0,0,0,0,0,0,0,0,160 +NA,NA,,2017-18,Orange - Dexter Park,2230010,0,0,0,0,65,90,85,73,0,0,0,0,0,0,0,313 +NA,NA,,2017-18,Orange - Fisher Hill,2230015,61,72,69,77,0,0,0,0,0,0,0,0,0,0,0,279 +NA,NA,,2017-18,Orleans - Orleans Elementary,2240005,0,37,36,36,32,47,35,0,0,0,0,0,0,0,0,223 +NA,NA,,2017-18,Oxford - Alfred M Chaffee,2260010,46,105,138,0,0,0,0,0,0,0,0,0,0,0,0,289 +NA,NA,,2017-18,Oxford - Clara Barton,2260005,0,0,0,126,131,126,0,0,0,0,0,0,0,0,0,383 +NA,NA,,2017-18,Oxford - Oxford High,2260505,0,0,0,0,0,0,0,0,0,137,102,101,93,101,9,543 +NA,NA,,2017-18,Oxford - Oxford Middle,2260405,0,0,0,0,0,0,160,146,137,0,0,0,0,0,0,443 +NA,NA,,2017-18,Oxford - Project C.O.F.F.E.E.,2260305,0,0,0,0,0,0,0,0,0,1,1,8,7,10,0,27 +NA,NA,,2017-18,Palmer - Old Mill Pond,2270008,40,104,116,93,100,109,125,0,0,0,0,0,0,0,0,687 +NA,NA,,2017-18,Palmer - Palmer High,2270505,0,0,0,0,0,0,0,107,119,117,84,84,109,93,0,713 +NA,NA,,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,0,0,0,0,0,0,0,166,170,138,139,1,614 +NA,NA,,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,0,0,0,0,0,0,0,0,0,0,66,71,69,64,0,270 +NA,NA,,2017-18,Peabody - Captain Samuel Brown,2290005,0,56,66,60,50,68,58,0,0,0,0,0,0,0,0,358 +NA,NA,,2017-18,Peabody - Center,2290015,0,65,73,58,62,65,71,0,0,0,0,0,0,0,0,394 +NA,NA,,2017-18,Peabody - J Henry Higgins Middle,2290305,0,0,0,0,0,0,0,457,479,430,0,0,0,0,0,1366 +NA,NA,,2017-18,Peabody - John E Burke,2290007,0,30,35,40,48,59,49,0,0,0,0,0,0,0,0,261 +NA,NA,,2017-18,Peabody - John E. McCarthy,2290016,121,44,36,36,42,42,33,0,0,0,0,0,0,0,0,354 +NA,NA,,2017-18,Peabody - Peabody Veterans Memorial High,2290510,0,0,0,0,0,0,0,0,0,0,357,335,361,419,8,1480 +NA,NA,,2017-18,Peabody - South Memorial,2290035,77,55,77,54,71,75,58,0,0,0,0,0,0,0,0,467 +NA,NA,,2017-18,Peabody - Thomas Carroll,2290010,0,108,105,93,95,92,130,0,0,0,0,0,0,0,0,623 +NA,NA,,2017-18,Peabody - West Memorial,2290045,37,31,41,40,28,33,38,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Peabody - William A Welch Sr,2290027,29,61,49,59,53,73,36,0,0,0,0,0,0,0,0,360 +NA,NA,,2017-18,Pelham - Pelham Elementary,2300005,0,16,20,18,16,24,17,16,0,0,0,0,0,0,0,127 +NA,NA,,2017-18,Pembroke - Bryantville Elementary,2310003,0,68,55,75,80,68,83,73,0,0,0,0,0,0,0,502 +NA,NA,,2017-18,Pembroke - Hobomock Elementary,2310010,0,58,57,69,50,52,78,61,0,0,0,0,0,0,0,425 +NA,NA,,2017-18,Pembroke - North Pembroke Elementary,2310015,69,56,56,66,78,73,67,84,0,0,0,0,0,0,0,549 +NA,NA,,2017-18,Pembroke - Pembroke Community Middle School,2310305,0,0,0,0,0,0,0,0,245,251,0,0,0,0,0,496 +NA,NA,,2017-18,Pembroke - Pembroke High School,2310505,0,0,0,0,0,0,0,0,0,0,210,196,236,268,12,922 +NA,NA,,2017-18,Pentucket - Dr Frederick N Sweetsir,7450020,36,56,62,64,0,0,0,0,0,0,0,0,0,0,0,218 +NA,NA,,2017-18,Pentucket - Dr John C Page School,7450015,16,45,43,38,51,50,55,43,0,0,0,0,0,0,0,341 +NA,NA,,2017-18,Pentucket - Elmer S Bagnall,7450005,34,61,56,71,68,56,86,73,0,0,0,0,0,0,0,505 +NA,NA,,2017-18,Pentucket - Helen R Donaghue School,7450010,0,0,0,0,52,48,69,72,0,0,0,0,0,0,0,241 +NA,NA,,2017-18,Pentucket - Pentucket Regional Middle,7450405,0,0,0,0,0,0,0,0,207,215,0,0,0,0,0,422 +NA,NA,,2017-18,Pentucket - Pentucket Regional Sr High,7450505,0,0,0,0,0,0,0,0,0,0,207,194,154,185,2,742 +NA,NA,,2017-18,Petersham - Petersham Center,2340005,0,8,21,16,19,17,16,19,0,0,0,0,0,0,0,116 +NA,NA,,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,0,0,0,0,0,0,0,0,0,0,136,21,15,31,0,203 +NA,NA,,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,0,0,0,0,0,0,0,0,0,0,132,24,13,28,0,197 +NA,NA,,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,0,67,68,67,66,64,0,0,69,69,64,51,50,33,0,668 +NA,NA,,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,0,0,0,0,0,0,0,0,77,77,69,59,45,30,0,357 +NA,NA,,2017-18,Pioneer Valley - Bernardston Elementary,7500006,16,18,18,21,22,14,22,26,0,0,0,0,0,0,0,157 +NA,NA,,2017-18,Pioneer Valley - Northfield Elementary,7500008,14,24,20,24,26,22,25,31,0,0,0,0,0,0,0,186 +NA,NA,,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,7500007,3,8,7,2,5,2,3,3,0,0,0,0,0,0,0,33 +NA,NA,,2017-18,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,0,0,0,0,0,74,66,52,47,64,57,0,360 +NA,NA,,2017-18,Pioneer Valley - Warwick Community School,7500009,4,10,9,6,11,4,8,7,0,0,0,0,0,0,0,59 +NA,NA,,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,0,44,44,44,46,47,43,54,50,46,39,9,16,11,0,493 +NA,NA,,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,0,0,0,0,0,0,0,0,68,69,64,69,67,64,0,401 +NA,NA,,2017-18,Pittsfield - Allendale,2360010,0,56,49,44,46,42,51,0,0,0,0,0,0,0,0,288 +NA,NA,,2017-18,Pittsfield - Crosby,2360065,67,62,59,55,75,54,74,0,0,0,0,0,0,0,0,446 +NA,NA,,2017-18,Pittsfield - Egremont,2360035,0,71,64,60,76,72,80,0,0,0,0,0,0,0,0,423 +NA,NA,,2017-18,Pittsfield - John T Reid Middle,2360305,0,0,0,0,0,0,0,178,179,193,0,0,0,0,0,550 +NA,NA,,2017-18,Pittsfield - Morningside Community School,2360055,18,70,50,50,56,56,87,0,0,0,0,0,0,0,0,387 +NA,NA,,2017-18,Pittsfield - Pittsfield High,2360505,0,0,0,0,0,0,0,0,0,0,223,214,210,189,16,852 +NA,NA,,2017-18,Pittsfield - Robert T. Capeless Elementary School,2360045,22,37,33,28,31,35,30,0,0,0,0,0,0,0,0,216 +NA,NA,,2017-18,Pittsfield - Silvio O Conte Community,2360105,17,72,58,51,60,52,52,0,0,0,0,0,0,0,0,362 +NA,NA,,2017-18,Pittsfield - Stearns,2360090,0,51,39,42,49,30,34,0,0,0,0,0,0,0,0,245 +NA,NA,,2017-18,Pittsfield - Taconic High,2360510,0,0,0,0,0,0,0,0,0,0,225,169,173,166,0,733 +NA,NA,,2017-18,Pittsfield - Theodore Herberg Middle,2360310,0,0,0,0,0,0,0,222,202,219,0,0,0,0,0,643 +NA,NA,,2017-18,Pittsfield - Williams,2360100,0,48,51,49,56,52,63,0,0,0,0,0,0,0,0,319 +NA,NA,,2017-18,Plainville - Anna Ware Jackson,2380010,57,92,90,83,81,0,0,0,0,0,0,0,0,0,0,403 +NA,NA,,2017-18,Plainville - Beatrice H Wood Elementary,2380005,0,0,0,0,0,101,94,108,0,0,0,0,0,0,0,303 +NA,NA,,2017-18,Plymouth - Cold Spring,2390005,0,41,39,38,41,44,52,0,0,0,0,0,0,0,0,255 +NA,NA,,2017-18,Plymouth - Federal Furnace School,2390011,0,59,64,59,81,62,61,0,0,0,0,0,0,0,0,386 +NA,NA,,2017-18,Plymouth - Hedge,2390010,0,0,24,28,29,32,41,0,0,0,0,0,0,0,0,154 +NA,NA,,2017-18,Plymouth - Indian Brook,2390012,0,91,86,97,87,108,98,0,0,0,0,0,0,0,0,567 +NA,NA,,2017-18,Plymouth - Manomet Elementary,2390015,0,38,57,39,53,47,53,0,0,0,0,0,0,0,0,287 +NA,NA,,2017-18,Plymouth - Nathaniel Morton Elementary,2390030,0,85,87,85,113,77,100,0,0,0,0,0,0,0,0,547 +NA,NA,,2017-18,Plymouth - Plymouth Commun Intermediate,2390405,0,0,0,0,0,0,0,369,321,330,0,0,0,0,0,1020 +NA,NA,,2017-18,Plymouth - Plymouth Early Childhood Center,2390003,140,0,0,0,0,0,0,0,0,0,0,0,0,0,0,140 +NA,NA,,2017-18,Plymouth - Plymouth North High,2390505,0,0,0,0,0,0,0,0,0,0,351,333,310,287,0,1281 +NA,NA,,2017-18,Plymouth - Plymouth South High,2390515,0,0,0,0,0,0,0,0,0,0,306,260,273,256,0,1095 +NA,NA,,2017-18,Plymouth - Plymouth South Middle,2390305,0,0,0,0,0,0,0,248,238,238,0,0,0,0,0,724 +NA,NA,,2017-18,Plymouth - South Elementary,2390046,0,99,112,102,112,117,111,0,0,0,0,0,0,0,0,653 +NA,NA,,2017-18,Plymouth - West Elementary,2390047,0,83,64,60,52,70,65,0,0,0,0,0,0,0,0,394 +NA,NA,,2017-18,Plympton - Dennett Elementary,2400010,0,30,29,35,21,32,28,32,0,0,0,0,0,0,0,207 +NA,NA,,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,0,85,80,85,90,95,97,98,93,93,99,72,75,70,0,1132 +NA,NA,,2017-18,Provincetown - Provincetown Schools,2420020,18,7,12,15,12,18,8,10,10,10,0,0,0,0,0,120 +NA,NA,,2017-18,Quabbin - Hardwick Elementary,7530005,0,21,19,31,25,34,28,36,0,0,0,0,0,0,0,194 +NA,NA,,2017-18,Quabbin - Hubbardston Center,7530010,0,52,46,40,46,49,42,44,0,0,0,0,0,0,0,319 +NA,NA,,2017-18,Quabbin - IB School of Quabbin,7530515,0,0,0,0,0,0,0,0,0,0,0,0,6,7,0,13 +NA,NA,,2017-18,Quabbin - New Braintree Grade,7530020,0,34,20,0,0,0,0,0,0,0,0,0,0,0,0,54 +NA,NA,,2017-18,Quabbin - Oakham Center,7530025,0,0,0,22,31,23,27,26,0,0,0,0,0,0,0,129 +NA,NA,,2017-18,Quabbin - Quabbin Regional High School,7530505,0,0,0,0,0,0,0,0,0,0,201,150,142,164,0,657 +NA,NA,,2017-18,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,0,0,0,0,0,174,222,0,0,0,0,0,396 +NA,NA,,2017-18,Quabbin - Ruggles Lane,7530030,68,47,46,53,69,58,50,73,0,0,0,0,0,0,0,464 +NA,NA,,2017-18,Quaboag Regional - Quaboag Regional High,7780505,0,0,0,0,0,0,0,0,0,0,120,70,101,76,0,367 +NA,NA,,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,0,0,0,0,0,126,110,0,0,0,0,0,236 +NA,NA,,2017-18,Quaboag Regional - Warren Elementary,7780005,36,51,46,55,71,57,66,63,0,0,0,0,0,0,0,445 +NA,NA,,2017-18,Quaboag Regional - West Brookfield Elementary,7780010,27,36,37,36,45,43,39,41,0,0,0,0,0,0,0,304 +NA,NA,,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193 +NA,NA,,2017-18,Quincy - Atherton Hough,2430040,0,37,51,44,37,44,38,0,0,0,0,0,0,0,0,251 +NA,NA,,2017-18,Quincy - Atlantic Middle,2430305,0,0,0,0,0,0,0,184,149,164,0,0,0,0,0,497 +NA,NA,,2017-18,Quincy - Beechwood Knoll Elementary,2430020,0,68,68,57,53,49,56,0,0,0,0,0,0,0,0,351 +NA,NA,,2017-18,Quincy - Broad Meadows Middle,2430310,0,0,0,0,0,0,0,134,128,120,0,0,0,0,0,382 +NA,NA,,2017-18,Quincy - Central Middle,2430315,0,0,0,0,0,0,0,206,216,212,0,0,0,0,0,634 +NA,NA,,2017-18,Quincy - Charles A Bernazzani Elementary,2430025,0,59,49,58,50,64,50,0,0,0,0,0,0,0,0,330 +NA,NA,,2017-18,Quincy - Clifford H Marshall Elementary,2430055,0,112,120,100,118,115,0,0,0,0,0,0,0,0,0,565 +NA,NA,,2017-18,Quincy - Francis W Parker,2430075,0,53,41,48,54,59,58,0,0,0,0,0,0,0,0,313 +NA,NA,,2017-18,Quincy - Lincoln-Hancock Community School,2430035,0,128,99,103,94,93,0,0,0,0,0,0,0,0,0,517 +NA,NA,,2017-18,Quincy - Merrymount,2430060,0,57,53,61,59,61,56,0,0,0,0,0,0,0,0,347 +NA,NA,,2017-18,Quincy - Montclair,2430065,0,62,82,70,66,69,63,0,0,0,0,0,0,0,0,412 +NA,NA,,2017-18,Quincy - North Quincy High,2430510,0,0,0,0,0,0,0,0,0,0,291,285,320,323,1,1220 +NA,NA,,2017-18,Quincy - Point Webster Middle,2430325,0,0,0,0,0,0,99,79,94,84,0,0,0,0,0,356 +NA,NA,,2017-18,Quincy - Quincy High,2430505,0,0,0,0,0,0,0,0,0,0,397,384,392,367,0,1540 +NA,NA,,2017-18,Quincy - Reay E Sterling Middle,2430320,0,0,0,0,0,0,96,89,85,92,0,0,0,0,0,362 +NA,NA,,2017-18,Quincy - Snug Harbor Community School,2430090,149,57,49,46,56,62,45,0,0,0,0,0,0,0,0,464 +NA,NA,,2017-18,Quincy - Squantum,2430095,0,68,64,57,53,53,50,0,0,0,0,0,0,0,0,345 +NA,NA,,2017-18,Quincy - Wollaston School,2430110,0,53,62,55,57,53,53,0,0,0,0,0,0,0,0,333 +NA,NA,,2017-18,Ralph C Mahar - Pathways Early College Innovation School,7550515,0,0,0,0,0,0,0,0,0,0,0,0,17,19,0,36 +NA,NA,,2017-18,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,0,0,0,0,0,0,0,126,119,115,83,101,97,0,641 +NA,NA,,2017-18,Ralph C Mahar - The Gateway to College,7550525,0,0,0,0,0,0,0,0,0,0,40,0,17,26,0,83 +NA,NA,,2017-18,Randolph - Elizabeth G Lyons Elementary,2440020,0,52,45,42,49,56,54,0,0,0,0,0,0,0,0,298 +NA,NA,,2017-18,Randolph - J F Kennedy Elementary,2440018,70,61,67,58,76,56,77,0,0,0,0,0,0,0,0,465 +NA,NA,,2017-18,Randolph - Margaret L Donovan,2440015,0,76,69,66,83,82,66,0,0,0,0,0,0,0,0,442 +NA,NA,,2017-18,Randolph - Martin E Young Elementary,2440040,0,43,40,50,59,64,52,0,0,0,0,0,0,0,0,308 +NA,NA,,2017-18,Randolph - Randolph Community Middle,2440410,0,0,0,0,0,0,0,191,191,220,0,0,0,0,0,602 +NA,NA,,2017-18,Randolph - Randolph High,2440505,0,0,0,0,0,0,0,0,0,0,208,174,155,171,0,708 +NA,NA,,2017-18,Reading - Alice M Barrows,2460002,0,67,55,80,63,59,53,0,0,0,0,0,0,0,0,377 +NA,NA,,2017-18,Reading - Arthur W Coolidge Middle,2460305,0,0,0,0,0,0,0,172,152,152,0,0,0,0,0,476 +NA,NA,,2017-18,Reading - Birch Meadow,2460005,0,60,65,62,64,65,54,0,0,0,0,0,0,0,0,370 +NA,NA,,2017-18,Reading - J Warren Killam,2460017,0,66,67,81,61,68,77,0,0,0,0,0,0,0,0,420 +NA,NA,,2017-18,Reading - Joshua Eaton,2460010,0,59,41,70,77,61,80,0,0,0,0,0,0,0,0,388 +NA,NA,,2017-18,Reading - Reading Memorial High,2460505,0,0,0,0,0,0,0,0,0,0,325,306,331,273,0,1235 +NA,NA,,2017-18,Reading - RISE PreSchool,2460001,94,0,0,0,0,0,0,0,0,0,0,0,0,0,0,94 +NA,NA,,2017-18,Reading - Walter S Parker Middle,2460310,0,0,0,0,0,0,0,188,201,174,0,0,0,0,0,563 +NA,NA,,2017-18,Reading - Wood End Elementary School,2460020,0,41,45,48,69,46,41,0,0,0,0,0,0,0,0,290 +NA,NA,,2017-18,Revere - A. C. Whelan Elementary School,2480003,0,118,128,119,123,136,129,0,0,0,0,0,0,0,0,753 +NA,NA,,2017-18,Revere - Abraham Lincoln,2480025,90,103,97,96,84,110,115,0,0,0,0,0,0,0,0,695 +NA,NA,,2017-18,Revere - Beachmont Veterans Memorial School,2480013,38,62,58,52,49,54,61,0,0,0,0,0,0,0,0,374 +NA,NA,,2017-18,Revere - Garfield Elementary School,2480056,63,106,130,125,107,116,121,0,0,0,0,0,0,0,0,768 +NA,NA,,2017-18,Revere - Garfield Middle School,2480057,0,0,0,0,0,0,0,183,181,174,0,0,0,0,0,538 +NA,NA,,2017-18,Revere - Paul Revere,2480050,0,71,80,81,74,86,80,0,0,0,0,0,0,0,0,472 +NA,NA,,2017-18,Revere - Revere High,2480505,0,0,0,0,0,0,0,0,0,0,614,443,481,446,7,1991 +NA,NA,,2017-18,Revere - Rumney Marsh Academy,2480014,0,0,0,0,0,0,0,205,195,197,0,0,0,0,0,597 +NA,NA,,2017-18,Revere - Seacoast School,2480520,0,0,0,0,0,0,0,0,0,0,23,22,25,12,0,82 +NA,NA,,2017-18,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,117,104,116,111,131,133,0,0,0,0,0,0,0,0,712 +NA,NA,,2017-18,Revere - Susan B. Anthony Middle School,2480305,0,0,0,0,0,0,0,189,195,186,0,0,0,0,0,570 +NA,NA,,2017-18,Richmond - Richmond Consolidated,2490005,15,18,17,17,19,16,20,24,13,20,0,0,0,0,0,179 +NA,NA,,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,0,0,0,0,0,0,92,92,91,90,73,80,70,72,0,660 +NA,NA,,2017-18,River Valley Charter (District) - River Valley Charter School,4820050,0,32,32,32,34,32,33,32,31,30,0,0,0,0,0,288 +NA,NA,,2017-18,Rochester - Rochester Memorial,2500005,26,73,54,75,63,68,73,66,0,0,0,0,0,0,0,498 +NA,NA,,2017-18,Rockland - Jefferson Elementary School,2510060,0,93,56,53,51,52,0,0,0,0,0,0,0,0,0,305 +NA,NA,,2017-18,Rockland - John W Rogers Middle,2510305,0,0,0,0,0,0,161,154,157,177,0,0,0,0,0,649 +NA,NA,,2017-18,Rockland - Memorial Park,2510020,0,54,60,52,51,66,0,0,0,0,0,0,0,0,0,283 +NA,NA,,2017-18,Rockland - R Stewart Esten,2510025,0,17,61,76,69,88,0,0,0,0,0,0,0,0,0,311 +NA,NA,,2017-18,Rockland - Rockland Senior High,2510505,61,0,0,0,0,0,0,0,0,0,148,170,122,139,5,645 +NA,NA,,2017-18,Rockport - Rockport Elementary,2520005,16,52,59,73,65,60,68,0,0,0,0,0,0,0,0,393 +NA,NA,,2017-18,Rockport - Rockport High,2520510,0,0,0,0,0,0,0,0,0,0,68,73,77,68,0,286 +NA,NA,,2017-18,Rockport - Rockport Middle,2520305,0,0,0,0,0,0,0,73,76,76,0,0,0,0,0,225 +NA,NA,,2017-18,Rowe - Rowe Elementary,2530005,14,8,13,4,10,7,5,10,0,0,0,0,0,0,0,71 +NA,NA,,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,0,0,0,0,0,0,236,248,244,255,199,162,78,0,0,1422 +NA,NA,,2017-18,Sabis International Charter (District) - Sabis International Charter School,4410505,0,107,114,123,160,129,128,130,128,128,110,98,115,104,0,1574 +NA,NA,,2017-18,Salem - Bates,2580003,0,48,65,67,57,53,52,0,0,0,0,0,0,0,0,342 +NA,NA,,2017-18,Salem - Carlton,2580015,0,55,45,31,44,45,32,0,0,0,0,0,0,0,0,252 +NA,NA,,2017-18,Salem - Collins Middle,2580305,0,0,0,0,0,0,0,178,185,173,0,0,0,0,0,536 +NA,NA,,2017-18,Salem - Horace Mann Laboratory,2580030,0,44,43,39,45,53,48,0,0,0,0,0,0,0,0,272 +NA,NA,,2017-18,Salem - Nathaniel Bowditch,2580025,0,35,38,43,48,44,51,40,45,34,0,0,0,0,0,378 +NA,NA,,2017-18,Salem - New Liberty Innovation School,2580510,0,0,0,0,0,0,0,0,0,0,5,7,13,20,0,45 +NA,NA,,2017-18,Salem - Salem Early Childhood,2580001,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,93 +NA,NA,,2017-18,Salem - Salem High,2580505,0,0,0,0,0,0,0,0,0,0,247,219,227,223,4,920 +NA,NA,,2017-18,Salem - Salem Prep High School,2580515,0,0,0,0,0,0,0,0,0,3,5,6,7,4,1,26 +NA,NA,,2017-18,Salem - Saltonstall School,2580050,0,39,43,40,44,51,41,37,40,37,0,0,0,0,0,372 +NA,NA,,2017-18,Salem - Witchcraft Heights,2580070,0,66,83,69,71,84,85,0,0,0,0,0,0,0,0,458 +NA,NA,,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,4850485,0,0,0,0,0,0,0,74,73,72,82,74,56,44,0,475 +NA,NA,,2017-18,Sandwich - Forestdale School,2610002,66,164,188,214,0,0,0,0,0,0,0,0,0,0,0,632 +NA,NA,,2017-18,Sandwich - Oak Ridge,2610025,0,0,0,0,184,212,205,223,0,0,0,0,0,0,0,824 +NA,NA,,2017-18,Sandwich - Sandwich High,2610505,0,0,0,0,0,0,0,0,0,0,157,170,173,169,0,669 +NA,NA,,2017-18,Sandwich - Sandwich STEM Academy,2610305,0,0,0,0,0,0,0,0,234,226,0,0,0,0,0,460 +NA,NA,,2017-18,Saugus - Belmonte Saugus Middle,2620305,0,0,0,0,0,0,0,216,205,229,0,0,0,0,0,650 +NA,NA,,2017-18,Saugus - Douglas Waybright,2620067,44,24,24,35,28,36,40,0,0,0,0,0,0,0,0,231 +NA,NA,,2017-18,Saugus - Lynnhurst,2620040,0,60,37,44,39,41,49,0,0,0,0,0,0,0,0,270 +NA,NA,,2017-18,Saugus - Oaklandvale,2620050,0,36,45,39,39,45,36,0,0,0,0,0,0,0,0,240 +NA,NA,,2017-18,Saugus - Saugus High,2620505,0,0,0,0,0,0,0,0,0,0,165,158,187,139,7,656 +NA,NA,,2017-18,Saugus - Veterans Memorial,2620065,56,68,91,81,71,87,87,0,0,0,0,0,0,0,0,541 +NA,NA,,2017-18,Savoy - Emma L Miller Elementary School,2630010,11,9,7,9,10,9,5,0,0,0,0,0,0,0,0,60 +NA,NA,,2017-18,Scituate - Cushing Elementary,2640007,0,52,56,53,48,50,53,0,0,0,0,0,0,0,0,312 +NA,NA,,2017-18,Scituate - Gates Middle School,2640305,0,0,0,0,0,0,0,234,217,270,0,0,0,0,0,721 +NA,NA,,2017-18,Scituate - Hatherly Elementary,2640010,0,38,35,48,49,51,49,0,0,0,0,0,0,0,0,270 +NA,NA,,2017-18,Scituate - Jenkins Elementary School,2640015,0,65,47,53,57,60,78,0,0,0,0,0,0,0,0,360 +NA,NA,,2017-18,Scituate - Scituate High School,2640505,0,0,0,0,0,0,0,0,0,0,251,232,211,227,0,921 +NA,NA,,2017-18,Scituate - Wampatuck Elementary,2640020,76,56,55,57,63,44,49,0,0,0,0,0,0,0,0,400 +NA,NA,,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,0,0,0,0,0,0,0,156,170,175,0,0,0,0,0,501 +NA,NA,,2017-18,Seekonk - George R Martin,2650007,20,72,79,71,76,62,99,0,0,0,0,0,0,0,0,479 +NA,NA,,2017-18,Seekonk - Mildred Aitken School,2650015,27,68,68,63,64,65,73,0,0,0,0,0,0,0,0,428 +NA,NA,,2017-18,Seekonk - Seekonk High,2650505,0,0,0,0,0,0,0,0,0,0,154,149,152,139,0,594 +NA,NA,,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,0,61,75,88,81,81,79,77,60,65,0,0,0,0,0,667 +NA,NA,,2017-18,Sharon - Cottage Street,2660005,0,66,86,79,96,94,99,0,0,0,0,0,0,0,0,520 +NA,NA,,2017-18,Sharon - East Elementary,2660010,0,67,79,86,80,91,88,0,0,0,0,0,0,0,0,491 +NA,NA,,2017-18,Sharon - Heights Elementary,2660015,0,81,77,91,89,92,95,0,0,0,0,0,0,0,0,525 +NA,NA,,2017-18,Sharon - Sharon Early Childhood Center,2660001,50,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50 +NA,NA,,2017-18,Sharon - Sharon High,2660505,0,0,0,0,0,0,0,0,0,0,276,250,283,270,0,1079 +NA,NA,,2017-18,Sharon - Sharon Middle,2660305,0,0,0,0,0,0,0,285,270,318,0,0,0,0,0,873 +NA,NA,,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,0,0,0,0,0,0,0,0,340,331,318,337,0,1326 +NA,NA,,2017-18,Sherborn - Pine Hill,2690010,24,49,65,57,65,80,81,0,0,0,0,0,0,0,0,421 +NA,NA,,2017-18,Shrewsbury - Beal School,2710005,0,254,55,0,0,0,0,0,0,0,0,0,0,0,0,309 +NA,NA,,2017-18,Shrewsbury - Calvin Coolidge,2710015,0,40,108,73,96,96,0,0,0,0,0,0,0,0,0,413 +NA,NA,,2017-18,Shrewsbury - Floral Street School,2710020,0,0,131,212,192,215,0,0,0,0,0,0,0,0,0,750 +NA,NA,,2017-18,Shrewsbury - Oak Middle School,2710030,0,0,0,0,0,0,0,0,493,516,0,0,0,0,0,1009 +NA,NA,,2017-18,Shrewsbury - Parker Road Preschool,2710040,235,0,0,0,0,0,0,0,0,0,0,0,0,0,0,235 +NA,NA,,2017-18,Shrewsbury - Sherwood Middle School,2710305,0,0,0,0,0,0,464,503,0,0,0,0,0,0,0,967 +NA,NA,,2017-18,Shrewsbury - Shrewsbury Sr High,2710505,0,0,0,0,0,0,0,0,0,0,451,513,429,438,0,1831 +NA,NA,,2017-18,Shrewsbury - Spring Street,2710035,0,40,71,74,99,74,0,0,0,0,0,0,0,0,0,358 +NA,NA,,2017-18,Shrewsbury - Walter J Paton,2710025,0,20,59,78,89,96,0,0,0,0,0,0,0,0,0,342 +NA,NA,,2017-18,Shutesbury - Shutesbury Elementary,2720005,16,11,18,10,22,12,15,18,0,0,0,0,0,0,0,122 +NA,NA,,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,4770010,0,95,91,97,98,93,86,0,0,0,0,0,0,0,0,560 +NA,NA,,2017-18,Silver Lake - Silver Lake Regional High,7600505,98,0,0,0,0,0,0,0,0,0,286,319,277,325,0,1305 +NA,NA,,2017-18,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,0,0,0,0,0,271,271,0,0,0,0,0,542 +NA,NA,,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,0,0,0,0,0,0,0,75,75,69,61,52,27,0,359 +NA,NA,,2017-18,Somerset - Chace Street,2730005,71,59,65,52,51,71,50,0,0,0,0,0,0,0,0,419 +NA,NA,,2017-18,Somerset - North Elementary,2730008,0,64,82,70,74,100,100,0,0,0,0,0,0,0,0,490 +NA,NA,,2017-18,Somerset - Somerset Middle School,2730305,0,0,0,0,0,0,0,210,198,198,0,0,0,0,0,606 +NA,NA,,2017-18,Somerset - South,2730015,0,45,45,36,51,47,50,0,0,0,0,0,0,0,0,274 +NA,NA,,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,0,0,0,0,0,0,0,0,249,274,262,214,2,1001 +NA,NA,,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,18,68,75,85,86,63,59,42,44,44,0,0,0,0,0,584 +NA,NA,,2017-18,Somerville - Arthur D Healey,2740075,18,54,51,49,46,44,49,51,40,49,0,0,0,0,0,451 +NA,NA,,2017-18,Somerville - Benjamin G Brown,2740015,0,32,44,45,36,37,37,0,0,0,0,0,0,0,0,231 +NA,NA,,2017-18,Somerville - Capuano Early Childhood Center,2740005,228,86,0,0,0,0,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2017-18,Somerville - E Somerville Community,2740111,0,67,88,95,88,88,95,83,65,51,0,0,0,0,0,720 +NA,NA,,2017-18,Somerville - Full Circle High School,2740510,0,0,0,0,0,0,0,0,0,0,9,17,13,13,0,52 +NA,NA,,2017-18,Somerville - John F Kennedy,2740083,0,46,50,47,50,45,44,75,47,52,0,0,0,0,0,456 +NA,NA,,2017-18,Somerville - Next Wave Junior High,2740410,0,0,0,0,0,0,0,2,6,7,0,0,0,0,0,15 +NA,NA,,2017-18,Somerville - Somerville High,2740505,0,0,0,0,0,0,0,0,0,0,313,316,320,261,5,1215 +NA,NA,,2017-18,Somerville - West Somerville Neighborhood,2740115,18,42,40,47,44,30,35,32,35,48,0,0,0,0,0,371 +NA,NA,,2017-18,Somerville - Winter Hill Community,2740120,18,32,38,40,51,38,56,62,55,69,0,0,0,0,0,459 +NA,NA,,2017-18,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,0,0,0,156,146,137,133,0,0,0,0,0,572 +NA,NA,,2017-18,South Hadley - Mosier,2780020,0,0,0,138,154,128,0,0,0,0,0,0,0,0,0,420 +NA,NA,,2017-18,South Hadley - Plains Elementary,2780015,63,133,144,0,0,0,0,0,0,0,0,0,0,0,0,340 +NA,NA,,2017-18,South Hadley - South Hadley High,2780505,0,0,0,0,0,0,0,0,0,0,144,141,123,139,8,555 +NA,NA,,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0,0,0,0,0,0,0,0,0,0,198,193,177,163,0,731 +NA,NA,,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,4880550,0,77,67,61,66,66,79,77,77,78,78,85,64,52,0,927 +NA,NA,,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,0,0,0,0,0,0,0,0,168,159,170,153,0,650 +NA,NA,,2017-18,Southampton - William E Norris,2750005,36,57,75,61,59,71,78,75,0,0,0,0,0,0,0,512 +NA,NA,,2017-18,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,138,128,0,0,0,0,0,0,0,0,0,0,266 +NA,NA,,2017-18,Southborough - Margaret A Neary,2760020,0,0,0,0,0,121,137,0,0,0,0,0,0,0,0,258 +NA,NA,,2017-18,Southborough - Mary E Finn School,2760008,86,130,120,0,0,0,0,0,0,0,0,0,0,0,0,336 +NA,NA,,2017-18,Southborough - P Brent Trottier,2760305,0,0,0,0,0,0,0,159,145,156,0,0,0,0,0,460 +NA,NA,,2017-18,Southbridge - Charlton Street,2770005,0,0,0,67,72,82,89,0,0,0,0,0,0,0,0,310 +NA,NA,,2017-18,Southbridge - Eastford Road,2770010,66,166,161,0,0,0,0,0,0,0,0,0,0,0,0,393 +NA,NA,,2017-18,Southbridge - Southbridge High School,2770515,0,0,0,0,0,0,0,0,0,0,151,128,113,108,0,500 +NA,NA,,2017-18,Southbridge - Southbridge Middle School,2770315,0,0,0,0,0,0,0,166,167,150,0,0,0,0,0,483 +NA,NA,,2017-18,Southbridge - West Street,2770020,0,0,0,81,83,79,74,0,0,0,0,0,0,0,0,317 +NA,NA,,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,0,0,0,0,0,0,0,0,0,0,376,356,356,339,0,1427 +NA,NA,,2017-18,Southern Berkshire - Mt Everett Regional,7650505,0,0,0,0,0,0,0,0,62,46,51,55,45,45,0,304 +NA,NA,,2017-18,Southern Berkshire - New Marlborough Central,7650018,14,8,20,11,18,16,0,0,0,0,0,0,0,0,0,87 +NA,NA,,2017-18,Southern Berkshire - Undermountain,7650035,22,34,33,40,31,29,56,45,0,0,0,0,0,0,0,290 +NA,NA,,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,0,0,0,0,0,0,0,0,309,275,286,253,0,1123 +NA,NA,,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,0,114,109,114,105,0,0,0,0,0,0,0,442 +NA,NA,,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,0,0,0,0,0,0,116,126,112,118,122,124,2,720 +NA,NA,,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,56,102,91,108,0,0,0,0,0,0,0,0,0,0,0,357 +NA,NA,,2017-18,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,0,0,0,0,0,0,0,71,69,92,58,3,293 +NA,NA,,2017-18,Spencer-E Brookfield - East Brookfield Elementary,7670008,65,28,20,26,20,33,21,18,0,0,0,0,0,0,0,231 +NA,NA,,2017-18,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,0,0,0,95,110,116,96,0,0,0,0,0,417 +NA,NA,,2017-18,Spencer-E Brookfield - Wire Village School,7670040,0,84,91,68,82,100,0,0,0,0,0,0,0,0,0,425 +NA,NA,,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,75,47,50,43,46,36,39,39,31,28,0,0,0,0,0,434 +NA,NA,,2017-18,Springfield - Alice B Beal Elementary,2810175,0,44,43,40,48,46,40,0,0,0,0,0,0,0,0,261 +NA,NA,,2017-18,Springfield - Arthur T Talmadge,2810165,0,43,39,53,42,43,34,0,0,0,0,0,0,0,0,254 +NA,NA,,2017-18,Springfield - Balliet Middle School,2810360,0,0,0,0,0,0,0,2,16,33,0,0,0,0,0,51 +NA,NA,,2017-18,Springfield - Brightwood,2810025,0,52,44,58,57,54,52,0,0,0,0,0,0,0,0,317 +NA,NA,,2017-18,Springfield - Chestnut Academy,2810365,0,0,0,0,0,0,0,101,89,229,0,0,0,0,0,419 +NA,NA,,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,0,0,0,0,0,0,0,120,104,92,0,0,0,0,0,316 +NA,NA,,2017-18,Springfield - Conservatory of the Arts,2810475,0,0,0,0,0,0,0,59,57,57,48,52,46,49,0,368 +NA,NA,,2017-18,Springfield - Daniel B Brunton,2810035,0,80,76,79,77,78,76,0,0,0,0,0,0,0,0,466 +NA,NA,,2017-18,Springfield - Early Childhood Education Center,2810001,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170 +NA,NA,,2017-18,Springfield - Edward P. Boland School,2810010,204,92,105,78,92,113,102,0,0,0,0,0,0,0,0,786 +NA,NA,,2017-18,Springfield - Elias Brookings,2810030,52,40,53,51,39,62,46,0,0,0,0,0,0,0,0,343 +NA,NA,,2017-18,Springfield - Forest Park Middle,2810325,0,0,0,0,0,0,0,244,217,251,0,0,0,0,0,712 +NA,NA,,2017-18,Springfield - Frank H Freedman,2810075,0,66,64,50,55,62,55,0,0,0,0,0,0,0,0,352 +NA,NA,,2017-18,Springfield - Frederick Harris,2810080,50,111,99,87,89,92,106,0,0,0,0,0,0,0,0,634 +NA,NA,,2017-18,Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,0,0,0,0,0,0,0,0,6,11,9,0,26 +NA,NA,,2017-18,Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,0,0,0,0,0,0,0,1,10,24,10,0,45 +NA,NA,,2017-18,Springfield - German Gerena Community School,2810195,125,109,104,101,91,99,91,0,0,0,0,0,0,0,0,720 +NA,NA,,2017-18,Springfield - Glenwood,2810065,0,41,48,48,53,57,51,0,0,0,0,0,0,0,0,298 +NA,NA,,2017-18,Springfield - Glickman Elementary,2810068,0,38,63,59,48,67,58,0,0,0,0,0,0,0,0,333 +NA,NA,,2017-18,Springfield - High School Of Commerce,2810510,0,0,0,0,0,0,0,0,0,0,356,242,223,257,1,1079 +NA,NA,,2017-18,Springfield - Hiram L Dorman,2810050,0,39,39,55,56,75,43,0,0,0,0,0,0,0,0,307 +NA,NA,,2017-18,Springfield - Homer Street,2810085,0,64,72,69,74,91,74,0,0,0,0,0,0,0,0,444 +NA,NA,,2017-18,Springfield - Impact Prep at Chestnut,2810366,0,0,0,0,0,0,0,109,120,0,0,0,0,0,0,229 +NA,NA,,2017-18,Springfield - Indian Orchard Elementary,2810100,83,74,84,103,103,84,107,0,0,0,0,0,0,0,0,638 +NA,NA,,2017-18,Springfield - John F Kennedy Middle,2810328,0,0,0,0,0,0,0,156,157,137,0,0,0,0,0,450 +NA,NA,,2017-18,Springfield - John J Duggan Middle,2810320,0,0,0,0,0,0,0,198,188,171,82,53,34,40,0,766 +NA,NA,,2017-18,Springfield - Kensington International School,2810110,0,46,56,54,48,56,50,0,0,0,0,0,0,0,0,310 +NA,NA,,2017-18,Springfield - Liberty,2810115,0,44,49,40,48,55,47,0,0,0,0,0,0,0,0,283 +NA,NA,,2017-18,Springfield - Liberty Preparatory Academy,2810560,0,0,0,0,0,0,0,0,0,0,2,6,4,0,0,12 +NA,NA,,2017-18,Springfield - Lincoln,2810120,0,69,68,64,66,75,62,0,0,0,0,0,0,0,0,404 +NA,NA,,2017-18,Springfield - M Marcus Kiley Middle,2810330,0,0,0,0,0,0,0,214,215,230,0,0,0,0,0,659 +NA,NA,,2017-18,Springfield - Margaret C Ells,2810060,157,52,31,0,0,0,0,0,0,0,0,0,0,0,0,240 +NA,NA,,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,2810125,56,42,51,54,62,54,52,0,0,0,0,0,0,0,0,371 +NA,NA,,2017-18,Springfield - Mary M Lynch,2810140,0,54,46,43,50,42,31,0,0,0,0,0,0,0,0,266 +NA,NA,,2017-18,Springfield - Mary M Walsh,2810155,0,34,43,59,52,56,51,0,0,0,0,0,0,0,0,295 +NA,NA,,2017-18,Springfield - Mary O Pottenger,2810145,0,70,59,66,81,89,60,0,0,0,0,0,0,0,0,425 +NA,NA,,2017-18,Springfield - Milton Bradley School,2810023,51,87,91,88,81,88,59,0,0,0,0,0,0,0,0,545 +NA,NA,,2017-18,Springfield - Rebecca M Johnson,2810055,142,81,108,97,118,97,106,0,0,0,0,0,0,0,0,749 +NA,NA,,2017-18,Springfield - Rise Academy at Van Sickle,2810480,0,0,0,0,0,0,0,90,125,0,0,0,0,0,0,215 +NA,NA,,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,0,0,0,0,0,0,0,0,0,0,367,376,341,352,0,1436 +NA,NA,,2017-18,Springfield - Samuel Bowles,2810020,0,48,53,51,69,52,65,0,0,0,0,0,0,0,0,338 +NA,NA,,2017-18,Springfield - South End Middle School,2810355,0,0,0,0,0,0,0,93,80,67,0,0,0,0,0,240 +NA,NA,,2017-18,Springfield - Springfield Central High,2810500,0,0,0,0,0,0,0,0,0,0,687,530,428,404,0,2049 +NA,NA,,2017-18,Springfield - Springfield High School,2810570,0,0,0,0,0,0,0,0,0,0,57,59,50,44,1,211 +NA,NA,,2017-18,Springfield - Springfield High School of Science and Technology,2810530,0,0,0,0,0,0,0,0,0,0,384,378,300,229,13,1304 +NA,NA,,2017-18,Springfield - Springfield Public Day Elementary School,2810005,0,1,10,8,14,20,20,0,0,0,0,0,0,0,0,73 +NA,NA,,2017-18,Springfield - Springfield Public Day High School,2810550,0,0,0,0,0,0,0,0,0,0,30,28,27,11,2,98 +NA,NA,,2017-18,Springfield - Springfield Public Day Middle School,2810345,0,0,0,0,0,0,0,18,15,17,0,0,0,0,0,50 +NA,NA,,2017-18,Springfield - Springfield Vocational Academy,2810675,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92,92 +NA,NA,,2017-18,Springfield - STEM Middle Academy,2810350,0,0,0,0,0,0,0,95,101,97,0,0,0,0,0,293 +NA,NA,,2017-18,Springfield - Sumner Avenue,2810160,90,65,86,88,91,95,74,0,0,0,0,0,0,0,0,589 +NA,NA,,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,0,0,0,0,0,0,0,100,109,103,103,102,84,85,8,694 +NA,NA,,2017-18,Springfield - Thomas M Balliet,2810015,52,33,45,45,46,46,51,0,0,0,0,0,0,0,0,318 +NA,NA,,2017-18,Springfield - Van Sickle Academy,2810485,0,0,0,0,0,0,0,76,120,207,0,0,0,0,0,403 +NA,NA,,2017-18,Springfield - Warner,2810180,35,33,39,49,45,47,42,0,0,0,0,0,0,0,0,290 +NA,NA,,2017-18,Springfield - Washington,2810185,50,68,48,57,57,72,65,0,0,0,0,0,0,0,0,417 +NA,NA,,2017-18,Springfield - White Street,2810190,0,80,80,77,70,68,81,0,0,0,0,0,0,0,0,456 +NA,NA,,2017-18,Springfield - William N. DeBerry,2810045,0,33,47,42,47,50,42,0,0,0,0,0,0,0,0,261 +NA,NA,,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,0,53,54,54,54,0,0,0,0,0,0,0,0,0,0,215 +NA,NA,,2017-18,Stoneham - Colonial Park,2840005,44,50,48,47,42,47,0,0,0,0,0,0,0,0,0,278 +NA,NA,,2017-18,Stoneham - Robin Hood,2840025,44,70,68,67,63,70,0,0,0,0,0,0,0,0,0,382 +NA,NA,,2017-18,Stoneham - South,2840030,0,53,65,66,67,69,0,0,0,0,0,0,0,0,0,320 +NA,NA,,2017-18,Stoneham - Stoneham Central Middle School,2840405,0,0,0,0,0,0,174,170,171,172,0,0,0,0,0,687 +NA,NA,,2017-18,Stoneham - Stoneham High,2840505,0,0,0,0,0,0,0,0,0,0,180,171,172,152,1,676 +NA,NA,,2017-18,Stoughton - Edwin A Jones Early Childhood Center,2850012,103,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103 +NA,NA,,2017-18,Stoughton - Helen Hansen Elementary,2850010,0,33,45,33,36,36,48,0,0,0,0,0,0,0,0,231 +NA,NA,,2017-18,Stoughton - Joseph H Gibbons,2850025,0,61,55,53,57,70,61,0,0,0,0,0,0,0,0,357 +NA,NA,,2017-18,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,69,60,68,48,56,56,0,0,0,0,0,0,0,0,357 +NA,NA,,2017-18,Stoughton - O'Donnell Middle School,2850405,0,0,0,0,0,0,0,322,261,242,0,0,0,0,0,825 +NA,NA,,2017-18,Stoughton - South Elementary,2850015,0,28,37,46,44,46,47,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Stoughton - Stoughton High,2850505,0,0,0,0,0,0,0,0,0,0,296,278,271,253,1,1099 +NA,NA,,2017-18,Stoughton - West Elementary,2850020,27,52,57,58,55,60,64,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Sturbridge - Burgess Elementary,2870005,66,109,109,111,112,141,124,128,0,0,0,0,0,0,0,900 +NA,NA,,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,0,0,0,0,0,0,0,0,0,215,218,198,185,0,816 +NA,NA,,2017-18,Sudbury - Ephraim Curtis Middle,2880305,0,0,0,0,0,0,0,308,303,330,0,0,0,0,0,941 +NA,NA,,2017-18,Sudbury - General John Nixon Elementary,2880025,0,44,42,64,55,75,60,0,0,0,0,0,0,0,0,340 +NA,NA,,2017-18,Sudbury - Israel Loring School,2880015,0,65,80,87,66,92,78,0,0,0,0,0,0,0,0,468 +NA,NA,,2017-18,Sudbury - Josiah Haynes,2880010,0,49,52,63,74,51,91,0,0,0,0,0,0,0,0,380 +NA,NA,,2017-18,Sudbury - Peter Noyes,2880030,49,84,84,87,86,75,102,0,0,0,0,0,0,0,0,567 +NA,NA,,2017-18,Sunderland - Sunderland Elementary,2890005,25,33,34,38,21,39,20,28,0,0,0,0,0,0,0,238 +NA,NA,,2017-18,Sutton - Sutton Early Learning,2900003,50,92,89,97,0,0,0,0,0,0,0,0,0,0,0,328 +NA,NA,,2017-18,Sutton - Sutton Elementary,2900005,0,0,0,0,108,101,120,0,0,0,0,0,0,0,0,329 +NA,NA,,2017-18,Sutton - Sutton High School,2900510,0,0,0,0,0,0,0,0,0,0,79,104,103,113,0,399 +NA,NA,,2017-18,Sutton - Sutton Middle School,2900305,0,0,0,0,0,0,0,111,131,123,0,0,0,0,0,365 +NA,NA,,2017-18,Swampscott - Clarke,2910005,0,39,35,41,38,44,0,0,0,0,0,0,0,0,0,197 +NA,NA,,2017-18,Swampscott - Hadley,2910010,0,58,52,56,56,64,0,0,0,0,0,0,0,0,0,286 +NA,NA,,2017-18,Swampscott - Stanley,2910020,0,62,56,61,57,60,0,0,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,Swampscott - Swampscott High,2910505,0,0,0,0,0,0,0,0,0,0,182,157,178,156,2,675 +NA,NA,,2017-18,Swampscott - Swampscott Middle,2910305,56,0,0,0,0,0,166,155,174,202,0,0,0,0,0,753 +NA,NA,,2017-18,Swansea - Elizabeth S Brown,2920006,0,0,0,0,80,102,92,0,0,0,0,0,0,0,0,274 +NA,NA,,2017-18,Swansea - Gardner,2920015,0,85,98,78,0,0,0,0,0,0,0,0,0,0,0,261 +NA,NA,,2017-18,Swansea - Joseph Case High,2920505,0,0,0,0,0,0,0,0,0,0,142,131,134,123,5,535 +NA,NA,,2017-18,Swansea - Joseph Case Jr High,2920305,0,0,0,0,0,0,0,193,160,168,0,0,0,0,0,521 +NA,NA,,2017-18,Swansea - Joseph G Luther,2920020,0,0,0,0,77,66,85,0,0,0,0,0,0,0,0,228 +NA,NA,,2017-18,Swansea - Mark G Hoyle Elementary,2920017,59,72,71,53,0,0,0,0,0,0,0,0,0,0,0,255 +NA,NA,,2017-18,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,0,0,0,0,0,0,293,297,0,0,0,0,0,590 +NA,NA,,2017-18,Tantasqua - Tantasqua Regional Sr High,7700505,0,0,0,0,0,0,0,0,0,0,174,198,169,179,8,728 +NA,NA,,2017-18,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,0,0,0,0,0,0,0,141,108,108,113,0,470 +NA,NA,,2017-18,Taunton - Benjamin Friedman Middle,2930315,0,0,0,0,0,0,264,256,242,0,0,0,0,0,0,762 +NA,NA,,2017-18,Taunton - East Taunton Elementary,2930010,0,123,126,120,133,116,0,0,0,0,0,0,0,0,0,618 +NA,NA,,2017-18,Taunton - Edmund Hatch Bennett,2930007,0,71,60,54,63,84,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2017-18,Taunton - Edward F. Leddy Preschool,2930005,338,0,0,0,0,0,0,0,0,0,0,0,0,0,0,338 +NA,NA,,2017-18,Taunton - Elizabeth Pole,2930027,0,121,124,123,129,125,0,0,0,0,0,0,0,0,0,622 +NA,NA,,2017-18,Taunton - H H Galligan,2930057,0,47,51,48,47,47,0,0,0,0,0,0,0,0,0,240 +NA,NA,,2017-18,Taunton - Hopewell,2930035,0,45,54,57,61,57,0,0,0,0,0,0,0,0,0,274 +NA,NA,,2017-18,Taunton - John F Parker Middle,2930305,0,0,0,0,0,0,171,179,147,0,0,0,0,0,0,497 +NA,NA,,2017-18,Taunton - Joseph C Chamberlain,2930008,0,88,98,116,94,121,0,0,0,0,0,0,0,0,0,517 +NA,NA,,2017-18,Taunton - Joseph H Martin,2930042,0,0,0,0,0,0,223,226,227,0,0,0,0,0,0,676 +NA,NA,,2017-18,Taunton - Mulcahey Elementary School,2930015,0,100,94,81,118,94,0,0,0,0,0,0,0,0,0,487 +NA,NA,,2017-18,Taunton - Taunton Alternative High School,2930525,0,0,0,0,0,0,0,0,0,0,0,18,42,35,0,95 +NA,NA,,2017-18,Taunton - Taunton High,2930505,0,0,0,0,0,0,0,0,0,693,551,492,481,407,14,2638 +NA,NA,,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,37,35,42,40,43,46,90,139,156,296,242,212,160,0,1538 +NA,NA,,2017-18,Tewksbury - Heath-Brook,2950010,0,117,128,106,0,0,0,0,0,0,0,0,0,0,0,351 +NA,NA,,2017-18,Tewksbury - John F. Ryan,2950023,0,0,0,0,0,0,247,264,0,0,0,0,0,0,0,511 +NA,NA,,2017-18,Tewksbury - John W. Wynn Middle,2950305,0,0,0,0,0,0,0,0,269,312,0,0,0,0,0,581 +NA,NA,,2017-18,Tewksbury - L F Dewing,2950001,202,117,157,130,0,0,0,0,0,0,0,0,0,0,0,606 +NA,NA,,2017-18,Tewksbury - Louise Davy Trahan,2950025,0,0,0,0,103,131,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2017-18,Tewksbury - North Street,2950020,0,0,0,0,146,131,0,0,0,0,0,0,0,0,0,277 +NA,NA,,2017-18,Tewksbury - Tewksbury Memorial High,2950505,0,0,0,0,0,0,0,0,0,0,217,224,240,234,3,918 +NA,NA,,2017-18,Tisbury - Tisbury Elementary,2960005,2,24,29,31,29,43,40,37,29,42,0,0,0,0,0,306 +NA,NA,,2017-18,Topsfield - Proctor Elementary,2980005,0,0,0,0,0,99,79,76,0,0,0,0,0,0,0,254 +NA,NA,,2017-18,Topsfield - Steward Elementary,2980010,45,82,80,84,90,0,0,0,0,0,0,0,0,0,0,381 +NA,NA,,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0,0,0,0,0,0,0,0,0,248,271,256,211,0,986 +NA,NA,,2017-18,Triton - Newbury Elementary,7730020,51,50,44,57,59,61,56,73,0,0,0,0,0,0,0,451 +NA,NA,,2017-18,Triton - Pine Grove,7730025,36,53,58,53,71,57,66,57,0,0,0,0,0,0,0,451 +NA,NA,,2017-18,Triton - Salisbury Elementary,7730015,55,59,71,60,67,81,78,57,0,0,0,0,0,0,0,528 +NA,NA,,2017-18,Triton - Triton Regional High School,7730505,0,0,0,0,0,0,0,0,0,0,172,189,183,175,0,719 +NA,NA,,2017-18,Triton - Triton Regional Middle School,7730405,0,0,0,0,0,0,0,0,214,202,0,0,0,0,0,416 +NA,NA,,2017-18,Truro - Truro Central,3000005,17,15,12,15,12,13,19,0,0,0,0,0,0,0,0,103 +NA,NA,,2017-18,Tyngsborough - Tyngsborough Elementary,3010020,47,76,123,122,108,140,113,0,0,0,0,0,0,0,0,729 +NA,NA,,2017-18,Tyngsborough - Tyngsborough High School,3010505,0,0,0,0,0,0,0,0,0,0,106,123,123,124,0,476 +NA,NA,,2017-18,Tyngsborough - Tyngsborough Middle,3010305,0,0,0,0,0,0,0,120,139,150,0,0,0,0,0,409 +NA,NA,,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,0,0,0,0,0,0,0,183,166,153,0,0,0,0,0,502 +NA,NA,,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,59,64,71,74,75,90,90,82,71,63,0,0,0,0,0,739 +NA,NA,,2017-18,Up-Island Regional - Chilmark Elementary,7740010,0,11,9,6,10,10,6,0,0,0,0,0,0,0,0,52 +NA,NA,,2017-18,Up-Island Regional - West Tisbury Elementary,7740020,6,32,27,39,39,38,32,42,53,44,0,0,0,0,0,352 +NA,NA,,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,0,0,0,0,0,0,0,190,186,167,172,0,715 +NA,NA,,2017-18,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0,0,1,9,36,0,46 +NA,NA,,2017-18,Uxbridge - McCloskey Middle School,3040015,0,0,0,0,0,0,0,135,130,138,0,0,0,0,0,403 +NA,NA,,2017-18,Uxbridge - Taft Early Learning Center,3040005,86,113,125,127,0,0,0,0,0,0,0,0,0,0,0,451 +NA,NA,,2017-18,Uxbridge - Uxbridge High,3040505,0,0,0,0,0,0,0,0,0,0,131,111,116,119,5,482 +NA,NA,,2017-18,Uxbridge - Whitin Elementary School,3040020,0,0,0,0,125,123,135,0,0,0,0,0,0,0,0,383 +NA,NA,,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,0,0,0,0,0,0,90,86,82,64,0,0,0,0,0,322 +NA,NA,,2017-18,Wachusett - Central Tree Middle,7750310,0,0,0,0,0,0,0,121,132,119,0,0,0,0,0,372 +NA,NA,,2017-18,Wachusett - Chocksett Middle School,7750315,0,0,0,0,0,0,79,95,96,94,0,0,0,0,0,364 +NA,NA,,2017-18,Wachusett - Davis Hill Elementary,7750018,0,61,74,73,74,75,94,0,0,0,0,0,0,0,0,451 +NA,NA,,2017-18,Wachusett - Dawson,7750020,0,43,79,83,79,86,90,0,0,0,0,0,0,0,0,460 +NA,NA,,2017-18,Wachusett - Early Childhood Center,7750001,162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,162 +NA,NA,,2017-18,Wachusett - Glenwood Elementary School,7750060,0,0,0,0,102,112,129,0,0,0,0,0,0,0,0,343 +NA,NA,,2017-18,Wachusett - Houghton Elementary,7750027,0,65,62,84,69,95,0,0,0,0,0,0,0,0,0,375 +NA,NA,,2017-18,Wachusett - Leroy E.Mayo,7750032,0,60,79,82,83,86,87,0,0,0,0,0,0,0,0,477 +NA,NA,,2017-18,Wachusett - Mountview Middle,7750305,0,0,0,0,0,0,0,281,258,263,0,0,0,0,0,802 +NA,NA,,2017-18,Wachusett - Naquag Elementary School,7750005,0,91,115,136,0,0,0,0,0,0,0,0,0,0,0,342 +NA,NA,,2017-18,Wachusett - Paxton Center,7750040,0,26,41,38,54,55,63,66,62,63,0,0,0,0,0,468 +NA,NA,,2017-18,Wachusett - Thomas Prince,7750045,0,33,48,38,51,47,48,50,42,44,0,0,0,0,0,401 +NA,NA,,2017-18,Wachusett - Wachusett Regional High,7750505,0,0,0,0,0,0,0,0,0,0,522,521,581,493,13,2130 +NA,NA,,2017-18,Wakefield - Dolbeare,3050005,0,88,103,90,87,80,0,0,0,0,0,0,0,0,0,448 +NA,NA,,2017-18,Wakefield - Early Childhood Center at the Doyle School,3050001,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126 +NA,NA,,2017-18,Wakefield - Galvin Middle School,3050310,0,0,0,0,0,0,262,250,248,284,0,0,0,0,0,1044 +NA,NA,,2017-18,Wakefield - Greenwood,3050020,0,46,43,42,49,41,0,0,0,0,0,0,0,0,0,221 +NA,NA,,2017-18,Wakefield - Wakefield Memorial High,3050505,0,0,0,0,0,0,0,0,0,0,249,266,232,272,9,1028 +NA,NA,,2017-18,Wakefield - Walton,3050040,0,0,46,46,47,66,0,0,0,0,0,0,0,0,0,205 +NA,NA,,2017-18,Wakefield - Woodville School,3050015,0,125,80,77,80,71,0,0,0,0,0,0,0,0,0,433 +NA,NA,,2017-18,Wales - Wales Elementary,3060005,14,21,16,26,20,25,18,21,0,0,0,0,0,0,0,161 +NA,NA,,2017-18,Walpole - Bird Middle,3070305,0,0,0,0,0,0,0,178,153,160,0,0,0,0,0,491 +NA,NA,,2017-18,Walpole - Boyden,3070010,0,63,58,58,55,56,66,0,0,0,0,0,0,0,0,356 +NA,NA,,2017-18,Walpole - Daniel Feeney Preschool Center,3070002,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73 +NA,NA,,2017-18,Walpole - Eleanor N Johnson Middle,3070310,0,0,0,0,0,0,0,150,139,159,0,0,0,0,0,448 +NA,NA,,2017-18,Walpole - Elm Street School,3070005,0,62,77,75,65,67,85,0,0,0,0,0,0,0,0,431 +NA,NA,,2017-18,Walpole - Fisher,3070015,0,71,66,78,77,95,67,0,0,0,0,0,0,0,0,454 +NA,NA,,2017-18,Walpole - Old Post Road,3070018,0,64,79,57,78,76,65,0,0,0,0,0,0,0,0,419 +NA,NA,,2017-18,Walpole - Walpole High,3070505,0,0,0,0,0,0,0,0,0,0,276,276,293,279,8,1132 +NA,NA,,2017-18,Waltham - Douglas MacArthur Elementary School,3080032,0,78,74,81,77,68,62,0,0,0,0,0,0,0,0,440 +NA,NA,,2017-18,Waltham - Henry Whittemore Elementary School,3080065,0,65,74,76,62,80,76,0,0,0,0,0,0,0,0,433 +NA,NA,,2017-18,Waltham - James Fitzgerald Elementary School,3080060,0,79,62,61,78,69,89,0,0,0,0,0,0,0,0,438 +NA,NA,,2017-18,Waltham - John F Kennedy Middle,3080404,0,0,0,0,0,0,0,171,177,164,0,0,0,0,0,512 +NA,NA,,2017-18,Waltham - John W. McDevitt Middle School,3080415,0,0,0,0,0,0,0,227,206,198,0,0,0,0,0,631 +NA,NA,,2017-18,Waltham - Northeast Elementary School,3080040,105,101,68,98,79,75,67,0,0,0,0,0,0,0,0,593 +NA,NA,,2017-18,Waltham - Thomas R Plympton Elementary School,3080050,0,63,71,79,67,77,65,0,0,0,0,0,0,0,0,422 +NA,NA,,2017-18,Waltham - Waltham Public Schools Dual Language Program,3080001,0,39,40,0,0,0,0,0,0,0,0,0,0,0,0,79 +NA,NA,,2017-18,Waltham - Waltham Sr High,3080505,0,0,0,0,0,0,0,0,0,0,400,456,386,377,1,1620 +NA,NA,,2017-18,Waltham - William F. Stanley Elementary School,3080005,41,62,70,71,61,60,67,0,0,0,0,0,0,0,0,432 +NA,NA,,2017-18,Ware - Stanley M Koziol Elementary School,3090020,64,77,91,86,94,0,0,0,0,0,0,0,0,0,0,412 +NA,NA,,2017-18,Ware - Ware Junior/Senior High School,3090505,0,0,0,0,0,0,0,0,95,93,79,60,78,59,2,466 +NA,NA,,2017-18,Ware - Ware Middle School,3090305,0,0,0,0,0,104,116,115,0,0,0,0,0,0,0,335 +NA,NA,,2017-18,Wareham - John William Decas,3100003,0,222,159,196,0,0,0,0,0,0,0,0,0,0,0,577 +NA,NA,,2017-18,Wareham - Minot Forest,3100017,82,0,0,0,205,203,0,0,0,0,0,0,0,0,0,490 +NA,NA,,2017-18,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,0,0,0,0,0,0,0,10,18,17,18,0,63 +NA,NA,,2017-18,Wareham - Wareham Middle,3100305,0,0,0,0,0,0,173,186,180,187,0,0,0,0,0,726 +NA,NA,,2017-18,Wareham - Wareham Senior High,3100505,0,0,0,0,0,0,0,0,0,0,126,111,88,123,10,458 +NA,NA,,2017-18,Watertown - Cunniff,3140015,18,58,46,40,60,46,39,0,0,0,0,0,0,0,0,307 +NA,NA,,2017-18,Watertown - Hosmer,3140020,115,115,112,86,81,82,92,0,0,0,0,0,0,0,0,683 +NA,NA,,2017-18,Watertown - James Russell Lowell,3140025,18,69,67,67,72,58,66,0,0,0,0,0,0,0,0,417 +NA,NA,,2017-18,Watertown - Watertown High,3140505,0,0,0,0,0,0,0,0,0,0,186,160,161,162,5,674 +NA,NA,,2017-18,Watertown - Watertown Middle,3140305,0,0,0,0,0,0,0,175,187,165,0,0,0,0,0,527 +NA,NA,,2017-18,Wayland - Claypit Hill School,3150005,0,92,93,84,74,94,105,0,0,0,0,0,0,0,0,542 +NA,NA,,2017-18,Wayland - Happy Hollow School,3150015,0,59,62,61,68,61,75,0,0,0,0,0,0,0,0,386 +NA,NA,,2017-18,Wayland - Loker School,3150020,0,57,41,44,44,39,56,0,0,0,0,0,0,0,0,281 +NA,NA,,2017-18,Wayland - Wayland High School,3150505,0,0,0,0,0,0,0,0,0,0,233,210,200,213,0,856 +NA,NA,,2017-18,Wayland - Wayland Middle School,3150305,0,0,0,0,0,0,0,221,209,207,0,0,0,0,0,637 +NA,NA,,2017-18,Webster - Bartlett High School,3160505,0,0,0,0,0,0,0,0,0,0,109,105,126,93,6,439 +NA,NA,,2017-18,Webster - Park Avenue Elementary,3160015,61,140,156,156,158,156,0,0,0,0,0,0,0,0,0,827 +NA,NA,,2017-18,Webster - Webster Middle School,3160315,0,0,0,0,0,0,151,132,152,154,0,0,0,0,0,589 +NA,NA,,2017-18,Wellesley - Ernest F Upham,3170050,0,37,43,26,44,46,40,0,0,0,0,0,0,0,0,236 +NA,NA,,2017-18,Wellesley - Hunnewell,3170025,0,41,39,40,45,50,33,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Wellesley - John D Hardy,3170020,0,39,41,54,44,59,58,0,0,0,0,0,0,0,0,295 +NA,NA,,2017-18,Wellesley - Joseph E Fiske,3170015,100,42,53,44,55,54,50,0,0,0,0,0,0,0,0,398 +NA,NA,,2017-18,Wellesley - Katharine Lee Bates,3170005,0,52,60,62,59,70,69,0,0,0,0,0,0,0,0,372 +NA,NA,,2017-18,Wellesley - Schofield,3170045,0,63,54,65,64,65,66,0,0,0,0,0,0,0,0,377 +NA,NA,,2017-18,Wellesley - Sprague Elementary School,3170048,0,64,63,62,63,65,66,0,0,0,0,0,0,0,0,383 +NA,NA,,2017-18,Wellesley - Wellesley Middle,3170305,0,0,0,0,0,0,0,379,393,356,0,0,0,0,0,1128 +NA,NA,,2017-18,Wellesley - Wellesley Sr High,3170505,0,0,0,0,0,0,0,0,0,0,397,385,384,403,0,1569 +NA,NA,,2017-18,Wellfleet - Wellfleet Elementary,3180005,12,14,18,16,14,9,29,0,0,0,0,0,0,0,0,112 +NA,NA,,2017-18,West Boylston - Major Edwards Elementary,3220005,33,65,61,69,60,66,67,0,0,0,0,0,0,0,0,421 +NA,NA,,2017-18,West Boylston - West Boylston Junior/Senior High,3220505,0,0,0,0,0,0,0,68,76,93,67,58,63,60,1,486 +NA,NA,,2017-18,West Bridgewater - Howard School,3230305,0,0,0,0,0,101,94,93,0,0,0,0,0,0,0,288 +NA,NA,,2017-18,West Bridgewater - Rose L Macdonald,3230003,0,0,84,85,78,0,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2017-18,West Bridgewater - Spring Street School,3230005,62,79,0,0,0,0,0,0,0,0,0,0,0,0,0,141 +NA,NA,,2017-18,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,0,0,0,0,0,106,116,101,104,105,94,0,626 +NA,NA,,2017-18,West Springfield - 21st Century Skills Academy,3320515,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,8 +NA,NA,,2017-18,West Springfield - Cowing Early Childhood,3320001,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122 +NA,NA,,2017-18,West Springfield - John Ashley,3320005,0,234,0,0,0,0,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2017-18,West Springfield - John R Fausey,3320010,0,0,82,86,92,115,85,0,0,0,0,0,0,0,0,460 +NA,NA,,2017-18,West Springfield - Memorial,3320025,0,0,38,45,43,44,69,0,0,0,0,0,0,0,0,239 +NA,NA,,2017-18,West Springfield - Mittineague,3320030,0,0,37,32,32,32,28,0,0,0,0,0,0,0,0,161 +NA,NA,,2017-18,West Springfield - Philip G Coburn,3320007,0,46,118,99,110,72,73,0,0,0,0,0,0,0,0,518 +NA,NA,,2017-18,West Springfield - Tatham,3320040,0,2,51,42,50,45,49,0,0,0,0,0,0,0,0,239 +NA,NA,,2017-18,West Springfield - West Springfield High,3320505,0,0,0,0,0,0,0,0,0,0,329,303,295,294,13,1234 +NA,NA,,2017-18,West Springfield - West Springfield Middle,3320305,0,0,0,0,0,0,0,296,317,286,0,0,0,0,0,899 +NA,NA,,2017-18,Westborough - Annie E Fales,3210010,0,66,88,92,92,0,0,0,0,0,0,0,0,0,0,338 +NA,NA,,2017-18,Westborough - Elsie A Hastings Elementary,3210025,143,77,101,89,90,0,0,0,0,0,0,0,0,0,0,500 +NA,NA,,2017-18,Westborough - J Harding Armstrong,3210005,0,118,115,95,94,0,0,0,0,0,0,0,0,0,0,422 +NA,NA,,2017-18,Westborough - Mill Pond School,3210045,0,0,0,0,0,299,327,309,0,0,0,0,0,0,0,935 +NA,NA,,2017-18,Westborough - Sarah W Gibbons Middle,3210305,0,0,0,0,0,0,0,0,282,318,0,0,0,0,0,600 +NA,NA,,2017-18,Westborough - Westborough High,3210505,0,0,0,0,0,0,0,0,0,0,324,261,272,274,0,1131 +NA,NA,,2017-18,Westfield - Abner Gibbs,3250020,0,32,39,42,26,41,43,0,0,0,0,0,0,0,0,223 +NA,NA,,2017-18,Westfield - Fort Meadow Early Childhood Center,3250003,196,0,0,0,0,0,0,0,0,0,0,0,0,0,0,196 +NA,NA,,2017-18,Westfield - Franklin Ave,3250015,0,32,45,48,43,48,32,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Westfield - Highland,3250025,0,55,58,66,63,73,58,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Westfield - Munger Hill,3250033,0,45,63,67,58,70,76,0,0,0,0,0,0,0,0,379 +NA,NA,,2017-18,Westfield - North Middle School,3250305,0,0,0,0,0,0,0,245,199,232,0,0,0,0,0,676 +NA,NA,,2017-18,Westfield - Paper Mill,3250036,0,61,72,67,69,72,71,0,0,0,0,0,0,0,0,412 +NA,NA,,2017-18,Westfield - Russell Elementary School,3250055,0,19,24,20,29,38,31,0,0,0,0,0,0,0,0,161 +NA,NA,,2017-18,Westfield - South Middle School,3250310,0,0,0,0,0,0,0,189,198,201,0,0,0,0,0,588 +NA,NA,,2017-18,Westfield - Southampton Road,3250040,0,64,70,70,67,75,79,0,0,0,0,0,0,0,0,425 +NA,NA,,2017-18,Westfield - Westfield High,3250505,0,0,0,0,0,0,0,0,0,0,287,330,292,320,28,1257 +NA,NA,,2017-18,Westfield - Westfield Technical Academy,3250605,0,0,0,0,0,0,0,0,0,0,140,142,126,133,0,541 +NA,NA,,2017-18,Westford - Abbot Elementary,3260004,0,0,0,0,128,119,120,0,0,0,0,0,0,0,0,367 +NA,NA,,2017-18,Westford - Blanchard Middle,3260310,0,0,0,0,0,0,0,179,193,218,0,0,0,0,0,590 +NA,NA,,2017-18,Westford - Col John Robinson,3260025,0,89,105,97,0,0,0,0,0,0,0,0,0,0,0,291 +NA,NA,,2017-18,Westford - Day Elementary,3260007,0,0,0,0,125,105,126,0,0,0,0,0,0,0,0,356 +NA,NA,,2017-18,Westford - John A. Crisafulli Elementary School,3260045,0,0,0,0,109,107,127,0,0,0,0,0,0,0,0,343 +NA,NA,,2017-18,Westford - Millennium Elementary,3260013,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110 +NA,NA,,2017-18,Westford - Nabnasset,3260015,0,89,111,129,0,0,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2017-18,Westford - Rita E. Miller Elementary School,3260055,0,99,108,119,0,0,0,0,0,0,0,0,0,0,0,326 +NA,NA,,2017-18,Westford - Stony Brook School,3260330,0,0,0,0,0,0,0,204,251,192,0,0,0,0,0,647 +NA,NA,,2017-18,Westford - Westford Academy,3260505,0,0,0,0,0,0,0,0,0,0,447,433,443,388,4,1715 +NA,NA,,2017-18,Westhampton - Westhampton Elementary School,3270005,15,8,15,17,18,16,16,17,0,0,0,0,0,0,0,122 +NA,NA,,2017-18,Weston - Country,3300010,25,58,60,81,78,0,0,0,0,0,0,0,0,0,0,302 +NA,NA,,2017-18,Weston - Field Elementary School,3300012,0,0,0,0,0,135,190,0,0,0,0,0,0,0,0,325 +NA,NA,,2017-18,Weston - Weston High,3300505,0,0,0,0,0,0,0,0,0,0,173,171,199,150,1,694 +NA,NA,,2017-18,Weston - Weston Middle,3300305,0,0,0,0,0,0,0,160,159,165,0,0,0,0,0,484 +NA,NA,,2017-18,Weston - Woodland,3300015,20,59,79,60,80,0,0,0,0,0,0,0,0,0,0,298 +NA,NA,,2017-18,Westport - Alice A Macomber,3310015,50,103,104,116,0,0,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2017-18,Westport - Westport Elementary,3310030,0,0,0,0,121,109,124,153,0,0,0,0,0,0,0,507 +NA,NA,,2017-18,Westport - Westport Junior/Senior High School,3310515,0,0,0,0,0,0,0,0,115,118,93,59,98,67,0,550 +NA,NA,,2017-18,Westwood - Deerfield School,3350010,0,18,29,33,42,30,48,0,0,0,0,0,0,0,0,200 +NA,NA,,2017-18,Westwood - Downey,3350012,0,45,43,42,42,45,33,0,0,0,0,0,0,0,0,250 +NA,NA,,2017-18,Westwood - E W Thurston Middle,3350305,0,0,0,0,0,0,0,271,261,261,0,0,0,0,0,793 +NA,NA,,2017-18,Westwood - Martha Jones,3350017,0,53,40,47,48,51,54,0,0,0,0,0,0,0,0,293 +NA,NA,,2017-18,Westwood - Paul Hanlon,3350015,0,47,31,36,38,42,26,0,0,0,0,0,0,0,0,220 +NA,NA,,2017-18,Westwood - Westwood High,3350505,0,0,0,0,0,0,0,0,0,0,253,236,260,250,3,1002 +NA,NA,,2017-18,Westwood - Westwood Integrated Preschool,3350050,46,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46 +NA,NA,,2017-18,Westwood - William E Sheehan,3350025,0,38,46,54,68,51,61,0,0,0,0,0,0,0,0,318 +NA,NA,,2017-18,Weymouth - Abigail Adams Middle School,3360310,0,0,0,0,0,0,437,469,0,0,0,0,0,0,0,906 +NA,NA,,2017-18,Weymouth - Academy Avenue,3360005,0,52,67,49,60,79,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2017-18,Weymouth - Frederick C Murphy,3360050,0,43,45,50,48,60,0,0,0,0,0,0,0,0,0,246 +NA,NA,,2017-18,Weymouth - Johnson Early Childhood Center,3360003,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193 +NA,NA,,2017-18,Weymouth - Lawrence W Pingree,3360065,0,37,36,44,41,35,0,0,0,0,0,0,0,0,0,193 +NA,NA,,2017-18,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,0,0,0,0,2,3,419,458,0,0,0,0,0,882 +NA,NA,,2017-18,Weymouth - Ralph Talbot,3360085,0,38,50,56,58,46,0,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Weymouth - Thomas V Nash,3360060,0,27,35,47,41,53,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2017-18,Weymouth - Thomas W. Hamilton Primary School,3360105,0,72,64,76,61,78,0,0,0,0,0,0,0,0,0,351 +NA,NA,,2017-18,Weymouth - Wessagusset,3360110,0,57,54,52,62,54,0,0,0,0,0,0,0,0,0,279 +NA,NA,,2017-18,Weymouth - Weymouth High School,3360505,0,0,0,0,0,0,0,0,0,0,495,476,456,469,4,1900 +NA,NA,,2017-18,Weymouth - William Seach,3360080,0,57,70,61,65,65,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2017-18,Whately - Whately Elementary,3370005,16,17,20,14,18,17,20,18,0,0,0,0,0,0,0,140 +NA,NA,,2017-18,Whitman-Hanson - Hanson Middle School,7800315,0,0,0,0,0,0,0,125,131,137,0,0,0,0,0,393 +NA,NA,,2017-18,Whitman-Hanson - Indian Head,7800035,0,0,0,0,109,103,112,0,0,0,0,0,0,0,0,324 +NA,NA,,2017-18,Whitman-Hanson - John H Duval,7800030,0,61,72,65,76,80,90,0,0,0,0,0,0,0,0,444 +NA,NA,,2017-18,Whitman-Hanson - Louise A Conley,7800010,0,79,86,93,82,110,112,0,0,0,0,0,0,0,0,562 +NA,NA,,2017-18,Whitman-Hanson - Maquan Elementary,7800025,112,107,107,110,0,0,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2017-18,Whitman-Hanson - Whitman Hanson Regional,7800505,0,0,0,0,0,0,0,0,0,0,284,278,293,309,8,1172 +NA,NA,,2017-18,Whitman-Hanson - Whitman Middle,7800310,0,0,0,0,0,0,0,181,195,199,0,0,0,0,0,575 +NA,NA,,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0,0,0,0,0,0,0,0,288,331,332,303,0,1254 +NA,NA,,2017-18,Williamsburg - Anne T. Dunphy School,3400020,13,16,19,22,21,23,19,30,0,0,0,0,0,0,0,163 +NA,NA,,2017-18,Williamstown - Williamstown Elementary,3410010,32,56,58,72,58,56,52,73,0,0,0,0,0,0,0,457 +NA,NA,,2017-18,Wilmington - Boutwell,3420005,42,118,0,0,0,0,0,0,0,0,0,0,0,0,0,160 +NA,NA,,2017-18,Wilmington - North Intermediate,3420060,0,0,0,0,0,166,137,0,0,0,0,0,0,0,0,303 +NA,NA,,2017-18,Wilmington - Shawsheen Elementary,3420025,0,0,111,123,111,0,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2017-18,Wilmington - West Intermediate,3420080,0,0,0,0,0,123,124,0,0,0,0,0,0,0,0,247 +NA,NA,,2017-18,Wilmington - Wildwood,3420015,43,151,0,0,0,0,0,0,0,0,0,0,0,0,0,194 +NA,NA,,2017-18,Wilmington - Wilmington High,3420505,0,0,0,0,0,0,0,0,0,0,198,213,214,236,1,862 +NA,NA,,2017-18,Wilmington - Wilmington Middle School,3420330,0,0,0,0,0,0,0,269,256,311,0,0,0,0,0,836 +NA,NA,,2017-18,Wilmington - Woburn Street,3420020,0,0,132,147,104,0,0,0,0,0,0,0,0,0,0,383 +NA,NA,,2017-18,Winchendon - Memorial,3430040,0,110,103,94,0,0,0,0,0,0,0,0,0,0,0,307 +NA,NA,,2017-18,Winchendon - Murdock Academy for Success,3430405,0,0,0,0,0,0,0,0,0,0,1,11,8,9,0,29 +NA,NA,,2017-18,Winchendon - Murdock High School,3430515,0,0,0,0,0,0,0,0,0,0,90,66,86,62,0,304 +NA,NA,,2017-18,Winchendon - Murdock Middle School,3430315,0,0,0,0,0,0,0,88,90,95,0,0,0,0,0,273 +NA,NA,,2017-18,Winchendon - Toy Town Elementary,3430050,0,0,0,0,85,92,117,0,0,0,0,0,0,0,0,294 +NA,NA,,2017-18,Winchendon - Winchendon PreSchool Program,3430010,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79 +NA,NA,,2017-18,Winchester - Ambrose Elementary,3440045,0,45,61,75,79,78,83,0,0,0,0,0,0,0,0,421 +NA,NA,,2017-18,Winchester - Lincoln Elementary,3440005,0,54,83,62,79,73,52,0,0,0,0,0,0,0,0,403 +NA,NA,,2017-18,Winchester - Lynch Elementary,3440020,60,92,78,82,62,91,75,0,0,0,0,0,0,0,0,540 +NA,NA,,2017-18,Winchester - McCall Middle,3440305,0,0,0,0,0,0,0,375,377,359,0,0,0,0,0,1111 +NA,NA,,2017-18,Winchester - Muraco Elementary,3440040,0,52,66,58,63,71,71,0,0,0,0,0,0,0,0,381 +NA,NA,,2017-18,Winchester - Vinson-Owen Elementary,3440025,29,61,56,69,75,84,81,0,0,0,0,0,0,0,0,455 +NA,NA,,2017-18,Winchester - Winchester High School,3440505,0,0,0,0,0,0,0,0,0,0,366,345,307,333,0,1351 +NA,NA,,2017-18,Winthrop - Arthur T. Cummings Elementary School,3460020,0,0,0,0,152,160,142,0,0,0,0,0,0,0,0,454 +NA,NA,,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,38,146,151,136,0,0,0,0,0,0,0,0,0,0,0,471 +NA,NA,,2017-18,Winthrop - Winthrop High School,3460505,14,0,0,0,0,0,0,0,0,0,173,149,163,116,0,615 +NA,NA,,2017-18,Winthrop - Winthrop Middle School,3460305,0,0,0,0,0,0,0,171,154,157,0,0,0,0,0,482 +NA,NA,,2017-18,Woburn - Clyde Reeves,3470040,42,53,67,55,58,82,72,0,0,0,0,0,0,0,0,429 +NA,NA,,2017-18,Woburn - Daniel L Joyce Middle School,3470410,0,0,0,0,0,0,0,181,159,184,0,0,0,0,0,524 +NA,NA,,2017-18,Woburn - Daniel P Hurld,3470020,0,38,39,33,33,28,44,0,0,0,0,0,0,0,0,215 +NA,NA,,2017-18,Woburn - Goodyear Elementary School,3470005,0,36,53,49,51,59,59,0,0,0,0,0,0,0,0,307 +NA,NA,,2017-18,Woburn - John F Kennedy Middle School,3470405,0,0,0,0,0,0,0,150,147,186,0,0,0,0,0,483 +NA,NA,,2017-18,Woburn - Linscott-Rumford,3470025,0,32,42,32,31,27,43,0,0,0,0,0,0,0,0,207 +NA,NA,,2017-18,Woburn - Malcolm White,3470055,0,59,45,55,51,58,56,0,0,0,0,0,0,0,0,324 +NA,NA,,2017-18,Woburn - Mary D Altavesta,3470065,0,35,41,51,45,43,33,0,0,0,0,0,0,0,0,248 +NA,NA,,2017-18,Woburn - Shamrock,3470043,119,43,35,43,41,41,40,0,0,0,0,0,0,0,0,362 +NA,NA,,2017-18,Woburn - Woburn High,3470505,0,0,0,0,0,0,0,0,0,0,297,314,355,351,0,1317 +NA,NA,,2017-18,Woburn - Wyman,3470060,0,28,29,34,38,18,35,0,0,0,0,0,0,0,0,182 +NA,NA,,2017-18,Worcester - Belmont Street Community,3480020,49,84,75,76,73,83,83,58,0,0,0,0,0,0,0,581 +NA,NA,,2017-18,Worcester - Burncoat Middle School,3480405,0,0,0,0,0,0,0,0,335,288,0,0,0,0,0,623 +NA,NA,,2017-18,Worcester - Burncoat Senior High,3480503,0,0,0,0,0,0,0,0,0,0,250,269,270,229,16,1034 +NA,NA,,2017-18,Worcester - Burncoat Street,3480035,0,41,39,48,39,49,38,39,0,0,0,0,0,0,0,293 +NA,NA,,2017-18,Worcester - Canterbury,3480045,26,49,60,46,42,49,55,49,0,0,0,0,0,0,0,376 +NA,NA,,2017-18,Worcester - Chandler Elementary Community,3480050,0,75,69,79,80,64,76,57,0,0,0,0,0,0,0,500 +NA,NA,,2017-18,Worcester - Chandler Magnet,3480052,11,77,63,57,63,74,45,44,0,0,0,0,0,0,0,434 +NA,NA,,2017-18,Worcester - City View,3480053,28,77,59,67,76,53,52,62,0,0,0,0,0,0,0,474 +NA,NA,,2017-18,Worcester - Claremont Academy,3480350,0,0,0,0,0,0,0,0,86,95,88,102,92,89,0,552 +NA,NA,,2017-18,Worcester - Clark St Community,3480055,34,40,46,30,25,27,24,34,0,0,0,0,0,0,0,260 +NA,NA,,2017-18,Worcester - Columbus Park,3480060,61,72,64,61,67,58,69,55,0,0,0,0,0,0,0,507 +NA,NA,,2017-18,Worcester - Doherty Memorial High,3480512,0,0,0,0,0,0,0,0,0,0,383,431,350,386,9,1559 +NA,NA,,2017-18,Worcester - Elm Park Community,3480095,0,78,60,75,66,67,70,61,0,0,0,0,0,0,0,477 +NA,NA,,2017-18,Worcester - Flagg Street,3480090,0,55,59,64,65,59,54,53,0,0,0,0,0,0,0,409 +NA,NA,,2017-18,Worcester - Forest Grove Middle,3480415,0,0,0,0,0,0,0,0,486,492,0,0,0,0,0,978 +NA,NA,,2017-18,Worcester - Francis J McGrath Elementary,3480177,0,49,36,27,37,30,30,28,0,0,0,0,0,0,0,237 +NA,NA,,2017-18,Worcester - Gates Lane,3480110,68,78,72,66,67,77,50,91,0,0,0,0,0,0,0,569 +NA,NA,,2017-18,Worcester - Goddard School/Science Technical,3480100,27,57,62,66,52,64,67,70,0,0,0,0,0,0,0,465 +NA,NA,,2017-18,Worcester - Grafton Street,3480115,0,62,64,61,62,56,46,36,0,0,0,0,0,0,0,387 +NA,NA,,2017-18,Worcester - Head Start,3480002,529,0,0,0,0,0,0,0,0,0,0,0,0,0,0,529 +NA,NA,,2017-18,Worcester - Heard Street,3480136,0,61,44,35,42,40,37,37,0,0,0,0,0,0,0,296 +NA,NA,,2017-18,Worcester - Jacob Hiatt Magnet,3480140,43,63,56,55,57,48,45,36,0,0,0,0,0,0,0,403 +NA,NA,,2017-18,Worcester - Lake View,3480145,0,50,49,38,37,50,33,28,0,0,0,0,0,0,0,285 +NA,NA,,2017-18,Worcester - Lincoln Street,3480160,0,69,26,42,32,30,34,37,0,0,0,0,0,0,0,270 +NA,NA,,2017-18,Worcester - May Street,3480175,0,50,44,39,54,53,52,47,0,0,0,0,0,0,0,339 +NA,NA,,2017-18,Worcester - Midland Street,3480185,0,41,32,32,33,38,26,28,0,0,0,0,0,0,0,230 +NA,NA,,2017-18,Worcester - Nelson Place,3480200,47,68,70,51,80,65,64,77,0,0,0,0,0,0,0,522 +NA,NA,,2017-18,Worcester - Norrback Avenue,3480202,57,72,69,75,80,78,59,74,0,0,0,0,0,0,0,564 +NA,NA,,2017-18,Worcester - North High,3480515,0,0,0,0,0,0,0,0,0,0,341,302,304,332,13,1292 +NA,NA,,2017-18,Worcester - Quinsigamond,3480210,28,102,105,91,102,121,107,89,0,0,0,0,0,0,0,745 +NA,NA,,2017-18,Worcester - Rice Square,3480215,0,78,62,60,55,63,67,42,0,0,0,0,0,0,0,427 +NA,NA,,2017-18,Worcester - Roosevelt,3480220,67,98,96,85,95,89,73,70,0,0,0,0,0,0,0,673 +NA,NA,,2017-18,Worcester - South High Community,3480520,0,0,0,0,0,0,0,0,0,0,363,363,346,313,22,1407 +NA,NA,,2017-18,Worcester - Sullivan Middle,3480423,0,0,0,0,0,0,0,48,424,393,0,0,0,0,0,865 +NA,NA,,2017-18,Worcester - Tatnuck,3480230,28,62,55,47,48,64,47,41,0,0,0,0,0,0,0,392 +NA,NA,,2017-18,Worcester - Thorndyke Road,3480235,0,59,65,54,51,57,52,43,0,0,0,0,0,0,0,381 +NA,NA,,2017-18,Worcester - Union Hill School,3480240,0,60,61,65,67,68,72,61,0,0,0,0,0,0,0,454 +NA,NA,,2017-18,Worcester - University Pk Campus School,3480285,0,0,0,0,0,0,0,0,44,44,36,41,36,38,0,239 +NA,NA,,2017-18,Worcester - Vernon Hill School,3480280,55,71,66,48,67,80,87,62,0,0,0,0,0,0,0,536 +NA,NA,,2017-18,Worcester - Wawecus Road School,3480026,0,18,13,26,22,28,22,23,0,0,0,0,0,0,0,152 +NA,NA,,2017-18,Worcester - West Tatnuck,3480260,44,59,43,42,48,45,50,39,0,0,0,0,0,0,0,370 +NA,NA,,2017-18,Worcester - Woodland Academy,3480030,0,79,96,72,82,98,81,98,0,0,0,0,0,0,0,606 +NA,NA,,2017-18,Worcester - Worcester Arts Magnet School,3480225,23,56,58,58,61,60,51,37,0,0,0,0,0,0,0,404 +NA,NA,,2017-18,Worcester - Worcester East Middle,3480420,0,0,0,0,0,0,0,93,390,338,0,0,0,0,0,821 +NA,NA,,2017-18,Worcester - Worcester Technical High,3480605,0,0,0,0,0,0,0,0,0,0,380,346,328,335,0,1389 +NA,NA,,2017-18,Worthington - R. H. Conwell,3490010,14,13,9,9,7,5,3,2,0,0,0,0,0,0,0,62 +NA,NA,,2017-18,Wrentham - Charles E Roderick,3500010,0,0,0,0,0,161,149,156,0,0,0,0,0,0,0,466 +NA,NA,,2017-18,Wrentham - Delaney,3500003,83,130,122,113,132,0,0,0,0,0,0,0,0,0,0,580 +NA,NA,,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,0,116,113,118,122,119,118,127,121,115,96,86,93,81,0,1425 +NA,NA,,2016-17,Abington - Abington High,10505,0,0,0,0,0,0,0,0,0,0,124,109,123,92,4,452 +NA,NA,,2016-17,Abington - Beaver Brook Elementary School,10003,0,0,125,164,148,143,0,0,0,0,0,0,0,0,0,580 +NA,NA,,2016-17,Abington - Center Elementary School,10002,69,134,0,0,0,0,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2016-17,Abington - Frolio Middle School,10405,0,0,0,0,0,0,0,0,159,169,0,0,0,0,0,328 +NA,NA,,2016-17,Abington - Woodsdale Elementary School,10015,0,0,0,0,0,0,180,173,0,0,0,0,0,0,0,353 +NA,NA,,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,0,0,0,0,0,0,79,77,81,79,64,55,43,49,0,527 +NA,NA,,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,0,0,0,0,0,0,0,0,0,448,492,456,467,1,1864 +NA,NA,,2016-17,Acton-Boxborough - Blanchard Memorial School,6000005,0,60,52,53,45,63,70,70,0,0,0,0,0,0,0,413 +NA,NA,,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,46,59,69,72,68,68,74,0,0,0,0,0,0,0,456 +NA,NA,,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,97,0,0,0,0,0,0,0,0,0,0,0,0,0,0,97 +NA,NA,,2016-17,Acton-Boxborough - Luther Conant School,6000030,0,58,40,45,75,90,68,75,0,0,0,0,0,0,0,451 +NA,NA,,2016-17,Acton-Boxborough - McCarthy-Towne School,6000015,0,63,58,68,71,72,69,74,0,0,0,0,0,0,0,475 +NA,NA,,2016-17,Acton-Boxborough - Merriam School,6000010,0,63,59,69,84,74,69,99,0,0,0,0,0,0,0,517 +NA,NA,,2016-17,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,40,57,68,50,45,70,74,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,0,0,0,0,0,0,0,469,442,0,0,0,0,0,911 +NA,NA,,2016-17,Acushnet - Acushnet Elementary School,30025,50,84,99,102,107,96,0,0,0,0,0,0,0,0,0,538 +NA,NA,,2016-17,Acushnet - Albert F Ford Middle School,30305,0,0,0,0,0,0,105,121,77,114,0,0,0,0,0,417 +NA,NA,,2016-17,Adams-Cheshire - Cheshire Elementary,6030004,63,28,28,33,32,26,34,0,0,0,0,0,0,0,0,244 +NA,NA,,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,6030505,0,0,0,0,0,0,0,91,112,96,63,94,84,80,2,622 +NA,NA,,2016-17,Adams-Cheshire - Plunkett Elementary,6030020,0,65,66,83,81,84,72,0,0,0,0,0,0,0,0,451 +NA,NA,,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,0,0,0,0,0,0,154,151,149,142,126,105,125,0,952 +NA,NA,,2016-17,Agawam - Agawam Early Childhood Center,50003,151,0,0,0,0,0,0,0,0,0,0,0,0,0,0,151 +NA,NA,,2016-17,Agawam - Agawam High,50505,0,0,0,0,0,0,0,0,0,0,299,309,293,315,6,1222 +NA,NA,,2016-17,Agawam - Agawam Junior High,50405,0,0,0,0,0,0,0,0,253,309,0,0,0,0,0,562 +NA,NA,,2016-17,Agawam - Benjamin J Phelps,50020,0,91,62,72,86,74,0,0,0,0,0,0,0,0,0,385 +NA,NA,,2016-17,Agawam - Clifford M Granger,50010,0,60,43,66,64,60,0,0,0,0,0,0,0,0,0,293 +NA,NA,,2016-17,Agawam - James Clark School,50030,0,67,67,61,74,60,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2016-17,Agawam - Roberta G. Doering School,50303,0,0,0,0,0,0,290,304,3,2,0,0,0,0,0,599 +NA,NA,,2016-17,Agawam - Robinson Park,50025,0,78,79,61,78,81,0,0,0,0,0,0,0,0,0,377 +NA,NA,,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,0,38,40,40,42,42,40,42,40,0,0,0,0,0,0,324 +NA,NA,,2016-17,Amesbury - Amesbury Elementary,70005,26,56,72,85,77,72,0,0,0,0,0,0,0,0,0,388 +NA,NA,,2016-17,Amesbury - Amesbury High,70505,0,0,0,0,0,0,0,0,0,0,147,138,145,163,1,594 +NA,NA,,2016-17,Amesbury - Amesbury Innovation High School,70515,0,0,0,0,0,0,0,0,0,0,7,2,11,11,0,31 +NA,NA,,2016-17,Amesbury - Amesbury Middle,70013,0,0,0,0,0,0,173,158,178,170,0,0,0,0,0,679 +NA,NA,,2016-17,Amesbury - Charles C Cashman Elementary,70010,25,71,86,89,93,94,0,0,0,0,0,0,0,0,0,458 +NA,NA,,2016-17,Amherst - Crocker Farm Elementary,80009,66,34,43,50,58,44,60,49,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Amherst - Fort River Elementary,80020,0,42,41,42,42,65,59,44,0,0,0,0,0,0,0,335 +NA,NA,,2016-17,Amherst - Wildwood Elementary,80050,0,50,57,59,57,72,57,57,0,0,0,0,0,0,0,409 +NA,NA,,2016-17,Amherst-Pelham - Amherst Regional High,6050505,0,0,0,0,0,0,0,0,0,0,234,220,237,228,7,926 +NA,NA,,2016-17,Amherst-Pelham - Amherst Regional Middle School,6050405,0,0,0,0,0,0,0,0,214,218,0,0,0,0,0,432 +NA,NA,,2016-17,Andover - Andover High,90505,0,0,0,0,0,0,0,0,0,0,446,459,421,462,18,1806 +NA,NA,,2016-17,Andover - Andover West Middle,90310,0,0,0,0,0,0,0,182,172,178,0,0,0,0,0,532 +NA,NA,,2016-17,Andover - Bancroft Elementary,90003,0,77,93,96,97,112,118,0,0,0,0,0,0,0,0,593 +NA,NA,,2016-17,Andover - Doherty Middle,90305,0,0,0,0,0,0,0,204,168,189,0,0,0,0,0,561 +NA,NA,,2016-17,Andover - Henry C Sanborn Elementary,90010,0,48,62,68,63,68,72,0,0,0,0,0,0,0,0,381 +NA,NA,,2016-17,Andover - High Plain Elementary,90004,0,64,80,73,96,95,107,0,0,0,0,0,0,0,0,515 +NA,NA,,2016-17,Andover - Shawsheen School,90005,73,0,0,0,0,0,0,0,0,0,0,0,0,0,0,73 +NA,NA,,2016-17,Andover - South Elementary,90020,0,70,91,68,90,85,89,0,0,0,0,0,0,0,0,493 +NA,NA,,2016-17,Andover - West Elementary,90025,0,96,99,107,103,112,119,0,0,0,0,0,0,0,0,636 +NA,NA,,2016-17,Andover - Wood Hill Middle School,90350,0,0,0,0,0,0,0,120,143,156,0,0,0,0,0,419 +NA,NA,,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,0,0,0,0,0,0,0,102,102,103,0,0,0,0,0,307 +NA,NA,,2016-17,Arlington - Arlington High,100505,0,0,0,0,0,0,0,0,0,0,332,350,312,295,1,1290 +NA,NA,,2016-17,Arlington - Brackett,100010,0,89,70,93,79,63,82,0,0,0,0,0,0,0,0,476 +NA,NA,,2016-17,Arlington - Cyrus E Dallin,100025,0,87,70,79,79,74,77,0,0,0,0,0,0,0,0,466 +NA,NA,,2016-17,Arlington - Hardy,100030,0,95,79,76,64,61,76,0,0,0,0,0,0,0,0,451 +NA,NA,,2016-17,Arlington - John A Bishop,100005,0,69,73,69,70,68,76,0,0,0,0,0,0,0,0,425 +NA,NA,,2016-17,Arlington - M Norcross Stratton,100055,0,68,74,58,65,67,64,0,0,0,0,0,0,0,0,396 +NA,NA,,2016-17,Arlington - Menotomy Preschool,100038,70,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70 +NA,NA,,2016-17,Arlington - Ottoson Middle,100410,0,0,0,0,0,0,0,421,409,378,0,0,0,0,0,1208 +NA,NA,,2016-17,Arlington - Peirce,100045,0,48,47,44,45,47,45,0,0,0,0,0,0,0,0,276 +NA,NA,,2016-17,Arlington - Thompson,100050,0,95,76,86,76,82,51,0,0,0,0,0,0,0,0,466 +NA,NA,,2016-17,Ashburnham-Westminster - Briggs Elementary,6100025,58,70,76,87,85,89,71,0,0,0,0,0,0,0,0,536 +NA,NA,,2016-17,Ashburnham-Westminster - Meetinghouse School,6100010,0,71,89,0,0,0,0,0,0,0,0,0,0,0,0,160 +NA,NA,,2016-17,Ashburnham-Westminster - Oakmont Regional High School,6100505,0,0,0,0,0,0,0,0,0,0,172,159,183,179,9,702 +NA,NA,,2016-17,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0,0,0,0,0,188,178,204,0,0,0,0,0,570 +NA,NA,,2016-17,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,0,78,91,90,113,0,0,0,0,0,0,0,0,372 +NA,NA,,2016-17,Ashland - Ashland High,140505,0,0,0,0,0,0,0,0,0,0,202,172,183,187,0,744 +NA,NA,,2016-17,Ashland - Ashland Middle,140405,0,0,0,0,0,0,0,179,206,202,0,0,0,0,0,587 +NA,NA,,2016-17,Ashland - David Mindess,140015,0,0,0,0,214,208,198,0,0,0,0,0,0,0,0,620 +NA,NA,,2016-17,Ashland - Henry E Warren Elementary,140010,0,213,187,219,0,0,0,0,0,0,0,0,0,0,0,619 +NA,NA,,2016-17,Ashland - William Pittaway Elementary,140005,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131 +NA,NA,,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0,0,0,0,0,0,0,0,0,0,300,273,266,264,0,1103 +NA,NA,,2016-17,Athol-Royalston - Athol Community Elementary School,6150020,92,104,96,95,95,95,0,0,0,0,0,0,0,0,0,577 +NA,NA,,2016-17,Athol-Royalston - Athol High,6150505,0,0,0,0,0,0,0,0,0,0,101,76,98,73,10,358 +NA,NA,,2016-17,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,0,0,0,80,88,107,112,0,0,0,0,0,387 +NA,NA,,2016-17,Athol-Royalston - Royalston Community School,6150050,0,12,22,16,23,27,23,21,0,0,0,0,0,0,0,144 +NA,NA,,2016-17,Atlantis Charter (District) - Atlantis Charter School,4910550,0,106,106,107,106,100,100,100,100,99,62,76,49,0,0,1111 +NA,NA,,2016-17,Attleboro - A. Irvin Studley Elementary School,160001,0,73,97,94,80,97,0,0,0,0,0,0,0,0,0,441 +NA,NA,,2016-17,Attleboro - Attleboro Community Academy,160515,0,0,0,0,0,0,0,0,0,0,0,14,35,14,0,63 +NA,NA,,2016-17,Attleboro - Attleboro High,160505,0,0,0,0,0,0,0,0,0,0,449,401,419,392,10,1671 +NA,NA,,2016-17,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,0,0,0,145,123,141,143,0,0,0,0,0,552 +NA,NA,,2016-17,Attleboro - Early Learning Center,160008,187,0,0,0,0,0,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2016-17,Attleboro - Hill-Roberts Elementary School,160045,0,94,96,77,95,105,0,0,0,0,0,0,0,0,0,467 +NA,NA,,2016-17,Attleboro - Hyman Fine Elementary School,160040,0,92,92,81,97,81,0,0,0,0,0,0,0,0,0,443 +NA,NA,,2016-17,Attleboro - Peter Thacher Elementary School,160050,0,75,71,75,87,86,0,0,0,0,0,0,0,0,0,394 +NA,NA,,2016-17,Attleboro - Robert J. Coelho Middle School,160305,0,0,0,0,0,0,164,141,195,163,0,0,0,0,0,663 +NA,NA,,2016-17,Attleboro - Thomas Willett Elementary School,160035,0,91,93,90,95,80,0,0,0,0,0,0,0,0,0,449 +NA,NA,,2016-17,Attleboro - Wamsutta Middle School,160320,0,0,0,0,0,0,150,146,136,147,0,0,0,0,0,579 +NA,NA,,2016-17,Auburn - Auburn Middle,170305,0,0,0,0,0,0,0,206,210,208,0,0,0,0,0,624 +NA,NA,,2016-17,Auburn - Auburn Senior High,170505,88,0,0,0,0,0,0,0,0,0,174,197,175,157,4,795 +NA,NA,,2016-17,Auburn - Bryn Mawr,170010,0,100,98,88,0,0,0,0,0,0,0,0,0,0,0,286 +NA,NA,,2016-17,Auburn - Pakachoag School,170025,0,95,93,93,0,0,0,0,0,0,0,0,0,0,0,281 +NA,NA,,2016-17,Auburn - Swanson Road Intermediate School,170030,0,0,0,0,188,172,177,0,0,0,0,0,0,0,0,537 +NA,NA,,2016-17,Avon - Avon Middle High School,180510,0,0,0,0,0,0,0,0,59,61,53,49,48,45,4,319 +NA,NA,,2016-17,Avon - Ralph D Butler,180010,17,46,51,52,53,57,60,59,0,0,0,0,0,0,0,395 +NA,NA,,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,0,0,0,0,0,0,0,0,0,0,108,119,96,86,0,409 +NA,NA,,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,0,0,0,0,0,0,0,153,113,129,0,0,0,0,0,395 +NA,NA,,2016-17,Ayer Shirley School District - Lura A. White Elementary School,6160001,30,69,50,66,52,62,60,0,0,0,0,0,0,0,0,389 +NA,NA,,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,6160002,33,81,86,80,89,89,70,0,0,0,0,0,0,0,0,528 +NA,NA,,2016-17,Barnstable - Barnstable High,200505,0,0,0,0,0,0,0,0,0,377,380,372,393,334,10,1866 +NA,NA,,2016-17,Barnstable - Barnstable Intermediate School,200315,0,0,0,0,0,0,0,357,397,0,0,0,0,0,0,754 +NA,NA,,2016-17,Barnstable - Barnstable United Elementary School,200050,0,0,0,0,0,446,406,0,0,0,0,0,0,0,0,852 +NA,NA,,2016-17,Barnstable - Centerville Elementary,200010,0,56,69,79,89,0,0,0,0,0,0,0,0,0,0,293 +NA,NA,,2016-17,Barnstable - Enoch Cobb Early Learning Center,200001,126,0,0,0,0,0,0,0,0,0,0,0,0,0,0,126 +NA,NA,,2016-17,Barnstable - Hyannis West Elementary,200025,0,86,89,90,91,0,0,0,0,0,0,0,0,0,0,356 +NA,NA,,2016-17,Barnstable - West Barnstable Elementary,200005,0,61,65,67,67,0,0,0,0,0,0,0,0,0,0,260 +NA,NA,,2016-17,Barnstable - West Villages Elementary School,200045,0,104,102,122,113,0,0,0,0,0,0,0,0,0,0,441 +NA,NA,,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,4270010,0,80,74,74,62,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,0,0,0,0,0,0,0,82,82,80,79,69,0,0,0,392 +NA,NA,,2016-17,Bedford - Bedford High,230505,30,0,0,0,0,0,0,0,0,0,226,206,220,206,0,888 +NA,NA,,2016-17,Bedford - John Glenn Middle,230305,0,0,0,0,0,0,0,191,207,158,0,0,0,0,0,556 +NA,NA,,2016-17,Bedford - Lt Elezer Davis,230010,0,192,200,206,0,0,0,0,0,0,0,0,0,0,0,598 +NA,NA,,2016-17,Bedford - Lt Job Lane School,230012,0,0,0,0,202,182,182,0,0,0,0,0,0,0,0,566 +NA,NA,,2016-17,Belchertown - Belchertown High,240505,0,0,0,0,0,0,0,0,0,0,179,185,175,167,4,710 +NA,NA,,2016-17,Belchertown - Chestnut Hill Community School,240006,0,0,0,0,0,182,191,205,0,0,0,0,0,0,0,578 +NA,NA,,2016-17,Belchertown - Cold Spring,240005,29,141,0,0,0,0,0,0,0,0,0,0,0,0,0,170 +NA,NA,,2016-17,Belchertown - Jabish Middle School,240025,0,0,0,0,0,0,0,0,188,207,0,0,0,0,0,395 +NA,NA,,2016-17,Belchertown - Swift River Elementary,240018,0,0,156,161,184,0,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2016-17,Bellingham - Bellingham Early Childhood Center,250003,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96 +NA,NA,,2016-17,Bellingham - Bellingham High School,250505,0,0,0,0,0,0,0,0,0,185,149,142,122,141,0,739 +NA,NA,,2016-17,Bellingham - Bellingham Memorial School,250315,0,0,0,0,0,171,188,170,182,0,0,0,0,0,0,711 +NA,NA,,2016-17,Bellingham - Keough Memorial Academy,250510,0,0,0,0,0,0,0,0,1,2,10,10,8,3,0,34 +NA,NA,,2016-17,Bellingham - South Elementary,250020,0,74,79,94,88,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2016-17,Bellingham - Stall Brook,250025,0,87,79,89,87,0,0,0,0,0,0,0,0,0,0,342 +NA,NA,,2016-17,Belmont - Belmont High,260505,0,0,0,0,0,0,0,0,0,0,330,312,332,290,0,1264 +NA,NA,,2016-17,Belmont - Daniel Butler,260015,0,72,68,82,74,67,0,0,0,0,0,0,0,0,0,363 +NA,NA,,2016-17,Belmont - Mary Lee Burbank,260010,0,70,65,91,74,73,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2016-17,Belmont - Roger E Wellington,260035,61,114,110,122,115,119,0,0,0,0,0,0,0,0,0,641 +NA,NA,,2016-17,Belmont - Winn Brook,260005,0,94,86,96,101,91,0,0,0,0,0,0,0,0,0,468 +NA,NA,,2016-17,Belmont - Winthrop L Chenery Middle,260305,0,0,0,0,0,0,348,341,343,325,0,0,0,0,0,1357 +NA,NA,,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,23,48,46,47,48,61,41,33,0,0,0,0,0,0,0,347 +NA,NA,,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,50,50,50,51,50,52,48,50,46,0,0,0,0,0,447 +NA,NA,,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,0,51,43,54,38,34,37,0,0,0,0,0,0,0,0,257 +NA,NA,,2016-17,Berkley - Berkley Community School,270010,59,86,95,90,112,95,0,0,0,0,0,0,0,0,0,537 +NA,NA,,2016-17,Berkley - Berkley Middle School,270305,0,0,0,0,0,0,88,99,106,99,0,0,0,0,0,392 +NA,NA,,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,0,0,0,0,0,71,71,67,47,53,31,16,0,356 +NA,NA,,2016-17,Berkshire Hills - Monument Mt Regional High,6180505,0,0,0,0,0,0,0,0,0,0,121,142,125,148,11,547 +NA,NA,,2016-17,Berkshire Hills - Monument Valley Regional Middle School,6180310,0,0,0,0,0,0,71,93,119,104,0,0,0,0,0,387 +NA,NA,,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,14,71,70,62,65,70,0,0,0,0,0,0,0,0,0,352 +NA,NA,,2016-17,Berlin - Berlin Memorial,280005,18,28,33,20,26,29,36,0,0,0,0,0,0,0,0,190 +NA,NA,,2016-17,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,0,0,0,0,88,93,87,73,77,79,87,0,584 +NA,NA,,2016-17,Beverly - Ayers/Ryal Side School,300055,0,79,107,94,88,78,79,0,0,0,0,0,0,0,0,525 +NA,NA,,2016-17,Beverly - Beverly High,300505,0,0,0,0,0,0,0,0,0,0,310,301,333,332,9,1285 +NA,NA,,2016-17,Beverly - Briscoe Middle,300305,0,0,0,0,0,0,0,332,349,328,0,0,0,0,0,1009 +NA,NA,,2016-17,Beverly - Centerville Elementary,300010,0,63,53,58,73,60,51,0,0,0,0,0,0,0,0,358 +NA,NA,,2016-17,Beverly - Cove Elementary,300015,0,93,79,83,74,79,56,0,0,0,0,0,0,0,0,464 +NA,NA,,2016-17,Beverly - Hannah Elementary,300033,0,43,49,79,59,87,64,0,0,0,0,0,0,0,0,381 +NA,NA,,2016-17,Beverly - McKeown School,300002,112,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112 +NA,NA,,2016-17,Beverly - North Beverly Elementary,300040,0,41,60,62,93,62,73,0,0,0,0,0,0,0,0,391 +NA,NA,,2016-17,Billerica - Billerica Memorial High School,310505,144,0,0,0,0,0,0,0,0,0,360,274,310,280,8,1376 +NA,NA,,2016-17,Billerica - Eugene C Vining,310030,0,33,34,31,36,33,30,0,0,0,0,0,0,0,0,197 +NA,NA,,2016-17,Billerica - Frederick J Dutile,310007,0,51,45,56,39,52,60,0,0,0,0,0,0,0,0,303 +NA,NA,,2016-17,Billerica - Hajjar Elementary,310026,0,77,73,68,101,78,80,0,0,0,0,0,0,0,0,477 +NA,NA,,2016-17,Billerica - John F Kennedy,310012,0,40,63,51,53,52,62,0,0,0,0,0,0,0,0,321 +NA,NA,,2016-17,Billerica - Locke Middle,310310,0,0,0,0,0,0,0,174,172,190,0,0,0,0,0,536 +NA,NA,,2016-17,Billerica - Marshall Middle School,310305,0,0,0,0,0,0,0,204,215,204,0,0,0,0,0,623 +NA,NA,,2016-17,Billerica - Parker,310015,0,83,96,87,90,84,67,0,0,0,0,0,0,0,0,507 +NA,NA,,2016-17,Billerica - Thomas Ditson,310005,0,94,84,89,86,107,82,0,0,0,0,0,0,0,0,542 +NA,NA,,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0,0,0,0,0,0,0,0,312,308,300,286,0,1206 +NA,NA,,2016-17,Blackstone-Millville - A F Maloney,6220015,0,0,0,0,108,93,91,0,0,0,0,0,0,0,0,292 +NA,NA,,2016-17,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,0,0,0,0,0,0,0,0,112,119,99,115,3,448 +NA,NA,,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,0,0,0,0,0,142,152,138,0,0,0,0,0,432 +NA,NA,,2016-17,Blackstone-Millville - John F Kennedy Elementary,6220008,0,89,117,86,0,0,0,0,0,0,0,0,0,0,0,292 +NA,NA,,2016-17,Blackstone-Millville - Millville Elementary,6220010,71,37,39,36,24,46,30,0,0,0,0,0,0,0,0,283 +NA,NA,,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,0,0,0,0,0,0,0,0,0,0,204,220,227,216,0,867 +NA,NA,,2016-17,Boston - Another Course To College,350541,0,0,0,0,0,0,0,0,0,0,49,55,62,57,0,223 +NA,NA,,2016-17,Boston - Baldwin Early Learning Center,350003,82,45,32,0,0,0,0,0,0,0,0,0,0,0,0,159 +NA,NA,,2016-17,Boston - Beethoven,350021,41,81,91,111,5,0,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2016-17,Boston - Blackstone,350390,80,81,76,83,100,99,66,0,0,0,0,0,0,0,0,585 +NA,NA,,2016-17,Boston - Boston Adult Academy,350548,0,0,0,0,0,0,0,0,0,0,0,0,109,88,0,197 +NA,NA,,2016-17,Boston - Boston Arts Academy,350546,0,0,0,0,0,0,0,0,0,0,132,125,94,96,0,447 +NA,NA,,2016-17,Boston - Boston Collaborative High School,350755,0,0,0,0,0,0,0,0,1,7,4,27,62,91,1,193 +NA,NA,,2016-17,Boston - Boston Community Leadership Academy,350558,0,0,0,0,0,0,0,0,0,0,123,132,120,121,4,500 +NA,NA,,2016-17,Boston - Boston International High School,350507,0,0,0,0,0,0,0,0,0,0,158,83,69,68,0,378 +NA,NA,,2016-17,Boston - Boston Latin,350560,0,0,0,0,0,0,0,0,386,387,424,407,420,379,0,2403 +NA,NA,,2016-17,Boston - Boston Latin Academy,350545,0,0,0,0,0,0,0,0,262,269,303,293,303,268,0,1698 +NA,NA,,2016-17,Boston - Boston Teachers Union School,350012,21,21,20,24,32,34,28,46,35,35,0,0,0,0,0,296 +NA,NA,,2016-17,Boston - Brighton High,350505,0,0,0,0,0,0,0,0,0,0,203,189,213,192,14,811 +NA,NA,,2016-17,Boston - Carter Developmental Center,350036,0,0,0,0,0,0,0,0,3,1,2,5,3,9,6,29 +NA,NA,,2016-17,Boston - Charles H Taylor,350054,21,78,74,97,95,72,70,0,0,0,0,0,0,0,0,507 +NA,NA,,2016-17,Boston - Charles Sumner,350052,54,92,87,98,102,80,45,0,0,0,0,0,0,0,0,558 +NA,NA,,2016-17,Boston - Charlestown High,350515,0,0,0,0,0,0,0,0,0,0,259,188,225,195,43,910 +NA,NA,,2016-17,Boston - Clarence R Edwards Middle,350430,0,0,0,0,0,0,0,97,110,128,0,0,0,0,0,335 +NA,NA,,2016-17,Boston - Community Academy,350518,0,0,0,0,0,0,0,0,0,0,2,13,16,13,0,44 +NA,NA,,2016-17,Boston - Community Academy of Science and Health,350581,0,0,0,0,0,0,0,0,0,0,87,76,116,63,23,365 +NA,NA,,2016-17,Boston - Curley K-8 School,350020,106,89,87,82,110,120,90,109,70,85,0,0,0,0,0,948 +NA,NA,,2016-17,Boston - Curtis Guild,350062,29,34,33,53,54,68,38,0,0,0,0,0,0,0,0,309 +NA,NA,,2016-17,Boston - Dante Alighieri Montessori School,350066,28,14,13,16,10,7,4,4,0,0,0,0,0,0,0,96 +NA,NA,,2016-17,Boston - David A Ellis,350072,43,81,78,73,59,60,44,0,0,0,0,0,0,0,0,438 +NA,NA,,2016-17,Boston - Dearborn,350074,0,0,0,0,0,0,0,58,52,53,48,39,40,19,0,309 +NA,NA,,2016-17,Boston - Dennis C Haley,350077,25,38,40,44,47,71,48,46,42,51,0,0,0,0,0,452 +NA,NA,,2016-17,Boston - Donald Mckay,350080,19,59,68,85,73,88,69,103,76,92,0,0,0,0,0,732 +NA,NA,,2016-17,Boston - Dorchester Academy,350651,0,0,0,0,0,0,0,0,0,0,40,18,12,29,0,99 +NA,NA,,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,44,38,39,35,33,0,0,0,0,0,0,0,0,0,0,189 +NA,NA,,2016-17,Boston - Dr. William Henderson Lower,350266,74,46,49,48,0,0,0,0,0,0,0,0,0,0,0,217 +NA,NA,,2016-17,Boston - Dr. William Henderson Upper,350426,0,0,0,0,39,50,38,52,59,60,67,60,45,30,5,505 +NA,NA,,2016-17,Boston - East Boston Early Childhood Center,350009,51,65,54,0,0,0,0,0,0,0,0,0,0,0,0,170 +NA,NA,,2016-17,Boston - East Boston High,350530,0,0,0,0,0,0,0,0,0,0,365,393,368,354,16,1496 +NA,NA,,2016-17,Boston - Edison K-8,350375,20,53,53,85,77,73,82,85,73,87,0,0,0,0,0,688 +NA,NA,,2016-17,Boston - Edward Everett,350088,17,39,38,40,50,50,44,0,0,0,0,0,0,0,0,278 +NA,NA,,2016-17,Boston - ELC - West Zone,350006,46,37,31,0,0,0,0,0,0,0,0,0,0,0,0,114 +NA,NA,,2016-17,Boston - Eliot Elementary,350096,38,77,77,85,65,71,44,48,26,27,0,0,0,0,0,558 +NA,NA,,2016-17,Boston - Ellis Mendell,350100,24,41,41,41,39,35,23,0,0,0,0,0,0,0,0,244 +NA,NA,,2016-17,Boston - Excel High School,350522,0,0,0,0,0,0,0,0,0,0,134,120,160,110,1,525 +NA,NA,,2016-17,Boston - Fenway High School,350540,0,0,0,0,0,0,0,0,0,0,107,96,76,81,0,360 +NA,NA,,2016-17,Boston - Franklin D Roosevelt,350116,41,40,42,40,44,47,44,54,48,53,0,0,0,0,0,453 +NA,NA,,2016-17,Boston - Gardner Pilot Academy,350326,25,45,38,44,37,43,46,49,39,35,0,0,0,0,0,401 +NA,NA,,2016-17,Boston - George H Conley,350122,19,23,45,27,53,25,30,0,0,0,0,0,0,0,0,222 +NA,NA,,2016-17,Boston - Greater Egleston Community High School,350543,0,0,0,0,0,0,0,0,0,0,2,18,41,163,1,225 +NA,NA,,2016-17,Boston - Harvard-Kent,350200,38,54,58,77,108,94,66,0,0,0,0,0,0,0,0,495 +NA,NA,,2016-17,Boston - Haynes Early Education Center,350010,47,72,68,0,0,0,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2016-17,Boston - Henry Grew,350135,20,44,37,41,32,37,28,0,0,0,0,0,0,0,0,239 +NA,NA,,2016-17,Boston - Higginson,350015,28,45,50,50,0,0,0,0,0,0,0,0,0,0,0,173 +NA,NA,,2016-17,Boston - Higginson/Lewis K-8,350377,0,2,3,56,79,78,39,22,47,29,0,0,0,0,0,355 +NA,NA,,2016-17,Boston - Horace Mann School for the Deaf,350750,6,8,5,9,0,9,2,6,7,3,10,10,6,7,2,90 +NA,NA,,2016-17,Boston - Hugh Roe O'Donnell,350141,19,40,40,42,44,39,48,0,0,0,0,0,0,0,0,272 +NA,NA,,2016-17,Boston - Jackson Mann,350013,48,91,87,80,84,94,79,69,57,76,0,0,0,0,0,765 +NA,NA,,2016-17,Boston - James Condon Elementary,350146,39,76,84,100,109,131,127,115,65,0,0,0,0,0,0,846 +NA,NA,,2016-17,Boston - James J Chittick,350154,42,50,45,42,42,52,23,0,0,0,0,0,0,0,0,296 +NA,NA,,2016-17,Boston - James Otis,350156,49,59,58,61,63,62,46,0,0,0,0,0,0,0,0,398 +NA,NA,,2016-17,Boston - James P Timilty Middle,350485,0,0,0,0,0,0,0,99,117,155,0,0,0,0,0,371 +NA,NA,,2016-17,Boston - James W Hennigan,350153,0,45,51,61,93,97,91,97,50,53,0,0,0,0,0,638 +NA,NA,,2016-17,Boston - Jeremiah E Burke High,350525,0,0,0,0,0,0,0,0,0,0,100,109,136,143,1,489 +NA,NA,,2016-17,Boston - John D Philbrick,350172,13,25,22,43,25,25,19,0,0,0,0,0,0,0,0,172 +NA,NA,,2016-17,Boston - John F Kennedy,350166,26,56,58,65,57,67,53,0,0,0,0,0,0,0,0,382 +NA,NA,,2016-17,Boston - John W McCormack,350179,0,0,0,0,0,0,0,136,143,165,0,0,0,0,0,444 +NA,NA,,2016-17,Boston - John Winthrop,350180,33,59,49,49,47,56,36,0,0,0,0,0,0,0,0,329 +NA,NA,,2016-17,Boston - Joseph J Hurley,350182,29,44,48,48,42,42,31,33,19,17,0,0,0,0,0,353 +NA,NA,,2016-17,Boston - Joseph Lee,350183,50,58,55,54,66,73,66,85,60,72,0,0,0,0,0,639 +NA,NA,,2016-17,Boston - Joseph P Manning,350184,14,21,23,27,23,26,24,0,0,0,0,0,0,0,0,158 +NA,NA,,2016-17,Boston - Joseph P Tynan,350181,36,35,31,45,50,45,26,0,0,0,0,0,0,0,0,268 +NA,NA,,2016-17,Boston - Josiah Quincy,350286,84,116,118,128,135,137,136,0,0,0,0,0,0,0,0,854 +NA,NA,,2016-17,Boston - Joyce Kilmer,350190,41,43,47,44,69,49,39,57,22,24,0,0,0,0,0,435 +NA,NA,,2016-17,Boston - King K-8,350376,56,59,51,73,68,50,43,42,19,29,0,0,0,0,0,490 +NA,NA,,2016-17,Boston - Lee Academy,350001,43,36,55,53,0,0,0,0,0,0,0,0,0,0,0,187 +NA,NA,,2016-17,Boston - Lilla G. Frederick Middle School,350383,0,0,0,0,0,0,0,139,176,204,0,0,0,0,0,519 +NA,NA,,2016-17,Boston - Lyndon,350262,70,69,66,51,82,57,56,64,30,37,0,0,0,0,0,582 +NA,NA,,2016-17,Boston - Lyon K-8,350004,0,12,14,14,16,16,16,17,17,17,0,0,0,0,0,139 +NA,NA,,2016-17,Boston - Lyon Upper 9-12,350655,0,0,0,0,0,0,0,0,0,0,30,33,35,27,1,126 +NA,NA,,2016-17,Boston - Madison Park High,350537,0,0,0,0,0,0,0,0,0,0,222,234,150,212,23,841 +NA,NA,,2016-17,Boston - Manassah E Bradley,350215,36,40,36,39,49,49,37,0,0,0,0,0,0,0,0,286 +NA,NA,,2016-17,Boston - Margarita Muniz Academy,350549,0,0,0,0,0,0,0,0,0,0,71,74,79,60,0,284 +NA,NA,,2016-17,Boston - Mario Umana Academy,350656,21,68,67,69,79,86,72,166,156,138,0,0,0,0,0,922 +NA,NA,,2016-17,Boston - Mather,350227,55,92,85,94,99,101,91,0,0,0,0,0,0,0,0,617 +NA,NA,,2016-17,Boston - Mattahunt,350226,96,108,91,105,93,85,56,0,0,0,0,0,0,0,0,634 +NA,NA,,2016-17,Boston - Maurice J Tobin,350229,20,47,59,78,59,55,46,26,28,47,0,0,0,0,0,465 +NA,NA,,2016-17,Boston - Michael J Perkins,350231,0,36,33,37,43,49,40,0,0,0,0,0,0,0,0,238 +NA,NA,,2016-17,Boston - Mildred Avenue K-8,350378,44,51,42,46,0,22,27,97,86,90,0,0,0,0,0,505 +NA,NA,,2016-17,Boston - Mission Hill School,350382,34,23,23,20,19,29,19,17,21,12,0,0,0,0,0,217 +NA,NA,,2016-17,Boston - Mozart,350237,26,27,26,22,27,25,22,0,0,0,0,0,0,0,0,175 +NA,NA,,2016-17,Boston - Nathan Hale,350243,20,23,18,22,24,27,40,0,0,0,0,0,0,0,0,174 +NA,NA,,2016-17,Boston - New Mission High School,350542,0,0,0,0,0,0,0,0,0,0,79,76,81,84,0,320 +NA,NA,,2016-17,Boston - O W Holmes,350138,24,59,59,59,64,57,46,0,0,0,0,0,0,0,0,368 +NA,NA,,2016-17,Boston - O'Bryant School Math/Science,350575,0,0,0,0,0,0,0,0,162,146,276,302,286,265,0,1437 +NA,NA,,2016-17,Boston - Oliver Hazard Perry,350255,16,22,29,30,20,26,23,22,14,20,0,0,0,0,0,222 +NA,NA,,2016-17,Boston - Orchard Gardens,350257,46,92,90,92,99,107,93,104,92,71,0,0,0,0,0,886 +NA,NA,,2016-17,Boston - Patrick J Kennedy,350264,23,38,44,53,66,50,23,0,0,0,0,0,0,0,0,297 +NA,NA,,2016-17,Boston - Paul A Dever,350268,35,69,57,59,70,67,58,0,0,0,0,0,0,0,0,415 +NA,NA,,2016-17,Boston - Pauline Agassiz Shaw Elementary School,350014,51,45,42,65,0,0,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2016-17,Boston - Phineas Bates,350278,22,39,35,40,49,47,48,0,0,0,0,0,0,0,0,280 +NA,NA,,2016-17,Boston - Quincy Upper School,350565,0,0,0,0,0,0,0,134,71,75,63,56,44,55,8,506 +NA,NA,,2016-17,Boston - Rafael Hernandez,350691,50,51,50,49,50,47,28,31,26,25,0,0,0,0,0,407 +NA,NA,,2016-17,Boston - Richard J Murphy,350240,41,64,64,87,110,135,119,150,89,87,0,0,0,0,0,946 +NA,NA,,2016-17,Boston - Roger Clap,350298,12,20,32,37,25,23,21,0,0,0,0,0,0,0,0,170 +NA,NA,,2016-17,Boston - Samuel Adams,350302,46,36,53,53,36,42,28,0,0,0,0,0,0,0,0,294 +NA,NA,,2016-17,Boston - Samuel W Mason,350304,26,36,34,38,37,37,23,0,0,0,0,0,0,0,0,231 +NA,NA,,2016-17,Boston - Sarah Greenwood,350308,32,45,39,54,46,47,45,35,22,34,0,0,0,0,0,399 +NA,NA,,2016-17,Boston - Snowden International School at Copley,350690,0,0,0,0,0,0,0,0,0,0,148,125,92,74,0,439 +NA,NA,,2016-17,Boston - TechBoston Academy,350657,0,0,0,0,0,0,0,133,116,137,159,162,134,130,1,972 +NA,NA,,2016-17,Boston - The English High,350535,0,0,0,0,0,0,0,0,0,0,165,107,136,129,16,553 +NA,NA,,2016-17,Boston - Thomas J Kenny,350328,29,45,42,46,76,47,47,0,0,0,0,0,0,0,0,332 +NA,NA,,2016-17,Boston - UP Academy Holland,350167,61,105,109,120,129,129,106,0,0,0,0,0,0,0,0,759 +NA,NA,,2016-17,Boston - Urban Science Academy,350579,0,0,0,0,0,0,0,0,0,0,113,99,87,131,2,432 +NA,NA,,2016-17,Boston - Warren-Prescott,350346,55,68,61,68,71,69,71,61,26,32,0,0,0,0,0,582 +NA,NA,,2016-17,Boston - Washington Irving Middle,350445,0,0,0,0,0,0,0,147,103,94,0,0,0,0,0,344 +NA,NA,,2016-17,Boston - West Roxbury Academy,350658,0,0,0,0,0,0,0,0,0,0,101,130,140,116,9,496 +NA,NA,,2016-17,Boston - William E Russell,350366,55,67,58,64,73,37,31,0,0,0,0,0,0,0,0,385 +NA,NA,,2016-17,Boston - William Ellery Channing,350360,26,46,41,37,31,37,26,0,0,0,0,0,0,0,0,244 +NA,NA,,2016-17,Boston - William H Ohrenberger,350258,0,0,0,0,91,112,108,123,82,86,0,0,0,0,0,602 +NA,NA,,2016-17,Boston - William McKinley,350363,0,0,4,6,13,16,16,16,30,33,62,41,42,41,17,337 +NA,NA,,2016-17,Boston - William Monroe Trotter,350370,58,68,56,69,74,73,47,37,28,26,0,0,0,0,0,536 +NA,NA,,2016-17,Boston - Winship Elementary,350374,43,29,33,41,32,38,27,0,0,0,0,0,0,0,0,243 +NA,NA,,2016-17,Boston - Young Achievers,350380,52,60,64,63,99,59,47,45,50,43,0,0,0,0,0,582 +NA,NA,,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,0,0,0,0,0,0,96,100,98,84,76,78,78,70,0,680 +NA,NA,,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,0,0,0,0,0,0,0,0,0,0,122,32,3,247,0,404 +NA,NA,,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,0,0,0,0,0,0,0,68,59,58,79,65,69,78,0,476 +NA,NA,,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,0,0,0,0,0,0,0,50,61,67,69,67,53,48,0,415 +NA,NA,,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,140,142,144,119,121,115,104,70,0,0,0,0,0,0,0,955 +NA,NA,,2016-17,Bourne - Bourne High School,360505,0,0,0,0,0,0,0,0,0,0,125,105,108,94,4,436 +NA,NA,,2016-17,Bourne - Bourne Middle School,360325,0,0,0,0,0,0,163,174,183,191,0,0,0,0,0,711 +NA,NA,,2016-17,Bourne - Bournedale Elementary School,360005,66,67,64,91,71,74,0,0,0,0,0,0,0,0,0,433 +NA,NA,,2016-17,Bourne - Peebles Elementary School,360010,0,34,82,70,84,85,0,0,0,0,0,0,0,0,0,355 +NA,NA,,2016-17,Boxford - Harry Lee Cole,380005,41,89,109,88,0,0,0,0,0,0,0,0,0,0,0,327 +NA,NA,,2016-17,Boxford - Spofford Pond,380013,0,0,0,0,92,99,106,131,0,0,0,0,0,0,0,428 +NA,NA,,2016-17,Boylston - Boylston Elementary,390005,29,31,43,36,45,55,54,0,0,0,0,0,0,0,0,293 +NA,NA,,2016-17,Braintree - Archie T Morrison,400033,0,24,85,64,97,81,70,0,0,0,0,0,0,0,0,421 +NA,NA,,2016-17,Braintree - Braintree High,400505,122,0,0,0,0,0,0,0,0,0,425,380,429,390,9,1755 +NA,NA,,2016-17,Braintree - Donald Ross,400050,0,20,40,62,53,56,51,0,0,0,0,0,0,0,0,282 +NA,NA,,2016-17,Braintree - East Middle School,400305,0,0,0,0,0,0,0,237,245,251,0,0,0,0,0,733 +NA,NA,,2016-17,Braintree - Highlands,400015,0,22,89,77,80,80,77,0,0,0,0,0,0,0,0,425 +NA,NA,,2016-17,Braintree - Hollis,400005,0,30,86,76,74,86,83,0,0,0,0,0,0,0,0,435 +NA,NA,,2016-17,Braintree - Liberty,400025,0,0,85,90,88,110,75,0,0,0,0,0,0,0,0,448 +NA,NA,,2016-17,Braintree - Mary E Flaherty School,400020,0,25,63,57,80,75,71,0,0,0,0,0,0,0,0,371 +NA,NA,,2016-17,Braintree - Monatiquot Kindergarten Center,400009,0,262,0,0,0,0,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2016-17,Braintree - South Middle School,400310,0,0,0,0,0,0,0,230,222,225,0,0,0,0,0,677 +NA,NA,,2016-17,Brewster - Eddy Elementary,410010,0,0,0,0,83,73,77,0,0,0,0,0,0,0,0,233 +NA,NA,,2016-17,Brewster - Stony Brook Elementary,410005,32,75,73,79,0,0,0,0,0,0,0,0,0,0,0,259 +NA,NA,,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,39,36,38,40,40,39,35,0,0,0,0,0,0,0,0,267 +NA,NA,,2016-17,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,0,0,0,0,0,252,254,0,0,0,0,0,506 +NA,NA,,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,0,0,0,0,0,0,0,0,0,0,354,401,356,392,9,1512 +NA,NA,,2016-17,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,159,168,173,0,0,0,0,0,0,0,0,0,500 +NA,NA,,2016-17,Bridgewater-Raynham - Merrill Elementary School,6250020,0,166,158,0,0,0,0,0,0,0,0,0,0,0,0,324 +NA,NA,,2016-17,Bridgewater-Raynham - Mitchell Elementary School,6250002,127,219,205,213,246,0,0,0,0,0,0,0,0,0,0,1010 +NA,NA,,2016-17,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,0,0,0,135,180,187,189,0,0,0,0,0,691 +NA,NA,,2016-17,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,0,0,0,0,1,2,0,2,4,0,2,0,11 +NA,NA,,2016-17,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,0,0,287,243,262,0,0,0,0,0,0,0,792 +NA,NA,,2016-17,Brimfield - Brimfield Elementary,430005,30,35,29,44,37,32,44,34,0,0,0,0,0,0,0,285 +NA,NA,,2016-17,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,0,0,0,0,0,0,0,124,119,116,109,0,468 +NA,NA,,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,0,0,0,0,0,0,0,0,0,0,345,328,311,319,0,1303 +NA,NA,,2016-17,Brockton - Ashfield Middle School,440421,0,0,0,0,0,0,0,164,168,155,0,0,0,0,0,487 +NA,NA,,2016-17,Brockton - Barrett Russell School,440007,0,219,0,0,0,0,0,0,0,0,0,0,0,0,0,219 +NA,NA,,2016-17,Brockton - Brockton Champion High School,440515,0,0,0,0,0,0,0,0,0,0,47,53,31,27,19,177 +NA,NA,,2016-17,Brockton - Brockton High,440505,0,0,0,0,0,0,0,0,0,0,1223,1048,978,993,22,4264 +NA,NA,,2016-17,Brockton - Brookfield,440010,0,88,106,101,126,106,105,0,0,0,0,0,0,0,0,632 +NA,NA,,2016-17,Brockton - Downey,440110,0,95,120,103,116,109,112,0,0,0,0,0,0,0,0,655 +NA,NA,,2016-17,Brockton - Dr W Arnone Community School,440001,0,111,140,152,129,145,131,0,0,0,0,0,0,0,0,808 +NA,NA,,2016-17,Brockton - East Middle School,440405,0,0,0,0,0,0,0,163,175,202,0,0,0,0,0,540 +NA,NA,,2016-17,Brockton - Edgar B Davis,440023,0,117,141,111,120,121,125,108,100,99,0,0,0,0,0,1042 +NA,NA,,2016-17,Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0,0,1,10,78,64,0,153 +NA,NA,,2016-17,Brockton - Frederick Douglass Academy,440080,0,0,0,0,0,0,0,0,1,4,17,8,2,3,0,35 +NA,NA,,2016-17,Brockton - Gilmore School Early Childhood Center,440050,263,25,0,0,0,0,0,0,0,0,0,0,0,0,0,288 +NA,NA,,2016-17,Brockton - Goddard Alternative School,440400,0,0,0,0,0,0,2,3,5,8,6,11,7,6,0,48 +NA,NA,,2016-17,Brockton - Hancock,440045,0,97,114,120,115,112,109,0,0,0,0,0,0,0,0,667 +NA,NA,,2016-17,Brockton - Huntington,440055,0,75,93,91,95,102,96,0,0,0,0,0,0,0,0,552 +NA,NA,,2016-17,Brockton - John F Kennedy,440017,0,92,100,108,92,117,96,0,0,0,0,0,0,0,0,605 +NA,NA,,2016-17,Brockton - Joseph F. Plouffe Academy,440422,0,0,0,0,0,0,0,248,234,211,0,0,0,0,0,693 +NA,NA,,2016-17,Brockton - Louis F Angelo Elementary,440065,0,94,140,138,126,197,188,0,0,0,0,0,0,0,0,883 +NA,NA,,2016-17,Brockton - Manthala George Jr. School,440003,0,113,153,144,161,156,164,0,0,0,0,0,0,0,0,891 +NA,NA,,2016-17,Brockton - Mary E. Baker School,440002,0,115,135,138,136,112,121,0,0,0,0,0,0,0,0,757 +NA,NA,,2016-17,Brockton - North Middle School,440410,0,0,0,0,0,0,0,202,189,173,0,0,0,0,0,564 +NA,NA,,2016-17,Brockton - Oscar F Raymond,440078,0,138,152,149,138,156,135,0,0,0,0,0,0,0,0,868 +NA,NA,,2016-17,Brockton - South Middle School,440415,0,0,0,0,0,0,0,171,166,176,0,0,0,0,0,513 +NA,NA,,2016-17,Brockton - West Middle School,440420,0,0,0,0,0,0,0,230,191,208,0,0,0,0,0,629 +NA,NA,,2016-17,Brooke Charter School (District) - Brooke Charter School,4280305,0,178,182,183,191,191,184,187,139,105,68,0,0,0,0,1608 +NA,NA,,2016-17,Brookfield - Brookfield Elementary,450005,31,41,40,39,38,39,42,48,0,0,0,0,0,0,0,318 +NA,NA,,2016-17,Brookline - Brookline Early Education Program at Beacon,460001,60,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60 +NA,NA,,2016-17,Brookline - Brookline Early Education Program at Putterham,460002,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64 +NA,NA,,2016-17,Brookline - Brookline High,460505,13,0,0,0,0,0,0,0,0,0,500,509,492,479,16,2009 +NA,NA,,2016-17,Brookline - Edith C Baker,460005,0,83,76,103,72,106,80,74,91,79,0,0,0,0,0,764 +NA,NA,,2016-17,Brookline - Edward Devotion,460015,0,91,101,93,97,100,92,77,72,75,0,0,0,0,0,798 +NA,NA,,2016-17,Brookline - Heath,460025,29,47,66,71,67,71,53,65,52,57,0,0,0,0,0,578 +NA,NA,,2016-17,Brookline - John D Runkle,460045,14,58,66,70,74,69,66,66,70,60,0,0,0,0,0,613 +NA,NA,,2016-17,Brookline - Lawrence,460030,0,80,89,88,85,88,79,62,79,61,0,0,0,0,0,711 +NA,NA,,2016-17,Brookline - Michael Driscoll,460020,14,61,58,76,63,70,68,66,66,58,0,0,0,0,0,600 +NA,NA,,2016-17,Brookline - Pierce,460040,0,96,113,106,111,91,83,88,86,80,0,0,0,0,0,854 +NA,NA,,2016-17,Brookline - The Lynch Center,460060,68,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68 +NA,NA,,2016-17,Brookline - William H Lincoln,460035,0,66,58,71,64,82,63,51,60,61,0,0,0,0,0,576 +NA,NA,,2016-17,Burlington - Burlington High,480505,118,8,0,0,0,0,0,0,0,0,241,249,232,255,0,1103 +NA,NA,,2016-17,Burlington - Fox Hill,480007,0,80,68,68,49,66,57,0,0,0,0,0,0,0,0,388 +NA,NA,,2016-17,Burlington - Francis Wyman Elementary,480035,0,110,78,96,81,77,87,0,0,0,0,0,0,0,0,529 +NA,NA,,2016-17,Burlington - Marshall Simonds Middle,480303,0,0,0,0,0,0,0,271,273,277,0,0,0,0,0,821 +NA,NA,,2016-17,Burlington - Memorial,480015,0,65,70,61,62,68,60,0,0,0,0,0,0,0,0,386 +NA,NA,,2016-17,Burlington - Pine Glen Elementary,480020,0,47,66,39,44,58,40,0,0,0,0,0,0,0,0,294 +NA,NA,,2016-17,Cambridge - Amigos School,490006,34,46,47,44,45,42,34,35,25,27,0,0,0,0,0,379 +NA,NA,,2016-17,Cambridge - Cambridge Rindge and Latin,490506,0,0,0,0,0,0,0,0,0,0,491,511,490,462,2,1956 +NA,NA,,2016-17,Cambridge - Cambridge Street Upper School,490305,0,0,0,0,0,0,0,87,91,83,0,0,0,0,0,261 +NA,NA,,2016-17,Cambridge - Cambridgeport,490007,53,52,44,44,42,41,35,0,0,0,0,0,0,0,0,311 +NA,NA,,2016-17,Cambridge - Fletcher/Maynard Academy,490090,50,41,40,34,37,38,20,0,0,0,0,0,0,0,0,260 +NA,NA,,2016-17,Cambridge - Graham and Parks,490080,35,55,54,63,60,75,50,0,0,0,0,0,0,0,0,392 +NA,NA,,2016-17,Cambridge - Haggerty,490020,25,51,41,39,37,32,28,0,0,0,0,0,0,0,0,253 +NA,NA,,2016-17,Cambridge - John M Tobin,490065,93,39,39,40,29,30,21,0,0,0,0,0,0,0,0,291 +NA,NA,,2016-17,Cambridge - Kennedy-Longfellow,490040,45,42,45,51,28,32,23,0,0,0,0,0,0,0,0,266 +NA,NA,,2016-17,Cambridge - King Open,490035,30,56,51,50,48,46,44,0,0,0,0,0,0,0,0,325 +NA,NA,,2016-17,Cambridge - Maria L. Baldwin,490005,62,64,50,56,43,44,37,0,0,0,0,0,0,0,0,356 +NA,NA,,2016-17,Cambridge - Martin Luther King Jr.,490030,47,51,51,50,44,43,31,0,0,0,0,0,0,0,0,317 +NA,NA,,2016-17,Cambridge - Morse,490045,48,51,43,42,38,43,41,0,0,0,0,0,0,0,0,306 +NA,NA,,2016-17,Cambridge - Peabody,490050,48,49,45,44,44,41,45,0,0,0,0,0,0,0,0,316 +NA,NA,,2016-17,Cambridge - Putnam Avenue Upper School,490310,0,0,0,0,0,0,0,89,95,78,0,0,0,0,0,262 +NA,NA,,2016-17,Cambridge - Rindge Avenue Upper School,490315,0,0,0,0,0,0,0,96,94,85,0,0,0,0,0,275 +NA,NA,,2016-17,Cambridge - Vassal Lane Upper School,490320,0,0,0,0,0,0,0,93,93,82,0,0,0,0,0,268 +NA,NA,,2016-17,Canton - Canton High,500505,0,0,0,0,0,0,0,0,0,0,235,241,260,215,0,951 +NA,NA,,2016-17,Canton - Dean S Luce,500020,0,83,78,73,88,100,70,0,0,0,0,0,0,0,0,492 +NA,NA,,2016-17,Canton - John F Kennedy,500017,0,63,85,79,106,87,84,0,0,0,0,0,0,0,0,504 +NA,NA,,2016-17,Canton - Lt Peter M Hansen,500012,0,96,76,76,89,79,86,0,0,0,0,0,0,0,0,502 +NA,NA,,2016-17,Canton - Rodman Early Childhood Center,500010,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90 +NA,NA,,2016-17,Canton - Wm H Galvin Middle,500305,0,0,0,0,0,0,0,258,262,266,0,0,0,0,0,786 +NA,NA,,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,0,0,0,0,80,83,80,0,0,0,0,0,243 +NA,NA,,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0,0,0,0,0,0,0,0,0,0,160,151,161,149,2,623 +NA,NA,,2016-17,Carlisle - Carlisle School,510025,14,51,58,54,73,59,70,70,73,68,0,0,0,0,0,590 +NA,NA,,2016-17,Carver - Carver Elementary School,520015,45,130,123,119,124,123,126,0,0,0,0,0,0,0,0,790 +NA,NA,,2016-17,Carver - Carver Middle/High School,520405,0,0,0,0,0,0,0,141,116,155,114,100,102,100,8,836 +NA,NA,,2016-17,Central Berkshire - Becket Washington School,6350005,23,15,15,19,20,15,18,0,0,0,0,0,0,0,0,125 +NA,NA,,2016-17,Central Berkshire - Craneville,6350025,22,64,56,57,64,75,84,0,0,0,0,0,0,0,0,422 +NA,NA,,2016-17,Central Berkshire - Kittredge,6350035,15,29,17,15,13,24,21,0,0,0,0,0,0,0,0,134 +NA,NA,,2016-17,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,0,0,0,0,111,134,151,0,0,0,0,0,396 +NA,NA,,2016-17,Central Berkshire - Wahconah Regional High,6350505,0,0,0,0,0,0,0,0,0,0,125,158,121,139,0,543 +NA,NA,,2016-17,Chelmsford - Byam School,560030,0,75,99,96,113,112,0,0,0,0,0,0,0,0,0,495 +NA,NA,,2016-17,Chelmsford - Center Elementary School,560005,0,95,80,82,88,89,0,0,0,0,0,0,0,0,0,434 +NA,NA,,2016-17,Chelmsford - Charles D Harrington,560025,0,92,92,107,96,84,0,0,0,0,0,0,0,0,0,471 +NA,NA,,2016-17,Chelmsford - Chelmsford High,560505,0,0,0,0,0,0,0,0,0,0,372,347,391,373,1,1484 +NA,NA,,2016-17,Chelmsford - Col Moses Parker School,560305,0,0,0,0,0,0,170,184,181,190,0,0,0,0,0,725 +NA,NA,,2016-17,Chelmsford - Community Education Center,560001,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136 +NA,NA,,2016-17,Chelmsford - McCarthy Middle School,560310,0,0,0,0,0,0,218,200,208,224,0,0,0,0,0,850 +NA,NA,,2016-17,Chelmsford - South Row,560015,0,70,75,73,85,76,0,0,0,0,0,0,0,0,0,379 +NA,NA,,2016-17,Chelsea - Chelsea High,570505,0,0,0,0,0,0,0,0,0,0,439,430,384,292,0,1545 +NA,NA,,2016-17,Chelsea - Clark Avenue School,570050,0,0,0,0,0,0,153,147,123,122,0,0,0,0,0,545 +NA,NA,,2016-17,Chelsea - Edgar A Hooks Elementary,570030,0,0,145,200,143,103,0,0,0,0,0,0,0,0,0,591 +NA,NA,,2016-17,Chelsea - Eugene Wright Science and Technology Academy,570045,0,0,0,0,0,0,159,119,131,110,0,0,0,0,0,519 +NA,NA,,2016-17,Chelsea - Frank M Sokolowski Elementary,570040,0,0,114,127,176,170,0,0,0,0,0,0,0,0,0,587 +NA,NA,,2016-17,Chelsea - George F. Kelly Elementary,570035,0,0,132,157,150,132,0,0,0,0,0,0,0,0,0,571 +NA,NA,,2016-17,Chelsea - Joseph A. Browne School,570055,0,0,0,0,0,0,154,142,133,147,0,0,0,0,0,576 +NA,NA,,2016-17,Chelsea - Shurtleff Early Childhood,570003,269,557,37,0,0,0,0,0,0,0,0,0,0,0,0,863 +NA,NA,,2016-17,Chelsea - William A Berkowitz Elementary,570025,0,0,117,138,150,136,0,0,0,0,0,0,0,0,0,541 +NA,NA,,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,15,22,14,19,12,19,19,20,0,0,0,0,0,0,0,140 +NA,NA,,2016-17,Chicopee - Barry,610003,0,70,65,66,79,73,72,0,0,0,0,0,0,0,0,425 +NA,NA,,2016-17,Chicopee - Belcher,610010,0,98,81,90,0,0,0,0,0,0,0,0,0,0,0,269 +NA,NA,,2016-17,Chicopee - Bellamy Middle,610305,0,0,0,0,0,0,0,244,279,265,0,0,0,0,0,788 +NA,NA,,2016-17,Chicopee - Bowe,610015,17,68,79,74,76,77,61,0,0,0,0,0,0,0,0,452 +NA,NA,,2016-17,Chicopee - Bowie,610020,0,47,74,56,61,68,60,0,0,0,0,0,0,0,0,366 +NA,NA,,2016-17,Chicopee - Chicopee Academy,610021,0,0,0,0,0,0,0,1,10,13,30,20,19,12,1,106 +NA,NA,,2016-17,Chicopee - Chicopee Comprehensive High School,610510,0,0,0,0,0,0,0,0,0,0,343,380,331,355,21,1430 +NA,NA,,2016-17,Chicopee - Chicopee High,610505,0,0,0,0,0,0,0,0,0,0,236,204,255,246,6,947 +NA,NA,,2016-17,Chicopee - Dupont Middle,610310,0,0,0,0,0,0,0,264,236,269,0,0,0,0,0,769 +NA,NA,,2016-17,Chicopee - Fairview Elementary,610050,0,74,65,78,85,73,73,0,0,0,0,0,0,0,0,448 +NA,NA,,2016-17,Chicopee - Gen John J Stefanik,610090,0,68,72,59,70,64,58,0,0,0,0,0,0,0,0,391 +NA,NA,,2016-17,Chicopee - Lambert-Lavoie,610040,0,41,57,53,47,55,52,0,0,0,0,0,0,0,0,305 +NA,NA,,2016-17,Chicopee - Litwin,610022,0,25,22,30,116,119,110,0,0,0,0,0,0,0,0,422 +NA,NA,,2016-17,Chicopee - Streiber Memorial School,610065,0,50,46,45,48,51,44,0,0,0,0,0,0,0,0,284 +NA,NA,,2016-17,Chicopee - Szetela Early Childhood Center,610001,281,0,0,0,0,0,0,0,0,0,0,0,0,0,0,281 +NA,NA,,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,0,0,0,0,0,0,0,143,125,127,0,0,0,0,0,395 +NA,NA,,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,0,0,0,0,0,0,0,0,0,0,111,67,51,50,0,279 +NA,NA,,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,0,0,0,0,0,0,0,0,0,0,114,71,56,40,0,281 +NA,NA,,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,0,0,0,0,0,0,0,0,0,0,102,55,20,0,0,177 +NA,NA,,2016-17,Clarksburg - Clarksburg Elementary,630010,0,16,18,19,32,19,18,16,19,16,0,0,0,0,0,173 +NA,NA,,2016-17,Clinton - Clinton Elementary,640050,95,139,139,147,186,0,0,0,0,0,0,0,0,0,0,706 +NA,NA,,2016-17,Clinton - Clinton Middle School,640305,0,0,0,0,0,166,145,123,127,139,0,0,0,0,0,700 +NA,NA,,2016-17,Clinton - Clinton Senior High,640505,26,0,0,0,0,0,0,0,0,0,115,110,110,102,3,466 +NA,NA,,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,20,18,22,21,21,20,19,20,20,23,46,47,30,32,0,359 +NA,NA,,2016-17,Cohasset - Cohasset Middle/High School,650505,0,0,0,0,0,0,0,143,128,134,127,116,97,93,0,838 +NA,NA,,2016-17,Cohasset - Deer Hill,650005,0,0,0,0,136,126,120,0,0,0,0,0,0,0,0,382 +NA,NA,,2016-17,Cohasset - Joseph Osgood,650010,24,105,110,127,0,0,0,0,0,0,0,0,0,0,0,366 +NA,NA,,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,0,100,110,94,122,90,65,65,0,0,0,0,0,0,0,646 +NA,NA,,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,0,0,0,0,0,0,0,33,50,57,64,60,57,53,0,374 +NA,NA,,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,40,42,40,42,38,40,38,0,0,0,0,0,0,0,0,280 +NA,NA,,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,43,43,50,47,48,44,37,20,22,46,0,0,0,0,0,400 +NA,NA,,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,41,42,42,42,42,39,32,0,0,0,0,0,0,0,0,280 +NA,NA,,2016-17,Concord - Alcott,670005,6,67,90,75,81,83,71,0,0,0,0,0,0,0,0,473 +NA,NA,,2016-17,Concord - Concord Middle,670305,0,0,0,0,0,0,0,239,249,227,0,0,0,0,0,715 +NA,NA,,2016-17,Concord - Thoreau,670020,9,71,75,70,81,75,86,0,0,0,0,0,0,0,0,467 +NA,NA,,2016-17,Concord - Willard,670030,5,71,72,71,83,76,75,0,0,0,0,0,0,0,0,453 +NA,NA,,2016-17,Concord-Carlisle - Concord Carlisle High,6400505,0,0,0,0,0,0,0,0,0,0,301,334,325,315,1,1276 +NA,NA,,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,46,46,50,50,51,50,50,44,41,22,0,0,0,0,0,450 +NA,NA,,2016-17,Conway - Conway Grammar,680005,9,17,15,15,16,19,24,26,0,0,0,0,0,0,0,141 +NA,NA,,2016-17,Danvers - Danvers High,710505,0,0,0,0,0,0,0,0,0,0,230,251,231,260,2,974 +NA,NA,,2016-17,Danvers - Great Oak,710015,0,16,66,57,54,57,52,0,0,0,0,0,0,0,0,302 +NA,NA,,2016-17,Danvers - Highlands,710010,0,50,65,67,61,71,60,0,0,0,0,0,0,0,0,374 +NA,NA,,2016-17,Danvers - Holten Richmond Middle School,710305,0,0,0,0,0,0,0,288,266,284,0,0,0,0,0,838 +NA,NA,,2016-17,Danvers - Ivan G Smith,710032,0,37,42,44,51,49,63,0,0,0,0,0,0,0,0,286 +NA,NA,,2016-17,Danvers - Riverside,710030,46,12,37,53,47,45,38,0,0,0,0,0,0,0,0,278 +NA,NA,,2016-17,Danvers - Willis E Thorpe,710045,0,52,48,62,57,45,63,0,0,0,0,0,0,0,0,327 +NA,NA,,2016-17,Dartmouth - Andrew B. Cushman School,720005,66,95,0,0,0,0,0,0,0,0,0,0,0,0,0,161 +NA,NA,,2016-17,Dartmouth - Dartmouth High,720505,0,0,0,0,0,0,0,0,0,0,269,270,270,255,0,1064 +NA,NA,,2016-17,Dartmouth - Dartmouth Middle,720050,0,0,0,0,0,0,0,300,334,331,0,0,0,0,0,965 +NA,NA,,2016-17,Dartmouth - George H Potter,720030,0,66,76,74,61,75,77,0,0,0,0,0,0,0,0,429 +NA,NA,,2016-17,Dartmouth - James M. Quinn School,720040,0,75,97,100,99,122,124,0,0,0,0,0,0,0,0,617 +NA,NA,,2016-17,Dartmouth - Joseph Demello,720015,0,0,68,82,80,92,97,0,0,0,0,0,0,0,0,419 +NA,NA,,2016-17,Dedham - Avery,730010,0,0,54,55,72,72,55,0,0,0,0,0,0,0,0,308 +NA,NA,,2016-17,Dedham - Dedham High,730505,0,0,0,0,0,0,0,0,0,0,208,180,160,191,0,739 +NA,NA,,2016-17,Dedham - Dedham Middle School,730305,0,0,0,0,0,0,0,203,213,215,0,0,0,0,0,631 +NA,NA,,2016-17,Dedham - Early Childhood Center,730005,95,187,0,0,0,0,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2016-17,Dedham - Greenlodge,730025,0,0,38,52,66,64,58,0,0,0,0,0,0,0,0,278 +NA,NA,,2016-17,Dedham - Oakdale,730030,0,0,52,56,47,65,52,0,0,0,0,0,0,0,0,272 +NA,NA,,2016-17,Dedham - Riverdale,730045,0,0,34,31,35,43,40,0,0,0,0,0,0,0,0,183 +NA,NA,,2016-17,Deerfield - Deerfield Elementary,740015,39,49,39,52,52,51,59,60,0,0,0,0,0,0,0,401 +NA,NA,,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,0,0,0,0,0,0,0,4,0,221,194,201,202,181,0,1003 +NA,NA,,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,0,76,91,95,90,1,0,0,0,0,0,0,0,0,0,353 +NA,NA,,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,76,53,63,53,61,0,0,0,0,0,0,0,0,0,0,306 +NA,NA,,2016-17,Dennis-Yarmouth - Mattacheese Middle School,6450305,0,0,0,0,0,0,0,194,229,0,0,0,0,0,0,423 +NA,NA,,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,6450050,0,0,0,0,0,272,242,0,0,0,0,0,0,0,0,514 +NA,NA,,2016-17,Dennis-Yarmouth - Station Avenue Elementary,6450025,0,101,109,106,109,0,0,0,0,0,0,0,0,0,0,425 +NA,NA,,2016-17,Dighton-Rehoboth - Dighton Elementary,6500005,0,81,80,79,100,80,0,0,0,0,0,0,0,0,0,420 +NA,NA,,2016-17,Dighton-Rehoboth - Dighton Middle School,6500305,0,0,0,0,0,0,99,94,84,119,0,0,0,0,0,396 +NA,NA,,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,84,0,0,0,0,0,0,0,0,0,191,219,207,227,0,928 +NA,NA,,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0,0,0,0,0,0,148,146,145,136,0,0,0,0,0,575 +NA,NA,,2016-17,Dighton-Rehoboth - Palmer River,6500010,0,92,111,102,128,131,0,0,0,0,0,0,0,0,0,564 +NA,NA,,2016-17,Douglas - Douglas Elementary School,770015,0,0,0,83,80,111,130,0,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Douglas - Douglas High School,770505,0,0,0,0,0,0,0,0,0,0,106,99,84,104,1,394 +NA,NA,,2016-17,Douglas - Douglas Middle School,770305,0,0,0,0,0,0,0,105,123,132,0,0,0,0,0,360 +NA,NA,,2016-17,Douglas - Douglas Primary School,770005,52,79,99,0,0,0,0,0,0,0,0,0,0,0,0,230 +NA,NA,,2016-17,Dover - Chickering,780005,12,64,72,68,83,96,88,0,0,0,0,0,0,0,0,483 +NA,NA,,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0,0,0,0,0,0,0,0,0,0,173,154,167,158,0,652 +NA,NA,,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,0,0,0,0,0,0,0,172,174,177,0,0,0,0,0,523 +NA,NA,,2016-17,Dracut - Brookside Elementary,790035,0,84,69,69,77,85,79,0,0,0,0,0,0,0,0,463 +NA,NA,,2016-17,Dracut - Dracut Senior High,790505,0,0,0,0,0,0,0,0,0,0,220,204,190,187,0,801 +NA,NA,,2016-17,Dracut - George H. Englesby Elementary School,790045,0,79,87,78,98,86,80,0,0,0,0,0,0,0,0,508 +NA,NA,,2016-17,Dracut - Greenmont Avenue,790030,0,40,51,51,49,49,40,0,0,0,0,0,0,0,0,280 +NA,NA,,2016-17,Dracut - Joseph A Campbell Elementary,790020,53,68,66,94,88,100,77,0,0,0,0,0,0,0,0,546 +NA,NA,,2016-17,Dracut - Justus C. Richardson Middle School,790410,0,0,0,0,0,0,0,277,301,323,0,0,0,0,0,901 +NA,NA,,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,41,44,43,44,44,44,32,0,0,0,0,0,0,0,0,292 +NA,NA,,2016-17,Dudley-Charlton Reg - Charlton Elementary,6580020,66,147,135,0,0,0,0,0,0,0,0,0,0,0,0,348 +NA,NA,,2016-17,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,0,0,0,0,148,175,176,205,0,0,0,0,0,704 +NA,NA,,2016-17,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,0,129,127,117,0,0,0,0,0,0,0,0,0,373 +NA,NA,,2016-17,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,0,0,0,142,147,166,162,0,0,0,0,0,617 +NA,NA,,2016-17,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,154,176,166,0,0,0,0,0,0,0,0,0,496 +NA,NA,,2016-17,Dudley-Charlton Reg - Mason Road School,6580010,44,95,120,0,0,0,0,0,0,0,0,0,0,0,0,259 +NA,NA,,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,0,0,0,0,0,0,0,0,293,269,303,300,1,1166 +NA,NA,,2016-17,Duxbury - Alden School,820004,0,0,0,0,225,242,239,0,0,0,0,0,0,0,0,706 +NA,NA,,2016-17,Duxbury - Chandler Elementary,820006,65,166,200,176,0,0,0,0,0,0,0,0,0,0,0,607 +NA,NA,,2016-17,Duxbury - Duxbury High,820505,0,0,0,0,0,0,0,0,0,0,259,251,275,272,0,1057 +NA,NA,,2016-17,Duxbury - Duxbury Middle,820305,0,0,0,0,0,0,0,243,243,265,0,0,0,0,0,751 +NA,NA,,2016-17,East Bridgewater - Central,830005,113,142,161,145,0,0,0,0,0,0,0,0,0,0,0,561 +NA,NA,,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,0,0,0,0,0,196,188,175,146,168,178,0,1051 +NA,NA,,2016-17,East Bridgewater - Gordon W Mitchell,830010,0,0,0,0,162,164,177,187,0,0,0,0,0,0,0,690 +NA,NA,,2016-17,East Longmeadow - Birchland Park,870305,0,0,0,0,0,0,0,214,225,189,0,0,0,0,0,628 +NA,NA,,2016-17,East Longmeadow - East Longmeadow High,870505,0,0,0,0,0,0,0,0,0,0,226,210,215,218,1,870 +NA,NA,,2016-17,East Longmeadow - Mapleshade,870010,0,0,0,0,98,80,91,0,0,0,0,0,0,0,0,269 +NA,NA,,2016-17,East Longmeadow - Meadow Brook,870013,41,171,169,182,0,0,0,0,0,0,0,0,0,0,0,563 +NA,NA,,2016-17,East Longmeadow - Mountain View,870015,0,0,0,0,100,99,101,0,0,0,0,0,0,0,0,300 +NA,NA,,2016-17,Eastham - Eastham Elementary,850005,11,27,29,25,24,38,28,0,0,0,0,0,0,0,0,182 +NA,NA,,2016-17,Easthampton - Center School,860005,0,43,42,43,41,25,0,0,0,0,0,0,0,0,0,194 +NA,NA,,2016-17,Easthampton - Easthampton High,860505,0,0,0,0,0,0,0,0,0,0,129,132,103,103,4,471 +NA,NA,,2016-17,Easthampton - Maple,860010,43,41,40,44,40,48,0,0,0,0,0,0,0,0,0,256 +NA,NA,,2016-17,Easthampton - Neil A Pepin,860020,0,43,38,43,20,48,0,0,0,0,0,0,0,0,0,192 +NA,NA,,2016-17,Easthampton - White Brook Middle School,860305,0,0,0,0,0,0,105,109,124,111,0,0,0,0,0,449 +NA,NA,,2016-17,Easton - Center School,880003,16,66,81,90,0,0,0,0,0,0,0,0,0,0,0,253 +NA,NA,,2016-17,Easton - Easton Middle School,880405,0,0,0,0,0,0,0,300,294,293,0,0,0,0,0,887 +NA,NA,,2016-17,Easton - Moreau Hall,880020,14,75,64,80,0,0,0,0,0,0,0,0,0,0,0,233 +NA,NA,,2016-17,Easton - Oliver Ames High,880505,0,0,0,0,0,0,0,0,0,0,267,302,326,304,0,1199 +NA,NA,,2016-17,Easton - Parkview Elementary,880015,48,91,99,105,0,0,0,0,0,0,0,0,0,0,0,343 +NA,NA,,2016-17,Easton - Richardson Olmsted School,880025,0,0,0,0,255,296,284,0,0,0,0,0,0,0,0,835 +NA,NA,,2016-17,Edgartown - Edgartown Elementary,890005,5,37,36,46,42,32,42,34,34,40,0,0,0,0,0,348 +NA,NA,,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,0,0,0,0,0,0,0,0,0,0,105,88,79,87,0,359 +NA,NA,,2016-17,Erving - Erving Elementary,910030,26,11,19,11,17,18,22,12,0,0,0,0,0,0,0,136 +NA,NA,,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,8170505,0,0,0,0,0,0,0,0,0,0,360,349,338,260,0,1307 +NA,NA,,2016-17,Everett - Adams School,930003,209,0,0,0,0,0,0,0,0,0,0,0,0,0,0,209 +NA,NA,,2016-17,Everett - Devens School,930030,0,0,2,4,5,8,6,4,4,0,9,11,7,5,0,65 +NA,NA,,2016-17,Everett - Everett High,930505,0,0,0,0,0,0,0,0,0,0,469,514,551,486,3,2023 +NA,NA,,2016-17,Everett - George Keverian School,930028,0,106,88,90,108,120,129,101,99,101,0,0,0,0,0,942 +NA,NA,,2016-17,Everett - Lafayette School,930038,0,79,119,98,106,107,111,113,104,94,0,0,0,0,0,931 +NA,NA,,2016-17,Everett - Madeline English School,930018,0,85,102,84,111,104,126,102,87,77,0,0,0,0,0,878 +NA,NA,,2016-17,Everett - Parlin School,930058,0,100,74,103,81,111,96,98,104,104,0,0,0,0,0,871 +NA,NA,,2016-17,Everett - Sumner G. Whittier School,930010,0,77,69,92,77,74,59,58,54,35,0,0,0,0,0,595 +NA,NA,,2016-17,Everett - Webster School,930015,289,71,60,57,46,41,0,0,0,0,0,0,0,0,0,564 +NA,NA,,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,4100205,0,0,0,0,0,0,168,171,174,165,173,106,0,0,0,957 +NA,NA,,2016-17,Fairhaven - East Fairhaven,940010,44,60,64,72,70,59,67,0,0,0,0,0,0,0,0,436 +NA,NA,,2016-17,Fairhaven - Fairhaven High,940505,0,0,0,0,0,0,0,0,0,0,170,158,139,147,2,616 +NA,NA,,2016-17,Fairhaven - Hastings Middle,940305,0,0,0,0,0,0,0,165,141,152,0,0,0,0,0,458 +NA,NA,,2016-17,Fairhaven - Leroy Wood,940030,0,67,95,90,82,88,92,0,0,0,0,0,0,0,0,514 +NA,NA,,2016-17,Fall River - B M C Durfee High,950505,0,0,0,0,0,0,0,0,0,0,597,513,516,497,0,2123 +NA,NA,,2016-17,Fall River - Carlton M. Viveiros Elementary School,950009,0,98,134,124,130,145,94,0,0,0,0,0,0,0,0,725 +NA,NA,,2016-17,Fall River - Fall River Gateway to College @ BCC,950515,0,0,0,0,0,0,0,0,0,0,0,0,12,13,0,25 +NA,NA,,2016-17,Fall River - Henry Lord Community School,950017,20,71,68,79,81,59,51,61,68,66,0,0,0,0,0,624 +NA,NA,,2016-17,Fall River - James Tansey,950140,0,49,46,51,54,50,43,0,0,0,0,0,0,0,0,293 +NA,NA,,2016-17,Fall River - John J Doran,950045,21,58,58,56,67,65,64,56,48,53,0,0,0,0,0,546 +NA,NA,,2016-17,Fall River - Letourneau Elementary School,950013,27,87,102,97,104,96,84,0,0,0,0,0,0,0,0,597 +NA,NA,,2016-17,Fall River - Mary Fonseca Elementary School,950011,0,129,116,135,124,91,118,0,0,0,0,0,0,0,0,713 +NA,NA,,2016-17,Fall River - Matthew J Kuss Middle,950320,0,0,0,0,0,0,0,294,249,227,0,0,0,0,0,770 +NA,NA,,2016-17,Fall River - Morton Middle,950315,0,0,0,0,0,0,0,214,204,204,0,0,0,0,0,622 +NA,NA,,2016-17,Fall River - North End Elementary,950005,65,110,104,113,125,131,115,0,0,0,0,0,0,0,0,763 +NA,NA,,2016-17,Fall River - Resiliency Middle School,950335,0,0,0,0,0,0,0,1,6,19,1,0,0,0,0,27 +NA,NA,,2016-17,Fall River - Resiliency Preparatory School,950325,0,0,0,0,0,0,0,0,0,0,54,57,33,18,0,162 +NA,NA,,2016-17,Fall River - Samuel Watson,950145,0,57,49,52,55,46,45,0,0,0,0,0,0,0,0,304 +NA,NA,,2016-17,Fall River - Spencer Borden,950130,0,85,89,88,100,87,74,0,0,0,0,0,0,0,0,523 +NA,NA,,2016-17,Fall River - Stone Day School,950340,0,0,0,2,4,2,6,5,7,6,0,0,0,0,0,32 +NA,NA,,2016-17,Fall River - Talbot Innovation School,950305,0,0,0,0,0,0,0,172,184,190,0,0,0,0,0,546 +NA,NA,,2016-17,Fall River - William S Greene,950065,48,118,112,116,102,131,141,0,0,0,0,0,0,0,0,768 +NA,NA,,2016-17,Falmouth - East Falmouth Elementary,960005,75,52,47,59,64,54,0,0,0,0,0,0,0,0,0,351 +NA,NA,,2016-17,Falmouth - Falmouth High,960505,0,0,0,0,0,0,0,0,0,0,240,207,197,234,4,882 +NA,NA,,2016-17,Falmouth - Lawrence,960405,0,0,0,0,0,0,0,0,290,278,0,0,0,0,0,568 +NA,NA,,2016-17,Falmouth - Morse Pond School,960305,0,0,0,0,0,0,273,316,0,0,0,0,0,0,0,589 +NA,NA,,2016-17,Falmouth - Mullen-Hall,960020,0,79,84,98,96,107,0,0,0,0,0,0,0,0,0,464 +NA,NA,,2016-17,Falmouth - North Falmouth Elementary,960030,0,48,63,74,65,62,0,0,0,0,0,0,0,0,0,312 +NA,NA,,2016-17,Falmouth - Teaticket,960015,19,53,59,58,51,60,0,0,0,0,0,0,0,0,0,300 +NA,NA,,2016-17,Farmington River Reg - Farmington River Elementary,6620020,20,14,12,13,16,16,12,11,0,0,0,0,0,0,0,114 +NA,NA,,2016-17,Fitchburg - Arthur M Longsjo Middle School,970315,0,0,0,0,0,0,167,171,110,111,0,0,0,0,0,559 +NA,NA,,2016-17,Fitchburg - Crocker Elementary,970016,92,119,122,111,99,99,0,0,0,0,0,0,0,0,0,642 +NA,NA,,2016-17,Fitchburg - Fitchburg High,970505,51,0,0,0,0,0,0,0,0,0,280,307,304,265,4,1211 +NA,NA,,2016-17,Fitchburg - Goodrich Academy,970510,0,0,0,0,0,0,0,0,0,0,9,19,46,84,14,172 +NA,NA,,2016-17,Fitchburg - McKay Arts Academy,970340,22,65,70,82,71,70,76,74,68,75,0,0,0,0,0,673 +NA,NA,,2016-17,Fitchburg - Memorial Intermediate,970048,0,0,0,0,0,0,174,204,163,175,0,0,0,0,0,716 +NA,NA,,2016-17,Fitchburg - Reingold Elementary,970043,0,126,119,136,123,118,0,0,0,0,0,0,0,0,0,622 +NA,NA,,2016-17,Fitchburg - South Street Elementary,970060,20,124,123,135,142,133,0,0,0,0,0,0,0,0,0,677 +NA,NA,,2016-17,Florida - Abbott Memorial,980005,11,7,7,5,9,13,9,4,11,5,0,0,0,0,0,81 +NA,NA,,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,0,0,0,0,0,36,37,38,38,37,34,0,220 +NA,NA,,2016-17,Foxborough - Charles Taylor Elementary,990050,0,49,38,42,58,56,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2016-17,Foxborough - Foxborough High,990505,0,0,0,0,0,0,0,0,0,0,212,205,193,216,11,837 +NA,NA,,2016-17,Foxborough - John J Ahern,990405,0,0,0,0,0,0,205,204,214,193,0,0,0,0,0,816 +NA,NA,,2016-17,Foxborough - Mabelle M Burrell,990015,74,42,42,39,53,61,0,0,0,0,0,0,0,0,0,311 +NA,NA,,2016-17,Foxborough - Vincent M Igo Elementary,990020,0,73,70,81,91,79,0,0,0,0,0,0,0,0,0,394 +NA,NA,,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,0,100,114,113,115,112,110,110,112,110,77,68,61,59,0,1261 +NA,NA,,2016-17,Framingham - Barbieri Elementary,1000035,0,114,119,117,115,124,103,0,0,0,0,0,0,0,0,692 +NA,NA,,2016-17,Framingham - Brophy,1000006,0,59,76,83,103,94,100,0,0,0,0,0,0,0,0,515 +NA,NA,,2016-17,Framingham - Cameron Middle School,1000302,0,0,0,0,0,0,0,182,178,186,0,0,0,0,0,546 +NA,NA,,2016-17,Framingham - Charlotte A Dunning,1000007,0,64,72,72,97,87,87,0,0,0,0,0,0,0,0,479 +NA,NA,,2016-17,Framingham - Framingham High School,1000515,0,0,0,0,0,0,0,0,0,0,536,547,509,510,0,2102 +NA,NA,,2016-17,Framingham - Fuller Middle,1000305,0,0,0,0,0,0,0,151,146,168,0,0,0,0,0,465 +NA,NA,,2016-17,Framingham - Hemenway,1000015,0,92,98,101,91,97,94,0,0,0,0,0,0,0,0,573 +NA,NA,,2016-17,Framingham - Juniper Hill School,1000001,234,0,0,0,0,0,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2016-17,Framingham - King Elementary School,1000005,0,81,90,79,0,0,0,0,0,0,0,0,0,0,0,250 +NA,NA,,2016-17,Framingham - Mary E Stapleton Elementary,1000045,0,54,54,55,70,84,76,0,0,0,0,0,0,0,0,393 +NA,NA,,2016-17,Framingham - Miriam F McCarthy School,1000050,0,82,84,88,104,98,101,0,0,0,0,0,0,0,0,557 +NA,NA,,2016-17,Framingham - Potter Road,1000039,0,70,84,81,95,86,87,0,0,0,0,0,0,0,0,503 +NA,NA,,2016-17,Framingham - Walsh Middle,1000310,0,0,0,0,0,0,0,239,257,228,0,0,0,0,0,724 +NA,NA,,2016-17,Framingham - Woodrow Wilson,1000055,0,77,98,103,103,107,88,0,0,0,0,0,0,0,0,576 +NA,NA,,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,0,0,0,0,0,0,0,0,69,64,63,64,73,62,0,395 +NA,NA,,2016-17,Franklin - Annie Sullivan Middle School,1010040,0,0,0,0,0,0,0,158,154,152,0,0,0,0,0,464 +NA,NA,,2016-17,Franklin - Davis Thayer,1010035,0,44,32,40,46,44,66,0,0,0,0,0,0,0,0,272 +NA,NA,,2016-17,Franklin - Franklin Early Childhood Development Center,1010003,131,0,0,0,0,0,0,0,0,0,0,0,0,0,0,131 +NA,NA,,2016-17,Franklin - Franklin High,1010505,0,0,0,0,0,0,0,0,0,0,436,424,470,404,5,1739 +NA,NA,,2016-17,Franklin - Helen Keller Elementary,1010012,0,68,76,51,71,82,65,0,0,0,0,0,0,0,0,413 +NA,NA,,2016-17,Franklin - Horace Mann,1010405,0,0,0,0,0,0,0,153,157,156,0,0,0,0,0,466 +NA,NA,,2016-17,Franklin - J F Kennedy Memorial,1010013,0,54,63,55,53,63,72,0,0,0,0,0,0,0,0,360 +NA,NA,,2016-17,Franklin - Jefferson Elementary,1010010,0,33,51,63,57,64,61,0,0,0,0,0,0,0,0,329 +NA,NA,,2016-17,Franklin - Oak Street Elementary,1010030,0,62,49,57,71,94,80,0,0,0,0,0,0,0,0,413 +NA,NA,,2016-17,Franklin - Parmenter,1010032,0,65,47,61,52,57,83,0,0,0,0,0,0,0,0,365 +NA,NA,,2016-17,Franklin - Remington Middle,1010310,0,0,0,0,0,0,0,137,157,166,0,0,0,0,0,460 +NA,NA,,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,0,0,0,0,0,0,0,128,129,118,113,0,488 +NA,NA,,2016-17,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,0,0,0,0,0,0,0,0,182,189,201,153,0,725 +NA,NA,,2016-17,Freetown-Lakeville - Assawompset Elementary School,6650002,0,101,120,96,100,0,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2016-17,Freetown-Lakeville - Freetown Elementary School,6650001,42,72,99,89,98,0,0,0,0,0,0,0,0,0,0,400 +NA,NA,,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,0,0,0,0,0,0,0,246,235,258,0,0,0,0,0,739 +NA,NA,,2016-17,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,0,3,216,254,0,0,0,0,0,0,0,0,473 +NA,NA,,2016-17,Frontier - Frontier Regional,6700505,0,0,0,0,0,0,0,0,106,127,104,95,85,89,5,611 +NA,NA,,2016-17,Gardner - Elm Street School,1030001,0,0,0,190,186,203,0,0,0,0,0,0,0,0,0,579 +NA,NA,,2016-17,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,0,0,0,0,0,0,0,27,22,21,23,0,93 +NA,NA,,2016-17,Gardner - Gardner High,1030505,0,0,0,0,0,0,0,0,0,181,182,104,122,122,0,711 +NA,NA,,2016-17,Gardner - Gardner Middle School,1030405,0,0,0,0,0,0,208,158,181,0,0,0,0,0,0,547 +NA,NA,,2016-17,Gardner - Waterford Street,1030020,80,194,181,0,0,0,0,0,0,0,0,0,0,0,0,455 +NA,NA,,2016-17,Gateway - Chester Elementary,6720059,19,8,19,20,10,21,19,0,0,0,0,0,0,0,0,116 +NA,NA,,2016-17,Gateway - Gateway Regional High,6720505,0,0,0,0,0,0,0,0,0,0,61,59,42,55,3,220 +NA,NA,,2016-17,Gateway - Gateway Regional Middle School,6720405,0,0,0,0,0,0,0,65,63,80,0,0,0,0,0,208 +NA,NA,,2016-17,Gateway - Littleville Elementary School,6720143,20,42,35,54,46,51,49,0,0,0,0,0,0,0,0,297 +NA,NA,,2016-17,Georgetown - Georgetown High School,1050505,0,0,0,0,0,0,0,0,0,0,108,98,112,93,0,411 +NA,NA,,2016-17,Georgetown - Georgetown Middle School,1050305,0,0,0,0,0,0,0,0,117,114,0,0,0,0,0,231 +NA,NA,,2016-17,Georgetown - Penn Brook,1050010,0,87,101,89,115,91,103,111,0,0,0,0,0,0,0,697 +NA,NA,,2016-17,Georgetown - Perley Elementary,1050005,108,0,0,0,0,0,0,0,0,0,0,0,0,0,0,108 +NA,NA,,2016-17,Gill-Montague - Gill Elementary,6740005,0,14,19,16,20,16,16,16,0,0,0,0,0,0,0,117 +NA,NA,,2016-17,Gill-Montague - Great Falls Middle,6740310,0,0,0,0,0,0,0,73,86,79,0,0,0,0,0,238 +NA,NA,,2016-17,Gill-Montague - Hillcrest Elementary School,6740015,38,52,58,0,0,0,0,0,0,0,0,0,0,0,0,148 +NA,NA,,2016-17,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,54,55,51,57,0,0,0,0,0,0,0,0,217 +NA,NA,,2016-17,Gill-Montague - Turners Fall High,6740505,0,0,0,0,0,0,0,0,0,0,58,57,55,58,3,231 +NA,NA,,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,0,0,0,0,0,80,90,80,77,41,46,43,50,0,507 +NA,NA,,2016-17,Gloucester - Beeman Memorial,1070010,0,65,57,60,55,59,59,0,0,0,0,0,0,0,0,355 +NA,NA,,2016-17,Gloucester - East Gloucester Elementary,1070020,0,33,44,39,41,34,44,0,0,0,0,0,0,0,0,235 +NA,NA,,2016-17,Gloucester - Gloucester High,1070505,0,0,0,0,0,0,0,0,0,0,226,201,204,183,4,818 +NA,NA,,2016-17,Gloucester - Gloucester PreSchool,1070025,96,0,0,0,0,0,0,0,0,0,0,0,0,0,0,96 +NA,NA,,2016-17,Gloucester - Plum Cove School,1070042,0,37,37,34,39,34,32,0,0,0,0,0,0,0,0,213 +NA,NA,,2016-17,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,0,0,0,0,215,234,188,0,0,0,0,0,637 +NA,NA,,2016-17,Gloucester - Veterans Memorial,1070045,0,46,44,28,36,26,40,0,0,0,0,0,0,0,0,220 +NA,NA,,2016-17,Gloucester - West Parish,1070050,0,60,63,57,55,57,64,0,0,0,0,0,0,0,0,356 +NA,NA,,2016-17,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,2 +NA,NA,,2016-17,Grafton - Grafton High School,1100505,0,0,0,0,0,0,0,0,0,0,221,228,185,188,13,835 +NA,NA,,2016-17,Grafton - Grafton Middle,1100305,0,0,0,0,0,0,0,0,271,214,0,0,0,0,0,485 +NA,NA,,2016-17,Grafton - Millbury Street Elementary School,1100200,0,0,0,129,131,149,129,141,0,0,0,0,0,0,0,679 +NA,NA,,2016-17,Grafton - North Grafton Elementary,1100025,63,108,114,0,0,0,0,0,0,0,0,0,0,0,0,285 +NA,NA,,2016-17,Grafton - North Street Elementary School,1100030,0,0,0,135,105,123,111,123,0,0,0,0,0,0,0,597 +NA,NA,,2016-17,Grafton - South Grafton Elementary,1100005,62,126,120,0,0,0,0,0,0,0,0,0,0,0,0,308 +NA,NA,,2016-17,Granby - East Meadow,1110004,0,0,0,0,0,49,63,57,0,0,0,0,0,0,0,169 +NA,NA,,2016-17,Granby - Granby Jr Sr High School,1110505,0,0,0,0,0,0,0,0,74,61,54,51,61,78,2,381 +NA,NA,,2016-17,Granby - West Street,1110010,27,43,46,44,46,0,0,0,0,0,0,0,0,0,0,206 +NA,NA,,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,0,0,0,0,0,0,0,0,0,0,372,347,334,341,1,1395 +NA,NA,,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0,0,0,0,0,0,0,0,0,0,415,393,340,325,0,1473 +NA,NA,,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,0,0,0,0,0,0,0,0,0,0,574,567,529,489,25,2184 +NA,NA,,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,0,0,0,0,0,0,0,0,0,0,562,554,530,508,0,2154 +NA,NA,,2016-17,Greenfield - Discovery School at Four Corners,1140025,0,56,51,45,55,36,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2016-17,Greenfield - Federal Street School,1140010,0,54,46,41,48,45,0,0,0,0,0,0,0,0,0,234 +NA,NA,,2016-17,Greenfield - Green River,1140030,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,6 +NA,NA,,2016-17,Greenfield - Greenfield High,1140505,0,0,0,0,0,0,0,0,0,90,84,87,86,99,2,448 +NA,NA,,2016-17,Greenfield - Greenfield Middle,1140305,0,0,0,0,0,9,131,129,125,0,0,0,0,0,0,394 +NA,NA,,2016-17,Greenfield - Newton School,1140035,0,48,38,40,52,37,0,0,0,0,0,0,0,0,0,215 +NA,NA,,2016-17,Greenfield - The Academy of Early Learning at North Parish,1140005,122,0,0,0,0,0,0,0,0,0,0,0,0,0,0,122 +NA,NA,,2016-17,Groton-Dunstable - Boutwell School,6730001,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64 +NA,NA,,2016-17,Groton-Dunstable - Florence Roche School,6730010,0,85,89,103,99,102,0,0,0,0,0,0,0,0,0,478 +NA,NA,,2016-17,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,0,0,0,0,0,0,0,182,203,210,214,3,812 +NA,NA,,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,0,0,0,201,179,202,209,0,0,0,0,0,791 +NA,NA,,2016-17,Groton-Dunstable - Swallow/Union School,6730005,0,56,41,66,55,62,0,0,0,0,0,0,0,0,0,280 +NA,NA,,2016-17,Hadley - Hadley Elementary,1170015,35,28,35,26,45,39,53,43,0,0,0,0,0,0,0,304 +NA,NA,,2016-17,Hadley - Hopkins Academy,1170505,0,0,0,0,0,0,0,0,42,49,32,52,35,46,2,258 +NA,NA,,2016-17,Halifax - Halifax Elementary,1180005,0,95,80,79,88,91,73,86,0,0,0,0,0,0,0,592 +NA,NA,,2016-17,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,39,43,45,46,39,43,0,0,0,0,0,0,0,0,255 +NA,NA,,2016-17,Hamilton-Wenham - Cutler School,6750010,0,41,40,41,51,45,36,0,0,0,0,0,0,0,0,254 +NA,NA,,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,0,0,0,0,0,0,0,0,0,134,150,133,157,0,574 +NA,NA,,2016-17,Hamilton-Wenham - Miles River Middle,6750310,0,0,0,0,0,0,0,131,136,140,0,0,0,0,0,407 +NA,NA,,2016-17,Hamilton-Wenham - Winthrop School,6750015,32,44,38,55,33,42,48,0,0,0,0,0,0,0,0,292 +NA,NA,,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,4990305,0,0,0,0,0,0,0,109,86,86,81,40,37,39,0,478 +NA,NA,,2016-17,Hampden-Wilbraham - Green Meadows Elementary,6800005,24,41,40,52,46,44,0,0,0,0,0,0,0,0,0,247 +NA,NA,,2016-17,Hampden-Wilbraham - Mile Tree Elementary,6800025,40,141,134,0,0,0,0,0,0,0,0,0,0,0,0,315 +NA,NA,,2016-17,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0,0,0,0,0,0,0,0,0,284,303,274,284,2,1147 +NA,NA,,2016-17,Hampden-Wilbraham - Soule Road,6800030,0,0,0,0,0,165,174,0,0,0,0,0,0,0,0,339 +NA,NA,,2016-17,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,144,159,0,0,0,0,0,0,0,0,0,0,303 +NA,NA,,2016-17,Hampden-Wilbraham - Thornton Burgess,6800305,0,0,0,0,0,0,50,48,59,65,0,0,0,0,0,222 +NA,NA,,2016-17,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,0,0,0,0,177,200,157,0,0,0,0,0,534 +NA,NA,,2016-17,Hampshire - Hampshire Regional High,6830505,0,0,0,0,0,0,0,0,159,138,118,95,110,115,6,741 +NA,NA,,2016-17,Hancock - Hancock Elementary,1210005,5,2,4,3,4,5,8,5,0,0,0,0,0,0,0,36 +NA,NA,,2016-17,Hanover - Cedar Elementary,1220004,65,67,74,69,66,83,0,0,0,0,0,0,0,0,0,424 +NA,NA,,2016-17,Hanover - Center Elementary,1220005,0,120,110,119,0,0,0,0,0,0,0,0,0,0,0,349 +NA,NA,,2016-17,Hanover - Hanover High,1220505,0,0,0,0,0,0,0,0,0,0,179,219,192,198,2,790 +NA,NA,,2016-17,Hanover - Hanover Middle,1220305,0,0,0,0,0,0,219,180,209,226,0,0,0,0,0,834 +NA,NA,,2016-17,Hanover - Sylvester,1220015,0,0,0,0,106,122,0,0,0,0,0,0,0,0,0,228 +NA,NA,,2016-17,Harvard - Bromfield,1250505,0,0,0,0,0,0,0,72,98,103,93,103,108,107,0,684 +NA,NA,,2016-17,Harvard - Hildreth Elementary School,1250005,11,60,69,62,76,79,76,0,0,0,0,0,0,0,0,433 +NA,NA,,2016-17,Hatfield - Hatfield Elementary,1270005,21,30,21,33,36,42,30,31,0,0,0,0,0,0,0,244 +NA,NA,,2016-17,Hatfield - Smith Academy,1270505,0,0,0,0,0,0,0,0,46,34,32,28,29,29,0,198 +NA,NA,,2016-17,Haverhill - Bartlett Kindergarten Center,1280005,0,151,0,0,0,0,0,0,0,0,0,0,0,0,0,151 +NA,NA,,2016-17,Haverhill - Bradford Elementary,1280008,0,38,50,59,153,148,168,0,0,0,0,0,0,0,0,616 +NA,NA,,2016-17,Haverhill - Caleb Dustin Hunking,1280035,0,0,0,0,0,0,0,156,130,130,0,0,0,0,0,416 +NA,NA,,2016-17,Haverhill - Consentino Middle School,1280100,0,0,44,47,56,57,162,213,206,232,0,0,0,0,0,1017 +NA,NA,,2016-17,Haverhill - Crowell,1280020,0,150,0,0,0,0,0,0,0,0,0,0,0,0,0,150 +NA,NA,,2016-17,Haverhill - Dr Paul Nettle,1280050,0,0,0,0,0,0,120,124,119,134,0,0,0,0,0,497 +NA,NA,,2016-17,Haverhill - Golden Hill,1280026,0,4,119,149,122,125,0,0,0,0,0,0,0,0,0,519 +NA,NA,,2016-17,Haverhill - Greenleaf,1280027,0,82,79,87,0,0,0,0,0,0,0,0,0,0,0,248 +NA,NA,,2016-17,Haverhill - Haverhill Alternative School,1280033,0,0,0,0,0,0,0,0,5,9,14,5,7,6,0,46 +NA,NA,,2016-17,Haverhill - Haverhill High,1280505,0,0,0,0,0,0,0,0,0,0,505,451,391,453,28,1828 +NA,NA,,2016-17,Haverhill - John G Whittier,1280085,0,0,0,0,0,0,123,118,139,129,0,0,0,0,0,509 +NA,NA,,2016-17,Haverhill - Moody,1280045,203,0,0,0,0,0,0,0,0,0,0,0,0,0,0,203 +NA,NA,,2016-17,Haverhill - Pentucket Lake Elementary,1280054,0,64,66,89,138,153,0,0,0,0,0,0,0,0,0,510 +NA,NA,,2016-17,Haverhill - TEACH,1280073,0,0,1,5,3,5,4,5,3,5,1,4,0,1,14,51 +NA,NA,,2016-17,Haverhill - Tilton,1280075,0,0,142,140,139,119,0,0,0,0,0,0,0,0,0,540 +NA,NA,,2016-17,Haverhill - Walnut Square,1280080,0,46,58,47,0,0,0,0,0,0,0,0,0,0,0,151 +NA,NA,,2016-17,Hawlemont - Hawlemont Regional,6850005,10,17,15,17,7,17,14,8,0,0,0,0,0,0,0,105 +NA,NA,,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,0,0,0,0,0,0,0,68,77,72,0,0,0,0,0,217 +NA,NA,,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,34,36,35,36,33,34,33,31,34,0,0,0,0,0,306 +NA,NA,,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,20,20,21,21,21,23,31,32,29,0,0,0,0,0,218 +NA,NA,,2016-17,Hingham - East Elementary School,1310005,65,64,79,74,91,81,89,0,0,0,0,0,0,0,0,543 +NA,NA,,2016-17,Hingham - Hingham High,1310505,0,0,0,0,0,0,0,0,0,0,315,284,329,296,1,1225 +NA,NA,,2016-17,Hingham - Hingham Middle School,1310410,0,0,0,0,0,0,0,362,375,360,0,0,0,0,0,1097 +NA,NA,,2016-17,Hingham - Plymouth River,1310019,0,57,76,82,89,73,93,0,0,0,0,0,0,0,0,470 +NA,NA,,2016-17,Hingham - South Elementary,1310020,0,83,82,84,88,95,80,0,0,0,0,0,0,0,0,512 +NA,NA,,2016-17,Hingham - Wm L Foster Elementary,1310010,0,71,87,56,95,73,88,0,0,0,0,0,0,0,0,470 +NA,NA,,2016-17,Holbrook - Holbrook Jr Sr High,1330505,0,0,0,0,0,0,0,0,115,89,71,53,74,62,1,465 +NA,NA,,2016-17,Holbrook - John F Kennedy,1330018,42,103,101,87,94,0,0,0,0,0,0,0,0,0,0,427 +NA,NA,,2016-17,Holbrook - South,1330025,0,0,0,0,0,86,101,91,0,0,0,0,0,0,0,278 +NA,NA,,2016-17,Holland - Holland Elementary,1350005,29,34,23,29,22,32,33,35,0,0,0,0,0,0,0,237 +NA,NA,,2016-17,Holliston - Holliston High,1360505,0,0,0,0,0,0,0,0,0,0,225,186,184,211,3,809 +NA,NA,,2016-17,Holliston - Miller School,1360007,0,0,0,0,226,231,225,0,0,0,0,0,0,0,0,682 +NA,NA,,2016-17,Holliston - Placentino Elementary,1360010,101,208,207,219,0,0,0,0,0,0,0,0,0,0,0,735 +NA,NA,,2016-17,Holliston - Robert H. Adams Middle School,1360305,0,0,0,0,0,0,0,213,226,224,0,0,0,0,0,663 +NA,NA,,2016-17,Holyoke - E N White Elementary,1370045,43,61,61,50,48,46,46,51,50,45,0,0,0,0,0,501 +NA,NA,,2016-17,Holyoke - H.B. Lawrence School,1370070,0,81,77,69,62,0,0,0,0,0,0,0,0,0,0,289 +NA,NA,,2016-17,Holyoke - Holyoke High,1370505,0,0,0,0,0,0,0,0,0,0,433,320,280,250,2,1285 +NA,NA,,2016-17,Holyoke - Joseph Metcalf School,1370003,149,42,38,33,0,0,0,0,0,0,0,0,0,0,0,262 +NA,NA,,2016-17,Holyoke - Kelly Elementary,1370040,0,57,74,61,91,66,58,41,53,43,0,0,0,0,0,544 +NA,NA,,2016-17,Holyoke - Lt Clayre Sullivan Elementary,1370055,0,62,61,52,81,70,62,63,52,56,0,0,0,0,0,559 +NA,NA,,2016-17,Holyoke - Lt Elmer J McMahon Elementary,1370015,20,38,35,52,43,45,48,37,52,44,0,0,0,0,0,414 +NA,NA,,2016-17,Holyoke - Maurice A Donahue Elementary,1370060,23,40,48,54,51,49,47,40,58,49,0,0,0,0,0,459 +NA,NA,,2016-17,Holyoke - Morgan Full Service Community School,1370025,38,39,48,42,45,49,36,40,37,39,0,0,0,0,0,413 +NA,NA,,2016-17,Holyoke - William R. Peck School,1370030,0,0,0,0,0,61,62,80,93,70,0,0,0,0,0,366 +NA,NA,,2016-17,Holyoke - Wm J Dean Vocational Technical High,1370605,0,0,0,0,0,0,0,0,0,0,0,101,79,72,0,252 +NA,NA,,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,0,78,81,88,87,85,78,86,51,68,0,0,0,0,0,702 +NA,NA,,2016-17,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,0,0,0,0,0,103,88,72,84,88,89,0,524 +NA,NA,,2016-17,Hopedale - Memorial,1380010,0,74,72,68,85,78,89,83,0,0,0,0,0,0,0,549 +NA,NA,,2016-17,Hopedale - Park Street School,1380003,64,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64 +NA,NA,,2016-17,Hopkinton - Center,1390005,0,224,226,0,0,0,0,0,0,0,0,0,0,0,0,450 +NA,NA,,2016-17,Hopkinton - Elmwood,1390010,0,0,0,250,238,0,0,0,0,0,0,0,0,0,0,488 +NA,NA,,2016-17,Hopkinton - Hopkins Elementary School,1390015,0,0,0,0,0,271,226,0,0,0,0,0,0,0,0,497 +NA,NA,,2016-17,Hopkinton - Hopkinton High,1390505,0,0,0,0,0,0,0,0,0,0,274,264,270,282,2,1092 +NA,NA,,2016-17,Hopkinton - Hopkinton Middle School,1390305,0,0,0,0,0,0,0,286,275,309,0,0,0,0,0,870 +NA,NA,,2016-17,Hopkinton - Hopkinton Pre-School,1390003,65,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65 +NA,NA,,2016-17,Hudson - C A Farley,1410030,13,94,89,75,109,107,0,0,0,0,0,0,0,0,0,487 +NA,NA,,2016-17,Hudson - David J. Quinn Middle School,1410410,0,0,0,0,0,0,229,204,205,0,0,0,0,0,0,638 +NA,NA,,2016-17,Hudson - Forest Avenue Elementary,1410015,0,60,74,68,63,60,0,0,0,0,0,0,0,0,0,325 +NA,NA,,2016-17,Hudson - Hudson High,1410505,0,0,0,0,0,0,0,0,0,221,197,190,189,146,0,943 +NA,NA,,2016-17,Hudson - Mulready Elementary,1410007,12,45,46,41,48,58,0,0,0,0,0,0,0,0,0,250 +NA,NA,,2016-17,Hull - Hull High,1420505,0,0,0,0,0,0,0,0,0,0,71,79,62,99,0,311 +NA,NA,,2016-17,Hull - Lillian M Jacobs,1420015,59,57,54,62,66,56,61,0,0,0,0,0,0,0,0,415 +NA,NA,,2016-17,Hull - Memorial Middle,1420305,0,0,0,0,0,0,0,63,63,78,0,0,0,0,0,204 +NA,NA,,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,0,0,0,0,0,0,100,104,100,100,92,104,95,97,0,792 +NA,NA,,2016-17,Ipswich - Ipswich High,1440505,0,0,0,0,0,0,0,0,0,0,138,124,117,158,6,543 +NA,NA,,2016-17,Ipswich - Ipswich Middle School,1440305,0,0,0,0,0,0,0,134,164,160,0,0,0,0,0,458 +NA,NA,,2016-17,Ipswich - Paul F Doyon Memorial,1440007,21,53,63,59,64,64,70,0,0,0,0,0,0,0,0,394 +NA,NA,,2016-17,Ipswich - Winthrop,1440015,20,48,61,52,63,67,72,0,0,0,0,0,0,0,0,383 +NA,NA,,2016-17,King Philip - King Philip Middle School,6900510,0,0,0,0,0,0,0,0,400,376,0,0,0,0,0,776 +NA,NA,,2016-17,King Philip - King Philip Regional High,6900505,0,0,0,0,0,0,0,0,0,0,339,318,337,319,7,1320 +NA,NA,,2016-17,Kingston - Kingston Elementary,1450005,0,131,166,139,0,0,0,0,0,0,0,0,0,0,0,436 +NA,NA,,2016-17,Kingston - Kingston Intermediate,1450020,0,0,0,0,142,148,137,153,0,0,0,0,0,0,0,580 +NA,NA,,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,0,75,75,76,0,0,70,78,69,62,0,0,0,0,0,505 +NA,NA,,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,0,122,123,0,0,0,126,124,119,117,130,130,111,94,0,1196 +NA,NA,,2016-17,Lanesborough - Lanesborough Elementary,1480005,15,29,20,21,33,34,32,22,0,0,0,0,0,0,0,206 +NA,NA,,2016-17,Lawrence - Alexander B Bruce,1490015,0,0,0,0,90,75,88,97,79,85,0,0,0,0,0,514 +NA,NA,,2016-17,Lawrence - Arlington Middle School,1490017,0,0,0,0,0,0,127,152,146,146,0,0,0,0,0,571 +NA,NA,,2016-17,Lawrence - Community Day Arlington,1490009,0,99,123,119,123,123,0,0,0,0,0,0,0,0,0,587 +NA,NA,,2016-17,Lawrence - Edward F. Parthum,1490053,0,89,143,128,134,145,0,0,0,0,0,0,0,0,0,639 +NA,NA,,2016-17,Lawrence - Emily G Wetherbee,1490080,0,76,82,67,84,90,80,88,88,96,0,0,0,0,0,751 +NA,NA,,2016-17,Lawrence - Francis M Leahy,1490040,0,74,97,94,94,62,63,0,0,0,0,0,0,0,0,484 +NA,NA,,2016-17,Lawrence - Frost Middle School,1490525,0,0,0,0,0,0,122,115,121,118,0,0,0,0,0,476 +NA,NA,,2016-17,Lawrence - Gerard A. Guilmette,1490022,0,0,128,135,139,118,0,0,0,0,0,0,0,0,0,520 +NA,NA,,2016-17,Lawrence - Guilmette Middle School,1490025,0,0,0,0,0,0,116,123,130,129,0,0,0,0,0,498 +NA,NA,,2016-17,Lawrence - High School Learning Center,1490536,0,0,0,0,0,0,0,0,0,0,6,32,51,87,0,176 +NA,NA,,2016-17,Lawrence - James F Hennessey,1490020,94,100,94,96,0,0,0,0,0,0,0,0,0,0,0,384 +NA,NA,,2016-17,Lawrence - John Breen School,1490003,204,123,0,0,0,0,0,0,0,0,0,0,0,0,0,327 +NA,NA,,2016-17,Lawrence - John K Tarbox,1490075,0,0,76,76,80,78,53,0,0,0,0,0,0,0,0,363 +NA,NA,,2016-17,Lawrence - Lawlor Early Childhood Center,1490002,0,139,0,0,0,0,0,0,0,0,0,0,0,0,0,139 +NA,NA,,2016-17,Lawrence - Lawrence Family Public Academy,1490011,76,96,0,0,0,0,0,0,0,0,0,0,0,0,0,172 +NA,NA,,2016-17,Lawrence - Lawrence High School,1490515,0,0,0,0,0,0,0,0,0,0,990,795,793,702,15,3295 +NA,NA,,2016-17,Lawrence - Oliver Partnership School,1490048,0,0,96,103,94,104,103,0,0,0,0,0,0,0,0,500 +NA,NA,,2016-17,Lawrence - Parthum Middle School,1490027,0,0,0,0,0,0,110,146,145,126,0,0,0,0,0,527 +NA,NA,,2016-17,Lawrence - Phoenix Academy Lawrence,1490540,0,0,0,0,0,0,0,0,0,0,61,32,25,33,0,151 +NA,NA,,2016-17,Lawrence - Robert Frost,1490018,0,87,111,132,128,141,0,0,0,0,0,0,0,0,0,599 +NA,NA,,2016-17,Lawrence - Rollins Early Childhood Center,1490001,117,55,0,0,0,0,0,0,0,0,0,0,0,0,0,172 +NA,NA,,2016-17,Lawrence - School for Exceptional Studies,1490537,0,0,8,10,8,13,11,15,13,19,15,12,17,16,19,176 +NA,NA,,2016-17,Lawrence - South Lawrence East Elementary School,1490004,0,0,135,137,157,141,141,0,0,0,0,0,0,0,0,711 +NA,NA,,2016-17,Lawrence - Spark Academy,1490085,0,0,0,0,0,0,0,140,158,160,0,0,0,0,0,458 +NA,NA,,2016-17,Lawrence - UP Academy Leonard Middle School,1490090,0,0,0,0,0,0,0,82,123,117,0,0,0,0,0,322 +NA,NA,,2016-17,Lawrence - UP Academy Oliver Middle School,1490049,0,0,0,0,0,0,0,125,117,103,0,0,0,0,0,345 +NA,NA,,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,85,84,84,84,84,78,56,55,52,55,0,0,0,0,0,717 +NA,NA,,2016-17,Lee - Lee Elementary,1500025,15,42,53,47,37,38,44,60,0,0,0,0,0,0,0,336 +NA,NA,,2016-17,Lee - Lee Middle/High School,1500505,0,0,0,0,0,0,0,0,47,59,64,62,55,62,0,349 +NA,NA,,2016-17,Leicester - Leicester High,1510505,0,0,0,0,0,0,0,0,0,0,127,105,117,106,0,455 +NA,NA,,2016-17,Leicester - Leicester Memorial Elementary,1510005,0,0,0,0,118,113,128,0,0,0,0,0,0,0,0,359 +NA,NA,,2016-17,Leicester - Leicester Middle,1510015,0,0,0,0,0,0,0,120,161,121,0,0,0,0,0,402 +NA,NA,,2016-17,Leicester - Leicester Primary School,1510010,70,89,102,97,0,0,0,0,0,0,0,0,0,0,0,358 +NA,NA,,2016-17,Lenox - Lenox Memorial High,1520505,0,0,0,0,0,0,0,68,68,69,68,50,68,64,0,455 +NA,NA,,2016-17,Lenox - Morris,1520015,12,43,52,41,52,49,61,0,0,0,0,0,0,0,0,310 +NA,NA,,2016-17,Leominster - Bennett,1530003,105,0,0,0,0,0,0,0,0,0,0,0,0,0,0,105 +NA,NA,,2016-17,Leominster - Center For Technical Education Innovation,1530605,0,0,0,0,0,0,0,0,0,0,280,144,146,125,1,696 +NA,NA,,2016-17,Leominster - Fall Brook,1530007,0,63,125,135,110,128,126,0,0,0,0,0,0,0,0,687 +NA,NA,,2016-17,Leominster - Frances Drake School,1530010,0,88,76,80,115,101,107,0,0,0,0,0,0,0,0,567 +NA,NA,,2016-17,Leominster - Johnny Appleseed,1530025,0,81,91,139,96,114,109,0,0,0,0,0,0,0,0,630 +NA,NA,,2016-17,Leominster - Leominster Center for Excellence,1530515,0,0,0,0,0,0,0,0,0,0,9,15,8,7,0,39 +NA,NA,,2016-17,Leominster - Leominster High School,1530505,0,0,0,0,0,0,0,0,0,0,143,316,344,283,0,1086 +NA,NA,,2016-17,Leominster - Lincoln School,1530005,49,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49 +NA,NA,,2016-17,Leominster - Northwest,1530030,0,43,124,129,146,115,135,0,0,0,0,0,0,0,0,692 +NA,NA,,2016-17,Leominster - Priest Street,1530040,0,130,0,0,0,0,0,0,0,0,0,0,0,0,0,130 +NA,NA,,2016-17,Leominster - Samoset School,1530045,0,0,0,0,0,0,0,163,162,157,0,0,0,0,0,482 +NA,NA,,2016-17,Leominster - Sky View Middle School,1530320,0,0,0,0,0,0,0,285,306,293,0,0,0,0,0,884 +NA,NA,,2016-17,Leverett - Leverett Elementary,1540005,15,15,15,24,15,21,17,14,0,0,0,0,0,0,0,136 +NA,NA,,2016-17,Lexington - Bowman,1550008,0,71,83,95,103,115,100,0,0,0,0,0,0,0,0,567 +NA,NA,,2016-17,Lexington - Bridge,1550006,0,65,95,99,97,107,102,0,0,0,0,0,0,0,0,565 +NA,NA,,2016-17,Lexington - Fiske,1550015,0,50,86,89,90,89,75,0,0,0,0,0,0,0,0,479 +NA,NA,,2016-17,Lexington - Harrington,1550030,0,77,76,65,87,79,81,0,0,0,0,0,0,0,0,465 +NA,NA,,2016-17,Lexington - Jonas Clarke Middle,1550305,0,0,0,0,0,0,0,303,317,271,0,0,0,0,0,891 +NA,NA,,2016-17,Lexington - Joseph Estabrook,1550010,0,72,90,86,106,93,88,0,0,0,0,0,0,0,0,535 +NA,NA,,2016-17,Lexington - Lexington Children's Place,1550001,78,0,0,0,0,0,0,0,0,0,0,0,0,0,0,78 +NA,NA,,2016-17,Lexington - Lexington High,1550505,0,0,0,0,0,0,0,0,0,0,552,555,557,521,0,2185 +NA,NA,,2016-17,Lexington - Maria Hastings,1550035,0,79,63,69,73,94,77,0,0,0,0,0,0,0,0,455 +NA,NA,,2016-17,Lexington - Wm Diamond Middle,1550310,0,0,0,0,0,0,0,305,281,266,0,0,0,0,0,852 +NA,NA,,2016-17,Lincoln - Hanscom Middle,1570305,0,0,0,0,0,62,51,53,49,34,0,0,0,0,0,249 +NA,NA,,2016-17,Lincoln - Hanscom Primary,1570006,52,70,71,53,76,0,0,0,0,0,0,0,0,0,0,322 +NA,NA,,2016-17,Lincoln - Lincoln School,1570025,57,64,50,66,69,59,69,61,62,72,0,0,0,0,0,629 +NA,NA,,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,0,0,0,0,0,0,0,0,0,0,369,378,378,440,3,1568 +NA,NA,,2016-17,Littleton - Littleton High School,1580505,0,0,0,0,0,0,0,0,0,0,124,114,106,123,0,467 +NA,NA,,2016-17,Littleton - Littleton Middle School,1580305,0,0,0,0,0,0,0,126,103,122,0,0,0,0,0,351 +NA,NA,,2016-17,Littleton - Russell St Elementary,1580015,0,0,0,0,133,120,134,0,0,0,0,0,0,0,0,387 +NA,NA,,2016-17,Littleton - Shaker Lane Elementary,1580005,65,123,122,131,0,0,0,0,0,0,0,0,0,0,0,441 +NA,NA,,2016-17,Longmeadow - Blueberry Hill,1590005,0,63,66,62,95,67,73,0,0,0,0,0,0,0,0,426 +NA,NA,,2016-17,Longmeadow - Center,1590010,0,55,62,58,79,75,75,0,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Longmeadow - Glenbrook Middle,1590017,0,0,0,0,0,0,0,113,112,109,0,0,0,0,0,334 +NA,NA,,2016-17,Longmeadow - Longmeadow High,1590505,0,0,0,0,0,0,0,0,0,0,254,240,226,226,1,947 +NA,NA,,2016-17,Longmeadow - Williams Middle,1590305,0,0,0,0,0,0,0,101,127,116,0,0,0,0,0,344 +NA,NA,,2016-17,Longmeadow - Wolf Swamp Road,1590025,41,49,49,56,62,66,63,0,0,0,0,0,0,0,0,386 +NA,NA,,2016-17,Lowell - Abraham Lincoln,1600020,49,89,84,94,96,90,0,0,0,0,0,0,0,0,0,502 +NA,NA,,2016-17,Lowell - B.F. Butler Middle School,1600310,0,0,0,0,0,0,135,132,141,137,0,0,0,0,0,545 +NA,NA,,2016-17,Lowell - Bartlett Community Partnership,1600090,50,49,44,54,48,54,59,54,59,59,0,0,0,0,0,530 +NA,NA,,2016-17,Lowell - Charles W Morey,1600030,55,93,91,100,95,94,0,0,0,0,0,0,0,0,0,528 +NA,NA,,2016-17,Lowell - Charlotte M Murkland Elementary,1600080,49,95,83,97,87,93,0,0,0,0,0,0,0,0,0,504 +NA,NA,,2016-17,Lowell - Dr An Wang School,1600345,0,0,0,0,0,0,206,148,165,172,0,0,0,0,0,691 +NA,NA,,2016-17,Lowell - Dr Gertrude Bailey,1600002,28,93,93,98,97,96,0,0,0,0,0,0,0,0,0,505 +NA,NA,,2016-17,Lowell - Greenhalge,1600015,60,89,87,92,90,83,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2016-17,Lowell - Henry J Robinson Middle,1600330,0,0,0,0,0,0,154,139,169,156,0,0,0,0,0,618 +NA,NA,,2016-17,Lowell - James S Daley Middle School,1600315,0,0,0,0,0,0,176,174,169,177,0,0,0,0,0,696 +NA,NA,,2016-17,Lowell - James Sullivan Middle School,1600340,0,0,0,0,0,0,175,153,172,170,0,0,0,0,0,670 +NA,NA,,2016-17,Lowell - John J Shaughnessy,1600050,32,85,91,90,93,93,0,0,0,0,0,0,0,0,0,484 +NA,NA,,2016-17,Lowell - Joseph McAvinnue,1600010,30,96,82,100,94,94,0,0,0,0,0,0,0,0,0,496 +NA,NA,,2016-17,Lowell - Kathryn P. Stoklosa Middle School,1600360,0,0,0,0,0,0,166,148,181,178,0,0,0,0,0,673 +NA,NA,,2016-17,Lowell - Laura Lee Therapeutic Day School,1600085,0,0,0,1,1,4,2,4,6,0,0,0,0,0,0,18 +NA,NA,,2016-17,Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,0,0,0,2,8,9,5,9,0,33 +NA,NA,,2016-17,Lowell - Lowell High,1600505,0,0,0,0,0,0,0,0,0,0,839,763,784,721,38,3145 +NA,NA,,2016-17,Lowell - Moody Elementary,1600027,27,47,39,45,48,43,0,0,0,0,0,0,0,0,0,249 +NA,NA,,2016-17,Lowell - Pawtucketville Memorial,1600036,31,93,95,98,96,92,0,0,0,0,0,0,0,0,0,505 +NA,NA,,2016-17,Lowell - Peter W Reilly,1600040,0,96,111,103,123,116,0,0,0,0,0,0,0,0,0,549 +NA,NA,,2016-17,Lowell - Pyne Arts,1600018,32,49,49,49,53,48,60,55,50,53,0,0,0,0,0,498 +NA,NA,,2016-17,Lowell - Rogers STEM Academy,1600005,57,91,102,106,102,94,55,0,0,0,0,0,0,0,0,607 +NA,NA,,2016-17,Lowell - S Christa McAuliffe Elementary,1600075,39,92,83,91,89,98,0,0,0,0,0,0,0,0,0,492 +NA,NA,,2016-17,Lowell - The Career Academy,1600515,0,0,0,0,0,0,0,0,0,0,20,38,18,43,0,119 +NA,NA,,2016-17,Lowell - Washington,1600055,27,40,43,48,51,49,0,0,0,0,0,0,0,0,0,258 +NA,NA,,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,40,97,88,95,97,86,89,84,70,71,0,0,0,0,0,817 +NA,NA,,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,0,0,0,0,0,0,0,26,30,16,22,0,94 +NA,NA,,2016-17,Ludlow - Chapin Street Elementary School,1610020,0,0,0,156,190,0,0,0,0,0,0,0,0,0,0,346 +NA,NA,,2016-17,Ludlow - East Street Elementary School,1610010,74,147,149,0,0,0,0,0,0,0,0,0,0,0,0,370 +NA,NA,,2016-17,Ludlow - Ludlow Senior High,1610505,0,0,0,0,0,0,0,0,0,0,237,236,209,209,4,895 +NA,NA,,2016-17,Ludlow - Paul R Baird Middle,1610305,0,0,0,0,0,0,0,207,242,235,0,0,0,0,0,684 +NA,NA,,2016-17,Ludlow - Veterans Park Elementary,1610023,0,0,0,0,0,186,180,0,0,0,0,0,0,0,0,366 +NA,NA,,2016-17,Lunenburg - Lunenburg High,1620505,0,0,0,0,0,0,0,0,0,0,112,114,106,101,6,439 +NA,NA,,2016-17,Lunenburg - Lunenburg Middle School,1620305,0,0,0,0,0,0,0,120,145,123,0,0,0,0,0,388 +NA,NA,,2016-17,Lunenburg - Lunenburg Primary School,1620010,41,118,111,116,0,0,0,0,0,0,0,0,0,0,0,386 +NA,NA,,2016-17,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,0,134,125,141,0,0,0,0,0,0,0,0,400 +NA,NA,,2016-17,Lynn - A Drewicz Elementary,1630016,0,61,73,90,117,80,63,0,0,0,0,0,0,0,0,484 +NA,NA,,2016-17,Lynn - Aborn,1630011,0,31,41,45,56,45,41,0,0,0,0,0,0,0,0,259 +NA,NA,,2016-17,Lynn - Breed Middle School,1630405,0,0,0,0,0,0,0,452,447,397,0,0,0,0,0,1296 +NA,NA,,2016-17,Lynn - Brickett Elementary,1630020,0,0,42,67,64,56,53,0,0,0,0,0,0,0,0,282 +NA,NA,,2016-17,Lynn - Capt William G Shoemaker,1630090,13,54,46,58,52,58,31,0,0,0,0,0,0,0,0,312 +NA,NA,,2016-17,Lynn - Classical High,1630505,0,0,0,0,0,0,0,0,0,0,401,441,382,338,7,1569 +NA,NA,,2016-17,Lynn - Cobbet Elementary,1630035,0,111,106,91,105,110,100,0,0,0,0,0,0,0,0,623 +NA,NA,,2016-17,Lynn - E J Harrington,1630045,85,87,96,115,101,93,90,0,0,0,0,0,0,0,0,667 +NA,NA,,2016-17,Lynn - Early Childhood Center,1630004,66,224,1,2,1,2,2,0,0,0,0,0,0,0,0,298 +NA,NA,,2016-17,Lynn - Edward A Sisson,1630095,0,65,79,69,74,77,73,0,0,0,0,0,0,0,0,437 +NA,NA,,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,0,0,0,0,0,11,17,195,29,30,26,0,308 +NA,NA,,2016-17,Lynn - Hood,1630055,0,59,79,96,71,90,80,0,0,0,0,0,0,0,0,475 +NA,NA,,2016-17,Lynn - Ingalls,1630060,0,109,109,111,124,117,121,0,0,0,0,0,0,0,0,691 +NA,NA,,2016-17,Lynn - Julia F Callahan,1630030,51,54,69,62,74,83,81,0,0,0,0,0,0,0,0,474 +NA,NA,,2016-17,Lynn - Lincoln-Thomson,1630070,0,38,30,49,46,51,34,0,0,0,0,0,0,0,0,248 +NA,NA,,2016-17,Lynn - Lynn English High,1630510,0,0,0,0,0,0,0,0,0,0,440,385,433,338,2,1598 +NA,NA,,2016-17,Lynn - Lynn Vocational Technical Institute,1630605,43,0,0,0,0,0,0,3,0,0,264,229,214,187,29,969 +NA,NA,,2016-17,Lynn - Lynn Woods,1630075,0,20,22,34,23,29,35,0,0,0,0,0,0,0,0,163 +NA,NA,,2016-17,Lynn - Pickering Middle,1630420,0,0,0,0,0,0,0,209,202,207,0,0,0,0,0,618 +NA,NA,,2016-17,Lynn - Robert L Ford,1630050,0,0,118,83,100,115,92,0,0,0,0,0,0,0,0,508 +NA,NA,,2016-17,Lynn - Sewell-Anderson,1630085,0,39,47,57,51,54,38,0,0,0,0,0,0,0,0,286 +NA,NA,,2016-17,Lynn - Thurgood Marshall Mid,1630305,0,0,0,0,0,0,0,387,423,353,0,0,0,0,0,1163 +NA,NA,,2016-17,Lynn - Tracy,1630100,0,0,86,92,85,94,67,0,0,0,0,0,0,0,0,424 +NA,NA,,2016-17,Lynn - Washington Elementary School,1630005,0,76,90,81,91,82,48,0,0,0,0,0,0,0,0,468 +NA,NA,,2016-17,Lynn - William R Fallon,1630080,0,1,4,9,11,4,10,9,0,0,0,0,0,0,0,48 +NA,NA,,2016-17,Lynn - Wm P Connery,1630040,29,94,100,96,116,106,90,0,0,0,0,0,0,0,0,631 +NA,NA,,2016-17,Lynnfield - Huckleberry Hill,1640010,0,82,92,81,78,80,0,0,0,0,0,0,0,0,0,413 +NA,NA,,2016-17,Lynnfield - Lynnfield High,1640505,0,0,0,0,0,0,0,0,0,0,146,168,160,154,0,628 +NA,NA,,2016-17,Lynnfield - Lynnfield Middle School,1640405,0,0,0,0,0,0,174,157,177,190,0,0,0,0,0,698 +NA,NA,,2016-17,Lynnfield - Lynnfield Preschool,1640005,47,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47 +NA,NA,,2016-17,Lynnfield - Summer Street,1640020,0,68,86,97,81,89,0,0,0,0,0,0,0,0,0,421 +NA,NA,,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,0,0,0,0,0,0,0,0,0,49,48,0,97 +NA,NA,,2016-17,Malden - Beebe,1650003,0,114,102,108,91,116,95,88,85,84,0,0,0,0,0,883 +NA,NA,,2016-17,Malden - Ferryway,1650013,0,98,96,107,102,126,92,94,94,103,0,0,0,0,0,912 +NA,NA,,2016-17,Malden - Forestdale,1650027,0,59,64,76,68,81,63,64,51,56,0,0,0,0,0,582 +NA,NA,,2016-17,Malden - Linden,1650047,0,89,95,107,106,116,105,103,87,89,0,0,0,0,0,897 +NA,NA,,2016-17,Malden - Malden Early Learning Center,1650049,299,0,0,0,0,0,0,0,0,0,0,0,0,0,0,299 +NA,NA,,2016-17,Malden - Malden High,1650505,0,0,0,0,0,0,0,0,0,0,473,447,484,429,0,1833 +NA,NA,,2016-17,Malden - Salemwood,1650057,0,126,158,141,136,134,132,130,146,114,0,0,0,0,0,1217 +NA,NA,,2016-17,Manchester Essex Regional - Essex Elementary,6980020,0,29,28,37,46,43,42,0,0,0,0,0,0,0,0,225 +NA,NA,,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,0,0,0,0,0,0,0,0,115,103,98,108,0,424 +NA,NA,,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,0,0,0,0,0,0,123,132,131,0,0,0,0,0,386 +NA,NA,,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,6980010,12,41,39,51,66,79,73,0,0,0,0,0,0,0,0,361 +NA,NA,,2016-17,Mansfield - Everett W Robinson,1670007,0,232,245,233,0,0,0,0,0,0,0,0,0,0,0,710 +NA,NA,,2016-17,Mansfield - Harold L Qualters Middle,1670035,0,0,0,0,0,0,0,318,318,376,0,0,0,0,0,1012 +NA,NA,,2016-17,Mansfield - Jordan/Jackson Elementary,1670014,0,0,0,0,270,268,297,0,0,0,0,0,0,0,0,835 +NA,NA,,2016-17,Mansfield - Mansfield High,1670505,0,0,0,0,0,0,0,0,0,0,319,334,311,343,8,1315 +NA,NA,,2016-17,Mansfield - Roland Green School,1670003,86,0,0,0,0,0,0,0,0,0,0,0,0,0,0,86 +NA,NA,,2016-17,Marblehead - Elbridge Gerry,1680015,0,74,73,0,0,0,0,0,0,0,0,0,0,0,0,147 +NA,NA,,2016-17,Marblehead - Glover,1680020,36,93,65,81,66,0,0,0,0,0,0,0,0,0,0,341 +NA,NA,,2016-17,Marblehead - L H Coffin,1680010,0,0,0,79,88,0,0,0,0,0,0,0,0,0,0,167 +NA,NA,,2016-17,Marblehead - Malcolm L Bell,1680005,0,64,58,78,67,0,0,0,0,0,0,0,0,0,0,267 +NA,NA,,2016-17,Marblehead - Marblehead High,1680505,0,0,0,0,0,0,0,0,0,0,255,267,245,278,6,1051 +NA,NA,,2016-17,Marblehead - Marblehead Veterans Middle School,1680300,0,0,0,0,0,0,0,0,246,257,0,0,0,0,0,503 +NA,NA,,2016-17,Marblehead - Village School,1680016,0,0,0,0,0,229,212,227,0,0,0,0,0,0,0,668 +NA,NA,,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,0,0,49,47,50,44,40,0,0,0,0,0,230 +NA,NA,,2016-17,Marion - Sippican,1690005,27,51,65,53,63,68,63,68,0,0,0,0,0,0,0,458 +NA,NA,,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,0,0,0,0,0,364,309,294,318,0,0,0,0,0,1285 +NA,NA,,2016-17,Marlborough - Charles Jaworek School,1700030,0,177,183,164,160,152,0,0,0,0,0,0,0,0,0,836 +NA,NA,,2016-17,Marlborough - Early Childhood Center,1700006,164,0,0,0,0,0,0,0,0,0,0,0,0,0,0,164 +NA,NA,,2016-17,Marlborough - Francis J Kane,1700008,0,114,106,146,123,132,0,0,0,0,0,0,0,0,0,621 +NA,NA,,2016-17,Marlborough - Marlborough High,1700505,0,0,0,0,0,0,0,0,0,0,248,292,290,252,9,1091 +NA,NA,,2016-17,Marlborough - Richer,1700025,0,87,106,105,117,113,0,0,0,0,0,0,0,0,0,528 +NA,NA,,2016-17,Marshfield - Daniel Webster,1710015,75,50,61,47,45,64,37,0,0,0,0,0,0,0,0,379 +NA,NA,,2016-17,Marshfield - Eames Way School,1710005,0,47,41,42,37,38,49,0,0,0,0,0,0,0,0,254 +NA,NA,,2016-17,Marshfield - Furnace Brook Middle,1710310,0,0,0,0,0,0,0,345,347,324,0,0,0,0,0,1016 +NA,NA,,2016-17,Marshfield - Gov Edward Winslow,1710020,0,66,72,53,69,92,71,0,0,0,0,0,0,0,0,423 +NA,NA,,2016-17,Marshfield - Marshfield High,1710505,0,0,0,0,0,0,0,0,0,0,347,358,354,311,0,1370 +NA,NA,,2016-17,Marshfield - Martinson Elementary,1710025,54,60,51,68,67,80,62,0,0,0,0,0,0,0,0,442 +NA,NA,,2016-17,Marshfield - South River,1710010,0,55,48,66,61,74,57,0,0,0,0,0,0,0,0,361 +NA,NA,,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,7000505,0,0,0,0,0,0,0,0,0,0,167,170,151,169,4,661 +NA,NA,,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,0,14,15,16,15,15,18,14,14,15,3,7,15,12,0,173 +NA,NA,,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,0,62,63,59,61,61,60,0,0,0,0,0,0,0,0,366 +NA,NA,,2016-17,Masconomet - Masconomet Regional High School,7050505,0,0,0,0,0,0,0,0,0,0,285,278,289,335,1,1188 +NA,NA,,2016-17,Masconomet - Masconomet Regional Middle School,7050405,0,0,0,0,0,0,0,0,316,333,0,0,0,0,0,649 +NA,NA,,2016-17,Mashpee - Kenneth Coombs School,1720005,30,73,116,95,0,0,0,0,0,0,0,0,0,0,0,314 +NA,NA,,2016-17,Mashpee - Mashpee High,1720505,0,0,0,0,0,0,0,0,0,0,113,105,95,102,0,415 +NA,NA,,2016-17,Mashpee - Mashpee Middle School,1720020,0,0,0,0,0,0,0,0,129,148,0,0,0,0,0,277 +NA,NA,,2016-17,Mashpee - Quashnet School,1720035,0,0,0,0,121,134,102,137,0,0,0,0,0,0,0,494 +NA,NA,,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,0,23,32,40,59,46,39,49,72,70,81,75,51,30,0,667 +NA,NA,,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,54,72,96,95,73,73,93,96,92,94,93,72,81,61,0,1145 +NA,NA,,2016-17,Mattapoisett - Center,1730005,21,46,55,52,61,0,0,0,0,0,0,0,0,0,0,235 +NA,NA,,2016-17,Mattapoisett - Old Hammondtown,1730010,0,0,0,0,0,67,73,72,0,0,0,0,0,0,0,212 +NA,NA,,2016-17,Maynard - Fowler School,1740305,0,0,0,0,0,118,112,91,114,0,0,0,0,0,0,435 +NA,NA,,2016-17,Maynard - Green Meadow,1740010,50,122,109,103,118,0,0,0,0,0,0,0,0,0,0,502 +NA,NA,,2016-17,Maynard - Maynard High,1740505,0,0,0,0,0,0,0,0,0,111,94,105,101,91,0,502 +NA,NA,,2016-17,Medfield - Dale Street,1750005,0,0,0,0,0,178,191,0,0,0,0,0,0,0,0,369 +NA,NA,,2016-17,Medfield - Medfield Senior High,1750505,0,0,0,0,0,0,0,0,0,0,207,196,220,218,1,842 +NA,NA,,2016-17,Medfield - Memorial School,1750003,60,176,183,0,0,0,0,0,0,0,0,0,0,0,0,419 +NA,NA,,2016-17,Medfield - Ralph Wheelock School,1750007,0,0,0,174,174,0,0,0,0,0,0,0,0,0,0,348 +NA,NA,,2016-17,Medfield - Thomas Blake Middle,1750305,0,0,0,0,0,0,0,215,207,204,0,0,0,0,0,626 +NA,NA,,2016-17,Medford - Brooks School,1760130,29,78,83,72,79,67,89,0,0,0,0,0,0,0,0,497 +NA,NA,,2016-17,Medford - Christopher Columbus,1760140,11,83,64,62,70,57,79,0,0,0,0,0,0,0,0,426 +NA,NA,,2016-17,Medford - Curtis-Tufts,1760510,0,0,0,0,0,0,0,0,0,0,0,4,7,11,0,22 +NA,NA,,2016-17,Medford - John J McGlynn Elementary School,1760068,22,74,90,93,90,93,82,0,0,0,0,0,0,0,0,544 +NA,NA,,2016-17,Medford - John J. McGlynn Middle School,1760320,0,0,0,0,0,0,0,153,161,162,0,0,0,0,0,476 +NA,NA,,2016-17,Medford - Madeleine Dugger Andrews,1760315,0,0,0,0,0,0,0,181,167,158,0,0,0,0,0,506 +NA,NA,,2016-17,Medford - Medford High,1760505,48,0,0,0,0,0,0,0,0,0,283,269,309,261,4,1174 +NA,NA,,2016-17,Medford - Medford Vocational Technical High,1760605,0,0,0,0,0,0,0,0,0,0,51,94,61,50,1,257 +NA,NA,,2016-17,Medford - Milton Fuller Roberts,1760150,12,84,82,111,119,88,89,0,0,0,0,0,0,0,0,585 +NA,NA,,2016-17,Medway - Burke/Memorial Elementary School,1770015,0,0,0,156,174,171,0,0,0,0,0,0,0,0,0,501 +NA,NA,,2016-17,Medway - John D Mc Govern Elementary,1770013,36,144,163,0,0,0,0,0,0,0,0,0,0,0,0,343 +NA,NA,,2016-17,Medway - Medway High,1770505,0,0,0,0,0,0,0,0,0,0,194,178,200,190,0,762 +NA,NA,,2016-17,Medway - Medway Middle,1770305,0,0,0,0,0,0,165,176,195,174,0,0,0,0,0,710 +NA,NA,,2016-17,Melrose - Early Childhood Center,1780003,290,0,0,0,0,0,0,0,0,0,0,0,0,0,0,290 +NA,NA,,2016-17,Melrose - Herbert Clark Hoover,1780017,0,46,42,41,41,44,37,0,0,0,0,0,0,0,0,251 +NA,NA,,2016-17,Melrose - Horace Mann,1780025,0,47,45,46,41,47,39,0,0,0,0,0,0,0,0,265 +NA,NA,,2016-17,Melrose - Lincoln,1780020,0,77,89,69,66,62,67,0,0,0,0,0,0,0,0,430 +NA,NA,,2016-17,Melrose - Melrose High,1780505,0,0,0,0,0,0,0,0,0,0,255,255,234,242,2,988 +NA,NA,,2016-17,Melrose - Melrose Middle,1780305,0,0,0,0,0,0,0,245,261,266,0,0,0,0,0,772 +NA,NA,,2016-17,Melrose - Roosevelt,1780035,0,79,86,70,66,65,63,0,0,0,0,0,0,0,0,429 +NA,NA,,2016-17,Melrose - Winthrop,1780050,0,63,66,63,62,58,61,0,0,0,0,0,0,0,0,373 +NA,NA,,2016-17,Mendon-Upton - Henry P Clough,7100179,24,65,87,73,85,94,0,0,0,0,0,0,0,0,0,428 +NA,NA,,2016-17,Mendon-Upton - Memorial School,7100001,29,71,62,79,106,90,0,0,0,0,0,0,0,0,0,437 +NA,NA,,2016-17,Mendon-Upton - Miscoe Hill School,7100015,0,0,0,0,0,0,186,196,201,197,0,0,0,0,0,780 +NA,NA,,2016-17,Mendon-Upton - Nipmuc Regional High,7100510,0,0,0,0,0,0,0,0,0,0,151,161,149,122,10,593 +NA,NA,,2016-17,Methuen - Comprehensive Grammar School,1810050,24,110,105,112,117,127,107,123,147,143,0,0,0,0,0,1115 +NA,NA,,2016-17,Methuen - Donald P Timony Grammar,1810060,43,128,136,153,146,152,147,142,151,151,0,0,0,0,0,1349 +NA,NA,,2016-17,Methuen - Marsh Grammar School,1810030,46,134,126,125,136,129,136,141,128,141,0,0,0,0,0,1242 +NA,NA,,2016-17,Methuen - Methuen High,1810505,0,0,0,0,0,0,0,0,0,0,481,499,477,411,23,1891 +NA,NA,,2016-17,Methuen - Tenney Grammar School,1810055,24,123,146,124,144,150,145,154,154,135,0,0,0,0,0,1299 +NA,NA,,2016-17,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,103,100,121,130,124,0,0,0,0,0,0,0,0,578 +NA,NA,,2016-17,Middleborough - John T. Nichols Middle,1820305,0,0,0,0,0,0,0,245,257,272,0,0,0,0,0,774 +NA,NA,,2016-17,Middleborough - Mary K. Goode Elementary School,1820010,0,0,101,110,125,125,125,0,0,0,0,0,0,0,0,586 +NA,NA,,2016-17,Middleborough - Memorial Early Childhood Center,1820011,44,86,0,0,0,0,0,0,0,0,0,0,0,0,0,130 +NA,NA,,2016-17,Middleborough - Middleborough High,1820505,0,0,0,0,0,0,0,0,0,0,185,165,174,170,0,694 +NA,NA,,2016-17,Middleton - Fuller Meadow,1840003,0,78,65,78,0,0,0,0,0,0,0,0,0,0,0,221 +NA,NA,,2016-17,Middleton - Howe-Manning,1840005,75,0,0,0,103,84,107,109,0,0,0,0,0,0,0,478 +NA,NA,,2016-17,Milford - Brookside,1850065,0,157,170,172,0,0,0,0,0,0,0,0,0,0,0,499 +NA,NA,,2016-17,Milford - Memorial,1850010,0,161,156,149,0,0,0,0,0,0,0,0,0,0,0,466 +NA,NA,,2016-17,Milford - Milford High,1850505,0,0,0,0,0,0,0,0,0,0,277,281,297,269,11,1135 +NA,NA,,2016-17,Milford - Shining Star Early Childhood Center,1850075,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136 +NA,NA,,2016-17,Milford - Stacy Middle,1850305,0,0,0,0,0,0,0,356,299,313,0,0,0,0,0,968 +NA,NA,,2016-17,Milford - Woodland,1850090,0,0,0,0,319,331,333,0,0,0,0,0,0,0,0,983 +NA,NA,,2016-17,Millbury - Elmwood Street,1860017,53,107,121,143,139,0,0,0,0,0,0,0,0,0,0,563 +NA,NA,,2016-17,Millbury - Millbury Junior/Senior High,1860505,0,0,0,0,0,0,0,0,140,139,120,106,114,104,4,727 +NA,NA,,2016-17,Millbury - Raymond E. Shaw Elementary,1860025,0,0,0,0,0,154,146,137,0,0,0,0,0,0,0,437 +NA,NA,,2016-17,Millis - Clyde F Brown,1870005,73,85,77,105,74,90,0,0,0,0,0,0,0,0,0,504 +NA,NA,,2016-17,Millis - Millis High School,1870505,0,0,0,0,0,0,0,0,0,0,100,93,109,88,0,390 +NA,NA,,2016-17,Millis - Millis Middle,1870020,0,0,0,0,0,0,105,107,105,112,0,0,0,0,0,429 +NA,NA,,2016-17,Milton - Charles S Pierce Middle,1890410,0,0,0,0,0,0,0,327,289,299,0,0,0,0,0,915 +NA,NA,,2016-17,Milton - Collicot,1890005,83,118,99,120,99,94,92,0,0,0,0,0,0,0,0,705 +NA,NA,,2016-17,Milton - Cunningham School,1890007,0,91,77,88,75,100,74,0,0,0,0,0,0,0,0,505 +NA,NA,,2016-17,Milton - Glover,1890010,0,87,95,93,114,94,106,0,0,0,0,0,0,0,0,589 +NA,NA,,2016-17,Milton - Milton High,1890505,12,0,0,0,0,0,0,0,0,0,240,242,262,244,1,1001 +NA,NA,,2016-17,Milton - Tucker,1890020,40,69,66,68,63,65,64,0,0,0,0,0,0,0,0,435 +NA,NA,,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0,0,0,0,0,0,0,0,0,129,136,143,174,0,582 +NA,NA,,2016-17,Mohawk Trail - Buckland-Shelburne Regional,7170005,45,37,32,38,33,30,19,25,0,0,0,0,0,0,0,259 +NA,NA,,2016-17,Mohawk Trail - Colrain Central,7170010,12,13,19,19,9,13,17,10,0,0,0,0,0,0,0,112 +NA,NA,,2016-17,Mohawk Trail - Heath Elementary,7170015,7,5,6,2,2,2,4,1,0,0,0,0,0,0,0,29 +NA,NA,,2016-17,Mohawk Trail - Mohawk Trail Regional High,7170505,0,0,0,0,0,0,0,0,76,92,58,67,67,58,4,422 +NA,NA,,2016-17,Mohawk Trail - Sanderson Academy,7170020,41,19,12,18,14,17,11,11,0,0,0,0,0,0,0,143 +NA,NA,,2016-17,Monomoy Regional School District - Chatham Elementary School,7120001,20,44,42,57,48,62,0,0,0,0,0,0,0,0,0,273 +NA,NA,,2016-17,Monomoy Regional School District - Harwich Elementary School,7120002,48,98,95,103,97,125,0,0,0,0,0,0,0,0,0,566 +NA,NA,,2016-17,Monomoy Regional School District - Monomoy Regional High School,7120515,0,0,0,0,0,0,0,0,0,130,119,110,111,120,9,599 +NA,NA,,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,0,0,0,149,142,135,0,0,0,0,0,0,426 +NA,NA,,2016-17,Monson - Granite Valley Middle,1910310,0,0,0,0,0,0,67,56,98,92,0,0,0,0,0,313 +NA,NA,,2016-17,Monson - Monson High School,1910505,0,0,0,0,0,0,0,0,0,0,63,73,68,83,0,287 +NA,NA,,2016-17,Monson - Quarry Hill Community School,1910025,41,72,76,63,65,62,0,0,0,0,0,0,0,0,0,379 +NA,NA,,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0,0,0,0,0,0,0,0,0,0,368,357,342,362,0,1429 +NA,NA,,2016-17,Mount Greylock - Mt Greylock Regional High,7150505,0,0,0,0,0,0,0,0,90,103,89,100,84,93,3,562 +NA,NA,,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0,124,120,120,129,135,143,126,105,97,106,95,90,96,0,1486 +NA,NA,,2016-17,Nahant - Johnson,1960010,19,17,23,18,12,22,17,14,0,0,0,0,0,0,0,142 +NA,NA,,2016-17,Nantucket - Cyrus Peirce,1970010,0,0,0,0,0,0,0,120,103,105,0,0,0,0,0,328 +NA,NA,,2016-17,Nantucket - Nantucket Elementary,1970005,35,84,117,121,134,112,114,0,0,0,0,0,0,0,0,717 +NA,NA,,2016-17,Nantucket - Nantucket High,1970505,0,0,0,0,0,0,0,0,0,0,144,144,137,111,2,538 +NA,NA,,2016-17,Narragansett - Baldwinville Elementary,7200005,0,0,0,100,102,75,0,0,0,0,0,0,0,0,0,277 +NA,NA,,2016-17,Narragansett - Narragansett Middle,7200305,0,0,0,0,0,0,105,99,111,106,0,0,0,0,0,421 +NA,NA,,2016-17,Narragansett - Narragansett Regional High,7200505,0,0,0,0,0,0,0,0,0,0,92,95,106,78,1,372 +NA,NA,,2016-17,Narragansett - Phillipston Memorial,7200003,66,22,16,17,19,23,0,0,0,0,0,0,0,0,0,163 +NA,NA,,2016-17,Narragansett - Templeton Center,7200020,0,77,81,0,0,0,0,0,0,0,0,0,0,0,0,158 +NA,NA,,2016-17,Nashoba - Center School,7250020,39,81,81,106,96,99,107,0,0,0,0,0,0,0,0,609 +NA,NA,,2016-17,Nashoba - Florence Sawyer School,7250025,56,67,82,66,75,89,62,82,97,98,0,0,0,0,0,774 +NA,NA,,2016-17,Nashoba - Hale,7250310,0,0,0,0,0,0,0,86,114,87,0,0,0,0,0,287 +NA,NA,,2016-17,Nashoba - Luther Burbank Middle School,7250305,0,0,0,0,0,0,0,78,75,94,0,0,0,0,0,247 +NA,NA,,2016-17,Nashoba - Mary Rowlandson Elementary,7250010,43,62,66,81,67,73,93,0,0,0,0,0,0,0,0,485 +NA,NA,,2016-17,Nashoba - Nashoba Regional,7250505,0,0,0,0,0,0,0,0,0,0,224,253,274,247,13,1011 +NA,NA,,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,0,0,0,0,0,0,0,0,0,0,177,188,174,193,0,732 +NA,NA,,2016-17,Natick - Bennett-Hemenway,1980005,0,115,119,124,143,123,0,0,0,0,0,0,0,0,0,624 +NA,NA,,2016-17,Natick - Brown,1980010,0,121,106,96,109,83,0,0,0,0,0,0,0,0,0,515 +NA,NA,,2016-17,Natick - J F Kennedy Middle School,1980305,0,0,0,0,0,0,162,164,155,168,0,0,0,0,0,649 +NA,NA,,2016-17,Natick - Johnson,1980031,0,45,45,38,48,46,0,0,0,0,0,0,0,0,0,222 +NA,NA,,2016-17,Natick - Lilja Elementary,1980035,0,74,86,86,88,83,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2016-17,Natick - Memorial,1980043,0,93,77,98,77,89,0,0,0,0,0,0,0,0,0,434 +NA,NA,,2016-17,Natick - Natick High,1980505,125,0,0,0,0,0,0,0,0,0,423,364,383,369,0,1664 +NA,NA,,2016-17,Natick - Wilson Middle,1980310,0,0,0,0,0,0,252,236,225,234,0,0,0,0,0,947 +NA,NA,,2016-17,Nauset - Nauset Regional High,6600505,0,0,0,0,0,0,0,0,0,0,219,237,217,251,5,929 +NA,NA,,2016-17,Nauset - Nauset Regional Middle,6600305,0,0,0,0,0,0,0,159,183,193,0,0,0,0,0,535 +NA,NA,,2016-17,Needham - Broadmeadow,1990005,0,71,89,84,110,107,92,0,0,0,0,0,0,0,0,553 +NA,NA,,2016-17,Needham - High Rock School,1990410,0,0,0,0,0,0,0,421,0,0,0,0,0,0,0,421 +NA,NA,,2016-17,Needham - Hillside Elementary,1990035,0,76,82,71,87,79,77,0,0,0,0,0,0,0,0,472 +NA,NA,,2016-17,Needham - John Eliot,1990020,0,57,64,57,73,74,67,0,0,0,0,0,0,0,0,392 +NA,NA,,2016-17,Needham - Needham High,1990505,0,0,0,0,0,0,0,0,0,0,416,446,396,401,0,1659 +NA,NA,,2016-17,Needham - Newman Elementary,1990050,80,88,107,103,123,106,113,0,0,0,0,0,0,0,0,720 +NA,NA,,2016-17,Needham - Pollard Middle,1990405,0,0,0,0,0,0,0,0,445,431,0,0,0,0,0,876 +NA,NA,,2016-17,Needham - William Mitchell,1990040,0,77,91,82,80,89,76,0,0,0,0,0,0,0,0,495 +NA,NA,,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,41,40,40,40,44,44,66,60,38,44,0,0,0,0,0,457 +NA,NA,,2016-17,New Bedford - Abraham Lincoln,2010095,0,119,125,119,155,138,127,0,0,0,0,0,0,0,0,783 +NA,NA,,2016-17,New Bedford - Alfred J Gomes,2010063,29,102,96,98,77,75,71,0,0,0,0,0,0,0,0,548 +NA,NA,,2016-17,New Bedford - Betsey B Winslow,2010140,0,47,48,66,52,58,26,0,0,0,0,0,0,0,0,297 +NA,NA,,2016-17,New Bedford - Carlos Pacheco,2010105,18,55,60,64,61,74,49,0,0,0,0,0,0,0,0,381 +NA,NA,,2016-17,New Bedford - Casimir Pulaski,2010123,127,97,95,107,96,99,100,0,0,0,0,0,0,0,0,721 +NA,NA,,2016-17,New Bedford - Charles S Ashley,2010010,0,54,55,50,49,51,72,0,0,0,0,0,0,0,0,331 +NA,NA,,2016-17,New Bedford - Elizabeth Carter Brooks,2010015,29,56,36,44,43,45,36,0,0,0,0,0,0,0,0,289 +NA,NA,,2016-17,New Bedford - Ellen R Hathaway,2010075,0,35,49,53,58,51,42,0,0,0,0,0,0,0,0,288 +NA,NA,,2016-17,New Bedford - Elwyn G Campbell,2010020,48,45,36,46,27,38,35,0,0,0,0,0,0,0,0,275 +NA,NA,,2016-17,New Bedford - Hayden/McFadden,2010078,45,113,100,93,101,87,83,0,0,0,0,0,0,0,0,622 +NA,NA,,2016-17,New Bedford - James B Congdon,2010040,0,48,67,68,62,71,48,0,0,0,0,0,0,0,0,364 +NA,NA,,2016-17,New Bedford - Jireh Swift,2010130,0,23,41,48,40,44,37,0,0,0,0,0,0,0,0,233 +NA,NA,,2016-17,New Bedford - John Avery Parker,2010115,26,55,52,49,41,44,30,0,0,0,0,0,0,0,0,297 +NA,NA,,2016-17,New Bedford - John B Devalles,2010050,0,62,59,58,57,60,42,0,0,0,0,0,0,0,0,338 +NA,NA,,2016-17,New Bedford - John Hannigan,2010070,64,47,64,53,51,46,48,0,0,0,0,0,0,0,0,373 +NA,NA,,2016-17,New Bedford - Keith Middle School,2010405,0,0,0,0,0,0,0,296,296,293,0,0,0,0,0,885 +NA,NA,,2016-17,New Bedford - New Bedford High,2010505,0,0,0,0,0,0,0,0,0,0,575,527,396,516,0,2014 +NA,NA,,2016-17,New Bedford - Normandin Middle School,2010410,0,0,0,0,0,0,0,406,390,329,0,0,0,0,0,1125 +NA,NA,,2016-17,New Bedford - Renaissance Community School for the Arts,2010124,25,39,43,33,32,44,31,0,0,0,0,0,0,0,0,247 +NA,NA,,2016-17,New Bedford - Roosevelt Middle School,2010415,0,0,0,0,0,0,0,254,271,267,0,0,0,0,0,792 +NA,NA,,2016-17,New Bedford - Sgt Wm H Carney Academy,2010045,64,115,130,109,147,128,123,0,0,0,0,0,0,0,0,816 +NA,NA,,2016-17,New Bedford - Thomas R Rodman,2010125,0,43,27,38,30,40,39,0,0,0,0,0,0,0,0,217 +NA,NA,,2016-17,New Bedford - Trinity Day Academy,2010510,0,0,0,0,0,0,0,3,8,9,13,17,10,3,0,63 +NA,NA,,2016-17,New Bedford - Whaling City Junior/Senior High School,2010515,0,0,0,0,0,0,0,1,6,15,26,24,27,11,0,110 +NA,NA,,2016-17,New Bedford - William H Taylor,2010135,0,43,44,47,39,27,31,0,0,0,0,0,0,0,0,231 +NA,NA,,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,0,0,0,0,0,0,105,104,104,0,0,0,0,0,313 +NA,NA,,2016-17,New Salem-Wendell - Swift River,7280015,31,17,18,17,21,20,21,24,0,0,0,0,0,0,0,169 +NA,NA,,2016-17,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,0,0,146,185,0,0,0,0,0,0,0,0,331 +NA,NA,,2016-17,Newburyport - Francis T Bresnahan Elementary,2040005,72,132,132,134,173,0,0,0,0,0,0,0,0,0,0,643 +NA,NA,,2016-17,Newburyport - Newburyport High,2040505,0,0,0,0,0,0,0,0,0,0,180,187,192,212,8,779 +NA,NA,,2016-17,Newburyport - Rupert A Nock Middle,2040305,0,0,0,0,0,0,0,188,163,191,0,0,0,0,0,542 +NA,NA,,2016-17,Newton - A E Angier,2070005,0,78,66,79,71,70,57,0,0,0,0,0,0,0,0,421 +NA,NA,,2016-17,Newton - Bigelow Middle,2070305,0,0,0,0,0,0,0,178,184,163,0,0,0,0,0,525 +NA,NA,,2016-17,Newton - Bowen,2070015,0,60,61,60,95,68,73,0,0,0,0,0,0,0,0,417 +NA,NA,,2016-17,Newton - C C Burr,2070020,0,48,68,74,80,62,70,0,0,0,0,0,0,0,0,402 +NA,NA,,2016-17,Newton - Cabot,2070025,0,52,56,76,69,76,71,0,0,0,0,0,0,0,0,400 +NA,NA,,2016-17,Newton - Charles E Brown Middle,2070310,0,0,0,0,0,0,0,241,281,252,0,0,0,0,0,774 +NA,NA,,2016-17,Newton - Countryside,2070040,0,63,77,81,66,73,76,0,0,0,0,0,0,0,0,436 +NA,NA,,2016-17,Newton - F A Day Middle,2070315,0,0,0,0,0,0,0,309,316,294,0,0,0,0,0,919 +NA,NA,,2016-17,Newton - Franklin,2070055,0,79,67,89,77,64,70,0,0,0,0,0,0,0,0,446 +NA,NA,,2016-17,Newton - Horace Mann,2070075,0,62,67,62,69,71,86,0,0,0,0,0,0,0,0,417 +NA,NA,,2016-17,Newton - John Ward,2070120,0,49,44,54,56,58,51,0,0,0,0,0,0,0,0,312 +NA,NA,,2016-17,Newton - Lincoln-Eliot,2070070,0,62,55,57,63,51,58,0,0,0,0,0,0,0,0,346 +NA,NA,,2016-17,Newton - Mason-Rice,2070080,0,67,90,99,93,90,68,0,0,0,0,0,0,0,0,507 +NA,NA,,2016-17,Newton - Memorial Spaulding,2070105,0,71,84,85,74,72,68,0,0,0,0,0,0,0,0,454 +NA,NA,,2016-17,Newton - Newton Early Childhood Center,2070108,193,0,0,0,0,0,0,0,0,0,0,0,0,0,0,193 +NA,NA,,2016-17,Newton - Newton North High,2070505,0,0,0,0,0,0,0,0,0,0,521,537,559,479,30,2126 +NA,NA,,2016-17,Newton - Newton South High,2070510,0,0,0,0,0,0,0,0,0,0,483,458,459,451,0,1851 +NA,NA,,2016-17,Newton - Oak Hill Middle,2070320,0,0,0,0,0,0,0,233,189,217,0,0,0,0,0,639 +NA,NA,,2016-17,Newton - Peirce,2070100,0,38,42,60,44,53,62,0,0,0,0,0,0,0,0,299 +NA,NA,,2016-17,Newton - Underwood,2070115,0,47,44,65,48,55,54,0,0,0,0,0,0,0,0,313 +NA,NA,,2016-17,Newton - Williams,2070125,0,44,65,44,43,58,39,0,0,0,0,0,0,0,0,293 +NA,NA,,2016-17,Newton - Zervas,2070130,0,65,56,57,57,55,47,0,0,0,0,0,0,0,0,337 +NA,NA,,2016-17,Norfolk - Freeman-Kennedy School,2080005,0,0,0,0,142,109,125,119,0,0,0,0,0,0,0,495 +NA,NA,,2016-17,Norfolk - H Olive Day,2080015,60,130,146,106,0,0,0,0,0,0,0,0,0,0,0,442 +NA,NA,,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,0,0,0,0,0,0,0,133,146,134,121,0,534 +NA,NA,,2016-17,North Adams - Brayton,2090035,119,29,27,32,35,43,33,43,28,0,0,0,0,0,0,389 +NA,NA,,2016-17,North Adams - Colegrove Park Elementary,2090008,0,48,45,36,44,49,52,37,25,0,0,0,0,0,0,336 +NA,NA,,2016-17,North Adams - Drury High,2090505,0,0,0,0,0,0,0,0,0,103,86,90,67,86,7,439 +NA,NA,,2016-17,North Adams - Greylock,2090015,0,45,35,31,42,39,49,25,36,0,0,0,0,0,0,302 +NA,NA,,2016-17,North Andover - Annie L Sargent School,2110018,0,92,81,97,94,92,96,0,0,0,0,0,0,0,0,552 +NA,NA,,2016-17,North Andover - Atkinson,2110001,123,70,67,73,72,81,63,0,0,0,0,0,0,0,0,549 +NA,NA,,2016-17,North Andover - Franklin,2110010,0,71,74,81,77,74,100,0,0,0,0,0,0,0,0,477 +NA,NA,,2016-17,North Andover - Kittredge,2110015,0,47,42,51,50,53,53,0,0,0,0,0,0,0,0,296 +NA,NA,,2016-17,North Andover - North Andover High,2110505,0,0,0,0,0,0,0,0,0,0,315,388,362,326,0,1391 +NA,NA,,2016-17,North Andover - North Andover Middle,2110305,0,0,0,0,0,0,0,348,375,416,0,0,0,0,0,1139 +NA,NA,,2016-17,North Andover - Thomson,2110020,0,62,64,55,73,53,55,0,0,0,0,0,0,0,0,362 +NA,NA,,2016-17,North Attleborough - Amvet Boulevard,2120007,0,37,64,72,70,72,80,0,0,0,0,0,0,0,0,395 +NA,NA,,2016-17,North Attleborough - Community,2120030,0,60,58,49,60,60,50,0,0,0,0,0,0,0,0,337 +NA,NA,,2016-17,North Attleborough - Falls,2120010,0,24,58,45,45,64,46,0,0,0,0,0,0,0,0,282 +NA,NA,,2016-17,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,119,87,91,110,136,140,0,0,0,0,0,0,0,0,683 +NA,NA,,2016-17,North Attleborough - North Attleboro High,2120505,0,0,0,0,0,0,0,0,0,0,284,290,308,271,10,1163 +NA,NA,,2016-17,North Attleborough - North Attleborough Early Learning Center,2120020,136,0,0,0,0,0,0,0,0,0,0,0,0,0,0,136 +NA,NA,,2016-17,North Attleborough - North Attleborough Middle,2120305,0,0,0,0,0,0,0,342,372,359,0,0,0,0,0,1073 +NA,NA,,2016-17,North Attleborough - Roosevelt Avenue,2120015,0,66,52,38,51,55,50,0,0,0,0,0,0,0,0,312 +NA,NA,,2016-17,North Brookfield - North Brookfield Elementary,2150015,23,44,35,35,46,48,53,45,0,0,0,0,0,0,0,329 +NA,NA,,2016-17,North Brookfield - North Brookfield High,2150505,0,0,0,0,0,0,0,0,53,31,41,44,28,33,0,230 +NA,NA,,2016-17,North Middlesex - Ashby Elementary,7350010,0,39,35,46,45,51,0,0,0,0,0,0,0,0,0,216 +NA,NA,,2016-17,North Middlesex - Hawthorne Brook,7350030,0,0,0,0,0,0,135,109,125,121,0,0,0,0,0,490 +NA,NA,,2016-17,North Middlesex - Nissitissit Middle School,7350310,0,0,0,0,0,0,130,125,122,149,0,0,0,0,0,526 +NA,NA,,2016-17,North Middlesex - North Middlesex Regional,7350505,0,0,0,0,0,0,0,0,0,0,208,185,196,206,0,795 +NA,NA,,2016-17,North Middlesex - Peter Fitzpatrick School,7350515,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10 +NA,NA,,2016-17,North Middlesex - Spaulding Memorial,7350005,0,82,85,83,91,86,0,0,0,0,0,0,0,0,0,427 +NA,NA,,2016-17,North Middlesex - Squannacook Early Childhood Center,7350002,79,0,0,0,0,0,0,0,0,0,0,0,0,0,0,79 +NA,NA,,2016-17,North Middlesex - Varnum Brook,7350035,0,95,107,107,116,138,0,0,0,0,0,0,0,0,0,563 +NA,NA,,2016-17,North Reading - E Ethel Little School,2170003,50,40,51,46,51,35,49,0,0,0,0,0,0,0,0,322 +NA,NA,,2016-17,North Reading - J Turner Hood,2170010,2,55,56,62,67,54,45,0,0,0,0,0,0,0,0,341 +NA,NA,,2016-17,North Reading - L D Batchelder,2170005,0,64,79,67,80,89,67,0,0,0,0,0,0,0,0,446 +NA,NA,,2016-17,North Reading - North Reading High,2170505,0,0,0,0,0,0,0,0,0,0,208,189,223,188,3,811 +NA,NA,,2016-17,North Reading - North Reading Middle,2170305,0,0,0,0,0,0,0,191,185,200,0,0,0,0,0,576 +NA,NA,,2016-17,Northampton - Bridge Street,2100005,37,47,39,35,32,39,37,0,0,0,0,0,0,0,0,266 +NA,NA,,2016-17,Northampton - Jackson Street,2100020,0,59,52,62,62,53,42,0,0,0,0,0,0,0,0,330 +NA,NA,,2016-17,Northampton - John F Kennedy Middle School,2100410,0,0,0,0,0,0,0,210,220,208,0,0,0,0,0,638 +NA,NA,,2016-17,Northampton - Leeds,2100025,30,42,42,55,58,58,54,0,0,0,0,0,0,0,0,339 +NA,NA,,2016-17,Northampton - Northampton High,2100505,0,0,0,0,0,0,0,0,0,0,227,213,213,219,2,874 +NA,NA,,2016-17,Northampton - R. K. Finn Ryan Road,2100029,0,37,30,35,36,47,43,0,0,0,0,0,0,0,0,228 +NA,NA,,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,0,0,0,0,0,0,0,0,123,136,114,113,0,486 +NA,NA,,2016-17,Northboro-Southboro - Algonquin Regional High,7300505,0,0,0,0,0,0,0,0,0,0,350,370,357,357,9,1443 +NA,NA,,2016-17,Northborough - Fannie E Proctor,2130015,0,29,39,49,31,48,43,0,0,0,0,0,0,0,0,239 +NA,NA,,2016-17,Northborough - Lincoln Street,2130003,0,37,39,40,38,50,57,0,0,0,0,0,0,0,0,261 +NA,NA,,2016-17,Northborough - Marguerite E Peaslee,2130014,0,41,53,46,38,47,44,0,0,0,0,0,0,0,0,269 +NA,NA,,2016-17,Northborough - Marion E Zeh,2130020,30,53,41,40,43,41,55,0,0,0,0,0,0,0,0,303 +NA,NA,,2016-17,Northborough - Robert E. Melican Middle School,2130305,0,0,0,0,0,0,0,199,206,236,0,0,0,0,0,641 +NA,NA,,2016-17,Northbridge - Northbridge Elementary,2140005,77,156,157,0,0,0,0,0,0,0,0,0,0,0,0,390 +NA,NA,,2016-17,Northbridge - Northbridge High,2140505,0,0,0,0,0,0,0,0,0,0,141,152,154,137,0,584 +NA,NA,,2016-17,Northbridge - Northbridge Middle,2140305,0,0,0,0,0,0,182,185,208,191,0,0,0,0,0,766 +NA,NA,,2016-17,Northbridge - W Edward Balmer,2140001,0,0,0,171,194,162,0,0,0,0,0,0,0,0,0,527 +NA,NA,,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,0,0,0,0,0,0,0,0,0,0,330,322,308,301,0,1261 +NA,NA,,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,0,0,0,0,0,0,0,134,120,114,116,0,484 +NA,NA,,2016-17,Norton - Henri A. Yelle,2180060,0,0,0,0,0,201,172,0,0,0,0,0,0,0,0,373 +NA,NA,,2016-17,Norton - J C Solmonese,2180015,0,91,92,96,122,0,0,0,0,0,0,0,0,0,0,401 +NA,NA,,2016-17,Norton - L G Nourse Elementary,2180010,81,78,61,75,73,0,0,0,0,0,0,0,0,0,0,368 +NA,NA,,2016-17,Norton - Norton High,2180505,0,0,0,0,0,0,0,0,0,0,178,187,200,195,3,763 +NA,NA,,2016-17,Norton - Norton Middle,2180305,0,0,0,0,0,0,0,191,196,209,0,0,0,0,0,596 +NA,NA,,2016-17,Norwell - Grace Farrar Cole,2190005,19,63,78,73,71,90,81,0,0,0,0,0,0,0,0,475 +NA,NA,,2016-17,Norwell - Norwell High,2190505,0,0,0,0,0,0,0,0,0,0,186,171,168,184,0,709 +NA,NA,,2016-17,Norwell - Norwell Middle School,2190405,0,0,0,0,0,0,0,177,168,174,0,0,0,0,0,519 +NA,NA,,2016-17,Norwell - William G Vinal,2190020,19,65,75,85,84,83,78,0,0,0,0,0,0,0,0,489 +NA,NA,,2016-17,Norwood - Balch,2200005,0,0,61,58,60,61,45,0,0,0,0,0,0,0,0,285 +NA,NA,,2016-17,Norwood - Charles J Prescott,2200025,0,4,52,46,47,46,51,0,0,0,0,0,0,0,0,246 +NA,NA,,2016-17,Norwood - Cornelius M Callahan,2200010,0,0,37,38,34,46,47,0,0,0,0,0,0,0,0,202 +NA,NA,,2016-17,Norwood - Dr. Philip O. Coakley Middle School,2200305,0,0,0,0,0,0,0,263,241,249,0,0,0,0,0,753 +NA,NA,,2016-17,Norwood - F A Cleveland,2200015,0,0,76,68,59,71,66,0,0,0,0,0,0,0,0,340 +NA,NA,,2016-17,Norwood - George F. Willett,2200075,105,289,0,0,0,0,0,0,0,0,0,0,0,0,0,394 +NA,NA,,2016-17,Norwood - John P Oldham,2200020,0,0,53,48,54,35,44,0,0,0,0,0,0,0,0,234 +NA,NA,,2016-17,Norwood - Norwood High,2200505,0,0,0,0,0,0,0,0,0,0,251,226,234,246,0,957 +NA,NA,,2016-17,Oak Bluffs - Oak Bluffs Elementary,2210005,13,40,53,47,57,57,48,48,26,48,0,0,0,0,0,437 +NA,NA,,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,0,0,0,0,0,0,0,0,0,151,139,122,134,0,546 +NA,NA,,2016-17,Old Rochester - Old Rochester Regional High,7400505,0,0,0,0,0,0,0,0,0,0,172,191,201,180,4,748 +NA,NA,,2016-17,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,0,0,0,0,0,246,245,0,0,0,0,0,491 +NA,NA,,2016-17,Orange - Dexter Park,2230010,0,0,0,0,90,89,73,80,0,0,0,0,0,0,0,332 +NA,NA,,2016-17,Orange - Fisher Hill,2230015,73,72,81,71,0,0,0,0,0,0,0,0,0,0,0,297 +NA,NA,,2016-17,Orleans - Orleans Elementary,2240005,0,35,32,33,46,34,35,0,0,0,0,0,0,0,0,215 +NA,NA,,2016-17,Oxford - Alfred M Chaffee,2260010,63,145,126,0,0,0,0,0,0,0,0,0,0,0,0,334 +NA,NA,,2016-17,Oxford - Clara Barton,2260005,0,0,0,133,128,156,0,0,0,0,0,0,0,0,0,417 +NA,NA,,2016-17,Oxford - Oxford High,2260505,0,0,0,0,0,0,0,0,0,146,98,92,101,90,11,538 +NA,NA,,2016-17,Oxford - Oxford Middle,2260405,0,0,0,0,0,0,147,140,137,0,0,0,0,0,0,424 +NA,NA,,2016-17,Oxford - Project C.O.F.F.E.E.,2260305,0,0,0,0,0,0,0,0,0,0,3,9,5,8,0,25 +NA,NA,,2016-17,Palmer - Converse Middle,2270305,0,0,0,0,0,0,0,129,119,0,0,0,0,0,0,248 +NA,NA,,2016-17,Palmer - Old Mill Pond,2270008,37,111,96,107,105,124,113,0,0,0,0,0,0,0,0,693 +NA,NA,,2016-17,Palmer - Palmer High,2270505,0,0,0,0,0,0,0,0,0,135,86,106,80,76,3,486 +NA,NA,,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,0,0,0,0,0,0,0,177,160,146,134,1,618 +NA,NA,,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,0,0,0,0,0,0,0,0,0,0,103,92,63,70,0,328 +NA,NA,,2016-17,Peabody - Captain Samuel Brown,2290005,0,67,60,49,67,56,70,0,0,0,0,0,0,0,0,369 +NA,NA,,2016-17,Peabody - Center,2290015,0,67,57,64,64,72,62,0,0,0,0,0,0,0,0,386 +NA,NA,,2016-17,Peabody - J Henry Higgins Middle,2290305,0,0,0,0,0,0,0,476,434,429,0,0,0,0,0,1339 +NA,NA,,2016-17,Peabody - John E Burke,2290007,0,38,42,38,56,41,60,0,0,0,0,0,0,0,0,275 +NA,NA,,2016-17,Peabody - John E. McCarthy,2290016,114,47,37,43,45,30,37,0,0,0,0,0,0,0,0,353 +NA,NA,,2016-17,Peabody - Peabody Veterans Memorial High,2290510,0,0,0,0,0,0,0,0,0,0,339,351,402,438,10,1540 +NA,NA,,2016-17,Peabody - South Memorial,2290035,76,75,56,71,70,58,59,0,0,0,0,0,0,0,0,465 +NA,NA,,2016-17,Peabody - Thomas Carroll,2290010,0,104,89,95,104,135,92,0,0,0,0,0,0,0,0,619 +NA,NA,,2016-17,Peabody - West Memorial,2290045,42,33,36,29,32,37,29,0,0,0,0,0,0,0,0,238 +NA,NA,,2016-17,Peabody - William A Welch Sr,2290027,39,52,64,57,70,40,50,0,0,0,0,0,0,0,0,372 +NA,NA,,2016-17,Pelham - Pelham Elementary,2300005,0,21,21,16,20,18,18,18,0,0,0,0,0,0,0,132 +NA,NA,,2016-17,Pembroke - Bryantville Elementary,2310003,0,49,68,79,75,81,72,90,0,0,0,0,0,0,0,514 +NA,NA,,2016-17,Pembroke - Hobomock Elementary,2310010,0,53,72,52,48,75,60,75,0,0,0,0,0,0,0,435 +NA,NA,,2016-17,Pembroke - North Pembroke Elementary,2310015,56,60,70,76,78,70,83,83,0,0,0,0,0,0,0,576 +NA,NA,,2016-17,Pembroke - Pembroke Community Middle School,2310305,0,0,0,0,0,0,0,0,256,248,0,0,0,0,0,504 +NA,NA,,2016-17,Pembroke - Pembroke High School,2310505,0,0,0,0,0,0,0,0,0,0,207,249,275,236,6,973 +NA,NA,,2016-17,Pentucket - Dr Frederick N Sweetsir,7450020,31,60,62,53,0,0,0,0,0,0,0,0,0,0,0,206 +NA,NA,,2016-17,Pentucket - Dr John C Page School,7450015,15,42,36,50,45,55,45,60,0,0,0,0,0,0,0,348 +NA,NA,,2016-17,Pentucket - Elmer S Bagnall,7450005,34,51,70,66,53,80,71,81,0,0,0,0,0,0,0,506 +NA,NA,,2016-17,Pentucket - Helen R Donaghue School,7450010,0,0,0,0,40,68,69,66,0,0,0,0,0,0,0,243 +NA,NA,,2016-17,Pentucket - Pentucket Regional Middle,7450405,0,0,0,0,0,0,0,0,222,239,0,0,0,0,0,461 +NA,NA,,2016-17,Pentucket - Pentucket Regional Sr High,7450505,0,0,0,0,0,0,0,0,0,0,203,158,188,185,0,734 +NA,NA,,2016-17,Petersham - Petersham Center,2340005,0,20,16,18,16,19,18,17,0,0,0,0,0,0,0,124 +NA,NA,,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,0,0,0,0,0,0,0,0,0,0,134,18,29,12,0,193 +NA,NA,,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,0,0,0,0,0,0,0,0,0,0,113,15,17,25,0,170 +NA,NA,,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,0,65,66,66,0,0,0,0,69,71,64,62,39,41,0,543 +NA,NA,,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,0,0,0,0,0,0,0,0,77,75,70,51,37,12,0,322 +NA,NA,,2016-17,Pioneer Valley - Bernardston Elementary,7500006,23,19,20,22,15,21,29,27,0,0,0,0,0,0,0,176 +NA,NA,,2016-17,Pioneer Valley - Northfield Elementary,7500008,14,16,24,20,21,28,28,35,0,0,0,0,0,0,0,186 +NA,NA,,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,7500007,4,8,6,6,2,3,3,7,0,0,0,0,0,0,0,39 +NA,NA,,2016-17,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,0,0,0,0,0,72,94,44,65,64,70,0,409 +NA,NA,,2016-17,Pioneer Valley - Warwick Community School,7500009,0,8,6,10,3,8,11,11,0,0,0,0,0,0,0,57 +NA,NA,,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,0,44,44,45,45,43,39,58,49,44,14,20,15,11,0,471 +NA,NA,,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,0,0,0,0,0,0,0,0,68,68,69,68,61,64,0,398 +NA,NA,,2016-17,Pittsfield - Allendale,2360010,0,51,40,50,41,49,51,0,0,0,0,0,0,0,0,282 +NA,NA,,2016-17,Pittsfield - Crosby,2360065,78,58,52,66,52,71,62,0,0,0,0,0,0,0,0,439 +NA,NA,,2016-17,Pittsfield - Egremont,2360035,0,70,64,81,78,83,93,0,0,0,0,0,0,0,0,469 +NA,NA,,2016-17,Pittsfield - John T Reid Middle,2360305,0,0,0,0,0,0,0,182,194,179,0,0,0,0,0,555 +NA,NA,,2016-17,Pittsfield - Morningside Community School,2360055,33,49,57,59,62,87,70,0,0,0,0,0,0,0,0,417 +NA,NA,,2016-17,Pittsfield - Pittsfield High,2360505,0,0,0,0,0,0,0,0,0,0,216,226,202,217,0,861 +NA,NA,,2016-17,Pittsfield - Robert T. Capeless Elementary School,2360045,17,34,28,31,33,31,35,0,0,0,0,0,0,0,0,209 +NA,NA,,2016-17,Pittsfield - Silvio O Conte Community,2360105,33,63,55,68,51,53,39,0,0,0,0,0,0,0,0,362 +NA,NA,,2016-17,Pittsfield - Stearns,2360090,0,43,42,48,33,33,36,0,0,0,0,0,0,0,0,235 +NA,NA,,2016-17,Pittsfield - Taconic High,2360510,0,0,0,0,0,0,0,0,0,0,169,168,163,206,0,706 +NA,NA,,2016-17,Pittsfield - Theodore Herberg Middle,2360310,0,0,0,0,0,0,0,205,214,210,0,0,0,0,0,629 +NA,NA,,2016-17,Pittsfield - Williams,2360100,0,53,48,58,50,61,53,0,0,0,0,0,0,0,0,323 +NA,NA,,2016-17,Plainville - Anna Ware Jackson,2380010,48,88,88,83,101,0,0,0,0,0,0,0,0,0,0,408 +NA,NA,,2016-17,Plainville - Beatrice H Wood Elementary,2380005,0,0,0,0,0,99,110,97,0,0,0,0,0,0,0,306 +NA,NA,,2016-17,Plymouth - Cold Spring,2390005,0,35,34,37,46,53,43,0,0,0,0,0,0,0,0,248 +NA,NA,,2016-17,Plymouth - Federal Furnace School,2390011,0,70,65,78,65,70,64,0,0,0,0,0,0,0,0,412 +NA,NA,,2016-17,Plymouth - Hedge,2390010,0,16,29,36,33,53,43,0,0,0,0,0,0,0,0,210 +NA,NA,,2016-17,Plymouth - Indian Brook,2390012,0,80,92,83,101,95,115,0,0,0,0,0,0,0,0,566 +NA,NA,,2016-17,Plymouth - Manomet Elementary,2390015,0,48,40,52,48,55,61,0,0,0,0,0,0,0,0,304 +NA,NA,,2016-17,Plymouth - Nathaniel Morton Elementary,2390030,0,86,92,115,82,112,104,0,0,0,0,0,0,0,0,591 +NA,NA,,2016-17,Plymouth - Plymouth Commun Intermediate,2390405,0,0,0,0,0,0,0,325,328,344,0,0,0,0,0,997 +NA,NA,,2016-17,Plymouth - Plymouth Early Childhood Center,2390003,116,0,0,0,0,0,0,0,0,0,0,0,0,0,0,116 +NA,NA,,2016-17,Plymouth - Plymouth North High,2390505,0,0,0,0,0,0,0,0,0,0,366,318,318,303,2,1307 +NA,NA,,2016-17,Plymouth - Plymouth South High,2390515,0,0,0,0,0,0,0,0,0,0,262,264,267,233,0,1026 +NA,NA,,2016-17,Plymouth - Plymouth South Middle,2390305,0,0,0,0,0,0,118,232,238,249,0,0,0,0,0,837 +NA,NA,,2016-17,Plymouth - South Elementary,2390046,0,105,98,111,119,116,0,0,0,0,0,0,0,0,0,549 +NA,NA,,2016-17,Plymouth - West Elementary,2390047,0,74,57,55,63,76,64,0,0,0,0,0,0,0,0,389 +NA,NA,,2016-17,Plympton - Dennett Elementary,2400010,0,29,34,21,31,30,32,32,0,0,0,0,0,0,0,209 +NA,NA,,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,0,80,86,86,94,95,98,90,95,100,82,85,71,73,0,1135 +NA,NA,,2016-17,Provincetown - Provincetown Schools,2420020,20,8,14,12,18,7,9,14,10,17,0,0,0,0,0,129 +NA,NA,,2016-17,Quabbin - Hardwick Elementary,7530005,0,19,28,24,34,32,28,29,0,0,0,0,0,0,0,194 +NA,NA,,2016-17,Quabbin - Hubbardston Center,7530010,0,46,39,45,50,42,46,48,0,0,0,0,0,0,0,316 +NA,NA,,2016-17,Quabbin - IB School of Quabbin,7530515,0,0,0,0,0,0,0,0,0,0,0,0,7,6,0,13 +NA,NA,,2016-17,Quabbin - New Braintree Grade,7530020,65,19,24,0,0,0,0,0,0,0,0,0,0,0,0,108 +NA,NA,,2016-17,Quabbin - Oakham Center,7530025,0,0,0,28,26,29,29,37,0,0,0,0,0,0,0,149 +NA,NA,,2016-17,Quabbin - Quabbin Regional High School,7530505,0,0,0,0,0,0,0,0,0,0,188,158,166,164,0,676 +NA,NA,,2016-17,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,0,0,0,0,0,208,216,0,0,0,0,0,424 +NA,NA,,2016-17,Quabbin - Ruggles Lane,7530030,0,39,54,58,57,43,61,56,0,0,0,0,0,0,0,368 +NA,NA,,2016-17,Quaboag Regional - Quaboag Regional High,7780505,0,0,0,0,0,0,0,0,0,0,82,105,77,101,0,365 +NA,NA,,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,0,0,0,0,0,106,131,0,0,0,0,0,237 +NA,NA,,2016-17,Quaboag Regional - Warren Elementary,7780005,36,49,56,67,52,68,68,76,0,0,0,0,0,0,0,472 +NA,NA,,2016-17,Quaboag Regional - West Brookfield Elementary,7780010,26,38,39,46,45,38,41,53,0,0,0,0,0,0,0,326 +NA,NA,,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,170,0,0,0,0,0,0,0,0,0,0,0,0,0,0,170 +NA,NA,,2016-17,Quincy - Atherton Hough,2430040,0,57,43,38,44,39,47,0,0,0,0,0,0,0,0,268 +NA,NA,,2016-17,Quincy - Atlantic Middle,2430305,0,0,0,0,0,0,0,148,160,162,0,0,0,0,0,470 +NA,NA,,2016-17,Quincy - Beechwood Knoll Elementary,2430020,0,68,60,52,49,58,63,0,0,0,0,0,0,0,0,350 +NA,NA,,2016-17,Quincy - Broad Meadows Middle,2430310,0,0,0,0,0,0,0,128,115,132,0,0,0,0,0,375 +NA,NA,,2016-17,Quincy - Central Middle,2430315,0,0,0,0,0,0,0,211,207,221,0,0,0,0,0,639 +NA,NA,,2016-17,Quincy - Charles A Bernazzani Elementary,2430025,0,55,63,50,62,49,63,0,0,0,0,0,0,0,0,342 +NA,NA,,2016-17,Quincy - Clifford H Marshall Elementary,2430055,0,125,100,123,123,104,0,0,0,0,0,0,0,0,0,575 +NA,NA,,2016-17,Quincy - Francis W Parker,2430075,0,45,56,59,57,56,50,0,0,0,0,0,0,0,0,323 +NA,NA,,2016-17,Quincy - Lincoln-Hancock Community School,2430035,0,116,104,94,98,96,0,0,0,0,0,0,0,0,0,508 +NA,NA,,2016-17,Quincy - Merrymount,2430060,0,53,57,64,58,53,65,0,0,0,0,0,0,0,0,350 +NA,NA,,2016-17,Quincy - Montclair,2430065,0,86,70,65,67,63,78,0,0,0,0,0,0,0,0,429 +NA,NA,,2016-17,Quincy - North Quincy High,2430510,0,0,0,0,0,0,0,0,0,0,272,303,302,285,6,1168 +NA,NA,,2016-17,Quincy - Point Webster Middle,2430325,0,0,0,0,0,0,78,91,86,80,0,0,0,0,0,335 +NA,NA,,2016-17,Quincy - Quincy High,2430505,0,0,0,0,0,0,0,0,0,0,381,394,386,342,0,1503 +NA,NA,,2016-17,Quincy - Reay E Sterling Middle,2430320,0,0,0,0,0,0,86,81,91,82,0,0,0,0,0,340 +NA,NA,,2016-17,Quincy - Snug Harbor Community School,2430090,125,48,43,50,65,50,47,0,0,0,0,0,0,0,0,428 +NA,NA,,2016-17,Quincy - Squantum,2430095,0,66,55,53,51,48,65,0,0,0,0,0,0,0,0,338 +NA,NA,,2016-17,Quincy - Wollaston School,2430110,0,63,57,58,56,59,45,0,0,0,0,0,0,0,0,338 +NA,NA,,2016-17,Ralph C Mahar - Pathways Early College Innovation School,7550515,0,0,0,0,0,0,0,0,0,0,0,0,21,17,0,38 +NA,NA,,2016-17,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,0,0,0,0,0,0,0,116,119,106,109,109,76,0,635 +NA,NA,,2016-17,Ralph C Mahar - The Gateway to College,7550525,0,0,0,0,0,0,0,0,0,0,15,0,13,51,0,79 +NA,NA,,2016-17,Randolph - Elizabeth G Lyons Elementary,2440020,0,48,41,45,54,53,55,0,0,0,0,0,0,0,0,296 +NA,NA,,2016-17,Randolph - J F Kennedy Elementary,2440018,86,56,63,81,73,73,52,0,0,0,0,0,0,0,0,484 +NA,NA,,2016-17,Randolph - Margaret L Donovan,2440015,0,60,64,84,78,73,75,0,0,0,0,0,0,0,0,434 +NA,NA,,2016-17,Randolph - Martin E Young Elementary,2440040,0,46,48,59,56,64,47,0,0,0,0,0,0,0,0,320 +NA,NA,,2016-17,Randolph - Randolph Community Middle,2440410,0,0,0,0,0,0,0,189,216,205,0,0,0,0,0,610 +NA,NA,,2016-17,Randolph - Randolph High,2440505,0,0,0,0,0,0,0,0,0,0,197,154,172,156,0,679 +NA,NA,,2016-17,Reading - Alice M Barrows,2460002,0,53,84,63,62,55,67,0,0,0,0,0,0,0,0,384 +NA,NA,,2016-17,Reading - Arthur W Coolidge Middle,2460305,0,0,0,0,0,0,0,152,152,162,0,0,0,0,0,466 +NA,NA,,2016-17,Reading - Birch Meadow,2460005,0,64,61,65,64,57,72,0,0,0,0,0,0,0,0,383 +NA,NA,,2016-17,Reading - J Warren Killam,2460017,0,66,74,64,70,76,73,0,0,0,0,0,0,0,0,423 +NA,NA,,2016-17,Reading - Joshua Eaton,2460010,0,37,74,82,60,83,89,0,0,0,0,0,0,0,0,425 +NA,NA,,2016-17,Reading - Reading Memorial High,2460505,0,0,0,0,0,0,0,0,0,0,305,333,275,352,0,1265 +NA,NA,,2016-17,Reading - RISE PreSchool,2460001,91,0,0,0,0,0,0,0,0,0,0,0,0,0,0,91 +NA,NA,,2016-17,Reading - Walter S Parker Middle,2460310,0,0,0,0,0,0,0,204,172,196,0,0,0,0,0,572 +NA,NA,,2016-17,Reading - Wood End Elementary School,2460020,0,47,44,67,48,41,68,0,0,0,0,0,0,0,0,315 +NA,NA,,2016-17,Revere - A. C. Whelan Elementary School,2480003,0,118,114,113,135,122,128,0,0,0,0,0,0,0,0,730 +NA,NA,,2016-17,Revere - Abraham Lincoln,2480025,94,82,100,78,108,117,90,0,0,0,0,0,0,0,0,669 +NA,NA,,2016-17,Revere - Beachmont Veterans Memorial School,2480013,42,58,63,46,53,57,51,0,0,0,0,0,0,0,0,370 +NA,NA,,2016-17,Revere - Garfield Elementary School,2480056,98,134,123,108,126,133,121,0,0,0,0,0,0,0,0,843 +NA,NA,,2016-17,Revere - Garfield Middle School,2480057,0,0,0,0,0,0,0,187,169,185,0,0,0,0,0,541 +NA,NA,,2016-17,Revere - Paul Revere,2480050,0,78,84,82,89,85,76,0,0,0,0,0,0,0,0,494 +NA,NA,,2016-17,Revere - Revere High,2480505,0,0,0,0,0,0,0,0,0,0,516,452,495,367,7,1837 +NA,NA,,2016-17,Revere - Rumney Marsh Academy,2480014,0,0,0,0,0,0,0,205,188,200,0,0,0,0,0,593 +NA,NA,,2016-17,Revere - Seacoast School,2480520,0,0,0,0,0,0,0,0,0,0,56,41,17,7,0,121 +NA,NA,,2016-17,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,108,111,117,142,123,95,0,0,0,0,0,0,0,0,696 +NA,NA,,2016-17,Revere - Susan B. Anthony Middle School,2480305,0,0,0,0,0,0,0,189,184,184,0,0,0,0,0,557 +NA,NA,,2016-17,Richmond - Richmond Consolidated,2490005,12,17,19,18,15,20,27,16,21,8,0,0,0,0,0,173 +NA,NA,,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,0,0,0,0,0,0,90,89,89,90,90,75,73,69,0,665 +NA,NA,,2016-17,River Valley Charter (District) - River Valley Charter School,4820050,0,32,32,34,31,33,33,30,31,32,0,0,0,0,0,288 +NA,NA,,2016-17,Rochester - Rochester Memorial,2500005,22,49,71,58,59,76,60,71,0,0,0,0,0,0,0,466 +NA,NA,,2016-17,Rockland - Jefferson Elementary School,2510060,0,124,58,53,56,41,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2016-17,Rockland - John W Rogers Middle,2510305,0,0,0,0,0,0,159,172,170,179,0,0,0,0,0,680 +NA,NA,,2016-17,Rockland - Memorial Park,2510020,0,60,49,55,64,47,0,0,0,0,0,0,0,0,0,275 +NA,NA,,2016-17,Rockland - R Stewart Esten,2510025,0,0,75,68,92,69,0,0,0,0,0,0,0,0,0,304 +NA,NA,,2016-17,Rockland - Rockland Senior High,2510505,71,0,0,0,0,0,0,0,0,0,196,137,148,150,1,703 +NA,NA,,2016-17,Rockport - Rockport Elementary,2520005,21,61,69,60,61,66,69,0,0,0,0,0,0,0,0,407 +NA,NA,,2016-17,Rockport - Rockport High,2520510,0,0,0,0,0,0,0,0,0,0,69,81,63,81,0,294 +NA,NA,,2016-17,Rockport - Rockport Middle,2520305,0,0,0,0,0,0,0,73,78,76,0,0,0,0,0,227 +NA,NA,,2016-17,Rowe - Rowe Elementary,2530005,10,12,3,8,4,6,10,6,0,0,0,0,0,0,0,59 +NA,NA,,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,0,0,0,0,0,0,244,242,246,241,224,109,0,0,0,1306 +NA,NA,,2016-17,Sabis International Charter (District) - Sabis International Charter School,4410505,0,106,112,141,128,128,128,128,129,129,117,120,108,102,0,1576 +NA,NA,,2016-17,Salem - Bates,2580003,0,60,59,60,54,48,46,0,0,0,0,0,0,0,0,327 +NA,NA,,2016-17,Salem - Carlton,2580015,0,54,33,39,43,32,38,0,0,0,0,0,0,0,0,239 +NA,NA,,2016-17,Salem - Collins Middle,2580305,0,0,0,0,0,0,0,189,172,184,0,0,0,0,0,545 +NA,NA,,2016-17,Salem - Horace Mann Laboratory,2580030,0,51,40,48,62,51,35,0,0,0,0,0,0,0,0,287 +NA,NA,,2016-17,Salem - Nathaniel Bowditch,2580025,0,42,52,54,50,57,56,53,43,37,0,0,0,0,0,444 +NA,NA,,2016-17,Salem - New Liberty Innovation School,2580510,0,0,0,0,0,0,0,0,0,0,2,7,7,25,0,41 +NA,NA,,2016-17,Salem - Salem Early Childhood,2580001,92,0,0,0,0,0,0,0,0,0,0,0,0,0,0,92 +NA,NA,,2016-17,Salem - Salem High,2580505,0,0,0,0,0,0,0,0,0,0,241,241,227,217,7,933 +NA,NA,,2016-17,Salem - Salem Prep High School,2580515,0,0,0,0,0,0,0,0,0,2,2,2,2,5,0,13 +NA,NA,,2016-17,Salem - Saltonstall School,2580050,0,40,42,36,48,39,50,38,42,37,0,0,0,0,0,372 +NA,NA,,2016-17,Salem - Witchcraft Heights,2580070,0,73,67,85,87,87,80,0,0,0,0,0,0,0,0,479 +NA,NA,,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,4850485,0,0,0,0,0,0,0,72,72,72,82,60,40,44,0,442 +NA,NA,,2016-17,Sandwich - Forestdale School,2610002,71,176,216,181,0,0,0,0,0,0,0,0,0,0,0,644 +NA,NA,,2016-17,Sandwich - Oak Ridge,2610025,0,0,0,0,211,218,238,236,0,0,0,0,0,0,0,903 +NA,NA,,2016-17,Sandwich - Sandwich High,2610505,0,0,0,0,0,0,0,0,0,0,176,175,171,187,0,709 +NA,NA,,2016-17,Sandwich - Sandwich STEM Academy,2610305,0,0,0,0,0,0,0,0,229,241,0,0,0,0,0,470 +NA,NA,,2016-17,Saugus - Ballard School,2620001,110,0,0,0,0,0,0,0,0,0,0,0,0,0,0,110 +NA,NA,,2016-17,Saugus - Belmonte Saugus Middle,2620305,0,0,0,0,0,0,0,210,222,220,0,0,0,0,0,652 +NA,NA,,2016-17,Saugus - Douglas Waybright,2620067,0,19,43,29,38,40,37,0,0,0,0,0,0,0,0,206 +NA,NA,,2016-17,Saugus - Lynnhurst,2620040,0,30,41,39,40,47,38,0,0,0,0,0,0,0,0,235 +NA,NA,,2016-17,Saugus - Oaklandvale,2620050,0,29,35,33,44,34,39,0,0,0,0,0,0,0,0,214 +NA,NA,,2016-17,Saugus - Saugus High,2620505,0,0,0,0,0,0,0,0,0,0,156,176,144,196,6,678 +NA,NA,,2016-17,Saugus - Veterans Memorial,2620065,0,88,77,68,90,83,102,0,0,0,0,0,0,0,0,508 +NA,NA,,2016-17,Savoy - Emma L Miller Elementary School,2630010,13,9,3,9,8,4,3,0,0,0,0,0,0,0,0,49 +NA,NA,,2016-17,Scituate - Cushing Elementary,2640007,0,40,51,47,54,51,71,49,0,0,0,0,0,0,0,363 +NA,NA,,2016-17,Scituate - Gates Intermediate School,2640305,0,0,0,0,0,0,0,0,261,260,0,0,0,0,0,521 +NA,NA,,2016-17,Scituate - Hatherly Elementary,2640010,0,36,47,50,50,50,41,39,0,0,0,0,0,0,0,313 +NA,NA,,2016-17,Scituate - Jenkins Elementary School,2640015,0,57,49,56,57,76,73,95,0,0,0,0,0,0,0,463 +NA,NA,,2016-17,Scituate - Scituate High School,2640505,0,0,0,0,0,0,0,0,0,0,226,213,219,255,1,914 +NA,NA,,2016-17,Scituate - Wampatuck Elementary,2640020,69,56,55,56,46,51,50,44,0,0,0,0,0,0,0,427 +NA,NA,,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,0,0,0,0,0,0,0,169,174,176,0,0,0,0,0,519 +NA,NA,,2016-17,Seekonk - George R Martin,2650007,0,68,66,69,55,91,88,0,0,0,0,0,0,0,0,437 +NA,NA,,2016-17,Seekonk - Mildred Aitken School,2650015,34,62,59,67,60,70,63,0,0,0,0,0,0,0,0,415 +NA,NA,,2016-17,Seekonk - Seekonk High,2650505,0,0,0,0,0,0,0,0,0,0,147,155,141,140,0,583 +NA,NA,,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,0,56,93,85,85,81,80,69,67,51,0,0,0,0,0,667 +NA,NA,,2016-17,Sharon - Cottage Street,2660005,0,65,72,97,95,100,96,0,0,0,0,0,0,0,0,525 +NA,NA,,2016-17,Sharon - East Elementary,2660010,0,66,74,75,84,82,76,0,0,0,0,0,0,0,0,457 +NA,NA,,2016-17,Sharon - Heights Elementary,2660015,0,81,89,78,92,86,103,0,0,0,0,0,0,0,0,529 +NA,NA,,2016-17,Sharon - Sharon High,2660505,0,0,0,0,0,0,0,0,0,0,250,282,260,266,0,1058 +NA,NA,,2016-17,Sharon - Sharon Middle,2660305,48,0,0,0,0,0,0,266,306,279,0,0,0,0,0,899 +NA,NA,,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,0,0,0,0,0,0,0,0,340,327,344,325,0,1336 +NA,NA,,2016-17,Sherborn - Pine Hill,2690010,25,61,55,63,73,80,72,0,0,0,0,0,0,0,0,429 +NA,NA,,2016-17,Shrewsbury - Beal School,2710005,0,249,69,0,0,0,0,0,0,0,0,0,0,0,0,318 +NA,NA,,2016-17,Shrewsbury - Calvin Coolidge,2710015,0,59,72,92,89,97,0,0,0,0,0,0,0,0,0,409 +NA,NA,,2016-17,Shrewsbury - Floral Street School,2710020,0,0,134,190,209,189,0,0,0,0,0,0,0,0,0,722 +NA,NA,,2016-17,Shrewsbury - Oak Middle School,2710030,0,0,0,0,0,0,0,0,511,492,0,0,0,0,0,1003 +NA,NA,,2016-17,Shrewsbury - Parker Road Preschool,2710040,232,0,0,0,0,0,0,0,0,0,0,0,0,0,0,232 +NA,NA,,2016-17,Shrewsbury - Sherwood Middle School,2710305,0,0,0,0,0,0,487,490,0,0,0,0,0,0,0,977 +NA,NA,,2016-17,Shrewsbury - Shrewsbury Sr High,2710505,0,0,0,0,0,0,0,0,0,0,513,428,441,410,0,1792 +NA,NA,,2016-17,Shrewsbury - Spring Street,2710035,0,60,66,87,71,88,0,0,0,0,0,0,0,0,0,372 +NA,NA,,2016-17,Shrewsbury - Walter J Paton,2710025,0,20,77,90,91,88,0,0,0,0,0,0,0,0,0,366 +NA,NA,,2016-17,Shutesbury - Shutesbury Elementary,2720005,18,18,6,20,12,16,18,13,0,0,0,0,0,0,0,121 +NA,NA,,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,4770010,0,89,91,96,99,94,98,0,0,0,0,0,0,0,0,567 +NA,NA,,2016-17,Silver Lake - Silver Lake Regional High,7600505,84,0,0,0,0,0,0,0,0,0,319,278,323,275,0,1279 +NA,NA,,2016-17,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,0,0,0,0,0,271,298,0,0,0,0,0,569 +NA,NA,,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,0,0,0,0,0,0,0,72,71,74,69,34,50,0,370 +NA,NA,,2016-17,Somerset - Chace Street,2730005,59,66,50,47,71,49,62,0,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Somerset - North Elementary,2730008,0,82,71,68,91,100,94,0,0,0,0,0,0,0,0,506 +NA,NA,,2016-17,Somerset - Somerset Middle School,2730305,0,0,0,0,0,0,0,203,197,216,0,0,0,0,0,616 +NA,NA,,2016-17,Somerset - South,2730015,0,44,35,47,48,48,44,0,0,0,0,0,0,0,0,266 +NA,NA,,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,0,0,0,0,0,0,0,0,278,269,212,247,0,1006 +NA,NA,,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,17,40,90,93,70,80,42,47,48,37,0,0,0,0,0,564 +NA,NA,,2016-17,Somerville - Arthur D Healey,2740075,17,43,46,52,46,49,52,37,46,40,0,0,0,0,0,428 +NA,NA,,2016-17,Somerville - Benjamin G Brown,2740015,0,41,47,39,33,45,31,0,0,0,0,0,0,0,0,236 +NA,NA,,2016-17,Somerville - Capuano Early Childhood Center,2740005,231,101,0,0,0,0,0,0,0,0,0,0,0,0,0,332 +NA,NA,,2016-17,Somerville - E Somerville Community,2740111,0,67,100,93,97,104,90,65,54,55,0,0,0,0,0,725 +NA,NA,,2016-17,Somerville - Full Circle High School,2740510,0,0,0,0,0,0,0,0,0,0,15,21,12,12,1,61 +NA,NA,,2016-17,Somerville - John F Kennedy,2740083,4,47,50,51,48,43,60,51,62,55,0,0,0,0,0,471 +NA,NA,,2016-17,Somerville - Next Wave Junior High,2740410,0,0,0,0,0,0,0,1,4,11,0,0,0,0,0,16 +NA,NA,,2016-17,Somerville - Somerville High,2740505,0,0,0,0,0,0,0,0,0,0,355,341,264,295,4,1259 +NA,NA,,2016-17,Somerville - West Somerville Neighborhood,2740115,18,43,46,45,34,37,30,35,51,38,0,0,0,0,0,377 +NA,NA,,2016-17,Somerville - Winter Hill Community,2740120,17,37,46,49,39,40,62,56,64,52,0,0,0,0,0,462 +NA,NA,,2016-17,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,0,0,0,139,139,137,137,0,0,0,0,0,552 +NA,NA,,2016-17,South Hadley - Mosier,2780020,0,0,0,148,123,157,0,0,0,0,0,0,0,0,0,428 +NA,NA,,2016-17,South Hadley - Plains Elementary,2780015,66,148,130,0,0,0,0,0,0,0,0,0,0,0,0,344 +NA,NA,,2016-17,South Hadley - South Hadley High,2780505,0,0,0,0,0,0,0,0,0,0,140,118,141,138,8,545 +NA,NA,,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0,0,0,0,0,0,0,0,0,0,200,182,184,151,0,717 +NA,NA,,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,4880550,0,72,51,50,50,50,53,53,65,66,83,59,57,49,0,758 +NA,NA,,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,0,0,0,0,0,0,0,0,158,176,165,137,0,636 +NA,NA,,2016-17,Southampton - William E Norris,2750005,34,74,64,63,66,81,71,67,0,0,0,0,0,0,0,520 +NA,NA,,2016-17,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,127,118,0,0,0,0,0,0,0,0,0,0,245 +NA,NA,,2016-17,Southborough - Margaret A Neary,2760020,0,0,0,0,0,137,161,0,0,0,0,0,0,0,0,298 +NA,NA,,2016-17,Southborough - Mary E Finn School,2760008,43,114,136,0,0,0,0,0,0,0,0,0,0,0,0,293 +NA,NA,,2016-17,Southborough - P Brent Trottier,2760305,0,0,0,0,0,0,0,142,157,160,0,0,0,0,0,459 +NA,NA,,2016-17,Southbridge - Charlton Street,2770005,0,0,68,84,88,96,85,0,0,0,0,0,0,0,0,421 +NA,NA,,2016-17,Southbridge - Eastford Road,2770010,75,174,3,0,0,0,0,0,0,0,0,0,0,0,0,252 +NA,NA,,2016-17,Southbridge - Southbridge High School,2770515,0,0,0,0,0,0,0,0,0,0,152,130,117,110,0,509 +NA,NA,,2016-17,Southbridge - Southbridge Middle School,2770315,0,0,0,0,0,0,0,168,161,180,0,0,0,0,0,509 +NA,NA,,2016-17,Southbridge - West Street,2770020,0,0,87,107,80,82,75,0,0,0,0,0,0,0,0,431 +NA,NA,,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,0,0,0,0,0,0,0,0,0,0,379,361,350,326,0,1416 +NA,NA,,2016-17,Southern Berkshire - Mt Everett Regional,7650505,0,0,0,0,0,0,0,0,46,52,55,48,45,46,0,292 +NA,NA,,2016-17,Southern Berkshire - New Marlborough Central,7650018,11,19,10,17,15,18,0,0,0,0,0,0,0,0,0,90 +NA,NA,,2016-17,Southern Berkshire - South Egremont,7650030,0,6,7,0,0,0,0,0,0,0,0,0,0,0,0,13 +NA,NA,,2016-17,Southern Berkshire - Undermountain,7650035,33,30,35,36,33,48,51,64,0,0,0,0,0,0,0,330 +NA,NA,,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,0,0,0,0,0,0,0,0,304,299,265,246,0,1114 +NA,NA,,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,7660215,0,7,14,8,20,10,11,12,0,0,0,0,0,0,0,82 +NA,NA,,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,0,91,103,99,99,0,0,0,0,0,0,0,392 +NA,NA,,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,0,0,0,0,0,0,126,122,114,125,128,120,2,737 +NA,NA,,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,62,85,94,97,0,0,0,0,0,0,0,0,0,0,0,338 +NA,NA,,2016-17,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,0,0,0,0,0,0,0,72,90,72,102,2,338 +NA,NA,,2016-17,Spencer-E Brookfield - East Brookfield Elementary,7670008,46,15,27,20,32,23,18,31,0,0,0,0,0,0,0,212 +NA,NA,,2016-17,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,0,0,0,112,98,97,107,0,0,0,0,0,414 +NA,NA,,2016-17,Spencer-E Brookfield - Wire Village School,7670040,0,60,74,101,96,99,0,0,0,0,0,0,0,0,0,430 +NA,NA,,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,76,46,37,41,43,39,40,32,31,26,0,0,0,0,0,411 +NA,NA,,2016-17,Springfield - Alice B Beal Elementary,2810175,0,52,46,49,41,45,43,0,0,0,0,0,0,0,0,276 +NA,NA,,2016-17,Springfield - Arthur T Talmadge,2810165,0,39,49,46,46,38,52,0,0,0,0,0,0,0,0,270 +NA,NA,,2016-17,Springfield - Balliet Middle School,2810360,0,0,0,0,0,0,0,7,11,28,0,0,0,0,0,46 +NA,NA,,2016-17,Springfield - Brightwood,2810025,0,46,53,60,57,56,51,0,0,0,0,0,0,0,0,323 +NA,NA,,2016-17,Springfield - Chestnut Accelerated Middle School (North),2810365,0,0,0,0,0,0,0,93,104,101,0,0,0,0,0,298 +NA,NA,,2016-17,Springfield - Chestnut Accelerated Middle School (South),2810366,0,0,0,0,0,0,0,111,105,101,0,0,0,0,0,317 +NA,NA,,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,0,0,0,0,0,0,0,109,104,72,0,0,0,0,0,285 +NA,NA,,2016-17,Springfield - Conservatory of the Arts,2810475,0,0,0,0,0,0,0,57,59,58,57,47,59,0,0,337 +NA,NA,,2016-17,Springfield - Daniel B Brunton,2810035,0,81,82,83,82,79,70,0,0,0,0,0,0,0,0,477 +NA,NA,,2016-17,Springfield - Early Childhood Education Center,2810001,144,0,0,0,0,0,0,0,0,0,0,0,0,0,0,144 +NA,NA,,2016-17,Springfield - Edward P. Boland School,2810010,185,113,82,96,113,99,100,0,0,0,0,0,0,0,0,788 +NA,NA,,2016-17,Springfield - Elias Brookings,2810030,48,59,59,47,62,52,52,0,0,0,0,0,0,0,0,379 +NA,NA,,2016-17,Springfield - Forest Park Middle,2810325,0,0,0,0,0,0,0,231,238,245,0,0,0,0,0,714 +NA,NA,,2016-17,Springfield - Frank H Freedman,2810075,0,50,52,51,65,55,42,0,0,0,0,0,0,0,0,315 +NA,NA,,2016-17,Springfield - Frederick Harris,2810080,46,96,95,96,89,104,68,0,0,0,0,0,0,0,0,594 +NA,NA,,2016-17,Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,0,0,0,0,0,0,0,4,10,7,6,0,27 +NA,NA,,2016-17,Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,0,0,0,0,0,0,0,6,12,11,19,0,48 +NA,NA,,2016-17,Springfield - German Gerena Community School,2810195,133,100,100,98,104,102,94,0,0,0,0,0,0,0,0,731 +NA,NA,,2016-17,Springfield - Glenwood,2810065,0,38,36,54,63,61,49,0,0,0,0,0,0,0,0,301 +NA,NA,,2016-17,Springfield - Glickman Elementary,2810068,0,63,53,51,66,64,62,0,0,0,0,0,0,0,0,359 +NA,NA,,2016-17,Springfield - High School Of Commerce,2810510,0,0,0,0,0,0,0,0,0,0,373,299,338,218,22,1250 +NA,NA,,2016-17,Springfield - Hiram L Dorman,2810050,0,43,57,59,71,36,57,0,0,0,0,0,0,0,0,323 +NA,NA,,2016-17,Springfield - Homer Street,2810085,0,71,64,80,83,79,59,0,0,0,0,0,0,0,0,436 +NA,NA,,2016-17,Springfield - Indian Orchard Elementary,2810100,76,88,107,108,100,118,69,0,0,0,0,0,0,0,0,666 +NA,NA,,2016-17,Springfield - John F Kennedy Middle,2810328,0,0,0,0,0,0,0,152,150,133,0,0,0,0,0,435 +NA,NA,,2016-17,Springfield - John J Duggan Middle,2810320,0,0,0,0,0,0,0,185,179,162,63,40,43,0,0,672 +NA,NA,,2016-17,Springfield - Kensington International School,2810110,0,50,55,45,55,46,55,0,0,0,0,0,0,0,0,306 +NA,NA,,2016-17,Springfield - Liberty,2810115,0,49,43,48,53,53,42,0,0,0,0,0,0,0,0,288 +NA,NA,,2016-17,Springfield - Liberty Preparatory Academy,2810560,0,0,0,0,0,0,0,0,0,0,3,4,0,6,0,13 +NA,NA,,2016-17,Springfield - Lincoln,2810120,0,71,59,74,73,73,54,0,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Springfield - M Marcus Kiley Middle,2810330,0,0,0,0,0,0,0,207,235,201,0,0,0,0,0,643 +NA,NA,,2016-17,Springfield - Margaret C Ells,2810060,129,39,51,0,0,0,0,0,0,0,0,0,0,0,0,219 +NA,NA,,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,2810125,43,44,43,61,50,56,35,0,0,0,0,0,0,0,0,332 +NA,NA,,2016-17,Springfield - Mary M Lynch,2810140,0,47,46,51,52,36,34,0,0,0,0,0,0,0,0,266 +NA,NA,,2016-17,Springfield - Mary M Walsh,2810155,0,51,49,61,55,43,49,0,0,0,0,0,0,0,0,308 +NA,NA,,2016-17,Springfield - Mary O Pottenger,2810145,0,68,70,83,88,69,68,0,0,0,0,0,0,0,0,446 +NA,NA,,2016-17,Springfield - Milton Bradley School,2810023,46,105,90,92,93,73,77,0,0,0,0,0,0,0,0,576 +NA,NA,,2016-17,Springfield - Rebecca M Johnson,2810055,144,95,90,127,104,99,116,0,0,0,0,0,0,0,0,775 +NA,NA,,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,0,0,0,0,0,0,0,0,0,0,374,360,358,342,8,1442 +NA,NA,,2016-17,Springfield - Samuel Bowles,2810020,0,54,47,70,58,57,47,0,0,0,0,0,0,0,0,333 +NA,NA,,2016-17,Springfield - South End Middle School,2810355,0,0,0,0,0,0,0,86,82,78,0,0,0,0,0,246 +NA,NA,,2016-17,Springfield - Springfield Central High,2810500,0,0,0,0,0,0,0,0,0,0,683,518,378,452,24,2055 +NA,NA,,2016-17,Springfield - Springfield High School,2810570,0,0,0,0,0,0,0,0,0,0,59,36,13,8,1,117 +NA,NA,,2016-17,Springfield - Springfield High School of Science and Technology,2810530,0,0,0,0,0,0,0,0,0,0,419,351,297,265,34,1366 +NA,NA,,2016-17,Springfield - Springfield Public Day Elementary School,2810005,0,0,3,6,15,18,12,0,0,0,0,0,0,0,0,54 +NA,NA,,2016-17,Springfield - Springfield Public Day High School,2810550,0,0,0,0,0,0,0,0,0,0,44,28,25,10,4,111 +NA,NA,,2016-17,Springfield - Springfield Public Day Middle School,2810345,0,0,0,0,0,0,0,17,16,23,0,0,0,0,0,56 +NA,NA,,2016-17,Springfield - STEM Middle Academy,2810350,0,0,0,0,0,0,0,99,101,88,0,0,0,0,0,288 +NA,NA,,2016-17,Springfield - Sumner Avenue,2810160,71,84,87,86,88,75,85,0,0,0,0,0,0,0,0,576 +NA,NA,,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,0,0,0,0,0,0,0,107,110,99,103,98,91,91,14,713 +NA,NA,,2016-17,Springfield - Thomas M Balliet,2810015,45,42,43,50,50,50,43,0,0,0,0,0,0,0,0,323 +NA,NA,,2016-17,Springfield - Van Sickle Academy,2810480,0,0,0,0,0,0,0,120,98,112,0,0,0,0,0,330 +NA,NA,,2016-17,Springfield - Van Sickle International Baccalaureate,2810485,0,0,0,0,0,0,0,125,102,138,0,0,0,0,0,365 +NA,NA,,2016-17,Springfield - Warner,2810180,31,34,49,39,50,40,36,0,0,0,0,0,0,0,0,279 +NA,NA,,2016-17,Springfield - Washington,2810185,46,57,56,58,74,74,69,0,0,0,0,0,0,0,0,434 +NA,NA,,2016-17,Springfield - White Street,2810190,0,83,77,70,75,72,72,0,0,0,0,0,0,0,0,449 +NA,NA,,2016-17,Springfield - William N. DeBerry,2810045,0,48,49,42,52,54,53,0,0,0,0,0,0,0,0,298 +NA,NA,,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,0,54,54,55,0,0,0,0,0,0,0,0,0,0,0,163 +NA,NA,,2016-17,Stoneham - Colonial Park,2840005,44,48,43,45,48,38,0,0,0,0,0,0,0,0,0,266 +NA,NA,,2016-17,Stoneham - Robin Hood,2840025,45,62,65,62,68,66,0,0,0,0,0,0,0,0,0,368 +NA,NA,,2016-17,Stoneham - South,2840030,0,63,67,63,70,71,0,0,0,0,0,0,0,0,0,334 +NA,NA,,2016-17,Stoneham - Stoneham Central Middle School,2840405,0,0,0,0,0,0,165,166,171,204,0,0,0,0,0,706 +NA,NA,,2016-17,Stoneham - Stoneham High,2840505,0,0,0,0,0,0,0,0,0,0,175,178,155,171,0,679 +NA,NA,,2016-17,Stoughton - Edwin A Jones Early Childhood Center,2850012,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,90 +NA,NA,,2016-17,Stoughton - Helen Hansen Elementary,2850010,0,39,35,42,35,53,44,0,0,0,0,0,0,0,0,248 +NA,NA,,2016-17,Stoughton - Joseph H Gibbons,2850025,0,53,49,57,74,57,73,0,0,0,0,0,0,0,0,363 +NA,NA,,2016-17,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,68,72,48,59,53,78,0,0,0,0,0,0,0,0,378 +NA,NA,,2016-17,Stoughton - O'Donnell Middle School,2850405,0,0,0,0,0,0,0,257,241,299,0,0,0,0,0,797 +NA,NA,,2016-17,Stoughton - South Elementary,2850015,0,33,46,42,39,48,47,0,0,0,0,0,0,0,0,255 +NA,NA,,2016-17,Stoughton - Stoughton High,2850505,0,0,0,0,0,0,0,0,0,0,299,282,254,224,2,1061 +NA,NA,,2016-17,Stoughton - West Elementary,2850020,26,50,51,52,55,60,69,0,0,0,0,0,0,0,0,363 +NA,NA,,2016-17,Sturbridge - Burgess Elementary,2870005,72,113,107,107,141,123,128,126,0,0,0,0,0,0,0,917 +NA,NA,,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,0,0,0,0,0,0,0,0,0,217,214,191,182,0,804 +NA,NA,,2016-17,Sudbury - Ephraim Curtis Middle,2880305,0,0,0,0,0,0,0,305,333,339,0,0,0,0,0,977 +NA,NA,,2016-17,Sudbury - General John Nixon Elementary,2880025,0,42,61,55,71,57,71,0,0,0,0,0,0,0,0,357 +NA,NA,,2016-17,Sudbury - Israel Loring School,2880015,0,76,84,66,90,82,89,0,0,0,0,0,0,0,0,487 +NA,NA,,2016-17,Sudbury - Josiah Haynes,2880010,0,45,59,72,54,87,70,0,0,0,0,0,0,0,0,387 +NA,NA,,2016-17,Sudbury - Peter Noyes,2880030,68,82,83,86,81,104,91,0,0,0,0,0,0,0,0,595 +NA,NA,,2016-17,Sunderland - Sunderland Elementary,2890005,25,39,36,22,39,25,31,40,0,0,0,0,0,0,0,257 +NA,NA,,2016-17,Sutton - Sutton Early Learning,2900003,30,84,94,108,0,0,0,0,0,0,0,0,0,0,0,316 +NA,NA,,2016-17,Sutton - Sutton Elementary,2900005,0,0,0,0,99,119,113,0,0,0,0,0,0,0,0,331 +NA,NA,,2016-17,Sutton - Sutton High School,2900510,0,0,0,0,0,0,0,0,0,0,103,108,115,100,0,426 +NA,NA,,2016-17,Sutton - Sutton Middle School,2900305,0,0,0,0,0,0,0,132,126,117,0,0,0,0,0,375 +NA,NA,,2016-17,Swampscott - Clarke,2910005,0,38,39,41,45,43,0,0,0,0,0,0,0,0,0,206 +NA,NA,,2016-17,Swampscott - Hadley,2910010,0,55,60,57,63,62,0,0,0,0,0,0,0,0,0,297 +NA,NA,,2016-17,Swampscott - Stanley,2910020,0,53,55,53,61,56,0,0,0,0,0,0,0,0,0,278 +NA,NA,,2016-17,Swampscott - Swampscott High,2910505,0,0,0,0,0,0,0,0,0,0,153,174,162,186,2,677 +NA,NA,,2016-17,Swampscott - Swampscott Middle,2910305,58,0,0,0,0,0,152,161,205,197,0,0,0,0,0,773 +NA,NA,,2016-17,Swansea - Elizabeth S Brown,2920006,0,0,0,0,95,95,109,0,0,0,0,0,0,0,0,299 +NA,NA,,2016-17,Swansea - Gardner,2920015,0,92,74,77,0,0,0,0,0,0,0,0,0,0,0,243 +NA,NA,,2016-17,Swansea - Joseph Case High,2920505,0,0,0,0,0,0,0,0,0,0,144,128,123,133,0,528 +NA,NA,,2016-17,Swansea - Joseph Case Jr High,2920305,0,0,0,0,0,0,0,156,173,168,0,0,0,0,0,497 +NA,NA,,2016-17,Swansea - Joseph G Luther,2920020,0,0,0,0,65,82,73,0,0,0,0,0,0,0,0,220 +NA,NA,,2016-17,Swansea - Mark G Hoyle Elementary,2920017,64,72,52,75,0,0,0,0,0,0,0,0,0,0,0,263 +NA,NA,,2016-17,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,0,0,0,0,0,0,293,289,0,0,0,0,0,582 +NA,NA,,2016-17,Tantasqua - Tantasqua Regional Sr High,7700505,0,0,0,0,0,0,0,0,0,0,194,169,182,209,6,760 +NA,NA,,2016-17,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,0,0,0,0,0,0,0,119,132,119,127,0,497 +NA,NA,,2016-17,Taunton - Benjamin Friedman Middle,2930315,0,0,0,0,0,0,269,249,286,0,0,0,0,0,0,804 +NA,NA,,2016-17,Taunton - East Taunton Elementary,2930010,0,121,126,128,112,120,0,0,0,0,0,0,0,0,0,607 +NA,NA,,2016-17,Taunton - Edmund Hatch Bennett,2930007,0,66,57,62,82,66,0,0,0,0,0,0,0,0,0,333 +NA,NA,,2016-17,Taunton - Edward F. Leddy Preschool,2930005,329,0,0,0,0,0,0,0,0,0,0,0,0,0,0,329 +NA,NA,,2016-17,Taunton - Elizabeth Pole,2930027,0,107,128,116,137,122,0,0,0,0,0,0,0,0,0,610 +NA,NA,,2016-17,Taunton - H H Galligan,2930057,0,47,48,43,48,60,0,0,0,0,0,0,0,0,0,246 +NA,NA,,2016-17,Taunton - Hopewell,2930035,0,59,55,59,59,60,0,0,0,0,0,0,0,0,0,292 +NA,NA,,2016-17,Taunton - John F Parker Middle,2930305,0,0,0,0,0,0,169,136,148,0,0,0,0,0,0,453 +NA,NA,,2016-17,Taunton - Joseph C Chamberlain,2930008,0,83,113,94,121,118,0,0,0,0,0,0,0,0,0,529 +NA,NA,,2016-17,Taunton - Joseph H Martin,2930042,0,0,0,0,0,0,221,233,268,0,0,0,0,0,0,722 +NA,NA,,2016-17,Taunton - Mulcahey Elementary School,2930015,0,101,89,103,92,104,0,0,0,0,0,0,0,0,0,489 +NA,NA,,2016-17,Taunton - Taunton Alternative High School,2930525,0,0,0,0,0,0,0,0,0,0,3,16,14,56,0,89 +NA,NA,,2016-17,Taunton - Taunton High,2930505,0,0,0,0,0,0,0,0,0,644,502,483,431,426,16,2502 +NA,NA,,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,20,27,31,36,33,40,74,90,130,210,180,131,117,0,1119 +NA,NA,,2016-17,Tewksbury - Heath-Brook,2950010,0,126,106,106,0,0,0,0,0,0,0,0,0,0,0,338 +NA,NA,,2016-17,Tewksbury - John F. Ryan,2950023,0,0,0,0,0,0,261,275,0,0,0,0,0,0,0,536 +NA,NA,,2016-17,Tewksbury - John W. Wynn Middle,2950305,0,0,0,0,0,0,0,0,312,305,0,0,0,0,0,617 +NA,NA,,2016-17,Tewksbury - L F Dewing,2950001,138,149,131,146,0,0,0,0,0,0,0,0,0,0,0,564 +NA,NA,,2016-17,Tewksbury - Louise Davy Trahan,2950025,0,0,0,0,133,122,0,0,0,0,0,0,0,0,0,255 +NA,NA,,2016-17,Tewksbury - North Street,2950020,0,0,0,0,127,130,0,0,0,0,0,0,0,0,0,257 +NA,NA,,2016-17,Tewksbury - Tewksbury Memorial High,2950505,0,0,0,0,0,0,0,0,0,0,243,235,245,251,6,980 +NA,NA,,2016-17,Tisbury - Tisbury Elementary,2960005,5,28,33,31,41,43,36,29,39,36,0,0,0,0,0,321 +NA,NA,,2016-17,Topsfield - Proctor Elementary,2980005,0,0,0,0,0,76,79,89,0,0,0,0,0,0,0,244 +NA,NA,,2016-17,Topsfield - Steward Elementary,2980010,43,76,80,85,98,0,0,0,0,0,0,0,0,0,0,382 +NA,NA,,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0,0,0,0,0,0,0,0,0,284,277,225,237,0,1023 +NA,NA,,2016-17,Triton - Newbury Elementary,7730020,23,42,56,55,61,53,74,76,0,0,0,0,0,0,0,440 +NA,NA,,2016-17,Triton - Pine Grove,7730025,21,59,51,68,59,70,54,89,0,0,0,0,0,0,0,471 +NA,NA,,2016-17,Triton - Salisbury Elementary,7730015,33,70,57,62,79,75,62,56,0,0,0,0,0,0,0,494 +NA,NA,,2016-17,Triton - Triton Regional High School,7730505,0,0,0,0,0,0,0,0,0,0,189,181,184,162,0,716 +NA,NA,,2016-17,Triton - Triton Regional Middle School,7730405,0,0,0,0,0,0,0,0,193,201,0,0,0,0,0,394 +NA,NA,,2016-17,Truro - Truro Central,3000005,21,12,14,11,14,17,18,9,0,0,0,0,0,0,0,116 +NA,NA,,2016-17,Tyngsborough - Tyngsborough Elementary,3010020,67,121,127,103,138,115,116,0,0,0,0,0,0,0,0,787 +NA,NA,,2016-17,Tyngsborough - Tyngsborough High School,3010505,0,0,0,0,0,0,0,0,0,0,129,122,128,128,0,507 +NA,NA,,2016-17,Tyngsborough - Tyngsborough Middle,3010305,0,0,0,0,0,0,0,135,148,136,0,0,0,0,0,419 +NA,NA,,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,0,0,0,0,0,0,0,183,168,121,0,0,0,0,0,472 +NA,NA,,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,52,65,72,70,97,99,89,77,73,50,0,0,0,0,0,744 +NA,NA,,2016-17,Up-Island Regional - Chilmark Elementary,7740010,0,8,4,7,8,7,10,0,0,0,0,0,0,0,0,44 +NA,NA,,2016-17,Up-Island Regional - West Tisbury Elementary,7740020,9,31,39,38,40,34,35,57,46,20,0,0,0,0,0,349 +NA,NA,,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,0,0,0,0,0,0,0,192,175,176,166,0,709 +NA,NA,,2016-17,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0,0,5,10,31,0,46 +NA,NA,,2016-17,Uxbridge - McCloskey Middle School,3040015,0,0,0,0,0,0,0,127,131,161,0,0,0,0,0,419 +NA,NA,,2016-17,Uxbridge - Taft Early Learning Center,3040005,88,124,127,138,0,0,0,0,0,0,0,0,0,0,0,477 +NA,NA,,2016-17,Uxbridge - Uxbridge High,3040505,0,0,0,0,0,0,0,0,0,0,115,124,120,119,4,482 +NA,NA,,2016-17,Uxbridge - Whitin Elementary School,3040020,0,0,0,0,126,141,144,0,0,0,0,0,0,0,0,411 +NA,NA,,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,0,0,0,0,0,0,88,89,79,57,0,0,0,0,0,313 +NA,NA,,2016-17,Wachusett - Central Tree Middle,7750310,0,0,0,0,0,0,0,137,120,145,0,0,0,0,0,402 +NA,NA,,2016-17,Wachusett - Chocksett Middle School,7750315,0,0,0,0,0,0,98,96,92,91,0,0,0,0,0,377 +NA,NA,,2016-17,Wachusett - Davis Hill Elementary,7750018,0,64,75,70,62,88,97,0,0,0,0,0,0,0,0,456 +NA,NA,,2016-17,Wachusett - Dawson,7750020,0,69,82,82,88,95,91,0,0,0,0,0,0,0,0,507 +NA,NA,,2016-17,Wachusett - Early Childhood Center,7750001,150,0,0,0,0,0,0,0,0,0,0,0,0,0,0,150 +NA,NA,,2016-17,Wachusett - Glenwood Elementary School,7750060,0,0,0,0,111,131,118,0,0,0,0,0,0,0,0,360 +NA,NA,,2016-17,Wachusett - Houghton Elementary,7750027,0,56,86,70,99,81,0,0,0,0,0,0,0,0,0,392 +NA,NA,,2016-17,Wachusett - Leroy E.Mayo,7750032,0,71,76,83,85,85,92,0,0,0,0,0,0,0,0,492 +NA,NA,,2016-17,Wachusett - Mountview Middle,7750305,0,0,0,0,0,0,0,253,267,289,0,0,0,0,0,809 +NA,NA,,2016-17,Wachusett - Naquag Elementary School,7750005,0,95,132,96,0,0,0,0,0,0,0,0,0,0,0,323 +NA,NA,,2016-17,Wachusett - Paxton Center,7750040,0,40,36,54,51,62,62,64,62,64,0,0,0,0,0,495 +NA,NA,,2016-17,Wachusett - Thomas Prince,7750045,0,41,35,48,41,40,49,47,44,50,0,0,0,0,0,395 +NA,NA,,2016-17,Wachusett - Wachusett Regional High,7750505,0,0,0,0,0,0,0,0,0,0,528,589,502,507,14,2140 +NA,NA,,2016-17,Wakefield - Dolbeare,3050005,0,102,93,85,79,83,0,0,0,0,0,0,0,0,0,442 +NA,NA,,2016-17,Wakefield - Early Childhood Center at the Doyle School,3050001,129,0,0,0,0,0,0,0,0,0,0,0,0,0,0,129 +NA,NA,,2016-17,Wakefield - Galvin Middle School,3050310,0,0,0,0,0,0,244,257,290,294,0,0,0,0,0,1085 +NA,NA,,2016-17,Wakefield - Greenwood,3050020,0,44,43,49,46,41,0,0,0,0,0,0,0,0,0,223 +NA,NA,,2016-17,Wakefield - Wakefield Memorial High,3050505,0,0,0,0,0,0,0,0,0,0,272,228,271,237,8,1016 +NA,NA,,2016-17,Wakefield - Walton,3050040,0,0,46,48,66,41,0,0,0,0,0,0,0,0,0,201 +NA,NA,,2016-17,Wakefield - Woodville School,3050015,0,119,81,79,70,93,0,0,0,0,0,0,0,0,0,442 +NA,NA,,2016-17,Wales - Wales Elementary,3060005,21,19,22,18,24,19,21,20,0,0,0,0,0,0,0,164 +NA,NA,,2016-17,Walpole - Bird Middle,3070305,0,0,0,0,0,0,0,162,156,162,0,0,0,0,0,480 +NA,NA,,2016-17,Walpole - Boyden,3070010,0,60,55,51,58,68,86,0,0,0,0,0,0,0,0,378 +NA,NA,,2016-17,Walpole - Daniel Feeney Preschool Center,3070002,82,0,0,0,0,0,0,0,0,0,0,0,0,0,0,82 +NA,NA,,2016-17,Walpole - Eleanor N Johnson Middle,3070310,0,0,0,0,0,0,0,146,157,143,0,0,0,0,0,446 +NA,NA,,2016-17,Walpole - Elm Street School,3070005,0,72,68,63,64,84,77,0,0,0,0,0,0,0,0,428 +NA,NA,,2016-17,Walpole - Fisher,3070015,0,69,79,79,91,66,72,0,0,0,0,0,0,0,0,456 +NA,NA,,2016-17,Walpole - Old Post Road,3070018,0,78,50,79,77,66,92,0,0,0,0,0,0,0,0,442 +NA,NA,,2016-17,Walpole - Walpole High,3070505,0,0,0,0,0,0,0,0,0,0,278,298,286,274,7,1143 +NA,NA,,2016-17,Waltham - Douglas MacArthur Elementary School,3080032,0,79,80,80,77,62,54,0,0,0,0,0,0,0,0,432 +NA,NA,,2016-17,Waltham - Henry Whittemore Elementary School,3080065,0,73,77,64,87,80,64,0,0,0,0,0,0,0,0,445 +NA,NA,,2016-17,Waltham - James Fitzgerald Elementary School,3080060,0,69,60,77,73,90,79,0,0,0,0,0,0,0,0,448 +NA,NA,,2016-17,Waltham - John F Kennedy Middle,3080404,0,0,0,0,0,0,0,169,159,177,0,0,0,0,0,505 +NA,NA,,2016-17,Waltham - John W. McDevitt Middle School,3080415,0,0,0,0,0,0,0,205,191,190,0,0,0,0,0,586 +NA,NA,,2016-17,Waltham - Northeast Elementary School,3080040,100,65,87,72,73,61,65,0,0,0,0,0,0,0,0,523 +NA,NA,,2016-17,Waltham - Thomas R Plympton Elementary School,3080050,0,70,85,70,78,61,75,0,0,0,0,0,0,0,0,439 +NA,NA,,2016-17,Waltham - Waltham Public Schools Dual Language Program,3080001,0,40,0,0,0,0,0,0,0,0,0,0,0,0,0,40 +NA,NA,,2016-17,Waltham - Waltham Sr High,3080505,0,0,0,0,0,0,0,0,0,0,416,403,391,376,0,1586 +NA,NA,,2016-17,Waltham - William F. Stanley Elementary School,3080005,48,76,74,60,60,69,70,0,0,0,0,0,0,0,0,457 +NA,NA,,2016-17,Ware - Stanley M Koziol Elementary School,3090020,44,96,90,92,92,0,0,0,0,0,0,0,0,0,0,414 +NA,NA,,2016-17,Ware - Ware Junior/Senior High School,3090505,0,0,0,0,0,0,0,0,92,102,70,78,65,65,3,475 +NA,NA,,2016-17,Ware - Ware Middle School,3090305,0,0,0,0,0,119,119,99,0,0,0,0,0,0,0,337 +NA,NA,,2016-17,Wareham - John William Decas,3100003,0,173,215,220,0,0,0,0,0,0,0,0,0,0,0,608 +NA,NA,,2016-17,Wareham - Minot Forest,3100017,93,0,0,0,216,198,0,0,0,0,0,0,0,0,0,507 +NA,NA,,2016-17,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,0,0,0,0,0,0,0,12,12,19,18,0,61 +NA,NA,,2016-17,Wareham - Wareham Middle,3100305,0,0,0,0,0,0,190,204,191,182,0,0,0,0,0,767 +NA,NA,,2016-17,Wareham - Wareham Senior High,3100505,0,0,0,0,0,0,0,0,0,0,171,106,120,112,9,518 +NA,NA,,2016-17,Watertown - Cunniff,3140015,9,51,42,53,47,42,52,0,0,0,0,0,0,0,0,296 +NA,NA,,2016-17,Watertown - Hosmer,3140020,73,120,90,92,84,92,82,0,0,0,0,0,0,0,0,633 +NA,NA,,2016-17,Watertown - James Russell Lowell,3140025,18,89,71,72,64,63,55,0,0,0,0,0,0,0,0,432 +NA,NA,,2016-17,Watertown - Watertown High,3140505,0,0,0,0,0,0,0,0,0,0,154,172,164,168,4,662 +NA,NA,,2016-17,Watertown - Watertown Middle,3140305,0,0,0,0,0,0,0,194,163,212,0,0,0,0,0,569 +NA,NA,,2016-17,Wayland - Claypit Hill School,3150005,0,90,84,82,87,101,95,0,0,0,0,0,0,0,0,539 +NA,NA,,2016-17,Wayland - Happy Hollow School,3150015,0,58,57,66,59,73,73,0,0,0,0,0,0,0,0,386 +NA,NA,,2016-17,Wayland - Loker School,3150020,0,36,41,42,37,53,48,0,0,0,0,0,0,0,0,257 +NA,NA,,2016-17,Wayland - Wayland High School,3150505,0,0,0,0,0,0,0,0,0,0,214,204,219,191,0,828 +NA,NA,,2016-17,Wayland - Wayland Middle School,3150305,0,0,0,0,0,0,0,207,197,232,0,0,0,0,0,636 +NA,NA,,2016-17,Webster - Bartlett High School,3160505,0,0,0,0,0,0,0,0,0,0,101,136,113,88,5,443 +NA,NA,,2016-17,Webster - Park Avenue Elementary,3160015,53,149,163,168,156,156,0,0,0,0,0,0,0,0,0,845 +NA,NA,,2016-17,Webster - Webster Middle School,3160315,0,0,0,0,0,0,133,146,153,134,0,0,0,0,0,566 +NA,NA,,2016-17,Wellesley - Ernest F Upham,3170050,0,38,22,43,46,38,35,0,0,0,0,0,0,0,0,222 +NA,NA,,2016-17,Wellesley - Hunnewell,3170025,0,40,40,44,46,40,41,0,0,0,0,0,0,0,0,251 +NA,NA,,2016-17,Wellesley - John D Hardy,3170020,0,39,53,44,55,58,59,0,0,0,0,0,0,0,0,308 +NA,NA,,2016-17,Wellesley - Joseph E Fiske,3170015,106,55,44,57,61,57,61,0,0,0,0,0,0,0,0,441 +NA,NA,,2016-17,Wellesley - Katharine Lee Bates,3170005,0,54,61,58,71,68,67,0,0,0,0,0,0,0,0,379 +NA,NA,,2016-17,Wellesley - Schofield,3170045,0,53,58,63,67,67,60,0,0,0,0,0,0,0,0,368 +NA,NA,,2016-17,Wellesley - Sprague Elementary School,3170048,0,66,65,66,67,65,63,0,0,0,0,0,0,0,0,392 +NA,NA,,2016-17,Wellesley - Wellesley Middle,3170305,0,0,0,0,0,0,0,392,350,403,0,0,0,0,0,1145 +NA,NA,,2016-17,Wellesley - Wellesley Sr High,3170505,0,0,0,0,0,0,0,0,0,0,375,383,399,355,0,1512 +NA,NA,,2016-17,Wellfleet - Wellfleet Elementary,3180005,12,18,18,15,9,31,10,0,0,0,0,0,0,0,0,113 +NA,NA,,2016-17,West Boylston - Major Edwards Elementary,3220005,26,58,62,55,68,67,66,0,0,0,0,0,0,0,0,402 +NA,NA,,2016-17,West Boylston - West Boylston Junior/Senior High,3220505,0,0,0,0,0,0,0,82,95,84,65,60,66,61,0,513 +NA,NA,,2016-17,West Bridgewater - Howard School,3230305,0,0,0,0,0,92,85,93,0,0,0,0,0,0,0,270 +NA,NA,,2016-17,West Bridgewater - Rose L Macdonald,3230003,0,0,82,81,94,0,0,0,0,0,0,0,0,0,0,257 +NA,NA,,2016-17,West Bridgewater - Spring Street School,3230005,59,82,0,0,0,0,0,0,0,0,0,0,0,0,0,141 +NA,NA,,2016-17,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,0,0,0,0,0,113,105,102,106,94,99,0,619 +NA,NA,,2016-17,West Springfield - 21st Century Skills Academy,3320515,0,0,0,0,0,0,0,0,0,0,0,1,0,13,0,14 +NA,NA,,2016-17,West Springfield - Cowing Early Childhood,3320001,120,0,0,0,0,0,0,0,0,0,0,0,0,0,0,120 +NA,NA,,2016-17,West Springfield - John Ashley,3320005,0,226,0,0,0,0,0,0,0,0,0,0,0,0,0,226 +NA,NA,,2016-17,West Springfield - John R Fausey,3320010,0,2,82,81,107,91,99,0,0,0,0,0,0,0,0,462 +NA,NA,,2016-17,West Springfield - Memorial,3320025,0,0,44,50,41,63,38,0,0,0,0,0,0,0,0,236 +NA,NA,,2016-17,West Springfield - Mittineague,3320030,0,0,33,30,36,30,34,0,0,0,0,0,0,0,0,163 +NA,NA,,2016-17,West Springfield - Philip G Coburn,3320007,0,61,112,108,91,77,66,0,0,0,0,0,0,0,0,515 +NA,NA,,2016-17,West Springfield - Tatham,3320040,0,0,39,47,42,44,55,0,0,0,0,0,0,0,0,227 +NA,NA,,2016-17,West Springfield - West Springfield High,3320505,0,0,0,0,0,0,0,0,0,0,321,301,300,282,15,1219 +NA,NA,,2016-17,West Springfield - West Springfield Middle,3320305,0,0,0,0,0,0,0,316,286,310,0,0,0,0,0,912 +NA,NA,,2016-17,Westborough - Annie E Fales,3210010,0,85,79,91,86,0,0,0,0,0,0,0,0,0,0,341 +NA,NA,,2016-17,Westborough - Elsie A Hastings Elementary,3210025,102,95,94,95,100,0,0,0,0,0,0,0,0,0,0,486 +NA,NA,,2016-17,Westborough - J Harding Armstrong,3210005,0,111,97,98,94,0,0,0,0,0,0,0,0,0,0,400 +NA,NA,,2016-17,Westborough - Mill Pond School,3210045,0,0,0,0,0,308,302,279,0,0,0,0,0,0,0,889 +NA,NA,,2016-17,Westborough - Sarah W Gibbons Middle,3210305,0,0,0,0,0,0,0,0,315,321,0,0,0,0,0,636 +NA,NA,,2016-17,Westborough - Westborough High,3210505,0,0,0,0,0,0,0,0,0,0,266,267,271,245,4,1053 +NA,NA,,2016-17,Westfield - Abner Gibbs,3250020,0,40,38,25,38,43,34,0,0,0,0,0,0,0,0,218 +NA,NA,,2016-17,Westfield - Fort Meadow Early Childhood Center,3250003,175,0,0,0,0,0,0,0,0,0,0,0,0,0,0,175 +NA,NA,,2016-17,Westfield - Franklin Ave,3250015,0,43,45,38,45,34,46,0,0,0,0,0,0,0,0,251 +NA,NA,,2016-17,Westfield - Highland,3250025,0,53,64,72,68,65,74,0,0,0,0,0,0,0,0,396 +NA,NA,,2016-17,Westfield - Munger Hill,3250033,0,56,62,53,64,72,87,0,0,0,0,0,0,0,0,394 +NA,NA,,2016-17,Westfield - North Middle School,3250305,0,0,0,0,0,0,0,203,227,210,0,0,0,0,0,640 +NA,NA,,2016-17,Westfield - Paper Mill,3250036,0,69,71,74,71,74,74,0,0,0,0,0,0,0,0,433 +NA,NA,,2016-17,Westfield - Russell Elementary School,3250055,0,26,22,33,44,33,26,0,0,0,0,0,0,0,0,184 +NA,NA,,2016-17,Westfield - South Middle School,3250310,0,0,0,0,0,0,0,193,200,197,0,0,0,0,0,590 +NA,NA,,2016-17,Westfield - Southampton Road,3250040,0,82,68,69,75,72,87,0,0,0,0,0,0,0,0,453 +NA,NA,,2016-17,Westfield - Westfield High,3250505,0,0,0,0,0,0,0,0,0,0,319,290,322,303,35,1269 +NA,NA,,2016-17,Westfield - Westfield Technical Academy,3250605,0,0,0,0,0,0,0,0,0,0,156,139,143,102,0,540 +NA,NA,,2016-17,Westford - Abbot Elementary,3260004,0,0,0,0,115,118,123,0,0,0,0,0,0,0,0,356 +NA,NA,,2016-17,Westford - Blanchard Middle,3260310,0,0,0,0,0,0,0,191,214,209,0,0,0,0,0,614 +NA,NA,,2016-17,Westford - Col John Robinson,3260025,0,74,105,92,0,0,0,0,0,0,0,0,0,0,0,271 +NA,NA,,2016-17,Westford - Day Elementary,3260007,0,0,0,0,104,124,129,0,0,0,0,0,0,0,0,357 +NA,NA,,2016-17,Westford - John A. Crisafulli Elementary School,3260045,0,0,0,0,100,115,121,0,0,0,0,0,0,0,0,336 +NA,NA,,2016-17,Westford - Millennium Elementary,3260013,119,0,0,0,0,0,0,0,0,0,0,0,0,0,0,119 +NA,NA,,2016-17,Westford - Nabnasset,3260015,0,90,143,128,0,0,0,0,0,0,0,0,0,0,0,361 +NA,NA,,2016-17,Westford - Rita E. Miller Elementary School,3260055,0,95,119,121,0,0,0,0,0,0,0,0,0,0,0,335 +NA,NA,,2016-17,Westford - Stony Brook School,3260330,0,0,0,0,0,0,0,251,186,254,0,0,0,0,0,691 +NA,NA,,2016-17,Westford - Westford Academy,3260505,0,0,0,0,0,0,0,0,0,0,430,455,393,398,4,1680 +NA,NA,,2016-17,Westhampton - Westhampton Elementary School,3270005,14,14,17,18,17,15,18,17,0,0,0,0,0,0,0,130 +NA,NA,,2016-17,Weston - Country,3300010,21,56,74,77,57,0,0,0,0,0,0,0,0,0,0,285 +NA,NA,,2016-17,Weston - Field Elementary School,3300012,0,0,0,0,0,190,157,0,0,0,0,0,0,0,0,347 +NA,NA,,2016-17,Weston - Weston High,3300505,0,0,0,0,0,0,0,0,0,0,171,202,146,186,1,706 +NA,NA,,2016-17,Weston - Weston Middle,3300305,0,0,0,0,0,0,0,165,168,181,0,0,0,0,0,514 +NA,NA,,2016-17,Weston - Woodland,3300015,21,71,59,76,75,0,0,0,0,0,0,0,0,0,0,302 +NA,NA,,2016-17,Westport - Alice A Macomber,3310015,45,104,114,120,0,0,0,0,0,0,0,0,0,0,0,383 +NA,NA,,2016-17,Westport - Westport Elementary,3310030,0,0,0,0,111,120,147,113,0,0,0,0,0,0,0,491 +NA,NA,,2016-17,Westport - Westport Junior/Senior High School,3310515,0,0,0,0,0,0,0,0,124,138,60,99,69,86,0,576 +NA,NA,,2016-17,Westwood - Deerfield School,3350010,0,23,30,42,31,49,48,0,0,0,0,0,0,0,0,223 +NA,NA,,2016-17,Westwood - Downey,3350012,0,39,42,36,44,31,52,0,0,0,0,0,0,0,0,244 +NA,NA,,2016-17,Westwood - E W Thurston Middle,3350305,0,0,0,0,0,0,0,273,262,260,0,0,0,0,0,795 +NA,NA,,2016-17,Westwood - Martha Jones,3350017,0,39,46,44,54,50,60,0,0,0,0,0,0,0,0,293 +NA,NA,,2016-17,Westwood - Paul Hanlon,3350015,0,30,36,40,42,27,47,0,0,0,0,0,0,0,0,222 +NA,NA,,2016-17,Westwood - Westwood High,3350505,0,0,0,0,0,0,0,0,0,0,237,260,248,254,0,999 +NA,NA,,2016-17,Westwood - Westwood Integrated Preschool,3350050,42,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42 +NA,NA,,2016-17,Westwood - William E Sheehan,3350025,0,46,53,71,52,65,57,0,0,0,0,0,0,0,0,344 +NA,NA,,2016-17,Weymouth - Abigail Adams Middle School,3360310,0,0,0,0,0,0,481,458,0,0,0,0,0,0,0,939 +NA,NA,,2016-17,Weymouth - Academy Avenue,3360005,0,61,53,60,80,63,0,0,0,0,0,0,0,0,0,317 +NA,NA,,2016-17,Weymouth - Frederick C Murphy,3360050,0,22,51,50,55,62,0,0,0,0,0,0,0,0,0,240 +NA,NA,,2016-17,Weymouth - Johnson Early Childhood Center,3360003,199,0,0,0,0,0,0,0,0,0,0,0,0,0,0,199 +NA,NA,,2016-17,Weymouth - Lawrence W Pingree,3360065,0,49,43,49,34,45,0,0,0,0,0,0,0,0,0,220 +NA,NA,,2016-17,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,0,0,0,0,3,3,479,431,0,0,0,0,0,916 +NA,NA,,2016-17,Weymouth - Ralph Talbot,3360085,0,56,61,60,49,56,0,0,0,0,0,0,0,0,0,282 +NA,NA,,2016-17,Weymouth - Thomas V Nash,3360060,0,45,44,41,55,46,0,0,0,0,0,0,0,0,0,231 +NA,NA,,2016-17,Weymouth - Thomas W. Hamilton Primary School,3360105,0,60,78,68,77,62,0,0,0,0,0,0,0,0,0,345 +NA,NA,,2016-17,Weymouth - Wessagusset,3360110,0,48,61,66,61,58,0,0,0,0,0,0,0,0,0,294 +NA,NA,,2016-17,Weymouth - Weymouth High School,3360505,0,0,0,0,0,0,0,0,0,0,581,468,462,436,6,1953 +NA,NA,,2016-17,Weymouth - William Seach,3360080,0,64,70,64,74,81,0,0,0,0,0,0,0,0,0,353 +NA,NA,,2016-17,Whately - Whately Elementary,3370005,12,15,12,16,16,18,20,20,0,0,0,0,0,0,0,129 +NA,NA,,2016-17,Whitman-Hanson - Hanson Middle School,7800315,0,0,0,0,0,0,0,136,135,131,0,0,0,0,0,402 +NA,NA,,2016-17,Whitman-Hanson - Indian Head,7800035,0,0,0,0,98,111,134,0,0,0,0,0,0,0,0,343 +NA,NA,,2016-17,Whitman-Hanson - John H Duval,7800030,0,75,70,79,85,93,93,0,0,0,0,0,0,0,0,495 +NA,NA,,2016-17,Whitman-Hanson - Louise A Conley,7800010,0,82,90,86,106,110,87,0,0,0,0,0,0,0,0,561 +NA,NA,,2016-17,Whitman-Hanson - Maquan Elementary,7800025,113,97,113,107,0,0,0,0,0,0,0,0,0,0,0,430 +NA,NA,,2016-17,Whitman-Hanson - Whitman Hanson Regional,7800505,0,0,0,0,0,0,0,0,0,0,271,291,299,297,12,1170 +NA,NA,,2016-17,Whitman-Hanson - Whitman Middle,7800310,0,0,0,0,0,0,0,196,195,208,0,0,0,0,0,599 +NA,NA,,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0,0,0,0,0,0,0,0,318,338,316,338,0,1310 +NA,NA,,2016-17,Williamsburg - Anne T. Dunphy School,3400020,11,16,21,16,22,20,27,25,0,0,0,0,0,0,0,158 +NA,NA,,2016-17,Williamstown - Williamstown Elementary,3410010,29,47,74,60,54,56,71,59,0,0,0,0,0,0,0,450 +NA,NA,,2016-17,Wilmington - Boutwell,3420005,41,117,0,0,0,0,0,0,0,0,0,0,0,0,0,158 +NA,NA,,2016-17,Wilmington - North Intermediate,3420060,0,0,0,0,0,133,137,0,0,0,0,0,0,0,0,270 +NA,NA,,2016-17,Wilmington - Shawsheen Elementary,3420025,0,0,125,112,122,0,0,0,0,0,0,0,0,0,0,359 +NA,NA,,2016-17,Wilmington - West Intermediate,3420080,0,0,0,0,0,120,134,0,0,0,0,0,0,0,0,254 +NA,NA,,2016-17,Wilmington - Wildwood,3420015,42,136,0,0,0,0,0,0,0,0,0,0,0,0,0,178 +NA,NA,,2016-17,Wilmington - Wilmington High,3420505,0,0,0,0,0,0,0,0,0,0,211,215,233,230,2,891 +NA,NA,,2016-17,Wilmington - Wilmington Middle School,3420330,0,0,0,0,0,0,0,265,308,296,0,0,0,0,0,869 +NA,NA,,2016-17,Wilmington - Woburn Street,3420020,0,0,142,106,164,0,0,0,0,0,0,0,0,0,0,412 +NA,NA,,2016-17,Winchendon - Memorial,3430040,0,100,90,85,0,0,0,0,0,0,0,0,0,0,0,275 +NA,NA,,2016-17,Winchendon - Murdock Academy for Success,3430405,0,0,0,0,0,0,0,0,0,0,7,5,11,5,0,28 +NA,NA,,2016-17,Winchendon - Murdock High School,3430515,0,0,0,0,0,0,0,0,0,0,78,84,60,67,0,289 +NA,NA,,2016-17,Winchendon - Murdock Middle School,3430315,0,0,0,0,0,0,0,94,94,108,0,0,0,0,0,296 +NA,NA,,2016-17,Winchendon - Toy Town Elementary,3430050,0,0,0,0,91,106,84,0,0,0,0,0,0,0,0,281 +NA,NA,,2016-17,Winchendon - Winchendon PreSchool Program,3430010,83,0,0,0,0,0,0,0,0,0,0,0,0,0,0,83 +NA,NA,,2016-17,Winchester - Ambrose Elementary,3440045,0,50,69,82,77,84,78,0,0,0,0,0,0,0,0,440 +NA,NA,,2016-17,Winchester - Lincoln Elementary,3440005,0,75,64,75,71,49,76,0,0,0,0,0,0,0,0,410 +NA,NA,,2016-17,Winchester - Lynch Elementary,3440020,87,76,85,63,87,72,76,0,0,0,0,0,0,0,0,546 +NA,NA,,2016-17,Winchester - McCall Middle,3440305,0,0,0,0,0,0,0,386,365,382,0,0,0,0,0,1133 +NA,NA,,2016-17,Winchester - Muraco Elementary,3440040,0,63,58,65,68,71,79,0,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Winchester - Vinson-Owen Elementary,3440025,0,48,64,67,87,82,74,0,0,0,0,0,0,0,0,422 +NA,NA,,2016-17,Winchester - Winchester High School,3440505,0,0,0,0,0,0,0,0,0,0,359,297,334,278,0,1268 +NA,NA,,2016-17,Winthrop - Arthur T. Cummings Elementary School,3460020,0,0,0,0,153,145,160,0,0,0,0,0,0,0,0,458 +NA,NA,,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,41,144,136,151,0,0,0,0,0,0,0,0,0,0,0,472 +NA,NA,,2016-17,Winthrop - Winthrop High School,3460505,13,0,0,0,0,0,0,0,0,0,147,165,126,125,0,576 +NA,NA,,2016-17,Winthrop - Winthrop Middle School,3460305,0,0,0,0,0,0,0,146,151,168,0,0,0,0,0,465 +NA,NA,,2016-17,Woburn - Clyde Reeves,3470040,41,65,55,59,85,76,76,0,0,0,0,0,0,0,0,457 +NA,NA,,2016-17,Woburn - Daniel L Joyce Middle School,3470410,0,0,0,0,0,0,0,158,186,154,0,0,0,0,0,498 +NA,NA,,2016-17,Woburn - Daniel P Hurld,3470020,0,36,34,35,26,43,34,0,0,0,0,0,0,0,0,208 +NA,NA,,2016-17,Woburn - Goodyear Elementary School,3470005,0,50,52,52,55,52,60,0,0,0,0,0,0,0,0,321 +NA,NA,,2016-17,Woburn - John F Kennedy Middle School,3470405,0,0,0,0,0,0,0,148,190,169,0,0,0,0,0,507 +NA,NA,,2016-17,Woburn - Linscott-Rumford,3470025,0,46,36,37,30,42,33,0,0,0,0,0,0,0,0,224 +NA,NA,,2016-17,Woburn - Malcolm White,3470055,0,43,58,57,62,54,48,0,0,0,0,0,0,0,0,322 +NA,NA,,2016-17,Woburn - Mary D Altavesta,3470065,0,39,51,41,49,33,33,0,0,0,0,0,0,0,0,246 +NA,NA,,2016-17,Woburn - Shamrock,3470043,103,34,45,39,41,34,35,0,0,0,0,0,0,0,0,331 +NA,NA,,2016-17,Woburn - Woburn High,3470505,0,0,0,0,0,0,0,0,0,0,309,357,347,320,0,1333 +NA,NA,,2016-17,Woburn - Wyman,3470060,0,29,34,36,18,35,29,0,0,0,0,0,0,0,0,181 +NA,NA,,2016-17,Worcester - Belmont Street Community,3480020,57,85,93,60,80,65,73,45,0,0,0,0,0,0,0,558 +NA,NA,,2016-17,Worcester - Burncoat Middle School,3480405,0,0,0,0,0,0,0,0,295,268,0,0,0,0,0,563 +NA,NA,,2016-17,Worcester - Burncoat Senior High,3480503,0,0,0,0,0,0,0,0,0,0,242,305,251,211,14,1023 +NA,NA,,2016-17,Worcester - Burncoat Street,3480035,0,45,39,34,43,30,36,32,0,0,0,0,0,0,0,259 +NA,NA,,2016-17,Worcester - Canterbury,3480045,26,57,55,49,43,49,54,43,0,0,0,0,0,0,0,376 +NA,NA,,2016-17,Worcester - Chandler Elementary Community,3480050,0,66,80,75,78,79,67,69,0,0,0,0,0,0,0,514 +NA,NA,,2016-17,Worcester - Chandler Magnet,3480052,23,75,73,62,71,46,42,72,0,0,0,0,0,0,0,464 +NA,NA,,2016-17,Worcester - City View,3480053,24,65,73,82,63,60,75,55,0,0,0,0,0,0,0,497 +NA,NA,,2016-17,Worcester - Claremont Academy,3480350,0,0,0,0,0,0,0,0,86,77,106,94,94,75,0,532 +NA,NA,,2016-17,Worcester - Clark St Community,3480055,0,39,26,28,28,26,28,28,0,0,0,0,0,0,0,203 +NA,NA,,2016-17,Worcester - Columbus Park,3480060,57,63,66,72,48,70,58,42,0,0,0,0,0,0,0,476 +NA,NA,,2016-17,Worcester - Doherty Memorial High,3480512,0,0,0,0,0,0,0,0,0,0,424,385,404,329,13,1555 +NA,NA,,2016-17,Worcester - Elm Park Community,3480095,27,71,77,67,78,67,55,57,0,0,0,0,0,0,0,499 +NA,NA,,2016-17,Worcester - Flagg Street,3480090,0,52,59,71,57,53,62,50,0,0,0,0,0,0,0,404 +NA,NA,,2016-17,Worcester - Forest Grove Middle,3480415,0,0,0,0,0,0,0,0,492,505,0,0,0,0,0,997 +NA,NA,,2016-17,Worcester - Francis J McGrath Elementary,3480177,30,52,35,41,36,30,31,44,0,0,0,0,0,0,0,299 +NA,NA,,2016-17,Worcester - Gates Lane,3480110,69,69,75,77,71,58,99,78,0,0,0,0,0,0,0,596 +NA,NA,,2016-17,Worcester - Goddard School/Science Technical,3480100,37,72,65,57,70,72,79,65,0,0,0,0,0,0,0,517 +NA,NA,,2016-17,Worcester - Grafton Street,3480115,28,59,67,63,64,44,56,28,0,0,0,0,0,0,0,409 +NA,NA,,2016-17,Worcester - Head Start,3480002,560,0,0,0,0,0,0,0,0,0,0,0,0,0,0,560 +NA,NA,,2016-17,Worcester - Heard Street,3480136,0,38,43,41,38,32,43,34,0,0,0,0,0,0,0,269 +NA,NA,,2016-17,Worcester - Jacob Hiatt Magnet,3480140,36,72,62,58,59,55,56,44,0,0,0,0,0,0,0,442 +NA,NA,,2016-17,Worcester - Lake View,3480145,0,53,50,43,46,36,42,29,0,0,0,0,0,0,0,299 +NA,NA,,2016-17,Worcester - Lincoln Street,3480160,14,37,48,40,34,45,41,26,0,0,0,0,0,0,0,285 +NA,NA,,2016-17,Worcester - May Street,3480175,0,49,42,51,49,49,44,53,0,0,0,0,0,0,0,337 +NA,NA,,2016-17,Worcester - Midland Street,3480185,0,39,37,31,37,28,40,30,0,0,0,0,0,0,0,242 +NA,NA,,2016-17,Worcester - Nelson Place,3480200,0,67,52,77,58,59,80,61,0,0,0,0,0,0,0,454 +NA,NA,,2016-17,Worcester - Norrback Avenue,3480202,50,79,73,83,79,67,74,61,0,0,0,0,0,0,0,566 +NA,NA,,2016-17,Worcester - North High,3480515,0,0,0,0,0,0,0,0,0,0,320,308,349,311,19,1307 +NA,NA,,2016-17,Worcester - Quinsigamond,3480210,25,117,97,111,133,120,92,110,0,0,0,0,0,0,0,805 +NA,NA,,2016-17,Worcester - Rice Square,3480215,0,58,59,58,50,62,68,57,0,0,0,0,0,0,0,412 +NA,NA,,2016-17,Worcester - Roosevelt,3480220,46,94,89,93,89,80,92,71,0,0,0,0,0,0,0,654 +NA,NA,,2016-17,Worcester - South High Community,3480520,0,0,0,0,0,0,0,0,0,0,385,359,359,293,25,1421 +NA,NA,,2016-17,Worcester - Sullivan Middle,3480423,0,0,0,0,0,0,0,48,413,402,0,0,0,0,0,863 +NA,NA,,2016-17,Worcester - Tatnuck,3480230,20,51,58,51,59,49,46,51,0,0,0,0,0,0,0,385 +NA,NA,,2016-17,Worcester - Thorndyke Road,3480235,0,68,61,50,57,49,47,44,0,0,0,0,0,0,0,376 +NA,NA,,2016-17,Worcester - Union Hill School,3480240,0,69,78,81,70,77,85,61,0,0,0,0,0,0,0,521 +NA,NA,,2016-17,Worcester - University Pk Campus School,3480285,0,0,0,0,0,0,0,0,47,44,41,38,39,45,0,254 +NA,NA,,2016-17,Worcester - Vernon Hill School,3480280,81,71,55,77,76,73,66,62,0,0,0,0,0,0,0,561 +NA,NA,,2016-17,Worcester - Wawecus Road School,3480026,0,22,19,22,23,23,22,16,0,0,0,0,0,0,0,147 +NA,NA,,2016-17,Worcester - West Tatnuck,3480260,48,42,40,48,43,42,43,35,0,0,0,0,0,0,0,341 +NA,NA,,2016-17,Worcester - Woodland Academy,3480030,13,98,81,91,92,77,100,75,0,0,0,0,0,0,0,627 +NA,NA,,2016-17,Worcester - Worcester Arts Magnet School,3480225,27,55,64,60,62,51,44,42,0,0,0,0,0,0,0,405 +NA,NA,,2016-17,Worcester - Worcester East Middle,3480420,0,0,0,0,0,0,0,79,365,372,0,0,0,0,0,816 +NA,NA,,2016-17,Worcester - Worcester Technical High,3480605,0,0,0,0,0,0,0,0,0,0,359,325,347,358,0,1389 +NA,NA,,2016-17,Worthington - R. H. Conwell,3490010,11,12,10,7,6,3,3,8,0,0,0,0,0,0,0,60 +NA,NA,,2016-17,Wrentham - Charles E Roderick,3500010,0,0,0,0,0,148,151,140,0,0,0,0,0,0,0,439 +NA,NA,,2016-17,Wrentham - Delaney,3500003,88,117,105,129,153,0,0,0,0,0,0,0,0,0,0,592 diff --git a/spec/fixtures/sample_four_d_data.csv b/spec/fixtures/sample_four_d_data.csv index d57c2220..500fdc5d 100644 --- a/spec/fixtures/sample_four_d_data.csv +++ b/spec/fixtures/sample_four_d_data.csv @@ -1977,3 +1977,400 @@ Worcester - North High,3480515,7.7,17.5,1,58.2,1.7,,8.1,3.7,0.7,1.3,297,5.024,5, Worcester - South High Community,3480520,18,17.3,2.9,52.6,0,,5.9,1.1,0,2.2,272,5.15733333333333,5,a-cgpr-i1,2016-17 Worcester - University Pk Campus School,3480285,25.6,55.8,0,16.3,0,,2.3,0,0,0,43,5.33333333333333,5,a-cgpr-i1,2016-17 Worcester - Worcester Technical High,3480605,21,34.8,0.3,30.7,0,,9.5,3.2,0.6,0,348,5.136,5,a-cgpr-i1,2016-17 +Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,24.4,54.9,0,12.2,0,0,3.7,0,4.9,0,82,5.07733333333333,4.44,a-cgpr-i1,2023-24 +Abington - Abington High,10505,27.5,28.9,0,18.1,0,2,0,2.7,14.8,6,149,4.08,4.44,a-cgpr-i1,2023-24 +Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,21.4,51.8,3.6,10.7,10.7,0,0,0,0,1.8,56,5.23733333333333,4.44,a-cgpr-i1,2023-24 +Acton-Boxborough - Acton-Boxborough Regional High,6000505,44.5,49.2,1.4,2.1,0.2,0,0.7,0,1.2,0.7,425,5.232,4.44,a-cgpr-i1,2023-24 +Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,51.8,41,0,3.6,0.7,0,2.9,0,0,0,139,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Agawam - Agawam High,50505,25,21.1,0.4,21.9,0,0,15.6,1.6,3.1,11.3,256,4.48,4.44,a-cgpr-i1,2023-24 +Amesbury - Amesbury High,70505,24.4,35.6,0,16.3,3.7,0,14.8,3,1.5,0.7,135,5.056,4.44,a-cgpr-i1,2023-24 +Amesbury - Amesbury Innovation High School,70515,0,7.1,7.1,28.6,7.1,0,42.9,0,7.1,0,14,4.94933333333333,4.44,a-cgpr-i1,2023-24 +Amherst-Pelham - Amherst Regional High,6050505,41.8,20.5,0,14.5,0.5,0,2.7,0.5,1.8,17.7,220,4.26666666666667,4.44,a-cgpr-i1,2023-24 +Andover - Andover High,90505,47.5,42.1,0,3.4,0.2,0,3.2,0.7,1.8,1.1,442,5.14133333333333,4.44,a-cgpr-i1,2023-24 +Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,25.7,25.7,0,40,0,0,0,8.6,0,0,35,4.87466666666667,4.44,a-cgpr-i1,2023-24 +Arlington - Arlington High,100505,58.7,28.4,0,5.8,0.9,0.9,1.2,0.3,1.2,2.4,327,5.11466666666667,4.44,a-cgpr-i1,2023-24 +Ashburnham-Westminster - Oakmont Regional High School,6100505,32.9,31.7,0.6,16.2,1.2,0,12,2.4,1.8,1.2,167,5.04533333333333,4.44,a-cgpr-i1,2023-24 +Ashland - Ashland High,140505,27.6,49.5,0,9.5,1,0,9.5,0.5,0.5,1.9,210,5.17866666666667,4.44,a-cgpr-i1,2023-24 +Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,11,25.9,0.4,13.3,0,0.8,45.6,3,0,0,263,5.17333333333333,4.44,a-cgpr-i1,2023-24 +Athol-Royalston - Athol High,6150505,13,14.5,0,21.7,11.6,0,37.7,0,0,1.4,69,5.25333333333333,4.44,a-cgpr-i1,2023-24 +Atlantis Charter (District) - Atlantis Charter School,4910550,19,38.1,0,22.6,0,4.8,8.3,2.4,0,4.8,84,4.94933333333333,4.44,a-cgpr-i1,2023-24 +Attleboro - Attleboro Community Academy,160515,0,1.9,0,20.4,14.8,1.9,55.6,5.6,0,0,54,5.04533333333333,4.44,a-cgpr-i1,2023-24 +Attleboro - Attleboro High,160505,27,28.3,0,18,1.3,0,20.3,3.6,0.3,1.3,389,6.06133333333333,4.44,a-cgpr-i1,2023-24 +Auburn - Auburn Senior High,170505,24.4,48.1,0,10,3.1,0,11.9,1.9,0,0.6,160,5.2,4.44,a-cgpr-i1,2023-24 +Avon - Avon Middle High School,180510,26.3,42.1,0,18.4,0,0,7.9,2.6,0,2.6,38,5.05066666666667,4.44,a-cgpr-i1,2023-24 +Ayer Shirley School District - Ayer Shirley Regional High School,6160505,26.6,38,0,10.1,1.3,0,6.3,8.9,0,8.9,79,4.38933333333333,4.44,a-cgpr-i1,2023-24 +Barnstable - Barnstable High,200505,8.7,10.4,0,0.6,0,0,0.3,0.3,0.6,79.2,346,1.06666666666667,4.44,a-cgpr-i1,2023-24 +Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,50,12.5,0,33.3,2.1,0,0,0,2.1,0,48,5.22133333333333,4.44,a-cgpr-i1,2023-24 +Bedford - Bedford High,230505,30.4,40.8,0,11.4,2.2,0,5.4,3.3,3.3,3.3,184,4.81066666666667,4.44,a-cgpr-i1,2023-24 +Belchertown - Belchertown High,240505,35.7,17.5,0,20.5,2.9,2.3,2.3,1.8,1.2,15.8,171,4.33066666666667,4.44,a-cgpr-i1,2023-24 +Bellingham - Bellingham High School,250505,26.2,32.6,0,13.5,4.3,0,14.2,3.5,4.3,1.4,141,4.84266666666667,4.44,a-cgpr-i1,2023-24 +Bellingham - Keough Memorial Academy,250510,0,14.3,0,42.9,0,0,42.9,0,0,0,7,5.33866666666667,4.44,a-cgpr-i1,2023-24 +Belmont - Belmont High,260505,65.3,28.4,0,1.6,0.3,0,2.2,0.3,1.9,0,317,5.216,4.44,a-cgpr-i1,2023-24 +Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,36.7,30,0,26.7,0,0,6.7,0,0,0,30,5.33866666666667,4.44,a-cgpr-i1,2023-24 +Berkshire Hills - Monument Mt Regional High,6180505,35.1,20.2,3.5,15.8,0,2.6,12.3,0.9,9.6,0,114,4.77333333333333,4.44,a-cgpr-i1,2023-24 +Berlin-Boylston - Tahanto Regional High,6200505,40.2,39,0,7.3,0,0,3.7,1.2,3.7,4.9,82,4.81066666666667,4.44,a-cgpr-i1,2023-24 +Beverly - Beverly High,300505,26.4,37,0,15.8,2.1,0,7.5,2.4,3.8,5.1,292,4.736,4.44,a-cgpr-i1,2023-24 +Billerica - Billerica Memorial High School,310505,31.3,33.3,0,17.5,3.7,2,9.3,1.2,0.4,1.2,246,5.17866666666667,4.44,a-cgpr-i1,2023-24 +Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,41.3,30.3,1.3,5.3,3,4.3,10.7,1.7,2,0,300,5.13066666666667,4.44,a-cgpr-i1,2023-24 +Blackstone-Millville - Blackstone Millville RHS,6220505,19.4,36.6,2.2,11.8,0,0,23.7,2.2,2.2,2.2,93,4.99733333333333,4.44,a-cgpr-i1,2023-24 +Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,20.2,22.3,0,14.5,3.1,1,31.1,4.1,0,3.6,193,4.91733333333333,4.44,a-cgpr-i1,2023-24 +Boston - Another Course To College,350541,12.1,24.1,0,31,3.4,0,5.2,0,0,24.1,58,4.04266666666667,4.44,a-cgpr-i1,2023-24 +Boston - Boston Adult Academy,350548,0,9.7,1.4,19.4,8.3,4.2,19.4,1.4,1.4,34.7,72,3.328,4.44,a-cgpr-i1,2023-24 +Boston - Boston Arts Academy,350546,38.2,30.3,1.1,10.1,0,0,9,1.1,4.5,5.6,89,4.73066666666667,4.44,a-cgpr-i1,2023-24 +Boston - Boston Collaborative High School,350755,0,3.1,0,9.4,6.3,0,15.6,0,0,65.6,32,1.83466666666667,4.44,a-cgpr-i1,2023-24 +Boston - Boston Community Leadership Academy,350558,18.3,22.6,2.2,14,6.5,0,12.9,0,2.2,21.5,93,4.08,4.44,a-cgpr-i1,2023-24 +Boston - Boston International High School,350507,9.2,24.1,3.4,28.7,2.3,0,17.2,1.1,0,13.8,87,4.528,4.44,a-cgpr-i1,2023-24 +Boston - Boston Latin,350560,56.9,33.3,0,2,1.7,0,2.2,0.5,0.5,2.9,408,5.12533333333333,4.44,a-cgpr-i1,2023-24 +Boston - Boston Latin Academy,350545,36.5,37.7,0.6,1.8,2.1,1.2,2.1,0,0.6,17.3,329,4.37333333333333,4.44,a-cgpr-i1,2023-24 +Boston - Brighton High,350505,11.2,20.7,0.9,16.4,5.2,0.9,21.6,3.4,3.4,16.4,116,4.10133333333333,4.44,a-cgpr-i1,2023-24 +Boston - Charlestown High,350515,9.2,17.7,0,12.3,5.4,0,10.8,0,3.8,40.8,130,2.95466666666667,4.44,a-cgpr-i1,2023-24 +Boston - Community Academy,350518,0,4.2,0,4.2,0,0,12.5,4.2,0,75,24,1.11466666666667,4.44,a-cgpr-i1,2023-24 +Boston - Community Academy of Science and Health,350581,11.3,26.8,0,21.1,8.5,0,12.7,2.8,5.6,11.3,71,4.288,4.44,a-cgpr-i1,2023-24 +Boston - Dearborn,350074,5.7,32.1,0,22.6,0,0,9.4,3.8,0,26.4,53,3.72266666666667,4.44,a-cgpr-i1,2023-24 +Boston - Dr. William Henderson Upper,350426,12.3,24.6,0,29.8,3.5,3.5,10.5,1.8,0,14,57,4.49066666666667,4.44,a-cgpr-i1,2023-24 +Boston - East Boston High,350530,9.5,16.3,0.3,13.7,2.3,1.6,33.7,1.3,2.3,19,306,4.128,4.44,a-cgpr-i1,2023-24 +Boston - Excel High School,350522,12.5,22.5,0.8,16.7,8.3,0.8,12.5,2.5,1.7,21.7,120,3.952,4.44,a-cgpr-i1,2023-24 +Boston - Fenway High School,350540,16.5,14.1,1.2,18.8,8.2,1.2,11.8,1.2,2.4,24.7,85,3.82933333333333,4.44,a-cgpr-i1,2023-24 +Boston - Greater Egleston Community High School,350543,0,0,0,0,0,0,0,0,2.7,97.3,37,0,4.44,a-cgpr-i1,2023-24 +Boston - Horace Mann School for the Deaf,350750,,,,,,,,,,,2,0,4.44,a-cgpr-i1,2023-24 +Boston - Jeremiah E Burke High,350525,13.2,21.9,0,16.7,5.3,1.8,18.4,4.4,2.6,15.8,114,4.12266666666667,4.44,a-cgpr-i1,2023-24 +Boston - Lyon Upper 9-12,350655,25,9.4,3.1,12.5,6.3,3.1,9.4,3.1,12.5,15.6,32,3.66933333333333,4.44,a-cgpr-i1,2023-24 +Boston - Madison Park High,350537,4.8,8.4,0.6,25.7,1.2,5.4,26.3,2.4,2.4,22.8,167,3.86133333333333,4.44,a-cgpr-i1,2023-24 +Boston - Margarita Muniz Academy,350549,18.3,20,0,6.7,5,1.7,1.7,1.7,0,45,60,2.848,4.44,a-cgpr-i1,2023-24 +Boston - New Mission High School,350542,18.1,41.7,1.4,11.1,6.9,1.4,8.3,2.8,1.4,6.9,72,4.74133333333333,4.44,a-cgpr-i1,2023-24 +Boston - O'Bryant School Math/Science,350575,27.1,37.3,0.6,15.4,3.6,0,5.7,2.4,1.2,6.6,332,4.784,4.44,a-cgpr-i1,2023-24 +Boston - Quincy Upper School,350565,31.3,20.3,0,4.7,6.3,0,6.3,0,4.7,26.6,64,3.67466666666667,4.44,a-cgpr-i1,2023-24 +Boston - Snowden International School at Copley,350690,10.9,13.9,0,8.9,0,0,7.9,0,1,57.4,101,2.21866666666667,4.44,a-cgpr-i1,2023-24 +Boston - TechBoston Academy,350657,19.7,19.7,0.8,24.6,6.6,0,16.4,1.6,1.6,9,122,4.68266666666667,4.44,a-cgpr-i1,2023-24 +Boston - The English High,350535,9,15.6,1.6,22.1,7.4,2.5,13.9,1.6,4.1,22.1,122,3.84533333333333,4.44,a-cgpr-i1,2023-24 +Boston - William McKinley,350363,2.5,0,0,10,2.5,0,7.5,2.5,0,75,40,1.2,4.44,a-cgpr-i1,2023-24 +Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,49.3,26.1,0,11.6,2.9,0,4.3,2.9,2.9,0,69,5.024,4.44,a-cgpr-i1,2023-24 +Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,11.1,18.5,0,11.1,25.9,11.1,22.2,0,0,0,27,5.328,4.44,a-cgpr-i1,2023-24 +Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,22.5,19.7,1.4,19.7,5.6,0,16.9,0,2.8,11.3,71,4.576,4.44,a-cgpr-i1,2023-24 +Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,34.8,42.4,9.1,6.1,0,0,7.6,0,0,0,66,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Bourne - Bourne High School,360505,24.3,33.9,0,12.2,1.7,0,6.1,1.7,0,20,115,4.17066666666667,4.44,a-cgpr-i1,2023-24 +Braintree - Braintree High,400505,35.2,40.4,0,13.2,1.9,0,6.7,2.4,0,0.2,418,5.19466666666667,4.44,a-cgpr-i1,2023-24 +Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,30,42.8,0.3,7.1,1.1,0,5.7,1.9,2.7,8.4,367,4.64,4.44,a-cgpr-i1,2023-24 +Bridgewater-Raynham - Therapeutic Day School,6250415,,,,,,,,,,,1,0,4.44,a-cgpr-i1,2023-24 +Bristol County Agricultural - Bristol County Agricultural High,9100705,12.8,24.5,0,25.5,0,0,23.4,7.4,0,6.4,94,4.59733333333333,4.44,a-cgpr-i1,2023-24 +Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,10.9,25.4,0,9.2,2.1,14.8,29.6,4.2,0.4,3.5,284,4.90666666666667,4.44,a-cgpr-i1,2023-24 +Brockton - Brockton Champion High School,440515,0,0,0,44.4,16.7,0,11.1,0,0,27.8,18,3.85066666666667,4.44,a-cgpr-i1,2023-24 +Brockton - Brockton High,440505,15.6,25,0.1,22.5,4.6,0.3,12.8,3.3,3.7,12.2,737,4.31466666666667,4.44,a-cgpr-i1,2023-24 +Brockton - Edison Academy,440520,0,0,0,0,0,0,0,0,0.5,99.5,197,0,4.44,a-cgpr-i1,2023-24 +Brockton - Frederick Douglass Academy,440080,,,,,,,,,,,3,0,4.44,a-cgpr-i1,2023-24 +Brockton - Huntington Therapeutic Day School,440400,0,20,0,30,20,0,30,0,0,0,10,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Brooke Charter School (District) - Brooke Charter School,4280305,38.2,35.3,0,11.8,0,0,11.8,0,2.9,0,34,5.17866666666667,4.44,a-cgpr-i1,2023-24 +Brookline - Brookline High,460505,56.4,29.6,0,4.5,0,0,2.7,1,4.1,1.6,486,4.97066666666667,4.44,a-cgpr-i1,2023-24 +Burlington - Burlington High,480505,32.9,44.6,0,7.9,2.5,0.4,10.4,0.8,0.4,0,240,5.264,4.44,a-cgpr-i1,2023-24 +Cambridge - Cambridge Rindge and Latin,490506,46.9,28.2,0.2,11.6,3.9,0.9,3.3,1.1,3.3,0.7,458,5.06666666666667,4.44,a-cgpr-i1,2023-24 +Canton - Canton High,500505,44.3,41.9,0.4,7.9,1.2,0,1.6,2.4,0.4,0,253,5.18933333333333,4.44,a-cgpr-i1,2023-24 +Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,3.9,10.9,0,14.1,0.8,0,28.9,1.6,6.3,33.6,128,3.12533333333333,4.44,a-cgpr-i1,2023-24 +Carver - Carver Middle/High School,520405,30.5,33.3,0,19,3.8,1.9,6.7,1,1,2.9,105,5.07733333333333,4.44,a-cgpr-i1,2023-24 +Central Berkshire - Wahconah Regional High,6350505,23.1,32.3,0,18.5,6.2,0,16.2,3.1,0.8,0,130,5.136,4.44,a-cgpr-i1,2023-24 +Chelmsford - Chelmsford High,560505,31.6,41.1,0,2.5,0,0,0,0,0,24.9,358,4.01066666666667,4.44,a-cgpr-i1,2023-24 +Chelsea - Chelsea High,570505,9.7,10.1,0.8,27.9,5.7,1.2,32.8,2,9.3,0.4,247,4.704,4.44,a-cgpr-i1,2023-24 +Chelsea - Chelsea Opportunity Academy,570515,0,0,5,55,10,0,25,5,0,0,20,5.06666666666667,4.44,a-cgpr-i1,2023-24 +Chicopee - Chicopee Academy,610021,0,0,0,33.3,0,0,44.4,0,0,22.2,9,4.144,4.44,a-cgpr-i1,2023-24 +Chicopee - Chicopee Comprehensive High School,610510,14.1,13.4,0,13.8,0.4,1.1,8,0,0.4,48.9,276,2.70933333333333,4.44,a-cgpr-i1,2023-24 +Chicopee - Chicopee High,610505,19.7,9.6,0,15.8,0.9,0,11.8,3.1,0,39,228,3.08266666666667,4.44,a-cgpr-i1,2023-24 +City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,28.8,18.2,7.6,15.2,0,0,27.3,1.5,0,1.5,66,5.17866666666667,4.44,a-cgpr-i1,2023-24 +Clinton - Clinton Senior High,640505,20.3,27.6,0,23.6,5.7,0,21.1,0,0,1.6,123,5.24266666666667,4.44,a-cgpr-i1,2023-24 +Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,31.8,36.4,0,13.6,4.5,0,0,0,0,13.6,22,4.60266666666667,4.44,a-cgpr-i1,2023-24 +Cohasset - Cohasset High School,650505,66.1,26,0,0,0,0,0,0,0,7.9,127,4.912,4.44,a-cgpr-i1,2023-24 +Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,51.6,29,0,12.9,3.2,0,3.2,0,0,0,31,5.328,4.44,a-cgpr-i1,2023-24 +Concord-Carlisle - Concord Carlisle High,6400505,57,28.7,0,2,4.2,0,1.6,0.3,4.2,2,307,4.98666666666667,4.44,a-cgpr-i1,2023-24 +Danvers - Danvers High,710505,0,99.1,0,0,0,0,0,0,0.4,0.4,231,5.28533333333333,4.44,a-cgpr-i1,2023-24 +Dartmouth - Dartmouth High,720505,24.9,38.5,0,17.9,2.7,0,7,1.2,1.6,6.2,257,4.85333333333333,4.44,a-cgpr-i1,2023-24 +Dedham - Dedham High,730505,29.9,35,0.6,9.6,5.1,1.1,15.8,1.1,0.6,1.1,177,5.17866666666667,4.44,a-cgpr-i1,2023-24 +Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,22,24.4,1.2,24.4,1.8,1.2,20.7,3,1.2,0,164,5.104,4.44,a-cgpr-i1,2023-24 +Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,32.4,35.7,0.5,8,1.9,0,19.2,2.3,0,0,213,5.21066666666667,4.44,a-cgpr-i1,2023-24 +Douglas - Douglas High School,770505,24.7,25.9,0,16.5,3.5,0,12.9,3.5,1.2,11.8,85,4.45333333333333,4.44,a-cgpr-i1,2023-24 +Dover-Sherborn - Dover-Sherborn Regional High,6550505,65.3,26.5,0,1.2,2.4,0,1.8,0,1.8,1.2,170,5.184,4.44,a-cgpr-i1,2023-24 +Dracut - Dracut Senior High,790505,17.8,36,0.4,23.6,4.9,1.8,12.4,0.4,0.4,2.2,225,5.168,4.44,a-cgpr-i1,2023-24 +Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,33.2,33.2,0,10.2,2.6,0,7.9,1.9,4.5,6.4,265,4.64533333333333,4.44,a-cgpr-i1,2023-24 +Duxbury - Duxbury High,820505,52.4,35.8,0.4,3.3,2,0,3.3,0.8,2,0,246,5.184,4.44,a-cgpr-i1,2023-24 +East Bridgewater - East Bridgewater JR./SR. High School,830505,26.2,40,0,8.3,4.1,0,16.6,0.7,4.1,0,145,5.07733333333333,4.44,a-cgpr-i1,2023-24 +East Longmeadow - East Longmeadow High,870505,33.3,28.7,0,21.1,2.9,1.2,8.8,2.3,1.2,0.6,171,5.12,4.44,a-cgpr-i1,2023-24 +Easthampton - Easthampton High,860505,24.5,23.6,0,14.2,0.9,0,22.6,0,0,14.2,106,4.576,4.44,a-cgpr-i1,2023-24 +Easton - Oliver Ames High,880505,41.2,38.3,0,8.8,4,0,4.7,1.1,0.4,1.5,274,5.17333333333333,4.44,a-cgpr-i1,2023-24 +Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,18,41.6,0,37.1,0,0,1.1,0,0,2.2,89,5.216,4.44,a-cgpr-i1,2023-24 +Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,22.7,37.9,0,6.4,0.3,0,21.6,2.3,8.5,0.3,343,4.74133333333333,4.44,a-cgpr-i1,2023-24 +Everett - Devens School,930030,,,,,,,,,,,1,0,4.44,a-cgpr-i1,2023-24 +Everett - Everett High,930505,0,43.2,0,7.4,0,4.7,11.2,1.2,24.1,8.2,403,3.54666666666667,4.44,a-cgpr-i1,2023-24 +Excel Academy Charter (District) - Excel Academy Charter School,4100205,29.9,29.3,2.5,13.4,5.1,3.2,10.8,1.3,0.6,3.8,157,5.024,4.44,a-cgpr-i1,2023-24 +Fairhaven - Fairhaven High,940505,20.1,45.5,0,16.4,1.6,0,13.8,0,2.6,0,189,5.19466666666667,4.44,a-cgpr-i1,2023-24 +Fall River - B M C Durfee High,950505,10.2,16.1,0.2,27.5,2.6,0.4,38.6,3.5,0.7,0.2,461,5.09866666666667,4.44,a-cgpr-i1,2023-24 +Fall River - Resiliency Preparatory Academy,950525,1.3,6.3,0,28.8,6.3,0,22.5,1.3,16.3,17.5,80,3.47733333333333,4.44,a-cgpr-i1,2023-24 +Fall River - Stone PK-12 School,950340,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24 +Falmouth - Falmouth High,960505,29.7,37.4,0,15.9,1.6,0,5.5,1.6,2.2,6,182,4.80533333333333,4.44,a-cgpr-i1,2023-24 +Fitchburg - Fitchburg High,970505,11.5,29.2,0.4,33.7,0.8,0,18.1,3.7,2.5,0,243,4.99733333333333,4.44,a-cgpr-i1,2023-24 +Fitchburg - Goodrich Academy,970510,0,2,0,10.1,3,0,75.8,1,1,7.1,99,4.848,4.44,a-cgpr-i1,2023-24 +Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,39.3,32.1,0,21.4,0,0,3.6,0,0,3.6,28,5.14133333333333,4.44,a-cgpr-i1,2023-24 +Foxborough - Foxborough High,990505,33.3,45.9,0,5.5,1.1,2.7,8.2,1.1,1.6,0.5,183,5.15733333333333,4.44,a-cgpr-i1,2023-24 +Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,31.7,46,1.6,15.9,1.6,0,3.2,0,0,0,63,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Framingham - Framingham High School,1000515,21.3,34.1,0.2,16.7,4.8,0,19.4,2,1.3,0.2,540,5.14666666666667,4.44,a-cgpr-i1,2023-24 +Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,41.4,34.5,0,5.2,3.4,0,12.1,0,1.7,1.7,58,5.152,4.44,a-cgpr-i1,2023-24 +Franklin - Franklin High,1010505,40,44.9,0.5,4.7,1.1,0,6.5,1.1,0.2,0.9,443,5.21066666666667,4.44,a-cgpr-i1,2023-24 +Franklin County Regional Vocational Technical - Franklin County Technical,8180605,2,2.9,0,16.7,0,0,67.6,4.9,4.9,1,102,4.75733333333333,4.44,a-cgpr-i1,2023-24 +Freetown-Lakeville - Apponequet Regional High,6650505,27,30.4,0,19.1,6.9,0,15.2,1.5,0,0,204,5.25866666666667,4.44,a-cgpr-i1,2023-24 +Frontier - Frontier Regional,6700505,38.8,32.7,0,18.4,2,0,6.1,2,0,0,98,5.22666666666667,4.44,a-cgpr-i1,2023-24 +Gardner - Gardner Academy for Learning and Technology,1030515,7.5,20,5,32.5,5,0,25,2.5,0,2.5,40,5.06666666666667,4.44,a-cgpr-i1,2023-24 +Gardner - Gardner High,1030505,12.1,25.8,0,33.3,4.5,0,17.4,3,2.3,1.5,132,4.96533333333333,4.44,a-cgpr-i1,2023-24 +Gateway - Gateway Regional High,6720505,14.3,32.1,0,19.6,0,0,28.6,1.8,0,3.6,56,5.04533333333333,4.44,a-cgpr-i1,2023-24 +Georgetown - Georgetown High School,1050505,40.9,42,0,9.1,3.4,0,3.4,0,1.1,0,88,5.26933333333333,4.44,a-cgpr-i1,2023-24 +Gill-Montague - Turners Fall High,6740505,13.7,13.7,0,33.3,2,0,27.5,2,0,7.8,51,4.81066666666667,4.44,a-cgpr-i1,2023-24 +Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,0,50,0,29.2,0,0,16.7,4.2,0,0,24,5.11466666666667,4.44,a-cgpr-i1,2023-24 +Gloucester - Gloucester High,1070505,17.3,20.5,0,14.7,8.3,0,21.8,2.6,2.6,12.2,156,4.40533333333333,4.44,a-cgpr-i1,2023-24 +Grafton - Grafton High School,1100505,30.9,46.1,0.6,10.7,1.1,1.1,6.2,1.1,1.7,0.6,178,5.15733333333333,4.44,a-cgpr-i1,2023-24 +Granby - Granby Jr Sr High School,1110505,17.3,19.2,0,34.6,0,0,28.8,0,0,0,52,5.328,4.44,a-cgpr-i1,2023-24 +Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,7.5,18.5,0,21.7,4.3,0.6,35.5,4.3,2.3,5.2,346,4.69866666666667,4.44,a-cgpr-i1,2023-24 +Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,7.2,10.4,0.3,38,1.1,21.8,19.9,0.8,0,0.5,376,5.264,4.44,a-cgpr-i1,2023-24 +Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,11.6,16,0.4,23.2,2.9,0,35.6,6.3,0,4,525,4.784,4.44,a-cgpr-i1,2023-24 +Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,3.1,27.4,0,25.9,3.7,0,36.6,3.3,0,0,486,5.15733333333333,4.44,a-cgpr-i1,2023-24 +Greenfield - Greenfield High,1140505,19.5,20.8,0,22.1,0,0,33.8,2.6,0,1.3,77,5.13066666666667,4.44,a-cgpr-i1,2023-24 +Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,7.7,15.4,0,24.4,2.6,0,24.4,1.3,1.3,23.1,78,3.97333333333333,4.44,a-cgpr-i1,2023-24 +Groton-Dunstable - Groton Dunstable Regional,6730505,33,48.2,0.5,8.4,2.1,0,4.2,0.5,0,3.1,191,5.14133333333333,4.44,a-cgpr-i1,2023-24 +Hadley - Hopkins Academy,1170505,0,73.8,0,9.5,2.4,0,4.8,0,2.4,7.1,42,4.82666666666667,4.44,a-cgpr-i1,2023-24 +Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,45.9,39.3,0,7.4,1.5,0,3,0,1.5,1.5,135,5.17866666666667,4.44,a-cgpr-i1,2023-24 +Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,38.9,27.8,0,24.1,0,3.7,0,3.7,1.9,0,54,5.04,4.44,a-cgpr-i1,2023-24 +Hampden-Wilbraham - Minnechaug Regional High,6800505,31.4,35.6,0,19.7,0.4,0,9.2,1.3,0.4,2.1,239,5.136,4.44,a-cgpr-i1,2023-24 +Hampshire - Hampshire Regional High,6830505,20,26,0,44,0,0,3,1,4,2,100,4.96,4.44,a-cgpr-i1,2023-24 +Hanover - Hanover High,1220505,50.2,31.1,1,1,0,0,1,1,0.5,14.4,209,4.496,4.44,a-cgpr-i1,2023-24 +Harvard - Bromfield,1250505,68,24.7,0,3.1,0,0,0,0,0,4.1,97,5.10933333333333,4.44,a-cgpr-i1,2023-24 +Hatfield - Smith Academy,1270505,16.7,37.5,0,33.3,0,0,4.2,4.2,4.2,0,24,4.89066666666667,4.44,a-cgpr-i1,2023-24 +Haverhill - Crowell,1280515,,,,,,,,,,,5,0,4.44,a-cgpr-i1,2023-24 +Haverhill - Greenleaf Academy,1280033,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24 +Haverhill - Haverhill High,1280505,15.5,22.3,0.2,27,5.2,0,25.9,1.1,1.8,0.9,444,5.12533333333333,4.44,a-cgpr-i1,2023-24 +Hingham - Hingham High,1310505,52,39.8,0,1.3,1.6,0.3,2.3,0,0.7,2,304,5.18933333333333,4.44,a-cgpr-i1,2023-24 +Holbrook - Holbrook Middle High School,1330505,21.7,33.3,0,6.7,0,0,36.7,1.7,0,0,60,5.248,4.44,a-cgpr-i1,2023-24 +Holliston - Holliston High,1360505,42.3,40.7,0,3.7,3.2,0,5.8,1.1,3.2,0,189,5.104,4.44,a-cgpr-i1,2023-24 +Holyoke - Holyoke High,1370505,3.9,14.4,0.3,22.2,3.3,0,28.9,4.2,0.3,22.5,360,3.89333333333333,4.44,a-cgpr-i1,2023-24 +Hoosac Valley Regional - Hoosac Valley High School,6030505,22.7,31.8,0,6.8,2.3,0,22.7,0,9.1,4.5,44,4.60266666666667,4.44,a-cgpr-i1,2023-24 +Hopedale - Hopedale Jr Sr High,1380505,46.5,38,0,5.6,2.8,1.4,0,1.4,4.2,0,71,5.02933333333333,4.44,a-cgpr-i1,2023-24 +Hopkinton - Hopkinton High,1390505,51.5,35.6,0,1.2,0,0,0.3,0,0,11.3,326,4.72533333333333,4.44,a-cgpr-i1,2023-24 +Hudson - Hudson High,1410505,32.2,34.3,0,8.4,0.7,0,20.3,2.1,2.1,0,143,5.11466666666667,4.44,a-cgpr-i1,2023-24 +Hull - Hull High,1420505,30.4,30.4,0,8.7,2.9,1.4,15.9,4.3,1.4,4.3,69,4.784,4.44,a-cgpr-i1,2023-24 +Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,38.2,41.6,0,6.7,1.1,1.1,7.9,1.1,0,2.2,89,5.152,4.44,a-cgpr-i1,2023-24 +Ipswich - Ipswich High,1440505,24.8,42.9,0,13.5,0,0.8,2.3,0,3.8,12,133,4.496,4.44,a-cgpr-i1,2023-24 +KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,32.2,43.2,0,11,0,0,10.2,0.8,0.8,1.7,118,5.152,4.44,a-cgpr-i1,2023-24 +King Philip - King Philip Regional High,6900505,48.6,37.1,0,1,2,0,1.7,0.7,1.4,7.5,294,4.82133333333333,4.44,a-cgpr-i1,2023-24 +Lawrence - High School Learning Center,1490536,4.8,11.5,0,13.3,1.8,0,16.4,0.6,0,51.5,165,2.54933333333333,4.44,a-cgpr-i1,2023-24 +Lawrence - Lawrence High School,1490515,8.5,19.1,0,24.7,9.8,0,19,1.7,0,17.3,591,4.32533333333333,4.44,a-cgpr-i1,2023-24 +Lawrence - RISE Academy,1490615,0,5.6,0,27.8,0,0,5.6,0,0,61.1,18,2.08,4.44,a-cgpr-i1,2023-24 +Lawrence - School for Exceptional Studies,1490537,0,16.7,0,33.3,0,0,33.3,0,0,16.7,6,4.44266666666667,4.44,a-cgpr-i1,2023-24 +Lee - Lee Middle/High School,1500505,26.2,29.5,0,19.7,0,1.6,18,1.6,3.3,0,61,5.06666666666667,4.44,a-cgpr-i1,2023-24 +Leicester - Leicester High,1510505,13.8,40.4,2.1,22.3,1.1,0,17,3.2,0,0,94,5.15733333333333,4.44,a-cgpr-i1,2023-24 +Lenox - Lenox Memorial High,1520505,44.1,22,0,18.6,1.7,0,1.7,0,5.1,6.8,59,4.69866666666667,4.44,a-cgpr-i1,2023-24 +Leominster - Center For Technical Education Innovation,1530605,5.1,29.4,0.7,15.4,5.9,4.4,31.6,2.2,0,5.1,136,4.93333333333333,4.44,a-cgpr-i1,2023-24 +Leominster - Leominster Center for Excellence,1530515,0,0,0,0,36.4,0,45.5,9.1,0,9.1,11,4.368,4.44,a-cgpr-i1,2023-24 +Leominster - Leominster High School,1530505,18.6,39.4,1,14.7,2.9,1,16.9,2.6,0,2.9,307,5.04,4.44,a-cgpr-i1,2023-24 +Lexington - Lexington High,1550505,58.8,33.6,0,1.1,0,0,1.7,0.4,1.3,3,527,5.07733333333333,4.44,a-cgpr-i1,2023-24 +Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,55.8,33.6,0.8,2.6,1.3,0.3,3.2,0.5,1.9,0,378,5.20533333333333,4.44,a-cgpr-i1,2023-24 +Littleton - Littleton High School,1580505,40.4,47.7,0,11,0,0,0.9,0,0,0,109,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Longmeadow - Longmeadow High,1590505,43.6,50.5,0,6,0,0,0,0,0,0,218,5.33866666666667,4.44,a-cgpr-i1,2023-24 +Lowell - Leblanc Therapeutic Day School,1600320,0,0,0,0,0,0,12.5,0,0,87.5,8,0.666666666666667,4.44,a-cgpr-i1,2023-24 +Lowell - Lowell High,1600505,14.8,28.5,0,23.6,2.5,0.9,7.1,2.1,10.8,9.7,677,4.128,4.44,a-cgpr-i1,2023-24 +Lowell - The Career Academy,1600515,0,0,0,0,0,0,26.3,2.6,0,71.1,38,1.40266666666667,4.44,a-cgpr-i1,2023-24 +Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,0,0,38.5,7.7,0,30.8,7.7,7.7,7.7,13,4.10666666666667,4.44,a-cgpr-i1,2023-24 +Ludlow - Ludlow Senior High,1610505,37.4,17.2,0.5,21.2,6.1,1,4,2,5.1,5.6,198,4.66133333333333,4.44,a-cgpr-i1,2023-24 +Lunenburg - Lunenburg High,1620505,23.4,45.8,0,13.1,0.9,0,10.3,0.9,0,5.6,107,4.98666666666667,4.44,a-cgpr-i1,2023-24 +Lynn - Classical High,1630505,9.9,18.4,0.3,27.2,1.9,0,29.1,1.4,2.7,9.1,364,4.62933333333333,4.44,a-cgpr-i1,2023-24 +Lynn - Fecteau-Leary Junior/Senior High School,1630525,0,0,0,18.2,0,0,77.3,0,0,4.5,22,5.09333333333333,4.44,a-cgpr-i1,2023-24 +Lynn - Lynn English High,1630510,11.6,18.6,1.4,14.7,0.9,0,20.7,2.6,1.4,28.1,430,3.62133333333333,4.44,a-cgpr-i1,2023-24 +Lynn - Lynn Vocational Technical Institute,1630605,6.7,20.8,0.4,24.2,2.9,0,42.5,2.1,0.4,0,240,5.2,4.44,a-cgpr-i1,2023-24 +Lynnfield - Lynnfield High,1640505,48.8,43.4,0.6,0.6,4.2,0,0.6,0,0.6,1.2,166,5.23733333333333,4.44,a-cgpr-i1,2023-24 +MATCH Charter Public School (District) - MATCH Charter Public School,4690505,36.1,43.1,0,12.5,0,5.6,2.8,0,0,0,72,5.33866666666667,4.44,a-cgpr-i1,2023-24 +Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,77.1,22.9,0,0,0,0,0,0,0,0,48,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Malden - Malden High,1650505,20.6,28.6,0.5,21.6,3.5,1.2,18.7,1.2,2.5,1.5,402,5.05066666666667,4.44,a-cgpr-i1,2023-24 +Manchester Essex Regional - Manchester Essex Regional High School,6980510,53.7,39.8,0,0.8,0,0,0.8,0.8,2.4,1.6,123,5.072,4.44,a-cgpr-i1,2023-24 +Mansfield - Mansfield High,1670505,38.6,41.7,0.3,4.4,3.7,0,4.4,0.3,2.5,4,321,4.96533333333333,4.44,a-cgpr-i1,2023-24 +Map Academy Charter School (District) - Map Academy Charter School,35170505,0,10,0,45,7.5,0,30,2.5,5,0,40,4.93333333333333,4.44,a-cgpr-i1,2023-24 +Marblehead - Marblehead High,1680505,43.7,49,0,0.8,0.8,0,0.8,0.8,3.3,0.8,245,5.072,4.44,a-cgpr-i1,2023-24 +Marlborough - Marlborough High,1700505,0,52.8,0,17.1,2,1.2,23.4,0.4,1.6,1.6,252,5.14666666666667,4.44,a-cgpr-i1,2023-24 +Marshfield - Marshfield High,1710505,32.1,46,0,5.3,1.7,0.3,0,0.7,11.9,2,302,4.55466666666667,4.44,a-cgpr-i1,2023-24 +Martha's Vineyard - Martha's Vineyard Regional High,7000505,36,26.1,0,3.1,2.5,0,23,0.6,0.6,8.1,161,4.83733333333333,4.44,a-cgpr-i1,2023-24 +Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,,,,,,,,,,,5,0,4.44,a-cgpr-i1,2023-24 +Masconomet - Masconomet Regional High School,7050505,43.1,34.7,0,12,0,2.6,3.6,0,1.8,2.2,274,5.12,4.44,a-cgpr-i1,2023-24 +Mashpee - Mashpee High,1720505,25,39.7,0,22.4,0,0.9,11.2,0.9,0,0,116,5.29066666666667,4.44,a-cgpr-i1,2023-24 +Maynard - Maynard High,1740505,29.3,40,1.3,14.7,0,0,2.7,0,2.7,9.3,75,4.69333333333333,4.44,a-cgpr-i1,2023-24 +Medfield - Medfield Senior High,1750505,51.8,35.9,0,0.5,0,0,0,0,0.5,11.3,195,4.704,4.44,a-cgpr-i1,2023-24 +Medford - Curtis-Tufts,1760510,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24 +Medford - Medford High,1760505,23.2,30.1,0,17,2.8,2.4,14.5,1,1.4,7.6,289,4.8,4.44,a-cgpr-i1,2023-24 +Medway - Medway High,1770505,43,27.8,0,4,0,0,2,1.3,1.3,20.5,151,4.096,4.44,a-cgpr-i1,2023-24 +Melrose - Melrose High,1780505,39,36.4,0,0.4,0.4,0,0,0.9,2.2,20.8,231,4.064,4.44,a-cgpr-i1,2023-24 +Mendon-Upton - Nipmuc Regional High,7100510,33.5,41.9,0.6,6.5,0,1.3,5.8,1.3,0.6,8.4,155,4.77866666666667,4.44,a-cgpr-i1,2023-24 +Methuen - Methuen High,1810505,18.8,22.7,0.2,21.4,3.1,0,12.4,2.4,0,19,453,4.192,4.44,a-cgpr-i1,2023-24 +Middleborough - Middleborough High,1820505,20.8,33.9,0,14.2,1.6,1.1,16.4,1.6,1.6,8.7,183,4.69333333333333,4.44,a-cgpr-i1,2023-24 +Milford - Milford High,1850505,24.5,30.3,0,7.3,0.4,0,7.3,1.5,1.1,27.6,261,3.72266666666667,4.44,a-cgpr-i1,2023-24 +Millbury - Millbury Junior/Senior High,1860505,29.2,34.5,0,15,2.7,0,0,2.7,13.3,2.7,113,4.34133333333333,4.44,a-cgpr-i1,2023-24 +Millis - Millis High School,1870505,38.6,38.6,0,8,0,0,4.5,2.3,1.1,6.8,88,4.784,4.44,a-cgpr-i1,2023-24 +Milton - Milton High,1890505,46.8,36.4,0,5.6,4.1,0.4,2.6,0.7,1.5,1.9,269,5.11466666666667,4.44,a-cgpr-i1,2023-24 +Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,19.6,24.6,1.4,8.7,0.7,8.7,17.4,2.2,16.7,0,138,4.32533333333333,4.44,a-cgpr-i1,2023-24 +Mohawk Trail - Mohawk Trail Regional School,7170505,19.6,29.4,0,19.6,0,0,31.4,0,0,0,51,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Monomoy Regional School District - Monomoy Regional High School,7120515,38.1,22.1,0.9,25.7,0.9,0.9,8.8,1.8,0.9,0,113,5.19466666666667,4.44,a-cgpr-i1,2023-24 +Monson - Monson High School,1910505,32.1,35.7,1.8,17.9,1.8,0,8.9,1.8,0,0,56,5.23733333333333,4.44,a-cgpr-i1,2023-24 +Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,11.3,23.6,0.3,18.8,1.2,0,33.4,1.5,9.9,0,335,4.72533333333333,4.44,a-cgpr-i1,2023-24 +Mount Greylock - Mt Greylock Regional High,7150505,46.4,25,1.2,15.5,3.6,0,4.8,1.2,2.4,0,84,5.14666666666667,4.44,a-cgpr-i1,2023-24 +Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,36.5,54.1,0,3.5,1.2,0,3.5,0,1.2,0,85,5.26933333333333,4.44,a-cgpr-i1,2023-24 +Nantucket - Nantucket High,1970505,29.7,31.4,1.7,5.1,0,0,31.4,0.8,0,0,118,5.296,4.44,a-cgpr-i1,2023-24 +Narragansett - Narragansett Regional High,7200505,15.4,23.1,0,21.2,0,0,7.7,3.8,11.5,17.3,52,3.59466666666667,4.44,a-cgpr-i1,2023-24 +Nashoba - Nashoba Regional,7250505,44.4,38.8,0.4,8.2,0,0.4,4.3,0,0.9,2.6,232,5.14666666666667,4.44,a-cgpr-i1,2023-24 +Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,10.5,19.2,0,15.7,2.9,0,37.2,2.3,0,12.2,172,4.56,4.44,a-cgpr-i1,2023-24 +Natick - Natick High,1980505,43.5,41,0,5.8,0.3,1,3.3,1.5,3.5,0,395,5.06133333333333,4.44,a-cgpr-i1,2023-24 +Nauset - Nauset Regional High,6600505,42.4,29.5,0,13.8,0,0,9.4,0,4.9,0,224,5.072,4.44,a-cgpr-i1,2023-24 +Needham - Needham High,1990505,55,36.3,0,0.7,0.7,0,0.5,0.2,0.2,6.3,413,4.97066666666667,4.44,a-cgpr-i1,2023-24 +Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,24.5,34.7,2,12.2,0,0,12.2,6.1,4.1,4.1,49,4.56533333333333,4.44,a-cgpr-i1,2023-24 +New Bedford - New Bedford High,2010505,7.4,16.8,0,24.7,2.3,0.2,45.5,1.3,1.3,0.4,470,5.168,4.44,a-cgpr-i1,2023-24 +New Bedford - Trinity Day Academy,2010510,0,0,0,16.7,16.7,0,50,0,16.7,0,6,4.448,4.44,a-cgpr-i1,2023-24 +New Bedford - Whaling City Junior/Senior High School,2010515,0,14.3,14.3,28.6,0,0,42.9,0,0,0,7,5.33866666666667,4.44,a-cgpr-i1,2023-24 +New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,0,100,0,0,0,0,0,0,0,0,86,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Newburyport - Newburyport High,2040505,34.5,49.5,0,6,1,0,4,0.5,3,1.5,200,5.06666666666667,4.44,a-cgpr-i1,2023-24 +Newton - Newton North High,2070505,49.4,35.8,0,2.9,0.6,0,2.9,0.8,7,0.6,486,4.88533333333333,4.44,a-cgpr-i1,2023-24 +Newton - Newton South High,2070510,58.4,29.7,0.6,2.3,0.4,0,1,1,0.2,6.3,478,4.928,4.44,a-cgpr-i1,2023-24 +Norfolk County Agricultural - Norfolk County Agricultural,9150705,14.7,41.9,1.6,12.4,1.6,0,21.7,1.6,4.7,0,129,5.008,4.44,a-cgpr-i1,2023-24 +North Adams - Drury High,2090505,21.1,25,0,5.3,7.9,0,25,1.3,7.9,6.6,76,4.496,4.44,a-cgpr-i1,2023-24 +North Andover - North Andover High,2110505,44.1,31.8,0,9.9,2.9,0,8,1.6,0.5,1.1,374,5.15733333333333,4.44,a-cgpr-i1,2023-24 +North Attleborough - North Attleboro High,2120505,33.1,38.5,0,9.3,0,0,5.1,0.4,0,13.6,257,4.58666666666667,4.44,a-cgpr-i1,2023-24 +North Brookfield - North Brookfield High,2150505,8.3,20.8,0,4.2,4.2,0,12.5,0,0,50,24,2.66666666666667,4.44,a-cgpr-i1,2023-24 +North Middlesex - North Middlesex Regional,7350505,29.9,38.8,0,12.9,2.5,0,9,1,5,1,201,4.96533333333333,4.44,a-cgpr-i1,2023-24 +North Reading - North Reading High,2170505,49.2,38.4,0,3.2,1.6,0.5,3.2,0.5,1.1,2.2,185,5.12533333333333,4.44,a-cgpr-i1,2023-24 +Northampton - Northampton High,2100505,45.4,22,0,13.8,0,2.8,4.6,0.5,7.3,3.7,218,4.72533333333333,4.44,a-cgpr-i1,2023-24 +Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,5.8,7.5,0,12.5,6.7,0,51.7,6.7,0.8,8.3,120,4.49066666666667,4.44,a-cgpr-i1,2023-24 +Northboro-Southboro - Algonquin Regional High,7300505,52.6,35.3,0.3,4.2,1.1,0,4.7,0,1.8,0,380,5.23733333333333,4.44,a-cgpr-i1,2023-24 +Northbridge - Northbridge High,2140505,22.5,34.2,0,7.2,3.6,0,23.4,5.4,0.9,2.7,111,4.848,4.44,a-cgpr-i1,2023-24 +Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,17.6,10,1.3,8.6,1.7,0.7,41.5,1.3,0,17.3,301,4.34133333333333,4.44,a-cgpr-i1,2023-24 +Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,11.9,20.2,0.9,11,5.5,0,44,6.4,0,0,109,4.98666666666667,4.44,a-cgpr-i1,2023-24 +Norton - Norton High,2180505,32,38.3,0,6.9,5.7,0,5.1,2.3,4,5.7,175,4.69333333333333,4.44,a-cgpr-i1,2023-24 +Norwell - Norwell High,2190505,55.2,35.8,0,4.2,0.6,0.6,2.4,0,0,1.2,165,5.26933333333333,4.44,a-cgpr-i1,2023-24 +Norwood - Norwood High,2200505,35.7,25.3,0.4,14.1,7.9,0,0.8,2.5,13.3,0,241,4.49066666666667,4.44,a-cgpr-i1,2023-24 +Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,7.7,20.8,0,17.7,0,0,45.4,3.8,2.3,2.3,130,4.88533333333333,4.44,a-cgpr-i1,2023-24 +Old Rochester - Old Rochester Regional High,7400505,34.4,43.5,0,8.6,1.6,0,5.4,1.1,1.1,4.3,186,4.98666666666667,4.44,a-cgpr-i1,2023-24 +Oxford - Oxford High,2260505,22.5,34.8,0,7.9,3.4,0,7.9,4.5,7.9,11.2,89,4.08,4.44,a-cgpr-i1,2023-24 +Palmer - Palmer High,2270505,28.2,24.4,0,17.9,3.8,0,23.1,1.3,0,1.3,78,5.19466666666667,4.44,a-cgpr-i1,2023-24 +Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,8.8,9.6,2.2,16.2,0,1.5,30.1,3.7,15.4,12.5,136,3.648,4.44,a-cgpr-i1,2023-24 +Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,10.3,17.2,0,48.3,1.7,0,17.2,1.7,1.7,1.7,58,5.05066666666667,4.44,a-cgpr-i1,2023-24 +Peabody - Peabody Veterans Memorial High,2290510,19.4,44.9,0.9,14.8,1.8,1.2,11.7,1.5,0,3.7,325,5.05066666666667,4.44,a-cgpr-i1,2023-24 +Pembroke - Pembroke High School,2310505,18,42.5,0,3.5,0,0,0,0,0,36,200,3.41333333333333,4.44,a-cgpr-i1,2023-24 +Pentucket - Pentucket Regional Sr High,7450505,40.5,27.4,0,9.5,1.1,0,0,0,4.7,16.8,190,4.18666666666667,4.44,a-cgpr-i1,2023-24 +Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,0,0,0,25,0,0,75,0,0,0,8,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,18.2,18.2,0,18.2,9.1,0,27.3,9.1,0,0,11,4.85333333333333,4.44,a-cgpr-i1,2023-24 +Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,0,75,0,12.5,0,0,12.5,0,0,0,8,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,48.1,34.6,0,15.4,0,0,0,1.9,0,0,52,5.232,4.44,a-cgpr-i1,2023-24 +Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,34,40,0,20,2,0,0,4,0,0,50,5.12,4.44,a-cgpr-i1,2023-24 +Pioneer Valley - Pioneer Valley Regional,7500505,15.7,31.4,0,25.5,5.9,0,13.7,3.9,3.9,0,51,4.91733333333333,4.44,a-cgpr-i1,2023-24 +Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,57.1,32.1,0,7.1,0,0,0,0,0,3.6,28,5.136,4.44,a-cgpr-i1,2023-24 +Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,35.1,24.6,0,26.3,0,0,8.8,1.8,0,3.5,57,5.056,4.44,a-cgpr-i1,2023-24 +Pittsfield - Eagle Education Academy,2360525,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24 +Pittsfield - Pittsfield High,2360505,20,22.2,0.5,24.9,2.2,0,16.8,1.6,4.3,7.6,185,4.61866666666667,4.44,a-cgpr-i1,2023-24 +Pittsfield - Taconic High,2360510,22.1,7,0,34.7,5.5,0,14.1,2.5,5.5,8.5,199,4.448,4.44,a-cgpr-i1,2023-24 +Plymouth - Plymouth North High,2390505,25.9,29.3,0,7.6,1.7,0.3,33.8,1,0,0.3,290,5.25866666666667,4.44,a-cgpr-i1,2023-24 +Plymouth - Plymouth South High,2390515,23.8,28.2,0.7,9.5,1.5,1.1,31.1,3.3,0.7,0,273,5.11466666666667,4.44,a-cgpr-i1,2023-24 +Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,39.1,37.7,0,13,0,1.4,2.9,0,2.9,2.9,69,5.01866666666667,4.44,a-cgpr-i1,2023-24 +Quabbin - Quabbin Regional High School,7530505,27.6,35.9,0,11.7,0.7,0.7,20,2.8,0,0.7,145,5.152,4.44,a-cgpr-i1,2023-24 +Quaboag Regional - Quaboag Regional High,7780505,27.6,34.5,0,12.6,2.3,0,17.2,1.1,1.1,3.4,87,5.024,4.44,a-cgpr-i1,2023-24 +Quincy - North Quincy High,2430510,31.1,40.5,1.6,9.7,1.3,1,3.6,4.9,4.2,2.3,309,4.736,4.44,a-cgpr-i1,2023-24 +Quincy - Quincy High,2430505,22.6,37.3,0.8,9.9,0.3,3.8,4.6,0.5,0.5,19.8,394,4.22933333333333,4.44,a-cgpr-i1,2023-24 +Ralph C Mahar - Ralph C Mahar Regional,7550505,7.4,25.5,0,35.1,1.1,0,22.3,2.1,1.1,5.3,94,4.87466666666667,4.44,a-cgpr-i1,2023-24 +Randolph - Randolph High,2440505,19.9,27.6,1.3,18.6,5.1,0,12.2,2.6,0,12.8,156,4.51733333333333,4.44,a-cgpr-i1,2023-24 +Reading - Reading Memorial High,2460505,47.7,33.2,0,5.8,2.8,0,3.7,1.8,3.1,1.8,325,4.97066666666667,4.44,a-cgpr-i1,2023-24 +Revere - Revere High,2480505,22.9,24.2,0,22.1,2.2,2.4,20.1,0.6,3,2.4,462,5.008,4.44,a-cgpr-i1,2023-24 +Revere - Seacoast School,2480520,4,0,0,24,0,0,44,0,8,20,25,3.84,4.44,a-cgpr-i1,2023-24 +Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,34.3,37.3,0,6,3,0,9,0,6,4.5,67,4.77866666666667,4.44,a-cgpr-i1,2023-24 +Rockland - Rockland Senior High,2510505,0,97.7,0,0,0,0,2.3,0,0,0,130,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Rockport - Rockport High,2520510,4.6,70.8,0,7.7,1.5,0,7.7,3.1,4.6,0,65,4.92266666666667,4.44,a-cgpr-i1,2023-24 +Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,6.1,74.7,0,13.1,1,0,1,1,2,1,99,5.11466666666667,4.44,a-cgpr-i1,2023-24 +Sabis International Charter (District) - Sabis International Charter School,4410505,30.3,21.2,0,30.3,12.1,0,1,2,0,3,99,5.06133333333333,4.44,a-cgpr-i1,2023-24 +Salem - New Liberty Innovation School,2580510,,,,,,,,,,,4,0,4.44,a-cgpr-i1,2023-24 +Salem - Salem High,2580505,18.9,17.6,0.4,16.7,5.2,1.7,1.7,2.1,17.6,18,233,3.31733333333333,4.44,a-cgpr-i1,2023-24 +Salem - Salem Prep High School,2580515,,,,,,,,,,,5,0,4.44,a-cgpr-i1,2023-24 +Salem Academy Charter (District) - Salem Academy Charter School,4850485,19.7,65.6,0,4.9,1.6,0,8.2,0,0,0,61,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Sandwich - Sandwich High,2610505,31.8,38.4,0,11.9,0.7,0,11.3,2.6,2,1.3,151,5.01866666666667,4.44,a-cgpr-i1,2023-24 +Saugus - Saugus High,2620505,27.3,37.9,0,14.3,6.2,0,8.7,0.6,2.5,2.5,161,5.03466666666667,4.44,a-cgpr-i1,2023-24 +Scituate - Scituate High School,2640505,44.4,42.3,0,0.4,0,0,4.6,0,3.3,5,241,4.89066666666667,4.44,a-cgpr-i1,2023-24 +Seekonk - Seekonk High,2650505,25.9,38.1,0,16.3,4.8,0,5.4,2.7,4.1,2.7,147,4.82666666666667,4.44,a-cgpr-i1,2023-24 +Sharon - Sharon High,2660505,47.6,35.8,0,2.4,0,0,0.4,0,2.8,11,254,4.59733333333333,4.44,a-cgpr-i1,2023-24 +Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,16.3,17.6,0,14.1,6.1,0,34.8,3.8,0,7.3,313,4.74133333333333,4.44,a-cgpr-i1,2023-24 +Shrewsbury - Shrewsbury Sr High,2710505,35,45.5,0,6.6,0.9,0.4,3.7,0.9,0.9,6.1,457,4.912,4.44,a-cgpr-i1,2023-24 +Silver Lake - Silver Lake Regional High,7600505,38.5,30.4,0,8.8,2.3,0,16.9,1.9,0.8,0.4,260,5.168,4.44,a-cgpr-i1,2023-24 +Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,8.2,69.4,4.1,8.2,0,0,8.2,0,2,0,49,5.232,4.44,a-cgpr-i1,2023-24 +Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,27.1,36.7,0.4,20.5,4.4,0.4,5.2,2.2,2.6,0.4,229,5.05066666666667,4.44,a-cgpr-i1,2023-24 +Somerville - Full Circle High School,2740510,0,0,0,50,0,0,40,0,0,10,10,4.8,4.44,a-cgpr-i1,2023-24 +Somerville - Somerville High,2740505,26.2,28.8,0.8,17.7,4.2,0,13.5,1.9,4.2,2.7,260,4.864,4.44,a-cgpr-i1,2023-24 +South Hadley - South Hadley High,2780505,29.7,19.6,0,23.6,0.7,0,9.5,1.4,0,15.5,148,4.432,4.44,a-cgpr-i1,2023-24 +South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,11.7,15.2,0,12.9,2.3,4.7,49.1,1.2,1.8,1.2,171,5.11466666666667,4.44,a-cgpr-i1,2023-24 +South Shore Charter Public (District) - South Shore Charter Public School,4880550,39.2,39.2,0,13.5,0,0,4.1,0,2.7,1.4,74,5.12,4.44,a-cgpr-i1,2023-24 +South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,6.6,22.4,0,8.6,0,0,55.3,4.6,0.7,2,152,4.95466666666667,4.44,a-cgpr-i1,2023-24 +Southbridge - Southbridge Academy,2770525,,,,,,,,,,,1,0,4.44,a-cgpr-i1,2023-24 +Southbridge - Southbridge High School,2770515,10.3,11.8,1.5,11.8,1.5,0,32.4,2.9,0,27.9,68,3.696,4.44,a-cgpr-i1,2023-24 +Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,19.1,24.7,0.3,11.6,3.9,2.5,31.9,2.8,0,3.3,361,5.01333333333333,4.44,a-cgpr-i1,2023-24 +Southern Berkshire - Mt Everett Regional,7650505,27.7,29.8,0,17,0,0,10.6,8.5,6.4,0,47,4.53866666666667,4.44,a-cgpr-i1,2023-24 +Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,12.6,23.3,0,9.3,4.4,1.9,34.4,3.3,0,10.7,270,4.58133333333333,4.44,a-cgpr-i1,2023-24 +Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,25,28.1,0,17.7,2.1,0,16.7,2.1,0,8.3,96,4.77866666666667,4.44,a-cgpr-i1,2023-24 +Spencer-E Brookfield - David Prouty High,7670505,12.3,26.3,1.8,21.1,7,1.8,19.3,0,1.8,8.8,57,4.77866666666667,4.44,a-cgpr-i1,2023-24 +Springfield - Conservatory of the Arts,2810475,20,13.3,0,20,6.7,0,23.3,3.3,0,13.3,30,4.44266666666667,4.44,a-cgpr-i1,2023-24 +Springfield - Gateway to College at Holyoke Community College,2810575,0,0,0,50,0,0,50,0,0,0,14,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Springfield - Gateway to College at Springfield Technical Community College,2810580,0,0,0,28.6,4.8,0,52.4,9.5,4.8,0,21,4.576,4.44,a-cgpr-i1,2023-24 +Springfield - High School Of Commerce,2810510,13.7,13.3,2.2,34.1,6.2,0,14.2,2.2,8.4,5.8,226,4.464,4.44,a-cgpr-i1,2023-24 +Springfield - John J Duggan Middle,2810320,13.8,17.2,1.7,20.7,0,0,12.1,1.7,1.7,31,58,3.49333333333333,4.44,a-cgpr-i1,2023-24 +Springfield - Liberty Preparatory Academy,2810560,,,,,,,,,,,2,0,4.44,a-cgpr-i1,2023-24 +Springfield - Roger L. Putnam Vocational Technical Academy,2810620,14.9,8.8,0,28.9,2.3,0,26.3,5.2,7.8,5.8,308,4.33066666666667,4.44,a-cgpr-i1,2023-24 +Springfield - Springfield Central High,2810500,12.6,9.5,0.4,30.5,1.3,0,28.4,4,2.5,10.9,476,4.41066666666667,4.44,a-cgpr-i1,2023-24 +Springfield - Springfield High School,2810570,0,6.3,0,31.3,6.3,0,50,6.3,0,0,16,5.008,4.44,a-cgpr-i1,2023-24 +Springfield - Springfield High School of Science and Technology,2810530,0,16.5,0.4,26.2,2.6,0,35.2,4.1,1.1,13.9,267,4.31466666666667,4.44,a-cgpr-i1,2023-24 +Springfield - Springfield Public Day High School,2810550,0,0,0,15.4,0,0,69.2,0,0,15.4,13,4.512,4.44,a-cgpr-i1,2023-24 +Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,29.6,19.8,0,30.9,4.9,0,11.1,1.2,0,2.5,81,5.136,4.44,a-cgpr-i1,2023-24 +Stoneham - Stoneham High,2840505,41.4,38.5,0.6,6.3,2.3,0,6.9,0,1.7,2.3,174,5.12,4.44,a-cgpr-i1,2023-24 +Stoughton - Stoughton High,2850505,27.3,34.7,0.8,18.8,1.2,2,9,0.4,1.2,4.5,245,5.00266666666667,4.44,a-cgpr-i1,2023-24 +Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,47.7,29.7,0,11.8,0,0,2.1,1.5,2.1,5.1,195,4.86933333333333,4.44,a-cgpr-i1,2023-24 +Sutton - Sutton High School,2900510,42.4,35.3,0,3.5,5.9,0,8.2,1.2,1.2,2.4,85,5.08266666666667,4.44,a-cgpr-i1,2023-24 +Swampscott - Swampscott High,2910505,37.9,42.9,0,5.1,2.8,0,6.2,0.6,2.8,1.7,177,5.06133333333333,4.44,a-cgpr-i1,2023-24 +Swansea - Joseph Case High,2920505,15.9,31.8,0.8,23.5,2.3,0,15.2,2.3,0,8.3,132,4.77333333333333,4.44,a-cgpr-i1,2023-24 +TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0,33.6,0,16.4,5.5,0,10.3,1.4,16.8,16.1,292,3.50933333333333,4.44,a-cgpr-i1,2023-24 +Tantasqua - Tantasqua Regional Sr High,7700505,32.6,37.8,1.7,13.4,1.2,0,8.1,1.7,2.3,1.2,172,5.056,4.44,a-cgpr-i1,2023-24 +Tantasqua - Tantasqua Regional Vocational,7700605,9.1,12.7,0,25.5,3.6,1.8,40.9,4.5,0.9,0.9,110,4.992,4.44,a-cgpr-i1,2023-24 +Taunton - Taunton Alternative High School,2930525,1,1.9,0,5.7,0,0,89.5,1,0,1,105,5.232,4.44,a-cgpr-i1,2023-24 +Taunton - Taunton High,2930505,24,33.6,0.7,17.6,1.2,0.2,13.5,2.2,0,6.9,408,4.84266666666667,4.44,a-cgpr-i1,2023-24 +Tewksbury - Tewksbury Memorial High,2950505,35.7,43.3,0,5.7,1.9,0,6.7,1.9,2.9,1.9,210,4.976,4.44,a-cgpr-i1,2023-24 +Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,24.9,19,0.5,9,1.4,0,42.1,1.8,0.9,0.5,221,5.168,4.44,a-cgpr-i1,2023-24 +Triton - Triton Regional High School,7730505,37.2,31,0,9.7,4.8,0,9,0,7.6,0.7,145,4.89066666666667,4.44,a-cgpr-i1,2023-24 +Tyngsborough - Tyngsborough High School,3010505,27.9,47.7,0.9,12.6,0,0.9,9.9,0,0,0,111,5.328,4.44,a-cgpr-i1,2023-24 +Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,11,20.3,0.6,8.7,2.9,11.6,33.7,5.8,0,5.2,172,4.736,4.44,a-cgpr-i1,2023-24 +Uxbridge - Gateway to College,3040515,3.6,0,0,50,3.6,0,42.9,0,0,0,28,5.33866666666667,4.44,a-cgpr-i1,2023-24 +Uxbridge - Uxbridge High,3040505,34.6,34.6,0,11.5,1.9,0,13.5,1,0,2.9,104,5.12533333333333,4.44,a-cgpr-i1,2023-24 +Wachusett - Wachusett Regional High,7750505,34.1,41.5,0,10.7,1.6,0,4.7,0.6,2.3,4.5,487,4.93866666666667,4.44,a-cgpr-i1,2023-24 +Wakefield - Wakefield Memorial High,3050505,40,44.5,0,6.1,0,0,5.3,1.6,2,0.4,245,5.11466666666667,4.44,a-cgpr-i1,2023-24 +Walpole - Walpole High,3070505,41,37.2,0,6.5,1.5,0.8,8,0.4,0.8,3.8,261,5.06666666666667,4.44,a-cgpr-i1,2023-24 +Waltham - Waltham Sr High,3080505,23.6,26.3,0.5,14.1,3.5,1.1,23.6,1.9,0.5,4.9,369,4.944,4.44,a-cgpr-i1,2023-24 +Ware - Ware Junior/Senior High School,3090505,16.7,38.9,0,7.4,3.7,0,29.6,0,1.9,1.9,54,5.136,4.44,a-cgpr-i1,2023-24 +Wareham - Wareham Cooperative Alternative School,3100315,0,25,0,0,0,0,75,0,0,0,8,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Wareham - Wareham Senior High,3100505,22.2,28.6,0,9.5,3.2,0,30.2,0,6.3,0,63,4.99733333333333,4.44,a-cgpr-i1,2023-24 +Watertown - Watertown High,3140505,36,33.7,0,12.9,0.6,1.1,4.5,0.6,3.4,7.3,178,4.736,4.44,a-cgpr-i1,2023-24 +Wayland - Wayland High School,3150505,57.5,32.9,0,1.3,1.8,0,2.2,0,1.3,3.1,228,5.104,4.44,a-cgpr-i1,2023-24 +Webster - Bartlett High School,3160505,26.6,11.4,0,13.9,0,0,32.9,2.5,6.3,6.3,79,4.52266666666667,4.44,a-cgpr-i1,2023-24 +Wellesley - Wellesley Sr High,3170505,61.9,31.3,0,0.5,1,0,0.3,0,0,5,383,5.06666666666667,4.44,a-cgpr-i1,2023-24 +West Boylston - West Boylston Junior/Senior High,3220505,28.8,39.4,0,19.7,4.5,0,0,1.5,6.1,0,66,4.928,4.44,a-cgpr-i1,2023-24 +West Bridgewater - West Bridgewater Junior/Senior,3230505,29.1,45.6,0,8.7,1.9,0,13.6,1,0,0,103,5.27466666666667,4.44,a-cgpr-i1,2023-24 +West Springfield - West Springfield High,3320505,24.3,16.1,0,33.6,2.5,0.4,16.1,1.8,5,0.4,280,4.96,4.44,a-cgpr-i1,2023-24 +Westborough - Westborough High,3210505,45.4,38.1,0,4.8,0.3,0.3,1.3,0.3,2.2,7.3,315,4.81066666666667,4.44,a-cgpr-i1,2023-24 +Westfield - Westfield High,3250505,26.2,28,0.4,25.1,0.7,0,15.8,2.5,0.7,0.7,279,5.13066666666667,4.44,a-cgpr-i1,2023-24 +Westfield - Westfield Technical Academy,3250605,1.5,11.9,1.5,28.1,0,0,51.9,4.4,0,0.7,135,5.06133333333333,4.44,a-cgpr-i1,2023-24 +Westford - Westford Academy,3260505,47.4,39.2,0,8.2,1.6,0.2,1.4,0.7,0.9,0.5,441,5.22666666666667,4.44,a-cgpr-i1,2023-24 +Weston - Weston High,3300505,72,24.4,0,0.6,1.8,0,0.6,0,0,0.6,164,5.30133333333333,4.44,a-cgpr-i1,2023-24 +Westport - Westport Junior/Senior High School,3310515,16,30.9,0,21,1.2,0,24.7,1.2,1.2,3.7,81,5.00266666666667,4.44,a-cgpr-i1,2023-24 +Westwood - Westwood High,3350505,65.6,33.2,0,0.4,0.4,0,0,0,0.4,0,241,5.312,4.44,a-cgpr-i1,2023-24 +Weymouth - Weymouth High School,3360505,20.9,32.5,0,13.3,5.7,1.7,12.1,2.1,1.2,10.7,422,4.59733333333333,4.44,a-cgpr-i1,2023-24 +Whitman-Hanson - Whitman Hanson Regional,7800505,34.6,32,0,13.8,2.2,0.4,9.7,3.3,0.7,3.3,269,4.944,4.44,a-cgpr-i1,2023-24 +Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,13.1,16.9,0,25.1,5.6,0,37.1,2.2,0,0,267,5.216,4.44,a-cgpr-i1,2023-24 +Wilmington - Wilmington High,3420505,45.2,29.6,0,8.1,1.1,0,6.5,0.5,5.9,3.2,186,4.82666666666667,4.44,a-cgpr-i1,2023-24 +Winchendon - Murdock Academy for Success,3430405,0,9.1,0,18.2,9.1,0,63.6,0,0,0,11,5.33333333333333,4.44,a-cgpr-i1,2023-24 +Winchendon - Murdock High School,3430515,16.1,23.2,0,12.5,1.8,0,41.1,0,5.4,0,56,5.05066666666667,4.44,a-cgpr-i1,2023-24 +Winchester - Winchester High School,3440505,60.5,32.3,0,1.7,0.6,0,0.3,0.8,2.2,1.7,362,5.088,4.44,a-cgpr-i1,2023-24 +Winthrop - Winthrop High School,3460505,35.9,28.2,0.7,12.7,4.9,0,13.4,2.1,0,2.1,142,5.10933333333333,4.44,a-cgpr-i1,2023-24 +Woburn - Woburn High,3470505,0,58.7,0,9.6,5.3,0,13.2,3.3,8.3,1.7,303,4.62933333333333,4.44,a-cgpr-i1,2023-24 +Worcester - Burncoat Senior High,3480503,13.9,22,0.4,33.1,4.1,0,18.4,3.3,1.2,3.7,245,4.90133333333333,4.44,a-cgpr-i1,2023-24 +Worcester - Claremont Academy,3480350,9.5,16.7,2.4,27.4,3.6,0,34.5,2.4,0,3.6,84,5.01866666666667,4.44,a-cgpr-i1,2023-24 +Worcester - Doherty Memorial High,3480512,24.7,27.1,0,22.7,3.1,0,19.3,1.6,0,1.6,384,5.168,4.44,a-cgpr-i1,2023-24 +Worcester - North High,3480515,5.4,20.8,0.6,38.3,6.1,0,20.8,2.9,0.3,4.8,313,4.90666666666667,4.44,a-cgpr-i1,2023-24 +Worcester - South High Community,3480520,17.3,21.2,1,20.6,2.6,0,32,2,0,3.3,306,5.05066666666667,4.44,a-cgpr-i1,2023-24 +Worcester - University Pk Campus School,3480285,26.3,42.1,0,13.2,2.6,0,2.6,10.5,2.6,0,38,4.62933333333333,4.44,a-cgpr-i1,2023-24 +Worcester - Worcester Technical High,3480605,14.7,40.9,0.3,12.1,0.6,0,17,2.6,0,11.8,347,4.56533333333333,4.44,a-cgpr-i1,2023-24 diff --git a/spec/fixtures/sample_staffing_data.csv b/spec/fixtures/sample_staffing_data.csv index 3d6a638c..c6b3ede2 100644 --- a/spec/fixtures/sample_staffing_data.csv +++ b/spec/fixtures/sample_staffing_data.csv @@ -1,11067 +1,11067 @@ Raw likert calculation,Likert Score,Admin Data Item,Academic Year,School Name,DESE ID,African American (%),Asian (%),Hispanic (%),White (%),Native Amertican (%),"Native Hawaiian, Pacific Islander (%)","Multi-Race,Non-Hispanic (%)",Females (%),Males (%),FTE Count -3.218749999999999,3.22,a-pcom-i3,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 4.5, 0.6, 3.5, 89.7, 0.0, 0.6, 1.2, 78.1, 21.9, 173.4 -1,1,a-pcom-i3,2021-22,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.0 -2.34375,2.34,a-pcom-i3,2021-22,Abington - Abington High,00010505, 0.0, 1.5, 6.0, 92.5, 0.0, 0.0, 0.0, 72.5, 27.5, 66.6 -3.0937500000000018,3.09,a-pcom-i3,2021-22,Abington - Abington Middle School,00010405, 1.3, 1.3, 5.9, 90.1, 0.0, 0.0, 1.3, 76.3, 23.7, 75.1 -1,1,a-pcom-i3,2021-22,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 98.6, 1.4, 69.7 -1,1,a-pcom-i3,2021-22,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 39.1 -14.937499999999998,5,a-pcom-i3,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 27.6, 9.1, 10.0, 52.2, 0.0, 0.0, 1.1, 65.7, 34.3, 90.4 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.5, 2.4, 1.5, 94.2, 0.5, 0.0, 0.9, 75.0, 25.0, 198.7 -2.5,2.5,a-pcom-i3,2021-22,Acton-Boxborough - Blanchard Memorial School,06000005, 1.1, 6.2, 0.7, 92.0, 0.0, 0.0, 0.0, 87.7, 12.3, 88.0 -1.40625,1.41,a-pcom-i3,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 94.4, 5.6, 53.6 -3.4687499999999982,3.47,a-pcom-i3,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 11.1, 0.0, 88.9, 0.0, 0.0, 0.0, 96.6, 3.4, 29.5 -4.937499999999999,4.94,a-pcom-i3,2021-22,Acton-Boxborough - Luther Conant School,06000030, 0.0, 11.4, 3.0, 84.2, 0.0, 0.0, 1.5, 97.0, 3.0, 67.7 -3.1562499999999982,3.16,a-pcom-i3,2021-22,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 7.6, 2.5, 89.9, 0.0, 0.0, 0.0, 95.4, 4.6, 65.8 -3.8750000000000018,3.88,a-pcom-i3,2021-22,Acton-Boxborough - Merriam School,06000010, 2.9, 6.6, 1.5, 87.6, 0.0, 0.0, 1.5, 95.7, 4.3, 68.9 -2.6250000000000018,2.63,a-pcom-i3,2021-22,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 6.5, 1.9, 91.6, 0.0, 0.0, 0.0, 95.4, 4.6, 52.2 -2.0000000000000018,2.0,a-pcom-i3,2021-22,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.9, 3.7, 0.9, 93.6, 0.0, 0.0, 1.1, 82.8, 17.2, 116.3 -1,1,a-pcom-i3,2021-22,Acushnet - Acushnet Elementary School,00030025, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 94.6, 5.4, 65.1 -1,1,a-pcom-i3,2021-22,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.7, 27.3, 45.8 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 5.3, 1.6, 91.4, 0.0, 0.0, 1.7, 56.0, 44.0, 115.2 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Agawam - Agawam Early Childhood Center,00050003, 0.3, 0.0, 4.5, 95.2, 0.0, 0.0, 0.0, 99.7, 0.3, 44.6 -1,1,a-pcom-i3,2021-22,Agawam - Agawam High,00050505, 0.7, 0.0, 0.6, 98.7, 0.0, 0.0, 0.0, 67.9, 32.1, 159.2 -1,1,a-pcom-i3,2021-22,Agawam - Agawam Junior High,00050405, 0.1, 0.0, 1.2, 98.7, 0.0, 0.0, 0.0, 65.9, 34.1, 85.3 -1,1,a-pcom-i3,2021-22,Agawam - Benjamin J Phelps,00050020, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 89.6, 10.4, 54.5 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Agawam - Clifford M Granger,00050010, 0.2, 0.0, 3.4, 96.4, 0.0, 0.0, 0.0, 98.1, 1.9, 58.7 -1,1,a-pcom-i3,2021-22,Agawam - James Clark School,00050030, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 96.4, 3.6, 59.5 -1,1,a-pcom-i3,2021-22,Agawam - Roberta G. Doering School,00050303, 0.2, 0.0, 1.2, 98.6, 0.0, 0.0, 0.0, 80.2, 19.8, 81.4 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Agawam - Robinson Park,00050025, 3.9, 0.0, 0.0, 96.1, 0.0, 0.0, 0.0, 95.2, 4.8, 54.6 -8.90625,5,a-pcom-i3,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 13.9, 0.7, 13.9, 71.5, 0.0, 0.0, 0.0, 77.8, 22.2, 144.0 -1,1,a-pcom-i3,2021-22,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 53.2 -1,1,a-pcom-i3,2021-22,Amesbury - Amesbury High,00070505, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 69.3, 30.7, 70.4 -1,1,a-pcom-i3,2021-22,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.1, 45.9, 7.6 -1,1,a-pcom-i3,2021-22,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 73.5, 26.5, 81.4 -1,1,a-pcom-i3,2021-22,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 62.1 -8.125,5,a-pcom-i3,2021-22,Amherst - Crocker Farm Elementary,00080009, 3.7, 6.2, 16.1, 74.0, 0.0, 0.0, 0.0, 87.4, 12.6, 86.9 -9.656250000000002,5,a-pcom-i3,2021-22,Amherst - Fort River Elementary,00080020, 3.7, 6.3, 19.7, 69.1, 0.0, 0.0, 1.2, 81.4, 18.6, 81.2 -11.124999999999998,5,a-pcom-i3,2021-22,Amherst - Wildwood Elementary,00080050, 16.8, 4.1, 11.0, 64.4, 0.0, 0.0, 3.7, 81.3, 18.7, 81.9 -8.624999999999998,5,a-pcom-i3,2021-22,Amherst-Pelham - Amherst Regional High,06050505, 14.2, 3.2, 8.4, 72.4, 0.0, 0.0, 1.8, 63.9, 36.1, 155.4 -11.218750000000002,5,a-pcom-i3,2021-22,Amherst-Pelham - Amherst Regional Middle School,06050405, 13.5, 1.6, 19.2, 64.1, 0.0, 0.0, 1.6, 66.4, 33.6, 74.1 -3.4375,3.44,a-pcom-i3,2021-22,Andover - Andover High,00090505, 1.0, 3.9, 5.7, 89.0, 0.0, 0.5, 0.0, 70.6, 29.4, 204.6 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Andover - Andover West Middle,00090310, 1.2, 1.2, 2.3, 94.2, 0.0, 0.0, 1.2, 81.5, 18.5, 85.6 -2.34375,2.34,a-pcom-i3,2021-22,Andover - Bancroft Elementary,00090003, 0.0, 5.4, 1.1, 92.5, 0.0, 0.0, 1.1, 92.6, 7.4, 93.1 -3.2500000000000018,3.25,a-pcom-i3,2021-22,Andover - Doherty Middle,00090305, 0.0, 3.9, 5.2, 89.6, 1.3, 0.0, 0.0, 79.5, 20.5, 76.7 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Andover - Henry C Sanborn Elementary,00090010, 0.0, 1.8, 0.0, 96.3, 0.0, 0.0, 1.8, 92.6, 7.4, 54.2 -2.718750000000001,2.72,a-pcom-i3,2021-22,Andover - High Plain Elementary,00090004, 0.0, 4.5, 4.2, 91.3, 0.0, 0.0, 0.0, 92.8, 7.2, 90.1 -5.874999999999999,5,a-pcom-i3,2021-22,Andover - Shawsheen School,00090005, 0.0, 16.4, 2.5, 81.2, 0.0, 0.0, 0.0, 95.4, 4.6, 40.6 -1,1,a-pcom-i3,2021-22,Andover - South Elementary,00090020, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 94.8, 5.2, 69.7 -1.875,1.88,a-pcom-i3,2021-22,Andover - West Elementary,00090025, 0.9, 3.3, 0.8, 94.0, 0.0, 0.0, 0.9, 91.2, 8.8, 108.0 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Andover - Wood Hill Middle School,00090350, 0.0, 1.6, 3.3, 95.1, 0.0, 0.0, 0.0, 76.8, 23.2, 61.3 -6.281249999999998,5,a-pcom-i3,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 6.9, 0.3, 8.6, 79.9, 0.0, 0.0, 4.4, 67.7, 32.3, 68.5 -2.3125000000000018,2.31,a-pcom-i3,2021-22,Arlington - Arlington High,00100505, 1.8, 1.8, 2.9, 92.6, 0.0, 0.0, 0.9, 59.8, 40.2, 176.0 -3.8750000000000018,3.88,a-pcom-i3,2021-22,Arlington - Brackett,00100010, 3.1, 3.1, 4.6, 87.6, 0.0, 0.0, 1.5, 89.2, 10.8, 64.7 -3.656250000000001,3.66,a-pcom-i3,2021-22,Arlington - Cyrus E Dallin,00100025, 3.3, 6.7, 0.0, 88.3, 0.0, 0.0, 1.7, 85.5, 12.9, 59.9 -1.40625,1.41,a-pcom-i3,2021-22,Arlington - Gibbs School,00100305, 1.7, 1.3, 0.0, 95.5, 0.0, 0.0, 1.5, 68.4, 31.6, 66.4 -2.1875,2.19,a-pcom-i3,2021-22,Arlington - Hardy,00100030, 2.0, 3.4, 1.7, 93.0, 0.0, 0.0, 0.0, 96.4, 3.6, 59.1 -2.4687500000000018,2.47,a-pcom-i3,2021-22,Arlington - John A Bishop,00100005, 4.1, 1.9, 0.0, 92.1, 0.0, 0.0, 1.9, 92.4, 7.6, 52.6 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Arlington - M Norcross Stratton,00100055, 0.0, 2.5, 1.3, 94.9, 1.3, 0.0, 0.0, 92.3, 7.7, 78.5 -3.031250000000001,3.03,a-pcom-i3,2021-22,Arlington - Menotomy Preschool,00100038, 0.0, 3.2, 0.0, 90.3, 0.0, 0.0, 6.5, 100.0, 0.0, 30.8 -3.6249999999999982,3.62,a-pcom-i3,2021-22,Arlington - Ottoson Middle,00100410, 1.8, 6.5, 2.5, 88.4, 0.8, 0.0, 0.0, 75.3, 24.7, 118.8 -3.8750000000000018,3.88,a-pcom-i3,2021-22,Arlington - Peirce,00100045, 2.3, 2.0, 6.0, 87.6, 0.0, 0.0, 2.0, 94.6, 5.4, 49.8 -1.6562499999999991,1.66,a-pcom-i3,2021-22,Arlington - Thompson,00100050, 1.4, 3.9, 0.0, 94.7, 0.0, 0.0, 0.0, 84.1, 15.9, 71.2 -1.25,1.25,a-pcom-i3,2021-22,Ashburnham-Westminster - Briggs Elementary,06100025, 1.3, 0.0, 0.3, 96.0, 0.0, 0.0, 2.5, 83.3, 16.7, 79.2 -1,1,a-pcom-i3,2021-22,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 97.5, 2.5, 25.9 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Ashburnham-Westminster - Oakmont Regional High School,06100505, 3.9, 0.0, 0.3, 95.8, 0.0, 0.0, 0.0, 56.2, 43.8, 76.0 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Ashburnham-Westminster - Overlook Middle School,06100305, 1.8, 0.0, 2.1, 96.1, 0.0, 0.0, 0.0, 69.8, 30.2, 56.3 -1,1,a-pcom-i3,2021-22,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 92.7, 7.3, 45.8 -2.250000000000001,2.25,a-pcom-i3,2021-22,Ashland - Ashland High,00140505, 4.8, 0.0, 1.2, 92.8, 0.0, 0.0, 1.2, 62.4, 37.6, 83.2 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Ashland - Ashland Middle,00140405, 0.0, 2.4, 1.2, 95.3, 0.0, 0.0, 1.2, 72.2, 27.8, 84.2 -1,1,a-pcom-i3,2021-22,Ashland - David Mindess,00140015, 1.2, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 91.2, 8.8, 84.2 -1.5625,1.56,a-pcom-i3,2021-22,Ashland - Henry E Warren Elementary,00140010, 0.0, 3.0, 2.0, 95.0, 0.0, 0.0, 0.0, 96.3, 3.7, 100.7 -2.2187499999999982,2.22,a-pcom-i3,2021-22,Ashland - William Pittaway Elementary,00140005, 0.0, 3.5, 3.5, 92.9, 0.0, 0.0, 0.0, 95.4, 4.6, 28.4 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.6, 0.0, 3.2, 96.2, 0.0, 0.0, 0.0, 51.3, 48.7, 157.0 -1,1,a-pcom-i3,2021-22,Athol-Royalston - Athol Community Elementary School,06150020, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 92.5, 7.5, 79.8 -1,1,a-pcom-i3,2021-22,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.7, 34.3, 47.8 -1,1,a-pcom-i3,2021-22,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.9, 31.1, 51.5 -1,1,a-pcom-i3,2021-22,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 16.2 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.6, 1.1, 0.5, 95.8, 0.5, 0.0, 0.5, 81.9, 18.1, 189.5 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 98.1, 1.9, 52.4 -15.46875,5,a-pcom-i3,2021-22,Attleboro - Attleboro Community Academy,00160515, 40.0, 0.0, 9.5, 50.5, 0.0, 0.0, 0.0, 50.5, 49.5, 5.3 -2.65625,2.66,a-pcom-i3,2021-22,Attleboro - Attleboro High,00160505, 2.0, 1.0, 5.0, 91.5, 0.0, 0.0, 0.5, 70.4, 29.6, 197.5 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Attleboro - Attleboro Virtual Academy,00160705, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 57.1, 42.9, 6.5 -2.03125,2.03,a-pcom-i3,2021-22,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 1.5, 4.4, 93.5, 0.0, 0.0, 0.7, 80.9, 19.1, 68.9 -1,1,a-pcom-i3,2021-22,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 100.0, 0.0, 32.8 -2.9999999999999982,3.0,a-pcom-i3,2021-22,Attleboro - Hill-Roberts Elementary School,00160045, 0.9, 4.4, 4.4, 90.4, 0.0, 0.0, 0.0, 95.6, 4.4, 45.8 -2.593749999999999,2.59,a-pcom-i3,2021-22,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 8.3, 91.7, 0.0, 0.0, 0.0, 90.9, 9.1, 48.3 -2.03125,2.03,a-pcom-i3,2021-22,Attleboro - Peter Thacher Elementary School,00160050, 1.3, 1.3, 2.6, 93.5, 0.0, 0.0, 1.3, 91.1, 8.9, 77.2 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Attleboro - Robert J. Coelho Middle School,00160305, 3.0, 0.0, 1.9, 95.1, 0.0, 0.0, 0.0, 77.8, 22.2, 53.3 -2.1875,2.19,a-pcom-i3,2021-22,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.3, 4.7, 93.0, 0.0, 0.0, 0.0, 95.3, 4.7, 42.7 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 2.9, 95.2, 1.9, 0.0, 0.0, 76.5, 23.5, 52.5 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Auburn - Auburn Middle,00170305, 0.0, 1.9, 2.8, 95.3, 0.0, 0.0, 0.0, 74.0, 26.0, 70.9 -2.093750000000001,2.09,a-pcom-i3,2021-22,Auburn - Auburn Senior High,00170505, 1.7, 0.4, 3.7, 93.3, 0.0, 0.0, 0.9, 72.3, 27.7, 109.5 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 100.0, 0.0, 45.4 -2.65625,2.66,a-pcom-i3,2021-22,Auburn - Pakachoag School,00170025, 2.7, 1.8, 4.0, 91.5, 0.0, 0.0, 0.0, 100.0, 0.0, 37.3 -1.71875,1.72,a-pcom-i3,2021-22,Auburn - Swanson Road Intermediate School,00170030, 0.0, 1.4, 4.1, 94.5, 0.0, 0.0, 0.0, 92.4, 7.6, 72.4 -5.750000000000002,5,a-pcom-i3,2021-22,Avon - Avon Middle High School,00180510, 10.2, 4.1, 4.1, 81.6, 0.0, 0.0, 0.0, 63.1, 36.9, 48.8 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Avon - Ralph D Butler,00180010, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 96.2, 3.8, 53.3 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.9, 0.0, 1.9, 96.2, 0.0, 0.0, 0.0, 56.2, 43.8, 52.9 -2.250000000000001,2.25,a-pcom-i3,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.8, 0.0, 3.6, 92.8, 0.0, 0.0, 1.8, 69.5, 30.5, 55.7 -1,1,a-pcom-i3,2021-22,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 96.4, 3.6, 56.0 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 1.9, 0.0, 96.8, 0.0, 0.0, 1.3, 93.4, 6.6, 76.0 -1,1,a-pcom-i3,2021-22,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 93.4, 6.6, 45.2 -2.5312499999999982,2.53,a-pcom-i3,2021-22,Barnstable - Barnstable High,00200505, 3.1, 1.9, 2.7, 91.9, 0.4, 0.0, 0.0, 66.9, 33.1, 258.1 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Barnstable - Barnstable Intermediate School,00200315, 2.8, 0.0, 0.9, 96.3, 0.0, 0.0, 0.0, 79.5, 20.5, 107.2 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Barnstable - Barnstable United Elementary School,00200050, 0.9, 0.0, 0.9, 96.6, 0.9, 0.0, 0.9, 91.4, 8.6, 116.9 -1,1,a-pcom-i3,2021-22,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 2.1, 97.3, 0.6, 0.0, 0.0, 91.2, 8.8, 48.1 -1,1,a-pcom-i3,2021-22,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 100.0, 0.0, 36.3 -2.749999999999999,2.75,a-pcom-i3,2021-22,Barnstable - Hyannis West Elementary,00200025, 1.8, 3.5, 3.5, 91.2, 0.0, 0.0, 0.0, 96.0, 4.0, 56.7 -1,1,a-pcom-i3,2021-22,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 99.3, 0.7, 0.0, 0.0, 91.8, 8.2, 43.2 -2.406250000000001,2.41,a-pcom-i3,2021-22,Barnstable - West Villages Elementary School,00200045, 4.6, 0.0, 1.5, 92.3, 0.0, 0.0, 1.5, 93.0, 7.0, 64.8 -13.687499999999998,5,a-pcom-i3,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 17.2, 1.6, 23.4, 56.2, 0.0, 0.0, 1.6, 60.9, 39.1, 64.0 -2.4687500000000018,2.47,a-pcom-i3,2021-22,Bedford - Bedford High,00230505, 3.1, 1.6, 3.1, 92.1, 0.0, 0.0, 0.0, 65.9, 34.1, 121.2 -1.8437500000000018,1.84,a-pcom-i3,2021-22,Bedford - John Glenn Middle,00230305, 1.1, 1.1, 2.5, 94.1, 1.1, 0.0, 0.0, 75.7, 24.3, 87.7 -3.7187500000000018,3.72,a-pcom-i3,2021-22,Bedford - Lt Elezer Davis,00230010, 2.9, 6.2, 1.0, 88.1, 0.0, 0.0, 1.9, 94.3, 5.7, 104.7 -2.437499999999999,2.44,a-pcom-i3,2021-22,Bedford - Lt Job Lane School,00230012, 1.0, 3.7, 2.1, 92.2, 0.0, 0.0, 1.0, 88.7, 11.3, 95.6 -1,1,a-pcom-i3,2021-22,Belchertown - Belchertown High,00240505, 0.3, 0.0, 1.3, 98.5, 0.0, 0.0, 0.0, 73.3, 26.7, 79.0 -1,1,a-pcom-i3,2021-22,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.7, 16.3, 57.5 -1,1,a-pcom-i3,2021-22,Belchertown - Cold Spring,00240005, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 93.5, 6.5, 36.9 -1,1,a-pcom-i3,2021-22,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 81.0, 19.0, 52.0 -1,1,a-pcom-i3,2021-22,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 61.3 -1,1,a-pcom-i3,2021-22,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 19.0 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Bellingham - Bellingham High School,00250505, 1.8, 1.8, 0.0, 96.3, 0.0, 0.0, 0.0, 71.0, 29.0, 109.3 -1,1,a-pcom-i3,2021-22,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.7, 18.3, 87.2 -1,1,a-pcom-i3,2021-22,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 51.9 -1,1,a-pcom-i3,2021-22,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 52.8, 47.2, 17.1 -1,1,a-pcom-i3,2021-22,Bellingham - Stall Brook,00250025, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 96.3, 3.7, 48.4 -3.374999999999999,3.37,a-pcom-i3,2021-22,Belmont - Belmont High,00260505, 4.0, 3.5, 2.5, 89.2, 0.0, 0.0, 0.8, 68.8, 31.2, 120.7 -3.90625,3.91,a-pcom-i3,2021-22,Belmont - Daniel Butler,00260015, 2.1, 2.3, 2.1, 87.5, 0.0, 0.0, 6.0, 84.2, 15.8, 43.2 -2.562500000000001,2.56,a-pcom-i3,2021-22,Belmont - Mary Lee Burbank,00260010, 2.1, 1.9, 2.1, 91.8, 0.0, 0.0, 2.1, 89.4, 10.6, 47.4 -1,1,a-pcom-i3,2021-22,Belmont - Roger E Wellington,00260035, 0.0, 1.1, 1.0, 96.9, 0.0, 0.0, 1.1, 90.1, 9.9, 82.6 -1,1,a-pcom-i3,2021-22,Belmont - Winn Brook,00260005, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 94.6, 5.4, 53.6 -5.0,5.0,a-pcom-i3,2021-22,Belmont - Winthrop L Chenery Middle,00260305, 3.7, 5.9, 2.8, 84.0, 0.0, 0.0, 3.7, 71.4, 28.6, 136.6 -18.46875,5,a-pcom-i3,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 43.1, 8.0, 8.0, 40.9, 0.0, 0.0, 0.0, 84.4, 15.6, 50.1 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.9, 1.8, 0.9, 96.4, 0.0, 0.0, 0.0, 88.2, 11.8, 110.2 -1,1,a-pcom-i3,2021-22,Berkley - Berkley Community School,00270010, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 97.1, 2.9, 69.4 -1,1,a-pcom-i3,2021-22,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.2, 20.8, 48.0 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 3.4, 1.7, 2.9, 88.6, 0.0, 0.0, 3.4, 71.6, 28.4, 59.3 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Berkshire Hills - Monument Mt Regional High,06180505, 1.3, 1.3, 2.6, 93.4, 0.0, 0.0, 1.3, 64.0, 36.0, 75.5 -1,1,a-pcom-i3,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.5, 1.5, 0.0, 97.0, 0.0, 0.0, 0.0, 88.1, 11.9, 67.2 -2.6250000000000018,2.63,a-pcom-i3,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 3.4, 1.7, 3.4, 91.6, 0.0, 0.0, 0.0, 70.0, 30.0, 59.2 -1,1,a-pcom-i3,2021-22,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 94.3, 5.7, 35.0 -1,1,a-pcom-i3,2021-22,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 97.7, 0.0, 0.0, 2.3, 88.6, 11.4, 43.9 -1,1,a-pcom-i3,2021-22,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 73.5, 26.5, 71.7 -1,1,a-pcom-i3,2021-22,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 46.0 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Beverly - Beverly High,00300505, 2.1, 0.0, 1.3, 96.6, 0.0, 0.0, 0.0, 68.0, 32.0, 158.4 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Beverly - Beverly Middle School,00300305, 0.6, 1.3, 1.9, 96.2, 0.0, 0.0, 0.0, 77.4, 22.6, 157.8 -1,1,a-pcom-i3,2021-22,Beverly - Centerville Elementary,00300010, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 92.4, 7.6, 52.3 -1,1,a-pcom-i3,2021-22,Beverly - Cove Elementary,00300015, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 97.2, 2.8, 70.2 -1,1,a-pcom-i3,2021-22,Beverly - Hannah Elementary,00300033, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 93.0, 7.0, 42.8 -1,1,a-pcom-i3,2021-22,Beverly - McKeown School,00300002, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 97.6, 2.4, 41.5 -1,1,a-pcom-i3,2021-22,Beverly - North Beverly Elementary,00300040, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 93.3, 6.7, 60.0 -1.09375,1.09,a-pcom-i3,2021-22,Billerica - Billerica Memorial High School,00310505, 0.9, 0.9, 1.7, 96.5, 0.0, 0.0, 0.0, 76.4, 23.6, 233.3 -1,1,a-pcom-i3,2021-22,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 40.6 -1,1,a-pcom-i3,2021-22,Billerica - Hajjar Elementary,00310026, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 95.5, 4.5, 56.2 -1,1,a-pcom-i3,2021-22,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 49.0 -1,1,a-pcom-i3,2021-22,Billerica - Locke Middle,00310310, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 83.3, 16.7, 76.0 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Billerica - Marshall Middle School,00310305, 2.4, 1.2, 0.0, 96.3, 0.0, 0.0, 0.0, 80.1, 19.9, 82.2 -1,1,a-pcom-i3,2021-22,Billerica - Parker,00310015, 0.0, 1.1, 0.0, 97.8, 0.0, 0.0, 1.1, 93.9, 6.1, 89.2 -1,1,a-pcom-i3,2021-22,Billerica - Thomas Ditson,00310005, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 96.1, 3.9, 69.5 -1,1,a-pcom-i3,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 59.7, 40.3, 174.7 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Blackstone-Millville - A F Maloney,06220015, 0.0, 1.4, 2.8, 95.8, 0.0, 0.0, 0.0, 94.2, 5.8, 36.1 -2.718750000000001,2.72,a-pcom-i3,2021-22,Blackstone-Millville - Blackstone Millville RHS,06220505, 3.5, 0.0, 5.2, 91.3, 0.0, 0.0, 0.0, 67.1, 32.9, 57.7 -2.562500000000001,2.56,a-pcom-i3,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 8.2, 91.8, 0.0, 0.0, 0.0, 83.6, 16.4, 48.8 -1,1,a-pcom-i3,2021-22,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 95.0, 5.0, 19.9 -1,1,a-pcom-i3,2021-22,Blackstone-Millville - Millville Elementary,06220010, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 98.5, 1.5, 46.5 -2.1875,2.19,a-pcom-i3,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 1.7, 2.6, 1.7, 93.0, 0.0, 0.0, 0.9, 51.5, 48.5, 114.5 -12.624999999999998,5,a-pcom-i3,2021-22,Boston - Adams Elementary School,00350302, 14.4, 2.2, 23.7, 59.6, 0.0, 0.0, 0.0, 89.9, 10.1, 44.3 -6.71875,5,a-pcom-i3,2021-22,Boston - Alighieri Dante Montessori School,00350066, 14.3, 0.0, 7.2, 78.5, 0.0, 0.0, 0.0, 85.7, 14.3, 14.0 -16.90625,5,a-pcom-i3,2021-22,Boston - Another Course To College,00350541, 43.3, 2.7, 5.4, 45.9, 0.0, 0.0, 2.7, 59.4, 40.6, 37.0 -18.09375,5,a-pcom-i3,2021-22,Boston - Baldwin Early Learning Pilot Academy,00350003, 19.3, 18.2, 20.5, 42.1, 0.0, 0.0, 0.0, 96.6, 3.4, 44.0 -7.875000000000001,5,a-pcom-i3,2021-22,Boston - Bates Elementary School,00350278, 14.5, 2.4, 8.3, 74.8, 0.0, 0.0, 0.0, 88.2, 11.8, 42.3 -5.562499999999999,5,a-pcom-i3,2021-22,Boston - Beethoven Elementary School,00350021, 9.5, 2.4, 5.9, 82.2, 0.0, 0.0, 0.0, 86.6, 13.4, 42.2 -15.874999999999998,5,a-pcom-i3,2021-22,Boston - Blackstone Elementary School,00350390, 23.2, 2.0, 23.7, 49.2, 1.0, 0.0, 1.0, 83.2, 16.8, 101.4 -24.90625,5,a-pcom-i3,2021-22,Boston - Boston Adult Tech Academy,00350548, 52.5, 13.5, 10.2, 20.3, 0.0, 3.4, 0.0, 50.8, 49.2, 29.5 -16.78125,5,a-pcom-i3,2021-22,Boston - Boston Arts Academy,00350546, 29.2, 6.1, 18.4, 46.3, 0.0, 0.0, 0.0, 62.2, 37.8, 65.1 -13.218749999999998,5,a-pcom-i3,2021-22,Boston - Boston Collaborative High School,00350755, 23.5, 4.7, 14.1, 57.7, 0.0, 0.0, 0.0, 67.1, 32.9, 21.3 -16.5625,5,a-pcom-i3,2021-22,Boston - Boston Community Leadership Academy,00350558, 35.7, 5.2, 12.2, 47.0, 0.0, 0.0, 0.0, 70.9, 29.1, 115.0 -15.5,5,a-pcom-i3,2021-22,Boston - Boston International High School & Newcomers Academy,00350507, 20.3, 4.9, 24.4, 50.4, 0.0, 0.0, 0.0, 63.0, 37.0, 61.5 -13.96875,5,a-pcom-i3,2021-22,Boston - Boston Latin Academy,00350545, 23.2, 13.2, 6.8, 55.3, 0.8, 0.0, 0.8, 61.3, 38.7, 125.2 -9.84375,5,a-pcom-i3,2021-22,Boston - Boston Latin School,00350560, 17.3, 8.0, 4.9, 68.5, 0.0, 0.6, 0.6, 59.3, 40.7, 162.0 -14.28125,5,a-pcom-i3,2021-22,Boston - Boston Teachers Union K-8 Pilot,00350012, 22.5, 5.8, 17.4, 54.3, 0.0, 0.0, 0.0, 80.4, 19.6, 34.5 -4.84375,4.84,a-pcom-i3,2021-22,Boston - Bradley Elementary School,00350215, 4.9, 5.6, 5.0, 84.5, 0.0, 0.0, 0.0, 87.4, 12.6, 40.3 -15.437499999999998,5,a-pcom-i3,2021-22,Boston - Brighton High School,00350505, 29.6, 5.8, 14.0, 50.6, 0.0, 0.0, 0.0, 63.9, 36.1, 85.9 -19.312499999999996,5,a-pcom-i3,2021-22,Boston - Burke High School,00350525, 52.9, 0.0, 8.9, 38.2, 0.0, 0.0, 0.0, 58.8, 41.2, 67.4 -13.59375,5,a-pcom-i3,2021-22,Boston - Carter School,00350036, 39.1, 4.3, 0.0, 56.5, 0.0, 0.0, 0.0, 87.0, 13.0, 23.0 -19.624999999999996,5,a-pcom-i3,2021-22,Boston - Channing Elementary School,00350360, 43.5, 4.9, 13.7, 37.2, 0.8, 0.0, 0.0, 82.7, 17.3, 40.3 -13.28125,5,a-pcom-i3,2021-22,Boston - Charlestown High School,00350515, 27.4, 9.1, 4.8, 57.5, 0.6, 0.6, 0.0, 64.9, 35.1, 165.1 -17.437499999999996,5,a-pcom-i3,2021-22,Boston - Chittick Elementary School,00350154, 41.3, 5.5, 7.3, 44.2, 1.8, 0.0, 0.0, 89.1, 10.9, 54.9 -18.46875,5,a-pcom-i3,2021-22,Boston - Clap Elementary School,00350298, 40.9, 3.6, 14.6, 40.9, 0.0, 0.0, 0.0, 80.1, 19.9, 28.1 -23.687499999999996,5,a-pcom-i3,2021-22,Boston - Community Academy,00350518, 42.7, 18.9, 9.5, 24.2, 4.7, 0.0, 0.0, 66.8, 33.2, 21.1 -17.46875,5,a-pcom-i3,2021-22,Boston - Community Academy of Science and Health,00350581, 47.9, 3.2, 4.8, 44.1, 0.0, 0.0, 0.0, 63.3, 36.7, 62.6 -13.78125,5,a-pcom-i3,2021-22,Boston - Condon K-8 School,00350146, 27.7, 4.6, 11.8, 55.9, 0.0, 0.0, 0.0, 83.6, 16.4, 119.0 -11.374999999999998,5,a-pcom-i3,2021-22,Boston - Conley Elementary School,00350122, 24.3, 3.0, 9.1, 63.6, 0.0, 0.0, 0.0, 81.8, 18.2, 33.0 -12.1875,5,a-pcom-i3,2021-22,Boston - Curley K-8 School,00350020, 18.3, 2.0, 18.8, 61.0, 0.0, 0.0, 0.0, 85.6, 14.4, 152.6 -19.90625,5,a-pcom-i3,2021-22,Boston - Dearborn 6-12 STEM Academy,00350074, 50.0, 2.6, 11.2, 36.3, 0.0, 0.0, 0.0, 68.3, 31.7, 78.1 -15.1875,5,a-pcom-i3,2021-22,Boston - Dever Elementary School,00350268, 27.8, 2.8, 18.1, 51.4, 0.0, 0.0, 0.0, 83.3, 16.7, 72.0 -15.8125,5,a-pcom-i3,2021-22,Boston - East Boston Early Education Center,00350009, 16.1, 4.6, 27.6, 49.4, 0.0, 2.3, 0.0, 95.4, 4.6, 43.5 -10.21875,5,a-pcom-i3,2021-22,Boston - East Boston High School,00350530, 9.7, 4.3, 18.6, 67.3, 0.0, 0.0, 0.0, 57.0, 43.0, 138.5 -15.1875,5,a-pcom-i3,2021-22,Boston - Edison K-8 School,00350375, 25.7, 7.3, 15.6, 51.4, 0.0, 0.0, 0.0, 77.1, 22.9, 96.3 -11.71875,5,a-pcom-i3,2021-22,Boston - Eliot K-8 Innovation School,00350096, 20.3, 7.7, 8.3, 62.5, 0.0, 0.0, 1.2, 84.5, 15.5, 83.9 -23.28125,5,a-pcom-i3,2021-22,Boston - Ellis Elementary School,00350072, 51.3, 3.2, 18.4, 25.5, 1.6, 0.0, 0.0, 77.7, 22.3, 62.6 -21.3125,5,a-pcom-i3,2021-22,Boston - Ellison-Parks Early Education School,00350008, 52.3, 4.0, 11.9, 31.8, 0.0, 0.0, 0.0, 90.1, 9.9, 50.3 -15.9375,5,a-pcom-i3,2021-22,Boston - English High School,00350535, 25.0, 4.7, 20.3, 49.0, 0.0, 0.0, 1.0, 57.8, 41.1, 96.0 -12.906249999999998,5,a-pcom-i3,2021-22,Boston - Everett Elementary School,00350088, 25.3, 8.0, 2.7, 58.7, 0.0, 2.7, 2.7, 85.4, 14.6, 37.5 -18.40625,5,a-pcom-i3,2021-22,Boston - Excel High School,00350522, 36.7, 11.1, 9.7, 41.1, 1.4, 0.0, 0.0, 68.0, 32.0, 71.8 -18.0,5,a-pcom-i3,2021-22,Boston - Fenway High School,00350540, 27.3, 3.6, 24.9, 42.4, 0.0, 1.8, 0.0, 58.3, 41.7, 55.4 -21.84375,5,a-pcom-i3,2021-22,Boston - Frederick Pilot Middle School,00350383, 49.4, 2.4, 18.1, 30.1, 0.0, 0.0, 0.0, 69.3, 30.7, 85.0 -14.624999999999998,5,a-pcom-i3,2021-22,Boston - Gardner Pilot Academy,00350326, 23.9, 5.7, 17.2, 53.2, 0.0, 0.0, 0.0, 87.6, 12.4, 52.3 -22.124999999999996,5,a-pcom-i3,2021-22,Boston - Greater Egleston High School,00350543, 41.5, 0.0, 29.2, 29.2, 0.0, 0.0, 0.0, 70.2, 29.8, 17.1 -20.59375,5,a-pcom-i3,2021-22,Boston - Greenwood Sarah K-8 School,00350308, 14.8, 0.0, 51.1, 34.1, 0.0, 0.0, 0.0, 80.0, 20.0, 67.5 -19.75,5,a-pcom-i3,2021-22,Boston - Grew Elementary School,00350135, 57.9, 0.0, 5.3, 36.8, 0.0, 0.0, 0.0, 84.2, 15.8, 28.5 -9.125,5,a-pcom-i3,2021-22,Boston - Guild Elementary School,00350062, 17.6, 2.3, 9.3, 70.8, 0.0, 0.0, 0.0, 83.7, 16.3, 43.0 -18.90625,5,a-pcom-i3,2021-22,Boston - Hale Elementary School,00350243, 45.4, 0.0, 15.1, 39.5, 0.0, 0.0, 0.0, 84.9, 15.1, 19.8 -11.062500000000002,5,a-pcom-i3,2021-22,Boston - Haley Pilot School,00350077, 20.6, 8.2, 6.6, 64.6, 0.0, 0.0, 0.0, 84.4, 15.6, 60.7 -9.312499999999998,5,a-pcom-i3,2021-22,Boston - Harvard-Kent Elementary School,00350200, 13.0, 11.0, 5.7, 70.2, 0.0, 0.0, 0.0, 75.5, 24.5, 69.4 -25.656249999999996,5,a-pcom-i3,2021-22,Boston - Haynes Early Education Center,00350010, 63.2, 4.2, 14.7, 17.9, 0.0, 0.0, 0.0, 77.9, 22.1, 47.5 -7.124999999999999,5,a-pcom-i3,2021-22,Boston - Henderson K-12 Inclusion School Lower,00350266, 18.5, 2.2, 2.2, 77.2, 0.0, 0.0, 0.0, 79.4, 18.5, 46.0 -11.46875,5,a-pcom-i3,2021-22,Boston - Henderson K-12 Inclusion School Upper,00350426, 24.2, 6.0, 6.5, 63.3, 0.0, 0.0, 0.0, 73.0, 27.0, 108.3 -15.906249999999998,5,a-pcom-i3,2021-22,Boston - Hennigan K-8 School,00350153, 27.3, 0.3, 23.3, 49.1, 0.0, 0.0, 0.0, 78.7, 21.3, 87.8 -21.281249999999996,5,a-pcom-i3,2021-22,Boston - Hernandez K-8 School,00350691, 1.9, 0.0, 66.1, 31.9, 0.0, 0.0, 0.0, 84.5, 15.5, 51.7 -19.468749999999996,5,a-pcom-i3,2021-22,Boston - Higginson Inclusion K0-2 School,00350015, 31.2, 10.4, 20.8, 37.7, 0.0, 0.0, 0.0, 87.0, 13.0, 38.5 -21.40625,5,a-pcom-i3,2021-22,Boston - Higginson-Lewis K-8 School,00350377, 56.5, 3.4, 6.8, 31.5, 0.0, 0.0, 1.7, 71.0, 27.3, 58.6 -17.25,5,a-pcom-i3,2021-22,Boston - Holmes Elementary School,00350138, 49.4, 3.9, 1.9, 44.8, 0.0, 0.0, 0.0, 73.7, 26.3, 51.3 -7.5,5,a-pcom-i3,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,00350750, 8.8, 7.6, 7.6, 76.0, 0.0, 0.0, 0.0, 82.9, 17.1, 79.1 -22.687499999999996,5,a-pcom-i3,2021-22,Boston - Hurley K-8 School,00350182, 9.5, 0.0, 63.2, 27.4, 0.0, 0.0, 0.0, 89.5, 10.5, 47.5 -14.187499999999998,5,a-pcom-i3,2021-22,Boston - Irving Middle School,00350445, 32.7, 4.2, 8.4, 54.6, 0.0, 0.0, 0.0, 77.8, 22.2, 47.4 -13.9375,5,a-pcom-i3,2021-22,Boston - Jackson-Mann K-8 School,00350013, 29.0, 1.4, 14.3, 55.4, 0.0, 0.0, 0.0, 76.3, 23.7, 90.3 -9.937499999999998,5,a-pcom-i3,2021-22,Boston - Kennedy John F Elementary School,00350166, 21.7, 0.0, 10.1, 68.2, 0.0, 0.0, 0.0, 77.4, 22.6, 39.7 -11.218750000000002,5,a-pcom-i3,2021-22,Boston - Kennedy Patrick J Elementary School,00350264, 4.8, 4.8, 26.3, 64.1, 0.0, 0.0, 0.0, 92.8, 7.2, 41.8 -13.999999999999998,5,a-pcom-i3,2021-22,Boston - Kenny Elementary School,00350328, 28.8, 10.0, 4.0, 55.2, 0.0, 0.0, 2.0, 78.1, 21.9, 50.2 -5.750000000000002,5,a-pcom-i3,2021-22,Boston - Kilmer K-8 School,00350190, 14.8, 1.4, 2.2, 81.6, 0.0, 0.0, 0.0, 81.2, 18.8, 69.2 -20.28125,5,a-pcom-i3,2021-22,Boston - King K-8 School,00350376, 50.4, 1.0, 13.5, 35.1, 0.0, 0.0, 0.0, 73.0, 27.0, 103.6 -18.062499999999996,5,a-pcom-i3,2021-22,Boston - Lee Academy,00350001, 36.1, 2.4, 19.3, 42.2, 0.0, 0.0, 0.0, 81.9, 18.1, 41.5 -15.34375,5,a-pcom-i3,2021-22,Boston - Lee K-8 School,00350183, 38.0, 2.1, 8.2, 50.9, 0.7, 0.0, 0.0, 77.9, 22.1, 142.2 -8.218749999999998,5,a-pcom-i3,2021-22,Boston - Lyndon K-8 School,00350262, 17.9, 0.0, 6.0, 73.7, 1.0, 0.0, 1.5, 81.4, 18.6, 66.9 -17.0,5,a-pcom-i3,2021-22,Boston - Lyon High School,00350655, 35.7, 2.8, 13.1, 45.6, 0.0, 2.8, 0.0, 53.7, 46.3, 35.6 -10.3125,5,a-pcom-i3,2021-22,Boston - Lyon K-8 School,00350004, 17.9, 7.2, 7.9, 67.0, 0.0, 0.0, 0.0, 70.2, 29.8, 41.9 -16.46875,5,a-pcom-i3,2021-22,Boston - Madison Park Technical Vocational High School,00350537, 36.5, 1.6, 13.1, 47.3, 0.5, 1.0, 0.0, 52.0, 48.0, 190.9 -9.375,5,a-pcom-i3,2021-22,Boston - Manning Elementary School,00350184, 26.7, 0.0, 3.3, 70.0, 0.0, 0.0, 0.0, 88.3, 11.7, 30.0 -16.625,5,a-pcom-i3,2021-22,Boston - Margarita Muniz Academy,00350549, 2.8, 0.0, 50.4, 46.8, 0.0, 0.0, 0.0, 66.3, 33.7, 36.2 -15.03125,5,a-pcom-i3,2021-22,Boston - Mario Umana Academy,00350656, 9.8, 2.9, 34.3, 51.9, 1.0, 0.0, 0.0, 77.4, 22.6, 101.9 -18.218749999999996,5,a-pcom-i3,2021-22,Boston - Mason Elementary School,00350304, 47.9, 4.2, 4.2, 41.7, 2.1, 0.0, 0.0, 84.4, 15.6, 48.0 -19.5625,5,a-pcom-i3,2021-22,Boston - Mather Elementary School,00350227, 42.9, 18.4, 1.4, 37.4, 0.0, 0.0, 0.0, 80.3, 19.7, 73.4 -17.124999999999996,5,a-pcom-i3,2021-22,Boston - Mattahunt Elementary School,00350016, 44.3, 2.3, 8.2, 45.2, 0.0, 0.0, 0.0, 86.0, 14.0, 85.8 -9.468749999999998,5,a-pcom-i3,2021-22,Boston - McKay K-8 School,00350080, 4.6, 6.9, 17.7, 69.7, 0.0, 0.0, 1.1, 80.0, 20.0, 87.5 -16.71875,5,a-pcom-i3,2021-22,Boston - McKinley Schools,00350363, 42.4, 1.3, 8.5, 46.5, 0.0, 0.6, 0.6, 56.3, 43.7, 158.2 -19.5,5,a-pcom-i3,2021-22,Boston - Mendell Elementary School,00350100, 25.9, 8.4, 28.0, 37.6, 0.0, 0.0, 0.0, 91.4, 8.6, 38.5 -18.90625,5,a-pcom-i3,2021-22,Boston - Mildred Avenue K-8 School,00350378, 42.5, 3.8, 14.1, 39.5, 0.0, 0.0, 0.0, 78.2, 21.8, 84.7 -14.031249999999998,5,a-pcom-i3,2021-22,Boston - Mission Hill K-8 School,00350382, 31.1, 2.3, 11.5, 55.1, 0.0, 0.0, 0.0, 86.2, 13.8, 43.4 -13.3125,5,a-pcom-i3,2021-22,Boston - Mozart Elementary School,00350237, 22.9, 1.6, 18.1, 57.4, 0.0, 0.0, 0.0, 86.9, 13.1, 30.5 -11.90625,5,a-pcom-i3,2021-22,Boston - Murphy K-8 School,00350240, 22.2, 10.0, 5.9, 61.9, 0.0, 0.0, 0.0, 74.2, 25.8, 118.0 -13.687499999999998,5,a-pcom-i3,2021-22,Boston - New Mission High School,00350542, 22.3, 8.9, 12.5, 56.2, 0.0, 0.0, 0.0, 60.7, 39.3, 56.0 -18.09375,5,a-pcom-i3,2021-22,Boston - O'Bryant School of Math & Science,00350575, 36.2, 7.2, 13.6, 42.1, 0.0, 0.0, 0.8, 57.5, 42.5, 124.7 -8.937499999999998,5,a-pcom-i3,2021-22,Boston - O'Donnell Elementary School,00350141, 8.6, 2.9, 17.2, 71.4, 0.0, 0.0, 0.0, 77.1, 22.9, 35.0 -11.499999999999998,5,a-pcom-i3,2021-22,Boston - Ohrenberger School,00350258, 24.8, 0.7, 9.8, 63.2, 0.0, 0.0, 1.5, 74.7, 25.3, 68.5 -12.96875,5,a-pcom-i3,2021-22,Boston - Orchard Gardens K-8 School,00350257, 28.6, 1.7, 9.4, 58.5, 0.0, 0.0, 1.8, 79.0, 21.0, 117.1 -8.062499999999998,5,a-pcom-i3,2021-22,Boston - Otis Elementary School,00350156, 8.2, 6.2, 11.3, 74.2, 0.0, 0.0, 0.0, 85.6, 14.4, 48.5 -15.625,5,a-pcom-i3,2021-22,Boston - Perkins Elementary School,00350231, 35.0, 6.7, 8.3, 50.0, 0.0, 0.0, 0.0, 78.3, 21.7, 30.0 -6.25,5,a-pcom-i3,2021-22,Boston - Perry K-8 School,00350255, 11.4, 0.0, 8.6, 80.0, 0.0, 0.0, 0.0, 85.7, 14.3, 35.0 -15.874999999999998,5,a-pcom-i3,2021-22,Boston - Philbrick Elementary School,00350172, 46.3, 4.5, 0.0, 49.2, 0.0, 0.0, 0.0, 73.1, 26.9, 22.3 -19.65625,5,a-pcom-i3,2021-22,Boston - Quincy Elementary School,00350286, 13.8, 45.7, 3.5, 37.1, 0.0, 0.0, 0.0, 84.2, 15.8, 113.9 -21.499999999999996,5,a-pcom-i3,2021-22,Boston - Quincy Upper School,00350565, 26.6, 31.9, 10.4, 31.2, 0.0, 0.0, 0.0, 65.9, 34.1, 67.4 -12.09375,5,a-pcom-i3,2021-22,Boston - Roosevelt K-8 School,00350116, 23.8, 3.7, 9.4, 61.3, 1.8, 0.0, 0.0, 89.0, 11.0, 54.6 -13.03125,5,a-pcom-i3,2021-22,Boston - Russell Elementary School,00350366, 22.9, 2.1, 16.7, 58.3, 0.0, 0.0, 0.0, 85.4, 14.6, 48.0 -17.875,5,a-pcom-i3,2021-22,Boston - Shaw Elementary School,00350014, 44.3, 0.0, 4.3, 42.8, 4.3, 0.0, 4.3, 82.9, 17.1, 23.3 -14.343749999999998,5,a-pcom-i3,2021-22,Boston - Snowden International High School,00350690, 28.5, 7.3, 10.1, 54.1, 0.0, 0.0, 0.0, 62.4, 37.6, 54.6 -16.4375,5,a-pcom-i3,2021-22,Boston - Sumner Elementary School,00350052, 25.9, 3.0, 23.7, 47.4, 0.0, 0.0, 0.0, 90.4, 9.6, 67.4 -23.312499999999996,5,a-pcom-i3,2021-22,Boston - Taylor Elementary School,00350054, 61.1, 9.7, 3.7, 25.4, 0.0, 0.0, 0.0, 90.3, 9.7, 54.0 -14.59375,5,a-pcom-i3,2021-22,Boston - TechBoston Academy,00350657, 40.0, 1.6, 5.0, 53.3, 0.0, 0.0, 0.0, 56.2, 43.8, 121.7 -17.6875,5,a-pcom-i3,2021-22,Boston - Timilty Middle School,00350485, 30.1, 0.0, 26.5, 43.4, 0.0, 0.0, 0.0, 68.7, 31.3, 41.5 -18.374999999999996,5,a-pcom-i3,2021-22,Boston - Tobin K-8 School,00350229, 25.5, 5.9, 27.5, 41.2, 0.0, 0.0, 0.0, 87.3, 12.7, 51.0 -19.03125,5,a-pcom-i3,2021-22,Boston - Trotter K-8 School,00350370, 55.4, 1.8, 3.6, 39.1, 0.0, 0.0, 0.0, 86.4, 13.6, 55.0 -12.375,5,a-pcom-i3,2021-22,Boston - Tynan Elementary School,00350181, 27.4, 0.0, 12.2, 60.4, 0.0, 0.0, 0.0, 87.8, 12.2, 57.4 -12.84375,5,a-pcom-i3,2021-22,Boston - UP Academy Holland,00350167, 27.4, 4.8, 8.9, 58.9, 0.0, 0.0, 0.0, 88.1, 11.9, 84.0 -6.5625,5,a-pcom-i3,2021-22,Boston - Warren-Prescott K-8 School,00350346, 11.2, 0.7, 9.1, 79.0, 0.0, 0.0, 0.0, 90.2, 9.8, 71.4 -21.749999999999996,5,a-pcom-i3,2021-22,Boston - West Zone Early Learning Center,00350006, 43.5, 2.9, 20.3, 30.4, 2.9, 0.0, 0.0, 87.0, 13.0, 34.5 -15.124999999999998,5,a-pcom-i3,2021-22,Boston - Winship Elementary School,00350374, 25.8, 6.5, 16.1, 51.6, 0.0, 0.0, 0.0, 80.6, 19.4, 31.0 -14.25,5,a-pcom-i3,2021-22,Boston - Winthrop Elementary School,00350180, 30.2, 4.2, 11.2, 54.4, 0.0, 0.0, 0.0, 86.0, 14.0, 35.8 -22.749999999999996,5,a-pcom-i3,2021-22,Boston - Young Achievers K-8 School,00350380, 56.3, 1.3, 15.2, 27.2, 0.0, 0.0, 0.0, 80.1, 19.9, 92.8 -15.3125,5,a-pcom-i3,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 17.7, 4.5, 19.6, 51.0, 0.9, 0.0, 6.3, 68.1, 31.0, 111.5 -21.09375,5,a-pcom-i3,2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 38.6, 10.8, 12.6, 32.5, 0.0, 0.0, 5.4, 62.1, 37.9, 55.4 -16.09375,5,a-pcom-i3,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 28.8, 1.9, 20.7, 48.5, 0.0, 0.0, 0.0, 70.3, 29.7, 79.2 -14.343749999999998,5,a-pcom-i3,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 29.0, 5.0, 9.9, 54.1, 0.0, 0.0, 2.0, 62.4, 36.6, 100.6 -8.687499999999998,5,a-pcom-i3,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 19.0, 4.6, 3.6, 72.2, 0.0, 0.0, 0.7, 83.0, 17.0, 152.7 -1,1,a-pcom-i3,2021-22,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 65.1, 34.9, 62.1 -1,1,a-pcom-i3,2021-22,Bourne - Bourne Intermediate School,00360030, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 93.3, 6.7, 59.4 -1.4374999999999982,1.44,a-pcom-i3,2021-22,Bourne - Bourne Middle School,00360325, 0.0, 1.5, 0.0, 95.4, 0.0, 0.0, 3.0, 82.7, 17.3, 65.7 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Bourne - Bournedale Elementary School,00360005, 0.0, 0.7, 1.3, 96.6, 0.0, 0.0, 1.3, 96.2, 3.8, 74.2 -1.40625,1.41,a-pcom-i3,2021-22,Boxford - Harry Lee Cole,00380005, 0.0, 0.9, 3.6, 95.5, 0.0, 0.0, 0.0, 96.0, 4.0, 55.1 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Boxford - Spofford Pond,00380013, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 95.0, 5.0, 63.7 -1,1,a-pcom-i3,2021-22,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 91.9, 8.1, 49.4 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Braintree - Braintree High,00400505, 1.4, 1.0, 0.5, 96.1, 0.0, 0.0, 1.0, 68.9, 31.1, 203.7 -1,1,a-pcom-i3,2021-22,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.2, 2.8, 32.3 -1.09375,1.09,a-pcom-i3,2021-22,Braintree - East Middle School,00400305, 1.8, 0.9, 0.9, 96.5, 0.0, 0.0, 0.0, 79.8, 20.2, 113.4 -1,1,a-pcom-i3,2021-22,Braintree - Highlands,00400015, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 91.9, 7.1, 45.3 -1,1,a-pcom-i3,2021-22,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 98.6, 0.0, 1.4, 0.0, 95.6, 4.4, 45.0 -1,1,a-pcom-i3,2021-22,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 39.0 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Braintree - Mary E Flaherty School,00400020, 0.0, 2.7, 0.0, 95.7, 0.0, 0.0, 1.7, 98.7, 1.3, 60.2 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Braintree - Monatiquot Kindergarten Center,00400009, 3.0, 0.0, 0.0, 93.9, 0.0, 3.0, 0.0, 97.9, 2.1, 33.0 -1,1,a-pcom-i3,2021-22,Braintree - South Middle School,00400310, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 76.1, 23.9, 69.5 -1,1,a-pcom-i3,2021-22,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 96.6, 3.4, 43.5 -1,1,a-pcom-i3,2021-22,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 97.1, 2.9, 51.8 -13.625,5,a-pcom-i3,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 27.9, 3.6, 9.7, 56.4, 0.0, 0.0, 2.4, 81.8, 18.2, 82.5 -1.2812499999999982,1.28,a-pcom-i3,2021-22,Bridgewater-Raynham - Bridgewater Middle School,06250320, 3.9, 0.0, 0.2, 95.9, 0.0, 0.0, 0.0, 74.1, 25.9, 51.7 -1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 1.5, 0.0, 1.0, 97.5, 0.0, 0.0, 0.0, 70.9, 29.1, 130.2 -1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 88.5, 11.5, 45.6 -1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 94.6, 5.4, 32.6 -1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 0.9, 98.3, 0.0, 0.0, 0.8, 95.2, 4.8, 123.9 -1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Raynham Middle School,06250315, 1.5, 0.0, 0.2, 98.3, 0.0, 0.0, 0.0, 83.2, 16.8, 65.3 -1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 8.6 -1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Williams Intermediate School,06250300, 1.4, 0.0, 0.2, 97.1, 0.0, 0.0, 1.4, 84.2, 15.8, 73.5 -1,1,a-pcom-i3,2021-22,Brimfield - Brimfield Elementary,00430005, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 92.8, 7.2, 46.4 -1,1,a-pcom-i3,2021-22,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 64.3, 35.7, 55.9 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 2.0, 0.0, 1.3, 95.3, 1.3, 0.0, 0.0, 60.3, 39.7, 149.0 -4.6875,4.69,a-pcom-i3,2021-22,Brockton - Ashfield Middle School,00440421, 12.1, 1.4, 1.4, 85.0, 0.0, 0.0, 0.0, 82.4, 17.6, 69.5 -2.9375000000000018,2.94,a-pcom-i3,2021-22,Brockton - Barrett Russell Early Childhood Center,00440008, 5.5, 1.8, 2.1, 90.6, 0.0, 0.0, 0.0, 96.5, 3.5, 56.7 -9.093749999999998,5,a-pcom-i3,2021-22,Brockton - Brockton Champion High School,00440515, 24.3, 0.0, 3.6, 70.9, 0.0, 0.0, 1.2, 64.3, 35.7, 41.5 -8.781249999999998,5,a-pcom-i3,2021-22,Brockton - Brockton High,00440505, 19.7, 2.2, 3.1, 71.9, 0.2, 0.5, 2.4, 62.5, 37.5, 412.9 -6.71875,5,a-pcom-i3,2021-22,Brockton - Brockton Virtual Learning Academy,00440705, 12.5, 0.0, 8.9, 78.5, 0.0, 0.0, 0.0, 82.8, 17.2, 22.4 -4.906250000000001,4.91,a-pcom-i3,2021-22,Brockton - Brookfield,00440010, 10.0, 0.0, 4.3, 84.3, 0.0, 0.0, 1.4, 94.3, 5.7, 69.9 -5.562499999999999,5,a-pcom-i3,2021-22,Brockton - Downey,00440110, 10.7, 1.0, 3.1, 82.2, 1.0, 0.0, 2.0, 90.8, 9.2, 98.1 -6.906249999999998,5,a-pcom-i3,2021-22,Brockton - Dr W Arnone Community School,00440001, 13.6, 0.0, 7.4, 77.9, 0.0, 0.0, 1.1, 91.7, 8.3, 108.0 -6.062500000000002,5,a-pcom-i3,2021-22,Brockton - East Middle School,00440405, 11.8, 1.3, 4.8, 80.6, 0.0, 1.3, 0.3, 69.5, 30.5, 79.4 -4.406249999999998,4.41,a-pcom-i3,2021-22,Brockton - Edgar B Davis,00440023, 5.5, 0.0, 4.6, 85.9, 0.0, 1.0, 3.0, 73.8, 26.2, 98.5 -16.187499999999996,5,a-pcom-i3,2021-22,Brockton - Edison Academy,00440520, 47.6, 0.0, 2.5, 48.2, 0.0, 0.0, 1.7, 66.8, 33.2, 18.1 -8.28125,5,a-pcom-i3,2021-22,Brockton - Frederick Douglass Academy,00440080, 7.2, 0.0, 8.0, 73.5, 8.0, 0.0, 3.2, 82.7, 17.3, 12.5 -9.375,5,a-pcom-i3,2021-22,Brockton - Gilmore Elementary School,00440055, 28.2, 0.0, 0.0, 70.0, 0.0, 0.0, 1.8, 88.7, 11.3, 55.3 -7.03125,5,a-pcom-i3,2021-22,Brockton - Hancock,00440045, 17.3, 0.0, 2.6, 77.5, 0.9, 0.0, 1.7, 87.0, 13.0, 57.8 -10.750000000000002,5,a-pcom-i3,2021-22,Brockton - Huntington Therapeutic Day School,00440400, 28.1, 0.0, 6.3, 65.6, 0.0, 0.0, 0.0, 60.7, 39.3, 55.5 -7.124999999999999,5,a-pcom-i3,2021-22,Brockton - John F Kennedy,00440017, 12.4, 5.4, 3.3, 77.2, 0.0, 0.0, 1.7, 91.6, 8.4, 60.4 -10.281250000000002,5,a-pcom-i3,2021-22,Brockton - Joseph F. Plouffe Academy,00440422, 21.7, 4.1, 7.2, 67.1, 0.0, 0.0, 0.0, 80.0, 20.0, 97.7 -7.718750000000001,5,a-pcom-i3,2021-22,Brockton - Louis F Angelo Elementary,00440065, 14.7, 1.1, 4.5, 75.3, 0.0, 0.9, 3.6, 93.4, 6.6, 112.2 -11.28125,5,a-pcom-i3,2021-22,Brockton - Manthala George Jr. School,00440003, 16.2, 0.0, 18.8, 63.9, 1.1, 0.0, 0.0, 94.2, 5.8, 87.8 -6.687500000000002,5,a-pcom-i3,2021-22,Brockton - Mary E. Baker School,00440002, 15.6, 0.0, 4.9, 78.6, 0.0, 0.9, 0.0, 97.0, 3.0, 106.7 -7.906249999999999,5,a-pcom-i3,2021-22,Brockton - North Middle School,00440410, 18.4, 0.0, 2.2, 74.7, 0.0, 0.0, 4.8, 60.9, 39.1, 46.3 -4.437500000000001,4.44,a-pcom-i3,2021-22,Brockton - Oscar F Raymond,00440078, 12.8, 0.0, 0.0, 85.8, 0.5, 0.0, 0.9, 93.2, 6.8, 93.8 -12.624999999999998,5,a-pcom-i3,2021-22,Brockton - South Middle School,00440415, 31.8, 0.0, 7.3, 59.6, 0.0, 0.0, 1.2, 77.5, 22.5, 89.2 -8.75,5,a-pcom-i3,2021-22,Brockton - West Middle School,00440420, 20.0, 2.6, 3.9, 72.0, 0.0, 0.0, 1.5, 68.3, 31.7, 77.6 -17.375,5,a-pcom-i3,2021-22,Brooke Charter School (District) - Brooke Charter School,04280305, 27.9, 2.4, 21.2, 44.4, 0.0, 0.7, 3.4, 78.1, 21.6, 293.5 -1,1,a-pcom-i3,2021-22,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 48.0 -3.125,3.13,a-pcom-i3,2021-22,Brookline - Brookline Early Education Program at Beacon,00460001, 0.0, 10.0, 0.0, 90.0, 0.0, 0.0, 0.0, 90.0, 10.0, 10.0 -7.531249999999998,5,a-pcom-i3,2021-22,Brookline - Brookline Early Education Program at Clark Road,00460003, 23.6, 0.5, 0.0, 75.9, 0.0, 0.0, 0.0, 89.8, 10.2, 19.6 -4.656250000000002,4.66,a-pcom-i3,2021-22,Brookline - Brookline Early Education Program at Putterham,00460002, 3.6, 7.0, 4.3, 85.1, 0.0, 0.0, 0.0, 95.7, 4.3, 23.1 -7.093750000000001,5,a-pcom-i3,2021-22,Brookline - Brookline High,00460505, 10.2, 4.8, 6.1, 77.3, 0.0, 0.0, 1.5, 64.1, 35.9, 320.1 -4.656250000000002,4.66,a-pcom-i3,2021-22,Brookline - Edith C Baker,00460005, 6.6, 4.6, 2.6, 85.1, 0.0, 0.0, 1.0, 83.6, 16.4, 101.9 -5.249999999999999,5,a-pcom-i3,2021-22,Brookline - Florida Ruffin Ridley School,00460015, 8.4, 3.1, 4.6, 83.2, 0.0, 0.7, 0.0, 78.6, 21.4, 149.8 -4.812500000000002,4.81,a-pcom-i3,2021-22,Brookline - Heath,00460025, 5.1, 2.7, 7.6, 84.6, 0.0, 0.0, 0.0, 87.4, 12.6, 78.4 -5.656249999999998,5,a-pcom-i3,2021-22,Brookline - John D Runkle,00460045, 10.2, 4.4, 1.7, 81.9, 0.0, 0.9, 0.9, 88.2, 11.8, 105.9 -5.750000000000002,5,a-pcom-i3,2021-22,Brookline - Lawrence,00460030, 5.5, 9.0, 3.0, 81.6, 0.0, 0.0, 1.0, 82.8, 17.2, 103.9 -5.531250000000001,5,a-pcom-i3,2021-22,Brookline - Michael Driscoll,00460020, 5.2, 7.3, 4.0, 82.3, 0.0, 0.0, 1.2, 83.3, 16.7, 86.4 -5.406249999999999,5,a-pcom-i3,2021-22,Brookline - Pierce,00460040, 4.4, 9.1, 2.9, 82.7, 0.0, 0.0, 0.9, 83.2, 16.8, 108.5 -7.34375,5,a-pcom-i3,2021-22,Brookline - The Lynch Center,00460060, 3.8, 3.5, 16.1, 76.5, 0.0, 0.0, 0.0, 95.8, 0.0, 21.9 -5.281250000000002,5,a-pcom-i3,2021-22,Brookline - William H Lincoln,00460035, 7.6, 2.2, 5.1, 83.1, 0.0, 0.0, 2.0, 82.1, 17.9, 90.5 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Burlington - Burlington High,00480505, 0.0, 2.6, 2.0, 94.3, 0.0, 0.0, 1.1, 77.0, 23.0, 151.9 -1,1,a-pcom-i3,2021-22,Burlington - Fox Hill,00480007, 0.0, 0.0, 1.5, 97.0, 0.0, 0.0, 1.5, 85.6, 14.4, 66.5 -1,1,a-pcom-i3,2021-22,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.2, 0.0, 99.8, 0.0, 0.0, 0.0, 91.3, 8.7, 85.7 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Burlington - Marshall Simonds Middle,00480303, 2.0, 3.6, 1.0, 93.4, 0.0, 0.0, 0.0, 81.1, 18.9, 98.1 -2.5312499999999982,2.53,a-pcom-i3,2021-22,Burlington - Memorial,00480015, 1.6, 4.9, 1.6, 91.9, 0.0, 0.0, 0.0, 96.0, 4.0, 61.4 -1.4374999999999982,1.44,a-pcom-i3,2021-22,Burlington - Pine Glen Elementary,00480020, 0.0, 1.5, 3.0, 95.4, 0.0, 0.0, 0.0, 90.0, 8.5, 65.6 -16.75,5,a-pcom-i3,2021-22,Cambridge - Amigos School,00490006, 2.0, 0.0, 51.6, 46.4, 0.0, 0.0, 0.0, 73.1, 26.9, 65.2 -8.687499999999998,5,a-pcom-i3,2021-22,Cambridge - Cambridge Rindge and Latin,00490506, 13.2, 4.4, 7.0, 72.2, 0.2, 0.3, 2.8, 63.8, 36.2, 322.2 -10.031249999999998,5,a-pcom-i3,2021-22,Cambridge - Cambridge Street Upper School,00490305, 18.6, 6.8, 5.1, 67.9, 0.0, 0.0, 1.7, 86.1, 13.9, 59.2 -11.531249999999998,5,a-pcom-i3,2021-22,Cambridge - Cambridgeport,00490007, 26.5, 4.8, 4.0, 63.1, 0.0, 0.0, 1.6, 79.9, 20.1, 62.7 -11.218750000000002,5,a-pcom-i3,2021-22,Cambridge - Fletcher/Maynard Academy,00490090, 22.7, 7.9, 3.0, 64.1, 0.0, 1.2, 1.2, 79.9, 20.1, 83.9 -10.031249999999998,5,a-pcom-i3,2021-22,Cambridge - Graham and Parks,00490080, 18.0, 5.0, 4.3, 67.9, 0.0, 0.0, 4.8, 91.9, 8.1, 70.0 -7.999999999999998,5,a-pcom-i3,2021-22,Cambridge - Haggerty,00490020, 10.9, 5.5, 5.6, 74.4, 0.0, 0.0, 3.6, 88.7, 11.3, 55.0 -6.812499999999999,5,a-pcom-i3,2021-22,Cambridge - John M Tobin,00490065, 10.3, 3.9, 7.1, 78.2, 0.0, 0.0, 0.5, 90.5, 9.5, 63.3 -7.96875,5,a-pcom-i3,2021-22,Cambridge - Kennedy-Longfellow,00490040, 14.0, 4.3, 7.2, 74.5, 0.0, 0.0, 0.0, 92.1, 7.9, 69.8 -9.90625,5,a-pcom-i3,2021-22,Cambridge - King Open,00490035, 16.6, 5.2, 9.9, 68.3, 0.0, 0.0, 0.0, 88.0, 12.0, 77.0 -5.750000000000002,5,a-pcom-i3,2021-22,Cambridge - Maria L. Baldwin,00490005, 7.5, 6.3, 4.7, 81.6, 0.0, 0.0, 0.0, 81.1, 18.9, 63.8 -14.6875,5,a-pcom-i3,2021-22,Cambridge - Martin Luther King Jr.,00490030, 15.6, 22.6, 5.2, 53.0, 0.0, 0.0, 3.5, 93.0, 7.0, 57.5 -7.374999999999998,5,a-pcom-i3,2021-22,Cambridge - Morse,00490045, 9.1, 4.9, 6.3, 76.4, 0.0, 0.0, 3.3, 90.0, 10.0, 71.2 -7.593749999999999,5,a-pcom-i3,2021-22,Cambridge - Peabody,00490050, 11.9, 5.1, 5.6, 75.7, 0.0, 0.0, 1.7, 83.8, 16.2, 58.8 -12.156249999999998,5,a-pcom-i3,2021-22,Cambridge - Putnam Avenue Upper School,00490310, 20.1, 6.0, 7.3, 61.1, 0.0, 0.0, 5.5, 72.6, 27.4, 54.8 -11.843749999999998,5,a-pcom-i3,2021-22,Cambridge - Rindge Avenue Upper School,00490315, 21.3, 8.5, 8.1, 62.1, 0.0, 0.0, 0.0, 69.6, 30.4, 49.1 -9.562499999999998,5,a-pcom-i3,2021-22,Cambridge - Vassal Lane Upper School,00490320, 14.6, 4.5, 8.0, 69.4, 0.0, 0.0, 3.6, 79.2, 20.8, 56.2 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Canton - Canton High,00500505, 1.0, 1.0, 1.0, 94.8, 0.0, 0.0, 2.1, 68.1, 31.9, 96.5 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Canton - Dean S Luce,00500020, 2.2, 2.2, 0.0, 95.7, 0.0, 0.0, 0.0, 93.9, 6.1, 46.2 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Canton - John F Kennedy,00500017, 4.9, 0.0, 0.0, 95.1, 0.0, 0.0, 0.0, 92.1, 7.9, 61.5 -3.7187500000000018,3.72,a-pcom-i3,2021-22,Canton - Lt Peter M Hansen,00500012, 3.4, 1.7, 3.4, 88.1, 0.0, 0.0, 3.4, 90.1, 9.9, 58.9 -1,1,a-pcom-i3,2021-22,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.5 -2.9999999999999982,3.0,a-pcom-i3,2021-22,Canton - Wm H Galvin Middle,00500305, 4.3, 0.0, 2.1, 90.4, 0.0, 0.0, 3.2, 76.6, 23.4, 93.3 -1,1,a-pcom-i3,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.8, 18.2, 32.3 -1,1,a-pcom-i3,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.0, 0.0, 0.0, 97.1, 1.0, 0.0, 1.0, 56.6, 43.4, 103.8 -1.3750000000000018,1.38,a-pcom-i3,2021-22,Carlisle - Carlisle School,00510025, 0.9, 2.6, 0.9, 95.6, 0.0, 0.0, 0.0, 83.7, 16.3, 109.5 -1,1,a-pcom-i3,2021-22,Carver - Carver Elementary School,00520015, 0.5, 0.0, 1.0, 97.6, 1.0, 0.0, 0.0, 95.2, 4.8, 103.4 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Carver - Carver Middle/High School,00520405, 1.9, 0.0, 1.0, 95.2, 0.0, 1.0, 1.0, 67.9, 32.1, 103.4 -1,1,a-pcom-i3,2021-22,Central Berkshire - Becket Washington School,06350005, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 95.1, 4.9, 20.5 -1,1,a-pcom-i3,2021-22,Central Berkshire - Craneville,06350025, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 91.1, 8.9, 56.2 -1,1,a-pcom-i3,2021-22,Central Berkshire - Kittredge,06350035, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 96.4, 3.6, 28.0 -1,1,a-pcom-i3,2021-22,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.2, 24.8, 44.3 -1,1,a-pcom-i3,2021-22,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 64.7, 35.3, 66.9 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Chelmsford - Byam School,00560030, 0.0, 7.0, 0.6, 92.4, 0.0, 0.0, 0.0, 90.7, 9.3, 85.9 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Chelmsford - Center Elementary School,00560005, 0.0, 2.6, 1.3, 94.8, 0.0, 0.0, 1.3, 97.4, 2.6, 76.3 -1,1,a-pcom-i3,2021-22,Chelmsford - Charles D Harrington,00560025, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 91.3, 7.3, 68.7 -2.1562500000000018,2.16,a-pcom-i3,2021-22,Chelmsford - Chelmsford High,00560505, 0.5, 2.2, 4.2, 93.1, 0.0, 0.0, 0.0, 65.0, 35.0, 185.9 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Chelmsford - Col Moses Parker School,00560305, 0.9, 4.7, 0.0, 94.4, 0.0, 0.0, 0.0, 86.0, 14.0, 107.3 -4.375,4.38,a-pcom-i3,2021-22,Chelmsford - Community Education Center,00560001, 7.0, 7.0, 0.0, 86.0, 0.0, 0.0, 0.0, 93.0, 7.0, 28.6 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Chelmsford - McCarthy Middle School,00560310, 0.0, 3.7, 0.1, 96.2, 0.0, 0.0, 0.0, 83.4, 16.6, 107.4 -1.3750000000000018,1.38,a-pcom-i3,2021-22,Chelmsford - South Row,00560015, 0.0, 1.5, 1.5, 95.6, 0.0, 0.0, 1.5, 95.6, 4.4, 69.0 -8.999999999999998,5,a-pcom-i3,2021-22,Chelsea - Chelsea High,00570505, 4.6, 3.5, 20.7, 71.2, 0.0, 0.0, 0.0, 69.4, 30.6, 173.6 -10.625,5,a-pcom-i3,2021-22,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 34.0, 66.0, 0.0, 0.0, 0.0, 52.3, 47.7, 11.8 -20.968749999999996,5,a-pcom-i3,2021-22,Chelsea - Chelsea Virtual Learning Academy,00570705, 13.4, 0.0, 53.7, 32.9, 0.0, 0.0, 0.0, 85.2, 14.8, 7.5 -7.718750000000001,5,a-pcom-i3,2021-22,Chelsea - Clark Avenue School,00570050, 2.4, 4.7, 17.6, 75.3, 0.0, 0.0, 0.0, 77.5, 22.5, 85.0 -7.718750000000001,5,a-pcom-i3,2021-22,Chelsea - Edgar A Hooks Elementary,00570030, 3.2, 0.0, 21.5, 75.3, 0.0, 0.0, 0.0, 87.6, 12.4, 62.9 -8.125,5,a-pcom-i3,2021-22,Chelsea - Eugene Wright Science and Technology Academy,00570045, 1.4, 2.9, 18.8, 74.0, 0.0, 1.4, 1.4, 71.7, 28.3, 69.3 -9.656250000000002,5,a-pcom-i3,2021-22,Chelsea - Frank M Sokolowski Elementary,00570040, 3.0, 3.0, 24.9, 69.1, 0.0, 0.0, 0.0, 87.5, 12.5, 66.3 -12.40625,5,a-pcom-i3,2021-22,Chelsea - George F. Kelly Elementary,00570035, 0.0, 3.1, 36.6, 60.3, 0.0, 0.0, 0.0, 91.1, 8.9, 65.0 -12.624999999999998,5,a-pcom-i3,2021-22,Chelsea - Joseph A. Browne School,00570055, 1.6, 6.2, 32.7, 59.6, 0.0, 0.0, 0.0, 75.7, 24.3, 64.3 -12.5625,5,a-pcom-i3,2021-22,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.7, 39.5, 59.8, 0.0, 0.0, 0.0, 94.8, 5.2, 137.7 -4.84375,4.84,a-pcom-i3,2021-22,Chelsea - William A Berkowitz Elementary,00570025, 1.5, 1.5, 10.8, 84.5, 0.0, 1.5, 0.0, 88.7, 11.3, 64.6 -1,1,a-pcom-i3,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 28.9 -1,1,a-pcom-i3,2021-22,Chicopee - Barry,00610003, 1.6, 0.0, 0.8, 97.6, 0.0, 0.0, 0.0, 98.4, 1.6, 62.6 -2.5,2.5,a-pcom-i3,2021-22,Chicopee - Belcher,00610010, 0.0, 0.0, 5.3, 92.0, 0.0, 0.0, 2.7, 92.0, 8.0, 37.5 -1.40625,1.41,a-pcom-i3,2021-22,Chicopee - Bellamy Middle,00610305, 0.9, 0.0, 1.8, 95.5, 0.0, 0.9, 0.9, 79.1, 20.9, 112.2 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Chicopee - Bowe,00610015, 1.7, 1.7, 1.7, 94.8, 0.0, 0.0, 0.0, 91.4, 8.6, 58.0 -1,1,a-pcom-i3,2021-22,Chicopee - Bowie,00610020, 2.3, 0.0, 0.6, 97.1, 0.0, 0.0, 0.0, 90.0, 10.0, 42.8 -4.656250000000002,4.66,a-pcom-i3,2021-22,Chicopee - Chicopee Academy,00610021, 10.0, 1.7, 3.3, 85.1, 0.0, 0.0, 0.0, 67.8, 32.2, 30.1 -2.093750000000001,2.09,a-pcom-i3,2021-22,Chicopee - Chicopee Comprehensive High School,00610510, 0.0, 0.7, 6.0, 93.3, 0.0, 0.0, 0.0, 58.9, 41.1, 150.2 -4.031250000000002,4.03,a-pcom-i3,2021-22,Chicopee - Chicopee High,00610505, 3.2, 0.0, 8.9, 87.1, 0.8, 0.0, 0.0, 71.4, 28.6, 124.0 -4.156249999999999,4.16,a-pcom-i3,2021-22,Chicopee - Dupont Middle,00610310, 2.9, 1.0, 9.3, 86.7, 0.0, 0.0, 0.0, 71.6, 28.4, 101.9 -5.843750000000001,5,a-pcom-i3,2021-22,Chicopee - Fairview Elementary,00610050, 1.2, 1.2, 15.2, 81.3, 0.0, 0.0, 1.2, 89.4, 10.6, 85.5 -4.562499999999998,4.56,a-pcom-i3,2021-22,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 14.6, 85.4, 0.0, 0.0, 0.0, 93.3, 6.7, 60.0 -1,1,a-pcom-i3,2021-22,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.5, 97.4, 0.0, 0.0, 2.1, 96.7, 3.3, 47.4 -1.25,1.25,a-pcom-i3,2021-22,Chicopee - Litwin,00610022, 0.0, 1.8, 2.2, 96.0, 0.0, 0.0, 0.0, 94.1, 5.9, 55.9 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Chicopee - Streiber Memorial School,00610065, 4.5, 0.0, 1.1, 94.4, 0.0, 0.0, 0.0, 89.9, 10.1, 44.4 -2.124999999999999,2.12,a-pcom-i3,2021-22,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 6.8, 93.2, 0.0, 0.0, 0.0, 91.0, 9.0, 44.4 -2.5,2.5,a-pcom-i3,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 1.6, 1.6, 4.8, 92.0, 0.0, 0.0, 0.0, 57.4, 42.6, 62.3 -11.46875,5,a-pcom-i3,2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,04370505, 19.5, 3.6, 9.1, 63.3, 0.0, 0.0, 4.5, 64.1, 33.6, 44.2 -1,1,a-pcom-i3,2021-22,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 31.3 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Clinton - Clinton Elementary,00640050, 0.0, 0.8, 3.9, 93.8, 0.0, 0.0, 1.6, 93.0, 7.0, 128.0 -3.187500000000001,3.19,a-pcom-i3,2021-22,Clinton - Clinton Middle School,00640305, 1.3, 1.3, 5.1, 89.8, 0.0, 0.0, 2.5, 82.1, 17.9, 78.7 -2.4687500000000018,2.47,a-pcom-i3,2021-22,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 6.3, 92.1, 0.0, 0.0, 1.6, 63.7, 36.3, 63.3 -16.343749999999996,5,a-pcom-i3,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 38.7, 3.7, 6.2, 47.7, 0.0, 1.1, 2.5, 71.3, 28.7, 80.0 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Cohasset - Cohasset High School,00650505, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 59.3, 40.7, 62.1 -1,1,a-pcom-i3,2021-22,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 83.3, 16.7, 45.0 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Cohasset - Deer Hill,00650005, 1.9, 1.9, 0.0, 96.2, 0.0, 0.0, 0.0, 90.4, 9.6, 52.2 -1,1,a-pcom-i3,2021-22,Cohasset - Joseph Osgood,00650010, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 94.7, 5.3, 54.3 -6.687500000000002,5,a-pcom-i3,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 4.1, 3.1, 14.2, 78.6, 0.0, 0.0, 0.0, 79.7, 20.3, 98.3 -11.968749999999998,5,a-pcom-i3,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 16.1, 4.6, 16.9, 61.7, 0.0, 0.0, 0.7, 69.3, 30.7, 65.2 -8.312499999999998,5,a-pcom-i3,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.5, 0.0, 22.1, 73.4, 0.0, 0.0, 3.0, 85.3, 14.7, 66.2 -12.281249999999998,5,a-pcom-i3,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 1.7, 3.4, 33.2, 60.7, 0.0, 0.0, 1.0, 78.6, 21.4, 59.1 -8.531249999999998,5,a-pcom-i3,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 1.6, 22.3, 72.7, 0.0, 0.0, 3.3, 76.7, 23.3, 60.9 -3.031250000000001,3.03,a-pcom-i3,2021-22,Concord - Alcott,00670005, 2.9, 1.7, 5.1, 90.3, 0.0, 0.0, 0.0, 91.1, 8.9, 72.1 -4.53125,4.53,a-pcom-i3,2021-22,Concord - Concord Middle,00670305, 3.9, 6.8, 2.9, 85.5, 0.0, 1.0, 0.0, 74.1, 25.9, 103.5 -1.25,1.25,a-pcom-i3,2021-22,Concord - Thoreau,00670020, 0.1, 2.5, 1.4, 96.0, 0.0, 0.0, 0.0, 94.2, 5.8, 87.3 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Concord - Willard,00670030, 1.4, 1.5, 2.7, 94.4, 0.0, 0.0, 0.0, 89.5, 10.5, 80.4 -3.2500000000000018,3.25,a-pcom-i3,2021-22,Concord-Carlisle - Concord Carlisle High,06400505, 2.6, 3.1, 4.8, 89.6, 0.0, 0.0, 0.0, 64.6, 35.4, 188.0 -13.218749999999998,5,a-pcom-i3,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 29.6, 0.0, 12.6, 57.7, 0.0, 0.0, 0.0, 71.9, 28.1, 63.3 -1,1,a-pcom-i3,2021-22,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 37.7 -1,1,a-pcom-i3,2021-22,Danvers - Danvers High,00710505, 0.0, 0.0, 0.9, 98.3, 0.0, 0.0, 0.9, 61.2, 38.8, 115.7 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Danvers - Great Oak,00710015, 2.4, 0.0, 2.4, 95.1, 0.0, 0.0, 0.0, 88.5, 11.5, 40.9 -1,1,a-pcom-i3,2021-22,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.0, 22.0, 42.8 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.9, 96.3, 0.0, 0.9, 0.9, 81.3, 18.7, 106.8 -1.25,1.25,a-pcom-i3,2021-22,Danvers - Ivan G Smith,00710032, 0.0, 2.2, 1.8, 96.0, 0.0, 0.0, 0.0, 95.6, 4.4, 45.5 -1,1,a-pcom-i3,2021-22,Danvers - Riverside,00710030, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 90.8, 9.2, 65.0 -1.71875,1.72,a-pcom-i3,2021-22,Danvers - Willis E Thorpe,00710045, 0.0, 3.4, 2.1, 94.5, 0.0, 0.0, 0.0, 93.7, 6.3, 47.6 -1,1,a-pcom-i3,2021-22,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 29.6 -1,1,a-pcom-i3,2021-22,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 60.6, 39.4, 104.1 -1,1,a-pcom-i3,2021-22,Dartmouth - Dartmouth Middle,00720050, 1.0, 0.0, 0.0, 98.1, 0.0, 0.0, 1.0, 64.5, 35.5, 104.3 -1,1,a-pcom-i3,2021-22,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 50.5 -1,1,a-pcom-i3,2021-22,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 88.3 -1,1,a-pcom-i3,2021-22,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 46.4 -1,1,a-pcom-i3,2021-22,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 57.0 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Dedham - Dedham High,00730505, 0.8, 2.0, 3.0, 94.2, 0.0, 0.0, 0.0, 73.4, 26.6, 99.3 -1,1,a-pcom-i3,2021-22,Dedham - Dedham Middle School,00730305, 2.0, 0.0, 0.6, 97.3, 0.0, 0.0, 0.0, 72.0, 28.0, 97.6 -1,1,a-pcom-i3,2021-22,Dedham - Early Childhood Center,00730005, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 98.4, 1.6, 64.2 -1,1,a-pcom-i3,2021-22,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 43.8 -1,1,a-pcom-i3,2021-22,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 39.3 -1,1,a-pcom-i3,2021-22,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 36.5 -1,1,a-pcom-i3,2021-22,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 74.9 -2.1875,2.19,a-pcom-i3,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.6, 0.8, 2.8, 93.0, 0.0, 0.0, 0.8, 65.8, 34.2, 128.6 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 3.3, 96.2, 0.5, 0.0, 0.0, 95.1, 4.9, 78.3 -1,1,a-pcom-i3,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 68.2 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Dennis-Yarmouth - Mattacheese Middle School,06450305, 3.6, 0.0, 1.5, 93.4, 0.0, 0.0, 1.5, 74.1, 25.9, 66.3 -1,1,a-pcom-i3,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 0.0, 1.2, 97.6, 0.0, 0.0, 1.3, 92.5, 7.5, 77.6 -1,1,a-pcom-i3,2021-22,Dennis-Yarmouth - Station Avenue Elementary,06450025, 1.3, 0.0, 1.6, 97.0, 0.0, 0.0, 0.0, 92.1, 7.9, 61.0 -1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Dighton Elementary,06500005, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 94.5, 5.5, 63.5 -1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Dighton Middle School,06500305, 0.4, 0.0, 0.0, 97.5, 0.0, 0.0, 2.1, 73.9, 26.1, 47.2 -1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.2, 0.0, 2.1, 97.7, 0.0, 0.0, 0.0, 70.2, 29.8, 94.1 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.3, 0.0, 3.2, 94.2, 0.0, 0.0, 2.4, 81.9, 18.1, 63.4 -1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Palmer River,06500010, 0.3, 0.0, 0.0, 99.0, 0.0, 0.0, 0.7, 96.5, 3.5, 71.4 -1,1,a-pcom-i3,2021-22,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 48.0 -1,1,a-pcom-i3,2021-22,Douglas - Douglas High School,00770505, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 63.6, 36.4, 52.2 -1,1,a-pcom-i3,2021-22,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 36.1 -1,1,a-pcom-i3,2021-22,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 27.9 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Dover - Chickering,00780005, 1.5, 1.2, 3.4, 93.9, 0.0, 0.0, 0.0, 91.1, 8.9, 85.1 -2.5,2.5,a-pcom-i3,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 2.4, 1.9, 3.7, 92.0, 0.0, 0.0, 0.0, 70.4, 29.6, 94.5 -3.0937500000000018,3.09,a-pcom-i3,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.0, 1.3, 4.3, 90.1, 0.0, 1.3, 0.0, 74.4, 25.6, 76.1 -1,1,a-pcom-i3,2021-22,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 51.2 -1,1,a-pcom-i3,2021-22,Dracut - Dracut Senior High,00790505, 0.0, 1.5, 1.0, 97.4, 0.0, 0.0, 0.0, 68.8, 31.2, 97.8 -1,1,a-pcom-i3,2021-22,Dracut - George H. Englesby Elementary School,00790045, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 95.9, 4.1, 51.8 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Dracut - Greenmont Avenue,00790030, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 95.0, 5.0, 30.0 -1,1,a-pcom-i3,2021-22,Dracut - Joseph A Campbell Elementary,00790020, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 95.2, 4.8, 66.8 -2.124999999999999,2.12,a-pcom-i3,2021-22,Dracut - Justus C. Richardson Middle School,00790410, 2.3, 0.6, 3.9, 93.2, 0.0, 0.0, 0.0, 81.5, 18.5, 86.5 -21.0625,5,a-pcom-i3,2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 45.7, 0.0, 21.7, 32.6, 0.0, 0.0, 0.0, 89.1, 10.9, 23.0 -1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 50.6 -1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 78.2, 21.8, 80.6 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 3.7, 93.9, 2.3, 0.0, 0.0, 90.6, 9.4, 42.8 -1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.5, 22.5, 55.5 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 1.7, 94.8, 0.0, 0.0, 3.5, 96.5, 3.5, 57.8 -2.718750000000001,2.72,a-pcom-i3,2021-22,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 3.6, 91.3, 2.5, 0.0, 2.5, 95.4, 4.6, 39.3 -1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 55.9, 44.1, 101.5 -1,1,a-pcom-i3,2021-22,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 76.4 -1,1,a-pcom-i3,2021-22,Duxbury - Chandler Elementary,00820006, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 97.8, 2.2, 87.8 -1,1,a-pcom-i3,2021-22,Duxbury - Duxbury High,00820505, 0.0, 0.7, 0.9, 98.2, 0.0, 0.0, 0.2, 66.0, 34.0, 113.0 -1,1,a-pcom-i3,2021-22,Duxbury - Duxbury Middle,00820305, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 76.2, 23.8, 70.6 -1,1,a-pcom-i3,2021-22,East Bridgewater - Central,00830005, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 92.1, 7.9, 76.2 -1,1,a-pcom-i3,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.6, 32.4, 108.0 -1,1,a-pcom-i3,2021-22,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.1, 14.9, 87.0 -2.406250000000001,2.41,a-pcom-i3,2021-22,East Longmeadow - Birchland Park,00870305, 2.7, 3.8, 1.3, 92.3, 0.0, 0.0, 0.0, 71.2, 28.8, 79.2 -2.562500000000001,2.56,a-pcom-i3,2021-22,East Longmeadow - East Longmeadow High,00870505, 3.1, 1.0, 3.1, 91.8, 0.0, 0.0, 1.0, 63.5, 36.5, 97.3 -1,1,a-pcom-i3,2021-22,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 83.4, 16.6, 48.1 -1.3750000000000018,1.38,a-pcom-i3,2021-22,East Longmeadow - Meadow Brook,00870013, 1.1, 0.0, 1.1, 95.6, 0.0, 0.0, 2.2, 96.7, 3.3, 90.3 -1,1,a-pcom-i3,2021-22,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 85.7, 14.3, 46.0 -1,1,a-pcom-i3,2021-22,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 36.4 -1,1,a-pcom-i3,2021-22,Easthampton - Center School,00860005, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 94.1, 5.9, 22.6 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Easthampton - Easthampton High,00860505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 60.0, 40.0, 55.0 -1,1,a-pcom-i3,2021-22,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 50.9 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 91.5, 8.5, 39.1 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Easthampton - White Brook Middle School,00860305, 3.5, 0.0, 1.7, 94.8, 0.0, 0.0, 0.0, 72.2, 27.8, 57.6 -1,1,a-pcom-i3,2021-22,Easton - Center School,00880003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 33.9 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Easton - Easton Middle School,00880405, 0.0, 0.9, 1.9, 95.8, 0.0, 0.0, 1.4, 82.7, 17.3, 106.5 -1,1,a-pcom-i3,2021-22,Easton - Moreau Hall,00880020, 0.0, 0.0, 1.5, 97.0, 0.0, 0.0, 1.5, 94.6, 5.4, 29.8 -2.281249999999999,2.28,a-pcom-i3,2021-22,Easton - Oliver Ames High,00880505, 1.5, 1.5, 3.5, 92.7, 0.0, 0.0, 0.8, 62.1, 37.9, 132.0 -1,1,a-pcom-i3,2021-22,Easton - Parkview Elementary,00880015, 0.0, 0.0, 0.0, 99.1, 0.0, 0.0, 0.9, 91.9, 8.1, 51.3 -1,1,a-pcom-i3,2021-22,Easton - Richardson Olmsted School,00880025, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 90.4, 9.6, 91.4 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Edgartown - Edgartown Elementary,00890005, 1.5, 0.0, 3.3, 94.9, 0.0, 0.0, 0.3, 81.0, 19.0, 82.8 -17.34375,5,a-pcom-i3,2021-22,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 44.6, 0.8, 10.0, 44.5, 0.0, 0.0, 0.0, 61.2, 38.8, 59.8 -2.1875,2.19,a-pcom-i3,2021-22,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 7.0, 87.2, 12.8, 42.9 -1,1,a-pcom-i3,2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.5, 1.0, 1.0, 97.6, 0.0, 0.0, 0.0, 56.4, 43.6, 209.7 -1,1,a-pcom-i3,2021-22,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.5 -5.187499999999998,5,a-pcom-i3,2021-22,Everett - Devens School,00930030, 6.6, 0.0, 6.6, 83.4, 0.0, 0.0, 3.3, 46.8, 53.2, 30.1 -5.281250000000002,5,a-pcom-i3,2021-22,Everett - Everett High,00930505, 5.8, 4.3, 5.8, 83.1, 0.0, 0.5, 0.5, 59.4, 40.6, 207.7 -3.4375,3.44,a-pcom-i3,2021-22,Everett - George Keverian School,00930028, 3.7, 1.2, 3.7, 89.0, 0.0, 1.2, 1.2, 83.9, 16.1, 81.8 -2.5,2.5,a-pcom-i3,2021-22,Everett - Lafayette School,00930038, 0.2, 3.8, 4.0, 92.0, 0.0, 0.0, 0.0, 81.4, 18.6, 105.6 -2.875000000000001,2.88,a-pcom-i3,2021-22,Everett - Madeline English School,00930018, 1.2, 4.6, 3.5, 90.8, 0.0, 0.0, 0.0, 89.2, 10.8, 86.6 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Everett - Parlin School,00930058, 1.3, 1.3, 2.6, 94.9, 0.0, 0.0, 0.0, 82.8, 17.2, 78.0 -2.093750000000001,2.09,a-pcom-i3,2021-22,Everett - Sumner G. Whittier School,00930010, 3.4, 0.0, 3.4, 93.3, 0.0, 0.0, 0.0, 89.3, 10.7, 59.6 -1.40625,1.41,a-pcom-i3,2021-22,Everett - Webster Extension,00930001, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 97.7, 2.3, 22.0 -2.5312499999999982,2.53,a-pcom-i3,2021-22,Everett - Webster School,00930015, 0.0, 3.3, 4.9, 91.9, 0.0, 0.0, 0.0, 92.3, 7.7, 61.4 -13.1875,5,a-pcom-i3,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 9.8, 4.7, 25.3, 57.8, 0.0, 0.0, 2.5, 75.8, 22.5, 235.1 -1,1,a-pcom-i3,2021-22,Fairhaven - East Fairhaven,00940010, 0.3, 0.0, 0.5, 99.2, 0.0, 0.0, 0.0, 95.0, 5.0, 50.0 -1,1,a-pcom-i3,2021-22,Fairhaven - Fairhaven High,00940505, 1.5, 0.0, 0.0, 97.1, 0.0, 0.0, 1.4, 62.5, 37.5, 74.7 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Fairhaven - Hastings Middle,00940305, 1.8, 0.0, 2.9, 95.2, 0.0, 0.0, 0.0, 76.5, 23.5, 50.9 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Fairhaven - Leroy Wood,00940030, 2.2, 2.0, 0.5, 95.3, 0.0, 0.0, 0.0, 93.1, 6.9, 50.8 -2.562500000000001,2.56,a-pcom-i3,2021-22,Fall River - B M C Durfee High,00950505, 2.2, 1.4, 3.4, 91.8, 0.0, 0.0, 1.2, 66.6, 33.4, 277.8 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Fall River - Carlton M. Viveiros Elementary School,00950009, 1.2, 0.0, 1.9, 93.4, 0.0, 0.0, 3.5, 92.2, 7.8, 84.8 -2.875000000000001,2.88,a-pcom-i3,2021-22,Fall River - Henry Lord Community School,00950017, 2.8, 0.0, 5.5, 90.8, 0.9, 0.0, 0.0, 89.8, 10.2, 108.7 -2.7812500000000018,2.78,a-pcom-i3,2021-22,Fall River - James Tansey,00950140, 0.0, 3.0, 3.0, 91.1, 0.0, 0.0, 3.0, 89.6, 10.4, 33.8 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Fall River - John J Doran,00950045, 1.5, 0.0, 4.4, 94.2, 0.0, 0.0, 0.0, 85.2, 14.8, 68.5 -4.031250000000002,4.03,a-pcom-i3,2021-22,Fall River - Letourneau Elementary School,00950013, 7.2, 0.0, 4.3, 87.1, 1.4, 0.0, 0.0, 92.4, 7.6, 69.7 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 8.7, 88.6, 0.0, 0.0, 2.7, 93.3, 6.7, 74.9 -3.28125,3.28,a-pcom-i3,2021-22,Fall River - Matthew J Kuss Middle,00950320, 3.0, 1.1, 3.3, 89.5, 0.0, 1.1, 1.9, 69.5, 30.5, 89.7 -3.3124999999999982,3.31,a-pcom-i3,2021-22,Fall River - Morton Middle,00950315, 0.0, 4.7, 4.7, 89.4, 0.0, 0.0, 1.2, 75.0, 25.0, 84.5 -1,1,a-pcom-i3,2021-22,Fall River - North End Elementary,00950005, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 92.4, 7.6, 91.9 -4.468749999999999,4.47,a-pcom-i3,2021-22,Fall River - Resiliency Preparatory Academy,00950525, 5.7, 0.0, 8.6, 85.7, 0.0, 0.0, 0.0, 52.4, 47.6, 35.0 -2.906249999999999,2.91,a-pcom-i3,2021-22,Fall River - Samuel Watson,00950145, 6.2, 0.0, 3.1, 90.7, 0.0, 0.0, 0.0, 96.0, 4.0, 32.1 -1,1,a-pcom-i3,2021-22,Fall River - Spencer Borden,00950130, 0.0, 0.0, 1.0, 98.3, 0.0, 0.0, 0.6, 94.3, 5.7, 96.3 -7.218749999999998,5,a-pcom-i3,2021-22,Fall River - Stone PK-12 School,00950340, 16.3, 0.0, 1.4, 76.9, 0.0, 0.0, 5.5, 73.8, 26.2, 36.3 -4.375,4.38,a-pcom-i3,2021-22,Fall River - Talbot Innovation School,00950305, 6.4, 1.3, 3.8, 86.0, 0.0, 0.0, 2.5, 75.3, 24.7, 78.6 -2.5312499999999982,2.53,a-pcom-i3,2021-22,Fall River - William S Greene,00950065, 4.7, 1.2, 2.3, 91.9, 0.0, 0.0, 0.0, 91.9, 8.1, 86.0 -1,1,a-pcom-i3,2021-22,Falmouth - East Falmouth Elementary,00960005, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 88.9, 11.1, 52.9 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Falmouth - Falmouth High,00960505, 3.4, 1.6, 1.6, 93.4, 0.0, 0.0, 0.0, 68.0, 32.0, 119.2 -3.0937500000000018,3.09,a-pcom-i3,2021-22,Falmouth - Lawrence,00960405, 4.9, 1.2, 2.5, 90.1, 0.0, 0.0, 1.2, 80.9, 19.1, 81.0 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Falmouth - Morse Pond School,00960305, 1.9, 0.0, 0.0, 94.2, 1.3, 0.0, 2.6, 87.7, 12.3, 77.0 -2.03125,2.03,a-pcom-i3,2021-22,Falmouth - Mullen-Hall,00960020, 0.7, 0.0, 2.9, 93.5, 0.0, 0.0, 2.9, 91.7, 8.3, 69.0 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Falmouth - North Falmouth Elementary,00960030, 3.8, 0.0, 3.8, 92.4, 0.0, 0.0, 0.0, 93.0, 7.0, 52.4 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Falmouth - Teaticket,00960015, 1.7, 1.7, 1.7, 91.4, 0.0, 0.0, 3.4, 98.7, 1.3, 58.4 -1,1,a-pcom-i3,2021-22,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.5, 17.5, 25.7 -5.031249999999998,5,a-pcom-i3,2021-22,Fitchburg - Arthur M Longsjo Middle School,00970315, 2.5, 1.2, 11.1, 83.9, 0.0, 0.0, 1.2, 76.5, 23.5, 80.9 -4.53125,4.53,a-pcom-i3,2021-22,Fitchburg - Crocker Elementary,00970016, 4.0, 1.3, 9.2, 85.5, 0.0, 0.0, 0.0, 96.0, 4.0, 75.8 -6.593749999999998,5,a-pcom-i3,2021-22,Fitchburg - Fitchburg High,00970505, 2.2, 1.4, 16.7, 78.9, 0.0, 0.0, 0.7, 64.3, 35.7, 137.9 -5.031249999999998,5,a-pcom-i3,2021-22,Fitchburg - Goodrich Academy,00970510, 8.6, 0.0, 7.6, 83.9, 0.0, 0.0, 0.0, 81.9, 18.1, 17.5 -4.0625,4.06,a-pcom-i3,2021-22,Fitchburg - McKay Arts Academy,00970340, 1.1, 0.0, 11.9, 87.0, 0.0, 0.0, 0.0, 90.2, 9.8, 92.3 -3.125,3.13,a-pcom-i3,2021-22,Fitchburg - Memorial Middle School,00970048, 3.8, 0.0, 5.0, 90.0, 0.0, 0.0, 1.3, 78.7, 21.3, 79.8 -3.90625,3.91,a-pcom-i3,2021-22,Fitchburg - Reingold Elementary,00970043, 1.4, 1.4, 8.3, 87.5, 0.0, 0.0, 1.4, 93.1, 6.9, 71.9 -2.562500000000001,2.56,a-pcom-i3,2021-22,Fitchburg - South Street Elementary,00970060, 1.0, 1.0, 6.2, 91.8, 0.0, 0.0, 0.0, 90.8, 9.2, 97.4 -1,1,a-pcom-i3,2021-22,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.3, 21.7, 23.3 -3.999999999999999,4.0,a-pcom-i3,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.5, 0.0, 9.3, 87.2, 0.0, 0.0, 3.1, 72.2, 27.8, 32.3 -1,1,a-pcom-i3,2021-22,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 34.4 -1,1,a-pcom-i3,2021-22,Foxborough - Foxborough High,00990505, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 67.9, 32.1, 104.3 -1,1,a-pcom-i3,2021-22,Foxborough - John J Ahern,00990405, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 77.0, 23.0, 95.5 -1,1,a-pcom-i3,2021-22,Foxborough - Mabelle M Burrell,00990015, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 95.6, 4.4, 45.1 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Foxborough - Vincent M Igo Elementary,00990020, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 97.9, 2.1, 47.4 -3.90625,3.91,a-pcom-i3,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 5.6, 0.5, 6.5, 87.5, 0.0, 0.0, 0.0, 78.7, 21.3, 193.3 -16.0625,5,a-pcom-i3,2021-22,Framingham - Barbieri Elementary,01000035, 0.0, 1.2, 50.3, 48.6, 0.0, 0.0, 0.0, 93.5, 6.5, 86.6 -7.124999999999999,5,a-pcom-i3,2021-22,Framingham - Brophy,01000006, 0.0, 0.0, 22.8, 77.2, 0.0, 0.0, 0.0, 93.2, 6.8, 73.1 -5.625,5,a-pcom-i3,2021-22,Framingham - Cameron Middle School,01000302, 8.1, 2.3, 7.7, 82.0, 0.0, 0.0, 0.0, 75.9, 24.1, 87.9 -4.187500000000002,4.19,a-pcom-i3,2021-22,Framingham - Charlotte A Dunning,01000007, 0.0, 1.3, 10.7, 86.6, 1.3, 0.0, 0.0, 90.5, 9.5, 74.7 -5.0,5.0,a-pcom-i3,2021-22,Framingham - Framingham High School,01000515, 3.7, 0.7, 11.3, 84.0, 0.4, 0.0, 0.0, 70.0, 30.0, 276.2 -6.749999999999998,5,a-pcom-i3,2021-22,Framingham - Fuller Middle,01000305, 0.3, 4.3, 17.1, 78.4, 0.0, 0.0, 0.0, 78.1, 21.9, 93.5 -6.906249999999998,5,a-pcom-i3,2021-22,Framingham - Harmony Grove Elementary,01000055, 0.3, 4.0, 17.9, 77.9, 0.0, 0.0, 0.0, 87.3, 12.7, 75.7 -3.0937500000000018,3.09,a-pcom-i3,2021-22,Framingham - Hemenway,01000015, 2.7, 0.7, 6.5, 90.1, 0.0, 0.0, 0.0, 94.2, 5.8, 73.1 -8.250000000000002,5,a-pcom-i3,2021-22,Framingham - Juniper Hill School,01000001, 0.0, 3.0, 23.3, 73.6, 0.0, 0.0, 0.0, 95.5, 4.5, 66.0 -4.187500000000002,4.19,a-pcom-i3,2021-22,Framingham - King Elementary School,01000005, 3.4, 1.7, 8.2, 86.6, 0.0, 0.0, 0.0, 86.3, 13.7, 58.3 -3.062499999999999,3.06,a-pcom-i3,2021-22,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 1.5, 8.3, 90.2, 0.0, 0.0, 0.0, 91.2, 8.8, 64.8 -3.125,3.13,a-pcom-i3,2021-22,Framingham - Miriam F McCarthy School,01000050, 3.6, 1.3, 5.1, 90.0, 0.0, 0.0, 0.0, 90.6, 9.4, 77.8 -8.156249999999998,5,a-pcom-i3,2021-22,Framingham - Potter Road,01000039, 0.0, 1.7, 24.4, 73.9, 0.0, 0.0, 0.0, 90.5, 9.5, 58.7 -5.125000000000002,5,a-pcom-i3,2021-22,Framingham - Walsh Middle,01000310, 1.0, 1.4, 14.0, 83.6, 0.0, 0.0, 0.0, 82.0, 18.0, 103.9 -2.9999999999999982,3.0,a-pcom-i3,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 3.2, 0.0, 6.4, 90.4, 0.0, 0.0, 0.0, 72.4, 27.6, 62.6 -1,1,a-pcom-i3,2021-22,Franklin - Annie Sullivan Middle School,01010040, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 82.4, 17.6, 57.7 -2.5312499999999982,2.53,a-pcom-i3,2021-22,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 8.1, 0.0, 91.9, 0.0, 0.0, 0.0, 98.4, 1.6, 34.5 -1,1,a-pcom-i3,2021-22,Franklin - Franklin High,01010505, 0.6, 1.7, 0.0, 97.7, 0.0, 0.0, 0.0, 70.4, 29.6, 177.0 -1,1,a-pcom-i3,2021-22,Franklin - Helen Keller Elementary,01010012, 0.0, 1.3, 1.3, 97.5, 0.0, 0.0, 0.0, 90.7, 9.3, 78.5 -1,1,a-pcom-i3,2021-22,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.3, 18.7, 59.6 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Franklin - J F Kennedy Memorial,01010013, 0.0, 1.9, 1.9, 94.4, 1.9, 0.0, 0.0, 94.1, 5.9, 53.8 -1,1,a-pcom-i3,2021-22,Franklin - Jefferson Elementary,01010010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 58.8 -1,1,a-pcom-i3,2021-22,Franklin - Oak Street Elementary,01010030, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 95.9, 4.1, 52.7 -1,1,a-pcom-i3,2021-22,Franklin - Parmenter,01010032, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 91.6, 8.4, 60.9 -1,1,a-pcom-i3,2021-22,Franklin - Remington Middle,01010310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.6, 22.4, 58.6 -1,1,a-pcom-i3,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 97.4, 0.0, 0.0, 2.6, 40.8, 59.2, 77.4 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 69.0, 31.0, 90.3 -1,1,a-pcom-i3,2021-22,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 47.0 -1,1,a-pcom-i3,2021-22,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 55.0 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.5, 0.0, 1.3, 96.2, 0.0, 0.0, 0.0, 74.7, 25.3, 79.1 -1,1,a-pcom-i3,2021-22,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 46.0 -1,1,a-pcom-i3,2021-22,Frontier - Frontier Regional,06700505, 1.0, 0.0, 0.0, 96.9, 2.0, 0.0, 0.0, 63.4, 36.6, 98.3 -2.4687500000000018,2.47,a-pcom-i3,2021-22,Gardner - Elm Street School,01030001, 0.0, 1.3, 3.9, 92.1, 1.3, 0.0, 1.3, 81.6, 18.4, 76.0 -1,1,a-pcom-i3,2021-22,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 47.6, 52.4, 10.5 -2.65625,2.66,a-pcom-i3,2021-22,Gardner - Gardner High,01030505, 0.0, 2.3, 5.7, 91.5, 0.0, 0.0, 0.6, 62.6, 37.4, 88.1 -4.312499999999999,4.31,a-pcom-i3,2021-22,Gardner - Gardner Middle School,01030405, 1.4, 1.4, 8.3, 86.2, 0.0, 0.0, 2.7, 69.6, 30.4, 72.5 -1.40625,1.41,a-pcom-i3,2021-22,Gardner - Waterford Street,01030020, 1.1, 0.0, 2.2, 95.5, 1.1, 0.0, 0.0, 82.1, 17.9, 89.3 -1,1,a-pcom-i3,2021-22,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 24.7 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 96.3, 0.0, 0.0, 3.7, 72.2, 27.8, 45.0 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 94.6, 0.0, 0.0, 5.4, 79.1, 20.9, 24.9 -1,1,a-pcom-i3,2021-22,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 98.0, 0.0, 2.0, 0.0, 88.9, 11.1, 49.2 -1,1,a-pcom-i3,2021-22,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.8, 97.2, 0.0, 1.1, 0.0, 69.9, 30.1, 56.2 -1,1,a-pcom-i3,2021-22,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 98.0, 0.0, 2.0, 0.0, 76.8, 23.2, 20.3 -1,1,a-pcom-i3,2021-22,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 87.4, 12.6, 79.3 -1,1,a-pcom-i3,2021-22,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.2 -1,1,a-pcom-i3,2021-22,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 93.7, 6.3, 19.8 -1,1,a-pcom-i3,2021-22,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 63.6, 36.4, 32.1 -1.09375,1.09,a-pcom-i3,2021-22,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 93.3, 6.7, 37.3 -2.1562500000000018,2.16,a-pcom-i3,2021-22,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 2.9, 4.0, 93.1, 0.0, 0.0, 0.0, 85.0, 15.0, 34.7 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 3.9, 93.4, 0.0, 0.0, 2.6, 73.5, 26.5, 38.1 -5.3125,5,a-pcom-i3,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 5.7, 1.6, 9.7, 83.0, 0.0, 0.0, 0.0, 70.6, 29.4, 61.6 -1,1,a-pcom-i3,2021-22,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 55.3 -1,1,a-pcom-i3,2021-22,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 94.9, 5.1, 38.9 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Gloucester - Gloucester High,01070505, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 60.7, 39.3, 125.7 -1,1,a-pcom-i3,2021-22,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 28.6 -1,1,a-pcom-i3,2021-22,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 90.6, 9.4, 37.1 -1,1,a-pcom-i3,2021-22,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.7, 29.3, 92.1 -1,1,a-pcom-i3,2021-22,Gloucester - Veterans Memorial,01070045, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 97.5, 2.5, 40.4 -1,1,a-pcom-i3,2021-22,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 53.9 -31.25,5,a-pcom-i3,2021-22,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Grafton - Grafton High School,01100505, 0.9, 1.0, 1.0, 95.1, 0.0, 0.0, 2.0, 69.1, 30.9, 102.9 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Grafton - Grafton Middle,01100305, 0.0, 5.1, 0.0, 94.9, 0.0, 0.0, 0.0, 68.0, 32.0, 71.9 -1,1,a-pcom-i3,2021-22,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 90.4 -1,1,a-pcom-i3,2021-22,Grafton - North Grafton Elementary,01100025, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 98.2, 1.8, 44.8 -1,1,a-pcom-i3,2021-22,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 95.1, 4.9, 81.1 -2.34375,2.34,a-pcom-i3,2021-22,Grafton - South Grafton Elementary,01100005, 5.9, 0.0, 0.0, 92.5, 1.6, 0.0, 0.0, 96.1, 3.9, 50.9 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Granby - East Meadow,01110004, 1.4, 1.8, 0.0, 96.8, 0.0, 0.0, 0.0, 85.9, 14.1, 69.3 -2.593749999999999,2.59,a-pcom-i3,2021-22,Granby - Granby Jr Sr High School,01110505, 0.0, 3.9, 2.2, 91.7, 0.0, 0.0, 2.2, 65.9, 34.1, 45.3 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900, 1.2, 1.2, 1.9, 95.7, 0.0, 0.0, 0.0, 70.5, 29.5, 80.5 -1,1,a-pcom-i3,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 1.7, 0.0, 0.6, 97.7, 0.0, 0.0, 0.0, 47.8, 52.2, 173.3 -5.125000000000002,5,a-pcom-i3,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.9, 0.9, 14.1, 83.6, 0.0, 0.0, 0.5, 57.3, 42.7, 211.9 -2.593749999999999,2.59,a-pcom-i3,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.9, 2.5, 3.5, 91.7, 0.3, 0.0, 0.0, 60.8, 39.2, 313.9 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 2.2, 0.4, 2.9, 93.8, 0.7, 0.0, 0.0, 51.6, 48.4, 273.0 -2.437499999999999,2.44,a-pcom-i3,2021-22,Greenfield - Discovery School at Four Corners,01140025, 1.9, 0.0, 5.9, 92.2, 0.0, 0.0, 0.0, 89.0, 11.0, 51.9 -2.593749999999999,2.59,a-pcom-i3,2021-22,Greenfield - Federal Street School,01140010, 0.0, 0.0, 5.5, 91.7, 0.0, 0.0, 2.8, 94.5, 5.5, 35.8 -1.25,1.25,a-pcom-i3,2021-22,Greenfield - Greenfield High,01140505, 0.0, 2.7, 0.0, 96.0, 0.0, 0.0, 1.3, 62.9, 37.1, 75.0 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Greenfield - Greenfield Middle,01140305, 0.0, 1.9, 0.0, 96.3, 0.0, 0.0, 1.9, 83.1, 16.9, 53.4 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Greenfield - Newton School,01140035, 0.0, 0.0, 7.6, 92.4, 0.0, 0.0, 0.0, 89.6, 10.4, 39.3 -1,1,a-pcom-i3,2021-22,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.7 -1,1,a-pcom-i3,2021-22,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.9 -1,1,a-pcom-i3,2021-22,Groton-Dunstable - Florence Roche School,06730010, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 92.7, 7.3, 68.7 -1,1,a-pcom-i3,2021-22,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 1.2, 97.5, 1.2, 0.0, 0.0, 65.1, 34.9, 81.2 -1,1,a-pcom-i3,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 86.6, 13.4, 96.9 -1,1,a-pcom-i3,2021-22,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 43.5 -3.031250000000001,3.03,a-pcom-i3,2021-22,Hadley - Hadley Elementary,01170015, 0.0, 7.5, 2.2, 90.3, 0.0, 0.0, 0.0, 84.5, 15.5, 45.3 -3.812500000000001,3.81,a-pcom-i3,2021-22,Hadley - Hopkins Academy,01170505, 5.0, 0.0, 7.1, 87.8, 0.0, 0.0, 0.0, 73.9, 26.1, 42.2 -1,1,a-pcom-i3,2021-22,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.2, 13.8, 65.4 -1,1,a-pcom-i3,2021-22,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 38.7 -1,1,a-pcom-i3,2021-22,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 94.3, 5.7, 38.9 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 2.2, 1.4, 94.9, 0.0, 0.0, 1.4, 63.6, 36.4, 71.2 -1.3750000000000018,1.38,a-pcom-i3,2021-22,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.5, 0.0, 95.6, 0.0, 0.0, 1.9, 79.0, 21.0, 51.9 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Hamilton-Wenham - Winthrop School,06750015, 0.0, 1.6, 0.0, 96.8, 0.0, 0.0, 1.6, 94.0, 6.0, 63.1 -4.718749999999998,4.72,a-pcom-i3,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 5.0, 6.7, 1.7, 84.9, 1.7, 0.0, 0.0, 59.3, 40.7, 59.4 -6.906249999999998,5,a-pcom-i3,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 18.1, 2.0, 2.0, 77.9, 0.0, 0.0, 0.0, 59.4, 40.6, 49.7 -1,1,a-pcom-i3,2021-22,Hampden-Wilbraham - Green Meadows Elementary,06800005, 1.5, 0.0, 0.0, 96.9, 0.0, 0.0, 1.5, 96.1, 3.9, 64.7 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.7, 0.0, 3.4, 94.9, 0.0, 0.0, 0.0, 97.5, 2.5, 59.0 -1.25,1.25,a-pcom-i3,2021-22,Hampden-Wilbraham - Minnechaug Regional High,06800505, 1.3, 0.0, 2.7, 96.0, 0.0, 0.0, 0.0, 66.4, 33.6, 111.8 -1,1,a-pcom-i3,2021-22,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 39.4 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 2.1, 95.8, 0.0, 0.0, 2.1, 92.6, 7.4, 47.4 -1,1,a-pcom-i3,2021-22,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.7, 25.3, 71.1 -1,1,a-pcom-i3,2021-22,Hampshire - Hampshire Regional High,06830505, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 66.6, 33.4, 116.5 -1,1,a-pcom-i3,2021-22,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.1, 11.9, 16.8 -1,1,a-pcom-i3,2021-22,Hanover - Cedar Elementary,01220004, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 97.2, 2.8, 71.8 -1,1,a-pcom-i3,2021-22,Hanover - Center Elementary,01220005, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 91.1, 8.9, 67.3 -1,1,a-pcom-i3,2021-22,Hanover - Hanover High,01220505, 2.0, 0.0, 1.0, 96.9, 0.0, 0.0, 0.0, 66.4, 33.6, 98.2 -1,1,a-pcom-i3,2021-22,Hanover - Hanover Middle,01220305, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 81.6, 18.4, 96.1 -2.0000000000000018,2.0,a-pcom-i3,2021-22,Harvard - Bromfield,01250505, 1.3, 1.3, 2.6, 93.6, 0.0, 1.3, 0.0, 71.0, 29.0, 78.3 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Harvard - Hildreth Elementary School,01250005, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 91.2, 8.8, 63.9 -1,1,a-pcom-i3,2021-22,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.5, 14.5, 38.6 -1,1,a-pcom-i3,2021-22,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.2, 34.8, 29.9 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Haverhill - Bartlett School and Assessment Center,01280073, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 84.4, 15.6, 25.7 -2.250000000000001,2.25,a-pcom-i3,2021-22,Haverhill - Bradford Elementary,01280008, 1.2, 1.2, 3.6, 92.8, 0.0, 0.0, 1.2, 95.2, 4.8, 83.2 -3.6249999999999982,3.62,a-pcom-i3,2021-22,Haverhill - Caleb Dustin Hunking School,01280030, 0.8, 0.8, 10.0, 88.4, 0.0, 0.0, 0.0, 84.0, 16.0, 131.6 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 83.6, 16.4, 86.8 -1,1,a-pcom-i3,2021-22,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.7, 19.3, 5.7 -3.3124999999999982,3.31,a-pcom-i3,2021-22,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 10.6, 89.4, 0.0, 0.0, 0.0, 72.3, 27.7, 84.8 -2.718750000000001,2.72,a-pcom-i3,2021-22,Haverhill - Golden Hill,01280026, 0.0, 2.5, 6.2, 91.3, 0.0, 0.0, 0.0, 89.4, 10.6, 80.3 -3.7187500000000018,3.72,a-pcom-i3,2021-22,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 11.9, 88.1, 0.0, 0.0, 0.0, 68.3, 31.7, 18.9 -4.593750000000001,4.59,a-pcom-i3,2021-22,Haverhill - Haverhill High,01280505, 2.6, 1.7, 10.4, 85.3, 0.0, 0.0, 0.0, 67.8, 32.2, 231.1 -1.8437500000000018,1.84,a-pcom-i3,2021-22,Haverhill - John G Whittier,01280085, 1.7, 0.0, 2.5, 94.1, 1.7, 0.0, 0.0, 74.9, 25.1, 59.8 -3.031250000000001,3.03,a-pcom-i3,2021-22,Haverhill - Moody,01280045, 2.1, 0.0, 7.6, 90.3, 0.0, 0.0, 0.0, 97.9, 2.1, 47.5 -3.843749999999999,3.84,a-pcom-i3,2021-22,Haverhill - Moody Preschool Extension,01280001, 0.0, 0.0, 12.3, 87.7, 0.0, 0.0, 0.0, 100.0, 0.0, 16.3 -2.1875,2.19,a-pcom-i3,2021-22,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 7.0, 93.0, 0.0, 0.0, 0.0, 91.1, 8.9, 78.4 -2.906249999999999,2.91,a-pcom-i3,2021-22,Haverhill - Silver Hill Elementary School,01280067, 0.0, 1.3, 6.6, 90.7, 0.0, 0.0, 1.3, 89.2, 10.8, 75.6 -2.1875,2.19,a-pcom-i3,2021-22,Haverhill - Tilton,01280075, 0.0, 0.0, 7.0, 93.0, 0.0, 0.0, 0.0, 95.3, 4.7, 64.3 -1,1,a-pcom-i3,2021-22,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 87.0, 13.0, 27.8 -1,1,a-pcom-i3,2021-22,Haverhill - Walnut Square,01280080, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 97.7, 2.3, 21.9 -1,1,a-pcom-i3,2021-22,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 26.9 -25.812499999999996,5,a-pcom-i3,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 65.2, 3.5, 10.5, 17.4, 0.0, 0.0, 3.5, 71.4, 28.6, 28.7 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 2.7, 94.6, 0.0, 0.0, 2.7, 97.3, 2.7, 37.0 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 2.4, 0.0, 1.5, 96.1, 0.0, 0.0, 0.0, 83.1, 16.9, 40.9 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Hingham - East Elementary School,01310005, 1.2, 0.0, 0.0, 96.3, 1.2, 0.0, 1.2, 94.2, 5.8, 80.6 -1,1,a-pcom-i3,2021-22,Hingham - Hingham High,01310505, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 67.2, 32.8, 147.6 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 2.5, 96.6, 0.0, 0.0, 0.8, 81.3, 18.7, 118.6 -1,1,a-pcom-i3,2021-22,Hingham - Plymouth River,01310019, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 91.3, 8.7, 61.3 -1.6562499999999991,1.66,a-pcom-i3,2021-22,Hingham - South Elementary,01310020, 2.6, 2.7, 0.0, 94.7, 0.0, 0.0, 0.0, 95.1, 4.9, 74.1 -1,1,a-pcom-i3,2021-22,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 92.8, 7.2, 64.7 -1,1,a-pcom-i3,2021-22,Holbrook - Holbrook Middle High School,01330505, 0.0, 1.6, 0.0, 96.9, 0.0, 0.0, 1.6, 72.9, 27.1, 64.1 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Holbrook - John F Kennedy,01330018, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 100.0, 0.0, 78.2 -1,1,a-pcom-i3,2021-22,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 33.6 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Holliston - Holliston High,01360505, 1.4, 0.0, 1.9, 95.8, 0.0, 0.0, 0.9, 72.6, 27.4, 106.9 -2.562500000000001,2.56,a-pcom-i3,2021-22,Holliston - Miller School,01360007, 3.1, 1.0, 2.1, 91.8, 1.0, 0.0, 1.0, 86.8, 13.2, 98.2 -1.71875,1.72,a-pcom-i3,2021-22,Holliston - Placentino Elementary,01360010, 0.9, 1.9, 1.8, 94.5, 0.9, 0.0, 0.0, 93.4, 6.6, 107.3 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Holliston - Robert H. Adams Middle School,01360305, 0.5, 2.1, 2.1, 95.2, 0.0, 0.0, 0.0, 81.9, 18.1, 93.3 -14.781249999999998,5,a-pcom-i3,2021-22,Holyoke - E N White Elementary,01370045, 3.6, 0.0, 43.6, 52.7, 0.0, 0.0, 0.0, 87.9, 12.1, 82.5 -10.375,5,a-pcom-i3,2021-22,Holyoke - H.B. Lawrence School,01370070, 5.8, 0.0, 26.0, 66.8, 0.0, 1.4, 0.0, 91.3, 8.7, 34.6 -12.21875,5,a-pcom-i3,2021-22,Holyoke - Holyoke High,01370505, 5.4, 3.5, 29.8, 60.9, 0.0, 0.4, 0.0, 54.1, 45.5, 239.8 -13.718749999999998,5,a-pcom-i3,2021-22,Holyoke - Holyoke STEM Academy,01370320, 8.6, 0.0, 33.2, 56.1, 0.0, 0.0, 2.1, 65.8, 34.2, 46.8 -18.03125,5,a-pcom-i3,2021-22,Holyoke - Joseph Metcalf School,01370003, 0.0, 3.9, 53.8, 42.3, 0.0, 0.0, 0.0, 83.5, 15.6, 51.5 -13.874999999999998,5,a-pcom-i3,2021-22,Holyoke - Kelly Elementary,01370040, 5.6, 0.0, 37.1, 55.6, 1.7, 0.0, 0.0, 82.0, 18.0, 44.5 -12.312499999999998,5,a-pcom-i3,2021-22,Holyoke - Lt Clayre Sullivan Elementary,01370055, 3.5, 0.0, 35.9, 60.6, 0.0, 0.0, 0.0, 87.6, 12.4, 72.4 -8.28125,5,a-pcom-i3,2021-22,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 24.9, 73.5, 0.0, 1.6, 0.0, 87.5, 12.5, 64.2 -12.71875,5,a-pcom-i3,2021-22,Holyoke - Maurice A Donahue Elementary,01370060, 4.9, 2.0, 32.8, 59.3, 0.0, 0.0, 1.0, 83.3, 16.7, 102.0 -13.65625,5,a-pcom-i3,2021-22,Holyoke - Morgan Full Service Community School,01370025, 7.0, 0.0, 36.7, 56.3, 0.0, 0.0, 0.0, 96.5, 3.5, 57.3 -17.5,5,a-pcom-i3,2021-22,Holyoke - Veritas Prep Holyoke,01370075, 16.1, 7.1, 31.4, 44.0, 0.0, 0.0, 1.4, 77.7, 22.3, 70.1 -13.562499999999998,5,a-pcom-i3,2021-22,Holyoke - William R. Peck School,01370030, 3.7, 0.0, 39.7, 56.6, 0.0, 0.0, 0.0, 76.9, 23.1, 54.1 -15.46875,5,a-pcom-i3,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 7.0, 0.0, 42.5, 50.5, 0.0, 0.0, 0.0, 67.5, 32.5, 100.0 -1,1,a-pcom-i3,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 94.3, 5.7, 70.0 -1,1,a-pcom-i3,2021-22,Hoosac Valley Regional - Hoosac Valley High School,06030505, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 82.6, 17.4, 54.6 -1,1,a-pcom-i3,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.8, 34.2, 53.2 -1,1,a-pcom-i3,2021-22,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 73.3, 26.7, 65.9 -1,1,a-pcom-i3,2021-22,Hopedale - Memorial,01380010, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 94.1, 5.9, 85.2 -1,1,a-pcom-i3,2021-22,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.3 -2.8437499999999982,2.84,a-pcom-i3,2021-22,Hopkinton - Elmwood,01390010, 1.3, 6.5, 1.3, 90.9, 0.0, 0.0, 0.0, 90.9, 9.1, 76.6 -2.5,2.5,a-pcom-i3,2021-22,Hopkinton - Hopkins Elementary School,01390015, 0.0, 5.3, 2.7, 92.0, 0.0, 0.0, 0.0, 90.2, 9.8, 74.9 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Hopkinton - Hopkinton High,01390505, 0.7, 2.2, 2.2, 94.9, 0.0, 0.0, 0.0, 59.6, 40.4, 138.0 -1.40625,1.41,a-pcom-i3,2021-22,Hopkinton - Hopkinton Middle School,01390305, 1.0, 2.6, 1.0, 95.5, 0.0, 0.0, 0.0, 74.5, 25.5, 101.2 -2.8437499999999982,2.84,a-pcom-i3,2021-22,Hopkinton - Hopkinton Pre-School,01390003, 4.5, 0.0, 4.5, 90.9, 0.0, 0.0, 0.0, 100.0, 0.0, 19.8 -2.65625,2.66,a-pcom-i3,2021-22,Hopkinton - Marathon Elementary School,01390005, 2.4, 4.9, 1.2, 91.5, 0.0, 0.0, 0.0, 92.7, 7.3, 82.4 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Hudson - C A Farley,01410030, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 98.6, 1.4, 70.2 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 2.2, 96.6, 1.1, 0.0, 0.0, 86.9, 13.1, 89.4 -1,1,a-pcom-i3,2021-22,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 51.6 -1,1,a-pcom-i3,2021-22,Hudson - Hudson High,01410505, 1.6, 0.0, 0.8, 97.6, 0.0, 0.0, 0.0, 73.4, 26.6, 127.7 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Hudson - Mulready Elementary,01410007, 0.0, 1.6, 1.6, 95.2, 0.0, 0.0, 1.6, 95.5, 4.5, 62.3 -1,1,a-pcom-i3,2021-22,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.9, 34.1, 44.2 -1,1,a-pcom-i3,2021-22,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 91.4, 8.6, 61.7 -1,1,a-pcom-i3,2021-22,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.9, 37.1, 30.7 -3.28125,3.28,a-pcom-i3,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 2.3, 2.5, 4.4, 89.5, 0.0, 0.0, 1.2, 72.1, 27.9, 102.7 -1,1,a-pcom-i3,2021-22,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.9, 28.1, 77.5 -1,1,a-pcom-i3,2021-22,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 83.1, 16.9, 59.9 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 95.4, 4.6, 63.9 -1,1,a-pcom-i3,2021-22,Ipswich - Winthrop,01440015, 0.0, 0.0, 0.0, 98.6, 0.0, 1.4, 0.0, 91.8, 8.2, 71.0 -19.84375,5,a-pcom-i3,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 40.0, 2.4, 16.5, 36.5, 0.0, 1.2, 3.5, 75.3, 24.7, 85.0 -16.9375,5,a-pcom-i3,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 31.2, 5.5, 13.7, 45.8, 0.0, 0.0, 3.7, 73.0, 26.4, 189.2 -1.40625,1.41,a-pcom-i3,2021-22,King Philip - King Philip Middle School,06900510, 2.2, 1.1, 1.1, 95.5, 0.0, 0.0, 0.0, 79.6, 20.4, 89.1 -1.1249999999999982,1.12,a-pcom-i3,2021-22,King Philip - King Philip Regional High,06900505, 0.0, 1.4, 1.4, 96.4, 0.0, 0.0, 0.7, 69.5, 30.5, 139.7 -1,1,a-pcom-i3,2021-22,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 60.6 -1,1,a-pcom-i3,2021-22,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 69.4 -5.46875,5,a-pcom-i3,2021-22,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 17.5, 82.5, 0.0, 0.0, 0.0, 71.3, 28.7, 63.0 -4.906250000000001,4.91,a-pcom-i3,2021-22,Lawrence - Arlington Elementary,01490009, 1.3, 0.0, 14.4, 84.3, 0.0, 0.0, 0.0, 86.5, 13.5, 76.3 -6.749999999999998,5,a-pcom-i3,2021-22,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 19.9, 78.4, 1.7, 0.0, 0.0, 68.2, 31.8, 59.2 -7.34375,5,a-pcom-i3,2021-22,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 22.2, 76.5, 1.3, 0.0, 0.0, 89.5, 10.5, 76.7 -5.187499999999998,5,a-pcom-i3,2021-22,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 16.6, 83.4, 0.0, 0.0, 0.0, 84.5, 15.5, 90.8 -8.5,5,a-pcom-i3,2021-22,Lawrence - Francis M Leahy,01490040, 3.6, 0.0, 23.6, 72.8, 0.0, 0.0, 0.0, 87.2, 12.8, 55.1 -6.937500000000001,5,a-pcom-i3,2021-22,Lawrence - Frost Middle School,01490525, 2.0, 0.0, 18.1, 77.8, 2.0, 0.0, 0.0, 67.5, 32.5, 48.8 -4.812500000000002,4.81,a-pcom-i3,2021-22,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.4, 14.0, 84.6, 0.0, 0.0, 0.0, 91.5, 8.5, 71.8 -7.749999999999999,5,a-pcom-i3,2021-22,Lawrence - Guilmette Middle School,01490025, 1.2, 0.0, 22.4, 75.2, 1.2, 0.0, 0.0, 75.1, 24.9, 80.7 -8.156249999999998,5,a-pcom-i3,2021-22,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 17.4, 73.9, 4.3, 0.0, 4.3, 58.2, 41.8, 23.2 -12.0625,5,a-pcom-i3,2021-22,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 38.6, 61.4, 0.0, 0.0, 0.0, 94.5, 5.5, 55.6 -12.281249999999998,5,a-pcom-i3,2021-22,Lawrence - John Breen School,01490003, 0.0, 0.0, 39.3, 60.7, 0.0, 0.0, 0.0, 99.8, 0.2, 44.6 -11.78125,5,a-pcom-i3,2021-22,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 37.7, 62.3, 0.0, 0.0, 0.0, 93.2, 6.8, 45.2 -11.09375,5,a-pcom-i3,2021-22,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 35.5, 64.5, 0.0, 0.0, 0.0, 95.2, 4.8, 22.6 -9.0625,5,a-pcom-i3,2021-22,Lawrence - Lawrence Family Public Academy,01490011, 0.0, 0.0, 29.0, 71.0, 0.0, 0.0, 0.0, 96.6, 3.4, 31.2 -10.874999999999998,5,a-pcom-i3,2021-22,Lawrence - Lawrence High School,01490515, 2.0, 0.3, 30.0, 65.2, 2.2, 0.0, 0.3, 61.1, 38.9, 346.7 -13.28125,5,a-pcom-i3,2021-22,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 40.8, 57.5, 0.0, 0.0, 1.7, 89.7, 10.3, 58.9 -5.78125,5,a-pcom-i3,2021-22,Lawrence - Parthum Middle School,01490027, 0.0, 1.6, 16.9, 81.5, 0.0, 0.0, 0.0, 75.2, 24.8, 64.0 -10.9375,5,a-pcom-i3,2021-22,Lawrence - RISE Academy,01490615, 6.1, 0.0, 28.9, 65.0, 0.0, 0.0, 0.0, 63.6, 36.4, 16.4 -8.875000000000002,5,a-pcom-i3,2021-22,Lawrence - Robert Frost,01490018, 4.1, 1.4, 21.7, 71.6, 1.4, 0.0, 0.0, 88.0, 12.0, 74.0 -10.750000000000002,5,a-pcom-i3,2021-22,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 34.4, 65.6, 0.0, 0.0, 0.0, 97.4, 2.6, 40.8 -13.5,5,a-pcom-i3,2021-22,Lawrence - School for Exceptional Studies,01490537, 2.0, 0.0, 41.2, 56.8, 0.0, 0.0, 0.0, 65.1, 34.0, 102.1 -5.249999999999999,5,a-pcom-i3,2021-22,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 15.5, 83.2, 0.0, 0.0, 1.3, 83.8, 16.2, 79.3 -11.812499999999998,5,a-pcom-i3,2021-22,Lawrence - Spark Academy,01490085, 5.8, 0.0, 30.6, 62.2, 1.5, 0.0, 0.0, 73.7, 26.3, 68.8 -11.46875,5,a-pcom-i3,2021-22,Lawrence - UP Academy Leonard Middle School,01490090, 0.0, 0.0, 34.1, 63.3, 2.6, 0.0, 0.0, 71.1, 28.9, 38.3 -11.9375,5,a-pcom-i3,2021-22,Lawrence - UP Academy Oliver Middle School,01490049, 4.5, 0.0, 31.4, 61.8, 2.2, 0.0, 0.0, 79.7, 20.3, 44.7 -9.468749999999998,5,a-pcom-i3,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 2.2, 5.4, 22.7, 69.7, 0.0, 0.0, 0.0, 83.8, 16.2, 92.5 -7.5,5,a-pcom-i3,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 12.8, 2.1, 9.1, 76.0, 0.0, 0.0, 0.0, 84.0, 16.0, 93.7 -1,1,a-pcom-i3,2021-22,Lee - Lee Elementary,01500025, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 89.0, 11.0, 63.6 -1,1,a-pcom-i3,2021-22,Lee - Lee Middle/High School,01500505, 0.0, 1.5, 1.5, 96.9, 0.0, 0.0, 0.0, 73.7, 26.3, 64.7 -1,1,a-pcom-i3,2021-22,Leicester - Leicester Elementary,01510005, 1.5, 1.5, 0.0, 97.1, 0.0, 0.0, 0.0, 96.7, 3.3, 68.5 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Leicester - Leicester High,01510505, 0.0, 1.9, 5.7, 92.4, 0.0, 0.0, 0.0, 69.0, 31.0, 52.7 -2.65625,2.66,a-pcom-i3,2021-22,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 8.5, 91.5, 0.0, 0.0, 0.0, 97.9, 2.1, 11.8 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Leicester - Leicester Middle,01510015, 0.0, 0.0, 1.9, 96.3, 0.0, 0.0, 1.9, 77.2, 22.8, 53.7 -1,1,a-pcom-i3,2021-22,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.6, 31.4, 75.2 -1,1,a-pcom-i3,2021-22,Lenox - Morris,01520015, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 95.2, 4.8, 62.3 -1.3750000000000018,1.38,a-pcom-i3,2021-22,Leominster - Bennett,01530003, 4.4, 0.0, 0.0, 95.6, 0.0, 0.0, 0.0, 98.7, 1.3, 22.5 -1,1,a-pcom-i3,2021-22,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 42.4, 57.6, 53.2 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Leominster - Fall Brook,01530007, 0.0, 1.3, 6.4, 92.4, 0.0, 0.0, 0.0, 97.3, 2.7, 78.4 -3.343750000000001,3.34,a-pcom-i3,2021-22,Leominster - Frances Drake School,01530010, 1.0, 2.0, 7.6, 89.3, 0.0, 0.0, 0.0, 88.3, 11.7, 97.6 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Leominster - Johnny Appleseed,01530025, 1.8, 0.0, 2.4, 95.8, 0.0, 0.0, 0.0, 95.6, 4.4, 82.7 -3.500000000000001,3.5,a-pcom-i3,2021-22,Leominster - Leominster Center for Excellence,01530515, 11.2, 0.0, 0.0, 88.8, 0.0, 0.0, 0.0, 75.3, 24.7, 8.9 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Leominster - Leominster High School,01530505, 1.4, 1.7, 4.4, 92.4, 0.0, 0.0, 0.0, 64.7, 35.3, 141.9 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Leominster - Lincoln School,01530005, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 93.1, 6.9, 20.3 -3.7187500000000018,3.72,a-pcom-i3,2021-22,Leominster - Northwest,01530030, 3.8, 0.0, 8.1, 88.1, 0.0, 0.0, 0.0, 90.0, 10.0, 80.0 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Leominster - Priest Street,01530040, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 98.7, 1.3, 30.7 -2.281249999999999,2.28,a-pcom-i3,2021-22,Leominster - Samoset School,01530045, 1.7, 1.7, 4.0, 92.7, 0.0, 0.0, 0.0, 76.9, 23.1, 60.2 -1.2812499999999982,1.28,a-pcom-i3,2021-22,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 79.3, 20.7, 97.1 -1,1,a-pcom-i3,2021-22,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 25.9 -6.25,5,a-pcom-i3,2021-22,Lexington - Bowman,01550008, 8.5, 7.7, 2.9, 80.0, 0.0, 0.8, 0.2, 84.3, 15.7, 64.9 -4.375,4.38,a-pcom-i3,2021-22,Lexington - Bridge,01550006, 3.3, 5.1, 1.7, 86.0, 0.0, 0.0, 3.8, 88.9, 11.1, 63.7 -4.781249999999999,4.78,a-pcom-i3,2021-22,Lexington - Fiske,01550015, 3.3, 8.1, 1.6, 84.7, 0.9, 0.0, 1.4, 87.5, 12.5, 97.6 -6.25,5,a-pcom-i3,2021-22,Lexington - Harrington,01550030, 4.5, 10.2, 3.7, 80.0, 0.0, 0.0, 1.5, 87.5, 12.5, 74.4 -4.53125,4.53,a-pcom-i3,2021-22,Lexington - Jonas Clarke Middle,01550305, 2.6, 7.3, 3.1, 85.5, 0.0, 0.0, 1.5, 75.1, 24.9, 132.7 -3.812500000000001,3.81,a-pcom-i3,2021-22,Lexington - Joseph Estabrook,01550010, 3.2, 4.3, 3.1, 87.8, 0.0, 0.0, 1.6, 89.0, 11.0, 68.2 -4.562499999999998,4.56,a-pcom-i3,2021-22,Lexington - Lexington Children's Place,01550001, 0.0, 8.5, 3.2, 85.4, 0.0, 0.0, 2.9, 100.0, 0.0, 26.8 -4.53125,4.53,a-pcom-i3,2021-22,Lexington - Lexington High,01550505, 2.3, 6.2, 4.3, 85.5, 0.0, 0.0, 1.7, 73.2, 26.8, 301.7 -6.843750000000002,5,a-pcom-i3,2021-22,Lexington - Maria Hastings,01550035, 9.7, 10.0, 1.7, 78.1, 0.0, 0.0, 0.5, 93.4, 6.6, 92.4 -4.437500000000001,4.44,a-pcom-i3,2021-22,Lexington - Wm Diamond Middle,01550310, 3.0, 5.9, 4.5, 85.8, 0.0, 0.0, 0.8, 75.1, 24.9, 143.3 -16.031249999999996,5,a-pcom-i3,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 21.1, 1.5, 25.7, 48.7, 0.0, 0.0, 3.1, 60.6, 37.9, 65.4 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Lincoln - Hanscom Middle,01570305, 2.0, 0.0, 2.0, 96.1, 0.0, 0.0, 0.0, 81.3, 18.7, 50.9 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Lincoln - Hanscom Primary,01570006, 0.0, 1.2, 2.7, 96.1, 0.0, 0.0, 0.0, 93.6, 6.4, 69.6 -3.343750000000001,3.34,a-pcom-i3,2021-22,Lincoln - Lincoln School,01570025, 4.6, 3.7, 1.5, 89.3, 0.9, 0.0, 0.0, 88.0, 12.0, 107.0 -3.28125,3.28,a-pcom-i3,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 4.5, 1.4, 3.2, 89.5, 0.0, 0.0, 1.4, 59.4, 40.6, 211.2 -1,1,a-pcom-i3,2021-22,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 98.1, 0.0, 0.0, 1.9, 65.9, 34.1, 53.0 -1,1,a-pcom-i3,2021-22,Littleton - Littleton Middle School,01580305, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 73.6, 26.4, 41.5 -1,1,a-pcom-i3,2021-22,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 42.3 -2.1875,2.19,a-pcom-i3,2021-22,Littleton - Shaker Lane Elementary,01580005, 0.0, 4.1, 1.2, 93.0, 0.0, 0.0, 1.6, 99.2, 0.8, 60.9 -1,1,a-pcom-i3,2021-22,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 64.5 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Longmeadow - Center,01590010, 0.0, 3.3, 1.6, 95.1, 0.0, 0.0, 0.0, 90.0, 10.0, 60.9 -1,1,a-pcom-i3,2021-22,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.3, 20.7, 43.3 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Longmeadow - Longmeadow High,01590505, 0.8, 0.0, 1.7, 96.6, 0.0, 0.0, 0.8, 68.3, 31.7, 118.0 -1,1,a-pcom-i3,2021-22,Longmeadow - Williams Middle,01590305, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 82.2, 17.8, 44.5 -1,1,a-pcom-i3,2021-22,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 78.6 -3.8750000000000018,3.88,a-pcom-i3,2021-22,Lowell - Abraham Lincoln,01600020, 1.6, 7.8, 3.1, 87.6, 0.0, 0.0, 0.0, 94.6, 5.4, 64.3 -3.9374999999999982,3.94,a-pcom-i3,2021-22,Lowell - B.F. Butler Middle School,01600310, 6.7, 3.0, 1.5, 87.4, 0.0, 0.0, 1.5, 73.7, 26.3, 67.3 -4.84375,4.84,a-pcom-i3,2021-22,Lowell - Bartlett Community Partnership,01600090, 1.1, 5.6, 7.8, 84.5, 1.1, 0.0, 0.0, 82.9, 17.1, 90.1 -6.25,5,a-pcom-i3,2021-22,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 12.9, 7.1, 80.0, 0.0, 0.0, 0.0, 100.0, 0.0, 35.0 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Lowell - Charles W Morey,01600030, 0.0, 5.7, 5.7, 88.6, 0.0, 0.0, 0.0, 94.3, 5.7, 70.4 -4.343750000000002,4.34,a-pcom-i3,2021-22,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 9.5, 4.4, 86.1, 0.0, 0.0, 0.0, 86.1, 13.9, 68.3 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Lowell - Dr An Wang School,01600345, 0.0, 2.7, 2.7, 94.6, 0.0, 0.0, 0.0, 83.7, 16.3, 73.7 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Lowell - Dr Gertrude Bailey,01600002, 0.7, 2.9, 0.0, 96.4, 0.0, 0.0, 0.0, 97.1, 2.9, 69.2 -5.562499999999999,5,a-pcom-i3,2021-22,Lowell - Dr. Janice Adie Day School,01600605, 2.0, 7.9, 7.9, 82.2, 0.0, 0.0, 0.0, 74.3, 25.7, 50.6 -4.281250000000001,4.28,a-pcom-i3,2021-22,Lowell - Greenhalge,01600015, 3.1, 4.4, 3.7, 86.3, 1.2, 0.0, 1.2, 96.3, 3.7, 80.4 -7.562500000000001,5,a-pcom-i3,2021-22,Lowell - Henry J Robinson Middle,01600330, 3.7, 6.8, 12.4, 75.8, 0.0, 0.0, 1.2, 75.2, 24.8, 80.6 -3.968750000000001,3.97,a-pcom-i3,2021-22,Lowell - James S Daley Middle School,01600315, 2.3, 6.9, 3.5, 87.3, 0.0, 0.0, 0.0, 82.1, 17.9, 86.4 -4.468749999999999,4.47,a-pcom-i3,2021-22,Lowell - James Sullivan Middle School,01600340, 5.2, 1.1, 8.0, 85.7, 0.0, 0.0, 0.0, 75.9, 24.1, 87.2 -2.749999999999999,2.75,a-pcom-i3,2021-22,Lowell - John J Shaughnessy,01600050, 4.4, 0.0, 4.4, 91.2, 0.0, 0.0, 0.0, 91.2, 8.8, 68.1 -5.125000000000002,5,a-pcom-i3,2021-22,Lowell - Joseph McAvinnue,01600010, 0.0, 2.8, 13.7, 83.6, 0.0, 0.0, 0.0, 89.0, 11.0, 72.4 -5.15625,5,a-pcom-i3,2021-22,Lowell - Kathryn P. Stoklosa Middle School,01600360, 2.4, 8.6, 4.9, 83.5, 0.0, 0.6, 0.0, 68.0, 32.0, 81.8 -8.218749999999998,5,a-pcom-i3,2021-22,Lowell - Laura Lee Therapeutic Day School,01600085, 5.7, 0.0, 18.9, 73.7, 0.0, 0.0, 1.7, 66.9, 33.1, 17.5 -6.000000000000001,5,a-pcom-i3,2021-22,Lowell - Leblanc Therapeutic Day School,01600320, 2.5, 0.0, 15.7, 80.8, 0.0, 0.0, 1.0, 69.0, 31.0, 20.4 -5.843750000000001,5,a-pcom-i3,2021-22,Lowell - Lowell High,01600505, 2.5, 6.0, 8.8, 81.3, 0.0, 0.0, 1.4, 63.0, 37.0, 323.9 -2.718750000000001,2.72,a-pcom-i3,2021-22,Lowell - Moody Elementary,01600027, 0.0, 0.0, 8.7, 91.3, 0.0, 0.0, 0.0, 94.5, 5.5, 36.6 -2.093750000000001,2.09,a-pcom-i3,2021-22,Lowell - Pawtucketville Memorial,01600036, 2.2, 4.5, 0.0, 93.3, 0.0, 0.0, 0.0, 92.5, 7.5, 67.0 -4.093749999999998,4.09,a-pcom-i3,2021-22,Lowell - Peter W Reilly,01600040, 1.5, 0.4, 11.2, 86.9, 0.0, 0.0, 0.0, 95.5, 4.5, 66.9 -4.156249999999999,4.16,a-pcom-i3,2021-22,Lowell - Pyne Arts,01600018, 2.7, 4.0, 6.6, 86.7, 0.0, 0.0, 0.0, 86.5, 13.5, 75.4 -5.249999999999999,5,a-pcom-i3,2021-22,Lowell - Rogers STEM Academy,01600005, 2.4, 8.2, 5.2, 83.2, 1.0, 0.0, 0.0, 78.2, 21.8, 103.3 -5.031249999999998,5,a-pcom-i3,2021-22,Lowell - S Christa McAuliffe Elementary,01600075, 2.7, 1.3, 12.1, 83.9, 0.0, 0.0, 0.0, 91.4, 8.6, 74.4 -3.656250000000001,3.66,a-pcom-i3,2021-22,Lowell - The Career Academy,01600515, 0.0, 5.9, 5.9, 88.3, 0.0, 0.0, 0.0, 66.6, 33.4, 17.1 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Lowell - Washington,01600055, 0.0, 2.4, 3.9, 93.7, 0.0, 0.0, 0.0, 87.2, 12.8, 50.9 -10.21875,5,a-pcom-i3,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 6.0, 9.9, 15.9, 67.3, 0.0, 0.0, 1.0, 78.2, 21.8, 100.8 -5.9375,5,a-pcom-i3,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 9.5, 9.5, 81.0, 0.0, 0.0, 0.0, 61.9, 38.1, 10.5 -1,1,a-pcom-i3,2021-22,Ludlow - East Street Elementary School,01610010, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 94.6, 5.4, 86.7 -1,1,a-pcom-i3,2021-22,Ludlow - Harris Brook Elementary School,01610665, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 94.8, 5.2, 89.4 -1.2812499999999982,1.28,a-pcom-i3,2021-22,Ludlow - Ludlow Senior High,01610505, 1.7, 0.7, 1.7, 95.9, 0.0, 0.0, 0.0, 66.3, 33.7, 115.8 -1,1,a-pcom-i3,2021-22,Ludlow - Paul R Baird Middle,01610305, 1.1, 0.0, 1.1, 97.8, 0.0, 0.0, 0.0, 79.1, 20.9, 90.7 -1,1,a-pcom-i3,2021-22,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.2, 30.8, 3.3 -1,1,a-pcom-i3,2021-22,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 98.3, 0.0, 1.7, 0.0, 54.8, 45.2, 57.2 -1,1,a-pcom-i3,2021-22,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 79.6, 20.4, 50.2 -1,1,a-pcom-i3,2021-22,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 56.1 -1,1,a-pcom-i3,2021-22,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 47.9 -5.531250000000001,5,a-pcom-i3,2021-22,Lynn - A Drewicz Elementary,01630016, 2.0, 3.9, 11.8, 82.3, 0.0, 0.0, 0.0, 95.9, 4.1, 50.9 -2.5,2.5,a-pcom-i3,2021-22,Lynn - Aborn,01630011, 0.0, 0.0, 8.0, 92.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.1 -5.062500000000001,5,a-pcom-i3,2021-22,Lynn - Breed Middle School,01630405, 1.5, 2.3, 10.8, 83.8, 0.0, 0.0, 1.5, 68.9, 31.1, 129.4 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Lynn - Brickett Elementary,01630020, 0.0, 2.6, 2.6, 94.4, 0.0, 0.0, 0.3, 97.8, 2.2, 37.8 -2.8437499999999982,2.84,a-pcom-i3,2021-22,Lynn - Capt William G Shoemaker,01630090, 1.3, 1.3, 5.2, 90.9, 0.0, 0.0, 1.3, 92.9, 7.1, 77.1 -4.21875,4.22,a-pcom-i3,2021-22,Lynn - Classical High,01630505, 3.1, 0.0, 8.0, 86.5, 0.0, 0.0, 2.4, 63.9, 36.1, 163.5 -4.156249999999999,4.16,a-pcom-i3,2021-22,Lynn - Cobbet Elementary,01630035, 0.0, 4.0, 8.0, 86.7, 0.0, 0.0, 1.3, 92.4, 7.6, 75.4 -5.093749999999999,5,a-pcom-i3,2021-22,Lynn - E J Harrington,01630045, 0.0, 0.0, 16.2, 83.7, 0.0, 0.0, 0.1, 98.3, 1.7, 82.5 -4.031250000000002,4.03,a-pcom-i3,2021-22,Lynn - Edward A Sisson,01630095, 4.1, 0.0, 8.8, 87.1, 0.0, 0.0, 0.0, 91.6, 8.4, 49.2 -7.718750000000001,5,a-pcom-i3,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 8.3, 0.0, 16.4, 75.3, 0.0, 0.0, 0.0, 48.8, 51.2, 48.9 -4.968750000000002,4.97,a-pcom-i3,2021-22,Lynn - Hood,01630055, 1.7, 3.5, 10.5, 84.1, 0.0, 0.0, 0.2, 96.0, 4.0, 57.1 -4.562499999999998,4.56,a-pcom-i3,2021-22,Lynn - Ingalls,01630060, 5.3, 2.6, 5.3, 85.4, 0.0, 0.0, 1.5, 96.8, 3.2, 75.9 -4.906250000000001,4.91,a-pcom-i3,2021-22,Lynn - Julia F Callahan,01630030, 7.0, 0.0, 7.0, 84.3, 1.7, 0.0, 0.0, 87.6, 12.4, 57.2 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 5.2, 94.8, 0.0, 0.0, 0.0, 92.7, 7.3, 28.8 -6.312500000000001,5,a-pcom-i3,2021-22,Lynn - Lynn English High,01630510, 2.9, 0.6, 16.1, 79.8, 0.0, 0.0, 0.6, 55.4, 44.6, 173.4 -5.125000000000002,5,a-pcom-i3,2021-22,Lynn - Lynn Vocational Technical Institute,01630605, 2.3, 0.6, 12.4, 83.6, 0.0, 0.0, 1.2, 60.0, 40.0, 177.4 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Lynn - Lynn Woods,01630075, 0.0, 0.0, 6.2, 93.8, 0.0, 0.0, 0.0, 90.7, 9.3, 24.3 -4.6875,4.69,a-pcom-i3,2021-22,Lynn - Pickering Middle,01630420, 2.7, 1.4, 9.5, 85.0, 0.0, 0.0, 1.4, 71.4, 28.6, 73.4 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Lynn - Robert L Ford,01630050, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 85.6, 14.4, 47.7 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 91.6, 8.4, 34.8 -5.562499999999999,5,a-pcom-i3,2021-22,Lynn - Thurgood Marshall Mid,01630305, 3.6, 0.7, 11.1, 82.2, 0.0, 0.0, 2.4, 65.9, 34.1, 139.4 -3.28125,3.28,a-pcom-i3,2021-22,Lynn - Tracy,01630100, 0.0, 0.0, 8.4, 89.5, 2.1, 0.0, 0.0, 93.5, 6.5, 47.5 -5.343749999999998,5,a-pcom-i3,2021-22,Lynn - Washington Elementary School,01630005, 6.5, 3.3, 7.1, 82.9, 0.0, 0.0, 0.2, 89.0, 11.0, 61.1 -2.96875,2.97,a-pcom-i3,2021-22,Lynn - William R Fallon,01630080, 0.0, 0.0, 9.5, 90.5, 0.0, 0.0, 0.0, 84.1, 11.2, 21.0 -3.2500000000000018,3.25,a-pcom-i3,2021-22,Lynn - Wm P Connery,01630040, 1.6, 0.0, 7.2, 89.6, 0.0, 0.0, 1.6, 90.0, 10.0, 62.8 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Lynnfield - Huckleberry Hill,01640010, 0.0, 4.4, 1.5, 94.2, 0.0, 0.0, 0.0, 98.7, 1.3, 68.7 -1,1,a-pcom-i3,2021-22,Lynnfield - Lynnfield High,01640505, 1.3, 0.0, 0.0, 97.4, 0.0, 0.0, 1.3, 65.1, 34.9, 75.6 -1,1,a-pcom-i3,2021-22,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.7, 25.3, 85.4 -1,1,a-pcom-i3,2021-22,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.3 -1,1,a-pcom-i3,2021-22,Lynnfield - Summer Street,01640020, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 95.3, 4.7, 53.4 -15.0,5,a-pcom-i3,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 28.1, 4.1, 14.1, 52.0, 0.0, 0.0, 1.7, 75.4, 24.1, 238.1 -3.687499999999999,3.69,a-pcom-i3,2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 88.2, 0.0, 0.0, 11.8, 64.7, 35.3, 8.5 -3.4062500000000018,3.41,a-pcom-i3,2021-22,Malden - Beebe,01650003, 3.0, 6.0, 2.0, 89.1, 0.0, 0.0, 0.0, 87.6, 12.4, 100.7 -3.500000000000001,3.5,a-pcom-i3,2021-22,Malden - Ferryway,01650013, 3.1, 3.1, 4.1, 88.8, 0.0, 0.0, 1.0, 83.5, 16.5, 98.3 -3.28125,3.28,a-pcom-i3,2021-22,Malden - Forestdale,01650027, 2.1, 3.1, 4.2, 89.5, 0.0, 0.0, 1.0, 91.4, 8.6, 95.5 -3.4062500000000018,3.41,a-pcom-i3,2021-22,Malden - Linden,01650047, 5.9, 2.0, 1.0, 89.1, 0.0, 0.0, 2.0, 85.0, 15.0, 101.2 -4.406249999999998,4.41,a-pcom-i3,2021-22,Malden - Malden Early Learning Center,01650049, 9.9, 4.2, 0.0, 85.9, 0.0, 0.0, 0.0, 95.8, 4.2, 71.0 -5.375000000000001,5,a-pcom-i3,2021-22,Malden - Malden High,01650505, 6.1, 2.7, 6.1, 82.8, 0.0, 0.0, 2.2, 67.2, 32.8, 179.0 -5.625,5,a-pcom-i3,2021-22,Malden - Salemwood,01650057, 5.6, 4.8, 5.6, 82.0, 0.0, 0.0, 2.0, 87.8, 12.2, 124.9 -1,1,a-pcom-i3,2021-22,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.4, 10.6, 44.4 -1,1,a-pcom-i3,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 59.2, 40.8, 67.4 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 2.2, 4.4, 93.4, 0.0, 0.0, 0.0, 77.5, 22.5, 45.7 -1,1,a-pcom-i3,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 92.8, 7.2, 58.7 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Mansfield - Everett W Robinson,01670007, 1.0, 2.0, 1.0, 95.1, 0.0, 0.0, 1.0, 93.7, 6.3, 102.0 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Mansfield - Harold L Qualters Middle,01670035, 0.9, 0.0, 2.6, 95.7, 0.0, 0.0, 0.9, 78.5, 21.5, 116.9 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Mansfield - Jordan/Jackson Elementary,01670014, 0.6, 3.3, 1.1, 93.9, 0.0, 0.0, 1.1, 92.7, 7.3, 90.9 -1.6562499999999991,1.66,a-pcom-i3,2021-22,Mansfield - Mansfield High,01670505, 0.7, 0.7, 4.0, 94.7, 0.0, 0.0, 0.0, 67.8, 32.2, 150.2 -1,1,a-pcom-i3,2021-22,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 26.4 -4.281250000000001,4.28,a-pcom-i3,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505, 2.7, 2.7, 8.2, 86.3, 0.0, 0.0, 0.0, 62.9, 37.1, 36.4 -1,1,a-pcom-i3,2021-22,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 97.5, 0.0, 2.5, 0.0, 91.6, 8.4, 39.3 -1,1,a-pcom-i3,2021-22,Marblehead - Lucretia and Joseph Brown School,01680030, 0.0, 0.0, 0.0, 99.7, 0.0, 0.0, 0.3, 95.0, 5.0, 100.0 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Marblehead - Marblehead High,01680505, 0.7, 1.5, 2.2, 94.2, 0.0, 0.0, 1.5, 62.6, 37.4, 137.9 -1,1,a-pcom-i3,2021-22,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 73.4, 26.6, 60.8 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Marblehead - Village School,01680016, 0.0, 1.1, 1.1, 96.7, 0.0, 0.0, 1.1, 90.0, 10.0, 90.2 -1,1,a-pcom-i3,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 76.0, 24.0, 33.3 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Marion - Sippican,01690005, 3.3, 1.6, 0.0, 95.1, 0.0, 0.0, 0.0, 90.5, 9.5, 61.0 -2.1875,2.19,a-pcom-i3,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 0.0, 4.9, 93.0, 0.0, 0.0, 2.1, 74.9, 25.1, 146.0 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Marlborough - Charles Jaworek School,01700030, 1.1, 0.0, 3.3, 95.7, 0.0, 0.0, 0.0, 95.1, 4.9, 92.3 -2.562500000000001,2.56,a-pcom-i3,2021-22,Marlborough - Early Childhood Center,01700006, 0.0, 2.0, 6.1, 91.8, 0.0, 0.0, 0.0, 93.6, 6.4, 49.0 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 88.5, 11.5, 63.2 -2.2187499999999982,2.22,a-pcom-i3,2021-22,Marlborough - Goodnow Brothers Elementary School,01700020, 1.0, 0.0, 5.0, 92.9, 0.0, 0.0, 1.1, 91.1, 8.9, 93.8 -2.65625,2.66,a-pcom-i3,2021-22,Marlborough - Marlborough High,01700505, 3.3, 0.7, 3.3, 91.5, 0.0, 0.0, 1.2, 68.3, 31.7, 151.3 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Marlborough - Richer,01700025, 1.3, 0.0, 6.1, 91.4, 0.0, 0.0, 1.3, 98.2, 1.8, 78.7 -1,1,a-pcom-i3,2021-22,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 58.4 -1,1,a-pcom-i3,2021-22,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 85.0, 15.0, 37.9 -1,1,a-pcom-i3,2021-22,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.8, 98.3, 0.8, 0.0, 0.0, 82.6, 17.4, 119.2 -1,1,a-pcom-i3,2021-22,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 89.6, 10.4, 61.8 -1,1,a-pcom-i3,2021-22,Marshfield - Marshfield High,01710505, 1.3, 0.0, 0.0, 98.1, 0.6, 0.0, 0.0, 69.1, 30.9, 155.6 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Marshfield - Martinson Elementary,01710025, 0.0, 2.5, 1.2, 95.1, 1.2, 0.0, 0.0, 94.6, 5.4, 81.2 -1,1,a-pcom-i3,2021-22,Marshfield - South River,01710010, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 94.9, 5.1, 49.4 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.0, 0.9, 1.9, 94.4, 0.9, 0.0, 0.9, 64.4, 35.6, 113.1 -2.124999999999999,2.12,a-pcom-i3,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.3, 0.0, 2.3, 93.2, 0.0, 0.0, 2.3, 77.3, 22.7, 44.0 -14.499999999999998,5,a-pcom-i3,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 23.8, 0.0, 19.7, 53.6, 0.0, 0.0, 2.9, 78.1, 21.9, 68.4 -1,1,a-pcom-i3,2021-22,Masconomet - Masconomet Regional High School,07050505, 0.0, 1.4, 0.8, 97.8, 0.0, 0.0, 0.0, 61.3, 38.7, 131.6 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Masconomet - Masconomet Regional Middle School,07050405, 3.9, 1.9, 0.0, 94.2, 0.0, 0.0, 0.0, 66.4, 33.6, 77.1 -1,1,a-pcom-i3,2021-22,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 59.4 -2.562500000000001,2.56,a-pcom-i3,2021-22,Mashpee - Mashpee High,01720505, 5.1, 1.0, 0.0, 91.8, 2.1, 0.0, 0.0, 61.2, 38.8, 56.1 -2.2187499999999982,2.22,a-pcom-i3,2021-22,Mashpee - Mashpee Middle School,01720020, 3.2, 1.3, 0.0, 92.9, 2.6, 0.0, 0.0, 86.6, 13.4, 31.2 -1.71875,1.72,a-pcom-i3,2021-22,Mashpee - Quashnet School,01720035, 3.6, 0.0, 0.0, 94.5, 1.8, 0.0, 0.0, 85.4, 14.6, 54.9 -1,1,a-pcom-i3,2021-22,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 40.1 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Mattapoisett - Old Hammondtown,01730010, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 85.8, 14.2, 30.2 -3.4375,3.44,a-pcom-i3,2021-22,Maynard - Fowler School,01740305, 1.3, 1.6, 8.1, 89.0, 0.0, 0.0, 0.0, 81.7, 18.3, 74.3 -2.6250000000000018,2.63,a-pcom-i3,2021-22,Maynard - Green Meadow,01740010, 0.0, 2.4, 6.0, 91.6, 0.0, 0.0, 0.0, 94.0, 6.0, 83.7 -1.71875,1.72,a-pcom-i3,2021-22,Maynard - Maynard High,01740505, 0.0, 1.8, 1.8, 94.5, 0.0, 0.0, 1.8, 62.4, 37.6, 54.7 -1,1,a-pcom-i3,2021-22,Medfield - Dale Street,01750005, 0.0, 1.1, 1.1, 97.4, 0.0, 0.0, 0.3, 92.8, 7.2, 58.8 -1.25,1.25,a-pcom-i3,2021-22,Medfield - Medfield Senior High,01750505, 0.0, 2.0, 1.0, 96.0, 0.0, 0.0, 1.0, 70.8, 29.2, 100.5 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Medfield - Memorial School,01750003, 0.0, 1.5, 1.1, 96.2, 0.0, 0.0, 1.2, 96.9, 3.1, 68.1 -1.25,1.25,a-pcom-i3,2021-22,Medfield - Ralph Wheelock School,01750007, 0.0, 0.8, 3.3, 96.0, 0.0, 0.0, 0.0, 89.4, 10.6, 51.1 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Medfield - Thomas Blake Middle,01750305, 1.2, 0.7, 1.2, 96.7, 0.0, 0.0, 0.2, 75.1, 24.9, 84.8 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Medford - Brooks School,01760130, 1.0, 1.3, 1.3, 96.4, 0.0, 0.0, 0.0, 94.8, 5.2, 77.2 -1,1,a-pcom-i3,2021-22,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 30.0, 70.0, 7.5 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Medford - John J McGlynn Elementary School,01760068, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 94.4, 5.6, 62.0 -2.906249999999999,2.91,a-pcom-i3,2021-22,Medford - John J. McGlynn Middle School,01760320, 2.8, 5.1, 1.4, 90.7, 0.0, 0.0, 0.0, 73.7, 26.3, 70.9 -2.1875,2.19,a-pcom-i3,2021-22,Medford - Madeleine Dugger Andrews,01760315, 1.6, 5.4, 0.0, 93.0, 0.0, 0.0, 0.0, 68.8, 31.2, 62.4 -1.2812499999999982,1.28,a-pcom-i3,2021-22,Medford - Medford High,01760505, 2.1, 1.0, 1.0, 95.9, 0.0, 0.0, 0.0, 62.6, 37.4, 194.4 -1,1,a-pcom-i3,2021-22,Medford - Milton Fuller Roberts,01760150, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 88.3, 11.7, 72.8 -1,1,a-pcom-i3,2021-22,Medford - Missituk Elementary School,01760140, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 93.1, 6.9, 66.4 -1,1,a-pcom-i3,2021-22,Medway - Burke/Memorial Elementary School,01770015, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 96.0, 4.0, 62.3 -1,1,a-pcom-i3,2021-22,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 96.4, 3.6, 55.3 -1,1,a-pcom-i3,2021-22,Medway - Medway High,01770505, 0.0, 1.1, 1.4, 97.5, 0.0, 0.0, 0.0, 62.8, 37.2, 71.8 -1.09375,1.09,a-pcom-i3,2021-22,Medway - Medway Middle,01770305, 0.0, 2.3, 1.2, 96.5, 0.0, 0.0, 0.0, 81.5, 18.5, 86.3 -2.093750000000001,2.09,a-pcom-i3,2021-22,Melrose - Early Childhood Center,01780003, 3.6, 0.9, 2.2, 93.3, 0.0, 0.0, 0.0, 96.2, 3.8, 55.1 -1,1,a-pcom-i3,2021-22,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 91.4, 8.6, 31.9 -1,1,a-pcom-i3,2021-22,Melrose - Horace Mann,01780025, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 93.3, 6.7, 29.0 -2.124999999999999,2.12,a-pcom-i3,2021-22,Melrose - Lincoln,01780020, 0.0, 2.9, 3.9, 93.2, 0.0, 0.0, 0.0, 93.5, 6.5, 61.8 -1.4374999999999982,1.44,a-pcom-i3,2021-22,Melrose - Melrose High,01780505, 0.9, 2.0, 1.7, 95.4, 0.0, 0.0, 0.0, 63.5, 36.5, 107.8 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Melrose - Melrose Middle,01780305, 1.1, 0.0, 3.4, 94.4, 0.0, 0.0, 1.1, 74.0, 26.0, 89.5 -1.4374999999999982,1.44,a-pcom-i3,2021-22,Melrose - Roosevelt,01780035, 1.5, 0.0, 1.5, 95.4, 0.0, 0.0, 1.5, 98.1, 1.9, 65.9 -1.25,1.25,a-pcom-i3,2021-22,Melrose - Winthrop,01780050, 0.0, 1.2, 0.5, 96.0, 0.0, 0.0, 2.4, 89.8, 10.2, 42.3 -1,1,a-pcom-i3,2021-22,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 94.2, 5.8, 51.5 -2.96875,2.97,a-pcom-i3,2021-22,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 9.5, 90.5, 0.0, 0.0, 0.0, 95.8, 4.2, 71.0 -1,1,a-pcom-i3,2021-22,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 1.1, 97.8, 0.0, 0.0, 1.1, 78.1, 21.9, 90.9 -1,1,a-pcom-i3,2021-22,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 71.2, 28.8, 73.3 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 90.6, 9.4, 139.0 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 86.1, 13.9, 142.0 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Methuen - Marsh Grammar School,01810030, 0.7, 0.0, 3.6, 95.7, 0.0, 0.0, 0.0, 89.2, 10.8, 139.3 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Methuen - Methuen High,01810505, 0.5, 0.5, 5.0, 93.7, 0.5, 0.0, 0.0, 63.6, 36.4, 220.9 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Methuen - Tenney Grammar School,01810055, 0.7, 0.0, 5.2, 93.4, 0.7, 0.0, 0.0, 88.2, 11.8, 152.5 -1,1,a-pcom-i3,2021-22,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 61.6 -1,1,a-pcom-i3,2021-22,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.5, 24.5, 76.5 -1,1,a-pcom-i3,2021-22,Middleborough - Mary K. Goode Elementary School,01820010, 0.0, 1.5, 0.0, 97.1, 1.5, 0.0, 0.0, 91.3, 8.7, 68.7 -1,1,a-pcom-i3,2021-22,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 38.0 -1,1,a-pcom-i3,2021-22,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 57.9, 42.1, 99.0 -1,1,a-pcom-i3,2021-22,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 60.2 -1,1,a-pcom-i3,2021-22,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 78.0 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Milford - Brookside,01850065, 0.0, 1.2, 4.0, 94.8, 0.0, 0.0, 0.0, 94.9, 5.1, 86.3 -1.40625,1.41,a-pcom-i3,2021-22,Milford - Memorial,01850010, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 99.3, 0.7, 76.2 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Milford - Milford High,01850505, 0.7, 0.0, 4.2, 94.4, 0.0, 0.0, 0.7, 64.5, 35.5, 147.2 -2.250000000000001,2.25,a-pcom-i3,2021-22,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 7.2, 92.8, 0.0, 0.0, 0.0, 100.0, 0.0, 38.4 -2.65625,2.66,a-pcom-i3,2021-22,Milford - Stacy Middle,01850305, 0.0, 0.0, 7.6, 91.5, 0.8, 0.0, 0.0, 72.1, 27.9, 120.3 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Milford - Woodland,01850090, 0.7, 0.7, 5.2, 93.4, 0.0, 0.0, 0.0, 91.0, 9.0, 144.2 -1,1,a-pcom-i3,2021-22,Millbury - Elmwood Street,01860017, 1.3, 0.0, 0.0, 97.4, 0.0, 0.0, 1.3, 95.5, 4.5, 77.2 -1,1,a-pcom-i3,2021-22,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.9, 1.0, 97.1, 0.0, 0.0, 0.0, 63.4, 36.6, 103.8 -1,1,a-pcom-i3,2021-22,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 84.5, 15.5, 57.9 -1,1,a-pcom-i3,2021-22,Millis - Clyde F Brown,01870005, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 94.5, 5.5, 72.4 -1,1,a-pcom-i3,2021-22,Millis - Millis High School,01870505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 61.7, 38.3, 45.2 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Millis - Millis Middle,01870020, 0.0, 2.6, 1.0, 96.4, 0.0, 0.0, 0.0, 83.9, 16.1, 38.6 -3.500000000000001,3.5,a-pcom-i3,2021-22,Milton - Charles S Pierce Middle,01890410, 5.5, 1.9, 2.8, 88.8, 0.0, 0.0, 0.9, 73.1, 26.9, 105.8 -2.093750000000001,2.09,a-pcom-i3,2021-22,Milton - Collicot,01890005, 2.7, 1.5, 2.5, 93.3, 0.0, 0.0, 0.0, 92.6, 7.4, 67.3 -2.437499999999999,2.44,a-pcom-i3,2021-22,Milton - Cunningham School,01890007, 5.5, 0.6, 1.7, 92.2, 0.0, 0.0, 0.0, 96.4, 3.6, 82.3 -3.6249999999999982,3.62,a-pcom-i3,2021-22,Milton - Glover,01890010, 6.2, 1.7, 0.6, 88.4, 1.5, 0.0, 1.5, 95.8, 4.2, 64.7 -3.4375,3.44,a-pcom-i3,2021-22,Milton - Milton High,01890505, 6.4, 2.3, 1.6, 89.0, 0.0, 0.8, 0.0, 65.0, 35.0, 126.0 -7.687499999999998,5,a-pcom-i3,2021-22,Milton - Tucker,01890020, 19.2, 5.5, 0.0, 75.4, 0.0, 0.0, 0.0, 85.9, 14.1, 45.8 -1,1,a-pcom-i3,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.0, 2.0, 97.1, 0.0, 0.0, 1.0, 56.3, 43.7, 101.8 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Mohawk Trail - Buckland-Shelburne Regional,07170005, 1.8, 0.0, 1.6, 96.6, 0.0, 0.0, 0.0, 89.1, 10.9, 56.1 -1,1,a-pcom-i3,2021-22,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 30.3 -1.40625,1.41,a-pcom-i3,2021-22,Mohawk Trail - Mohawk Trail Regional School,07170505, 1.5, 0.0, 0.0, 95.5, 1.5, 0.0, 1.5, 72.0, 28.0, 67.0 -1,1,a-pcom-i3,2021-22,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.1 -1,1,a-pcom-i3,2021-22,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 32.0 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.4, 2.2, 96.2, 0.0, 0.0, 1.1, 94.5, 5.5, 90.3 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Monomoy Regional School District - Monomoy Regional High School,07120515, 1.6, 2.4, 1.0, 93.9, 0.0, 0.0, 1.0, 65.6, 34.4, 98.4 -1,1,a-pcom-i3,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.2, 70.3 -1,1,a-pcom-i3,2021-22,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.8, 97.5, 0.0, 1.6, 0.0, 89.4, 10.6, 61.2 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Monson - Monson High School,01910505, 0.0, 1.6, 1.6, 96.8, 0.0, 0.0, 0.0, 64.1, 35.9, 62.3 -1,1,a-pcom-i3,2021-22,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 24.0 -3.062499999999999,3.06,a-pcom-i3,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.5, 0.0, 7.7, 90.2, 1.1, 0.0, 0.5, 53.7, 46.3, 182.9 -1,1,a-pcom-i3,2021-22,Mount Greylock - Lanesborough Elementary,07150005, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 75.2, 24.8, 45.1 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Mount Greylock - Mt Greylock Regional High,07150505, 1.2, 1.2, 3.6, 93.9, 0.0, 0.0, 0.0, 58.9, 41.1, 82.6 -1,1,a-pcom-i3,2021-22,Mount Greylock - Williamstown Elementary,07150010, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 92.0, 8.0, 74.7 -2.875000000000001,2.88,a-pcom-i3,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 2.6, 3.4, 1.3, 90.8, 0.0, 0.0, 1.9, 71.7, 28.3, 155.4 -1,1,a-pcom-i3,2021-22,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 23.8 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Nantucket - Cyrus Peirce,01970010, 7.0, 0.0, 2.6, 88.6, 0.0, 0.0, 1.8, 78.9, 21.1, 56.9 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 5.3, 93.4, 0.0, 0.0, 1.3, 96.1, 3.9, 76.1 -2.7812500000000018,2.78,a-pcom-i3,2021-22,Nantucket - Nantucket High,01970505, 1.5, 3.0, 3.0, 91.1, 1.5, 0.0, 0.0, 66.4, 33.6, 67.4 -1,1,a-pcom-i3,2021-22,Nantucket - Nantucket Intermediate School,01970020, 1.3, 0.0, 1.8, 96.9, 0.0, 0.0, 0.0, 89.0, 11.0, 54.7 -1,1,a-pcom-i3,2021-22,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.9, 20.1, 44.8 -1,1,a-pcom-i3,2021-22,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.6, 36.4, 57.6 -1,1,a-pcom-i3,2021-22,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.6, 1.4, 70.0 -1,1,a-pcom-i3,2021-22,Nashoba - Center School,07250020, 0.0, 0.0, 1.4, 97.3, 0.0, 1.4, 0.0, 93.5, 6.5, 73.0 -1,1,a-pcom-i3,2021-22,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.6, 16.4, 103.4 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Nashoba - Hale,07250310, 0.0, 2.7, 2.7, 94.6, 0.0, 0.0, 0.0, 73.0, 27.0, 37.1 -1,1,a-pcom-i3,2021-22,Nashoba - Luther Burbank Middle School,07250305, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 85.5, 14.5, 39.8 -1,1,a-pcom-i3,2021-22,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 90.9, 9.1, 72.0 -1,1,a-pcom-i3,2021-22,Nashoba - Nashoba Regional,07250505, 0.0, 0.9, 0.9, 98.2, 0.0, 0.0, 0.0, 64.5, 35.5, 111.6 -1,1,a-pcom-i3,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.0, 1.0, 1.0, 96.9, 0.0, 0.0, 0.0, 53.2, 46.8, 97.3 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Natick - Bennett-Hemenway,01980005, 0.0, 3.6, 1.2, 95.2, 0.0, 0.0, 0.0, 91.4, 8.6, 83.7 -1,1,a-pcom-i3,2021-22,Natick - Brown,01980010, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 91.5, 8.5, 75.9 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Natick - J F Kennedy Middle School,01980305, 0.0, 2.3, 0.6, 96.2, 0.9, 0.0, 0.0, 78.4, 21.6, 108.3 -1,1,a-pcom-i3,2021-22,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 34.0 -1,1,a-pcom-i3,2021-22,Natick - Lilja Elementary,01980035, 1.7, 0.0, 0.8, 97.5, 0.0, 0.0, 0.0, 96.4, 3.6, 60.6 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Natick - Memorial,01980043, 3.8, 1.9, 0.0, 94.3, 0.0, 0.0, 0.0, 92.4, 7.6, 52.5 -2.1562500000000018,2.16,a-pcom-i3,2021-22,Natick - Natick High,01980505, 2.0, 2.9, 1.2, 93.1, 0.0, 0.0, 0.8, 68.3, 31.2, 240.4 -1,1,a-pcom-i3,2021-22,Natick - Wilson Middle,01980310, 0.8, 0.4, 1.2, 97.6, 0.0, 0.0, 0.0, 74.8, 25.2, 120.3 -1,1,a-pcom-i3,2021-22,Nauset - Nauset Regional High,06600505, 0.9, 0.0, 2.0, 97.1, 0.0, 0.0, 0.0, 67.1, 32.9, 114.4 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Nauset - Nauset Regional Middle,06600305, 0.0, 1.1, 2.7, 96.1, 0.0, 0.0, 0.0, 77.7, 22.3, 87.5 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Needham - Broadmeadow,01990005, 0.4, 2.8, 1.2, 94.2, 0.0, 1.3, 0.0, 92.7, 7.3, 75.7 -1,1,a-pcom-i3,2021-22,Needham - High Rock School,01990410, 0.5, 0.2, 0.5, 97.2, 0.0, 0.0, 1.6, 76.1, 23.9, 63.4 -3.7812499999999982,3.78,a-pcom-i3,2021-22,Needham - John Eliot,01990020, 5.9, 3.2, 3.0, 87.9, 0.0, 0.0, 0.0, 89.5, 10.5, 66.4 -3.531249999999999,3.53,a-pcom-i3,2021-22,Needham - Needham High,01990505, 5.0, 2.7, 2.6, 88.7, 0.0, 0.0, 1.0, 64.7, 35.3, 196.2 -2.5,2.5,a-pcom-i3,2021-22,Needham - Newman Elementary,01990050, 1.8, 3.0, 2.5, 92.0, 0.0, 0.0, 0.7, 92.3, 7.7, 120.3 -3.062499999999999,3.06,a-pcom-i3,2021-22,Needham - Pollard Middle,01990405, 1.4, 0.8, 4.4, 90.2, 0.0, 0.0, 3.3, 74.1, 25.9, 121.6 -2.749999999999999,2.75,a-pcom-i3,2021-22,Needham - Sunita L. Williams Elementary,01990035, 3.6, 1.2, 3.1, 91.2, 0.0, 0.0, 1.0, 88.3, 11.7, 97.5 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Needham - William Mitchell,01990040, 2.2, 4.7, 3.0, 88.6, 0.0, 0.0, 1.5, 83.6, 16.4, 67.1 -16.59375,5,a-pcom-i3,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 29.7, 6.2, 13.7, 46.9, 0.7, 0.0, 2.8, 77.2, 22.8, 144.6 -3.28125,3.28,a-pcom-i3,2021-22,New Bedford - Abraham Lincoln,02010095, 4.2, 0.7, 4.2, 89.5, 0.0, 1.4, 0.0, 92.3, 7.7, 71.4 -7.593749999999999,5,a-pcom-i3,2021-22,New Bedford - Alfred J Gomes,02010063, 8.1, 0.0, 15.0, 75.7, 0.0, 0.0, 1.2, 89.6, 10.4, 86.5 -4.187500000000002,4.19,a-pcom-i3,2021-22,New Bedford - Betsey B Winslow,02010140, 6.0, 0.0, 7.4, 86.6, 0.0, 0.0, 0.0, 87.1, 12.9, 33.5 -1.9375000000000009,1.94,a-pcom-i3,2021-22,New Bedford - Carlos Pacheco,02010105, 4.1, 0.0, 2.1, 93.8, 0.0, 0.0, 0.0, 97.9, 2.1, 48.6 -1.9687499999999991,1.97,a-pcom-i3,2021-22,New Bedford - Casimir Pulaski,02010123, 3.6, 0.0, 2.7, 93.7, 0.0, 0.0, 0.0, 85.4, 14.6, 111.2 -2.0624999999999982,2.06,a-pcom-i3,2021-22,New Bedford - Charles S Ashley,02010010, 5.1, 0.3, 1.3, 93.4, 0.0, 0.0, 0.0, 95.9, 4.1, 39.1 -4.750000000000001,4.75,a-pcom-i3,2021-22,New Bedford - Elizabeth Carter Brooks,02010015, 9.4, 2.3, 2.3, 84.8, 0.0, 0.0, 1.2, 87.8, 12.2, 42.7 -4.031250000000002,4.03,a-pcom-i3,2021-22,New Bedford - Ellen R Hathaway,02010075, 2.6, 0.0, 10.3, 87.1, 0.0, 0.0, 0.0, 95.1, 4.9, 38.7 -4.343750000000002,4.34,a-pcom-i3,2021-22,New Bedford - Elwyn G Campbell,02010020, 3.5, 0.0, 6.9, 86.1, 1.7, 0.0, 1.7, 94.8, 5.2, 57.7 -7.531249999999998,5,a-pcom-i3,2021-22,New Bedford - Hayden/McFadden,02010078, 8.3, 0.2, 14.0, 75.9, 0.8, 0.0, 0.8, 91.6, 8.4, 121.2 -3.500000000000001,3.5,a-pcom-i3,2021-22,New Bedford - Irwin M. Jacobs Elementary School,02010070, 3.7, 0.0, 7.4, 88.8, 0.0, 0.0, 0.0, 90.7, 9.3, 53.8 -2.593749999999999,2.59,a-pcom-i3,2021-22,New Bedford - James B Congdon,02010040, 0.0, 0.0, 8.3, 91.7, 0.0, 0.0, 0.0, 94.5, 5.5, 36.3 -1.09375,1.09,a-pcom-i3,2021-22,New Bedford - Jireh Swift,02010130, 3.5, 0.0, 0.0, 96.5, 0.0, 0.0, 0.0, 93.1, 6.9, 28.8 -7.625000000000002,5,a-pcom-i3,2021-22,New Bedford - John Avery Parker,02010115, 9.2, 9.2, 6.1, 75.6, 0.0, 0.0, 0.0, 93.9, 6.1, 32.8 -1.71875,1.72,a-pcom-i3,2021-22,New Bedford - John B Devalles,02010050, 0.0, 0.0, 5.5, 94.5, 0.0, 0.0, 0.0, 86.2, 13.8, 36.3 -4.968750000000002,4.97,a-pcom-i3,2021-22,New Bedford - Keith Middle School,02010405, 7.7, 0.7, 5.0, 84.1, 0.0, 0.0, 2.5, 70.0, 30.0, 140.7 -6.312500000000001,5,a-pcom-i3,2021-22,New Bedford - New Bedford High,02010505, 8.5, 1.3, 8.4, 79.8, 0.3, 0.0, 1.6, 64.3, 35.7, 308.0 -4.375,4.38,a-pcom-i3,2021-22,New Bedford - Normandin Middle School,02010410, 6.3, 0.0, 4.6, 86.0, 0.0, 0.0, 3.2, 68.6, 31.4, 126.7 -10.46875,5,a-pcom-i3,2021-22,New Bedford - Renaissance Community Innovation School,02010124, 21.5, 0.0, 12.0, 66.5, 0.0, 0.0, 0.0, 86.5, 13.5, 25.1 -5.874999999999999,5,a-pcom-i3,2021-22,New Bedford - Roosevelt Middle School,02010415, 5.0, 0.8, 9.0, 81.2, 1.6, 0.0, 2.4, 73.4, 26.6, 124.2 -5.625,5,a-pcom-i3,2021-22,New Bedford - Sgt Wm H Carney Academy,02010045, 7.3, 1.0, 8.1, 82.0, 0.0, 0.0, 1.6, 86.1, 13.9, 123.1 -2.906249999999999,2.91,a-pcom-i3,2021-22,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 7.4, 90.7, 0.0, 0.0, 1.9, 85.2, 14.8, 27.0 -6.281249999999998,5,a-pcom-i3,2021-22,New Bedford - Trinity Day Academy,02010510, 14.4, 0.0, 2.9, 79.9, 0.0, 0.0, 2.9, 52.6, 47.4, 34.8 -5.281250000000002,5,a-pcom-i3,2021-22,New Bedford - Whaling City Junior/Senior High School,02010515, 14.2, 0.0, 0.0, 83.1, 0.0, 0.0, 2.7, 54.5, 45.5, 37.4 -2.5,2.5,a-pcom-i3,2021-22,New Bedford - William H Taylor,02010135, 5.3, 0.0, 2.7, 92.0, 0.0, 0.0, 0.0, 94.7, 5.3, 37.6 -10.281250000000002,5,a-pcom-i3,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 29.4, 1.4, 1.4, 67.1, 0.0, 0.0, 0.7, 64.5, 35.5, 72.0 -3.3124999999999982,3.31,a-pcom-i3,2021-22,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 0.0, 89.4, 0.0, 0.0, 10.6, 92.5, 7.5, 28.3 -1,1,a-pcom-i3,2021-22,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 99.3, 0.0, 0.7, 0.0, 85.1, 14.9, 46.5 -1,1,a-pcom-i3,2021-22,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 1.7, 98.0, 0.0, 0.3, 0.0, 93.2, 6.8, 107.2 -1,1,a-pcom-i3,2021-22,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.6, 25.4, 101.6 -2.875000000000001,2.88,a-pcom-i3,2021-22,Newburyport - Rupert A Nock Middle,02040305, 2.5, 1.3, 5.0, 90.8, 0.0, 0.4, 0.0, 70.1, 29.9, 79.4 -6.312500000000001,5,a-pcom-i3,2021-22,Newton - A E Angier,02070005, 9.5, 6.2, 3.4, 79.8, 0.0, 0.0, 1.2, 84.1, 15.9, 76.1 -3.7812499999999982,3.78,a-pcom-i3,2021-22,Newton - Bigelow Middle,02070305, 2.7, 2.8, 5.3, 87.9, 0.0, 0.0, 1.3, 75.2, 24.8, 74.9 -6.531250000000002,5,a-pcom-i3,2021-22,Newton - Bowen,02070015, 3.4, 8.8, 5.6, 79.1, 1.6, 0.0, 1.5, 89.4, 10.6, 53.5 -6.71875,5,a-pcom-i3,2021-22,Newton - C C Burr,02070020, 2.8, 10.2, 5.1, 78.5, 0.0, 0.0, 3.4, 96.9, 3.1, 58.9 -5.9375,5,a-pcom-i3,2021-22,Newton - Cabot,02070025, 4.9, 6.6, 4.9, 81.0, 0.0, 0.0, 2.5, 85.5, 14.5, 72.6 -4.906250000000001,4.91,a-pcom-i3,2021-22,Newton - Charles E Brown Middle,02070310, 5.5, 3.5, 5.3, 84.3, 0.0, 0.0, 1.5, 70.8, 29.2, 136.7 -3.4062500000000018,3.41,a-pcom-i3,2021-22,Newton - Countryside,02070040, 8.1, 1.6, 0.0, 89.1, 0.0, 0.0, 1.2, 85.9, 14.1, 67.4 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Newton - F A Day Middle,02070315, 3.1, 2.6, 1.4, 91.4, 0.0, 0.0, 1.5, 72.0, 28.0, 130.8 -3.062499999999999,3.06,a-pcom-i3,2021-22,Newton - Franklin,02070055, 3.1, 5.3, 1.4, 90.2, 0.0, 0.0, 0.0, 88.1, 11.9, 57.2 -4.6875,4.69,a-pcom-i3,2021-22,Newton - Horace Mann,02070075, 8.8, 4.6, 0.0, 85.0, 0.0, 0.0, 1.6, 84.7, 15.3, 53.3 -4.6875,4.69,a-pcom-i3,2021-22,Newton - John Ward,02070120, 4.6, 6.3, 4.1, 85.0, 0.0, 0.0, 0.0, 94.6, 5.4, 39.3 -4.031250000000002,4.03,a-pcom-i3,2021-22,Newton - Lincoln-Eliot,02070070, 2.6, 2.4, 7.9, 87.1, 0.0, 0.0, 0.0, 93.2, 6.8, 66.4 -3.218749999999999,3.22,a-pcom-i3,2021-22,Newton - Mason-Rice,02070080, 3.3, 5.2, 1.8, 89.7, 0.0, 0.0, 0.0, 93.0, 7.0, 56.0 -4.937499999999999,4.94,a-pcom-i3,2021-22,Newton - Memorial Spaulding,02070105, 5.5, 3.0, 7.4, 84.2, 0.0, 0.0, 0.0, 91.2, 8.8, 64.3 -3.0937500000000018,3.09,a-pcom-i3,2021-22,Newton - Newton Early Childhood Program,02070108, 3.7, 3.2, 1.0, 90.1, 0.0, 0.0, 1.9, 100.0, 0.0, 71.0 -5.406249999999999,5,a-pcom-i3,2021-22,Newton - Newton North High,02070505, 5.6, 6.4, 4.1, 82.7, 0.0, 0.0, 1.2, 65.8, 34.2, 331.5 -6.124999999999998,5,a-pcom-i3,2021-22,Newton - Newton South High,02070510, 5.7, 6.7, 4.6, 80.4, 0.0, 0.0, 2.6, 65.4, 34.2, 259.1 -5.062500000000001,5,a-pcom-i3,2021-22,Newton - Oak Hill Middle,02070320, 4.4, 4.1, 5.7, 83.8, 0.0, 0.0, 2.0, 76.1, 23.9, 98.9 -3.843749999999999,3.84,a-pcom-i3,2021-22,Newton - Peirce,02070100, 5.1, 0.2, 4.8, 87.7, 0.0, 0.0, 2.2, 90.7, 9.3, 45.0 -4.906250000000001,4.91,a-pcom-i3,2021-22,Newton - Underwood,02070115, 6.0, 2.4, 6.6, 84.3, 0.0, 0.0, 0.7, 85.1, 14.9, 41.8 -3.7812499999999982,3.78,a-pcom-i3,2021-22,Newton - Williams,02070125, 3.1, 3.0, 0.0, 87.9, 0.0, 1.9, 4.1, 84.6, 15.4, 43.7 -4.812500000000002,4.81,a-pcom-i3,2021-22,Newton - Zervas,02070130, 6.1, 6.2, 3.2, 84.6, 0.0, 0.0, 0.0, 88.0, 12.0, 82.6 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Norfolk - Freeman-Kennedy School,02080005, 1.4, 3.5, 0.0, 95.2, 0.0, 0.0, 0.0, 90.3, 9.7, 72.3 -1,1,a-pcom-i3,2021-22,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 87.9 -1,1,a-pcom-i3,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.2, 40.8, 80.5 -1.4687500000000009,1.47,a-pcom-i3,2021-22,North Adams - Brayton,02090035, 0.0, 1.6, 3.1, 95.3, 0.0, 0.0, 0.0, 85.9, 14.1, 63.9 -1,1,a-pcom-i3,2021-22,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 59.3 -1.2812499999999982,1.28,a-pcom-i3,2021-22,North Adams - Drury High,02090505, 1.4, 0.0, 2.7, 95.9, 0.0, 0.0, 0.0, 64.4, 35.6, 73.4 -1,1,a-pcom-i3,2021-22,North Adams - Greylock,02090015, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 91.6, 8.4, 47.4 -1,1,a-pcom-i3,2021-22,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 98.8, 1.2, 83.1 -1,1,a-pcom-i3,2021-22,North Andover - Annie L Sargent School,02110018, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 93.9, 6.1, 65.2 -1,1,a-pcom-i3,2021-22,North Andover - Atkinson,02110001, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 97.0, 3.0, 50.9 -1,1,a-pcom-i3,2021-22,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 61.7 -1.2812499999999982,1.28,a-pcom-i3,2021-22,North Andover - Kittredge,02110015, 0.0, 2.7, 1.4, 95.9, 0.0, 0.0, 0.0, 90.7, 9.3, 36.9 -1,1,a-pcom-i3,2021-22,North Andover - North Andover High,02110505, 0.7, 0.7, 0.0, 98.6, 0.0, 0.0, 0.0, 66.5, 33.5, 140.2 -1,1,a-pcom-i3,2021-22,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.4, 28.6, 120.6 -1,1,a-pcom-i3,2021-22,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 50.0 -1,1,a-pcom-i3,2021-22,North Attleborough - Amvet Boulevard,02120007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 49.3 -1.0000000000000009,1.0,a-pcom-i3,2021-22,North Attleborough - Community,02120030, 0.0, 1.6, 1.6, 96.8, 0.0, 0.0, 0.0, 95.9, 4.1, 61.6 -1,1,a-pcom-i3,2021-22,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 36.4 -1,1,a-pcom-i3,2021-22,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 74.7 -1.2812499999999982,1.28,a-pcom-i3,2021-22,North Attleborough - North Attleboro High,02120505, 0.0, 0.8, 1.6, 95.9, 0.0, 0.0, 1.6, 72.0, 28.0, 121.4 -1.6250000000000009,1.63,a-pcom-i3,2021-22,North Attleborough - North Attleborough Early Learning Center,02120020, 2.6, 2.6, 0.0, 94.8, 0.0, 0.0, 0.0, 100.0, 0.0, 30.7 -1.6250000000000009,1.63,a-pcom-i3,2021-22,North Attleborough - North Attleborough Middle,02120305, 0.9, 2.6, 0.9, 94.8, 0.0, 0.0, 0.9, 72.5, 27.5, 116.1 -1.8124999999999991,1.81,a-pcom-i3,2021-22,North Attleborough - Roosevelt Avenue,02120015, 3.2, 0.0, 2.6, 94.2, 0.0, 0.0, 0.0, 92.6, 7.4, 31.2 -1.3125000000000009,1.31,a-pcom-i3,2021-22,North Brookfield - North Brookfield Elementary,02150015, 0.0, 2.1, 2.1, 95.8, 0.0, 0.0, 0.0, 94.7, 5.3, 47.6 -1,1,a-pcom-i3,2021-22,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 67.6, 32.4, 31.1 -1.09375,1.09,a-pcom-i3,2021-22,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 96.5, 0.0, 3.5, 0.0, 97.9, 2.1, 28.7 -1,1,a-pcom-i3,2021-22,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.3, 25.7, 54.1 -1.2812499999999982,1.28,a-pcom-i3,2021-22,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 79.9, 20.1, 72.3 -1,1,a-pcom-i3,2021-22,North Middlesex - North Middlesex Regional,07350505, 1.2, 1.2, 0.0, 97.7, 0.0, 0.0, 0.0, 65.8, 34.2, 86.3 -1,1,a-pcom-i3,2021-22,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.1, 11.9, 53.8 -1,1,a-pcom-i3,2021-22,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 22.4 -1,1,a-pcom-i3,2021-22,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 95.1, 4.9, 81.4 -1,1,a-pcom-i3,2021-22,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 46.3 -1,1,a-pcom-i3,2021-22,North Reading - J Turner Hood,02170010, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 94.2, 5.8, 48.4 -1,1,a-pcom-i3,2021-22,North Reading - L D Batchelder,02170005, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 96.5, 3.5, 57.1 -1.25,1.25,a-pcom-i3,2021-22,North Reading - North Reading High,02170505, 0.0, 1.1, 3.0, 96.0, 0.0, 0.0, 0.0, 51.5, 48.5, 94.3 -1,1,a-pcom-i3,2021-22,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.6, 15.4, 68.2 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Northampton - Bridge Street,02100005, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 90.9, 7.6, 69.5 -7.781250000000002,5,a-pcom-i3,2021-22,Northampton - Jackson Street,02100020, 5.4, 1.8, 12.8, 75.1, 0.0, 0.0, 4.9, 84.8, 15.2, 55.8 -2.749999999999999,2.75,a-pcom-i3,2021-22,Northampton - John F Kennedy Middle School,02100410, 2.9, 1.9, 3.0, 91.2, 0.0, 0.0, 1.0, 74.9, 25.1, 103.5 -2.124999999999999,2.12,a-pcom-i3,2021-22,Northampton - Leeds,02100025, 0.0, 0.0, 5.0, 93.2, 0.0, 0.0, 1.7, 91.4, 8.6, 58.1 -3.031250000000001,3.03,a-pcom-i3,2021-22,Northampton - Northampton High,02100505, 1.9, 0.9, 5.0, 90.3, 0.0, 0.0, 1.9, 62.3, 37.7, 106.9 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 2.1, 2.4, 92.4, 0.0, 0.0, 3.1, 87.4, 12.6, 47.8 -1.5625,1.56,a-pcom-i3,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 1.0, 0.0, 3.0, 95.0, 0.0, 0.0, 1.0, 53.0, 47.0, 100.0 -1,1,a-pcom-i3,2021-22,Northboro-Southboro - Algonquin Regional High,07300505, 0.6, 0.0, 0.6, 98.9, 0.0, 0.0, 0.0, 74.3, 25.7, 177.2 -1,1,a-pcom-i3,2021-22,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 88.8, 11.2, 44.5 -1,1,a-pcom-i3,2021-22,Northborough - Lincoln Street,02130003, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 89.9, 10.1, 44.6 -1,1,a-pcom-i3,2021-22,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 44.4 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 95.0, 5.0, 43.6 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.3, 2.5, 93.7, 0.0, 1.3, 1.3, 86.3, 13.7, 79.1 -1,1,a-pcom-i3,2021-22,Northbridge - Northbridge Elementary School,02140001, 0.0, 0.0, 0.0, 99.1, 0.0, 0.3, 0.6, 92.8, 7.2, 158.1 -1,1,a-pcom-i3,2021-22,Northbridge - Northbridge High,02140505, 1.4, 0.0, 0.7, 97.3, 0.0, 0.7, 0.0, 59.7, 40.3, 72.8 -1,1,a-pcom-i3,2021-22,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 75.8, 24.2, 69.7 -2.65625,2.66,a-pcom-i3,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.7, 0.7, 5.2, 91.5, 0.0, 0.0, 0.0, 51.3, 48.7, 150.9 -1,1,a-pcom-i3,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.5, 41.5, 67.5 -1,1,a-pcom-i3,2021-22,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 53.6 -1,1,a-pcom-i3,2021-22,Norton - J C Solmonese,02180015, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 94.8, 5.2, 67.4 -1,1,a-pcom-i3,2021-22,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 42.2 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Norton - Norton High,02180505, 1.9, 0.0, 3.4, 94.8, 0.0, 0.0, 0.0, 72.3, 27.7, 89.0 -1,1,a-pcom-i3,2021-22,Norton - Norton Middle,02180305, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 73.6, 26.4, 68.7 -1,1,a-pcom-i3,2021-22,Norwell - Grace Farrar Cole,02190005, 0.4, 0.0, 1.6, 98.0, 0.0, 0.0, 0.0, 92.5, 7.5, 61.6 -1,1,a-pcom-i3,2021-22,Norwell - Norwell High,02190505, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 63.5, 36.5, 75.0 -1,1,a-pcom-i3,2021-22,Norwell - Norwell Middle School,02190405, 0.4, 0.0, 0.0, 98.0, 0.0, 0.0, 1.6, 73.3, 26.7, 63.6 -1,1,a-pcom-i3,2021-22,Norwell - William G Vinal,02190020, 0.4, 0.0, 0.0, 99.6, 0.0, 0.0, 0.0, 92.5, 7.5, 63.6 -2.124999999999999,2.12,a-pcom-i3,2021-22,Norwood - Balch,02200005, 0.0, 0.0, 4.5, 93.2, 2.3, 0.0, 0.0, 91.4, 8.6, 44.4 -3.4687499999999982,3.47,a-pcom-i3,2021-22,Norwood - Charles J Prescott,02200025, 0.0, 2.8, 0.0, 88.9, 5.5, 0.0, 2.8, 91.7, 8.3, 36.1 -1,1,a-pcom-i3,2021-22,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 87.6, 12.4, 34.8 -1.4999999999999991,1.5,a-pcom-i3,2021-22,Norwood - Dr. Philip O. Coakley Middle School,02200305, 1.9, 1.0, 1.0, 95.2, 1.0, 0.0, 0.0, 68.5, 31.5, 104.6 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Norwood - F A Cleveland,02200015, 2.0, 2.0, 1.0, 95.1, 0.0, 0.0, 0.0, 96.9, 3.1, 51.0 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Norwood - George F. Willett,02200075, 2.1, 1.3, 1.3, 93.8, 1.3, 0.0, 0.0, 96.5, 3.5, 74.4 -1,1,a-pcom-i3,2021-22,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 41.8 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Norwood - Norwood High,02200505, 2.4, 0.8, 2.3, 93.7, 0.8, 0.0, 0.0, 64.8, 35.2, 127.9 -3.218749999999999,3.22,a-pcom-i3,2021-22,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.4, 1.1, 3.1, 89.7, 1.1, 0.0, 3.8, 87.9, 12.1, 93.9 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 1.2, 0.0, 95.3, 0.0, 0.0, 3.5, 55.8, 44.2, 86.0 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Old Rochester - Old Rochester Regional High,07400505, 1.1, 1.1, 1.1, 96.6, 0.0, 0.0, 0.0, 65.7, 34.3, 88.9 -1,1,a-pcom-i3,2021-22,Old Rochester - Old Rochester Regional Jr High,07400405, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 72.9, 27.1, 57.2 -2.718750000000001,2.72,a-pcom-i3,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 8.7, 91.3, 0.0, 0.0, 0.0, 71.1, 28.9, 34.6 -1,1,a-pcom-i3,2021-22,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 42.7 -1,1,a-pcom-i3,2021-22,Orange - Fisher Hill,02230015, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 97.9, 2.1, 47.1 -1,1,a-pcom-i3,2021-22,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 40.9 -1,1,a-pcom-i3,2021-22,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 49.0 -1,1,a-pcom-i3,2021-22,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 45.6 -1.71875,1.72,a-pcom-i3,2021-22,Oxford - Oxford High,02260505, 0.0, 2.8, 1.4, 94.5, 0.0, 0.0, 1.4, 61.3, 38.7, 72.2 -1,1,a-pcom-i3,2021-22,Oxford - Oxford Middle,02260405, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 84.4, 15.6, 57.6 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 2.7, 96.3, 0.0, 0.0, 1.1, 93.2, 6.8, 93.6 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Palmer - Palmer High,02270505, 0.0, 1.0, 1.6, 96.3, 0.0, 0.0, 1.0, 70.1, 29.9, 95.6 -1,1,a-pcom-i3,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.6, 48.4, 106.5 -18.28125,5,a-pcom-i3,2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 26.8, 0.0, 31.8, 41.5, 0.0, 0.0, 0.0, 68.8, 31.2, 44.9 -1,1,a-pcom-i3,2021-22,Peabody - Captain Samuel Brown,02290005, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 94.6, 5.4, 74.8 -1,1,a-pcom-i3,2021-22,Peabody - Center,02290015, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 91.9, 8.1, 41.1 -1,1,a-pcom-i3,2021-22,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 71.8, 28.2, 152.6 -1,1,a-pcom-i3,2021-22,Peabody - John E Burke,02290007, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 98.7, 1.3, 37.6 -1,1,a-pcom-i3,2021-22,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 1.0, 97.1, 0.0, 0.0, 1.9, 96.2, 3.8, 52.6 -1,1,a-pcom-i3,2021-22,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),02290705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 35.3, 64.7, 6.8 -1,1,a-pcom-i3,2021-22,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 2.3, 97.2, 0.0, 0.0, 0.6, 61.4, 38.6, 176.0 -1,1,a-pcom-i3,2021-22,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 38.6 -1,1,a-pcom-i3,2021-22,Peabody - Thomas Carroll,02290010, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 94.4, 5.6, 53.9 -1,1,a-pcom-i3,2021-22,Peabody - West Memorial,02290045, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 95.6, 4.4, 40.9 -1,1,a-pcom-i3,2021-22,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 90.1, 9.9, 40.3 -3.812500000000001,3.81,a-pcom-i3,2021-22,Pelham - Pelham Elementary,02300005, 0.0, 4.6, 7.6, 87.8, 0.0, 0.0, 0.0, 87.8, 12.2, 26.2 -1,1,a-pcom-i3,2021-22,Pembroke - Bryantville Elementary,02310003, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 88.1, 11.9, 45.3 -1,1,a-pcom-i3,2021-22,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 55.6 -1,1,a-pcom-i3,2021-22,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 52.8 -1,1,a-pcom-i3,2021-22,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.6, 13.4, 47.8 -1,1,a-pcom-i3,2021-22,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.0, 27.0, 82.6 -1,1,a-pcom-i3,2021-22,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 99.1, 0.0, 0.9, 0.0, 94.5, 5.5, 45.7 -1,1,a-pcom-i3,2021-22,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 99.5, 0.0, 0.0, 0.5, 92.7, 7.3, 47.1 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 1.6, 96.4, 0.0, 0.0, 2.0, 97.7, 2.3, 63.1 -1.25,1.25,a-pcom-i3,2021-22,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 2.4, 96.0, 0.0, 1.0, 0.6, 87.9, 12.1, 41.0 -1.09375,1.09,a-pcom-i3,2021-22,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 3.1, 96.5, 0.0, 0.0, 0.4, 80.7, 19.3, 46.1 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 1.8, 96.6, 1.3, 0.0, 0.3, 61.3, 38.7, 76.9 -1,1,a-pcom-i3,2021-22,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 24.5 -15.437499999999998,5,a-pcom-i3,2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 7.0, 5.3, 37.1, 50.6, 0.0, 0.0, 0.0, 73.5, 26.5, 18.9 -18.25,5,a-pcom-i3,2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 54.0, 0.0, 4.4, 41.6, 0.0, 0.0, 0.0, 69.3, 30.7, 22.8 -16.499999999999996,5,a-pcom-i3,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 26.1, 12.4, 14.4, 47.2, 0.0, 0.0, 0.0, 70.8, 29.2, 24.3 -3.8750000000000018,3.88,a-pcom-i3,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 2.7, 2.1, 7.6, 87.6, 0.0, 0.0, 0.0, 66.0, 34.0, 96.0 -10.375,5,a-pcom-i3,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 7.7, 14.9, 10.6, 66.8, 0.0, 0.0, 0.0, 50.7, 49.3, 47.1 -1,1,a-pcom-i3,2021-22,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.4, 1.6, 39.9 -1,1,a-pcom-i3,2021-22,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 39.6 -1,1,a-pcom-i3,2021-22,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 71.4, 28.6, 56.9 -14.71875,5,a-pcom-i3,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 2.0, 42.4, 1.6, 52.9, 0.0, 0.0, 1.0, 81.8, 18.2, 99.0 -6.437499999999998,5,a-pcom-i3,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 9.3, 2.7, 6.0, 79.4, 0.0, 0.0, 2.7, 60.8, 39.2, 75.2 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Pittsfield - Allendale,02360010, 0.0, 2.5, 2.5, 95.1, 0.0, 0.0, 0.0, 98.8, 1.2, 40.7 -3.031250000000001,3.03,a-pcom-i3,2021-22,Pittsfield - Crosby,02360065, 3.5, 0.0, 4.4, 90.3, 0.0, 0.0, 1.8, 87.6, 12.4, 56.6 -4.312499999999999,4.31,a-pcom-i3,2021-22,Pittsfield - Crosby Educational Academy,02360030, 6.9, 0.0, 6.9, 86.2, 0.0, 0.0, 0.0, 86.2, 13.8, 14.5 -4.562499999999998,4.56,a-pcom-i3,2021-22,Pittsfield - Eagle Education Academy,02360525, 12.5, 0.0, 2.1, 85.4, 0.0, 0.0, 0.0, 60.3, 39.7, 16.0 -1.4374999999999982,1.44,a-pcom-i3,2021-22,Pittsfield - Egremont,02360035, 0.0, 1.5, 3.1, 95.4, 0.0, 0.0, 0.0, 98.5, 1.5, 64.8 -2.406250000000001,2.41,a-pcom-i3,2021-22,Pittsfield - John T Reid Middle,02360305, 1.3, 2.6, 3.8, 92.3, 0.0, 0.0, 0.0, 54.8, 45.2, 78.1 -3.187500000000001,3.19,a-pcom-i3,2021-22,Pittsfield - Morningside Community School,02360055, 7.9, 1.6, 0.8, 89.8, 0.0, 0.0, 0.0, 96.8, 3.2, 63.4 -2.437499999999999,2.44,a-pcom-i3,2021-22,Pittsfield - Pittsfield High,02360505, 2.5, 0.0, 3.6, 92.2, 0.8, 0.0, 0.8, 68.8, 31.2, 120.0 -1,1,a-pcom-i3,2021-22,Pittsfield - Pittsfield Public Virtual Academy,02360705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 48.9, 51.1, 7.8 -1,1,a-pcom-i3,2021-22,Pittsfield - Robert T. Capeless Elementary School,02360045, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 97.7, 2.3, 33.4 -2.5,2.5,a-pcom-i3,2021-22,Pittsfield - Silvio O Conte Community,02360105, 1.6, 0.0, 4.8, 92.0, 0.0, 0.0, 1.6, 90.9, 9.1, 62.9 -1,1,a-pcom-i3,2021-22,Pittsfield - Stearns,02360090, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 96.1, 3.9, 50.8 -2.093750000000001,2.09,a-pcom-i3,2021-22,Pittsfield - Taconic High,02360510, 0.0, 0.0, 5.9, 93.3, 0.0, 0.0, 0.8, 57.6, 42.4, 119.5 -2.5312499999999982,2.53,a-pcom-i3,2021-22,Pittsfield - Theodore Herberg Middle,02360310, 3.8, 1.3, 3.0, 91.9, 0.0, 0.0, 0.0, 70.4, 29.6, 78.5 -1,1,a-pcom-i3,2021-22,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 44.0 -1,1,a-pcom-i3,2021-22,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 55.0 -1,1,a-pcom-i3,2021-22,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 88.7, 11.3, 35.3 -1,1,a-pcom-i3,2021-22,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 33.4 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Plymouth - Federal Furnace School,02390011, 0.9, 0.0, 2.5, 96.6, 0.0, 0.0, 0.0, 86.5, 13.5, 63.6 -1,1,a-pcom-i3,2021-22,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 32.6 -1,1,a-pcom-i3,2021-22,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.3, 97.9, 0.0, 0.7, 0.0, 96.9, 3.1, 76.0 -1,1,a-pcom-i3,2021-22,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 34.9 -1,1,a-pcom-i3,2021-22,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 72.4 -1.5625,1.56,a-pcom-i3,2021-22,Plymouth - Plymouth Commun Intermediate,02390405, 2.5, 0.8, 1.7, 95.0, 0.0, 0.0, 0.0, 83.2, 16.8, 120.7 -1,1,a-pcom-i3,2021-22,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 97.1, 2.9, 34.7 -1,1,a-pcom-i3,2021-22,Plymouth - Plymouth North High,02390505, 0.6, 0.0, 0.6, 98.8, 0.0, 0.0, 0.0, 67.0, 33.0, 161.4 -1,1,a-pcom-i3,2021-22,Plymouth - Plymouth South High,02390515, 0.6, 1.3, 0.0, 97.4, 0.6, 0.0, 0.0, 65.5, 34.5, 154.2 -1,1,a-pcom-i3,2021-22,Plymouth - Plymouth South Middle,02390305, 0.6, 1.1, 1.1, 97.1, 0.0, 0.0, 0.0, 79.3, 20.7, 88.1 -1,1,a-pcom-i3,2021-22,Plymouth - South Elementary,02390046, 1.2, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 97.4, 2.6, 84.1 -1,1,a-pcom-i3,2021-22,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 98.2, 0.0, 1.8, 0.0, 92.4, 7.6, 54.2 -1,1,a-pcom-i3,2021-22,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 33.0 -9.125,5,a-pcom-i3,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 13.7, 4.5, 8.1, 70.8, 0.0, 0.0, 2.9, 78.8, 21.2, 172.7 -1,1,a-pcom-i3,2021-22,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.4, 27.6, 41.6 -1,1,a-pcom-i3,2021-22,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.1, 12.9, 28.6 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Quabbin - Hubbardston Center,07530010, 0.0, 3.0, 3.3, 93.7, 0.0, 0.0, 0.0, 97.0, 3.0, 30.2 -1,1,a-pcom-i3,2021-22,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.3 -1.875,1.88,a-pcom-i3,2021-22,Quabbin - Oakham Center,07530025, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 83.8, 16.2, 16.6 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.2, 1.2, 96.6, 0.0, 0.0, 1.0, 71.8, 28.2, 81.7 -1,1,a-pcom-i3,2021-22,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 99.6, 0.0, 0.0, 0.4, 77.7, 22.3, 55.5 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Quabbin - Ruggles Lane,07530030, 1.6, 0.0, 1.6, 96.7, 0.0, 0.0, 0.0, 93.6, 6.4, 60.8 -1,1,a-pcom-i3,2021-22,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 60.0, 40.0, 54.3 -1,1,a-pcom-i3,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.1, 37.9, 15.5 -1,1,a-pcom-i3,2021-22,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.5, 0.0, 99.5, 0.0, 0.0, 0.0, 90.1, 9.9, 60.7 -1,1,a-pcom-i3,2021-22,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 93.7, 6.3, 39.8 -3.187500000000001,3.19,a-pcom-i3,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 5.5, 0.0, 89.8, 0.0, 0.0, 4.8, 100.0, 0.0, 42.1 -1,1,a-pcom-i3,2021-22,Quincy - Atherton Hough,02430040, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 96.0, 4.0, 45.0 -3.8750000000000018,3.88,a-pcom-i3,2021-22,Quincy - Atlantic Middle,02430305, 0.0, 8.4, 2.0, 87.6, 0.0, 0.0, 2.0, 74.9, 25.1, 49.8 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 5.1, 0.0, 94.9, 0.0, 0.0, 0.0, 96.6, 3.4, 29.3 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Quincy - Broad Meadows Middle,02430310, 0.0, 1.7, 0.0, 95.8, 0.0, 0.0, 2.5, 73.9, 26.1, 41.1 -1,1,a-pcom-i3,2021-22,Quincy - Central Middle,02430315, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 75.3, 24.7, 57.0 -1,1,a-pcom-i3,2021-22,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 87.8, 12.2, 31.0 -1,1,a-pcom-i3,2021-22,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 98.4, 1.6, 63.6 -4.593750000000001,4.59,a-pcom-i3,2021-22,Quincy - Francis W Parker,02430075, 0.0, 14.7, 0.0, 85.3, 0.0, 0.0, 0.0, 90.6, 9.4, 40.8 -3.187500000000001,3.19,a-pcom-i3,2021-22,Quincy - Lincoln-Hancock Community School,02430035, 3.4, 5.1, 0.0, 89.8, 0.0, 0.0, 1.7, 97.6, 2.4, 58.6 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Quincy - Merrymount,02430060, 0.0, 5.9, 2.7, 91.4, 0.0, 0.0, 0.0, 94.6, 5.4, 37.1 -4.6875,4.69,a-pcom-i3,2021-22,Quincy - Montclair,02430065, 0.0, 15.0, 0.0, 85.0, 0.0, 0.0, 0.0, 96.6, 3.4, 46.9 -3.59375,3.59,a-pcom-i3,2021-22,Quincy - North Quincy High,02430510, 1.5, 4.8, 0.7, 88.5, 0.0, 0.0, 4.5, 63.3, 36.7, 134.6 -2.0624999999999982,2.06,a-pcom-i3,2021-22,Quincy - Point Webster Middle,02430325, 2.2, 4.4, 0.0, 93.4, 0.0, 0.0, 0.0, 85.8, 14.2, 45.3 -2.5,2.5,a-pcom-i3,2021-22,Quincy - Quincy High,02430505, 1.2, 4.5, 1.2, 92.0, 0.0, 0.0, 1.2, 62.0, 38.0, 167.9 -3.4062500000000018,3.41,a-pcom-i3,2021-22,Quincy - Snug Harbor Community School,02430090, 1.1, 7.5, 0.0, 89.1, 0.0, 0.0, 2.4, 91.7, 8.3, 83.2 -1,1,a-pcom-i3,2021-22,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.2, 18.8, 49.2 -1,1,a-pcom-i3,2021-22,Quincy - Squantum,02430095, 0.8, 1.9, 0.0, 97.3, 0.0, 0.0, 0.0, 92.9, 7.1, 52.2 -2.281249999999999,2.28,a-pcom-i3,2021-22,Quincy - Wollaston School,02430110, 1.5, 5.8, 0.0, 92.7, 0.0, 0.0, 0.0, 94.2, 5.8, 34.4 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.2, 2.1, 96.7, 0.0, 0.0, 0.0, 72.3, 27.7, 86.9 -10.718749999999998,5,a-pcom-i3,2021-22,Randolph - Elizabeth G Lyons Elementary,02440020, 21.2, 6.2, 2.0, 65.7, 2.5, 0.0, 2.5, 82.7, 17.3, 40.6 -8.65625,5,a-pcom-i3,2021-22,Randolph - J F Kennedy Elementary,02440018, 17.4, 2.9, 7.3, 72.3, 0.0, 0.0, 0.0, 89.3, 10.7, 91.8 -3.999999999999999,4.0,a-pcom-i3,2021-22,Randolph - Margaret L Donovan,02440015, 4.1, 4.6, 4.1, 87.2, 0.0, 0.0, 0.0, 92.6, 7.4, 49.3 -7.000000000000002,5,a-pcom-i3,2021-22,Randolph - Martin E Young Elementary,02440040, 13.2, 1.2, 3.1, 77.6, 0.0, 0.0, 4.9, 91.6, 8.4, 40.8 -9.53125,5,a-pcom-i3,2021-22,Randolph - Randolph Community Middle,02440410, 28.5, 2.1, 0.0, 69.5, 0.0, 0.0, 0.0, 67.9, 32.1, 77.6 -6.437499999999998,5,a-pcom-i3,2021-22,Randolph - Randolph High,02440505, 10.9, 4.8, 4.8, 79.4, 0.0, 0.0, 0.0, 67.5, 32.5, 82.6 -1,1,a-pcom-i3,2021-22,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 97.8, 2.2, 49.3 -1,1,a-pcom-i3,2021-22,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 81.7, 18.3, 65.6 -1,1,a-pcom-i3,2021-22,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 95.3, 4.7, 67.4 -1,1,a-pcom-i3,2021-22,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 44.7 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Reading - Joshua Eaton,02460010, 0.0, 3.0, 0.6, 94.2, 0.0, 0.0, 2.1, 93.9, 6.1, 48.0 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Reading - RISE PreSchool,02460001, 0.0, 3.3, 0.5, 96.2, 0.0, 0.0, 0.0, 98.6, 1.4, 28.3 -1,1,a-pcom-i3,2021-22,Reading - Reading Memorial High,02460505, 0.8, 0.8, 0.1, 97.7, 0.7, 0.0, 0.0, 67.2, 32.8, 129.7 -1,1,a-pcom-i3,2021-22,Reading - Walter S Parker Middle,02460310, 0.0, 1.5, 0.1, 98.5, 0.0, 0.0, 0.0, 78.0, 22.0, 68.3 -1,1,a-pcom-i3,2021-22,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 48.2 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Revere - A. C. Whelan Elementary School,02480003, 0.6, 1.2, 3.1, 95.1, 0.0, 0.0, 0.0, 88.1, 11.9, 82.8 -2.718750000000001,2.72,a-pcom-i3,2021-22,Revere - Abraham Lincoln,02480025, 0.0, 1.4, 7.3, 91.3, 0.0, 0.0, 0.0, 90.9, 9.1, 69.9 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Revere - Beachmont Veterans Memorial School,02480013, 0.0, 1.2, 6.4, 92.4, 0.0, 0.0, 0.0, 88.3, 11.7, 56.4 -3.531249999999999,3.53,a-pcom-i3,2021-22,Revere - Garfield Elementary School,02480056, 1.6, 5.0, 3.2, 88.7, 0.5, 0.0, 1.0, 92.2, 7.8, 96.1 -4.406249999999998,4.41,a-pcom-i3,2021-22,Revere - Garfield Middle School,02480057, 0.8, 4.9, 8.4, 85.9, 0.0, 0.0, 0.0, 62.2, 37.8, 60.8 -1,1,a-pcom-i3,2021-22,Revere - Paul Revere,02480050, 0.0, 0.9, 2.0, 97.1, 0.0, 0.0, 0.0, 94.5, 5.5, 54.9 -5.0,5.0,a-pcom-i3,2021-22,Revere - Revere High,02480505, 3.6, 2.2, 8.0, 84.0, 0.7, 0.0, 1.6, 61.2, 38.6, 208.5 -3.062499999999999,3.06,a-pcom-i3,2021-22,Revere - Rumney Marsh Academy,02480014, 5.2, 0.0, 3.4, 90.2, 0.0, 0.0, 1.3, 76.1, 23.9, 77.3 -4.593750000000001,4.59,a-pcom-i3,2021-22,Revere - Seacoast School,02480520, 8.9, 0.0, 4.9, 85.3, 0.0, 0.0, 0.9, 63.4, 36.6, 22.3 -2.406250000000001,2.41,a-pcom-i3,2021-22,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 3.3, 92.3, 0.0, 1.3, 3.2, 94.3, 5.7, 78.8 -3.125,3.13,a-pcom-i3,2021-22,Revere - Susan B. Anthony Middle School,02480305, 4.2, 1.4, 3.0, 90.0, 0.0, 0.0, 1.4, 66.3, 33.0, 70.7 -1,1,a-pcom-i3,2021-22,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 87.2, 12.8, 35.5 -3.031250000000001,3.03,a-pcom-i3,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.4, 2.4, 4.8, 90.3, 0.0, 0.0, 0.0, 70.1, 29.9, 82.6 -1.3125000000000009,1.31,a-pcom-i3,2021-22,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 95.8, 0.0, 0.0, 4.2, 81.8, 18.2, 47.8 -1,1,a-pcom-i3,2021-22,Rochester - Rochester Memorial,02500005, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 89.2, 10.8, 65.1 -1,1,a-pcom-i3,2021-22,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 47.4 -1,1,a-pcom-i3,2021-22,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 84.0, 16.0, 83.8 -1,1,a-pcom-i3,2021-22,Rockland - Memorial Park,02510020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 45.3 -1.8437500000000018,1.84,a-pcom-i3,2021-22,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 3.9, 94.1, 0.0, 0.0, 2.0, 94.4, 5.6, 50.7 -1.09375,1.09,a-pcom-i3,2021-22,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 2.3, 96.5, 0.0, 0.0, 1.2, 66.4, 33.6, 85.2 -1,1,a-pcom-i3,2021-22,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 60.0 -1,1,a-pcom-i3,2021-22,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.0, 27.0, 45.1 -1,1,a-pcom-i3,2021-22,Rockport - Rockport Middle,02520305, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 72.0, 28.0, 42.5 -2.093750000000001,2.09,a-pcom-i3,2021-22,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 6.7, 93.3, 0.0, 0.0, 0.0, 85.5, 14.5, 17.9 -13.28125,5,a-pcom-i3,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 20.1, 5.1, 12.2, 57.5, 0.0, 0.0, 5.1, 65.6, 33.3, 177.9 -2.124999999999999,2.12,a-pcom-i3,2021-22,Salem - Bates,02580003, 3.1, 0.0, 3.7, 93.2, 0.0, 0.0, 0.0, 85.2, 14.8, 64.4 -9.781249999999998,5,a-pcom-i3,2021-22,Salem - Bentley Academy Innovation School,02580010, 3.5, 0.0, 27.9, 68.7, 0.0, 0.0, 0.0, 87.8, 12.2, 57.4 -1,1,a-pcom-i3,2021-22,Salem - Carlton,02580015, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 91.3, 8.7, 47.1 -5.218750000000001,5,a-pcom-i3,2021-22,Salem - Collins Middle,02580305, 2.0, 2.0, 12.7, 83.3, 0.0, 0.0, 0.0, 70.1, 29.9, 99.9 -4.406249999999998,4.41,a-pcom-i3,2021-22,Salem - Horace Mann Laboratory,02580030, 0.0, 1.9, 12.2, 85.9, 0.0, 0.0, 0.0, 94.2, 5.8, 51.3 -10.84375,5,a-pcom-i3,2021-22,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 34.7, 65.3, 0.0, 0.0, 0.0, 76.7, 23.3, 11.4 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Salem - Salem Early Childhood,02580001, 2.5, 0.0, 5.0, 92.4, 0.0, 0.0, 0.0, 99.7, 0.3, 39.7 -4.53125,4.53,a-pcom-i3,2021-22,Salem - Salem High,02580505, 3.7, 1.9, 8.9, 85.5, 0.0, 0.0, 0.0, 70.3, 29.7, 167.9 -1,1,a-pcom-i3,2021-22,Salem - Salem Prep High School,02580515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.3, 32.7, 10.4 -2.718750000000001,2.72,a-pcom-i3,2021-22,Salem - Saltonstall School,02580050, 1.6, 0.8, 6.3, 91.3, 0.0, 0.0, 0.0, 92.0, 8.0, 63.4 -2.124999999999999,2.12,a-pcom-i3,2021-22,Salem - Witchcraft Heights,02580070, 0.2, 0.0, 5.4, 93.2, 0.0, 0.0, 1.2, 92.9, 7.1, 80.4 -7.437499999999999,5,a-pcom-i3,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 5.3, 0.0, 18.5, 76.2, 0.0, 0.0, 0.0, 67.0, 33.0, 75.8 -1,1,a-pcom-i3,2021-22,Sandwich - Forestdale School,02610002, 0.0, 0.9, 0.9, 98.2, 0.0, 0.0, 0.0, 94.6, 5.4, 111.8 -1,1,a-pcom-i3,2021-22,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.8, 98.4, 0.8, 0.0, 0.0, 93.8, 6.2, 121.3 -1,1,a-pcom-i3,2021-22,Sandwich - Sandwich High,02610505, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 66.5, 33.5, 89.3 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Sandwich - Sandwich STEM Academy,02610305, 1.8, 0.0, 2.1, 94.3, 0.0, 0.0, 1.8, 80.4, 19.6, 56.3 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Saugus - Belmonte STEAM Academy,02620060, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 95.1, 4.9, 82.0 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Saugus - Saugus High,02620505, 1.5, 0.0, 3.4, 95.1, 0.0, 0.0, 0.0, 60.9, 39.1, 66.9 -1,1,a-pcom-i3,2021-22,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 74.2, 25.8, 67.6 -1,1,a-pcom-i3,2021-22,Saugus - Veterans Early Learning Center,02620065, 0.0, 0.0, 0.0, 97.4, 0.0, 1.1, 1.5, 97.0, 3.0, 67.7 -1,1,a-pcom-i3,2021-22,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 14.2 -1,1,a-pcom-i3,2021-22,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 45.3 -1,1,a-pcom-i3,2021-22,Scituate - Gates Middle School,02640305, 1.2, 1.2, 0.0, 97.5, 0.0, 0.0, 0.0, 78.8, 21.2, 80.8 -1,1,a-pcom-i3,2021-22,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 49.8 -1,1,a-pcom-i3,2021-22,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 53.6 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Scituate - Scituate High School,02640505, 1.0, 1.0, 0.0, 96.4, 0.0, 0.6, 1.0, 67.2, 32.8, 101.4 -1,1,a-pcom-i3,2021-22,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 64.6 -1,1,a-pcom-i3,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.5, 1.5, 0.0, 97.1, 0.0, 0.0, 0.0, 77.9, 22.1, 68.0 -1,1,a-pcom-i3,2021-22,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 70.2 -2.281249999999999,2.28,a-pcom-i3,2021-22,Seekonk - Mildred Aitken School,02650015, 1.5, 1.5, 1.5, 92.7, 0.0, 0.0, 2.9, 92.7, 7.3, 68.7 -1,1,a-pcom-i3,2021-22,Seekonk - Seekonk High,02650505, 1.3, 0.0, 0.0, 97.4, 0.0, 0.0, 1.3, 69.3, 30.7, 76.1 -2.124999999999999,2.12,a-pcom-i3,2021-22,Sharon - Cottage Street,02660005, 1.6, 3.1, 2.1, 93.2, 0.0, 0.0, 0.0, 93.0, 7.0, 63.9 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Sharon - East Elementary,02660010, 0.0, 0.0, 2.2, 96.2, 0.0, 0.0, 1.6, 94.1, 5.9, 62.1 -2.718750000000001,2.72,a-pcom-i3,2021-22,Sharon - Heights Elementary,02660015, 5.5, 2.8, 0.4, 91.3, 0.0, 0.0, 0.0, 89.4, 10.6, 72.4 -1,1,a-pcom-i3,2021-22,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.1 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Sharon - Sharon High,02660505, 0.0, 4.0, 0.7, 95.3, 0.0, 0.0, 0.0, 71.3, 28.7, 150.4 -1.40625,1.41,a-pcom-i3,2021-22,Sharon - Sharon Middle,02660305, 0.0, 2.7, 0.0, 95.5, 0.9, 0.9, 0.0, 83.7, 16.3, 110.3 -1,1,a-pcom-i3,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.0, 1.0, 97.9, 0.0, 0.0, 0.0, 58.9, 41.1, 194.5 -1.8437500000000018,1.84,a-pcom-i3,2021-22,Sherborn - Pine Hill,02690010, 1.6, 1.5, 1.2, 94.1, 0.0, 0.0, 1.5, 97.5, 2.5, 65.7 -3.031250000000001,3.03,a-pcom-i3,2021-22,Shrewsbury - Calvin Coolidge School,02710015, 4.7, 1.9, 1.6, 90.3, 0.0, 0.0, 1.6, 96.9, 3.1, 64.2 -3.4687499999999982,3.47,a-pcom-i3,2021-22,Shrewsbury - Floral Street School,02710020, 2.1, 4.9, 2.1, 88.9, 1.0, 1.0, 0.0, 94.8, 5.2, 96.1 -3.656250000000001,3.66,a-pcom-i3,2021-22,Shrewsbury - Major Howard W. Beal School,02710005, 2.4, 7.2, 2.2, 88.3, 0.0, 0.0, 0.0, 96.5, 3.5, 85.1 -3.4062500000000018,3.41,a-pcom-i3,2021-22,Shrewsbury - Oak Middle School,02710030, 0.0, 7.5, 2.5, 89.1, 0.0, 0.8, 0.0, 78.5, 21.5, 119.7 -4.156249999999999,4.16,a-pcom-i3,2021-22,Shrewsbury - Parker Road Preschool,02710040, 2.2, 11.1, 0.0, 86.7, 0.0, 0.0, 0.0, 100.0, 0.0, 45.0 -2.96875,2.97,a-pcom-i3,2021-22,Shrewsbury - Sherwood Middle School,02710305, 0.0, 5.2, 3.4, 90.5, 0.0, 0.0, 0.9, 85.2, 14.8, 116.0 -2.593749999999999,2.59,a-pcom-i3,2021-22,Shrewsbury - Shrewsbury High School,02710505, 1.0, 2.9, 2.9, 91.7, 0.0, 0.0, 1.5, 71.3, 28.2, 203.9 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Shrewsbury - Spring Street School,02710035, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 91.1, 8.9, 52.7 -2.4687500000000018,2.47,a-pcom-i3,2021-22,Shrewsbury - Walter J. Paton School,02710025, 0.0, 3.1, 3.1, 92.1, 0.0, 0.0, 1.7, 95.3, 4.7, 57.9 -3.343750000000001,3.34,a-pcom-i3,2021-22,Shutesbury - Shutesbury Elementary,02720005, 0.0, 3.6, 3.6, 89.3, 0.0, 0.0, 3.6, 92.2, 7.8, 28.1 -1,1,a-pcom-i3,2021-22,Silver Lake - Silver Lake Regional High,07600505, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 73.6, 26.4, 143.1 -1,1,a-pcom-i3,2021-22,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.9, 33.1, 66.4 -2.96875,2.97,a-pcom-i3,2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 1.6, 1.6, 6.3, 90.5, 0.0, 0.0, 0.0, 74.3, 25.7, 61.7 -1,1,a-pcom-i3,2021-22,Somerset - Chace Street,02730005, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 93.5, 6.5, 50.7 -1,1,a-pcom-i3,2021-22,Somerset - North Elementary,02730008, 1.5, 0.0, 0.3, 98.2, 0.0, 0.0, 0.0, 98.1, 1.9, 68.4 -1,1,a-pcom-i3,2021-22,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 76.9, 23.1, 74.9 -2.34375,2.34,a-pcom-i3,2021-22,Somerset - South,02730015, 2.3, 0.0, 2.9, 92.5, 0.0, 0.0, 2.3, 92.4, 7.6, 43.3 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.9, 0.9, 2.6, 95.7, 0.0, 0.0, 0.0, 64.2, 35.8, 115.8 -7.250000000000001,5,a-pcom-i3,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 7.1, 1.6, 14.5, 76.8, 0.0, 0.0, 0.0, 86.8, 13.2, 62.1 -7.843749999999998,5,a-pcom-i3,2021-22,Somerville - Arthur D Healey,02740075, 12.3, 2.7, 10.1, 74.9, 0.0, 0.0, 0.0, 76.4, 23.6, 73.3 -2.4687500000000018,2.47,a-pcom-i3,2021-22,Somerville - Benjamin G Brown,02740015, 2.6, 0.0, 5.3, 92.1, 0.0, 0.0, 0.0, 84.2, 15.8, 19.0 -3.843749999999999,3.84,a-pcom-i3,2021-22,Somerville - Capuano Early Childhood Center,02740005, 1.6, 1.6, 9.1, 87.7, 0.0, 0.0, 0.0, 92.1, 7.9, 63.4 -11.28125,5,a-pcom-i3,2021-22,Somerville - E Somerville Community,02740111, 4.5, 0.7, 29.5, 63.9, 0.0, 0.0, 1.4, 80.2, 18.5, 73.2 -1,1,a-pcom-i3,2021-22,Somerville - Full Circle High School,02740510, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 61.1, 38.9, 11.3 -4.656250000000002,4.66,a-pcom-i3,2021-22,Somerville - John F Kennedy,02740083, 3.1, 4.7, 6.3, 85.1, 0.0, 0.0, 0.8, 80.9, 19.1, 63.9 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 78.2, 21.8, 5.5 -5.625,5,a-pcom-i3,2021-22,Somerville - Somerville High,02740505, 5.9, 1.7, 8.4, 82.0, 0.0, 0.7, 1.4, 62.1, 37.9, 181.1 -5.499999999999998,5,a-pcom-i3,2021-22,Somerville - West Somerville Neighborhood,02740115, 5.9, 0.0, 9.4, 82.4, 0.0, 0.0, 2.4, 83.5, 16.5, 42.6 -5.031249999999998,5,a-pcom-i3,2021-22,Somerville - Winter Hill Community,02740120, 3.0, 3.9, 7.9, 83.9, 0.0, 0.0, 1.3, 87.8, 12.2, 76.2 -1,1,a-pcom-i3,2021-22,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 1.3, 97.3, 0.0, 1.3, 0.0, 72.0, 28.0, 75.1 -1.4687500000000009,1.47,a-pcom-i3,2021-22,South Hadley - Mosier,02780020, 0.0, 1.6, 3.1, 95.3, 0.0, 0.0, 0.0, 87.5, 12.5, 64.2 -1,1,a-pcom-i3,2021-22,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 91.8, 8.2, 61.0 -1,1,a-pcom-i3,2021-22,South Hadley - South Hadley High,02780505, 0.0, 1.3, 0.0, 97.4, 1.3, 0.0, 0.0, 70.0, 30.0, 76.0 -4.500000000000002,4.5,a-pcom-i3,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.5, 1.5, 11.4, 85.6, 0.0, 0.0, 0.0, 55.7, 44.3, 131.9 -2.9999999999999982,3.0,a-pcom-i3,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 6.7, 0.6, 0.6, 90.4, 0.0, 0.0, 1.7, 72.4, 27.6, 161.3 -1,1,a-pcom-i3,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 51.9, 48.1, 93.7 -1,1,a-pcom-i3,2021-22,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 96.9, 0.0, 0.0, 3.1, 89.5, 10.5, 65.6 -1,1,a-pcom-i3,2021-22,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 95.3, 4.7, 42.4 -1.4687500000000009,1.47,a-pcom-i3,2021-22,Southborough - Margaret A Neary,02760020, 0.0, 2.4, 2.4, 95.3, 0.0, 0.0, 0.0, 90.5, 9.5, 42.2 -3.28125,3.28,a-pcom-i3,2021-22,Southborough - Mary E Finn School,02760008, 0.0, 7.5, 3.0, 89.5, 0.0, 0.0, 0.0, 95.5, 4.5, 66.9 -1.3125000000000009,1.31,a-pcom-i3,2021-22,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 2.8, 95.8, 1.4, 0.0, 0.0, 80.3, 19.7, 71.1 -9.28125,5,a-pcom-i3,2021-22,Southbridge - Charlton Street,02770005, 10.5, 0.0, 17.5, 70.3, 0.0, 0.0, 1.7, 87.8, 12.2, 57.3 -7.5,5,a-pcom-i3,2021-22,Southbridge - Eastford Road,02770010, 1.6, 0.0, 22.4, 76.0, 0.0, 0.0, 0.0, 88.8, 11.2, 62.5 -9.656250000000002,5,a-pcom-i3,2021-22,Southbridge - Southbridge Academy,02770525, 8.1, 0.0, 22.8, 69.1, 0.0, 0.0, 0.0, 54.5, 45.5, 30.8 -7.093750000000001,5,a-pcom-i3,2021-22,Southbridge - Southbridge High School,02770515, 4.3, 0.0, 18.4, 77.3, 0.0, 0.0, 0.0, 67.5, 32.5, 70.5 -9.343750000000002,5,a-pcom-i3,2021-22,Southbridge - Southbridge Middle School,02770315, 0.0, 3.3, 26.6, 70.1, 0.0, 0.0, 0.0, 70.9, 29.1, 60.2 -5.0,5.0,a-pcom-i3,2021-22,Southbridge - West Street,02770020, 0.0, 0.0, 14.4, 84.0, 0.0, 0.0, 1.6, 93.6, 6.4, 62.5 -4.21875,4.22,a-pcom-i3,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 7.7, 2.1, 3.2, 86.5, 0.0, 0.0, 0.5, 60.3, 39.7, 189.0 -3.687499999999999,3.69,a-pcom-i3,2021-22,Southern Berkshire - Mt Everett Regional,07650505, 2.9, 5.8, 1.7, 88.2, 0.0, 0.0, 1.4, 67.0, 33.0, 69.3 -2.875000000000001,2.88,a-pcom-i3,2021-22,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 2.1, 90.8, 7.0, 0.0, 0.0, 88.7, 11.3, 14.2 -1.25,1.25,a-pcom-i3,2021-22,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 48.0, 52.0, 2.5 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 95.3, 4.7, 50.9 -1,1,a-pcom-i3,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 1.2, 97.6, 0.0, 0.6, 0.6, 57.6, 42.4, 164.9 -1,1,a-pcom-i3,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 90.1, 9.9, 62.7 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 4.1, 93.8, 0.0, 0.0, 2.1, 69.1, 30.9, 96.6 -1,1,a-pcom-i3,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 63.5 -1,1,a-pcom-i3,2021-22,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.9, 43.1, 35.4 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Spencer-E Brookfield - East Brookfield Elementary,07670008, 2.5, 0.0, 1.3, 96.2, 0.0, 0.0, 0.0, 89.3, 10.7, 39.8 -1,1,a-pcom-i3,2021-22,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 74.7, 25.3, 44.5 -1,1,a-pcom-i3,2021-22,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 90.0, 10.0, 64.6 -8.34375,5,a-pcom-i3,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 4.1, 0.0, 22.6, 73.3, 0.0, 0.0, 0.0, 93.8, 6.2, 48.6 -5.281250000000002,5,a-pcom-i3,2021-22,Springfield - Alice B Beal Elementary,02810175, 8.4, 2.8, 5.6, 83.1, 0.0, 0.0, 0.0, 92.1, 7.9, 35.6 -6.187499999999999,5,a-pcom-i3,2021-22,Springfield - Arthur T Talmadge,02810165, 4.9, 2.5, 9.9, 80.2, 0.0, 0.0, 2.5, 91.5, 8.5, 40.5 -9.812500000000002,5,a-pcom-i3,2021-22,Springfield - Brightwood,02810025, 1.7, 0.0, 29.7, 68.6, 0.0, 0.0, 0.0, 84.9, 15.1, 57.8 -21.343749999999996,5,a-pcom-i3,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 44.5, 1.5, 19.4, 31.7, 0.0, 0.0, 3.0, 69.4, 30.6, 67.1 -15.9375,5,a-pcom-i3,2021-22,Springfield - Conservatory of the Arts,02810475, 20.4, 2.0, 26.5, 49.0, 0.0, 0.0, 2.0, 73.5, 26.5, 49.0 -6.187499999999999,5,a-pcom-i3,2021-22,Springfield - Daniel B Brunton,02810035, 6.6, 0.0, 11.6, 80.2, 0.0, 0.0, 1.7, 93.4, 6.6, 60.6 -13.8125,5,a-pcom-i3,2021-22,Springfield - Early Childhood Education Center,02810001, 30.2, 0.0, 14.0, 55.8, 0.0, 0.0, 0.0, 90.7, 9.3, 43.0 -10.968749999999998,5,a-pcom-i3,2021-22,Springfield - Edward P. Boland School,02810010, 9.2, 0.9, 22.2, 64.9, 0.0, 0.0, 2.8, 87.1, 12.9, 108.2 -13.9375,5,a-pcom-i3,2021-22,Springfield - Elias Brookings,02810030, 23.3, 5.3, 16.0, 55.4, 0.0, 0.0, 0.0, 91.1, 8.9, 56.3 -9.312499999999998,5,a-pcom-i3,2021-22,Springfield - Emergence Academy,02810318, 9.6, 0.0, 20.2, 70.2, 0.0, 0.0, 0.0, 70.2, 29.8, 10.4 -5.499999999999998,5,a-pcom-i3,2021-22,Springfield - Forest Park Middle,02810325, 7.4, 1.5, 8.8, 82.4, 0.0, 0.0, 0.0, 66.2, 33.8, 68.0 -19.6875,5,a-pcom-i3,2021-22,Springfield - Frank H Freedman,02810075, 41.0, 2.2, 19.8, 37.0, 0.0, 0.0, 0.0, 82.8, 17.2, 45.4 -8.156249999999998,5,a-pcom-i3,2021-22,Springfield - Frederick Harris,02810080, 5.6, 1.1, 19.4, 73.9, 0.0, 0.0, 0.0, 93.2, 6.8, 88.6 -31.25,5,a-pcom-i3,2021-22,Springfield - Gateway to College at Holyoke Community College,02810575, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.2 -31.25,5,a-pcom-i3,2021-22,Springfield - Gateway to College at Springfield Technical Community College,02810580, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.2 -13.062499999999998,5,a-pcom-i3,2021-22,Springfield - German Gerena Community School,02810195, 3.7, 0.0, 38.1, 58.2, 0.0, 0.0, 0.0, 89.6, 10.4, 107.6 -5.718749999999999,5,a-pcom-i3,2021-22,Springfield - Glenwood,02810065, 6.6, 0.0, 11.7, 81.7, 0.0, 0.0, 0.0, 97.7, 2.3, 42.6 -9.312499999999998,5,a-pcom-i3,2021-22,Springfield - Glickman Elementary,02810068, 7.6, 0.0, 22.1, 70.2, 0.0, 0.0, 0.0, 88.3, 11.7, 49.7 -16.75,5,a-pcom-i3,2021-22,Springfield - High School Of Commerce,02810510, 33.1, 2.2, 16.2, 46.4, 0.0, 0.0, 2.1, 64.4, 35.6, 190.2 -8.90625,5,a-pcom-i3,2021-22,Springfield - Hiram L Dorman,02810050, 23.3, 0.0, 5.2, 71.5, 0.0, 0.0, 0.0, 89.6, 10.4, 38.6 -6.062500000000002,5,a-pcom-i3,2021-22,Springfield - Homer Street,02810085, 10.6, 0.0, 7.1, 80.6, 0.0, 0.0, 1.8, 85.9, 14.1, 56.6 -23.40625,5,a-pcom-i3,2021-22,Springfield - Impact Prep at Chestnut,02810366, 36.9, 0.0, 38.0, 25.1, 0.0, 0.0, 0.0, 78.5, 21.5, 39.9 -5.499999999999998,5,a-pcom-i3,2021-22,Springfield - Indian Orchard Elementary,02810100, 5.0, 1.3, 10.1, 82.4, 0.0, 0.0, 1.3, 93.7, 6.3, 79.4 -12.71875,5,a-pcom-i3,2021-22,Springfield - John F Kennedy Middle,02810328, 23.2, 2.7, 14.8, 59.3, 0.0, 0.0, 0.0, 66.5, 33.5, 75.1 -13.3125,5,a-pcom-i3,2021-22,Springfield - John J Duggan Middle,02810320, 28.4, 0.9, 11.4, 57.4, 0.0, 0.9, 0.9, 66.4, 33.6, 106.3 -3.343750000000001,3.34,a-pcom-i3,2021-22,Springfield - Kensington International School,02810110, 2.7, 0.0, 8.0, 89.3, 0.0, 0.0, 0.0, 89.3, 10.7, 37.5 -16.90625,5,a-pcom-i3,2021-22,Springfield - Kiley Academy,02810316, 44.8, 0.0, 9.4, 45.9, 0.0, 0.0, 0.0, 64.1, 35.9, 42.8 -13.1875,5,a-pcom-i3,2021-22,Springfield - Kiley Prep,02810315, 42.2, 0.0, 0.0, 57.8, 0.0, 0.0, 0.0, 72.4, 27.6, 23.9 -12.21875,5,a-pcom-i3,2021-22,Springfield - Liberty,02810115, 23.0, 0.0, 16.1, 60.9, 0.0, 0.0, 0.0, 93.1, 6.9, 43.5 -1,1,a-pcom-i3,2021-22,Springfield - Liberty Preparatory Academy,02810560, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 66.7, 33.3, 6.4 -14.156249999999998,5,a-pcom-i3,2021-22,Springfield - Lincoln,02810120, 17.2, 0.0, 28.1, 54.7, 0.0, 0.0, 0.0, 85.5, 14.5, 64.0 -17.71875,5,a-pcom-i3,2021-22,Springfield - Lyceum Academy,02810317, 13.3, 1.7, 36.7, 43.3, 0.0, 0.0, 5.0, 63.0, 37.0, 60.0 -9.343750000000002,5,a-pcom-i3,2021-22,Springfield - M Marcus Kiley Middle,02810330, 8.2, 0.0, 21.8, 70.1, 0.0, 0.0, 0.0, 67.4, 32.6, 36.7 -15.21875,5,a-pcom-i3,2021-22,Springfield - Margaret C Ells,02810060, 30.8, 0.0, 17.9, 51.3, 0.0, 0.0, 0.0, 94.9, 5.1, 39.0 -7.34375,5,a-pcom-i3,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 9.4, 0.0, 14.1, 76.5, 0.0, 0.0, 0.0, 93.0, 7.0, 42.6 -11.812499999999998,5,a-pcom-i3,2021-22,Springfield - Mary M Lynch,02810140, 20.1, 2.9, 14.8, 62.2, 0.0, 0.0, 0.0, 88.5, 11.5, 34.8 -8.03125,5,a-pcom-i3,2021-22,Springfield - Mary M Walsh,02810155, 10.7, 2.1, 12.8, 74.3, 0.0, 0.0, 0.0, 92.4, 7.6, 46.7 -9.125,5,a-pcom-i3,2021-22,Springfield - Mary O Pottenger,02810145, 10.9, 0.0, 18.2, 70.8, 0.0, 0.0, 0.0, 89.1, 10.9, 54.8 -5.46875,5,a-pcom-i3,2021-22,Springfield - Milton Bradley School,02810023, 4.0, 0.0, 13.4, 82.5, 0.0, 0.0, 0.0, 93.3, 6.7, 74.4 -17.124999999999996,5,a-pcom-i3,2021-22,Springfield - Rebecca M Johnson,02810055, 35.1, 0.0, 19.7, 45.2, 0.0, 0.0, 0.0, 85.7, 14.3, 110.6 -14.468749999999998,5,a-pcom-i3,2021-22,Springfield - Rise Academy at Van Sickle,02810480, 30.5, 0.0, 15.8, 53.7, 0.0, 0.0, 0.0, 73.2, 26.8, 46.5 -10.125000000000002,5,a-pcom-i3,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 10.4, 2.6, 18.8, 67.6, 0.0, 0.0, 0.5, 54.3, 45.7, 189.2 -13.96875,5,a-pcom-i3,2021-22,Springfield - STEM Middle Academy,02810350, 19.6, 0.0, 25.1, 55.3, 0.0, 0.0, 0.0, 66.5, 33.5, 35.8 -8.156249999999998,5,a-pcom-i3,2021-22,Springfield - Samuel Bowles,02810020, 7.1, 2.4, 16.6, 73.9, 0.0, 0.0, 0.0, 81.1, 18.9, 42.2 -7.875000000000001,5,a-pcom-i3,2021-22,Springfield - South End Middle School,02810355, 9.4, 0.0, 15.7, 74.8, 0.0, 0.0, 0.0, 65.4, 34.6, 31.8 -8.312499999999998,5,a-pcom-i3,2021-22,Springfield - Springfield Central High,02810500, 11.7, 2.4, 11.3, 73.4, 0.0, 0.0, 1.2, 55.6, 44.4, 248.1 -13.562499999999998,5,a-pcom-i3,2021-22,Springfield - Springfield High School,02810570, 21.6, 0.0, 21.7, 56.6, 0.0, 0.0, 0.0, 68.2, 31.8, 28.3 -10.968749999999998,5,a-pcom-i3,2021-22,Springfield - Springfield High School of Science and Technology,02810530, 13.5, 3.2, 17.7, 64.9, 0.0, 0.0, 0.6, 57.8, 42.2, 158.2 -6.25,5,a-pcom-i3,2021-22,Springfield - Springfield International Academy at Johnson,02810215, 20.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 80.0, 20.0, 2.5 -9.312499999999998,5,a-pcom-i3,2021-22,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 29.8, 70.2, 0.0, 0.0, 0.0, 78.8, 21.2, 6.4 -3.1562499999999982,3.16,a-pcom-i3,2021-22,Springfield - Springfield Middle School,02810360, 10.1, 0.0, 0.0, 89.9, 0.0, 0.0, 0.0, 64.0, 36.0, 11.1 -12.0625,5,a-pcom-i3,2021-22,Springfield - Springfield Public Day Elementary School,02810005, 16.3, 0.0, 22.3, 61.4, 0.0, 0.0, 0.0, 95.2, 4.8, 31.4 -19.8125,5,a-pcom-i3,2021-22,Springfield - Springfield Public Day High School,02810550, 33.7, 0.0, 29.7, 36.6, 0.0, 0.0, 0.0, 56.8, 43.2, 30.5 -5.625,5,a-pcom-i3,2021-22,Springfield - Springfield Public Day Middle School,02810345, 13.7, 0.0, 4.4, 82.0, 0.0, 0.0, 0.0, 71.6, 28.4, 22.9 -22.78125,5,a-pcom-i3,2021-22,Springfield - Springfield Realization Academy,02810335, 25.4, 0.0, 47.5, 27.1, 0.0, 0.0, 0.0, 81.4, 18.6, 14.8 -9.812500000000002,5,a-pcom-i3,2021-22,Springfield - Springfield Transition Academy,02810675, 16.2, 0.0, 15.2, 68.6, 0.0, 0.0, 0.0, 68.6, 31.4, 13.1 -8.03125,5,a-pcom-i3,2021-22,Springfield - Sumner Avenue,02810160, 13.4, 1.2, 11.0, 74.3, 0.0, 0.0, 0.0, 87.8, 12.2, 81.8 -12.1875,5,a-pcom-i3,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 19.1, 2.2, 15.5, 61.0, 0.0, 1.1, 1.1, 73.3, 26.7, 90.5 -8.03125,5,a-pcom-i3,2021-22,Springfield - The Springfield Virtual School,02810705, 18.4, 1.8, 3.7, 74.3, 0.0, 0.0, 1.8, 83.1, 16.9, 54.4 -15.625,5,a-pcom-i3,2021-22,Springfield - Thomas M Balliet,02810015, 31.8, 0.0, 15.9, 50.0, 0.0, 0.0, 2.3, 88.6, 11.4, 44.0 -9.562499999999998,5,a-pcom-i3,2021-22,Springfield - Van Sickle Academy,02810485, 10.2, 0.0, 20.4, 69.4, 0.0, 0.0, 0.0, 73.5, 26.5, 49.0 -8.531249999999998,5,a-pcom-i3,2021-22,Springfield - Warner,02810180, 19.1, 0.0, 8.2, 72.7, 0.0, 0.0, 0.0, 94.5, 5.5, 36.6 -6.25,5,a-pcom-i3,2021-22,Springfield - Washington,02810185, 5.8, 1.4, 12.8, 80.0, 0.0, 0.0, 0.0, 98.6, 1.4, 69.0 -5.125000000000002,5,a-pcom-i3,2021-22,Springfield - White Street,02810190, 3.7, 1.9, 10.8, 83.6, 0.0, 0.0, 0.0, 96.3, 3.7, 53.6 -13.03125,5,a-pcom-i3,2021-22,Springfield - William N. DeBerry,02810045, 19.7, 0.0, 21.9, 58.3, 0.0, 0.0, 0.0, 89.0, 11.0, 45.6 -8.59375,5,a-pcom-i3,2021-22,Springfield International Charter (District) - Springfield International Charter School,04410505, 11.5, 1.9, 11.9, 72.5, 0.0, 0.0, 2.2, 70.5, 29.5, 134.6 -13.218749999999998,5,a-pcom-i3,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 18.2, 1.7, 20.8, 57.7, 0.0, 1.7, 0.0, 90.1, 9.9, 60.5 -1,1,a-pcom-i3,2021-22,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 51.0 -1,1,a-pcom-i3,2021-22,Stoneham - Robin Hood,02840025, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 86.5, 13.5, 52.7 -1,1,a-pcom-i3,2021-22,Stoneham - South,02840030, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 89.7, 10.3, 50.0 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Stoneham - Stoneham Central Middle School,02840405, 1.0, 1.0, 0.0, 96.1, 0.0, 0.0, 1.9, 59.9, 40.1, 103.8 -1,1,a-pcom-i3,2021-22,Stoneham - Stoneham High,02840505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.6, 22.4, 94.4 -3.374999999999999,3.37,a-pcom-i3,2021-22,Stoughton - Edwin A Jones Early Childhood Center,02850012, 4.8, 0.0, 5.9, 89.2, 0.0, 0.0, 0.0, 100.0, 0.0, 28.0 -1,1,a-pcom-i3,2021-22,Stoughton - Helen Hansen Elementary,02850010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 36.5 -1,1,a-pcom-i3,2021-22,Stoughton - Joseph H Gibbons,02850025, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 92.9, 7.1, 42.4 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 96.6, 0.0, 1.6, 1.8, 89.6, 10.4, 55.3 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Stoughton - O'Donnell Middle School,02850405, 6.3, 2.2, 2.9, 88.6, 0.0, 0.0, 0.0, 82.7, 17.3, 101.9 -1.6250000000000009,1.63,a-pcom-i3,2021-22,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 2.6, 94.8, 0.0, 0.0, 2.6, 93.3, 6.7, 38.1 -1,1,a-pcom-i3,2021-22,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 30.2 -2.8437499999999982,2.84,a-pcom-i3,2021-22,Stoughton - Stoughton High,02850505, 1.4, 1.3, 3.4, 90.9, 0.7, 1.5, 0.7, 70.2, 29.8, 139.8 -1,1,a-pcom-i3,2021-22,Sturbridge - Burgess Elementary,02870005, 0.7, 0.0, 0.0, 99.3, 0.0, 0.0, 0.0, 93.3, 6.7, 135.3 -1.875,1.88,a-pcom-i3,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 1.4, 0.7, 3.9, 94.0, 0.0, 0.0, 0.0, 71.8, 28.2, 142.7 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Sudbury - Ephraim Curtis Middle,02880305, 0.8, 0.5, 2.7, 94.6, 0.0, 0.0, 1.4, 72.2, 27.8, 126.6 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Sudbury - General John Nixon Elementary,02880025, 4.1, 0.0, 1.2, 94.6, 0.0, 0.0, 0.0, 89.3, 10.7, 48.6 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Sudbury - Israel Loring School,02880015, 1.6, 0.0, 1.6, 93.9, 0.0, 0.0, 2.9, 90.0, 10.0, 62.0 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Sudbury - Josiah Haynes,02880010, 0.0, 3.7, 2.1, 94.2, 0.0, 0.0, 0.0, 92.6, 7.4, 67.6 -1.9687499999999991,1.97,a-pcom-i3,2021-22,Sudbury - Peter Noyes,02880030, 0.0, 2.3, 1.7, 93.7, 0.0, 0.0, 2.3, 94.0, 6.0, 86.7 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Sunderland - Sunderland Elementary,02890005, 0.0, 3.6, 1.8, 94.6, 0.0, 0.0, 0.0, 84.0, 16.0, 55.1 -1,1,a-pcom-i3,2021-22,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 58.1 -1,1,a-pcom-i3,2021-22,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 48.0 -1,1,a-pcom-i3,2021-22,Sutton - Sutton High School,02900510, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 60.9, 39.1, 53.7 -1,1,a-pcom-i3,2021-22,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.2, 26.8, 44.0 -1.25,1.25,a-pcom-i3,2021-22,Swampscott - Clarke,02910005, 0.0, 0.0, 2.7, 96.0, 0.0, 0.0, 1.3, 94.7, 5.3, 37.5 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Swampscott - Hadley,02910010, 0.0, 0.0, 4.9, 93.8, 0.0, 0.0, 1.2, 92.6, 7.4, 40.4 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Swampscott - Stanley,02910020, 0.0, 2.5, 0.0, 93.8, 0.0, 0.0, 3.7, 82.7, 17.3, 40.5 -2.0000000000000018,2.0,a-pcom-i3,2021-22,Swampscott - Swampscott High,02910505, 2.1, 0.0, 4.3, 93.6, 0.0, 0.0, 0.0, 67.0, 33.0, 93.7 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Swampscott - Swampscott Middle,02910305, 1.0, 1.0, 1.9, 96.1, 0.0, 0.0, 0.0, 85.1, 14.9, 103.0 -1,1,a-pcom-i3,2021-22,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 24.9 -1,1,a-pcom-i3,2021-22,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 26.1 -1,1,a-pcom-i3,2021-22,Swansea - Joseph Case High,02920505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 47.7, 52.3, 65.0 -1,1,a-pcom-i3,2021-22,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 69.2, 30.8, 54.0 -1,1,a-pcom-i3,2021-22,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.5, 11.5, 28.2 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Swansea - Mark G Hoyle Elementary,02920017, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 91.2, 8.8, 31.1 -3.062499999999999,3.06,a-pcom-i3,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 1.2, 4.6, 4.0, 90.2, 0.0, 0.0, 0.0, 75.4, 24.6, 172.9 -1,1,a-pcom-i3,2021-22,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 79.4, 19.2, 72.7 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Tantasqua - Tantasqua Regional Sr High,07700505, 0.0, 0.0, 2.4, 96.8, 0.0, 0.0, 0.8, 68.8, 31.2, 124.3 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Tantasqua - Tantasqua Regional Vocational,07700605, 6.1, 0.0, 0.0, 93.9, 0.0, 0.0, 0.0, 36.3, 63.7, 16.5 -1,1,a-pcom-i3,2021-22,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 99.6, 0.0, 0.0, 0.4, 81.2, 18.8, 80.1 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Taunton - East Taunton Elementary,02930010, 1.4, 0.0, 1.4, 96.8, 0.0, 0.0, 0.5, 92.7, 7.3, 73.0 -1,1,a-pcom-i3,2021-22,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 38.7 -1,1,a-pcom-i3,2021-22,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 100.0, 0.0, 35.5 -1,1,a-pcom-i3,2021-22,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 94.0, 6.0, 67.6 -3.4062500000000018,3.41,a-pcom-i3,2021-22,Taunton - H H Galligan,02930057, 5.0, 0.0, 5.0, 89.1, 0.0, 0.0, 0.8, 96.7, 3.3, 39.8 -1,1,a-pcom-i3,2021-22,Taunton - James L. Mulcahey Elementary School,02930015, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 95.0, 5.0, 102.1 -3.9374999999999982,3.94,a-pcom-i3,2021-22,Taunton - John F Parker Middle,02930305, 4.8, 1.9, 5.8, 87.4, 0.0, 0.0, 0.0, 77.7, 22.3, 51.8 -2.1562500000000018,2.16,a-pcom-i3,2021-22,Taunton - Joseph C Chamberlain,02930008, 0.0, 3.4, 1.7, 93.1, 0.0, 0.0, 1.7, 95.6, 4.4, 58.3 -2.1875,2.19,a-pcom-i3,2021-22,Taunton - Joseph H Martin,02930042, 7.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0, 83.2, 16.8, 71.9 -4.500000000000002,4.5,a-pcom-i3,2021-22,Taunton - Taunton Alternative High School,02930525, 1.9, 0.0, 12.5, 85.6, 0.0, 0.0, 0.0, 67.2, 32.8, 16.0 -2.250000000000001,2.25,a-pcom-i3,2021-22,Taunton - Taunton High,02930505, 3.5, 0.4, 2.9, 92.8, 0.0, 0.0, 0.4, 66.4, 33.6, 244.2 -3.75,3.75,a-pcom-i3,2021-22,Tewksbury - Heath-Brook,02950010, 0.0, 4.8, 7.2, 88.0, 0.0, 0.0, 0.0, 98.8, 1.2, 41.6 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Tewksbury - John F. Ryan,02950023, 3.4, 1.3, 6.7, 88.6, 0.0, 0.0, 0.0, 84.1, 15.9, 74.2 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Tewksbury - John W. Wynn Middle,02950305, 0.0, 3.3, 1.6, 95.1, 0.0, 0.0, 0.0, 75.3, 24.7, 61.4 -3.1562499999999982,3.16,a-pcom-i3,2021-22,Tewksbury - L F Dewing,02950001, 1.8, 2.8, 5.5, 89.9, 0.0, 0.0, 0.0, 96.8, 3.2, 108.7 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Tewksbury - Louise Davy Trahan,02950025, 3.1, 0.0, 3.1, 93.8, 0.0, 0.0, 0.0, 93.8, 6.2, 32.1 -4.031250000000002,4.03,a-pcom-i3,2021-22,Tewksbury - North Street,02950020, 2.1, 0.0, 10.7, 87.1, 0.0, 0.0, 0.0, 95.5, 4.5, 46.5 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.7, 2.6, 95.7, 0.0, 0.0, 0.0, 58.4, 40.7, 115.4 -2.437499999999999,2.44,a-pcom-i3,2021-22,Tisbury - Tisbury Elementary,02960005, 1.6, 0.0, 4.3, 92.2, 0.0, 0.0, 1.9, 88.1, 11.9, 73.4 -1,1,a-pcom-i3,2021-22,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 90.2, 9.8, 47.3 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 95.4, 4.6, 64.2 -1,1,a-pcom-i3,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.1, 39.9, 134.6 -1,1,a-pcom-i3,2021-22,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 80.4 -1,1,a-pcom-i3,2021-22,Triton - Pine Grove,07730025, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 90.9, 9.1, 66.0 -1,1,a-pcom-i3,2021-22,Triton - Salisbury Elementary,07730015, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 95.5, 4.5, 66.9 -1,1,a-pcom-i3,2021-22,Triton - Triton Regional High School,07730505, 1.1, 0.0, 1.3, 97.7, 0.0, 0.0, 0.0, 63.5, 36.5, 94.3 -1,1,a-pcom-i3,2021-22,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.6, 29.4, 51.8 -1,1,a-pcom-i3,2021-22,Truro - Truro Central,03000005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 32.3 -1,1,a-pcom-i3,2021-22,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 90.2, 9.8, 101.7 -1,1,a-pcom-i3,2021-22,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 64.2, 35.8, 48.3 -1,1,a-pcom-i3,2021-22,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 70.9, 29.1, 55.6 -12.5,5,a-pcom-i3,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 35.1, 0.0, 4.9, 60.0, 0.0, 0.0, 0.0, 69.8, 30.2, 51.3 -12.65625,5,a-pcom-i3,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 27.8, 2.5, 10.1, 59.5, 0.0, 0.0, 0.0, 81.0, 19.0, 79.0 -2.9375000000000018,2.94,a-pcom-i3,2021-22,Up-Island Regional - Chilmark Elementary,07740010, 0.3, 0.0, 0.9, 90.6, 0.0, 0.0, 8.2, 86.9, 13.1, 12.6 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Up-Island Regional - West Tisbury Elementary,07740020, 0.6, 0.0, 2.3, 96.7, 0.0, 0.0, 0.3, 84.5, 15.5, 70.9 -1,1,a-pcom-i3,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 99.1, 0.9, 0.0, 0.0, 42.5, 57.5, 106.9 -31.25,5,a-pcom-i3,2021-22,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1,1,a-pcom-i3,2021-22,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 87.4 -1,1,a-pcom-i3,2021-22,Uxbridge - Uxbridge High,03040505, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 67.0, 33.0, 87.8 -1,1,a-pcom-i3,2021-22,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.4, 18.6, 64.5 -13.65625,5,a-pcom-i3,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 27.7, 1.6, 12.9, 56.3, 0.0, 0.0, 1.6, 75.9, 24.1, 62.2 -1,1,a-pcom-i3,2021-22,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.6, 17.4, 46.0 -1,1,a-pcom-i3,2021-22,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.1, 15.9, 41.4 -1.09375,1.09,a-pcom-i3,2021-22,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 85.4, 14.6, 57.0 -1,1,a-pcom-i3,2021-22,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 56.4 -2.2187499999999982,2.22,a-pcom-i3,2021-22,Wachusett - Early Childhood Center,07750001, 2.4, 0.0, 4.7, 92.9, 0.0, 0.0, 0.0, 100.0, 0.0, 42.5 -1,1,a-pcom-i3,2021-22,Wachusett - Glenwood Elementary School,07750060, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 87.9, 12.1, 49.7 -1,1,a-pcom-i3,2021-22,Wachusett - Houghton Elementary,07750027, 1.5, 0.0, 1.5, 97.1, 0.0, 0.0, 0.0, 94.1, 5.9, 68.0 -1,1,a-pcom-i3,2021-22,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 53.3 -1,1,a-pcom-i3,2021-22,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 82.0, 18.0, 78.0 -1,1,a-pcom-i3,2021-22,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 48.1 -1,1,a-pcom-i3,2021-22,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.4, 17.6, 58.0 -1,1,a-pcom-i3,2021-22,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 97.6, 0.0, 2.4, 0.0, 95.1, 4.9, 41.2 -1,1,a-pcom-i3,2021-22,Wachusett - Wachusett Regional High,07750505, 0.0, 0.4, 0.0, 99.6, 0.0, 0.0, 0.0, 69.3, 30.7, 232.5 -1,1,a-pcom-i3,2021-22,Wakefield - Dolbeare,03050005, 0.0, 1.5, 0.0, 97.1, 1.5, 0.0, 0.0, 91.3, 8.7, 68.9 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 3.7, 0.0, 96.3, 0.0, 0.0, 0.0, 100.0, 0.0, 26.7 -1,1,a-pcom-i3,2021-22,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 71.5, 28.5, 122.7 -1,1,a-pcom-i3,2021-22,Wakefield - Greenwood,03050020, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 90.6, 9.4, 32.0 -1,1,a-pcom-i3,2021-22,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 65.1, 34.9, 110.8 -1,1,a-pcom-i3,2021-22,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 26.3 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Wakefield - Woodville School,03050015, 0.0, 0.0, 1.7, 96.7, 0.0, 0.0, 1.7, 93.5, 6.5, 60.1 -1.3750000000000018,1.38,a-pcom-i3,2021-22,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 95.6, 0.0, 0.0, 4.4, 89.2, 10.8, 22.8 -1,1,a-pcom-i3,2021-22,Walpole - Bird Middle,03070305, 0.9, 1.7, 0.0, 97.0, 0.0, 0.0, 0.4, 74.9, 25.1, 57.8 -1,1,a-pcom-i3,2021-22,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 99.2, 0.0, 0.0, 0.8, 95.7, 4.3, 53.2 -1,1,a-pcom-i3,2021-22,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 18.8 -1,1,a-pcom-i3,2021-22,Walpole - Eleanor N Johnson Middle,03070310, 0.8, 0.0, 1.7, 97.1, 0.0, 0.0, 0.4, 82.4, 17.6, 59.7 -1,1,a-pcom-i3,2021-22,Walpole - Elm Street School,03070005, 1.8, 0.0, 0.0, 97.6, 0.0, 0.0, 0.6, 94.5, 5.5, 54.3 -1,1,a-pcom-i3,2021-22,Walpole - Fisher,03070015, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 94.9, 5.1, 58.5 -1,1,a-pcom-i3,2021-22,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.4, 14.6, 50.1 -1.09375,1.09,a-pcom-i3,2021-22,Walpole - Walpole High,03070505, 0.0, 2.7, 0.7, 96.5, 0.0, 0.0, 0.2, 64.6, 35.4, 142.8 -1,1,a-pcom-i3,2021-22,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.2, 1.6, 98.3, 0.0, 0.0, 0.0, 93.4, 6.6, 64.0 -5.531250000000001,5,a-pcom-i3,2021-22,Waltham - Henry Whittemore Elementary School,03080065, 3.1, 3.3, 9.7, 82.3, 0.0, 0.0, 1.6, 88.5, 11.5, 63.5 -1.8437500000000018,1.84,a-pcom-i3,2021-22,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 4.1, 94.1, 0.0, 0.0, 1.8, 87.2, 12.8, 55.4 -3.999999999999999,4.0,a-pcom-i3,2021-22,Waltham - John F Kennedy Middle,03080404, 2.4, 2.4, 8.0, 87.2, 0.0, 0.0, 0.0, 80.2, 19.8, 82.8 -5.15625,5,a-pcom-i3,2021-22,Waltham - John W. McDevitt Middle School,03080415, 4.4, 0.9, 10.3, 83.5, 0.0, 0.0, 0.9, 65.4, 34.6, 110.5 -2.124999999999999,2.12,a-pcom-i3,2021-22,Waltham - Northeast Elementary School,03080040, 1.2, 1.3, 3.2, 93.2, 0.0, 0.0, 1.0, 95.5, 4.5, 86.1 -2.1562500000000018,2.16,a-pcom-i3,2021-22,Waltham - Thomas R Plympton Elementary School,03080050, 1.7, 0.0, 5.3, 93.1, 0.0, 0.0, 0.0, 89.7, 10.3, 60.5 -17.34375,5,a-pcom-i3,2021-22,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 55.5, 44.5, 0.0, 0.0, 0.0, 85.8, 14.2, 30.3 -5.031249999999998,5,a-pcom-i3,2021-22,Waltham - Waltham Sr High,03080505, 4.8, 3.5, 6.5, 83.9, 0.0, 0.4, 0.9, 68.1, 31.9, 230.3 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Waltham - William F. Stanley Elementary School,03080005, 0.0, 1.0, 4.2, 93.8, 0.0, 0.0, 1.0, 87.3, 12.7, 99.7 -1,1,a-pcom-i3,2021-22,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 94.4, 5.6, 53.4 -3.0937500000000018,3.09,a-pcom-i3,2021-22,Ware - Ware Junior/Senior High School,03090505, 2.9, 0.0, 7.0, 90.1, 0.0, 0.0, 0.0, 69.4, 30.6, 68.6 -1,1,a-pcom-i3,2021-22,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 81.2, 18.8, 37.3 -1,1,a-pcom-i3,2021-22,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 93.2, 6.8, 95.5 -1,1,a-pcom-i3,2021-22,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 89.4, 10.6, 48.9 -1,1,a-pcom-i3,2021-22,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.3, 30.7, 4.0 -1,1,a-pcom-i3,2021-22,Wareham - Wareham Middle,03100305, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 85.2, 14.8, 67.0 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Wareham - Wareham Senior High,03100505, 2.8, 0.9, 0.0, 92.4, 0.0, 0.0, 3.8, 68.8, 31.2, 105.4 -3.5625000000000018,3.56,a-pcom-i3,2021-22,Watertown - Cunniff,03140015, 0.0, 0.9, 10.5, 88.6, 0.0, 0.0, 0.0, 80.9, 19.1, 58.5 -3.812500000000001,3.81,a-pcom-i3,2021-22,Watertown - Hosmer,03140020, 0.6, 0.3, 10.1, 87.8, 0.6, 0.0, 0.6, 90.8, 9.2, 161.6 -5.499999999999998,5,a-pcom-i3,2021-22,Watertown - James Russell Lowell,03140025, 1.3, 1.3, 14.9, 82.4, 0.0, 0.0, 0.0, 89.3, 10.7, 75.6 -3.500000000000001,3.5,a-pcom-i3,2021-22,Watertown - Watertown High,03140505, 1.7, 0.8, 6.9, 88.8, 0.0, 0.0, 1.7, 49.4, 50.6, 118.0 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Watertown - Watertown Middle,03140305, 1.1, 1.1, 6.4, 91.4, 0.0, 0.0, 0.0, 74.3, 25.7, 89.6 -2.2187499999999982,2.22,a-pcom-i3,2021-22,Wayland - Claypit Hill School,03150005, 3.5, 1.2, 1.2, 92.9, 0.0, 0.0, 1.2, 96.0, 4.0, 84.9 -3.8750000000000018,3.88,a-pcom-i3,2021-22,Wayland - Happy Hollow School,03150015, 0.8, 5.0, 6.6, 87.6, 0.0, 0.0, 0.0, 90.4, 9.6, 60.3 -4.031250000000002,4.03,a-pcom-i3,2021-22,Wayland - Loker School,03150020, 0.8, 1.5, 9.1, 87.1, 0.0, 0.0, 1.5, 90.9, 9.1, 65.7 -2.6250000000000018,2.63,a-pcom-i3,2021-22,Wayland - Wayland High School,03150505, 4.1, 1.1, 2.4, 91.6, 0.0, 0.0, 0.8, 68.5, 31.5, 123.1 -3.656250000000001,3.66,a-pcom-i3,2021-22,Wayland - Wayland Middle School,03150305, 1.9, 2.9, 6.8, 88.3, 0.0, 0.0, 0.0, 75.7, 24.3, 103.0 -2.65625,2.66,a-pcom-i3,2021-22,Webster - Bartlett High School,03160505, 3.4, 0.0, 3.4, 91.5, 0.0, 0.0, 1.7, 66.9, 33.1, 58.9 -1,1,a-pcom-i3,2021-22,Webster - Park Avenue Elementary,03160015, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 94.8, 5.2, 114.6 -1,1,a-pcom-i3,2021-22,Webster - Webster Middle School,03160315, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 79.7, 20.3, 76.5 -3.28125,3.28,a-pcom-i3,2021-22,Wellesley - Ernest F Upham,03170050, 2.0, 3.5, 5.1, 89.5, 0.0, 0.0, 0.0, 93.4, 6.6, 57.9 -2.9999999999999982,3.0,a-pcom-i3,2021-22,Wellesley - Hunnewell,03170025, 2.9, 0.0, 4.6, 90.4, 0.0, 0.0, 2.1, 92.3, 7.7, 47.5 -2.3749999999999982,2.37,a-pcom-i3,2021-22,Wellesley - John D Hardy,03170020, 0.3, 2.2, 5.0, 92.4, 0.0, 0.0, 0.0, 93.7, 6.3, 44.8 -2.34375,2.34,a-pcom-i3,2021-22,Wellesley - Joseph E Fiske,03170015, 4.6, 0.0, 0.7, 92.5, 0.0, 0.0, 2.2, 96.5, 3.5, 46.2 -2.593749999999999,2.59,a-pcom-i3,2021-22,Wellesley - Katharine Lee Bates,03170005, 0.3, 0.0, 5.5, 91.7, 0.0, 0.0, 2.5, 97.2, 2.8, 40.8 -5.3125,5,a-pcom-i3,2021-22,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 6.4, 6.4, 83.0, 0.0, 0.0, 4.2, 97.9, 2.1, 47.1 -2.8437499999999982,2.84,a-pcom-i3,2021-22,Wellesley - Schofield,03170045, 4.4, 0.0, 4.7, 90.9, 0.0, 0.0, 0.0, 87.2, 12.8, 48.1 -1.7499999999999982,1.75,a-pcom-i3,2021-22,Wellesley - Sprague Elementary School,03170048, 0.2, 3.3, 0.4, 94.4, 0.0, 0.0, 1.6, 94.9, 5.1, 61.0 -2.9375000000000018,2.94,a-pcom-i3,2021-22,Wellesley - Wellesley Middle,03170305, 1.5, 3.9, 1.8, 90.6, 0.0, 0.0, 2.2, 75.4, 24.6, 177.8 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Wellesley - Wellesley Sr High,03170505, 2.8, 2.8, 1.7, 91.4, 0.0, 0.0, 1.3, 65.4, 34.6, 229.1 -1,1,a-pcom-i3,2021-22,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 28.0 -1,1,a-pcom-i3,2021-22,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 63.8 -1.4999999999999991,1.5,a-pcom-i3,2021-22,West Boylston - West Boylston Junior/Senior High,03220505, 2.8, 0.0, 2.0, 95.2, 0.0, 0.0, 0.0, 69.5, 30.5, 70.5 -1,1,a-pcom-i3,2021-22,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 27.8 -1.0000000000000009,1.0,a-pcom-i3,2021-22,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 95.9, 4.1, 30.9 -1,1,a-pcom-i3,2021-22,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 22.8 -1.0000000000000009,1.0,a-pcom-i3,2021-22,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 69.4, 30.6, 63.3 -2.34375,2.34,a-pcom-i3,2021-22,West Springfield - Cowing Early Childhood,03320001, 7.5, 0.0, 0.0, 92.5, 0.0, 0.0, 0.0, 99.6, 0.4, 26.8 -1.1874999999999991,1.19,a-pcom-i3,2021-22,West Springfield - John Ashley,03320005, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 91.5, 8.5, 52.3 -1,1,a-pcom-i3,2021-22,West Springfield - John R Fausey,03320010, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 97.7, 2.3, 65.5 -1,1,a-pcom-i3,2021-22,West Springfield - Memorial,03320025, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 86.4, 13.6, 36.6 -1,1,a-pcom-i3,2021-22,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 26.6 -1,1,a-pcom-i3,2021-22,West Springfield - Philip G Coburn,03320007, 1.3, 1.3, 0.0, 97.5, 0.0, 0.0, 0.0, 94.1, 5.9, 79.7 -1,1,a-pcom-i3,2021-22,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 38.5 -1.8124999999999991,1.81,a-pcom-i3,2021-22,West Springfield - West Springfield High,03320505, 0.6, 0.0, 4.5, 94.2, 0.0, 0.6, 0.0, 69.7, 30.3, 155.8 -1.3125000000000009,1.31,a-pcom-i3,2021-22,West Springfield - West Springfield Middle,03320305, 0.8, 0.8, 1.7, 95.8, 0.0, 0.0, 0.8, 72.8, 27.2, 119.3 -1.5937499999999982,1.59,a-pcom-i3,2021-22,Westborough - Annie E Fales,03210010, 0.0, 0.0, 3.6, 94.9, 0.0, 0.0, 1.4, 97.6, 2.4, 55.4 -2.906249999999999,2.91,a-pcom-i3,2021-22,Westborough - Elsie A Hastings Elementary,03210025, 1.0, 7.2, 1.0, 90.7, 0.0, 0.0, 0.0, 95.2, 4.8, 97.2 -3.4062500000000018,3.41,a-pcom-i3,2021-22,Westborough - J Harding Armstrong,03210005, 0.0, 7.6, 1.7, 89.1, 0.0, 0.0, 1.7, 98.3, 1.7, 59.4 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Westborough - Mill Pond School,03210045, 0.0, 3.3, 2.5, 94.3, 0.0, 0.0, 0.0, 89.0, 11.0, 122.1 -2.593749999999999,2.59,a-pcom-i3,2021-22,Westborough - Sarah W Gibbons Middle,03210305, 2.3, 2.5, 3.5, 91.7, 0.0, 0.0, 0.0, 72.2, 27.8, 86.6 -2.2187499999999982,2.22,a-pcom-i3,2021-22,Westborough - Westborough High,03210505, 1.4, 3.3, 1.1, 92.9, 0.0, 0.7, 0.7, 68.9, 31.1, 146.7 -1,1,a-pcom-i3,2021-22,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.4 -4.53125,4.53,a-pcom-i3,2021-22,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 8.7, 5.8, 85.5, 0.0, 0.0, 0.0, 97.1, 2.9, 34.5 -1.3437499999999991,1.34,a-pcom-i3,2021-22,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 95.7, 0.0, 0.0, 4.3, 95.8, 4.2, 23.6 -1.8437500000000018,1.84,a-pcom-i3,2021-22,Westfield - Highland,03250025, 0.0, 2.0, 2.0, 94.1, 2.0, 0.0, 0.0, 92.1, 7.9, 50.9 -2.6250000000000018,2.63,a-pcom-i3,2021-22,Westfield - Munger Hill,03250033, 5.1, 1.7, 1.7, 91.6, 0.0, 0.0, 0.0, 93.2, 6.8, 59.2 -1,1,a-pcom-i3,2021-22,Westfield - Paper Mill,03250036, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 97.8, 2.2, 40.4 -1,1,a-pcom-i3,2021-22,Westfield - Southampton Road,03250040, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 97.6, 2.4, 39.1 -1,1,a-pcom-i3,2021-22,Westfield - Westfield High,03250505, 0.0, 0.7, 0.7, 98.5, 0.0, 0.0, 0.0, 73.8, 26.2, 137.8 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Westfield - Westfield Intermediate School,03250075, 2.2, 1.1, 0.0, 96.7, 0.0, 0.0, 0.0, 82.6, 17.4, 91.8 -1,1,a-pcom-i3,2021-22,Westfield - Westfield Middle School,03250310, 0.0, 1.1, 1.1, 97.8, 0.0, 0.0, 0.0, 75.9, 24.1, 92.1 -1.0625000000000018,1.06,a-pcom-i3,2021-22,Westfield - Westfield Technical Academy,03250605, 1.1, 0.0, 0.0, 96.6, 1.1, 0.0, 1.1, 51.5, 48.5, 89.8 -1,1,a-pcom-i3,2021-22,Westfield - Westfield Virtual School,03250705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.9, 40.1, 10.4 -1,1,a-pcom-i3,2021-22,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 55.0 -1.8437500000000018,1.84,a-pcom-i3,2021-22,Westford - Blanchard Middle,03260310, 0.0, 4.4, 1.5, 94.1, 0.0, 0.0, 0.0, 89.5, 10.5, 68.2 -1,1,a-pcom-i3,2021-22,Westford - Col John Robinson,03260025, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 95.3, 4.7, 53.8 -1.4374999999999982,1.44,a-pcom-i3,2021-22,Westford - Day Elementary,03260007, 0.0, 0.9, 1.9, 95.4, 0.0, 0.0, 1.9, 91.5, 8.5, 54.0 -1,1,a-pcom-i3,2021-22,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 97.5, 2.5, 56.2 -1,1,a-pcom-i3,2021-22,Westford - Nabnasset,03260015, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 95.9, 4.1, 52.5 -2.718750000000001,2.72,a-pcom-i3,2021-22,Westford - Rita E. Miller Elementary School,03260055, 1.5, 7.3, 0.0, 91.3, 0.0, 0.0, 0.0, 95.6, 4.4, 68.6 -1,1,a-pcom-i3,2021-22,Westford - Stony Brook School,03260330, 1.3, 0.0, 1.3, 97.3, 0.0, 0.0, 0.0, 80.7, 19.3, 75.2 -1,1,a-pcom-i3,2021-22,Westford - Westford Academy,03260505, 0.0, 2.4, 0.6, 97.1, 0.0, 0.0, 0.0, 60.0, 40.0, 169.7 -1,1,a-pcom-i3,2021-22,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 29.6 -1.40625,1.41,a-pcom-i3,2021-22,Weston - Country,03300010, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 87.2, 12.8, 55.7 -4.0625,4.06,a-pcom-i3,2021-22,Weston - Field Elementary School,03300012, 3.9, 3.9, 3.8, 87.0, 0.0, 0.0, 1.3, 84.2, 15.8, 46.1 -4.656250000000002,4.66,a-pcom-i3,2021-22,Weston - Weston High,03300505, 1.5, 8.3, 5.1, 85.1, 0.0, 0.0, 0.0, 67.0, 33.0, 97.5 -3.031250000000001,3.03,a-pcom-i3,2021-22,Weston - Weston Middle,03300305, 3.7, 4.8, 1.3, 90.3, 0.0, 0.0, 0.0, 74.2, 25.8, 78.5 -1.9062499999999982,1.91,a-pcom-i3,2021-22,Weston - Woodland,03300015, 0.0, 1.6, 4.4, 93.9, 0.0, 0.0, 0.0, 94.5, 5.5, 49.2 -1,1,a-pcom-i3,2021-22,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.2, 2.8, 35.5 -1,1,a-pcom-i3,2021-22,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.4, 1.6, 64.2 -1,1,a-pcom-i3,2021-22,Westport - Westport Middle-High School,03310515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.4, 33.6, 103.1 -1.71875,1.72,a-pcom-i3,2021-22,Westwood - Deerfield School,03350010, 0.0, 5.3, 0.0, 94.5, 0.0, 0.0, 0.3, 89.7, 10.3, 38.1 -1.2812499999999982,1.28,a-pcom-i3,2021-22,Westwood - Downey,03350012, 0.0, 0.3, 2.9, 95.9, 0.0, 0.0, 0.9, 90.4, 8.1, 68.7 -3.59375,3.59,a-pcom-i3,2021-22,Westwood - E W Thurston Middle,03350305, 5.2, 2.1, 2.1, 88.5, 0.0, 0.0, 2.1, 70.9, 29.1, 95.5 -1,1,a-pcom-i3,2021-22,Westwood - Martha Jones,03350017, 0.0, 1.3, 0.0, 98.5, 0.0, 0.0, 0.2, 89.8, 10.2, 38.8 -1,1,a-pcom-i3,2021-22,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.1, 11.9, 33.2 -3.343750000000001,3.34,a-pcom-i3,2021-22,Westwood - Westwood High,03350505, 2.3, 3.1, 3.8, 89.3, 0.0, 0.0, 1.5, 64.5, 35.5, 130.9 -1.9375000000000009,1.94,a-pcom-i3,2021-22,Westwood - Westwood Integrated Preschool,03350050, 6.2, 0.0, 0.0, 93.8, 0.0, 0.0, 0.0, 93.8, 6.2, 16.1 -1,1,a-pcom-i3,2021-22,Westwood - William E Sheehan,03350025, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 90.4, 9.6, 53.5 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Weymouth - Abigail Adams Middle School,03360310, 0.0, 2.5, 0.8, 96.7, 0.0, 0.0, 0.0, 71.9, 28.1, 120.4 -1,1,a-pcom-i3,2021-22,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 38.4 -1,1,a-pcom-i3,2021-22,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 88.5, 11.5, 43.6 -3.531249999999999,3.53,a-pcom-i3,2021-22,Weymouth - Johnson Early Childhood Center,03360003, 2.0, 7.3, 2.0, 88.7, 0.0, 0.0, 0.0, 98.0, 2.0, 49.6 -1,1,a-pcom-i3,2021-22,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 40.2 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Weymouth - Ralph Talbot,03360085, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 96.8, 3.2, 31.6 -1,1,a-pcom-i3,2021-22,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.4, 15.6, 38.4 -1,1,a-pcom-i3,2021-22,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 45.2 -1,1,a-pcom-i3,2021-22,Weymouth - Wessagusset,03360110, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 82.5, 17.5, 57.1 -1.1249999999999982,1.12,a-pcom-i3,2021-22,Weymouth - Weymouth High School,03360505, 0.7, 0.7, 1.3, 96.4, 0.3, 0.0, 0.7, 67.7, 32.3, 305.2 -1,1,a-pcom-i3,2021-22,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 50.5 -1,1,a-pcom-i3,2021-22,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 30.3 -1.2187500000000018,1.22,a-pcom-i3,2021-22,Whitman-Hanson - Hanson Middle School,07800315, 2.4, 0.0, 1.5, 96.1, 0.0, 0.0, 0.0, 74.9, 25.1, 62.1 -1.4374999999999982,1.44,a-pcom-i3,2021-22,Whitman-Hanson - Indian Head,07800035, 2.2, 0.0, 2.5, 95.4, 0.0, 0.0, 0.0, 91.0, 9.0, 59.3 -1,1,a-pcom-i3,2021-22,Whitman-Hanson - John H Duval,07800030, 1.4, 0.0, 1.6, 97.0, 0.0, 0.0, 0.0, 96.0, 4.0, 61.8 -1,1,a-pcom-i3,2021-22,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 92.9, 7.1, 56.1 -1,1,a-pcom-i3,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 14.4 -1,1,a-pcom-i3,2021-22,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.9, 0.0, 0.9, 98.2, 0.0, 0.0, 0.0, 65.0, 35.0, 107.3 -1.0312499999999991,1.03,a-pcom-i3,2021-22,Whitman-Hanson - Whitman Middle,07800310, 2.4, 0.0, 0.9, 96.7, 0.0, 0.0, 0.0, 72.5, 27.5, 58.6 -1.5312500000000018,1.53,a-pcom-i3,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 1.4, 0.0, 3.5, 95.1, 0.0, 0.0, 0.0, 53.6, 46.4, 142.4 -1,1,a-pcom-i3,2021-22,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 27.6 -1,1,a-pcom-i3,2021-22,Wilmington - Boutwell,03420005, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 100.0, 0.0, 28.3 -1.0000000000000009,1.0,a-pcom-i3,2021-22,Wilmington - North Intermediate,03420060, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 93.7, 6.3, 31.7 -1,1,a-pcom-i3,2021-22,Wilmington - Shawsheen Elementary,03420025, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 93.5, 6.5, 46.3 -3.125,3.13,a-pcom-i3,2021-22,Wilmington - West Intermediate,03420080, 0.0, 4.3, 5.7, 90.0, 0.0, 0.0, 0.0, 94.3, 5.7, 34.9 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Wilmington - Wildwood,03420015, 0.0, 0.0, 2.7, 94.6, 0.0, 0.0, 2.7, 94.6, 5.4, 37.3 -1.09375,1.09,a-pcom-i3,2021-22,Wilmington - Wilmington High,03420505, 0.0, 0.9, 1.7, 96.5, 0.9, 0.0, 0.0, 72.9, 27.1, 115.0 -1,1,a-pcom-i3,2021-22,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 77.5, 22.5, 101.6 -1,1,a-pcom-i3,2021-22,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 43.0 -1,1,a-pcom-i3,2021-22,Winchendon - Memorial,03430040, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 96.7, 3.3, 46.2 -1,1,a-pcom-i3,2021-22,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.2, 27.8, 1.8 -1.6875000000000018,1.69,a-pcom-i3,2021-22,Winchendon - Murdock High School,03430515, 2.7, 0.0, 2.7, 94.6, 0.0, 0.0, 0.0, 70.2, 29.8, 36.9 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 77.1, 22.9, 34.2 -1,1,a-pcom-i3,2021-22,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 32.5 -1,1,a-pcom-i3,2021-22,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.7 -1.1874999999999991,1.19,a-pcom-i3,2021-22,Winchester - Ambrose Elementary,03440045, 1.9, 0.0, 1.9, 96.2, 0.0, 0.0, 0.0, 93.6, 6.4, 53.1 -1,1,a-pcom-i3,2021-22,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 94.1, 5.9, 42.4 -1,1,a-pcom-i3,2021-22,Winchester - Lynch Elementary,03440020, 0.0, 1.1, 1.1, 97.8, 0.0, 0.0, 0.0, 95.0, 3.9, 89.9 -1.5625,1.56,a-pcom-i3,2021-22,Winchester - McCall Middle,03440305, 1.5, 2.1, 1.5, 95.0, 0.0, 0.0, 0.0, 75.9, 24.1, 135.2 -1.1562500000000009,1.16,a-pcom-i3,2021-22,Winchester - Muraco Elementary,03440040, 0.0, 1.9, 1.9, 96.3, 0.0, 0.0, 0.0, 94.0, 6.0, 53.8 -1.09375,1.09,a-pcom-i3,2021-22,Winchester - Vinson-Owen Elementary,03440025, 0.0, 1.8, 0.0, 96.5, 0.0, 0.0, 1.8, 90.5, 9.5, 56.5 -1,1,a-pcom-i3,2021-22,Winchester - Winchester High School,03440505, 0.7, 0.0, 1.3, 98.0, 0.0, 0.0, 0.0, 66.1, 33.9, 149.8 -1,1,a-pcom-i3,2021-22,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 90.6, 9.4, 58.5 -1,1,a-pcom-i3,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 77.5 -1,1,a-pcom-i3,2021-22,Winthrop - Winthrop High School,03460505, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 61.1, 38.9, 65.2 -1,1,a-pcom-i3,2021-22,Winthrop - Winthrop Middle School,03460305, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 70.9, 29.1, 54.6 -1,1,a-pcom-i3,2021-22,Woburn - Clyde Reeves,03470040, 1.5, 0.0, 0.0, 97.1, 1.5, 0.0, 0.0, 95.0, 5.0, 68.7 -1,1,a-pcom-i3,2021-22,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.1, 1.3, 97.5, 0.0, 0.0, 0.0, 76.5, 23.5, 72.7 -1,1,a-pcom-i3,2021-22,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 44.2 -1,1,a-pcom-i3,2021-22,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 34.4 -1,1,a-pcom-i3,2021-22,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 67.6, 32.4, 65.8 -1,1,a-pcom-i3,2021-22,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 25.3 -1,1,a-pcom-i3,2021-22,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 39.1 -1,1,a-pcom-i3,2021-22,Woburn - Mary D Altavesta,03470065, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 93.3, 6.7, 32.4 -1,1,a-pcom-i3,2021-22,Woburn - Shamrock,03470043, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 90.4, 9.6, 74.6 -1.5625,1.56,a-pcom-i3,2021-22,Woburn - Woburn High,03470505, 1.9, 0.6, 2.5, 95.0, 0.0, 0.0, 0.0, 65.2, 34.8, 161.5 -1,1,a-pcom-i3,2021-22,Worcester - Belmont Street Community,03480020, 1.6, 0.0, 1.6, 96.9, 0.0, 0.0, 0.0, 89.7, 10.3, 64.4 -5.46875,5,a-pcom-i3,2021-22,Worcester - Burncoat Middle School,03480405, 8.4, 0.0, 9.1, 82.5, 0.0, 0.0, 0.0, 66.4, 33.6, 99.4 -3.4687499999999982,3.47,a-pcom-i3,2021-22,Worcester - Burncoat Senior High,03480503, 2.3, 0.0, 8.8, 88.9, 0.0, 0.0, 0.0, 61.6, 38.4, 150.8 -4.812500000000002,4.81,a-pcom-i3,2021-22,Worcester - Burncoat Street,03480035, 3.0, 0.0, 12.4, 84.6, 0.0, 0.0, 0.0, 87.7, 12.3, 40.2 -2.718750000000001,2.72,a-pcom-i3,2021-22,Worcester - Canterbury,03480045, 1.7, 0.0, 7.0, 91.3, 0.0, 0.0, 0.0, 95.8, 4.2, 44.2 -4.406249999999998,4.41,a-pcom-i3,2021-22,Worcester - Chandler Elementary Community,03480050, 2.3, 1.0, 10.9, 85.9, 0.0, 0.0, 0.0, 92.9, 7.1, 61.6 -13.687499999999998,5,a-pcom-i3,2021-22,Worcester - Chandler Magnet,03480052, 2.7, 1.4, 39.7, 56.2, 0.0, 0.0, 0.0, 94.3, 5.7, 73.3 -5.46875,5,a-pcom-i3,2021-22,Worcester - City View,03480053, 3.0, 1.5, 13.0, 82.5, 0.0, 0.0, 0.0, 87.1, 12.9, 66.8 -7.281249999999999,5,a-pcom-i3,2021-22,Worcester - Claremont Academy,03480350, 10.0, 1.6, 11.7, 76.7, 0.0, 0.0, 0.0, 73.2, 26.8, 62.5 -5.531250000000001,5,a-pcom-i3,2021-22,Worcester - Clark St Community,03480055, 2.7, 0.0, 15.0, 82.3, 0.0, 0.0, 0.0, 83.6, 16.4, 42.6 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Worcester - Columbus Park,03480060, 3.8, 0.8, 4.0, 91.4, 0.0, 0.0, 0.0, 89.0, 11.0, 52.3 -2.8125,2.81,a-pcom-i3,2021-22,Worcester - Doherty Memorial High,03480512, 2.1, 0.0, 6.9, 91.0, 0.0, 0.0, 0.0, 60.8, 39.2, 151.7 -3.90625,3.91,a-pcom-i3,2021-22,Worcester - Elm Park Community,03480095, 1.8, 1.8, 7.0, 87.5, 0.0, 1.8, 0.0, 89.0, 11.0, 54.3 -1,1,a-pcom-i3,2021-22,Worcester - Flagg Street,03480090, 0.0, 2.6, 0.2, 97.1, 0.0, 0.0, 0.0, 87.3, 12.7, 37.9 -5.031249999999998,5,a-pcom-i3,2021-22,Worcester - Forest Grove Middle,03480415, 6.1, 2.6, 7.4, 83.9, 0.0, 0.0, 0.0, 73.6, 26.4, 115.4 -2.6250000000000018,2.63,a-pcom-i3,2021-22,Worcester - Francis J McGrath Elementary,03480177, 0.0, 8.1, 0.3, 91.6, 0.0, 0.0, 0.0, 91.6, 8.4, 29.6 -3.500000000000001,3.5,a-pcom-i3,2021-22,Worcester - Gates Lane,03480110, 4.0, 2.0, 5.1, 88.8, 0.0, 0.0, 0.0, 92.9, 7.1, 99.2 -4.312499999999999,4.31,a-pcom-i3,2021-22,Worcester - Goddard School/Science Technical,03480100, 2.5, 0.0, 11.3, 86.2, 0.0, 0.0, 0.0, 96.5, 3.5, 64.5 -5.093749999999999,5,a-pcom-i3,2021-22,Worcester - Grafton Street,03480115, 7.4, 2.4, 6.5, 83.7, 0.0, 0.0, 0.0, 86.3, 13.7, 41.3 -9.375,5,a-pcom-i3,2021-22,Worcester - Head Start,03480002, 6.5, 3.1, 20.4, 70.0, 0.0, 0.0, 0.0, 98.1, 1.9, 98.0 -6.40625,5,a-pcom-i3,2021-22,Worcester - Heard Street,03480136, 8.3, 2.0, 6.9, 79.5, 0.0, 3.3, 0.0, 95.4, 4.6, 30.2 -1.8124999999999991,1.81,a-pcom-i3,2021-22,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 2.4, 3.4, 94.2, 0.0, 0.0, 0.0, 94.8, 5.2, 41.0 -24.468749999999996,5,a-pcom-i3,2021-22,Worcester - La Familia Dual Language School,03480025, 0.8, 0.6, 76.9, 21.7, 0.0, 0.0, 0.0, 91.9, 8.1, 20.5 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Worcester - Lake View,03480145, 2.9, 0.0, 2.9, 94.3, 0.0, 0.0, 0.0, 87.6, 12.4, 34.8 -3.59375,3.59,a-pcom-i3,2021-22,Worcester - Lincoln Street,03480160, 0.7, 3.0, 7.8, 88.5, 0.0, 0.0, 0.0, 91.5, 8.5, 33.5 -3.687499999999999,3.69,a-pcom-i3,2021-22,Worcester - May Street,03480175, 3.2, 5.4, 3.2, 88.2, 0.0, 0.0, 0.0, 88.6, 11.4, 31.5 -1.2812499999999982,1.28,a-pcom-i3,2021-22,Worcester - Midland Street,03480185, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 96.0, 4.0, 24.5 -3.3124999999999982,3.31,a-pcom-i3,2021-22,Worcester - Nelson Place,03480200, 4.7, 0.0, 6.0, 89.4, 0.0, 0.0, 0.0, 91.8, 8.2, 108.6 -5.46875,5,a-pcom-i3,2021-22,Worcester - Norrback Avenue,03480202, 5.6, 2.0, 8.9, 82.5, 0.0, 1.0, 0.0, 92.4, 7.6, 102.1 -7.781250000000002,5,a-pcom-i3,2021-22,Worcester - North High,03480515, 9.0, 3.1, 12.8, 75.1, 0.0, 0.0, 0.0, 67.4, 32.6, 144.0 -5.843750000000001,5,a-pcom-i3,2021-22,Worcester - Quinsigamond,03480210, 1.0, 7.5, 10.2, 81.3, 0.0, 0.0, 0.0, 88.0, 12.0, 95.5 -5.531250000000001,5,a-pcom-i3,2021-22,Worcester - Rice Square,03480215, 2.3, 3.7, 11.7, 82.3, 0.0, 0.0, 0.0, 94.7, 5.3, 48.4 -3.28125,3.28,a-pcom-i3,2021-22,Worcester - Roosevelt,03480220, 1.7, 0.2, 8.7, 89.5, 0.0, 0.0, 0.0, 95.2, 4.8, 95.8 -4.968750000000002,4.97,a-pcom-i3,2021-22,Worcester - South High Community,03480520, 4.9, 0.8, 9.4, 84.1, 0.0, 0.7, 0.0, 71.0, 29.0, 181.5 -6.468750000000001,5,a-pcom-i3,2021-22,Worcester - Sullivan Middle,03480423, 4.1, 0.0, 16.6, 79.3, 0.0, 0.0, 0.0, 70.8, 29.2, 122.4 -1,1,a-pcom-i3,2021-22,Worcester - Tatnuck,03480230, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 94.5, 5.5, 45.5 -1.7812500000000009,1.78,a-pcom-i3,2021-22,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 2.8, 94.3, 0.0, 2.8, 0.0, 94.2, 5.8, 35.4 -3.75,3.75,a-pcom-i3,2021-22,Worcester - Union Hill School,03480240, 1.1, 0.0, 10.9, 88.0, 0.0, 0.0, 0.0, 83.3, 16.7, 47.5 -5.15625,5,a-pcom-i3,2021-22,Worcester - University Pk Campus School,03480285, 4.7, 0.0, 11.8, 83.5, 0.0, 0.0, 0.0, 66.5, 33.5, 29.6 -4.718749999999998,4.72,a-pcom-i3,2021-22,Worcester - Vernon Hill School,03480280, 6.6, 1.7, 6.8, 84.9, 0.0, 0.0, 0.0, 88.2, 11.8, 60.2 -2.124999999999999,2.12,a-pcom-i3,2021-22,Worcester - Wawecus Road School,03480026, 3.4, 0.0, 3.4, 93.2, 0.0, 0.0, 0.0, 92.8, 7.2, 29.4 -3.4687499999999982,3.47,a-pcom-i3,2021-22,Worcester - West Tatnuck,03480260, 6.7, 0.0, 4.4, 88.9, 0.0, 0.0, 0.0, 92.5, 7.5, 45.6 -7.374999999999998,5,a-pcom-i3,2021-22,Worcester - Woodland Academy,03480030, 1.7, 1.7, 20.3, 76.4, 0.0, 0.0, 0.0, 91.4, 8.6, 59.7 -2.749999999999999,2.75,a-pcom-i3,2021-22,Worcester - Worcester Arts Magnet School,03480225, 3.4, 0.0, 5.3, 91.2, 0.0, 0.0, 0.0, 92.4, 7.6, 41.1 -7.906249999999999,5,a-pcom-i3,2021-22,Worcester - Worcester East Middle,03480420, 8.8, 2.1, 14.5, 74.7, 0.0, 0.0, 0.0, 59.5, 40.5, 96.8 -2.6874999999999982,2.69,a-pcom-i3,2021-22,Worcester - Worcester Technical High,03480605, 3.6, 1.2, 3.9, 91.4, 0.0, 0.0, 0.0, 50.9, 49.1, 194.1 -1,1,a-pcom-i3,2021-22,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 12.5 -1,1,a-pcom-i3,2021-22,Wrentham - Charles E Roderick,03500010, 0.0, 0.3, 0.0, 98.0, 0.0, 0.0, 1.6, 93.0, 7.0, 61.3 -1,1,a-pcom-i3,2021-22,Wrentham - Delaney,03500003, 0.0, 2.0, 0.7, 96.9, 0.0, 0.0, 0.4, 94.9, 5.1, 90.8 -2.906249999999999,2.91,a-pcom-i3,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 3.7, 0.6, 3.7, 90.7, 0.0, 0.0, 1.2, 78.3, 21.7, 161.4 -1,1,a-pcom-i3,2020-21,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 19.0 -2.124999999999999,2.12,a-pcom-i3,2020-21,Abington - Abington High,00010505, 0.8, 1.5, 4.5, 93.2, 0.0, 0.0, 0.0, 73.4, 26.6, 66.5 -2.6250000000000018,2.63,a-pcom-i3,2020-21,Abington - Abington Middle School,00010405, 2.1, 0.0, 4.8, 91.6, 0.0, 0.0, 1.4, 78.3, 21.7, 70.6 -1,1,a-pcom-i3,2020-21,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.4, 1.6, 63.3 -1,1,a-pcom-i3,2020-21,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.6, 13.4, 37.3 -14.40625,5,a-pcom-i3,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 24.4, 7.4, 11.9, 53.9, 0.0, 0.0, 2.4, 72.6, 27.4, 83.9 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 2.2, 1.0, 96.3, 0.5, 0.0, 0.0, 75.3, 24.7, 200.7 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Acton-Boxborough - Blanchard Memorial School,06000005, 1.3, 2.7, 0.7, 95.3, 0.0, 0.0, 0.0, 87.8, 12.2, 75.4 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 2.5, 2.1, 95.4, 0.0, 0.0, 0.0, 91.0, 9.0, 48.1 -2.65625,2.66,a-pcom-i3,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 8.5, 0.0, 91.5, 0.0, 0.0, 0.0, 96.6, 3.4, 29.2 -4.21875,4.22,a-pcom-i3,2020-21,Acton-Boxborough - Luther Conant School,06000030, 2.0, 9.6, 2.0, 86.5, 0.0, 0.0, 0.0, 95.5, 4.5, 51.3 -1,1,a-pcom-i3,2020-21,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 1.8, 1.1, 97.1, 0.0, 0.0, 0.0, 92.9, 7.1, 56.1 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Acton-Boxborough - Merriam School,06000010, 0.0, 2.6, 1.8, 95.6, 0.0, 0.0, 0.0, 96.5, 3.5, 56.6 -4.187500000000002,4.19,a-pcom-i3,2020-21,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 10.6, 2.8, 86.6, 0.0, 0.0, 0.0, 93.3, 6.7, 35.7 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Acton-Boxborough - Raymond J Grey Junior High,06000405, 1.7, 3.1, 0.0, 94.3, 0.0, 0.0, 0.9, 83.0, 17.0, 117.3 -1,1,a-pcom-i3,2020-21,Acushnet - Acushnet Elementary School,00030025, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 92.1, 7.9, 63.5 -1,1,a-pcom-i3,2020-21,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.6, 23.4, 47.0 -2.0624999999999982,2.06,a-pcom-i3,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 4.0, 1.7, 93.4, 0.0, 0.0, 0.9, 59.8, 40.2, 115.0 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Agawam - Agawam Early Childhood Center,00050003, 0.3, 0.0, 4.4, 95.4, 0.0, 0.0, 0.0, 99.7, 0.3, 45.9 -1,1,a-pcom-i3,2020-21,Agawam - Agawam High,00050505, 1.3, 0.0, 1.3, 97.4, 0.0, 0.0, 0.0, 68.5, 31.5, 158.2 -1,1,a-pcom-i3,2020-21,Agawam - Agawam Junior High,00050405, 1.3, 0.0, 1.2, 97.5, 0.0, 0.0, 0.0, 71.8, 28.2, 86.2 -1,1,a-pcom-i3,2020-21,Agawam - Benjamin J Phelps,00050020, 0.2, 1.7, 0.0, 98.1, 0.0, 0.0, 0.0, 90.5, 9.5, 59.3 -1,1,a-pcom-i3,2020-21,Agawam - Clifford M Granger,00050010, 0.2, 0.0, 1.9, 97.9, 0.0, 0.0, 0.0, 96.1, 3.9, 54.0 -1,1,a-pcom-i3,2020-21,Agawam - James Clark School,00050030, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 96.6, 3.4, 62.6 -1,1,a-pcom-i3,2020-21,Agawam - Roberta G. Doering School,00050303, 0.2, 0.0, 1.3, 98.6, 0.0, 0.0, 0.0, 85.7, 14.3, 77.9 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Agawam - Robinson Park,00050025, 1.8, 0.0, 0.0, 96.6, 0.0, 0.0, 1.6, 92.7, 7.3, 63.3 -7.156250000000002,5,a-pcom-i3,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 9.7, 0.8, 12.4, 77.1, 0.0, 0.0, 0.0, 76.9, 23.1, 121.3 -1,1,a-pcom-i3,2020-21,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 39.9 -1,1,a-pcom-i3,2020-21,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 73.3, 26.7, 58.5 -1,1,a-pcom-i3,2020-21,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 42.0, 58.0, 6.9 -1,1,a-pcom-i3,2020-21,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.1, 27.9, 78.0 -1,1,a-pcom-i3,2020-21,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 48.1 -7.156250000000002,5,a-pcom-i3,2020-21,Amherst - Crocker Farm Elementary,00080009, 0.8, 3.4, 16.4, 77.1, 0.0, 0.0, 2.4, 89.3, 10.7, 83.6 -8.718750000000002,5,a-pcom-i3,2020-21,Amherst - Fort River Elementary,00080020, 3.6, 4.8, 17.1, 72.1, 0.0, 0.0, 2.4, 79.2, 20.8, 82.9 -10.3125,5,a-pcom-i3,2020-21,Amherst - Wildwood Elementary,00080050, 14.1, 3.9, 11.1, 67.0, 0.0, 0.0, 3.9, 80.7, 19.3, 77.9 -8.125,5,a-pcom-i3,2020-21,Amherst-Pelham - Amherst Regional High,06050505, 15.1, 1.3, 8.3, 74.0, 0.0, 0.0, 1.3, 65.6, 34.4, 152.3 -10.906250000000002,5,a-pcom-i3,2020-21,Amherst-Pelham - Amherst Regional Middle School,06050405, 10.5, 1.4, 20.6, 65.1, 0.0, 0.0, 2.3, 66.1, 33.9, 85.5 -2.96875,2.97,a-pcom-i3,2020-21,Andover - Andover High,00090505, 0.9, 2.8, 4.9, 90.5, 0.0, 0.5, 0.5, 70.0, 30.0, 216.7 -1.09375,1.09,a-pcom-i3,2020-21,Andover - Andover West Middle,00090310, 0.0, 1.2, 2.3, 96.5, 0.0, 0.0, 0.0, 82.9, 17.1, 86.1 -1.71875,1.72,a-pcom-i3,2020-21,Andover - Bancroft Elementary,00090003, 0.0, 4.4, 1.1, 94.5, 0.0, 0.0, 0.0, 93.9, 6.1, 90.7 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Andover - Doherty Middle,00090305, 0.0, 2.7, 1.3, 94.7, 0.0, 0.0, 1.3, 82.0, 18.0, 75.4 -2.250000000000001,2.25,a-pcom-i3,2020-21,Andover - Henry C Sanborn Elementary,00090010, 0.0, 3.6, 3.6, 92.8, 0.0, 0.0, 0.0, 94.6, 5.4, 55.5 -1.71875,1.72,a-pcom-i3,2020-21,Andover - High Plain Elementary,00090004, 0.0, 3.5, 2.0, 94.5, 0.0, 0.0, 0.0, 95.5, 4.5, 88.0 -6.5625,5,a-pcom-i3,2020-21,Andover - Shawsheen School,00090005, 0.0, 16.5, 4.5, 79.0, 0.0, 0.0, 0.0, 97.9, 2.1, 39.7 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Andover - South Elementary,00090020, 1.4, 2.7, 0.0, 95.9, 0.0, 0.0, 0.0, 97.2, 2.8, 71.1 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Andover - West Elementary,00090025, 0.0, 3.3, 2.0, 93.7, 1.0, 0.0, 0.0, 90.2, 9.8, 101.8 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Andover - Wood Hill Middle School,00090350, 0.0, 1.6, 1.6, 96.8, 0.0, 0.0, 0.0, 79.5, 20.5, 62.0 -5.218750000000001,5,a-pcom-i3,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 8.5, 1.4, 6.8, 83.3, 0.0, 0.0, 0.0, 75.5, 24.5, 57.7 -3.031250000000001,3.03,a-pcom-i3,2020-21,Arlington - Arlington High,00100505, 2.4, 1.9, 4.4, 90.3, 0.0, 0.0, 1.0, 57.9, 42.1, 160.1 -4.031250000000002,4.03,a-pcom-i3,2020-21,Arlington - Brackett,00100010, 1.6, 4.8, 3.2, 87.1, 0.0, 1.6, 1.6, 88.7, 11.3, 62.1 -2.437499999999999,2.44,a-pcom-i3,2020-21,Arlington - Cyrus E Dallin,00100025, 0.0, 6.3, 0.0, 92.2, 0.0, 0.0, 1.6, 92.5, 6.0, 64.0 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Arlington - Gibbs School,00100305, 2.8, 1.2, 0.0, 94.6, 0.0, 0.0, 1.4, 77.4, 22.6, 70.8 -3.5625000000000018,3.56,a-pcom-i3,2020-21,Arlington - Hardy,00100030, 4.6, 2.3, 4.6, 88.6, 0.0, 0.0, 0.0, 93.2, 6.8, 43.8 -2.3749999999999982,2.37,a-pcom-i3,2020-21,Arlington - John A Bishop,00100005, 1.9, 0.0, 3.8, 92.4, 0.0, 0.0, 1.9, 92.7, 7.3, 52.4 -1,1,a-pcom-i3,2020-21,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 93.9, 6.1, 64.2 -3.0937500000000018,3.09,a-pcom-i3,2020-21,Arlington - Menotomy Preschool,00100038, 0.0, 3.3, 0.0, 90.1, 0.0, 0.0, 6.6, 100.0, 0.0, 30.2 -2.718750000000001,2.72,a-pcom-i3,2020-21,Arlington - Ottoson Middle,00100410, 1.8, 5.1, 1.8, 91.3, 0.0, 0.0, 0.0, 72.8, 27.2, 111.6 -4.968750000000002,4.97,a-pcom-i3,2020-21,Arlington - Peirce,00100045, 5.3, 5.3, 2.7, 84.1, 0.0, 0.0, 2.7, 93.4, 6.6, 37.6 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Arlington - Thompson,00100050, 2.7, 2.7, 0.0, 94.7, 0.0, 0.0, 0.0, 83.7, 16.3, 67.4 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Ashburnham-Westminster - Briggs Elementary,06100025, 1.4, 0.0, 0.3, 95.7, 0.0, 0.0, 2.7, 86.2, 13.8, 74.0 -1,1,a-pcom-i3,2020-21,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 98.5, 1.5, 22.5 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Ashburnham-Westminster - Oakmont Regional High School,06100505, 3.9, 0.0, 0.3, 95.9, 0.0, 0.0, 0.0, 57.2, 42.8, 77.9 -1,1,a-pcom-i3,2020-21,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 74.0, 26.0, 57.2 -1,1,a-pcom-i3,2020-21,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 91.8, 8.2, 44.5 -1.09375,1.09,a-pcom-i3,2020-21,Ashland - Ashland High,00140505, 2.4, 0.0, 0.0, 96.5, 0.0, 0.0, 1.2, 62.5, 37.5, 84.7 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Ashland - Ashland Middle,00140405, 0.0, 2.7, 1.1, 96.3, 0.0, 0.0, 0.0, 67.7, 32.3, 68.5 -1,1,a-pcom-i3,2020-21,Ashland - David Mindess,00140015, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 83.6, 16.4, 60.3 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Ashland - Henry E Warren Elementary,00140010, 0.0, 3.7, 0.0, 96.3, 0.0, 0.0, 0.0, 96.7, 3.3, 80.8 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Ashland - William Pittaway Elementary,00140005, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 98.8, 1.2, 24.4 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.7, 0.0, 4.2, 95.1, 0.0, 0.0, 0.0, 51.1, 48.9, 142.0 -1,1,a-pcom-i3,2020-21,Athol-Royalston - Athol Community Elementary School,06150020, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 92.2, 7.8, 76.8 -1,1,a-pcom-i3,2020-21,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.9, 32.1, 49.9 -1,1,a-pcom-i3,2020-21,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 73.5, 26.5, 52.9 -1,1,a-pcom-i3,2020-21,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 18.2 -1.5625,1.56,a-pcom-i3,2020-21,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.7, 1.1, 0.0, 95.0, 1.1, 0.0, 1.1, 83.1, 16.9, 179.8 -1,1,a-pcom-i3,2020-21,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 98.0, 2.0, 48.9 -6.968749999999999,5,a-pcom-i3,2020-21,Attleboro - Attleboro Community Academy,00160515, 22.3, 0.0, 0.0, 77.7, 0.0, 0.0, 0.0, 68.8, 31.2, 4.5 -2.34375,2.34,a-pcom-i3,2020-21,Attleboro - Attleboro High,00160505, 2.0, 0.0, 5.1, 92.5, 0.0, 0.0, 0.5, 71.1, 28.9, 197.5 -1.71875,1.72,a-pcom-i3,2020-21,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 3.1, 94.5, 0.0, 0.0, 2.4, 81.5, 18.5, 63.8 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 3.0, 93.6, 0.0, 0.0, 3.4, 100.0, 0.0, 29.7 -1.40625,1.41,a-pcom-i3,2020-21,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 2.3, 2.3, 95.5, 0.0, 0.0, 0.0, 95.5, 4.5, 44.0 -2.6250000000000018,2.63,a-pcom-i3,2020-21,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 8.4, 91.6, 0.0, 0.0, 0.0, 90.8, 9.2, 47.6 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 1.3, 0.0, 96.1, 0.0, 0.0, 2.6, 92.4, 7.6, 76.4 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Attleboro - Robert J. Coelho Middle School,00160305, 2.8, 0.0, 1.8, 95.4, 0.0, 0.0, 0.0, 80.0, 20.0, 56.3 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.4, 2.4, 95.1, 0.0, 0.0, 0.0, 92.7, 4.9, 41.1 -1,1,a-pcom-i3,2020-21,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 1.0, 97.1, 1.9, 0.0, 0.0, 74.8, 25.2, 52.1 -1,1,a-pcom-i3,2020-21,Auburn - Auburn Middle,00170305, 0.0, 2.2, 0.8, 97.0, 0.0, 0.0, 0.0, 76.0, 24.0, 62.3 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Auburn - Auburn Senior High,00170505, 2.0, 0.4, 2.0, 94.7, 0.0, 0.0, 1.0, 69.9, 30.1, 102.2 -1,1,a-pcom-i3,2020-21,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 100.0, 0.0, 41.1 -1,1,a-pcom-i3,2020-21,Auburn - Pakachoag School,00170025, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 100.0, 0.0, 35.0 -2.875000000000001,2.88,a-pcom-i3,2020-21,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 9.2, 90.8, 0.0, 0.0, 0.0, 98.7, 1.3, 76.4 -4.187500000000002,4.19,a-pcom-i3,2020-21,Avon - Avon Middle High School,00180510, 4.5, 4.5, 4.5, 86.6, 0.0, 0.0, 0.0, 66.6, 33.4, 44.9 -1.25,1.25,a-pcom-i3,2020-21,Avon - Ralph D Butler,00180010, 3.9, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0, 94.1, 5.9, 50.7 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.8, 0.0, 3.6, 94.6, 0.0, 0.0, 0.0, 62.2, 37.8, 56.0 -2.749999999999999,2.75,a-pcom-i3,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.8, 0.0, 5.3, 91.2, 0.0, 0.0, 1.8, 73.5, 26.5, 56.7 -1,1,a-pcom-i3,2020-21,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 96.1, 3.9, 52.5 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 92.8, 7.2, 68.6 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 1.2, 0.0, 96.3, 0.0, 0.0, 2.5, 93.0, 7.0, 40.8 -1.8124999999999991,1.81,a-pcom-i3,2020-21,Barnstable - Barnstable High,00200505, 2.5, 1.2, 2.1, 94.2, 0.0, 0.0, 0.0, 67.4, 32.6, 242.3 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Barnstable - Barnstable Intermediate School,00200315, 1.0, 2.0, 0.0, 96.1, 0.0, 0.0, 1.0, 81.4, 18.6, 101.9 -1,1,a-pcom-i3,2020-21,Barnstable - Barnstable United Elementary School,00200050, 0.9, 0.0, 0.9, 97.3, 0.0, 0.0, 0.9, 89.6, 10.4, 110.3 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 2.5, 96.1, 1.5, 0.0, 0.0, 92.6, 7.4, 40.7 -1,1,a-pcom-i3,2020-21,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 100.0, 0.0, 36.0 -1.5625,1.56,a-pcom-i3,2020-21,Barnstable - Hyannis West Elementary,00200025, 0.0, 2.9, 2.1, 95.0, 0.0, 0.0, 0.0, 95.8, 4.2, 48.0 -1,1,a-pcom-i3,2020-21,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 30.8 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Barnstable - West Villages Elementary School,00200045, 3.6, 0.0, 1.8, 94.6, 0.0, 0.0, 0.0, 95.5, 4.5, 56.0 -11.09375,5,a-pcom-i3,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 17.1, 0.0, 18.4, 64.5, 0.0, 0.0, 0.0, 64.2, 35.8, 59.2 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Bedford - Bedford High,00230505, 3.2, 0.0, 3.0, 93.8, 0.0, 0.0, 0.0, 64.0, 36.0, 125.2 -2.437499999999999,2.44,a-pcom-i3,2020-21,Bedford - John Glenn Middle,00230305, 2.2, 2.0, 2.4, 92.2, 1.1, 0.0, 0.0, 75.9, 24.1, 90.0 -4.125000000000001,4.13,a-pcom-i3,2020-21,Bedford - Lt Elezer Davis,00230010, 4.1, 7.0, 1.0, 86.8, 0.0, 0.0, 1.0, 93.4, 6.6, 97.9 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Bedford - Lt Job Lane School,00230012, 1.1, 3.2, 1.1, 93.6, 0.0, 0.0, 1.1, 89.9, 10.1, 93.6 -1,1,a-pcom-i3,2020-21,Belchertown - Belchertown High,00240505, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 71.0, 29.0, 79.1 -1,1,a-pcom-i3,2020-21,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.6, 16.4, 57.3 -1,1,a-pcom-i3,2020-21,Belchertown - Cold Spring,00240005, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 96.4, 3.6, 38.7 -1,1,a-pcom-i3,2020-21,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 79.1, 20.9, 47.3 -1,1,a-pcom-i3,2020-21,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 61.1 -1,1,a-pcom-i3,2020-21,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 20.0 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Bellingham - Bellingham High School,00250505, 1.9, 1.9, 0.9, 95.4, 0.0, 0.0, 0.0, 68.1, 31.9, 107.6 -1,1,a-pcom-i3,2020-21,Bellingham - Bellingham Memorial School,00250315, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 78.3, 21.7, 84.9 -1,1,a-pcom-i3,2020-21,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 100.0, 0.0, 47.6 -1,1,a-pcom-i3,2020-21,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.0, 40.0, 15.0 -1,1,a-pcom-i3,2020-21,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 51.2 -2.281249999999999,2.28,a-pcom-i3,2020-21,Belmont - Belmont High,00260505, 0.9, 2.8, 2.7, 92.7, 0.0, 0.0, 0.9, 70.8, 29.2, 112.3 -2.7812500000000018,2.78,a-pcom-i3,2020-21,Belmont - Daniel Butler,00260015, 2.2, 2.5, 0.0, 91.1, 0.0, 0.0, 4.2, 88.0, 12.0, 40.7 -2.593749999999999,2.59,a-pcom-i3,2020-21,Belmont - Mary Lee Burbank,00260010, 4.0, 0.0, 2.1, 91.7, 0.0, 0.0, 2.1, 91.5, 8.5, 47.2 -1.875,1.88,a-pcom-i3,2020-21,Belmont - Roger E Wellington,00260035, 0.0, 3.6, 0.0, 94.0, 0.0, 0.0, 2.4, 90.6, 9.4, 78.8 -1,1,a-pcom-i3,2020-21,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 50.8 -5.343749999999998,5,a-pcom-i3,2020-21,Belmont - Winthrop L Chenery Middle,00260305, 3.1, 6.2, 2.3, 82.9, 0.0, 0.0, 5.5, 71.2, 28.8, 128.4 -16.4375,5,a-pcom-i3,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 41.0, 5.8, 5.8, 47.4, 0.0, 0.0, 0.0, 86.0, 14.0, 34.4 -1,1,a-pcom-i3,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 1.0, 1.0, 1.0, 97.1, 0.0, 0.0, 0.0, 88.5, 11.5, 104.1 -1,1,a-pcom-i3,2020-21,Berkley - Berkley Community School,00270010, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 95.4, 4.6, 64.6 -1,1,a-pcom-i3,2020-21,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.9, 23.1, 43.2 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.9, 96.2, 0.0, 0.0, 1.9, 74.6, 25.4, 52.7 -1,1,a-pcom-i3,2020-21,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 1.4, 97.2, 0.0, 0.0, 1.4, 67.5, 32.5, 72.7 -1,1,a-pcom-i3,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.4, 1.4, 0.0, 97.2, 0.0, 0.0, 0.0, 88.8, 11.2, 71.3 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,06180310, 1.7, 1.7, 1.7, 94.8, 0.0, 0.0, 0.0, 68.4, 31.6, 57.4 -1,1,a-pcom-i3,2020-21,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 31.4 -1,1,a-pcom-i3,2020-21,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 90.5, 9.5, 41.9 -1,1,a-pcom-i3,2020-21,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 74.7, 25.3, 70.4 -1,1,a-pcom-i3,2020-21,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 49.8 -1,1,a-pcom-i3,2020-21,Beverly - Beverly High,00300505, 1.3, 0.0, 0.5, 98.1, 0.0, 0.0, 0.0, 67.8, 32.2, 148.2 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Beverly - Beverly Middle School,00300305, 0.6, 0.6, 3.9, 94.8, 0.0, 0.0, 0.0, 75.2, 24.8, 153.9 -1,1,a-pcom-i3,2020-21,Beverly - Centerville Elementary,00300010, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 90.7, 9.3, 53.5 -1,1,a-pcom-i3,2020-21,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 68.3 -1,1,a-pcom-i3,2020-21,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 45.4 -1,1,a-pcom-i3,2020-21,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 39.7 -1,1,a-pcom-i3,2020-21,Beverly - North Beverly Elementary,00300040, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 94.2, 5.8, 51.9 -1,1,a-pcom-i3,2020-21,Billerica - Billerica Memorial High School,00310505, 0.4, 1.0, 1.3, 97.3, 0.0, 0.0, 0.0, 76.1, 23.9, 226.6 -1,1,a-pcom-i3,2020-21,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 96.1, 3.9, 33.9 -1,1,a-pcom-i3,2020-21,Billerica - Hajjar Elementary,00310026, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 94.3, 5.7, 44.4 -1,1,a-pcom-i3,2020-21,Billerica - John F Kennedy,00310012, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 91.8, 8.2, 48.1 -1,1,a-pcom-i3,2020-21,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.7, 18.3, 78.3 -1.40625,1.41,a-pcom-i3,2020-21,Billerica - Marshall Middle School,00310305, 3.4, 1.1, 0.0, 95.5, 0.0, 0.0, 0.0, 79.9, 20.1, 88.9 -1,1,a-pcom-i3,2020-21,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 92.9, 7.1, 75.1 -1,1,a-pcom-i3,2020-21,Billerica - Thomas Ditson,00310005, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 95.7, 4.3, 69.8 -1,1,a-pcom-i3,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 57.6, 42.4, 166.5 -1,1,a-pcom-i3,2020-21,Blackstone-Millville - A F Maloney,06220015, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 93.4, 6.6, 31.9 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 61.3, 38.7, 52.5 -2.7812500000000018,2.78,a-pcom-i3,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 8.9, 91.1, 0.0, 0.0, 0.0, 84.3, 15.7, 44.7 -1,1,a-pcom-i3,2020-21,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 94.4, 5.6, 23.4 -1,1,a-pcom-i3,2020-21,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 40.0 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 2.6, 2.6, 1.8, 92.1, 0.0, 0.0, 0.9, 52.0, 48.0, 114.1 -14.187499999999998,5,a-pcom-i3,2020-21,Boston - Another Course To College,00350541, 33.3, 6.1, 3.0, 54.6, 0.0, 0.0, 3.0, 57.6, 42.4, 33.0 -17.40625,5,a-pcom-i3,2020-21,Boston - Baldwin Early Learning Center,00350003, 18.2, 19.3, 18.2, 44.3, 0.0, 0.0, 0.0, 94.3, 5.7, 44.0 -5.531250000000001,5,a-pcom-i3,2020-21,Boston - Beethoven,00350021, 9.2, 2.8, 5.8, 82.3, 0.0, 0.0, 0.0, 87.0, 13.0, 43.5 -16.968749999999996,5,a-pcom-i3,2020-21,Boston - Blackstone,00350390, 26.7, 1.9, 23.7, 45.7, 1.0, 0.0, 1.0, 81.5, 18.5, 102.7 -24.781249999999996,5,a-pcom-i3,2020-21,Boston - Boston Adult Academy,00350548, 55.2, 10.3, 10.3, 20.7, 0.0, 3.5, 0.0, 51.7, 48.3, 29.0 -16.499999999999996,5,a-pcom-i3,2020-21,Boston - Boston Arts Academy,00350546, 31.2, 4.0, 17.6, 47.2, 0.0, 0.0, 0.0, 64.8, 35.2, 62.5 -16.6875,5,a-pcom-i3,2020-21,Boston - Boston Collaborative High School,00350755, 23.3, 4.5, 25.6, 46.6, 0.0, 0.0, 0.0, 68.6, 31.4, 22.3 -18.4375,5,a-pcom-i3,2020-21,Boston - Boston Community Leadership Academy,00350558, 39.3, 7.5, 12.2, 41.0, 0.0, 0.0, 0.0, 68.1, 31.9, 73.8 -15.21875,5,a-pcom-i3,2020-21,Boston - Boston International High School,00350507, 20.8, 2.4, 25.6, 51.3, 0.0, 0.0, 0.0, 60.7, 39.3, 62.6 -10.249999999999998,5,a-pcom-i3,2020-21,Boston - Boston Latin,00350560, 18.0, 7.4, 6.2, 67.2, 0.0, 0.6, 0.6, 58.4, 41.6, 162.0 -13.125,5,a-pcom-i3,2020-21,Boston - Boston Latin Academy,00350545, 19.6, 13.1, 8.6, 58.0, 0.0, 0.0, 0.8, 63.3, 36.7, 122.5 -13.687499999999998,5,a-pcom-i3,2020-21,Boston - Boston Teachers Union School,00350012, 24.6, 3.2, 16.1, 56.2, 0.0, 0.0, 0.0, 84.0, 16.0, 31.1 -14.71875,5,a-pcom-i3,2020-21,Boston - Brighton High,00350505, 26.4, 3.6, 17.0, 52.9, 0.0, 0.0, 0.0, 64.5, 35.5, 83.3 -13.03125,5,a-pcom-i3,2020-21,Boston - Carter School,00350036, 37.5, 4.2, 0.0, 58.3, 0.0, 0.0, 0.0, 83.3, 16.7, 24.0 -24.03125,5,a-pcom-i3,2020-21,Boston - Charles H Taylor,00350054, 67.3, 5.9, 3.6, 23.1, 0.0, 0.0, 0.0, 90.5, 9.5, 55.0 -15.249999999999998,5,a-pcom-i3,2020-21,Boston - Charles Sumner,00350052, 23.9, 2.9, 22.0, 51.2, 0.0, 0.0, 0.0, 93.7, 6.3, 68.3 -13.96875,5,a-pcom-i3,2020-21,Boston - Charlestown High,00350515, 30.7, 6.5, 6.9, 55.3, 0.6, 0.0, 0.0, 63.9, 36.1, 154.9 -14.187499999999998,5,a-pcom-i3,2020-21,Boston - Clarence R Edwards Middle,00350430, 26.1, 6.4, 12.9, 54.6, 0.0, 0.0, 0.0, 63.5, 36.5, 46.6 -21.812499999999996,5,a-pcom-i3,2020-21,Boston - Community Academy,00350518, 35.7, 19.5, 9.7, 30.2, 4.9, 0.0, 0.0, 64.3, 35.7, 20.5 -16.4375,5,a-pcom-i3,2020-21,Boston - Community Academy of Science and Health,00350581, 46.2, 3.2, 3.2, 47.4, 0.0, 0.0, 0.0, 63.3, 36.7, 62.7 -12.593749999999998,5,a-pcom-i3,2020-21,Boston - Condon K-8,00350146, 26.0, 3.7, 10.6, 59.7, 0.0, 0.0, 0.0, 82.9, 17.1, 120.9 -11.75,5,a-pcom-i3,2020-21,Boston - Curley K-8 School,00350020, 17.1, 1.5, 18.3, 62.4, 0.6, 0.0, 0.0, 87.7, 12.3, 162.0 -8.937499999999998,5,a-pcom-i3,2020-21,Boston - Curtis Guild,00350062, 15.2, 2.2, 11.2, 71.4, 0.0, 0.0, 0.0, 85.9, 14.1, 44.8 -10.718749999999998,5,a-pcom-i3,2020-21,Boston - Dante Alighieri Montessori School,00350066, 6.5, 0.0, 27.8, 65.7, 0.0, 0.0, 0.0, 85.3, 14.7, 15.3 -22.593749999999996,5,a-pcom-i3,2020-21,Boston - David A Ellis,00350072, 53.9, 3.4, 13.4, 27.7, 1.7, 0.0, 0.0, 79.1, 20.9, 59.6 -17.46875,5,a-pcom-i3,2020-21,Boston - Dearborn,00350074, 38.7, 4.1, 11.7, 44.1, 1.4, 0.0, 0.0, 66.1, 33.9, 72.5 -10.46875,5,a-pcom-i3,2020-21,Boston - Dennis C Haley,00350077, 19.1, 9.6, 4.8, 66.5, 0.0, 0.0, 0.0, 88.0, 12.0, 62.7 -9.468749999999998,5,a-pcom-i3,2020-21,Boston - Donald Mckay,00350080, 4.3, 6.4, 18.6, 69.7, 0.0, 0.0, 1.1, 79.3, 20.7, 94.1 -20.718749999999996,5,a-pcom-i3,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 52.2, 4.3, 9.8, 33.7, 0.0, 0.0, 0.0, 89.1, 10.9, 46.0 -8.1875,5,a-pcom-i3,2020-21,Boston - Dr. William Henderson Lower,00350266, 19.2, 3.5, 3.5, 73.8, 0.0, 0.0, 0.0, 80.8, 17.4, 57.3 -8.937499999999998,5,a-pcom-i3,2020-21,Boston - Dr. William Henderson Upper,00350426, 17.6, 6.0, 5.0, 71.4, 0.0, 0.0, 0.0, 76.2, 23.8, 100.5 -20.28125,5,a-pcom-i3,2020-21,Boston - ELC - West Zone,00350006, 40.5, 2.7, 18.9, 35.1, 2.7, 0.0, 0.0, 86.5, 13.5, 37.0 -16.0625,5,a-pcom-i3,2020-21,Boston - East Boston Early Childhood Center,00350009, 18.3, 4.1, 26.9, 48.6, 0.0, 2.1, 0.0, 92.5, 7.5, 48.3 -9.656250000000002,5,a-pcom-i3,2020-21,Boston - East Boston High,00350530, 9.3, 3.1, 18.4, 69.1, 0.0, 0.0, 0.0, 57.3, 42.7, 128.6 -13.8125,5,a-pcom-i3,2020-21,Boston - Edison K-8,00350375, 23.2, 5.4, 15.6, 55.8, 0.0, 0.0, 0.0, 77.5, 22.5, 102.3 -12.906249999999998,5,a-pcom-i3,2020-21,Boston - Edward Everett,00350088, 25.3, 8.0, 5.3, 58.7, 0.0, 0.0, 2.7, 88.0, 12.0, 37.5 -11.28125,5,a-pcom-i3,2020-21,Boston - Eliot Elementary,00350096, 17.8, 10.1, 7.1, 63.9, 0.0, 0.0, 1.2, 85.8, 14.2, 84.4 -13.8125,5,a-pcom-i3,2020-21,Boston - Ellis Mendell,00350100, 15.6, 3.2, 25.4, 55.8, 0.0, 0.0, 0.0, 94.0, 6.0, 38.5 -16.84375,5,a-pcom-i3,2020-21,Boston - Excel High School,00350522, 35.8, 10.5, 6.3, 46.1, 1.3, 0.0, 0.0, 63.8, 36.2, 75.9 -17.84375,5,a-pcom-i3,2020-21,Boston - Fenway High School,00350540, 34.5, 3.7, 17.1, 42.9, 0.0, 1.9, 0.0, 58.1, 41.9, 53.6 -11.3125,5,a-pcom-i3,2020-21,Boston - Franklin D Roosevelt,00350116, 24.2, 3.7, 8.3, 63.8, 0.0, 0.0, 0.0, 92.6, 7.4, 53.8 -14.781249999999998,5,a-pcom-i3,2020-21,Boston - Gardner Pilot Academy,00350326, 23.1, 6.0, 18.1, 52.7, 0.0, 0.0, 0.0, 87.9, 12.1, 49.6 -11.0,5,a-pcom-i3,2020-21,Boston - George H Conley,00350122, 25.1, 2.5, 7.5, 64.8, 0.0, 0.0, 0.0, 84.9, 15.1, 39.8 -22.1875,5,a-pcom-i3,2020-21,Boston - Greater Egleston Community High School,00350543, 41.9, 3.2, 25.8, 29.0, 0.0, 0.0, 0.0, 74.2, 25.8, 15.5 -9.624999999999998,5,a-pcom-i3,2020-21,Boston - Harvard-Kent,00350200, 12.5, 13.1, 5.2, 69.2, 0.0, 0.0, 0.0, 77.4, 22.6, 76.2 -26.40625,5,a-pcom-i3,2020-21,Boston - Haynes Early Education Center,00350010, 68.0, 2.1, 14.4, 15.5, 0.0, 0.0, 0.0, 80.4, 19.6, 48.5 -17.34375,5,a-pcom-i3,2020-21,Boston - Henry Grew,00350135, 48.4, 0.0, 7.1, 44.5, 0.0, 0.0, 0.0, 86.4, 13.6, 25.8 -18.34375,5,a-pcom-i3,2020-21,Boston - Higginson,00350015, 31.2, 8.3, 19.3, 41.3, 0.0, 0.0, 0.0, 89.0, 11.0, 36.3 -22.34375,5,a-pcom-i3,2020-21,Boston - Higginson/Lewis K-8,00350377, 61.6, 1.7, 6.6, 28.5, 0.0, 0.0, 1.7, 78.1, 21.9, 60.3 -8.90625,5,a-pcom-i3,2020-21,Boston - Horace Mann School for the Deaf,00350750, 10.7, 7.1, 10.7, 71.5, 0.0, 0.0, 0.0, 84.0, 16.0, 84.3 -10.406249999999998,5,a-pcom-i3,2020-21,Boston - Hugh Roe O'Donnell,00350141, 6.2, 3.1, 21.0, 66.7, 3.1, 0.0, 0.0, 84.6, 15.4, 32.5 -14.312499999999998,5,a-pcom-i3,2020-21,Boston - Jackson Mann,00350013, 28.8, 5.2, 11.8, 54.2, 0.0, 0.0, 0.0, 78.1, 21.9, 101.8 -17.53125,5,a-pcom-i3,2020-21,Boston - James J Chittick,00350154, 40.6, 5.2, 6.9, 43.9, 1.7, 0.0, 1.7, 89.7, 10.3, 58.2 -8.34375,5,a-pcom-i3,2020-21,Boston - James Otis,00350156, 8.9, 5.9, 11.9, 73.3, 0.0, 0.0, 0.0, 84.9, 15.1, 50.6 -20.031249999999996,5,a-pcom-i3,2020-21,Boston - James P Timilty Middle,00350485, 43.5, 0.0, 20.6, 35.9, 0.0, 0.0, 0.0, 67.5, 30.2, 43.7 -16.53125,5,a-pcom-i3,2020-21,Boston - James W Hennigan,00350153, 31.3, 0.7, 21.0, 47.1, 0.0, 0.0, 0.0, 83.5, 16.5, 86.3 -17.65625,5,a-pcom-i3,2020-21,Boston - Jeremiah E Burke High,00350525, 49.2, 0.0, 7.3, 43.5, 0.0, 0.0, 0.0, 59.5, 40.5, 68.4 -15.46875,5,a-pcom-i3,2020-21,Boston - John D Philbrick,00350172, 40.1, 4.0, 5.3, 50.5, 0.0, 0.0, 0.0, 79.3, 20.7, 24.9 -10.46875,5,a-pcom-i3,2020-21,Boston - John F Kennedy,00350166, 22.1, 0.0, 11.4, 66.5, 0.0, 0.0, 0.0, 79.5, 20.5, 43.7 -15.03125,5,a-pcom-i3,2020-21,Boston - John W McCormack,00350179, 28.2, 4.4, 15.5, 51.9, 0.0, 0.0, 0.0, 73.5, 26.5, 45.2 -12.25,5,a-pcom-i3,2020-21,Boston - John Winthrop,00350180, 27.5, 2.9, 8.8, 60.8, 0.0, 0.0, 0.0, 85.3, 14.7, 34.0 -22.124999999999996,5,a-pcom-i3,2020-21,Boston - Joseph J Hurley,00350182, 9.0, 0.0, 61.8, 29.2, 0.0, 0.0, 0.0, 88.8, 11.2, 44.5 -15.5,5,a-pcom-i3,2020-21,Boston - Joseph Lee,00350183, 39.1, 3.3, 6.6, 50.4, 0.7, 0.0, 0.0, 77.3, 22.7, 149.8 -10.187499999999998,5,a-pcom-i3,2020-21,Boston - Joseph P Manning,00350184, 29.2, 0.0, 3.4, 67.4, 0.0, 0.0, 0.0, 81.1, 18.9, 29.2 -11.75,5,a-pcom-i3,2020-21,Boston - Joseph P Tynan,00350181, 26.1, 0.0, 11.4, 62.4, 0.0, 0.0, 0.0, 90.2, 9.8, 61.1 -19.468749999999996,5,a-pcom-i3,2020-21,Boston - Josiah Quincy,00350286, 15.7, 44.0, 2.6, 37.7, 0.0, 0.0, 0.0, 86.1, 13.9, 114.7 -5.343749999999998,5,a-pcom-i3,2020-21,Boston - Joyce Kilmer,00350190, 14.1, 0.0, 3.0, 82.9, 0.0, 0.0, 0.0, 82.6, 17.4, 65.9 -21.6875,5,a-pcom-i3,2020-21,Boston - King K-8,00350376, 58.1, 2.0, 9.2, 30.6, 0.0, 0.0, 0.0, 76.3, 23.7, 98.0 -17.84375,5,a-pcom-i3,2020-21,Boston - Lee Academy,00350001, 32.4, 7.0, 17.8, 42.9, 0.0, 0.0, 0.0, 82.6, 17.4, 43.2 -20.90625,5,a-pcom-i3,2020-21,Boston - Lilla G. Frederick Middle School,00350383, 42.8, 3.7, 20.4, 33.1, 0.0, 0.0, 0.0, 69.5, 30.5, 81.3 -7.1875,5,a-pcom-i3,2020-21,Boston - Lyndon,00350262, 14.5, 0.0, 6.2, 77.0, 1.0, 0.0, 1.4, 84.8, 15.2, 69.0 -9.500000000000002,5,a-pcom-i3,2020-21,Boston - Lyon K-8,00350004, 17.7, 7.6, 5.1, 69.6, 0.0, 0.0, 0.0, 74.7, 25.3, 39.4 -15.375,5,a-pcom-i3,2020-21,Boston - Lyon Upper 9-12,00350655, 32.3, 3.9, 10.4, 50.8, 0.0, 2.6, 0.0, 53.9, 46.1, 38.4 -16.187499999999996,5,a-pcom-i3,2020-21,Boston - Madison Park High,00350537, 36.4, 1.3, 13.1, 48.2, 0.0, 1.0, 0.0, 51.8, 48.2, 198.0 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Boston - Manassah E Bradley,00350215, 3.0, 2.7, 0.0, 94.3, 0.0, 0.0, 0.0, 87.8, 12.2, 33.3 -16.187499999999996,5,a-pcom-i3,2020-21,Boston - Margarita Muniz Academy,00350549, 0.0, 2.9, 48.9, 48.2, 0.0, 0.0, 0.0, 67.6, 32.4, 34.7 -12.6875,5,a-pcom-i3,2020-21,Boston - Mario Umana Academy,00350656, 10.9, 2.0, 26.7, 59.4, 1.0, 0.0, 0.0, 79.7, 20.3, 101.0 -20.093749999999996,5,a-pcom-i3,2020-21,Boston - Mather,00350227, 46.1, 14.0, 4.2, 35.7, 0.0, 0.0, 0.0, 80.5, 19.5, 71.4 -17.124999999999996,5,a-pcom-i3,2020-21,Boston - Mattahunt Elementary School,00350016, 44.4, 1.2, 9.2, 45.2, 0.0, 0.0, 0.0, 86.2, 13.8, 86.7 -15.249999999999998,5,a-pcom-i3,2020-21,Boston - Maurice J Tobin,00350229, 15.9, 4.1, 28.8, 51.2, 0.0, 0.0, 0.0, 85.7, 14.3, 48.8 -14.624999999999998,5,a-pcom-i3,2020-21,Boston - Michael J Perkins,00350231, 27.4, 6.1, 13.4, 53.2, 0.0, 0.0, 0.0, 87.8, 12.2, 32.9 -18.999999999999996,5,a-pcom-i3,2020-21,Boston - Mildred Avenue K-8,00350378, 43.2, 3.8, 13.9, 39.2, 0.0, 0.0, 0.0, 79.5, 20.5, 86.2 -15.249999999999998,5,a-pcom-i3,2020-21,Boston - Mission Hill School,00350382, 37.6, 0.7, 10.5, 51.2, 0.0, 0.0, 0.0, 82.1, 17.9, 40.5 -12.875,5,a-pcom-i3,2020-21,Boston - Mozart,00350237, 21.1, 3.1, 17.0, 58.8, 0.0, 0.0, 0.0, 87.6, 12.4, 32.3 -17.09375,5,a-pcom-i3,2020-21,Boston - Nathan Hale,00350243, 40.0, 0.0, 10.6, 45.3, 4.0, 0.0, 0.0, 84.0, 16.0, 25.0 -15.0,5,a-pcom-i3,2020-21,Boston - New Mission High School,00350542, 29.5, 10.7, 7.8, 52.0, 0.0, 0.0, 0.0, 62.3, 37.7, 51.4 -16.968749999999996,5,a-pcom-i3,2020-21,Boston - O W Holmes,00350138, 47.8, 3.2, 3.3, 45.7, 0.0, 0.0, 0.0, 77.6, 22.4, 59.7 -18.25,5,a-pcom-i3,2020-21,Boston - O'Bryant School Math/Science,00350575, 35.8, 6.8, 14.9, 41.6, 0.0, 0.0, 0.8, 59.7, 40.3, 124.2 -7.65625,5,a-pcom-i3,2020-21,Boston - Oliver Hazard Perry,00350255, 14.0, 0.0, 10.5, 75.5, 0.0, 0.0, 0.0, 88.8, 11.2, 35.7 -14.5625,5,a-pcom-i3,2020-21,Boston - Orchard Gardens,00350257, 28.7, 1.7, 14.6, 53.4, 0.0, 0.0, 1.7, 77.9, 22.1, 120.1 -10.562499999999998,5,a-pcom-i3,2020-21,Boston - Patrick J Kennedy,00350264, 4.7, 2.4, 26.7, 66.2, 0.0, 0.0, 0.0, 92.9, 7.1, 42.2 -14.343749999999998,5,a-pcom-i3,2020-21,Boston - Paul A Dever,00350268, 28.6, 1.5, 15.8, 54.1, 0.0, 0.0, 0.0, 78.9, 21.1, 66.4 -15.96875,5,a-pcom-i3,2020-21,Boston - Pauline Agassiz Shaw Elementary School,00350014, 33.3, 0.0, 8.9, 48.9, 4.4, 0.0, 4.4, 84.5, 15.5, 22.5 -8.531249999999998,5,a-pcom-i3,2020-21,Boston - Phineas Bates,00350278, 15.0, 2.4, 9.8, 72.7, 0.0, 0.0, 0.0, 85.3, 14.7, 40.9 -20.4375,5,a-pcom-i3,2020-21,Boston - Quincy Upper School,00350565, 23.9, 28.7, 12.8, 34.6, 0.0, 0.0, 0.0, 67.0, 33.0, 62.7 -21.437499999999996,5,a-pcom-i3,2020-21,Boston - Rafael Hernandez,00350691, 5.5, 0.0, 63.1, 31.4, 0.0, 0.0, 0.0, 84.1, 15.9, 54.3 -12.71875,5,a-pcom-i3,2020-21,Boston - Richard J Murphy,00350240, 25.5, 8.6, 6.7, 59.3, 0.0, 0.0, 0.0, 71.7, 28.3, 122.7 -17.375,5,a-pcom-i3,2020-21,Boston - Roger Clap,00350298, 48.5, 2.0, 5.1, 44.4, 0.0, 0.0, 0.0, 77.9, 22.1, 24.4 -14.031249999999998,5,a-pcom-i3,2020-21,Boston - Samuel Adams,00350302, 14.7, 2.0, 28.3, 55.1, 0.0, 0.0, 0.0, 86.3, 13.7, 51.2 -18.687499999999996,5,a-pcom-i3,2020-21,Boston - Samuel W Mason,00350304, 48.3, 1.9, 7.7, 40.2, 1.9, 0.0, 0.0, 85.3, 14.7, 52.1 -20.0625,5,a-pcom-i3,2020-21,Boston - Sarah Greenwood,00350308, 17.8, 1.5, 44.9, 35.8, 0.0, 0.0, 0.0, 79.1, 20.9, 64.6 -13.65625,5,a-pcom-i3,2020-21,Boston - Snowden International School at Copley,00350690, 28.1, 5.3, 10.3, 56.3, 0.0, 0.0, 0.0, 57.6, 42.4, 56.9 -13.8125,5,a-pcom-i3,2020-21,Boston - TechBoston Academy,00350657, 37.8, 0.9, 5.5, 55.8, 0.0, 0.0, 0.0, 60.6, 39.4, 113.5 -14.624999999999998,5,a-pcom-i3,2020-21,Boston - The English High,00350535, 23.9, 4.4, 17.4, 53.2, 0.0, 0.0, 1.1, 60.7, 39.3, 91.9 -12.71875,5,a-pcom-i3,2020-21,Boston - Thomas J Kenny,00350328, 25.9, 7.0, 7.0, 59.3, 0.0, 0.0, 0.9, 81.1, 18.9, 57.4 -14.031249999999998,5,a-pcom-i3,2020-21,Boston - UP Academy Holland,00350167, 25.8, 6.7, 12.4, 55.1, 0.0, 0.0, 0.0, 84.3, 15.7, 89.0 -7.218749999999998,5,a-pcom-i3,2020-21,Boston - Warren-Prescott,00350346, 14.6, 1.2, 7.3, 76.9, 0.0, 0.0, 0.0, 87.6, 12.4, 82.1 -13.0,5,a-pcom-i3,2020-21,Boston - Washington Irving Middle,00350445, 28.7, 4.1, 8.9, 58.4, 0.0, 0.0, 0.0, 76.4, 23.6, 48.8 -12.156249999999998,5,a-pcom-i3,2020-21,Boston - William E Russell,00350366, 19.3, 3.1, 16.5, 61.1, 0.0, 0.0, 0.0, 86.9, 13.1, 48.4 -19.624999999999996,5,a-pcom-i3,2020-21,Boston - William Ellery Channing,00350360, 43.9, 5.2, 12.9, 37.2, 0.9, 0.0, 0.0, 82.6, 17.4, 38.7 -11.71875,5,a-pcom-i3,2020-21,Boston - William H Ohrenberger,00350258, 25.4, 0.7, 9.9, 62.5, 0.0, 0.0, 1.5, 69.0, 31.0, 68.8 -17.25,5,a-pcom-i3,2020-21,Boston - William McKinley,00350363, 43.0, 1.1, 9.9, 44.8, 0.0, 0.6, 0.6, 54.3, 45.7, 174.0 -17.124999999999996,5,a-pcom-i3,2020-21,Boston - William Monroe Trotter,00350370, 51.1, 1.9, 1.9, 45.2, 0.0, 0.0, 0.0, 86.1, 13.9, 53.8 -14.6875,5,a-pcom-i3,2020-21,Boston - Winship Elementary,00350374, 25.8, 3.0, 18.2, 53.0, 0.0, 0.0, 0.0, 84.9, 15.1, 33.0 -21.906249999999996,5,a-pcom-i3,2020-21,Boston - Young Achievers,00350380, 56.7, 1.0, 12.4, 29.9, 0.0, 0.0, 0.0, 80.1, 19.9, 96.9 -13.093749999999998,5,a-pcom-i3,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 14.9, 4.8, 16.4, 58.1, 0.0, 0.0, 5.8, 67.1, 32.9, 103.2 -19.125,5,a-pcom-i3,2020-21,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 32.2, 7.8, 15.5, 38.8, 1.9, 0.0, 3.9, 67.1, 32.9, 51.6 -16.15625,5,a-pcom-i3,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 30.8, 5.7, 15.2, 48.3, 0.0, 0.0, 0.0, 69.3, 30.7, 71.7 -11.09375,5,a-pcom-i3,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 23.0, 5.0, 5.0, 64.5, 0.0, 0.0, 2.5, 66.8, 33.2, 79.9 -8.999999999999998,5,a-pcom-i3,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 19.4, 4.5, 4.2, 71.2, 0.0, 0.0, 0.6, 81.9, 18.1, 154.5 -1,1,a-pcom-i3,2020-21,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 67.4, 32.6, 57.6 -1,1,a-pcom-i3,2020-21,Bourne - Bourne Intermediate School,00360030, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 91.9, 8.1, 53.1 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Bourne - Bourne Middle School,00360325, 0.0, 1.5, 0.0, 94.1, 0.0, 0.0, 4.4, 80.8, 19.2, 65.1 -1,1,a-pcom-i3,2020-21,Bourne - Bournedale Elementary School,00360005, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 100.0, 0.0, 62.0 -1,1,a-pcom-i3,2020-21,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 95.8, 4.2, 52.3 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Boxford - Spofford Pond,00380013, 0.0, 0.0, 6.2, 93.8, 0.0, 0.0, 0.0, 95.1, 4.9, 64.7 -1,1,a-pcom-i3,2020-21,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 90.3, 9.7, 51.7 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Braintree - Braintree High,00400505, 1.0, 1.0, 0.5, 96.7, 0.0, 0.3, 0.5, 69.8, 30.2, 202.2 -1,1,a-pcom-i3,2020-21,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.6, 1.4, 34.9 -1,1,a-pcom-i3,2020-21,Braintree - East Middle School,00400305, 0.9, 0.0, 0.9, 98.3, 0.0, 0.0, 0.0, 78.5, 21.5, 115.0 -1,1,a-pcom-i3,2020-21,Braintree - Highlands,00400015, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 91.5, 8.5, 41.1 -1,1,a-pcom-i3,2020-21,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 51.3 -1,1,a-pcom-i3,2020-21,Braintree - Liberty,00400025, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 97.4, 2.6, 39.2 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Braintree - Mary E Flaherty School,00400020, 1.8, 1.1, 0.0, 95.3, 0.0, 0.0, 1.8, 98.2, 1.8, 55.3 -2.281249999999999,2.28,a-pcom-i3,2020-21,Braintree - Monatiquot Kindergarten Center,00400009, 3.6, 0.0, 0.0, 92.7, 0.0, 3.6, 0.0, 97.5, 2.5, 27.6 -1,1,a-pcom-i3,2020-21,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.6, 22.4, 80.8 -1,1,a-pcom-i3,2020-21,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 38.7 -1,1,a-pcom-i3,2020-21,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 97.1, 2.9, 50.9 -9.781249999999998,5,a-pcom-i3,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 23.9, 1.6, 4.1, 68.7, 0.0, 0.0, 1.6, 74.2, 24.2, 61.0 -1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.8, 20.2, 44.6 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 2.4, 0.0, 0.8, 96.8, 0.0, 0.0, 0.0, 68.0, 32.0, 123.8 -1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 40.4 -1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 32.6 -1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.9, 0.0, 0.9, 97.4, 0.0, 0.0, 0.9, 94.8, 5.2, 114.4 -1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.3, 15.7, 59.3 -1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.6, 20.4, 7.4 -1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Williams Intermediate School,06250300, 1.5, 0.0, 0.0, 97.1, 0.0, 0.0, 1.5, 86.0, 14.0, 67.8 -1,1,a-pcom-i3,2020-21,Brimfield - Brimfield Elementary,00430005, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 92.1, 7.9, 42.1 -1,1,a-pcom-i3,2020-21,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 59.0, 41.0, 51.2 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 2.0, 0.0, 1.3, 95.3, 1.3, 0.0, 0.0, 62.8, 37.2, 149.3 -2.875000000000001,2.88,a-pcom-i3,2020-21,Brockton - Ashfield Middle School,00440421, 9.2, 0.0, 0.0, 90.8, 0.0, 0.0, 0.0, 84.6, 15.4, 64.2 -3.3124999999999982,3.31,a-pcom-i3,2020-21,Brockton - Barrett Russell Early Childhood Center,00440008, 5.3, 1.7, 3.6, 89.4, 0.0, 0.0, 0.0, 97.8, 2.2, 60.3 -11.062500000000002,5,a-pcom-i3,2020-21,Brockton - Brockton Champion High School,00440515, 29.2, 0.0, 2.7, 64.6, 0.0, 0.0, 3.5, 66.0, 34.0, 37.3 -7.8125,5,a-pcom-i3,2020-21,Brockton - Brockton High,00440505, 17.8, 2.1, 3.0, 75.0, 0.0, 0.5, 1.5, 63.7, 36.3, 385.9 -5.437500000000002,5,a-pcom-i3,2020-21,Brockton - Brookfield,00440010, 12.7, 0.0, 4.7, 82.6, 0.0, 0.0, 0.0, 95.8, 4.2, 64.0 -5.46875,5,a-pcom-i3,2020-21,Brockton - Downey,00440110, 11.8, 1.1, 2.3, 82.5, 1.1, 0.0, 1.1, 93.4, 6.6, 88.2 -7.062499999999998,5,a-pcom-i3,2020-21,Brockton - Dr W Arnone Community School,00440001, 13.7, 1.0, 5.8, 77.4, 0.0, 0.0, 2.1, 93.5, 6.5, 103.5 -5.031249999999998,5,a-pcom-i3,2020-21,Brockton - East Middle School,00440405, 13.0, 1.4, 1.4, 83.9, 0.0, 0.0, 0.3, 65.5, 34.5, 70.9 -4.562499999999998,4.56,a-pcom-i3,2020-21,Brockton - Edgar B Davis,00440023, 8.7, 0.0, 2.4, 85.4, 0.0, 0.0, 3.5, 73.5, 26.5, 84.9 -15.1875,5,a-pcom-i3,2020-21,Brockton - Edison Academy,00440520, 46.6, 0.0, 1.4, 51.4, 0.0, 0.0, 0.6, 61.2, 38.8, 17.8 -8.624999999999998,5,a-pcom-i3,2020-21,Brockton - Frederick Douglass Academy,00440080, 10.6, 0.0, 8.8, 72.4, 5.9, 0.0, 2.4, 66.5, 33.5, 17.0 -7.374999999999998,5,a-pcom-i3,2020-21,Brockton - Gilmore Elementary School,00440055, 21.5, 0.0, 0.0, 76.4, 0.0, 0.0, 2.1, 88.4, 11.6, 46.5 -5.437500000000002,5,a-pcom-i3,2020-21,Brockton - Hancock,00440045, 7.6, 0.0, 6.4, 82.6, 0.6, 0.0, 2.8, 92.8, 7.2, 47.2 -8.937499999999998,5,a-pcom-i3,2020-21,Brockton - Huntington Therapeutic Day School,00440400, 25.6, 0.0, 3.0, 71.4, 0.0, 0.0, 0.0, 62.7, 37.3, 50.4 -7.374999999999998,5,a-pcom-i3,2020-21,Brockton - John F Kennedy,00440017, 15.3, 4.1, 3.6, 76.4, 0.0, 0.0, 0.6, 92.2, 7.8, 55.5 -7.124999999999999,5,a-pcom-i3,2020-21,Brockton - Joseph F. Plouffe Academy,00440422, 14.7, 4.0, 4.0, 77.2, 0.0, 0.0, 0.0, 81.8, 18.2, 74.3 -6.499999999999999,5,a-pcom-i3,2020-21,Brockton - Louis F Angelo Elementary,00440065, 13.7, 0.2, 2.9, 79.2, 0.0, 0.0, 3.9, 90.5, 9.5, 102.0 -10.906250000000002,5,a-pcom-i3,2020-21,Brockton - Manthala George Jr. School,00440003, 16.6, 0.6, 16.4, 65.1, 1.2, 0.0, 0.0, 95.7, 4.3, 81.1 -7.781250000000002,5,a-pcom-i3,2020-21,Brockton - Mary E. Baker School,00440002, 16.3, 0.0, 7.5, 75.1, 0.0, 1.1, 0.0, 97.4, 2.6, 93.2 -9.562499999999998,5,a-pcom-i3,2020-21,Brockton - North Middle School,00440410, 22.0, 0.0, 0.0, 69.4, 0.0, 0.0, 8.6, 77.6, 22.4, 25.5 -4.6875,4.69,a-pcom-i3,2020-21,Brockton - Oscar F Raymond,00440078, 11.9, 0.0, 1.1, 85.0, 0.0, 0.0, 2.0, 94.7, 5.3, 92.1 -8.062499999999998,5,a-pcom-i3,2020-21,Brockton - South Middle School,00440415, 22.8, 0.0, 2.5, 74.2, 0.0, 0.0, 0.5, 78.0, 22.0, 75.4 -6.749999999999998,5,a-pcom-i3,2020-21,Brockton - West Middle School,00440420, 16.8, 3.0, 1.5, 78.4, 0.0, 0.0, 0.3, 70.9, 29.1, 66.7 -14.4375,5,a-pcom-i3,2020-21,Brooke Charter School (District) - Brooke Charter School,04280305, 23.3, 1.4, 17.9, 53.8, 0.0, 0.7, 2.9, 78.1, 21.9, 279.0 -1,1,a-pcom-i3,2020-21,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 40.8 -8.687499999999998,5,a-pcom-i3,2020-21,Brookline - Brookline Early Education Program at Beacon,00460001, 6.4, 10.7, 10.7, 72.2, 0.0, 0.0, 0.0, 89.3, 10.7, 9.4 -5.874999999999999,5,a-pcom-i3,2020-21,Brookline - Brookline Early Education Program at Clark Road,00460003, 17.9, 1.0, 0.0, 81.2, 0.0, 0.0, 0.0, 90.3, 9.7, 10.4 -5.3125,5,a-pcom-i3,2020-21,Brookline - Brookline Early Education Program at Putterham,00460002, 4.0, 3.6, 9.4, 83.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.2 -6.937500000000001,5,a-pcom-i3,2020-21,Brookline - Brookline High,00460505, 9.9, 4.3, 6.1, 77.8, 0.0, 0.0, 1.8, 65.0, 35.0, 328.7 -4.874999999999998,4.87,a-pcom-i3,2020-21,Brookline - Edith C Baker,00460005, 6.5, 5.2, 2.9, 84.4, 0.0, 0.0, 1.0, 80.9, 19.1, 103.5 -6.468750000000001,5,a-pcom-i3,2020-21,Brookline - Florida Ruffin Ridley School,00460015, 10.3, 3.1, 5.9, 79.3, 0.0, 0.7, 0.7, 78.5, 21.5, 148.5 -5.031249999999998,5,a-pcom-i3,2020-21,Brookline - Heath,00460025, 6.6, 2.8, 6.6, 83.9, 0.0, 0.0, 0.0, 86.8, 13.2, 75.3 -4.906250000000001,4.91,a-pcom-i3,2020-21,Brookline - John D Runkle,00460045, 8.7, 3.9, 1.1, 84.3, 0.0, 1.0, 1.0, 86.7, 13.3, 101.4 -5.46875,5,a-pcom-i3,2020-21,Brookline - Lawrence,00460030, 5.7, 9.6, 1.1, 82.5, 0.0, 0.0, 1.0, 83.5, 16.5, 97.1 -5.281250000000002,5,a-pcom-i3,2020-21,Brookline - Michael Driscoll,00460020, 6.1, 5.7, 4.0, 83.1, 0.0, 0.0, 1.2, 83.7, 16.3, 87.0 -5.187499999999998,5,a-pcom-i3,2020-21,Brookline - Pierce,00460040, 5.6, 7.9, 1.1, 83.4, 0.0, 0.0, 1.9, 85.1, 14.9, 104.4 -5.499999999999998,5,a-pcom-i3,2020-21,Brookline - The Lynch Center,00460060, 3.2, 0.4, 14.1, 82.4, 0.0, 0.0, 0.0, 96.4, 0.0, 26.1 -5.249999999999999,5,a-pcom-i3,2020-21,Brookline - William H Lincoln,00460035, 6.3, 2.8, 6.8, 83.2, 0.0, 0.0, 0.9, 82.1, 17.9, 93.2 -1.7499999999999982,1.75,a-pcom-i3,2020-21,Burlington - Burlington High,00480505, 0.0, 2.6, 2.6, 94.4, 0.0, 0.0, 0.4, 77.5, 22.5, 152.6 -1,1,a-pcom-i3,2020-21,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.6, 18.4, 61.3 -1,1,a-pcom-i3,2020-21,Burlington - Francis Wyman Elementary,00480035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 84.6 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Burlington - Marshall Simonds Middle,00480303, 1.1, 4.2, 0.0, 94.7, 0.0, 0.0, 0.0, 82.5, 17.5, 94.3 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Burlington - Memorial,00480015, 0.0, 4.7, 0.0, 95.3, 0.0, 0.0, 0.0, 96.5, 3.5, 63.9 -1,1,a-pcom-i3,2020-21,Burlington - Pine Glen Elementary,00480020, 0.0, 1.5, 0.0, 97.0, 0.0, 0.0, 1.5, 90.6, 7.9, 66.4 -17.593749999999996,5,a-pcom-i3,2020-21,Cambridge - Amigos School,00490006, 4.2, 0.0, 52.1, 43.7, 0.0, 0.0, 0.0, 79.2, 20.8, 67.4 -7.937500000000002,5,a-pcom-i3,2020-21,Cambridge - Cambridge Rindge and Latin,00490506, 13.7, 4.6, 6.0, 74.6, 0.2, 0.3, 0.6, 63.4, 36.6, 317.5 -8.843749999999998,5,a-pcom-i3,2020-21,Cambridge - Cambridge Street Upper School,00490305, 18.9, 6.3, 3.1, 71.7, 0.0, 0.0, 0.0, 88.6, 11.4, 63.6 -10.53125,5,a-pcom-i3,2020-21,Cambridge - Cambridgeport,00490007, 22.7, 7.8, 3.1, 66.3, 0.0, 0.0, 0.0, 83.6, 16.4, 63.9 -13.1875,5,a-pcom-i3,2020-21,Cambridge - Fletcher/Maynard Academy,00490090, 28.6, 9.3, 1.8, 57.8, 0.0, 1.2, 1.2, 81.0, 19.0, 81.4 -8.59375,5,a-pcom-i3,2020-21,Cambridge - Graham and Parks,00490080, 18.5, 4.1, 4.1, 72.5, 0.7, 0.0, 0.0, 94.4, 5.6, 72.8 -6.25,5,a-pcom-i3,2020-21,Cambridge - Haggerty,00490020, 12.0, 3.8, 2.6, 80.0, 1.7, 0.0, 0.0, 84.3, 15.7, 58.5 -6.5625,5,a-pcom-i3,2020-21,Cambridge - John M Tobin,00490065, 13.3, 4.2, 3.5, 79.0, 0.0, 0.0, 0.0, 83.1, 16.9, 60.0 -7.5,5,a-pcom-i3,2020-21,Cambridge - Kennedy-Longfellow,00490040, 12.5, 3.8, 7.7, 76.0, 0.0, 0.0, 0.0, 94.9, 5.1, 78.4 -12.281249999999998,5,a-pcom-i3,2020-21,Cambridge - King Open,00490035, 18.3, 9.3, 11.7, 60.7, 0.0, 0.0, 0.0, 83.3, 16.7, 85.5 -4.968750000000002,4.97,a-pcom-i3,2020-21,Cambridge - Maria L. Baldwin,00490005, 5.6, 4.4, 5.9, 84.1, 0.0, 0.0, 0.0, 83.5, 16.5, 67.6 -10.874999999999998,5,a-pcom-i3,2020-21,Cambridge - Martin Luther King Jr.,00490030, 14.1, 17.5, 3.1, 65.2, 0.0, 0.0, 0.0, 87.5, 12.5, 63.8 -7.65625,5,a-pcom-i3,2020-21,Cambridge - Morse,00490045, 14.0, 2.6, 7.2, 75.5, 0.7, 0.0, 0.0, 87.4, 12.6, 76.4 -6.031249999999999,5,a-pcom-i3,2020-21,Cambridge - Peabody,00490050, 9.4, 6.3, 3.6, 80.7, 0.0, 0.0, 0.0, 92.1, 7.9, 63.9 -14.5625,5,a-pcom-i3,2020-21,Cambridge - Putnam Avenue Upper School,00490310, 29.5, 11.6, 5.5, 53.4, 0.0, 0.0, 0.0, 65.9, 34.1, 54.3 -11.5625,5,a-pcom-i3,2020-21,Cambridge - Rindge Avenue Upper School,00490315, 21.5, 7.7, 7.8, 63.0, 0.0, 0.0, 0.0, 69.8, 30.2, 51.0 -8.34375,5,a-pcom-i3,2020-21,Cambridge - Vassal Lane Upper School,00490320, 14.8, 1.8, 10.1, 73.3, 0.0, 0.0, 0.0, 75.2, 24.8, 54.5 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Canton - Canton High,00500505, 0.0, 2.0, 2.0, 94.1, 0.0, 0.0, 2.0, 67.4, 32.6, 101.1 -1.5625,1.56,a-pcom-i3,2020-21,Canton - Dean S Luce,00500020, 1.7, 1.7, 1.7, 95.0, 0.0, 0.0, 0.0, 95.2, 4.8, 59.5 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Canton - John F Kennedy,00500017, 5.9, 0.0, 0.0, 92.6, 0.0, 1.5, 0.0, 92.1, 7.9, 67.5 -3.1562499999999982,3.16,a-pcom-i3,2020-21,Canton - Lt Peter M Hansen,00500012, 2.9, 1.4, 2.9, 89.9, 0.0, 0.0, 2.9, 90.2, 9.8, 69.6 -1,1,a-pcom-i3,2020-21,Canton - Rodman Early Childhood Center,00500010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 21.8 -3.999999999999999,4.0,a-pcom-i3,2020-21,Canton - Wm H Galvin Middle,00500305, 3.9, 0.0, 4.9, 87.2, 0.0, 0.0, 3.9, 77.3, 22.7, 101.4 -1,1,a-pcom-i3,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 84.1, 15.9, 39.6 -1,1,a-pcom-i3,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.0, 0.0, 1.0, 98.0, 0.0, 0.0, 0.0, 55.7, 44.3, 99.8 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Carlisle - Carlisle School,00510025, 0.9, 3.5, 0.9, 94.6, 0.0, 0.0, 0.0, 82.5, 17.5, 107.5 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Carver - Carver Elementary School,00520015, 0.5, 1.1, 1.1, 96.2, 1.1, 0.0, 0.0, 93.6, 6.4, 91.3 -1.71875,1.72,a-pcom-i3,2020-21,Carver - Carver Middle/High School,00520405, 2.8, 0.0, 0.9, 94.5, 0.0, 0.9, 0.9, 68.7, 31.3, 108.7 -1,1,a-pcom-i3,2020-21,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 20.6 -1,1,a-pcom-i3,2020-21,Central Berkshire - Craneville,06350025, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 87.2, 12.8, 47.7 -1,1,a-pcom-i3,2020-21,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.6, 0.4, 26.1 -1,1,a-pcom-i3,2020-21,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.0, 29.0, 47.3 -1,1,a-pcom-i3,2020-21,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 96.9, 0.0, 0.0, 3.1, 66.2, 33.8, 64.2 -1.9062499999999982,1.91,a-pcom-i3,2020-21,Chelmsford - Byam School,00560030, 1.2, 4.9, 0.0, 93.9, 0.0, 0.0, 0.0, 91.5, 8.5, 82.5 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Chelmsford - Center Elementary School,00560005, 0.0, 1.4, 1.4, 95.7, 0.0, 0.0, 1.4, 98.6, 1.4, 70.0 -1,1,a-pcom-i3,2020-21,Chelmsford - Charles D Harrington,00560025, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 91.6, 7.0, 71.1 -1.875,1.88,a-pcom-i3,2020-21,Chelmsford - Chelmsford High,00560505, 1.1, 1.6, 2.7, 94.0, 0.0, 0.5, 0.0, 65.6, 34.4, 183.2 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Chelmsford - Col Moses Parker School,00560305, 1.0, 3.9, 0.0, 95.2, 0.0, 0.0, 0.0, 83.8, 16.2, 103.7 -5.406249999999999,5,a-pcom-i3,2020-21,Chelmsford - Community Education Center,00560001, 5.8, 11.6, 0.0, 82.7, 0.0, 0.0, 0.0, 94.2, 5.8, 34.6 -1,1,a-pcom-i3,2020-21,Chelmsford - McCarthy Middle School,00560310, 0.0, 2.9, 0.1, 97.1, 0.0, 0.0, 0.0, 84.0, 16.0, 105.1 -1,1,a-pcom-i3,2020-21,Chelmsford - South Row,00560015, 0.0, 0.0, 1.5, 97.0, 0.0, 0.0, 1.5, 97.0, 3.0, 66.5 -7.281249999999999,5,a-pcom-i3,2020-21,Chelsea - Chelsea High,00570505, 1.4, 0.0, 19.8, 76.7, 0.0, 0.0, 2.2, 71.7, 28.3, 157.3 -10.625,5,a-pcom-i3,2020-21,Chelsea - Chelsea Opportunity Academy,00570515, 2.1, 0.0, 32.0, 66.0, 0.0, 0.0, 0.0, 45.4, 54.6, 9.7 -7.625000000000002,5,a-pcom-i3,2020-21,Chelsea - Clark Avenue School,00570050, 2.9, 0.0, 17.0, 75.6, 0.0, 0.0, 4.4, 79.7, 20.3, 74.8 -6.09375,5,a-pcom-i3,2020-21,Chelsea - Edgar A Hooks Elementary,00570030, 3.7, 0.0, 15.1, 80.5, 0.0, 0.0, 0.7, 89.0, 11.0, 54.6 -7.531249999999998,5,a-pcom-i3,2020-21,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.3, 0.0, 18.5, 75.9, 0.0, 1.6, 3.7, 72.4, 27.6, 62.8 -7.093750000000001,5,a-pcom-i3,2020-21,Chelsea - Frank M Sokolowski Elementary,00570040, 1.8, 0.0, 17.4, 77.3, 0.0, 0.0, 3.5, 85.0, 15.0, 56.7 -7.937500000000002,5,a-pcom-i3,2020-21,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 23.6, 74.6, 0.0, 0.0, 1.7, 87.3, 12.7, 58.2 -10.093749999999998,5,a-pcom-i3,2020-21,Chelsea - Joseph A. Browne School,00570055, 2.2, 0.0, 24.9, 67.7, 0.0, 0.0, 5.3, 73.8, 26.2, 54.1 -11.4375,5,a-pcom-i3,2020-21,Chelsea - Shurtleff Early Childhood,00570003, 1.1, 0.0, 35.5, 63.4, 0.0, 0.0, 0.0, 93.9, 6.1, 123.6 -5.125000000000002,5,a-pcom-i3,2020-21,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 11.1, 83.6, 0.0, 1.8, 3.5, 90.4, 9.6, 56.5 -1,1,a-pcom-i3,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 23.6 -1,1,a-pcom-i3,2020-21,Chicopee - Barry,00610003, 1.7, 0.0, 0.8, 97.5, 0.0, 0.0, 0.0, 96.7, 3.3, 60.0 -2.406250000000001,2.41,a-pcom-i3,2020-21,Chicopee - Belcher,00610010, 0.0, 0.0, 5.1, 92.3, 0.0, 0.0, 2.6, 92.3, 7.7, 39.1 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Chicopee - Bellamy Middle,00610305, 0.9, 0.0, 1.8, 96.4, 0.0, 0.9, 0.0, 80.5, 19.5, 109.7 -1.5937499999999982,1.59,a-pcom-i3,2020-21,Chicopee - Bowe,00610015, 1.7, 1.7, 1.7, 94.9, 0.0, 0.0, 0.0, 93.2, 6.8, 59.1 -1,1,a-pcom-i3,2020-21,Chicopee - Bowie,00610020, 2.0, 0.0, 1.0, 96.9, 0.0, 0.0, 0.0, 91.3, 8.7, 49.2 -2.250000000000001,2.25,a-pcom-i3,2020-21,Chicopee - Chicopee Academy,00610021, 7.2, 0.0, 0.0, 92.8, 0.0, 0.0, 0.0, 72.4, 27.6, 27.9 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Chicopee - Chicopee Comprehensive High School,00610510, 0.7, 0.7, 4.6, 94.1, 0.0, 0.0, 0.0, 57.3, 42.7, 151.4 -3.187500000000001,3.19,a-pcom-i3,2020-21,Chicopee - Chicopee High,00610505, 3.9, 0.0, 5.5, 89.8, 0.8, 0.0, 0.0, 73.7, 26.3, 127.3 -3.9374999999999982,3.94,a-pcom-i3,2020-21,Chicopee - Dupont Middle,00610310, 1.4, 2.0, 8.3, 87.4, 0.0, 0.0, 1.0, 74.2, 25.8, 102.0 -5.187499999999998,5,a-pcom-i3,2020-21,Chicopee - Fairview Elementary,00610050, 2.2, 1.1, 11.0, 83.4, 0.0, 0.0, 2.2, 88.8, 11.2, 90.5 -3.062499999999999,3.06,a-pcom-i3,2020-21,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 9.8, 90.2, 0.0, 0.0, 0.0, 93.5, 6.5, 61.3 -1,1,a-pcom-i3,2020-21,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 94.4, 5.6, 45.7 -1.5937499999999982,1.59,a-pcom-i3,2020-21,Chicopee - Litwin,00610022, 0.0, 1.7, 3.4, 94.9, 0.0, 0.0, 0.0, 94.4, 5.6, 58.7 -1.71875,1.72,a-pcom-i3,2020-21,Chicopee - Streiber Memorial School,00610065, 2.2, 0.0, 3.3, 94.5, 0.0, 0.0, 0.0, 96.7, 3.3, 45.5 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 95.2, 4.8, 41.9 -2.906249999999999,2.91,a-pcom-i3,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 0.0, 1.5, 6.2, 90.7, 1.5, 0.0, 0.0, 62.2, 37.8, 64.8 -12.53125,5,a-pcom-i3,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 27.3, 3.6, 9.1, 59.9, 0.0, 0.0, 0.0, 75.4, 24.6, 43.9 -1,1,a-pcom-i3,2020-21,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.1, 11.9, 27.0 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Clinton - Clinton Elementary,00640050, 0.0, 0.9, 4.5, 93.6, 0.0, 0.0, 0.9, 95.4, 4.6, 107.9 -2.6250000000000018,2.63,a-pcom-i3,2020-21,Clinton - Clinton Middle School,00640305, 1.7, 0.0, 3.5, 91.6, 0.0, 0.0, 3.2, 80.8, 19.2, 59.9 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 3.0, 95.3, 0.0, 0.0, 1.8, 61.9, 38.1, 56.5 -16.71875,5,a-pcom-i3,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 40.7, 3.8, 6.4, 46.5, 0.0, 0.0, 2.6, 74.4, 25.6, 78.1 -1,1,a-pcom-i3,2020-21,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 56.6, 43.4, 62.5 -1,1,a-pcom-i3,2020-21,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 82.3, 17.7, 45.2 -1.5937499999999982,1.59,a-pcom-i3,2020-21,Cohasset - Deer Hill,00650005, 3.1, 2.1, 0.0, 94.9, 0.0, 0.0, 0.0, 91.8, 8.2, 48.6 -1,1,a-pcom-i3,2020-21,Cohasset - Joseph Osgood,00650010, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 93.1, 6.9, 49.4 -7.124999999999999,5,a-pcom-i3,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 5.7, 3.4, 13.7, 77.2, 0.0, 0.0, 0.0, 80.5, 19.5, 87.5 -15.8125,5,a-pcom-i3,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 19.2, 9.2, 21.5, 49.4, 0.0, 0.0, 0.7, 67.7, 32.3, 65.1 -6.499999999999999,5,a-pcom-i3,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.5, 1.5, 17.8, 79.2, 0.0, 0.0, 0.0, 87.7, 12.3, 66.8 -11.4375,5,a-pcom-i3,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 1.6, 1.6, 32.0, 63.4, 0.0, 0.0, 1.6, 79.1, 20.9, 64.4 -8.03125,5,a-pcom-i3,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 3.5, 0.0, 20.4, 74.3, 0.0, 0.0, 1.8, 76.8, 23.2, 56.9 -3.3124999999999982,3.31,a-pcom-i3,2020-21,Concord - Alcott,00670005, 2.7, 5.1, 2.8, 89.4, 0.0, 0.0, 0.0, 91.4, 8.6, 78.4 -4.249999999999998,4.25,a-pcom-i3,2020-21,Concord - Concord Middle,00670305, 4.5, 4.9, 3.3, 86.4, 0.0, 0.9, 0.0, 70.5, 29.5, 112.2 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Concord - Thoreau,00670020, 0.1, 2.0, 1.6, 96.4, 0.0, 0.0, 0.0, 94.5, 5.5, 76.8 -1.71875,1.72,a-pcom-i3,2020-21,Concord - Willard,00670030, 1.4, 1.3, 2.8, 94.5, 0.0, 0.0, 0.0, 90.1, 9.9, 78.3 -2.593749999999999,2.59,a-pcom-i3,2020-21,Concord-Carlisle - Concord Carlisle High,06400505, 2.6, 2.2, 3.4, 91.7, 0.0, 0.0, 0.0, 58.6, 41.4, 181.2 -13.03125,5,a-pcom-i3,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 29.3, 0.0, 10.8, 58.3, 0.0, 0.0, 1.5, 76.4, 23.6, 64.8 -1,1,a-pcom-i3,2020-21,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 35.7 -1,1,a-pcom-i3,2020-21,Danvers - Danvers High,00710505, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 58.9, 41.1, 107.9 -1,1,a-pcom-i3,2020-21,Danvers - Great Oak,00710015, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 94.9, 5.1, 33.1 -1,1,a-pcom-i3,2020-21,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.3, 16.7, 40.7 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 1.9, 95.1, 0.0, 0.0, 2.9, 79.6, 20.4, 103.0 -1,1,a-pcom-i3,2020-21,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 40.0 -1,1,a-pcom-i3,2020-21,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 63.9 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Danvers - Willis E Thorpe,00710045, 0.0, 2.1, 3.3, 94.6, 0.0, 0.0, 0.0, 89.6, 10.4, 48.1 -1,1,a-pcom-i3,2020-21,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 100.0, 0.0, 28.2 -1,1,a-pcom-i3,2020-21,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 61.9, 38.1, 102.4 -1,1,a-pcom-i3,2020-21,Dartmouth - Dartmouth Middle,00720050, 1.0, 0.0, 0.0, 98.0, 0.0, 0.0, 1.0, 63.5, 36.5, 101.1 -1,1,a-pcom-i3,2020-21,Dartmouth - George H Potter,00720030, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 93.1, 6.9, 57.9 -1,1,a-pcom-i3,2020-21,Dartmouth - James M. Quinn School,00720040, 1.1, 0.0, 1.2, 97.7, 0.0, 0.0, 0.0, 95.5, 4.5, 89.2 -1,1,a-pcom-i3,2020-21,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 97.8, 2.2, 45.9 -1,1,a-pcom-i3,2020-21,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 50.9 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Dedham - Dedham High,00730505, 0.0, 3.2, 4.2, 92.6, 0.0, 0.0, 0.0, 73.2, 26.8, 94.3 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Dedham - Dedham Middle School,00730305, 4.0, 0.0, 0.6, 95.4, 0.0, 0.0, 0.0, 69.2, 30.8, 99.0 -1,1,a-pcom-i3,2020-21,Dedham - Early Childhood Center,00730005, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 98.4, 1.6, 61.2 -1,1,a-pcom-i3,2020-21,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 41.2 -1,1,a-pcom-i3,2020-21,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 36.3 -1,1,a-pcom-i3,2020-21,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 31.8 -1,1,a-pcom-i3,2020-21,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 77.7 -1.71875,1.72,a-pcom-i3,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.6, 0.0, 2.1, 94.5, 0.0, 0.0, 0.8, 67.1, 32.9, 125.0 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 3.5, 95.9, 0.5, 0.0, 0.0, 94.8, 5.2, 73.3 -1,1,a-pcom-i3,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 54.1 -2.5312499999999982,2.53,a-pcom-i3,2020-21,Dennis-Yarmouth - Mattacheese Middle School,06450305, 3.6, 0.0, 3.0, 91.9, 0.0, 0.0, 1.5, 76.3, 23.7, 66.7 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,06450050, 0.0, 0.0, 2.3, 96.3, 0.0, 0.0, 1.4, 92.5, 7.5, 73.8 -1,1,a-pcom-i3,2020-21,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.8, 0.0, 1.7, 97.5, 0.0, 0.0, 0.0, 90.3, 9.7, 59.6 -1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Dighton Elementary,06500005, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 94.6, 5.4, 64.9 -1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Dighton Middle School,06500305, 0.5, 0.0, 0.0, 97.3, 0.0, 0.0, 2.3, 72.0, 28.0, 44.0 -1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.2, 0.0, 1.1, 98.7, 0.0, 0.0, 0.0, 67.8, 32.2, 94.0 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.3, 0.0, 3.4, 93.7, 0.0, 0.0, 2.6, 80.3, 19.7, 58.4 -1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Palmer River,06500010, 0.3, 0.0, 0.0, 99.0, 0.0, 0.0, 0.7, 96.5, 3.5, 70.9 -1,1,a-pcom-i3,2020-21,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.3, 12.7, 52.9 -1,1,a-pcom-i3,2020-21,Douglas - Douglas High School,00770505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 68.9, 31.1, 57.9 -1,1,a-pcom-i3,2020-21,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 38.7 -1,1,a-pcom-i3,2020-21,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 32.7 -1.25,1.25,a-pcom-i3,2020-21,Dover - Chickering,00780005, 0.3, 0.0, 3.7, 96.0, 0.0, 0.0, 0.0, 89.2, 10.8, 77.9 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 1.3, 1.8, 3.7, 93.1, 0.0, 0.0, 0.0, 68.8, 31.2, 93.9 -3.687499999999999,3.69,a-pcom-i3,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 4.5, 1.4, 4.6, 88.2, 0.0, 1.4, 0.0, 78.6, 21.4, 72.5 -1,1,a-pcom-i3,2020-21,Dracut - Brookside Elementary,00790035, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 91.0, 9.0, 40.3 -1,1,a-pcom-i3,2020-21,Dracut - Dracut Senior High,00790505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 67.1, 32.9, 90.8 -1,1,a-pcom-i3,2020-21,Dracut - George H. Englesby Elementary School,00790045, 0.8, 0.0, 0.0, 99.2, 0.0, 0.0, 0.0, 97.7, 2.3, 48.1 -1,1,a-pcom-i3,2020-21,Dracut - Greenmont Avenue,00790030, 0.7, 0.0, 0.0, 99.3, 0.0, 0.0, 0.0, 95.2, 4.8, 28.2 -1,1,a-pcom-i3,2020-21,Dracut - Joseph A Campbell Elementary,00790020, 1.5, 0.7, 0.0, 97.8, 0.0, 0.0, 0.0, 97.6, 2.4, 67.1 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Dracut - Justus C. Richardson Middle School,00790410, 1.2, 0.6, 2.4, 95.8, 0.0, 0.0, 0.0, 81.4, 18.6, 83.9 -23.5625,5,a-pcom-i3,2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 53.8, 0.0, 21.5, 24.6, 0.0, 0.0, 0.0, 81.5, 18.5, 16.3 -1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 44.3 -1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 75.5, 24.5, 54.0 -1.875,1.88,a-pcom-i3,2020-21,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 3.0, 94.0, 3.0, 0.0, 0.0, 89.4, 10.6, 33.1 -1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.3, 24.7, 45.3 -1.25,1.25,a-pcom-i3,2020-21,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 4.0, 98.0, 2.0, 50.3 -1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 95.9, 4.1, 36.4 -1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 55.8, 44.2, 90.8 -1,1,a-pcom-i3,2020-21,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 70.5 -1,1,a-pcom-i3,2020-21,Duxbury - Chandler Elementary,00820006, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 97.7, 2.3, 82.3 -1,1,a-pcom-i3,2020-21,Duxbury - Duxbury High,00820505, 0.0, 1.7, 0.9, 97.4, 0.0, 0.0, 0.0, 66.8, 33.2, 114.5 -1,1,a-pcom-i3,2020-21,Duxbury - Duxbury Middle,00820305, 0.0, 1.3, 1.3, 97.3, 0.0, 0.0, 0.0, 79.1, 20.9, 74.5 -1,1,a-pcom-i3,2020-21,East Bridgewater - Central,00830005, 0.7, 0.0, 0.0, 99.3, 0.0, 0.0, 0.0, 95.8, 4.2, 71.5 -1,1,a-pcom-i3,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 67.9, 32.1, 106.0 -1,1,a-pcom-i3,2020-21,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 81.4 -2.281249999999999,2.28,a-pcom-i3,2020-21,East Longmeadow - Birchland Park,00870305, 2.4, 1.2, 3.6, 92.7, 0.0, 0.0, 0.0, 68.2, 31.8, 82.6 -3.7187500000000018,3.72,a-pcom-i3,2020-21,East Longmeadow - East Longmeadow High,00870505, 6.1, 1.0, 3.9, 88.1, 0.0, 0.0, 1.0, 62.1, 37.9, 99.0 -1,1,a-pcom-i3,2020-21,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.0, 18.0, 45.9 -2.0000000000000018,2.0,a-pcom-i3,2020-21,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 5.3, 93.6, 0.0, 0.0, 1.1, 98.9, 1.1, 90.2 -1,1,a-pcom-i3,2020-21,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 90.7, 9.3, 46.0 -1,1,a-pcom-i3,2020-21,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 37.2 -1,1,a-pcom-i3,2020-21,Easthampton - Center School,00860005, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 93.8, 6.2, 24.3 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Easthampton - Easthampton High,00860505, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 57.3, 42.7, 49.2 -1,1,a-pcom-i3,2020-21,Easthampton - Maple,00860010, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 98.3, 1.7, 47.0 -1,1,a-pcom-i3,2020-21,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 95.3, 4.7, 32.0 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Easthampton - White Brook Middle School,00860305, 3.6, 0.0, 0.0, 96.4, 0.0, 0.0, 0.0, 73.2, 26.8, 55.9 -1,1,a-pcom-i3,2020-21,Easton - Center School,00880003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 29.4 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Easton - Easton Middle School,00880405, 0.0, 1.0, 4.0, 93.6, 0.0, 0.0, 1.4, 81.1, 18.9, 100.3 -1,1,a-pcom-i3,2020-21,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 28.9 -2.1875,2.19,a-pcom-i3,2020-21,Easton - Oliver Ames High,00880505, 1.6, 1.6, 2.9, 93.0, 0.0, 0.0, 0.8, 61.0, 39.0, 123.5 -1,1,a-pcom-i3,2020-21,Easton - Parkview Elementary,00880015, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 94.0, 6.0, 53.0 -1,1,a-pcom-i3,2020-21,Easton - Richardson Olmsted School,00880025, 0.5, 0.0, 1.1, 97.3, 0.0, 0.0, 1.1, 90.4, 9.6, 91.5 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Edgartown - Edgartown Elementary,00890005, 2.8, 0.0, 2.0, 95.1, 0.0, 0.0, 0.0, 84.1, 15.9, 83.2 -19.28125,5,a-pcom-i3,2020-21,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 46.1, 3.9, 11.7, 38.3, 0.0, 0.0, 0.0, 59.9, 40.1, 53.8 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 93.1, 0.0, 0.0, 6.9, 90.8, 9.2, 43.4 -1,1,a-pcom-i3,2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.0, 1.1, 1.6, 97.3, 0.0, 0.0, 0.0, 56.7, 43.3, 184.8 -1,1,a-pcom-i3,2020-21,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 15.5 -5.906250000000002,5,a-pcom-i3,2020-21,Everett - Devens School,00930030, 7.6, 0.0, 7.6, 81.1, 0.0, 0.0, 3.8, 50.7, 49.3, 26.4 -4.468749999999999,4.47,a-pcom-i3,2020-21,Everett - Everett High,00930505, 3.6, 3.6, 5.6, 85.7, 0.5, 0.5, 0.5, 59.6, 40.4, 196.2 -2.406250000000001,2.41,a-pcom-i3,2020-21,Everett - George Keverian School,00930028, 1.3, 1.3, 3.9, 92.3, 0.0, 1.3, 0.0, 81.6, 18.4, 77.7 -2.8125,2.81,a-pcom-i3,2020-21,Everett - Lafayette School,00930038, 1.8, 4.4, 2.8, 91.0, 0.0, 0.0, 0.0, 82.0, 18.0, 113.1 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Everett - Madeline English School,00930018, 0.0, 4.6, 2.3, 93.1, 0.0, 0.0, 0.0, 90.4, 9.6, 87.1 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Everett - Parlin School,00930058, 0.0, 0.0, 2.4, 96.4, 0.0, 0.0, 1.2, 84.4, 15.6, 84.5 -1.5937499999999982,1.59,a-pcom-i3,2020-21,Everett - Sumner G. Whittier School,00930010, 3.4, 0.0, 1.7, 94.9, 0.0, 0.0, 0.0, 89.0, 11.0, 58.9 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Everett - Webster Extension,00930001, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 97.9, 2.1, 24.0 -2.8437499999999982,2.84,a-pcom-i3,2020-21,Everett - Webster School,00930015, 0.0, 3.6, 5.4, 90.9, 0.0, 0.0, 0.0, 93.5, 6.5, 55.2 -11.71875,5,a-pcom-i3,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 8.6, 2.2, 23.9, 62.5, 0.0, 0.0, 2.8, 77.6, 22.4, 208.2 -1,1,a-pcom-i3,2020-21,Fairhaven - East Fairhaven,00940010, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 96.0, 4.0, 50.5 -1,1,a-pcom-i3,2020-21,Fairhaven - Fairhaven High,00940505, 1.5, 0.0, 0.0, 97.1, 0.0, 0.0, 1.4, 58.5, 41.5, 73.5 -1,1,a-pcom-i3,2020-21,Fairhaven - Hastings Middle,00940305, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 80.4, 19.6, 56.8 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Fairhaven - Leroy Wood,00940030, 2.2, 2.0, 0.0, 95.8, 0.0, 0.0, 0.0, 94.1, 5.9, 50.8 -2.34375,2.34,a-pcom-i3,2020-21,Fall River - B M C Durfee High,00950505, 1.3, 1.5, 3.7, 92.5, 0.0, 0.0, 1.0, 66.3, 33.7, 270.5 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Fall River - Carlton M. Viveiros Elementary School,00950009, 2.4, 0.0, 1.9, 94.6, 0.0, 0.0, 1.2, 88.5, 11.5, 84.9 -3.7812499999999982,3.78,a-pcom-i3,2020-21,Fall River - Henry Lord Community School,00950017, 4.7, 0.0, 5.6, 87.9, 0.0, 0.0, 1.9, 89.1, 10.9, 107.0 -2.562500000000001,2.56,a-pcom-i3,2020-21,Fall River - James Tansey,00950140, 0.0, 2.7, 2.7, 91.8, 0.0, 0.0, 2.7, 90.4, 9.6, 36.5 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Fall River - John J Doran,00950045, 1.5, 0.0, 2.9, 95.6, 0.0, 0.0, 0.0, 85.0, 15.0, 68.6 -3.1562499999999982,3.16,a-pcom-i3,2020-21,Fall River - Letourneau Elementary School,00950013, 7.2, 0.0, 2.9, 89.9, 0.0, 0.0, 0.0, 90.9, 9.1, 69.1 -3.4062500000000018,3.41,a-pcom-i3,2020-21,Fall River - Mary Fonseca Elementary School,00950011, 0.0, 0.0, 7.3, 89.1, 1.2, 0.0, 2.4, 91.1, 8.9, 82.8 -2.718750000000001,2.72,a-pcom-i3,2020-21,Fall River - Matthew J Kuss Middle,00950320, 1.1, 1.1, 2.0, 91.3, 0.0, 1.1, 3.3, 66.3, 33.7, 89.8 -2.5,2.5,a-pcom-i3,2020-21,Fall River - Morton Middle,00950315, 1.3, 3.1, 3.6, 92.0, 0.0, 0.0, 0.0, 78.3, 21.7, 83.7 -1,1,a-pcom-i3,2020-21,Fall River - North End Elementary,00950005, 0.0, 1.0, 0.0, 98.0, 0.0, 0.0, 1.0, 88.4, 11.6, 98.8 -3.0937500000000018,3.09,a-pcom-i3,2020-21,Fall River - Resiliency Preparatory Academy,00950525, 5.0, 0.0, 2.5, 90.1, 0.0, 0.0, 2.5, 48.3, 51.7, 40.3 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Fall River - Samuel Watson,00950145, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 89.3, 10.7, 30.9 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Fall River - Spencer Borden,00950130, 2.1, 0.0, 1.0, 95.8, 0.0, 0.0, 1.0, 92.9, 7.1, 98.8 -6.40625,5,a-pcom-i3,2020-21,Fall River - Stone PK-12 School,00950340, 12.7, 0.0, 0.0, 79.5, 0.0, 0.0, 7.8, 76.7, 23.3, 38.6 -4.375,4.38,a-pcom-i3,2020-21,Fall River - Talbot Innovation School,00950305, 5.1, 1.3, 5.1, 86.0, 0.0, 0.0, 2.5, 71.2, 28.8, 78.8 -2.562500000000001,2.56,a-pcom-i3,2020-21,Fall River - William S Greene,00950065, 3.5, 2.3, 2.3, 91.8, 0.0, 0.0, 0.0, 92.1, 7.9, 85.6 -2.0624999999999982,2.06,a-pcom-i3,2020-21,Falmouth - East Falmouth Elementary,00960005, 1.9, 0.9, 1.9, 93.4, 0.0, 0.0, 1.9, 88.4, 11.6, 52.9 -2.124999999999999,2.12,a-pcom-i3,2020-21,Falmouth - Falmouth High,00960505, 1.7, 0.9, 2.5, 93.2, 0.9, 0.0, 0.9, 66.6, 33.4, 116.5 -2.250000000000001,2.25,a-pcom-i3,2020-21,Falmouth - Lawrence,00960405, 4.4, 1.3, 0.3, 92.8, 0.0, 0.0, 1.3, 84.0, 16.0, 79.2 -1.9062499999999982,1.91,a-pcom-i3,2020-21,Falmouth - Morse Pond School,00960305, 1.2, 0.0, 1.1, 93.9, 1.2, 0.0, 2.5, 89.0, 11.0, 80.8 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Falmouth - Mullen-Hall,00960020, 0.7, 0.0, 2.7, 95.2, 0.0, 0.0, 1.4, 89.2, 10.8, 73.2 -2.281249999999999,2.28,a-pcom-i3,2020-21,Falmouth - North Falmouth Elementary,00960030, 4.2, 1.0, 2.1, 92.7, 0.0, 0.0, 0.0, 91.8, 8.2, 47.7 -2.65625,2.66,a-pcom-i3,2020-21,Falmouth - Teaticket,00960015, 3.4, 0.0, 1.7, 91.5, 0.0, 0.0, 3.4, 96.8, 3.2, 58.9 -1,1,a-pcom-i3,2020-21,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.8, 18.2, 24.7 -5.0,5.0,a-pcom-i3,2020-21,Fitchburg - Arthur M Longsjo Middle School,00970315, 1.1, 3.4, 9.1, 84.0, 0.0, 0.0, 2.3, 73.7, 26.3, 87.6 -2.65625,2.66,a-pcom-i3,2020-21,Fitchburg - Crocker Elementary,00970016, 2.8, 0.0, 5.7, 91.5, 0.0, 0.0, 0.0, 95.7, 4.3, 70.3 -5.968749999999998,5,a-pcom-i3,2020-21,Fitchburg - Fitchburg High,00970505, 2.3, 0.8, 15.3, 80.9, 0.0, 0.0, 0.8, 64.0, 36.0, 131.1 -5.281250000000002,5,a-pcom-i3,2020-21,Fitchburg - Goodrich Academy,00970510, 3.2, 0.0, 13.6, 83.1, 0.0, 0.0, 0.0, 83.8, 16.2, 15.4 -4.593750000000001,4.59,a-pcom-i3,2020-21,Fitchburg - McKay Arts Academy,00970340, 1.1, 1.1, 12.4, 85.3, 0.0, 0.0, 0.0, 89.8, 10.2, 88.6 -2.250000000000001,2.25,a-pcom-i3,2020-21,Fitchburg - Memorial Middle School,00970048, 2.7, 0.0, 4.5, 92.8, 0.0, 0.0, 0.0, 81.4, 18.6, 73.9 -2.6250000000000018,2.63,a-pcom-i3,2020-21,Fitchburg - Reingold Elementary,00970043, 1.4, 1.4, 4.2, 91.6, 0.0, 0.0, 1.4, 91.6, 8.4, 71.7 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Fitchburg - South Street Elementary,00970060, 1.0, 1.0, 4.1, 93.8, 0.0, 0.0, 0.0, 88.7, 11.3, 97.0 -1,1,a-pcom-i3,2020-21,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.3, 20.7, 24.4 -2.8437499999999982,2.84,a-pcom-i3,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 3.0, 0.0, 6.1, 90.9, 0.0, 0.0, 0.0, 69.4, 30.6, 32.8 -1,1,a-pcom-i3,2020-21,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 35.8 -1,1,a-pcom-i3,2020-21,Foxborough - Foxborough High,00990505, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 66.8, 33.2, 105.8 -1,1,a-pcom-i3,2020-21,Foxborough - John J Ahern,00990405, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 77.2, 22.8, 101.0 -1,1,a-pcom-i3,2020-21,Foxborough - Mabelle M Burrell,00990015, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 97.6, 2.4, 41.9 -1.09375,1.09,a-pcom-i3,2020-21,Foxborough - Vincent M Igo Elementary,00990020, 3.5, 0.0, 0.0, 96.5, 0.0, 0.0, 0.0, 94.4, 5.6, 53.7 -4.125000000000001,4.13,a-pcom-i3,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 5.4, 0.0, 7.8, 86.8, 0.0, 0.0, 0.0, 78.2, 21.8, 189.3 -14.75,5,a-pcom-i3,2020-21,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 47.2, 52.8, 0.0, 0.0, 0.0, 89.4, 10.6, 86.4 -7.562500000000001,5,a-pcom-i3,2020-21,Framingham - Brophy,01000006, 0.0, 0.0, 24.2, 75.8, 0.0, 0.0, 0.0, 91.3, 8.7, 68.9 -5.562499999999999,5,a-pcom-i3,2020-21,Framingham - Cameron Middle School,01000302, 7.8, 2.2, 7.8, 82.2, 0.0, 0.0, 0.0, 80.8, 19.2, 89.8 -3.062499999999999,3.06,a-pcom-i3,2020-21,Framingham - Charlotte A Dunning,01000007, 0.0, 1.4, 7.0, 90.2, 1.4, 0.0, 0.0, 88.7, 11.3, 71.8 -4.718749999999998,4.72,a-pcom-i3,2020-21,Framingham - Framingham High School,01000515, 3.9, 0.4, 10.8, 84.9, 0.0, 0.0, 0.0, 68.1, 31.9, 261.1 -7.65625,5,a-pcom-i3,2020-21,Framingham - Fuller Middle,01000305, 3.4, 2.1, 19.0, 75.5, 0.0, 0.0, 0.0, 74.2, 25.8, 94.8 -3.843749999999999,3.84,a-pcom-i3,2020-21,Framingham - Hemenway,01000015, 2.9, 2.2, 7.2, 87.7, 0.0, 0.0, 0.0, 92.2, 7.8, 69.3 -7.8125,5,a-pcom-i3,2020-21,Framingham - Juniper Hill School,01000001, 0.0, 2.8, 22.2, 75.0, 0.0, 0.0, 0.0, 95.7, 4.3, 70.3 -5.249999999999999,5,a-pcom-i3,2020-21,Framingham - King Elementary School,01000005, 7.6, 1.9, 7.2, 83.2, 0.0, 0.0, 0.0, 91.0, 9.0, 52.5 -3.5625000000000018,3.56,a-pcom-i3,2020-21,Framingham - Mary E Stapleton Elementary,01000045, 1.5, 1.5, 8.5, 88.6, 0.0, 0.0, 0.0, 94.9, 5.1, 68.8 -2.6250000000000018,2.63,a-pcom-i3,2020-21,Framingham - Miriam F McCarthy School,01000050, 3.5, 2.5, 2.5, 91.6, 0.0, 0.0, 0.0, 89.9, 10.1, 81.1 -8.65625,5,a-pcom-i3,2020-21,Framingham - Potter Road,01000039, 0.0, 2.5, 25.2, 72.3, 0.0, 0.0, 0.0, 93.1, 6.9, 59.6 -5.281250000000002,5,a-pcom-i3,2020-21,Framingham - Walsh Middle,01000310, 2.0, 1.5, 13.4, 83.1, 0.0, 0.0, 0.0, 81.5, 18.5, 100.2 -6.031249999999999,5,a-pcom-i3,2020-21,Framingham - Woodrow Wilson,01000055, 0.3, 2.8, 16.2, 80.7, 0.0, 0.0, 0.0, 92.0, 8.0, 70.6 -2.5,2.5,a-pcom-i3,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 3.2, 0.0, 4.8, 92.0, 0.0, 0.0, 0.0, 69.4, 30.6, 62.4 -1,1,a-pcom-i3,2020-21,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.0, 18.0, 50.9 -1,1,a-pcom-i3,2020-21,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 36.1 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 6.9, 0.0, 93.1, 0.0, 0.0, 0.0, 99.4, 0.6, 29.0 -1,1,a-pcom-i3,2020-21,Franklin - Franklin High,01010505, 0.6, 0.6, 0.0, 98.8, 0.0, 0.0, 0.0, 69.2, 30.8, 170.6 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Franklin - Helen Keller Elementary,01010012, 0.0, 1.9, 1.9, 96.1, 0.0, 0.0, 0.0, 90.0, 10.0, 51.5 -1,1,a-pcom-i3,2020-21,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.3, 20.7, 58.9 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Franklin - J F Kennedy Memorial,01010013, 0.0, 1.9, 1.9, 96.2, 0.0, 0.0, 0.0, 95.9, 4.1, 52.6 -1,1,a-pcom-i3,2020-21,Franklin - Jefferson Elementary,01010010, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 98.4, 1.6, 52.6 -1,1,a-pcom-i3,2020-21,Franklin - Oak Street Elementary,01010030, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 94.1, 5.9, 53.8 -1,1,a-pcom-i3,2020-21,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 53.5 -1,1,a-pcom-i3,2020-21,Franklin - Remington Middle,01010310, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 78.5, 21.5, 56.2 -1,1,a-pcom-i3,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 39.8, 60.2, 74.0 -1,1,a-pcom-i3,2020-21,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 63.4, 36.6, 89.8 -1,1,a-pcom-i3,2020-21,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 45.8 -1,1,a-pcom-i3,2020-21,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 52.8 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.5, 0.0, 1.3, 96.2, 0.0, 0.0, 0.0, 74.7, 25.3, 79.0 -1,1,a-pcom-i3,2020-21,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 46.4 -1,1,a-pcom-i3,2020-21,Frontier - Frontier Regional,06700505, 1.0, 0.0, 0.0, 96.9, 2.1, 0.0, 0.0, 64.6, 35.4, 96.0 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Gardner - Elm Street School,01030001, 0.0, 0.0, 2.7, 95.9, 0.0, 0.0, 1.4, 82.3, 17.7, 73.5 -1,1,a-pcom-i3,2020-21,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 47.6, 52.4, 10.5 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Gardner - Gardner High,01030505, 0.0, 2.4, 4.9, 92.1, 0.0, 0.0, 0.6, 65.9, 34.1, 82.0 -2.281249999999999,2.28,a-pcom-i3,2020-21,Gardner - Gardner Middle School,01030405, 1.5, 1.5, 1.5, 92.7, 0.0, 0.0, 2.9, 75.2, 24.8, 68.5 -1,1,a-pcom-i3,2020-21,Gardner - Waterford Street,01030020, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 85.4, 14.6, 82.3 -1,1,a-pcom-i3,2020-21,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 23.0 -1,1,a-pcom-i3,2020-21,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 97.5, 0.0, 0.0, 2.5, 70.5, 29.5, 40.3 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 95.2, 0.0, 0.0, 4.8, 69.9, 30.1, 21.0 -1,1,a-pcom-i3,2020-21,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 46.9 -1,1,a-pcom-i3,2020-21,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.7, 97.4, 0.0, 0.9, 0.0, 70.5, 29.5, 57.7 -1,1,a-pcom-i3,2020-21,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 98.2, 0.0, 1.8, 0.0, 76.8, 23.2, 22.0 -1,1,a-pcom-i3,2020-21,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 90.0, 10.0, 78.8 -1,1,a-pcom-i3,2020-21,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.2 -1,1,a-pcom-i3,2020-21,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 94.0, 6.0, 15.2 -1,1,a-pcom-i3,2020-21,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 67.9, 32.1, 30.2 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 3.0, 95.8, 0.0, 0.0, 1.2, 93.4, 6.6, 33.5 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 2.9, 2.9, 93.1, 0.0, 0.0, 1.1, 89.1, 10.9, 35.0 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 6.2, 93.8, 0.0, 0.0, 0.0, 76.2, 23.8, 40.2 -5.15625,5,a-pcom-i3,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 5.6, 1.3, 8.0, 83.5, 0.0, 1.6, 0.0, 74.7, 25.3, 62.4 -1,1,a-pcom-i3,2020-21,Gloucester - Beeman Memorial,01070010, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 96.5, 3.5, 56.4 -1,1,a-pcom-i3,2020-21,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 92.7, 7.3, 41.4 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Gloucester - Gloucester High,01070505, 1.6, 0.0, 2.4, 95.1, 0.8, 0.0, 0.0, 60.7, 39.3, 123.2 -1,1,a-pcom-i3,2020-21,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 29.6 -1,1,a-pcom-i3,2020-21,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 92.1, 7.9, 37.8 -1,1,a-pcom-i3,2020-21,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.9, 26.1, 92.1 -1,1,a-pcom-i3,2020-21,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 44.1 -1,1,a-pcom-i3,2020-21,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 53.7 -1,1,a-pcom-i3,2020-21,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.9 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Grafton - Grafton High School,01100505, 1.9, 0.9, 2.8, 92.6, 0.0, 0.0, 1.9, 67.5, 32.5, 107.6 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Grafton - Grafton Middle,01100305, 0.0, 5.9, 0.0, 94.1, 0.0, 0.0, 0.0, 65.3, 34.7, 67.7 -1,1,a-pcom-i3,2020-21,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 93.3 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Grafton - North Grafton Elementary,01100025, 1.7, 0.0, 0.0, 94.6, 0.0, 0.0, 3.8, 96.2, 3.8, 47.9 -1,1,a-pcom-i3,2020-21,Grafton - North Street Elementary School,01100030, 0.0, 1.3, 1.3, 97.4, 0.0, 0.0, 0.0, 94.8, 5.2, 76.8 -2.0624999999999982,2.06,a-pcom-i3,2020-21,Grafton - South Grafton Elementary,01100005, 5.2, 0.0, 0.0, 93.4, 1.4, 0.0, 0.0, 94.8, 5.2, 57.8 -1,1,a-pcom-i3,2020-21,Granby - East Meadow,01110004, 1.4, 1.4, 0.0, 97.2, 0.0, 0.0, 0.0, 85.8, 14.2, 72.1 -1.7499999999999982,1.75,a-pcom-i3,2020-21,Granby - Granby Jr Sr High School,01110505, 0.0, 1.9, 1.9, 94.4, 0.0, 0.0, 1.9, 65.9, 34.1, 53.2 -1,1,a-pcom-i3,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 1.5, 0.0, 0.6, 98.0, 0.0, 0.0, 0.0, 48.8, 51.2, 171.9 -4.624999999999999,4.62,a-pcom-i3,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.4, 1.0, 13.0, 85.2, 0.0, 0.0, 0.4, 59.8, 40.2, 178.2 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.7, 2.3, 3.5, 92.1, 0.3, 0.0, 0.0, 62.8, 37.2, 288.6 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 1.7, 0.4, 2.0, 95.1, 0.8, 0.0, 0.0, 54.9, 45.1, 249.6 -2.7812500000000018,2.78,a-pcom-i3,2020-21,Greenfield - Discovery School at Four Corners,01140025, 2.2, 0.0, 4.4, 91.1, 0.0, 0.0, 2.2, 88.7, 11.3, 45.1 -1,1,a-pcom-i3,2020-21,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 37.6 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Greenfield - Greenfield High,01140505, 0.0, 1.3, 2.7, 94.6, 0.0, 0.0, 1.3, 59.8, 40.2, 74.2 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Greenfield - Greenfield Middle,01140305, 0.0, 2.1, 0.0, 95.9, 0.0, 0.0, 2.1, 81.5, 18.5, 48.7 -3.500000000000001,3.5,a-pcom-i3,2020-21,Greenfield - Newton School,01140035, 0.0, 0.0, 11.2, 88.8, 0.0, 0.0, 0.0, 85.0, 15.0, 35.6 -1,1,a-pcom-i3,2020-21,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.2, 0.8, 24.8 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 1.5, 1.5, 1.5, 95.6, 0.0, 0.0, 0.0, 70.5, 29.5, 67.8 -1,1,a-pcom-i3,2020-21,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.3 -1,1,a-pcom-i3,2020-21,Groton-Dunstable - Florence Roche School,06730010, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 90.0, 10.0, 69.8 -1,1,a-pcom-i3,2020-21,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 98.8, 1.2, 0.0, 0.0, 62.2, 37.8, 80.6 -1,1,a-pcom-i3,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 83.5, 16.5, 96.7 -1,1,a-pcom-i3,2020-21,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 45.3 -2.124999999999999,2.12,a-pcom-i3,2020-21,Hadley - Hadley Elementary,01170015, 2.3, 2.3, 2.3, 93.2, 0.0, 0.0, 0.0, 84.2, 15.8, 44.2 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Hadley - Hopkins Academy,01170505, 2.5, 0.0, 5.0, 92.6, 0.0, 0.0, 0.0, 70.2, 29.8, 40.3 -1,1,a-pcom-i3,2020-21,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.2, 13.8, 65.0 -1,1,a-pcom-i3,2020-21,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 32.9 -1,1,a-pcom-i3,2020-21,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 96.2, 3.8, 36.6 -2.03125,2.03,a-pcom-i3,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 2.3, 2.8, 93.5, 0.0, 0.0, 1.4, 62.0, 38.0, 69.4 -1,1,a-pcom-i3,2020-21,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 80.1, 19.9, 48.4 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Hamilton-Wenham - Winthrop School,06750015, 0.0, 1.8, 1.4, 95.1, 0.0, 0.0, 1.8, 94.4, 5.6, 56.8 -4.187500000000002,4.19,a-pcom-i3,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 3.6, 4.5, 5.4, 86.6, 0.0, 0.0, 0.0, 58.9, 41.1, 56.0 -4.968750000000002,4.97,a-pcom-i3,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 9.1, 2.3, 4.5, 84.1, 0.0, 0.0, 0.0, 61.4, 38.6, 44.0 -1,1,a-pcom-i3,2020-21,Hampden-Wilbraham - Green Meadows Elementary,06800005, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 95.4, 4.6, 65.7 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.8, 0.0, 3.6, 94.6, 0.0, 0.0, 0.0, 95.5, 4.5, 55.2 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Hampden-Wilbraham - Minnechaug Regional High,06800505, 1.3, 0.0, 3.6, 95.1, 0.0, 0.0, 0.0, 67.7, 32.3, 111.5 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 94.6, 5.4, 36.9 -1.40625,1.41,a-pcom-i3,2020-21,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 95.5, 0.0, 0.0, 4.5, 94.4, 5.6, 44.5 -1,1,a-pcom-i3,2020-21,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.7, 24.3, 65.8 -1,1,a-pcom-i3,2020-21,Hampshire - Hampshire Regional High,06830505, 0.9, 0.9, 0.0, 98.2, 0.0, 0.0, 0.0, 72.4, 27.6, 111.2 -1,1,a-pcom-i3,2020-21,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.6, 13.4, 14.9 -1,1,a-pcom-i3,2020-21,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 72.9 -1,1,a-pcom-i3,2020-21,Hanover - Center Elementary,01220005, 0.0, 1.6, 1.6, 96.9, 0.0, 0.0, 0.0, 92.2, 7.8, 64.3 -1,1,a-pcom-i3,2020-21,Hanover - Hanover High,01220505, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 69.2, 30.8, 88.7 -1,1,a-pcom-i3,2020-21,Hanover - Hanover Middle,01220305, 1.0, 0.0, 1.0, 96.9, 1.0, 0.0, 0.0, 78.6, 21.4, 97.9 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Harvard - Bromfield,01250505, 0.2, 0.0, 2.5, 96.1, 0.0, 1.2, 0.0, 70.9, 29.1, 80.8 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Harvard - Hildreth Elementary School,01250005, 1.4, 4.0, 2.4, 92.1, 0.0, 0.0, 0.0, 91.1, 8.9, 61.9 -1,1,a-pcom-i3,2020-21,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 85.1, 14.9, 36.3 -1,1,a-pcom-i3,2020-21,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.4, 29.6, 29.1 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Haverhill - Bradford Elementary,01280008, 1.5, 0.0, 4.5, 92.6, 0.0, 0.0, 1.5, 95.5, 4.5, 67.4 -2.96875,2.97,a-pcom-i3,2020-21,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 1.0, 7.5, 90.5, 1.0, 0.0, 0.0, 84.5, 15.5, 103.6 -1.5625,1.56,a-pcom-i3,2020-21,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 5.0, 95.0, 0.0, 0.0, 0.0, 83.1, 16.9, 60.2 -1,1,a-pcom-i3,2020-21,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.2, 26.8, 4.1 -2.281249999999999,2.28,a-pcom-i3,2020-21,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 7.3, 92.7, 0.0, 0.0, 0.0, 79.9, 20.1, 68.7 -3.0937500000000018,3.09,a-pcom-i3,2020-21,Haverhill - Golden Hill,01280026, 0.0, 2.8, 7.1, 90.1, 0.0, 0.0, 0.0, 90.1, 9.9, 70.4 -4.312499999999999,4.31,a-pcom-i3,2020-21,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 13.8, 86.2, 0.0, 0.0, 0.0, 55.7, 44.3, 16.9 -4.468749999999999,4.47,a-pcom-i3,2020-21,Haverhill - Haverhill High,01280505, 1.3, 2.6, 10.4, 85.7, 0.0, 0.0, 0.0, 66.5, 33.5, 230.5 -1,1,a-pcom-i3,2020-21,Haverhill - John G Whittier,01280085, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 79.5, 20.5, 44.9 -2.124999999999999,2.12,a-pcom-i3,2020-21,Haverhill - Moody,01280045, 2.2, 0.0, 4.6, 93.2, 0.0, 0.0, 0.0, 100.0, 0.0, 46.5 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 88.9, 11.1, 61.5 -3.062499999999999,3.06,a-pcom-i3,2020-21,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 9.8, 90.2, 0.0, 0.0, 0.0, 91.6, 8.4, 61.5 -3.4687499999999982,3.47,a-pcom-i3,2020-21,Haverhill - TEACH,01280073, 0.0, 4.8, 6.3, 88.9, 0.0, 0.0, 0.0, 78.6, 21.4, 21.0 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Haverhill - Tilton,01280075, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 92.8, 7.2, 55.8 -1,1,a-pcom-i3,2020-21,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 96.9, 3.1, 21.5 -1,1,a-pcom-i3,2020-21,Haverhill - Walnut Square,01280080, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 97.6, 2.4, 20.5 -1,1,a-pcom-i3,2020-21,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 24.7 -27.71875,5,a-pcom-i3,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 69.8, 3.8, 11.3, 11.3, 0.0, 0.0, 3.8, 66.0, 34.0, 26.5 -2.6874999999999982,2.69,a-pcom-i3,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 2.9, 0.0, 2.9, 91.4, 0.0, 0.0, 2.9, 88.6, 11.4, 35.0 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 2.2, 0.0, 1.0, 96.8, 0.0, 0.0, 0.0, 83.9, 16.1, 39.5 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Hingham - East Elementary School,01310005, 1.4, 0.0, 0.0, 95.9, 1.4, 0.0, 1.4, 91.1, 8.9, 73.6 -1,1,a-pcom-i3,2020-21,Hingham - Hingham High,01310505, 0.0, 1.3, 0.7, 97.9, 0.0, 0.0, 0.0, 67.6, 32.4, 135.1 -1.09375,1.09,a-pcom-i3,2020-21,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 2.6, 96.5, 0.0, 0.0, 0.9, 80.5, 19.5, 114.8 -1,1,a-pcom-i3,2020-21,Hingham - Plymouth River,01310019, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 90.9, 9.1, 58.7 -1,1,a-pcom-i3,2020-21,Hingham - South Elementary,01310020, 1.4, 1.5, 0.0, 97.1, 0.0, 0.0, 0.0, 94.6, 5.4, 67.5 -1,1,a-pcom-i3,2020-21,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 94.0, 6.0, 62.0 -1,1,a-pcom-i3,2020-21,Holbrook - Holbrook Middle High School,01330505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 67.8, 32.2, 64.6 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Holbrook - John F Kennedy,01330018, 3.9, 1.3, 0.0, 94.8, 0.0, 0.0, 0.0, 97.4, 2.6, 77.2 -1.09375,1.09,a-pcom-i3,2020-21,Holland - Holland Elementary,01350005, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 91.5, 8.5, 28.9 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Holliston - Holliston High,01360505, 0.9, 0.9, 1.8, 96.3, 0.0, 0.0, 0.0, 66.3, 33.7, 108.5 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Holliston - Miller School,01360007, 2.0, 0.0, 1.1, 93.8, 1.0, 0.0, 2.0, 89.7, 10.3, 98.3 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Holliston - Placentino Elementary,01360010, 1.0, 1.0, 1.4, 96.6, 0.0, 0.0, 0.0, 94.1, 5.9, 98.1 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Holliston - Robert H. Adams Middle School,01360305, 0.0, 2.1, 1.1, 96.8, 0.0, 0.0, 0.0, 82.8, 17.2, 94.6 -14.156249999999998,5,a-pcom-i3,2020-21,Holyoke - E N White Elementary,01370045, 2.7, 0.0, 42.5, 54.7, 0.0, 0.0, 0.0, 90.5, 9.5, 73.3 -10.84375,5,a-pcom-i3,2020-21,Holyoke - H.B. Lawrence School,01370070, 6.0, 0.0, 28.7, 65.3, 0.0, 0.0, 0.0, 92.5, 7.5, 33.4 -11.374999999999998,5,a-pcom-i3,2020-21,Holyoke - Holyoke High,01370505, 6.0, 2.1, 28.2, 63.6, 0.0, 0.0, 0.0, 53.5, 46.0, 196.9 -12.875,5,a-pcom-i3,2020-21,Holyoke - Holyoke STEM Academy,01370320, 5.2, 0.0, 36.0, 58.8, 0.0, 0.0, 0.0, 66.6, 33.4, 38.3 -15.874999999999998,5,a-pcom-i3,2020-21,Holyoke - Joseph Metcalf School,01370003, 0.0, 2.6, 48.2, 49.2, 0.0, 0.0, 0.0, 81.7, 18.3, 39.1 -10.53125,5,a-pcom-i3,2020-21,Holyoke - Kelly Elementary,01370040, 6.3, 0.0, 27.4, 66.3, 0.0, 0.0, 0.0, 72.8, 27.2, 47.7 -13.062499999999998,5,a-pcom-i3,2020-21,Holyoke - Lt Clayre Sullivan Elementary,01370055, 8.8, 0.0, 33.1, 58.2, 0.0, 0.0, 0.0, 86.5, 13.5, 74.1 -7.5,5,a-pcom-i3,2020-21,Holyoke - Lt Elmer J McMahon Elementary,01370015, 2.5, 0.0, 21.5, 76.0, 0.0, 0.0, 0.0, 91.7, 8.3, 60.5 -12.593749999999998,5,a-pcom-i3,2020-21,Holyoke - Maurice A Donahue Elementary,01370060, 6.0, 0.0, 33.2, 59.7, 0.0, 0.0, 1.0, 81.6, 18.4, 99.5 -11.343749999999998,5,a-pcom-i3,2020-21,Holyoke - Morgan Full Service Community School,01370025, 8.0, 0.0, 28.3, 63.7, 0.0, 0.0, 0.0, 98.0, 2.0, 49.8 -18.46875,5,a-pcom-i3,2020-21,Holyoke - Veritas Prep Holyoke,01370075, 16.1, 5.6, 33.7, 40.9, 3.7, 0.0, 0.0, 79.3, 20.7, 53.8 -15.34375,5,a-pcom-i3,2020-21,Holyoke - William R. Peck School,01370030, 1.7, 0.0, 47.4, 50.9, 0.0, 0.0, 0.0, 80.3, 19.7, 57.3 -13.406249999999998,5,a-pcom-i3,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 5.3, 0.0, 37.6, 57.1, 0.0, 0.0, 0.0, 72.5, 27.5, 94.5 -1,1,a-pcom-i3,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 94.8, 5.2, 77.0 -1,1,a-pcom-i3,2020-21,Hoosac Valley Regional - Hoosac Valley High School,06030505, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 77.1, 22.9, 55.8 -1,1,a-pcom-i3,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 1.6, 0.0, 0.0, 96.9, 0.0, 1.6, 0.0, 68.5, 31.5, 64.2 -1.25,1.25,a-pcom-i3,2020-21,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 2.6, 96.0, 0.0, 0.0, 1.3, 70.4, 29.6, 75.7 -1,1,a-pcom-i3,2020-21,Hopedale - Memorial,01380010, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 95.5, 4.5, 88.8 -1,1,a-pcom-i3,2020-21,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.9 -1.7499999999999982,1.75,a-pcom-i3,2020-21,Hopkinton - Elmwood,01390010, 0.0, 5.6, 0.0, 94.4, 0.0, 0.0, 0.0, 89.3, 10.7, 71.4 -1.40625,1.41,a-pcom-i3,2020-21,Hopkinton - Hopkins Elementary School,01390015, 0.0, 2.9, 1.6, 95.5, 0.0, 0.0, 0.0, 92.5, 7.5, 69.3 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Hopkinton - Hopkinton High,01390505, 0.7, 2.5, 2.1, 94.7, 0.0, 0.0, 0.0, 61.9, 38.1, 134.5 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Hopkinton - Hopkinton Middle School,01390305, 1.0, 1.9, 1.0, 96.1, 0.0, 0.0, 0.0, 76.1, 23.9, 96.8 -2.906249999999999,2.91,a-pcom-i3,2020-21,Hopkinton - Hopkinton Pre-School,01390003, 4.7, 0.0, 4.7, 90.7, 0.0, 0.0, 0.0, 100.0, 0.0, 19.3 -2.406250000000001,2.41,a-pcom-i3,2020-21,Hopkinton - Marathon Elementary School,01390005, 2.5, 3.8, 1.4, 92.3, 0.0, 0.0, 0.0, 93.6, 6.4, 79.5 -1,1,a-pcom-i3,2020-21,Hudson - C A Farley,01410030, 0.0, 1.4, 1.4, 97.2, 0.0, 0.0, 0.0, 98.6, 1.4, 71.1 -1.40625,1.41,a-pcom-i3,2020-21,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 83.9, 16.1, 89.4 -1,1,a-pcom-i3,2020-21,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 46.7 -1,1,a-pcom-i3,2020-21,Hudson - Hudson High,01410505, 0.8, 0.8, 1.5, 96.9, 0.0, 0.0, 0.0, 73.0, 27.0, 129.1 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Hudson - Mulready Elementary,01410007, 0.0, 1.6, 1.6, 96.8, 0.0, 0.0, 0.0, 97.2, 2.8, 63.3 -1,1,a-pcom-i3,2020-21,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.8, 33.2, 45.3 -1,1,a-pcom-i3,2020-21,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 94.5, 5.5, 56.5 -1,1,a-pcom-i3,2020-21,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.6, 27.4, 29.2 -3.812500000000001,3.81,a-pcom-i3,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 1.8, 3.7, 5.6, 87.8, 0.0, 0.0, 1.0, 74.3, 25.7, 97.8 -1,1,a-pcom-i3,2020-21,Ipswich - Ipswich High,01440505, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 71.0, 29.0, 77.0 -1,1,a-pcom-i3,2020-21,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 83.1, 16.9, 61.1 -1,1,a-pcom-i3,2020-21,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 96.5, 3.5, 68.4 -1,1,a-pcom-i3,2020-21,Ipswich - Winthrop,01440015, 0.0, 0.0, 1.5, 97.1, 0.0, 1.5, 0.0, 93.0, 7.0, 69.0 -20.093749999999996,5,a-pcom-i3,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 41.1, 0.0, 17.7, 35.7, 1.4, 0.0, 4.1, 77.9, 22.1, 73.4 -15.406249999999998,5,a-pcom-i3,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 27.2, 6.8, 12.4, 50.7, 0.0, 0.0, 3.0, 72.3, 27.2, 186.1 -1.0625000000000018,1.06,a-pcom-i3,2020-21,King Philip - King Philip Middle School,06900510, 1.2, 0.0, 2.2, 96.6, 0.0, 0.0, 0.0, 81.1, 18.9, 83.7 -1.1562500000000009,1.16,a-pcom-i3,2020-21,King Philip - King Philip Regional High,06900505, 0.7, 1.5, 1.5, 96.3, 0.0, 0.0, 0.0, 67.3, 32.7, 136.9 -1,1,a-pcom-i3,2020-21,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 60.6 -1,1,a-pcom-i3,2020-21,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 69.5 -4.562499999999998,4.56,a-pcom-i3,2020-21,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 13.0, 85.4, 1.6, 0.0, 0.0, 74.3, 25.7, 62.3 -7.000000000000002,5,a-pcom-i3,2020-21,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 22.4, 77.6, 0.0, 0.0, 0.0, 65.1, 34.9, 57.4 -5.343749999999998,5,a-pcom-i3,2020-21,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 14.7, 82.9, 2.4, 0.0, 0.0, 83.9, 16.1, 82.6 -5.687500000000001,5,a-pcom-i3,2020-21,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 17.0, 81.8, 1.2, 0.0, 0.0, 89.1, 10.9, 82.8 -4.406249999999998,4.41,a-pcom-i3,2020-21,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 14.1, 85.9, 0.0, 0.0, 0.0, 87.7, 12.3, 89.4 -6.25,5,a-pcom-i3,2020-21,Lawrence - Francis M Leahy,01490040, 1.8, 0.0, 18.2, 80.0, 0.0, 0.0, 0.0, 89.1, 10.9, 55.3 -6.687500000000002,5,a-pcom-i3,2020-21,Lawrence - Frost Middle School,01490525, 3.9, 0.0, 13.6, 78.6, 2.0, 0.0, 2.0, 68.9, 31.1, 50.9 -5.625,5,a-pcom-i3,2020-21,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.5, 16.5, 82.0, 0.0, 0.0, 0.0, 94.0, 6.0, 67.4 -5.906250000000002,5,a-pcom-i3,2020-21,Lawrence - Guilmette Middle School,01490025, 1.2, 0.0, 16.4, 81.1, 1.2, 0.0, 0.0, 78.7, 21.3, 80.1 -8.218749999999998,5,a-pcom-i3,2020-21,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 17.7, 73.7, 4.3, 0.0, 4.3, 56.7, 43.3, 23.2 -10.187499999999998,5,a-pcom-i3,2020-21,Lawrence - James F Hennessey,01490020, 0.0, 0.0, 30.8, 67.4, 1.9, 0.0, 0.0, 94.3, 5.7, 53.7 -12.96875,5,a-pcom-i3,2020-21,Lawrence - John Breen School,01490003, 0.0, 0.0, 41.5, 58.5, 0.0, 0.0, 0.0, 99.9, 0.1, 47.3 -8.624999999999998,5,a-pcom-i3,2020-21,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 27.6, 72.4, 0.0, 0.0, 0.0, 92.4, 7.6, 40.2 -13.15625,5,a-pcom-i3,2020-21,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 42.1, 57.9, 0.0, 0.0, 0.0, 95.2, 4.8, 21.6 -9.500000000000002,5,a-pcom-i3,2020-21,Lawrence - Lawrence Family Public Academy,01490011, 3.0, 0.0, 27.4, 69.6, 0.0, 0.0, 0.0, 96.9, 3.1, 33.3 -9.84375,5,a-pcom-i3,2020-21,Lawrence - Lawrence High School,01490515, 1.2, 0.0, 28.4, 68.5, 1.6, 0.0, 0.3, 64.2, 35.8, 343.3 -9.125,5,a-pcom-i3,2020-21,Lawrence - Oliver Partnership School,01490048, 1.7, 0.0, 27.6, 70.8, 0.0, 0.0, 0.0, 83.4, 16.6, 60.3 -5.406249999999999,5,a-pcom-i3,2020-21,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 17.3, 82.7, 0.0, 0.0, 0.0, 74.3, 25.7, 70.2 -8.96875,5,a-pcom-i3,2020-21,Lawrence - RISE Academy,01490615, 0.0, 0.0, 28.7, 71.3, 0.0, 0.0, 0.0, 60.2, 39.8, 12.6 -7.218749999999998,5,a-pcom-i3,2020-21,Lawrence - Robert Frost,01490018, 3.1, 0.0, 17.0, 76.9, 1.5, 0.0, 1.5, 90.8, 9.2, 65.3 -9.874999999999998,5,a-pcom-i3,2020-21,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 31.6, 68.4, 0.0, 0.0, 0.0, 95.1, 4.9, 41.6 -13.843749999999998,5,a-pcom-i3,2020-21,Lawrence - School for Exceptional Studies,01490537, 4.2, 0.0, 40.0, 55.7, 0.0, 0.0, 0.0, 65.5, 33.6, 117.6 -5.0,5.0,a-pcom-i3,2020-21,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 14.7, 84.0, 0.0, 0.0, 1.2, 84.1, 15.9, 82.2 -11.5625,5,a-pcom-i3,2020-21,Lawrence - Spark Academy,01490085, 4.9, 0.0, 28.9, 63.0, 3.2, 0.0, 0.0, 77.7, 22.3, 61.7 -12.875,5,a-pcom-i3,2020-21,Lawrence - UP Academy Leonard Middle School,01490090, 2.4, 0.0, 38.8, 58.8, 0.0, 0.0, 0.0, 61.4, 38.6, 41.5 -12.937499999999998,5,a-pcom-i3,2020-21,Lawrence - UP Academy Oliver Middle School,01490049, 4.8, 0.0, 31.7, 58.6, 4.8, 0.0, 0.0, 73.3, 26.7, 41.3 -9.718749999999998,5,a-pcom-i3,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.0, 5.2, 24.9, 68.9, 0.0, 0.0, 0.0, 88.6, 11.4, 96.5 -7.34375,5,a-pcom-i3,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,04860105, 7.8, 1.3, 14.4, 76.5, 0.0, 0.0, 0.0, 84.3, 15.7, 76.5 -1,1,a-pcom-i3,2020-21,Lee - Lee Elementary,01500025, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 89.4, 10.6, 64.4 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Lee - Lee Middle/High School,01500505, 0.0, 1.6, 1.6, 96.7, 0.0, 0.0, 0.0, 76.6, 23.4, 60.6 -1,1,a-pcom-i3,2020-21,Leicester - Leicester Elementary,01510005, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 95.7, 4.3, 66.4 -2.3749999999999982,2.37,a-pcom-i3,2020-21,Leicester - Leicester High,01510505, 0.0, 1.9, 5.7, 92.4, 0.0, 0.0, 0.0, 75.8, 24.2, 54.0 -2.562500000000001,2.56,a-pcom-i3,2020-21,Leicester - Leicester Integrated Preschool,01510001, 0.0, 0.0, 8.2, 91.8, 0.0, 0.0, 0.0, 98.4, 1.6, 15.8 -1.25,1.25,a-pcom-i3,2020-21,Leicester - Leicester Middle,01510015, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 79.1, 20.9, 49.9 -1,1,a-pcom-i3,2020-21,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 66.6, 33.4, 72.6 -1,1,a-pcom-i3,2020-21,Lenox - Morris,01520015, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 93.8, 6.2, 64.9 -3.656250000000001,3.66,a-pcom-i3,2020-21,Leominster - Bennett,01530003, 6.3, 1.5, 3.9, 88.3, 0.0, 0.0, 0.0, 98.5, 1.5, 20.5 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Leominster - Center For Technical Education Innovation,01530605, 1.0, 2.3, 0.6, 96.1, 0.0, 0.0, 0.0, 50.5, 49.5, 70.6 -1,1,a-pcom-i3,2020-21,Leominster - Fall Brook,01530007, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 95.3, 4.7, 64.0 -3.75,3.75,a-pcom-i3,2020-21,Leominster - Frances Drake School,01530010, 2.3, 1.3, 8.3, 88.0, 0.0, 0.0, 0.0, 85.6, 14.4, 76.8 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Leominster - Johnny Appleseed,01530025, 2.1, 0.0, 1.3, 96.6, 0.0, 0.0, 0.0, 98.6, 1.4, 71.4 -3.6249999999999982,3.62,a-pcom-i3,2020-21,Leominster - Leominster Center for Excellence,01530515, 11.6, 0.0, 0.0, 88.4, 0.0, 0.0, 0.0, 76.7, 23.3, 8.6 -2.34375,2.34,a-pcom-i3,2020-21,Leominster - Leominster High School,01530505, 1.4, 1.2, 5.0, 92.5, 0.0, 0.0, 0.0, 66.3, 33.7, 110.9 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Leominster - Lincoln School,01530005, 0.0, 0.0, 6.9, 93.1, 0.0, 0.0, 0.0, 92.5, 7.5, 17.4 -2.124999999999999,2.12,a-pcom-i3,2020-21,Leominster - Northwest,01530030, 4.7, 0.0, 2.2, 93.2, 0.0, 0.0, 0.0, 93.0, 7.0, 64.4 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Leominster - Priest Street,01530040, 3.0, 3.0, 0.0, 94.1, 0.0, 0.0, 0.0, 98.3, 1.7, 23.6 -1,1,a-pcom-i3,2020-21,Leominster - Samoset School,01530045, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 73.7, 26.3, 54.4 -2.0624999999999982,2.06,a-pcom-i3,2020-21,Leominster - Sky View Middle School,01530320, 1.2, 0.0, 5.3, 93.4, 0.0, 0.0, 0.0, 84.9, 15.1, 82.3 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Leverett - Leverett Elementary,01540005, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 88.4, 11.6, 24.9 -5.9375,5,a-pcom-i3,2020-21,Lexington - Bowman,01550008, 5.1, 9.8, 3.4, 81.0, 0.0, 0.8, 0.0, 83.2, 16.8, 69.2 -3.9374999999999982,3.94,a-pcom-i3,2020-21,Lexington - Bridge,01550006, 3.0, 5.3, 1.4, 87.4, 0.0, 0.0, 2.8, 89.0, 11.0, 70.3 -3.843749999999999,3.84,a-pcom-i3,2020-21,Lexington - Fiske,01550015, 1.6, 7.6, 1.1, 87.7, 1.0, 0.0, 1.0, 88.6, 11.4, 89.3 -4.437500000000001,4.44,a-pcom-i3,2020-21,Lexington - Harrington,01550030, 3.4, 6.6, 2.9, 85.8, 0.0, 0.0, 1.4, 86.5, 13.5, 74.0 -4.500000000000002,4.5,a-pcom-i3,2020-21,Lexington - Jonas Clarke Middle,01550305, 2.4, 5.9, 4.8, 85.6, 0.0, 0.0, 1.3, 76.9, 23.1, 146.8 -3.4062500000000018,3.41,a-pcom-i3,2020-21,Lexington - Joseph Estabrook,01550010, 3.2, 3.4, 2.9, 89.1, 0.0, 0.0, 1.5, 91.1, 8.9, 68.7 -2.6874999999999982,2.69,a-pcom-i3,2020-21,Lexington - Lexington Children's Place,01550001, 0.0, 4.3, 2.1, 91.4, 0.0, 0.0, 2.1, 100.0, 0.0, 31.3 -3.4062500000000018,3.41,a-pcom-i3,2020-21,Lexington - Lexington High,01550505, 1.7, 4.3, 3.8, 89.1, 0.0, 0.0, 1.0, 70.6, 29.4, 287.4 -6.906249999999998,5,a-pcom-i3,2020-21,Lexington - Maria Hastings,01550035, 10.6, 8.3, 2.1, 77.9, 0.0, 0.0, 1.1, 93.8, 6.2, 91.6 -4.093749999999998,4.09,a-pcom-i3,2020-21,Lexington - Wm Diamond Middle,01550310, 1.8, 6.1, 4.4, 86.9, 0.0, 0.0, 0.7, 76.2, 23.8, 135.7 -11.875,5,a-pcom-i3,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 14.3, 0.0, 19.0, 62.0, 0.0, 0.0, 4.8, 69.1, 30.9, 42.1 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Lincoln - Hanscom Middle,01570305, 2.1, 0.0, 4.1, 93.8, 0.0, 0.0, 0.0, 81.2, 18.8, 48.2 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Lincoln - Hanscom Primary,01570006, 2.6, 3.1, 0.5, 93.8, 0.0, 0.0, 0.0, 96.8, 3.2, 60.4 -3.031250000000001,3.03,a-pcom-i3,2020-21,Lincoln - Lincoln School,01570025, 4.0, 3.6, 1.2, 90.3, 0.9, 0.0, 0.0, 87.3, 12.7, 109.9 -2.250000000000001,2.25,a-pcom-i3,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 3.1, 1.4, 1.7, 92.8, 0.5, 0.0, 0.5, 61.6, 38.4, 220.3 -1.25,1.25,a-pcom-i3,2020-21,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 4.0, 67.4, 32.6, 50.6 -1,1,a-pcom-i3,2020-21,Littleton - Littleton Middle School,01580305, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 77.7, 22.3, 40.3 -1,1,a-pcom-i3,2020-21,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 46.3 -1.9062499999999982,1.91,a-pcom-i3,2020-21,Littleton - Shaker Lane Elementary,01580005, 0.0, 3.1, 1.3, 93.9, 0.0, 0.0, 1.8, 97.8, 2.2, 57.0 -1,1,a-pcom-i3,2020-21,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 64.0 -2.2187499999999982,2.22,a-pcom-i3,2020-21,Longmeadow - Center,01590010, 0.0, 5.3, 1.8, 92.9, 0.0, 0.0, 0.0, 91.1, 8.9, 56.3 -1,1,a-pcom-i3,2020-21,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 81.3, 18.7, 39.6 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Longmeadow - Longmeadow High,01590505, 0.9, 0.0, 2.6, 95.7, 0.0, 0.0, 0.9, 67.1, 32.9, 115.9 -1,1,a-pcom-i3,2020-21,Longmeadow - Williams Middle,01590305, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 78.3, 21.7, 42.3 -1,1,a-pcom-i3,2020-21,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.6, 1.4, 71.1 -3.968750000000001,3.97,a-pcom-i3,2020-21,Lowell - Abraham Lincoln,01600020, 0.0, 6.3, 6.3, 87.3, 0.0, 0.0, 0.0, 91.4, 8.6, 63.0 -5.625,5,a-pcom-i3,2020-21,Lowell - B.F. Butler Middle School,01600310, 7.4, 5.7, 3.3, 82.0, 0.0, 0.0, 1.6, 78.9, 21.1, 61.0 -3.999999999999999,4.0,a-pcom-i3,2020-21,Lowell - Bartlett Community Partnership,01600090, 1.3, 6.4, 5.1, 87.2, 0.0, 0.0, 0.0, 85.6, 14.4, 78.3 -5.718749999999999,5,a-pcom-i3,2020-21,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 13.7, 4.6, 81.7, 0.0, 0.0, 0.0, 97.0, 3.0, 32.8 -3.2500000000000018,3.25,a-pcom-i3,2020-21,Lowell - Charles W Morey,01600030, 0.0, 3.2, 6.4, 89.6, 0.0, 0.0, 0.8, 95.2, 4.8, 62.4 -4.281250000000001,4.28,a-pcom-i3,2020-21,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 8.8, 4.8, 86.3, 0.0, 0.0, 0.0, 86.5, 13.5, 62.2 -1,1,a-pcom-i3,2020-21,Lowell - Dr An Wang School,01600345, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 83.1, 16.9, 65.1 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Lowell - Dr Gertrude Bailey,01600002, 0.0, 1.6, 1.6, 96.8, 0.0, 0.0, 0.0, 95.2, 4.8, 62.9 -5.687500000000001,5,a-pcom-i3,2020-21,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 11.4, 6.8, 81.8, 0.0, 0.0, 0.0, 77.3, 22.7, 44.1 -3.187500000000001,3.19,a-pcom-i3,2020-21,Lowell - Greenhalge,01600015, 1.5, 1.5, 4.4, 89.8, 1.5, 0.0, 1.5, 98.5, 1.5, 68.5 -6.124999999999998,5,a-pcom-i3,2020-21,Lowell - Henry J Robinson Middle,01600330, 1.5, 4.5, 12.1, 80.4, 0.0, 0.0, 1.5, 69.9, 30.1, 66.2 -3.125,3.13,a-pcom-i3,2020-21,Lowell - James S Daley Middle School,01600315, 3.7, 3.7, 2.5, 90.0, 0.0, 0.0, 0.0, 80.5, 19.5, 80.2 -4.656250000000002,4.66,a-pcom-i3,2020-21,Lowell - James Sullivan Middle School,01600340, 5.4, 0.0, 9.5, 85.1, 0.0, 0.0, 0.0, 76.9, 23.1, 73.8 -1,1,a-pcom-i3,2020-21,Lowell - John J Shaughnessy,01600050, 1.5, 0.8, 0.8, 97.0, 0.0, 0.0, 0.0, 93.9, 6.1, 66.1 -5.9375,5,a-pcom-i3,2020-21,Lowell - Joseph McAvinnue,01600010, 0.0, 4.4, 14.6, 81.0, 0.0, 0.0, 0.0, 91.2, 8.8, 68.3 -4.468749999999999,4.47,a-pcom-i3,2020-21,Lowell - Kathryn P. Stoklosa Middle School,01600360, 2.7, 8.2, 2.7, 85.7, 0.0, 0.7, 0.0, 61.4, 38.6, 73.5 -5.718749999999999,5,a-pcom-i3,2020-21,Lowell - Laura Lee Therapeutic Day School,01600085, 6.1, 0.0, 12.2, 81.7, 0.0, 0.0, 0.0, 67.7, 32.3, 16.4 -5.187499999999998,5,a-pcom-i3,2020-21,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 16.6, 83.4, 0.0, 0.0, 0.0, 65.1, 34.9, 18.1 -5.281250000000002,5,a-pcom-i3,2020-21,Lowell - Lowell High,01600505, 2.4, 5.2, 7.8, 83.1, 0.0, 0.0, 1.5, 64.4, 35.6, 307.7 -2.9999999999999982,3.0,a-pcom-i3,2020-21,Lowell - Moody Elementary,01600027, 0.0, 1.6, 8.0, 90.4, 0.0, 0.0, 0.0, 95.2, 4.8, 31.1 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Lowell - Pawtucketville Memorial,01600036, 2.4, 1.6, 0.0, 95.9, 0.0, 0.0, 0.0, 93.5, 6.5, 61.7 -3.999999999999999,4.0,a-pcom-i3,2020-21,Lowell - Peter W Reilly,01600040, 1.7, 0.0, 11.1, 87.2, 0.0, 0.0, 0.0, 94.9, 5.1, 58.6 -2.7812500000000018,2.78,a-pcom-i3,2020-21,Lowell - Pyne Arts,01600018, 1.5, 1.5, 5.9, 91.1, 0.0, 0.0, 0.0, 86.3, 13.7, 67.8 -4.781249999999999,4.78,a-pcom-i3,2020-21,Lowell - Rogers STEM Academy,01600005, 4.9, 5.5, 4.9, 84.7, 0.0, 0.0, 0.0, 79.2, 20.8, 91.3 -4.750000000000001,4.75,a-pcom-i3,2020-21,Lowell - S Christa McAuliffe Elementary,01600075, 3.0, 1.5, 10.6, 84.8, 0.0, 0.0, 0.0, 91.8, 8.2, 65.9 -6.062500000000002,5,a-pcom-i3,2020-21,Lowell - The Career Academy,01600515, 5.5, 8.3, 5.5, 80.6, 0.0, 0.0, 0.0, 68.4, 31.6, 18.1 -2.7812500000000018,2.78,a-pcom-i3,2020-21,Lowell - Washington,01600055, 0.0, 2.2, 4.4, 91.1, 2.2, 0.0, 0.0, 86.7, 13.3, 45.0 -8.8125,5,a-pcom-i3,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 4.3, 9.8, 13.0, 71.8, 0.0, 0.0, 1.1, 76.1, 23.9, 92.0 -7.5,5,a-pcom-i3,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 8.0, 16.0, 76.0, 0.0, 0.0, 0.0, 64.0, 36.0, 12.5 -1,1,a-pcom-i3,2020-21,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.6, 1.4, 47.8 -1,1,a-pcom-i3,2020-21,Ludlow - East Street Elementary School,01610010, 1.2, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 94.3, 5.7, 82.5 -1.40625,1.41,a-pcom-i3,2020-21,Ludlow - Ludlow Senior High,01610505, 1.8, 0.9, 1.8, 95.5, 0.0, 0.0, 0.0, 67.4, 32.6, 110.3 -1,1,a-pcom-i3,2020-21,Ludlow - Paul R Baird Middle,01610305, 1.1, 0.0, 1.1, 97.8, 0.0, 0.0, 0.0, 81.0, 19.0, 89.4 -1,1,a-pcom-i3,2020-21,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 89.3, 8.8, 52.9 -1,1,a-pcom-i3,2020-21,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.5, 37.5, 3.2 -1,1,a-pcom-i3,2020-21,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 98.0, 0.0, 2.0, 0.0, 53.8, 46.2, 50.5 -1,1,a-pcom-i3,2020-21,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.1, 13.9, 46.8 -1,1,a-pcom-i3,2020-21,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 59.7 -1,1,a-pcom-i3,2020-21,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 46.9 -3.75,3.75,a-pcom-i3,2020-21,Lynn - A Drewicz Elementary,01630016, 2.0, 4.0, 6.0, 88.0, 0.0, 0.0, 0.0, 93.8, 6.2, 50.1 -3.843749999999999,3.84,a-pcom-i3,2020-21,Lynn - Aborn,01630011, 4.0, 0.0, 8.0, 87.7, 0.0, 0.0, 0.4, 99.6, 0.4, 25.1 -4.312499999999999,4.31,a-pcom-i3,2020-21,Lynn - Breed Middle School,01630405, 2.4, 2.4, 6.5, 86.2, 0.0, 0.0, 2.4, 68.9, 31.1, 123.0 -2.749999999999999,2.75,a-pcom-i3,2020-21,Lynn - Brickett Elementary,01630020, 0.0, 2.8, 5.6, 91.2, 0.0, 0.0, 0.3, 94.8, 5.2, 35.4 -2.8125,2.81,a-pcom-i3,2020-21,Lynn - Capt William G Shoemaker,01630090, 0.0, 1.3, 6.4, 91.0, 0.0, 0.0, 1.3, 95.5, 4.5, 78.1 -4.281250000000001,4.28,a-pcom-i3,2020-21,Lynn - Classical High,01630505, 3.9, 0.0, 6.5, 86.3, 0.0, 0.0, 3.3, 63.4, 36.6, 153.2 -4.156249999999999,4.16,a-pcom-i3,2020-21,Lynn - Cobbet Elementary,01630035, 1.5, 3.0, 7.4, 86.7, 0.0, 0.0, 1.5, 92.6, 7.4, 67.6 -3.4375,3.44,a-pcom-i3,2020-21,Lynn - E J Harrington,01630045, 0.0, 2.6, 8.2, 89.0, 0.0, 0.0, 0.1, 98.1, 1.9, 77.0 -4.84375,4.84,a-pcom-i3,2020-21,Lynn - Edward A Sisson,01630095, 4.2, 0.0, 11.3, 84.5, 0.0, 0.0, 0.0, 95.0, 5.0, 47.2 -7.124999999999999,5,a-pcom-i3,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 7.6, 0.0, 15.2, 77.2, 0.0, 0.0, 0.0, 49.0, 51.0, 53.0 -4.906250000000001,4.91,a-pcom-i3,2020-21,Lynn - Hood,01630055, 0.0, 3.9, 9.7, 84.3, 0.0, 0.0, 2.1, 98.0, 2.0, 51.7 -4.406249999999998,4.41,a-pcom-i3,2020-21,Lynn - Ingalls,01630060, 7.0, 1.4, 5.6, 85.9, 0.0, 0.0, 0.1, 97.1, 2.9, 71.5 -4.874999999999998,4.87,a-pcom-i3,2020-21,Lynn - Julia F Callahan,01630030, 6.9, 0.0, 6.9, 84.4, 1.7, 0.0, 0.0, 89.4, 8.8, 57.6 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 91.4, 8.6, 28.0 -6.000000000000001,5,a-pcom-i3,2020-21,Lynn - Lynn English High,01630510, 3.2, 0.6, 14.7, 80.8, 0.0, 0.0, 0.6, 52.3, 47.7, 156.2 -5.46875,5,a-pcom-i3,2020-21,Lynn - Lynn Vocational Technical Institute,01630605, 1.8, 0.0, 14.4, 82.5, 0.0, 0.0, 1.3, 58.6, 41.4, 166.1 -2.906249999999999,2.91,a-pcom-i3,2020-21,Lynn - Lynn Woods,01630075, 0.0, 0.0, 9.3, 90.7, 0.0, 0.0, 0.0, 94.2, 5.8, 21.4 -3.5625000000000018,3.56,a-pcom-i3,2020-21,Lynn - Pickering Middle,01630420, 2.9, 1.4, 5.7, 88.6, 0.0, 0.0, 1.4, 77.2, 22.8, 70.0 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Lynn - Robert L Ford,01630050, 0.0, 0.0, 4.2, 95.6, 0.0, 0.0, 0.2, 91.4, 8.6, 47.2 -3.7187500000000018,3.72,a-pcom-i3,2020-21,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 11.9, 88.1, 0.0, 0.0, 0.0, 91.3, 8.7, 33.6 -3.999999999999999,4.0,a-pcom-i3,2020-21,Lynn - Thurgood Marshall Mid,01630305, 3.8, 0.8, 8.0, 87.2, 0.0, 0.0, 0.2, 63.7, 36.3, 131.6 -3.062499999999999,3.06,a-pcom-i3,2020-21,Lynn - Tracy,01630100, 0.0, 0.0, 7.3, 90.2, 2.4, 0.0, 0.0, 95.8, 4.2, 40.9 -5.9375,5,a-pcom-i3,2020-21,Lynn - Washington Elementary School,01630005, 5.5, 3.7, 8.0, 81.0, 0.0, 0.0, 1.8, 92.0, 8.0, 54.3 -3.59375,3.59,a-pcom-i3,2020-21,Lynn - William R Fallon,01630080, 0.0, 0.0, 11.5, 88.5, 0.0, 0.0, 0.0, 90.4, 5.8, 26.0 -3.187500000000001,3.19,a-pcom-i3,2020-21,Lynn - Wm P Connery,01630040, 1.6, 1.6, 7.0, 89.8, 0.0, 0.0, 0.0, 89.0, 11.0, 63.9 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Lynnfield - Huckleberry Hill,01640010, 0.0, 1.4, 2.9, 95.7, 0.0, 0.0, 0.0, 99.4, 0.6, 69.0 -1,1,a-pcom-i3,2020-21,Lynnfield - Lynnfield High,01640505, 0.0, 1.3, 0.0, 97.3, 0.0, 0.0, 1.3, 69.0, 31.0, 74.9 -1,1,a-pcom-i3,2020-21,Lynnfield - Lynnfield Middle School,01640405, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 81.8, 18.2, 83.6 -1,1,a-pcom-i3,2020-21,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.5 -1,1,a-pcom-i3,2020-21,Lynnfield - Summer Street,01640020, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 96.0, 4.0, 49.6 -14.40625,5,a-pcom-i3,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 25.0, 4.7, 13.1, 53.9, 0.4, 0.0, 2.8, 73.7, 26.3, 247.5 -3.687499999999999,3.69,a-pcom-i3,2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 88.2, 0.0, 0.0, 11.8, 58.8, 41.2, 8.5 -2.749999999999999,2.75,a-pcom-i3,2020-21,Malden - Beebe,01650003, 2.9, 4.9, 1.0, 91.2, 0.0, 0.0, 0.0, 86.4, 13.6, 102.2 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Malden - Ferryway,01650013, 2.1, 3.2, 2.1, 92.6, 0.0, 0.0, 0.0, 83.4, 16.6, 94.5 -2.593749999999999,2.59,a-pcom-i3,2020-21,Malden - Forestdale,01650027, 1.9, 2.9, 2.9, 91.7, 0.0, 0.0, 0.5, 93.5, 6.5, 103.0 -2.718750000000001,2.72,a-pcom-i3,2020-21,Malden - Linden,01650047, 5.8, 1.9, 0.0, 91.3, 0.0, 0.0, 1.0, 86.3, 13.7, 103.5 -5.78125,5,a-pcom-i3,2020-21,Malden - Malden Early Learning Center,01650049, 12.3, 6.2, 0.0, 81.5, 0.0, 0.0, 0.0, 96.9, 3.1, 65.0 -4.6875,4.69,a-pcom-i3,2020-21,Malden - Malden High,01650505, 6.2, 2.7, 4.5, 85.0, 0.0, 0.0, 1.7, 67.6, 32.4, 178.0 -5.281250000000002,5,a-pcom-i3,2020-21,Malden - Salemwood,01650057, 6.6, 3.3, 3.3, 83.1, 0.0, 0.0, 3.7, 85.0, 15.0, 121.2 -1,1,a-pcom-i3,2020-21,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.6, 17.4, 39.7 -1,1,a-pcom-i3,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.0, 1.7, 97.3, 0.0, 0.0, 0.0, 64.9, 35.1, 59.3 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 2.3, 2.3, 95.4, 0.0, 0.0, 0.0, 77.6, 22.4, 43.8 -1,1,a-pcom-i3,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 91.6, 8.4, 47.4 -1,1,a-pcom-i3,2020-21,Mansfield - Everett W Robinson,01670007, 1.0, 1.0, 0.0, 97.9, 0.0, 0.0, 0.0, 94.4, 5.6, 95.8 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Mansfield - Harold L Qualters Middle,01670035, 0.9, 0.0, 1.7, 96.6, 0.0, 0.0, 0.9, 77.8, 22.2, 116.8 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Mansfield - Jordan/Jackson Elementary,01670014, 0.7, 2.3, 1.2, 94.7, 0.0, 0.0, 1.2, 92.9, 7.1, 86.9 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Mansfield - Mansfield High,01670505, 0.0, 0.7, 4.0, 95.3, 0.0, 0.0, 0.0, 68.8, 31.2, 148.9 -1,1,a-pcom-i3,2020-21,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 26.2 -3.4375,3.44,a-pcom-i3,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505, 7.3, 0.0, 3.7, 89.0, 0.0, 0.0, 0.0, 61.0, 39.0, 27.4 -2.3749999999999982,2.37,a-pcom-i3,2020-21,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 6.0, 92.4, 0.0, 0.0, 1.5, 100.0, 0.0, 13.2 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Marblehead - Glover,01680020, 0.0, 0.0, 1.4, 95.9, 0.0, 1.4, 1.4, 94.6, 5.4, 73.6 -1,1,a-pcom-i3,2020-21,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 97.3, 2.7, 37.2 -2.2187499999999982,2.22,a-pcom-i3,2020-21,Marblehead - Marblehead High,01680505, 0.7, 2.2, 2.9, 92.9, 0.0, 0.0, 1.4, 61.4, 38.6, 139.3 -1,1,a-pcom-i3,2020-21,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.5, 1.5, 96.9, 0.0, 0.0, 0.0, 76.8, 23.2, 65.4 -1,1,a-pcom-i3,2020-21,Marblehead - Village School,01680016, 0.0, 0.0, 0.9, 97.9, 0.0, 0.0, 1.2, 90.0, 10.0, 109.9 -1,1,a-pcom-i3,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 96.9, 0.0, 0.0, 3.1, 78.6, 21.4, 32.8 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Marion - Sippican,01690005, 1.8, 1.8, 0.0, 96.3, 0.0, 0.0, 0.0, 93.0, 7.0, 54.1 -1.9062499999999982,1.91,a-pcom-i3,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 2.0, 3.4, 93.9, 0.7, 0.0, 0.0, 72.7, 27.3, 146.8 -1.7499999999999982,1.75,a-pcom-i3,2020-21,Marlborough - Charles Jaworek School,01700030, 2.2, 1.1, 2.4, 94.4, 0.0, 0.0, 0.0, 96.4, 3.6, 92.4 -1.875,1.88,a-pcom-i3,2020-21,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 4.0, 94.0, 0.0, 0.0, 2.0, 90.0, 10.0, 49.9 -2.093750000000001,2.09,a-pcom-i3,2020-21,Marlborough - Francis J Kane,01700008, 1.4, 0.0, 5.3, 93.3, 0.0, 0.0, 0.0, 87.3, 12.7, 71.7 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Marlborough - Goodnow Brothers Elementary School,01700020, 2.2, 1.1, 2.0, 94.6, 0.0, 0.0, 0.0, 89.7, 10.3, 89.3 -2.437499999999999,2.44,a-pcom-i3,2020-21,Marlborough - Marlborough High,01700505, 1.2, 0.5, 5.5, 92.2, 0.6, 0.0, 0.0, 67.4, 32.6, 163.3 -2.9375000000000018,2.94,a-pcom-i3,2020-21,Marlborough - Richer,01700025, 0.0, 1.3, 8.1, 90.6, 0.0, 0.0, 0.0, 94.4, 5.6, 76.3 -1,1,a-pcom-i3,2020-21,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 53.0 -1,1,a-pcom-i3,2020-21,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 41.0 -1,1,a-pcom-i3,2020-21,Marshfield - Furnace Brook Middle,01710310, 0.8, 0.0, 0.3, 98.0, 0.8, 0.0, 0.0, 85.3, 14.7, 120.9 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 88.8, 11.2, 62.4 -1,1,a-pcom-i3,2020-21,Marshfield - Marshfield High,01710505, 1.3, 0.0, 0.4, 97.7, 0.6, 0.0, 0.0, 71.1, 28.9, 158.3 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Marshfield - Martinson Elementary,01710025, 0.0, 2.6, 0.0, 96.1, 1.3, 0.0, 0.0, 95.6, 4.4, 76.8 -1,1,a-pcom-i3,2020-21,Marshfield - South River,01710010, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 97.3, 2.7, 51.5 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.8, 0.8, 1.9, 92.1, 0.8, 0.0, 2.5, 66.7, 33.3, 118.2 -1.5937499999999982,1.59,a-pcom-i3,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.5, 0.0, 0.0, 94.9, 0.0, 0.0, 2.5, 82.2, 17.8, 39.3 -13.0,5,a-pcom-i3,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 23.4, 0.0, 18.2, 58.4, 0.0, 0.0, 0.0, 80.9, 19.1, 57.6 -1,1,a-pcom-i3,2020-21,Masconomet - Masconomet Regional High School,07050505, 0.0, 1.5, 0.8, 97.7, 0.0, 0.0, 0.0, 64.6, 35.4, 131.7 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Masconomet - Masconomet Regional Middle School,07050405, 2.6, 1.8, 0.0, 94.3, 0.0, 0.0, 1.3, 67.6, 32.4, 76.9 -1,1,a-pcom-i3,2020-21,Mashpee - Kenneth Coombs School,01720005, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 98.5, 1.5, 67.5 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Mashpee - Mashpee High,01720505, 1.9, 1.0, 0.0, 93.7, 1.9, 1.4, 0.0, 62.5, 37.5, 52.3 -1.25,1.25,a-pcom-i3,2020-21,Mashpee - Mashpee Middle School,01720020, 2.8, 1.3, 0.0, 96.0, 0.0, 0.0, 0.0, 80.1, 19.9, 36.2 -1,1,a-pcom-i3,2020-21,Mashpee - Quashnet School,01720035, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 82.8, 17.2, 58.1 -1,1,a-pcom-i3,2020-21,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 39.2 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Mattapoisett - Old Hammondtown,01730010, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 84.3, 15.7, 30.2 -2.2187499999999982,2.22,a-pcom-i3,2020-21,Maynard - Fowler School,01740305, 0.0, 1.4, 5.7, 92.9, 0.0, 0.0, 0.0, 77.5, 22.5, 70.1 -2.9999999999999982,3.0,a-pcom-i3,2020-21,Maynard - Green Meadow,01740010, 0.0, 2.4, 7.2, 90.4, 0.0, 0.0, 0.0, 94.0, 6.0, 83.7 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Maynard - Maynard High,01740505, 0.0, 1.8, 1.8, 94.6, 0.0, 0.0, 1.8, 64.5, 35.5, 55.7 -1,1,a-pcom-i3,2020-21,Medfield - Dale Street,01750005, 0.0, 1.1, 1.2, 97.7, 0.0, 0.0, 0.0, 91.0, 9.0, 57.2 -1,1,a-pcom-i3,2020-21,Medfield - Medfield Senior High,01750505, 0.0, 1.0, 1.0, 97.0, 0.0, 0.0, 1.0, 69.5, 30.5, 99.6 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Medfield - Memorial School,01750003, 0.0, 1.5, 1.0, 96.4, 0.0, 0.0, 1.2, 95.9, 4.1, 68.0 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Medfield - Ralph Wheelock School,01750007, 0.0, 0.7, 3.1, 96.1, 0.0, 0.0, 0.0, 95.6, 4.4, 53.4 -1,1,a-pcom-i3,2020-21,Medfield - Thomas Blake Middle,01750305, 1.2, 0.7, 1.2, 97.0, 0.0, 0.0, 0.0, 75.7, 24.3, 86.1 -1,1,a-pcom-i3,2020-21,Medford - Brooks School,01760130, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 95.1, 4.9, 65.1 -1,1,a-pcom-i3,2020-21,Medford - Christopher Columbus,01760140, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 91.3, 8.7, 60.0 -4.156249999999999,4.16,a-pcom-i3,2020-21,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 86.7, 0.0, 0.0, 13.3, 46.7, 53.3, 7.5 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Medford - John J McGlynn Elementary School,01760068, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 97.2, 2.8, 59.7 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Medford - John J. McGlynn Middle School,01760320, 1.3, 2.2, 1.3, 95.2, 0.0, 0.0, 0.0, 75.9, 24.1, 74.3 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Medford - Madeleine Dugger Andrews,01760315, 1.7, 4.0, 0.0, 94.3, 0.0, 0.0, 0.0, 67.5, 32.5, 60.0 -1.25,1.25,a-pcom-i3,2020-21,Medford - Medford High,01760505, 2.0, 1.0, 1.0, 96.0, 0.0, 0.0, 0.0, 64.2, 35.8, 198.4 -1,1,a-pcom-i3,2020-21,Medford - Milton Fuller Roberts,01760150, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 90.6, 9.4, 76.3 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Medway - Burke/Memorial Elementary School,01770015, 1.7, 1.7, 0.0, 96.7, 0.0, 0.0, 0.0, 95.0, 5.0, 60.4 -1,1,a-pcom-i3,2020-21,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 52.7 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Medway - Medway High,01770505, 0.0, 1.0, 1.9, 95.8, 1.3, 0.0, 0.0, 66.6, 33.4, 78.0 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Medway - Medway Middle,01770305, 1.1, 2.1, 0.5, 96.3, 0.0, 0.0, 0.0, 76.0, 24.0, 95.2 -1,1,a-pcom-i3,2020-21,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 99.0, 1.0, 49.0 -1.25,1.25,a-pcom-i3,2020-21,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.6, 2.9, 96.0, 0.0, 0.0, 0.6, 92.6, 7.4, 35.6 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Melrose - Horace Mann,01780025, 0.0, 2.4, 0.6, 96.4, 0.0, 0.0, 0.6, 92.6, 7.4, 33.2 -1,1,a-pcom-i3,2020-21,Melrose - Lincoln,01780020, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 89.6, 10.4, 52.0 -1.09375,1.09,a-pcom-i3,2020-21,Melrose - Melrose High,01780505, 0.0, 2.0, 1.6, 96.5, 0.0, 0.0, 0.0, 59.0, 41.0, 112.8 -1.09375,1.09,a-pcom-i3,2020-21,Melrose - Melrose Middle,01780305, 0.0, 0.0, 2.3, 96.5, 0.0, 0.0, 1.2, 70.5, 29.5, 86.8 -2.34375,2.34,a-pcom-i3,2020-21,Melrose - Roosevelt,01780035, 1.8, 2.1, 1.8, 92.5, 0.0, 0.0, 1.8, 97.5, 2.5, 56.4 -1.875,1.88,a-pcom-i3,2020-21,Melrose - Winthrop,01780050, 0.0, 4.9, 0.6, 94.0, 0.0, 0.0, 0.6, 85.6, 14.4, 34.8 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 92.3, 7.7, 50.6 -2.8437499999999982,2.84,a-pcom-i3,2020-21,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 9.1, 90.9, 0.0, 0.0, 0.0, 97.0, 3.0, 74.0 -1,1,a-pcom-i3,2020-21,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 1.1, 97.8, 0.0, 0.0, 1.1, 81.4, 18.6, 93.5 -1,1,a-pcom-i3,2020-21,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 69.5, 30.5, 73.3 -1.7499999999999982,1.75,a-pcom-i3,2020-21,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 89.9, 10.1, 128.2 -1,1,a-pcom-i3,2020-21,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 86.0, 14.0, 134.6 -1,1,a-pcom-i3,2020-21,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 91.3, 8.7, 137.3 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Methuen - Methuen High,01810505, 1.0, 0.0, 2.9, 96.1, 0.0, 0.0, 0.0, 62.6, 37.4, 207.1 -1,1,a-pcom-i3,2020-21,Methuen - Tenney Grammar School,01810055, 0.7, 0.0, 1.4, 97.2, 0.7, 0.0, 0.0, 88.1, 11.9, 142.8 -1,1,a-pcom-i3,2020-21,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.6, 13.4, 59.6 -1,1,a-pcom-i3,2020-21,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.1, 23.9, 73.2 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Middleborough - Mary K. Goode Elementary School,01820010, 1.4, 0.0, 0.0, 95.7, 1.4, 0.0, 1.4, 91.4, 8.6, 69.7 -1,1,a-pcom-i3,2020-21,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 41.2 -1,1,a-pcom-i3,2020-21,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 55.7, 44.3, 98.7 -1,1,a-pcom-i3,2020-21,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 54.7 -1,1,a-pcom-i3,2020-21,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 77.5 -1,1,a-pcom-i3,2020-21,Milford - Brookside,01850065, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 94.7, 5.3, 77.5 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Milford - Memorial,01850010, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 99.0, 1.0, 70.8 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Milford - Milford High,01850505, 0.7, 0.7, 4.5, 94.1, 0.0, 0.0, 0.0, 64.2, 35.8, 140.2 -4.312499999999999,4.31,a-pcom-i3,2020-21,Milford - Shining Star Early Childhood Center,01850075, 2.6, 0.0, 11.2, 86.2, 0.0, 0.0, 0.0, 100.0, 0.0, 38.1 -3.4062500000000018,3.41,a-pcom-i3,2020-21,Milford - Stacy Middle,01850305, 2.5, 0.0, 6.7, 89.1, 0.8, 0.0, 0.8, 72.3, 27.7, 119.3 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Milford - Woodland,01850090, 0.0, 0.7, 4.7, 94.6, 0.0, 0.0, 0.0, 89.3, 10.7, 133.4 -1,1,a-pcom-i3,2020-21,Millbury - Elmwood Street,01860017, 0.0, 1.1, 0.0, 97.6, 0.0, 0.0, 1.3, 95.3, 4.7, 74.7 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Millbury - Millbury Junior/Senior High,01860505, 1.9, 1.9, 0.9, 95.3, 0.0, 0.0, 0.0, 59.0, 41.0, 107.2 -1,1,a-pcom-i3,2020-21,Millbury - Raymond E. Shaw Elementary,01860025, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 84.3, 15.7, 61.4 -1,1,a-pcom-i3,2020-21,Millis - Clyde F Brown,01870005, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 94.3, 5.7, 71.6 -1,1,a-pcom-i3,2020-21,Millis - Millis High School,01870505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 57.7, 42.3, 43.4 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Millis - Millis Middle,01870020, 0.0, 4.7, 1.7, 93.6, 0.0, 0.0, 0.0, 88.2, 11.8, 42.9 -3.3124999999999982,3.31,a-pcom-i3,2020-21,Milton - Charles S Pierce Middle,01890410, 7.0, 0.9, 2.7, 89.4, 0.0, 0.0, 0.0, 67.9, 32.1, 111.8 -2.562500000000001,2.56,a-pcom-i3,2020-21,Milton - Collicot,01890005, 2.8, 1.7, 3.8, 91.8, 0.0, 0.0, 0.0, 90.8, 9.2, 74.3 -3.374999999999999,3.37,a-pcom-i3,2020-21,Milton - Cunningham School,01890007, 7.5, 0.3, 3.0, 89.2, 0.0, 0.0, 0.0, 96.9, 3.1, 89.8 -2.5,2.5,a-pcom-i3,2020-21,Milton - Glover,01890010, 5.5, 0.4, 0.3, 92.0, 1.7, 0.0, 0.0, 95.3, 4.7, 58.6 -2.8125,2.81,a-pcom-i3,2020-21,Milton - Milton High,01890505, 4.7, 1.9, 1.6, 91.0, 0.0, 0.8, 0.0, 67.8, 32.2, 127.2 -7.250000000000001,5,a-pcom-i3,2020-21,Milton - Tucker,01890020, 17.9, 4.7, 0.6, 76.8, 0.0, 0.0, 0.0, 90.7, 9.3, 47.8 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 0.9, 1.8, 95.9, 0.0, 0.5, 0.9, 53.9, 46.1, 109.6 -1,1,a-pcom-i3,2020-21,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 96.3, 3.7, 57.4 -1,1,a-pcom-i3,2020-21,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 26.9 -1,1,a-pcom-i3,2020-21,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 96.9, 1.5, 0.0, 1.5, 72.4, 27.6, 65.2 -1,1,a-pcom-i3,2020-21,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.8 -1,1,a-pcom-i3,2020-21,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 31.0 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.6, 1.3, 96.8, 0.0, 0.0, 1.3, 93.6, 6.4, 78.2 -1.875,1.88,a-pcom-i3,2020-21,Monomoy Regional School District - Monomoy Regional High School,07120515, 2.2, 2.6, 1.1, 94.0, 0.0, 0.0, 0.0, 64.6, 35.4, 88.9 -1,1,a-pcom-i3,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 59.4 -1,1,a-pcom-i3,2020-21,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.8, 97.5, 0.0, 1.6, 0.0, 87.6, 12.4, 60.7 -1,1,a-pcom-i3,2020-21,Monson - Monson High School,01910505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 64.3, 35.7, 58.9 -1,1,a-pcom-i3,2020-21,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 24.6 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.6, 0.0, 4.5, 93.8, 1.1, 0.0, 0.0, 56.0, 44.0, 176.4 -1,1,a-pcom-i3,2020-21,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.7, 23.3, 41.2 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Mount Greylock - Mt Greylock Regional High,07150505, 1.2, 0.0, 2.4, 96.4, 0.0, 0.0, 0.0, 60.2, 39.8, 82.9 -1,1,a-pcom-i3,2020-21,Mount Greylock - Williamstown Elementary,07150010, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 91.2, 8.8, 68.4 -2.9999999999999982,3.0,a-pcom-i3,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 3.6, 2.4, 2.4, 90.4, 0.0, 0.0, 1.2, 74.2, 25.8, 166.7 -1,1,a-pcom-i3,2020-21,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 23.6 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Nantucket - Cyrus Peirce,01970010, 1.8, 0.0, 2.7, 93.6, 0.0, 0.0, 1.8, 80.0, 20.0, 55.0 -2.562500000000001,2.56,a-pcom-i3,2020-21,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 6.8, 91.8, 0.0, 0.0, 1.4, 97.3, 2.7, 73.6 -3.062499999999999,3.06,a-pcom-i3,2020-21,Nantucket - Nantucket High,01970505, 1.4, 2.8, 4.2, 90.2, 1.4, 0.0, 0.0, 69.1, 30.9, 71.2 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Nantucket - Nantucket Intermediate School,01970020, 3.8, 0.0, 3.1, 93.1, 0.0, 0.0, 0.0, 88.5, 11.5, 52.1 -1,1,a-pcom-i3,2020-21,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.2, 17.8, 43.5 -1,1,a-pcom-i3,2020-21,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 58.8, 41.2, 56.5 -1,1,a-pcom-i3,2020-21,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.5, 1.5, 67.9 -1,1,a-pcom-i3,2020-21,Nashoba - Center School,07250020, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 94.5, 5.5, 67.9 -1,1,a-pcom-i3,2020-21,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.5, 14.5, 103.0 -1,1,a-pcom-i3,2020-21,Nashoba - Hale,07250310, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 75.6, 24.4, 41.0 -1,1,a-pcom-i3,2020-21,Nashoba - Luther Burbank Middle School,07250305, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 82.4, 17.6, 39.8 -1,1,a-pcom-i3,2020-21,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 89.7, 10.3, 71.2 -1,1,a-pcom-i3,2020-21,Nashoba - Nashoba Regional,07250505, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 64.8, 35.2, 111.7 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.1, 1.1, 1.1, 96.8, 0.0, 0.0, 0.0, 52.9, 47.1, 92.4 -1,1,a-pcom-i3,2020-21,Natick - Bennett-Hemenway,01980005, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 90.2, 9.8, 73.4 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Natick - Brown,01980010, 0.0, 2.6, 1.6, 95.7, 0.0, 0.0, 0.0, 91.0, 9.0, 60.9 -1.09375,1.09,a-pcom-i3,2020-21,Natick - J F Kennedy Middle School,01980305, 0.0, 1.5, 1.0, 96.5, 1.0, 0.0, 0.0, 79.2, 20.8, 101.3 -1,1,a-pcom-i3,2020-21,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 32.0 -1,1,a-pcom-i3,2020-21,Natick - Lilja Elementary,01980035, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 96.0, 4.0, 49.8 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Natick - Memorial,01980043, 2.1, 2.1, 0.0, 95.7, 0.0, 0.0, 0.0, 91.5, 8.5, 47.0 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Natick - Natick High,01980505, 0.7, 2.7, 0.9, 94.3, 0.0, 0.0, 1.5, 70.5, 29.5, 224.6 -1,1,a-pcom-i3,2020-21,Natick - Wilson Middle,01980310, 0.8, 0.4, 0.8, 98.0, 0.0, 0.0, 0.0, 74.2, 25.8, 123.6 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Nauset - Nauset Regional High,06600505, 0.8, 0.0, 2.6, 96.6, 0.0, 0.0, 0.0, 67.7, 32.3, 116.8 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Nauset - Nauset Regional Middle,06600305, 0.0, 1.1, 3.2, 95.8, 0.0, 0.0, 0.0, 82.5, 17.5, 94.3 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Needham - Broadmeadow,01990005, 1.3, 1.6, 1.9, 95.2, 0.0, 0.0, 0.0, 96.5, 3.5, 71.3 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Needham - High Rock School,01990410, 0.5, 0.2, 2.5, 95.2, 0.0, 0.0, 1.6, 74.4, 25.6, 62.9 -2.562500000000001,2.56,a-pcom-i3,2020-21,Needham - John Eliot,01990020, 2.0, 4.7, 1.5, 91.8, 0.0, 0.0, 0.0, 85.8, 12.7, 66.9 -3.6249999999999982,3.62,a-pcom-i3,2020-21,Needham - Needham High,01990505, 5.0, 3.2, 2.5, 88.4, 0.0, 0.0, 1.0, 66.7, 33.3, 194.8 -3.187500000000001,3.19,a-pcom-i3,2020-21,Needham - Newman Elementary,01990050, 2.5, 3.8, 3.1, 89.8, 0.0, 0.0, 0.9, 91.6, 8.4, 116.9 -2.3749999999999982,2.37,a-pcom-i3,2020-21,Needham - Pollard Middle,01990405, 2.1, 0.7, 2.4, 92.4, 0.0, 0.0, 2.4, 75.6, 24.4, 126.7 -2.718750000000001,2.72,a-pcom-i3,2020-21,Needham - Sunita L. Williams Elementary,01990035, 2.6, 1.7, 4.3, 91.3, 0.0, 0.0, 0.0, 85.7, 14.3, 94.9 -2.749999999999999,2.75,a-pcom-i3,2020-21,Needham - William Mitchell,01990040, 0.8, 3.2, 3.4, 91.2, 0.0, 0.0, 1.5, 82.0, 18.0, 66.5 -16.25,5,a-pcom-i3,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 27.1, 7.9, 12.7, 48.0, 0.9, 0.0, 3.5, 76.7, 23.3, 114.4 -1.875,1.88,a-pcom-i3,2020-21,New Bedford - Abraham Lincoln,02010095, 3.0, 0.0, 1.5, 94.0, 0.0, 1.5, 0.0, 92.2, 7.8, 66.7 -6.593749999999998,5,a-pcom-i3,2020-21,New Bedford - Alfred J Gomes,02010063, 10.6, 0.0, 9.2, 78.9, 0.0, 0.0, 1.3, 92.1, 7.9, 75.8 -2.718750000000001,2.72,a-pcom-i3,2020-21,New Bedford - Betsey B Winslow,02010140, 3.5, 0.0, 5.2, 91.3, 0.0, 0.0, 0.0, 96.5, 3.5, 28.7 -1.40625,1.41,a-pcom-i3,2020-21,New Bedford - Carlos Pacheco,02010105, 4.5, 0.0, 0.0, 95.5, 0.0, 0.0, 0.0, 97.3, 2.7, 44.0 -2.96875,2.97,a-pcom-i3,2020-21,New Bedford - Casimir Pulaski,02010123, 5.7, 0.0, 3.8, 90.5, 0.0, 0.0, 0.0, 88.4, 11.6, 105.5 -2.718750000000001,2.72,a-pcom-i3,2020-21,New Bedford - Charles S Ashley,02010010, 7.2, 0.0, 1.4, 91.3, 0.0, 0.0, 0.0, 95.7, 4.3, 34.5 -3.500000000000001,3.5,a-pcom-i3,2020-21,New Bedford - Elizabeth Carter Brooks,02010015, 8.4, 0.0, 2.8, 88.8, 0.0, 0.0, 0.0, 87.4, 12.6, 35.7 -3.968750000000001,3.97,a-pcom-i3,2020-21,New Bedford - Ellen R Hathaway,02010075, 2.5, 0.0, 7.6, 87.3, 2.5, 0.0, 0.0, 92.7, 7.3, 39.4 -4.906250000000001,4.91,a-pcom-i3,2020-21,New Bedford - Elwyn G Campbell,02010020, 3.9, 0.0, 7.8, 84.3, 2.0, 0.0, 2.0, 95.7, 4.3, 51.1 -8.468749999999998,5,a-pcom-i3,2020-21,New Bedford - Hayden/McFadden,02010078, 7.9, 0.0, 18.4, 72.9, 0.9, 0.0, 0.0, 92.1, 7.9, 114.2 -2.718750000000001,2.72,a-pcom-i3,2020-21,New Bedford - Irwin M. Jacobs Elementary School,02010070, 2.2, 0.0, 6.5, 91.3, 0.0, 0.0, 0.0, 91.3, 8.7, 45.9 -2.0624999999999982,2.06,a-pcom-i3,2020-21,New Bedford - James B Congdon,02010040, 0.0, 0.0, 6.6, 93.4, 0.0, 0.0, 0.0, 93.4, 6.6, 30.3 -1,1,a-pcom-i3,2020-21,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 20.6 -6.124999999999998,5,a-pcom-i3,2020-21,New Bedford - John Avery Parker,02010115, 8.4, 5.6, 5.6, 80.4, 0.0, 0.0, 0.0, 94.4, 5.6, 35.8 -2.6250000000000018,2.63,a-pcom-i3,2020-21,New Bedford - John B Devalles,02010050, 2.8, 0.0, 5.6, 91.6, 0.0, 0.0, 0.0, 85.9, 14.1, 35.5 -4.968750000000002,4.97,a-pcom-i3,2020-21,New Bedford - Keith Middle School,02010405, 9.1, 0.8, 4.0, 84.1, 0.0, 0.0, 2.0, 69.3, 30.7, 125.4 -5.687500000000001,5,a-pcom-i3,2020-21,New Bedford - New Bedford High,02010505, 7.3, 1.4, 7.4, 81.8, 0.4, 0.0, 1.8, 63.1, 36.9, 284.7 -3.59375,3.59,a-pcom-i3,2020-21,New Bedford - Normandin Middle School,02010410, 4.2, 0.0, 4.9, 88.5, 0.0, 0.0, 2.5, 69.2, 30.8, 119.5 -9.156249999999998,5,a-pcom-i3,2020-21,New Bedford - Renaissance Community Innovation School,02010124, 17.6, 0.0, 11.7, 70.7, 0.0, 0.0, 0.0, 81.6, 18.4, 25.6 -5.375000000000001,5,a-pcom-i3,2020-21,New Bedford - Roosevelt Middle School,02010415, 7.0, 0.9, 6.0, 82.8, 1.7, 0.0, 1.7, 71.9, 28.1, 117.6 -6.531250000000002,5,a-pcom-i3,2020-21,New Bedford - Sgt Wm H Carney Academy,02010045, 8.0, 0.8, 9.6, 79.1, 0.0, 0.0, 2.4, 87.2, 12.8, 124.5 -1,1,a-pcom-i3,2020-21,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 21.2 -3.687499999999999,3.69,a-pcom-i3,2020-21,New Bedford - Trinity Day Academy,02010510, 8.8, 0.0, 2.9, 88.2, 0.0, 0.0, 0.0, 51.1, 48.9, 33.9 -5.906250000000002,5,a-pcom-i3,2020-21,New Bedford - Whaling City Junior/Senior High School,02010515, 13.5, 0.0, 2.7, 81.1, 0.0, 0.0, 2.7, 57.0, 43.0, 37.0 -2.437499999999999,2.44,a-pcom-i3,2020-21,New Bedford - William H Taylor,02010135, 4.7, 0.0, 3.1, 92.2, 0.0, 0.0, 0.0, 94.4, 5.6, 32.0 -9.375,5,a-pcom-i3,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 25.8, 1.4, 1.4, 70.0, 0.0, 0.0, 1.4, 60.9, 39.1, 71.7 -4.375,4.38,a-pcom-i3,2020-21,New Salem-Wendell - Swift River,07280015, 3.5, 0.0, 3.5, 86.0, 0.0, 0.0, 7.0, 92.8, 7.2, 28.5 -1,1,a-pcom-i3,2020-21,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 1.1, 0.0, 98.2, 0.0, 0.7, 0.0, 86.8, 13.2, 45.7 -1,1,a-pcom-i3,2020-21,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 1.1, 98.6, 0.0, 0.4, 0.0, 95.0, 5.0, 92.8 -1,1,a-pcom-i3,2020-21,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.5, 29.5, 99.2 -2.124999999999999,2.12,a-pcom-i3,2020-21,Newburyport - Rupert A Nock Middle,02040305, 2.8, 0.7, 2.8, 93.2, 0.0, 0.5, 0.0, 72.3, 27.7, 70.8 -6.218750000000002,5,a-pcom-i3,2020-21,Newton - A E Angier,02070005, 10.3, 4.8, 3.5, 80.1, 0.0, 0.0, 1.2, 85.0, 15.0, 75.0 -3.1562499999999982,3.16,a-pcom-i3,2020-21,Newton - Bigelow Middle,02070305, 2.5, 2.5, 5.1, 89.9, 0.0, 0.0, 0.0, 71.8, 28.2, 78.9 -5.0,5.0,a-pcom-i3,2020-21,Newton - Bowen,02070015, 4.4, 7.5, 2.2, 84.0, 1.9, 0.0, 0.0, 90.4, 9.6, 45.7 -7.124999999999999,5,a-pcom-i3,2020-21,Newton - C C Burr,02070020, 3.2, 11.6, 6.0, 77.2, 0.0, 0.0, 2.0, 96.8, 3.2, 50.2 -5.343749999999998,5,a-pcom-i3,2020-21,Newton - Cabot,02070025, 1.8, 8.7, 5.0, 82.9, 0.0, 0.0, 1.6, 89.4, 10.6, 55.9 -3.2500000000000018,3.25,a-pcom-i3,2020-21,Newton - Charles E Brown Middle,02070310, 2.4, 2.3, 4.1, 89.6, 0.0, 0.0, 1.5, 70.9, 29.1, 123.1 -3.1562499999999982,3.16,a-pcom-i3,2020-21,Newton - Countryside,02070040, 8.8, 0.2, 0.0, 89.9, 0.0, 0.0, 1.1, 86.7, 13.3, 63.0 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Newton - F A Day Middle,02070315, 3.0, 3.3, 0.2, 92.1, 0.0, 0.0, 1.5, 70.2, 29.8, 134.5 -2.2187499999999982,2.22,a-pcom-i3,2020-21,Newton - Franklin,02070055, 5.2, 1.9, 0.0, 92.9, 0.0, 0.0, 0.0, 89.0, 11.0, 52.8 -5.656249999999998,5,a-pcom-i3,2020-21,Newton - Horace Mann,02070075, 10.3, 6.1, 1.6, 81.9, 0.0, 0.0, 0.0, 88.0, 12.0, 53.6 -3.531249999999999,3.53,a-pcom-i3,2020-21,Newton - John Ward,02070120, 2.4, 4.8, 3.8, 88.7, 0.0, 0.0, 0.3, 91.0, 9.0, 33.9 -3.343750000000001,3.34,a-pcom-i3,2020-21,Newton - Lincoln-Eliot,02070070, 1.5, 0.0, 9.2, 89.3, 0.0, 0.0, 0.0, 93.6, 6.4, 57.4 -3.4687499999999982,3.47,a-pcom-i3,2020-21,Newton - Mason-Rice,02070080, 1.9, 7.2, 2.0, 88.9, 0.0, 0.0, 0.0, 90.0, 10.0, 51.5 -5.375000000000001,5,a-pcom-i3,2020-21,Newton - Memorial Spaulding,02070105, 6.1, 2.0, 9.1, 82.8, 0.0, 0.0, 0.0, 92.3, 7.7, 54.4 -2.749999999999999,2.75,a-pcom-i3,2020-21,Newton - Newton Early Childhood Program,02070108, 1.4, 3.2, 2.2, 91.2, 0.0, 0.0, 1.9, 100.0, 0.0, 70.9 -4.781249999999999,4.78,a-pcom-i3,2020-21,Newton - Newton North High,02070505, 5.3, 6.5, 2.2, 84.7, 0.0, 0.0, 1.3, 64.9, 35.1, 313.1 -5.249999999999999,5,a-pcom-i3,2020-21,Newton - Newton South High,02070510, 4.2, 5.1, 4.6, 83.2, 0.0, 0.0, 2.9, 66.3, 33.3, 263.5 -4.249999999999998,4.25,a-pcom-i3,2020-21,Newton - Oak Hill Middle,02070320, 4.0, 3.2, 5.3, 86.4, 0.0, 0.0, 1.1, 74.9, 25.1, 88.5 -2.281249999999999,2.28,a-pcom-i3,2020-21,Newton - Peirce,02070100, 3.5, 0.3, 3.5, 92.7, 0.0, 0.0, 0.0, 89.8, 10.2, 37.6 -3.4062500000000018,3.41,a-pcom-i3,2020-21,Newton - Underwood,02070115, 5.0, 3.0, 2.9, 89.1, 0.0, 0.0, 0.0, 90.7, 9.3, 33.2 -4.406249999999998,4.41,a-pcom-i3,2020-21,Newton - Williams,02070125, 1.3, 8.3, 0.0, 85.9, 0.0, 0.0, 4.5, 84.1, 15.9, 39.9 -3.3124999999999982,3.31,a-pcom-i3,2020-21,Newton - Zervas,02070130, 2.6, 2.6, 5.4, 89.4, 0.0, 0.0, 0.0, 91.1, 8.9, 66.6 -1,1,a-pcom-i3,2020-21,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 66.9 -1,1,a-pcom-i3,2020-21,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 81.0 -1,1,a-pcom-i3,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.6, 39.4, 78.9 -1.0625000000000018,1.06,a-pcom-i3,2020-21,North Adams - Brayton,02090035, 0.0, 1.7, 1.7, 96.6, 0.0, 0.0, 0.0, 84.7, 15.3, 58.8 -1,1,a-pcom-i3,2020-21,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.5, 11.5, 61.1 -1,1,a-pcom-i3,2020-21,North Adams - Drury High,02090505, 0.0, 0.0, 1.3, 97.4, 0.0, 0.0, 1.3, 60.5, 39.5, 76.6 -1,1,a-pcom-i3,2020-21,North Adams - Greylock,02090015, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 91.7, 8.3, 48.1 -1,1,a-pcom-i3,2020-21,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 100.0, 0.0, 73.1 -1,1,a-pcom-i3,2020-21,North Andover - Annie L Sargent School,02110018, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 93.1, 6.9, 56.9 -1,1,a-pcom-i3,2020-21,North Andover - Atkinson,02110001, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 96.8, 3.2, 45.6 -1,1,a-pcom-i3,2020-21,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 58.0 -1,1,a-pcom-i3,2020-21,North Andover - Kittredge,02110015, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 86.2, 13.8, 32.3 -1,1,a-pcom-i3,2020-21,North Andover - North Andover High,02110505, 0.8, 0.8, 0.0, 98.5, 0.0, 0.0, 0.0, 65.2, 34.8, 130.4 -1,1,a-pcom-i3,2020-21,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.7, 29.3, 115.7 -1,1,a-pcom-i3,2020-21,North Andover - Thomson,02110020, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 93.7, 6.3, 43.4 -1,1,a-pcom-i3,2020-21,North Attleborough - Amvet Boulevard,02120007, 2.3, 0.0, 0.5, 97.3, 0.0, 0.0, 0.0, 94.6, 5.4, 44.1 -1,1,a-pcom-i3,2020-21,North Attleborough - Community,02120030, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 95.5, 4.5, 66.9 -1,1,a-pcom-i3,2020-21,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 29.3 -1,1,a-pcom-i3,2020-21,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 67.5 -1,1,a-pcom-i3,2020-21,North Attleborough - North Attleboro High,02120505, 0.0, 0.8, 0.8, 97.5, 0.0, 0.0, 0.8, 74.4, 25.6, 121.8 -1.71875,1.72,a-pcom-i3,2020-21,North Attleborough - North Attleborough Early Learning Center,02120020, 2.7, 2.7, 0.0, 94.5, 0.0, 0.0, 0.0, 100.0, 0.0, 29.1 -1.3437499999999991,1.34,a-pcom-i3,2020-21,North Attleborough - North Attleborough Middle,02120305, 0.9, 1.7, 0.9, 95.7, 0.0, 0.0, 0.9, 70.7, 29.3, 115.0 -1,1,a-pcom-i3,2020-21,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 95.3, 4.7, 27.6 -1.3437499999999991,1.34,a-pcom-i3,2020-21,North Brookfield - North Brookfield Elementary,02150015, 0.0, 2.2, 2.2, 95.7, 0.0, 0.0, 0.0, 92.4, 7.6, 46.3 -1.40625,1.41,a-pcom-i3,2020-21,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 64.8, 35.2, 30.9 -1,1,a-pcom-i3,2020-21,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 97.1, 0.0, 2.9, 0.0, 94.2, 5.8, 34.5 -1,1,a-pcom-i3,2020-21,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.6, 24.4, 52.8 -1.3125000000000009,1.31,a-pcom-i3,2020-21,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 81.0, 19.0, 71.0 -1,1,a-pcom-i3,2020-21,North Middlesex - North Middlesex Regional,07350505, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 66.8, 33.2, 88.5 -1,1,a-pcom-i3,2020-21,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 51.7 -1,1,a-pcom-i3,2020-21,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.2 -1,1,a-pcom-i3,2020-21,North Middlesex - Varnum Brook,07350035, 0.0, 1.1, 0.0, 97.6, 0.0, 0.0, 1.3, 96.0, 4.0, 75.5 -1,1,a-pcom-i3,2020-21,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 47.5 -1,1,a-pcom-i3,2020-21,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 45.4 -1,1,a-pcom-i3,2020-21,North Reading - L D Batchelder,02170005, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 94.8, 5.2, 57.9 -1,1,a-pcom-i3,2020-21,North Reading - North Reading High,02170505, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 51.9, 48.1, 93.6 -1,1,a-pcom-i3,2020-21,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 72.0 -2.406250000000001,2.41,a-pcom-i3,2020-21,Northampton - Bridge Street,02100005, 0.0, 0.0, 7.7, 92.3, 0.0, 0.0, 0.0, 91.1, 8.9, 64.4 -6.843750000000002,5,a-pcom-i3,2020-21,Northampton - Jackson Street,02100020, 3.9, 2.0, 14.0, 78.1, 0.0, 0.0, 2.0, 82.1, 17.9, 50.7 -2.093750000000001,2.09,a-pcom-i3,2020-21,Northampton - John F Kennedy Middle School,02100410, 1.9, 0.0, 2.9, 93.3, 0.0, 0.0, 1.9, 76.9, 23.1, 105.9 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Northampton - Leeds,02100025, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 90.9, 9.1, 55.1 -3.0937500000000018,3.09,a-pcom-i3,2020-21,Northampton - Northampton High,02100505, 2.8, 0.0, 4.8, 90.1, 0.0, 0.0, 2.2, 61.6, 38.4, 106.1 -1,1,a-pcom-i3,2020-21,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 93.6, 6.4, 46.6 -1.40625,1.41,a-pcom-i3,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.9, 0.0, 2.7, 95.5, 0.0, 0.0, 0.9, 52.8, 47.2, 109.9 -1,1,a-pcom-i3,2020-21,Northboro-Southboro - Algonquin Regional High,07300505, 0.5, 0.5, 1.1, 97.3, 0.0, 0.5, 0.0, 75.0, 25.0, 184.3 -1,1,a-pcom-i3,2020-21,Northborough - Fannie E Proctor,02130015, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 89.8, 10.2, 48.9 -1,1,a-pcom-i3,2020-21,Northborough - Lincoln Street,02130003, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 90.0, 10.0, 44.8 -1,1,a-pcom-i3,2020-21,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 45.1 -1,1,a-pcom-i3,2020-21,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 93.3, 6.7, 37.5 -1.9062499999999982,1.91,a-pcom-i3,2020-21,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.2, 2.5, 93.9, 0.0, 1.2, 1.2, 87.8, 12.2, 81.7 -1,1,a-pcom-i3,2020-21,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 97.5, 2.5, 70.3 -1,1,a-pcom-i3,2020-21,Northbridge - Northbridge High,02140505, 1.3, 0.0, 0.0, 98.0, 0.0, 0.7, 0.0, 56.5, 43.5, 75.3 -1,1,a-pcom-i3,2020-21,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 73.1, 26.9, 80.8 -1,1,a-pcom-i3,2020-21,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 99.1, 0.0, 0.9, 0.0, 93.2, 6.8, 55.3 -2.437499999999999,2.44,a-pcom-i3,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.5, 1.2, 4.1, 92.2, 0.0, 0.0, 0.0, 49.8, 50.2, 161.0 -1,1,a-pcom-i3,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.1, 41.9, 64.5 -1,1,a-pcom-i3,2020-21,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 40.7 -1,1,a-pcom-i3,2020-21,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 67.1 -1,1,a-pcom-i3,2020-21,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 39.7 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Norton - Norton High,02180505, 1.2, 0.0, 3.5, 95.3, 0.0, 0.0, 0.0, 71.7, 28.3, 85.7 -1,1,a-pcom-i3,2020-21,Norton - Norton Middle,02180305, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 72.8, 27.2, 64.7 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Norwell - Grace Farrar Cole,02190005, 1.7, 1.7, 0.0, 96.6, 0.0, 0.0, 0.0, 94.6, 5.4, 59.0 -1,1,a-pcom-i3,2020-21,Norwell - Norwell High,02190505, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 62.3, 37.7, 75.3 -1,1,a-pcom-i3,2020-21,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 71.5, 28.5, 66.7 -1,1,a-pcom-i3,2020-21,Norwell - William G Vinal,02190020, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 90.5, 9.5, 56.4 -3.343750000000001,3.34,a-pcom-i3,2020-21,Norwood - Balch,02200005, 2.3, 0.0, 6.1, 89.3, 2.3, 0.0, 0.0, 94.7, 5.3, 42.9 -1,1,a-pcom-i3,2020-21,Norwood - Charles J Prescott,02200025, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 90.3, 9.7, 38.1 -1,1,a-pcom-i3,2020-21,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 85.4, 14.6, 39.7 -1.25,1.25,a-pcom-i3,2020-21,Norwood - Dr. Philip O. Coakley Middle School,02200305, 3.0, 1.0, 0.0, 96.0, 0.0, 0.0, 0.0, 64.7, 35.3, 101.0 -1,1,a-pcom-i3,2020-21,Norwood - F A Cleveland,02200015, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 95.2, 4.8, 47.6 -1,1,a-pcom-i3,2020-21,Norwood - George F. Willett,02200075, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 97.8, 2.2, 65.0 -1,1,a-pcom-i3,2020-21,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 37.8 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Norwood - Norwood High,02200505, 1.7, 0.0, 2.6, 95.7, 0.0, 0.0, 0.0, 62.1, 37.9, 115.4 -1.5625,1.56,a-pcom-i3,2020-21,Oak Bluffs - Oak Bluffs Elementary,02210005, 0.5, 0.0, 0.9, 95.0, 0.0, 0.0, 3.6, 91.8, 8.2, 83.9 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 1.1, 0.0, 95.4, 0.0, 0.0, 3.4, 55.2, 44.8, 87.0 -1.40625,1.41,a-pcom-i3,2020-21,Old Rochester - Old Rochester Regional High,07400505, 2.2, 1.1, 1.1, 95.5, 0.0, 0.0, 0.0, 63.7, 36.3, 89.1 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Old Rochester - Old Rochester Regional Jr High,07400405, 1.8, 1.8, 0.0, 96.4, 0.0, 0.0, 0.0, 74.2, 25.8, 56.2 -2.0624999999999982,2.06,a-pcom-i3,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 6.6, 93.4, 0.0, 0.0, 0.0, 80.1, 19.9, 30.1 -1,1,a-pcom-i3,2020-21,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.6, 16.4, 36.9 -1,1,a-pcom-i3,2020-21,Orange - Fisher Hill,02230015, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 94.3, 5.7, 44.0 -1,1,a-pcom-i3,2020-21,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 41.9 -1,1,a-pcom-i3,2020-21,Oxford - Alfred M Chaffee,02260010, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 96.5, 3.5, 29.7 -1,1,a-pcom-i3,2020-21,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 45.0 -1,1,a-pcom-i3,2020-21,Oxford - Oxford High,02260505, 0.1, 1.4, 0.0, 97.1, 0.0, 0.0, 1.4, 65.0, 35.0, 70.3 -1,1,a-pcom-i3,2020-21,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 43.8 -1,1,a-pcom-i3,2020-21,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 92.2, 7.8, 90.0 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Palmer - Palmer High,02270505, 0.0, 1.0, 1.5, 95.4, 0.0, 0.0, 2.1, 75.9, 24.1, 97.5 -1,1,a-pcom-i3,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.2, 48.8, 102.5 -16.125,5,a-pcom-i3,2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 22.9, 0.0, 28.7, 48.4, 0.0, 0.0, 0.0, 72.0, 28.0, 39.3 -1,1,a-pcom-i3,2020-21,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 68.6 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Peabody - Center,02290015, 0.0, 2.8, 1.4, 95.8, 0.0, 0.0, 0.0, 91.8, 8.2, 35.5 -1,1,a-pcom-i3,2020-21,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 74.1, 25.9, 124.9 -1,1,a-pcom-i3,2020-21,Peabody - John E Burke,02290007, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 97.3, 2.7, 37.6 -1,1,a-pcom-i3,2020-21,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 53.3 -1,1,a-pcom-i3,2020-21,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.0, 2.2, 97.2, 0.0, 0.0, 0.6, 64.0, 36.0, 180.4 -1,1,a-pcom-i3,2020-21,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 40.3 -1,1,a-pcom-i3,2020-21,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 51.2 -1,1,a-pcom-i3,2020-21,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 41.5 -1.5625,1.56,a-pcom-i3,2020-21,Peabody - William A Welch Sr,02290027, 2.5, 0.0, 2.5, 95.0, 0.0, 0.0, 0.0, 89.4, 10.6, 39.7 -3.28125,3.28,a-pcom-i3,2020-21,Pelham - Pelham Elementary,02300005, 0.0, 0.8, 9.7, 89.5, 0.0, 0.0, 0.0, 91.4, 8.6, 25.7 -1,1,a-pcom-i3,2020-21,Pembroke - Bryantville Elementary,02310003, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 87.8, 12.2, 46.3 -1,1,a-pcom-i3,2020-21,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 53.2 -1,1,a-pcom-i3,2020-21,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 58.1 -1,1,a-pcom-i3,2020-21,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 45.7 -1,1,a-pcom-i3,2020-21,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.7, 31.3, 80.4 -1,1,a-pcom-i3,2020-21,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 97.5, 0.0, 0.0, 2.5, 96.3, 3.7, 40.1 -1,1,a-pcom-i3,2020-21,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 99.5, 0.0, 0.0, 0.5, 90.2, 9.8, 45.5 -1,1,a-pcom-i3,2020-21,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 95.8, 4.2, 58.6 -1,1,a-pcom-i3,2020-21,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 2.4, 97.0, 0.0, 0.0, 0.6, 90.6, 9.4, 42.1 -1,1,a-pcom-i3,2020-21,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.2, 99.4, 0.0, 0.0, 0.4, 73.8, 26.2, 49.8 -1,1,a-pcom-i3,2020-21,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 1.2, 98.4, 0.0, 0.0, 0.3, 58.5, 41.5, 74.2 -1,1,a-pcom-i3,2020-21,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 24.5 -9.75,5,a-pcom-i3,2020-21,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 10.6, 0.0, 20.6, 68.8, 0.0, 0.0, 0.0, 84.1, 15.9, 18.9 -21.968749999999996,5,a-pcom-i3,2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 46.1, 9.9, 14.3, 29.7, 0.0, 0.0, 0.0, 80.2, 19.8, 20.2 -21.15625,5,a-pcom-i3,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 19.2, 14.4, 34.1, 32.3, 0.0, 0.0, 0.0, 82.0, 18.0, 27.8 -3.062499999999999,3.06,a-pcom-i3,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 4.2, 2.1, 3.4, 90.2, 0.0, 0.0, 0.0, 65.6, 34.4, 94.6 -11.124999999999998,5,a-pcom-i3,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 8.4, 16.8, 10.5, 64.4, 0.0, 0.0, 0.0, 57.3, 42.7, 47.8 -1,1,a-pcom-i3,2020-21,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 41.2 -1,1,a-pcom-i3,2020-21,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 37.1 -1,1,a-pcom-i3,2020-21,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.9, 31.1, 45.9 -14.90625,5,a-pcom-i3,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 2.2, 42.3, 1.1, 52.3, 0.0, 0.0, 2.2, 82.1, 17.9, 92.9 -4.781249999999999,4.78,a-pcom-i3,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 6.1, 1.5, 7.7, 84.7, 0.0, 0.0, 0.0, 63.2, 36.8, 65.2 -1,1,a-pcom-i3,2020-21,Pittsfield - Allendale,02360010, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 100.0, 0.0, 37.4 -5.3125,5,a-pcom-i3,2020-21,Pittsfield - Crosby,02360065, 7.5, 1.5, 5.7, 83.0, 0.0, 0.0, 2.3, 88.6, 11.4, 66.3 -3.90625,3.91,a-pcom-i3,2020-21,Pittsfield - Crosby Educational Academy,02360030, 5.0, 0.0, 5.0, 87.5, 0.0, 0.0, 2.5, 88.7, 11.3, 20.0 -6.375000000000002,5,a-pcom-i3,2020-21,Pittsfield - Eagle Education Academy,02360525, 18.4, 0.0, 2.0, 79.6, 0.0, 0.0, 0.0, 55.1, 44.9, 16.3 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Pittsfield - Egremont,02360035, 1.6, 1.6, 3.2, 93.7, 0.0, 0.0, 0.0, 97.9, 2.1, 63.0 -2.562500000000001,2.56,a-pcom-i3,2020-21,Pittsfield - John T Reid Middle,02360305, 1.4, 2.7, 2.7, 91.8, 0.0, 0.0, 1.4, 63.5, 36.5, 73.5 -3.1562499999999982,3.16,a-pcom-i3,2020-21,Pittsfield - Morningside Community School,02360055, 6.8, 1.7, 0.0, 89.9, 0.0, 0.0, 1.7, 96.1, 3.9, 59.2 -3.4687499999999982,3.47,a-pcom-i3,2020-21,Pittsfield - Pittsfield High,02360505, 5.0, 0.8, 3.6, 88.9, 0.8, 0.0, 0.8, 70.4, 29.6, 120.1 -1,1,a-pcom-i3,2020-21,Pittsfield - Robert T. Capeless Elementary School,02360045, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 100.0, 0.0, 29.4 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Pittsfield - Silvio O Conte Community,02360105, 1.7, 0.0, 1.7, 94.8, 0.0, 0.0, 1.7, 93.1, 6.9, 58.1 -1,1,a-pcom-i3,2020-21,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 43.1 -1.7499999999999982,1.75,a-pcom-i3,2020-21,Pittsfield - Taconic High,02360510, 0.0, 0.0, 3.0, 94.4, 0.0, 0.0, 2.6, 56.2, 43.8, 116.0 -1,1,a-pcom-i3,2020-21,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 75.4, 24.6, 76.8 -1,1,a-pcom-i3,2020-21,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 92.7, 7.3, 40.9 -1,1,a-pcom-i3,2020-21,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 54.4 -2.5,2.5,a-pcom-i3,2020-21,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 4.0, 4.0, 92.0, 0.0, 0.0, 0.0, 97.0, 3.0, 25.1 -1,1,a-pcom-i3,2020-21,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 33.1 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Plymouth - Federal Furnace School,02390011, 0.9, 0.0, 2.6, 94.8, 1.7, 0.0, 0.0, 85.8, 14.2, 60.4 -1,1,a-pcom-i3,2020-21,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 30.1 -1,1,a-pcom-i3,2020-21,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.4, 97.8, 0.0, 0.8, 0.0, 95.2, 4.8, 71.7 -1,1,a-pcom-i3,2020-21,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 36.9 -1,1,a-pcom-i3,2020-21,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 67.9 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Plymouth - Plymouth Commun Intermediate,02390405, 2.4, 1.6, 1.6, 94.3, 0.0, 0.0, 0.0, 80.8, 19.2, 122.5 -1,1,a-pcom-i3,2020-21,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 96.9, 3.1, 32.5 -1,1,a-pcom-i3,2020-21,Plymouth - Plymouth North High,02390505, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 65.1, 34.9, 160.9 -1,1,a-pcom-i3,2020-21,Plymouth - Plymouth South High,02390515, 0.7, 1.3, 0.0, 98.0, 0.0, 0.0, 0.0, 64.2, 35.8, 151.0 -1,1,a-pcom-i3,2020-21,Plymouth - Plymouth South Middle,02390305, 0.0, 1.2, 1.2, 97.7, 0.0, 0.0, 0.0, 78.9, 21.1, 86.3 -1,1,a-pcom-i3,2020-21,Plymouth - South Elementary,02390046, 1.3, 0.0, 1.3, 97.5, 0.0, 0.0, 0.0, 95.7, 4.3, 78.5 -1,1,a-pcom-i3,2020-21,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 98.1, 0.0, 1.9, 0.0, 93.1, 6.9, 52.1 -1,1,a-pcom-i3,2020-21,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 32.0 -9.28125,5,a-pcom-i3,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 13.2, 5.1, 8.8, 70.3, 0.0, 0.0, 2.6, 81.0, 19.0, 151.2 -2.093750000000001,2.09,a-pcom-i3,2020-21,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 3.3, 93.3, 0.0, 0.0, 3.3, 75.1, 24.9, 30.0 -1,1,a-pcom-i3,2020-21,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 22.5 -1.9062499999999982,1.91,a-pcom-i3,2020-21,Quabbin - Hubbardston Center,07530010, 0.0, 2.9, 3.2, 93.9, 0.0, 0.0, 0.0, 92.7, 7.3, 30.9 -2.1562500000000018,2.16,a-pcom-i3,2020-21,Quabbin - New Braintree Grade,07530020, 6.9, 0.0, 0.0, 93.1, 0.0, 0.0, 0.0, 89.8, 10.2, 14.5 -1,1,a-pcom-i3,2020-21,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 17.9 -1,1,a-pcom-i3,2020-21,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.3, 0.0, 97.6, 0.0, 0.0, 1.1, 71.9, 28.1, 75.4 -1,1,a-pcom-i3,2020-21,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 99.6, 0.0, 0.0, 0.4, 74.8, 25.2, 50.1 -1.09375,1.09,a-pcom-i3,2020-21,Quabbin - Ruggles Lane,07530030, 1.7, 0.0, 1.7, 96.5, 0.0, 0.0, 0.0, 94.8, 5.2, 57.3 -1,1,a-pcom-i3,2020-21,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 61.6, 38.4, 57.7 -1,1,a-pcom-i3,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.9, 41.1, 14.6 -1,1,a-pcom-i3,2020-21,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 87.6, 12.4, 52.1 -1,1,a-pcom-i3,2020-21,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 92.9, 7.1, 39.1 -2.65625,2.66,a-pcom-i3,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 5.9, 0.0, 91.5, 0.0, 0.0, 2.6, 100.0, 0.0, 38.9 -1,1,a-pcom-i3,2020-21,Quincy - Atherton Hough,02430040, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 92.3, 7.7, 47.8 -3.343750000000001,3.34,a-pcom-i3,2020-21,Quincy - Atlantic Middle,02430305, 0.0, 8.6, 0.0, 89.3, 0.0, 0.0, 2.0, 76.4, 23.6, 48.8 -1,1,a-pcom-i3,2020-21,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 95.9, 4.1, 24.4 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Quincy - Broad Meadows Middle,02430310, 0.0, 1.0, 0.0, 96.7, 0.0, 0.0, 2.4, 77.5, 22.5, 41.9 -1,1,a-pcom-i3,2020-21,Quincy - Central Middle,02430315, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 75.7, 24.3, 55.6 -1,1,a-pcom-i3,2020-21,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 85.9, 14.1, 28.9 -1,1,a-pcom-i3,2020-21,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 98.0, 2.0, 50.1 -4.593750000000001,4.59,a-pcom-i3,2020-21,Quincy - Francis W Parker,02430075, 0.0, 14.7, 0.0, 85.3, 0.0, 0.0, 0.0, 96.7, 3.3, 31.8 -2.8437499999999982,2.84,a-pcom-i3,2020-21,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 6.9, 0.0, 90.9, 0.0, 0.0, 2.2, 95.4, 4.6, 45.8 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Quincy - Merrymount,02430060, 0.0, 5.7, 0.0, 94.3, 0.0, 0.0, 0.0, 93.9, 6.1, 35.2 -5.281250000000002,5,a-pcom-i3,2020-21,Quincy - Montclair,02430065, 0.0, 16.9, 0.0, 83.1, 0.0, 0.0, 0.0, 95.5, 4.5, 35.7 -3.28125,3.28,a-pcom-i3,2020-21,Quincy - North Quincy High,02430510, 0.8, 4.3, 0.8, 89.5, 0.0, 0.0, 4.6, 62.0, 38.0, 129.1 -1.09375,1.09,a-pcom-i3,2020-21,Quincy - Point Webster Middle,02430325, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 84.9, 15.1, 42.4 -2.5,2.5,a-pcom-i3,2020-21,Quincy - Quincy High,02430505, 1.2, 4.4, 1.2, 92.0, 0.0, 0.0, 1.2, 63.9, 36.1, 169.1 -3.28125,3.28,a-pcom-i3,2020-21,Quincy - Snug Harbor Community School,02430090, 0.7, 7.0, 0.0, 89.5, 0.0, 0.0, 2.8, 89.5, 10.5, 71.4 -1,1,a-pcom-i3,2020-21,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 49.5 -1,1,a-pcom-i3,2020-21,Quincy - Squantum,02430095, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 92.7, 7.3, 45.4 -3.7812499999999982,3.78,a-pcom-i3,2020-21,Quincy - Wollaston School,02430110, 1.6, 10.5, 0.0, 87.9, 0.0, 0.0, 0.0, 93.7, 6.3, 31.7 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.1, 2.3, 96.6, 0.0, 0.0, 0.0, 70.7, 29.3, 87.7 -7.03125,5,a-pcom-i3,2020-21,Randolph - Elizabeth G Lyons Elementary,02440020, 18.0, 1.4, 0.0, 77.5, 2.9, 0.0, 0.2, 78.1, 21.9, 34.7 -9.093749999999998,5,a-pcom-i3,2020-21,Randolph - J F Kennedy Elementary,02440018, 18.6, 3.5, 5.9, 70.9, 0.0, 0.0, 1.1, 85.9, 14.1, 85.3 -5.031249999999998,5,a-pcom-i3,2020-21,Randolph - Margaret L Donovan,02440015, 4.6, 9.2, 2.3, 83.9, 0.0, 0.0, 0.0, 97.7, 2.3, 43.4 -6.281249999999998,5,a-pcom-i3,2020-21,Randolph - Martin E Young Elementary,02440040, 6.3, 1.3, 5.0, 79.9, 0.0, 0.0, 7.5, 93.7, 6.3, 39.8 -11.46875,5,a-pcom-i3,2020-21,Randolph - Randolph Community Middle,02440410, 31.4, 2.7, 2.6, 63.3, 0.0, 0.0, 0.0, 69.9, 30.1, 72.9 -8.5,5,a-pcom-i3,2020-21,Randolph - Randolph High,02440505, 11.8, 7.6, 7.8, 72.8, 0.0, 0.0, 0.0, 69.7, 30.3, 86.6 -1,1,a-pcom-i3,2020-21,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 95.1, 4.9, 40.7 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 80.1, 19.9, 64.7 -1,1,a-pcom-i3,2020-21,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 95.2, 4.8, 60.0 -1,1,a-pcom-i3,2020-21,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 47.1 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Reading - Joshua Eaton,02460010, 0.0, 2.3, 0.3, 95.1, 0.0, 0.0, 2.3, 94.2, 5.8, 44.2 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Reading - RISE PreSchool,02460001, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 99.2, 0.8, 25.3 -1,1,a-pcom-i3,2020-21,Reading - Reading Memorial High,02460505, 0.5, 1.6, 0.1, 97.9, 0.0, 0.0, 0.0, 68.6, 31.4, 120.8 -1,1,a-pcom-i3,2020-21,Reading - Walter S Parker Middle,02460310, 0.0, 1.3, 1.5, 97.2, 0.0, 0.0, 0.0, 78.8, 21.2, 65.4 -1,1,a-pcom-i3,2020-21,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 41.0 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Revere - A. C. Whelan Elementary School,02480003, 0.6, 1.2, 2.0, 96.2, 0.0, 0.0, 0.0, 89.0, 11.0, 80.8 -1,1,a-pcom-i3,2020-21,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 91.6, 8.4, 62.2 -2.562500000000001,2.56,a-pcom-i3,2020-21,Revere - Beachmont Veterans Memorial School,02480013, 1.9, 1.3, 5.0, 91.8, 0.0, 0.0, 0.0, 87.6, 12.4, 52.3 -2.718750000000001,2.72,a-pcom-i3,2020-21,Revere - Garfield Elementary School,02480056, 0.6, 4.2, 2.9, 91.3, 0.0, 0.0, 1.1, 90.9, 9.1, 90.6 -4.187500000000002,4.19,a-pcom-i3,2020-21,Revere - Garfield Middle School,02480057, 0.9, 5.3, 7.2, 86.6, 0.0, 0.0, 0.0, 58.6, 41.4, 56.8 -1,1,a-pcom-i3,2020-21,Revere - Paul Revere,02480050, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 92.8, 7.2, 57.2 -4.281250000000001,4.28,a-pcom-i3,2020-21,Revere - Revere High,02480505, 3.3, 2.5, 5.8, 86.3, 0.5, 0.0, 1.6, 63.9, 36.1, 183.0 -2.03125,2.03,a-pcom-i3,2020-21,Revere - Rumney Marsh Academy,02480014, 2.8, 0.0, 3.7, 93.5, 0.0, 0.0, 0.0, 77.3, 22.7, 70.5 -3.3124999999999982,3.31,a-pcom-i3,2020-21,Revere - Seacoast School,02480520, 10.1, 0.0, 0.5, 89.4, 0.0, 0.0, 0.0, 64.2, 35.8, 19.8 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 2.5, 93.6, 0.0, 1.6, 2.3, 94.3, 5.7, 64.1 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Revere - Susan B. Anthony Middle School,02480305, 2.3, 0.0, 2.5, 95.2, 0.0, 0.0, 0.0, 69.5, 30.5, 64.9 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Richmond - Richmond Consolidated,02490005, 5.9, 0.0, 0.0, 94.1, 0.0, 0.0, 0.0, 90.8, 9.2, 33.8 -2.718750000000001,2.72,a-pcom-i3,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.5, 2.5, 3.7, 91.3, 0.0, 0.0, 0.0, 70.5, 29.5, 80.1 -1.25,1.25,a-pcom-i3,2020-21,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 4.0, 78.4, 21.6, 49.6 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Rochester - Rochester Memorial,02500005, 3.4, 0.0, 0.0, 96.6, 0.0, 0.0, 0.0, 89.7, 10.3, 58.1 -1,1,a-pcom-i3,2020-21,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 37.6 -1,1,a-pcom-i3,2020-21,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 82.1 -1,1,a-pcom-i3,2020-21,Rockland - Memorial Park,02510020, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 96.5, 3.5, 47.2 -1.40625,1.41,a-pcom-i3,2020-21,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 2.2, 95.5, 0.0, 0.0, 2.2, 94.1, 5.9, 44.7 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 65.8, 34.2, 76.3 -1,1,a-pcom-i3,2020-21,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 58.9 -1,1,a-pcom-i3,2020-21,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.0, 28.0, 45.7 -1,1,a-pcom-i3,2020-21,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.3, 22.7, 43.4 -2.1875,2.19,a-pcom-i3,2020-21,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 7.0, 93.0, 0.0, 0.0, 0.0, 79.8, 20.2, 14.4 -31.25,5,a-pcom-i3,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -6.499999999999999,5,a-pcom-i3,2020-21,Sabis International Charter (District) - Sabis International Charter School,04410505, 9.1, 1.3, 9.7, 79.2, 0.0, 0.0, 0.6, 70.8, 29.2, 154.0 -1,1,a-pcom-i3,2020-21,Salem - Bates,02580003, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 84.8, 15.2, 56.5 -3.812500000000001,3.81,a-pcom-i3,2020-21,Salem - Bentley Academy Innovation School,02580010, 2.0, 2.0, 8.1, 87.8, 0.0, 0.0, 0.0, 91.9, 8.1, 49.3 -1,1,a-pcom-i3,2020-21,Salem - Carlton,02580015, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 94.3, 5.7, 45.3 -4.343750000000002,4.34,a-pcom-i3,2020-21,Salem - Collins Middle,02580305, 3.0, 2.1, 8.9, 86.1, 0.0, 0.0, 0.0, 70.3, 29.7, 100.0 -3.0937500000000018,3.09,a-pcom-i3,2020-21,Salem - Horace Mann Laboratory,02580030, 0.0, 2.3, 7.6, 90.1, 0.0, 0.0, 0.0, 95.3, 4.7, 44.7 -6.593749999999998,5,a-pcom-i3,2020-21,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 21.1, 78.9, 0.0, 0.0, 0.0, 72.3, 27.7, 15.2 -1.7499999999999982,1.75,a-pcom-i3,2020-21,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 99.7, 0.3, 35.7 -4.53125,4.53,a-pcom-i3,2020-21,Salem - Salem High,02580505, 2.5, 1.3, 10.1, 85.5, 0.0, 0.0, 0.6, 70.4, 29.6, 160.0 -4.437500000000001,4.44,a-pcom-i3,2020-21,Salem - Salem Prep High School,02580515, 0.0, 0.0, 14.2, 85.8, 0.0, 0.0, 0.0, 65.4, 34.6, 12.7 -2.03125,2.03,a-pcom-i3,2020-21,Salem - Saltonstall School,02580050, 0.4, 0.0, 6.2, 93.5, 0.0, 0.0, 0.0, 90.4, 9.6, 56.1 -1,1,a-pcom-i3,2020-21,Salem - Witchcraft Heights,02580070, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 93.7, 6.3, 80.8 -6.437499999999998,5,a-pcom-i3,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 4.4, 1.5, 14.7, 79.4, 0.0, 0.0, 0.0, 69.4, 30.6, 67.9 -1,1,a-pcom-i3,2020-21,Sandwich - Forestdale School,02610002, 0.0, 1.1, 1.1, 97.9, 0.0, 0.0, 0.0, 94.7, 5.3, 94.9 -1,1,a-pcom-i3,2020-21,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 92.0, 8.0, 109.3 -1,1,a-pcom-i3,2020-21,Sandwich - Sandwich High,02610505, 0.0, 0.8, 1.2, 98.0, 0.0, 0.0, 0.0, 70.6, 29.4, 85.6 -1.2187500000000018,1.22,a-pcom-i3,2020-21,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.5, 1.7, 96.1, 0.0, 0.0, 1.7, 81.5, 18.5, 58.4 -1,1,a-pcom-i3,2020-21,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 23.1 -1,1,a-pcom-i3,2020-21,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 27.2 -1,1,a-pcom-i3,2020-21,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.4, 1.6, 24.4 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Saugus - Saugus High,02620505, 1.4, 0.0, 3.1, 95.6, 0.0, 0.0, 0.0, 59.9, 40.1, 73.6 -1,1,a-pcom-i3,2020-21,Saugus - Saugus Middle School,02620305, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 69.5, 30.5, 74.1 -1.6562499999999991,1.66,a-pcom-i3,2020-21,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 3.1, 94.7, 0.0, 1.1, 1.1, 98.9, 1.1, 89.0 -1,1,a-pcom-i3,2020-21,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.3, 14.7, 15.0 -1,1,a-pcom-i3,2020-21,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 46.2 -1,1,a-pcom-i3,2020-21,Scituate - Gates Middle School,02640305, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 78.6, 21.4, 77.5 -1,1,a-pcom-i3,2020-21,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 48.9 -1,1,a-pcom-i3,2020-21,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 55.9 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Scituate - Scituate High School,02640505, 1.9, 1.0, 0.0, 95.6, 0.0, 0.6, 1.0, 67.4, 32.6, 103.8 -1,1,a-pcom-i3,2020-21,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 63.1 -1,1,a-pcom-i3,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.4, 1.4, 0.0, 97.1, 0.0, 0.0, 0.0, 78.7, 21.3, 69.4 -1,1,a-pcom-i3,2020-21,Seekonk - George R Martin,02650007, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 90.7, 9.3, 75.2 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 96.3, 0.0, 0.0, 3.7, 94.5, 5.5, 54.7 -1,1,a-pcom-i3,2020-21,Seekonk - Seekonk High,02650505, 1.3, 0.0, 0.0, 97.4, 0.0, 0.0, 1.3, 70.0, 30.0, 76.7 -1.6875000000000018,1.69,a-pcom-i3,2020-21,Sharon - Cottage Street,02660005, 0.0, 3.6, 1.8, 94.6, 0.0, 0.0, 0.0, 93.2, 6.8, 55.3 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Sharon - East Elementary,02660010, 0.0, 1.7, 0.0, 96.6, 0.0, 0.0, 1.7, 91.7, 8.3, 58.2 -2.593749999999999,2.59,a-pcom-i3,2020-21,Sharon - Heights Elementary,02660015, 5.5, 2.8, 0.0, 91.7, 0.0, 0.0, 0.0, 87.8, 12.2, 72.5 -1,1,a-pcom-i3,2020-21,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 15.7 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Sharon - Sharon High,02660505, 0.8, 4.4, 0.8, 94.1, 0.0, 0.0, 0.0, 73.8, 26.2, 130.0 -2.3749999999999982,2.37,a-pcom-i3,2020-21,Sharon - Sharon Middle,02660305, 0.0, 5.6, 0.0, 92.4, 1.0, 1.0, 0.0, 77.3, 22.7, 98.9 -1,1,a-pcom-i3,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 1.1, 1.6, 97.3, 0.0, 0.0, 0.0, 59.7, 40.3, 183.5 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Sherborn - Pine Hill,02690010, 1.7, 0.0, 1.5, 95.3, 0.0, 0.0, 1.5, 96.3, 3.7, 64.6 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Shrewsbury - Beal School,02710005, 0.0, 7.4, 0.0, 92.6, 0.0, 0.0, 0.0, 97.3, 2.7, 43.3 -2.3749999999999982,2.37,a-pcom-i3,2020-21,Shrewsbury - Calvin Coolidge,02710015, 1.5, 4.6, 0.0, 92.4, 0.0, 0.0, 1.5, 98.5, 1.5, 65.4 -3.0937500000000018,3.09,a-pcom-i3,2020-21,Shrewsbury - Floral Street School,02710020, 2.8, 5.6, 0.0, 90.1, 1.4, 0.0, 0.0, 97.6, 2.4, 70.8 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Shrewsbury - Oak Middle School,02710030, 1.1, 3.0, 2.3, 93.6, 0.0, 0.0, 0.0, 77.8, 22.2, 88.4 -3.7187500000000018,3.72,a-pcom-i3,2020-21,Shrewsbury - Parker Road Preschool,02710040, 2.4, 9.5, 0.0, 88.1, 0.0, 0.0, 0.0, 100.0, 0.0, 42.0 -3.031250000000001,3.03,a-pcom-i3,2020-21,Shrewsbury - Sherwood Middle School,02710305, 1.1, 3.2, 3.2, 90.3, 0.0, 0.0, 2.2, 86.7, 13.3, 92.6 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Shrewsbury - Shrewsbury Sr High,02710505, 0.9, 2.7, 1.9, 93.6, 0.0, 0.0, 0.9, 70.3, 29.2, 211.9 -1,1,a-pcom-i3,2020-21,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 46.5 -1,1,a-pcom-i3,2020-21,Shrewsbury - Walter J Paton,02710025, 0.0, 1.5, 1.5, 97.1, 0.0, 0.0, 0.0, 96.9, 3.1, 54.9 -3.031250000000001,3.03,a-pcom-i3,2020-21,Shutesbury - Shutesbury Elementary,02720005, 0.0, 3.2, 3.2, 90.3, 0.0, 0.0, 3.2, 92.9, 7.1, 31.1 -1,1,a-pcom-i3,2020-21,Silver Lake - Silver Lake Regional High,07600505, 1.4, 0.7, 0.0, 97.8, 0.0, 0.0, 0.0, 73.1, 26.9, 139.1 -1,1,a-pcom-i3,2020-21,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.8, 32.2, 66.8 -3.187500000000001,3.19,a-pcom-i3,2020-21,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 1.7, 1.7, 6.7, 89.8, 0.0, 0.0, 0.0, 81.1, 18.9, 57.6 -1,1,a-pcom-i3,2020-21,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 46.6 -1,1,a-pcom-i3,2020-21,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 66.3 -1,1,a-pcom-i3,2020-21,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.9, 22.1, 69.0 -1,1,a-pcom-i3,2020-21,Somerset - South,02730015, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 93.3, 6.7, 38.4 -1.09375,1.09,a-pcom-i3,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.9, 2.6, 96.5, 0.0, 0.0, 0.0, 66.2, 33.8, 115.2 -7.000000000000002,5,a-pcom-i3,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 4.4, 0.0, 18.0, 77.6, 0.0, 0.0, 0.0, 88.7, 11.3, 67.7 -6.312500000000001,5,a-pcom-i3,2020-21,Somerville - Arthur D Healey,02740075, 9.8, 2.9, 7.6, 79.8, 0.0, 0.0, 0.0, 77.0, 23.0, 69.7 -1,1,a-pcom-i3,2020-21,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 19.8 -3.9374999999999982,3.94,a-pcom-i3,2020-21,Somerville - Capuano Early Childhood Center,02740005, 1.4, 1.4, 9.7, 87.4, 0.0, 0.0, 0.0, 94.3, 5.7, 70.1 -10.343749999999998,5,a-pcom-i3,2020-21,Somerville - E Somerville Community,02740111, 3.7, 0.6, 26.2, 66.9, 1.2, 0.0, 1.2, 80.1, 19.9, 80.4 -2.6874999999999982,2.69,a-pcom-i3,2020-21,Somerville - Full Circle High School,02740510, 2.3, 0.0, 6.2, 91.4, 0.0, 0.0, 0.0, 66.5, 33.5, 12.8 -3.656250000000001,3.66,a-pcom-i3,2020-21,Somerville - John F Kennedy,02740083, 1.5, 2.9, 5.8, 88.3, 0.0, 0.0, 1.5, 81.8, 18.2, 68.6 -2.3749999999999982,2.37,a-pcom-i3,2020-21,Somerville - Next Wave Junior High,02740410, 5.5, 0.0, 2.2, 92.4, 0.0, 0.0, 0.0, 78.9, 21.1, 9.2 -4.874999999999998,4.87,a-pcom-i3,2020-21,Somerville - Somerville High,02740505, 5.7, 2.3, 6.7, 84.4, 0.0, 0.0, 0.9, 66.3, 33.7, 174.5 -7.687499999999998,5,a-pcom-i3,2020-21,Somerville - West Somerville Neighborhood,02740115, 6.2, 2.1, 10.3, 75.4, 0.0, 0.0, 6.2, 87.4, 12.6, 48.7 -4.562499999999998,4.56,a-pcom-i3,2020-21,Somerville - Winter Hill Community,02740120, 2.4, 3.6, 7.4, 85.4, 0.0, 0.0, 1.2, 86.6, 13.4, 82.9 -1,1,a-pcom-i3,2020-21,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.6, 28.4, 66.2 -1.1249999999999982,1.12,a-pcom-i3,2020-21,South Hadley - Mosier,02780020, 0.0, 1.8, 1.8, 96.4, 0.0, 0.0, 0.0, 90.9, 9.1, 55.2 -1,1,a-pcom-i3,2020-21,South Hadley - Plains Elementary,02780015, 0.7, 0.0, 1.8, 97.5, 0.0, 0.0, 0.0, 89.4, 10.6, 56.4 -1,1,a-pcom-i3,2020-21,South Hadley - South Hadley High,02780505, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 65.5, 34.5, 69.1 -4.031250000000002,4.03,a-pcom-i3,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.6, 0.8, 10.5, 87.1, 0.0, 0.0, 0.0, 54.8, 45.2, 123.8 -2.875000000000001,2.88,a-pcom-i3,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 6.5, 1.3, 0.7, 90.8, 0.0, 0.0, 0.7, 72.5, 27.5, 151.4 -1,1,a-pcom-i3,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 48.4, 51.6, 91.3 -1,1,a-pcom-i3,2020-21,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 97.1, 0.0, 0.0, 2.9, 88.2, 11.8, 68.0 -1,1,a-pcom-i3,2020-21,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 94.5, 5.5, 36.6 -1,1,a-pcom-i3,2020-21,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 38.2 -2.8125,2.81,a-pcom-i3,2020-21,Southborough - Mary E Finn School,02760008, 0.0, 4.5, 4.5, 91.0, 0.0, 0.0, 0.0, 97.3, 2.7, 66.9 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 2.9, 95.6, 1.5, 0.0, 0.0, 80.9, 19.1, 67.9 -7.718750000000001,5,a-pcom-i3,2020-21,Southbridge - Charlton Street,02770005, 5.6, 0.0, 17.1, 75.3, 0.0, 0.0, 1.9, 83.1, 16.9, 53.1 -4.500000000000002,4.5,a-pcom-i3,2020-21,Southbridge - Eastford Road,02770010, 0.0, 0.0, 14.4, 85.6, 0.0, 0.0, 0.0, 94.6, 5.4, 55.5 -9.874999999999998,5,a-pcom-i3,2020-21,Southbridge - Southbridge Academy,02770525, 9.9, 0.0, 21.7, 68.4, 0.0, 0.0, 0.0, 60.5, 39.5, 27.7 -7.000000000000002,5,a-pcom-i3,2020-21,Southbridge - Southbridge High School,02770515, 1.9, 0.0, 20.5, 77.6, 0.0, 0.0, 0.0, 62.7, 37.3, 70.6 -5.218750000000001,5,a-pcom-i3,2020-21,Southbridge - Southbridge Middle School,02770315, 0.7, 1.7, 14.2, 83.3, 0.0, 0.0, 0.0, 66.6, 33.4, 59.7 -2.875000000000001,2.88,a-pcom-i3,2020-21,Southbridge - West Street,02770020, 0.0, 0.0, 9.2, 90.8, 0.0, 0.0, 0.0, 89.0, 11.0, 54.5 -3.968750000000001,3.97,a-pcom-i3,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 7.1, 2.3, 2.8, 87.3, 0.0, 0.0, 0.6, 60.4, 39.6, 177.3 -2.281249999999999,2.28,a-pcom-i3,2020-21,Southern Berkshire - Mt Everett Regional,07650505, 2.9, 1.5, 1.5, 92.7, 0.0, 0.0, 1.5, 64.9, 35.1, 69.0 -2.718750000000001,2.72,a-pcom-i3,2020-21,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 2.0, 91.3, 6.7, 0.0, 0.0, 81.3, 18.7, 15.0 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 88.5, 11.5, 2.6 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Southern Berkshire - Undermountain,07650035, 0.0, 1.9, 3.0, 95.1, 0.0, 0.0, 0.0, 94.5, 5.5, 52.9 -1,1,a-pcom-i3,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 1.2, 98.1, 0.0, 0.0, 0.6, 57.8, 42.2, 161.0 -1,1,a-pcom-i3,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 54.8 -1.875,1.88,a-pcom-i3,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 4.0, 94.0, 0.0, 0.0, 2.0, 71.6, 28.4, 99.8 -1,1,a-pcom-i3,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 97.9, 2.1, 63.8 -1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.7, 43.3, 38.6 -1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 91.5, 8.5, 38.2 -1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 75.0, 25.0, 43.0 -1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 89.1, 10.9, 64.2 -8.125,5,a-pcom-i3,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 4.0, 0.0, 22.0, 74.0, 0.0, 0.0, 0.0, 94.0, 6.0, 50.0 -6.062500000000002,5,a-pcom-i3,2020-21,Springfield - Alice B Beal Elementary,02810175, 9.7, 3.2, 6.5, 80.6, 0.0, 0.0, 0.0, 87.1, 12.9, 31.0 -4.937499999999999,4.94,a-pcom-i3,2020-21,Springfield - Arthur T Talmadge,02810165, 5.3, 0.0, 7.9, 84.2, 0.0, 0.0, 2.6, 93.4, 6.6, 38.0 -7.687499999999998,5,a-pcom-i3,2020-21,Springfield - Balliet Middle School,02810360, 24.6, 0.0, 0.0, 75.4, 0.0, 0.0, 0.0, 65.1, 34.9, 16.8 -10.0,5,a-pcom-i3,2020-21,Springfield - Brightwood,02810025, 2.0, 0.0, 30.0, 68.0, 0.0, 0.0, 0.0, 81.1, 18.9, 50.0 -4.468749999999999,4.47,a-pcom-i3,2020-21,Springfield - Chestnut Academy,02810365, 14.3, 0.0, 0.0, 85.7, 0.0, 0.0, 0.0, 82.9, 17.1, 17.5 -19.65625,5,a-pcom-i3,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 40.9, 4.0, 18.0, 37.1, 0.0, 0.0, 0.0, 73.3, 26.7, 50.1 -16.3125,5,a-pcom-i3,2020-21,Springfield - Conservatory of the Arts,02810475, 22.4, 0.0, 27.8, 47.8, 0.0, 0.0, 2.0, 71.5, 28.5, 49.2 -4.968750000000002,4.97,a-pcom-i3,2020-21,Springfield - Daniel B Brunton,02810035, 7.9, 0.0, 7.9, 84.1, 0.0, 0.0, 0.0, 95.2, 4.8, 50.4 -13.1875,5,a-pcom-i3,2020-21,Springfield - Early Childhood Education Center,02810001, 28.9, 0.0, 13.3, 57.8, 0.0, 0.0, 0.0, 93.3, 6.7, 45.0 -9.312499999999998,5,a-pcom-i3,2020-21,Springfield - Edward P. Boland School,02810010, 8.7, 1.0, 19.2, 70.2, 0.0, 0.0, 1.0, 85.6, 14.4, 104.0 -12.96875,5,a-pcom-i3,2020-21,Springfield - Elias Brookings,02810030, 22.6, 5.7, 13.2, 58.5, 0.0, 0.0, 0.0, 92.5, 7.5, 53.0 -1,1,a-pcom-i3,2020-21,Springfield - Emergence Academy,02810318, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 3.5 -5.125000000000002,5,a-pcom-i3,2020-21,Springfield - Forest Park Middle,02810325, 5.5, 1.4, 9.6, 83.6, 0.0, 0.0, 0.0, 75.3, 24.7, 73.0 -17.25,5,a-pcom-i3,2020-21,Springfield - Frank H Freedman,02810075, 39.1, 2.3, 13.8, 44.8, 0.0, 0.0, 0.0, 83.9, 16.1, 43.4 -7.124999999999999,5,a-pcom-i3,2020-21,Springfield - Frederick Harris,02810080, 4.8, 1.2, 16.8, 77.2, 0.0, 0.0, 0.0, 91.6, 8.4, 83.2 -31.25,5,a-pcom-i3,2020-21,Springfield - Gateway to College at Holyoke Community College,02810575, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 -31.25,5,a-pcom-i3,2020-21,Springfield - Gateway to College at Springfield Technical Community College,02810580, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 -12.1875,5,a-pcom-i3,2020-21,Springfield - German Gerena Community School,02810195, 2.0, 0.0, 37.0, 61.0, 0.0, 0.0, 0.0, 91.0, 9.0, 100.0 -5.625,5,a-pcom-i3,2020-21,Springfield - Glenwood,02810065, 4.5, 0.0, 13.5, 82.0, 0.0, 0.0, 0.0, 97.8, 2.2, 44.5 -8.65625,5,a-pcom-i3,2020-21,Springfield - Glickman Elementary,02810068, 5.9, 2.0, 19.8, 72.3, 0.0, 0.0, 0.0, 92.1, 7.9, 50.5 -14.937499999999998,5,a-pcom-i3,2020-21,Springfield - High School Of Commerce,02810510, 24.6, 1.2, 18.4, 52.2, 0.0, 0.0, 3.6, 65.6, 34.4, 168.1 -9.90625,5,a-pcom-i3,2020-21,Springfield - Hiram L Dorman,02810050, 19.5, 0.0, 12.2, 68.3, 0.0, 0.0, 0.0, 90.2, 9.8, 41.0 -6.812499999999999,5,a-pcom-i3,2020-21,Springfield - Homer Street,02810085, 10.9, 0.0, 9.1, 78.2, 0.0, 0.0, 1.8, 87.3, 12.7, 55.0 -23.28125,5,a-pcom-i3,2020-21,Springfield - Impact Prep at Chestnut,02810366, 40.0, 0.0, 34.5, 25.5, 0.0, 0.0, 0.0, 70.0, 30.0, 29.0 -4.812500000000002,4.81,a-pcom-i3,2020-21,Springfield - Indian Orchard Elementary,02810100, 4.7, 0.0, 10.6, 84.6, 0.0, 0.0, 0.0, 93.4, 6.6, 84.6 -13.625,5,a-pcom-i3,2020-21,Springfield - John F Kennedy Middle,02810328, 29.8, 1.4, 12.5, 56.4, 0.0, 0.0, 0.0, 69.5, 30.5, 72.2 -13.59375,5,a-pcom-i3,2020-21,Springfield - John J Duggan Middle,02810320, 27.8, 0.9, 13.9, 56.5, 0.0, 0.9, 0.0, 69.9, 30.1, 108.0 -2.96875,2.97,a-pcom-i3,2020-21,Springfield - Kensington International School,02810110, 4.8, 0.0, 4.8, 90.5, 0.0, 0.0, 0.0, 90.5, 9.5, 41.9 -13.374999999999998,5,a-pcom-i3,2020-21,Springfield - Kiley Academy,02810316, 29.3, 0.0, 13.5, 57.2, 0.0, 0.0, 0.0, 61.8, 38.2, 22.2 -12.09375,5,a-pcom-i3,2020-21,Springfield - Kiley Prep,02810315, 38.7, 0.0, 0.0, 61.3, 0.0, 0.0, 0.0, 80.6, 19.4, 15.5 -11.28125,5,a-pcom-i3,2020-21,Springfield - Liberty,02810115, 24.1, 0.0, 12.0, 63.9, 0.0, 0.0, 0.0, 92.8, 7.2, 41.5 -4.750000000000001,4.75,a-pcom-i3,2020-21,Springfield - Liberty Preparatory Academy,02810560, 15.2, 0.0, 0.0, 84.8, 0.0, 0.0, 0.0, 80.7, 19.3, 7.4 -10.406249999999998,5,a-pcom-i3,2020-21,Springfield - Lincoln,02810120, 14.6, 0.0, 18.7, 66.7, 0.0, 0.0, 0.0, 88.5, 11.5, 48.0 -15.0625,5,a-pcom-i3,2020-21,Springfield - Lyceum Academy,02810317, 10.7, 2.7, 30.4, 51.8, 0.0, 0.0, 4.5, 67.0, 33.0, 56.0 -13.3125,5,a-pcom-i3,2020-21,Springfield - M Marcus Kiley Middle,02810330, 21.3, 1.8, 17.8, 57.4, 0.0, 0.0, 1.8, 75.6, 24.4, 56.3 -13.406249999999998,5,a-pcom-i3,2020-21,Springfield - Margaret C Ells,02810060, 20.0, 0.0, 22.9, 57.1, 0.0, 0.0, 0.0, 94.3, 5.7, 35.0 -5.812499999999998,5,a-pcom-i3,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 7.0, 0.0, 11.6, 81.4, 0.0, 0.0, 0.0, 93.0, 7.0, 43.0 -10.249999999999998,5,a-pcom-i3,2020-21,Springfield - Mary M Lynch,02810140, 17.9, 0.0, 14.9, 67.2, 0.0, 0.0, 0.0, 92.5, 7.5, 33.5 -7.96875,5,a-pcom-i3,2020-21,Springfield - Mary M Walsh,02810155, 8.5, 2.1, 14.9, 74.5, 0.0, 0.0, 0.0, 92.6, 7.4, 47.0 -8.406250000000002,5,a-pcom-i3,2020-21,Springfield - Mary O Pottenger,02810145, 11.5, 0.0, 15.4, 73.1, 0.0, 0.0, 0.0, 94.2, 5.8, 52.0 -7.218749999999998,5,a-pcom-i3,2020-21,Springfield - Milton Bradley School,02810023, 5.4, 0.0, 17.7, 76.9, 0.0, 0.0, 0.0, 93.2, 6.8, 73.5 -17.0,5,a-pcom-i3,2020-21,Springfield - Rebecca M Johnson,02810055, 35.1, 0.0, 18.4, 45.6, 0.0, 0.9, 0.0, 86.0, 14.0, 114.0 -11.499999999999998,5,a-pcom-i3,2020-21,Springfield - Rise Academy at Van Sickle,02810480, 18.4, 0.0, 18.4, 63.2, 0.0, 0.0, 0.0, 71.1, 28.9, 38.0 -9.656250000000002,5,a-pcom-i3,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 11.2, 2.7, 16.5, 69.1, 0.0, 0.0, 0.5, 51.7, 48.3, 187.5 -13.125,5,a-pcom-i3,2020-21,Springfield - STEM Middle Academy,02810350, 27.5, 0.0, 14.5, 58.0, 0.0, 0.0, 0.0, 62.3, 37.7, 34.5 -7.5,5,a-pcom-i3,2020-21,Springfield - Samuel Bowles,02810020, 8.0, 2.7, 13.3, 76.0, 0.0, 0.0, 0.0, 81.4, 18.6, 37.5 -9.968750000000002,5,a-pcom-i3,2020-21,Springfield - South End Middle School,02810355, 5.4, 0.0, 26.5, 68.1, 0.0, 0.0, 0.0, 74.3, 25.7, 37.0 -8.03125,5,a-pcom-i3,2020-21,Springfield - Springfield Central High,02810500, 11.7, 2.2, 10.0, 74.3, 0.0, 0.0, 1.7, 54.6, 45.4, 230.0 -13.46875,5,a-pcom-i3,2020-21,Springfield - Springfield High School,02810570, 18.7, 0.0, 24.4, 56.9, 0.0, 0.0, 0.0, 69.3, 30.7, 32.8 -11.28125,5,a-pcom-i3,2020-21,Springfield - Springfield High School of Science and Technology,02810530, 14.6, 2.9, 17.4, 63.9, 0.0, 0.0, 1.2, 57.5, 42.5, 170.9 -3.4687499999999982,3.47,a-pcom-i3,2020-21,Springfield - Springfield International Academy at Johnson,02810215, 11.1, 0.0, 0.0, 88.9, 0.0, 0.0, 0.0, 88.9, 11.1, 2.3 -11.25,5,a-pcom-i3,2020-21,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 36.0, 64.0, 0.0, 0.0, 0.0, 89.2, 10.8, 6.3 -12.5,5,a-pcom-i3,2020-21,Springfield - Springfield Public Day Elementary School,02810005, 22.0, 0.0, 18.0, 60.0, 0.0, 0.0, 0.0, 93.9, 6.1, 27.8 -18.374999999999996,5,a-pcom-i3,2020-21,Springfield - Springfield Public Day High School,02810550, 34.4, 0.0, 24.4, 41.2, 0.0, 0.0, 0.0, 56.3, 43.7, 32.3 -8.90625,5,a-pcom-i3,2020-21,Springfield - Springfield Public Day Middle School,02810345, 21.0, 0.0, 7.5, 71.5, 0.0, 0.0, 0.0, 67.0, 33.0, 26.7 -6.25,5,a-pcom-i3,2020-21,Springfield - Springfield Vocational Academy,02810675, 12.0, 0.0, 8.0, 80.0, 0.0, 0.0, 0.0, 72.0, 28.0, 12.5 -8.312499999999998,5,a-pcom-i3,2020-21,Springfield - Sumner Avenue,02810160, 17.3, 1.2, 8.1, 73.4, 0.0, 0.0, 0.0, 88.4, 11.6, 86.5 -9.375,5,a-pcom-i3,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 15.9, 1.2, 10.6, 70.0, 0.0, 1.2, 1.2, 78.8, 21.2, 85.0 -11.09375,5,a-pcom-i3,2020-21,Springfield - Thomas M Balliet,02810015, 22.8, 0.0, 12.7, 64.5, 0.0, 0.0, 0.0, 87.3, 12.7, 39.5 -9.343750000000002,5,a-pcom-i3,2020-21,Springfield - Van Sickle Academy,02810485, 5.2, 0.0, 24.7, 70.1, 0.0, 0.0, 0.0, 76.6, 23.4, 38.5 -9.75,5,a-pcom-i3,2020-21,Springfield - Warner,02810180, 23.4, 0.0, 7.8, 68.8, 0.0, 0.0, 0.0, 88.3, 11.7, 38.5 -3.7187500000000018,3.72,a-pcom-i3,2020-21,Springfield - Washington,02810185, 5.1, 0.0, 6.8, 88.1, 0.0, 0.0, 0.0, 94.9, 5.1, 58.6 -3.75,3.75,a-pcom-i3,2020-21,Springfield - White Street,02810190, 4.0, 0.0, 8.0, 88.0, 0.0, 0.0, 0.0, 98.0, 2.0, 50.0 -13.4375,5,a-pcom-i3,2020-21,Springfield - William N. DeBerry,02810045, 17.2, 0.0, 25.8, 57.0, 0.0, 0.0, 0.0, 91.4, 8.6, 46.5 -11.3125,5,a-pcom-i3,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 12.1, 2.0, 20.1, 63.8, 0.0, 2.0, 0.0, 87.9, 10.0, 49.8 -1,1,a-pcom-i3,2020-21,Stoneham - Colonial Park,02840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 44.2 -1,1,a-pcom-i3,2020-21,Stoneham - Robin Hood,02840025, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 88.0, 12.0, 50.0 -1,1,a-pcom-i3,2020-21,Stoneham - South,02840030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 43.9 -1.25,1.25,a-pcom-i3,2020-21,Stoneham - Stoneham Central Middle School,02840405, 1.0, 1.0, 1.0, 96.0, 0.0, 0.0, 1.0, 65.4, 34.6, 99.9 -1,1,a-pcom-i3,2020-21,Stoneham - Stoneham High,02840505, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 78.0, 22.0, 94.4 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Stoughton - Edwin A Jones Early Childhood Center,02850012, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 100.0, 0.0, 21.3 -1,1,a-pcom-i3,2020-21,Stoughton - Helen Hansen Elementary,02850010, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 86.1, 13.9, 29.9 -1,1,a-pcom-i3,2020-21,Stoughton - Joseph H Gibbons,02850025, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 92.0, 8.0, 38.9 -1,1,a-pcom-i3,2020-21,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 89.6, 10.4, 41.4 -2.406250000000001,2.41,a-pcom-i3,2020-21,Stoughton - O'Donnell Middle School,02850405, 4.4, 2.3, 1.0, 92.3, 0.0, 0.0, 0.0, 84.6, 15.4, 99.3 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.0, 3.2, 93.7, 0.0, 0.0, 3.2, 96.6, 3.4, 31.7 -1,1,a-pcom-i3,2020-21,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 24.2 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Stoughton - Stoughton High,02850505, 0.8, 0.5, 2.2, 94.8, 0.8, 0.8, 0.1, 69.6, 30.4, 129.8 -1,1,a-pcom-i3,2020-21,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 94.4, 5.6, 124.8 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.7, 0.7, 3.8, 94.8, 0.0, 0.0, 0.0, 70.2, 29.8, 144.5 -2.3125000000000018,2.31,a-pcom-i3,2020-21,Sudbury - Ephraim Curtis Middle,02880305, 1.6, 0.0, 4.3, 92.6, 0.0, 0.0, 1.4, 72.6, 27.4, 124.4 -2.0624999999999982,2.06,a-pcom-i3,2020-21,Sudbury - General John Nixon Elementary,02880025, 4.2, 1.1, 1.3, 93.4, 0.0, 0.0, 0.0, 91.3, 8.7, 47.2 -2.562500000000001,2.56,a-pcom-i3,2020-21,Sudbury - Israel Loring School,02880015, 1.7, 0.0, 3.4, 91.8, 0.0, 0.0, 3.1, 93.0, 7.0, 58.5 -1.875,1.88,a-pcom-i3,2020-21,Sudbury - Josiah Haynes,02880010, 0.0, 3.9, 2.2, 94.0, 0.0, 0.0, 0.0, 92.1, 7.9, 64.5 -1.71875,1.72,a-pcom-i3,2020-21,Sudbury - Peter Noyes,02880030, 0.0, 1.2, 1.8, 94.5, 0.0, 0.0, 2.4, 93.4, 6.6, 82.5 -2.124999999999999,2.12,a-pcom-i3,2020-21,Sunderland - Sunderland Elementary,02890005, 0.0, 5.1, 1.7, 93.2, 0.0, 0.0, 0.0, 82.9, 17.1, 58.5 -1,1,a-pcom-i3,2020-21,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.7, 1.3, 55.7 -1,1,a-pcom-i3,2020-21,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 45.4 -1,1,a-pcom-i3,2020-21,Sutton - Sutton High School,02900510, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 60.2, 39.8, 48.6 -1,1,a-pcom-i3,2020-21,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.2, 28.8, 42.8 -1,1,a-pcom-i3,2020-21,Swampscott - Clarke,02910005, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 93.5, 6.5, 35.3 -1,1,a-pcom-i3,2020-21,Swampscott - Hadley,02910010, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 92.9, 7.1, 38.9 -2.250000000000001,2.25,a-pcom-i3,2020-21,Swampscott - Stanley,02910020, 0.0, 2.4, 0.0, 92.8, 0.0, 0.0, 4.8, 83.8, 16.2, 41.8 -1.9062499999999982,1.91,a-pcom-i3,2020-21,Swampscott - Swampscott High,02910505, 2.5, 0.0, 3.7, 93.9, 0.0, 0.0, 0.0, 64.6, 35.4, 81.5 -1,1,a-pcom-i3,2020-21,Swampscott - Swampscott Middle,02910305, 1.0, 0.0, 1.0, 97.1, 0.0, 0.0, 1.0, 89.1, 10.9, 104.2 -1,1,a-pcom-i3,2020-21,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 26.6 -1,1,a-pcom-i3,2020-21,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 28.5 -1,1,a-pcom-i3,2020-21,Swansea - Joseph Case High,02920505, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 46.9, 53.1, 63.8 -1,1,a-pcom-i3,2020-21,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 68.3, 31.7, 55.6 -1,1,a-pcom-i3,2020-21,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 26.6 -1,1,a-pcom-i3,2020-21,Swansea - Mark G Hoyle Elementary,02920017, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 92.2, 7.8, 33.6 -2.906249999999999,2.91,a-pcom-i3,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 1.3, 4.6, 3.3, 90.7, 0.0, 0.0, 0.0, 73.8, 26.2, 150.6 -1,1,a-pcom-i3,2020-21,Tantasqua - Tantasqua Regional Jr High,07700405, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 76.5, 22.1, 68.0 -1,1,a-pcom-i3,2020-21,Tantasqua - Tantasqua Regional Sr High,07700505, 0.4, 0.0, 0.9, 97.9, 0.0, 0.0, 0.9, 66.6, 33.4, 114.3 -1.875,1.88,a-pcom-i3,2020-21,Tantasqua - Tantasqua Regional Vocational,07700605, 6.0, 0.0, 0.0, 94.0, 0.0, 0.0, 0.0, 33.7, 66.3, 16.6 -1,1,a-pcom-i3,2020-21,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.8, 19.2, 78.3 -1,1,a-pcom-i3,2020-21,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 94.0, 6.0, 72.0 -1.8124999999999991,1.81,a-pcom-i3,2020-21,Taunton - Edmund Hatch Bennett,02930007, 2.9, 0.0, 2.9, 94.2, 0.0, 0.0, 0.0, 92.6, 7.4, 34.5 -1,1,a-pcom-i3,2020-21,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 100.0, 0.0, 37.5 -1,1,a-pcom-i3,2020-21,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 94.7, 5.3, 62.7 -1.7812500000000009,1.78,a-pcom-i3,2020-21,Taunton - H H Galligan,02930057, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 96.3, 3.7, 34.8 -3.5625000000000018,3.56,a-pcom-i3,2020-21,Taunton - John F Parker Middle,02930305, 3.8, 1.9, 5.7, 88.6, 0.0, 0.0, 0.0, 82.3, 17.7, 52.5 -1.6250000000000009,1.63,a-pcom-i3,2020-21,Taunton - Joseph C Chamberlain,02930008, 0.0, 5.2, 0.0, 94.8, 0.0, 0.0, 0.0, 96.6, 3.4, 53.0 -1.8124999999999991,1.81,a-pcom-i3,2020-21,Taunton - Joseph H Martin,02930042, 5.8, 0.0, 0.0, 94.2, 0.0, 0.0, 0.0, 82.6, 17.4, 69.2 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Taunton - Mulcahey Elementary School,02930015, 2.0, 0.3, 2.0, 95.7, 0.0, 0.0, 0.0, 94.1, 5.9, 98.1 -2.5312499999999982,2.53,a-pcom-i3,2020-21,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 8.1, 91.9, 0.0, 0.0, 0.0, 56.5, 43.5, 12.3 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Taunton - Taunton High,02930505, 2.5, 0.4, 2.9, 93.7, 0.0, 0.0, 0.4, 64.8, 35.2, 237.4 -4.031250000000002,4.03,a-pcom-i3,2020-21,Tewksbury - Heath-Brook,02950010, 2.2, 6.5, 4.3, 87.1, 0.0, 0.0, 0.0, 98.9, 1.1, 46.4 -1.09375,1.09,a-pcom-i3,2020-21,Tewksbury - John F. Ryan,02950023, 2.1, 1.4, 0.0, 96.5, 0.0, 0.0, 0.0, 89.4, 10.6, 70.9 -1,1,a-pcom-i3,2020-21,Tewksbury - John W. Wynn Middle,02950305, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 74.2, 25.8, 63.8 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Tewksbury - L F Dewing,02950001, 0.0, 1.1, 2.3, 96.6, 0.0, 0.0, 0.0, 97.2, 2.8, 88.7 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 93.5, 6.5, 30.6 -3.4375,3.44,a-pcom-i3,2020-21,Tewksbury - North Street,02950020, 0.0, 0.0, 11.0, 89.0, 0.0, 0.0, 0.0, 95.6, 4.4, 45.6 -1,1,a-pcom-i3,2020-21,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.9, 1.8, 97.3, 0.0, 0.0, 0.0, 61.3, 37.8, 109.9 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Tisbury - Tisbury Elementary,02960005, 1.8, 0.0, 4.7, 92.1, 0.0, 0.0, 1.4, 84.9, 15.1, 71.0 -1,1,a-pcom-i3,2020-21,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 41.0 -1,1,a-pcom-i3,2020-21,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 96.8, 3.2, 61.1 -1,1,a-pcom-i3,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 61.8, 38.2, 130.4 -1,1,a-pcom-i3,2020-21,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 74.3 -1,1,a-pcom-i3,2020-21,Triton - Pine Grove,07730025, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 87.2, 12.8, 62.7 -1,1,a-pcom-i3,2020-21,Triton - Salisbury Elementary,07730015, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 95.6, 4.4, 68.2 -1,1,a-pcom-i3,2020-21,Triton - Triton Regional High School,07730505, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 60.0, 40.0, 92.8 -1,1,a-pcom-i3,2020-21,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.1, 29.9, 50.8 -1.0000000000000009,1.0,a-pcom-i3,2020-21,Truro - Truro Central,03000005, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 90.3, 9.7, 30.9 -1,1,a-pcom-i3,2020-21,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 89.8, 10.2, 97.8 -1,1,a-pcom-i3,2020-21,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 66.1, 33.9, 50.9 -1,1,a-pcom-i3,2020-21,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 71.2, 28.8, 52.9 -11.031249999999998,5,a-pcom-i3,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 27.5, 0.0, 7.8, 64.7, 0.0, 0.0, 0.0, 70.6, 29.4, 51.0 -11.15625,5,a-pcom-i3,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 27.1, 0.0, 8.6, 64.3, 0.0, 0.0, 0.0, 78.6, 21.4, 70.0 -2.906249999999999,2.91,a-pcom-i3,2020-21,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 90.7, 0.0, 0.0, 9.3, 96.5, 3.5, 10.7 -1.09375,1.09,a-pcom-i3,2020-21,Up-Island Regional - West Tisbury Elementary,07740020, 0.3, 0.0, 3.2, 96.5, 0.0, 0.0, 0.0, 85.8, 14.2, 75.0 -1,1,a-pcom-i3,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 99.0, 1.0, 0.0, 0.0, 39.3, 60.7, 104.7 -31.25,5,a-pcom-i3,2020-21,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1,1,a-pcom-i3,2020-21,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 75.4 -1,1,a-pcom-i3,2020-21,Uxbridge - Uxbridge High,03040505, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 73.6, 26.4, 77.5 -1,1,a-pcom-i3,2020-21,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.0, 19.0, 57.8 -11.71875,5,a-pcom-i3,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 23.2, 1.8, 10.7, 62.5, 0.0, 0.0, 1.8, 80.4, 19.6, 56.0 -1,1,a-pcom-i3,2020-21,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.5, 22.5, 49.0 -1,1,a-pcom-i3,2020-21,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 42.9 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 87.3, 12.7, 55.3 -1,1,a-pcom-i3,2020-21,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 52.7 -1,1,a-pcom-i3,2020-21,Wachusett - Early Childhood Center,07750001, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 97.6, 2.4, 42.6 -1,1,a-pcom-i3,2020-21,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 50.1 -1,1,a-pcom-i3,2020-21,Wachusett - Houghton Elementary,07750027, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 96.9, 3.1, 63.7 -1,1,a-pcom-i3,2020-21,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 47.1 -1,1,a-pcom-i3,2020-21,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 80.6, 19.4, 72.3 -1,1,a-pcom-i3,2020-21,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 43.8 -1,1,a-pcom-i3,2020-21,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.3, 17.7, 53.3 -1,1,a-pcom-i3,2020-21,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 97.5, 0.0, 2.5, 0.0, 86.3, 13.7, 40.1 -1,1,a-pcom-i3,2020-21,Wachusett - Wachusett Regional High,07750505, 0.0, 0.5, 0.5, 99.1, 0.0, 0.0, 0.0, 70.4, 29.6, 219.0 -1,1,a-pcom-i3,2020-21,Wakefield - Dolbeare,03050005, 0.0, 1.5, 0.0, 96.9, 1.5, 0.0, 0.0, 90.7, 9.3, 64.5 -1.3125000000000009,1.31,a-pcom-i3,2020-21,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 4.2, 0.0, 95.8, 0.0, 0.0, 0.0, 95.8, 4.2, 23.7 -1,1,a-pcom-i3,2020-21,Wakefield - Galvin Middle School,03050310, 0.9, 0.0, 0.8, 98.3, 0.0, 0.0, 0.0, 72.5, 27.5, 109.3 -1.09375,1.09,a-pcom-i3,2020-21,Wakefield - Greenwood,03050020, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 89.4, 10.6, 28.4 -1,1,a-pcom-i3,2020-21,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 67.4, 32.6, 103.4 -1,1,a-pcom-i3,2020-21,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 24.3 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Wakefield - Woodville School,03050015, 0.0, 0.0, 1.8, 96.3, 0.0, 0.0, 1.8, 94.5, 5.5, 54.4 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 95.7, 0.0, 0.0, 4.3, 89.4, 10.6, 23.2 -1,1,a-pcom-i3,2020-21,Walpole - Bird Middle,03070305, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 75.6, 24.4, 57.3 -1,1,a-pcom-i3,2020-21,Walpole - Boyden,03070010, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 95.4, 4.6, 49.6 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 4.4, 95.6, 0.0, 0.0, 0.0, 94.3, 5.7, 17.4 -1,1,a-pcom-i3,2020-21,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 78.2, 21.8, 55.0 -1,1,a-pcom-i3,2020-21,Walpole - Elm Street School,03070005, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 96.3, 3.7, 53.7 -1,1,a-pcom-i3,2020-21,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 60.3 -1,1,a-pcom-i3,2020-21,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 49.9 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Walpole - Walpole High,03070505, 0.0, 1.4, 1.4, 96.7, 0.0, 0.0, 0.4, 68.7, 31.3, 138.4 -1,1,a-pcom-i3,2020-21,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 89.9, 10.1, 57.2 -5.125000000000002,5,a-pcom-i3,2020-21,Waltham - Henry Whittemore Elementary School,03080065, 4.0, 0.0, 10.4, 83.6, 0.0, 0.0, 2.0, 88.3, 11.7, 50.0 -2.406250000000001,2.41,a-pcom-i3,2020-21,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 5.8, 92.3, 0.0, 0.0, 1.9, 87.3, 12.7, 52.2 -3.90625,3.91,a-pcom-i3,2020-21,Waltham - John F Kennedy Middle,03080404, 2.7, 2.7, 7.1, 87.5, 0.0, 0.0, 0.0, 78.3, 21.7, 74.3 -4.0625,4.06,a-pcom-i3,2020-21,Waltham - John W. McDevitt Middle School,03080415, 2.4, 0.9, 8.5, 87.0, 0.0, 0.0, 1.1, 68.1, 31.9, 79.8 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Waltham - Northeast Elementary School,03080040, 1.2, 1.7, 2.8, 93.6, 0.0, 0.0, 0.6, 92.6, 7.4, 80.1 -2.124999999999999,2.12,a-pcom-i3,2020-21,Waltham - Thomas R Plympton Elementary School,03080050, 1.9, 0.9, 4.0, 93.2, 0.0, 0.0, 0.0, 92.7, 7.3, 52.9 -17.96875,5,a-pcom-i3,2020-21,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 57.5, 42.5, 0.0, 0.0, 0.0, 86.7, 13.3, 19.8 -4.343750000000002,4.34,a-pcom-i3,2020-21,Waltham - Waltham Sr High,03080505, 4.1, 2.6, 6.1, 86.1, 0.0, 0.5, 0.5, 64.9, 35.1, 194.8 -2.4687500000000018,2.47,a-pcom-i3,2020-21,Waltham - William F. Stanley Elementary School,03080005, 0.9, 3.4, 2.4, 92.1, 0.0, 0.0, 1.2, 87.8, 12.2, 84.3 -1,1,a-pcom-i3,2020-21,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 90.6, 9.4, 53.1 -2.562500000000001,2.56,a-pcom-i3,2020-21,Ware - Ware Junior/Senior High School,03090505, 1.4, 0.0, 6.8, 91.8, 0.0, 0.0, 0.0, 71.7, 28.3, 70.6 -1,1,a-pcom-i3,2020-21,Ware - Ware Middle School,03090305, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 81.5, 18.5, 37.8 -1,1,a-pcom-i3,2020-21,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 99.4, 0.0, 0.0, 0.6, 92.8, 7.2, 89.7 -1,1,a-pcom-i3,2020-21,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 91.2, 8.8, 48.2 -1,1,a-pcom-i3,2020-21,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.0, 14.0, 3.6 -1.3750000000000018,1.38,a-pcom-i3,2020-21,Wareham - Wareham Middle,03100305, 1.4, 0.0, 0.0, 95.6, 0.0, 0.0, 3.0, 86.7, 13.3, 62.4 -2.593749999999999,2.59,a-pcom-i3,2020-21,Wareham - Wareham Senior High,03100505, 3.1, 0.0, 0.0, 91.7, 0.0, 0.0, 5.2, 66.1, 33.9, 96.0 -3.7812499999999982,3.78,a-pcom-i3,2020-21,Watertown - Cunniff,03140015, 0.0, 1.1, 11.0, 87.9, 0.0, 0.0, 0.0, 86.8, 13.2, 45.5 -2.5,2.5,a-pcom-i3,2020-21,Watertown - Hosmer,03140020, 0.0, 0.4, 6.8, 92.0, 0.0, 0.0, 0.8, 90.0, 10.0, 124.7 -7.03125,5,a-pcom-i3,2020-21,Watertown - James Russell Lowell,03140025, 4.2, 0.0, 18.3, 77.5, 0.0, 0.0, 0.0, 89.0, 11.0, 71.2 -2.250000000000001,2.25,a-pcom-i3,2020-21,Watertown - Watertown High,03140505, 1.0, 1.0, 4.2, 92.8, 0.0, 0.0, 1.0, 50.2, 49.8, 101.4 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Watertown - Watertown Middle,03140305, 0.0, 0.0, 4.9, 93.8, 0.0, 0.0, 1.3, 70.9, 29.1, 77.9 -2.0000000000000018,2.0,a-pcom-i3,2020-21,Wayland - Claypit Hill School,03150005, 2.6, 1.3, 1.3, 93.6, 0.0, 0.0, 1.3, 94.9, 5.1, 78.3 -4.0625,4.06,a-pcom-i3,2020-21,Wayland - Happy Hollow School,03150015, 0.9, 6.9, 5.2, 87.0, 0.0, 0.0, 0.0, 96.4, 3.6, 57.7 -3.843749999999999,3.84,a-pcom-i3,2020-21,Wayland - Loker School,03150020, 0.8, 1.6, 8.4, 87.7, 0.0, 0.0, 1.6, 91.2, 8.8, 63.3 -2.250000000000001,2.25,a-pcom-i3,2020-21,Wayland - Wayland High School,03150505, 4.0, 1.6, 1.6, 92.8, 0.0, 0.0, 0.0, 65.9, 34.1, 124.3 -3.9374999999999982,3.94,a-pcom-i3,2020-21,Wayland - Wayland Middle School,03150305, 1.9, 3.9, 6.8, 87.4, 0.0, 0.0, 0.0, 73.9, 26.1, 103.3 -2.2187499999999982,2.22,a-pcom-i3,2020-21,Webster - Bartlett High School,03160505, 1.8, 0.0, 3.6, 92.9, 0.0, 0.0, 1.8, 64.9, 35.1, 56.0 -1,1,a-pcom-i3,2020-21,Webster - Park Avenue Elementary,03160015, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 94.6, 5.4, 111.6 -1,1,a-pcom-i3,2020-21,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.6, 16.4, 64.0 -3.062499999999999,3.06,a-pcom-i3,2020-21,Wellesley - Ernest F Upham,03170050, 2.2, 1.9, 5.7, 90.2, 0.0, 0.0, 0.0, 91.4, 8.6, 51.8 -3.1562499999999982,3.16,a-pcom-i3,2020-21,Wellesley - Hunnewell,03170025, 3.1, 0.0, 4.6, 89.9, 0.0, 0.0, 2.4, 93.4, 6.6, 41.1 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Wellesley - John D Hardy,03170020, 0.4, 0.0, 3.3, 96.3, 0.0, 0.0, 0.0, 92.6, 7.4, 37.8 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Wellesley - Joseph E Fiske,03170015, 0.3, 0.0, 0.8, 96.4, 0.0, 0.0, 2.4, 99.7, 0.3, 41.2 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Wellesley - Katharine Lee Bates,03170005, 0.4, 0.0, 5.8, 93.8, 0.0, 0.0, 0.0, 96.8, 3.2, 35.3 -3.4687499999999982,3.47,a-pcom-i3,2020-21,Wellesley - Preschool at Wellesley Schools,03170001, 2.2, 2.2, 4.4, 88.9, 0.0, 0.0, 2.2, 100.0, 0.0, 45.1 -3.687499999999999,3.69,a-pcom-i3,2020-21,Wellesley - Schofield,03170045, 2.5, 2.2, 4.9, 88.2, 0.0, 0.0, 2.2, 88.1, 11.9, 45.6 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Wellesley - Sprague Elementary School,03170048, 0.2, 1.7, 0.4, 95.7, 0.0, 0.0, 1.9, 94.6, 5.4, 58.1 -3.531249999999999,3.53,a-pcom-i3,2020-21,Wellesley - Wellesley Middle,03170305, 2.7, 3.3, 3.5, 88.7, 0.0, 0.0, 1.9, 72.6, 27.4, 183.7 -3.062499999999999,3.06,a-pcom-i3,2020-21,Wellesley - Wellesley Sr High,03170505, 3.0, 3.5, 1.7, 90.2, 0.0, 0.0, 1.6, 65.3, 34.7, 234.1 -1,1,a-pcom-i3,2020-21,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 28.2 -1,1,a-pcom-i3,2020-21,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 64.0 -1.3437499999999991,1.34,a-pcom-i3,2020-21,West Boylston - West Boylston Junior/Senior High,03220505, 1.4, 0.0, 2.8, 95.7, 0.0, 0.0, 0.0, 69.7, 30.3, 70.4 -1.2187500000000018,1.22,a-pcom-i3,2020-21,West Bridgewater - Howard School,03230305, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 90.3, 9.7, 25.8 -1,1,a-pcom-i3,2020-21,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 28.8 -1,1,a-pcom-i3,2020-21,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 21.0 -1.0000000000000009,1.0,a-pcom-i3,2020-21,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 68.7, 31.3, 63.2 -2.1562500000000018,2.16,a-pcom-i3,2020-21,West Springfield - Cowing Early Childhood,03320001, 3.4, 0.0, 3.4, 93.1, 0.0, 0.0, 0.0, 92.8, 7.2, 29.0 -1,1,a-pcom-i3,2020-21,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 42.7 -1.9375000000000009,1.94,a-pcom-i3,2020-21,West Springfield - John R Fausey,03320010, 1.5, 0.0, 4.6, 93.8, 0.0, 0.0, 0.0, 96.2, 3.8, 64.6 -1,1,a-pcom-i3,2020-21,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.2, 12.8, 32.0 -1,1,a-pcom-i3,2020-21,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 27.0 -1,1,a-pcom-i3,2020-21,West Springfield - Philip G Coburn,03320007, 1.3, 1.3, 0.0, 97.4, 0.0, 0.0, 0.0, 90.2, 9.8, 76.3 -1,1,a-pcom-i3,2020-21,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 35.7 -1.7499999999999982,1.75,a-pcom-i3,2020-21,West Springfield - West Springfield High,03320505, 0.6, 0.6, 3.7, 94.4, 0.0, 0.6, 0.0, 68.5, 31.5, 160.1 -1,1,a-pcom-i3,2020-21,West Springfield - West Springfield Middle,03320305, 0.0, 0.9, 1.7, 97.4, 0.0, 0.0, 0.0, 71.5, 28.5, 114.2 -1.5937499999999982,1.59,a-pcom-i3,2020-21,Westborough - Annie E Fales,03210010, 0.0, 1.8, 1.8, 94.9, 0.0, 0.0, 1.5, 97.1, 2.9, 55.0 -2.093750000000001,2.09,a-pcom-i3,2020-21,Westborough - Elsie A Hastings Elementary,03210025, 1.1, 5.6, 0.0, 93.3, 0.0, 0.0, 0.0, 93.9, 6.1, 89.5 -2.093750000000001,2.09,a-pcom-i3,2020-21,Westborough - J Harding Armstrong,03210005, 1.7, 5.0, 0.0, 93.3, 0.0, 0.0, 0.0, 98.3, 1.7, 59.8 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Westborough - Mill Pond School,03210045, 0.0, 2.5, 0.8, 96.7, 0.0, 0.0, 0.0, 85.9, 14.1, 120.1 -2.2187499999999982,2.22,a-pcom-i3,2020-21,Westborough - Sarah W Gibbons Middle,03210305, 1.1, 2.6, 3.4, 92.9, 0.0, 0.0, 0.0, 75.9, 24.1, 89.1 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Westborough - Westborough High,03210505, 1.4, 2.0, 0.0, 95.9, 0.0, 0.7, 0.0, 66.4, 33.6, 142.6 -1,1,a-pcom-i3,2020-21,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 23.8 -2.96875,2.97,a-pcom-i3,2020-21,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 6.4, 3.2, 90.5, 0.0, 0.0, 0.0, 100.0, 0.0, 31.4 -1.25,1.25,a-pcom-i3,2020-21,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 4.0, 94.4, 5.6, 25.0 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Westfield - Highland,03250025, 0.0, 2.1, 2.1, 93.8, 2.1, 0.0, 0.0, 93.8, 6.2, 48.2 -2.03125,2.03,a-pcom-i3,2020-21,Westfield - Munger Hill,03250033, 4.9, 0.0, 1.6, 93.5, 0.0, 0.0, 0.0, 90.9, 9.1, 61.8 -1,1,a-pcom-i3,2020-21,Westfield - Paper Mill,03250036, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 98.6, 1.4, 40.5 -1,1,a-pcom-i3,2020-21,Westfield - Southampton Road,03250040, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 98.2, 1.8, 34.4 -1,1,a-pcom-i3,2020-21,Westfield - Westfield High,03250505, 0.7, 0.7, 0.7, 97.9, 0.0, 0.0, 0.0, 73.6, 26.4, 143.3 -1.2812499999999982,1.28,a-pcom-i3,2020-21,Westfield - Westfield Intermediate School,03250075, 2.0, 1.0, 1.0, 95.9, 0.0, 0.0, 0.0, 84.6, 15.4, 98.3 -1,1,a-pcom-i3,2020-21,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 75.3, 24.7, 97.9 -1,1,a-pcom-i3,2020-21,Westfield - Westfield Technical Academy,03250605, 1.1, 0.0, 0.0, 97.8, 1.1, 0.0, 0.0, 51.6, 48.4, 90.3 -1,1,a-pcom-i3,2020-21,Westford - Abbot Elementary,03260004, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 98.9, 1.1, 46.0 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Westford - Blanchard Middle,03260310, 0.0, 4.7, 1.6, 93.7, 0.0, 0.0, 0.0, 88.7, 11.3, 64.0 -1.25,1.25,a-pcom-i3,2020-21,Westford - Col John Robinson,03260025, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 96.4, 3.6, 49.6 -1,1,a-pcom-i3,2020-21,Westford - Day Elementary,03260007, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 90.9, 9.1, 43.9 -1,1,a-pcom-i3,2020-21,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 52.3 -1,1,a-pcom-i3,2020-21,Westford - Nabnasset,03260015, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 95.6, 4.4, 49.3 -2.8125,2.81,a-pcom-i3,2020-21,Westford - Rita E. Miller Elementary School,03260055, 1.5, 7.5, 0.0, 91.0, 0.0, 0.0, 0.0, 98.5, 1.5, 66.6 -1,1,a-pcom-i3,2020-21,Westford - Stony Brook School,03260330, 1.3, 0.0, 1.3, 97.4, 0.0, 0.0, 0.0, 81.7, 18.3, 76.6 -1.4687500000000009,1.47,a-pcom-i3,2020-21,Westford - Westford Academy,03260505, 0.0, 3.5, 0.6, 95.3, 0.0, 0.0, 0.6, 60.4, 39.6, 165.8 -1,1,a-pcom-i3,2020-21,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.3, 12.7, 25.2 -1.25,1.25,a-pcom-i3,2020-21,Weston - Country,03300010, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 88.3, 11.7, 62.5 -4.812500000000002,4.81,a-pcom-i3,2020-21,Weston - Field Elementary School,03300012, 3.8, 5.9, 3.7, 84.6, 0.0, 0.0, 2.1, 84.8, 15.2, 47.9 -3.90625,3.91,a-pcom-i3,2020-21,Weston - Weston High,03300505, 1.4, 7.4, 3.7, 87.5, 0.0, 0.0, 0.0, 61.4, 38.6, 108.7 -3.28125,3.28,a-pcom-i3,2020-21,Weston - Weston Middle,03300305, 3.6, 4.6, 2.3, 89.5, 0.0, 0.0, 0.0, 72.1, 27.9, 81.0 -1.8437500000000018,1.84,a-pcom-i3,2020-21,Weston - Woodland,03300015, 0.0, 1.6, 4.3, 94.1, 0.0, 0.0, 0.0, 92.5, 7.5, 50.4 -1,1,a-pcom-i3,2020-21,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 55.0 -1,1,a-pcom-i3,2020-21,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 61.0 -1,1,a-pcom-i3,2020-21,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.5, 31.5, 84.1 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Westwood - Deerfield School,03350010, 0.0, 2.4, 2.4, 95.1, 0.0, 0.0, 0.0, 87.0, 13.0, 41.1 -1.4999999999999991,1.5,a-pcom-i3,2020-21,Westwood - Downey,03350012, 0.0, 1.7, 1.7, 95.2, 0.0, 0.0, 1.4, 94.9, 5.1, 58.5 -3.031250000000001,3.03,a-pcom-i3,2020-21,Westwood - E W Thurston Middle,03350305, 3.2, 1.1, 4.3, 90.3, 0.0, 0.0, 1.1, 73.4, 26.6, 92.6 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Westwood - Martha Jones,03350017, 0.0, 4.3, 0.0, 95.7, 0.0, 0.0, 0.0, 89.9, 10.1, 34.7 -1,1,a-pcom-i3,2020-21,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 28.6 -2.6874999999999982,2.69,a-pcom-i3,2020-21,Westwood - Westwood High,03350505, 3.0, 1.9, 3.0, 91.4, 0.0, 0.0, 0.7, 66.7, 33.3, 134.6 -1,1,a-pcom-i3,2020-21,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 15.7 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Westwood - William E Sheehan,03350025, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 92.6, 7.4, 44.9 -1,1,a-pcom-i3,2020-21,Weymouth - Abigail Adams Middle School,03360310, 0.0, 1.7, 0.9, 97.4, 0.0, 0.0, 0.0, 70.8, 29.2, 116.3 -1,1,a-pcom-i3,2020-21,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 35.1 -1,1,a-pcom-i3,2020-21,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 43.1 -3.3124999999999982,3.31,a-pcom-i3,2020-21,Weymouth - Johnson Early Childhood Center,03360003, 2.1, 6.3, 2.1, 89.4, 0.0, 0.0, 0.0, 97.9, 2.1, 47.3 -1,1,a-pcom-i3,2020-21,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 34.6 -1,1,a-pcom-i3,2020-21,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 29.8 -1,1,a-pcom-i3,2020-21,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 91.0, 9.0, 33.4 -1,1,a-pcom-i3,2020-21,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 39.9 -1,1,a-pcom-i3,2020-21,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.0, 15.0, 46.6 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Weymouth - Weymouth High School,03360505, 0.7, 1.0, 1.0, 96.6, 0.3, 0.0, 0.3, 65.4, 34.6, 297.8 -1,1,a-pcom-i3,2020-21,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 40.7 -1,1,a-pcom-i3,2020-21,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 30.4 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Whitman-Hanson - Hanson Middle School,07800315, 1.5, 0.0, 1.8, 96.7, 0.0, 0.0, 0.0, 79.8, 20.2, 64.9 -1,1,a-pcom-i3,2020-21,Whitman-Hanson - Indian Head,07800035, 0.9, 0.0, 1.0, 98.1, 0.0, 0.0, 0.0, 91.5, 8.5, 55.1 -1.1874999999999991,1.19,a-pcom-i3,2020-21,Whitman-Hanson - John H Duval,07800030, 1.4, 1.4, 0.9, 96.2, 0.0, 0.0, 0.0, 95.5, 4.5, 59.8 -1,1,a-pcom-i3,2020-21,Whitman-Hanson - Louise A Conley,07800010, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 91.7, 8.3, 61.4 -1,1,a-pcom-i3,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 15.1 -1,1,a-pcom-i3,2020-21,Whitman-Hanson - Whitman Hanson Regional,07800505, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 64.8, 35.2, 101.5 -1,1,a-pcom-i3,2020-21,Whitman-Hanson - Whitman Middle,07800310, 0.9, 0.0, 2.1, 97.0, 0.0, 0.0, 0.0, 74.7, 25.3, 57.2 -1,1,a-pcom-i3,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.6, 0.0, 0.8, 98.7, 0.0, 0.0, 0.0, 52.8, 47.2, 132.0 -1,1,a-pcom-i3,2020-21,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 28.7 -1,1,a-pcom-i3,2020-21,Wilmington - Boutwell,03420005, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 100.0, 0.0, 21.9 -1.0625000000000018,1.06,a-pcom-i3,2020-21,Wilmington - North Intermediate,03420060, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 96.6, 3.4, 29.7 -1,1,a-pcom-i3,2020-21,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 43.3 -1.5625,1.56,a-pcom-i3,2020-21,Wilmington - West Intermediate,03420080, 0.0, 5.0, 0.0, 95.0, 0.0, 0.0, 0.0, 89.9, 10.1, 29.8 -1.0312499999999991,1.03,a-pcom-i3,2020-21,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 96.7, 0.0, 0.0, 3.3, 93.4, 6.6, 30.5 -1.5312500000000018,1.53,a-pcom-i3,2020-21,Wilmington - Wilmington High,03420505, 0.4, 1.8, 1.8, 95.1, 0.9, 0.0, 0.0, 73.3, 26.7, 111.3 -1,1,a-pcom-i3,2020-21,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.6, 22.4, 106.5 -1,1,a-pcom-i3,2020-21,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 44.3 -1,1,a-pcom-i3,2020-21,Winchendon - Memorial,03430040, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 97.6, 2.4, 42.3 -1,1,a-pcom-i3,2020-21,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.5, 43.5, 2.3 -1.875,1.88,a-pcom-i3,2020-21,Winchendon - Murdock High School,03430515, 3.0, 0.0, 0.0, 94.0, 0.0, 3.0, 0.0, 79.0, 21.0, 33.3 -1.9687499999999991,1.97,a-pcom-i3,2020-21,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 75.0, 25.0, 32.0 -1,1,a-pcom-i3,2020-21,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 29.5 -1,1,a-pcom-i3,2020-21,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.7 -1,1,a-pcom-i3,2020-21,Winchester - Ambrose Elementary,03440045, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 94.6, 3.8, 48.5 -1,1,a-pcom-i3,2020-21,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.2, 9.8, 45.8 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Winchester - Lynch Elementary,03440020, 0.0, 2.4, 1.2, 96.3, 0.0, 0.0, 0.1, 95.9, 4.1, 83.1 -1.40625,1.41,a-pcom-i3,2020-21,Winchester - McCall Middle,03440305, 1.5, 1.4, 1.5, 95.5, 0.0, 0.0, 0.0, 77.6, 22.4, 129.2 -1,1,a-pcom-i3,2020-21,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 99.8, 0.0, 0.0, 0.2, 95.0, 5.0, 45.7 -1,1,a-pcom-i3,2020-21,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 88.2, 11.8, 55.1 -1,1,a-pcom-i3,2020-21,Winchester - Winchester High School,03440505, 0.7, 0.0, 0.7, 98.6, 0.0, 0.0, 0.0, 64.9, 35.1, 147.9 -1,1,a-pcom-i3,2020-21,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 89.7, 10.3, 53.5 -1,1,a-pcom-i3,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 80.4 -1.40625,1.41,a-pcom-i3,2020-21,Winthrop - Winthrop High School,03460505, 0.0, 3.0, 1.5, 95.5, 0.0, 0.0, 0.0, 59.0, 41.0, 66.8 -1,1,a-pcom-i3,2020-21,Winthrop - Winthrop Middle School,03460305, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 71.8, 28.2, 52.5 -1.1562500000000009,1.16,a-pcom-i3,2020-21,Woburn - Clyde Reeves,03470040, 1.9, 0.0, 0.0, 96.3, 1.9, 0.0, 0.0, 95.6, 4.4, 53.7 -1.09375,1.09,a-pcom-i3,2020-21,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.7, 1.7, 96.5, 0.0, 0.0, 0.0, 76.3, 23.7, 85.9 -1,1,a-pcom-i3,2020-21,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 40.5 -1,1,a-pcom-i3,2020-21,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 35.4 -1,1,a-pcom-i3,2020-21,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 67.9, 32.1, 62.6 -1,1,a-pcom-i3,2020-21,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 26.1 -1,1,a-pcom-i3,2020-21,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 32.1 -1.4374999999999982,1.44,a-pcom-i3,2020-21,Woburn - Mary D Altavesta,03470065, 1.5, 0.0, 3.0, 95.4, 0.0, 0.0, 0.0, 88.7, 11.3, 32.8 -1,1,a-pcom-i3,2020-21,Woburn - Shamrock,03470043, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 90.2, 9.8, 63.2 -2.250000000000001,2.25,a-pcom-i3,2020-21,Woburn - Woburn High,03470505, 1.3, 2.0, 4.0, 92.8, 0.0, 0.0, 0.0, 67.8, 32.2, 151.8 -1,1,a-pcom-i3,2020-21,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 90.6, 9.4, 63.5 -6.062500000000002,5,a-pcom-i3,2020-21,Worcester - Burncoat Middle School,03480405, 8.3, 0.0, 11.2, 80.6, 0.0, 0.0, 0.0, 68.3, 31.7, 89.5 -3.59375,3.59,a-pcom-i3,2020-21,Worcester - Burncoat Senior High,03480503, 3.1, 0.0, 8.4, 88.5, 0.0, 0.0, 0.0, 59.7, 40.3, 143.2 -3.999999999999999,4.0,a-pcom-i3,2020-21,Worcester - Burncoat Street,03480035, 0.0, 0.0, 12.8, 87.2, 0.0, 0.0, 0.0, 89.8, 10.2, 39.0 -2.124999999999999,2.12,a-pcom-i3,2020-21,Worcester - Canterbury,03480045, 0.0, 2.3, 4.5, 93.2, 0.0, 0.0, 0.0, 95.5, 4.5, 44.0 -3.968750000000001,3.97,a-pcom-i3,2020-21,Worcester - Chandler Elementary Community,03480050, 1.6, 1.6, 9.5, 87.3, 0.0, 0.0, 0.0, 96.8, 3.2, 63.0 -13.8125,5,a-pcom-i3,2020-21,Worcester - Chandler Magnet,03480052, 1.5, 1.5, 41.2, 55.8, 0.0, 0.0, 0.0, 94.1, 5.9, 68.0 -3.687499999999999,3.69,a-pcom-i3,2020-21,Worcester - City View,03480053, 2.9, 0.0, 8.8, 88.2, 0.0, 0.0, 0.0, 86.8, 13.2, 68.0 -8.374999999999998,5,a-pcom-i3,2020-21,Worcester - Claremont Academy,03480350, 12.0, 4.9, 9.9, 73.2, 0.0, 0.0, 0.0, 71.9, 28.1, 60.8 -8.156249999999998,5,a-pcom-i3,2020-21,Worcester - Clark St Community,03480055, 4.3, 2.2, 19.6, 73.9, 0.0, 0.0, 0.0, 91.3, 8.7, 46.0 -2.906249999999999,2.91,a-pcom-i3,2020-21,Worcester - Columbus Park,03480060, 3.7, 0.0, 5.6, 90.7, 0.0, 0.0, 0.0, 88.9, 11.1, 54.0 -2.437499999999999,2.44,a-pcom-i3,2020-21,Worcester - Doherty Memorial High,03480512, 1.4, 0.0, 6.5, 92.2, 0.0, 0.0, 0.0, 60.7, 39.3, 145.7 -4.624999999999999,4.62,a-pcom-i3,2020-21,Worcester - Elm Park Community,03480095, 1.9, 0.0, 11.1, 85.2, 0.0, 1.9, 0.0, 88.9, 11.1, 54.0 -1,1,a-pcom-i3,2020-21,Worcester - Flagg Street,03480090, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 85.4, 14.6, 41.0 -4.656250000000002,4.66,a-pcom-i3,2020-21,Worcester - Forest Grove Middle,03480415, 6.6, 1.7, 6.6, 85.1, 0.0, 0.0, 0.0, 75.7, 24.3, 121.1 -1.1249999999999982,1.12,a-pcom-i3,2020-21,Worcester - Francis J McGrath Elementary,03480177, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 92.9, 7.1, 28.0 -4.249999999999998,4.25,a-pcom-i3,2020-21,Worcester - Gates Lane,03480110, 3.9, 1.9, 7.8, 86.4, 0.0, 0.0, 0.0, 95.1, 4.9, 103.0 -4.156249999999999,4.16,a-pcom-i3,2020-21,Worcester - Goddard School/Science Technical,03480100, 2.9, 0.0, 10.3, 86.7, 0.0, 0.0, 0.0, 94.4, 5.6, 67.8 -6.687500000000002,5,a-pcom-i3,2020-21,Worcester - Grafton Street,03480115, 7.1, 4.8, 9.5, 78.6, 0.0, 0.0, 0.0, 85.7, 14.3, 42.0 -8.843749999999998,5,a-pcom-i3,2020-21,Worcester - Head Start,03480002, 5.5, 2.7, 20.1, 71.7, 0.0, 0.0, 0.0, 99.1, 0.9, 109.5 -5.78125,5,a-pcom-i3,2020-21,Worcester - Heard Street,03480136, 7.4, 0.0, 7.4, 81.5, 0.0, 3.7, 0.0, 96.3, 3.7, 27.0 -2.281249999999999,2.28,a-pcom-i3,2020-21,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 2.4, 4.9, 92.7, 0.0, 0.0, 0.0, 92.7, 7.3, 40.8 -3.125,3.13,a-pcom-i3,2020-21,Worcester - Lake View,03480145, 3.3, 3.3, 3.3, 90.0, 0.0, 0.0, 0.0, 86.7, 13.3, 30.0 -5.343749999999998,5,a-pcom-i3,2020-21,Worcester - Lincoln Street,03480160, 0.0, 2.4, 14.6, 82.9, 0.0, 0.0, 0.0, 92.7, 7.3, 41.0 -3.90625,3.91,a-pcom-i3,2020-21,Worcester - May Street,03480175, 3.1, 6.3, 3.1, 87.5, 0.0, 0.0, 0.0, 87.5, 12.5, 32.0 -1.3437499999999991,1.34,a-pcom-i3,2020-21,Worcester - Midland Street,03480185, 0.0, 4.3, 0.0, 95.7, 0.0, 0.0, 0.0, 100.0, 0.0, 23.0 -3.218749999999999,3.22,a-pcom-i3,2020-21,Worcester - Nelson Place,03480200, 3.4, 0.0, 6.9, 89.7, 0.0, 0.0, 0.0, 92.7, 7.3, 116.7 -6.124999999999998,5,a-pcom-i3,2020-21,Worcester - Norrback Avenue,03480202, 7.4, 2.8, 8.4, 80.4, 0.0, 0.9, 0.0, 95.3, 4.7, 107.4 -8.468749999999998,5,a-pcom-i3,2020-21,Worcester - North High,03480515, 10.1, 3.3, 13.7, 72.9, 0.0, 0.0, 0.0, 66.1, 33.9, 151.3 -6.781250000000001,5,a-pcom-i3,2020-21,Worcester - Quinsigamond,03480210, 2.2, 6.5, 13.0, 78.3, 0.0, 0.0, 0.0, 87.0, 13.0, 92.0 -5.625,5,a-pcom-i3,2020-21,Worcester - Rice Square,03480215, 2.0, 4.0, 12.0, 82.0, 0.0, 0.0, 0.0, 94.0, 6.0, 50.0 -4.375,4.38,a-pcom-i3,2020-21,Worcester - Roosevelt,03480220, 3.0, 0.0, 11.0, 86.0, 0.0, 0.0, 0.0, 94.0, 6.0, 100.0 -4.874999999999998,4.87,a-pcom-i3,2020-21,Worcester - South High Community,03480520, 4.7, 0.6, 9.7, 84.4, 0.0, 0.6, 0.0, 71.1, 28.9, 169.5 -6.437499999999998,5,a-pcom-i3,2020-21,Worcester - Sullivan Middle,03480423, 5.7, 0.0, 15.0, 79.4, 0.0, 0.0, 0.0, 74.2, 25.8, 123.0 -1,1,a-pcom-i3,2020-21,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 43.6 -1.9375000000000009,1.94,a-pcom-i3,2020-21,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 3.1, 93.8, 0.0, 3.1, 0.0, 96.9, 3.1, 32.0 -4.874999999999998,4.87,a-pcom-i3,2020-21,Worcester - Union Hill School,03480240, 2.2, 0.0, 13.3, 84.4, 0.0, 0.0, 0.0, 82.2, 17.8, 45.0 -4.968750000000002,4.97,a-pcom-i3,2020-21,Worcester - University Pk Campus School,03480285, 5.0, 3.6, 7.2, 84.1, 0.0, 0.0, 0.0, 66.4, 33.6, 27.8 -4.249999999999998,4.25,a-pcom-i3,2020-21,Worcester - Vernon Hill School,03480280, 8.5, 3.4, 1.7, 86.4, 0.0, 0.0, 0.0, 89.8, 10.2, 59.0 -3.343750000000001,3.34,a-pcom-i3,2020-21,Worcester - Wawecus Road School,03480026, 3.6, 0.0, 7.1, 89.3, 0.0, 0.0, 0.0, 92.9, 7.1, 28.0 -3.218749999999999,3.22,a-pcom-i3,2020-21,Worcester - West Tatnuck,03480260, 6.2, 0.0, 4.1, 89.7, 0.0, 0.0, 0.0, 91.7, 8.3, 48.4 -6.687500000000002,5,a-pcom-i3,2020-21,Worcester - Woodland Academy,03480030, 1.8, 3.6, 16.1, 78.6, 0.0, 0.0, 0.0, 94.6, 5.4, 56.0 -2.406250000000001,2.41,a-pcom-i3,2020-21,Worcester - Worcester Arts Magnet School,03480225, 5.1, 0.0, 2.6, 92.3, 0.0, 0.0, 0.0, 92.3, 7.7, 39.0 -8.062499999999998,5,a-pcom-i3,2020-21,Worcester - Worcester East Middle,03480420, 8.6, 1.1, 16.1, 74.2, 0.0, 0.0, 0.0, 62.6, 37.4, 93.0 -2.6250000000000018,2.63,a-pcom-i3,2020-21,Worcester - Worcester Technical High,03480605, 3.1, 0.5, 4.7, 91.6, 0.0, 0.0, 0.0, 49.4, 50.6, 191.0 -1,1,a-pcom-i3,2020-21,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.0, 13.0, 15.4 -1,1,a-pcom-i3,2020-21,Wrentham - Charles E Roderick,03500010, 0.0, 0.3, 0.0, 99.7, 0.0, 0.0, 0.0, 91.0, 9.0, 58.5 -1,1,a-pcom-i3,2020-21,Wrentham - Delaney,03500003, 0.0, 2.0, 0.7, 97.3, 0.0, 0.0, 0.0, 94.8, 5.2, 87.8 -2.718750000000001,2.72,a-pcom-i3,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 3.1, 1.2, 3.1, 91.3, 0.0, 0.0, 1.3, 79.3, 20.7, 159.8 -1,1,a-pcom-i3,2019-20,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 19.1 -1.8437500000000018,1.84,a-pcom-i3,2019-20,Abington - Abington High,00010505, 0.0, 1.5, 4.5, 94.1, 0.0, 0.0, 0.0, 75.3, 24.7, 67.4 -2.093750000000001,2.09,a-pcom-i3,2019-20,Abington - Abington Middle School,00010405, 1.4, 0.0, 4.0, 93.3, 0.0, 0.0, 1.4, 74.9, 25.1, 73.0 -1,1,a-pcom-i3,2019-20,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 58.7 -1,1,a-pcom-i3,2019-20,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.0, 13.0, 38.3 -16.46875,5,a-pcom-i3,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 29.7, 5.6, 10.7, 47.3, 0.0, 0.0, 6.7, 69.8, 30.2, 74.7 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.0, 2.3, 0.5, 96.6, 0.5, 0.0, 0.0, 75.0, 25.0, 196.2 -1.40625,1.41,a-pcom-i3,2019-20,Acton-Boxborough - Blanchard Memorial School,06000005, 1.2, 3.2, 0.0, 95.5, 0.0, 0.0, 0.0, 91.0, 9.0, 80.7 -1.4374999999999982,1.44,a-pcom-i3,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 2.7, 1.9, 95.4, 0.0, 0.0, 0.0, 92.4, 7.6, 52.9 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 7.6, 0.0, 92.4, 0.0, 0.0, 0.0, 96.8, 3.2, 31.3 -3.4375,3.44,a-pcom-i3,2019-20,Acton-Boxborough - Luther Conant School,06000030, 0.0, 7.4, 2.8, 89.0, 0.0, 0.0, 0.8, 97.2, 2.8, 71.2 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 3.2, 1.7, 95.1, 0.0, 0.0, 0.0, 94.4, 5.6, 70.9 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Acton-Boxborough - Merriam School,06000010, 0.0, 3.5, 1.3, 95.1, 0.0, 0.0, 0.0, 96.1, 3.9, 75.1 -2.8437499999999982,2.84,a-pcom-i3,2019-20,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 9.1, 0.0, 90.9, 0.0, 0.0, 0.0, 91.8, 8.2, 54.4 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.9, 2.6, 0.0, 95.7, 0.0, 0.0, 0.9, 81.2, 18.8, 116.8 -1,1,a-pcom-i3,2019-20,Acushnet - Acushnet Elementary School,00030025, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 92.2, 7.8, 64.3 -1,1,a-pcom-i3,2019-20,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.5, 24.5, 49.0 -2.3125000000000018,2.31,a-pcom-i3,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 4.8, 1.7, 92.6, 0.0, 0.0, 0.9, 59.9, 40.1, 116.9 -1,1,a-pcom-i3,2019-20,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 99.7, 0.3, 44.8 -1,1,a-pcom-i3,2019-20,Agawam - Agawam High,00050505, 1.4, 0.0, 0.6, 98.0, 0.0, 0.0, 0.0, 68.3, 31.7, 158.0 -1,1,a-pcom-i3,2019-20,Agawam - Agawam Junior High,00050405, 1.3, 0.0, 1.1, 97.6, 0.0, 0.0, 0.0, 70.4, 29.6, 89.9 -1,1,a-pcom-i3,2019-20,Agawam - Benjamin J Phelps,00050020, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 91.7, 8.3, 57.8 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Agawam - Clifford M Granger,00050010, 0.3, 0.0, 3.7, 96.1, 0.0, 0.0, 0.0, 97.9, 2.1, 54.5 -1,1,a-pcom-i3,2019-20,Agawam - James Clark School,00050030, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 95.2, 4.8, 64.8 -1,1,a-pcom-i3,2019-20,Agawam - Roberta G. Doering School,00050303, 0.2, 0.0, 1.2, 98.6, 0.0, 0.0, 0.0, 83.6, 16.4, 80.4 -1,1,a-pcom-i3,2019-20,Agawam - Robinson Park,00050025, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 95.9, 4.1, 65.7 -6.875,5,a-pcom-i3,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 9.4, 1.0, 11.5, 78.0, 0.0, 0.0, 0.0, 81.2, 18.8, 95.5 -1,1,a-pcom-i3,2019-20,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 54.6 -1,1,a-pcom-i3,2019-20,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.4, 97.2, 0.0, 0.0, 1.4, 73.2, 26.8, 71.6 -1,1,a-pcom-i3,2019-20,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 41.2, 58.8, 9.4 -1,1,a-pcom-i3,2019-20,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 75.0, 25.0, 83.7 -1,1,a-pcom-i3,2019-20,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 62.8 -6.468750000000001,5,a-pcom-i3,2019-20,Amherst - Crocker Farm Elementary,00080009, 0.9, 4.1, 12.4, 79.3, 0.0, 0.0, 3.4, 90.7, 9.3, 89.2 -7.531249999999998,5,a-pcom-i3,2019-20,Amherst - Fort River Elementary,00080020, 3.5, 2.3, 15.9, 75.9, 0.0, 0.0, 2.3, 80.9, 19.1, 85.2 -9.343750000000002,5,a-pcom-i3,2019-20,Amherst - Wildwood Elementary,00080050, 11.3, 5.0, 9.8, 70.1, 0.0, 0.0, 3.8, 83.6, 16.4, 79.4 -8.75,5,a-pcom-i3,2019-20,Amherst-Pelham - Amherst Regional High,06050505, 14.2, 2.4, 9.8, 72.0, 0.0, 0.0, 1.6, 62.9, 37.1, 161.9 -10.812499999999998,5,a-pcom-i3,2019-20,Amherst-Pelham - Amherst Regional Middle School,06050405, 12.9, 1.4, 18.8, 65.4, 0.0, 0.0, 1.5, 64.5, 35.5, 88.0 -2.593749999999999,2.59,a-pcom-i3,2019-20,Andover - Andover High,00090505, 0.5, 2.4, 5.0, 91.7, 0.0, 0.0, 0.5, 71.6, 28.4, 212.4 -1,1,a-pcom-i3,2019-20,Andover - Andover West Middle,00090310, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 80.5, 19.5, 81.2 -2.093750000000001,2.09,a-pcom-i3,2019-20,Andover - Bancroft Elementary,00090003, 0.0, 5.6, 1.1, 93.3, 0.0, 0.0, 0.0, 94.0, 6.0, 89.1 -1.5625,1.56,a-pcom-i3,2019-20,Andover - Doherty Middle,00090305, 0.0, 2.5, 1.3, 95.0, 0.0, 0.0, 1.3, 84.9, 15.1, 79.3 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Andover - Henry C Sanborn Elementary,00090010, 0.0, 1.8, 2.1, 96.1, 0.0, 0.0, 0.0, 91.1, 8.9, 56.3 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Andover - High Plain Elementary,00090004, 0.0, 3.7, 1.7, 94.6, 0.0, 0.0, 0.0, 95.1, 4.9, 81.5 -5.187499999999998,5,a-pcom-i3,2019-20,Andover - Shawsheen School,00090005, 0.0, 11.7, 4.9, 83.4, 0.0, 0.0, 0.0, 95.6, 4.4, 37.1 -1,1,a-pcom-i3,2019-20,Andover - South Elementary,00090020, 0.0, 1.3, 0.6, 98.1, 0.0, 0.0, 0.0, 94.1, 5.9, 70.0 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Andover - West Elementary,00090025, 1.0, 1.3, 1.9, 94.8, 1.0, 0.0, 0.0, 90.7, 9.3, 104.8 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Andover - Wood Hill Middle School,00090350, 0.0, 1.4, 2.0, 96.6, 0.0, 0.0, 0.0, 78.8, 21.2, 71.2 -6.437499999999998,5,a-pcom-i3,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 5.7, 3.0, 9.0, 79.4, 0.0, 0.0, 3.0, 72.7, 27.3, 67.0 -2.406250000000001,2.41,a-pcom-i3,2019-20,Arlington - Arlington High,00100505, 1.3, 1.9, 3.9, 92.3, 0.0, 0.0, 0.6, 57.1, 42.9, 155.4 -4.281250000000001,4.28,a-pcom-i3,2019-20,Arlington - Brackett,00100010, 0.0, 4.6, 3.1, 86.3, 1.5, 1.5, 3.1, 93.8, 6.2, 65.5 -2.124999999999999,2.12,a-pcom-i3,2019-20,Arlington - Cyrus E Dallin,00100025, 0.0, 5.1, 0.0, 93.2, 0.0, 0.0, 1.7, 91.8, 6.5, 58.9 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Arlington - Gibbs School,00100305, 1.6, 0.9, 1.6, 94.3, 0.0, 0.0, 1.6, 79.2, 20.8, 61.6 -2.6250000000000018,2.63,a-pcom-i3,2019-20,Arlington - Hardy,00100030, 0.0, 2.1, 6.3, 91.6, 0.0, 0.0, 0.0, 93.7, 6.3, 47.9 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Arlington - John A Bishop,00100005, 2.0, 0.0, 0.0, 96.1, 0.0, 0.0, 2.0, 93.8, 6.2, 50.7 -1,1,a-pcom-i3,2019-20,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.5, 97.0, 0.0, 0.0, 1.5, 92.0, 8.0, 67.7 -2.093750000000001,2.09,a-pcom-i3,2019-20,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 0.0, 93.3, 0.0, 0.0, 6.7, 100.0, 0.0, 29.8 -2.562500000000001,2.56,a-pcom-i3,2019-20,Arlington - Ottoson Middle,00100410, 2.8, 4.4, 0.9, 91.8, 0.0, 0.0, 0.0, 73.1, 26.9, 105.6 -4.906250000000001,4.91,a-pcom-i3,2019-20,Arlington - Peirce,00100045, 2.5, 8.4, 2.5, 84.3, 0.0, 0.0, 2.5, 96.3, 3.7, 40.7 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Arlington - Thompson,00100050, 3.1, 1.6, 0.0, 95.3, 0.0, 0.0, 0.0, 87.6, 12.4, 64.1 -1.25,1.25,a-pcom-i3,2019-20,Ashburnham-Westminster - Briggs Elementary,06100025, 1.3, 0.0, 0.2, 96.0, 0.0, 0.0, 2.5, 88.0, 12.0, 80.0 -1,1,a-pcom-i3,2019-20,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 97.3, 2.7, 24.7 -1.5625,1.56,a-pcom-i3,2019-20,Ashburnham-Westminster - Oakmont Regional High School,06100505, 3.6, 0.0, 1.4, 95.0, 0.0, 0.0, 0.0, 58.9, 41.1, 83.4 -1,1,a-pcom-i3,2019-20,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 71.7, 28.3, 60.8 -1,1,a-pcom-i3,2019-20,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 89.1, 10.9, 45.8 -1,1,a-pcom-i3,2019-20,Ashland - Ashland High,00140505, 1.2, 0.0, 0.0, 97.6, 0.0, 0.0, 1.2, 61.4, 38.6, 82.9 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Ashland - Ashland Middle,00140405, 0.0, 2.6, 1.3, 96.1, 0.0, 0.0, 0.0, 67.8, 32.2, 76.3 -1,1,a-pcom-i3,2019-20,Ashland - David Mindess,00140015, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 87.2, 12.8, 79.6 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Ashland - Henry E Warren Elementary,00140010, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 97.1, 2.9, 94.5 -2.1875,2.19,a-pcom-i3,2019-20,Ashland - William Pittaway Elementary,00140005, 0.0, 3.5, 3.5, 93.0, 0.0, 0.0, 0.0, 98.9, 1.1, 28.4 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.6, 0.0, 4.5, 94.8, 0.0, 0.0, 0.0, 49.9, 50.1, 154.5 -1,1,a-pcom-i3,2019-20,Athol-Royalston - Athol Community Elementary School,06150020, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 93.9, 6.1, 73.7 -1,1,a-pcom-i3,2019-20,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.8, 31.2, 50.9 -1,1,a-pcom-i3,2019-20,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 70.2, 29.8, 46.9 -1,1,a-pcom-i3,2019-20,Athol-Royalston - Royalston Community School,06150050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 16.3 -1.4374999999999982,1.44,a-pcom-i3,2019-20,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.7, 1.2, 0.0, 95.4, 0.6, 0.0, 1.2, 83.8, 16.2, 172.6 -1,1,a-pcom-i3,2019-20,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 98.0, 2.0, 51.2 -11.3125,5,a-pcom-i3,2019-20,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 36.2, 63.8, 0.0, 0.0, 0.0, 94.1, 5.9, 3.4 -2.124999999999999,2.12,a-pcom-i3,2019-20,Attleboro - Attleboro High,00160505, 2.1, 0.0, 4.2, 93.2, 0.0, 0.0, 0.5, 72.1, 27.9, 189.5 -1,1,a-pcom-i3,2019-20,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 1.6, 97.6, 0.0, 0.0, 0.8, 84.5, 15.5, 63.4 -1.09375,1.09,a-pcom-i3,2019-20,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 96.5, 0.0, 0.0, 3.5, 100.0, 0.0, 28.8 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 2.4, 2.4, 95.2, 0.0, 0.0, 0.0, 95.2, 4.8, 41.9 -2.1562500000000018,2.16,a-pcom-i3,2019-20,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 6.9, 93.1, 0.0, 0.0, 0.0, 89.9, 10.1, 43.4 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Attleboro - Peter Thacher Elementary School,00160050, 1.4, 1.4, 0.0, 95.9, 0.0, 0.0, 1.4, 92.0, 8.0, 74.0 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Attleboro - Robert J. Coelho Middle School,00160305, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 77.3, 22.7, 50.6 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.2, 2.2, 95.7, 0.0, 0.0, 0.0, 93.5, 4.3, 46.3 -1.5937499999999982,1.59,a-pcom-i3,2019-20,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 3.0, 94.9, 2.0, 0.0, 0.0, 77.7, 22.3, 49.3 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Auburn - Auburn Middle,00170305, 0.0, 1.9, 1.4, 96.6, 0.0, 0.0, 0.0, 78.3, 21.7, 69.0 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Auburn - Auburn Senior High,00170505, 2.0, 0.4, 1.9, 94.8, 0.0, 0.0, 0.9, 70.7, 29.3, 105.5 -1,1,a-pcom-i3,2019-20,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 45.1 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Auburn - Pakachoag School,00170025, 2.6, 1.7, 0.0, 95.8, 0.0, 0.0, 0.0, 100.0, 0.0, 39.2 -1,1,a-pcom-i3,2019-20,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 96.0, 4.0, 75.3 -4.562499999999998,4.56,a-pcom-i3,2019-20,Avon - Avon Middle High School,00180510, 6.2, 4.2, 4.2, 85.4, 0.0, 0.0, 0.0, 68.8, 31.2, 48.1 -1,1,a-pcom-i3,2019-20,Avon - Ralph D Butler,00180010, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 98.0, 2.0, 51.0 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.9, 0.0, 3.8, 94.2, 0.0, 0.0, 0.0, 57.5, 42.5, 52.0 -4.093749999999998,4.09,a-pcom-i3,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.9, 0.0, 7.5, 86.9, 0.0, 0.0, 3.7, 75.7, 24.3, 53.6 -1,1,a-pcom-i3,2019-20,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 94.6, 5.4, 51.8 -1,1,a-pcom-i3,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 94.1, 5.9, 68.3 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Barnstable - Barnstable Community Innovation School,00200012, 0.0, 0.0, 0.0, 96.3, 1.3, 0.0, 2.5, 97.5, 2.5, 40.0 -2.1875,2.19,a-pcom-i3,2019-20,Barnstable - Barnstable High,00200505, 2.1, 1.7, 2.9, 93.0, 0.0, 0.0, 0.4, 66.9, 33.1, 241.2 -1,1,a-pcom-i3,2019-20,Barnstable - Barnstable Intermediate School,00200315, 1.0, 0.0, 1.0, 98.0, 0.0, 0.0, 0.0, 81.7, 18.3, 98.2 -1,1,a-pcom-i3,2019-20,Barnstable - Barnstable United Elementary School,00200050, 0.9, 0.0, 0.9, 97.4, 0.0, 0.0, 0.9, 92.1, 7.9, 113.7 -1,1,a-pcom-i3,2019-20,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 92.0, 8.0, 40.5 -1,1,a-pcom-i3,2019-20,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 100.0, 0.0, 37.9 -1.5937499999999982,1.59,a-pcom-i3,2019-20,Barnstable - Hyannis West Elementary,00200025, 0.0, 3.4, 1.7, 94.9, 0.0, 0.0, 0.0, 96.2, 3.8, 59.3 -1,1,a-pcom-i3,2019-20,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 34.9 -1,1,a-pcom-i3,2019-20,Barnstable - West Villages Elementary School,00200045, 1.5, 0.0, 0.0, 97.5, 0.9, 0.0, 0.0, 96.5, 3.5, 65.0 -10.656249999999998,5,a-pcom-i3,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 22.3, 0.0, 8.7, 65.9, 1.5, 1.5, 0.0, 55.6, 44.4, 64.6 -2.250000000000001,2.25,a-pcom-i3,2019-20,Bedford - Bedford High,00230505, 4.1, 0.8, 2.3, 92.8, 0.0, 0.0, 0.0, 67.4, 32.6, 122.6 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Bedford - John Glenn Middle,00230305, 1.1, 1.1, 2.5, 95.2, 0.0, 0.0, 0.0, 74.1, 25.9, 87.9 -4.281250000000001,4.28,a-pcom-i3,2019-20,Bedford - Lt Elezer Davis,00230010, 4.1, 5.0, 3.5, 86.3, 0.0, 0.0, 1.0, 93.3, 6.7, 97.2 -2.093750000000001,2.09,a-pcom-i3,2019-20,Bedford - Lt Job Lane School,00230012, 0.0, 4.5, 1.1, 93.3, 0.0, 0.0, 1.1, 89.3, 10.7, 88.9 -1,1,a-pcom-i3,2019-20,Belchertown - Belchertown High,00240505, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 71.9, 28.1, 81.5 -1,1,a-pcom-i3,2019-20,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.8, 17.2, 60.6 -1,1,a-pcom-i3,2019-20,Belchertown - Cold Spring,00240005, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 96.5, 3.5, 40.0 -1,1,a-pcom-i3,2019-20,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 80.6, 19.4, 51.0 -1,1,a-pcom-i3,2019-20,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 60.0 -1,1,a-pcom-i3,2019-20,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.0 -1,1,a-pcom-i3,2019-20,Bellingham - Bellingham High School,00250505, 1.0, 2.0, 0.0, 97.0, 0.0, 0.0, 0.0, 67.7, 32.3, 100.2 -1,1,a-pcom-i3,2019-20,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.6, 20.4, 83.5 -1,1,a-pcom-i3,2019-20,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 48.0 -1,1,a-pcom-i3,2019-20,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.3, 39.7, 14.9 -1,1,a-pcom-i3,2019-20,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 54.8 -2.5,2.5,a-pcom-i3,2019-20,Belmont - Belmont High,00260505, 0.9, 4.5, 1.7, 92.0, 0.0, 0.0, 0.9, 72.1, 27.9, 115.2 -3.187500000000001,3.19,a-pcom-i3,2019-20,Belmont - Daniel Butler,00260015, 2.0, 2.3, 0.0, 89.8, 0.0, 0.0, 5.9, 84.6, 15.4, 44.2 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Belmont - Mary Lee Burbank,00260010, 1.9, 0.0, 2.1, 93.9, 0.0, 0.0, 2.1, 89.5, 10.5, 47.6 -1.875,1.88,a-pcom-i3,2019-20,Belmont - Roger E Wellington,00260035, 2.5, 3.5, 0.0, 94.0, 0.0, 0.0, 0.0, 91.0, 9.0, 80.0 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Belmont - Winn Brook,00260005, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 94.5, 5.5, 52.8 -5.687500000000001,5,a-pcom-i3,2019-20,Belmont - Winthrop L Chenery Middle,00260305, 3.0, 6.7, 2.5, 81.8, 0.0, 0.0, 6.0, 72.4, 27.6, 134.3 -17.124999999999996,5,a-pcom-i3,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 44.8, 4.0, 6.0, 45.2, 0.0, 0.0, 0.0, 86.5, 13.5, 50.4 -1,1,a-pcom-i3,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 1.0, 1.0, 0.0, 98.0, 0.0, 0.0, 0.0, 88.8, 11.2, 98.0 -2.250000000000001,2.25,a-pcom-i3,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 2.5, 2.4, 2.2, 92.8, 0.0, 0.0, 0.0, 86.9, 13.1, 45.5 -1,1,a-pcom-i3,2019-20,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 64.7 -1,1,a-pcom-i3,2019-20,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.3, 20.7, 43.5 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 1.9, 0.0, 1.9, 94.3, 0.0, 0.0, 1.9, 72.0, 28.0, 53.0 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Berkshire Hills - Monument Mt Regional High,06180505, 1.4, 0.0, 1.4, 95.9, 0.0, 0.0, 1.4, 67.0, 33.0, 72.8 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.6, 1.6, 1.6, 95.1, 0.0, 0.0, 0.0, 70.8, 29.2, 60.8 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.4, 1.4, 1.4, 95.8, 0.0, 0.0, 0.0, 87.2, 12.8, 71.1 -1,1,a-pcom-i3,2019-20,Berlin-Boylston - Berlin Memorial School,06200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 31.7 -1,1,a-pcom-i3,2019-20,Berlin-Boylston - Boylston Elementary School,06200010, 0.0, 0.0, 0.0, 97.5, 0.0, 0.0, 2.5, 93.7, 6.3, 39.5 -1,1,a-pcom-i3,2019-20,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 74.7, 25.3, 71.6 -1,1,a-pcom-i3,2019-20,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 48.2 -1,1,a-pcom-i3,2019-20,Beverly - Beverly High,00300505, 1.3, 0.0, 0.5, 98.1, 0.0, 0.0, 0.0, 71.0, 29.0, 148.9 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Beverly - Beverly Middle School,00300305, 0.6, 0.6, 3.9, 94.8, 0.0, 0.0, 0.0, 76.5, 23.5, 153.9 -1,1,a-pcom-i3,2019-20,Beverly - Centerville Elementary,00300010, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 88.9, 11.1, 45.0 -1,1,a-pcom-i3,2019-20,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 68.3 -1,1,a-pcom-i3,2019-20,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 43.9 -1,1,a-pcom-i3,2019-20,Beverly - McKeown School,00300002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 36.3 -1,1,a-pcom-i3,2019-20,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 47.4 -1,1,a-pcom-i3,2019-20,Billerica - Billerica Memorial High School,00310505, 0.4, 0.5, 0.4, 98.6, 0.0, 0.0, 0.0, 76.8, 23.2, 228.7 -1,1,a-pcom-i3,2019-20,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 98.5, 1.5, 37.5 -1,1,a-pcom-i3,2019-20,Billerica - Hajjar Elementary,00310026, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 53.3 -1,1,a-pcom-i3,2019-20,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 51.3 -1,1,a-pcom-i3,2019-20,Billerica - Locke Middle,00310310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.6, 17.4, 70.5 -1,1,a-pcom-i3,2019-20,Billerica - Marshall Middle School,00310305, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 79.3, 20.7, 87.8 -1,1,a-pcom-i3,2019-20,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 95.0, 5.0, 77.0 -1,1,a-pcom-i3,2019-20,Billerica - Thomas Ditson,00310005, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 95.1, 4.9, 75.8 -1,1,a-pcom-i3,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.1, 99.9, 0.0, 0.0, 0.0, 58.0, 42.0, 163.5 -1,1,a-pcom-i3,2019-20,Blackstone-Millville - A F Maloney,06220015, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 98.0, 2.0, 32.2 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Blackstone-Millville - Blackstone Millville RHS,06220505, 1.7, 0.0, 3.5, 94.8, 0.0, 0.0, 0.0, 62.3, 37.7, 57.3 -1.40625,1.41,a-pcom-i3,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 84.7, 15.3, 44.4 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 1.6, 3.2, 95.1, 0.0, 0.0, 0.0, 91.2, 8.8, 30.8 -1,1,a-pcom-i3,2019-20,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 40.4 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 2.5, 2.5, 1.7, 92.4, 0.0, 0.0, 0.8, 53.0, 47.0, 118.0 -13.90625,5,a-pcom-i3,2019-20,Boston - Another Course To College,00350541, 33.4, 3.8, 3.6, 55.5, 0.0, 0.0, 3.7, 70.4, 29.6, 26.9 -18.46875,5,a-pcom-i3,2019-20,Boston - Baldwin Early Learning Center,00350003, 20.4, 15.9, 22.8, 40.9, 0.0, 0.0, 0.0, 95.5, 4.5, 44.2 -8.406250000000002,5,a-pcom-i3,2019-20,Boston - Beethoven,00350021, 16.5, 2.6, 7.8, 73.1, 0.0, 0.0, 0.0, 91.6, 8.4, 38.3 -16.3125,5,a-pcom-i3,2019-20,Boston - Blackstone,00350390, 24.5, 2.1, 23.4, 47.8, 1.1, 0.0, 1.1, 82.9, 17.1, 94.2 -22.593749999999996,5,a-pcom-i3,2019-20,Boston - Boston Adult Academy,00350548, 48.7, 10.5, 9.7, 27.7, 0.0, 3.5, 0.0, 51.8, 48.2, 28.8 -16.343749999999996,5,a-pcom-i3,2019-20,Boston - Boston Arts Academy,00350546, 25.8, 7.7, 18.7, 47.7, 0.0, 0.0, 0.0, 67.6, 32.4, 63.9 -15.53125,5,a-pcom-i3,2019-20,Boston - Boston Collaborative High School,00350755, 22.5, 5.7, 21.5, 50.3, 0.0, 0.0, 0.0, 60.7, 39.3, 17.9 -16.3125,5,a-pcom-i3,2019-20,Boston - Boston Community Leadership Academy,00350558, 29.9, 9.0, 13.3, 47.8, 0.0, 0.0, 0.0, 67.3, 32.7, 66.7 -14.875,5,a-pcom-i3,2019-20,Boston - Boston International High School,00350507, 20.7, 6.3, 20.6, 52.4, 0.0, 0.0, 0.0, 60.2, 39.8, 62.9 -10.812499999999998,5,a-pcom-i3,2019-20,Boston - Boston Latin,00350560, 18.9, 8.2, 6.3, 65.4, 0.0, 0.6, 0.6, 59.1, 40.9, 158.7 -13.374999999999998,5,a-pcom-i3,2019-20,Boston - Boston Latin Academy,00350545, 19.5, 13.8, 8.7, 57.2, 0.0, 0.0, 0.8, 62.8, 37.2, 124.4 -14.21875,5,a-pcom-i3,2019-20,Boston - Boston Teachers Union School,00350012, 25.7, 5.7, 14.1, 54.5, 0.0, 0.0, 0.0, 82.9, 17.1, 34.9 -14.84375,5,a-pcom-i3,2019-20,Boston - Brighton High,00350505, 30.8, 2.6, 14.1, 52.5, 0.0, 0.0, 0.0, 66.6, 33.4, 78.1 -11.374999999999998,5,a-pcom-i3,2019-20,Boston - Carter School,00350036, 31.8, 4.5, 0.0, 63.6, 0.0, 0.0, 0.0, 81.8, 18.2, 22.0 -22.749999999999996,5,a-pcom-i3,2019-20,Boston - Charles H Taylor,00350054, 63.2, 6.4, 3.3, 27.2, 0.0, 0.0, 0.0, 85.5, 14.5, 61.5 -15.437499999999998,5,a-pcom-i3,2019-20,Boston - Charles Sumner,00350052, 24.6, 1.4, 23.4, 50.6, 0.0, 0.0, 0.0, 90.2, 9.8, 73.1 -13.562499999999998,5,a-pcom-i3,2019-20,Boston - Charlestown High,00350515, 27.6, 9.0, 6.2, 56.6, 0.7, 0.0, 0.0, 62.2, 37.8, 144.9 -13.96875,5,a-pcom-i3,2019-20,Boston - Clarence R Edwards Middle,00350430, 14.3, 10.8, 19.6, 55.3, 0.0, 0.0, 0.0, 64.3, 35.7, 55.9 -21.84375,5,a-pcom-i3,2019-20,Boston - Community Academy,00350518, 33.6, 20.7, 10.4, 30.1, 5.2, 0.0, 0.0, 63.8, 36.2, 19.3 -17.65625,5,a-pcom-i3,2019-20,Boston - Community Academy of Science and Health,00350581, 47.7, 5.3, 3.5, 43.5, 0.0, 0.0, 0.0, 61.2, 38.8, 56.6 -12.71875,5,a-pcom-i3,2019-20,Boston - Condon K-8,00350146, 24.0, 5.0, 11.8, 59.3, 0.0, 0.0, 0.0, 81.9, 18.1, 119.3 -12.65625,5,a-pcom-i3,2019-20,Boston - Curley K-8 School,00350020, 20.3, 1.4, 17.4, 59.5, 1.4, 0.0, 0.0, 87.5, 12.5, 143.6 -8.156249999999998,5,a-pcom-i3,2019-20,Boston - Curtis Guild,00350062, 12.4, 3.0, 10.7, 73.9, 0.0, 0.0, 0.0, 81.9, 18.1, 37.5 -10.562499999999998,5,a-pcom-i3,2019-20,Boston - Dante Alighieri Montessori School,00350066, 9.1, 0.0, 24.7, 66.2, 0.0, 0.0, 0.0, 79.0, 21.0, 16.2 -22.3125,5,a-pcom-i3,2019-20,Boston - David A Ellis,00350072, 49.5, 1.9, 18.3, 28.6, 1.8, 0.0, 0.0, 76.2, 23.8, 54.8 -17.749999999999996,5,a-pcom-i3,2019-20,Boston - Dearborn,00350074, 37.3, 6.0, 12.0, 43.2, 1.5, 0.0, 0.0, 62.7, 37.3, 66.8 -9.125,5,a-pcom-i3,2019-20,Boston - Dennis C Haley,00350077, 15.5, 8.7, 5.0, 70.8, 0.0, 0.0, 0.0, 91.4, 8.6, 57.9 -8.312499999999998,5,a-pcom-i3,2019-20,Boston - Donald Mckay,00350080, 4.6, 4.6, 16.1, 73.4, 0.0, 0.0, 1.2, 81.2, 18.8, 86.4 -18.46875,5,a-pcom-i3,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 40.8, 4.6, 13.8, 40.9, 0.0, 0.0, 0.0, 84.1, 15.9, 44.1 -9.093749999999998,5,a-pcom-i3,2019-20,Boston - Dr. William Henderson Lower,00350266, 19.7, 4.7, 4.7, 70.9, 0.0, 0.0, 0.0, 85.9, 14.1, 64.1 -8.093750000000002,5,a-pcom-i3,2019-20,Boston - Dr. William Henderson Upper,00350426, 15.4, 4.7, 4.7, 74.1, 0.0, 1.2, 0.0, 74.3, 25.7, 84.7 -16.5625,5,a-pcom-i3,2019-20,Boston - ELC - West Zone,00350006, 32.4, 5.9, 11.8, 47.0, 2.9, 0.0, 0.0, 85.3, 14.7, 33.9 -15.093749999999998,5,a-pcom-i3,2019-20,Boston - East Boston Early Childhood Center,00350009, 11.6, 4.3, 30.2, 51.7, 0.0, 2.2, 0.0, 92.6, 7.4, 46.4 -10.093749999999998,5,a-pcom-i3,2019-20,Boston - East Boston High,00350530, 11.0, 2.4, 18.9, 67.7, 0.0, 0.0, 0.0, 59.0, 41.0, 126.9 -13.406249999999998,5,a-pcom-i3,2019-20,Boston - Edison K-8,00350375, 22.1, 6.2, 14.5, 57.1, 0.0, 0.0, 0.0, 77.0, 23.0, 96.2 -9.781249999999998,5,a-pcom-i3,2019-20,Boston - Edward Everett,00350088, 19.4, 8.9, 3.0, 68.7, 0.0, 0.0, 0.0, 86.5, 13.5, 33.5 -8.34375,5,a-pcom-i3,2019-20,Boston - Eliot Elementary,00350096, 15.5, 4.2, 5.6, 73.3, 0.0, 0.0, 1.4, 89.8, 10.2, 71.2 -15.9375,5,a-pcom-i3,2019-20,Boston - Ellis Mendell,00350100, 18.0, 7.8, 25.2, 49.0, 0.0, 0.0, 0.0, 95.6, 4.4, 38.7 -16.25,5,a-pcom-i3,2019-20,Boston - Excel High School,00350522, 35.1, 9.1, 6.5, 48.0, 1.3, 0.0, 0.0, 63.7, 36.3, 77.2 -17.749999999999996,5,a-pcom-i3,2019-20,Boston - Fenway High School,00350540, 33.3, 5.9, 15.7, 43.2, 0.0, 2.0, 0.0, 54.8, 45.2, 51.0 -11.3125,5,a-pcom-i3,2019-20,Boston - Franklin D Roosevelt,00350116, 22.8, 3.8, 9.6, 63.8, 0.0, 0.0, 0.0, 92.4, 7.6, 52.5 -14.499999999999998,5,a-pcom-i3,2019-20,Boston - Gardner Pilot Academy,00350326, 26.8, 1.9, 17.6, 53.6, 0.0, 0.0, 0.0, 86.1, 13.9, 51.0 -10.0,5,a-pcom-i3,2019-20,Boston - George H Conley,00350122, 26.2, 2.6, 3.1, 68.0, 0.0, 0.0, 0.0, 86.8, 13.2, 38.1 -22.531249999999996,5,a-pcom-i3,2019-20,Boston - Greater Egleston Community High School,00350543, 38.8, 5.4, 27.9, 27.9, 0.0, 0.0, 0.0, 72.1, 27.9, 17.9 -8.34375,5,a-pcom-i3,2019-20,Boston - Harvard-Kent,00350200, 8.0, 12.4, 6.3, 73.3, 0.0, 0.0, 0.0, 78.1, 21.9, 64.1 -25.812499999999996,5,a-pcom-i3,2019-20,Boston - Haynes Early Education Center,00350010, 65.2, 4.4, 13.0, 17.4, 0.0, 0.0, 0.0, 82.7, 17.3, 45.9 -15.593749999999998,5,a-pcom-i3,2019-20,Boston - Henry Grew,00350135, 46.1, 0.0, 3.8, 50.1, 0.0, 0.0, 0.0, 84.5, 15.5, 26.0 -19.09375,5,a-pcom-i3,2019-20,Boston - Higginson,00350015, 28.1, 9.0, 24.0, 38.9, 0.0, 0.0, 0.0, 88.0, 12.0, 33.3 -21.656249999999996,5,a-pcom-i3,2019-20,Boston - Higginson/Lewis K-8,00350377, 59.1, 2.0, 8.1, 30.7, 0.0, 0.0, 0.0, 81.7, 18.3, 48.9 -8.843749999999998,5,a-pcom-i3,2019-20,Boston - Horace Mann School for the Deaf,00350750, 11.8, 5.9, 10.6, 71.7, 0.0, 0.0, 0.0, 83.5, 16.5, 84.6 -9.656250000000002,5,a-pcom-i3,2019-20,Boston - Hugh Roe O'Donnell,00350141, 1.7, 3.7, 25.5, 69.1, 0.0, 0.0, 0.0, 80.0, 20.0, 27.5 -13.28125,5,a-pcom-i3,2019-20,Boston - Jackson Mann,00350013, 26.2, 5.4, 10.8, 57.5, 0.0, 0.0, 0.0, 81.6, 18.4, 91.6 -19.312499999999996,5,a-pcom-i3,2019-20,Boston - James J Chittick,00350154, 42.7, 5.8, 9.5, 38.2, 2.0, 0.0, 1.9, 86.6, 13.4, 52.0 -8.312499999999998,5,a-pcom-i3,2019-20,Boston - James Otis,00350156, 8.9, 2.1, 15.6, 73.4, 0.0, 0.0, 0.0, 82.8, 17.2, 45.0 -20.46875,5,a-pcom-i3,2019-20,Boston - James P Timilty Middle,00350485, 37.9, 2.4, 25.2, 34.5, 0.0, 0.0, 0.0, 65.2, 34.8, 39.7 -17.593749999999996,5,a-pcom-i3,2019-20,Boston - James W Hennigan,00350153, 29.5, 1.2, 25.6, 43.7, 0.0, 0.0, 0.0, 81.8, 18.2, 82.1 -16.46875,5,a-pcom-i3,2019-20,Boston - Jeremiah E Burke High,00350525, 44.3, 1.4, 7.0, 47.3, 0.0, 0.0, 0.0, 63.9, 36.1, 71.3 -15.0,5,a-pcom-i3,2019-20,Boston - John D Philbrick,00350172, 31.1, 4.7, 12.2, 52.0, 0.0, 0.0, 0.0, 85.1, 14.9, 21.2 -11.25,5,a-pcom-i3,2019-20,Boston - John F Kennedy,00350166, 23.9, 0.0, 12.1, 64.0, 0.0, 0.0, 0.0, 78.1, 21.9, 41.3 -14.468749999999998,5,a-pcom-i3,2019-20,Boston - John W McCormack,00350179, 29.7, 1.8, 14.8, 53.7, 0.0, 0.0, 0.0, 70.3, 29.7, 54.0 -12.437499999999998,5,a-pcom-i3,2019-20,Boston - John Winthrop,00350180, 28.6, 2.9, 8.4, 60.2, 0.0, 0.0, 0.0, 86.1, 13.9, 35.1 -23.312499999999996,5,a-pcom-i3,2019-20,Boston - Joseph J Hurley,00350182, 11.7, 0.0, 62.9, 25.4, 0.0, 0.0, 0.0, 88.4, 11.6, 42.9 -15.21875,5,a-pcom-i3,2019-20,Boston - Joseph Lee,00350183, 37.6, 3.7, 6.7, 51.3, 0.7, 0.0, 0.0, 79.2, 20.8, 134.2 -9.21875,5,a-pcom-i3,2019-20,Boston - Joseph P Manning,00350184, 25.8, 0.0, 3.7, 70.5, 0.0, 0.0, 0.0, 77.9, 22.1, 27.1 -12.5,5,a-pcom-i3,2019-20,Boston - Joseph P Tynan,00350181, 26.1, 0.0, 12.2, 60.0, 0.0, 0.0, 1.7, 89.7, 10.3, 57.0 -20.093749999999996,5,a-pcom-i3,2019-20,Boston - Josiah Quincy,00350286, 13.9, 46.5, 4.0, 35.7, 0.0, 0.0, 0.0, 84.4, 15.6, 101.0 -5.062500000000001,5,a-pcom-i3,2019-20,Boston - Joyce Kilmer,00350190, 11.6, 0.0, 4.6, 83.8, 0.0, 0.0, 0.0, 84.0, 16.0, 62.7 -21.593749999999996,5,a-pcom-i3,2019-20,Boston - King K-8,00350376, 58.2, 1.2, 9.7, 30.9, 0.0, 0.0, 0.0, 72.8, 27.2, 82.3 -17.375,5,a-pcom-i3,2019-20,Boston - Lee Academy,00350001, 36.3, 4.5, 14.8, 44.4, 0.0, 0.0, 0.0, 78.3, 21.7, 44.1 -21.593749999999996,5,a-pcom-i3,2019-20,Boston - Lilla G. Frederick Middle School,00350383, 38.0, 5.4, 25.7, 30.9, 0.0, 0.0, 0.0, 72.9, 27.1, 73.8 -7.562500000000001,5,a-pcom-i3,2019-20,Boston - Lyndon,00350262, 13.9, 0.0, 8.6, 75.8, 1.7, 0.0, 0.0, 81.1, 18.9, 57.5 -8.687499999999998,5,a-pcom-i3,2019-20,Boston - Lyon K-8,00350004, 13.9, 8.4, 2.8, 72.2, 0.0, 0.0, 2.8, 77.9, 22.1, 35.9 -14.499999999999998,5,a-pcom-i3,2019-20,Boston - Lyon Upper 9-12,00350655, 32.6, 4.6, 9.2, 53.6, 0.0, 0.0, 0.0, 48.8, 51.2, 43.1 -17.375,5,a-pcom-i3,2019-20,Boston - Madison Park High,00350537, 39.2, 1.7, 14.7, 44.4, 0.0, 0.0, 0.0, 51.6, 48.4, 175.5 -2.562500000000001,2.56,a-pcom-i3,2019-20,Boston - Manassah E Bradley,00350215, 2.8, 0.0, 5.5, 91.8, 0.0, 0.0, 0.0, 85.0, 15.0, 36.4 -16.968749999999996,5,a-pcom-i3,2019-20,Boston - Margarita Muniz Academy,00350549, 0.0, 2.9, 51.4, 45.7, 0.0, 0.0, 0.0, 71.5, 28.5, 35.0 -12.624999999999998,5,a-pcom-i3,2019-20,Boston - Mario Umana Academy,00350656, 10.1, 2.8, 26.6, 59.6, 0.9, 0.0, 0.0, 76.1, 23.9, 108.7 -18.78125,5,a-pcom-i3,2019-20,Boston - Mather,00350227, 40.0, 13.7, 4.8, 39.9, 0.0, 0.0, 1.5, 81.5, 18.5, 65.3 -17.6875,5,a-pcom-i3,2019-20,Boston - Mattahunt Elementary School,00350016, 47.2, 1.2, 8.2, 43.4, 0.0, 0.0, 0.0, 84.8, 15.2, 84.8 -15.9375,5,a-pcom-i3,2019-20,Boston - Maurice J Tobin,00350229, 17.0, 4.4, 29.6, 49.0, 0.0, 0.0, 0.0, 87.1, 12.9, 46.9 -15.03125,5,a-pcom-i3,2019-20,Boston - Michael J Perkins,00350231, 40.1, 0.0, 8.0, 51.9, 0.0, 0.0, 0.0, 88.0, 12.0, 24.9 -19.1875,5,a-pcom-i3,2019-20,Boston - Mildred Avenue K-8,00350378, 42.4, 3.8, 15.1, 38.6, 0.0, 0.0, 0.0, 78.5, 21.5, 78.8 -15.593749999999998,5,a-pcom-i3,2019-20,Boston - Mission Hill School,00350382, 38.7, 2.6, 8.6, 50.1, 0.0, 0.0, 0.0, 83.8, 16.2, 38.7 -13.218749999999998,5,a-pcom-i3,2019-20,Boston - Mozart,00350237, 22.8, 0.0, 19.4, 57.7, 0.0, 0.0, 0.0, 84.4, 15.6, 30.6 -17.78125,5,a-pcom-i3,2019-20,Boston - Nathan Hale,00350243, 36.6, 0.0, 20.3, 43.1, 0.0, 0.0, 0.0, 79.6, 20.4, 16.3 -14.375,5,a-pcom-i3,2019-20,Boston - New Mission High School,00350542, 24.1, 10.0, 11.9, 54.0, 0.0, 0.0, 0.0, 53.9, 46.1, 49.9 -17.25,5,a-pcom-i3,2019-20,Boston - O W Holmes,00350138, 45.8, 3.2, 6.3, 44.8, 0.0, 0.0, 0.0, 74.8, 25.2, 63.2 -18.125,5,a-pcom-i3,2019-20,Boston - O'Bryant School Math/Science,00350575, 35.8, 5.2, 16.2, 42.0, 0.0, 0.0, 0.9, 63.3, 36.7, 116.7 -8.531249999999998,5,a-pcom-i3,2019-20,Boston - Oliver Hazard Perry,00350255, 15.2, 0.0, 9.1, 72.7, 0.0, 0.0, 3.0, 90.9, 9.1, 32.9 -13.718749999999998,5,a-pcom-i3,2019-20,Boston - Orchard Gardens,00350257, 26.6, 1.7, 14.0, 56.1, 0.0, 0.0, 1.7, 79.3, 20.7, 121.0 -12.156249999999998,5,a-pcom-i3,2019-20,Boston - Patrick J Kennedy,00350264, 2.8, 2.8, 33.3, 61.1, 0.0, 0.0, 0.0, 94.5, 5.5, 36.0 -15.625,5,a-pcom-i3,2019-20,Boston - Paul A Dever,00350268, 29.4, 1.5, 19.1, 50.0, 0.0, 0.0, 0.0, 77.9, 22.1, 67.9 -16.28125,5,a-pcom-i3,2019-20,Boston - Pauline Agassiz Shaw Elementary School,00350014, 40.0, 0.0, 8.0, 47.9, 4.0, 0.0, 0.0, 87.9, 12.1, 24.9 -8.96875,5,a-pcom-i3,2019-20,Boston - Phineas Bates,00350278, 14.8, 2.3, 11.6, 71.3, 0.0, 0.0, 0.0, 88.4, 11.6, 42.8 -19.65625,5,a-pcom-i3,2019-20,Boston - Quincy Upper School,00350565, 24.2, 22.5, 14.5, 37.1, 1.6, 0.0, 0.0, 61.3, 38.7, 61.9 -22.749999999999996,5,a-pcom-i3,2019-20,Boston - Rafael Hernandez,00350691, 6.2, 0.0, 66.7, 27.2, 0.0, 0.0, 0.0, 83.2, 16.8, 47.7 -12.124999999999998,5,a-pcom-i3,2019-20,Boston - Richard J Murphy,00350240, 23.0, 8.8, 6.9, 61.2, 0.0, 0.0, 0.0, 77.5, 22.5, 113.4 -16.84375,5,a-pcom-i3,2019-20,Boston - Roger Clap,00350298, 32.3, 9.3, 12.3, 46.1, 0.0, 0.0, 0.0, 74.0, 26.0, 21.7 -15.375,5,a-pcom-i3,2019-20,Boston - Samuel Adams,00350302, 13.3, 2.2, 33.7, 50.8, 0.0, 0.0, 0.0, 84.3, 15.7, 44.6 -18.1875,5,a-pcom-i3,2019-20,Boston - Samuel W Mason,00350304, 45.0, 2.1, 8.8, 41.8, 2.2, 0.0, 0.0, 86.0, 14.0, 45.1 -22.625,5,a-pcom-i3,2019-20,Boston - Sarah Greenwood,00350308, 24.2, 0.0, 48.2, 27.6, 0.0, 0.0, 0.0, 77.4, 22.6, 57.8 -13.874999999999998,5,a-pcom-i3,2019-20,Boston - Snowden International School at Copley,00350690, 27.8, 3.7, 13.0, 55.6, 0.0, 0.0, 0.0, 55.6, 44.4, 54.0 -13.65625,5,a-pcom-i3,2019-20,Boston - TechBoston Academy,00350657, 36.3, 1.9, 5.6, 56.3, 0.0, 0.0, 0.0, 58.3, 41.7, 107.9 -15.749999999999998,5,a-pcom-i3,2019-20,Boston - The English High,00350535, 23.6, 5.4, 20.3, 49.6, 0.0, 0.0, 1.1, 62.9, 37.1, 88.7 -11.09375,5,a-pcom-i3,2019-20,Boston - Thomas J Kenny,00350328, 23.0, 6.1, 6.3, 64.5, 0.0, 0.0, 0.0, 81.1, 18.9, 47.8 -14.156249999999998,5,a-pcom-i3,2019-20,Boston - UP Academy Holland,00350167, 26.9, 4.3, 14.1, 54.7, 0.0, 0.0, 0.0, 86.0, 14.0, 92.8 -17.78125,5,a-pcom-i3,2019-20,Boston - Urban Science Academy,00350579, 37.4, 3.9, 15.6, 43.1, 0.0, 0.0, 0.0, 60.6, 39.4, 25.5 -7.156250000000002,5,a-pcom-i3,2019-20,Boston - Warren-Prescott,00350346, 13.1, 0.0, 9.8, 77.1, 0.0, 0.0, 0.0, 85.5, 14.5, 83.1 -14.468749999999998,5,a-pcom-i3,2019-20,Boston - Washington Irving Middle,00350445, 33.0, 5.9, 7.5, 53.7, 0.0, 0.0, 0.0, 69.7, 30.3, 51.6 -22.3125,5,a-pcom-i3,2019-20,Boston - West Roxbury Academy,00350658, 65.7, 0.0, 5.7, 28.6, 0.0, 0.0, 0.0, 71.4, 28.6, 17.5 -12.906249999999998,5,a-pcom-i3,2019-20,Boston - William E Russell,00350366, 20.6, 4.6, 16.1, 58.7, 0.0, 0.0, 0.0, 84.2, 15.8, 43.6 -15.46875,5,a-pcom-i3,2019-20,Boston - William Ellery Channing,00350360, 40.6, 5.8, 3.1, 50.5, 0.0, 0.0, 0.0, 78.2, 21.8, 32.0 -10.187499999999998,5,a-pcom-i3,2019-20,Boston - William H Ohrenberger,00350258, 21.3, 1.4, 8.5, 67.4, 0.0, 0.0, 1.4, 67.4, 32.6, 69.9 -16.59375,5,a-pcom-i3,2019-20,Boston - William McKinley,00350363, 39.6, 1.5, 11.0, 46.9, 0.0, 0.5, 0.5, 60.1, 39.9, 199.5 -17.0,5,a-pcom-i3,2019-20,Boston - William Monroe Trotter,00350370, 49.4, 1.7, 3.3, 45.6, 0.0, 0.0, 0.0, 83.2, 16.8, 59.5 -15.9375,5,a-pcom-i3,2019-20,Boston - Winship Elementary,00350374, 33.9, 0.0, 17.1, 49.0, 0.0, 0.0, 0.0, 90.1, 9.9, 29.4 -22.531249999999996,5,a-pcom-i3,2019-20,Boston - Young Achievers,00350380, 56.0, 1.2, 13.6, 27.9, 0.0, 0.0, 1.2, 76.6, 23.4, 80.7 -13.34375,5,a-pcom-i3,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 15.6, 5.9, 16.4, 57.3, 0.0, 0.0, 4.9, 67.7, 32.3, 102.6 -18.9375,5,a-pcom-i3,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 37.0, 5.9, 15.7, 39.4, 2.0, 0.0, 0.0, 68.5, 31.5, 50.8 -15.0,5,a-pcom-i3,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 29.1, 1.5, 17.5, 52.0, 0.0, 0.0, 0.0, 72.4, 27.6, 68.8 -13.0,5,a-pcom-i3,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 27.0, 2.6, 9.3, 58.4, 0.0, 0.0, 2.6, 64.2, 35.8, 75.5 -8.843749999999998,5,a-pcom-i3,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 19.7, 5.7, 2.2, 71.7, 0.0, 0.0, 0.6, 83.4, 16.6, 157.0 -1,1,a-pcom-i3,2019-20,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 67.5, 32.5, 58.4 -1,1,a-pcom-i3,2019-20,Bourne - Bourne Intermediate School,00360030, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 88.7, 11.3, 53.2 -1.875,1.88,a-pcom-i3,2019-20,Bourne - Bourne Middle School,00360325, 0.0, 1.5, 0.0, 94.0, 0.0, 0.0, 4.5, 80.4, 19.6, 66.4 -1,1,a-pcom-i3,2019-20,Bourne - Bournedale Elementary School,00360005, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 100.0, 0.0, 64.4 -1,1,a-pcom-i3,2019-20,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 93.5, 6.5, 57.1 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Boxford - Spofford Pond,00380013, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 96.5, 3.5, 63.8 -1,1,a-pcom-i3,2019-20,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 94.5, 5.5, 61.0 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Braintree - Braintree High,00400505, 1.8, 1.3, 0.5, 95.6, 0.0, 0.3, 0.5, 70.6, 29.4, 209.8 -1,1,a-pcom-i3,2019-20,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 35.7 -1,1,a-pcom-i3,2019-20,Braintree - East Middle School,00400305, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 78.1, 21.9, 83.0 -1,1,a-pcom-i3,2019-20,Braintree - Highlands,00400015, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 90.9, 9.1, 43.0 -1,1,a-pcom-i3,2019-20,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 56.7 -1,1,a-pcom-i3,2019-20,Braintree - Liberty,00400025, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 95.2, 4.8, 39.1 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Braintree - Mary E Flaherty School,00400020, 1.6, 1.0, 0.0, 95.8, 0.0, 0.0, 1.6, 96.8, 3.2, 61.8 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Braintree - Monatiquot Kindergarten Center,00400009, 3.1, 0.0, 0.0, 93.9, 0.0, 3.1, 0.0, 98.2, 1.8, 32.7 -1,1,a-pcom-i3,2019-20,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.0, 23.0, 83.3 -1,1,a-pcom-i3,2019-20,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.4, 0.6, 41.9 -1,1,a-pcom-i3,2019-20,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 95.1, 4.9, 51.3 -10.46875,5,a-pcom-i3,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 27.2, 0.0, 3.4, 66.5, 1.4, 0.0, 1.4, 82.3, 17.7, 69.8 -1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 79.7, 20.3, 48.7 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 2.5, 0.0, 0.8, 96.7, 0.0, 0.0, 0.0, 71.3, 28.7, 121.2 -1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 41.5 -1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 31.5 -1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.9, 0.0, 0.9, 97.4, 0.0, 0.0, 0.9, 94.0, 6.0, 115.8 -1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.5, 15.5, 64.7 -1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.5, 23.5, 8.2 -1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 86.7, 13.3, 73.5 -1,1,a-pcom-i3,2019-20,Brimfield - Brimfield Elementary,00430005, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 88.2, 11.8, 45.2 -1,1,a-pcom-i3,2019-20,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 57.9, 42.1, 52.2 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 1.4, 0.0, 0.7, 96.6, 1.4, 0.0, 0.0, 62.3, 37.7, 147.4 -2.03125,2.03,a-pcom-i3,2019-20,Brockton - Ashfield Middle School,00440421, 5.0, 0.0, 1.6, 93.5, 0.0, 0.0, 0.0, 82.0, 16.5, 63.8 -2.875000000000001,2.88,a-pcom-i3,2019-20,Brockton - Barrett Russell Early Childhood Center,00440008, 3.7, 1.7, 3.8, 90.8, 0.0, 0.0, 0.0, 98.3, 1.7, 57.4 -10.812499999999998,5,a-pcom-i3,2019-20,Brockton - Brockton Champion High School,00440515, 27.4, 0.0, 2.4, 65.4, 2.4, 0.0, 2.4, 67.1, 32.9, 41.3 -7.531249999999998,5,a-pcom-i3,2019-20,Brockton - Brockton High,00440505, 17.9, 2.0, 2.5, 75.9, 0.0, 0.2, 1.5, 63.7, 35.6, 407.5 -5.46875,5,a-pcom-i3,2019-20,Brockton - Brookfield,00440010, 11.8, 0.0, 5.6, 82.5, 0.0, 0.0, 0.0, 93.1, 5.5, 71.0 -4.093749999999998,4.09,a-pcom-i3,2019-20,Brockton - Downey,00440110, 8.7, 1.1, 2.2, 86.9, 1.1, 0.0, 0.0, 92.9, 7.1, 91.8 -5.15625,5,a-pcom-i3,2019-20,Brockton - Dr W Arnone Community School,00440001, 12.3, 0.0, 4.0, 83.5, 0.0, 0.0, 0.2, 92.7, 6.6, 99.3 -5.218750000000001,5,a-pcom-i3,2019-20,Brockton - East Middle School,00440405, 12.2, 1.4, 2.9, 83.3, 0.0, 0.0, 0.3, 64.7, 35.3, 69.9 -3.90625,3.91,a-pcom-i3,2019-20,Brockton - Edgar B Davis,00440023, 6.1, 0.0, 2.8, 87.5, 0.1, 0.0, 3.4, 77.4, 21.5, 88.0 -17.71875,5,a-pcom-i3,2019-20,Brockton - Edison Academy,00440520, 49.3, 0.0, 5.2, 43.3, 0.0, 0.0, 2.2, 61.1, 38.9, 18.3 -5.093749999999999,5,a-pcom-i3,2019-20,Brockton - Frederick Douglass Academy,00440080, 12.5, 0.0, 0.0, 83.7, 0.0, 0.0, 3.8, 50.9, 49.1, 16.0 -5.531250000000001,5,a-pcom-i3,2019-20,Brockton - Gilmore Elementary School,00440055, 17.7, 0.0, 0.0, 82.3, 0.0, 0.0, 0.0, 86.0, 14.0, 50.9 -3.75,3.75,a-pcom-i3,2019-20,Brockton - Hancock,00440045, 2.9, 0.0, 4.9, 88.0, 1.6, 0.0, 2.6, 89.8, 10.2, 51.0 -6.687500000000002,5,a-pcom-i3,2019-20,Brockton - Huntington Therapeutic Day School,00440400, 19.2, 0.0, 2.2, 78.6, 0.0, 0.0, 0.0, 65.0, 34.0, 46.2 -6.062500000000002,5,a-pcom-i3,2019-20,Brockton - John F Kennedy,00440017, 9.6, 3.9, 5.3, 80.6, 0.0, 0.0, 0.6, 87.9, 12.1, 57.0 -7.437499999999999,5,a-pcom-i3,2019-20,Brockton - Joseph F. Plouffe Academy,00440422, 17.2, 4.0, 2.6, 76.2, 0.0, 0.0, 0.0, 78.4, 20.2, 75.6 -6.343749999999999,5,a-pcom-i3,2019-20,Brockton - Louis F Angelo Elementary,00440065, 11.8, 0.2, 3.7, 79.7, 0.0, 0.0, 4.6, 89.3, 8.8, 108.6 -8.875000000000002,5,a-pcom-i3,2019-20,Brockton - Manthala George Jr. School,00440003, 10.7, 0.0, 15.5, 71.6, 1.2, 0.0, 1.1, 92.7, 7.3, 92.5 -7.8125,5,a-pcom-i3,2019-20,Brockton - Mary E. Baker School,00440002, 18.6, 0.0, 5.3, 75.0, 0.0, 0.0, 1.1, 96.2, 3.5, 94.0 -8.125,5,a-pcom-i3,2019-20,Brockton - North Middle School,00440410, 18.9, 0.0, 0.0, 74.0, 0.0, 0.0, 7.1, 80.6, 18.1, 30.8 -5.406249999999999,5,a-pcom-i3,2019-20,Brockton - Oscar F Raymond,00440078, 14.2, 0.0, 1.1, 82.7, 0.0, 0.0, 2.0, 95.1, 4.9, 88.9 -7.062499999999998,5,a-pcom-i3,2019-20,Brockton - South Middle School,00440415, 19.4, 0.0, 2.7, 77.4, 0.0, 0.0, 0.5, 71.7, 26.5, 74.6 -5.406249999999999,5,a-pcom-i3,2019-20,Brockton - West Middle School,00440420, 14.2, 1.4, 1.4, 82.7, 0.0, 0.0, 0.3, 74.9, 24.7, 70.6 -12.8125,5,a-pcom-i3,2019-20,Brooke Charter School (District) - Brooke Charter School,04280305, 21.1, 1.6, 16.0, 59.0, 0.0, 0.4, 2.0, 80.9, 19.1, 256.0 -1,1,a-pcom-i3,2019-20,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 44.5 -6.968749999999999,5,a-pcom-i3,2019-20,Brookline - Brookline Early Education Program at Beacon,00460001, 5.2, 8.6, 8.6, 77.7, 0.0, 0.0, 0.0, 100.0, 0.0, 11.7 -14.6875,5,a-pcom-i3,2019-20,Brookline - Brookline Early Education Program at Clark Road,00460003, 15.2, 16.7, 15.2, 53.0, 0.0, 0.0, 0.0, 84.8, 15.2, 6.6 -5.249999999999999,5,a-pcom-i3,2019-20,Brookline - Brookline Early Education Program at Putterham,00460002, 3.9, 3.6, 9.3, 83.2, 0.0, 0.0, 0.0, 100.0, 0.0, 21.5 -6.375000000000002,5,a-pcom-i3,2019-20,Brookline - Brookline High,00460505, 10.1, 4.8, 4.7, 79.6, 0.0, 0.0, 0.9, 63.7, 36.3, 339.2 -5.0,5.0,a-pcom-i3,2019-20,Brookline - Coolidge Corner School,00460015, 9.4, 2.4, 3.6, 84.0, 0.0, 0.6, 0.0, 80.8, 19.2, 154.6 -4.906250000000001,4.91,a-pcom-i3,2019-20,Brookline - Edith C Baker,00460005, 5.3, 6.7, 1.8, 84.3, 0.0, 0.0, 1.8, 83.4, 16.6, 110.7 -5.593750000000002,5,a-pcom-i3,2019-20,Brookline - Heath,00460025, 7.6, 2.7, 7.6, 82.1, 0.0, 0.0, 0.0, 89.5, 10.5, 78.6 -6.031249999999999,5,a-pcom-i3,2019-20,Brookline - John D Runkle,00460045, 10.1, 4.5, 2.9, 80.7, 0.0, 0.9, 0.9, 86.0, 13.2, 108.5 -5.531250000000001,5,a-pcom-i3,2019-20,Brookline - Lawrence,00460030, 5.4, 7.4, 3.9, 82.3, 0.0, 0.0, 1.0, 82.9, 17.1, 102.0 -6.531250000000002,5,a-pcom-i3,2019-20,Brookline - Michael Driscoll,00460020, 5.4, 10.0, 4.5, 79.1, 0.0, 0.0, 1.0, 86.0, 14.0, 100.3 -6.375000000000002,5,a-pcom-i3,2019-20,Brookline - Pierce,00460040, 8.3, 8.6, 1.8, 79.6, 0.0, 0.0, 1.7, 83.1, 16.9, 118.8 -4.624999999999999,4.62,a-pcom-i3,2019-20,Brookline - The Lynch Center,00460060, 4.8, 0.3, 9.7, 85.2, 0.0, 0.0, 0.0, 94.9, 2.3, 33.6 -5.625,5,a-pcom-i3,2019-20,Brookline - William H Lincoln,00460035, 6.5, 3.5, 7.2, 82.0, 0.0, 0.0, 0.8, 82.1, 17.9, 102.6 -1.9375000000000009,1.94,a-pcom-i3,2019-20,Burlington - Burlington High,00480505, 0.0, 1.9, 3.9, 93.8, 0.0, 0.0, 0.4, 78.6, 21.4, 156.0 -1,1,a-pcom-i3,2019-20,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 86.0, 14.0, 61.3 -1,1,a-pcom-i3,2019-20,Burlington - Francis Wyman Elementary,00480035, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 90.8, 9.2, 84.0 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Burlington - Marshall Simonds Middle,00480303, 1.0, 3.9, 0.0, 95.1, 0.0, 0.0, 0.0, 81.5, 18.5, 101.8 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Burlington - Memorial,00480015, 0.0, 4.7, 0.0, 95.3, 0.0, 0.0, 0.0, 95.5, 4.5, 63.8 -1,1,a-pcom-i3,2019-20,Burlington - Pine Glen Elementary,00480020, 0.0, 1.5, 0.0, 97.0, 0.0, 0.0, 1.5, 91.9, 6.6, 65.8 -18.75,5,a-pcom-i3,2019-20,Cambridge - Amigos School,00490006, 4.3, 0.0, 55.7, 40.0, 0.0, 0.0, 0.0, 80.3, 18.0, 58.4 -8.531249999999998,5,a-pcom-i3,2019-20,Cambridge - Cambridge Rindge and Latin,00490506, 14.4, 5.8, 6.1, 72.7, 0.3, 0.3, 0.3, 61.8, 37.7, 305.7 -9.500000000000002,5,a-pcom-i3,2019-20,Cambridge - Cambridge Street Upper School,00490305, 19.7, 7.1, 3.6, 69.6, 0.0, 0.0, 0.0, 88.8, 11.2, 56.0 -8.843749999999998,5,a-pcom-i3,2019-20,Cambridge - Cambridgeport,00490007, 17.5, 7.6, 3.2, 71.7, 0.0, 0.0, 0.0, 82.5, 15.9, 62.9 -12.781249999999998,5,a-pcom-i3,2019-20,Cambridge - Fletcher/Maynard Academy,00490090, 28.2, 8.0, 2.0, 59.1, 0.0, 1.3, 1.3, 80.0, 20.0, 75.3 -7.5,5,a-pcom-i3,2019-20,Cambridge - Graham and Parks,00490080, 15.8, 4.6, 2.9, 76.0, 0.7, 0.0, 0.0, 94.0, 3.2, 69.7 -5.093749999999999,5,a-pcom-i3,2019-20,Cambridge - Haggerty,00490020, 8.6, 5.2, 2.6, 83.7, 0.0, 0.0, 0.0, 86.5, 11.8, 58.2 -5.46875,5,a-pcom-i3,2019-20,Cambridge - John M Tobin,00490065, 12.2, 4.4, 0.9, 82.5, 0.0, 0.0, 0.0, 82.5, 15.7, 57.3 -7.562500000000001,5,a-pcom-i3,2019-20,Cambridge - Kennedy-Longfellow,00490040, 13.6, 2.7, 8.0, 75.8, 0.0, 0.0, 0.0, 93.3, 5.3, 75.2 -11.3125,5,a-pcom-i3,2019-20,Cambridge - King Open,00490035, 15.5, 11.0, 9.7, 63.8, 0.0, 0.0, 0.0, 83.6, 15.0, 72.5 -5.281250000000002,5,a-pcom-i3,2019-20,Cambridge - Maria L. Baldwin,00490005, 6.5, 5.2, 5.2, 83.1, 0.0, 0.0, 0.0, 85.7, 13.5, 57.4 -12.1875,5,a-pcom-i3,2019-20,Cambridge - Martin Luther King Jr.,00490030, 15.5, 19.6, 3.9, 61.0, 0.0, 0.0, 0.0, 89.7, 10.0, 51.5 -6.343749999999999,5,a-pcom-i3,2019-20,Cambridge - Morse,00490045, 13.4, 1.4, 4.9, 79.7, 0.7, 0.0, 0.0, 84.8, 15.2, 72.1 -7.093750000000001,5,a-pcom-i3,2019-20,Cambridge - Peabody,00490050, 10.3, 5.2, 3.7, 77.3, 3.4, 0.0, 0.0, 91.3, 8.7, 58.1 -15.15625,5,a-pcom-i3,2019-20,Cambridge - Putnam Avenue Upper School,00490310, 34.4, 8.7, 5.4, 51.5, 0.0, 0.0, 0.0, 62.0, 34.4, 55.3 -10.0,5,a-pcom-i3,2019-20,Cambridge - Rindge Avenue Upper School,00490315, 14.9, 6.4, 10.7, 68.0, 0.0, 0.0, 0.0, 67.0, 29.8, 46.6 -8.218749999999998,5,a-pcom-i3,2019-20,Cambridge - Vassal Lane Upper School,00490320, 13.1, 1.8, 11.3, 73.7, 0.0, 0.0, 0.0, 71.7, 28.3, 54.8 -2.03125,2.03,a-pcom-i3,2019-20,Canton - Canton High,00500505, 0.0, 2.8, 2.8, 93.5, 0.0, 0.0, 0.9, 68.7, 31.3, 108.1 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Canton - Dean S Luce,00500020, 3.2, 0.0, 1.6, 95.2, 0.0, 0.0, 0.0, 94.0, 6.0, 62.9 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Canton - John F Kennedy,00500017, 4.6, 1.5, 0.0, 93.9, 0.0, 0.0, 0.0, 91.1, 8.9, 65.2 -3.75,3.75,a-pcom-i3,2019-20,Canton - Lt Peter M Hansen,00500012, 4.5, 1.5, 3.0, 88.0, 0.0, 0.0, 3.0, 92.5, 7.5, 66.8 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Canton - Rodman Early Childhood Center,00500010, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 92.3, 7.7, 26.0 -3.531249999999999,3.53,a-pcom-i3,2019-20,Canton - Wm H Galvin Middle,00500305, 3.4, 1.1, 3.4, 88.7, 0.0, 0.0, 3.4, 77.7, 22.3, 88.8 -1,1,a-pcom-i3,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 84.5, 15.5, 38.8 -1,1,a-pcom-i3,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.2, 45.8, 100.9 -1.09375,1.09,a-pcom-i3,2019-20,Carlisle - Carlisle School,00510025, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 81.4, 18.6, 107.5 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Carver - Carver Elementary School,00520015, 0.5, 1.0, 1.0, 96.4, 1.0, 0.0, 0.0, 93.4, 6.6, 97.8 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Carver - Carver Middle/High School,00520405, 2.7, 0.0, 0.9, 94.6, 0.0, 0.9, 0.9, 71.1, 28.9, 110.8 -1,1,a-pcom-i3,2019-20,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 20.2 -1,1,a-pcom-i3,2019-20,Central Berkshire - Craneville,06350025, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 90.2, 9.8, 50.8 -1,1,a-pcom-i3,2019-20,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 27.7 -1,1,a-pcom-i3,2019-20,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.7, 24.3, 49.4 -1,1,a-pcom-i3,2019-20,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 96.9, 0.0, 0.0, 3.1, 64.6, 35.4, 63.9 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Chelmsford - Byam School,00560030, 1.1, 4.6, 0.0, 94.3, 0.0, 0.0, 0.0, 89.9, 10.1, 91.2 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Chelmsford - Center Elementary School,00560005, 0.0, 1.3, 1.3, 96.1, 0.0, 0.0, 1.3, 98.7, 1.3, 76.3 -1.9687499999999991,1.97,a-pcom-i3,2019-20,Chelmsford - Charles D Harrington,00560025, 0.0, 3.4, 2.9, 93.7, 0.0, 0.0, 0.0, 92.9, 7.1, 70.0 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Chelmsford - Chelmsford High,00560505, 0.0, 1.6, 3.2, 94.7, 0.5, 0.0, 0.0, 67.2, 32.8, 187.9 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Chelmsford - Col Moses Parker School,00560305, 0.9, 2.7, 0.0, 96.4, 0.0, 0.0, 0.0, 82.9, 17.1, 110.9 -4.0625,4.06,a-pcom-i3,2019-20,Chelmsford - Community Education Center,00560001, 2.9, 10.1, 0.0, 87.0, 0.0, 0.0, 0.0, 94.2, 5.8, 34.6 -1,1,a-pcom-i3,2019-20,Chelmsford - McCarthy Middle School,00560310, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 82.7, 17.3, 108.9 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Chelmsford - South Row,00560015, 0.0, 1.4, 1.4, 95.7, 0.0, 0.0, 1.4, 97.1, 2.9, 69.5 -6.281249999999998,5,a-pcom-i3,2019-20,Chelsea - Chelsea High,00570505, 0.6, 0.0, 16.4, 79.9, 0.0, 0.6, 2.4, 71.6, 28.4, 159.0 -8.562500000000002,5,a-pcom-i3,2019-20,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 27.4, 72.6, 0.0, 0.0, 0.0, 44.2, 55.8, 9.5 -4.562499999999998,4.56,a-pcom-i3,2019-20,Chelsea - Clark Avenue School,00570050, 1.4, 0.0, 13.2, 85.4, 0.0, 0.0, 0.0, 81.2, 18.8, 71.6 -4.812500000000002,4.81,a-pcom-i3,2019-20,Chelsea - Edgar A Hooks Elementary,00570030, 1.7, 0.0, 13.1, 84.6, 0.0, 0.0, 0.7, 88.1, 11.9, 60.1 -7.03125,5,a-pcom-i3,2019-20,Chelsea - Eugene Wright Science and Technology Academy,00570045, 0.0, 0.0, 17.0, 77.5, 0.0, 1.8, 3.6, 75.7, 24.3, 55.4 -7.250000000000001,5,a-pcom-i3,2019-20,Chelsea - Frank M Sokolowski Elementary,00570040, 1.8, 0.0, 17.8, 76.8, 0.0, 0.0, 3.6, 88.0, 12.0, 55.5 -8.5,5,a-pcom-i3,2019-20,Chelsea - George F. Kelly Elementary,00570035, 1.7, 0.0, 23.8, 72.8, 0.0, 0.0, 1.7, 88.8, 11.2, 58.3 -7.281249999999999,5,a-pcom-i3,2019-20,Chelsea - Joseph A. Browne School,00570055, 0.0, 0.0, 17.4, 76.7, 0.0, 0.0, 5.9, 77.7, 22.3, 50.8 -9.781249999999998,5,a-pcom-i3,2019-20,Chelsea - Shurtleff Early Childhood,00570003, 1.1, 0.0, 30.2, 68.7, 0.0, 0.0, 0.0, 92.5, 7.5, 127.6 -5.656249999999998,5,a-pcom-i3,2019-20,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 0.0, 11.4, 81.9, 0.0, 1.7, 5.1, 87.3, 12.7, 59.4 -1,1,a-pcom-i3,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 26.2 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Chicopee - Barry,00610003, 1.6, 0.0, 2.9, 95.6, 0.0, 0.0, 0.0, 96.6, 3.4, 64.0 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Chicopee - Belcher,00610010, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 96.3, 3.7, 37.8 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Chicopee - Bellamy Middle,00610305, 0.9, 0.0, 1.8, 96.3, 0.0, 0.9, 0.0, 80.2, 19.8, 109.1 -2.593749999999999,2.59,a-pcom-i3,2019-20,Chicopee - Bowe,00610015, 1.6, 1.6, 5.2, 91.7, 0.0, 0.0, 0.0, 93.5, 6.5, 64.1 -1,1,a-pcom-i3,2019-20,Chicopee - Bowie,00610020, 2.1, 0.0, 0.7, 97.3, 0.0, 0.0, 0.0, 91.4, 8.6, 48.7 -4.906250000000001,4.91,a-pcom-i3,2019-20,Chicopee - Chicopee Academy,00610021, 11.0, 1.4, 3.3, 84.3, 0.0, 0.0, 0.0, 68.9, 31.1, 36.2 -1.71875,1.72,a-pcom-i3,2019-20,Chicopee - Chicopee Comprehensive High School,00610510, 0.7, 0.7, 4.1, 94.5, 0.0, 0.0, 0.0, 57.8, 42.2, 150.0 -2.9375000000000018,2.94,a-pcom-i3,2019-20,Chicopee - Chicopee High,00610505, 3.1, 0.0, 5.5, 90.6, 0.8, 0.0, 0.0, 72.4, 27.6, 127.6 -3.1562499999999982,3.16,a-pcom-i3,2019-20,Chicopee - Dupont Middle,00610310, 1.8, 1.4, 6.0, 89.9, 0.0, 0.0, 0.9, 75.4, 24.6, 108.8 -3.90625,3.91,a-pcom-i3,2019-20,Chicopee - Fairview Elementary,00610050, 1.1, 0.0, 11.4, 87.5, 0.0, 0.0, 0.0, 87.9, 12.1, 89.1 -3.4687499999999982,3.47,a-pcom-i3,2019-20,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 11.1, 88.9, 0.0, 0.0, 0.0, 93.5, 6.5, 64.5 -1,1,a-pcom-i3,2019-20,Chicopee - Lambert-Lavoie,00610040, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 92.1, 7.9, 46.2 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Chicopee - Litwin,00610022, 0.0, 1.6, 1.6, 96.7, 0.0, 0.0, 0.0, 94.7, 5.3, 60.7 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Chicopee - Streiber Memorial School,00610065, 4.6, 0.0, 0.7, 94.7, 0.0, 0.0, 0.0, 96.3, 3.7, 43.8 -1.25,1.25,a-pcom-i3,2019-20,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 94.0, 6.0, 49.9 -2.875000000000001,2.88,a-pcom-i3,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 1.5, 0.0, 6.1, 90.8, 1.5, 0.0, 0.0, 67.0, 33.0, 65.1 -16.968749999999996,5,a-pcom-i3,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 36.9, 0.0, 17.4, 45.7, 0.0, 0.0, 0.0, 60.8, 39.2, 22.4 -12.875,5,a-pcom-i3,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 29.7, 0.0, 11.5, 58.8, 0.0, 0.0, 0.0, 65.2, 34.8, 18.0 -3.2500000000000018,3.25,a-pcom-i3,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 5.2, 0.0, 0.0, 89.6, 0.0, 0.0, 5.2, 57.9, 42.1, 19.2 -1,1,a-pcom-i3,2019-20,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.2, 14.8, 29.7 -1.8437500000000018,1.84,a-pcom-i3,2019-20,Clinton - Clinton Elementary,00640050, 0.0, 0.9, 4.2, 94.1, 0.0, 0.0, 0.9, 94.0, 6.0, 117.5 -2.2187499999999982,2.22,a-pcom-i3,2019-20,Clinton - Clinton Middle School,00640305, 1.4, 1.4, 2.9, 92.9, 0.0, 0.0, 1.4, 83.1, 16.9, 71.8 -1.5625,1.56,a-pcom-i3,2019-20,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 3.3, 95.0, 0.0, 0.0, 1.7, 58.9, 41.1, 60.4 -13.999999999999998,5,a-pcom-i3,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 36.2, 4.3, 4.3, 55.2, 0.0, 0.0, 0.0, 71.4, 28.6, 69.7 -1,1,a-pcom-i3,2019-20,Cohasset - Cohasset High School,00650505, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 57.2, 42.8, 63.5 -1,1,a-pcom-i3,2019-20,Cohasset - Cohasset Middle School,00650305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 85.3, 14.7, 41.0 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Cohasset - Deer Hill,00650005, 2.0, 2.0, 0.0, 95.9, 0.0, 0.0, 0.0, 91.9, 8.1, 49.2 -1,1,a-pcom-i3,2019-20,Cohasset - Joseph Osgood,00650010, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 92.8, 7.2, 49.8 -6.499999999999999,5,a-pcom-i3,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 3.7, 4.9, 12.3, 79.2, 0.0, 0.0, 0.0, 81.5, 18.5, 81.6 -14.781249999999998,5,a-pcom-i3,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 19.9, 5.0, 21.6, 52.7, 0.0, 0.0, 0.8, 61.0, 39.0, 60.2 -6.593749999999998,5,a-pcom-i3,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 1.6, 0.0, 19.4, 78.9, 0.0, 0.0, 0.0, 89.4, 10.6, 61.3 -8.5,5,a-pcom-i3,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 1.7, 1.7, 23.7, 72.8, 0.0, 0.0, 0.0, 77.4, 22.6, 57.4 -7.062499999999998,5,a-pcom-i3,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 22.6, 77.4, 0.0, 0.0, 0.0, 69.9, 30.1, 57.2 -2.7812500000000018,2.78,a-pcom-i3,2019-20,Concord - Alcott,00670005, 2.5, 3.7, 2.7, 91.1, 0.0, 0.0, 0.0, 90.8, 9.2, 80.8 -3.7812499999999982,3.78,a-pcom-i3,2019-20,Concord - Concord Middle,00670305, 4.8, 3.6, 2.7, 87.9, 0.0, 1.0, 0.0, 73.5, 26.5, 104.3 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Concord - Thoreau,00670020, 0.0, 1.9, 2.8, 95.3, 0.0, 0.0, 0.0, 96.4, 3.6, 79.5 -2.093750000000001,2.09,a-pcom-i3,2019-20,Concord - Willard,00670030, 1.2, 2.7, 2.7, 93.3, 0.0, 0.0, 0.0, 90.8, 9.2, 80.7 -1.9687499999999991,1.97,a-pcom-i3,2019-20,Concord-Carlisle - Concord Carlisle High,06400505, 1.7, 1.5, 3.1, 93.7, 0.0, 0.0, 0.0, 61.4, 38.6, 178.3 -13.03125,5,a-pcom-i3,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 25.6, 1.3, 12.1, 58.3, 1.3, 0.0, 1.3, 71.3, 28.7, 74.3 -1,1,a-pcom-i3,2019-20,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 37.3 -1,1,a-pcom-i3,2019-20,Danvers - Danvers High,00710505, 0.8, 0.8, 0.8, 97.5, 0.0, 0.0, 0.0, 64.0, 36.0, 121.5 -1,1,a-pcom-i3,2019-20,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 42.8 -1,1,a-pcom-i3,2019-20,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 44.6 -1,1,a-pcom-i3,2019-20,Danvers - Holten Richmond Middle School,00710305, 0.0, 0.0, 0.9, 98.1, 0.0, 0.0, 0.9, 80.4, 19.6, 107.3 -1,1,a-pcom-i3,2019-20,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 37.5 -1,1,a-pcom-i3,2019-20,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 69.1 -1.09375,1.09,a-pcom-i3,2019-20,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 93.4, 6.6, 45.1 -1,1,a-pcom-i3,2019-20,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 24.4 -1,1,a-pcom-i3,2019-20,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 62.8, 37.2, 101.3 -1,1,a-pcom-i3,2019-20,Dartmouth - Dartmouth Middle,00720050, 0.9, 0.0, 0.0, 98.2, 0.0, 0.0, 0.9, 63.8, 36.2, 112.7 -1,1,a-pcom-i3,2019-20,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 55.9 -1,1,a-pcom-i3,2019-20,Dartmouth - James M. Quinn School,00720040, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 96.2, 3.8, 96.2 -1,1,a-pcom-i3,2019-20,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 43.2 -1,1,a-pcom-i3,2019-20,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 49.4 -2.5,2.5,a-pcom-i3,2019-20,Dedham - Dedham High,00730505, 1.0, 3.0, 4.0, 92.0, 0.0, 0.0, 0.0, 73.3, 26.7, 100.1 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Dedham - Dedham Middle School,00730305, 3.1, 0.0, 0.6, 95.3, 0.0, 0.0, 1.0, 73.5, 26.5, 97.3 -1,1,a-pcom-i3,2019-20,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 63.7 -1,1,a-pcom-i3,2019-20,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 40.8 -1,1,a-pcom-i3,2019-20,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 36.8 -1,1,a-pcom-i3,2019-20,Dedham - Riverdale,00730045, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 89.4, 10.6, 35.0 -1,1,a-pcom-i3,2019-20,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 85.7 -1.40625,1.41,a-pcom-i3,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.4, 0.0, 2.0, 95.5, 0.0, 0.0, 0.0, 65.8, 34.2, 128.0 -1,1,a-pcom-i3,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 2.5, 97.0, 0.5, 0.0, 0.0, 94.7, 5.3, 72.3 -1,1,a-pcom-i3,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 54.3 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Dennis-Yarmouth - Mattacheese Middle School,06450305, 2.3, 0.0, 2.9, 93.9, 0.0, 0.0, 0.8, 76.3, 23.7, 68.4 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 2.5, 96.1, 0.0, 0.0, 1.5, 92.7, 7.3, 68.7 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.9, 1.8, 1.8, 95.6, 0.0, 0.0, 0.0, 89.8, 10.2, 56.7 -1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Dighton Elementary,06500005, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 94.8, 5.2, 71.4 -1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Dighton Middle School,06500305, 0.5, 0.0, 0.0, 97.2, 0.0, 0.0, 2.3, 73.5, 26.5, 43.0 -1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.2, 0.0, 1.0, 98.8, 0.0, 0.0, 0.0, 66.1, 33.9, 101.0 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.3, 0.0, 3.1, 94.3, 0.0, 0.0, 2.3, 80.5, 19.5, 65.0 -1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Palmer River,06500010, 0.3, 0.0, 0.0, 99.0, 0.0, 0.0, 0.7, 94.9, 5.1, 73.2 -1,1,a-pcom-i3,2019-20,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 59.8 -1,1,a-pcom-i3,2019-20,Douglas - Douglas High School,00770505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.1, 31.9, 61.5 -1,1,a-pcom-i3,2019-20,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 42.7 -1,1,a-pcom-i3,2019-20,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 34.7 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Dover - Chickering,00780005, 0.3, 2.0, 2.5, 95.3, 0.0, 0.0, 0.0, 91.6, 8.4, 81.5 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.3, 1.8, 3.6, 94.3, 0.0, 0.0, 0.0, 67.1, 32.9, 98.0 -2.8125,2.81,a-pcom-i3,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.0, 1.3, 4.7, 91.0, 0.0, 0.0, 0.0, 77.5, 22.5, 74.8 -1,1,a-pcom-i3,2019-20,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 90.2, 9.8, 45.7 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Dracut - Dracut Senior High,00790505, 0.0, 2.3, 1.1, 96.6, 0.0, 0.0, 0.0, 67.1, 32.9, 90.9 -1,1,a-pcom-i3,2019-20,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 54.7 -1,1,a-pcom-i3,2019-20,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 30.0 -1,1,a-pcom-i3,2019-20,Dracut - Joseph A Campbell Elementary,00790020, 0.7, 0.7, 0.0, 98.5, 0.0, 0.0, 0.0, 95.9, 4.1, 68.6 -1.40625,1.41,a-pcom-i3,2019-20,Dracut - Justus C. Richardson Middle School,00790410, 1.1, 0.6, 2.8, 95.5, 0.0, 0.0, 0.0, 80.4, 19.6, 88.0 -17.46875,5,a-pcom-i3,2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 35.6, 0.0, 20.3, 44.1, 0.0, 0.0, 0.0, 93.2, 6.8, 29.5 -1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 51.6 -1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 79.0, 21.0, 75.1 -1.09375,1.09,a-pcom-i3,2019-20,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 1.0, 96.5, 2.5, 0.0, 0.0, 95.1, 4.9, 40.5 -1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 75.6, 24.4, 61.3 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 96.3, 0.0, 0.0, 3.7, 94.8, 5.2, 54.0 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 2.4, 95.2, 2.4, 0.0, 0.0, 95.2, 4.8, 42.0 -1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 56.0, 44.0, 99.9 -1,1,a-pcom-i3,2019-20,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 80.1 -1,1,a-pcom-i3,2019-20,Duxbury - Chandler Elementary,00820006, 0.0, 1.1, 1.1, 97.9, 0.0, 0.0, 0.0, 98.0, 2.0, 94.7 -1,1,a-pcom-i3,2019-20,Duxbury - Duxbury High,00820505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 65.1, 34.9, 130.3 -1,1,a-pcom-i3,2019-20,Duxbury - Duxbury Middle,00820305, 0.0, 1.3, 1.3, 97.4, 0.0, 0.0, 0.0, 81.2, 18.8, 77.7 -1,1,a-pcom-i3,2019-20,East Bridgewater - Central,00830005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 74.0 -1,1,a-pcom-i3,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.6, 31.4, 102.0 -1,1,a-pcom-i3,2019-20,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 81.5 -1.8437500000000018,1.84,a-pcom-i3,2019-20,East Longmeadow - Birchland Park,00870305, 2.3, 1.2, 2.3, 94.1, 0.0, 0.0, 0.0, 70.4, 29.6, 85.4 -4.21875,4.22,a-pcom-i3,2019-20,East Longmeadow - East Longmeadow High,00870505, 4.9, 2.0, 5.7, 86.5, 0.0, 0.0, 1.0, 64.1, 35.9, 102.2 -1,1,a-pcom-i3,2019-20,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 48.1 -2.2187499999999982,2.22,a-pcom-i3,2019-20,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 6.0, 92.9, 0.0, 0.0, 1.0, 96.9, 3.1, 96.0 -1,1,a-pcom-i3,2019-20,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 89.9, 10.1, 49.5 -1,1,a-pcom-i3,2019-20,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 40.2 -1,1,a-pcom-i3,2019-20,Easthampton - Center School,00860005, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 89.5, 10.5, 27.0 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Easthampton - Easthampton High,00860505, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 59.8, 40.2, 49.7 -1,1,a-pcom-i3,2019-20,Easthampton - Maple,00860010, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 97.7, 2.3, 50.5 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 4.4, 95.6, 0.0, 0.0, 0.0, 94.6, 5.4, 34.0 -1.71875,1.72,a-pcom-i3,2019-20,Easthampton - White Brook Middle School,00860305, 3.7, 0.0, 0.0, 94.5, 0.0, 0.0, 1.8, 74.2, 25.8, 54.3 -1,1,a-pcom-i3,2019-20,Easton - Center School,00880003, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 95.0, 5.0, 38.4 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Easton - Easton Middle School,00880405, 0.0, 1.0, 2.4, 95.2, 0.0, 0.0, 1.4, 79.5, 20.5, 102.2 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Easton - Moreau Hall,00880020, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 94.2, 5.8, 29.6 -2.34375,2.34,a-pcom-i3,2019-20,Easton - Oliver Ames High,00880505, 2.3, 1.5, 2.9, 92.5, 0.0, 0.0, 0.8, 62.5, 37.5, 130.1 -1,1,a-pcom-i3,2019-20,Easton - Parkview Elementary,00880015, 0.8, 0.0, 0.0, 99.2, 0.0, 0.0, 0.0, 94.1, 5.9, 50.3 -1,1,a-pcom-i3,2019-20,Easton - Richardson Olmsted School,00880025, 0.7, 0.0, 0.5, 97.7, 0.0, 0.0, 1.1, 90.4, 9.6, 91.5 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Edgartown - Edgartown Elementary,00890005, 2.8, 0.0, 2.3, 94.8, 0.0, 0.0, 0.0, 84.6, 15.4, 83.3 -16.71875,5,a-pcom-i3,2019-20,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 44.1, 1.7, 7.8, 46.5, 0.0, 0.0, 0.0, 51.9, 48.1, 51.3 -2.4687500000000018,2.47,a-pcom-i3,2019-20,Erving - Erving Elementary,00910030, 0.0, 0.0, 1.1, 92.1, 0.0, 0.0, 6.7, 89.9, 10.1, 44.5 -1,1,a-pcom-i3,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.5, 1.1, 0.5, 97.8, 0.0, 0.0, 0.0, 59.9, 40.1, 185.5 -1,1,a-pcom-i3,2019-20,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 22.0 -5.249999999999999,5,a-pcom-i3,2019-20,Everett - Devens School,00930030, 7.3, 0.0, 5.9, 83.2, 0.0, 0.0, 3.7, 57.5, 42.5, 27.3 -4.500000000000002,4.5,a-pcom-i3,2019-20,Everett - Everett High,00930505, 4.7, 3.3, 4.7, 85.6, 0.5, 0.5, 0.9, 56.9, 43.1, 214.8 -3.125,3.13,a-pcom-i3,2019-20,Everett - George Keverian School,00930028, 1.2, 3.7, 3.7, 90.0, 0.0, 1.2, 0.0, 80.9, 19.1, 80.2 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Everett - Lafayette School,00930038, 1.9, 1.9, 3.8, 92.4, 0.0, 0.0, 0.0, 84.7, 15.3, 105.5 -1.40625,1.41,a-pcom-i3,2019-20,Everett - Madeline English School,00930018, 0.0, 1.1, 3.4, 95.5, 0.0, 0.0, 0.0, 87.0, 13.0, 88.9 -1.09375,1.09,a-pcom-i3,2019-20,Everett - Parlin School,00930058, 0.0, 1.2, 2.3, 96.5, 0.0, 0.0, 0.0, 83.6, 16.4, 86.2 -3.4062500000000018,3.41,a-pcom-i3,2019-20,Everett - Sumner G. Whittier School,00930010, 6.2, 0.0, 4.7, 89.1, 0.0, 0.0, 0.0, 88.1, 11.9, 64.2 -1,1,a-pcom-i3,2019-20,Everett - Webster Extension,00930001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.5 -2.65625,2.66,a-pcom-i3,2019-20,Everett - Webster School,00930015, 0.0, 2.4, 6.1, 91.5, 0.0, 0.0, 0.0, 95.2, 4.8, 82.5 -10.625,5,a-pcom-i3,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 5.6, 1.6, 24.3, 66.0, 0.0, 0.0, 2.5, 76.2, 23.8, 192.1 -1,1,a-pcom-i3,2019-20,Fairhaven - East Fairhaven,00940010, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 97.1, 2.9, 52.3 -1,1,a-pcom-i3,2019-20,Fairhaven - Fairhaven High,00940505, 1.5, 0.0, 0.0, 97.1, 0.0, 0.0, 1.4, 59.4, 40.6, 74.4 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Fairhaven - Hastings Middle,00940305, 0.2, 0.0, 1.8, 96.1, 0.0, 0.0, 1.8, 73.5, 26.5, 54.4 -1.25,1.25,a-pcom-i3,2019-20,Fairhaven - Leroy Wood,00940030, 2.1, 1.9, 0.0, 96.0, 0.0, 0.0, 0.0, 95.3, 4.7, 52.9 -2.3125000000000018,2.31,a-pcom-i3,2019-20,Fall River - B M C Durfee High,00950505, 2.2, 1.1, 3.4, 92.6, 0.0, 0.0, 0.7, 65.8, 34.2, 265.4 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Fall River - Carlton M. Viveiros Elementary School,00950009, 1.2, 0.0, 0.7, 96.8, 0.0, 0.0, 1.2, 89.6, 10.4, 80.7 -3.968750000000001,3.97,a-pcom-i3,2019-20,Fall River - Henry Lord Community School,00950017, 5.9, 0.0, 5.9, 87.3, 0.0, 0.0, 1.0, 88.9, 11.1, 102.1 -2.65625,2.66,a-pcom-i3,2019-20,Fall River - James Tansey,00950140, 0.0, 2.8, 2.8, 91.5, 0.0, 0.0, 2.8, 90.0, 10.0, 35.2 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Fall River - John J Doran,00950045, 0.0, 0.0, 2.8, 95.8, 0.0, 0.0, 1.4, 86.7, 13.3, 71.2 -3.031250000000001,3.03,a-pcom-i3,2019-20,Fall River - Letourneau Elementary School,00950013, 6.5, 0.0, 3.2, 90.3, 0.0, 0.0, 0.0, 91.4, 8.6, 61.7 -3.531249999999999,3.53,a-pcom-i3,2019-20,Fall River - Mary Fonseca Elementary School,00950011, 1.3, 0.0, 6.3, 88.7, 1.3, 0.0, 2.5, 90.0, 10.0, 79.6 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Fall River - Matthew J Kuss Middle,00950320, 0.0, 1.2, 2.2, 92.4, 0.0, 1.2, 2.9, 64.3, 35.7, 81.7 -2.4687500000000018,2.47,a-pcom-i3,2019-20,Fall River - Morton Middle,00950315, 0.0, 4.0, 4.0, 92.1, 0.0, 0.0, 0.0, 81.3, 18.7, 75.8 -1,1,a-pcom-i3,2019-20,Fall River - North End Elementary,00950005, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 89.1, 10.9, 83.3 -2.6874999999999982,2.69,a-pcom-i3,2019-20,Fall River - Resiliency Preparatory Academy,00950525, 2.7, 0.0, 3.0, 91.4, 0.0, 0.0, 3.0, 41.3, 58.7, 33.6 -1,1,a-pcom-i3,2019-20,Fall River - Samuel Watson,00950145, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 89.6, 10.4, 33.6 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Fall River - Spencer Borden,00950130, 1.1, 0.0, 1.1, 96.6, 0.0, 0.0, 1.1, 91.5, 8.5, 87.8 -4.406249999999998,4.41,a-pcom-i3,2019-20,Fall River - Stone PK-12 School,00950340, 5.5, 0.0, 0.0, 85.9, 0.0, 0.0, 8.7, 71.1, 28.9, 34.7 -4.156249999999999,4.16,a-pcom-i3,2019-20,Fall River - Talbot Innovation School,00950305, 2.7, 1.4, 7.9, 86.7, 0.0, 0.0, 1.4, 73.8, 26.2, 73.8 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Fall River - William S Greene,00950065, 2.3, 1.2, 2.3, 94.2, 0.0, 0.0, 0.0, 94.0, 6.0, 85.8 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Falmouth - East Falmouth Elementary,00960005, 3.3, 0.0, 0.0, 94.6, 0.0, 0.0, 2.1, 88.8, 11.2, 48.7 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Falmouth - Falmouth High,00960505, 1.9, 0.9, 1.8, 94.6, 0.9, 0.0, 0.0, 64.4, 35.6, 112.1 -2.5312499999999982,2.53,a-pcom-i3,2019-20,Falmouth - Lawrence,00960405, 4.4, 2.5, 1.2, 91.9, 0.0, 0.0, 0.0, 80.7, 19.3, 80.2 -1,1,a-pcom-i3,2019-20,Falmouth - Morse Pond School,00960305, 1.4, 0.0, 0.0, 97.2, 0.0, 0.0, 1.4, 85.8, 14.2, 70.5 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Falmouth - Mullen-Hall,00960020, 2.3, 0.0, 1.4, 96.3, 0.0, 0.0, 0.0, 90.7, 9.3, 70.3 -2.093750000000001,2.09,a-pcom-i3,2019-20,Falmouth - North Falmouth Elementary,00960030, 4.6, 0.0, 2.1, 93.3, 0.0, 0.0, 0.0, 92.5, 7.5, 46.6 -2.96875,2.97,a-pcom-i3,2019-20,Falmouth - Teaticket,00960015, 5.8, 0.0, 1.8, 90.5, 0.0, 0.0, 1.8, 99.1, 0.9, 54.2 -1,1,a-pcom-i3,2019-20,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.5, 17.5, 25.7 -4.249999999999998,4.25,a-pcom-i3,2019-20,Fitchburg - Arthur M Longsjo Middle School,00970315, 1.1, 2.3, 7.9, 86.4, 0.0, 0.0, 2.3, 73.8, 26.2, 88.5 -2.03125,2.03,a-pcom-i3,2019-20,Fitchburg - Crocker Elementary,00970016, 2.5, 0.0, 4.0, 93.5, 0.0, 0.0, 0.0, 96.0, 4.0, 74.2 -6.375000000000002,5,a-pcom-i3,2019-20,Fitchburg - Fitchburg High,00970505, 4.6, 0.8, 15.0, 79.6, 0.0, 0.0, 0.0, 64.3, 35.7, 130.6 -6.531250000000002,5,a-pcom-i3,2019-20,Fitchburg - Goodrich Academy,00970510, 7.0, 0.0, 14.0, 79.1, 0.0, 0.0, 0.0, 72.1, 27.9, 14.3 -4.343750000000002,4.34,a-pcom-i3,2019-20,Fitchburg - McKay Arts Academy,00970340, 2.1, 0.0, 11.8, 86.1, 0.0, 0.0, 0.0, 87.1, 12.9, 93.3 -2.34375,2.34,a-pcom-i3,2019-20,Fitchburg - Memorial Middle School,00970048, 2.6, 0.0, 4.9, 92.5, 0.0, 0.0, 0.0, 80.2, 19.8, 75.7 -2.281249999999999,2.28,a-pcom-i3,2019-20,Fitchburg - Reingold Elementary,00970043, 1.9, 1.4, 2.7, 92.7, 0.0, 0.0, 1.4, 88.5, 11.5, 73.8 -1.9687499999999991,1.97,a-pcom-i3,2019-20,Fitchburg - South Street Elementary,00970060, 2.1, 0.0, 4.2, 93.7, 0.0, 0.0, 0.0, 89.5, 10.5, 94.9 -1,1,a-pcom-i3,2019-20,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 20.2 -3.8750000000000018,3.88,a-pcom-i3,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 3.1, 3.1, 6.2, 87.6, 0.0, 0.0, 0.0, 73.8, 26.2, 32.4 -1,1,a-pcom-i3,2019-20,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 34.3 -1,1,a-pcom-i3,2019-20,Foxborough - Foxborough High,00990505, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 67.1, 32.9, 109.7 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Foxborough - John J Ahern,00990405, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 77.7, 22.3, 105.6 -1,1,a-pcom-i3,2019-20,Foxborough - Mabelle M Burrell,00990015, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 97.5, 2.5, 40.6 -1,1,a-pcom-i3,2019-20,Foxborough - Vincent M Igo Elementary,00990020, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 93.8, 6.2, 56.9 -3.687499999999999,3.69,a-pcom-i3,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 4.7, 0.0, 7.2, 88.2, 0.0, 0.0, 0.0, 79.9, 20.1, 181.5 -13.15625,5,a-pcom-i3,2019-20,Framingham - Barbieri Elementary,01000035, 1.1, 1.1, 39.9, 57.9, 0.0, 0.0, 0.0, 91.1, 8.9, 92.2 -5.843750000000001,5,a-pcom-i3,2019-20,Framingham - Brophy,01000006, 0.0, 0.0, 18.7, 81.3, 0.0, 0.0, 0.0, 94.5, 5.5, 64.2 -3.75,3.75,a-pcom-i3,2019-20,Framingham - Cameron Middle School,01000302, 4.8, 1.2, 6.0, 88.0, 0.0, 0.0, 0.0, 79.1, 20.9, 83.4 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 86.6, 13.4, 71.4 -4.249999999999998,4.25,a-pcom-i3,2019-20,Framingham - Framingham High School,01000515, 4.3, 1.3, 8.1, 86.4, 0.0, 0.0, 0.0, 66.4, 33.6, 236.4 -5.437500000000002,5,a-pcom-i3,2019-20,Framingham - Fuller Middle,01000305, 2.6, 2.3, 12.6, 82.6, 0.0, 0.0, 0.0, 77.7, 22.3, 87.5 -4.281250000000001,4.28,a-pcom-i3,2019-20,Framingham - Hemenway,01000015, 3.0, 0.8, 10.0, 86.3, 0.0, 0.0, 0.0, 92.5, 7.5, 66.6 -6.375000000000002,5,a-pcom-i3,2019-20,Framingham - Juniper Hill School,01000001, 0.0, 3.0, 17.4, 79.6, 0.0, 0.0, 0.0, 95.2, 4.8, 66.6 -3.59375,3.59,a-pcom-i3,2019-20,Framingham - King Elementary School,01000005, 6.3, 0.0, 3.8, 88.5, 0.0, 0.0, 1.4, 86.3, 13.7, 47.6 -2.562500000000001,2.56,a-pcom-i3,2019-20,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 1.6, 6.6, 91.8, 0.0, 0.0, 0.0, 93.1, 6.9, 62.0 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Framingham - Miriam F McCarthy School,01000050, 1.0, 3.6, 1.2, 94.2, 0.0, 0.0, 0.0, 92.5, 7.5, 82.7 -7.124999999999999,5,a-pcom-i3,2019-20,Framingham - Potter Road,01000039, 1.7, 2.6, 18.4, 77.2, 0.0, 0.0, 0.0, 91.1, 8.9, 57.7 -5.218750000000001,5,a-pcom-i3,2019-20,Framingham - Walsh Middle,01000310, 2.1, 1.6, 13.0, 83.3, 0.0, 0.0, 0.0, 77.1, 22.9, 95.1 -3.374999999999999,3.37,a-pcom-i3,2019-20,Framingham - Woodrow Wilson,01000055, 0.3, 1.3, 9.2, 89.2, 0.0, 0.0, 0.0, 92.5, 7.5, 75.8 -3.5625000000000018,3.56,a-pcom-i3,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 4.9, 0.0, 3.2, 88.6, 0.0, 0.0, 3.2, 70.3, 29.7, 61.6 -1,1,a-pcom-i3,2019-20,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.8, 17.2, 53.3 -1,1,a-pcom-i3,2019-20,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 37.6 -2.093750000000001,2.09,a-pcom-i3,2019-20,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 6.7, 0.0, 93.3, 0.0, 0.0, 0.0, 99.4, 0.6, 30.0 -1,1,a-pcom-i3,2019-20,Franklin - Franklin High,01010505, 1.1, 0.6, 0.0, 98.3, 0.0, 0.0, 0.0, 68.2, 31.8, 177.8 -1,1,a-pcom-i3,2019-20,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 52.1 -1,1,a-pcom-i3,2019-20,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.8, 22.2, 59.3 -1.25,1.25,a-pcom-i3,2019-20,Franklin - J F Kennedy Memorial,01010013, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 95.7, 4.3, 50.3 -1,1,a-pcom-i3,2019-20,Franklin - Jefferson Elementary,01010010, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 98.3, 1.7, 49.4 -1,1,a-pcom-i3,2019-20,Franklin - Oak Street Elementary,01010030, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 93.4, 6.6, 49.5 -1,1,a-pcom-i3,2019-20,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.7, 10.3, 49.4 -1,1,a-pcom-i3,2019-20,Franklin - Remington Middle,01010310, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 78.0, 22.0, 55.0 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 0.0, 0.0, 0.7, 96.6, 0.0, 0.0, 2.7, 40.2, 59.8, 72.8 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 68.1, 31.9, 89.7 -1,1,a-pcom-i3,2019-20,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 46.9 -1,1,a-pcom-i3,2019-20,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 54.8 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 3.5, 1.2, 1.2, 94.2, 0.0, 0.0, 0.0, 72.3, 27.7, 85.9 -1,1,a-pcom-i3,2019-20,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 47.6 -1,1,a-pcom-i3,2019-20,Frontier - Frontier Regional,06700505, 1.0, 0.0, 0.0, 96.9, 2.0, 0.0, 0.0, 63.4, 36.6, 98.1 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Gardner - Elm Street School,01030001, 0.0, 0.0, 2.9, 95.7, 0.0, 0.0, 1.4, 85.5, 14.5, 69.0 -1,1,a-pcom-i3,2019-20,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 47.6, 52.4, 10.5 -2.718750000000001,2.72,a-pcom-i3,2019-20,Gardner - Gardner High,01030505, 0.0, 3.8, 3.6, 91.3, 0.0, 0.0, 1.3, 68.7, 31.3, 79.8 -2.6874999999999982,2.69,a-pcom-i3,2019-20,Gardner - Gardner Middle School,01030405, 1.4, 1.4, 2.9, 91.4, 0.0, 0.0, 2.9, 73.8, 26.2, 69.8 -1,1,a-pcom-i3,2019-20,Gardner - Waterford Street,01030020, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 84.8, 15.2, 85.3 -1,1,a-pcom-i3,2019-20,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 24.7 -1,1,a-pcom-i3,2019-20,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 76.9, 23.1, 45.0 -1.09375,1.09,a-pcom-i3,2019-20,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 96.5, 0.0, 0.0, 3.5, 78.7, 21.3, 28.6 -1,1,a-pcom-i3,2019-20,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 43.5 -1,1,a-pcom-i3,2019-20,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.5, 97.6, 0.0, 0.9, 0.0, 68.3, 31.7, 66.3 -1,1,a-pcom-i3,2019-20,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 98.1, 0.0, 1.9, 0.0, 76.9, 23.1, 21.6 -1,1,a-pcom-i3,2019-20,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 89.6, 10.4, 86.7 -1,1,a-pcom-i3,2019-20,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.6 -1,1,a-pcom-i3,2019-20,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 87.2, 12.8, 17.4 -1,1,a-pcom-i3,2019-20,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 63.2, 36.8, 35.1 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 2.9, 95.9, 0.0, 0.0, 1.2, 96.5, 3.5, 34.5 -1.7499999999999982,1.75,a-pcom-i3,2019-20,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 2.3, 0.0, 94.4, 0.0, 0.0, 3.3, 88.4, 11.6, 43.0 -2.03125,2.03,a-pcom-i3,2019-20,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 6.5, 93.5, 0.0, 0.0, 0.0, 76.9, 23.1, 38.5 -4.750000000000001,4.75,a-pcom-i3,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 5.7, 1.3, 8.2, 84.8, 0.0, 0.0, 0.0, 72.0, 28.0, 61.1 -1,1,a-pcom-i3,2019-20,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 55.6 -1,1,a-pcom-i3,2019-20,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 88.1, 11.9, 42.0 -1.09375,1.09,a-pcom-i3,2019-20,Gloucester - Gloucester High,01070505, 0.9, 0.0, 1.7, 96.5, 0.9, 0.0, 0.0, 56.6, 43.4, 115.3 -1,1,a-pcom-i3,2019-20,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.0 -1,1,a-pcom-i3,2019-20,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 38.8 -1,1,a-pcom-i3,2019-20,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.5, 22.5, 84.5 -1,1,a-pcom-i3,2019-20,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 48.8 -1,1,a-pcom-i3,2019-20,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 52.8 -31.25,5,a-pcom-i3,2019-20,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Grafton - Grafton High School,01100505, 0.0, 0.9, 1.9, 96.2, 0.0, 0.0, 1.0, 66.4, 33.6, 107.1 -1,1,a-pcom-i3,2019-20,Grafton - Grafton Middle,01100305, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 73.2, 26.8, 67.2 -1,1,a-pcom-i3,2019-20,Grafton - Millbury Street Elementary School,01100200, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 91.8, 8.2, 97.4 -1,1,a-pcom-i3,2019-20,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 45.5 -1,1,a-pcom-i3,2019-20,Grafton - North Street Elementary School,01100030, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 96.2, 3.8, 78.3 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Grafton - South Grafton Elementary,01100005, 4.0, 0.0, 0.0, 94.7, 1.3, 0.0, 0.0, 94.4, 5.6, 60.5 -1,1,a-pcom-i3,2019-20,Granby - East Meadow,01110004, 1.5, 1.5, 0.0, 97.1, 0.0, 0.0, 0.0, 88.6, 11.4, 68.8 -2.5312499999999982,2.53,a-pcom-i3,2019-20,Granby - Granby Jr Sr High School,01110505, 0.0, 2.0, 4.1, 91.9, 0.0, 0.0, 2.0, 69.1, 30.9, 49.3 -1,1,a-pcom-i3,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 2.1, 0.0, 0.6, 97.3, 0.0, 0.0, 0.0, 48.6, 51.4, 168.2 -4.500000000000002,4.5,a-pcom-i3,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.5, 1.4, 12.0, 85.6, 0.0, 0.0, 0.5, 59.4, 40.6, 214.7 -2.1875,2.19,a-pcom-i3,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.8, 2.0, 2.8, 93.0, 0.4, 0.0, 0.0, 62.6, 37.4, 283.8 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 1.8, 0.4, 2.3, 94.7, 0.8, 0.0, 0.0, 54.7, 45.3, 256.4 -2.34375,2.34,a-pcom-i3,2019-20,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 5.6, 92.5, 0.0, 0.0, 1.9, 90.5, 9.5, 53.6 -1,1,a-pcom-i3,2019-20,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 41.2 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Greenfield - Greenfield High,01140505, 0.0, 1.2, 1.2, 96.3, 0.0, 0.0, 1.2, 62.7, 37.3, 80.1 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Greenfield - Greenfield Middle,01140305, 2.0, 2.0, 0.0, 96.1, 0.0, 0.0, 0.0, 78.7, 21.3, 60.9 -1,1,a-pcom-i3,2019-20,Greenfield - Newton School,01140035, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 92.7, 7.3, 41.7 -1,1,a-pcom-i3,2019-20,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 31.7 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 2.0, 2.0, 2.0, 93.9, 0.0, 0.0, 0.0, 72.4, 27.6, 48.9 -1,1,a-pcom-i3,2019-20,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.0 -1,1,a-pcom-i3,2019-20,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 93.5, 6.5, 62.0 -1,1,a-pcom-i3,2019-20,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 98.7, 1.3, 0.0, 0.0, 62.2, 37.8, 78.5 -1,1,a-pcom-i3,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 83.9, 16.1, 98.1 -1,1,a-pcom-i3,2019-20,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 47.0 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Hadley - Hadley Elementary,01170015, 2.0, 2.0, 0.0, 95.9, 0.0, 0.0, 0.0, 87.8, 12.2, 49.2 -2.281249999999999,2.28,a-pcom-i3,2019-20,Hadley - Hopkins Academy,01170505, 2.4, 0.0, 4.9, 92.7, 0.0, 0.0, 0.0, 73.2, 26.8, 41.1 -1,1,a-pcom-i3,2019-20,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.6, 14.4, 62.4 -1,1,a-pcom-i3,2019-20,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 35.0 -1,1,a-pcom-i3,2019-20,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 96.6, 3.4, 40.8 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 2.2, 1.4, 94.2, 0.0, 0.0, 2.2, 61.7, 38.3, 72.9 -2.437499999999999,2.44,a-pcom-i3,2019-20,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 3.4, 1.8, 92.2, 0.0, 0.0, 2.5, 82.9, 17.1, 55.0 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Hamilton-Wenham - Winthrop School,06750015, 0.0, 1.7, 0.8, 95.8, 0.0, 0.0, 1.7, 94.6, 5.4, 58.9 -4.125000000000001,4.13,a-pcom-i3,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 4.7, 3.9, 4.7, 86.8, 0.0, 0.0, 0.0, 59.7, 40.3, 64.5 -4.750000000000001,4.75,a-pcom-i3,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 10.1, 2.5, 2.5, 84.8, 0.0, 0.0, 0.0, 62.0, 38.0, 39.5 -1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Green Meadows Elementary,06800005, 1.6, 0.0, 0.0, 96.9, 0.0, 0.0, 1.6, 92.1, 7.9, 63.6 -1.5625,1.56,a-pcom-i3,2019-20,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.7, 0.0, 3.3, 95.0, 0.0, 0.0, 0.0, 98.3, 1.7, 60.5 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.9, 0.0, 3.5, 95.7, 0.0, 0.0, 0.0, 69.8, 30.2, 115.9 -1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 36.7 -1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 40.0 -1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.1, 27.9, 71.6 -1,1,a-pcom-i3,2019-20,Hampshire - Hampshire Regional High,06830505, 0.9, 0.9, 0.9, 97.3, 0.0, 0.0, 0.0, 68.7, 31.3, 111.6 -1,1,a-pcom-i3,2019-20,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 14.7 -1,1,a-pcom-i3,2019-20,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 65.8 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Hanover - Center Elementary,01220005, 0.0, 1.6, 1.6, 96.7, 0.0, 0.0, 0.0, 91.9, 8.1, 61.4 -1,1,a-pcom-i3,2019-20,Hanover - Hanover High,01220505, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 67.0, 33.0, 95.5 -1,1,a-pcom-i3,2019-20,Hanover - Hanover Middle,01220305, 0.0, 0.0, 1.0, 98.0, 1.0, 0.0, 0.0, 76.9, 23.1, 101.7 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Harvard - Bromfield,01250505, 0.0, 0.0, 2.5, 96.2, 0.0, 1.3, 0.0, 72.5, 27.5, 79.9 -2.437499999999999,2.44,a-pcom-i3,2019-20,Harvard - Hildreth Elementary School,01250005, 1.7, 4.3, 1.7, 92.2, 0.0, 0.0, 0.0, 91.4, 8.6, 58.1 -1,1,a-pcom-i3,2019-20,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 86.5, 13.5, 40.0 -1,1,a-pcom-i3,2019-20,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.2, 32.8, 32.3 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 95.3, 4.7, 74.9 -2.4687500000000018,2.47,a-pcom-i3,2019-20,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 7.9, 92.1, 0.0, 0.0, 0.0, 85.0, 15.0, 113.4 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 81.8, 18.2, 72.7 -1,1,a-pcom-i3,2019-20,Haverhill - Crowell,01280515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 32.3, 67.7, 3.1 -2.1875,2.19,a-pcom-i3,2019-20,Haverhill - Dr Paul Nettle,01280050, 0.0, 0.0, 7.0, 93.0, 0.0, 0.0, 0.0, 83.4, 16.6, 78.2 -2.5312499999999982,2.53,a-pcom-i3,2019-20,Haverhill - Golden Hill,01280026, 0.0, 1.3, 6.9, 91.9, 0.0, 0.0, 0.0, 90.0, 10.0, 79.9 -3.5625000000000018,3.56,a-pcom-i3,2019-20,Haverhill - Greenleaf Academy,01280033, 0.0, 0.0, 11.4, 88.6, 0.0, 0.0, 0.0, 54.4, 45.6, 17.5 -3.3124999999999982,3.31,a-pcom-i3,2019-20,Haverhill - Haverhill High,01280505, 0.9, 1.8, 7.9, 89.4, 0.0, 0.0, 0.0, 66.6, 33.4, 226.6 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Haverhill - John G Whittier,01280085, 2.0, 0.0, 3.0, 95.1, 0.0, 0.0, 0.0, 75.6, 24.4, 50.7 -2.1562500000000018,2.16,a-pcom-i3,2019-20,Haverhill - Moody,01280045, 2.3, 2.3, 2.3, 93.1, 0.0, 0.0, 0.0, 100.0, 0.0, 43.5 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 93.2, 6.8, 76.6 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 90.6, 9.4, 66.5 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Haverhill - TEACH,01280073, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 80.9, 19.1, 26.1 -2.2187499999999982,2.22,a-pcom-i3,2019-20,Haverhill - Tilton,01280075, 0.0, 0.0, 7.1, 92.9, 0.0, 0.0, 0.0, 94.3, 5.7, 70.5 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Haverhill - Tilton Upper Middle School,01280105, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 92.0, 8.0, 28.2 -1,1,a-pcom-i3,2019-20,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 15.6 -1,1,a-pcom-i3,2019-20,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 32.4 -29.093749999999996,5,a-pcom-i3,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 75.9, 3.4, 10.3, 6.9, 0.0, 0.0, 3.4, 72.4, 27.6, 29.0 -3.5625000000000018,3.56,a-pcom-i3,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 2.9, 2.8, 2.9, 88.6, 0.0, 0.0, 2.9, 91.4, 8.6, 35.0 -2.34375,2.34,a-pcom-i3,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 1.9, 0.0, 3.7, 92.5, 0.0, 0.0, 1.9, 83.7, 16.3, 39.7 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Hingham - East Elementary School,01310005, 1.2, 0.0, 0.0, 96.3, 1.2, 0.0, 1.2, 91.9, 8.1, 80.7 -1,1,a-pcom-i3,2019-20,Hingham - Hingham High,01310505, 0.7, 0.5, 0.7, 98.1, 0.0, 0.0, 0.0, 67.9, 32.1, 146.3 -1.09375,1.09,a-pcom-i3,2019-20,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 2.6, 96.5, 0.0, 0.0, 0.9, 78.8, 21.2, 114.8 -1,1,a-pcom-i3,2019-20,Hingham - Plymouth River,01310019, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 91.4, 8.6, 61.9 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Hingham - South Elementary,01310020, 1.4, 2.9, 0.0, 95.7, 0.0, 0.0, 0.0, 96.2, 3.8, 69.3 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Hingham - Wm L Foster Elementary,01310010, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 94.2, 5.8, 63.0 -1,1,a-pcom-i3,2019-20,Holbrook - Holbrook Middle High School,01330505, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 68.3, 31.7, 62.4 -2.093750000000001,2.09,a-pcom-i3,2019-20,Holbrook - John F Kennedy,01330018, 5.3, 1.3, 0.0, 93.3, 0.0, 0.0, 0.0, 98.7, 1.3, 74.9 -1,1,a-pcom-i3,2019-20,Holland - Holland Elementary,01350005, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 92.5, 7.5, 32.7 -1,1,a-pcom-i3,2019-20,Holliston - Holliston High,01360505, 0.0, 2.0, 1.0, 97.0, 0.0, 0.0, 0.0, 67.8, 32.2, 101.4 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Holliston - Miller School,01360007, 1.1, 0.0, 1.2, 94.6, 1.1, 0.0, 2.1, 93.4, 6.6, 95.0 -1,1,a-pcom-i3,2019-20,Holliston - Placentino Elementary,01360010, 0.0, 1.0, 0.9, 98.1, 0.0, 0.0, 0.0, 94.6, 5.4, 100.5 -1,1,a-pcom-i3,2019-20,Holliston - Robert H. Adams Middle School,01360305, 0.0, 2.1, 1.0, 96.9, 0.0, 0.0, 0.0, 84.8, 15.2, 97.5 -13.406249999999998,5,a-pcom-i3,2019-20,Holyoke - E N White Elementary,01370045, 3.0, 0.0, 39.9, 57.1, 0.0, 0.0, 0.0, 92.6, 7.4, 67.7 -9.312499999999998,5,a-pcom-i3,2019-20,Holyoke - H.B. Lawrence School,01370070, 5.2, 0.0, 24.6, 70.2, 0.0, 0.0, 0.0, 94.8, 5.2, 38.6 -10.125000000000002,5,a-pcom-i3,2019-20,Holyoke - Holyoke High,01370505, 4.0, 1.5, 26.9, 67.6, 0.0, 0.0, 0.0, 57.0, 43.0, 198.7 -11.031249999999998,5,a-pcom-i3,2019-20,Holyoke - Holyoke STEM Academy,01370320, 6.0, 0.0, 29.3, 64.7, 0.0, 0.0, 0.0, 62.4, 37.6, 33.3 -15.406249999999998,5,a-pcom-i3,2019-20,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 49.3, 50.7, 0.0, 0.0, 0.0, 84.3, 15.7, 31.4 -11.687499999999998,5,a-pcom-i3,2019-20,Holyoke - Kelly Elementary,01370040, 8.2, 0.0, 29.2, 62.6, 0.0, 0.0, 0.0, 75.4, 24.6, 48.7 -11.625,5,a-pcom-i3,2019-20,Holyoke - Lt Clayre Sullivan Elementary,01370055, 6.8, 1.4, 29.0, 62.8, 0.0, 0.0, 0.0, 85.0, 15.0, 73.3 -6.593749999999998,5,a-pcom-i3,2019-20,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 21.1, 78.9, 0.0, 0.0, 0.0, 93.6, 6.4, 62.8 -12.25,5,a-pcom-i3,2019-20,Holyoke - Maurice A Donahue Elementary,01370060, 7.3, 0.0, 30.8, 60.8, 0.0, 0.0, 1.0, 78.2, 21.8, 95.7 -10.15625,5,a-pcom-i3,2019-20,Holyoke - Morgan Full Service Community School,01370025, 7.9, 0.0, 22.7, 67.5, 2.0, 0.0, 0.0, 98.0, 2.0, 50.8 -19.4375,5,a-pcom-i3,2019-20,Holyoke - Veritas Prep Holyoke,01370075, 21.6, 5.4, 29.7, 37.8, 5.4, 0.0, 0.0, 75.7, 24.3, 37.0 -13.1875,5,a-pcom-i3,2019-20,Holyoke - William R. Peck School,01370030, 3.8, 0.0, 36.4, 57.8, 0.0, 0.0, 1.9, 78.6, 21.4, 52.1 -12.65625,5,a-pcom-i3,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 3.2, 0.0, 37.3, 59.5, 0.0, 0.0, 0.0, 69.7, 30.3, 92.5 -1,1,a-pcom-i3,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,06030020, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 96.5, 3.5, 81.9 -1,1,a-pcom-i3,2019-20,Hoosac Valley Regional - Hoosac Valley High School,06030505, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 74.1, 25.9, 63.4 -1,1,a-pcom-i3,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,06030315, 1.6, 0.0, 0.0, 96.9, 0.0, 1.6, 0.0, 72.4, 27.6, 63.5 -1,1,a-pcom-i3,2019-20,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.2, 25.8, 72.5 -1,1,a-pcom-i3,2019-20,Hopedale - Memorial,01380010, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 97.6, 2.4, 89.1 -1,1,a-pcom-i3,2019-20,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 15.5 -1,1,a-pcom-i3,2019-20,Hopkinton - Elmwood,01390010, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 90.1, 9.9, 65.7 -1,1,a-pcom-i3,2019-20,Hopkinton - Hopkins Elementary School,01390015, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 92.4, 7.6, 65.7 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Hopkinton - Hopkinton High,01390505, 0.0, 1.7, 2.0, 96.3, 0.0, 0.0, 0.0, 61.3, 38.7, 126.2 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Hopkinton - Hopkinton Middle School,01390305, 1.1, 2.0, 1.6, 95.3, 0.0, 0.0, 0.0, 78.0, 22.0, 91.9 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Hopkinton - Hopkinton Pre-School,01390003, 4.8, 0.0, 0.0, 95.2, 0.0, 0.0, 0.0, 100.0, 0.0, 18.8 -1.25,1.25,a-pcom-i3,2019-20,Hopkinton - Marathon Elementary School,01390005, 0.0, 2.7, 1.3, 96.0, 0.0, 0.0, 0.0, 94.7, 5.3, 75.4 -1,1,a-pcom-i3,2019-20,Hudson - C A Farley,01410030, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 97.1, 2.9, 69.2 -1.40625,1.41,a-pcom-i3,2019-20,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 84.9, 15.1, 88.5 -1,1,a-pcom-i3,2019-20,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 50.0 -1,1,a-pcom-i3,2019-20,Hudson - Hudson High,01410505, 0.7, 0.7, 0.7, 97.8, 0.0, 0.0, 0.0, 74.5, 25.5, 133.5 -1,1,a-pcom-i3,2019-20,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 61.7 -1,1,a-pcom-i3,2019-20,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.1, 35.9, 45.7 -1,1,a-pcom-i3,2019-20,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 57.4 -1,1,a-pcom-i3,2019-20,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.6, 19.4, 31.0 -2.875000000000001,2.88,a-pcom-i3,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 1.8, 2.6, 3.9, 90.8, 0.0, 0.0, 1.0, 73.7, 26.3, 101.7 -1,1,a-pcom-i3,2019-20,Ipswich - Ipswich High,01440505, 1.3, 0.0, 1.3, 97.5, 0.0, 0.0, 0.0, 71.4, 28.6, 78.8 -1,1,a-pcom-i3,2019-20,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 80.5, 19.5, 65.0 -1,1,a-pcom-i3,2019-20,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 94.5, 5.5, 71.9 -1,1,a-pcom-i3,2019-20,Ipswich - Winthrop,01440015, 0.0, 0.0, 1.5, 97.0, 0.0, 1.5, 0.0, 92.8, 7.2, 67.7 -19.937499999999996,5,a-pcom-i3,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 36.2, 2.9, 21.7, 36.2, 1.4, 0.0, 1.4, 73.9, 26.1, 69.0 -13.562499999999998,5,a-pcom-i3,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 23.2, 5.6, 11.8, 56.6, 0.0, 0.0, 2.8, 72.3, 27.7, 178.2 -1,1,a-pcom-i3,2019-20,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 81.7, 18.3, 86.5 -1,1,a-pcom-i3,2019-20,King Philip - King Philip Regional High,06900505, 0.0, 0.8, 1.5, 97.7, 0.0, 0.0, 0.0, 68.4, 31.6, 132.8 -1,1,a-pcom-i3,2019-20,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 60.7 -1,1,a-pcom-i3,2019-20,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 71.4 -3.6249999999999982,3.62,a-pcom-i3,2019-20,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 10.0, 88.4, 1.6, 0.0, 0.0, 75.4, 24.6, 61.1 -4.968750000000002,4.97,a-pcom-i3,2019-20,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 15.9, 84.1, 0.0, 0.0, 0.0, 63.9, 36.1, 55.5 -3.75,3.75,a-pcom-i3,2019-20,Lawrence - Community Day Arlington,01490009, 0.0, 1.3, 10.7, 88.0, 0.0, 0.0, 0.0, 85.0, 15.0, 75.4 -5.78125,5,a-pcom-i3,2019-20,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 18.5, 81.5, 0.0, 0.0, 0.0, 91.4, 8.6, 70.6 -4.593750000000001,4.59,a-pcom-i3,2019-20,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 14.7, 85.3, 0.0, 0.0, 0.0, 87.6, 12.4, 88.7 -4.437500000000001,4.44,a-pcom-i3,2019-20,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 14.2, 85.8, 0.0, 0.0, 0.0, 91.8, 8.2, 49.1 -6.687500000000002,5,a-pcom-i3,2019-20,Lawrence - Frost Middle School,01490525, 3.9, 2.0, 13.5, 78.6, 0.0, 2.0, 0.0, 68.8, 31.2, 50.8 -5.093749999999999,5,a-pcom-i3,2019-20,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.5, 14.8, 83.7, 0.0, 0.0, 0.0, 97.0, 3.0, 67.8 -3.9374999999999982,3.94,a-pcom-i3,2019-20,Lawrence - Guilmette Middle School,01490025, 1.4, 0.0, 11.2, 87.4, 0.0, 0.0, 0.0, 74.9, 25.1, 71.9 -4.874999999999998,4.87,a-pcom-i3,2019-20,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 11.7, 84.4, 3.9, 0.0, 0.0, 59.0, 41.0, 25.6 -10.125000000000002,5,a-pcom-i3,2019-20,Lawrence - James F Hennessey,01490020, 0.0, 1.9, 30.5, 67.6, 0.0, 0.0, 0.0, 90.6, 9.4, 53.4 -12.5625,5,a-pcom-i3,2019-20,Lawrence - John Breen School,01490003, 0.0, 0.0, 37.9, 59.8, 2.4, 0.0, 0.0, 99.9, 0.1, 42.4 -6.25,5,a-pcom-i3,2019-20,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 20.0, 80.0, 0.0, 0.0, 0.0, 91.3, 8.7, 35.1 -14.343749999999998,5,a-pcom-i3,2019-20,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 45.9, 54.1, 0.0, 0.0, 0.0, 91.6, 8.4, 24.2 -5.093749999999999,5,a-pcom-i3,2019-20,Lawrence - Lawrence Family Public Academy,01490011, 3.2, 0.0, 13.1, 83.7, 0.0, 0.0, 0.0, 99.9, 0.1, 31.2 -8.03125,5,a-pcom-i3,2019-20,Lawrence - Lawrence High School,01490515, 0.8, 1.1, 23.7, 74.3, 0.0, 0.0, 0.0, 60.6, 39.4, 363.2 -6.156250000000001,5,a-pcom-i3,2019-20,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 19.7, 80.3, 0.0, 0.0, 0.0, 85.7, 14.3, 56.1 -4.031250000000002,4.03,a-pcom-i3,2019-20,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 12.9, 87.1, 0.0, 0.0, 0.0, 69.4, 30.6, 62.1 -4.84375,4.84,a-pcom-i3,2019-20,Lawrence - Robert Frost,01490018, 3.1, 1.5, 10.8, 84.5, 0.0, 0.0, 0.0, 89.4, 10.6, 64.9 -7.218749999999998,5,a-pcom-i3,2019-20,Lawrence - Rollins Early Childhood Center,01490001, 0.0, 0.0, 23.1, 76.9, 0.0, 0.0, 0.0, 95.3, 4.7, 43.4 -11.4375,5,a-pcom-i3,2019-20,Lawrence - School for Exceptional Studies,01490537, 3.4, 0.9, 32.3, 63.4, 0.0, 0.0, 0.0, 64.5, 35.5, 116.1 -5.218750000000001,5,a-pcom-i3,2019-20,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 14.2, 83.3, 1.3, 0.0, 1.3, 83.3, 16.7, 78.0 -7.843749999999998,5,a-pcom-i3,2019-20,Lawrence - Spark Academy,01490085, 3.5, 0.0, 21.5, 74.9, 0.0, 0.0, 0.0, 80.2, 19.8, 57.0 -13.718749999999998,5,a-pcom-i3,2019-20,Lawrence - UP Academy Leonard Middle School,01490090, 2.4, 0.0, 39.0, 56.1, 2.4, 0.0, 0.0, 61.0, 39.0, 41.1 -8.34375,5,a-pcom-i3,2019-20,Lawrence - UP Academy Oliver Middle School,01490049, 2.2, 6.6, 17.8, 73.3, 0.0, 0.0, 0.0, 75.5, 24.5, 45.1 -8.03125,5,a-pcom-i3,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.1, 4.3, 20.3, 74.3, 0.0, 0.0, 0.0, 89.3, 10.7, 93.5 -1,1,a-pcom-i3,2019-20,Lee - Lee Elementary,01500025, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 92.4, 7.6, 63.4 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Lee - Lee Middle/High School,01500505, 0.0, 1.6, 3.3, 95.1, 0.0, 0.0, 0.0, 76.8, 23.2, 61.3 -1,1,a-pcom-i3,2019-20,Leicester - Leicester Elementary,01510005, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 98.6, 1.4, 71.1 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Leicester - Leicester High,01510505, 0.0, 1.7, 2.5, 92.4, 0.0, 0.0, 3.4, 71.5, 28.5, 59.3 -2.1875,2.19,a-pcom-i3,2019-20,Leicester - Leicester Integrated Preschool,01510001, 0.0, 7.0, 0.0, 93.0, 0.0, 0.0, 0.0, 93.0, 7.0, 14.4 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Leicester - Leicester Middle,01510015, 0.0, 0.0, 2.6, 95.7, 0.0, 0.0, 1.7, 79.2, 20.8, 57.6 -1,1,a-pcom-i3,2019-20,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 62.6, 37.4, 70.5 -1,1,a-pcom-i3,2019-20,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 62.9 -2.906249999999999,2.91,a-pcom-i3,2019-20,Leominster - Bennett,01530003, 4.7, 0.0, 4.7, 90.7, 0.0, 0.0, 0.0, 100.0, 0.0, 21.4 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Leominster - Center For Technical Education Innovation,01530605, 0.0, 2.1, 2.1, 95.7, 0.0, 0.0, 0.0, 37.9, 62.1, 47.0 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Leominster - Fall Brook,01530007, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 97.6, 2.4, 82.3 -3.062499999999999,3.06,a-pcom-i3,2019-20,Leominster - Frances Drake School,01530010, 2.8, 0.9, 6.1, 90.2, 0.0, 0.0, 0.0, 89.7, 10.3, 106.7 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Leominster - Johnny Appleseed,01530025, 1.9, 1.3, 1.3, 95.6, 0.0, 0.0, 0.0, 96.9, 3.1, 79.5 -6.218750000000002,5,a-pcom-i3,2019-20,Leominster - Leominster Center for Excellence,01530515, 10.0, 0.0, 10.0, 80.1, 0.0, 0.0, 0.0, 70.1, 29.9, 10.1 -2.0624999999999982,2.06,a-pcom-i3,2019-20,Leominster - Leominster High School,01530505, 2.0, 1.3, 3.3, 93.4, 0.0, 0.0, 0.0, 66.9, 33.1, 152.4 -2.2187499999999982,2.22,a-pcom-i3,2019-20,Leominster - Lincoln School,01530005, 0.0, 0.0, 7.1, 92.9, 0.0, 0.0, 0.0, 96.5, 3.5, 28.3 -2.03125,2.03,a-pcom-i3,2019-20,Leominster - Northwest,01530030, 3.9, 0.0, 2.6, 93.5, 0.0, 0.0, 0.0, 89.5, 10.5, 76.4 -1,1,a-pcom-i3,2019-20,Leominster - Priest Street,01530040, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 95.0, 5.0, 30.3 -1.8437500000000018,1.84,a-pcom-i3,2019-20,Leominster - Samoset School,01530045, 1.5, 0.0, 4.5, 94.1, 0.0, 0.0, 0.0, 75.5, 24.5, 67.3 -1.8437500000000018,1.84,a-pcom-i3,2019-20,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 5.9, 94.1, 0.0, 0.0, 0.0, 84.4, 15.6, 93.8 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Leverett - Leverett Elementary,01540005, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 79.9, 20.1, 29.4 -5.687500000000001,5,a-pcom-i3,2019-20,Lexington - Bowman,01550008, 4.8, 8.5, 2.9, 81.8, 0.0, 0.7, 1.4, 84.8, 15.2, 73.5 -3.374999999999999,3.37,a-pcom-i3,2019-20,Lexington - Bridge,01550006, 3.0, 4.3, 0.9, 89.2, 0.0, 0.0, 2.6, 91.6, 8.4, 76.7 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Lexington - Fiske,01550015, 1.6, 2.5, 1.1, 94.8, 0.0, 0.0, 0.0, 87.7, 12.3, 88.9 -4.437500000000001,4.44,a-pcom-i3,2019-20,Lexington - Harrington,01550030, 3.5, 6.8, 2.6, 85.8, 0.0, 0.0, 1.4, 87.3, 12.7, 72.4 -4.21875,4.22,a-pcom-i3,2019-20,Lexington - Jonas Clarke Middle,01550305, 3.5, 4.8, 3.9, 86.5, 0.0, 0.0, 1.2, 75.8, 24.2, 150.6 -3.9374999999999982,3.94,a-pcom-i3,2019-20,Lexington - Joseph Estabrook,01550010, 3.0, 3.4, 4.8, 87.4, 0.0, 0.0, 1.4, 89.8, 10.2, 72.9 -1.875,1.88,a-pcom-i3,2019-20,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 1.3, 94.0, 2.7, 0.0, 2.0, 100.0, 0.0, 33.4 -3.218749999999999,3.22,a-pcom-i3,2019-20,Lexington - Lexington High,01550505, 1.9, 3.6, 3.7, 89.7, 0.0, 0.0, 1.0, 71.8, 28.2, 294.5 -6.375000000000002,5,a-pcom-i3,2019-20,Lexington - Maria Hastings,01550035, 7.7, 9.7, 1.7, 79.6, 0.0, 0.0, 1.2, 93.0, 7.0, 81.7 -3.4375,3.44,a-pcom-i3,2019-20,Lexington - Wm Diamond Middle,01550310, 1.8, 5.2, 4.0, 89.0, 0.0, 0.0, 0.0, 74.9, 25.1, 130.1 -13.78125,5,a-pcom-i3,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 12.8, 4.9, 21.5, 55.9, 0.0, 0.0, 4.9, 63.3, 36.7, 40.6 -2.03125,2.03,a-pcom-i3,2019-20,Lincoln - Hanscom Middle,01570305, 2.0, 0.1, 4.4, 93.5, 0.0, 0.0, 0.0, 77.0, 23.0, 49.9 -2.65625,2.66,a-pcom-i3,2019-20,Lincoln - Hanscom Primary,01570006, 3.7, 0.0, 4.8, 91.5, 0.0, 0.0, 0.0, 93.4, 6.6, 64.2 -3.343750000000001,3.34,a-pcom-i3,2019-20,Lincoln - Lincoln School,01570025, 4.8, 3.8, 1.2, 89.3, 1.0, 0.0, 0.0, 89.7, 10.3, 103.9 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 2.8, 2.4, 1.0, 92.4, 0.5, 0.5, 0.5, 61.6, 38.4, 209.8 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Littleton - Littleton High School,01580505, 0.0, 0.0, 0.4, 95.8, 0.0, 0.0, 3.9, 63.8, 36.2, 51.8 -1,1,a-pcom-i3,2019-20,Littleton - Littleton Middle School,01580305, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 83.1, 16.9, 46.1 -1,1,a-pcom-i3,2019-20,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 44.6 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Littleton - Shaker Lane Elementary,01580005, 0.0, 2.8, 1.2, 94.3, 0.0, 0.0, 1.6, 98.0, 2.0, 61.5 -1,1,a-pcom-i3,2019-20,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 61.7 -1,1,a-pcom-i3,2019-20,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 54.6 -1,1,a-pcom-i3,2019-20,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 81.0, 19.0, 47.2 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Longmeadow - Longmeadow High,01590505, 0.9, 0.0, 2.6, 96.6, 0.0, 0.0, 0.0, 68.8, 31.2, 116.1 -1,1,a-pcom-i3,2019-20,Longmeadow - Williams Middle,01590305, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 79.4, 20.6, 44.3 -1,1,a-pcom-i3,2019-20,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 77.6 -3.500000000000001,3.5,a-pcom-i3,2019-20,Lowell - Abraham Lincoln,01600020, 0.7, 4.5, 6.0, 88.8, 0.0, 0.0, 0.0, 94.9, 5.1, 66.9 -4.093749999999998,4.09,a-pcom-i3,2019-20,Lowell - B.F. Butler Middle School,01600310, 5.4, 4.6, 3.1, 86.9, 0.0, 0.0, 0.0, 78.9, 21.1, 64.8 -2.875000000000001,2.88,a-pcom-i3,2019-20,Lowell - Bartlett Community Partnership,01600090, 1.8, 3.7, 2.5, 90.8, 0.0, 1.2, 0.0, 87.3, 12.7, 81.2 -5.874999999999999,5,a-pcom-i3,2019-20,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 11.0, 4.7, 81.2, 3.1, 0.0, 0.0, 96.9, 3.1, 31.9 -1.875,1.88,a-pcom-i3,2019-20,Lowell - Charles W Morey,01600030, 0.0, 1.5, 4.5, 94.0, 0.0, 0.0, 0.0, 94.0, 6.0, 66.3 -4.375,4.38,a-pcom-i3,2019-20,Lowell - Charlotte M Murkland Elementary,01600080, 0.7, 7.4, 5.9, 86.0, 0.0, 0.0, 0.0, 86.1, 13.9, 67.7 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Lowell - Dr An Wang School,01600345, 0.0, 0.7, 4.1, 95.2, 0.0, 0.0, 0.0, 82.8, 17.2, 72.8 -1,1,a-pcom-i3,2019-20,Lowell - Dr Gertrude Bailey,01600002, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 93.6, 6.4, 62.4 -4.500000000000002,4.5,a-pcom-i3,2019-20,Lowell - Dr. Janice Adie Day School,01600605, 0.0, 8.3, 6.2, 85.6, 0.0, 0.0, 0.0, 85.1, 14.9, 48.5 -3.531249999999999,3.53,a-pcom-i3,2019-20,Lowell - Greenhalge,01600015, 2.8, 0.0, 4.2, 88.7, 1.4, 1.4, 1.4, 95.8, 4.2, 71.0 -6.218750000000002,5,a-pcom-i3,2019-20,Lowell - Henry J Robinson Middle,01600330, 1.9, 5.1, 11.6, 80.1, 0.0, 0.0, 1.3, 71.2, 28.8, 77.7 -2.718750000000001,2.72,a-pcom-i3,2019-20,Lowell - James S Daley Middle School,01600315, 1.8, 3.7, 2.4, 91.3, 0.7, 0.0, 0.0, 82.2, 17.8, 82.0 -3.4687499999999982,3.47,a-pcom-i3,2019-20,Lowell - James Sullivan Middle School,01600340, 2.5, 0.0, 7.4, 88.9, 0.0, 1.2, 0.0, 77.2, 22.8, 81.0 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Lowell - John J Shaughnessy,01600050, 1.5, 0.7, 1.5, 96.3, 0.0, 0.0, 0.0, 94.0, 6.0, 67.1 -6.031249999999999,5,a-pcom-i3,2019-20,Lowell - Joseph McAvinnue,01600010, 0.7, 5.7, 12.9, 80.7, 0.0, 0.0, 0.0, 90.0, 10.0, 69.9 -4.093749999999998,4.09,a-pcom-i3,2019-20,Lowell - Kathryn P. Stoklosa Middle School,01600360, 1.3, 9.8, 0.0, 86.9, 0.0, 0.7, 1.3, 62.8, 37.2, 76.3 -6.968749999999999,5,a-pcom-i3,2019-20,Lowell - Laura Lee Therapeutic Day School,01600085, 5.6, 0.0, 16.8, 77.7, 0.0, 0.0, 0.0, 67.6, 32.4, 17.9 -5.843750000000001,5,a-pcom-i3,2019-20,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 2.7, 16.0, 81.3, 0.0, 0.0, 0.0, 65.3, 34.7, 18.8 -3.9374999999999982,3.94,a-pcom-i3,2019-20,Lowell - Lowell High,01600505, 2.3, 4.7, 4.9, 87.4, 0.0, 0.0, 0.7, 63.7, 36.3, 305.9 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Lowell - Moody Elementary,01600027, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 93.9, 6.1, 32.6 -1,1,a-pcom-i3,2019-20,Lowell - Pawtucketville Memorial,01600036, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 91.0, 9.0, 72.6 -4.343750000000002,4.34,a-pcom-i3,2019-20,Lowell - Peter W Reilly,01600040, 1.6, 0.0, 12.3, 86.1, 0.0, 0.0, 0.0, 94.3, 5.7, 61.1 -3.031250000000001,3.03,a-pcom-i3,2019-20,Lowell - Pyne Arts,01600018, 2.8, 1.4, 5.6, 90.3, 0.0, 0.0, 0.0, 83.5, 16.5, 71.9 -4.6875,4.69,a-pcom-i3,2019-20,Lowell - Rogers STEM Academy,01600005, 2.7, 6.4, 5.9, 85.0, 0.0, 0.0, 0.0, 81.8, 18.2, 93.2 -4.718749999999998,4.72,a-pcom-i3,2019-20,Lowell - S Christa McAuliffe Elementary,01600075, 1.5, 1.5, 12.0, 84.9, 0.0, 0.0, 0.0, 90.4, 9.6, 66.4 -6.937500000000001,5,a-pcom-i3,2019-20,Lowell - The Career Academy,01600515, 5.5, 11.1, 5.5, 77.8, 0.0, 0.0, 0.0, 65.1, 34.9, 18.1 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Lowell - Washington,01600055, 0.0, 0.0, 2.2, 95.6, 2.2, 0.0, 0.0, 85.7, 14.3, 45.5 -8.65625,5,a-pcom-i3,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 4.0, 9.9, 11.9, 72.3, 0.0, 0.0, 2.0, 77.3, 22.7, 101.3 -9.249999999999998,5,a-pcom-i3,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 14.8, 14.8, 70.4, 0.0, 0.0, 0.0, 77.8, 22.2, 13.5 -1,1,a-pcom-i3,2019-20,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 46.7 -1,1,a-pcom-i3,2019-20,Ludlow - East Street Elementary School,01610010, 1.1, 0.0, 1.1, 97.9, 0.0, 0.0, 0.0, 93.0, 7.0, 94.8 -1.09375,1.09,a-pcom-i3,2019-20,Ludlow - Ludlow Senior High,01610505, 0.9, 0.0, 1.7, 96.5, 0.0, 0.0, 0.9, 67.0, 33.0, 115.2 -1,1,a-pcom-i3,2019-20,Ludlow - Paul R Baird Middle,01610305, 1.0, 0.0, 1.0, 98.0, 0.0, 0.0, 0.0, 77.7, 22.3, 98.5 -1,1,a-pcom-i3,2019-20,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 90.5, 9.5, 53.3 -1,1,a-pcom-i3,2019-20,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.5, 37.5, 3.2 -1,1,a-pcom-i3,2019-20,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 0.0, 98.0, 0.0, 2.0, 0.0, 56.2, 43.8, 50.9 -1,1,a-pcom-i3,2019-20,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 49.4 -1,1,a-pcom-i3,2019-20,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 52.2 -1,1,a-pcom-i3,2019-20,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 43.7 -4.312499999999999,4.31,a-pcom-i3,2019-20,Lynn - A Drewicz Elementary,01630016, 0.0, 4.0, 7.9, 86.2, 0.0, 0.0, 2.0, 94.0, 6.0, 50.5 -2.5312499999999982,2.53,a-pcom-i3,2019-20,Lynn - Aborn,01630011, 3.9, 0.0, 3.9, 91.9, 0.0, 0.0, 0.4, 98.1, 1.9, 26.0 -4.656250000000002,4.66,a-pcom-i3,2019-20,Lynn - Breed Middle School,01630405, 2.7, 2.3, 6.9, 85.1, 0.0, 0.0, 3.1, 68.9, 31.1, 130.9 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Lynn - Brickett Elementary,01630020, 0.0, 2.9, 2.9, 93.9, 0.0, 0.0, 0.3, 98.0, 2.0, 34.4 -3.5625000000000018,3.56,a-pcom-i3,2019-20,Lynn - Capt William G Shoemaker,01630090, 0.0, 1.3, 8.9, 88.6, 0.0, 0.0, 1.3, 95.6, 4.4, 78.9 -5.0,5.0,a-pcom-i3,2019-20,Lynn - Classical High,01630505, 4.6, 0.0, 9.5, 84.0, 0.0, 0.0, 2.0, 67.1, 32.9, 153.3 -4.781249999999999,4.78,a-pcom-i3,2019-20,Lynn - Cobbet Elementary,01630035, 0.0, 2.8, 11.1, 84.7, 0.0, 0.0, 1.4, 93.0, 7.0, 71.8 -2.749999999999999,2.75,a-pcom-i3,2019-20,Lynn - E J Harrington,01630045, 1.2, 1.2, 6.3, 91.2, 0.0, 0.0, 0.1, 98.3, 1.7, 84.4 -3.531249999999999,3.53,a-pcom-i3,2019-20,Lynn - Edward A Sisson,01630095, 4.2, 0.0, 7.1, 88.7, 0.0, 0.0, 0.0, 94.2, 5.8, 47.2 -7.34375,5,a-pcom-i3,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 7.9, 0.0, 15.6, 76.5, 0.0, 0.0, 0.0, 52.1, 47.9, 51.5 -3.75,3.75,a-pcom-i3,2019-20,Lynn - Hood,01630055, 0.0, 1.7, 8.4, 88.0, 0.0, 0.0, 1.9, 95.5, 4.5, 59.3 -4.656250000000002,4.66,a-pcom-i3,2019-20,Lynn - Ingalls,01630060, 6.7, 2.7, 5.4, 85.1, 0.0, 0.0, 0.1, 97.0, 3.0, 74.5 -5.750000000000002,5,a-pcom-i3,2019-20,Lynn - Julia F Callahan,01630030, 6.7, 0.0, 10.0, 81.6, 1.7, 0.0, 0.0, 87.9, 10.4, 59.8 -2.562500000000001,2.56,a-pcom-i3,2019-20,Lynn - Lincoln-Thomson,01630070, 4.9, 0.0, 3.3, 91.8, 0.0, 0.0, 0.0, 93.7, 6.3, 30.3 -4.593750000000001,4.59,a-pcom-i3,2019-20,Lynn - Lynn English High,01630510, 1.3, 1.3, 10.7, 85.3, 0.0, 0.0, 1.3, 52.2, 47.8, 149.6 -6.09375,5,a-pcom-i3,2019-20,Lynn - Lynn Vocational Technical Institute,01630605, 4.0, 0.0, 14.3, 80.5, 0.0, 0.0, 1.2, 62.5, 37.5, 174.7 -2.9999999999999982,3.0,a-pcom-i3,2019-20,Lynn - Lynn Woods,01630075, 0.0, 0.0, 9.6, 90.4, 0.0, 0.0, 0.0, 92.8, 7.2, 20.9 -3.999999999999999,4.0,a-pcom-i3,2019-20,Lynn - Pickering Middle,01630420, 2.8, 0.0, 8.5, 87.2, 0.0, 0.0, 1.4, 77.3, 22.7, 70.4 -1,1,a-pcom-i3,2019-20,Lynn - Robert L Ford,01630050, 0.0, 0.0, 0.0, 99.8, 0.0, 0.0, 0.2, 91.2, 8.8, 44.5 -2.281249999999999,2.28,a-pcom-i3,2019-20,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 7.3, 92.7, 0.0, 0.0, 0.0, 91.5, 8.5, 34.0 -4.312499999999999,4.31,a-pcom-i3,2019-20,Lynn - Thurgood Marshall Mid,01630305, 4.7, 0.8, 8.2, 86.2, 0.0, 0.0, 0.2, 60.6, 39.4, 128.6 -2.34375,2.34,a-pcom-i3,2019-20,Lynn - Tracy,01630100, 0.0, 0.0, 5.0, 92.5, 2.5, 0.0, 0.0, 95.0, 5.0, 39.9 -6.312500000000001,5,a-pcom-i3,2019-20,Lynn - Washington Elementary School,01630005, 3.9, 2.0, 12.4, 79.8, 0.0, 0.0, 2.0, 92.9, 7.1, 51.1 -3.999999999999999,4.0,a-pcom-i3,2019-20,Lynn - William R Fallon,01630080, 3.2, 0.0, 9.6, 87.2, 0.0, 0.0, 0.0, 83.6, 13.2, 31.2 -2.6874999999999982,2.69,a-pcom-i3,2019-20,Lynn - Wm P Connery,01630040, 1.6, 1.6, 5.5, 91.4, 0.0, 0.0, 0.0, 89.0, 11.0, 63.9 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Lynnfield - Huckleberry Hill,01640010, 0.0, 1.5, 2.9, 95.6, 0.0, 0.0, 0.0, 98.1, 1.9, 68.7 -1,1,a-pcom-i3,2019-20,Lynnfield - Lynnfield High,01640505, 0.0, 1.3, 0.0, 97.4, 0.0, 0.0, 1.3, 66.8, 33.2, 76.8 -1,1,a-pcom-i3,2019-20,Lynnfield - Lynnfield Middle School,01640405, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 82.9, 17.1, 79.4 -1,1,a-pcom-i3,2019-20,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 7.6 -1.25,1.25,a-pcom-i3,2019-20,Lynnfield - Summer Street,01640020, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 98.0, 2.0, 50.2 -12.468749999999998,5,a-pcom-i3,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 22.6, 2.8, 12.9, 60.1, 0.4, 0.0, 1.3, 75.0, 25.0, 237.2 -3.28125,3.28,a-pcom-i3,2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 89.5, 0.0, 0.0, 10.5, 63.2, 36.8, 9.5 -2.250000000000001,2.25,a-pcom-i3,2019-20,Malden - Beebe,01650003, 2.1, 4.1, 1.0, 92.8, 0.0, 0.0, 0.0, 84.8, 15.2, 97.0 -2.9375000000000018,2.94,a-pcom-i3,2019-20,Malden - Ferryway,01650013, 2.1, 4.2, 2.1, 90.6, 1.0, 0.0, 0.0, 83.7, 16.3, 96.0 -3.0937500000000018,3.09,a-pcom-i3,2019-20,Malden - Forestdale,01650027, 2.1, 3.1, 4.2, 90.1, 0.0, 0.0, 0.5, 93.0, 7.0, 95.5 -2.34375,2.34,a-pcom-i3,2019-20,Malden - Linden,01650047, 4.7, 1.9, 0.0, 92.5, 0.0, 0.0, 0.9, 86.3, 13.7, 107.0 -5.218750000000001,5,a-pcom-i3,2019-20,Malden - Malden Early Learning Center,01650049, 11.5, 5.2, 0.0, 83.3, 0.0, 0.0, 0.0, 96.9, 3.1, 96.0 -4.125000000000001,4.13,a-pcom-i3,2019-20,Malden - Malden High,01650505, 4.5, 2.1, 4.5, 86.8, 0.0, 0.0, 2.2, 66.7, 33.3, 179.5 -6.281249999999998,5,a-pcom-i3,2019-20,Malden - Salemwood,01650057, 6.6, 6.6, 3.3, 79.9, 0.0, 0.0, 3.7, 85.1, 14.9, 121.9 -1,1,a-pcom-i3,2019-20,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 43.0 -1,1,a-pcom-i3,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.4, 1.6, 98.0, 0.0, 0.0, 0.0, 67.0, 33.0, 62.1 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.7, 2.1, 96.2, 0.0, 0.0, 0.0, 79.2, 20.8, 46.5 -1,1,a-pcom-i3,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 53.3 -1,1,a-pcom-i3,2019-20,Mansfield - Everett W Robinson,01670007, 1.1, 1.1, 0.6, 97.2, 0.0, 0.0, 0.0, 94.6, 5.4, 92.0 -1,1,a-pcom-i3,2019-20,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.8, 98.3, 0.0, 0.0, 0.8, 80.9, 19.1, 119.6 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Mansfield - Jordan/Jackson Elementary,01670014, 0.6, 2.1, 1.1, 95.1, 0.0, 0.0, 1.1, 92.5, 7.5, 93.3 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Mansfield - Mansfield High,01670505, 0.7, 0.7, 4.0, 94.7, 0.0, 0.0, 0.0, 67.1, 32.9, 150.2 -1,1,a-pcom-i3,2019-20,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.5 -5.249999999999999,5,a-pcom-i3,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505, 11.2, 0.0, 5.6, 83.2, 0.0, 0.0, 0.0, 70.9, 29.1, 17.9 -1,1,a-pcom-i3,2019-20,Marblehead - Dr. Samuel C. Eveleth,01680025, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 100.0, 0.0, 18.7 -1,1,a-pcom-i3,2019-20,Marblehead - Glover,01680020, 0.0, 0.0, 1.4, 97.3, 0.0, 1.4, 0.0, 95.9, 4.1, 73.4 -1,1,a-pcom-i3,2019-20,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 99.8, 0.0, 0.0, 0.2, 97.3, 2.7, 37.3 -1.71875,1.72,a-pcom-i3,2019-20,Marblehead - Marblehead High,01680505, 0.0, 2.1, 2.1, 94.5, 0.0, 0.0, 1.4, 62.2, 37.8, 144.8 -1,1,a-pcom-i3,2019-20,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 76.6, 23.4, 69.3 -1,1,a-pcom-i3,2019-20,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 90.9, 9.1, 109.5 -1,1,a-pcom-i3,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.4, 25.6, 31.7 -1.3750000000000018,1.38,a-pcom-i3,2019-20,Marion - Sippican,01690005, 3.5, 0.9, 0.0, 95.6, 0.0, 0.0, 0.0, 91.5, 8.5, 56.5 -2.0000000000000018,2.0,a-pcom-i3,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 2.1, 3.7, 93.6, 0.5, 0.0, 0.0, 78.2, 21.8, 188.5 -2.0624999999999982,2.06,a-pcom-i3,2019-20,Marlborough - Charles Jaworek School,01700030, 0.9, 0.6, 5.2, 93.4, 0.0, 0.0, 0.0, 93.8, 6.2, 116.0 -1.71875,1.72,a-pcom-i3,2019-20,Marlborough - Early Childhood Center,01700006, 0.0, 0.0, 3.6, 94.5, 0.0, 0.0, 1.8, 90.9, 9.1, 54.9 -1.5937499999999982,1.59,a-pcom-i3,2019-20,Marlborough - Francis J Kane,01700008, 0.0, 0.0, 5.1, 94.9, 0.0, 0.0, 0.0, 92.6, 7.4, 78.3 -3.062499999999999,3.06,a-pcom-i3,2019-20,Marlborough - Marlborough High,01700505, 3.7, 1.1, 4.3, 90.2, 0.6, 0.0, 0.0, 65.1, 34.9, 161.4 -1.4374999999999982,1.44,a-pcom-i3,2019-20,Marlborough - Richer,01700025, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 96.6, 3.4, 87.4 -1,1,a-pcom-i3,2019-20,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 56.9 -1,1,a-pcom-i3,2019-20,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 39.8 -1,1,a-pcom-i3,2019-20,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 99.2, 0.8, 0.0, 0.0, 84.1, 15.9, 118.6 -1,1,a-pcom-i3,2019-20,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.6, 97.7, 0.7, 0.0, 0.0, 88.6, 11.4, 62.9 -1,1,a-pcom-i3,2019-20,Marshfield - Marshfield High,01710505, 1.2, 0.0, 1.2, 97.5, 0.0, 0.0, 0.0, 70.9, 29.1, 161.7 -1,1,a-pcom-i3,2019-20,Marshfield - Martinson Elementary,01710025, 0.0, 1.2, 0.0, 97.5, 1.2, 0.0, 0.0, 94.5, 5.5, 80.4 -1,1,a-pcom-i3,2019-20,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 49.5 -2.875000000000001,2.88,a-pcom-i3,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.7, 1.2, 2.6, 90.8, 0.8, 0.0, 2.8, 64.6, 35.4, 121.1 -1,1,a-pcom-i3,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 86.0, 14.0, 30.4 -10.718749999999998,5,a-pcom-i3,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 19.4, 0.0, 11.4, 65.7, 0.0, 0.0, 3.5, 82.4, 17.6, 56.8 -1,1,a-pcom-i3,2019-20,Masconomet - Masconomet Regional High School,07050505, 0.1, 0.7, 0.7, 98.4, 0.0, 0.0, 0.0, 63.7, 36.3, 136.0 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Masconomet - Masconomet Regional Middle School,07050405, 2.3, 1.8, 1.3, 94.7, 0.0, 0.0, 0.0, 66.5, 33.5, 79.2 -1,1,a-pcom-i3,2019-20,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 64.1 -1.71875,1.72,a-pcom-i3,2019-20,Mashpee - Mashpee High,01720505, 2.6, 1.2, 0.0, 94.5, 0.0, 1.8, 0.0, 64.1, 35.9, 55.6 -2.250000000000001,2.25,a-pcom-i3,2019-20,Mashpee - Mashpee Middle School,01720020, 3.0, 1.1, 0.0, 92.8, 0.0, 3.0, 0.0, 81.4, 18.6, 33.2 -1,1,a-pcom-i3,2019-20,Mashpee - Quashnet School,01720035, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 84.3, 15.7, 63.6 -1,1,a-pcom-i3,2019-20,Mattapoisett - Center,01730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 39.4 -1,1,a-pcom-i3,2019-20,Mattapoisett - Old Hammondtown,01730010, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 92.9, 7.1, 32.3 -2.406250000000001,2.41,a-pcom-i3,2019-20,Maynard - Fowler School,01740305, 0.0, 1.4, 5.6, 92.3, 0.0, 0.0, 0.7, 78.3, 21.7, 71.1 -3.062499999999999,3.06,a-pcom-i3,2019-20,Maynard - Green Meadow,01740010, 0.0, 2.2, 7.6, 90.2, 0.0, 0.0, 0.0, 93.5, 6.5, 92.0 -1,1,a-pcom-i3,2019-20,Maynard - Maynard High,01740505, 0.0, 0.0, 2.0, 97.0, 0.0, 0.0, 1.0, 68.2, 31.8, 50.8 -1,1,a-pcom-i3,2019-20,Medfield - Dale Street,01750005, 0.0, 1.2, 0.6, 98.2, 0.0, 0.0, 0.0, 91.9, 8.1, 55.0 -1,1,a-pcom-i3,2019-20,Medfield - Medfield Senior High,01750505, 0.0, 1.0, 1.0, 96.9, 0.0, 0.0, 1.0, 70.3, 29.7, 97.2 -1,1,a-pcom-i3,2019-20,Medfield - Memorial School,01750003, 0.0, 1.4, 0.5, 97.0, 0.0, 0.0, 1.1, 97.1, 2.9, 71.8 -1,1,a-pcom-i3,2019-20,Medfield - Ralph Wheelock School,01750007, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 95.3, 4.7, 55.4 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Medfield - Thomas Blake Middle,01750305, 1.2, 2.3, 1.2, 95.3, 0.0, 0.0, 0.0, 73.7, 26.3, 82.3 -1,1,a-pcom-i3,2019-20,Medford - Brooks School,01760130, 1.4, 0.0, 1.4, 97.1, 0.0, 0.0, 0.0, 95.7, 4.3, 70.0 -1,1,a-pcom-i3,2019-20,Medford - Christopher Columbus,01760140, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 90.6, 9.4, 64.0 -3.8750000000000018,3.88,a-pcom-i3,2019-20,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 87.6, 0.0, 0.0, 12.4, 62.7, 37.3, 8.1 -1,1,a-pcom-i3,2019-20,Medford - John J McGlynn Elementary School,01760068, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 96.9, 3.1, 64.0 -1.09375,1.09,a-pcom-i3,2019-20,Medford - John J. McGlynn Middle School,01760320, 1.3, 2.2, 0.0, 96.5, 0.0, 0.0, 0.0, 79.3, 20.7, 74.3 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Medford - Madeleine Dugger Andrews,01760315, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 72.7, 27.3, 66.9 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Medford - Medford High,01760505, 1.4, 0.9, 0.9, 96.8, 0.0, 0.0, 0.0, 65.8, 34.2, 219.6 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Medford - Milton Fuller Roberts,01760150, 2.4, 1.2, 0.0, 95.2, 0.0, 0.0, 1.2, 89.9, 10.1, 82.5 -1,1,a-pcom-i3,2019-20,Medway - Burke/Memorial Elementary School,01770015, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 96.9, 3.1, 64.1 -1,1,a-pcom-i3,2019-20,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 52.6 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Medway - Medway High,01770505, 0.0, 2.2, 1.2, 96.6, 0.0, 0.0, 0.0, 70.8, 29.2, 81.8 -1.09375,1.09,a-pcom-i3,2019-20,Medway - Medway Middle,01770305, 1.2, 1.2, 1.2, 96.5, 0.0, 0.0, 0.0, 78.3, 21.7, 85.1 -1,1,a-pcom-i3,2019-20,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 99.1, 0.9, 54.2 -1,1,a-pcom-i3,2019-20,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 93.6, 6.4, 33.6 -1,1,a-pcom-i3,2019-20,Melrose - Horace Mann,01780025, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 90.9, 9.1, 29.3 -1,1,a-pcom-i3,2019-20,Melrose - Lincoln,01780020, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 88.0, 12.0, 51.9 -1.09375,1.09,a-pcom-i3,2019-20,Melrose - Melrose High,01780505, 0.9, 1.0, 1.6, 96.5, 0.0, 0.0, 0.0, 59.3, 40.7, 115.5 -1.40625,1.41,a-pcom-i3,2019-20,Melrose - Melrose Middle,01780305, 1.1, 0.0, 2.3, 95.5, 0.0, 0.0, 1.1, 72.9, 27.1, 88.8 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Melrose - Roosevelt,01780035, 1.6, 1.9, 0.0, 96.6, 0.0, 0.0, 0.0, 97.3, 2.7, 63.9 -2.093750000000001,2.09,a-pcom-i3,2019-20,Melrose - Winthrop,01780050, 0.0, 4.2, 2.5, 93.3, 0.0, 0.0, 0.0, 83.1, 16.9, 40.3 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 93.2, 6.8, 51.2 -2.6874999999999982,2.69,a-pcom-i3,2019-20,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 8.6, 91.4, 0.0, 0.0, 0.0, 97.1, 2.9, 78.9 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 2.2, 96.7, 0.0, 0.0, 1.1, 82.8, 17.2, 92.2 -1,1,a-pcom-i3,2019-20,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 66.0, 34.0, 74.6 -1.5937499999999982,1.59,a-pcom-i3,2019-20,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 5.1, 94.9, 0.0, 0.0, 0.0, 89.5, 9.7, 123.8 -1,1,a-pcom-i3,2019-20,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 86.5, 12.7, 140.5 -1,1,a-pcom-i3,2019-20,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 89.5, 9.1, 143.4 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Methuen - Methuen High,01810505, 1.0, 0.0, 2.4, 96.7, 0.0, 0.0, 0.0, 62.5, 37.0, 205.6 -1,1,a-pcom-i3,2019-20,Methuen - Tenney Grammar School,01810055, 0.7, 0.0, 0.7, 97.9, 0.8, 0.0, 0.0, 87.1, 12.1, 149.6 -1,1,a-pcom-i3,2019-20,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 62.8 -1,1,a-pcom-i3,2019-20,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.8, 24.2, 77.4 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Middleborough - Mary K. Goode Elementary School,01820010, 1.4, 0.0, 0.0, 95.8, 1.4, 0.0, 1.4, 91.2, 8.8, 70.8 -1,1,a-pcom-i3,2019-20,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 42.4 -1,1,a-pcom-i3,2019-20,Middleborough - Middleborough High,01820505, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 57.6, 42.4, 97.2 -1,1,a-pcom-i3,2019-20,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 53.6 -1,1,a-pcom-i3,2019-20,Middleton - Howe-Manning,01840005, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 91.4, 8.6, 77.6 -1.40625,1.41,a-pcom-i3,2019-20,Milford - Brookside,01850065, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 96.8, 3.2, 71.5 -1,1,a-pcom-i3,2019-20,Milford - Memorial,01850010, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 96.3, 3.7, 72.4 -2.03125,2.03,a-pcom-i3,2019-20,Milford - Milford High,01850505, 0.0, 0.0, 6.5, 93.5, 0.0, 0.0, 0.0, 67.3, 32.7, 145.2 -2.96875,2.97,a-pcom-i3,2019-20,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 9.5, 90.5, 0.0, 0.0, 0.0, 97.8, 2.2, 44.6 -2.562500000000001,2.56,a-pcom-i3,2019-20,Milford - Stacy Middle,01850305, 1.6, 0.8, 4.3, 91.8, 0.8, 0.0, 0.8, 75.3, 24.7, 127.5 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Milford - Woodland,01850090, 0.0, 0.7, 4.6, 94.7, 0.0, 0.0, 0.0, 88.8, 11.2, 136.7 -1,1,a-pcom-i3,2019-20,Millbury - Elmwood Street,01860017, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 95.4, 4.6, 76.2 -1,1,a-pcom-i3,2019-20,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.9, 1.0, 97.1, 0.0, 0.0, 0.0, 61.3, 38.7, 103.4 -2.2187499999999982,2.22,a-pcom-i3,2019-20,Millbury - Raymond E. Shaw Elementary,01860025, 1.8, 3.5, 0.0, 92.9, 0.0, 0.0, 1.8, 81.4, 18.6, 56.6 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Millis - Clyde F Brown,01870005, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 93.8, 6.2, 71.4 -1,1,a-pcom-i3,2019-20,Millis - Millis High School,01870505, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 58.6, 41.4, 46.6 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Millis - Millis Middle,01870020, 0.0, 2.6, 0.7, 96.7, 0.0, 0.0, 0.0, 89.9, 10.1, 37.9 -3.75,3.75,a-pcom-i3,2019-20,Milton - Charles S Pierce Middle,01890410, 8.9, 0.5, 2.7, 88.0, 0.0, 0.0, 0.0, 68.7, 31.3, 110.4 -3.374999999999999,3.37,a-pcom-i3,2019-20,Milton - Collicot,01890005, 1.5, 3.0, 6.3, 89.2, 0.0, 0.0, 0.0, 93.0, 7.0, 65.9 -2.3125000000000018,2.31,a-pcom-i3,2019-20,Milton - Cunningham School,01890007, 4.8, 0.0, 2.6, 92.6, 0.0, 0.0, 0.0, 97.1, 2.9, 83.0 -2.749999999999999,2.75,a-pcom-i3,2019-20,Milton - Glover,01890010, 5.0, 1.7, 0.6, 91.2, 1.7, 0.0, 0.0, 93.6, 6.4, 60.4 -3.062499999999999,3.06,a-pcom-i3,2019-20,Milton - Milton High,01890505, 7.9, 0.4, 0.7, 90.2, 0.0, 0.8, 0.0, 64.3, 35.7, 126.2 -7.406250000000001,5,a-pcom-i3,2019-20,Milton - Tucker,01890020, 16.1, 6.9, 0.7, 76.3, 0.0, 0.0, 0.0, 88.7, 11.3, 43.5 -1.4374999999999982,1.44,a-pcom-i3,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 2.5, 1.7, 95.4, 0.0, 0.4, 0.0, 54.2, 45.8, 118.4 -1,1,a-pcom-i3,2019-20,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 96.2, 3.8, 64.0 -1,1,a-pcom-i3,2019-20,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 29.9 -1,1,a-pcom-i3,2019-20,Mohawk Trail - Mohawk Trail Regional School,07170505, 0.0, 0.0, 0.0, 97.5, 1.1, 0.0, 1.4, 76.8, 23.2, 71.6 -1,1,a-pcom-i3,2019-20,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 26.7 -1,1,a-pcom-i3,2019-20,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.6, 1.4, 36.8 -1,1,a-pcom-i3,2019-20,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.0, 1.1, 97.7, 0.0, 0.0, 1.1, 93.1, 6.9, 87.0 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Monomoy Regional School District - Monomoy Regional High School,07120515, 1.0, 2.1, 0.0, 94.8, 0.0, 0.0, 2.1, 67.8, 32.2, 95.4 -1,1,a-pcom-i3,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.4, 25.6, 67.0 -1,1,a-pcom-i3,2019-20,Monson - Granite Valley School,01910030, 0.0, 0.0, 0.8, 97.6, 0.0, 1.6, 0.0, 85.1, 14.9, 62.2 -1,1,a-pcom-i3,2019-20,Monson - Monson High School,01910505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 68.1, 31.9, 59.5 -1,1,a-pcom-i3,2019-20,Monson - Quarry Hill Community School,01910010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 30.8 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.6, 0.0, 4.4, 93.9, 1.1, 0.0, 0.0, 55.0, 45.0, 181.2 -1,1,a-pcom-i3,2019-20,Mount Greylock - Lanesborough Elementary,07150005, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 84.9, 15.1, 38.3 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Mount Greylock - Mt Greylock Regional High,07150505, 1.4, 0.0, 2.7, 95.9, 0.0, 0.0, 0.0, 62.3, 37.7, 73.7 -1,1,a-pcom-i3,2019-20,Mount Greylock - Williamstown Elementary,07150010, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 94.2, 5.8, 68.9 -3.062499999999999,3.06,a-pcom-i3,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 2.6, 2.6, 2.6, 90.2, 0.0, 0.0, 2.0, 71.5, 28.5, 152.7 -1,1,a-pcom-i3,2019-20,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 21.1 -2.124999999999999,2.12,a-pcom-i3,2019-20,Nantucket - Cyrus Peirce,01970010, 2.0, 0.0, 2.9, 93.2, 0.0, 0.0, 2.0, 82.0, 18.0, 51.2 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 4.4, 94.2, 0.0, 0.0, 1.5, 97.8, 2.2, 68.5 -3.125,3.13,a-pcom-i3,2019-20,Nantucket - Nantucket High,01970505, 1.4, 2.9, 4.3, 90.0, 1.4, 0.0, 0.0, 68.0, 32.0, 70.0 -1,1,a-pcom-i3,2019-20,Nantucket - Nantucket Intermediate School,01970020, 2.0, 0.0, 0.8, 97.2, 0.0, 0.0, 0.0, 83.1, 16.9, 50.2 -1,1,a-pcom-i3,2019-20,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.9, 32.1, 41.1 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 68.3, 31.7, 46.3 -1,1,a-pcom-i3,2019-20,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 16.8 -1,1,a-pcom-i3,2019-20,Narragansett - Templeton Elementary School,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 71.0 -1,1,a-pcom-i3,2019-20,Nashoba - Center School,07250020, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 95.0, 5.0, 71.4 -1,1,a-pcom-i3,2019-20,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.2, 14.8, 100.9 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Nashoba - Hale,07250310, 0.0, 2.6, 0.9, 96.6, 0.0, 0.0, 0.0, 77.4, 22.6, 38.7 -1,1,a-pcom-i3,2019-20,Nashoba - Luther Burbank Middle School,07250305, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 83.7, 16.3, 41.5 -1,1,a-pcom-i3,2019-20,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.4, 97.1, 0.0, 0.0, 1.4, 89.0, 11.0, 69.1 -1,1,a-pcom-i3,2019-20,Nashoba - Nashoba Regional,07250505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 63.9, 36.1, 118.6 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.1, 1.1, 1.1, 96.7, 0.0, 0.0, 0.0, 50.2, 49.8, 90.4 -1,1,a-pcom-i3,2019-20,Natick - Bennett-Hemenway,01980005, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 88.1, 11.9, 79.8 -1,1,a-pcom-i3,2019-20,Natick - Brown,01980010, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 92.3, 7.7, 74.3 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Natick - J F Kennedy Middle School,01980305, 0.0, 1.6, 1.0, 96.4, 1.0, 0.0, 0.0, 79.0, 21.0, 96.3 -1,1,a-pcom-i3,2019-20,Natick - Johnson,01980031, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 30.9 -1,1,a-pcom-i3,2019-20,Natick - Lilja Elementary,01980035, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 94.8, 5.2, 57.8 -1,1,a-pcom-i3,2019-20,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 52.8 -1,1,a-pcom-i3,2019-20,Natick - Natick High,01980505, 0.7, 2.2, 0.0, 97.1, 0.0, 0.0, 0.0, 72.0, 28.0, 224.2 -1,1,a-pcom-i3,2019-20,Natick - Wilson Middle,01980310, 1.1, 1.1, 0.8, 97.0, 0.0, 0.0, 0.0, 75.8, 24.2, 133.2 -1,1,a-pcom-i3,2019-20,Nauset - Nauset Regional High,06600505, 0.8, 0.0, 2.4, 96.9, 0.0, 0.0, 0.0, 68.2, 31.8, 127.3 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Nauset - Nauset Regional Middle,06600305, 1.6, 1.0, 2.1, 95.3, 0.0, 0.0, 0.0, 84.9, 15.1, 97.1 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Needham - Broadmeadow,01990005, 1.7, 1.9, 0.2, 94.7, 0.0, 0.0, 1.4, 97.5, 2.5, 70.1 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Needham - High Rock School,01990410, 0.5, 0.2, 3.0, 94.7, 0.0, 0.0, 1.5, 77.3, 22.7, 65.7 -3.1562499999999982,3.16,a-pcom-i3,2019-20,Needham - John Eliot,01990020, 3.7, 4.7, 1.7, 89.9, 0.0, 0.0, 0.0, 88.5, 9.8, 59.9 -3.4375,3.44,a-pcom-i3,2019-20,Needham - Needham High,01990505, 4.6, 2.9, 2.5, 89.0, 0.0, 0.0, 1.0, 66.3, 33.7, 195.1 -2.03125,2.03,a-pcom-i3,2019-20,Needham - Newman Elementary,01990050, 1.7, 3.5, 1.3, 93.5, 0.0, 0.0, 0.0, 93.3, 6.7, 119.5 -2.0624999999999982,2.06,a-pcom-i3,2019-20,Needham - Pollard Middle,01990405, 1.4, 0.9, 1.7, 93.4, 0.0, 0.0, 2.6, 76.7, 23.3, 116.4 -2.124999999999999,2.12,a-pcom-i3,2019-20,Needham - Sunita L. Williams Elementary,01990035, 3.1, 1.5, 2.2, 93.2, 0.0, 0.0, 0.0, 88.4, 11.6, 88.3 -3.187500000000001,3.19,a-pcom-i3,2019-20,Needham - William Mitchell,01990040, 1.1, 3.7, 3.7, 89.8, 0.0, 0.0, 1.6, 83.6, 16.4, 62.4 -14.156249999999998,5,a-pcom-i3,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 21.7, 7.4, 11.8, 54.7, 0.9, 0.0, 3.5, 73.1, 26.9, 107.9 -1.8437500000000018,1.84,a-pcom-i3,2019-20,New Bedford - Abraham Lincoln,02010095, 1.5, 0.0, 2.9, 94.1, 0.0, 1.5, 0.0, 91.2, 8.8, 68.3 -5.906250000000002,5,a-pcom-i3,2019-20,New Bedford - Alfred J Gomes,02010063, 8.1, 1.4, 8.1, 81.1, 0.0, 0.0, 1.4, 94.6, 5.4, 74.0 -1.6562499999999991,1.66,a-pcom-i3,2019-20,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 96.4, 3.6, 28.2 -1.4999999999999991,1.5,a-pcom-i3,2019-20,New Bedford - Carlos Pacheco,02010105, 4.8, 0.0, 0.0, 95.2, 0.0, 0.0, 0.0, 92.9, 7.1, 42.1 -3.3124999999999982,3.31,a-pcom-i3,2019-20,New Bedford - Casimir Pulaski,02010123, 6.2, 0.0, 4.4, 89.4, 0.0, 0.0, 0.0, 91.0, 9.0, 113.4 -1.4999999999999991,1.5,a-pcom-i3,2019-20,New Bedford - Charles S Ashley,02010010, 3.2, 0.0, 1.6, 95.2, 0.0, 0.0, 0.0, 94.4, 5.6, 31.2 -2.3749999999999982,2.37,a-pcom-i3,2019-20,New Bedford - Elizabeth Carter Brooks,02010015, 7.6, 0.0, 0.0, 92.4, 0.0, 0.0, 0.0, 86.7, 13.3, 26.3 -4.968750000000002,4.97,a-pcom-i3,2019-20,New Bedford - Ellen R Hathaway,02010075, 2.7, 0.0, 10.6, 84.1, 2.7, 0.0, 0.0, 93.4, 6.6, 37.6 -4.21875,4.22,a-pcom-i3,2019-20,New Bedford - Elwyn G Campbell,02010020, 2.3, 0.0, 4.5, 86.5, 4.5, 0.0, 2.3, 93.7, 6.3, 44.4 -6.71875,5,a-pcom-i3,2019-20,New Bedford - Hayden/McFadden,02010078, 7.4, 0.0, 13.2, 78.5, 0.8, 0.0, 0.0, 92.6, 7.4, 121.2 -2.9375000000000018,2.94,a-pcom-i3,2019-20,New Bedford - Irwin M. Jacobs Elementary School,02010070, 2.4, 0.0, 7.1, 90.6, 0.0, 0.0, 0.0, 90.6, 9.4, 42.4 -1,1,a-pcom-i3,2019-20,New Bedford - James B Congdon,02010040, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 94.0, 6.0, 33.5 -1,1,a-pcom-i3,2019-20,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 20.9 -4.624999999999999,4.62,a-pcom-i3,2019-20,New Bedford - John Avery Parker,02010115, 3.0, 5.9, 5.9, 85.2, 0.0, 0.0, 0.0, 91.1, 8.9, 33.8 -1,1,a-pcom-i3,2019-20,New Bedford - John B Devalles,02010050, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 88.0, 12.0, 33.3 -4.812500000000002,4.81,a-pcom-i3,2019-20,New Bedford - Keith Middle School,02010405, 9.8, 1.7, 1.7, 84.6, 0.0, 0.0, 2.2, 70.8, 29.2, 116.1 -5.187499999999998,5,a-pcom-i3,2019-20,New Bedford - New Bedford High,02010505, 6.4, 1.4, 7.0, 83.4, 0.4, 0.0, 1.4, 62.9, 37.1, 281.7 -3.968750000000001,3.97,a-pcom-i3,2019-20,New Bedford - Normandin Middle School,02010410, 5.0, 0.8, 4.8, 87.3, 0.0, 0.0, 2.1, 67.7, 32.3, 120.1 -8.937499999999998,5,a-pcom-i3,2019-20,New Bedford - Renaissance Community Innovation School,02010124, 17.9, 0.0, 10.7, 71.4, 0.0, 0.0, 0.0, 82.1, 17.9, 28.0 -5.125000000000002,5,a-pcom-i3,2019-20,New Bedford - Roosevelt Middle School,02010415, 4.5, 0.9, 8.2, 83.6, 0.9, 0.0, 1.8, 72.0, 28.0, 110.0 -5.843750000000001,5,a-pcom-i3,2019-20,New Bedford - Sgt Wm H Carney Academy,02010045, 8.5, 0.9, 6.8, 81.3, 0.0, 0.0, 2.6, 89.9, 10.1, 117.4 -1,1,a-pcom-i3,2019-20,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.2, 19.8, 22.4 -2.8125,2.81,a-pcom-i3,2019-20,New Bedford - Trinity Day Academy,02010510, 6.2, 0.0, 2.9, 91.0, 0.0, 0.0, 0.0, 51.2, 48.8, 34.8 -6.218750000000002,5,a-pcom-i3,2019-20,New Bedford - Whaling City Junior/Senior High School,02010515, 12.8, 0.0, 2.3, 80.1, 0.0, 0.0, 4.7, 60.3, 39.7, 42.8 -1,1,a-pcom-i3,2019-20,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 27.8 -8.5,5,a-pcom-i3,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 24.0, 0.0, 1.6, 72.8, 0.0, 0.0, 1.6, 59.9, 40.1, 61.8 -2.875000000000001,2.88,a-pcom-i3,2019-20,New Salem-Wendell - Swift River,07280015, 3.1, 0.0, 3.1, 90.8, 0.0, 0.0, 3.1, 90.4, 9.6, 32.5 -1,1,a-pcom-i3,2019-20,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 99.5, 0.0, 0.5, 0.0, 88.3, 11.7, 46.5 -1,1,a-pcom-i3,2019-20,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 1.0, 98.8, 0.0, 0.2, 0.0, 95.9, 4.1, 103.3 -1,1,a-pcom-i3,2019-20,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.3, 25.7, 98.3 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Newburyport - Rupert A Nock Middle,02040305, 2.7, 1.4, 1.4, 94.2, 0.0, 0.3, 0.0, 72.5, 27.5, 72.9 -4.84375,4.84,a-pcom-i3,2019-20,Newton - A E Angier,02070005, 6.7, 3.4, 4.4, 84.5, 0.0, 0.0, 1.0, 89.2, 10.8, 88.4 -2.65625,2.66,a-pcom-i3,2019-20,Newton - Bigelow Middle,02070305, 1.2, 2.5, 4.8, 91.5, 0.0, 0.0, 0.0, 70.8, 29.2, 83.1 -6.906249999999998,5,a-pcom-i3,2019-20,Newton - Bowen,02070015, 3.8, 11.0, 5.4, 77.9, 0.0, 0.0, 1.9, 91.5, 8.5, 53.0 -7.000000000000002,5,a-pcom-i3,2019-20,Newton - C C Burr,02070020, 3.5, 12.1, 5.2, 77.6, 0.0, 0.0, 1.7, 94.0, 6.0, 57.9 -5.531250000000001,5,a-pcom-i3,2019-20,Newton - Cabot,02070025, 1.6, 8.3, 6.1, 82.3, 0.0, 1.6, 0.0, 91.5, 8.5, 61.7 -2.6874999999999982,2.69,a-pcom-i3,2019-20,Newton - Charles E Brown Middle,02070310, 1.6, 2.3, 3.1, 91.4, 0.0, 0.0, 1.6, 71.7, 28.3, 128.3 -3.031250000000001,3.03,a-pcom-i3,2019-20,Newton - Countryside,02070040, 5.9, 1.4, 0.0, 90.3, 0.0, 0.0, 2.4, 87.3, 12.7, 76.4 -2.1562500000000018,2.16,a-pcom-i3,2019-20,Newton - F A Day Middle,02070315, 2.9, 2.6, 0.0, 93.1, 0.0, 0.0, 1.4, 66.4, 33.6, 140.0 -3.75,3.75,a-pcom-i3,2019-20,Newton - Franklin,02070055, 3.8, 6.6, 1.6, 88.0, 0.0, 0.0, 0.0, 91.8, 8.2, 63.3 -4.750000000000001,4.75,a-pcom-i3,2019-20,Newton - Horace Mann,02070075, 7.1, 6.4, 1.8, 84.8, 0.0, 0.0, 0.0, 89.9, 10.1, 56.6 -2.34375,2.34,a-pcom-i3,2019-20,Newton - John Ward,02070120, 2.1, 4.1, 1.3, 92.5, 0.0, 0.0, 0.0, 93.0, 7.0, 47.4 -4.343750000000002,4.34,a-pcom-i3,2019-20,Newton - Lincoln-Eliot,02070070, 2.8, 2.5, 8.5, 86.1, 0.0, 0.0, 0.0, 92.9, 7.1, 70.7 -3.2500000000000018,3.25,a-pcom-i3,2019-20,Newton - Mason-Rice,02070080, 1.5, 4.4, 4.5, 89.6, 0.0, 0.0, 0.0, 91.6, 8.4, 67.0 -3.7187500000000018,3.72,a-pcom-i3,2019-20,Newton - Memorial Spaulding,02070105, 5.8, 1.6, 4.5, 88.1, 0.0, 0.0, 0.0, 92.2, 7.8, 69.8 -3.125,3.13,a-pcom-i3,2019-20,Newton - Newton Early Childhood Center,02070108, 3.2, 2.5, 2.5, 90.0, 0.0, 0.0, 1.9, 100.0, 0.0, 78.7 -4.093749999999998,4.09,a-pcom-i3,2019-20,Newton - Newton North High,02070505, 3.6, 5.9, 2.6, 86.9, 0.0, 0.0, 0.9, 64.2, 35.8, 319.5 -5.406249999999999,5,a-pcom-i3,2019-20,Newton - Newton South High,02070510, 3.7, 6.0, 5.0, 82.7, 0.0, 0.0, 2.6, 67.3, 32.3, 269.9 -4.468749999999999,4.47,a-pcom-i3,2019-20,Newton - Oak Hill Middle,02070320, 2.2, 5.7, 5.2, 85.7, 0.0, 0.0, 1.1, 75.3, 24.7, 89.7 -3.9374999999999982,3.94,a-pcom-i3,2019-20,Newton - Peirce,02070100, 7.4, 0.2, 2.8, 87.4, 0.0, 0.0, 2.2, 90.5, 9.5, 45.8 -2.906249999999999,2.91,a-pcom-i3,2019-20,Newton - Underwood,02070115, 4.8, 0.0, 4.5, 90.7, 0.0, 0.0, 0.0, 85.4, 14.6, 41.7 -5.375000000000001,5,a-pcom-i3,2019-20,Newton - Williams,02070125, 3.4, 9.3, 0.0, 82.8, 0.0, 0.0, 4.5, 86.2, 13.8, 44.3 -3.343750000000001,3.34,a-pcom-i3,2019-20,Newton - Zervas,02070130, 4.3, 4.0, 2.4, 89.3, 0.0, 0.0, 0.0, 88.5, 11.5, 84.1 -1,1,a-pcom-i3,2019-20,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 69.7 -1,1,a-pcom-i3,2019-20,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 80.9 -1,1,a-pcom-i3,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.4, 37.6, 76.9 -1.4687500000000009,1.47,a-pcom-i3,2019-20,North Adams - Brayton,02090035, 0.0, 1.6, 3.2, 95.3, 0.0, 0.0, 0.0, 87.4, 12.6, 63.4 -1,1,a-pcom-i3,2019-20,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 65.2 -1,1,a-pcom-i3,2019-20,North Adams - Drury High,02090505, 1.1, 0.0, 1.1, 97.7, 0.0, 0.0, 0.0, 66.7, 33.3, 88.2 -1.2187500000000018,1.22,a-pcom-i3,2019-20,North Adams - Greylock,02090015, 1.9, 0.0, 1.9, 96.1, 0.0, 0.0, 0.0, 92.2, 7.8, 51.3 -1,1,a-pcom-i3,2019-20,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 76.5 -1,1,a-pcom-i3,2019-20,North Andover - Annie L Sargent School,02110018, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 95.9, 4.1, 60.8 -1,1,a-pcom-i3,2019-20,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 43.4 -1,1,a-pcom-i3,2019-20,North Andover - Franklin,02110010, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 93.2, 6.8, 61.5 -1.6875000000000018,1.69,a-pcom-i3,2019-20,North Andover - Kittredge,02110015, 0.0, 2.7, 2.7, 94.6, 0.0, 0.0, 0.0, 83.9, 16.1, 37.2 -1,1,a-pcom-i3,2019-20,North Andover - North Andover High,02110505, 0.7, 0.7, 0.0, 98.5, 0.0, 0.0, 0.0, 67.7, 32.3, 136.6 -1,1,a-pcom-i3,2019-20,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.2, 26.8, 114.9 -1,1,a-pcom-i3,2019-20,North Andover - Thomson,02110020, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 93.8, 6.2, 45.4 -1,1,a-pcom-i3,2019-20,North Attleborough - Amvet Boulevard,02120007, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 97.7, 2.3, 44.2 -1,1,a-pcom-i3,2019-20,North Attleborough - Community,02120030, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 95.9, 4.1, 61.6 -1,1,a-pcom-i3,2019-20,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 31.5 -1,1,a-pcom-i3,2019-20,North Attleborough - Joseph W Martin Jr Elementary,02120013, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 97.1, 2.9, 70.0 -1,1,a-pcom-i3,2019-20,North Attleborough - North Attleboro High,02120505, 0.0, 0.8, 0.8, 97.5, 0.0, 0.0, 0.8, 72.8, 27.2, 118.2 -1.8437500000000018,1.84,a-pcom-i3,2019-20,North Attleborough - North Attleborough Early Learning Center,02120020, 2.6, 3.3, 0.0, 94.1, 0.0, 0.0, 0.0, 100.0, 0.0, 30.6 -1.0625000000000018,1.06,a-pcom-i3,2019-20,North Attleborough - North Attleborough Middle,02120305, 0.0, 1.7, 0.8, 96.6, 0.0, 0.0, 0.8, 71.5, 28.5, 119.1 -1,1,a-pcom-i3,2019-20,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 95.9, 4.1, 24.6 -1,1,a-pcom-i3,2019-20,North Brookfield - North Brookfield Elementary,02150015, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 93.9, 6.1, 48.9 -1,1,a-pcom-i3,2019-20,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.2, 35.8, 37.4 -1,1,a-pcom-i3,2019-20,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 97.4, 0.0, 2.6, 0.0, 94.9, 5.1, 39.1 -1,1,a-pcom-i3,2019-20,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.2, 26.8, 57.3 -1.71875,1.72,a-pcom-i3,2019-20,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 5.5, 94.5, 0.0, 0.0, 0.0, 80.6, 19.4, 72.1 -1,1,a-pcom-i3,2019-20,North Middlesex - North Middlesex Regional,07350505, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 68.4, 31.6, 93.5 -1,1,a-pcom-i3,2019-20,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.0, 13.0, 54.0 -1,1,a-pcom-i3,2019-20,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 19.1 -1,1,a-pcom-i3,2019-20,North Middlesex - Varnum Brook,07350035, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 96.0, 4.0, 74.5 -1,1,a-pcom-i3,2019-20,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 48.9 -1,1,a-pcom-i3,2019-20,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 46.1 -1,1,a-pcom-i3,2019-20,North Reading - L D Batchelder,02170005, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 94.8, 5.2, 57.5 -1,1,a-pcom-i3,2019-20,North Reading - North Reading High,02170505, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 51.2, 48.8, 95.5 -1,1,a-pcom-i3,2019-20,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.4, 15.6, 66.6 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Northampton - Bridge Street,02100005, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 89.9, 10.1, 58.3 -6.531250000000002,5,a-pcom-i3,2019-20,Northampton - Jackson Street,02100020, 3.8, 1.9, 13.3, 79.1, 0.0, 0.0, 1.9, 80.8, 19.2, 52.6 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Northampton - John F Kennedy Middle School,02100410, 1.0, 0.0, 3.9, 94.2, 0.0, 0.0, 1.0, 77.6, 22.4, 103.8 -1.71875,1.72,a-pcom-i3,2019-20,Northampton - Leeds,02100025, 0.0, 0.0, 5.5, 94.5, 0.0, 0.0, 0.0, 92.6, 7.4, 51.3 -2.5312499999999982,2.53,a-pcom-i3,2019-20,Northampton - Northampton High,02100505, 3.1, 0.0, 2.9, 91.9, 0.0, 0.0, 2.0, 65.3, 34.7, 101.7 -1,1,a-pcom-i3,2019-20,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 91.1, 8.9, 45.0 -1.40625,1.41,a-pcom-i3,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 3.6, 95.5, 0.0, 0.0, 0.9, 52.7, 47.3, 112.0 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Northboro-Southboro - Algonquin Regional High,07300505, 0.5, 0.5, 1.6, 96.8, 0.0, 0.5, 0.0, 75.3, 24.7, 185.7 -1,1,a-pcom-i3,2019-20,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 98.2, 0.0, 0.0, 1.8, 89.1, 10.9, 55.2 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Northborough - Lincoln Street,02130003, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 88.9, 11.1, 45.1 -1,1,a-pcom-i3,2019-20,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 41.7 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 95.3, 4.7, 40.2 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.2, 1.2, 96.3, 0.0, 1.2, 0.0, 83.7, 16.3, 81.6 -1,1,a-pcom-i3,2019-20,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 96.0, 4.0, 68.0 -1,1,a-pcom-i3,2019-20,Northbridge - Northbridge High,02140505, 1.4, 0.0, 0.0, 97.9, 0.0, 0.7, 0.0, 60.1, 39.9, 72.8 -1,1,a-pcom-i3,2019-20,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 75.5, 24.5, 84.0 -1,1,a-pcom-i3,2019-20,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 99.2, 0.0, 0.8, 0.0, 95.7, 4.3, 63.4 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 3.0, 1.2, 3.4, 92.4, 0.0, 0.0, 0.0, 50.5, 49.5, 166.0 -1,1,a-pcom-i3,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 57.1, 42.9, 62.1 -1,1,a-pcom-i3,2019-20,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 39.2 -1,1,a-pcom-i3,2019-20,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 66.0 -1,1,a-pcom-i3,2019-20,Norton - L G Nourse Elementary,02180010, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 98.7, 1.3, 35.7 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Norton - Norton High,02180505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 71.3, 28.7, 80.0 -1,1,a-pcom-i3,2019-20,Norton - Norton Middle,02180305, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 76.9, 23.1, 61.2 -1,1,a-pcom-i3,2019-20,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 57.6 -1,1,a-pcom-i3,2019-20,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.8, 34.2, 71.9 -1,1,a-pcom-i3,2019-20,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.8, 25.2, 67.6 -1,1,a-pcom-i3,2019-20,Norwell - William G Vinal,02190020, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 90.4, 9.6, 56.9 -3.062499999999999,3.06,a-pcom-i3,2019-20,Norwood - Balch,02200005, 0.0, 2.5, 4.9, 90.2, 2.5, 0.0, 0.0, 97.1, 2.9, 40.7 -1,1,a-pcom-i3,2019-20,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 93.4, 6.6, 30.4 -1,1,a-pcom-i3,2019-20,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 85.7, 14.3, 37.1 -1,1,a-pcom-i3,2019-20,Norwood - Dr. Philip O. Coakley Middle School,02200305, 1.0, 1.0, 0.0, 98.0, 0.0, 0.0, 0.0, 69.4, 30.6, 98.0 -1,1,a-pcom-i3,2019-20,Norwood - F A Cleveland,02200015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 47.4 -1,1,a-pcom-i3,2019-20,Norwood - George F. Willett,02200075, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 99.7, 0.3, 66.5 -1,1,a-pcom-i3,2019-20,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.4, 14.6, 32.3 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Norwood - Norwood High,02200505, 2.4, 0.0, 2.5, 95.1, 0.0, 0.0, 0.0, 63.6, 36.4, 117.8 -2.0000000000000018,2.0,a-pcom-i3,2019-20,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.6, 0.0, 1.2, 93.6, 0.0, 0.0, 3.5, 89.0, 11.0, 85.6 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 1.1, 0.0, 96.6, 0.0, 0.0, 2.3, 56.3, 43.7, 87.0 -1,1,a-pcom-i3,2019-20,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 65.6, 34.4, 90.3 -1,1,a-pcom-i3,2019-20,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.4, 27.6, 56.2 -3.4375,3.44,a-pcom-i3,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 11.0, 89.0, 0.0, 0.0, 0.0, 83.4, 16.6, 27.2 -1,1,a-pcom-i3,2019-20,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.2, 40.7 -1,1,a-pcom-i3,2019-20,Orange - Fisher Hill,02230015, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 90.1, 9.9, 55.1 -1,1,a-pcom-i3,2019-20,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 42.7 -1,1,a-pcom-i3,2019-20,Oxford - ACE Program,02260305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 42.7, 57.3, 5.3 -1,1,a-pcom-i3,2019-20,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 37.2 -1,1,a-pcom-i3,2019-20,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 41.9 -1.25,1.25,a-pcom-i3,2019-20,Oxford - Oxford High,02260505, 0.0, 1.4, 1.2, 96.0, 0.0, 0.0, 1.4, 66.4, 33.6, 72.8 -1,1,a-pcom-i3,2019-20,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.1, 15.9, 43.5 -1,1,a-pcom-i3,2019-20,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 90.4, 9.6, 98.5 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Palmer - Palmer High,02270505, 0.0, 1.9, 1.5, 94.7, 0.0, 0.0, 1.9, 76.7, 23.3, 103.0 -1,1,a-pcom-i3,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 51.6, 48.4, 108.5 -13.8125,5,a-pcom-i3,2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 17.3, 0.0, 26.8, 55.8, 0.0, 0.0, 0.0, 68.2, 31.8, 41.6 -1,1,a-pcom-i3,2019-20,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 72.3 -1,1,a-pcom-i3,2019-20,Peabody - Center,02290015, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 95.3, 4.7, 38.4 -1,1,a-pcom-i3,2019-20,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 74.0, 26.0, 153.9 -1,1,a-pcom-i3,2019-20,Peabody - John E Burke,02290007, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 97.6, 2.4, 38.1 -1,1,a-pcom-i3,2019-20,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 55.9 -1,1,a-pcom-i3,2019-20,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.5, 1.6, 97.3, 0.0, 0.0, 0.5, 63.4, 36.6, 186.2 -1,1,a-pcom-i3,2019-20,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 38.0 -1,1,a-pcom-i3,2019-20,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 55.9 -1,1,a-pcom-i3,2019-20,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 44.9 -1.5937499999999982,1.59,a-pcom-i3,2019-20,Peabody - William A Welch Sr,02290027, 2.6, 0.0, 2.6, 94.9, 0.0, 0.0, 0.0, 90.8, 9.2, 39.2 -4.812500000000002,4.81,a-pcom-i3,2019-20,Pelham - Pelham Elementary,02300005, 3.7, 0.7, 11.0, 84.6, 0.0, 0.0, 0.0, 88.3, 11.7, 27.3 -1,1,a-pcom-i3,2019-20,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 47.2 -1,1,a-pcom-i3,2019-20,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 52.2 -1,1,a-pcom-i3,2019-20,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 56.6 -1,1,a-pcom-i3,2019-20,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.9, 14.1, 49.6 -1,1,a-pcom-i3,2019-20,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.8, 27.2, 88.7 -1,1,a-pcom-i3,2019-20,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 97.3, 2.7, 45.7 -1,1,a-pcom-i3,2019-20,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 99.5, 0.0, 0.0, 0.5, 92.7, 7.3, 47.2 -1,1,a-pcom-i3,2019-20,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 97.6, 2.4, 60.8 -1,1,a-pcom-i3,2019-20,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 2.4, 97.0, 0.0, 0.0, 0.6, 96.0, 4.0, 42.2 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 96.4, 0.0, 0.0, 3.6, 71.6, 28.4, 46.6 -1,1,a-pcom-i3,2019-20,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 1.2, 98.5, 0.0, 0.0, 0.3, 61.2, 38.8, 83.8 -1,1,a-pcom-i3,2019-20,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.0, 17.0, 23.5 -13.5,5,a-pcom-i3,2019-20,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 4.4, 4.4, 34.5, 56.8, 0.0, 0.0, 0.0, 73.8, 26.2, 22.9 -21.187499999999996,5,a-pcom-i3,2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 40.2, 4.6, 18.4, 32.2, 0.0, 0.0, 4.6, 77.0, 23.0, 21.7 -17.78125,5,a-pcom-i3,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 15.6, 7.2, 34.1, 43.1, 0.0, 0.0, 0.0, 78.4, 21.6, 27.8 -3.2500000000000018,3.25,a-pcom-i3,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 4.2, 2.7, 3.4, 89.6, 0.0, 0.0, 0.0, 70.9, 29.1, 94.4 -9.375,5,a-pcom-i3,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 4.6, 16.1, 6.9, 70.0, 0.0, 0.0, 2.3, 54.1, 45.9, 43.4 -1,1,a-pcom-i3,2019-20,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 37.7 -1,1,a-pcom-i3,2019-20,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 33.8 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 2.1, 2.1, 95.9, 0.0, 0.0, 0.0, 71.4, 28.6, 48.2 -1,1,a-pcom-i3,2019-20,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 10.7 -13.75,5,a-pcom-i3,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 1.0, 40.9, 1.0, 56.0, 0.0, 0.0, 1.0, 76.9, 23.1, 96.3 -4.656250000000002,4.66,a-pcom-i3,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 5.7, 1.4, 6.7, 85.1, 1.1, 0.0, 0.0, 56.2, 42.4, 73.1 -1,1,a-pcom-i3,2019-20,Pittsfield - Allendale,02360010, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 97.4, 2.6, 38.9 -4.343750000000002,4.34,a-pcom-i3,2019-20,Pittsfield - Crosby,02360065, 5.4, 0.0, 3.4, 86.1, 0.0, 0.0, 5.1, 87.6, 12.4, 88.4 -2.718750000000001,2.72,a-pcom-i3,2019-20,Pittsfield - Egremont,02360035, 1.6, 1.6, 4.8, 91.3, 0.0, 0.0, 0.8, 98.4, 1.6, 63.1 -2.3125000000000018,2.31,a-pcom-i3,2019-20,Pittsfield - John T Reid Middle,02360305, 1.2, 1.2, 2.5, 92.6, 0.0, 0.0, 2.5, 59.3, 40.7, 80.6 -3.4687499999999982,3.47,a-pcom-i3,2019-20,Pittsfield - Morningside Community School,02360055, 4.8, 3.2, 0.0, 88.9, 0.0, 0.0, 3.2, 92.1, 7.9, 62.9 -3.031250000000001,3.03,a-pcom-i3,2019-20,Pittsfield - Pittsfield High,02360505, 5.8, 0.4, 2.8, 90.3, 0.8, 0.0, 0.0, 69.7, 30.3, 130.3 -1,1,a-pcom-i3,2019-20,Pittsfield - Robert T. Capeless Elementary School,02360045, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 100.0, 0.0, 29.5 -1.9687499999999991,1.97,a-pcom-i3,2019-20,Pittsfield - Silvio O Conte Community,02360105, 1.6, 0.0, 1.6, 93.7, 0.0, 0.0, 3.2, 92.1, 7.9, 63.5 -1,1,a-pcom-i3,2019-20,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 40.7 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Pittsfield - Taconic High,02360510, 2.1, 0.0, 3.0, 92.4, 0.0, 0.0, 2.5, 55.2, 44.8, 117.9 -1.875,1.88,a-pcom-i3,2019-20,Pittsfield - Theodore Herberg Middle,02360310, 0.6, 0.6, 2.3, 94.0, 0.0, 0.0, 2.5, 69.9, 30.1, 80.9 -1,1,a-pcom-i3,2019-20,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 90.4, 9.6, 45.3 -1,1,a-pcom-i3,2019-20,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.5, 1.5, 66.7 -1,1,a-pcom-i3,2019-20,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 91.9, 8.1, 37.2 -1,1,a-pcom-i3,2019-20,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 33.8 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Plymouth - Federal Furnace School,02390011, 1.0, 0.0, 1.7, 96.8, 0.5, 0.0, 0.0, 83.5, 16.5, 57.9 -1,1,a-pcom-i3,2019-20,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 33.7 -1,1,a-pcom-i3,2019-20,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.5, 97.7, 0.0, 0.8, 0.0, 94.9, 5.1, 68.5 -1,1,a-pcom-i3,2019-20,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 97.5, 2.5, 39.3 -1,1,a-pcom-i3,2019-20,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 71.5 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Plymouth - Plymouth Commun Intermediate,02390405, 2.4, 0.8, 1.6, 95.2, 0.0, 0.0, 0.0, 83.2, 16.8, 124.4 -1,1,a-pcom-i3,2019-20,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 97.0, 3.0, 33.2 -1,1,a-pcom-i3,2019-20,Plymouth - Plymouth North High,02390505, 0.0, 0.3, 0.6, 99.1, 0.0, 0.0, 0.0, 67.2, 32.8, 162.1 -1,1,a-pcom-i3,2019-20,Plymouth - Plymouth South High,02390515, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 65.8, 34.2, 158.5 -1,1,a-pcom-i3,2019-20,Plymouth - Plymouth South Middle,02390305, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 75.7, 24.3, 87.2 -1,1,a-pcom-i3,2019-20,Plymouth - South Elementary,02390046, 1.1, 0.0, 1.1, 97.7, 0.0, 0.0, 0.0, 95.3, 4.7, 87.8 -1,1,a-pcom-i3,2019-20,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 98.4, 0.0, 1.6, 0.0, 90.2, 9.8, 64.4 -1,1,a-pcom-i3,2019-20,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 31.2 -8.59375,5,a-pcom-i3,2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 13.4, 4.2, 9.2, 72.5, 0.0, 0.0, 0.7, 77.6, 22.4, 141.8 -1,1,a-pcom-i3,2019-20,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 97.2, 0.0, 0.0, 2.8, 78.8, 21.2, 35.9 -1,1,a-pcom-i3,2019-20,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 24.5 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Quabbin - Hubbardston Center,07530010, 0.0, 2.8, 3.3, 93.9, 0.0, 0.0, 0.0, 88.0, 12.0, 30.2 -1,1,a-pcom-i3,2019-20,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 11.4 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Quabbin - Oakham Center,07530025, 7.6, 0.0, 0.0, 92.4, 0.0, 0.0, 0.0, 85.7, 14.3, 13.2 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.3, 0.0, 96.4, 0.0, 1.3, 1.0, 74.6, 25.4, 76.8 -1,1,a-pcom-i3,2019-20,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.4, 20.6, 45.4 -1,1,a-pcom-i3,2019-20,Quabbin - Ruggles Lane,07530030, 1.6, 0.0, 1.6, 96.9, 0.0, 0.0, 0.0, 92.1, 7.9, 64.2 -1,1,a-pcom-i3,2019-20,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 60.7, 39.3, 56.9 -1,1,a-pcom-i3,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.5, 41.5, 14.8 -1,1,a-pcom-i3,2019-20,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.5, 0.0, 99.5, 0.0, 0.0, 0.0, 87.4, 12.6, 62.5 -1,1,a-pcom-i3,2019-20,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 95.0, 5.0, 39.8 -2.8437499999999982,2.84,a-pcom-i3,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 7.0, 0.0, 90.9, 0.0, 0.0, 2.1, 100.0, 0.0, 47.0 -1,1,a-pcom-i3,2019-20,Quincy - Atherton Hough,02430040, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 94.4, 5.6, 46.8 -2.875000000000001,2.88,a-pcom-i3,2019-20,Quincy - Atlantic Middle,02430305, 0.0, 7.0, 0.0, 90.8, 0.0, 0.0, 2.2, 79.2, 20.8, 45.7 -1,1,a-pcom-i3,2019-20,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 96.9, 3.1, 32.7 -1,1,a-pcom-i3,2019-20,Quincy - Broad Meadows Middle,02430310, 0.0, 0.9, 0.0, 96.9, 0.0, 0.0, 2.2, 77.0, 23.0, 45.7 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Quincy - Central Middle,02430315, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 75.1, 24.9, 56.2 -1,1,a-pcom-i3,2019-20,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.6, 13.4, 31.3 -1,1,a-pcom-i3,2019-20,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 98.5, 1.5, 66.4 -6.812499999999999,5,a-pcom-i3,2019-20,Quincy - Francis W Parker,02430075, 4.8, 14.5, 0.0, 78.2, 0.0, 0.0, 2.4, 92.3, 7.7, 41.3 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Quincy - Lincoln-Hancock Community School,02430035, 1.7, 1.7, 0.0, 96.7, 0.0, 0.0, 0.0, 96.2, 3.8, 60.0 -2.6874999999999982,2.69,a-pcom-i3,2019-20,Quincy - Merrymount,02430060, 0.0, 5.9, 2.7, 91.4, 0.0, 0.0, 0.0, 94.6, 5.4, 37.4 -3.90625,3.91,a-pcom-i3,2019-20,Quincy - Montclair,02430065, 0.0, 12.5, 0.0, 87.5, 0.0, 0.0, 0.0, 94.8, 5.2, 40.4 -3.125,3.13,a-pcom-i3,2019-20,Quincy - North Quincy High,02430510, 0.8, 3.6, 0.8, 90.0, 0.0, 0.0, 4.8, 59.2, 40.8, 125.1 -1.40625,1.41,a-pcom-i3,2019-20,Quincy - Point Webster Middle,02430325, 2.2, 2.2, 0.0, 95.5, 0.0, 0.0, 0.0, 81.2, 18.8, 44.9 -2.749999999999999,2.75,a-pcom-i3,2019-20,Quincy - Quincy High,02430505, 0.6, 5.2, 1.2, 91.2, 0.6, 0.0, 1.2, 65.1, 34.9, 165.0 -2.6250000000000018,2.63,a-pcom-i3,2019-20,Quincy - Snug Harbor Community School,02430090, 1.9, 4.0, 0.0, 91.6, 0.0, 0.0, 2.5, 91.8, 8.2, 79.6 -1,1,a-pcom-i3,2019-20,Quincy - South West Middle School,02430320, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 84.8, 15.2, 48.8 -1.40625,1.41,a-pcom-i3,2019-20,Quincy - Squantum,02430095, 0.0, 4.5, 0.0, 95.5, 0.0, 0.0, 0.0, 92.7, 7.3, 44.8 -3.062499999999999,3.06,a-pcom-i3,2019-20,Quincy - Wollaston School,02430110, 1.4, 8.4, 0.0, 90.2, 0.0, 0.0, 0.0, 94.4, 5.6, 35.6 -1,1,a-pcom-i3,2019-20,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.0, 2.1, 96.9, 0.0, 0.0, 0.0, 70.2, 29.8, 96.9 -5.062500000000001,5,a-pcom-i3,2019-20,Randolph - Elizabeth G Lyons Elementary,02440020, 12.9, 1.1, 0.0, 83.8, 0.0, 0.0, 2.2, 78.4, 21.6, 46.4 -7.749999999999999,5,a-pcom-i3,2019-20,Randolph - J F Kennedy Elementary,02440018, 15.1, 3.2, 4.3, 75.2, 0.0, 0.0, 2.2, 85.1, 14.9, 92.9 -4.6875,4.69,a-pcom-i3,2019-20,Randolph - Margaret L Donovan,02440015, 6.4, 6.4, 2.1, 85.0, 0.0, 0.0, 0.0, 89.3, 10.7, 46.5 -5.218750000000001,5,a-pcom-i3,2019-20,Randolph - Martin E Young Elementary,02440040, 2.2, 1.1, 4.5, 83.3, 0.0, 0.0, 8.9, 91.1, 8.9, 44.8 -9.90625,5,a-pcom-i3,2019-20,Randolph - Randolph Community Middle,02440410, 25.9, 2.3, 2.3, 68.3, 1.2, 0.0, 0.0, 67.6, 32.4, 86.4 -8.062499999999998,5,a-pcom-i3,2019-20,Randolph - Randolph High,02440505, 10.4, 8.8, 5.4, 74.2, 0.0, 0.0, 1.1, 69.7, 30.3, 92.0 -1,1,a-pcom-i3,2019-20,Reading - Alice M Barrows,02460002, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 95.0, 5.0, 39.7 -1,1,a-pcom-i3,2019-20,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 81.6, 18.4, 64.4 -1,1,a-pcom-i3,2019-20,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 95.4, 4.6, 60.7 -1,1,a-pcom-i3,2019-20,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 52.0 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Reading - Joshua Eaton,02460010, 0.0, 2.1, 0.0, 95.8, 0.0, 0.0, 2.1, 94.2, 5.8, 47.6 -1,1,a-pcom-i3,2019-20,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 99.4, 0.6, 24.4 -1,1,a-pcom-i3,2019-20,Reading - Reading Memorial High,02460505, 0.0, 1.5, 0.0, 97.7, 0.8, 0.0, 0.0, 70.8, 29.2, 124.0 -1,1,a-pcom-i3,2019-20,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 77.2, 22.8, 65.2 -1,1,a-pcom-i3,2019-20,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 47.7 -1,1,a-pcom-i3,2019-20,Revere - A. C. Whelan Elementary School,02480003, 0.6, 0.0, 1.9, 97.4, 0.0, 0.0, 0.0, 92.3, 7.7, 81.7 -1,1,a-pcom-i3,2019-20,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 93.6, 6.4, 68.2 -1.875,1.88,a-pcom-i3,2019-20,Revere - Beachmont Veterans Memorial School,02480013, 1.8, 0.4, 3.8, 94.0, 0.0, 0.0, 0.0, 86.8, 13.2, 54.4 -2.906249999999999,2.91,a-pcom-i3,2019-20,Revere - Garfield Elementary School,02480056, 1.1, 4.2, 2.9, 90.7, 0.0, 0.0, 1.1, 91.7, 8.3, 90.3 -3.125,3.13,a-pcom-i3,2019-20,Revere - Garfield Middle School,02480057, 0.9, 5.4, 3.7, 90.0, 0.0, 0.0, 0.0, 58.0, 42.0, 55.9 -1,1,a-pcom-i3,2019-20,Revere - Paul Revere,02480050, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 91.6, 8.4, 53.7 -4.6875,4.69,a-pcom-i3,2019-20,Revere - Revere High,02480505, 4.3, 2.1, 6.7, 85.0, 0.8, 0.0, 1.1, 63.8, 36.2, 187.7 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Revere - Rumney Marsh Academy,02480014, 2.1, 0.0, 3.7, 94.2, 0.0, 0.0, 0.0, 71.3, 28.7, 70.2 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Revere - Seacoast School,02480520, 5.0, 0.0, 0.5, 94.6, 0.0, 0.0, 0.0, 62.1, 37.9, 20.1 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 2.4, 94.6, 0.0, 1.5, 1.5, 90.3, 9.7, 67.1 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Revere - Susan B. Anthony Middle School,02480305, 0.0, 1.5, 2.4, 96.2, 0.0, 0.0, 0.0, 72.1, 27.9, 67.4 -1.875,1.88,a-pcom-i3,2019-20,Richmond - Richmond Consolidated,02490005, 6.0, 0.0, 0.0, 94.0, 0.0, 0.0, 0.0, 90.8, 9.2, 33.6 -3.125,3.13,a-pcom-i3,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.5, 2.5, 5.0, 90.0, 0.0, 0.0, 0.0, 69.4, 30.6, 80.3 -1.3750000000000018,1.38,a-pcom-i3,2019-20,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 95.6, 0.0, 0.0, 4.4, 78.9, 21.1, 45.3 -1,1,a-pcom-i3,2019-20,Rochester - Rochester Memorial,02500005, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 89.0, 11.0, 63.7 -1,1,a-pcom-i3,2019-20,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 98.0, 2.0, 42.5 -1,1,a-pcom-i3,2019-20,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.5, 11.5, 75.8 -1,1,a-pcom-i3,2019-20,Rockland - Memorial Park,02510020, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 95.3, 4.7, 50.1 -2.0624999999999982,2.06,a-pcom-i3,2019-20,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 4.4, 93.4, 0.0, 0.0, 2.2, 93.8, 6.2, 45.6 -1,1,a-pcom-i3,2019-20,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 68.0, 32.0, 83.2 -1,1,a-pcom-i3,2019-20,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 56.5 -1,1,a-pcom-i3,2019-20,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.5, 35.5, 47.8 -1,1,a-pcom-i3,2019-20,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.3, 22.7, 34.9 -3.75,3.75,a-pcom-i3,2019-20,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 6.0, 88.0, 0.0, 0.0, 6.0, 82.5, 17.5, 16.6 -12.5625,5,a-pcom-i3,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 23.3, 3.7, 7.4, 59.8, 0.0, 0.0, 5.8, 61.9, 37.6, 189.0 -5.812499999999998,5,a-pcom-i3,2019-20,Sabis International Charter (District) - Sabis International Charter School,04410505, 8.1, 1.2, 8.7, 81.4, 0.0, 0.0, 0.6, 72.0, 28.0, 161.0 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Salem - Bates,02580003, 0.3, 0.2, 5.3, 94.3, 0.0, 0.0, 0.0, 80.7, 19.3, 63.9 -1,1,a-pcom-i3,2019-20,Salem - Carlton,02580015, 0.3, 0.2, 2.0, 97.5, 0.0, 0.0, 0.0, 93.3, 6.7, 49.8 -4.312499999999999,4.31,a-pcom-i3,2019-20,Salem - Collins Middle,02580305, 1.9, 2.9, 9.0, 86.2, 0.0, 0.0, 0.0, 70.8, 29.2, 104.3 -2.9375000000000018,2.94,a-pcom-i3,2019-20,Salem - Horace Mann Laboratory,02580030, 0.3, 2.5, 6.5, 90.6, 0.0, 0.0, 0.0, 91.7, 8.3, 45.9 -6.5625,5,a-pcom-i3,2019-20,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 21.0, 79.0, 0.0, 0.0, 0.0, 83.9, 16.1, 14.3 -2.34375,2.34,a-pcom-i3,2019-20,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 7.5, 92.5, 0.0, 0.0, 0.0, 97.6, 2.4, 37.5 -3.4375,3.44,a-pcom-i3,2019-20,Salem - Salem High,02580505, 1.8, 0.6, 8.5, 89.0, 0.0, 0.0, 0.0, 67.5, 32.5, 164.1 -4.312499999999999,4.31,a-pcom-i3,2019-20,Salem - Salem Prep High School,02580515, 0.0, 0.0, 13.8, 86.2, 0.0, 0.0, 0.0, 66.3, 33.7, 11.6 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Salem - Saltonstall School,02580050, 0.3, 0.2, 4.7, 94.8, 0.0, 0.0, 0.0, 92.9, 7.1, 61.5 -1.5625,1.56,a-pcom-i3,2019-20,Salem - Witchcraft Heights,02580070, 0.2, 1.2, 3.6, 95.0, 0.0, 0.0, 0.0, 93.1, 6.9, 94.8 -5.9375,5,a-pcom-i3,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 4.4, 1.5, 13.1, 81.0, 0.0, 0.0, 0.0, 71.2, 28.8, 68.5 -1,1,a-pcom-i3,2019-20,Sandwich - Forestdale School,02610002, 0.0, 2.0, 1.0, 97.0, 0.0, 0.0, 0.0, 95.0, 5.0, 100.5 -1,1,a-pcom-i3,2019-20,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 109.8 -1,1,a-pcom-i3,2019-20,Sandwich - Sandwich High,02610505, 0.0, 0.7, 2.0, 97.3, 0.0, 0.0, 0.0, 71.7, 28.3, 91.7 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.6, 2.8, 94.8, 0.0, 0.0, 1.8, 76.5, 23.5, 55.8 -1,1,a-pcom-i3,2019-20,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 72.3, 27.7, 88.8 -1,1,a-pcom-i3,2019-20,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 31.7 -1,1,a-pcom-i3,2019-20,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 29.2 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Saugus - Oaklandvale,02620050, 3.6, 0.0, 0.0, 96.4, 0.0, 0.0, 0.0, 95.0, 5.0, 27.4 -1.8437500000000018,1.84,a-pcom-i3,2019-20,Saugus - Saugus High,02620505, 2.4, 0.0, 3.5, 94.1, 0.0, 0.0, 0.0, 58.7, 41.3, 84.5 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 2.9, 95.1, 0.0, 1.0, 1.0, 98.1, 1.9, 102.9 -1.875,1.88,a-pcom-i3,2019-20,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 86.9, 13.1, 16.8 -1,1,a-pcom-i3,2019-20,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.7, 13.3, 44.4 -1,1,a-pcom-i3,2019-20,Scituate - Gates Middle School,02640305, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 81.5, 18.5, 79.4 -1,1,a-pcom-i3,2019-20,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 49.4 -1,1,a-pcom-i3,2019-20,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 53.9 -1.09375,1.09,a-pcom-i3,2019-20,Scituate - Scituate High School,02640505, 1.0, 1.0, 0.0, 96.5, 0.0, 0.6, 1.0, 66.9, 33.1, 102.8 -1,1,a-pcom-i3,2019-20,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 63.0 -1,1,a-pcom-i3,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.4, 1.4, 0.0, 97.1, 0.0, 0.0, 0.0, 76.8, 23.2, 69.0 -1.25,1.25,a-pcom-i3,2019-20,Seekonk - George R Martin,02650007, 1.3, 0.0, 0.0, 96.0, 0.0, 0.0, 2.7, 90.7, 9.3, 75.2 -1,1,a-pcom-i3,2019-20,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 98.1, 0.0, 0.0, 1.9, 92.5, 7.5, 53.2 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Seekonk - Seekonk High,02650505, 0.0, 1.2, 1.2, 96.3, 0.0, 0.0, 1.2, 67.6, 32.4, 80.2 -7.250000000000001,5,a-pcom-i3,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 7.3, 1.2, 13.4, 76.8, 0.0, 0.0, 1.2, 82.9, 17.1, 82.0 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Sharon - Cottage Street,02660005, 1.3, 4.1, 0.0, 94.6, 0.0, 0.0, 0.0, 93.2, 6.8, 61.2 -1,1,a-pcom-i3,2019-20,Sharon - East Elementary,02660010, 0.0, 0.7, 0.0, 99.3, 0.0, 0.0, 0.0, 94.0, 6.0, 68.1 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Sharon - Heights Elementary,02660015, 3.4, 2.3, 0.0, 94.3, 0.0, 0.0, 0.0, 90.1, 9.9, 87.4 -1,1,a-pcom-i3,2019-20,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 18.5 -1.7499999999999982,1.75,a-pcom-i3,2019-20,Sharon - Sharon High,02660505, 1.4, 3.5, 0.7, 94.4, 0.0, 0.0, 0.0, 70.0, 30.0, 143.2 -3.28125,3.28,a-pcom-i3,2019-20,Sharon - Sharon Middle,02660305, 4.4, 4.4, 0.0, 89.5, 0.9, 0.9, 0.0, 78.4, 21.6, 114.5 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.5, 2.2, 96.8, 0.0, 0.5, 0.0, 61.1, 38.9, 184.9 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Sherborn - Pine Hill,02690010, 1.5, 0.0, 1.2, 95.9, 0.0, 0.0, 1.4, 95.3, 4.7, 71.3 -2.4687500000000018,2.47,a-pcom-i3,2019-20,Shrewsbury - Beal School,02710005, 0.0, 7.9, 0.0, 92.1, 0.0, 0.0, 0.0, 96.4, 3.6, 55.5 -1.8124999999999991,1.81,a-pcom-i3,2019-20,Shrewsbury - Calvin Coolidge,02710015, 0.0, 4.3, 0.0, 94.2, 0.0, 0.0, 1.5, 98.5, 1.5, 65.0 -2.0000000000000018,2.0,a-pcom-i3,2019-20,Shrewsbury - Floral Street School,02710020, 1.1, 4.3, 0.0, 93.6, 1.1, 0.0, 0.0, 96.7, 3.3, 93.1 -2.437499999999999,2.44,a-pcom-i3,2019-20,Shrewsbury - Oak Middle School,02710030, 1.7, 3.5, 1.7, 92.2, 0.9, 0.0, 0.0, 80.4, 19.6, 117.1 -2.250000000000001,2.25,a-pcom-i3,2019-20,Shrewsbury - Parker Road Preschool,02710040, 2.0, 3.9, 0.0, 92.8, 0.0, 0.0, 1.3, 100.0, 0.0, 50.8 -2.562500000000001,2.56,a-pcom-i3,2019-20,Shrewsbury - Sherwood Middle School,02710305, 0.8, 1.6, 4.2, 91.8, 0.0, 0.0, 1.7, 85.4, 14.6, 120.0 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Shrewsbury - Shrewsbury Sr High,02710505, 1.0, 1.0, 2.3, 95.1, 0.0, 0.0, 0.6, 71.7, 28.3, 204.7 -1,1,a-pcom-i3,2019-20,Shrewsbury - Spring Street,02710035, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 97.0, 3.0, 54.1 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Shrewsbury - Walter J Paton,02710025, 0.0, 1.0, 1.4, 95.8, 0.0, 0.0, 1.8, 97.0, 3.0, 56.6 -2.406250000000001,2.41,a-pcom-i3,2019-20,Shutesbury - Shutesbury Elementary,02720005, 0.0, 3.1, 3.1, 92.3, 0.0, 0.0, 1.5, 90.8, 9.2, 32.6 -1,1,a-pcom-i3,2019-20,Silver Lake - Silver Lake Regional High,07600505, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 71.3, 28.7, 139.5 -1,1,a-pcom-i3,2019-20,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.5, 30.5, 68.7 -3.968750000000001,3.97,a-pcom-i3,2019-20,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 1.6, 1.6, 9.4, 87.3, 0.0, 0.0, 0.0, 81.1, 18.9, 62.1 -1,1,a-pcom-i3,2019-20,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 49.5 -1,1,a-pcom-i3,2019-20,Somerset - North Elementary,02730008, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 94.2, 5.8, 73.0 -1,1,a-pcom-i3,2019-20,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.7, 19.3, 74.0 -1,1,a-pcom-i3,2019-20,Somerset - South,02730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 32.2 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.8, 2.5, 96.6, 0.0, 0.0, 0.0, 64.1, 35.9, 118.8 -7.468750000000002,5,a-pcom-i3,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 4.3, 0.4, 19.2, 76.1, 0.0, 0.0, 0.0, 87.1, 12.9, 70.1 -6.062500000000002,5,a-pcom-i3,2019-20,Somerville - Arthur D Healey,02740075, 11.0, 1.4, 7.0, 80.6, 0.0, 0.0, 0.0, 77.5, 22.5, 71.2 -1,1,a-pcom-i3,2019-20,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.6, 18.4, 21.8 -4.187500000000002,4.19,a-pcom-i3,2019-20,Somerville - Capuano Early Childhood Center,02740005, 1.5, 1.5, 10.4, 86.6, 0.0, 0.0, 0.0, 93.9, 6.1, 65.6 -9.812500000000002,5,a-pcom-i3,2019-20,Somerville - E Somerville Community,02740111, 3.6, 1.4, 25.0, 68.6, 1.2, 0.0, 0.0, 80.5, 19.5, 82.3 -3.187500000000001,3.19,a-pcom-i3,2019-20,Somerville - Full Circle High School,02740510, 6.4, 0.0, 3.8, 89.8, 0.0, 0.0, 0.0, 58.1, 41.9, 15.6 -3.4687499999999982,3.47,a-pcom-i3,2019-20,Somerville - John F Kennedy,02740083, 1.4, 2.8, 5.6, 88.9, 0.0, 0.0, 1.4, 82.3, 17.7, 72.0 -2.5312499999999982,2.53,a-pcom-i3,2019-20,Somerville - Next Wave Junior High,02740410, 2.0, 0.0, 6.1, 91.9, 0.0, 0.0, 0.0, 81.0, 19.0, 9.9 -4.624999999999999,4.62,a-pcom-i3,2019-20,Somerville - Somerville High,02740505, 7.1, 0.6, 5.9, 85.2, 0.0, 0.0, 1.2, 62.1, 37.9, 168.6 -7.749999999999999,5,a-pcom-i3,2019-20,Somerville - West Somerville Neighborhood,02740115, 8.3, 2.1, 10.4, 75.2, 0.0, 0.0, 4.1, 83.4, 16.6, 48.3 -4.718749999999998,4.72,a-pcom-i3,2019-20,Somerville - Winter Hill Community,02740120, 2.4, 3.6, 7.9, 84.9, 0.0, 0.0, 1.2, 85.6, 14.4, 83.3 -1,1,a-pcom-i3,2019-20,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.0, 31.0, 71.0 -1.1249999999999982,1.12,a-pcom-i3,2019-20,South Hadley - Mosier,02780020, 0.0, 1.8, 1.8, 96.4, 0.0, 0.0, 0.0, 90.9, 9.1, 55.0 -1,1,a-pcom-i3,2019-20,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 86.8, 13.2, 53.1 -1,1,a-pcom-i3,2019-20,South Hadley - South Hadley High,02780505, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 62.7, 37.3, 72.4 -3.812500000000001,3.81,a-pcom-i3,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 1.6, 0.8, 9.8, 87.8, 0.0, 0.0, 0.0, 52.4, 47.6, 123.0 -3.7187500000000018,3.72,a-pcom-i3,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 8.6, 1.3, 1.3, 88.1, 0.0, 0.0, 0.7, 74.8, 25.2, 149.1 -1,1,a-pcom-i3,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.1, 98.5, 0.0, 0.4, 0.0, 46.9, 53.1, 93.9 -1,1,a-pcom-i3,2019-20,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 88.1, 11.9, 67.2 -1,1,a-pcom-i3,2019-20,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 41.3 -1,1,a-pcom-i3,2019-20,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 41.8 -2.4687500000000018,2.47,a-pcom-i3,2019-20,Southborough - Mary E Finn School,02760008, 1.3, 0.0, 5.3, 92.1, 0.0, 1.3, 0.0, 94.7, 5.3, 75.7 -1.25,1.25,a-pcom-i3,2019-20,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.3, 96.0, 2.7, 0.0, 0.0, 82.6, 17.4, 75.1 -7.156250000000002,5,a-pcom-i3,2019-20,Southbridge - Charlton Street,02770005, 5.7, 0.0, 17.1, 77.1, 0.0, 0.0, 0.0, 82.9, 17.1, 52.5 -3.59375,3.59,a-pcom-i3,2019-20,Southbridge - Eastford Road,02770010, 0.0, 0.0, 11.5, 88.5, 0.0, 0.0, 0.0, 94.2, 5.8, 52.1 -13.406249999999998,5,a-pcom-i3,2019-20,Southbridge - Southbridge Academy,02770525, 14.3, 0.0, 28.6, 57.1, 0.0, 0.0, 0.0, 61.9, 38.1, 21.0 -3.6249999999999982,3.62,a-pcom-i3,2019-20,Southbridge - Southbridge High School,02770515, 2.1, 0.0, 9.5, 88.4, 0.0, 0.0, 0.0, 61.8, 38.2, 63.0 -3.6249999999999982,3.62,a-pcom-i3,2019-20,Southbridge - Southbridge Middle School,02770315, 2.5, 1.5, 7.6, 88.4, 0.0, 0.0, 0.0, 71.4, 28.6, 66.2 -2.718750000000001,2.72,a-pcom-i3,2019-20,Southbridge - West Street,02770020, 0.0, 0.0, 8.7, 91.3, 0.0, 0.0, 0.0, 88.6, 11.4, 45.7 -4.656250000000002,4.66,a-pcom-i3,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 8.1, 2.1, 4.2, 85.1, 0.0, 0.0, 0.5, 59.7, 40.3, 191.8 -2.1875,2.19,a-pcom-i3,2019-20,Southern Berkshire - Mt Everett Regional,07650505, 2.7, 1.4, 1.5, 93.0, 0.0, 0.0, 1.4, 64.4, 35.6, 72.9 -2.9375000000000018,2.94,a-pcom-i3,2019-20,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 1.6, 90.6, 7.9, 0.0, 0.0, 80.3, 19.7, 12.7 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 92.3, 7.7, 2.6 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Southern Berkshire - Undermountain,07650035, 0.0, 0.9, 2.8, 96.2, 0.0, 0.0, 0.0, 95.5, 4.5, 53.0 -1,1,a-pcom-i3,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 1.2, 98.1, 0.0, 0.0, 0.6, 57.1, 42.9, 161.0 -1,1,a-pcom-i3,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 92.1, 7.9, 60.2 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 2.8, 95.3, 0.0, 0.0, 1.9, 71.3, 28.7, 105.5 -1,1,a-pcom-i3,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 64.8 -1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 59.5, 40.5, 45.6 -1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 92.9, 7.1, 45.7 -1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 73.9, 26.1, 52.1 -1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - Wire Village School,07670040, 1.4, 0.0, 0.7, 97.8, 0.0, 0.0, 0.0, 89.0, 11.0, 69.2 -9.562499999999998,5,a-pcom-i3,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 4.1, 0.0, 26.5, 69.4, 0.0, 0.0, 0.0, 89.8, 10.2, 49.0 -7.062499999999998,5,a-pcom-i3,2019-20,Springfield - Alice B Beal Elementary,02810175, 12.9, 3.2, 6.5, 77.4, 0.0, 0.0, 0.0, 87.1, 12.9, 31.0 -5.062500000000001,5,a-pcom-i3,2019-20,Springfield - Arthur T Talmadge,02810165, 8.1, 0.0, 8.1, 83.8, 0.0, 0.0, 0.0, 94.6, 5.4, 37.0 -7.374999999999998,5,a-pcom-i3,2019-20,Springfield - Balliet Middle School,02810360, 12.1, 0.0, 11.4, 76.4, 0.0, 0.0, 0.0, 72.2, 27.8, 17.5 -7.8125,5,a-pcom-i3,2019-20,Springfield - Brightwood,02810025, 2.3, 0.0, 22.7, 75.0, 0.0, 0.0, 0.0, 77.3, 22.7, 44.0 -8.96875,5,a-pcom-i3,2019-20,Springfield - Chestnut Academy,02810365, 17.2, 0.0, 11.5, 71.3, 0.0, 0.0, 0.0, 56.3, 43.7, 43.5 -17.8125,5,a-pcom-i3,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 32.7, 3.7, 20.6, 43.0, 0.0, 0.0, 0.0, 75.7, 24.3, 53.5 -14.968749999999998,5,a-pcom-i3,2019-20,Springfield - Conservatory of the Arts,02810475, 19.1, 0.0, 28.7, 52.1, 0.0, 0.0, 0.0, 68.1, 31.9, 47.0 -3.531249999999999,3.53,a-pcom-i3,2019-20,Springfield - Daniel B Brunton,02810035, 3.8, 0.0, 7.5, 88.7, 0.0, 0.0, 0.0, 94.3, 5.7, 53.0 -11.28125,5,a-pcom-i3,2019-20,Springfield - Early Childhood Education Center,02810001, 24.1, 0.0, 12.0, 63.9, 0.0, 0.0, 0.0, 97.6, 2.4, 41.5 -10.406249999999998,5,a-pcom-i3,2019-20,Springfield - Edward P. Boland School,02810010, 11.1, 0.9, 20.4, 66.7, 0.0, 0.0, 0.9, 87.0, 12.0, 108.0 -12.156249999999998,5,a-pcom-i3,2019-20,Springfield - Elias Brookings,02810030, 22.2, 3.7, 13.0, 61.1, 0.0, 0.0, 0.0, 94.4, 5.6, 54.0 -5.218750000000001,5,a-pcom-i3,2019-20,Springfield - Forest Park Middle,02810325, 6.0, 2.4, 8.3, 83.3, 0.0, 0.0, 0.0, 71.4, 28.6, 84.0 -17.437499999999996,5,a-pcom-i3,2019-20,Springfield - Frank H Freedman,02810075, 44.2, 0.0, 11.6, 44.2, 0.0, 0.0, 0.0, 83.7, 16.3, 43.0 -7.999999999999998,5,a-pcom-i3,2019-20,Springfield - Frederick Harris,02810080, 6.1, 1.2, 18.3, 74.4, 0.0, 0.0, 0.0, 93.9, 6.1, 82.0 -31.25,5,a-pcom-i3,2019-20,Springfield - Gateway to College at Holyoke Community College,02810575, 54.2, 0.0, 45.8, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.7 -11.187499999999998,5,a-pcom-i3,2019-20,Springfield - Gateway to College at Springfield Technical Community College,02810580, 35.8, 0.0, 0.0, 64.2, 0.0, 0.0, 0.0, 100.0, 0.0, 1.1 -12.25,5,a-pcom-i3,2019-20,Springfield - German Gerena Community School,02810195, 3.9, 0.0, 35.3, 60.8, 0.0, 0.0, 0.0, 93.1, 6.9, 102.0 -4.125000000000001,4.13,a-pcom-i3,2019-20,Springfield - Glenwood,02810065, 2.6, 0.0, 10.5, 86.8, 0.0, 0.0, 0.0, 97.4, 2.6, 38.0 -9.249999999999998,5,a-pcom-i3,2019-20,Springfield - Glickman Elementary,02810068, 5.5, 0.0, 24.0, 70.4, 0.0, 0.0, 0.0, 90.8, 9.2, 54.1 -14.031249999999998,5,a-pcom-i3,2019-20,Springfield - High School Of Commerce,02810510, 21.3, 2.9, 20.0, 55.1, 0.0, 0.0, 0.6, 66.0, 34.0, 154.7 -6.062500000000002,5,a-pcom-i3,2019-20,Springfield - Hiram L Dorman,02810050, 13.9, 0.0, 5.6, 80.6, 0.0, 0.0, 0.0, 91.7, 8.3, 36.0 -6.124999999999998,5,a-pcom-i3,2019-20,Springfield - Homer Street,02810085, 11.8, 0.0, 7.8, 80.4, 0.0, 0.0, 0.0, 88.2, 11.8, 51.0 -19.59375,5,a-pcom-i3,2019-20,Springfield - Impact Prep at Chestnut,02810366, 27.5, 0.0, 27.5, 37.3, 0.0, 0.0, 7.8, 66.7, 33.3, 51.0 -4.750000000000001,4.75,a-pcom-i3,2019-20,Springfield - Indian Orchard Elementary,02810100, 3.8, 0.0, 11.4, 84.8, 0.0, 0.0, 0.0, 93.7, 6.3, 79.0 -13.625,5,a-pcom-i3,2019-20,Springfield - John F Kennedy Middle,02810328, 28.6, 1.4, 13.6, 56.4, 0.0, 0.0, 0.0, 69.3, 30.7, 70.0 -12.96875,5,a-pcom-i3,2019-20,Springfield - John J Duggan Middle,02810320, 29.5, 1.0, 11.1, 58.5, 0.0, 0.0, 0.0, 69.6, 30.4, 103.5 -3.999999999999999,4.0,a-pcom-i3,2019-20,Springfield - Kensington International School,02810110, 5.1, 0.0, 7.7, 87.2, 0.0, 0.0, 0.0, 89.7, 10.3, 39.0 -10.031249999999998,5,a-pcom-i3,2019-20,Springfield - Liberty,02810115, 21.4, 0.0, 10.7, 67.9, 0.0, 0.0, 0.0, 94.7, 5.3, 37.4 -8.5,5,a-pcom-i3,2019-20,Springfield - Liberty Preparatory Academy,02810560, 27.2, 0.0, 0.0, 72.8, 0.0, 0.0, 0.0, 59.3, 40.7, 7.8 -9.406249999999998,5,a-pcom-i3,2019-20,Springfield - Lincoln,02810120, 12.9, 0.0, 17.2, 69.9, 0.0, 0.0, 0.0, 89.2, 10.8, 46.5 -12.906249999999998,5,a-pcom-i3,2019-20,Springfield - M Marcus Kiley Middle,02810330, 27.2, 0.0, 14.1, 58.7, 0.0, 0.0, 0.0, 76.1, 23.9, 92.0 -12.03125,5,a-pcom-i3,2019-20,Springfield - Margaret C Ells,02810060, 20.5, 0.0, 17.9, 61.5, 0.0, 0.0, 0.0, 94.9, 5.1, 39.0 -5.9375,5,a-pcom-i3,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 9.5, 0.0, 9.5, 81.0, 0.0, 0.0, 0.0, 95.2, 4.8, 42.0 -10.093749999999998,5,a-pcom-i3,2019-20,Springfield - Mary M Lynch,02810140, 19.4, 0.0, 12.9, 67.7, 0.0, 0.0, 0.0, 93.5, 6.5, 31.0 -6.25,5,a-pcom-i3,2019-20,Springfield - Mary M Walsh,02810155, 6.7, 2.2, 11.1, 80.0, 0.0, 0.0, 0.0, 88.9, 11.1, 45.0 -7.5,5,a-pcom-i3,2019-20,Springfield - Mary O Pottenger,02810145, 10.0, 0.0, 14.0, 76.0, 0.0, 0.0, 0.0, 96.0, 4.0, 50.0 -8.75,5,a-pcom-i3,2019-20,Springfield - Milton Bradley School,02810023, 6.7, 0.0, 21.3, 72.0, 0.0, 0.0, 0.0, 92.0, 8.0, 75.0 -16.59375,5,a-pcom-i3,2019-20,Springfield - Rebecca M Johnson,02810055, 34.0, 0.0, 18.2, 46.9, 0.0, 1.0, 0.0, 88.0, 12.0, 104.5 -11.374999999999998,5,a-pcom-i3,2019-20,Springfield - Rise Academy at Van Sickle,02810480, 22.7, 0.0, 13.6, 63.6, 0.0, 0.0, 0.0, 72.7, 27.3, 44.0 -9.28125,5,a-pcom-i3,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 11.1, 2.7, 15.4, 70.3, 0.0, 0.0, 0.5, 52.2, 47.8, 185.0 -11.46875,5,a-pcom-i3,2019-20,Springfield - STEM Middle Academy,02810350, 20.0, 0.0, 16.7, 63.3, 0.0, 0.0, 0.0, 66.7, 33.3, 30.0 -7.593749999999999,5,a-pcom-i3,2019-20,Springfield - Samuel Bowles,02810020, 8.1, 2.7, 13.5, 75.7, 0.0, 0.0, 0.0, 83.8, 16.2, 37.0 -13.75,5,a-pcom-i3,2019-20,Springfield - South End Middle School,02810355, 14.7, 0.0, 29.3, 56.0, 0.0, 0.0, 0.0, 85.0, 15.0, 34.1 -8.250000000000002,5,a-pcom-i3,2019-20,Springfield - Springfield Central High,02810500, 12.7, 2.2, 10.1, 73.6, 0.0, 0.0, 1.3, 54.9, 45.1, 227.5 -13.46875,5,a-pcom-i3,2019-20,Springfield - Springfield High School,02810570, 23.4, 0.0, 19.7, 56.9, 0.0, 0.0, 0.0, 62.8, 37.2, 30.5 -10.718749999999998,5,a-pcom-i3,2019-20,Springfield - Springfield High School of Science and Technology,02810530, 14.5, 1.8, 16.2, 65.7, 0.0, 0.0, 1.8, 60.7, 39.3, 165.1 -6.25,5,a-pcom-i3,2019-20,Springfield - Springfield International Academy at Johnson,02810215, 20.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 80.0, 20.0, 2.5 -7.96875,5,a-pcom-i3,2019-20,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 25.5, 74.5, 0.0, 0.0, 0.0, 80.4, 19.6, 4.6 -13.3125,5,a-pcom-i3,2019-20,Springfield - Springfield Public Day Elementary School,02810005, 23.4, 0.0, 19.1, 57.4, 0.0, 0.0, 0.0, 96.2, 3.8, 26.1 -17.25,5,a-pcom-i3,2019-20,Springfield - Springfield Public Day High School,02810550, 30.0, 0.0, 25.2, 44.8, 0.0, 0.0, 0.0, 66.7, 33.3, 30.4 -8.468749999999998,5,a-pcom-i3,2019-20,Springfield - Springfield Public Day Middle School,02810345, 18.2, 0.0, 8.8, 72.9, 0.0, 0.0, 0.0, 64.6, 35.4, 22.6 -9.093749999999998,5,a-pcom-i3,2019-20,Springfield - Springfield Vocational Academy,02810675, 12.0, 0.0, 17.1, 70.9, 0.0, 0.0, 0.0, 62.9, 37.1, 12.5 -7.625000000000002,5,a-pcom-i3,2019-20,Springfield - Sumner Avenue,02810160, 12.2, 1.2, 11.0, 75.6, 0.0, 0.0, 0.0, 89.0, 11.0, 82.0 -8.8125,5,a-pcom-i3,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 14.1, 1.2, 10.6, 71.8, 0.0, 1.2, 1.2, 80.6, 19.4, 85.0 -9.500000000000002,5,a-pcom-i3,2019-20,Springfield - Thomas M Balliet,02810015, 15.2, 0.0, 15.2, 69.6, 0.0, 0.0, 0.0, 87.3, 12.7, 39.5 -10.15625,5,a-pcom-i3,2019-20,Springfield - Van Sickle Academy,02810485, 7.8, 0.0, 24.7, 67.5, 0.0, 0.0, 0.0, 76.6, 23.4, 38.5 -6.749999999999998,5,a-pcom-i3,2019-20,Springfield - Warner,02810180, 16.2, 0.0, 5.4, 78.4, 0.0, 0.0, 0.0, 89.2, 10.8, 37.0 -5.125000000000002,5,a-pcom-i3,2019-20,Springfield - Washington,02810185, 6.6, 0.0, 9.8, 83.6, 0.0, 0.0, 0.0, 95.1, 4.9, 61.0 -4.812500000000002,4.81,a-pcom-i3,2019-20,Springfield - White Street,02810190, 3.8, 0.0, 11.5, 84.6, 0.0, 0.0, 0.0, 98.1, 1.9, 52.0 -11.40625,5,a-pcom-i3,2019-20,Springfield - William N. DeBerry,02810045, 14.1, 0.0, 22.4, 63.5, 0.0, 0.0, 0.0, 95.3, 4.7, 42.5 -10.093749999999998,5,a-pcom-i3,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 13.6, 0.0, 16.4, 67.7, 0.0, 2.3, 0.0, 93.5, 6.5, 42.8 -1,1,a-pcom-i3,2019-20,Stoneham - Colonial Park,02840005, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 94.7, 5.3, 52.0 -1,1,a-pcom-i3,2019-20,Stoneham - Robin Hood,02840025, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 92.3, 7.7, 51.7 -1,1,a-pcom-i3,2019-20,Stoneham - South,02840030, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 92.0, 8.0, 49.9 -1.1874999999999991,1.19,a-pcom-i3,2019-20,Stoneham - Stoneham Central Middle School,02840405, 0.9, 0.9, 0.9, 96.2, 0.0, 0.0, 0.9, 64.0, 36.0, 105.5 -1,1,a-pcom-i3,2019-20,Stoneham - Stoneham High,02840505, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 80.9, 19.1, 94.3 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Stoughton - Edwin A Jones Early Childhood Center,02850012, 3.5, 0.0, 1.7, 94.8, 0.0, 0.0, 0.0, 98.3, 1.7, 23.0 -1,1,a-pcom-i3,2019-20,Stoughton - Helen Hansen Elementary,02850010, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 85.5, 14.5, 36.8 -1,1,a-pcom-i3,2019-20,Stoughton - Joseph H Gibbons,02850025, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 90.9, 9.1, 44.6 -1.2812499999999982,1.28,a-pcom-i3,2019-20,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 2.0, 0.0, 95.9, 0.0, 0.0, 2.0, 87.8, 12.2, 49.1 -1.71875,1.72,a-pcom-i3,2019-20,Stoughton - O'Donnell Middle School,02850405, 3.3, 1.7, 0.5, 94.5, 0.0, 0.0, 0.0, 82.7, 17.3, 101.1 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.8, 2.2, 94.8, 0.0, 0.0, 2.2, 94.8, 5.2, 45.6 -1,1,a-pcom-i3,2019-20,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 29.3 -1.40625,1.41,a-pcom-i3,2019-20,Stoughton - Stoughton High,02850505, 1.1, 1.0, 0.7, 95.5, 0.8, 0.8, 0.2, 69.4, 30.6, 129.3 -1,1,a-pcom-i3,2019-20,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 131.6 -1.4374999999999982,1.44,a-pcom-i3,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.7, 0.7, 3.2, 95.4, 0.0, 0.0, 0.0, 68.6, 31.4, 142.0 -2.437499999999999,2.44,a-pcom-i3,2019-20,Sudbury - Ephraim Curtis Middle,02880305, 1.7, 0.8, 3.7, 92.2, 0.0, 0.0, 1.5, 72.8, 27.2, 117.9 -1,1,a-pcom-i3,2019-20,Sudbury - General John Nixon Elementary,02880025, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 91.9, 8.1, 50.6 -3.28125,3.28,a-pcom-i3,2019-20,Sudbury - Israel Loring School,02880015, 2.6, 1.7, 3.1, 89.5, 0.0, 0.0, 3.1, 92.9, 7.1, 58.1 -2.0000000000000018,2.0,a-pcom-i3,2019-20,Sudbury - Josiah Haynes,02880010, 0.0, 0.8, 5.6, 93.6, 0.0, 0.0, 0.0, 93.6, 6.4, 64.0 -2.0624999999999982,2.06,a-pcom-i3,2019-20,Sudbury - Peter Noyes,02880030, 0.0, 1.2, 3.0, 93.4, 0.0, 0.0, 2.4, 93.8, 6.2, 83.0 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Sunderland - Sunderland Elementary,02890005, 0.0, 3.8, 1.9, 94.3, 0.0, 0.0, 0.0, 90.6, 9.4, 53.0 -1,1,a-pcom-i3,2019-20,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.3, 0.7, 56.2 -1,1,a-pcom-i3,2019-20,Sutton - Sutton Elementary,02900005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 51.2 -1,1,a-pcom-i3,2019-20,Sutton - Sutton High School,02900510, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 62.2, 37.8, 57.6 -1,1,a-pcom-i3,2019-20,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.1, 25.9, 45.3 -1,1,a-pcom-i3,2019-20,Swampscott - Clarke,02910005, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 91.2, 8.8, 36.8 -1,1,a-pcom-i3,2019-20,Swampscott - Hadley,02910010, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 92.0, 8.0, 44.9 -1.40625,1.41,a-pcom-i3,2019-20,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 95.5, 0.0, 0.0, 4.5, 84.3, 15.7, 44.6 -1.6250000000000009,1.63,a-pcom-i3,2019-20,Swampscott - Swampscott High,02910505, 1.1, 0.7, 3.4, 94.8, 0.0, 0.0, 0.0, 69.8, 30.2, 87.7 -1,1,a-pcom-i3,2019-20,Swampscott - Swampscott Middle,02910305, 0.9, 0.0, 0.9, 97.2, 0.0, 0.0, 0.9, 88.6, 11.4, 106.5 -1,1,a-pcom-i3,2019-20,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 28.3 -1,1,a-pcom-i3,2019-20,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 23.7 -1,1,a-pcom-i3,2019-20,Swansea - Joseph Case High,02920505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 46.8, 53.2, 65.6 -1,1,a-pcom-i3,2019-20,Swansea - Joseph Case Jr High,02920305, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 66.9, 33.1, 54.6 -1,1,a-pcom-i3,2019-20,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.0, 14.0, 25.1 -1,1,a-pcom-i3,2019-20,Swansea - Mark G Hoyle Elementary,02920017, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 91.4, 8.6, 33.2 -3.28125,3.28,a-pcom-i3,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 0.8, 5.6, 4.0, 89.5, 0.0, 0.0, 0.0, 70.5, 29.5, 123.8 -1,1,a-pcom-i3,2019-20,Tantasqua - Tantasqua Regional Jr High,07700405, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 76.8, 21.8, 71.1 -1,1,a-pcom-i3,2019-20,Tantasqua - Tantasqua Regional Sr High,07700505, 0.9, 0.0, 0.8, 97.5, 0.0, 0.0, 0.8, 64.1, 35.9, 125.1 -1.6875000000000018,1.69,a-pcom-i3,2019-20,Tantasqua - Tantasqua Regional Vocational,07700605, 5.4, 0.0, 0.0, 94.6, 0.0, 0.0, 0.0, 33.3, 66.7, 16.0 -1,1,a-pcom-i3,2019-20,Taunton - Benjamin Friedman Middle,02930315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.4, 19.6, 82.1 -1,1,a-pcom-i3,2019-20,Taunton - East Taunton Elementary,02930010, 1.2, 0.0, 1.2, 97.7, 0.0, 0.0, 0.0, 91.6, 8.4, 86.6 -1,1,a-pcom-i3,2019-20,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 36.5 -1.7499999999999982,1.75,a-pcom-i3,2019-20,Taunton - Edward F. Leddy Preschool,02930005, 2.8, 0.0, 2.8, 94.4, 0.0, 0.0, 0.0, 100.0, 0.0, 35.6 -1,1,a-pcom-i3,2019-20,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 92.7, 7.3, 68.0 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Taunton - H H Galligan,02930057, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 98.7, 1.3, 41.0 -2.4687500000000018,2.47,a-pcom-i3,2019-20,Taunton - Hopewell,02930035, 5.3, 0.0, 2.6, 92.1, 0.0, 0.0, 0.0, 88.5, 11.5, 38.1 -2.1562500000000018,2.16,a-pcom-i3,2019-20,Taunton - John F Parker Middle,02930305, 3.4, 0.0, 3.4, 93.1, 0.0, 0.0, 0.0, 74.6, 25.4, 58.3 -1,1,a-pcom-i3,2019-20,Taunton - Joseph C Chamberlain,02930008, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 97.6, 2.4, 63.7 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Taunton - Joseph H Martin,02930042, 4.3, 0.0, 0.0, 95.7, 0.0, 0.0, 0.0, 82.8, 17.2, 70.1 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 94.9, 5.1, 60.2 -1,1,a-pcom-i3,2019-20,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 55.1, 44.9, 11.7 -2.0624999999999982,2.06,a-pcom-i3,2019-20,Taunton - Taunton High,02930505, 3.4, 0.4, 2.4, 93.4, 0.0, 0.0, 0.4, 65.4, 34.6, 248.2 -2.906249999999999,2.91,a-pcom-i3,2019-20,Tewksbury - Heath-Brook,02950010, 0.0, 7.0, 2.3, 90.7, 0.0, 0.0, 0.0, 98.8, 1.2, 43.1 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Tewksbury - John F. Ryan,02950023, 2.9, 0.7, 0.0, 96.4, 0.0, 0.0, 0.0, 89.3, 10.7, 69.9 -1,1,a-pcom-i3,2019-20,Tewksbury - John W. Wynn Middle,02950305, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 76.3, 23.7, 65.3 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Tewksbury - L F Dewing,02950001, 1.2, 1.2, 1.2, 96.4, 0.0, 0.0, 0.0, 97.0, 3.0, 83.0 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 91.8, 8.2, 30.6 -1.8437500000000018,1.84,a-pcom-i3,2019-20,Tewksbury - North Street,02950020, 0.0, 1.2, 4.7, 94.1, 0.0, 0.0, 0.0, 96.5, 3.5, 42.6 -1.09375,1.09,a-pcom-i3,2019-20,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 1.8, 1.8, 96.5, 0.0, 0.0, 0.0, 63.1, 36.9, 113.9 -2.437499999999999,2.44,a-pcom-i3,2019-20,Tisbury - Tisbury Elementary,02960005, 1.8, 0.0, 4.6, 92.2, 0.0, 0.0, 1.4, 85.5, 14.5, 72.5 -1,1,a-pcom-i3,2019-20,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 42.0 -1,1,a-pcom-i3,2019-20,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 96.8, 3.2, 60.5 -1,1,a-pcom-i3,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.8, 0.8, 0.0, 98.5, 0.0, 0.0, 0.0, 62.1, 37.9, 131.4 -1,1,a-pcom-i3,2019-20,Triton - Newbury Elementary,07730020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 79.5 -1,1,a-pcom-i3,2019-20,Triton - Pine Grove,07730025, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 88.5, 11.5, 61.1 -1,1,a-pcom-i3,2019-20,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 68.5 -1,1,a-pcom-i3,2019-20,Triton - Triton Regional High School,07730505, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 57.3, 42.7, 94.6 -1,1,a-pcom-i3,2019-20,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.6, 34.4, 49.7 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Truro - Truro Central,03000005, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 86.5, 13.5, 29.6 -1,1,a-pcom-i3,2019-20,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 90.9, 9.1, 99.0 -1,1,a-pcom-i3,2019-20,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 65.9, 34.1, 52.1 -1,1,a-pcom-i3,2019-20,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 71.1, 28.9, 53.2 -10.718749999999998,5,a-pcom-i3,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 24.2, 2.0, 8.1, 65.7, 0.0, 0.0, 0.0, 63.7, 36.3, 49.5 -12.5,5,a-pcom-i3,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 29.3, 0.0, 10.7, 60.0, 0.0, 0.0, 0.0, 82.7, 17.3, 75.0 -1,1,a-pcom-i3,2019-20,Up-Island Regional - Chilmark Elementary,07740010, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 97.9, 2.1, 11.1 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Up-Island Regional - West Tisbury Elementary,07740020, 0.4, 0.0, 2.2, 96.1, 0.0, 0.0, 1.3, 84.3, 15.7, 75.2 -1,1,a-pcom-i3,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 99.1, 0.9, 0.0, 0.0, 44.5, 55.5, 109.1 -31.25,5,a-pcom-i3,2019-20,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1,1,a-pcom-i3,2019-20,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 82.1 -1,1,a-pcom-i3,2019-20,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.1, 27.9, 78.9 -1,1,a-pcom-i3,2019-20,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.0, 15.0, 60.2 -9.28125,5,a-pcom-i3,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 18.6, 1.9, 9.3, 70.3, 0.0, 0.0, 0.0, 81.4, 18.6, 53.8 -1,1,a-pcom-i3,2019-20,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.1, 21.9, 52.5 -1,1,a-pcom-i3,2019-20,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.3, 16.7, 50.3 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 86.3, 13.7, 58.3 -1,1,a-pcom-i3,2019-20,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 55.6 -1,1,a-pcom-i3,2019-20,Wachusett - Early Childhood Center,07750001, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 98.0, 2.0, 50.4 -1,1,a-pcom-i3,2019-20,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.5, 11.5, 56.7 -1,1,a-pcom-i3,2019-20,Wachusett - Houghton Elementary,07750027, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 97.0, 3.0, 67.0 -1,1,a-pcom-i3,2019-20,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 49.8 -1,1,a-pcom-i3,2019-20,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 80.0, 20.0, 75.4 -1,1,a-pcom-i3,2019-20,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 47.7 -1,1,a-pcom-i3,2019-20,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.7, 15.3, 52.3 -1,1,a-pcom-i3,2019-20,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 42.6 -1,1,a-pcom-i3,2019-20,Wachusett - Wachusett Regional High,07750505, 0.0, 0.4, 0.4, 99.1, 0.0, 0.0, 0.0, 70.8, 29.2, 229.2 -1,1,a-pcom-i3,2019-20,Wakefield - Dolbeare,03050005, 0.0, 1.5, 0.0, 96.9, 1.5, 0.0, 0.0, 89.8, 10.2, 65.5 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 100.0, 0.0, 25.7 -1,1,a-pcom-i3,2019-20,Wakefield - Galvin Middle School,03050310, 0.8, 0.0, 0.8, 98.4, 0.0, 0.0, 0.0, 75.1, 24.9, 122.8 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Wakefield - Greenwood,03050020, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 92.3, 7.7, 29.9 -1,1,a-pcom-i3,2019-20,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.9, 0.9, 98.3, 0.0, 0.0, 0.0, 64.6, 35.4, 114.8 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Wakefield - Walton,03050040, 3.9, 0.0, 0.0, 96.1, 0.0, 0.0, 0.0, 97.3, 2.7, 25.7 -1.5625,1.56,a-pcom-i3,2019-20,Wakefield - Woodville School,03050015, 0.0, 0.0, 3.4, 95.0, 0.0, 0.0, 1.7, 94.5, 5.5, 59.6 -1,1,a-pcom-i3,2019-20,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 20.7 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Walpole - Bird Middle,03070305, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 77.6, 22.4, 58.1 -1,1,a-pcom-i3,2019-20,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 53.1 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 94.4, 5.6, 18.0 -1,1,a-pcom-i3,2019-20,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 77.9, 22.1, 58.9 -1,1,a-pcom-i3,2019-20,Walpole - Elm Street School,03070005, 0.0, 1.0, 1.0, 98.0, 0.0, 0.0, 0.0, 97.9, 2.1, 52.3 -1,1,a-pcom-i3,2019-20,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 56.4 -1,1,a-pcom-i3,2019-20,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 89.8, 10.2, 49.2 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Walpole - Walpole High,03070505, 0.0, 1.4, 1.8, 96.8, 0.0, 0.0, 0.0, 68.7, 31.3, 141.3 -1,1,a-pcom-i3,2019-20,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.2, 0.7, 99.1, 0.0, 0.0, 0.0, 91.7, 8.3, 58.8 -4.406249999999998,4.41,a-pcom-i3,2019-20,Waltham - Henry Whittemore Elementary School,03080065, 3.4, 0.0, 9.0, 85.9, 0.0, 0.0, 1.7, 87.3, 12.7, 59.7 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 1.9, 96.4, 0.0, 0.0, 1.7, 87.8, 12.2, 58.2 -3.28125,3.28,a-pcom-i3,2019-20,Waltham - John F Kennedy Middle,03080404, 1.2, 4.5, 4.7, 89.5, 0.0, 0.0, 0.0, 79.4, 20.6, 88.5 -3.125,3.13,a-pcom-i3,2019-20,Waltham - John W. McDevitt Middle School,03080415, 1.0, 0.0, 7.1, 90.0, 0.0, 0.0, 2.0, 66.7, 33.3, 101.9 -3.031250000000001,3.03,a-pcom-i3,2019-20,Waltham - Northeast Elementary School,03080040, 1.1, 1.2, 6.2, 90.3, 0.0, 0.0, 1.1, 94.6, 5.4, 88.3 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.8, 4.1, 95.1, 0.0, 0.0, 0.0, 90.2, 9.8, 62.8 -16.187499999999996,5,a-pcom-i3,2019-20,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.6, 51.3, 48.2, 0.0, 0.0, 0.0, 81.6, 18.4, 18.0 -3.9374999999999982,3.94,a-pcom-i3,2019-20,Waltham - Waltham Sr High,03080505, 3.9, 1.4, 6.4, 87.4, 0.0, 0.5, 0.5, 66.2, 33.8, 219.8 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Waltham - William F. Stanley Elementary School,03080005, 2.0, 1.7, 1.3, 93.9, 0.0, 0.0, 1.1, 90.2, 9.8, 90.8 -1,1,a-pcom-i3,2019-20,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 91.4, 8.6, 58.1 -2.0624999999999982,2.06,a-pcom-i3,2019-20,Ware - Ware Junior/Senior High School,03090505, 1.4, 0.0, 5.2, 93.4, 0.0, 0.0, 0.0, 72.4, 27.6, 73.0 -1,1,a-pcom-i3,2019-20,Ware - Ware Middle School,03090305, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 85.2, 14.8, 40.5 -1,1,a-pcom-i3,2019-20,Wareham - John William Decas,03100003, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 94.3, 5.7, 95.9 -1,1,a-pcom-i3,2019-20,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 97.1, 0.0, 0.0, 2.9, 93.0, 7.0, 51.5 -1,1,a-pcom-i3,2019-20,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.1, 22.9, 4.0 -1.40625,1.41,a-pcom-i3,2019-20,Wareham - Wareham Middle,03100305, 1.5, 0.0, 0.0, 95.5, 0.0, 0.0, 3.0, 86.4, 13.6, 66.2 -2.8125,2.81,a-pcom-i3,2019-20,Wareham - Wareham Senior High,03100505, 3.0, 1.0, 0.0, 91.0, 0.0, 0.0, 5.0, 67.0, 33.0, 99.9 -2.124999999999999,2.12,a-pcom-i3,2019-20,Watertown - Cunniff,03140015, 0.0, 2.9, 3.9, 93.2, 0.0, 0.0, 0.0, 90.3, 9.7, 51.5 -1,1,a-pcom-i3,2019-20,Watertown - Hosmer,03140020, 0.0, 1.2, 0.0, 97.9, 0.0, 0.0, 0.8, 88.5, 11.5, 121.6 -3.687499999999999,3.69,a-pcom-i3,2019-20,Watertown - James Russell Lowell,03140025, 4.4, 1.5, 5.9, 88.2, 0.0, 0.0, 0.0, 88.2, 11.8, 67.6 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Watertown - Watertown High,03140505, 1.0, 1.0, 1.0, 96.1, 0.0, 0.0, 1.0, 51.5, 48.5, 103.4 -1,1,a-pcom-i3,2019-20,Watertown - Watertown Middle,03140305, 0.0, 0.0, 1.2, 97.6, 0.0, 0.0, 1.2, 74.6, 25.4, 82.6 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Wayland - Claypit Hill School,03150005, 1.6, 1.2, 1.2, 94.7, 0.0, 0.0, 1.2, 94.1, 5.9, 82.1 -3.0937500000000018,3.09,a-pcom-i3,2019-20,Wayland - Happy Hollow School,03150015, 0.6, 5.9, 3.4, 90.1, 0.0, 0.0, 0.0, 97.3, 2.7, 58.6 -3.218749999999999,3.22,a-pcom-i3,2019-20,Wayland - Loker School,03150020, 0.6, 1.8, 6.1, 89.7, 0.0, 0.0, 1.8, 90.0, 10.0, 54.4 -1.71875,1.72,a-pcom-i3,2019-20,Wayland - Wayland High School,03150505, 3.9, 0.8, 0.8, 94.5, 0.0, 0.0, 0.0, 66.4, 33.6, 127.1 -3.28125,3.28,a-pcom-i3,2019-20,Wayland - Wayland Middle School,03150305, 1.1, 1.9, 6.4, 89.5, 0.0, 0.0, 1.1, 69.4, 30.6, 93.6 -2.593749999999999,2.59,a-pcom-i3,2019-20,Webster - Bartlett High School,03160505, 3.3, 0.0, 3.3, 91.7, 0.0, 0.0, 1.7, 67.5, 32.5, 60.0 -1,1,a-pcom-i3,2019-20,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 115.9 -1,1,a-pcom-i3,2019-20,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.7, 25.3, 69.2 -2.124999999999999,2.12,a-pcom-i3,2019-20,Wellesley - Ernest F Upham,03170050, 0.3, 1.8, 4.7, 93.2, 0.0, 0.0, 0.0, 90.2, 9.8, 55.3 -2.718750000000001,2.72,a-pcom-i3,2019-20,Wellesley - Hunnewell,03170025, 2.0, 0.0, 4.4, 91.3, 0.0, 0.0, 2.4, 91.4, 8.6, 42.5 -1.71875,1.72,a-pcom-i3,2019-20,Wellesley - John D Hardy,03170020, 0.4, 2.6, 2.6, 94.5, 0.0, 0.0, 0.0, 95.3, 4.7, 38.8 -1,1,a-pcom-i3,2019-20,Wellesley - Joseph E Fiske,03170015, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 97.6, 2.4, 48.2 -2.96875,2.97,a-pcom-i3,2019-20,Wellesley - Katharine Lee Bates,03170005, 2.7, 0.0, 4.3, 90.5, 0.0, 0.0, 2.4, 99.7, 0.3, 41.6 -2.250000000000001,2.25,a-pcom-i3,2019-20,Wellesley - Preschool at Wellesley Schools,03170001, 0.0, 4.8, 2.4, 92.8, 0.0, 0.0, 0.0, 100.0, 0.0, 41.5 -1.875,1.88,a-pcom-i3,2019-20,Wellesley - Schofield,03170045, 2.2, 0.0, 3.8, 94.0, 0.0, 0.0, 0.0, 86.7, 13.3, 52.3 -2.250000000000001,2.25,a-pcom-i3,2019-20,Wellesley - Sprague Elementary School,03170048, 2.0, 1.7, 0.0, 92.8, 0.0, 0.0, 3.5, 94.5, 5.5, 57.4 -2.8437499999999982,2.84,a-pcom-i3,2019-20,Wellesley - Wellesley Middle,03170305, 2.0, 2.1, 3.5, 90.9, 0.0, 0.0, 1.6, 75.1, 24.9, 177.6 -3.125,3.13,a-pcom-i3,2019-20,Wellesley - Wellesley Sr High,03170505, 3.1, 3.1, 1.8, 90.0, 0.0, 0.0, 2.1, 64.8, 35.2, 228.6 -1,1,a-pcom-i3,2019-20,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 27.7 -1,1,a-pcom-i3,2019-20,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 59.9 -1.875,1.88,a-pcom-i3,2019-20,West Boylston - West Boylston Junior/Senior High,03220505, 1.8, 1.4, 2.8, 94.0, 0.0, 0.0, 0.0, 65.1, 34.9, 71.1 -1,1,a-pcom-i3,2019-20,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 29.6 -1,1,a-pcom-i3,2019-20,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 29.8 -1,1,a-pcom-i3,2019-20,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 20.1 -1.0000000000000009,1.0,a-pcom-i3,2019-20,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 70.9, 29.1, 62.1 -1.0312499999999991,1.03,a-pcom-i3,2019-20,West Springfield - Cowing Early Childhood,03320001, 3.3, 0.0, 0.0, 96.7, 0.0, 0.0, 0.0, 100.0, 0.0, 30.2 -1,1,a-pcom-i3,2019-20,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 49.2 -1.9375000000000009,1.94,a-pcom-i3,2019-20,West Springfield - John R Fausey,03320010, 1.5, 0.0, 4.6, 93.8, 0.0, 0.0, 0.0, 96.6, 3.4, 64.9 -1,1,a-pcom-i3,2019-20,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 86.5, 13.5, 33.9 -1,1,a-pcom-i3,2019-20,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 22.8 -1.2187500000000018,1.22,a-pcom-i3,2019-20,West Springfield - Philip G Coburn,03320007, 1.3, 1.3, 1.3, 96.1, 0.0, 0.0, 0.0, 93.1, 6.9, 77.4 -1,1,a-pcom-i3,2019-20,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 41.3 -1.9687499999999991,1.97,a-pcom-i3,2019-20,West Springfield - West Springfield High,03320505, 0.6, 0.6, 4.4, 93.7, 0.0, 0.6, 0.0, 70.4, 29.6, 159.4 -1,1,a-pcom-i3,2019-20,West Springfield - West Springfield Middle,03320305, 0.0, 0.9, 1.7, 97.4, 0.0, 0.0, 0.0, 71.5, 28.5, 115.3 -1,1,a-pcom-i3,2019-20,Westborough - Annie E Fales,03210010, 0.0, 1.7, 0.0, 96.9, 0.0, 0.0, 1.4, 96.7, 3.3, 57.5 -2.1875,2.19,a-pcom-i3,2019-20,Westborough - Elsie A Hastings Elementary,03210025, 1.1, 5.8, 0.0, 93.0, 0.0, 0.0, 0.0, 94.3, 5.7, 90.6 -1.4687500000000009,1.47,a-pcom-i3,2019-20,Westborough - J Harding Armstrong,03210005, 1.6, 3.1, 0.0, 95.3, 0.0, 0.0, 0.0, 98.4, 1.6, 64.3 -1,1,a-pcom-i3,2019-20,Westborough - Mill Pond School,03210045, 0.0, 1.7, 0.8, 97.5, 0.0, 0.0, 0.0, 87.3, 12.7, 119.2 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Westborough - Sarah W Gibbons Middle,03210305, 1.2, 1.4, 3.5, 93.9, 0.0, 0.0, 0.0, 77.7, 22.3, 85.3 -1,1,a-pcom-i3,2019-20,Westborough - Westborough High,03210505, 0.0, 2.1, 0.0, 97.1, 0.0, 0.8, 0.0, 69.4, 30.6, 131.7 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 98.6, 1.4, 25.8 -3.500000000000001,3.5,a-pcom-i3,2019-20,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 8.4, 2.8, 88.8, 0.0, 0.0, 0.0, 100.0, 0.0, 35.7 -1.2187500000000018,1.22,a-pcom-i3,2019-20,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 96.1, 0.0, 0.0, 3.9, 96.1, 3.9, 25.9 -1.71875,1.72,a-pcom-i3,2019-20,Westfield - Highland,03250025, 0.0, 1.8, 1.8, 94.5, 1.8, 0.0, 0.0, 92.4, 7.6, 54.4 -2.5,2.5,a-pcom-i3,2019-20,Westfield - Munger Hill,03250033, 4.8, 0.0, 3.2, 92.0, 0.0, 0.0, 0.0, 91.0, 9.0, 62.8 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Westfield - Paper Mill,03250036, 0.0, 0.0, 2.1, 95.7, 0.0, 0.0, 2.1, 96.0, 4.0, 46.6 -1,1,a-pcom-i3,2019-20,Westfield - Southampton Road,03250040, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 97.4, 2.6, 39.2 -1,1,a-pcom-i3,2019-20,Westfield - Westfield High,03250505, 0.0, 0.6, 0.6, 98.1, 0.6, 0.0, 0.0, 72.9, 27.1, 160.9 -1,1,a-pcom-i3,2019-20,Westfield - Westfield Intermediate School,03250075, 1.0, 1.0, 1.0, 97.0, 0.0, 0.0, 0.0, 85.1, 14.9, 101.2 -1,1,a-pcom-i3,2019-20,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 78.0, 22.0, 100.6 -1,1,a-pcom-i3,2019-20,Westfield - Westfield Technical Academy,03250605, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 50.3, 49.7, 90.7 -1,1,a-pcom-i3,2019-20,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 48.9 -1.3125000000000009,1.31,a-pcom-i3,2019-20,Westford - Blanchard Middle,03260310, 0.0, 4.2, 0.0, 95.8, 0.0, 0.0, 0.0, 88.8, 11.2, 71.7 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Westford - Col John Robinson,03260025, 0.0, 2.4, 2.4, 95.2, 0.0, 0.0, 0.0, 97.6, 2.4, 41.4 -1,1,a-pcom-i3,2019-20,Westford - Day Elementary,03260007, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 90.5, 9.5, 46.1 -1,1,a-pcom-i3,2019-20,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 97.8, 2.2, 54.7 -1,1,a-pcom-i3,2019-20,Westford - Millennium Elementary,03260013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 15.5 -1,1,a-pcom-i3,2019-20,Westford - Nabnasset,03260015, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 97.8, 2.2, 46.4 -2.6250000000000018,2.63,a-pcom-i3,2019-20,Westford - Rita E. Miller Elementary School,03260055, 1.4, 7.0, 0.0, 91.6, 0.0, 0.0, 0.0, 98.6, 1.4, 71.5 -1,1,a-pcom-i3,2019-20,Westford - Stony Brook School,03260330, 1.2, 0.0, 1.2, 97.5, 0.0, 0.0, 0.0, 82.8, 17.2, 81.3 -1.6562499999999991,1.66,a-pcom-i3,2019-20,Westford - Westford Academy,03260505, 0.0, 3.5, 1.2, 94.7, 0.0, 0.0, 0.6, 59.8, 40.2, 167.3 -1,1,a-pcom-i3,2019-20,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 29.0 -2.3125000000000018,2.31,a-pcom-i3,2019-20,Weston - Country,03300010, 1.9, 1.0, 3.2, 92.6, 0.0, 0.0, 1.3, 79.9, 18.5, 79.0 -2.96875,2.97,a-pcom-i3,2019-20,Weston - Field Elementary School,03300012, 2.4, 4.8, 2.4, 90.5, 0.0, 0.0, 0.0, 86.3, 13.7, 41.9 -4.906250000000001,4.91,a-pcom-i3,2019-20,Weston - Weston High,03300505, 2.8, 8.0, 3.1, 84.3, 0.0, 0.8, 0.9, 66.6, 33.4, 107.1 -3.9374999999999982,3.94,a-pcom-i3,2019-20,Weston - Weston Middle,03300305, 3.7, 4.8, 2.9, 87.4, 0.0, 0.0, 1.2, 71.6, 28.4, 81.1 -2.437499999999999,2.44,a-pcom-i3,2019-20,Weston - Woodland,03300015, 0.0, 1.9, 4.5, 92.2, 1.5, 0.0, 0.0, 92.5, 5.5, 49.3 -1,1,a-pcom-i3,2019-20,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 54.0 -1,1,a-pcom-i3,2019-20,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 68.9 -1,1,a-pcom-i3,2019-20,Westport - Westport Junior/Senior High School,03310515, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 68.1, 31.9, 84.2 -1,1,a-pcom-i3,2019-20,Westwood - Deerfield School,03350010, 0.0, 2.4, 0.0, 97.4, 0.0, 0.0, 0.2, 88.4, 11.6, 41.6 -2.34375,2.34,a-pcom-i3,2019-20,Westwood - Downey,03350012, 1.6, 1.6, 1.6, 92.5, 0.0, 0.0, 2.7, 98.0, 2.0, 63.0 -2.5312499999999982,2.53,a-pcom-i3,2019-20,Westwood - E W Thurston Middle,03350305, 4.1, 1.0, 2.0, 91.9, 0.0, 0.0, 1.0, 75.1, 24.9, 98.8 -1,1,a-pcom-i3,2019-20,Westwood - Martha Jones,03350017, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 90.3, 9.7, 37.6 -1,1,a-pcom-i3,2019-20,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 29.9 -3.062499999999999,3.06,a-pcom-i3,2019-20,Westwood - Westwood High,03350505, 2.1, 2.1, 4.9, 90.2, 0.0, 0.0, 0.7, 68.9, 31.1, 141.6 -1,1,a-pcom-i3,2019-20,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 12.7 -1,1,a-pcom-i3,2019-20,Westwood - William E Sheehan,03350025, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 93.1, 6.9, 50.5 -1,1,a-pcom-i3,2019-20,Weymouth - Abigail Adams Middle School,03360310, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 75.1, 24.9, 115.5 -1,1,a-pcom-i3,2019-20,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 33.1 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Weymouth - Frederick C Murphy,03360050, 0.0, 0.7, 2.5, 96.8, 0.0, 0.0, 0.0, 92.0, 8.0, 40.3 -2.34375,2.34,a-pcom-i3,2019-20,Weymouth - Johnson Early Childhood Center,03360003, 1.9, 3.8, 1.9, 92.5, 0.0, 0.0, 0.0, 98.1, 1.9, 53.1 -1,1,a-pcom-i3,2019-20,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.2, 2.8, 35.2 -1.4999999999999991,1.5,a-pcom-i3,2019-20,Weymouth - Maria Weston Chapman Middle School,03360020, 0.8, 1.6, 0.8, 95.2, 0.8, 0.0, 0.8, 64.6, 35.4, 126.3 -1,1,a-pcom-i3,2019-20,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 30.5 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 93.6, 6.4, 31.0 -1,1,a-pcom-i3,2019-20,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 35.5 -1,1,a-pcom-i3,2019-20,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.1, 10.9, 45.0 -1,1,a-pcom-i3,2019-20,Weymouth - Weymouth High School,03360505, 0.9, 0.9, 0.9, 96.9, 0.0, 0.0, 0.4, 66.5, 33.5, 228.1 -1,1,a-pcom-i3,2019-20,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 42.7 -1,1,a-pcom-i3,2019-20,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 29.2 -1.1249999999999982,1.12,a-pcom-i3,2019-20,Whitman-Hanson - Hanson Middle School,07800315, 1.7, 0.0, 1.9, 96.4, 0.0, 0.0, 0.0, 80.1, 19.9, 57.5 -1,1,a-pcom-i3,2019-20,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 93.6, 6.4, 49.7 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 95.4, 4.6, 58.3 -1,1,a-pcom-i3,2019-20,Whitman-Hanson - Louise A Conley,07800010, 1.6, 0.0, 0.3, 98.1, 0.0, 0.0, 0.0, 91.5, 8.5, 54.6 -1,1,a-pcom-i3,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,07800001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 11.3 -1,1,a-pcom-i3,2019-20,Whitman-Hanson - Whitman Hanson Regional,07800505, 1.0, 0.0, 0.2, 98.9, 0.0, 0.0, 0.0, 64.8, 35.2, 103.2 -1,1,a-pcom-i3,2019-20,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 70.2, 29.8, 56.0 -1,1,a-pcom-i3,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 51.9, 48.1, 142.6 -1,1,a-pcom-i3,2019-20,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 30.0 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Wilmington - Boutwell,03420005, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 100.0, 0.0, 29.2 -1.0625000000000018,1.06,a-pcom-i3,2019-20,Wilmington - North Intermediate,03420060, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 98.3, 1.7, 29.4 -1,1,a-pcom-i3,2019-20,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 45.6 -1.0000000000000009,1.0,a-pcom-i3,2019-20,Wilmington - West Intermediate,03420080, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 96.8, 3.2, 31.6 -1,1,a-pcom-i3,2019-20,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 90.4, 9.6, 36.5 -1.5937499999999982,1.59,a-pcom-i3,2019-20,Wilmington - Wilmington High,03420505, 0.5, 1.9, 1.9, 94.9, 0.9, 0.0, 0.0, 72.9, 27.1, 107.5 -1,1,a-pcom-i3,2019-20,Wilmington - Wilmington Middle School,03420330, 0.1, 0.0, 0.0, 99.9, 0.0, 0.0, 0.0, 79.4, 20.6, 109.0 -1,1,a-pcom-i3,2019-20,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 44.1 -1,1,a-pcom-i3,2019-20,Winchendon - Memorial,03430040, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 96.8, 3.2, 46.3 -1,1,a-pcom-i3,2019-20,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.1, 46.9, 3.2 -1.5312500000000018,1.53,a-pcom-i3,2019-20,Winchendon - Murdock High School,03430515, 2.4, 0.0, 0.0, 95.1, 0.0, 2.4, 0.0, 75.6, 24.4, 41.0 -2.9375000000000018,2.94,a-pcom-i3,2019-20,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 9.4, 90.6, 0.0, 0.0, 0.0, 78.1, 21.9, 32.0 -1,1,a-pcom-i3,2019-20,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 35.0 -1,1,a-pcom-i3,2019-20,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 10.2 -1,1,a-pcom-i3,2019-20,Winchester - Ambrose Elementary,03440045, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 94.1, 5.9, 49.8 -1,1,a-pcom-i3,2019-20,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 47.5 -1.0312499999999991,1.03,a-pcom-i3,2019-20,Winchester - Lynch Elementary,03440020, 0.0, 2.2, 1.1, 96.7, 0.0, 0.0, 0.0, 95.0, 3.9, 90.0 -1.09375,1.09,a-pcom-i3,2019-20,Winchester - McCall Middle,03440305, 0.8, 1.1, 1.6, 96.5, 0.0, 0.0, 0.0, 79.4, 20.6, 126.1 -1,1,a-pcom-i3,2019-20,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 50.6 -1.1562500000000009,1.16,a-pcom-i3,2019-20,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 96.3, 0.0, 0.0, 3.7, 89.8, 10.2, 54.0 -1,1,a-pcom-i3,2019-20,Winchester - Winchester High School,03440505, 0.7, 0.0, 0.7, 98.6, 0.0, 0.0, 0.0, 62.5, 37.5, 147.0 -1,1,a-pcom-i3,2019-20,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 88.5, 11.5, 56.5 -1,1,a-pcom-i3,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 82.5 -1,1,a-pcom-i3,2019-20,Winthrop - Winthrop High School,03460505, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 61.3, 38.7, 65.6 -1,1,a-pcom-i3,2019-20,Winthrop - Winthrop Middle School,03460305, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 70.7, 29.3, 54.7 -1,1,a-pcom-i3,2019-20,Woburn - Clyde Reeves,03470040, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 96.2, 3.8, 56.3 -1.3437499999999991,1.34,a-pcom-i3,2019-20,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.2, 3.1, 95.7, 0.0, 0.0, 0.0, 78.3, 21.7, 81.1 -1,1,a-pcom-i3,2019-20,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 43.0 -1,1,a-pcom-i3,2019-20,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 33.2 -1,1,a-pcom-i3,2019-20,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 73.4, 26.6, 64.0 -1,1,a-pcom-i3,2019-20,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 26.7 -1,1,a-pcom-i3,2019-20,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 37.4 -1,1,a-pcom-i3,2019-20,Woburn - Mary D Altavesta,03470065, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 88.7, 11.3, 31.8 -1,1,a-pcom-i3,2019-20,Woburn - Shamrock,03470043, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 95.5, 4.5, 68.8 -1.7812500000000009,1.78,a-pcom-i3,2019-20,Woburn - Woburn High,03470505, 0.6, 1.9, 3.1, 94.3, 0.0, 0.0, 0.0, 64.0, 36.0, 159.1 -1.4374999999999982,1.44,a-pcom-i3,2019-20,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 89.4, 10.6, 65.8 -5.906250000000002,5,a-pcom-i3,2019-20,Worcester - Burncoat Middle School,03480405, 7.9, 0.0, 11.0, 81.1, 0.0, 0.0, 0.0, 68.8, 31.2, 94.5 -3.843749999999999,3.84,a-pcom-i3,2019-20,Worcester - Burncoat Senior High,03480503, 5.0, 0.0, 7.4, 87.7, 0.0, 0.0, 0.0, 59.9, 40.1, 141.4 -4.406249999999998,4.41,a-pcom-i3,2019-20,Worcester - Burncoat Street,03480035, 0.0, 0.0, 11.8, 85.9, 0.0, 2.4, 0.0, 90.6, 9.4, 42.5 -2.3749999999999982,2.37,a-pcom-i3,2019-20,Worcester - Canterbury,03480045, 1.9, 1.9, 3.9, 92.4, 0.0, 0.0, 0.0, 98.1, 1.9, 53.7 -3.843749999999999,3.84,a-pcom-i3,2019-20,Worcester - Chandler Elementary Community,03480050, 1.5, 1.5, 9.3, 87.7, 0.0, 0.0, 0.0, 95.5, 4.5, 67.0 -9.187500000000002,5,a-pcom-i3,2019-20,Worcester - Chandler Magnet,03480052, 1.0, 1.0, 26.5, 70.6, 0.0, 1.0, 0.0, 86.3, 13.7, 102.1 -2.6250000000000018,2.63,a-pcom-i3,2019-20,Worcester - City View,03480053, 1.7, 0.0, 6.8, 91.6, 0.0, 0.0, 0.0, 89.2, 10.8, 60.0 -7.8125,5,a-pcom-i3,2019-20,Worcester - Claremont Academy,03480350, 11.6, 5.0, 8.4, 75.0, 0.0, 0.0, 0.0, 70.9, 29.1, 60.5 -5.718749999999999,5,a-pcom-i3,2019-20,Worcester - Clark St Community,03480055, 4.6, 2.3, 11.4, 81.7, 0.0, 0.0, 0.0, 87.4, 12.6, 43.8 -1.8437500000000018,1.84,a-pcom-i3,2019-20,Worcester - Columbus Park,03480060, 1.9, 0.0, 4.0, 94.1, 0.0, 0.0, 0.0, 88.6, 11.4, 52.7 -2.5,2.5,a-pcom-i3,2019-20,Worcester - Doherty Memorial High,03480512, 1.4, 0.0, 6.6, 92.0, 0.0, 0.0, 0.0, 60.1, 39.9, 143.4 -5.562499999999999,5,a-pcom-i3,2019-20,Worcester - Elm Park Community,03480095, 5.2, 0.0, 10.8, 82.2, 0.0, 1.7, 0.0, 87.8, 12.2, 57.2 -1,1,a-pcom-i3,2019-20,Worcester - Flagg Street,03480090, 0.0, 2.6, 0.3, 97.0, 0.0, 0.0, 0.0, 84.3, 15.7, 38.2 -4.562499999999998,4.56,a-pcom-i3,2019-20,Worcester - Forest Grove Middle,03480415, 6.0, 0.0, 8.6, 85.4, 0.0, 0.0, 0.0, 74.0, 26.0, 117.5 -3.6249999999999982,3.62,a-pcom-i3,2019-20,Worcester - Francis J McGrath Elementary,03480177, 0.0, 3.7, 7.9, 88.4, 0.0, 0.0, 0.0, 85.0, 15.0, 26.7 -3.500000000000001,3.5,a-pcom-i3,2019-20,Worcester - Gates Lane,03480110, 3.7, 1.9, 5.7, 88.8, 0.0, 0.0, 0.0, 94.4, 5.6, 107.7 -4.84375,4.84,a-pcom-i3,2019-20,Worcester - Goddard School/Science Technical,03480100, 1.5, 1.5, 12.4, 84.5, 0.0, 0.0, 0.0, 93.9, 6.1, 65.3 -5.3125,5,a-pcom-i3,2019-20,Worcester - Grafton Street,03480115, 7.0, 4.0, 6.0, 83.0, 0.0, 0.0, 0.0, 91.0, 9.0, 50.1 -9.0625,5,a-pcom-i3,2019-20,Worcester - Head Start,03480002, 6.8, 1.7, 20.4, 71.0, 0.0, 0.0, 0.0, 99.1, 0.9, 117.4 -5.625,5,a-pcom-i3,2019-20,Worcester - Heard Street,03480136, 7.1, 0.0, 7.4, 82.0, 0.0, 3.5, 0.0, 96.5, 3.5, 28.3 -2.6874999999999982,2.69,a-pcom-i3,2019-20,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 6.0, 2.6, 91.4, 0.0, 0.0, 0.0, 95.2, 4.8, 41.6 -3.187500000000001,3.19,a-pcom-i3,2019-20,Worcester - Lake View,03480145, 3.4, 3.4, 3.4, 89.8, 0.0, 0.0, 0.0, 89.8, 10.2, 29.4 -5.46875,5,a-pcom-i3,2019-20,Worcester - Lincoln Street,03480160, 0.0, 2.9, 14.6, 82.5, 0.0, 0.0, 0.0, 91.3, 8.7, 34.3 -2.875000000000001,2.88,a-pcom-i3,2019-20,Worcester - May Street,03480175, 3.1, 3.1, 3.1, 90.8, 0.0, 0.0, 0.0, 90.8, 9.2, 32.6 -5.562499999999999,5,a-pcom-i3,2019-20,Worcester - Midland Street,03480185, 4.0, 4.0, 9.9, 82.2, 0.0, 0.0, 0.0, 100.0, 0.0, 25.2 -2.9999999999999982,3.0,a-pcom-i3,2019-20,Worcester - Nelson Place,03480200, 3.6, 0.0, 6.0, 90.4, 0.0, 0.0, 0.0, 93.6, 6.4, 110.0 -5.15625,5,a-pcom-i3,2019-20,Worcester - Norrback Avenue,03480202, 4.1, 2.1, 9.3, 83.5, 0.0, 1.0, 0.0, 95.9, 4.1, 97.2 -8.531249999999998,5,a-pcom-i3,2019-20,Worcester - North High,03480515, 9.0, 2.6, 15.8, 72.7, 0.0, 0.0, 0.0, 65.3, 34.7, 156.0 -6.531250000000002,5,a-pcom-i3,2019-20,Worcester - Quinsigamond,03480210, 2.2, 6.2, 12.5, 79.1, 0.0, 0.0, 0.0, 88.8, 11.2, 89.0 -5.531250000000001,5,a-pcom-i3,2019-20,Worcester - Rice Square,03480215, 2.0, 3.9, 11.8, 82.3, 0.0, 0.0, 0.0, 94.1, 5.9, 50.9 -5.093749999999999,5,a-pcom-i3,2019-20,Worcester - Roosevelt,03480220, 4.8, 0.0, 11.5, 83.7, 0.0, 0.0, 0.0, 92.3, 7.7, 104.3 -5.406249999999999,5,a-pcom-i3,2019-20,Worcester - South High Community,03480520, 6.2, 0.6, 9.7, 82.7, 0.0, 0.9, 0.0, 72.3, 27.7, 170.1 -5.812499999999998,5,a-pcom-i3,2019-20,Worcester - Sullivan Middle,03480423, 4.0, 0.8, 13.9, 81.4, 0.0, 0.0, 0.0, 74.6, 25.4, 126.0 -1,1,a-pcom-i3,2019-20,Worcester - Tatnuck,03480230, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 42.2 -1,1,a-pcom-i3,2019-20,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 97.2, 2.8, 35.1 -4.156249999999999,4.16,a-pcom-i3,2019-20,Worcester - Union Hill School,03480240, 2.2, 0.0, 11.1, 86.7, 0.0, 0.0, 0.0, 84.5, 15.5, 45.2 -6.281249999999998,5,a-pcom-i3,2019-20,Worcester - University Pk Campus School,03480285, 5.4, 3.6, 11.1, 79.9, 0.0, 0.0, 0.0, 67.8, 32.2, 27.8 -4.968750000000002,4.97,a-pcom-i3,2019-20,Worcester - Vernon Hill School,03480280, 10.7, 3.3, 1.9, 84.1, 0.0, 0.0, 0.0, 89.3, 10.7, 60.9 -2.093750000000001,2.09,a-pcom-i3,2019-20,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 6.7, 93.3, 0.0, 0.0, 0.0, 90.0, 10.0, 29.9 -3.125,3.13,a-pcom-i3,2019-20,Worcester - West Tatnuck,03480260, 4.4, 0.0, 5.5, 90.0, 0.0, 0.0, 0.0, 93.4, 6.6, 45.2 -4.718749999999998,4.72,a-pcom-i3,2019-20,Worcester - Woodland Academy,03480030, 1.7, 3.3, 10.1, 84.9, 0.0, 0.0, 0.0, 96.7, 3.3, 60.3 -2.124999999999999,2.12,a-pcom-i3,2019-20,Worcester - Worcester Arts Magnet School,03480225, 2.3, 0.0, 4.5, 93.2, 0.0, 0.0, 0.0, 91.0, 9.0, 44.3 -7.937500000000002,5,a-pcom-i3,2019-20,Worcester - Worcester East Middle,03480420, 7.2, 4.7, 13.5, 74.6, 0.0, 0.0, 0.0, 59.6, 40.4, 96.6 -1.9062499999999982,1.91,a-pcom-i3,2019-20,Worcester - Worcester Technical High,03480605, 2.0, 0.5, 3.6, 93.9, 0.0, 0.0, 0.0, 48.0, 52.0, 196.6 -1,1,a-pcom-i3,2019-20,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 14.8 -1,1,a-pcom-i3,2019-20,Wrentham - Charles E Roderick,03500010, 0.0, 0.3, 0.0, 99.7, 0.0, 0.0, 0.0, 94.7, 5.3, 61.7 -1,1,a-pcom-i3,2019-20,Wrentham - Delaney,03500003, 0.0, 2.0, 0.7, 97.3, 0.0, 0.0, 0.0, 94.9, 5.1, 90.2 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 3.7, 0.9, 1.8, 92.4, 0.0, 0.0, 1.2, 79.2, 20.8, 163.0 -1,1,a-pcom-i3,2018-19,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 16.0 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Abington - Abington High,00010505, 0.0, 1.1, 1.6, 95.7, 0.0, 0.0, 1.6, 72.5, 27.5, 62.4 -2.34375,2.34,a-pcom-i3,2018-19,Abington - Abington Middle School,00010405, 2.7, 0.0, 4.8, 92.5, 0.0, 0.0, 0.0, 77.3, 22.7, 73.7 -1,1,a-pcom-i3,2018-19,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 99.3, 0.7, 57.7 -1,1,a-pcom-i3,2018-19,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 39.4 -14.6875,5,a-pcom-i3,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 21.8, 6.1, 11.6, 53.0, 0.0, 0.0, 7.5, 68.7, 31.3, 68.9 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 0.5, 2.4, 0.5, 96.1, 0.5, 0.0, 0.0, 76.1, 23.9, 195.0 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Acton-Boxborough - Blanchard Memorial School,06000005, 1.3, 2.8, 0.0, 95.9, 0.0, 0.0, 0.0, 91.4, 8.6, 79.3 -1,1,a-pcom-i3,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 92.4, 7.6, 52.4 -2.0624999999999982,2.06,a-pcom-i3,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 6.6, 0.0, 93.4, 0.0, 0.0, 0.0, 96.7, 3.3, 30.3 -2.562500000000001,2.56,a-pcom-i3,2018-19,Acton-Boxborough - Luther Conant School,06000030, 0.0, 7.4, 0.9, 91.8, 0.0, 0.0, 0.0, 97.1, 2.9, 69.4 -2.0000000000000018,2.0,a-pcom-i3,2018-19,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 5.5, 0.9, 93.6, 0.0, 0.0, 0.0, 94.3, 5.7, 69.7 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Acton-Boxborough - Merriam School,06000010, 0.0, 2.8, 1.3, 94.6, 0.0, 1.3, 0.0, 94.6, 5.4, 74.8 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 94.7, 5.3, 54.2 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 2.8, 0.9, 95.3, 0.0, 0.0, 0.9, 78.4, 21.6, 107.2 -1,1,a-pcom-i3,2018-19,Acushnet - Acushnet Elementary School,00030025, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 94.1, 5.9, 67.5 -1,1,a-pcom-i3,2018-19,Acushnet - Albert F Ford Middle School,00030305, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 75.6, 24.4, 57.5 -1,1,a-pcom-i3,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 81.0 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 1.6, 96.7, 0.0, 0.0, 1.7, 73.8, 26.2, 57.3 -1,1,a-pcom-i3,2018-19,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 99.6, 0.0, 0.0, 0.4, 75.6, 24.4, 65.2 -2.5312499999999982,2.53,a-pcom-i3,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 4.7, 1.7, 91.9, 0.0, 0.0, 1.7, 61.7, 38.3, 117.9 -1,1,a-pcom-i3,2018-19,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 99.7, 0.3, 44.3 -1,1,a-pcom-i3,2018-19,Agawam - Agawam High,00050505, 1.3, 0.0, 0.6, 98.1, 0.0, 0.0, 0.0, 69.0, 31.0, 163.5 -1,1,a-pcom-i3,2018-19,Agawam - Agawam Junior High,00050405, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 71.7, 28.3, 90.5 -1,1,a-pcom-i3,2018-19,Agawam - Benjamin J Phelps,00050020, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 90.0, 10.0, 60.9 -1,1,a-pcom-i3,2018-19,Agawam - Clifford M Granger,00050010, 0.3, 0.0, 1.8, 97.9, 0.0, 0.0, 0.0, 98.3, 1.7, 54.2 -1,1,a-pcom-i3,2018-19,Agawam - James Clark School,00050030, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 97.2, 2.8, 59.0 -1,1,a-pcom-i3,2018-19,Agawam - Roberta G. Doering School,00050303, 0.2, 0.0, 2.4, 97.4, 0.0, 0.0, 0.0, 84.2, 15.8, 83.1 -1,1,a-pcom-i3,2018-19,Agawam - Robinson Park,00050025, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 95.8, 4.2, 62.9 -6.25,5,a-pcom-i3,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 5.0, 1.7, 13.3, 80.0, 0.0, 0.0, 0.0, 73.3, 26.7, 60.0 -1,1,a-pcom-i3,2018-19,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 60.0 -1,1,a-pcom-i3,2018-19,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 71.4, 28.6, 72.6 -1,1,a-pcom-i3,2018-19,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 38.4, 61.6, 10.3 -1,1,a-pcom-i3,2018-19,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 73.5, 26.5, 84.5 -1,1,a-pcom-i3,2018-19,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 67.8 -5.687500000000001,5,a-pcom-i3,2018-19,Amherst - Crocker Farm Elementary,00080009, 2.3, 1.2, 11.1, 81.8, 0.0, 0.0, 3.5, 90.6, 9.4, 85.4 -6.062500000000002,5,a-pcom-i3,2018-19,Amherst - Fort River Elementary,00080020, 3.3, 2.2, 11.7, 80.6, 0.0, 0.0, 2.2, 78.0, 22.0, 91.1 -10.84375,5,a-pcom-i3,2018-19,Amherst - Wildwood Elementary,00080050, 13.8, 6.0, 11.3, 65.3, 0.0, 0.0, 3.6, 81.1, 18.9, 83.7 -7.562500000000001,5,a-pcom-i3,2018-19,Amherst-Pelham - Amherst Regional High,06050505, 11.5, 1.1, 9.0, 75.8, 0.0, 0.0, 2.5, 64.5, 35.5, 165.1 -9.21875,5,a-pcom-i3,2018-19,Amherst-Pelham - Amherst Regional Middle School,06050405, 13.5, 0.4, 13.5, 70.5, 0.0, 0.0, 2.2, 66.5, 33.5, 81.7 -2.749999999999999,2.75,a-pcom-i3,2018-19,Andover - Andover High,00090505, 0.5, 1.9, 5.4, 91.2, 0.0, 0.5, 0.5, 70.4, 29.6, 210.0 -1,1,a-pcom-i3,2018-19,Andover - Andover West Middle,00090310, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 83.0, 17.0, 72.8 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Andover - Bancroft Elementary,00090003, 0.0, 3.6, 0.9, 95.6, 0.0, 0.0, 0.0, 95.3, 4.7, 79.8 -2.0000000000000018,2.0,a-pcom-i3,2018-19,Andover - Doherty Middle,00090305, 0.0, 3.9, 1.3, 93.6, 0.0, 0.0, 1.3, 88.4, 11.6, 77.7 -1,1,a-pcom-i3,2018-19,Andover - Henry C Sanborn Elementary,00090010, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 88.6, 11.4, 52.0 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Andover - High Plain Elementary,00090004, 0.0, 3.7, 1.2, 95.1, 0.0, 0.0, 0.0, 96.3, 3.7, 81.9 -3.656250000000001,3.66,a-pcom-i3,2018-19,Andover - Shawsheen School,00090005, 0.0, 5.8, 5.9, 88.3, 0.0, 0.0, 0.0, 97.2, 2.8, 30.3 -1,1,a-pcom-i3,2018-19,Andover - South Elementary,00090020, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 94.7, 5.3, 72.8 -1.71875,1.72,a-pcom-i3,2018-19,Andover - West Elementary,00090025, 0.9, 1.3, 2.7, 94.5, 0.6, 0.0, 0.0, 88.9, 11.1, 104.3 -1,1,a-pcom-i3,2018-19,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 83.5, 16.5, 71.1 -4.874999999999998,4.87,a-pcom-i3,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 5.5, 4.0, 4.0, 84.4, 0.0, 0.0, 2.0, 69.3, 30.7, 49.8 -2.718750000000001,2.72,a-pcom-i3,2018-19,Arlington - Arlington High,00100505, 2.0, 2.0, 4.0, 91.3, 0.0, 0.0, 0.7, 57.4, 42.6, 149.3 -3.75,3.75,a-pcom-i3,2018-19,Arlington - Brackett,00100010, 0.0, 3.5, 5.1, 88.0, 0.0, 1.7, 1.7, 90.7, 9.3, 59.3 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Arlington - Cyrus E Dallin,00100025, 0.0, 3.6, 0.0, 94.8, 0.0, 0.0, 1.7, 89.0, 11.0, 59.1 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Arlington - Gibbs School,00100305, 0.0, 1.3, 1.8, 95.1, 0.0, 0.0, 1.8, 82.3, 17.7, 56.7 -3.062499999999999,3.06,a-pcom-i3,2018-19,Arlington - Hardy,00100030, 0.0, 4.0, 3.8, 90.2, 0.0, 0.0, 1.9, 92.3, 7.7, 52.1 -1,1,a-pcom-i3,2018-19,Arlington - John A Bishop,00100005, 2.2, 0.2, 0.0, 97.6, 0.0, 0.0, 0.0, 92.0, 8.0, 46.4 -1,1,a-pcom-i3,2018-19,Arlington - M Norcross Stratton,00100055, 0.0, 0.2, 1.5, 98.3, 0.0, 0.0, 0.0, 91.6, 8.4, 65.2 -3.9374999999999982,3.94,a-pcom-i3,2018-19,Arlington - Menotomy Preschool,00100038, 3.1, 0.0, 3.1, 87.4, 0.0, 0.0, 6.3, 96.9, 3.1, 31.8 -2.281249999999999,2.28,a-pcom-i3,2018-19,Arlington - Ottoson Middle,00100410, 3.0, 2.3, 2.0, 92.7, 0.0, 0.0, 0.0, 71.2, 28.8, 100.8 -3.999999999999999,4.0,a-pcom-i3,2018-19,Arlington - Peirce,00100045, 2.5, 5.3, 2.5, 87.2, 0.0, 0.0, 2.5, 98.6, 1.4, 39.8 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Arlington - Thompson,00100050, 1.8, 3.0, 0.0, 95.3, 0.0, 0.0, 0.0, 92.6, 7.4, 57.1 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Ashburnham-Westminster - Briggs Elementary,06100025, 1.4, 0.0, 0.3, 95.6, 0.0, 0.0, 2.7, 86.8, 13.2, 72.9 -1,1,a-pcom-i3,2018-19,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 97.0, 3.0, 22.1 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Ashburnham-Westminster - Oakmont Regional High School,06100505, 3.6, 0.0, 1.5, 94.9, 0.0, 0.0, 0.0, 56.1, 43.9, 82.5 -1,1,a-pcom-i3,2018-19,Ashburnham-Westminster - Overlook Middle School,06100305, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 74.5, 25.5, 59.3 -1.5625,1.56,a-pcom-i3,2018-19,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 5.0, 95.0, 0.0, 0.0, 0.0, 91.3, 8.7, 44.0 -1,1,a-pcom-i3,2018-19,Ashland - Ashland High,00140505, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 64.0, 36.0, 80.6 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Ashland - Ashland Middle,00140405, 0.0, 2.7, 2.2, 95.1, 0.0, 0.0, 0.0, 70.8, 29.2, 73.7 -1,1,a-pcom-i3,2018-19,Ashland - David Mindess,00140015, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 89.1, 10.9, 75.7 -1,1,a-pcom-i3,2018-19,Ashland - Henry E Warren Elementary,00140010, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 98.1, 1.9, 91.2 -1.875,1.88,a-pcom-i3,2018-19,Ashland - William Pittaway Elementary,00140005, 0.0, 3.0, 3.0, 94.0, 0.0, 0.0, 0.0, 99.1, 0.9, 33.3 -1.875,1.88,a-pcom-i3,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.7, 0.7, 4.6, 94.0, 0.0, 0.0, 0.0, 49.8, 50.2, 152.7 -1,1,a-pcom-i3,2018-19,Athol-Royalston - Athol Community Elementary School,06150020, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 93.7, 6.3, 68.6 -1,1,a-pcom-i3,2018-19,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 66.0, 34.0, 47.1 -1,1,a-pcom-i3,2018-19,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 67.9, 32.1, 46.8 -1,1,a-pcom-i3,2018-19,Athol-Royalston - Royalston Community School,06150050, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 90.6, 9.4, 18.2 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.2, 0.6, 0.0, 96.4, 0.6, 0.0, 1.2, 84.5, 15.5, 164.0 -1,1,a-pcom-i3,2018-19,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 97.9, 2.1, 48.7 -7.937500000000002,5,a-pcom-i3,2018-19,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 25.4, 74.6, 0.0, 0.0, 0.0, 100.0, 0.0, 4.8 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Attleboro - Attleboro High,00160505, 1.1, 0.0, 4.3, 94.1, 0.0, 0.0, 0.5, 69.4, 30.6, 186.4 -1,1,a-pcom-i3,2018-19,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 99.2, 0.0, 0.0, 0.8, 81.6, 18.4, 59.0 -2.093750000000001,2.09,a-pcom-i3,2018-19,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 93.3, 0.0, 0.0, 6.7, 100.0, 0.0, 29.8 -1,1,a-pcom-i3,2018-19,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 95.2, 4.8, 41.9 -2.250000000000001,2.25,a-pcom-i3,2018-19,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 7.2, 92.8, 0.0, 0.0, 0.0, 91.8, 8.2, 41.4 -1,1,a-pcom-i3,2018-19,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 1.4, 0.0, 97.2, 0.0, 0.0, 1.4, 93.1, 6.9, 71.3 -1,1,a-pcom-i3,2018-19,Attleboro - Robert J. Coelho Middle School,00160305, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 73.8, 26.2, 51.6 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.2, 2.2, 95.6, 0.0, 0.0, 0.0, 95.6, 4.4, 45.1 -1.5625,1.56,a-pcom-i3,2018-19,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 3.0, 95.0, 2.0, 0.0, 0.0, 78.1, 21.9, 50.3 -1.4999999999999991,1.5,a-pcom-i3,2018-19,Auburn - Auburn Middle,00170305, 0.0, 1.9, 1.4, 95.2, 0.0, 0.0, 1.4, 75.7, 24.3, 70.1 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Auburn - Auburn Senior High,00170505, 2.0, 0.4, 1.9, 95.6, 0.0, 0.0, 0.0, 70.7, 29.3, 102.6 -1,1,a-pcom-i3,2018-19,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 99.6, 0.4, 51.5 -1,1,a-pcom-i3,2018-19,Auburn - Pakachoag School,00170025, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 100.0, 0.0, 38.9 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Auburn - Swanson Road Intermediate School,00170030, 1.5, 0.0, 1.5, 95.6, 0.0, 0.0, 1.5, 95.9, 4.1, 68.5 -3.999999999999999,4.0,a-pcom-i3,2018-19,Avon - Avon Middle High School,00180510, 4.2, 4.3, 4.2, 87.2, 0.0, 0.0, 0.0, 68.1, 31.9, 47.1 -1,1,a-pcom-i3,2018-19,Avon - Ralph D Butler,00180010, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 96.0, 4.0, 50.0 -1,1,a-pcom-i3,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 56.2, 43.8, 52.5 -3.031250000000001,3.03,a-pcom-i3,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 0.0, 0.0, 7.7, 90.3, 0.0, 0.0, 1.9, 76.8, 23.2, 51.7 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 3.8, 0.0, 96.2, 0.0, 0.0, 0.0, 94.6, 5.4, 52.3 -1,1,a-pcom-i3,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 89.1, 10.9, 64.0 -1.875,1.88,a-pcom-i3,2018-19,Barnstable - Barnstable High,00200505, 2.2, 1.3, 2.2, 94.0, 0.0, 0.0, 0.4, 65.9, 34.1, 231.4 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Barnstable - Barnstable Intermediate School,00200315, 1.1, 0.0, 1.1, 96.8, 0.0, 0.0, 1.1, 79.9, 20.1, 94.4 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Barnstable - Barnstable United Elementary School,00200050, 1.8, 0.9, 0.9, 96.4, 0.0, 0.0, 0.0, 90.9, 9.1, 109.6 -1,1,a-pcom-i3,2018-19,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 89.8, 10.2, 41.6 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 100.0, 0.0, 30.9 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Barnstable - Hyannis West Elementary,00200025, 0.0, 3.4, 1.7, 94.9, 0.0, 0.0, 0.0, 97.9, 2.1, 58.3 -1,1,a-pcom-i3,2018-19,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 34.4 -1,1,a-pcom-i3,2018-19,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 99.0, 1.0, 0.0, 0.0, 94.7, 5.3, 61.6 -1.9062499999999982,1.91,a-pcom-i3,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 2.4, 93.9, 1.2, 0.0, 2.4, 97.6, 2.4, 41.2 -9.156249999999998,5,a-pcom-i3,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 20.1, 1.5, 4.6, 70.7, 1.5, 1.5, 0.0, 51.7, 48.3, 64.8 -1.8124999999999991,1.81,a-pcom-i3,2018-19,Bedford - Bedford High,00230505, 2.4, 0.0, 3.5, 94.2, 0.0, 0.0, 0.0, 70.7, 29.3, 126.9 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Bedford - John Glenn Middle,00230305, 1.2, 1.2, 1.4, 96.2, 0.0, 0.0, 0.0, 75.5, 24.5, 84.9 -3.031250000000001,3.03,a-pcom-i3,2018-19,Bedford - Lt Elezer Davis,00230010, 2.5, 2.5, 3.5, 90.3, 0.0, 0.0, 1.2, 91.9, 8.1, 80.5 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Bedford - Lt Job Lane School,00230012, 0.0, 3.6, 1.1, 94.1, 0.0, 0.0, 1.2, 87.4, 12.6, 83.5 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Belchertown - Belchertown High,00240505, 1.3, 0.0, 2.5, 96.2, 0.0, 0.0, 0.0, 71.9, 28.1, 79.8 -1,1,a-pcom-i3,2018-19,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.2, 58.0 -1,1,a-pcom-i3,2018-19,Belchertown - Cold Spring,00240005, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 96.3, 3.7, 38.0 -1,1,a-pcom-i3,2018-19,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 79.1, 20.9, 49.4 -1,1,a-pcom-i3,2018-19,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 56.2 -1,1,a-pcom-i3,2018-19,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.5 -1,1,a-pcom-i3,2018-19,Bellingham - Bellingham High School,00250505, 1.0, 2.0, 0.0, 96.9, 0.0, 0.0, 0.0, 69.4, 30.6, 98.1 -1,1,a-pcom-i3,2018-19,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.1, 19.9, 90.7 -1,1,a-pcom-i3,2018-19,Bellingham - Joseph F DiPietro Elementary School,00250020, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 100.0, 0.0, 48.3 -1,1,a-pcom-i3,2018-19,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.4, 46.6, 15.0 -1,1,a-pcom-i3,2018-19,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 54.8 -2.124999999999999,2.12,a-pcom-i3,2018-19,Belmont - Belmont High,00260505, 0.0, 3.0, 2.8, 93.2, 0.0, 0.0, 0.9, 73.9, 26.1, 105.9 -2.562500000000001,2.56,a-pcom-i3,2018-19,Belmont - Daniel Butler,00260015, 0.0, 2.3, 0.0, 91.8, 0.0, 0.0, 5.9, 86.6, 13.4, 44.0 -2.03125,2.03,a-pcom-i3,2018-19,Belmont - Mary Lee Burbank,00260010, 2.0, 0.0, 2.2, 93.5, 0.0, 0.0, 2.2, 91.0, 9.0, 44.5 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Belmont - Roger E Wellington,00260035, 1.1, 1.1, 1.1, 96.7, 0.0, 0.0, 0.0, 90.1, 9.9, 81.6 -1.09375,1.09,a-pcom-i3,2018-19,Belmont - Winn Brook,00260005, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 96.3, 3.7, 50.9 -4.53125,4.53,a-pcom-i3,2018-19,Belmont - Winthrop L Chenery Middle,00260305, 3.2, 7.0, 1.2, 85.5, 0.0, 0.0, 3.2, 73.7, 26.3, 127.0 -17.124999999999996,5,a-pcom-i3,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 47.1, 3.8, 3.8, 45.2, 0.0, 0.0, 0.0, 85.4, 14.6, 52.2 -1,1,a-pcom-i3,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 66.3 -2.03125,2.03,a-pcom-i3,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 2.2, 2.2, 2.0, 93.5, 0.0, 0.0, 0.0, 85.5, 14.5, 49.3 -1,1,a-pcom-i3,2018-19,Berkley - Berkley Community School,00270010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.4, 1.6, 61.3 -1,1,a-pcom-i3,2018-19,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.2, 20.8, 43.3 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 0.0, 0.0, 1.9, 96.1, 0.0, 0.0, 1.9, 71.3, 28.7, 51.7 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Berkshire Hills - Monument Mt Regional High,06180505, 1.4, 0.0, 1.4, 95.7, 0.0, 0.0, 1.4, 65.8, 34.2, 69.9 -2.093750000000001,2.09,a-pcom-i3,2018-19,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.7, 1.7, 1.7, 93.3, 0.0, 0.0, 1.5, 71.7, 28.3, 58.8 -1.25,1.25,a-pcom-i3,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.3, 1.3, 1.3, 96.0, 0.0, 0.0, 0.1, 88.2, 11.8, 76.6 -1,1,a-pcom-i3,2018-19,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 33.5 -1,1,a-pcom-i3,2018-19,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 73.5, 26.5, 71.6 -1,1,a-pcom-i3,2018-19,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 50.3 -1,1,a-pcom-i3,2018-19,Beverly - Beverly High,00300505, 0.7, 0.0, 0.5, 98.8, 0.0, 0.0, 0.0, 69.6, 30.4, 148.1 -1,1,a-pcom-i3,2018-19,Beverly - Beverly Middle School,00300305, 0.0, 0.7, 2.0, 97.4, 0.0, 0.0, 0.0, 78.9, 21.1, 152.9 -1,1,a-pcom-i3,2018-19,Beverly - Centerville Elementary,00300010, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 86.5, 13.5, 44.4 -1,1,a-pcom-i3,2018-19,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 62.3 -1,1,a-pcom-i3,2018-19,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 44.9 -1,1,a-pcom-i3,2018-19,Beverly - McKeown School,00300002, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 100.0, 0.0, 35.3 -1,1,a-pcom-i3,2018-19,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 51.1 -1,1,a-pcom-i3,2018-19,Billerica - Billerica Memorial High School,00310505, 0.6, 0.7, 0.0, 98.8, 0.0, 0.0, 0.0, 76.3, 23.7, 181.0 -1,1,a-pcom-i3,2018-19,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 36.5 -1,1,a-pcom-i3,2018-19,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 94.7, 5.3, 38.5 -1,1,a-pcom-i3,2018-19,Billerica - Hajjar Elementary,00310026, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 92.2, 7.8, 62.0 -1,1,a-pcom-i3,2018-19,Billerica - John F Kennedy,00310012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 41.2 -1,1,a-pcom-i3,2018-19,Billerica - Locke Middle,00310310, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 78.8, 21.2, 70.0 -1,1,a-pcom-i3,2018-19,Billerica - Marshall Middle School,00310305, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 77.9, 22.1, 89.3 -1,1,a-pcom-i3,2018-19,Billerica - Parker,00310015, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 97.1, 2.9, 77.3 -1,1,a-pcom-i3,2018-19,Billerica - Thomas Ditson,00310005, 0.0, 0.7, 0.0, 99.3, 0.0, 0.0, 0.0, 94.9, 5.1, 73.8 -1,1,a-pcom-i3,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 58.4, 41.6, 165.3 -1,1,a-pcom-i3,2018-19,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 32.9 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 5.2, 94.8, 0.0, 0.0, 0.0, 66.2, 33.8, 54.4 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 84.5, 15.5, 43.8 -1,1,a-pcom-i3,2018-19,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 35.8 -1,1,a-pcom-i3,2018-19,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 36.6 -1.8124999999999991,1.81,a-pcom-i3,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 2.5, 0.8, 1.7, 94.2, 0.0, 0.0, 0.8, 54.1, 45.9, 121.0 -11.78125,5,a-pcom-i3,2018-19,Boston - Another Course To College,00350541, 25.0, 4.3, 4.3, 62.3, 0.0, 0.0, 4.2, 70.9, 29.1, 23.9 -19.71875,5,a-pcom-i3,2018-19,Boston - Baldwin Early Learning Center,00350003, 18.3, 10.6, 28.9, 36.9, 0.0, 0.0, 5.3, 94.7, 5.3, 38.0 -8.1875,5,a-pcom-i3,2018-19,Boston - Beethoven,00350021, 15.7, 2.6, 7.9, 73.8, 0.0, 0.0, 0.0, 91.2, 8.8, 38.4 -15.84375,5,a-pcom-i3,2018-19,Boston - Blackstone,00350390, 23.5, 1.2, 24.8, 49.3, 1.2, 0.0, 0.0, 76.1, 23.9, 85.0 -23.1875,5,a-pcom-i3,2018-19,Boston - Boston Adult Academy,00350548, 44.7, 11.1, 11.1, 25.8, 0.0, 3.7, 3.6, 57.3, 42.7, 26.9 -16.875,5,a-pcom-i3,2018-19,Boston - Boston Arts Academy,00350546, 34.0, 5.4, 12.7, 46.0, 0.0, 0.0, 1.9, 66.1, 33.9, 54.5 -22.437499999999996,5,a-pcom-i3,2018-19,Boston - Boston Collaborative High School,00350755, 28.3, 7.4, 29.0, 28.2, 0.0, 0.0, 7.1, 71.9, 28.1, 14.0 -16.6875,5,a-pcom-i3,2018-19,Boston - Boston Community Leadership Academy,00350558, 24.2, 10.3, 17.2, 46.6, 0.0, 0.0, 1.7, 65.3, 34.7, 58.0 -15.593749999999998,5,a-pcom-i3,2018-19,Boston - Boston International High School,00350507, 22.4, 5.2, 22.3, 50.1, 0.0, 0.0, 0.0, 61.9, 38.1, 57.9 -11.4375,5,a-pcom-i3,2018-19,Boston - Boston Latin,00350560, 19.3, 7.3, 8.0, 63.4, 0.0, 0.7, 1.3, 57.4, 42.6, 150.0 -14.25,5,a-pcom-i3,2018-19,Boston - Boston Latin Academy,00350545, 17.5, 15.0, 11.4, 54.4, 0.0, 0.0, 1.7, 59.7, 40.3, 114.9 -15.1875,5,a-pcom-i3,2018-19,Boston - Boston Teachers Union School,00350012, 21.3, 8.9, 15.2, 51.4, 0.0, 0.0, 3.1, 85.0, 15.0, 33.1 -16.031249999999996,5,a-pcom-i3,2018-19,Boston - Brighton High,00350505, 28.7, 3.7, 15.0, 48.7, 0.0, 0.0, 3.7, 70.0, 30.0, 80.0 -13.687499999999998,5,a-pcom-i3,2018-19,Boston - Carter School,00350036, 37.5, 0.0, 0.0, 56.2, 0.0, 0.0, 6.3, 87.5, 12.5, 16.0 -23.5,5,a-pcom-i3,2018-19,Boston - Charles H Taylor,00350054, 65.1, 3.6, 6.5, 24.8, 0.0, 0.0, 0.0, 91.3, 8.7, 59.4 -14.6875,5,a-pcom-i3,2018-19,Boston - Charles Sumner,00350052, 21.8, 0.0, 25.2, 53.0, 0.0, 0.0, 0.0, 89.6, 10.4, 63.6 -13.062499999999998,5,a-pcom-i3,2018-19,Boston - Charlestown High,00350515, 16.0, 12.0, 12.0, 58.2, 0.9, 0.0, 0.9, 64.1, 35.9, 108.4 -13.625,5,a-pcom-i3,2018-19,Boston - Clarence R Edwards Middle,00350430, 17.5, 17.4, 8.7, 56.4, 0.0, 0.0, 0.0, 60.7, 39.3, 46.0 -22.3125,5,a-pcom-i3,2018-19,Boston - Community Academy,00350518, 35.6, 14.3, 14.3, 28.6, 0.0, 0.0, 7.2, 57.2, 42.8, 14.0 -18.40625,5,a-pcom-i3,2018-19,Boston - Community Academy of Science and Health,00350581, 47.1, 4.0, 5.9, 41.1, 0.0, 0.0, 2.0, 54.9, 45.1, 51.0 -13.406249999999998,5,a-pcom-i3,2018-19,Boston - Condon K-8,00350146, 26.7, 3.3, 12.0, 57.1, 0.0, 0.0, 1.0, 80.1, 19.9, 101.5 -13.96875,5,a-pcom-i3,2018-19,Boston - Curley K-8 School,00350020, 18.3, 1.6, 21.5, 55.3, 1.7, 0.0, 1.6, 91.4, 8.6, 125.8 -9.75,5,a-pcom-i3,2018-19,Boston - Curtis Guild,00350062, 10.7, 3.1, 14.6, 68.8, 0.0, 0.0, 2.7, 82.4, 17.6, 36.6 -13.062499999999998,5,a-pcom-i3,2018-19,Boston - Dante Alighieri Montessori School,00350066, 8.1, 0.0, 27.1, 58.2, 0.0, 0.0, 6.6, 82.8, 17.2, 14.9 -22.71875,5,a-pcom-i3,2018-19,Boston - David A Ellis,00350072, 44.1, 3.2, 17.5, 27.3, 3.9, 0.0, 3.9, 78.4, 21.6, 51.3 -17.906249999999996,5,a-pcom-i3,2018-19,Boston - Dearborn,00350074, 38.9, 3.7, 11.2, 42.7, 1.6, 0.0, 1.9, 65.0, 35.0, 53.7 -9.21875,5,a-pcom-i3,2018-19,Boston - Dennis C Haley,00350077, 14.8, 9.2, 3.7, 70.5, 0.0, 0.0, 1.9, 89.0, 11.0, 54.8 -8.093750000000002,5,a-pcom-i3,2018-19,Boston - Donald Mckay,00350080, 4.4, 1.5, 18.4, 74.1, 0.0, 0.0, 1.6, 76.0, 24.0, 68.4 -18.062499999999996,5,a-pcom-i3,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 47.3, 5.3, 5.2, 42.2, 0.0, 0.0, 0.0, 81.5, 18.5, 38.0 -9.0625,5,a-pcom-i3,2018-19,Boston - Dr. William Henderson Lower,00350266, 19.5, 3.9, 4.4, 71.0, 0.0, 0.3, 0.9, 79.6, 20.4, 53.5 -8.312499999999998,5,a-pcom-i3,2018-19,Boston - Dr. William Henderson Upper,00350426, 17.2, 3.9, 3.6, 73.4, 0.0, 1.2, 0.7, 75.1, 24.9, 72.7 -17.3125,5,a-pcom-i3,2018-19,Boston - ELC - West Zone,00350006, 32.0, 5.8, 11.7, 44.6, 2.9, 0.0, 2.9, 90.4, 9.6, 34.3 -16.15625,5,a-pcom-i3,2018-19,Boston - East Boston Early Childhood Center,00350009, 9.0, 4.4, 36.0, 48.3, 0.0, 2.2, 0.0, 93.3, 6.7, 44.5 -10.593750000000002,5,a-pcom-i3,2018-19,Boston - East Boston High,00350530, 12.2, 2.4, 17.7, 66.1, 0.0, 0.0, 1.6, 59.0, 41.0, 123.1 -13.3125,5,a-pcom-i3,2018-19,Boston - Edison K-8,00350375, 23.6, 4.6, 13.4, 57.4, 0.0, 0.0, 1.1, 75.4, 24.6, 88.8 -11.124999999999998,5,a-pcom-i3,2018-19,Boston - Edward Everett,00350088, 17.7, 10.7, 7.1, 64.4, 0.0, 0.0, 0.0, 92.8, 7.2, 28.0 -10.0625,5,a-pcom-i3,2018-19,Boston - Eliot Elementary,00350096, 19.3, 3.3, 8.1, 67.8, 0.0, 0.0, 1.6, 88.7, 11.3, 61.3 -12.781249999999998,5,a-pcom-i3,2018-19,Boston - Ellis Mendell,00350100, 17.0, 0.0, 23.9, 59.1, 0.0, 0.0, 0.0, 95.1, 4.9, 29.4 -17.84375,5,a-pcom-i3,2018-19,Boston - Excel High School,00350522, 35.3, 14.2, 6.1, 42.9, 1.5, 0.0, 0.0, 63.1, 36.9, 65.3 -17.40625,5,a-pcom-i3,2018-19,Boston - Fenway High School,00350540, 33.0, 2.5, 17.6, 44.3, 0.0, 0.0, 2.5, 60.8, 39.2, 39.3 -11.812499999999998,5,a-pcom-i3,2018-19,Boston - Franklin D Roosevelt,00350116, 23.4, 3.6, 9.0, 62.2, 0.0, 0.0, 1.8, 94.6, 5.4, 55.3 -14.187499999999998,5,a-pcom-i3,2018-19,Boston - Gardner Pilot Academy,00350326, 24.3, 4.0, 17.0, 54.6, 0.0, 0.0, 0.0, 90.0, 10.0, 49.2 -10.3125,5,a-pcom-i3,2018-19,Boston - George H Conley,00350122, 22.6, 2.6, 5.2, 67.0, 0.0, 0.0, 2.6, 87.7, 12.3, 38.3 -22.906249999999996,5,a-pcom-i3,2018-19,Boston - Greater Egleston Community High School,00350543, 46.5, 0.0, 26.8, 26.7, 0.0, 0.0, 0.0, 66.9, 33.1, 14.9 -7.687499999999998,5,a-pcom-i3,2018-19,Boston - Harvard-Kent,00350200, 9.4, 10.5, 4.6, 75.4, 0.0, 0.0, 0.0, 80.3, 19.7, 66.5 -25.375,5,a-pcom-i3,2018-19,Boston - Haynes Early Education Center,00350010, 66.4, 2.5, 12.4, 18.8, 0.0, 0.0, 0.0, 76.2, 23.8, 40.7 -15.1875,5,a-pcom-i3,2018-19,Boston - Henry Grew,00350135, 39.6, 0.0, 8.9, 51.4, 0.0, 0.0, 0.0, 80.2, 19.8, 22.4 -18.9375,5,a-pcom-i3,2018-19,Boston - Higginson,00350015, 27.3, 6.1, 24.2, 39.4, 0.0, 0.0, 3.0, 88.0, 12.0, 33.0 -21.375,5,a-pcom-i3,2018-19,Boston - Higginson/Lewis K-8,00350377, 54.2, 6.0, 8.2, 31.6, 0.0, 0.0, 0.0, 80.0, 20.0, 50.3 -10.15625,5,a-pcom-i3,2018-19,Boston - Horace Mann School for the Deaf,00350750, 13.5, 8.1, 9.5, 67.5, 0.0, 0.0, 1.4, 81.0, 19.0, 73.8 -6.687500000000002,5,a-pcom-i3,2018-19,Boston - Hugh Roe O'Donnell,00350141, 1.7, 3.9, 15.8, 78.6, 0.0, 0.0, 0.0, 74.8, 25.2, 25.3 -14.375,5,a-pcom-i3,2018-19,Boston - Jackson Mann,00350013, 28.6, 5.8, 10.4, 54.0, 0.0, 0.0, 1.2, 81.4, 18.6, 87.6 -17.906249999999996,5,a-pcom-i3,2018-19,Boston - James J Chittick,00350154, 38.3, 6.0, 10.8, 42.7, 2.1, 0.0, 0.0, 87.1, 12.9, 46.9 -9.937499999999998,5,a-pcom-i3,2018-19,Boston - James Otis,00350156, 10.3, 2.6, 18.9, 68.2, 0.0, 0.0, 0.0, 78.1, 21.9, 38.9 -21.40625,5,a-pcom-i3,2018-19,Boston - James P Timilty Middle,00350485, 48.5, 0.2, 19.8, 31.5, 0.0, 0.0, 0.0, 67.5, 32.5, 35.2 -16.90625,5,a-pcom-i3,2018-19,Boston - James W Hennigan,00350153, 25.9, 0.9, 25.9, 45.9, 0.0, 0.0, 1.4, 79.4, 20.6, 73.0 -18.5,5,a-pcom-i3,2018-19,Boston - Jeremiah E Burke High,00350525, 48.9, 0.0, 8.2, 40.8, 0.0, 0.0, 2.0, 53.1, 46.9, 48.9 -16.0625,5,a-pcom-i3,2018-19,Boston - John D Philbrick,00350172, 38.2, 5.8, 7.4, 48.6, 0.0, 0.0, 0.0, 86.9, 13.1, 17.4 -15.593749999999998,5,a-pcom-i3,2018-19,Boston - John F Kennedy,00350166, 21.1, 2.6, 26.2, 50.1, 0.0, 0.0, 0.0, 75.9, 24.1, 38.1 -14.125,5,a-pcom-i3,2018-19,Boston - John W McCormack,00350179, 30.9, 2.1, 12.3, 54.8, 0.0, 0.0, 0.0, 73.3, 26.7, 48.7 -12.34375,5,a-pcom-i3,2018-19,Boston - John Winthrop,00350180, 28.0, 0.0, 8.6, 60.5, 0.0, 0.0, 2.9, 85.7, 14.3, 34.7 -23.687499999999996,5,a-pcom-i3,2018-19,Boston - Joseph J Hurley,00350182, 15.0, 0.0, 57.8, 24.2, 3.1, 0.0, 0.0, 85.0, 15.0, 32.7 -16.40625,5,a-pcom-i3,2018-19,Boston - Joseph Lee,00350183, 39.5, 3.4, 8.0, 47.5, 0.8, 0.0, 0.8, 78.1, 21.9, 119.0 -11.59375,5,a-pcom-i3,2018-19,Boston - Joseph P Manning,00350184, 33.3, 0.0, 3.8, 62.9, 0.0, 0.0, 0.0, 74.0, 26.0, 26.6 -13.093749999999998,5,a-pcom-i3,2018-19,Boston - Joseph P Tynan,00350181, 24.9, 0.0, 14.9, 58.1, 0.0, 0.0, 2.0, 87.1, 12.9, 46.5 -20.125,5,a-pcom-i3,2018-19,Boston - Josiah Quincy,00350286, 15.0, 45.4, 4.0, 35.6, 0.0, 0.0, 0.0, 86.7, 13.3, 100.1 -5.968749999999998,5,a-pcom-i3,2018-19,Boston - Joyce Kilmer,00350190, 11.4, 0.0, 6.1, 80.9, 0.0, 0.0, 1.7, 85.2, 14.8, 61.4 -19.468749999999996,5,a-pcom-i3,2018-19,Boston - King K-8,00350376, 52.4, 1.4, 7.0, 37.7, 0.0, 0.0, 1.4, 79.3, 20.7, 69.9 -17.5625,5,a-pcom-i3,2018-19,Boston - Lee Academy,00350001, 31.6, 8.5, 16.1, 43.8, 0.0, 0.0, 0.0, 75.9, 24.1, 35.2 -19.375,5,a-pcom-i3,2018-19,Boston - Lilla G. Frederick Middle School,00350383, 32.4, 5.6, 22.6, 38.0, 0.0, 0.0, 1.4, 70.4, 29.6, 70.9 -8.4375,5,a-pcom-i3,2018-19,Boston - Lyndon,00350262, 16.2, 1.8, 9.0, 73.0, 0.0, 0.0, 0.0, 80.1, 19.9, 55.3 -9.312499999999998,5,a-pcom-i3,2018-19,Boston - Lyon K-8,00350004, 17.8, 6.0, 3.0, 70.2, 0.0, 0.0, 3.0, 79.2, 20.8, 33.4 -13.0,5,a-pcom-i3,2018-19,Boston - Lyon Upper 9-12,00350655, 27.7, 11.1, 2.8, 58.4, 0.0, 0.0, 0.0, 47.1, 52.9, 36.1 -18.09375,5,a-pcom-i3,2018-19,Boston - Madison Park High,00350537, 35.1, 2.8, 15.2, 42.1, 0.0, 0.0, 4.8, 50.4, 49.6, 145.0 -3.218749999999999,3.22,a-pcom-i3,2018-19,Boston - Manassah E Bradley,00350215, 3.0, 3.5, 3.8, 89.7, 0.0, 0.0, 0.0, 86.5, 13.5, 33.0 -16.812499999999996,5,a-pcom-i3,2018-19,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 53.8, 46.2, 0.0, 0.0, 0.0, 72.7, 27.3, 30.3 -13.125,5,a-pcom-i3,2018-19,Boston - Mario Umana Academy,00350656, 11.6, 1.9, 24.6, 58.0, 1.0, 0.0, 2.9, 70.9, 29.1, 102.5 -20.9375,5,a-pcom-i3,2018-19,Boston - Mather,00350227, 43.6, 15.6, 3.9, 33.0, 0.0, 0.0, 3.9, 82.2, 17.8, 51.1 -22.281249999999996,5,a-pcom-i3,2018-19,Boston - Mattahunt Elementary School,00350016, 59.0, 1.4, 5.4, 28.7, 0.0, 0.0, 5.5, 86.5, 13.5, 73.0 -15.65625,5,a-pcom-i3,2018-19,Boston - Maurice J Tobin,00350229, 19.3, 2.2, 26.5, 49.9, 0.0, 0.0, 2.2, 85.2, 14.8, 45.1 -18.125,5,a-pcom-i3,2018-19,Boston - Michael J Perkins,00350231, 47.4, 0.0, 5.3, 42.0, 0.0, 0.0, 5.3, 73.6, 26.4, 18.9 -20.0,5,a-pcom-i3,2018-19,Boston - Mildred Avenue K-8,00350378, 44.2, 3.1, 15.3, 36.0, 0.0, 0.0, 1.5, 78.7, 21.3, 65.5 -18.5,5,a-pcom-i3,2018-19,Boston - Mission Hill School,00350382, 51.1, 0.0, 8.1, 40.8, 0.0, 0.0, 0.0, 78.1, 21.9, 35.1 -15.03125,5,a-pcom-i3,2018-19,Boston - Mozart,00350237, 29.1, 0.0, 19.0, 51.9, 0.0, 0.0, 0.0, 82.7, 17.3, 26.3 -20.21875,5,a-pcom-i3,2018-19,Boston - Nathan Hale,00350243, 41.2, 0.0, 23.5, 35.3, 0.0, 0.0, 0.0, 76.4, 23.6, 17.0 -18.0,5,a-pcom-i3,2018-19,Boston - New Mission High School,00350542, 36.0, 10.5, 8.9, 42.4, 0.0, 0.0, 2.3, 57.5, 42.5, 44.4 -14.71875,5,a-pcom-i3,2018-19,Boston - O W Holmes,00350138, 35.8, 4.9, 6.5, 52.9, 0.0, 0.0, 0.0, 74.5, 25.5, 61.5 -17.0,5,a-pcom-i3,2018-19,Boston - O'Bryant School Math/Science,00350575, 32.8, 4.7, 16.0, 45.6, 0.0, 0.0, 0.9, 62.8, 37.2, 106.6 -8.90625,5,a-pcom-i3,2018-19,Boston - Oliver Hazard Perry,00350255, 14.1, 0.0, 10.8, 71.5, 0.0, 0.0, 3.6, 85.9, 14.1, 28.0 -13.4375,5,a-pcom-i3,2018-19,Boston - Orchard Gardens,00350257, 24.8, 0.9, 13.6, 57.0, 0.0, 0.0, 3.7, 81.2, 18.8, 110.4 -12.09375,5,a-pcom-i3,2018-19,Boston - Patrick J Kennedy,00350264, 4.3, 2.9, 31.5, 61.3, 0.0, 0.0, 0.0, 91.7, 8.3, 34.9 -17.749999999999996,5,a-pcom-i3,2018-19,Boston - Paul A Dever,00350268, 35.2, 1.8, 14.3, 43.2, 0.0, 0.0, 5.4, 73.0, 27.0, 55.4 -18.531249999999996,5,a-pcom-i3,2018-19,Boston - Pauline Agassiz Shaw Elementary School,00350014, 50.1, 0.0, 9.1, 40.7, 0.0, 0.0, 0.0, 81.7, 18.3, 21.8 -8.875000000000002,5,a-pcom-i3,2018-19,Boston - Phineas Bates,00350278, 14.2, 0.0, 14.3, 71.6, 0.0, 0.0, 0.0, 88.6, 11.4, 34.6 -19.53125,5,a-pcom-i3,2018-19,Boston - Quincy Upper School,00350565, 25.0, 24.9, 8.9, 37.5, 1.8, 0.0, 1.8, 60.6, 39.4, 55.9 -23.312499999999996,5,a-pcom-i3,2018-19,Boston - Rafael Hernandez,00350691, 7.0, 0.0, 67.6, 25.4, 0.0, 0.0, 0.0, 85.9, 14.1, 42.7 -11.812499999999998,5,a-pcom-i3,2018-19,Boston - Richard J Murphy,00350240, 22.1, 7.7, 6.9, 62.2, 0.0, 0.0, 1.0, 78.2, 21.8, 99.3 -15.65625,5,a-pcom-i3,2018-19,Boston - Roger Clap,00350298, 22.6, 0.0, 9.1, 49.9, 0.0, 0.0, 18.4, 77.5, 22.5, 22.0 -15.21875,5,a-pcom-i3,2018-19,Boston - Samuel Adams,00350302, 13.8, 2.3, 32.6, 51.3, 0.0, 0.0, 0.0, 85.7, 14.3, 43.1 -20.15625,5,a-pcom-i3,2018-19,Boston - Samuel W Mason,00350304, 47.7, 0.0, 14.0, 35.5, 2.8, 0.0, 0.0, 83.4, 16.6, 35.7 -24.03125,5,a-pcom-i3,2018-19,Boston - Sarah Greenwood,00350308, 24.9, 0.0, 52.0, 23.1, 0.0, 0.0, 0.0, 75.2, 24.8, 55.6 -12.749999999999998,5,a-pcom-i3,2018-19,Boston - Snowden International School at Copley,00350690, 25.2, 3.9, 11.6, 59.2, 0.0, 0.0, 0.0, 58.3, 41.7, 51.4 -13.874999999999998,5,a-pcom-i3,2018-19,Boston - TechBoston Academy,00350657, 38.3, 2.0, 2.0, 55.6, 0.0, 0.0, 2.0, 56.5, 43.5, 99.8 -15.8125,5,a-pcom-i3,2018-19,Boston - The English High,00350535, 23.8, 4.2, 21.2, 49.4, 0.0, 0.0, 1.4, 60.5, 39.5, 70.6 -11.71875,5,a-pcom-i3,2018-19,Boston - Thomas J Kenny,00350328, 24.9, 7.6, 5.0, 62.5, 0.0, 0.0, 0.0, 84.8, 15.2, 40.4 -13.625,5,a-pcom-i3,2018-19,Boston - UP Academy Holland,00350167, 26.3, 4.0, 12.0, 56.4, 0.0, 0.0, 1.3, 84.2, 15.8, 75.7 -14.6875,5,a-pcom-i3,2018-19,Boston - Urban Science Academy,00350579, 31.9, 4.8, 10.3, 53.0, 0.0, 0.0, 0.0, 64.9, 35.1, 76.8 -4.906250000000001,4.91,a-pcom-i3,2018-19,Boston - Warren-Prescott,00350346, 6.4, 0.0, 7.7, 84.3, 0.0, 0.0, 1.6, 89.1, 10.9, 62.7 -13.718749999999998,5,a-pcom-i3,2018-19,Boston - Washington Irving Middle,00350445, 35.5, 2.1, 6.3, 56.1, 0.0, 0.0, 0.0, 66.6, 33.4, 47.9 -19.875,5,a-pcom-i3,2018-19,Boston - West Roxbury Academy,00350658, 63.6, 0.0, 0.0, 36.4, 0.0, 0.0, 0.0, 75.8, 24.2, 16.5 -15.625,5,a-pcom-i3,2018-19,Boston - William E Russell,00350366, 24.9, 2.8, 19.5, 50.0, 0.0, 0.0, 2.8, 86.3, 13.7, 35.8 -18.46875,5,a-pcom-i3,2018-19,Boston - William Ellery Channing,00350360, 42.0, 6.9, 2.9, 40.9, 3.7, 0.0, 3.7, 78.9, 21.1, 26.2 -10.0,5,a-pcom-i3,2018-19,Boston - William H Ohrenberger,00350258, 21.1, 1.5, 7.9, 68.0, 0.0, 0.0, 1.5, 67.1, 32.9, 65.8 -16.031249999999996,5,a-pcom-i3,2018-19,Boston - William McKinley,00350363, 36.6, 1.7, 11.4, 48.7, 0.0, 0.4, 1.3, 63.5, 36.5, 237.6 -18.1875,5,a-pcom-i3,2018-19,Boston - William Monroe Trotter,00350370, 48.1, 6.1, 4.0, 41.8, 0.0, 0.0, 0.0, 85.0, 15.0, 50.0 -17.03125,5,a-pcom-i3,2018-19,Boston - Winship Elementary,00350374, 35.6, 4.0, 15.0, 45.5, 0.0, 0.0, 0.0, 84.0, 16.0, 25.1 -22.46875,5,a-pcom-i3,2018-19,Boston - Young Achievers,00350380, 53.8, 1.8, 13.4, 28.1, 0.0, 0.0, 2.9, 76.8, 23.2, 69.3 -11.843749999999998,5,a-pcom-i3,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 12.4, 2.2, 16.9, 62.1, 0.0, 0.0, 6.4, 68.3, 31.7, 91.0 -16.75,5,a-pcom-i3,2018-19,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 28.9, 8.2, 14.4, 46.4, 2.1, 0.0, 0.0, 64.9, 35.1, 48.5 -14.875,5,a-pcom-i3,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 29.0, 3.4, 15.2, 52.4, 0.0, 0.0, 0.0, 68.5, 31.5, 59.3 -12.749999999999998,5,a-pcom-i3,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 26.7, 1.4, 9.9, 59.2, 0.0, 0.0, 2.8, 65.9, 34.1, 71.1 -8.90625,5,a-pcom-i3,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 20.1, 5.6, 2.2, 71.5, 0.0, 0.0, 0.6, 83.1, 16.9, 159.5 -1,1,a-pcom-i3,2018-19,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.3, 30.7, 61.9 -1,1,a-pcom-i3,2018-19,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 97.4, 0.0, 0.0, 2.6, 83.0, 17.0, 76.5 -1,1,a-pcom-i3,2018-19,Bourne - Bournedale Elementary School,00360005, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 98.4, 1.6, 62.0 -1,1,a-pcom-i3,2018-19,Bourne - Peebles Elementary School,00360010, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 92.7, 7.3, 40.9 -1,1,a-pcom-i3,2018-19,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 54.0 -1,1,a-pcom-i3,2018-19,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 64.1 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Boylston - Boylston Elementary,00390005, 0.0, 1.4, 0.0, 95.9, 0.0, 0.0, 2.7, 93.2, 6.8, 36.5 -1,1,a-pcom-i3,2018-19,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 93.1, 6.9, 62.8 -1.25,1.25,a-pcom-i3,2018-19,Braintree - Braintree High,00400505, 1.4, 1.6, 0.5, 96.0, 0.0, 0.0, 0.5, 71.7, 28.3, 196.1 -1,1,a-pcom-i3,2018-19,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 34.9 -1.09375,1.09,a-pcom-i3,2018-19,Braintree - East Middle School,00400305, 1.2, 1.2, 1.2, 96.5, 0.0, 0.0, 0.0, 78.6, 21.4, 85.0 -1,1,a-pcom-i3,2018-19,Braintree - Highlands,00400015, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 91.0, 9.0, 40.9 -1,1,a-pcom-i3,2018-19,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 56.5 -1,1,a-pcom-i3,2018-19,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 40.1 -1,1,a-pcom-i3,2018-19,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 97.4, 0.0, 0.0, 1.6, 93.3, 6.7, 62.6 -1,1,a-pcom-i3,2018-19,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 96.9, 0.0, 3.1, 0.0, 97.9, 2.1, 32.8 -1,1,a-pcom-i3,2018-19,Braintree - South Middle School,00400310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.2, 23.8, 84.0 -1,1,a-pcom-i3,2018-19,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.3, 0.7, 40.6 -1,1,a-pcom-i3,2018-19,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 94.2, 5.8, 46.7 -11.031249999999998,5,a-pcom-i3,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 24.5, 1.3, 5.8, 64.7, 1.3, 0.0, 2.5, 85.1, 14.9, 79.7 -1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.3, 17.7, 48.7 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 1.6, 0.8, 0.8, 96.7, 0.0, 0.0, 0.0, 69.4, 30.6, 121.3 -1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 42.9 -1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 29.3 -1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.9, 0.0, 1.9, 97.2, 0.0, 0.0, 0.0, 94.4, 5.6, 106.0 -1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.6, 14.4, 62.3 -1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.5, 19.5, 6.7 -1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Williams Intermediate School,06250300, 1.4, 0.0, 0.0, 97.2, 0.0, 0.0, 1.4, 84.3, 15.7, 72.3 -1,1,a-pcom-i3,2018-19,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 44.3 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 54.0, 46.0, 53.9 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 1.3, 0.0, 0.7, 96.7, 1.3, 0.0, 0.0, 62.0, 38.0, 149.6 -2.6250000000000018,2.63,a-pcom-i3,2018-19,Brockton - Ashfield Middle School,00440421, 6.7, 0.0, 1.7, 91.6, 0.0, 0.0, 0.0, 82.6, 17.4, 57.5 -2.4687500000000018,2.47,a-pcom-i3,2018-19,Brockton - Barrett Russell Early Childhood Center,00440008, 5.7, 1.8, 0.4, 92.1, 0.0, 0.0, 0.0, 100.0, 0.0, 54.5 -8.125,5,a-pcom-i3,2018-19,Brockton - Brockton Champion High School,00440515, 17.1, 0.0, 5.4, 74.0, 0.7, 0.0, 2.7, 56.5, 43.5, 36.8 -7.218749999999998,5,a-pcom-i3,2018-19,Brockton - Brockton High,00440505, 16.2, 2.2, 3.2, 76.9, 0.0, 0.3, 1.3, 64.4, 35.6, 378.7 -3.999999999999999,4.0,a-pcom-i3,2018-19,Brockton - Brookfield,00440010, 9.6, 0.0, 3.2, 87.2, 0.0, 0.0, 0.0, 88.5, 11.5, 62.3 -4.812500000000002,4.81,a-pcom-i3,2018-19,Brockton - Downey,00440110, 10.3, 0.0, 3.1, 84.6, 1.0, 0.0, 1.0, 90.7, 9.3, 97.1 -5.125000000000002,5,a-pcom-i3,2018-19,Brockton - Dr W Arnone Community School,00440001, 12.9, 0.0, 3.3, 83.6, 0.0, 0.0, 0.2, 89.4, 10.6, 90.7 -7.156250000000002,5,a-pcom-i3,2018-19,Brockton - East Middle School,00440405, 13.6, 1.5, 4.5, 77.1, 1.5, 0.0, 1.8, 67.6, 32.4, 66.4 -4.0625,4.06,a-pcom-i3,2018-19,Brockton - Edgar B Davis,00440023, 8.0, 0.0, 1.2, 87.0, 0.1, 0.0, 3.7, 77.3, 22.7, 80.5 -13.374999999999998,5,a-pcom-i3,2018-19,Brockton - Edison Academy,00440520, 38.0, 0.0, 4.7, 57.2, 0.0, 0.0, 0.0, 68.9, 31.1, 20.7 -4.656250000000002,4.66,a-pcom-i3,2018-19,Brockton - Frederick Douglass Academy,00440080, 0.0, 0.0, 0.0, 85.1, 8.3, 0.0, 6.6, 64.8, 35.2, 15.1 -4.656250000000002,4.66,a-pcom-i3,2018-19,Brockton - Gilmore Elementary School,00440055, 14.3, 0.0, 0.6, 85.1, 0.0, 0.0, 0.0, 81.4, 18.6, 48.9 -4.21875,4.22,a-pcom-i3,2018-19,Brockton - Hancock,00440045, 3.2, 0.0, 5.7, 86.5, 1.7, 0.0, 2.9, 89.8, 10.2, 46.9 -7.374999999999998,5,a-pcom-i3,2018-19,Brockton - Huntington Therapeutic Day School,00440400, 19.1, 0.0, 2.3, 76.4, 0.0, 0.0, 2.3, 64.1, 35.9, 44.4 -6.031249999999999,5,a-pcom-i3,2018-19,Brockton - John F Kennedy,00440017, 10.9, 4.1, 3.6, 80.7, 0.0, 0.0, 0.6, 90.2, 9.8, 54.8 -5.687500000000001,5,a-pcom-i3,2018-19,Brockton - Joseph F. Plouffe Academy,00440422, 10.7, 4.4, 3.0, 81.8, 0.0, 0.0, 0.0, 78.2, 21.8, 67.5 -6.40625,5,a-pcom-i3,2018-19,Brockton - Louis F Angelo Elementary,00440065, 12.7, 0.2, 4.7, 79.5, 0.0, 0.0, 2.8, 89.1, 10.9, 106.1 -9.468749999999998,5,a-pcom-i3,2018-19,Brockton - Manthala George Jr. School,00440003, 12.1, 0.0, 14.8, 69.7, 1.2, 0.0, 2.2, 91.5, 8.5, 90.1 -7.250000000000001,5,a-pcom-i3,2018-19,Brockton - Mary E. Baker School,00440002, 16.7, 0.0, 5.4, 76.8, 0.0, 0.0, 1.1, 95.9, 4.1, 92.9 -3.75,3.75,a-pcom-i3,2018-19,Brockton - North Middle School,00440410, 9.1, 0.0, 0.0, 88.0, 0.0, 0.0, 2.9, 70.5, 29.5, 41.3 -5.093749999999999,5,a-pcom-i3,2018-19,Brockton - Oscar F Raymond,00440078, 13.9, 0.0, 0.0, 83.7, 0.0, 0.0, 2.4, 95.9, 4.1, 76.1 -4.718749999999998,4.72,a-pcom-i3,2018-19,Brockton - South Middle School,00440415, 13.1, 0.0, 0.0, 84.9, 0.0, 0.0, 2.0, 74.1, 25.9, 66.9 -6.218750000000002,5,a-pcom-i3,2018-19,Brockton - West Middle School,00440420, 16.7, 1.5, 1.5, 80.1, 0.0, 0.0, 0.3, 69.6, 30.4, 68.8 -11.46875,5,a-pcom-i3,2018-19,Brooke Charter School (District) - Brooke Charter School,04280305, 20.0, 1.9, 14.0, 63.3, 0.0, 0.0, 0.9, 81.4, 18.6, 215.0 -1,1,a-pcom-i3,2018-19,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 44.0 -5.249999999999999,5,a-pcom-i3,2018-19,Brookline - Brookline Early Education Program at Beacon,00460001, 3.9, 6.5, 0.0, 83.2, 0.0, 6.5, 0.0, 100.0, 0.0, 15.5 -4.53125,4.53,a-pcom-i3,2018-19,Brookline - Brookline Early Education Program at Putterham,00460002, 10.4, 4.1, 0.0, 85.5, 0.0, 0.0, 0.0, 94.6, 5.4, 18.7 -5.906250000000002,5,a-pcom-i3,2018-19,Brookline - Brookline High,00460505, 8.6, 5.0, 5.0, 81.1, 0.0, 0.0, 0.3, 65.2, 34.8, 318.7 -4.249999999999998,4.25,a-pcom-i3,2018-19,Brookline - Coolidge Corner School,00460015, 5.6, 2.4, 4.8, 86.4, 0.0, 0.7, 0.0, 81.2, 18.8, 139.9 -4.968750000000002,4.97,a-pcom-i3,2018-19,Brookline - Edith C Baker,00460005, 2.5, 6.8, 5.6, 84.1, 0.0, 0.0, 0.9, 84.7, 15.3, 106.6 -5.750000000000002,5,a-pcom-i3,2018-19,Brookline - Heath,00460025, 9.4, 3.8, 5.1, 81.6, 0.0, 0.0, 0.0, 85.7, 14.3, 78.1 -5.0,5.0,a-pcom-i3,2018-19,Brookline - John D Runkle,00460045, 6.7, 5.3, 3.1, 84.0, 0.0, 1.0, 0.0, 86.7, 13.3, 105.3 -5.812499999999998,5,a-pcom-i3,2018-19,Brookline - Lawrence,00460030, 6.1, 7.4, 4.0, 81.4, 0.0, 0.0, 1.0, 80.4, 19.6, 95.9 -6.031249999999999,5,a-pcom-i3,2018-19,Brookline - Michael Driscoll,00460020, 5.0, 7.4, 4.8, 80.7, 0.0, 0.0, 2.1, 83.4, 16.6, 96.1 -5.874999999999999,5,a-pcom-i3,2018-19,Brookline - Pierce,00460040, 8.3, 6.3, 1.7, 81.2, 0.0, 0.0, 2.5, 86.4, 13.6, 119.2 -2.906249999999999,2.91,a-pcom-i3,2018-19,Brookline - The Lynch Center,00460060, 5.2, 0.0, 4.1, 90.7, 0.0, 0.0, 0.0, 100.0, 0.0, 32.7 -4.500000000000002,4.5,a-pcom-i3,2018-19,Brookline - William H Lincoln,00460035, 4.0, 3.8, 6.6, 85.6, 0.0, 0.0, 0.0, 85.4, 14.6, 99.7 -1.7812500000000009,1.78,a-pcom-i3,2018-19,Burlington - Burlington High,00480505, 0.0, 2.0, 3.3, 94.3, 0.0, 0.0, 0.4, 76.2, 23.8, 151.0 -1,1,a-pcom-i3,2018-19,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 98.2, 0.0, 0.0, 1.8, 86.5, 13.5, 55.1 -1,1,a-pcom-i3,2018-19,Burlington - Francis Wyman Elementary,00480035, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 88.3, 11.7, 83.1 -1.25,1.25,a-pcom-i3,2018-19,Burlington - Marshall Simonds Middle,00480303, 1.0, 3.0, 0.0, 96.0, 0.0, 0.0, 0.0, 82.4, 17.6, 99.2 -1.40625,1.41,a-pcom-i3,2018-19,Burlington - Memorial,00480015, 0.0, 4.5, 0.0, 95.5, 0.0, 0.0, 0.0, 95.5, 4.5, 64.9 -1,1,a-pcom-i3,2018-19,Burlington - Pine Glen Elementary,00480020, 0.0, 0.2, 0.0, 98.3, 0.0, 0.0, 1.6, 94.2, 5.8, 63.8 -17.375,5,a-pcom-i3,2018-19,Cambridge - Amigos School,00490006, 4.2, 0.0, 51.4, 44.4, 0.0, 0.0, 0.0, 81.4, 18.6, 59.6 -8.156249999999998,5,a-pcom-i3,2018-19,Cambridge - Cambridge Rindge and Latin,00490506, 13.9, 5.0, 6.1, 73.9, 0.3, 0.3, 0.3, 61.9, 38.1, 294.2 -9.812500000000002,5,a-pcom-i3,2018-19,Cambridge - Cambridge Street Upper School,00490305, 23.5, 3.9, 3.9, 68.6, 0.0, 0.0, 0.0, 85.8, 14.2, 51.0 -11.374999999999998,5,a-pcom-i3,2018-19,Cambridge - Cambridgeport,00490007, 25.2, 6.1, 3.5, 63.6, 0.0, 1.7, 0.0, 83.9, 16.1, 57.7 -11.062500000000002,5,a-pcom-i3,2018-19,Cambridge - Fletcher/Maynard Academy,00490090, 22.9, 8.9, 0.7, 64.6, 0.0, 1.5, 1.5, 83.7, 16.3, 67.8 -7.468750000000002,5,a-pcom-i3,2018-19,Cambridge - Graham and Parks,00490080, 14.2, 6.0, 3.0, 76.1, 0.7, 0.0, 0.0, 89.2, 10.8, 66.8 -4.593750000000001,4.59,a-pcom-i3,2018-19,Cambridge - Haggerty,00490020, 5.9, 5.9, 2.9, 85.3, 0.0, 0.0, 0.0, 89.4, 10.6, 50.9 -6.625000000000001,5,a-pcom-i3,2018-19,Cambridge - John M Tobin,00490065, 13.1, 5.0, 3.0, 78.8, 0.0, 0.0, 0.0, 87.1, 12.9, 49.5 -5.625,5,a-pcom-i3,2018-19,Cambridge - Kennedy-Longfellow,00490040, 9.0, 1.8, 7.2, 82.0, 0.0, 0.0, 0.0, 98.2, 1.8, 55.7 -10.750000000000002,5,a-pcom-i3,2018-19,Cambridge - King Open,00490035, 16.8, 6.9, 10.7, 65.6, 0.0, 0.0, 0.0, 87.4, 12.6, 65.4 -4.53125,4.53,a-pcom-i3,2018-19,Cambridge - Maria L. Baldwin,00490005, 5.4, 3.6, 5.4, 85.5, 0.0, 0.0, 0.0, 84.1, 15.9, 55.2 -11.9375,5,a-pcom-i3,2018-19,Cambridge - Martin Luther King Jr.,00490030, 12.9, 18.9, 4.3, 61.8, 2.1, 0.0, 0.0, 86.3, 13.7, 46.6 -6.437499999999998,5,a-pcom-i3,2018-19,Cambridge - Morse,00490045, 13.8, 1.5, 4.6, 79.4, 0.8, 0.0, 0.0, 87.2, 12.8, 65.9 -5.187499999999998,5,a-pcom-i3,2018-19,Cambridge - Peabody,00490050, 8.7, 5.2, 0.9, 83.4, 1.7, 0.0, 0.0, 89.4, 10.6, 57.2 -16.09375,5,a-pcom-i3,2018-19,Cambridge - Putnam Avenue Upper School,00490310, 37.9, 9.6, 4.0, 48.5, 0.0, 0.0, 0.0, 62.8, 37.2, 50.1 -10.437500000000002,5,a-pcom-i3,2018-19,Cambridge - Rindge Avenue Upper School,00490315, 16.3, 7.3, 9.8, 66.6, 0.0, 0.0, 0.0, 63.1, 36.9, 40.9 -8.156249999999998,5,a-pcom-i3,2018-19,Cambridge - Vassal Lane Upper School,00490320, 15.1, 3.8, 7.2, 73.9, 0.0, 0.0, 0.0, 77.4, 22.6, 52.8 -1.9062499999999982,1.91,a-pcom-i3,2018-19,Canton - Canton High,00500505, 1.9, 1.9, 1.3, 93.9, 0.0, 0.0, 1.0, 66.5, 33.5, 104.4 -1,1,a-pcom-i3,2018-19,Canton - Dean S Luce,00500020, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 95.3, 4.7, 59.9 -1.8124999999999991,1.81,a-pcom-i3,2018-19,Canton - John F Kennedy,00500017, 4.3, 1.4, 0.0, 94.2, 0.0, 0.0, 0.0, 93.0, 7.0, 69.2 -3.218749999999999,3.22,a-pcom-i3,2018-19,Canton - Lt Peter M Hansen,00500012, 2.9, 1.5, 2.9, 89.7, 0.0, 0.0, 2.9, 90.5, 9.5, 68.2 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Canton - Rodman Early Childhood Center,00500010, 0.0, 3.6, 3.6, 92.9, 0.0, 0.0, 0.0, 92.9, 7.1, 28.0 -3.218749999999999,3.22,a-pcom-i3,2018-19,Canton - Wm H Galvin Middle,00500305, 3.4, 1.1, 3.4, 89.7, 0.0, 0.0, 2.3, 79.2, 20.8, 87.6 -1,1,a-pcom-i3,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 99.4, 0.0, 0.0, 0.6, 81.8, 18.2, 33.3 -1,1,a-pcom-i3,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 53.4, 46.6, 102.4 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Carlisle - Carlisle School,00510025, 1.0, 3.3, 0.0, 95.7, 0.0, 0.0, 0.0, 84.0, 16.0, 100.1 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Carver - Carver Elementary School,00520015, 0.5, 2.1, 1.0, 95.3, 1.0, 0.0, 0.0, 95.8, 4.2, 96.2 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Carver - Carver Middle/High School,00520405, 4.4, 0.0, 0.9, 92.9, 0.0, 0.9, 0.9, 70.9, 29.1, 113.2 -1,1,a-pcom-i3,2018-19,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.3 -1,1,a-pcom-i3,2018-19,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 46.1 -1,1,a-pcom-i3,2018-19,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.8 -1,1,a-pcom-i3,2018-19,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.7, 22.3, 49.3 -1,1,a-pcom-i3,2018-19,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 66.5, 33.5, 67.5 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Chelmsford - Byam School,00560030, 1.1, 4.3, 0.0, 94.6, 0.0, 0.0, 0.0, 90.2, 9.8, 92.1 -1,1,a-pcom-i3,2018-19,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 1.4, 97.1, 0.0, 0.0, 1.4, 97.9, 2.1, 70.2 -2.03125,2.03,a-pcom-i3,2018-19,Chelmsford - Charles D Harrington,00560025, 1.5, 2.1, 2.9, 93.5, 0.0, 0.0, 0.0, 94.1, 5.9, 68.0 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Chelmsford - Chelmsford High,00560505, 0.0, 2.1, 2.1, 95.7, 0.0, 0.0, 0.0, 65.2, 34.8, 187.6 -1,1,a-pcom-i3,2018-19,Chelmsford - Col Moses Parker School,00560305, 1.1, 1.9, 0.0, 97.0, 0.0, 0.0, 0.0, 83.6, 16.4, 105.2 -3.500000000000001,3.5,a-pcom-i3,2018-19,Chelmsford - Community Education Center,00560001, 2.8, 8.4, 0.0, 88.8, 0.0, 0.0, 0.0, 91.6, 8.4, 35.7 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Chelmsford - McCarthy Middle School,00560310, 0.9, 2.7, 0.0, 96.4, 0.0, 0.0, 0.0, 83.1, 16.9, 110.2 -1,1,a-pcom-i3,2018-19,Chelmsford - South Row,00560015, 0.0, 1.4, 1.4, 97.2, 0.0, 0.0, 0.0, 97.9, 2.1, 72.2 -5.906250000000002,5,a-pcom-i3,2018-19,Chelsea - Chelsea High,00570505, 0.8, 1.4, 16.1, 81.1, 0.0, 0.6, 0.0, 70.0, 30.0, 171.8 -4.281250000000001,4.28,a-pcom-i3,2018-19,Chelsea - Chelsea Opportunity Academy,00570515, 0.0, 0.0, 13.8, 86.3, 0.0, 0.0, 0.0, 33.8, 66.3, 8.0 -4.906250000000001,4.91,a-pcom-i3,2018-19,Chelsea - Clark Avenue School,00570050, 1.5, 0.0, 14.2, 84.3, 0.0, 0.0, 0.0, 78.3, 21.7, 66.4 -4.781249999999999,4.78,a-pcom-i3,2018-19,Chelsea - Edgar A Hooks Elementary,00570030, 1.7, 0.7, 11.4, 84.7, 0.0, 0.0, 1.7, 83.2, 16.8, 60.3 -4.812500000000002,4.81,a-pcom-i3,2018-19,Chelsea - Eugene Wright Science and Technology Academy,00570045, 1.8, 1.8, 9.9, 84.6, 0.0, 1.8, 0.0, 79.2, 20.8, 54.9 -5.406249999999999,5,a-pcom-i3,2018-19,Chelsea - Frank M Sokolowski Elementary,00570040, 1.8, 1.8, 13.8, 82.7, 0.0, 0.0, 0.0, 88.3, 11.7, 56.9 -6.343749999999999,5,a-pcom-i3,2018-19,Chelsea - George F. Kelly Elementary,00570035, 1.9, 1.9, 16.5, 79.7, 0.0, 0.0, 0.0, 87.8, 12.2, 53.6 -6.375000000000002,5,a-pcom-i3,2018-19,Chelsea - Joseph A. Browne School,00570055, 2.0, 5.9, 8.5, 79.6, 0.0, 2.0, 2.0, 81.6, 18.4, 50.8 -7.781250000000002,5,a-pcom-i3,2018-19,Chelsea - Shurtleff Early Childhood,00570003, 1.1, 0.0, 23.8, 75.1, 0.0, 0.0, 0.0, 93.9, 6.1, 124.0 -5.718749999999999,5,a-pcom-i3,2018-19,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 5.1, 11.5, 81.7, 0.0, 1.7, 0.0, 87.2, 12.8, 58.9 -1,1,a-pcom-i3,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 27.3 -1.6562499999999991,1.66,a-pcom-i3,2018-19,Chicopee - Barry,00610003, 1.7, 1.7, 2.0, 94.7, 0.0, 0.0, 0.0, 96.3, 3.7, 60.2 -2.1875,2.19,a-pcom-i3,2018-19,Chicopee - Belcher,00610010, 2.3, 0.0, 4.7, 93.0, 0.0, 0.0, 0.0, 94.4, 5.6, 42.8 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Chicopee - Bellamy Middle,00610305, 0.9, 0.0, 1.9, 96.2, 0.0, 0.9, 0.0, 79.7, 20.3, 106.2 -2.6250000000000018,2.63,a-pcom-i3,2018-19,Chicopee - Bowe,00610015, 3.2, 1.6, 3.6, 91.6, 0.0, 0.0, 0.0, 91.6, 8.4, 61.5 -1,1,a-pcom-i3,2018-19,Chicopee - Bowie,00610020, 2.1, 0.0, 0.5, 97.4, 0.0, 0.0, 0.0, 89.2, 10.8, 48.2 -5.062500000000001,5,a-pcom-i3,2018-19,Chicopee - Chicopee Academy,00610021, 13.5, 0.0, 2.8, 83.8, 0.0, 0.0, 0.0, 64.6, 35.4, 36.4 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Chicopee - Chicopee Comprehensive High School,00610510, 0.6, 0.6, 3.8, 94.9, 0.0, 0.0, 0.0, 56.5, 43.5, 156.9 -3.4375,3.44,a-pcom-i3,2018-19,Chicopee - Chicopee High,00610505, 2.4, 0.0, 7.8, 89.0, 0.8, 0.0, 0.0, 71.3, 28.7, 123.3 -2.65625,2.66,a-pcom-i3,2018-19,Chicopee - Dupont Middle,00610310, 1.0, 1.5, 5.0, 91.5, 0.0, 0.0, 1.0, 76.3, 23.7, 100.1 -2.6250000000000018,2.63,a-pcom-i3,2018-19,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 8.4, 91.6, 0.0, 0.0, 0.0, 90.6, 9.4, 83.3 -2.718750000000001,2.72,a-pcom-i3,2018-19,Chicopee - Gen John J Stefanik,00610090, 0.0, 0.0, 8.7, 91.3, 0.0, 0.0, 0.0, 92.5, 7.5, 69.1 -1,1,a-pcom-i3,2018-19,Chicopee - Lambert-Lavoie,00610040, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 90.4, 9.6, 46.3 -1.6562499999999991,1.66,a-pcom-i3,2018-19,Chicopee - Litwin,00610022, 0.0, 1.8, 3.6, 94.7, 0.0, 0.0, 0.0, 94.3, 5.7, 56.3 -1,1,a-pcom-i3,2018-19,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 99.4, 0.6, 36.0 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 93.9, 6.1, 49.2 -2.093750000000001,2.09,a-pcom-i3,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 1.7, 0.0, 5.0, 93.3, 0.0, 0.0, 0.0, 70.8, 29.2, 60.0 -13.59375,5,a-pcom-i3,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 29.7, 4.6, 6.9, 56.5, 0.0, 0.0, 2.3, 63.4, 36.6, 43.7 -9.4375,5,a-pcom-i3,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 18.4, 4.7, 7.1, 69.8, 0.0, 0.0, 0.0, 62.2, 37.8, 42.4 -8.28125,5,a-pcom-i3,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 16.9, 2.4, 7.2, 73.5, 0.0, 0.0, 0.0, 63.9, 36.1, 41.5 -1,1,a-pcom-i3,2018-19,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.4, 13.6, 30.8 -1.5625,1.56,a-pcom-i3,2018-19,Clinton - Clinton Elementary,00640050, 0.0, 0.0, 3.5, 95.0, 0.0, 0.0, 1.5, 92.0, 8.0, 112.6 -2.562500000000001,2.56,a-pcom-i3,2018-19,Clinton - Clinton Middle School,00640305, 1.3, 1.3, 2.7, 91.8, 1.3, 0.0, 1.7, 82.9, 17.1, 77.6 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 3.4, 94.9, 0.0, 0.0, 1.7, 62.7, 37.3, 58.5 -16.21875,5,a-pcom-i3,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 44.6, 4.3, 1.4, 48.1, 0.0, 1.4, 0.0, 74.1, 25.9, 69.4 -1,1,a-pcom-i3,2018-19,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 65.6, 34.4, 103.2 -1,1,a-pcom-i3,2018-19,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 47.8 -1,1,a-pcom-i3,2018-19,Cohasset - Joseph Osgood,00650010, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 92.8, 7.2, 50.3 -7.1875,5,a-pcom-i3,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 4.1, 5.7, 11.8, 77.0, 0.0, 0.0, 1.5, 85.0, 15.0, 67.8 -15.249999999999998,5,a-pcom-i3,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 19.2, 3.7, 19.2, 51.2, 1.5, 0.0, 5.2, 62.2, 37.8, 67.6 -4.781249999999999,4.78,a-pcom-i3,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 0.0, 0.0, 14.6, 84.7, 0.0, 0.0, 0.6, 88.8, 11.2, 56.4 -7.406250000000001,5,a-pcom-i3,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 4.8, 1.6, 16.9, 76.3, 0.0, 0.0, 0.4, 77.6, 22.4, 63.1 -7.312500000000002,5,a-pcom-i3,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 0.0, 0.0, 21.2, 76.6, 0.0, 0.0, 2.2, 77.0, 23.0, 57.6 -2.406250000000001,2.41,a-pcom-i3,2018-19,Concord - Alcott,00670005, 2.6, 2.6, 2.6, 92.3, 0.0, 0.0, 0.0, 90.5, 8.2, 77.7 -2.9375000000000018,2.94,a-pcom-i3,2018-19,Concord - Concord Middle,00670305, 3.2, 4.1, 1.1, 90.6, 0.0, 1.1, 0.0, 74.4, 25.6, 93.1 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Concord - Thoreau,00670020, 1.4, 2.8, 0.0, 95.9, 0.0, 0.0, 0.0, 94.6, 5.4, 72.5 -2.34375,2.34,a-pcom-i3,2018-19,Concord - Willard,00670030, 1.3, 2.5, 3.7, 92.5, 0.0, 0.0, 0.0, 93.3, 6.7, 79.1 -1.71875,1.72,a-pcom-i3,2018-19,Concord-Carlisle - Concord Carlisle High,06400505, 1.2, 1.2, 3.2, 94.5, 0.0, 0.0, 0.0, 60.8, 39.2, 172.0 -14.187499999999998,5,a-pcom-i3,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 27.8, 1.5, 13.2, 54.6, 1.5, 0.0, 1.5, 63.7, 36.3, 68.3 -1,1,a-pcom-i3,2018-19,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 36.3 -1,1,a-pcom-i3,2018-19,Danvers - Danvers High,00710505, 0.0, 0.8, 1.7, 97.5, 0.0, 0.0, 0.0, 63.8, 36.2, 119.3 -1,1,a-pcom-i3,2018-19,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 41.4 -1,1,a-pcom-i3,2018-19,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 47.5 -1,1,a-pcom-i3,2018-19,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 1.0, 97.1, 0.0, 0.0, 1.0, 81.0, 19.0, 105.0 -1,1,a-pcom-i3,2018-19,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 38.4 -1,1,a-pcom-i3,2018-19,Danvers - Riverside,00710030, 0.0, 0.8, 1.5, 97.7, 0.0, 0.0, 0.0, 92.9, 7.1, 67.9 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 91.3, 8.7, 49.4 -1,1,a-pcom-i3,2018-19,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.7, 1.3, 26.0 -1,1,a-pcom-i3,2018-19,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 65.4, 34.6, 105.2 -1,1,a-pcom-i3,2018-19,Dartmouth - Dartmouth Middle,00720050, 0.9, 0.0, 0.0, 98.2, 0.0, 0.0, 0.9, 65.3, 34.7, 112.3 -1,1,a-pcom-i3,2018-19,Dartmouth - George H Potter,00720030, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 94.6, 5.4, 56.0 -1,1,a-pcom-i3,2018-19,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 91.3 -1,1,a-pcom-i3,2018-19,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 40.8 -1,1,a-pcom-i3,2018-19,Dedham - Avery,00730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 58.7 -2.4687500000000018,2.47,a-pcom-i3,2018-19,Dedham - Dedham High,00730505, 0.6, 3.1, 4.2, 92.1, 0.0, 0.0, 0.0, 71.8, 28.2, 96.3 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Dedham - Dedham Middle School,00730305, 3.1, 0.0, 2.1, 93.8, 0.0, 0.0, 1.0, 79.7, 20.3, 97.2 -1,1,a-pcom-i3,2018-19,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 98.2, 0.0, 0.0, 1.8, 98.2, 1.8, 56.6 -1,1,a-pcom-i3,2018-19,Dedham - Greenlodge,00730025, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 94.3, 5.7, 41.9 -1,1,a-pcom-i3,2018-19,Dedham - Oakdale,00730030, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 95.5, 4.5, 36.6 -1,1,a-pcom-i3,2018-19,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 35.2 -1,1,a-pcom-i3,2018-19,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 84.4 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 2.5, 0.0, 2.1, 94.6, 0.0, 0.0, 0.8, 64.0, 36.0, 121.4 -1,1,a-pcom-i3,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 94.4, 5.6, 68.4 -1,1,a-pcom-i3,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 53.1 -1.875,1.88,a-pcom-i3,2018-19,Dennis-Yarmouth - Mattacheese Middle School,06450305, 2.4, 0.0, 2.3, 94.0, 0.0, 0.0, 1.4, 80.9, 19.1, 72.6 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 0.0, 0.0, 2.7, 95.8, 0.0, 0.0, 1.5, 93.5, 6.5, 66.4 -1,1,a-pcom-i3,2018-19,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.9, 0.0, 1.7, 97.4, 0.0, 0.0, 0.0, 88.2, 11.8, 57.6 -1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Dighton Elementary,06500005, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 94.9, 5.1, 72.0 -1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Dighton Middle School,06500305, 0.4, 0.0, 0.0, 97.4, 0.0, 0.0, 2.2, 72.3, 27.7, 45.8 -1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.2, 0.0, 1.0, 97.9, 0.0, 0.0, 0.0, 64.9, 35.1, 104.2 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.3, 0.0, 2.9, 95.4, 0.0, 0.0, 1.4, 82.9, 17.1, 69.2 -1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Palmer River,06500010, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 96.9, 3.1, 70.5 -1,1,a-pcom-i3,2018-19,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.4, 10.6, 55.6 -1,1,a-pcom-i3,2018-19,Douglas - Douglas High School,00770505, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 67.2, 32.8, 63.5 -1,1,a-pcom-i3,2018-19,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.5, 15.5, 41.9 -1,1,a-pcom-i3,2018-19,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 34.3 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Dover - Chickering,00780005, 1.5, 0.0, 3.7, 94.8, 0.0, 0.0, 0.0, 91.1, 8.9, 81.7 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.3, 0.8, 3.6, 95.3, 0.0, 0.0, 0.0, 64.7, 35.3, 97.8 -2.718750000000001,2.72,a-pcom-i3,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 4.2, 1.3, 3.2, 91.3, 0.0, 0.0, 0.0, 77.4, 22.6, 77.9 -1,1,a-pcom-i3,2018-19,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 86.0, 14.0, 46.1 -1,1,a-pcom-i3,2018-19,Dracut - Dracut Senior High,00790505, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 64.6, 35.4, 92.9 -1,1,a-pcom-i3,2018-19,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 46.9 -1,1,a-pcom-i3,2018-19,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 28.8 -1,1,a-pcom-i3,2018-19,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.7, 0.0, 99.3, 0.0, 0.0, 0.0, 96.7, 3.3, 67.0 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Dracut - Justus C. Richardson Middle School,00790410, 1.1, 0.6, 1.7, 96.6, 0.0, 0.0, 0.0, 84.0, 16.0, 87.7 -18.34375,5,a-pcom-i3,2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 42.9, 0.0, 15.9, 41.3, 0.0, 0.0, 0.0, 93.7, 6.3, 31.5 -1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 48.7 -1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 73.2, 26.8, 74.6 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 2.5, 94.9, 2.5, 0.0, 0.0, 97.5, 2.5, 39.6 -1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 76.3, 23.7, 61.1 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 96.3, 0.0, 0.0, 3.7, 94.4, 5.6, 54.0 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 2.6, 94.9, 2.6, 0.0, 0.0, 94.9, 5.1, 39.1 -1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 56.2, 43.8, 95.4 -1,1,a-pcom-i3,2018-19,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 77.9 -1,1,a-pcom-i3,2018-19,Duxbury - Chandler Elementary,00820006, 0.0, 1.1, 1.1, 97.8, 0.0, 0.0, 0.0, 97.9, 2.1, 90.7 -1,1,a-pcom-i3,2018-19,Duxbury - Duxbury High,00820505, 1.6, 1.5, 0.0, 96.9, 0.0, 0.0, 0.0, 65.6, 34.4, 124.5 -1,1,a-pcom-i3,2018-19,Duxbury - Duxbury Middle,00820305, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 78.5, 21.5, 72.6 -1,1,a-pcom-i3,2018-19,East Bridgewater - Central,00830005, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 94.8, 5.2, 76.7 -1,1,a-pcom-i3,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 71.4, 28.6, 104.3 -1,1,a-pcom-i3,2018-19,East Bridgewater - Gordon W. Mitchell School,00830010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 81.5 -2.1562500000000018,2.16,a-pcom-i3,2018-19,East Longmeadow - Birchland Park,00870305, 4.1, 1.4, 1.4, 93.1, 0.0, 0.0, 0.0, 70.2, 29.8, 73.0 -2.9999999999999982,3.0,a-pcom-i3,2018-19,East Longmeadow - East Longmeadow High,00870505, 2.9, 1.8, 4.2, 90.4, 0.0, 0.0, 0.7, 65.3, 34.7, 87.1 -1,1,a-pcom-i3,2018-19,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 48.1 -1.9062499999999982,1.91,a-pcom-i3,2018-19,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 4.0, 93.9, 0.0, 0.0, 2.1, 96.8, 3.2, 94.4 -1.1874999999999991,1.19,a-pcom-i3,2018-19,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 89.6, 10.4, 48.0 -1,1,a-pcom-i3,2018-19,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 40.7 -1,1,a-pcom-i3,2018-19,Easthampton - Center School,00860005, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 89.3, 10.7, 26.7 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Easthampton - Easthampton High,00860505, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 63.1, 36.9, 50.4 -1,1,a-pcom-i3,2018-19,Easthampton - Maple,00860010, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 95.4, 4.6, 46.4 -1.4999999999999991,1.5,a-pcom-i3,2018-19,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 94.3, 5.7, 31.3 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Easthampton - White Brook Middle School,00860305, 1.8, 0.0, 0.0, 96.3, 0.0, 0.0, 1.8, 74.3, 25.7, 54.5 -1,1,a-pcom-i3,2018-19,Easton - Center School,00880003, 0.7, 0.0, 0.0, 99.3, 0.0, 0.0, 0.0, 95.1, 4.9, 39.4 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Easton - Easton Middle School,00880405, 0.0, 0.0, 2.9, 96.1, 0.0, 0.0, 1.0, 80.5, 19.5, 102.1 -1,1,a-pcom-i3,2018-19,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 32.6 -2.593749999999999,2.59,a-pcom-i3,2018-19,Easton - Oliver Ames High,00880505, 2.3, 1.5, 2.9, 91.7, 0.0, 0.0, 1.5, 61.9, 38.1, 130.1 -1,1,a-pcom-i3,2018-19,Easton - Parkview Elementary,00880015, 0.8, 0.0, 2.0, 97.2, 0.0, 0.0, 0.0, 93.7, 6.3, 49.3 -1,1,a-pcom-i3,2018-19,Easton - Richardson Olmsted School,00880025, 0.6, 0.0, 1.1, 97.2, 0.0, 0.0, 1.1, 91.4, 8.6, 93.6 -1.7812500000000009,1.78,a-pcom-i3,2018-19,Edgartown - Edgartown Elementary,00890005, 1.5, 0.0, 3.0, 94.3, 0.0, 0.0, 1.2, 83.6, 16.4, 82.2 -18.3125,5,a-pcom-i3,2018-19,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 42.0, 1.9, 10.7, 41.4, 0.0, 0.0, 3.9, 51.6, 48.4, 51.4 -1,1,a-pcom-i3,2018-19,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 97.5, 0.0, 0.0, 2.5, 88.8, 11.2, 40.3 -1,1,a-pcom-i3,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,08170505, 0.5, 1.1, 0.5, 97.9, 0.0, 0.0, 0.0, 58.7, 41.3, 187.6 -1,1,a-pcom-i3,2018-19,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 20.4 -6.781250000000001,5,a-pcom-i3,2018-19,Everett - Devens School,00930030, 9.3, 0.0, 9.3, 78.3, 0.0, 0.0, 3.1, 45.8, 54.2, 32.3 -4.656250000000002,4.66,a-pcom-i3,2018-19,Everett - Everett High,00930505, 4.4, 3.9, 4.9, 85.1, 0.4, 0.5, 0.8, 55.4, 44.6, 206.6 -2.906249999999999,2.91,a-pcom-i3,2018-19,Everett - George Keverian School,00930028, 3.0, 0.3, 4.5, 90.7, 0.0, 1.5, 0.0, 84.3, 15.7, 66.9 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Everett - Lafayette School,00930038, 2.4, 2.4, 2.4, 92.9, 0.0, 0.0, 0.0, 83.5, 16.5, 85.1 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Everett - Madeline English School,00930018, 0.0, 2.0, 2.2, 95.9, 0.0, 0.0, 0.0, 89.6, 10.4, 82.0 -1.40625,1.41,a-pcom-i3,2018-19,Everett - Parlin School,00930058, 0.0, 1.7, 2.8, 95.5, 0.0, 0.0, 0.0, 84.1, 15.9, 71.5 -3.28125,3.28,a-pcom-i3,2018-19,Everett - Sumner G. Whittier School,00930010, 7.0, 0.0, 3.5, 89.5, 0.0, 0.0, 0.0, 88.0, 12.0, 57.2 -2.6250000000000018,2.63,a-pcom-i3,2018-19,Everett - Webster School,00930015, 0.0, 2.1, 6.3, 91.6, 0.0, 0.0, 0.0, 94.0, 6.0, 94.9 -7.03125,5,a-pcom-i3,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 4.2, 0.8, 17.0, 77.5, 0.0, 0.0, 0.6, 75.0, 25.0, 180.6 -1,1,a-pcom-i3,2018-19,Fairhaven - East Fairhaven,00940010, 0.5, 0.0, 0.0, 99.5, 0.0, 0.0, 0.0, 96.6, 3.4, 51.8 -1,1,a-pcom-i3,2018-19,Fairhaven - Fairhaven High,00940505, 1.6, 0.0, 0.0, 97.1, 0.0, 0.0, 1.3, 60.0, 40.0, 78.4 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Fairhaven - Hastings Middle,00940305, 0.5, 0.0, 0.0, 95.3, 0.0, 0.0, 4.2, 71.9, 28.1, 53.3 -1,1,a-pcom-i3,2018-19,Fairhaven - Leroy Wood,00940030, 0.5, 0.0, 0.0, 99.5, 0.0, 0.0, 0.0, 93.1, 6.9, 54.5 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Fall River - B M C Durfee High,00950505, 2.5, 1.2, 2.7, 92.4, 0.0, 0.0, 1.2, 64.1, 35.9, 257.2 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Fall River - Carlton M. Viveiros Elementary School,00950009, 1.3, 0.0, 2.1, 96.6, 0.0, 0.0, 0.0, 86.2, 13.8, 76.6 -2.9999999999999982,3.0,a-pcom-i3,2018-19,Fall River - Henry Lord Community School,00950017, 1.1, 0.0, 7.5, 90.4, 0.0, 0.0, 1.1, 89.4, 10.6, 93.8 -2.1875,2.19,a-pcom-i3,2018-19,Fall River - James Tansey,00950140, 0.0, 0.0, 3.5, 93.0, 0.0, 0.0, 3.5, 87.7, 12.3, 28.4 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Fall River - John J Doran,00950045, 0.0, 0.0, 4.4, 94.1, 0.0, 0.0, 1.5, 84.9, 15.1, 68.3 -3.218749999999999,3.22,a-pcom-i3,2018-19,Fall River - Letourneau Elementary School,00950013, 7.1, 1.6, 1.6, 89.7, 0.0, 0.0, 0.0, 89.7, 10.3, 63.0 -2.6874999999999982,2.69,a-pcom-i3,2018-19,Fall River - Mary Fonseca Elementary School,00950011, 1.2, 0.0, 4.9, 91.4, 0.0, 0.0, 2.5, 91.4, 8.6, 81.0 -2.3125000000000018,2.31,a-pcom-i3,2018-19,Fall River - Matthew J Kuss Middle,00950320, 2.3, 1.2, 1.2, 92.6, 0.0, 0.0, 2.8, 67.0, 33.0, 85.9 -3.218749999999999,3.22,a-pcom-i3,2018-19,Fall River - Morton Middle,00950315, 0.0, 5.1, 5.1, 89.7, 0.0, 0.0, 0.0, 84.4, 15.6, 78.0 -1,1,a-pcom-i3,2018-19,Fall River - North End Elementary,00950005, 1.2, 1.2, 0.0, 97.6, 0.0, 0.0, 0.0, 90.2, 9.8, 82.8 -3.4687499999999982,3.47,a-pcom-i3,2018-19,Fall River - Resiliency Preparatory Academy,00950525, 6.1, 0.0, 2.8, 88.9, 0.0, 0.0, 2.2, 41.9, 58.1, 36.2 -1,1,a-pcom-i3,2018-19,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 32.6 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Fall River - Spencer Borden,00950130, 1.2, 0.0, 1.2, 96.4, 0.0, 0.0, 1.2, 90.5, 9.5, 83.9 -3.2500000000000018,3.25,a-pcom-i3,2018-19,Fall River - Stone PK-12 School,00950340, 6.8, 0.0, 0.0, 89.6, 0.0, 0.0, 3.6, 67.7, 32.3, 27.9 -3.187500000000001,3.19,a-pcom-i3,2018-19,Fall River - Talbot Innovation School,00950305, 2.9, 0.0, 7.3, 89.8, 0.0, 0.0, 0.0, 75.6, 24.4, 68.5 -1,1,a-pcom-i3,2018-19,Fall River - William S Greene,00950065, 0.0, 1.2, 1.2, 97.7, 0.0, 0.0, 0.0, 96.5, 3.5, 86.4 -2.5,2.5,a-pcom-i3,2018-19,Falmouth - East Falmouth Elementary,00960005, 6.0, 0.0, 0.0, 92.0, 0.0, 0.0, 2.0, 84.9, 15.1, 49.8 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Falmouth - Falmouth High,00960505, 1.9, 0.9, 1.9, 95.3, 0.0, 0.0, 0.0, 63.7, 36.3, 107.9 -2.562500000000001,2.56,a-pcom-i3,2018-19,Falmouth - Lawrence,00960405, 5.7, 2.5, 0.0, 91.8, 0.0, 0.0, 0.0, 80.4, 19.6, 79.1 -1,1,a-pcom-i3,2018-19,Falmouth - Morse Pond School,00960305, 1.4, 0.0, 0.0, 97.3, 0.0, 0.0, 1.4, 87.1, 12.9, 73.6 -1,1,a-pcom-i3,2018-19,Falmouth - Mullen-Hall,00960020, 0.8, 0.0, 1.6, 97.5, 0.0, 0.0, 0.0, 92.6, 7.4, 61.1 -1.875,1.88,a-pcom-i3,2018-19,Falmouth - North Falmouth Elementary,00960030, 4.0, 0.0, 2.0, 94.0, 0.0, 0.0, 0.0, 89.0, 11.0, 50.3 -2.5312499999999982,2.53,a-pcom-i3,2018-19,Falmouth - Teaticket,00960015, 4.9, 0.0, 1.6, 91.9, 0.0, 0.0, 1.6, 96.7, 3.3, 61.8 -1,1,a-pcom-i3,2018-19,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 25.9 -4.624999999999999,4.62,a-pcom-i3,2018-19,Fitchburg - Arthur M Longsjo Middle School,00970315, 2.5, 0.0, 9.8, 85.2, 0.0, 0.0, 2.5, 68.0, 32.0, 81.3 -1.875,1.88,a-pcom-i3,2018-19,Fitchburg - Crocker Elementary,00970016, 3.0, 0.0, 3.0, 94.0, 0.0, 0.0, 0.0, 94.0, 6.0, 66.2 -5.406249999999999,5,a-pcom-i3,2018-19,Fitchburg - Fitchburg High,00970505, 3.1, 0.8, 12.7, 82.7, 0.0, 0.0, 0.8, 62.3, 37.7, 130.9 -8.28125,5,a-pcom-i3,2018-19,Fitchburg - Goodrich Academy,00970510, 6.6, 0.0, 13.2, 73.5, 0.0, 0.0, 6.6, 80.1, 19.9, 15.1 -3.9374999999999982,3.94,a-pcom-i3,2018-19,Fitchburg - McKay Arts Academy,00970340, 1.0, 0.0, 11.5, 87.4, 0.0, 0.0, 0.0, 84.3, 15.7, 95.4 -2.4687500000000018,2.47,a-pcom-i3,2018-19,Fitchburg - Memorial Middle School,00970048, 4.1, 0.0, 3.8, 92.1, 0.0, 0.0, 0.0, 78.4, 21.6, 73.8 -2.5312499999999982,2.53,a-pcom-i3,2018-19,Fitchburg - Reingold Elementary,00970043, 1.4, 1.4, 4.1, 91.9, 0.0, 0.0, 1.4, 89.1, 10.9, 73.8 -1.875,1.88,a-pcom-i3,2018-19,Fitchburg - South Street Elementary,00970060, 1.0, 0.0, 5.0, 94.0, 0.0, 0.0, 0.0, 90.9, 9.1, 99.2 -1,1,a-pcom-i3,2018-19,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.9, 12.1, 21.5 -1.9062499999999982,1.91,a-pcom-i3,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 3.0, 3.1, 93.9, 0.0, 0.0, 0.0, 73.7, 26.3, 32.2 -1,1,a-pcom-i3,2018-19,Foxborough - Charles Taylor Elementary,00990050, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 96.8, 3.2, 31.6 -1,1,a-pcom-i3,2018-19,Foxborough - Foxborough High,00990505, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 66.5, 33.5, 106.9 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Foxborough - John J Ahern,00990405, 0.0, 3.7, 0.0, 96.3, 0.0, 0.0, 0.0, 81.1, 18.9, 108.3 -1,1,a-pcom-i3,2018-19,Foxborough - Mabelle M Burrell,00990015, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 97.6, 2.4, 42.0 -1,1,a-pcom-i3,2018-19,Foxborough - Vincent M Igo Elementary,00990020, 1.9, 0.0, 0.5, 97.6, 0.0, 0.0, 0.0, 93.4, 6.6, 53.2 -3.343750000000001,3.34,a-pcom-i3,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 3.5, 0.6, 6.6, 89.3, 0.0, 0.0, 0.0, 78.9, 21.1, 173.5 -11.343749999999998,5,a-pcom-i3,2018-19,Framingham - Barbieri Elementary,01000035, 0.0, 1.1, 35.3, 63.7, 0.0, 0.0, 0.0, 92.3, 7.7, 93.0 -6.25,5,a-pcom-i3,2018-19,Framingham - Brophy,01000006, 0.0, 0.0, 20.0, 80.0, 0.0, 0.0, 0.0, 93.4, 6.6, 70.1 -4.031250000000002,4.03,a-pcom-i3,2018-19,Framingham - Cameron Middle School,01000302, 4.9, 1.2, 6.8, 87.1, 0.0, 0.0, 0.0, 78.0, 22.0, 82.1 -1.71875,1.72,a-pcom-i3,2018-19,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 5.5, 94.5, 0.0, 0.0, 0.0, 90.3, 9.7, 72.1 -3.59375,3.59,a-pcom-i3,2018-19,Framingham - Framingham High School,01000515, 2.4, 1.7, 7.4, 88.5, 0.0, 0.0, 0.0, 70.8, 29.2, 230.2 -3.6249999999999982,3.62,a-pcom-i3,2018-19,Framingham - Fuller Middle,01000305, 2.9, 0.0, 8.7, 88.4, 0.0, 0.0, 0.0, 75.4, 24.6, 77.2 -3.6249999999999982,3.62,a-pcom-i3,2018-19,Framingham - Hemenway,01000015, 1.3, 1.3, 8.9, 88.4, 0.0, 0.0, 0.0, 94.5, 5.5, 74.9 -6.71875,5,a-pcom-i3,2018-19,Framingham - Juniper Hill School,01000001, 1.0, 3.3, 17.3, 78.5, 0.0, 0.0, 0.0, 95.1, 4.9, 61.4 -3.687499999999999,3.69,a-pcom-i3,2018-19,Framingham - King Elementary School,01000005, 4.4, 1.3, 4.7, 88.2, 0.0, 0.0, 1.4, 85.0, 15.0, 45.8 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Framingham - Mary E Stapleton Elementary,01000045, 1.5, 0.0, 2.9, 95.6, 0.0, 0.0, 0.0, 88.0, 12.0, 68.4 -3.4375,3.44,a-pcom-i3,2018-19,Framingham - Miriam F McCarthy School,01000050, 1.2, 5.8, 4.1, 89.0, 0.0, 0.0, 0.0, 94.0, 6.0, 86.0 -5.031249999999998,5,a-pcom-i3,2018-19,Framingham - Potter Road,01000039, 1.7, 0.8, 13.6, 83.9, 0.0, 0.0, 0.0, 92.8, 7.2, 58.9 -4.21875,4.22,a-pcom-i3,2018-19,Framingham - Walsh Middle,01000310, 2.5, 1.3, 9.7, 86.5, 0.0, 0.0, 0.0, 79.1, 20.9, 96.8 -2.250000000000001,2.25,a-pcom-i3,2018-19,Framingham - Woodrow Wilson,01000055, 0.0, 1.3, 5.9, 92.8, 0.0, 0.0, 0.0, 92.6, 7.4, 76.5 -4.968750000000002,4.97,a-pcom-i3,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 4.8, 0.0, 6.3, 84.1, 0.0, 0.0, 4.8, 65.1, 34.9, 63.1 -1,1,a-pcom-i3,2018-19,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.9, 15.1, 52.8 -1,1,a-pcom-i3,2018-19,Franklin - Davis Thayer,01010035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 37.0 -2.3125000000000018,2.31,a-pcom-i3,2018-19,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 7.4, 0.0, 92.6, 0.0, 0.0, 0.0, 100.0, 0.0, 26.9 -1,1,a-pcom-i3,2018-19,Franklin - Franklin High,01010505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 68.6, 31.4, 178.6 -1,1,a-pcom-i3,2018-19,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 51.5 -1,1,a-pcom-i3,2018-19,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.3, 18.7, 58.8 -1.40625,1.41,a-pcom-i3,2018-19,Franklin - J F Kennedy Memorial,01010013, 0.0, 2.2, 2.2, 95.5, 0.0, 0.0, 0.0, 96.6, 3.4, 44.5 -1,1,a-pcom-i3,2018-19,Franklin - Jefferson Elementary,01010010, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 98.9, 1.1, 46.5 -1,1,a-pcom-i3,2018-19,Franklin - Oak Street Elementary,01010030, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 95.4, 4.6, 50.4 -1,1,a-pcom-i3,2018-19,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 47.4 -1,1,a-pcom-i3,2018-19,Franklin - Remington Middle,01010310, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 75.9, 24.1, 58.2 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.3, 0.0, 0.7, 96.7, 0.0, 0.0, 1.3, 39.1, 60.9, 76.7 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 64.2, 35.8, 90.6 -1,1,a-pcom-i3,2018-19,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 46.9 -1,1,a-pcom-i3,2018-19,Freetown-Lakeville - Freetown Elementary School,06650001, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 98.2, 1.8, 54.9 -1,1,a-pcom-i3,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 74.6, 25.4, 82.6 -1,1,a-pcom-i3,2018-19,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 47.9 -1,1,a-pcom-i3,2018-19,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 97.0, 2.0, 0.0, 1.1, 69.6, 30.4, 101.8 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Gardner - Elm Street School,01030001, 0.0, 0.0, 1.4, 95.8, 0.0, 0.0, 2.8, 89.5, 10.5, 71.4 -1.40625,1.41,a-pcom-i3,2018-19,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 95.5, 0.0, 0.0, 4.5, 50.0, 50.0, 11.0 -3.968750000000001,3.97,a-pcom-i3,2018-19,Gardner - Gardner High,01030505, 2.5, 5.1, 3.8, 87.3, 0.0, 0.0, 1.3, 65.9, 34.1, 79.1 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Gardner - Gardner Middle School,01030405, 1.4, 1.4, 1.4, 93.8, 0.0, 0.0, 1.9, 73.0, 27.0, 69.4 -1,1,a-pcom-i3,2018-19,Gardner - Waterford Street,01030020, 1.2, 0.0, 1.2, 97.7, 0.0, 0.0, 0.0, 85.6, 14.4, 86.7 -1,1,a-pcom-i3,2018-19,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 24.9 -1.40625,1.41,a-pcom-i3,2018-19,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 95.5, 0.0, 2.2, 2.2, 72.9, 27.1, 44.7 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 96.6, 0.0, 0.0, 3.4, 78.3, 21.7, 29.5 -1,1,a-pcom-i3,2018-19,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 43.7 -1,1,a-pcom-i3,2018-19,Georgetown - Georgetown High School,01050505, 0.0, 0.3, 1.7, 96.9, 0.0, 1.0, 0.0, 67.9, 32.1, 58.6 -1.9062499999999982,1.91,a-pcom-i3,2018-19,Georgetown - Georgetown Middle School,01050305, 0.0, 4.4, 0.0, 93.9, 0.0, 1.7, 0.0, 78.2, 21.8, 22.9 -1,1,a-pcom-i3,2018-19,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 76.4 -1,1,a-pcom-i3,2018-19,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.7 -1,1,a-pcom-i3,2018-19,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 87.9, 12.1, 17.9 -1,1,a-pcom-i3,2018-19,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.5, 32.5, 31.4 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 3.0, 95.8, 0.0, 0.0, 1.2, 96.4, 3.6, 33.5 -1,1,a-pcom-i3,2018-19,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 99.1, 0.0, 0.0, 0.9, 86.2, 13.8, 43.6 -1,1,a-pcom-i3,2018-19,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 72.7, 27.3, 43.3 -3.7187500000000018,3.72,a-pcom-i3,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 7.3, 1.3, 3.3, 88.1, 0.0, 0.0, 0.0, 73.8, 26.2, 61.4 -1,1,a-pcom-i3,2018-19,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 53.7 -1,1,a-pcom-i3,2018-19,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 42.2 -1,1,a-pcom-i3,2018-19,Gloucester - Gloucester High,01070505, 0.9, 0.0, 0.9, 98.2, 0.0, 0.0, 0.0, 57.9, 42.1, 111.5 -1,1,a-pcom-i3,2018-19,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 26.1 -1,1,a-pcom-i3,2018-19,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 39.1 -1,1,a-pcom-i3,2018-19,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.8, 24.2, 86.9 -1,1,a-pcom-i3,2018-19,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 45.8 -1,1,a-pcom-i3,2018-19,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 52.0 -1,1,a-pcom-i3,2018-19,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 1.1 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Grafton - Grafton High School,01100505, 0.9, 1.8, 0.9, 96.3, 0.0, 0.0, 0.1, 70.0, 30.0, 110.0 -1,1,a-pcom-i3,2018-19,Grafton - Grafton Middle,01100305, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 70.9, 29.1, 65.9 -1,1,a-pcom-i3,2018-19,Grafton - Millbury Street Elementary School,01100200, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 94.5, 5.5, 94.0 -1,1,a-pcom-i3,2018-19,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 45.2 -1,1,a-pcom-i3,2018-19,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 93.6, 6.4, 75.6 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Grafton - South Grafton Elementary,01100005, 2.7, 0.0, 0.0, 95.9, 1.4, 0.0, 0.0, 93.9, 6.1, 58.9 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Granby - East Meadow,01110004, 1.7, 1.7, 0.0, 96.6, 0.0, 0.0, 0.0, 88.1, 11.9, 59.6 -2.0000000000000018,2.0,a-pcom-i3,2018-19,Granby - Granby Jr Sr High School,01110505, 0.0, 2.1, 2.1, 93.6, 0.0, 0.0, 2.1, 69.6, 30.4, 46.9 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 2.1, 0.0, 1.2, 96.1, 0.6, 0.0, 0.0, 46.0, 54.0, 165.3 -4.593750000000001,4.59,a-pcom-i3,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 1.0, 0.5, 12.7, 85.3, 0.0, 0.0, 0.5, 58.0, 42.0, 203.3 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.8, 2.1, 2.8, 92.9, 0.4, 0.0, 0.0, 62.5, 37.5, 282.8 -1.8124999999999991,1.81,a-pcom-i3,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 2.2, 0.4, 2.5, 94.2, 0.7, 0.0, 0.0, 52.7, 47.3, 275.2 -1,1,a-pcom-i3,2018-19,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 93.3, 6.7, 49.5 -1,1,a-pcom-i3,2018-19,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 43.0 -1,1,a-pcom-i3,2018-19,Greenfield - Greenfield High,01140505, 0.0, 1.2, 1.2, 97.6, 0.0, 0.0, 0.0, 65.8, 34.2, 84.2 -1,1,a-pcom-i3,2018-19,Greenfield - Greenfield Middle,01140305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.8, 23.2, 67.3 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Greenfield - Newton School,01140035, 0.0, 2.6, 2.6, 94.9, 0.0, 0.0, 0.0, 91.0, 9.0, 39.1 -1,1,a-pcom-i3,2018-19,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.9, 0.1, 27.9 -2.250000000000001,2.25,a-pcom-i3,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900, 0.0, 4.8, 2.4, 92.8, 0.0, 0.0, 0.0, 65.7, 34.3, 41.8 -1,1,a-pcom-i3,2018-19,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 17.0 -1,1,a-pcom-i3,2018-19,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 93.6, 6.4, 62.1 -1,1,a-pcom-i3,2018-19,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.8, 34.2, 81.9 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 0.0, 1.1, 96.8, 1.1, 0.0, 1.1, 84.9, 15.1, 93.0 -1,1,a-pcom-i3,2018-19,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 49.5 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Hadley - Hadley Elementary,01170015, 1.9, 1.9, 0.0, 96.2, 0.0, 0.0, 0.0, 90.5, 9.5, 52.7 -1,1,a-pcom-i3,2018-19,Hadley - Hopkins Academy,01170505, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 69.4, 30.6, 37.9 -1,1,a-pcom-i3,2018-19,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 63.3 -1,1,a-pcom-i3,2018-19,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 97.2, 0.0, 0.0, 2.8, 92.5, 7.5, 35.9 -1,1,a-pcom-i3,2018-19,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 94.3, 5.7, 42.1 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 1.4, 1.4, 93.8, 0.0, 0.0, 3.4, 62.2, 37.8, 72.9 -3.0937500000000018,3.09,a-pcom-i3,2018-19,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.9, 3.6, 90.1, 0.0, 0.0, 3.5, 85.7, 14.3, 55.9 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Hamilton-Wenham - Winthrop School,06750015, 0.0, 1.7, 0.0, 96.6, 0.0, 0.0, 1.7, 94.5, 5.5, 58.0 -3.687499999999999,3.69,a-pcom-i3,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 3.5, 4.9, 3.5, 88.2, 0.0, 0.0, 0.0, 55.7, 44.3, 57.6 -6.062500000000002,5,a-pcom-i3,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305, 16.1, 3.2, 0.0, 80.6, 0.0, 0.0, 0.0, 59.0, 41.0, 31.0 -1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Green Meadows Elementary,06800005, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 93.9, 6.1, 58.7 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.8, 0.0, 1.8, 96.3, 0.0, 0.0, 0.0, 98.2, 1.8, 54.1 -1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 66.5, 33.5, 113.3 -1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 38.8 -1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 38.7 -1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.8, 25.2, 71.4 -1,1,a-pcom-i3,2018-19,Hampshire - Hampshire Regional High,06830505, 0.9, 0.9, 0.0, 98.2, 0.0, 0.0, 0.0, 68.9, 31.1, 109.2 -2.124999999999999,2.12,a-pcom-i3,2018-19,Hancock - Hancock Elementary,01210005, 6.8, 0.0, 0.0, 93.2, 0.0, 0.0, 0.0, 85.5, 14.5, 11.7 -1,1,a-pcom-i3,2018-19,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 60.5 -1.9687499999999991,1.97,a-pcom-i3,2018-19,Hanover - Center Elementary,01220005, 0.0, 4.2, 2.1, 93.7, 0.0, 0.0, 0.0, 97.7, 2.3, 47.8 -1,1,a-pcom-i3,2018-19,Hanover - Hanover High,01220505, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 66.1, 33.9, 92.6 -1,1,a-pcom-i3,2018-19,Hanover - Hanover Middle,01220305, 1.0, 0.0, 1.0, 98.0, 0.0, 0.0, 0.0, 78.7, 21.3, 100.8 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Hanover - Sylvester,01220015, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 83.4, 16.6, 23.6 -1,1,a-pcom-i3,2018-19,Harvard - Bromfield,01250505, 0.0, 0.0, 1.4, 97.3, 0.0, 1.4, 0.0, 72.2, 27.8, 73.7 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Harvard - Hildreth Elementary School,01250005, 1.8, 2.7, 1.8, 93.8, 0.0, 0.0, 0.0, 89.3, 10.7, 56.2 -1,1,a-pcom-i3,2018-19,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 39.2 -1,1,a-pcom-i3,2018-19,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.8, 25.2, 34.1 -1,1,a-pcom-i3,2018-19,Haverhill - Bradford Elementary,01280008, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 94.5, 5.5, 67.3 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 85.1, 14.9, 101.3 -2.406250000000001,2.41,a-pcom-i3,2018-19,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 7.7, 92.3, 0.0, 0.0, 0.0, 88.5, 11.5, 13.0 -1,1,a-pcom-i3,2018-19,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 81.0, 19.0, 76.3 -1.7499999999999982,1.75,a-pcom-i3,2018-19,Haverhill - Crowell,01280020, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 97.2, 2.8, 14.4 -1.71875,1.72,a-pcom-i3,2018-19,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.4, 4.1, 94.5, 0.0, 0.0, 0.0, 81.9, 18.1, 72.6 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Haverhill - Golden Hill,01280026, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 92.9, 7.1, 72.3 -1,1,a-pcom-i3,2018-19,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 15.4 -3.374999999999999,3.37,a-pcom-i3,2018-19,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 10.8, 89.2, 0.0, 0.0, 0.0, 56.8, 43.2, 18.5 -2.8125,2.81,a-pcom-i3,2018-19,Haverhill - Haverhill High,01280505, 1.4, 1.9, 5.7, 91.0, 0.0, 0.0, 0.0, 65.5, 34.5, 210.6 -1.6562499999999991,1.66,a-pcom-i3,2018-19,Haverhill - John G Whittier,01280085, 2.1, 0.0, 3.2, 94.7, 0.0, 0.0, 0.0, 78.3, 21.7, 46.7 -2.34375,2.34,a-pcom-i3,2018-19,Haverhill - Moody,01280045, 2.5, 2.5, 2.5, 92.5, 0.0, 0.0, 0.0, 100.0, 0.0, 40.0 -1.09375,1.09,a-pcom-i3,2018-19,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 95.8, 4.2, 72.4 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Haverhill - Silver Hill Elementary School,01280067, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 92.5, 7.5, 54.8 -2.8125,2.81,a-pcom-i3,2018-19,Haverhill - TEACH,01280073, 3.5, 5.5, 0.0, 91.0, 0.0, 0.0, 0.0, 79.2, 20.8, 28.9 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Haverhill - Tilton,01280075, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 94.6, 5.4, 74.1 -1,1,a-pcom-i3,2018-19,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 11.8 -1,1,a-pcom-i3,2018-19,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 30.6 -27.218749999999996,5,a-pcom-i3,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 69.4, 6.5, 11.3, 12.9, 0.0, 0.0, 0.0, 67.7, 32.3, 31.0 -1.40625,1.41,a-pcom-i3,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 0.0, 2.3, 95.5, 0.0, 0.0, 2.3, 86.4, 13.6, 44.0 -2.65625,2.66,a-pcom-i3,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 6.6, 91.5, 0.0, 0.0, 1.9, 79.4, 20.6, 39.4 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Hingham - East Elementary School,01310005, 1.3, 0.0, 1.3, 96.1, 0.0, 0.0, 1.3, 92.8, 7.2, 77.4 -1,1,a-pcom-i3,2018-19,Hingham - Hingham High,01310505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 68.2, 31.8, 138.7 -1,1,a-pcom-i3,2018-19,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.6, 97.6, 0.0, 0.0, 0.8, 79.1, 20.9, 123.5 -1,1,a-pcom-i3,2018-19,Hingham - Plymouth River,01310019, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 93.1, 6.9, 62.5 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Hingham - South Elementary,01310020, 1.4, 2.9, 0.0, 95.7, 0.0, 0.0, 0.0, 96.1, 3.9, 68.3 -1,1,a-pcom-i3,2018-19,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 93.9, 6.1, 59.5 -1,1,a-pcom-i3,2018-19,Holbrook - Holbrook Middle High School,01330505, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 64.8, 35.2, 62.4 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Holbrook - John F Kennedy,01330018, 4.1, 0.0, 0.0, 95.9, 0.0, 0.0, 0.0, 98.6, 1.4, 74.0 -1,1,a-pcom-i3,2018-19,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 33.5 -1,1,a-pcom-i3,2018-19,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 67.9, 32.1, 101.2 -1.71875,1.72,a-pcom-i3,2018-19,Holliston - Miller School,01360007, 1.1, 1.1, 1.1, 94.5, 1.1, 0.0, 1.1, 94.1, 5.9, 92.2 -1,1,a-pcom-i3,2018-19,Holliston - Placentino Elementary,01360010, 0.0, 0.9, 0.4, 98.7, 0.0, 0.0, 0.0, 95.8, 4.2, 108.0 -1,1,a-pcom-i3,2018-19,Holliston - Robert H. Adams Middle School,01360305, 1.0, 0.0, 1.0, 97.9, 0.0, 0.0, 0.0, 85.9, 14.1, 96.7 -11.71875,5,a-pcom-i3,2018-19,Holyoke - E N White Elementary,01370045, 3.1, 0.0, 34.4, 62.5, 0.0, 0.0, 0.0, 95.3, 4.7, 63.9 -9.468749999999998,5,a-pcom-i3,2018-19,Holyoke - H.B. Lawrence School,01370070, 5.3, 0.0, 25.0, 69.7, 0.0, 0.0, 0.0, 92.1, 7.9, 37.9 -8.90625,5,a-pcom-i3,2018-19,Holyoke - Holyoke High,01370505, 3.8, 1.1, 23.5, 71.5, 0.0, 0.0, 0.0, 61.5, 38.5, 181.9 -12.906249999999998,5,a-pcom-i3,2018-19,Holyoke - Holyoke STEM Academy,01370320, 9.5, 3.2, 28.6, 58.7, 0.0, 0.0, 0.0, 68.3, 31.7, 31.5 -11.40625,5,a-pcom-i3,2018-19,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 36.5, 63.5, 0.0, 0.0, 0.0, 93.0, 7.0, 35.6 -14.25,5,a-pcom-i3,2018-19,Holyoke - Kelly Elementary,01370040, 7.0, 0.0, 38.6, 54.4, 0.0, 0.0, 0.0, 84.3, 15.7, 57.0 -9.093749999999998,5,a-pcom-i3,2018-19,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.7, 1.3, 25.1, 70.9, 0.0, 0.0, 0.0, 79.6, 20.4, 74.8 -6.5625,5,a-pcom-i3,2018-19,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 0.0, 21.0, 79.0, 0.0, 0.0, 0.0, 93.6, 6.4, 62.0 -12.749999999999998,5,a-pcom-i3,2018-19,Holyoke - Maurice A Donahue Elementary,01370060, 6.5, 0.0, 34.3, 59.2, 0.0, 0.0, 0.0, 83.2, 16.8, 91.9 -8.125,5,a-pcom-i3,2018-19,Holyoke - Morgan Full Service Community School,01370025, 7.4, 0.0, 16.1, 74.0, 0.0, 0.0, 2.5, 90.1, 9.9, 40.4 -20.0,5,a-pcom-i3,2018-19,Holyoke - Veritas Prep Holyoke,01370075, 24.3, 3.2, 28.0, 36.0, 8.5, 0.0, 0.0, 78.6, 21.4, 20.6 -14.031249999999998,5,a-pcom-i3,2018-19,Holyoke - William R. Peck School,01370030, 7.5, 1.9, 33.7, 55.1, 0.0, 0.0, 1.9, 66.1, 33.9, 53.5 -12.875,5,a-pcom-i3,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 4.3, 0.0, 36.9, 58.8, 0.0, 0.0, 0.0, 75.9, 24.1, 93.6 -1,1,a-pcom-i3,2018-19,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 0.0, 99.4, 0.0, 0.6, 0.0, 78.3, 21.7, 68.8 -1,1,a-pcom-i3,2018-19,Hopedale - Memorial,01380010, 0.0, 1.2, 1.2, 97.5, 0.0, 0.0, 0.0, 96.2, 3.8, 81.5 -1,1,a-pcom-i3,2018-19,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.6 -1,1,a-pcom-i3,2018-19,Hopkinton - Elmwood,01390010, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 89.3, 10.7, 63.8 -1,1,a-pcom-i3,2018-19,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 91.3, 8.7, 58.0 -1,1,a-pcom-i3,2018-19,Hopkinton - Hopkinton High,01390505, 0.0, 1.2, 1.7, 97.2, 0.0, 0.0, 0.0, 63.6, 36.4, 120.6 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Hopkinton - Hopkinton Middle School,01390305, 0.0, 2.0, 2.2, 95.8, 0.0, 0.0, 0.0, 79.2, 20.8, 89.7 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Hopkinton - Hopkinton Pre-School,01390003, 5.2, 0.0, 0.0, 94.8, 0.0, 0.0, 0.0, 100.0, 0.0, 17.4 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Hopkinton - Marathon Elementary School,01390005, 0.0, 2.8, 1.4, 95.8, 0.0, 0.0, 0.0, 94.4, 5.6, 72.1 -1,1,a-pcom-i3,2018-19,Hudson - C A Farley,01410030, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 95.5, 4.5, 67.3 -1,1,a-pcom-i3,2018-19,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 85.1 -1,1,a-pcom-i3,2018-19,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 47.9 -1,1,a-pcom-i3,2018-19,Hudson - Hudson High,01410505, 0.8, 0.8, 0.0, 98.5, 0.0, 0.0, 0.0, 77.2, 22.8, 131.8 -1,1,a-pcom-i3,2018-19,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 53.9 -1,1,a-pcom-i3,2018-19,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.0, 39.0, 47.1 -1,1,a-pcom-i3,2018-19,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 59.4 -1,1,a-pcom-i3,2018-19,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.3, 19.7, 32.1 -2.906249999999999,2.91,a-pcom-i3,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 1.0, 4.4, 4.0, 90.7, 0.0, 0.0, 0.0, 74.7, 25.3, 100.8 -1,1,a-pcom-i3,2018-19,Ipswich - Ipswich High,01440505, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 69.6, 30.4, 75.2 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 74.7, 25.3, 58.2 -1,1,a-pcom-i3,2018-19,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 93.0, 7.0, 70.4 -1,1,a-pcom-i3,2018-19,Ipswich - Winthrop,01440015, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 90.9, 9.1, 64.3 -18.28125,5,a-pcom-i3,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 32.7, 3.0, 18.2, 41.5, 1.5, 0.0, 3.0, 76.3, 23.7, 65.8 -11.90625,5,a-pcom-i3,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 17.3, 6.4, 13.1, 61.9, 0.0, 0.0, 1.3, 72.5, 27.5, 156.2 -1.1249999999999982,1.12,a-pcom-i3,2018-19,King Philip - King Philip Middle School,06900510, 1.2, 0.0, 2.4, 96.4, 0.0, 0.0, 0.0, 84.6, 15.4, 84.5 -1,1,a-pcom-i3,2018-19,King Philip - King Philip Regional High,06900505, 0.0, 0.8, 1.5, 97.7, 0.0, 0.0, 0.0, 67.4, 32.6, 130.1 -1,1,a-pcom-i3,2018-19,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 61.1 -1,1,a-pcom-i3,2018-19,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.2, 13.8, 68.8 -4.249999999999998,4.25,a-pcom-i3,2018-19,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 11.9, 86.4, 1.7, 0.0, 0.0, 73.0, 27.0, 59.4 -5.906250000000002,5,a-pcom-i3,2018-19,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 18.9, 81.1, 0.0, 0.0, 0.0, 64.9, 35.1, 57.1 -4.468749999999999,4.47,a-pcom-i3,2018-19,Lawrence - Community Day Arlington,01490009, 0.0, 1.3, 13.0, 85.7, 0.0, 0.0, 0.0, 78.1, 21.9, 77.6 -5.187499999999998,5,a-pcom-i3,2018-19,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 16.6, 83.4, 0.0, 0.0, 0.0, 93.3, 6.7, 72.5 -4.281250000000001,4.28,a-pcom-i3,2018-19,Lawrence - Emily G Wetherbee,01490080, 0.0, 0.0, 13.7, 86.3, 0.0, 0.0, 0.0, 88.8, 11.2, 80.7 -5.3125,5,a-pcom-i3,2018-19,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 17.0, 83.0, 0.0, 0.0, 0.0, 87.2, 12.8, 47.1 -7.374999999999998,5,a-pcom-i3,2018-19,Lawrence - Frost Middle School,01490525, 3.9, 2.0, 15.8, 76.4, 0.0, 2.0, 0.0, 66.6, 33.4, 51.0 -4.906250000000001,4.91,a-pcom-i3,2018-19,Lawrence - Gerard A. Guilmette,01490022, 1.6, 0.0, 14.1, 84.3, 0.0, 0.0, 0.0, 96.8, 3.2, 64.0 -5.125000000000002,5,a-pcom-i3,2018-19,Lawrence - Guilmette Middle School,01490025, 1.5, 0.0, 15.0, 83.6, 0.0, 0.0, 0.0, 73.1, 26.9, 67.1 -4.812500000000002,4.81,a-pcom-i3,2018-19,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 11.5, 84.6, 3.8, 0.0, 0.0, 53.9, 46.1, 26.0 -11.031249999999998,5,a-pcom-i3,2018-19,Lawrence - James F Hennessey,01490020, 0.0, 2.0, 33.3, 64.7, 0.0, 0.0, 0.0, 90.1, 9.9, 51.1 -12.281249999999998,5,a-pcom-i3,2018-19,Lawrence - John Breen School,01490003, 0.0, 0.0, 37.0, 60.7, 2.3, 0.0, 0.0, 99.9, 0.1, 43.4 -6.687500000000002,5,a-pcom-i3,2018-19,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 21.4, 78.6, 0.0, 0.0, 0.0, 94.3, 5.7, 35.7 -13.75,5,a-pcom-i3,2018-19,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 44.0, 56.0, 0.0, 0.0, 0.0, 87.9, 12.1, 25.2 -4.656250000000002,4.66,a-pcom-i3,2018-19,Lawrence - Lawrence Family Public Academy,01490011, 2.9, 0.0, 11.9, 85.1, 0.0, 0.0, 0.0, 99.9, 0.1, 34.2 -8.468749999999998,5,a-pcom-i3,2018-19,Lawrence - Lawrence High School,01490515, 2.1, 0.5, 23.6, 72.9, 0.5, 0.0, 0.3, 62.9, 37.1, 368.0 -5.843750000000001,5,a-pcom-i3,2018-19,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 18.7, 81.3, 0.0, 0.0, 0.0, 86.4, 13.6, 59.1 -3.0937500000000018,3.09,a-pcom-i3,2018-19,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 9.9, 90.1, 0.0, 0.0, 0.0, 73.7, 26.3, 61.0 -4.874999999999998,4.87,a-pcom-i3,2018-19,Lawrence - Robert Frost,01490018, 3.1, 1.6, 11.0, 84.4, 0.0, 0.0, 0.0, 90.6, 9.4, 64.2 -8.218749999999998,5,a-pcom-i3,2018-19,Lawrence - Rollins Early Childhood Center,01490001, 2.2, 0.0, 24.2, 73.7, 0.0, 0.0, 0.0, 95.5, 4.5, 45.7 -12.25,5,a-pcom-i3,2018-19,Lawrence - School for Exceptional Studies,01490537, 3.2, 0.8, 35.2, 60.8, 0.0, 0.0, 0.0, 66.4, 33.6, 125.2 -3.968750000000001,3.97,a-pcom-i3,2018-19,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 11.4, 87.3, 0.0, 0.0, 1.3, 85.9, 14.1, 78.5 -7.124999999999999,5,a-pcom-i3,2018-19,Lawrence - Spark Academy,01490085, 3.5, 0.0, 19.3, 77.2, 0.0, 0.0, 0.0, 73.6, 26.4, 57.1 -12.749999999999998,5,a-pcom-i3,2018-19,Lawrence - UP Academy Leonard Middle School,01490090, 2.5, 0.0, 35.7, 59.2, 2.5, 0.0, 0.0, 61.7, 38.3, 39.3 -9.53125,5,a-pcom-i3,2018-19,Lawrence - UP Academy Oliver Middle School,01490049, 2.2, 6.5, 21.8, 69.5, 0.0, 0.0, 0.0, 78.2, 21.8, 46.2 -7.781250000000002,5,a-pcom-i3,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.1, 3.2, 20.5, 75.1, 0.0, 0.0, 0.0, 90.3, 9.7, 92.5 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Lee - Lee Elementary,01500025, 0.0, 1.6, 3.1, 95.3, 0.0, 0.0, 0.0, 92.1, 7.9, 63.6 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Lee - Lee Middle/High School,01500505, 0.0, 1.6, 3.3, 95.1, 0.0, 0.0, 0.0, 77.1, 22.9, 61.2 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Leicester - Leicester High,01510505, 0.0, 1.7, 1.7, 96.6, 0.0, 0.0, 0.0, 75.0, 25.0, 58.8 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Leicester - Leicester Memorial Elementary,01510005, 0.0, 2.4, 2.4, 95.1, 0.0, 0.0, 0.0, 92.7, 7.3, 40.9 -1,1,a-pcom-i3,2018-19,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.4, 20.6, 53.4 -1,1,a-pcom-i3,2018-19,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 96.5, 3.5, 57.7 -1,1,a-pcom-i3,2018-19,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 64.4, 35.6, 68.6 -1,1,a-pcom-i3,2018-19,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 60.7 -3.2500000000000018,3.25,a-pcom-i3,2018-19,Leominster - Bennett,01530003, 5.2, 0.0, 5.2, 89.6, 0.0, 0.0, 0.0, 100.0, 0.0, 19.2 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Leominster - Center For Technical Education Innovation,01530605, 1.4, 0.1, 2.1, 96.3, 0.0, 0.0, 0.0, 38.1, 61.9, 47.5 -1.5625,1.56,a-pcom-i3,2018-19,Leominster - Fall Brook,01530007, 0.0, 1.2, 3.7, 95.0, 0.0, 0.0, 0.0, 95.0, 5.0, 80.3 -3.3124999999999982,3.31,a-pcom-i3,2018-19,Leominster - Frances Drake School,01530010, 3.8, 1.0, 5.8, 89.4, 0.0, 0.0, 0.0, 92.7, 7.3, 104.1 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Leominster - Johnny Appleseed,01530025, 3.2, 0.0, 0.6, 96.2, 0.0, 0.0, 0.0, 97.4, 2.6, 78.0 -6.468750000000001,5,a-pcom-i3,2018-19,Leominster - Leominster Center for Excellence,01530515, 10.8, 0.0, 9.9, 79.3, 0.0, 0.0, 0.0, 80.3, 19.7, 10.2 -2.093750000000001,2.09,a-pcom-i3,2018-19,Leominster - Leominster High School,01530505, 0.7, 2.7, 3.3, 93.3, 0.0, 0.0, 0.0, 68.7, 31.3, 149.8 -1,1,a-pcom-i3,2018-19,Leominster - Lincoln School,01530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 25.4 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Leominster - Northwest,01530030, 2.6, 0.0, 2.0, 95.4, 0.0, 0.0, 0.0, 90.6, 9.4, 75.9 -1,1,a-pcom-i3,2018-19,Leominster - Priest Street,01530040, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 95.5, 4.5, 33.3 -1,1,a-pcom-i3,2018-19,Leominster - Samoset School,01530045, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 74.1, 25.9, 59.6 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 7.6, 92.4, 0.0, 0.0, 0.0, 84.2, 15.8, 95.2 -1.09375,1.09,a-pcom-i3,2018-19,Leverett - Leverett Elementary,01540005, 3.5, 0.0, 0.0, 96.5, 0.0, 0.0, 0.0, 82.6, 17.4, 28.4 -5.187499999999998,5,a-pcom-i3,2018-19,Lexington - Bowman,01550008, 4.6, 8.0, 2.0, 83.4, 0.0, 0.7, 1.3, 90.2, 9.8, 76.0 -2.34375,2.34,a-pcom-i3,2018-19,Lexington - Bridge,01550006, 2.6, 1.5, 0.7, 92.5, 0.0, 0.0, 2.7, 89.8, 10.2, 74.5 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Lexington - Fiske,01550015, 1.7, 2.3, 1.1, 94.8, 0.0, 0.0, 0.0, 82.8, 17.2, 87.6 -4.031250000000002,4.03,a-pcom-i3,2018-19,Lexington - Harrington,01550030, 2.1, 6.9, 2.7, 87.1, 0.0, 0.0, 1.2, 87.4, 12.6, 71.3 -3.90625,3.91,a-pcom-i3,2018-19,Lexington - Jonas Clarke Middle,01550305, 2.3, 5.1, 3.3, 87.5, 0.6, 0.0, 1.3, 76.7, 23.3, 147.7 -3.59375,3.59,a-pcom-i3,2018-19,Lexington - Joseph Estabrook,01550010, 3.0, 2.9, 4.3, 88.5, 0.0, 0.0, 1.4, 87.6, 12.4, 73.0 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Lexington - Lexington Children's Place,01550001, 0.0, 2.4, 0.0, 95.1, 0.0, 0.0, 2.4, 100.0, 0.0, 27.6 -2.5312499999999982,2.53,a-pcom-i3,2018-19,Lexington - Lexington High,01550505, 1.0, 3.7, 2.6, 91.9, 0.0, 0.0, 0.7, 72.9, 27.1, 287.7 -5.437500000000002,5,a-pcom-i3,2018-19,Lexington - Maria Hastings,01550035, 4.1, 11.6, 0.5, 82.6, 0.0, 0.0, 1.2, 91.3, 8.7, 81.9 -3.531249999999999,3.53,a-pcom-i3,2018-19,Lexington - Wm Diamond Middle,01550310, 1.7, 4.3, 4.5, 88.7, 0.0, 0.0, 0.7, 72.3, 27.7, 136.0 -12.156249999999998,5,a-pcom-i3,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 8.3, 4.1, 26.5, 61.1, 0.0, 0.0, 0.0, 56.9, 43.1, 24.2 -2.093750000000001,2.09,a-pcom-i3,2018-19,Lincoln - Hanscom Middle,01570305, 2.2, 0.1, 4.4, 93.3, 0.0, 0.0, 0.0, 70.8, 29.2, 45.1 -2.562500000000001,2.56,a-pcom-i3,2018-19,Lincoln - Hanscom Primary,01570006, 2.9, 0.0, 5.3, 91.8, 0.0, 0.0, 0.0, 95.7, 4.3, 59.2 -3.3124999999999982,3.31,a-pcom-i3,2018-19,Lincoln - Lincoln School,01570025, 3.6, 4.4, 1.6, 89.4, 0.9, 0.0, 0.0, 90.8, 9.2, 111.4 -2.124999999999999,2.12,a-pcom-i3,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 2.3, 2.6, 0.5, 93.2, 0.5, 0.5, 0.5, 62.7, 37.3, 210.6 -1.09375,1.09,a-pcom-i3,2018-19,Littleton - Littleton High School,01580505, 0.0, 0.0, 1.9, 96.5, 0.0, 0.0, 1.6, 68.8, 31.2, 53.2 -1,1,a-pcom-i3,2018-19,Littleton - Littleton Middle School,01580305, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 89.2, 10.8, 46.3 -1,1,a-pcom-i3,2018-19,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 44.8 -1.25,1.25,a-pcom-i3,2018-19,Littleton - Shaker Lane Elementary,01580005, 0.0, 1.2, 1.2, 96.0, 0.0, 0.0, 1.6, 98.0, 2.0, 61.8 -1,1,a-pcom-i3,2018-19,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 67.1 -1,1,a-pcom-i3,2018-19,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 56.6 -1,1,a-pcom-i3,2018-19,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 83.1, 16.9, 46.7 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Longmeadow - Longmeadow High,01590505, 0.8, 0.0, 2.5, 96.6, 0.0, 0.0, 0.0, 68.5, 31.5, 118.2 -1,1,a-pcom-i3,2018-19,Longmeadow - Williams Middle,01590305, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 76.7, 23.3, 39.5 -1,1,a-pcom-i3,2018-19,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 94.4, 5.6, 76.2 -3.8750000000000018,3.88,a-pcom-i3,2018-19,Lowell - Abraham Lincoln,01600020, 2.2, 5.9, 4.4, 87.6, 0.0, 0.0, 0.0, 95.6, 4.4, 68.3 -4.874999999999998,4.87,a-pcom-i3,2018-19,Lowell - B.F. Butler Middle School,01600310, 5.5, 5.5, 4.7, 84.4, 0.0, 0.0, 0.0, 69.0, 31.0, 64.2 -3.75,3.75,a-pcom-i3,2018-19,Lowell - Bartlett Community Partnership,01600090, 2.5, 4.4, 3.8, 88.0, 0.0, 1.3, 0.0, 87.4, 12.6, 79.3 -3.500000000000001,3.5,a-pcom-i3,2018-19,Lowell - Cardinal O'Connell Early Learning Center,01600001, 0.0, 5.6, 5.6, 88.8, 0.0, 0.0, 0.0, 96.3, 3.7, 26.7 -1.5625,1.56,a-pcom-i3,2018-19,Lowell - Charles W Morey,01600030, 0.7, 1.4, 2.9, 95.0, 0.0, 0.0, 0.0, 96.4, 3.6, 69.7 -2.9999999999999982,3.0,a-pcom-i3,2018-19,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 6.7, 3.0, 90.4, 0.0, 0.0, 0.0, 91.1, 8.9, 67.6 -2.1875,2.19,a-pcom-i3,2018-19,Lowell - Dr An Wang School,01600345, 1.4, 0.0, 5.6, 93.0, 0.0, 0.0, 0.0, 78.9, 21.1, 71.0 -1,1,a-pcom-i3,2018-19,Lowell - Dr Gertrude Bailey,01600002, 0.8, 1.6, 0.0, 97.6, 0.0, 0.0, 0.0, 95.2, 4.8, 62.3 -5.656249999999998,5,a-pcom-i3,2018-19,Lowell - Dr. Janice Adie Day School,01600605, 2.3, 11.3, 4.5, 81.9, 0.0, 0.0, 0.0, 83.7, 16.3, 44.2 -2.9999999999999982,3.0,a-pcom-i3,2018-19,Lowell - Greenhalge,01600015, 2.7, 0.0, 2.7, 90.4, 1.4, 1.4, 1.4, 94.5, 5.5, 72.8 -2.96875,2.97,a-pcom-i3,2018-19,Lowell - Henry J Robinson Middle,01600330, 0.0, 2.7, 4.1, 90.5, 1.4, 0.0, 1.4, 77.6, 22.4, 74.1 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Lowell - James S Daley Middle School,01600315, 0.6, 5.0, 1.3, 92.4, 0.8, 0.0, 0.0, 80.5, 19.5, 79.8 -2.8125,2.81,a-pcom-i3,2018-19,Lowell - James Sullivan Middle School,01600340, 2.8, 0.0, 6.2, 91.0, 0.0, 0.0, 0.0, 72.4, 27.6, 72.5 -1.25,1.25,a-pcom-i3,2018-19,Lowell - John J Shaughnessy,01600050, 1.6, 0.8, 1.6, 96.0, 0.0, 0.0, 0.0, 92.9, 7.1, 63.2 -5.78125,5,a-pcom-i3,2018-19,Lowell - Joseph McAvinnue,01600010, 0.0, 5.7, 12.8, 81.5, 0.0, 0.0, 0.0, 90.0, 10.0, 70.1 -4.156249999999999,4.16,a-pcom-i3,2018-19,Lowell - Kathryn P. Stoklosa Middle School,01600360, 1.3, 9.9, 0.7, 86.7, 0.0, 1.3, 0.0, 64.6, 35.4, 75.4 -7.1875,5,a-pcom-i3,2018-19,Lowell - Laura Lee Therapeutic Day School,01600085, 5.7, 2.9, 14.4, 77.0, 0.0, 0.0, 0.0, 68.4, 31.6, 17.4 -3.59375,3.59,a-pcom-i3,2018-19,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 11.5, 88.5, 0.0, 0.0, 0.0, 70.1, 29.9, 17.4 -3.843749999999999,3.84,a-pcom-i3,2018-19,Lowell - Lowell High,01600505, 2.7, 4.1, 4.5, 87.7, 0.0, 0.0, 1.0, 63.3, 36.7, 307.9 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Lowell - Moody Elementary,01600027, 0.0, 0.0, 5.9, 94.1, 0.0, 0.0, 0.0, 95.6, 4.4, 34.0 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Lowell - Pawtucketville Memorial,01600036, 1.5, 1.5, 3.0, 94.1, 0.0, 0.0, 0.0, 88.9, 11.1, 67.6 -4.093749999999998,4.09,a-pcom-i3,2018-19,Lowell - Peter W Reilly,01600040, 2.3, 0.0, 10.8, 86.9, 0.0, 0.0, 0.0, 93.8, 6.2, 64.8 -4.156249999999999,4.16,a-pcom-i3,2018-19,Lowell - Pyne Arts,01600018, 2.8, 1.4, 9.1, 86.7, 0.0, 0.0, 0.0, 82.3, 17.7, 71.7 -3.28125,3.28,a-pcom-i3,2018-19,Lowell - Rogers STEM Academy,01600005, 2.9, 3.5, 4.1, 89.5, 0.0, 0.0, 0.0, 82.5, 17.5, 85.8 -3.5625000000000018,3.56,a-pcom-i3,2018-19,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 1.6, 9.8, 88.6, 0.0, 0.0, 0.0, 89.4, 10.6, 61.5 -7.218749999999998,5,a-pcom-i3,2018-19,Lowell - The Career Academy,01600515, 5.8, 17.3, 0.0, 76.9, 0.0, 0.0, 0.0, 69.9, 30.1, 17.3 -2.8437499999999982,2.84,a-pcom-i3,2018-19,Lowell - Washington,01600055, 0.0, 0.0, 6.8, 90.9, 2.3, 0.0, 0.0, 88.7, 11.3, 44.1 -9.781249999999998,5,a-pcom-i3,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 3.8, 10.4, 15.2, 68.7, 0.0, 0.0, 1.9, 77.3, 22.7, 105.1 -8.34375,5,a-pcom-i3,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 13.3, 13.3, 73.3, 0.0, 0.0, 0.0, 80.0, 20.0, 15.0 -1,1,a-pcom-i3,2018-19,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 43.2 -1,1,a-pcom-i3,2018-19,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 90.0 -1,1,a-pcom-i3,2018-19,Ludlow - Ludlow Senior High,01610505, 0.9, 0.0, 0.9, 97.4, 0.0, 0.0, 0.9, 68.3, 31.7, 116.8 -1,1,a-pcom-i3,2018-19,Ludlow - Paul R Baird Middle,01610305, 1.1, 0.0, 1.8, 97.1, 0.0, 0.0, 0.0, 75.1, 24.9, 89.2 -1,1,a-pcom-i3,2018-19,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 92.6, 7.4, 54.9 -1,1,a-pcom-i3,2018-19,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 47.6, 52.4, 4.2 -1.09375,1.09,a-pcom-i3,2018-19,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 1.6, 96.5, 0.0, 1.9, 0.0, 58.6, 41.4, 52.7 -1,1,a-pcom-i3,2018-19,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 84.0, 16.0, 47.0 -1,1,a-pcom-i3,2018-19,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 52.8 -1,1,a-pcom-i3,2018-19,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.7, 10.3, 43.5 -4.593750000000001,4.59,a-pcom-i3,2018-19,Lynn - A Drewicz Elementary,01630016, 2.1, 2.1, 10.5, 85.3, 0.0, 0.0, 0.0, 90.9, 9.1, 47.8 -1,1,a-pcom-i3,2018-19,Lynn - Aborn,01630011, 0.0, 0.0, 0.9, 98.7, 0.0, 0.0, 0.4, 98.7, 1.3, 26.5 -4.0625,4.06,a-pcom-i3,2018-19,Lynn - Breed Middle School,01630405, 3.3, 2.4, 6.5, 87.0, 0.0, 0.0, 0.8, 69.6, 30.4, 122.8 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Lynn - Brickett Elementary,01630020, 0.0, 3.3, 1.1, 95.3, 0.0, 0.0, 0.3, 97.7, 2.3, 30.7 -3.031250000000001,3.03,a-pcom-i3,2018-19,Lynn - Capt William G Shoemaker,01630090, 0.0, 1.4, 7.0, 90.3, 0.0, 0.0, 1.4, 95.3, 4.7, 71.9 -3.812500000000001,3.81,a-pcom-i3,2018-19,Lynn - Classical High,01630505, 3.4, 0.0, 6.8, 87.8, 0.0, 0.0, 2.0, 66.7, 33.3, 147.3 -3.343750000000001,3.34,a-pcom-i3,2018-19,Lynn - Cobbet Elementary,01630035, 1.5, 1.5, 6.1, 89.3, 0.0, 0.0, 1.5, 92.4, 7.6, 65.6 -2.8437499999999982,2.84,a-pcom-i3,2018-19,Lynn - E J Harrington,01630045, 1.3, 1.3, 5.1, 90.9, 0.0, 0.0, 1.4, 98.6, 1.4, 78.0 -4.125000000000001,4.13,a-pcom-i3,2018-19,Lynn - Early Childhood Center,01630004, 3.3, 0.0, 9.9, 86.8, 0.0, 0.0, 0.0, 95.8, 4.2, 60.5 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Lynn - Edward A Sisson,01630095, 2.2, 0.0, 2.2, 95.6, 0.0, 0.0, 0.0, 96.2, 3.8, 45.8 -7.468750000000002,5,a-pcom-i3,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 6.5, 0.0, 17.4, 76.1, 0.0, 0.0, 0.0, 45.0, 55.0, 46.0 -3.9374999999999982,3.94,a-pcom-i3,2018-19,Lynn - Hood,01630055, 2.1, 2.1, 8.3, 87.4, 0.0, 0.0, 0.2, 99.0, 1.0, 48.4 -3.500000000000001,3.5,a-pcom-i3,2018-19,Lynn - Ingalls,01630060, 6.3, 0.0, 4.7, 88.8, 0.0, 0.0, 0.2, 96.2, 3.8, 63.6 -4.562499999999998,4.56,a-pcom-i3,2018-19,Lynn - Julia F Callahan,01630030, 7.3, 1.8, 3.6, 85.4, 1.8, 0.0, 0.0, 88.3, 11.7, 54.8 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 3.6, 92.9, 3.6, 0.0, 0.0, 94.7, 5.3, 28.0 -3.90625,3.91,a-pcom-i3,2018-19,Lynn - Lynn English High,01630510, 1.9, 0.7, 9.2, 87.5, 0.0, 0.0, 0.7, 54.7, 45.3, 143.8 -7.1875,5,a-pcom-i3,2018-19,Lynn - Lynn Vocational Technical Institute,01630605, 5.0, 0.0, 15.7, 77.0, 0.0, 0.0, 2.3, 54.7, 45.3, 129.8 -3.59375,3.59,a-pcom-i3,2018-19,Lynn - Lynn Woods,01630075, 0.0, 0.0, 11.5, 88.5, 0.0, 0.0, 0.0, 90.8, 9.2, 19.1 -3.1562499999999982,3.16,a-pcom-i3,2018-19,Lynn - Pickering Middle,01630420, 1.4, 0.0, 7.2, 89.9, 0.0, 0.0, 1.4, 78.3, 21.7, 69.0 -3.4062500000000018,3.41,a-pcom-i3,2018-19,Lynn - Robert L Ford,01630050, 6.1, 0.0, 4.6, 89.1, 0.0, 0.0, 0.2, 92.0, 8.0, 49.0 -2.5,2.5,a-pcom-i3,2018-19,Lynn - Sewell-Anderson,01630085, 0.0, 0.0, 8.0, 92.0, 0.0, 0.0, 0.0, 94.8, 5.2, 34.8 -5.125000000000002,5,a-pcom-i3,2018-19,Lynn - Thurgood Marshall Mid,01630305, 6.0, 0.8, 8.5, 83.6, 0.0, 0.0, 1.1, 61.3, 38.7, 132.4 -2.65625,2.66,a-pcom-i3,2018-19,Lynn - Tracy,01630100, 0.0, 0.0, 7.1, 91.5, 0.0, 0.0, 1.4, 96.2, 3.8, 42.1 -6.062500000000002,5,a-pcom-i3,2018-19,Lynn - Washington Elementary School,01630005, 4.2, 2.1, 11.1, 80.6, 0.0, 0.0, 2.1, 88.8, 11.2, 48.1 -3.4375,3.44,a-pcom-i3,2018-19,Lynn - William R Fallon,01630080, 3.7, 0.0, 7.4, 89.0, 0.0, 0.0, 0.0, 85.8, 14.2, 27.2 -3.374999999999999,3.37,a-pcom-i3,2018-19,Lynn - Wm P Connery,01630040, 3.4, 0.0, 5.0, 89.2, 0.0, 0.0, 2.3, 89.1, 10.9, 59.4 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 97.8, 2.2, 58.9 -1,1,a-pcom-i3,2018-19,Lynnfield - Lynnfield High,01640505, 0.0, 1.3, 0.0, 97.4, 0.0, 0.0, 1.3, 70.3, 29.7, 75.7 -1,1,a-pcom-i3,2018-19,Lynnfield - Lynnfield Middle School,01640405, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 84.3, 15.7, 79.1 -1,1,a-pcom-i3,2018-19,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 5.8 -1,1,a-pcom-i3,2018-19,Lynnfield - Summer Street,01640020, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 96.7, 3.3, 51.5 -12.25,5,a-pcom-i3,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 21.5, 3.3, 13.2, 60.8, 0.4, 0.0, 0.9, 74.2, 25.8, 232.7 -3.28125,3.28,a-pcom-i3,2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 89.5, 0.0, 0.0, 10.5, 63.2, 36.8, 9.5 -3.59375,3.59,a-pcom-i3,2018-19,Malden - Beebe,01650003, 6.3, 3.1, 2.1, 88.5, 0.0, 0.0, 0.0, 86.7, 13.3, 95.7 -1.6562499999999991,1.66,a-pcom-i3,2018-19,Malden - Ferryway,01650013, 1.1, 2.1, 2.1, 94.7, 0.0, 0.0, 0.0, 83.2, 16.8, 93.7 -3.1562499999999982,3.16,a-pcom-i3,2018-19,Malden - Forestdale,01650027, 1.1, 4.2, 4.2, 89.9, 0.0, 0.0, 0.5, 94.0, 6.0, 94.5 -2.250000000000001,2.25,a-pcom-i3,2018-19,Malden - Linden,01650047, 3.6, 1.8, 0.9, 92.8, 0.0, 0.0, 0.9, 84.1, 15.9, 111.6 -4.375,4.38,a-pcom-i3,2018-19,Malden - Malden Early Learning Center,01650049, 10.5, 2.3, 0.0, 86.0, 0.0, 0.0, 1.2, 97.7, 2.3, 86.0 -4.125000000000001,4.13,a-pcom-i3,2018-19,Malden - Malden High,01650505, 4.2, 2.9, 4.2, 86.8, 0.0, 0.0, 1.8, 65.6, 34.4, 165.1 -3.999999999999999,4.0,a-pcom-i3,2018-19,Malden - Salemwood,01650057, 4.0, 3.2, 2.4, 87.2, 0.0, 0.0, 3.2, 85.4, 14.6, 125.0 -1,1,a-pcom-i3,2018-19,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.4, 14.6, 39.8 -1,1,a-pcom-i3,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 64.9, 35.1, 58.7 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 1.9, 2.4, 95.8, 0.0, 0.0, 0.0, 80.2, 19.8, 41.9 -1,1,a-pcom-i3,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 55.1 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Mansfield - Everett W Robinson,01670007, 1.1, 1.7, 0.6, 96.7, 0.0, 0.0, 0.0, 94.7, 5.3, 94.8 -1,1,a-pcom-i3,2018-19,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.9, 98.3, 0.0, 0.0, 0.9, 79.7, 20.3, 114.6 -1.25,1.25,a-pcom-i3,2018-19,Mansfield - Jordan/Jackson Elementary,01670014, 0.7, 1.1, 1.1, 96.0, 0.0, 0.0, 1.1, 90.0, 10.0, 90.0 -1.875,1.88,a-pcom-i3,2018-19,Mansfield - Mansfield High,01670505, 0.7, 1.3, 4.0, 94.0, 0.0, 0.0, 0.0, 68.7, 31.3, 148.8 -1,1,a-pcom-i3,2018-19,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.4 -8.687499999999998,5,a-pcom-i3,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505, 13.9, 6.9, 6.9, 72.2, 0.0, 0.0, 0.0, 63.9, 36.1, 14.4 -1,1,a-pcom-i3,2018-19,Marblehead - Glover,01680020, 0.0, 0.0, 0.0, 98.5, 0.0, 1.5, 0.0, 97.1, 2.9, 68.8 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Marblehead - L H Coffin,01680010, 0.0, 0.0, 2.4, 95.8, 0.0, 0.0, 1.9, 97.0, 3.0, 33.8 -1,1,a-pcom-i3,2018-19,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 99.7, 0.0, 0.0, 0.3, 96.1, 3.9, 51.0 -1.5625,1.56,a-pcom-i3,2018-19,Marblehead - Marblehead High,01680505, 0.0, 1.4, 2.9, 95.0, 0.0, 0.0, 0.7, 63.7, 36.3, 140.1 -1,1,a-pcom-i3,2018-19,Marblehead - Marblehead Veterans Middle School,01680300, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 76.3, 23.7, 72.5 -1,1,a-pcom-i3,2018-19,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 88.4, 11.6, 86.0 -1,1,a-pcom-i3,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.9, 28.1, 37.7 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Marion - Sippican,01690005, 3.2, 1.6, 0.0, 95.1, 0.0, 0.0, 0.0, 93.9, 6.1, 61.8 -1.9687499999999991,1.97,a-pcom-i3,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.6, 4.7, 93.7, 0.0, 0.0, 0.0, 78.4, 21.6, 189.5 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Marlborough - Charles Jaworek School,01700030, 0.0, 2.5, 5.1, 92.4, 0.0, 0.0, 0.0, 94.9, 5.1, 117.9 -1.71875,1.72,a-pcom-i3,2018-19,Marlborough - Early Childhood Center,01700006, 1.8, 0.0, 3.6, 94.5, 0.0, 0.0, 0.0, 89.1, 10.9, 54.9 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Marlborough - Francis J Kane,01700008, 1.2, 0.0, 3.6, 95.1, 0.0, 0.0, 0.0, 91.6, 8.4, 82.5 -2.0624999999999982,2.06,a-pcom-i3,2018-19,Marlborough - Marlborough High,01700505, 1.8, 1.0, 3.2, 93.4, 0.6, 0.0, 0.0, 64.7, 35.3, 167.5 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Marlborough - Richer,01700025, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 95.4, 4.6, 87.0 -1,1,a-pcom-i3,2018-19,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 99.2, 0.8, 0.0, 0.0, 93.7, 6.3, 58.1 -1,1,a-pcom-i3,2018-19,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 39.2 -1,1,a-pcom-i3,2018-19,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 99.2, 0.8, 0.0, 0.0, 84.0, 16.0, 118.2 -1,1,a-pcom-i3,2018-19,Marshfield - Gov Edward Winslow,01710020, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 89.5, 10.5, 68.4 -1,1,a-pcom-i3,2018-19,Marshfield - Marshfield High,01710505, 0.6, 0.0, 1.9, 97.5, 0.0, 0.0, 0.0, 70.1, 29.9, 160.8 -1,1,a-pcom-i3,2018-19,Marshfield - Martinson Elementary,01710025, 0.0, 1.3, 0.0, 97.4, 1.3, 0.0, 0.0, 95.7, 4.3, 78.3 -1,1,a-pcom-i3,2018-19,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 49.4 -2.8125,2.81,a-pcom-i3,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 1.9, 0.4, 3.4, 91.0, 0.8, 0.0, 2.5, 66.4, 33.6, 122.3 -1,1,a-pcom-i3,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 83.6, 16.4, 35.1 -10.812499999999998,5,a-pcom-i3,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 19.1, 0.0, 11.6, 65.4, 0.0, 0.0, 3.9, 90.3, 9.7, 51.8 -1,1,a-pcom-i3,2018-19,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 65.1, 34.9, 129.5 -1,1,a-pcom-i3,2018-19,Masconomet - Masconomet Regional Middle School,07050405, 1.2, 1.7, 0.0, 97.2, 0.0, 0.0, 0.0, 65.3, 34.7, 84.6 -1,1,a-pcom-i3,2018-19,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 98.4, 1.6, 0.0, 0.0, 93.0, 7.0, 64.5 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Mashpee - Mashpee High,01720505, 1.7, 0.7, 0.0, 95.8, 0.0, 1.7, 0.0, 65.2, 34.8, 57.5 -1,1,a-pcom-i3,2018-19,Mashpee - Mashpee Middle School,01720020, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 79.7, 20.3, 31.7 -1,1,a-pcom-i3,2018-19,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 65.5 -1,1,a-pcom-i3,2018-19,Mattapoisett - Center,01730005, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 93.4, 6.6, 39.8 -1,1,a-pcom-i3,2018-19,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 33.7 -1.7812500000000009,1.78,a-pcom-i3,2018-19,Maynard - Fowler School,01740305, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 76.5, 23.5, 65.5 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Maynard - Green Meadow,01740010, 0.0, 2.3, 4.8, 92.9, 0.0, 0.0, 0.0, 94.4, 5.6, 87.0 -1,1,a-pcom-i3,2018-19,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.8, 27.2, 42.6 -1,1,a-pcom-i3,2018-19,Medfield - Dale Street,01750005, 0.0, 1.2, 0.6, 98.2, 0.0, 0.0, 0.0, 91.3, 8.7, 52.8 -1,1,a-pcom-i3,2018-19,Medfield - Medfield Senior High,01750505, 0.0, 1.0, 1.0, 97.1, 0.0, 0.0, 1.0, 69.8, 30.2, 103.2 -1,1,a-pcom-i3,2018-19,Medfield - Memorial School,01750003, 0.0, 1.4, 0.5, 97.0, 0.0, 0.0, 1.1, 96.6, 3.4, 71.3 -1,1,a-pcom-i3,2018-19,Medfield - Ralph Wheelock School,01750007, 0.0, 0.8, 0.7, 98.5, 0.0, 0.0, 0.0, 93.4, 6.6, 50.2 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Medfield - Thomas Blake Middle,01750305, 1.2, 1.2, 1.2, 96.3, 0.0, 0.0, 0.0, 74.5, 25.5, 81.0 -1,1,a-pcom-i3,2018-19,Medford - Brooks School,01760130, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 95.7, 4.3, 70.3 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Medford - Christopher Columbus,01760140, 1.5, 1.5, 1.5, 95.4, 0.0, 0.0, 0.0, 91.6, 8.4, 65.1 -3.4062500000000018,3.41,a-pcom-i3,2018-19,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 89.1, 0.0, 0.0, 10.9, 57.4, 42.6, 9.2 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Medford - John J McGlynn Elementary School,01760068, 1.6, 1.6, 1.6, 95.1, 0.0, 0.0, 0.0, 95.1, 4.9, 60.8 -1.5625,1.56,a-pcom-i3,2018-19,Medford - John J. McGlynn Middle School,01760320, 1.4, 3.6, 0.0, 95.0, 0.0, 0.0, 0.0, 78.8, 21.2, 72.6 -1.09375,1.09,a-pcom-i3,2018-19,Medford - Madeleine Dugger Andrews,01760315, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 72.9, 27.1, 67.8 -1.25,1.25,a-pcom-i3,2018-19,Medford - Medford High,01760505, 1.3, 1.3, 1.3, 96.0, 0.0, 0.0, 0.0, 67.7, 32.3, 222.4 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Medford - Milton Fuller Roberts,01760150, 2.6, 1.3, 0.0, 94.8, 0.0, 0.0, 1.3, 89.1, 10.9, 76.4 -1,1,a-pcom-i3,2018-19,Medway - Burke/Memorial Elementary School,01770015, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 95.3, 4.7, 64.5 -1,1,a-pcom-i3,2018-19,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 44.7 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Medway - Medway High,01770505, 0.0, 1.9, 2.5, 95.6, 0.0, 0.0, 0.0, 69.8, 30.2, 78.7 -1,1,a-pcom-i3,2018-19,Medway - Medway Middle,01770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.2, 22.8, 79.4 -1,1,a-pcom-i3,2018-19,Melrose - Early Childhood Center,01780003, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 99.1, 0.9, 54.8 -1,1,a-pcom-i3,2018-19,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 92.9, 7.1, 34.0 -1.25,1.25,a-pcom-i3,2018-19,Melrose - Horace Mann,01780025, 0.0, 4.0, 0.0, 96.0, 0.0, 0.0, 0.0, 92.3, 7.7, 24.7 -1.7499999999999982,1.75,a-pcom-i3,2018-19,Melrose - Lincoln,01780020, 1.9, 3.7, 0.0, 94.4, 0.0, 0.0, 0.0, 87.9, 12.1, 53.4 -1,1,a-pcom-i3,2018-19,Melrose - Melrose High,01780505, 0.0, 1.1, 1.6, 97.3, 0.0, 0.0, 0.0, 56.8, 43.2, 110.8 -1,1,a-pcom-i3,2018-19,Melrose - Melrose Middle,01780305, 0.0, 0.0, 1.1, 97.7, 0.0, 0.0, 1.1, 73.6, 26.4, 87.0 -1,1,a-pcom-i3,2018-19,Melrose - Roosevelt,01780035, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 97.0, 3.0, 57.0 -1.4999999999999991,1.5,a-pcom-i3,2018-19,Melrose - Winthrop,01780050, 0.0, 2.0, 0.0, 95.2, 0.0, 0.0, 2.8, 84.8, 15.2, 35.8 -1,1,a-pcom-i3,2018-19,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 95.1, 4.9, 51.2 -2.7812500000000018,2.78,a-pcom-i3,2018-19,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 8.9, 91.1, 0.0, 0.0, 0.0, 97.1, 2.9, 76.6 -1,1,a-pcom-i3,2018-19,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.6, 16.4, 96.8 -1,1,a-pcom-i3,2018-19,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 64.8, 35.2, 76.4 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 89.4, 10.6, 123.2 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 86.7, 13.3, 142.5 -1,1,a-pcom-i3,2018-19,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 91.6, 8.4, 130.7 -1,1,a-pcom-i3,2018-19,Methuen - Methuen High,01810505, 1.0, 0.0, 1.0, 98.0, 0.0, 0.0, 0.0, 63.4, 36.6, 200.7 -1,1,a-pcom-i3,2018-19,Methuen - Tenney Grammar School,01810055, 0.7, 0.0, 0.7, 97.9, 0.7, 0.0, 0.0, 88.1, 11.9, 142.8 -1,1,a-pcom-i3,2018-19,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 64.8 -1,1,a-pcom-i3,2018-19,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.9, 20.1, 78.2 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Middleborough - Mary K. Goode Elementary School,01820010, 1.5, 0.0, 0.0, 95.6, 1.5, 0.0, 1.5, 92.4, 7.6, 68.9 -1,1,a-pcom-i3,2018-19,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 39.8 -1,1,a-pcom-i3,2018-19,Middleborough - Middleborough High,01820505, 1.0, 1.0, 0.0, 97.9, 0.0, 0.0, 0.0, 57.1, 42.9, 96.3 -1,1,a-pcom-i3,2018-19,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.7, 0.3, 50.6 -1,1,a-pcom-i3,2018-19,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 78.7 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Milford - Brookside,01850065, 0.0, 0.0, 5.1, 94.9, 0.0, 0.0, 0.0, 97.4, 2.6, 73.2 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Milford - Memorial,01850010, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 95.8, 4.2, 74.1 -2.093750000000001,2.09,a-pcom-i3,2018-19,Milford - Milford High,01850505, 0.0, 0.7, 5.2, 93.3, 0.0, 0.0, 0.7, 63.2, 36.8, 134.3 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 7.6, 92.4, 0.0, 0.0, 0.0, 95.3, 4.7, 42.8 -1,1,a-pcom-i3,2018-19,Milford - Stacy Middle,01850305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 76.9, 23.1, 123.7 -1.7499999999999982,1.75,a-pcom-i3,2018-19,Milford - Woodland,01850090, 0.0, 0.8, 4.8, 94.4, 0.0, 0.0, 0.0, 88.4, 11.6, 129.5 -1,1,a-pcom-i3,2018-19,Millbury - Elmwood Street,01860017, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 95.3, 4.7, 75.1 -1,1,a-pcom-i3,2018-19,Millbury - Millbury Junior/Senior High,01860505, 0.5, 1.0, 0.0, 98.6, 0.0, 0.0, 0.0, 64.7, 35.3, 103.5 -2.250000000000001,2.25,a-pcom-i3,2018-19,Millbury - Raymond E. Shaw Elementary,01860025, 1.8, 1.8, 0.0, 92.8, 0.0, 0.0, 3.6, 80.2, 19.8, 55.6 -1,1,a-pcom-i3,2018-19,Millis - Clyde F Brown,01870005, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 93.1, 6.9, 64.2 -1,1,a-pcom-i3,2018-19,Millis - Millis High School,01870505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 55.8, 44.2, 43.0 -1,1,a-pcom-i3,2018-19,Millis - Millis Middle,01870020, 0.0, 0.9, 2.2, 96.9, 0.0, 0.0, 0.0, 88.5, 11.5, 44.5 -3.374999999999999,3.37,a-pcom-i3,2018-19,Milton - Charles S Pierce Middle,01890410, 6.5, 0.5, 3.8, 89.2, 0.0, 0.0, 0.0, 74.7, 25.3, 104.4 -3.031250000000001,3.03,a-pcom-i3,2018-19,Milton - Collicot,01890005, 2.9, 2.9, 3.9, 90.3, 0.0, 0.0, 0.0, 95.0, 5.0, 69.3 -2.65625,2.66,a-pcom-i3,2018-19,Milton - Cunningham School,01890007, 5.0, 0.0, 3.5, 91.5, 0.0, 0.0, 0.0, 96.9, 3.1, 79.3 -3.125,3.13,a-pcom-i3,2018-19,Milton - Glover,01890010, 6.3, 1.6, 0.5, 90.0, 1.6, 0.0, 0.0, 91.1, 8.9, 63.3 -3.7187500000000018,3.72,a-pcom-i3,2018-19,Milton - Milton High,01890505, 8.2, 0.4, 1.6, 88.1, 0.0, 0.8, 0.8, 66.5, 33.5, 121.9 -8.374999999999998,5,a-pcom-i3,2018-19,Milton - Tucker,01890020, 17.6, 6.6, 2.6, 73.2, 0.0, 0.0, 0.0, 86.6, 13.4, 45.5 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 2.5, 0.8, 96.3, 0.0, 0.4, 0.0, 56.5, 43.5, 120.3 -1,1,a-pcom-i3,2018-19,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 97.7, 2.3, 63.9 -1,1,a-pcom-i3,2018-19,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 30.5 -1,1,a-pcom-i3,2018-19,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 97.3, 1.4, 0.0, 1.4, 72.6, 27.4, 73.5 -1,1,a-pcom-i3,2018-19,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 30.7 -1,1,a-pcom-i3,2018-19,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 43.5 -1,1,a-pcom-i3,2018-19,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 0.9, 0.0, 98.0, 0.0, 0.0, 1.1, 95.1, 4.9, 92.1 -1.71875,1.72,a-pcom-i3,2018-19,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 2.2, 1.1, 94.5, 0.0, 0.0, 2.2, 69.2, 30.8, 91.0 -1,1,a-pcom-i3,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 71.0, 29.0, 67.2 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 76.8, 23.2, 49.0 -1,1,a-pcom-i3,2018-19,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.3, 32.7, 41.3 -1,1,a-pcom-i3,2018-19,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 98.4, 0.0, 1.6, 0.0, 93.7, 6.3, 63.2 -1.5625,1.56,a-pcom-i3,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 0.6, 0.0, 3.3, 95.0, 1.1, 0.0, 0.0, 56.3, 43.8, 180.8 -1,1,a-pcom-i3,2018-19,Mount Greylock - Lanesborough Elementary,07150005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 35.5 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.3, 2.6, 96.1, 0.0, 0.0, 0.0, 59.5, 40.5, 76.6 -1,1,a-pcom-i3,2018-19,Mount Greylock - Williamstown Elementary,07150010, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 98.0, 2.0, 68.8 -2.718750000000001,2.72,a-pcom-i3,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 2.7, 2.7, 2.0, 91.3, 0.0, 0.0, 1.3, 70.5, 29.5, 149.1 -1,1,a-pcom-i3,2018-19,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 21.5 -2.7812500000000018,2.78,a-pcom-i3,2018-19,Nantucket - Cyrus Peirce,01970010, 3.9, 2.0, 1.0, 91.1, 0.0, 0.0, 2.0, 77.5, 22.5, 50.7 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 1.7, 96.7, 0.0, 0.0, 1.7, 95.0, 5.0, 60.3 -3.59375,3.59,a-pcom-i3,2018-19,Nantucket - Nantucket High,01970505, 2.9, 2.9, 4.3, 88.5, 1.4, 0.0, 0.0, 68.9, 31.1, 69.4 -1,1,a-pcom-i3,2018-19,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 86.6, 13.4, 52.2 -1,1,a-pcom-i3,2018-19,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 28.6 -1,1,a-pcom-i3,2018-19,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.9, 31.1, 50.4 -1,1,a-pcom-i3,2018-19,Narragansett - Narragansett Regional High,07200505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 75.9, 24.1, 42.9 -1,1,a-pcom-i3,2018-19,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 22.8 -1,1,a-pcom-i3,2018-19,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 22.7 -1,1,a-pcom-i3,2018-19,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 67.8 -1,1,a-pcom-i3,2018-19,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 86.3, 13.7, 97.1 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Nashoba - Hale,07250310, 0.0, 2.6, 2.6, 94.8, 0.0, 0.0, 0.0, 84.4, 15.6, 38.5 -1,1,a-pcom-i3,2018-19,Nashoba - Luther Burbank Middle School,07250305, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 79.8, 20.2, 43.5 -1,1,a-pcom-i3,2018-19,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.5, 97.0, 0.0, 0.0, 1.5, 90.3, 9.7, 66.4 -1,1,a-pcom-i3,2018-19,Nashoba - Nashoba Regional,07250505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 62.8, 37.2, 118.3 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.1, 1.1, 1.1, 96.7, 0.0, 0.0, 0.0, 45.4, 54.6, 91.3 -1,1,a-pcom-i3,2018-19,Natick - Bennett-Hemenway,01980005, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 89.4, 10.6, 84.1 -1,1,a-pcom-i3,2018-19,Natick - Brown,01980010, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 92.4, 7.6, 66.2 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Natick - J F Kennedy Middle School,01980305, 0.0, 1.7, 1.1, 96.1, 1.1, 0.0, 0.0, 77.7, 22.3, 89.7 -1,1,a-pcom-i3,2018-19,Natick - Johnson,01980031, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 93.0, 7.0, 34.1 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Natick - Lilja Elementary,01980035, 1.9, 1.9, 0.0, 96.1, 0.0, 0.0, 0.0, 95.3, 4.7, 51.6 -1,1,a-pcom-i3,2018-19,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 51.3 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Natick - Natick High,01980505, 0.7, 2.7, 0.0, 96.6, 0.0, 0.0, 0.0, 74.9, 25.1, 217.7 -1,1,a-pcom-i3,2018-19,Natick - Wilson Middle,01980310, 1.2, 1.2, 0.8, 96.9, 0.0, 0.0, 0.0, 77.4, 22.6, 130.3 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Nauset - Nauset Regional High,06600505, 0.8, 0.6, 1.9, 96.6, 0.0, 0.0, 0.0, 65.6, 34.4, 124.0 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Nauset - Nauset Regional Middle,06600305, 1.0, 1.3, 2.1, 95.6, 0.0, 0.0, 0.0, 85.3, 14.7, 95.4 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Needham - Broadmeadow,01990005, 1.6, 1.6, 0.0, 96.8, 0.0, 0.0, 0.0, 97.3, 2.7, 62.9 -1,1,a-pcom-i3,2018-19,Needham - High Rock School,01990410, 0.5, 0.0, 0.0, 97.9, 0.0, 0.0, 1.6, 78.8, 21.2, 61.9 -1.9687499999999991,1.97,a-pcom-i3,2018-19,Needham - Hillside Elementary,01990035, 2.5, 3.3, 0.0, 93.7, 0.0, 0.0, 0.4, 90.7, 9.3, 66.9 -2.718750000000001,2.72,a-pcom-i3,2018-19,Needham - John Eliot,01990020, 0.0, 4.7, 2.0, 91.3, 0.0, 0.0, 2.0, 90.1, 9.9, 50.7 -3.843749999999999,3.84,a-pcom-i3,2018-19,Needham - Needham High,01990505, 5.0, 2.9, 2.9, 87.7, 0.0, 0.0, 1.5, 64.7, 35.3, 194.4 -2.1562500000000018,2.16,a-pcom-i3,2018-19,Needham - Newman Elementary,01990050, 2.4, 2.4, 2.1, 93.1, 0.0, 0.0, 0.0, 92.7, 7.3, 124.5 -2.562500000000001,2.56,a-pcom-i3,2018-19,Needham - Pollard Middle,01990405, 3.1, 0.8, 1.7, 91.8, 0.0, 0.0, 2.5, 74.8, 25.2, 118.4 -2.406250000000001,2.41,a-pcom-i3,2018-19,Needham - William Mitchell,01990040, 0.9, 1.8, 3.7, 92.3, 0.0, 0.0, 1.3, 87.5, 12.5, 54.3 -10.78125,5,a-pcom-i3,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 12.8, 6.0, 10.6, 65.5, 0.0, 0.0, 5.1, 76.9, 23.1, 83.1 -1.40625,1.41,a-pcom-i3,2018-19,New Bedford - Abraham Lincoln,02010095, 1.5, 0.0, 3.0, 95.5, 0.0, 0.0, 0.0, 89.4, 10.6, 66.3 -3.8750000000000018,3.88,a-pcom-i3,2018-19,New Bedford - Alfred J Gomes,02010063, 6.9, 0.0, 4.1, 87.6, 0.0, 0.0, 1.4, 94.5, 5.5, 72.5 -1,1,a-pcom-i3,2018-19,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 98.3, 1.7, 30.2 -1.5625,1.56,a-pcom-i3,2018-19,New Bedford - Carlos Pacheco,02010105, 5.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 95.0, 5.0, 39.8 -2.6874999999999982,2.69,a-pcom-i3,2018-19,New Bedford - Casimir Pulaski,02010123, 3.5, 0.0, 5.1, 91.4, 0.0, 0.0, 0.0, 91.9, 8.1, 98.7 -1.5937499999999982,1.59,a-pcom-i3,2018-19,New Bedford - Charles S Ashley,02010010, 3.4, 0.0, 1.7, 94.9, 0.0, 0.0, 0.0, 96.6, 3.4, 29.5 -1,1,a-pcom-i3,2018-19,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.2, 13.8, 25.3 -6.968749999999999,5,a-pcom-i3,2018-19,New Bedford - Ellen R Hathaway,02010075, 2.8, 0.0, 16.7, 77.7, 2.8, 0.0, 0.0, 91.6, 8.4, 35.9 -3.343750000000001,3.34,a-pcom-i3,2018-19,New Bedford - Elwyn G Campbell,02010020, 2.1, 0.0, 2.1, 89.3, 4.3, 0.0, 2.1, 94.7, 5.3, 46.9 -7.03125,5,a-pcom-i3,2018-19,New Bedford - Hayden/McFadden,02010078, 7.2, 0.0, 14.4, 77.5, 0.8, 0.0, 0.0, 90.7, 9.3, 117.7 -1.71875,1.72,a-pcom-i3,2018-19,New Bedford - Irwin M. Jacobs Elementary School,02010070, 2.7, 0.0, 2.7, 94.5, 0.0, 0.0, 0.0, 87.4, 12.6, 36.4 -1,1,a-pcom-i3,2018-19,New Bedford - James B Congdon,02010040, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 93.7, 6.3, 32.0 -1,1,a-pcom-i3,2018-19,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 92.9, 7.1, 21.2 -2.8125,2.81,a-pcom-i3,2018-19,New Bedford - John Avery Parker,02010115, 3.0, 0.0, 6.0, 91.0, 0.0, 0.0, 0.0, 91.0, 9.0, 33.4 -1,1,a-pcom-i3,2018-19,New Bedford - John B Devalles,02010050, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 90.2, 9.8, 35.8 -3.374999999999999,3.37,a-pcom-i3,2018-19,New Bedford - Keith Middle School,02010405, 8.1, 0.9, 0.0, 89.2, 0.0, 0.0, 1.8, 72.1, 27.9, 111.2 -5.093749999999999,5,a-pcom-i3,2018-19,New Bedford - New Bedford High,02010505, 6.6, 1.5, 6.5, 83.7, 0.4, 0.4, 1.0, 64.0, 36.0, 266.0 -3.218749999999999,3.22,a-pcom-i3,2018-19,New Bedford - Normandin Middle School,02010410, 4.1, 0.0, 4.1, 89.7, 0.0, 0.0, 2.0, 66.4, 33.6, 122.0 -7.406250000000001,5,a-pcom-i3,2018-19,New Bedford - Renaissance Community Innovation School,02010124, 15.8, 0.0, 4.0, 76.3, 0.0, 0.0, 4.0, 88.1, 11.9, 25.3 -6.25,5,a-pcom-i3,2018-19,New Bedford - Roosevelt Middle School,02010415, 6.4, 0.9, 9.1, 80.0, 0.9, 0.0, 2.7, 74.5, 25.5, 110.0 -6.843750000000002,5,a-pcom-i3,2018-19,New Bedford - Sgt Wm H Carney Academy,02010045, 11.0, 0.9, 9.1, 78.1, 0.0, 0.0, 0.9, 90.9, 9.1, 109.5 -1,1,a-pcom-i3,2018-19,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.1, 13.9, 19.7 -2.9375000000000018,2.94,a-pcom-i3,2018-19,New Bedford - Trinity Day Academy,02010510, 6.3, 0.0, 3.1, 90.6, 0.0, 0.0, 0.0, 48.0, 52.0, 31.9 -6.437499999999998,5,a-pcom-i3,2018-19,New Bedford - Whaling City Junior/Senior High School,02010515, 12.9, 0.0, 2.6, 79.4, 0.0, 0.0, 5.2, 58.8, 41.2, 38.8 -1,1,a-pcom-i3,2018-19,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 24.1 -7.687499999999998,5,a-pcom-i3,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 22.4, 0.0, 0.0, 75.4, 0.0, 0.0, 2.1, 62.6, 37.4, 46.8 -2.0000000000000018,2.0,a-pcom-i3,2018-19,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 3.2, 93.6, 0.0, 0.0, 3.2, 94.9, 5.1, 31.2 -1,1,a-pcom-i3,2018-19,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 48.6 -1,1,a-pcom-i3,2018-19,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 102.5 -1,1,a-pcom-i3,2018-19,Newburyport - Newburyport High,02040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.7, 26.3, 99.3 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Newburyport - Rupert A Nock Middle,02040305, 1.4, 1.4, 1.4, 95.7, 0.0, 0.0, 0.0, 74.0, 26.0, 69.0 -3.531249999999999,3.53,a-pcom-i3,2018-19,Newton - A E Angier,02070005, 6.1, 1.4, 2.7, 88.7, 0.0, 0.0, 1.2, 83.2, 16.8, 73.9 -2.749999999999999,2.75,a-pcom-i3,2018-19,Newton - Bigelow Middle,02070305, 1.2, 1.9, 4.7, 91.2, 0.0, 0.0, 1.2, 74.1, 25.9, 86.0 -6.625000000000001,5,a-pcom-i3,2018-19,Newton - Bowen,02070015, 3.4, 10.0, 4.4, 78.8, 0.0, 0.0, 3.4, 91.8, 8.2, 58.8 -7.1875,5,a-pcom-i3,2018-19,Newton - C C Burr,02070020, 4.1, 11.8, 5.1, 77.0, 0.0, 0.0, 2.0, 90.3, 9.7, 59.4 -4.84375,4.84,a-pcom-i3,2018-19,Newton - Cabot,02070025, 0.0, 5.3, 8.4, 84.5, 0.0, 1.8, 0.0, 87.1, 12.9, 55.5 -2.8125,2.81,a-pcom-i3,2018-19,Newton - Charles E Brown Middle,02070310, 2.4, 1.6, 3.3, 91.0, 0.0, 0.0, 1.6, 70.6, 29.4, 122.6 -1.9687499999999991,1.97,a-pcom-i3,2018-19,Newton - Countryside,02070040, 2.4, 1.5, 0.0, 93.7, 0.0, 0.0, 2.4, 88.8, 11.2, 74.2 -2.593749999999999,2.59,a-pcom-i3,2018-19,Newton - F A Day Middle,02070315, 2.1, 3.2, 1.6, 91.7, 0.0, 0.0, 1.4, 69.9, 30.1, 139.8 -4.093749999999998,4.09,a-pcom-i3,2018-19,Newton - Franklin,02070055, 5.6, 4.4, 3.1, 86.9, 0.0, 0.0, 0.0, 90.8, 9.2, 65.0 -5.531250000000001,5,a-pcom-i3,2018-19,Newton - Horace Mann,02070075, 9.4, 8.3, 0.0, 82.3, 0.0, 0.0, 0.0, 87.3, 12.7, 62.3 -2.5,2.5,a-pcom-i3,2018-19,Newton - John Ward,02070120, 3.2, 2.1, 2.7, 92.0, 0.0, 0.0, 0.0, 92.6, 7.4, 48.4 -3.3124999999999982,3.31,a-pcom-i3,2018-19,Newton - Lincoln-Eliot,02070070, 0.8, 0.0, 9.7, 89.4, 0.0, 0.0, 0.0, 91.3, 8.7, 61.6 -3.500000000000001,3.5,a-pcom-i3,2018-19,Newton - Mason-Rice,02070080, 1.5, 4.5, 5.1, 88.8, 0.0, 0.0, 0.0, 87.6, 12.4, 65.1 -3.5625000000000018,3.56,a-pcom-i3,2018-19,Newton - Memorial Spaulding,02070105, 2.9, 2.7, 4.4, 88.6, 0.0, 0.0, 1.4, 91.4, 8.6, 71.9 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Newton - Newton Early Childhood Center,02070108, 1.4, 4.1, 1.4, 92.4, 0.0, 0.0, 0.7, 100.0, 0.0, 70.1 -4.53125,4.53,a-pcom-i3,2018-19,Newton - Newton North High,02070505, 4.8, 5.7, 2.7, 85.5, 0.0, 0.0, 1.3, 65.1, 34.9, 319.2 -5.15625,5,a-pcom-i3,2018-19,Newton - Newton South High,02070510, 3.2, 5.9, 5.2, 83.5, 0.0, 0.0, 2.3, 64.3, 35.7, 262.3 -4.249999999999998,4.25,a-pcom-i3,2018-19,Newton - Oak Hill Middle,02070320, 2.1, 5.4, 5.0, 86.4, 0.0, 0.0, 1.1, 72.1, 27.9, 94.0 -3.6249999999999982,3.62,a-pcom-i3,2018-19,Newton - Peirce,02070100, 5.6, 0.0, 3.3, 88.4, 0.0, 0.0, 2.7, 88.3, 11.7, 37.7 -2.9999999999999982,3.0,a-pcom-i3,2018-19,Newton - Underwood,02070115, 4.9, 0.0, 4.7, 90.4, 0.0, 0.0, 0.0, 84.1, 15.9, 40.4 -4.718749999999998,4.72,a-pcom-i3,2018-19,Newton - Williams,02070125, 2.1, 6.9, 2.1, 84.9, 0.0, 0.0, 3.9, 80.4, 19.6, 46.5 -3.4062500000000018,3.41,a-pcom-i3,2018-19,Newton - Zervas,02070130, 2.4, 6.0, 2.5, 89.1, 0.0, 0.0, 0.0, 86.3, 13.7, 79.9 -1,1,a-pcom-i3,2018-19,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.1, 11.9, 67.1 -1,1,a-pcom-i3,2018-19,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 81.0 -1,1,a-pcom-i3,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.6, 37.4, 77.3 -1,1,a-pcom-i3,2018-19,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 63.3 -1,1,a-pcom-i3,2018-19,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.3, 12.7, 63.0 -1,1,a-pcom-i3,2018-19,North Adams - Drury High,02090505, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 68.5, 31.5, 75.8 -1,1,a-pcom-i3,2018-19,North Adams - Greylock,02090015, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 88.4, 11.6, 51.8 -1,1,a-pcom-i3,2018-19,North Andover - Anne Bradstreet Early Childhood Center,02110005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.7, 1.3, 69.5 -1,1,a-pcom-i3,2018-19,North Andover - Annie L Sargent School,02110018, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 94.5, 5.5, 55.0 -1,1,a-pcom-i3,2018-19,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 37.1 -1,1,a-pcom-i3,2018-19,North Andover - Franklin,02110010, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 94.5, 5.5, 54.6 -1.875,1.88,a-pcom-i3,2018-19,North Andover - Kittredge,02110015, 0.0, 3.0, 3.0, 94.0, 0.0, 0.0, 0.0, 82.4, 17.6, 33.6 -1,1,a-pcom-i3,2018-19,North Andover - North Andover High,02110505, 0.8, 1.5, 0.8, 96.9, 0.0, 0.0, 0.0, 64.7, 35.3, 124.1 -1,1,a-pcom-i3,2018-19,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.3, 26.7, 106.4 -1,1,a-pcom-i3,2018-19,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 40.8 -1,1,a-pcom-i3,2018-19,North Attleborough - Amvet Boulevard,02120007, 1.2, 0.0, 0.7, 98.1, 0.0, 0.0, 0.0, 99.3, 0.7, 41.6 -1,1,a-pcom-i3,2018-19,North Attleborough - Community,02120030, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 95.7, 4.3, 58.6 -1,1,a-pcom-i3,2018-19,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 29.5 -1,1,a-pcom-i3,2018-19,North Attleborough - Joseph W Martin Jr Elementary,02120013, 1.5, 0.0, 1.5, 97.0, 0.0, 0.0, 0.0, 95.5, 4.5, 66.8 -1.0625000000000018,1.06,a-pcom-i3,2018-19,North Attleborough - North Attleboro High,02120505, 0.9, 0.9, 1.7, 96.6, 0.0, 0.0, 0.0, 69.5, 30.5, 116.9 -1,1,a-pcom-i3,2018-19,North Attleborough - North Attleborough Early Learning Center,02120020, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 100.0, 0.0, 27.6 -1,1,a-pcom-i3,2018-19,North Attleborough - North Attleborough Middle,02120305, 0.9, 0.0, 1.8, 97.3, 0.0, 0.0, 0.0, 75.8, 24.2, 111.6 -1,1,a-pcom-i3,2018-19,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 95.5, 4.5, 22.0 -1,1,a-pcom-i3,2018-19,North Brookfield - North Brookfield Elementary,02150015, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 91.1, 8.9, 45.0 -1,1,a-pcom-i3,2018-19,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.9, 27.1, 36.5 -1,1,a-pcom-i3,2018-19,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 0.0, 97.5, 0.0, 2.5, 0.0, 97.5, 2.5, 40.1 -1,1,a-pcom-i3,2018-19,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.3, 22.7, 59.4 -1.40625,1.41,a-pcom-i3,2018-19,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.3, 4.2, 95.5, 0.0, 0.0, 0.0, 79.1, 20.9, 71.9 -1,1,a-pcom-i3,2018-19,North Middlesex - North Middlesex Regional,07350505, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 70.8, 29.2, 94.3 -1,1,a-pcom-i3,2018-19,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 55.0 -1,1,a-pcom-i3,2018-19,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 19.6 -1,1,a-pcom-i3,2018-19,North Middlesex - Varnum Brook,07350035, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 97.2, 2.8, 71.0 -1,1,a-pcom-i3,2018-19,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 44.9 -1,1,a-pcom-i3,2018-19,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 45.5 -1,1,a-pcom-i3,2018-19,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 92.5, 7.5, 53.3 -1,1,a-pcom-i3,2018-19,North Reading - North Reading High,02170505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 48.7, 51.3, 92.8 -1,1,a-pcom-i3,2018-19,North Reading - North Reading Middle,02170305, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 83.2, 16.8, 74.3 -2.03125,2.03,a-pcom-i3,2018-19,Northampton - Bridge Street,02100005, 1.7, 0.0, 4.8, 93.5, 0.0, 0.0, 0.0, 89.8, 10.2, 58.0 -6.343749999999999,5,a-pcom-i3,2018-19,Northampton - Jackson Street,02100020, 0.0, 2.0, 16.3, 79.7, 0.0, 0.0, 2.0, 85.6, 14.4, 49.2 -2.093750000000001,2.09,a-pcom-i3,2018-19,Northampton - John F Kennedy Middle School,02100410, 1.9, 0.0, 4.8, 93.3, 0.0, 0.0, 0.0, 77.6, 22.4, 103.8 -2.34375,2.34,a-pcom-i3,2018-19,Northampton - Leeds,02100025, 2.0, 0.0, 5.5, 92.5, 0.0, 0.0, 0.0, 92.1, 7.9, 50.8 -2.1562500000000018,2.16,a-pcom-i3,2018-19,Northampton - Northampton High,02100505, 3.0, 0.0, 3.0, 93.1, 0.0, 0.0, 1.0, 63.1, 36.9, 101.0 -1,1,a-pcom-i3,2018-19,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 90.7, 9.3, 42.9 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 51.6, 48.4, 95.0 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.5, 2.2, 96.7, 0.0, 0.5, 0.0, 73.7, 26.3, 183.6 -1,1,a-pcom-i3,2018-19,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 89.0, 11.0, 49.8 -1.09375,1.09,a-pcom-i3,2018-19,Northborough - Lincoln Street,02130003, 1.2, 0.0, 2.3, 96.5, 0.0, 0.0, 0.0, 91.9, 8.1, 43.2 -1,1,a-pcom-i3,2018-19,Northborough - Marguerite E Peaslee,02130014, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 96.3, 3.7, 40.2 -1,1,a-pcom-i3,2018-19,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 93.1, 6.9, 40.9 -1,1,a-pcom-i3,2018-19,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.3, 1.3, 96.9, 0.0, 0.6, 0.0, 84.4, 15.6, 79.7 -1,1,a-pcom-i3,2018-19,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 97.7, 0.0, 0.8, 1.5, 96.2, 3.8, 66.0 -1,1,a-pcom-i3,2018-19,Northbridge - Northbridge High,02140505, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 61.0, 39.0, 69.2 -1,1,a-pcom-i3,2018-19,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 73.3, 26.7, 83.2 -1,1,a-pcom-i3,2018-19,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 0.0, 99.2, 0.0, 0.8, 0.0, 95.7, 4.3, 65.2 -2.124999999999999,2.12,a-pcom-i3,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.5, 1.2, 3.1, 93.2, 0.0, 0.0, 0.0, 49.7, 50.3, 161.9 -1,1,a-pcom-i3,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.0, 44.0, 62.1 -1,1,a-pcom-i3,2018-19,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 41.8 -1,1,a-pcom-i3,2018-19,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 64.0 -1,1,a-pcom-i3,2018-19,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.7, 1.3, 34.1 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Norton - Norton High,02180505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 69.1, 30.9, 79.9 -1,1,a-pcom-i3,2018-19,Norton - Norton Middle,02180305, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 76.6, 23.4, 67.1 -1,1,a-pcom-i3,2018-19,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 57.3 -1,1,a-pcom-i3,2018-19,Norwell - Norwell High,02190505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.1, 37.9, 70.2 -1,1,a-pcom-i3,2018-19,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.8, 24.2, 66.2 -1,1,a-pcom-i3,2018-19,Norwell - William G Vinal,02190020, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 90.5, 9.5, 57.1 -2.437499999999999,2.44,a-pcom-i3,2018-19,Norwood - Balch,02200005, 0.0, 2.6, 2.6, 92.2, 2.6, 0.0, 0.0, 96.4, 3.6, 38.7 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Norwood - Charles J Prescott,02200025, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 91.4, 8.6, 31.4 -1,1,a-pcom-i3,2018-19,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.0, 13.0, 34.6 -1,1,a-pcom-i3,2018-19,Norwood - Dr. Philip O. Coakley Middle School,02200305, 1.1, 0.0, 1.1, 97.8, 0.0, 0.0, 0.0, 71.6, 28.4, 92.6 -1,1,a-pcom-i3,2018-19,Norwood - F A Cleveland,02200015, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 94.1, 5.9, 47.4 -1,1,a-pcom-i3,2018-19,Norwood - George F. Willett,02200075, 1.5, 0.0, 1.5, 97.0, 0.0, 0.0, 0.0, 99.7, 0.3, 66.9 -1,1,a-pcom-i3,2018-19,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 96.9, 0.0, 3.1, 0.0, 83.5, 16.5, 32.7 -1,1,a-pcom-i3,2018-19,Norwood - Norwood High,02200505, 0.9, 0.0, 1.8, 97.3, 0.0, 0.0, 0.0, 64.6, 35.4, 110.6 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.6, 0.0, 0.6, 94.1, 0.0, 0.0, 3.7, 92.0, 8.0, 81.5 -1,1,a-pcom-i3,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 1.2, 0.0, 97.6, 0.0, 0.0, 1.2, 57.1, 42.9, 84.0 -1,1,a-pcom-i3,2018-19,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 64.5, 35.5, 90.3 -1,1,a-pcom-i3,2018-19,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.6, 29.4, 56.2 -3.500000000000001,3.5,a-pcom-i3,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 11.2, 88.8, 0.0, 0.0, 0.0, 88.8, 11.2, 17.9 -1,1,a-pcom-i3,2018-19,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.2, 44.2 -1,1,a-pcom-i3,2018-19,Orange - Fisher Hill,02230015, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 94.2, 5.8, 47.5 -1,1,a-pcom-i3,2018-19,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 89.3, 10.7, 43.0 -1,1,a-pcom-i3,2018-19,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 33.5 -1,1,a-pcom-i3,2018-19,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 39.4 -2.406250000000001,2.41,a-pcom-i3,2018-19,Oxford - Oxford High,02260505, 1.7, 1.5, 3.0, 92.3, 0.0, 0.0, 1.5, 63.7, 36.3, 66.3 -1,1,a-pcom-i3,2018-19,Oxford - Oxford Middle,02260405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 43.3 -1,1,a-pcom-i3,2018-19,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 45.5, 54.5, 11.0 -1.09375,1.09,a-pcom-i3,2018-19,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 2.5, 96.5, 0.0, 0.0, 1.0, 91.1, 8.9, 98.8 -1,1,a-pcom-i3,2018-19,Palmer - Palmer High,02270505, 0.0, 1.0, 0.5, 97.6, 0.0, 0.0, 1.0, 77.0, 23.0, 105.3 -1,1,a-pcom-i3,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 49.5, 50.5, 107.1 -15.96875,5,a-pcom-i3,2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 15.6, 0.0, 35.6, 48.9, 0.0, 0.0, 0.0, 68.9, 31.1, 45.0 -1,1,a-pcom-i3,2018-19,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 67.6 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Peabody - Center,02290015, 0.0, 2.6, 2.6, 94.9, 0.0, 0.0, 0.0, 95.3, 4.7, 39.2 -1,1,a-pcom-i3,2018-19,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 73.7, 26.3, 155.5 -1,1,a-pcom-i3,2018-19,Peabody - John E Burke,02290007, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 97.9, 2.1, 40.0 -1,1,a-pcom-i3,2018-19,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 57.4 -1,1,a-pcom-i3,2018-19,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.5, 0.5, 98.4, 0.0, 0.0, 0.5, 59.6, 40.4, 187.1 -1,1,a-pcom-i3,2018-19,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 39.7 -1,1,a-pcom-i3,2018-19,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 56.7 -1,1,a-pcom-i3,2018-19,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 44.7 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Peabody - William A Welch Sr,02290027, 2.4, 0.0, 2.4, 95.1, 0.0, 0.0, 0.0, 93.4, 6.6, 40.9 -4.593750000000001,4.59,a-pcom-i3,2018-19,Pelham - Pelham Elementary,02300005, 3.7, 0.0, 11.0, 85.3, 0.0, 0.0, 0.0, 83.8, 16.2, 27.2 -1,1,a-pcom-i3,2018-19,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 50.1 -1,1,a-pcom-i3,2018-19,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 51.1 -1,1,a-pcom-i3,2018-19,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 58.3 -1,1,a-pcom-i3,2018-19,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.1, 13.9, 50.2 -1,1,a-pcom-i3,2018-19,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.5, 25.5, 94.0 -1,1,a-pcom-i3,2018-19,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 45.0 -1,1,a-pcom-i3,2018-19,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 99.4, 0.0, 0.0, 0.6, 92.7, 7.3, 49.5 -1,1,a-pcom-i3,2018-19,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 99.5, 0.0, 0.0, 0.5, 97.4, 2.6, 62.5 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 2.6, 96.6, 0.0, 0.0, 0.8, 91.9, 8.1, 38.4 -1,1,a-pcom-i3,2018-19,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 74.5, 25.5, 47.3 -1,1,a-pcom-i3,2018-19,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 1.1, 98.6, 0.0, 0.0, 0.3, 61.2, 38.8, 89.9 -1,1,a-pcom-i3,2018-19,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 19.2 -14.031249999999998,5,a-pcom-i3,2018-19,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505, 16.3, 4.1, 24.5, 55.1, 0.0, 0.0, 0.0, 75.5, 24.5, 24.5 -21.593749999999996,5,a-pcom-i3,2018-19,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 43.6, 7.3, 18.2, 30.9, 0.0, 0.0, 0.0, 78.2, 21.8, 27.5 -16.78125,5,a-pcom-i3,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 18.5, 11.1, 24.1, 46.3, 0.0, 0.0, 0.0, 74.1, 25.9, 27.0 -3.218749999999999,3.22,a-pcom-i3,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 4.1, 3.1, 3.1, 89.7, 0.0, 0.0, 0.0, 73.6, 26.4, 96.7 -8.875000000000002,5,a-pcom-i3,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 4.4, 15.2, 6.6, 71.6, 0.0, 0.0, 2.2, 52.8, 47.2, 45.5 -1,1,a-pcom-i3,2018-19,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 31.3 -1,1,a-pcom-i3,2018-19,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 33.6 -1,1,a-pcom-i3,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.2, 27.8, 12.4 -1,1,a-pcom-i3,2018-19,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 79.7, 20.3, 44.8 -1,1,a-pcom-i3,2018-19,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 12.8 -15.03125,5,a-pcom-i3,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 2.3, 44.7, 0.0, 51.9, 0.0, 0.0, 1.2, 82.2, 17.8, 85.9 -5.0,5.0,a-pcom-i3,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 5.5, 1.4, 8.0, 84.0, 1.1, 0.0, 0.0, 60.1, 39.9, 72.6 -1,1,a-pcom-i3,2018-19,Pittsfield - Allendale,02360010, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 98.8, 1.2, 40.4 -2.562500000000001,2.56,a-pcom-i3,2018-19,Pittsfield - Crosby,02360065, 4.4, 0.0, 3.3, 91.8, 0.0, 0.0, 0.5, 90.1, 9.9, 91.3 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Pittsfield - Egremont,02360035, 0.0, 1.8, 3.5, 93.8, 0.0, 0.0, 0.9, 96.5, 3.5, 56.4 -1.8124999999999991,1.81,a-pcom-i3,2018-19,Pittsfield - John T Reid Middle,02360305, 0.0, 2.4, 2.2, 94.2, 0.0, 0.0, 1.2, 64.8, 35.2, 82.4 -2.96875,2.97,a-pcom-i3,2018-19,Pittsfield - Morningside Community School,02360055, 4.7, 1.6, 0.0, 90.5, 0.0, 0.0, 3.2, 95.3, 4.7, 63.4 -2.875000000000001,2.88,a-pcom-i3,2018-19,Pittsfield - Pittsfield High,02360505, 7.1, 0.0, 2.1, 90.8, 0.0, 0.0, 0.0, 68.5, 31.5, 133.9 -1,1,a-pcom-i3,2018-19,Pittsfield - Robert T. Capeless Elementary School,02360045, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 100.0, 0.0, 28.8 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Pittsfield - Silvio O Conte Community,02360105, 1.6, 0.0, 1.6, 95.1, 0.0, 0.0, 1.6, 93.5, 6.5, 61.6 -1,1,a-pcom-i3,2018-19,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.7, 9.3, 36.7 -1.3750000000000018,1.38,a-pcom-i3,2018-19,Pittsfield - Taconic High,02360510, 1.3, 0.0, 1.4, 95.6, 0.0, 0.0, 1.8, 59.4, 40.6, 114.2 -1,1,a-pcom-i3,2018-19,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 72.8, 27.2, 79.1 -1,1,a-pcom-i3,2018-19,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 97.7, 0.0, 0.0, 2.3, 91.9, 8.1, 44.4 -1,1,a-pcom-i3,2018-19,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 98.5, 1.5, 67.3 -1.9062499999999982,1.91,a-pcom-i3,2018-19,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 2.6, 1.0, 93.9, 0.0, 0.0, 2.6, 92.3, 7.7, 39.2 -1,1,a-pcom-i3,2018-19,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 33.8 -1,1,a-pcom-i3,2018-19,Plymouth - Federal Furnace School,02390011, 0.9, 0.0, 1.6, 97.5, 0.0, 0.0, 0.0, 84.8, 15.2, 62.8 -1,1,a-pcom-i3,2018-19,Plymouth - Hedge,02390010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.5, 1.5, 32.1 -1,1,a-pcom-i3,2018-19,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.4, 97.8, 0.0, 0.8, 0.0, 93.9, 6.1, 69.8 -1,1,a-pcom-i3,2018-19,Plymouth - Manomet Elementary,02390015, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 97.3, 2.7, 37.7 -1,1,a-pcom-i3,2018-19,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 95.1, 4.9, 70.1 -1.25,1.25,a-pcom-i3,2018-19,Plymouth - Plymouth Commun Intermediate,02390405, 1.6, 0.8, 1.6, 96.0, 0.0, 0.0, 0.0, 84.7, 15.3, 125.5 -1,1,a-pcom-i3,2018-19,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 32.6 -1,1,a-pcom-i3,2018-19,Plymouth - Plymouth North High,02390505, 0.0, 0.9, 0.6, 98.5, 0.0, 0.0, 0.0, 66.3, 33.7, 162.0 -1,1,a-pcom-i3,2018-19,Plymouth - Plymouth South High,02390515, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 66.6, 33.4, 153.2 -1,1,a-pcom-i3,2018-19,Plymouth - Plymouth South Middle,02390305, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 75.2, 24.8, 86.4 -1,1,a-pcom-i3,2018-19,Plymouth - South Elementary,02390046, 1.2, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 95.2, 4.8, 83.7 -1,1,a-pcom-i3,2018-19,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 98.3, 0.0, 1.7, 0.0, 92.7, 7.3, 59.3 -1,1,a-pcom-i3,2018-19,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 31.2 -7.593749999999999,5,a-pcom-i3,2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 11.9, 4.4, 6.6, 75.7, 0.0, 0.0, 1.5, 81.8, 18.2, 137.0 -1,1,a-pcom-i3,2018-19,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 97.2, 0.0, 0.0, 2.8, 78.8, 21.2, 35.9 -1,1,a-pcom-i3,2018-19,Quabbin - Hardwick Elementary,07530005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 20.6 -2.65625,2.66,a-pcom-i3,2018-19,Quabbin - Hubbardston Center,07530010, 0.0, 2.7, 5.8, 91.5, 0.0, 0.0, 0.0, 87.5, 12.5, 31.0 -1,1,a-pcom-i3,2018-19,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 12.5 -2.562500000000001,2.56,a-pcom-i3,2018-19,Quabbin - Oakham Center,07530025, 8.2, 0.0, 0.0, 91.8, 0.0, 0.0, 0.0, 88.2, 11.8, 12.3 -1.09375,1.09,a-pcom-i3,2018-19,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.3, 0.0, 96.5, 0.0, 1.3, 1.0, 75.3, 24.7, 79.7 -1,1,a-pcom-i3,2018-19,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 99.6, 0.0, 0.0, 0.4, 81.8, 18.2, 45.6 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Quabbin - Ruggles Lane,07530030, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 93.6, 6.4, 62.1 -1,1,a-pcom-i3,2018-19,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 60.4, 39.6, 53.7 -1,1,a-pcom-i3,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.0, 32.0, 18.0 -1,1,a-pcom-i3,2018-19,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.5, 0.0, 99.5, 0.0, 0.0, 0.0, 88.5, 11.5, 68.4 -1,1,a-pcom-i3,2018-19,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 95.0, 5.0, 40.1 -3.125,3.13,a-pcom-i3,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 7.7, 0.0, 90.0, 0.0, 0.0, 2.3, 100.0, 0.0, 43.0 -1,1,a-pcom-i3,2018-19,Quincy - Atherton Hough,02430040, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 94.0, 6.0, 44.9 -2.96875,2.97,a-pcom-i3,2018-19,Quincy - Atlantic Middle,02430305, 0.0, 7.2, 0.0, 90.5, 0.0, 0.0, 2.3, 76.3, 23.7, 44.4 -1,1,a-pcom-i3,2018-19,Quincy - Beechwood Knoll Elementary,02430020, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 97.1, 2.9, 34.0 -1,1,a-pcom-i3,2018-19,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 77.9, 22.1, 48.1 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Quincy - Central Middle,02430315, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 76.4, 23.6, 59.2 -1,1,a-pcom-i3,2018-19,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 87.4, 12.6, 33.4 -1,1,a-pcom-i3,2018-19,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 98.4, 1.6, 63.9 -7.312500000000002,5,a-pcom-i3,2018-19,Quincy - Francis W Parker,02430075, 4.7, 16.4, 0.0, 76.6, 0.0, 0.0, 2.3, 94.9, 5.1, 42.7 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Quincy - Lincoln-Hancock Community School,02430035, 1.8, 1.8, 0.0, 96.4, 0.0, 0.0, 0.0, 95.8, 4.2, 55.6 -1.7499999999999982,1.75,a-pcom-i3,2018-19,Quincy - Merrymount,02430060, 0.0, 2.8, 2.8, 94.4, 0.0, 0.0, 0.0, 93.9, 6.1, 35.9 -3.343750000000001,3.34,a-pcom-i3,2018-19,Quincy - Montclair,02430065, 0.0, 10.7, 0.0, 89.3, 0.0, 0.0, 0.0, 94.8, 5.2, 40.2 -2.749999999999999,2.75,a-pcom-i3,2018-19,Quincy - North Quincy High,02430510, 0.8, 3.5, 0.0, 91.2, 0.0, 0.0, 4.6, 58.7, 41.3, 130.0 -1,1,a-pcom-i3,2018-19,Quincy - Point Webster Middle,02430325, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 77.6, 22.4, 37.7 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Quincy - Quincy High,02430505, 0.0, 4.5, 0.6, 92.4, 0.6, 0.0, 1.8, 63.7, 36.3, 165.0 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Quincy - Snug Harbor Community School,02430090, 0.7, 2.6, 0.0, 94.1, 0.0, 0.0, 2.6, 92.4, 7.6, 76.7 -1,1,a-pcom-i3,2018-19,Quincy - South West Middle School,02430320, 0.0, 0.0, 0.0, 97.7, 2.3, 0.0, 0.0, 87.4, 12.6, 43.0 -1.25,1.25,a-pcom-i3,2018-19,Quincy - Squantum,02430095, 0.0, 4.0, 0.0, 96.0, 0.0, 0.0, 0.0, 91.8, 8.2, 40.4 -2.6250000000000018,2.63,a-pcom-i3,2018-19,Quincy - Wollaston School,02430110, 1.4, 6.9, 0.0, 91.6, 0.0, 0.0, 0.0, 94.2, 5.8, 34.5 -1,1,a-pcom-i3,2018-19,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 28.6, 71.4, 0.4 -1.25,1.25,a-pcom-i3,2018-19,Ralph C Mahar - Ralph C Mahar Regional,07550505, 0.0, 1.1, 2.8, 96.0, 0.0, 0.0, 0.0, 67.4, 32.6, 88.5 -1,1,a-pcom-i3,2018-19,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 28.6, 71.4, 0.4 -5.375000000000001,5,a-pcom-i3,2018-19,Randolph - Elizabeth G Lyons Elementary,02440020, 13.7, 1.1, 0.0, 82.8, 0.0, 0.0, 2.3, 80.5, 19.5, 43.7 -6.124999999999998,5,a-pcom-i3,2018-19,Randolph - J F Kennedy Elementary,02440018, 10.4, 2.3, 4.6, 80.4, 0.0, 0.0, 2.3, 87.2, 12.8, 86.6 -5.15625,5,a-pcom-i3,2018-19,Randolph - Margaret L Donovan,02440015, 6.2, 4.1, 2.1, 83.5, 0.0, 0.0, 4.1, 95.9, 4.1, 48.5 -5.656249999999998,5,a-pcom-i3,2018-19,Randolph - Martin E Young Elementary,02440040, 4.5, 1.1, 3.4, 81.9, 0.0, 0.0, 9.1, 90.0, 10.0, 44.1 -10.906250000000002,5,a-pcom-i3,2018-19,Randolph - Randolph Community Middle,02440410, 26.3, 4.8, 2.6, 65.1, 1.2, 0.0, 0.0, 71.8, 28.2, 83.4 -8.75,5,a-pcom-i3,2018-19,Randolph - Randolph High,02440505, 13.2, 7.6, 7.2, 72.0, 0.0, 0.0, 0.0, 64.5, 35.5, 93.8 -1,1,a-pcom-i3,2018-19,Reading - Alice M Barrows,02460002, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 90.9, 9.1, 39.8 -1,1,a-pcom-i3,2018-19,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 82.6, 17.4, 68.2 -1,1,a-pcom-i3,2018-19,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 96.1, 3.9, 59.5 -1,1,a-pcom-i3,2018-19,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 47.7 -1,1,a-pcom-i3,2018-19,Reading - Joshua Eaton,02460010, 0.0, 0.8, 0.0, 97.1, 0.0, 0.0, 2.1, 95.1, 4.9, 48.4 -1,1,a-pcom-i3,2018-19,Reading - RISE PreSchool,02460001, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.9 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Reading - Reading Memorial High,02460505, 0.0, 2.3, 0.0, 96.1, 1.6, 0.0, 0.0, 69.1, 30.9, 123.6 -1,1,a-pcom-i3,2018-19,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 76.9, 23.1, 65.0 -1,1,a-pcom-i3,2018-19,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 46.2 -1,1,a-pcom-i3,2018-19,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 93.1, 6.9, 77.3 -1,1,a-pcom-i3,2018-19,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 94.9, 5.1, 64.8 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Revere - Beachmont Veterans Memorial School,02480013, 1.8, 0.0, 4.4, 93.8, 0.0, 0.0, 0.0, 86.7, 13.3, 56.2 -3.187500000000001,3.19,a-pcom-i3,2018-19,Revere - Garfield Elementary School,02480056, 1.7, 4.5, 2.8, 89.8, 0.0, 0.0, 1.1, 90.9, 9.1, 88.2 -3.031250000000001,3.03,a-pcom-i3,2018-19,Revere - Garfield Middle School,02480057, 0.9, 7.1, 1.8, 90.3, 0.0, 0.0, 0.0, 61.2, 38.8, 56.7 -1,1,a-pcom-i3,2018-19,Revere - Paul Revere,02480050, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 95.2, 4.8, 52.3 -3.6249999999999982,3.62,a-pcom-i3,2018-19,Revere - Revere High,02480505, 2.8, 1.1, 5.8, 88.4, 0.8, 0.0, 1.1, 66.5, 33.5, 180.7 -2.6874999999999982,2.69,a-pcom-i3,2018-19,Revere - Rumney Marsh Academy,02480014, 2.2, 1.4, 3.6, 91.4, 0.0, 0.0, 1.4, 74.1, 25.9, 69.5 -3.218749999999999,3.22,a-pcom-i3,2018-19,Revere - Seacoast School,02480520, 5.2, 0.0, 5.2, 89.7, 0.0, 0.0, 0.0, 53.5, 46.5, 19.4 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 2.3, 94.6, 0.0, 1.5, 1.5, 93.1, 6.9, 65.3 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Revere - Susan B. Anthony Middle School,02480305, 0.8, 0.0, 3.9, 95.4, 0.0, 0.0, 0.0, 72.5, 27.5, 64.9 -3.1562499999999982,3.16,a-pcom-i3,2018-19,Richmond - Richmond Consolidated,02490005, 5.8, 0.0, 1.4, 89.9, 0.0, 0.0, 2.9, 86.2, 13.8, 34.8 -2.718750000000001,2.72,a-pcom-i3,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.5, 2.5, 3.7, 91.3, 0.0, 0.0, 0.0, 71.9, 28.1, 80.1 -1.40625,1.41,a-pcom-i3,2018-19,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 95.5, 0.0, 0.0, 4.5, 83.0, 17.0, 44.1 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Rochester - Rochester Memorial,02500005, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 85.5, 14.5, 62.1 -1,1,a-pcom-i3,2018-19,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 41.6 -1,1,a-pcom-i3,2018-19,Rockland - John W Rogers Middle,02510305, 0.0, 0.0, 0.1, 99.9, 0.0, 0.0, 0.0, 85.3, 14.7, 76.1 -1,1,a-pcom-i3,2018-19,Rockland - Memorial Park,02510020, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 95.1, 4.9, 47.7 -1.875,1.88,a-pcom-i3,2018-19,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 4.0, 94.0, 0.0, 0.0, 2.0, 95.0, 5.0, 50.3 -1.09375,1.09,a-pcom-i3,2018-19,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 2.4, 96.5, 0.0, 0.0, 1.1, 71.3, 28.7, 80.4 -1,1,a-pcom-i3,2018-19,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 57.5 -1,1,a-pcom-i3,2018-19,Rockport - Rockport High,02520510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.0, 34.0, 47.0 -1,1,a-pcom-i3,2018-19,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.3, 26.7, 37.5 -3.999999999999999,4.0,a-pcom-i3,2018-19,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 6.4, 87.2, 0.0, 0.0, 6.4, 81.5, 18.5, 15.7 -12.875,5,a-pcom-i3,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 21.5, 3.1, 13.1, 58.8, 0.0, 0.0, 3.4, 62.5, 37.5, 175.0 -7.093750000000001,5,a-pcom-i3,2018-19,Sabis International Charter (District) - Sabis International Charter School,04410505, 10.3, 1.9, 9.9, 77.3, 0.0, 0.0, 0.5, 75.1, 24.9, 125.5 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Salem - Bates,02580003, 0.2, 0.2, 3.8, 95.8, 0.0, 0.0, 0.0, 78.8, 21.2, 62.5 -1,1,a-pcom-i3,2018-19,Salem - Carlton,02580015, 0.4, 0.2, 2.0, 97.4, 0.0, 0.0, 0.0, 91.4, 8.6, 50.7 -3.28125,3.28,a-pcom-i3,2018-19,Salem - Collins Middle,02580305, 1.0, 2.8, 6.6, 89.5, 0.0, 0.0, 0.0, 76.2, 23.8, 105.9 -3.2500000000000018,3.25,a-pcom-i3,2018-19,Salem - Horace Mann Laboratory,02580030, 0.2, 2.5, 7.7, 89.6, 0.0, 0.0, 0.0, 90.4, 9.6, 45.5 -4.874999999999998,4.87,a-pcom-i3,2018-19,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 15.6, 84.4, 0.0, 0.0, 0.0, 81.9, 18.1, 12.2 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 5.2, 94.8, 0.0, 0.0, 0.0, 97.4, 2.6, 34.5 -3.218749999999999,3.22,a-pcom-i3,2018-19,Salem - Salem High,02580505, 2.3, 0.0, 7.9, 89.7, 0.0, 0.0, 0.0, 66.7, 33.3, 170.4 -4.593750000000001,4.59,a-pcom-i3,2018-19,Salem - Salem Prep High School,02580515, 0.0, 0.0, 14.7, 85.3, 0.0, 0.0, 0.0, 64.3, 35.7, 10.9 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Salem - Saltonstall School,02580050, 0.3, 0.2, 4.8, 94.6, 0.0, 0.0, 0.0, 92.7, 7.3, 60.5 -2.65625,2.66,a-pcom-i3,2018-19,Salem - Witchcraft Heights,02580070, 1.2, 1.1, 6.2, 91.5, 0.0, 0.0, 0.0, 92.6, 7.4, 102.7 -5.062500000000001,5,a-pcom-i3,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 1.5, 0.0, 13.2, 83.8, 0.0, 1.5, 0.0, 62.9, 37.1, 66.9 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Sandwich - Forestdale School,02610002, 0.0, 1.9, 1.9, 96.2, 0.0, 0.0, 0.0, 93.8, 6.2, 104.0 -1,1,a-pcom-i3,2018-19,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 108.5 -1,1,a-pcom-i3,2018-19,Sandwich - Sandwich High,02610505, 0.0, 0.8, 1.6, 97.7, 0.0, 0.0, 0.0, 75.5, 24.5, 87.2 -1,1,a-pcom-i3,2018-19,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.6, 0.0, 97.4, 0.0, 0.0, 2.0, 76.5, 23.5, 51.1 -1,1,a-pcom-i3,2018-19,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 70.2, 29.8, 81.6 -1,1,a-pcom-i3,2018-19,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 31.7 -1,1,a-pcom-i3,2018-19,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 28.9 -1.25,1.25,a-pcom-i3,2018-19,Saugus - Oaklandvale,02620050, 4.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0, 94.5, 5.5, 25.1 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Saugus - Saugus High,02620505, 2.5, 0.0, 3.7, 93.8, 0.0, 0.0, 0.0, 62.5, 37.5, 80.1 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 1.9, 96.1, 0.0, 1.0, 1.0, 95.2, 4.8, 103.6 -2.093750000000001,2.09,a-pcom-i3,2018-19,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 6.7, 93.3, 0.0, 0.0, 0.0, 93.3, 6.7, 15.0 -1,1,a-pcom-i3,2018-19,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 42.2 -1,1,a-pcom-i3,2018-19,Scituate - Gates Middle School,02640305, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 79.1, 20.9, 76.5 -1,1,a-pcom-i3,2018-19,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 49.8 -1,1,a-pcom-i3,2018-19,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 55.5 -1,1,a-pcom-i3,2018-19,Scituate - Scituate High School,02640505, 1.0, 1.9, 0.0, 97.1, 0.0, 0.0, 0.0, 66.4, 33.6, 103.4 -1,1,a-pcom-i3,2018-19,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 59.7 -1,1,a-pcom-i3,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.5, 1.5, 0.0, 97.1, 0.0, 0.0, 0.0, 78.1, 21.9, 68.5 -1,1,a-pcom-i3,2018-19,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 96.9, 0.0, 0.0, 3.1, 89.1, 10.9, 64.2 -1,1,a-pcom-i3,2018-19,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 98.1, 0.0, 0.0, 1.9, 92.5, 7.5, 53.3 -1,1,a-pcom-i3,2018-19,Seekonk - Seekonk High,02650505, 0.0, 1.3, 0.6, 98.1, 0.0, 0.0, 0.0, 68.0, 32.0, 78.1 -7.906249999999999,5,a-pcom-i3,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 7.2, 2.4, 14.5, 74.7, 1.2, 0.0, 0.0, 79.5, 20.5, 83.0 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Sharon - Cottage Street,02660005, 1.3, 3.9, 0.0, 94.8, 0.0, 0.0, 0.0, 94.1, 5.9, 63.8 -1,1,a-pcom-i3,2018-19,Sharon - East Elementary,02660010, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 92.1, 7.9, 61.9 -1.7812500000000009,1.78,a-pcom-i3,2018-19,Sharon - Heights Elementary,02660015, 4.6, 1.1, 0.0, 94.3, 0.0, 0.0, 0.0, 90.8, 9.2, 87.1 -1,1,a-pcom-i3,2018-19,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.3 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Sharon - Sharon High,02660505, 0.7, 2.7, 0.7, 95.3, 0.7, 0.0, 0.0, 70.2, 29.8, 147.6 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Sharon - Sharon Middle,02660305, 1.8, 1.8, 0.0, 95.4, 0.0, 0.9, 0.0, 78.2, 21.8, 108.7 -1,1,a-pcom-i3,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.5, 1.9, 97.1, 0.0, 0.5, 0.0, 62.7, 37.3, 187.6 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Sherborn - Pine Hill,02690010, 1.4, 0.0, 1.2, 96.3, 0.0, 0.0, 1.1, 94.1, 5.9, 73.2 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Shrewsbury - Beal School,02710005, 0.0, 4.0, 2.0, 94.1, 0.0, 0.0, 0.0, 96.0, 4.0, 50.5 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Shrewsbury - Calvin Coolidge,02710015, 0.0, 1.7, 0.0, 96.6, 0.0, 0.0, 1.7, 98.3, 1.7, 58.0 -1.9062499999999982,1.91,a-pcom-i3,2018-19,Shrewsbury - Floral Street School,02710020, 0.0, 4.1, 0.0, 93.9, 1.0, 0.0, 1.0, 95.9, 4.1, 98.5 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Shrewsbury - Oak Middle School,02710030, 0.0, 3.5, 1.6, 94.1, 0.8, 0.0, 0.0, 82.6, 17.4, 126.7 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Shrewsbury - Parker Road Preschool,02710040, 2.1, 3.4, 0.0, 92.9, 0.0, 0.0, 1.6, 100.0, 0.0, 48.6 -2.3749999999999982,2.37,a-pcom-i3,2018-19,Shrewsbury - Sherwood Middle School,02710305, 0.0, 1.1, 4.8, 92.4, 0.0, 0.0, 1.7, 86.7, 13.3, 119.3 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Shrewsbury - Shrewsbury Sr High,02710505, 1.0, 1.0, 2.1, 95.4, 0.0, 0.0, 0.5, 71.8, 28.2, 193.7 -1,1,a-pcom-i3,2018-19,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 51.2 -1.8124999999999991,1.81,a-pcom-i3,2018-19,Shrewsbury - Walter J Paton,02710025, 0.0, 2.9, 1.1, 94.2, 0.0, 0.0, 1.8, 96.9, 3.1, 54.4 -2.7812500000000018,2.78,a-pcom-i3,2018-19,Shutesbury - Shutesbury Elementary,02720005, 0.0, 3.0, 3.0, 91.1, 0.0, 0.0, 3.0, 91.1, 8.9, 33.8 -1,1,a-pcom-i3,2018-19,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.5, 28.5, 141.2 -1,1,a-pcom-i3,2018-19,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.8, 26.2, 70.5 -2.96875,2.97,a-pcom-i3,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 1.7, 1.0, 6.8, 90.5, 0.0, 0.0, 0.0, 77.1, 22.9, 59.0 -1,1,a-pcom-i3,2018-19,Somerset - Chace Street,02730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 58.0 -1,1,a-pcom-i3,2018-19,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 60.5 -1,1,a-pcom-i3,2018-19,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.3, 23.7, 77.9 -1,1,a-pcom-i3,2018-19,Somerset - South,02730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 33.7 -1,1,a-pcom-i3,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.8, 1.7, 97.5, 0.0, 0.0, 0.0, 63.3, 36.7, 118.9 -5.812499999999998,5,a-pcom-i3,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 4.7, 0.0, 12.4, 81.4, 0.0, 0.0, 1.5, 91.9, 8.1, 64.7 -5.187499999999998,5,a-pcom-i3,2018-19,Somerville - Arthur D Healey,02740075, 10.6, 1.5, 4.5, 83.4, 0.0, 0.0, 0.0, 80.9, 19.1, 67.0 -1,1,a-pcom-i3,2018-19,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.0, 13.0, 22.8 -5.874999999999999,5,a-pcom-i3,2018-19,Somerville - Capuano Early Childhood Center,02740005, 2.9, 1.4, 13.0, 81.2, 0.0, 0.0, 1.4, 94.2, 5.8, 69.1 -11.124999999999998,5,a-pcom-i3,2018-19,Somerville - E Somerville Community,02740111, 3.7, 2.4, 25.9, 64.4, 2.4, 0.0, 1.2, 84.3, 15.7, 84.2 -1,1,a-pcom-i3,2018-19,Somerville - Full Circle High School,02740510, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 52.6, 47.4, 14.7 -3.343750000000001,3.34,a-pcom-i3,2018-19,Somerville - John F Kennedy,02740083, 1.3, 4.0, 4.0, 89.3, 0.0, 0.0, 1.3, 76.9, 23.1, 74.5 -1,1,a-pcom-i3,2018-19,Somerville - Next Wave Junior High,02740410, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 7.6 -5.031249999999998,5,a-pcom-i3,2018-19,Somerville - Somerville High,02740505, 5.3, 2.3, 7.9, 83.9, 0.0, 0.0, 0.6, 63.5, 36.5, 171.2 -7.843749999999998,5,a-pcom-i3,2018-19,Somerville - West Somerville Neighborhood,02740115, 10.5, 2.1, 8.2, 74.9, 0.0, 0.0, 4.2, 81.1, 18.9, 47.4 -4.406249999999998,4.41,a-pcom-i3,2018-19,Somerville - Winter Hill Community,02740120, 2.6, 2.6, 8.9, 85.9, 0.0, 0.0, 0.0, 86.1, 13.9, 77.9 -1,1,a-pcom-i3,2018-19,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.1, 25.9, 73.4 -1.0312499999999991,1.03,a-pcom-i3,2018-19,South Hadley - Mosier,02780020, 0.0, 1.6, 1.6, 96.7, 0.0, 0.0, 0.0, 87.0, 13.0, 61.5 -1,1,a-pcom-i3,2018-19,South Hadley - Plains Elementary,02780015, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 90.9, 9.1, 55.2 -1,1,a-pcom-i3,2018-19,South Hadley - South Hadley High,02780505, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 63.5, 36.5, 69.6 -2.3749999999999982,2.37,a-pcom-i3,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.8, 0.8, 5.9, 92.4, 0.0, 0.0, 0.0, 46.9, 53.1, 118.8 -2.875000000000001,2.88,a-pcom-i3,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 6.3, 1.4, 0.7, 90.8, 0.0, 0.0, 0.7, 75.8, 24.2, 138.8 -1,1,a-pcom-i3,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.1, 98.5, 0.0, 0.4, 0.0, 48.1, 51.9, 92.2 -1,1,a-pcom-i3,2018-19,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 88.0, 12.0, 66.5 -1,1,a-pcom-i3,2018-19,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 38.3 -1,1,a-pcom-i3,2018-19,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.7, 9.3, 42.8 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 2.8, 95.9, 0.0, 1.4, 0.0, 92.2, 7.8, 72.7 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 1.4, 96.1, 2.6, 0.0, 0.0, 82.5, 17.5, 73.7 -7.937500000000002,5,a-pcom-i3,2018-19,Southbridge - Charlton Street,02770005, 6.9, 0.0, 18.5, 74.6, 0.0, 0.0, 0.0, 86.1, 13.9, 43.3 -4.624999999999999,4.62,a-pcom-i3,2018-19,Southbridge - Eastford Road,02770010, 0.0, 2.1, 12.7, 85.2, 0.0, 0.0, 0.0, 89.4, 10.6, 47.3 -7.8125,5,a-pcom-i3,2018-19,Southbridge - Southbridge Academy,02770525, 6.3, 0.0, 18.8, 75.0, 0.0, 0.0, 0.0, 68.8, 31.3, 16.0 -3.59375,3.59,a-pcom-i3,2018-19,Southbridge - Southbridge High School,02770515, 1.5, 1.5, 8.5, 88.5, 0.0, 0.0, 0.0, 52.4, 46.0, 65.0 -3.90625,3.91,a-pcom-i3,2018-19,Southbridge - Southbridge Middle School,02770315, 1.7, 1.7, 9.2, 87.5, 0.0, 0.0, 0.0, 66.7, 33.3, 60.1 -2.749999999999999,2.75,a-pcom-i3,2018-19,Southbridge - West Street,02770020, 0.0, 2.2, 6.6, 91.2, 0.0, 0.0, 0.0, 93.0, 7.0, 45.2 -4.53125,4.53,a-pcom-i3,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 9.2, 2.1, 3.2, 85.5, 0.0, 0.0, 0.0, 57.6, 42.4, 189.3 -2.5312499999999982,2.53,a-pcom-i3,2018-19,Southern Berkshire - Mt Everett Regional,07650505, 3.2, 1.6, 1.6, 91.9, 0.0, 0.0, 1.6, 65.1, 34.9, 62.0 -2.9375000000000018,2.94,a-pcom-i3,2018-19,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 1.6, 90.6, 7.9, 0.0, 0.0, 80.3, 19.7, 12.7 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 6.3, 93.8, 0.0, 0.0, 0.0, 81.3, 18.8, 1.6 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Southern Berkshire - Undermountain,07650035, 0.0, 0.8, 2.5, 96.7, 0.0, 0.0, 0.0, 91.5, 8.5, 60.2 -1,1,a-pcom-i3,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 57.0, 43.0, 165.0 -1,1,a-pcom-i3,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 88.8, 11.2, 62.7 -1.4999999999999991,1.5,a-pcom-i3,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 2.9, 95.2, 0.0, 0.0, 1.9, 71.2, 28.8, 104.7 -1,1,a-pcom-i3,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 96.9, 3.1, 65.2 -1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.4, 40.6, 41.3 -1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 43.7 -1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 75.4, 24.6, 51.2 -1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 92.1, 7.9, 65.2 -9.562499999999998,5,a-pcom-i3,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 8.2, 0.0, 22.4, 69.4, 0.0, 0.0, 0.0, 89.8, 10.2, 49.0 -7.8125,5,a-pcom-i3,2018-19,Springfield - Alice B Beal Elementary,02810175, 18.8, 3.1, 3.1, 75.0, 0.0, 0.0, 0.0, 87.5, 12.5, 32.0 -5.531250000000001,5,a-pcom-i3,2018-19,Springfield - Arthur T Talmadge,02810165, 7.6, 2.5, 7.6, 82.3, 0.0, 0.0, 0.0, 94.9, 5.1, 39.5 -4.187500000000002,4.19,a-pcom-i3,2018-19,Springfield - Balliet Middle School,02810360, 7.1, 0.0, 6.3, 86.6, 0.0, 0.0, 0.0, 53.8, 46.2, 15.8 -9.6875,5,a-pcom-i3,2018-19,Springfield - Brightwood,02810025, 0.0, 0.0, 31.0, 69.0, 0.0, 0.0, 0.0, 81.0, 19.0, 42.0 -9.812500000000002,5,a-pcom-i3,2018-19,Springfield - Chestnut Academy,02810365, 11.5, 0.0, 19.9, 68.6, 0.0, 0.0, 0.0, 55.8, 44.2, 45.2 -15.46875,5,a-pcom-i3,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 24.2, 2.1, 23.2, 50.5, 0.0, 0.0, 0.0, 71.6, 28.4, 47.5 -13.531249999999998,5,a-pcom-i3,2018-19,Springfield - Conservatory of the Arts,02810475, 17.3, 0.0, 26.0, 56.7, 0.0, 0.0, 0.0, 75.0, 25.0, 52.0 -3.843749999999999,3.84,a-pcom-i3,2018-19,Springfield - Daniel B Brunton,02810035, 5.3, 0.0, 7.0, 87.7, 0.0, 0.0, 0.0, 94.7, 5.3, 57.0 -8.125,5,a-pcom-i3,2018-19,Springfield - Early Childhood Education Center,02810001, 13.0, 0.0, 13.0, 74.0, 0.0, 0.0, 0.0, 97.4, 2.6, 38.5 -11.031249999999998,5,a-pcom-i3,2018-19,Springfield - Edward P. Boland School,02810010, 12.8, 1.0, 21.6, 64.7, 0.0, 0.0, 0.0, 90.2, 9.8, 101.9 -12.03125,5,a-pcom-i3,2018-19,Springfield - Elias Brookings,02810030, 23.1, 1.9, 13.5, 61.5, 0.0, 0.0, 0.0, 92.3, 7.7, 52.0 -4.624999999999999,4.62,a-pcom-i3,2018-19,Springfield - Forest Park Middle,02810325, 6.2, 1.2, 7.4, 85.2, 0.0, 0.0, 0.0, 75.9, 24.1, 81.0 -16.40625,5,a-pcom-i3,2018-19,Springfield - Frank H Freedman,02810075, 45.0, 0.0, 7.5, 47.5, 0.0, 0.0, 0.0, 82.5, 17.5, 40.0 -7.718750000000001,5,a-pcom-i3,2018-19,Springfield - Frederick Harris,02810080, 3.9, 1.3, 19.5, 75.3, 0.0, 0.0, 0.0, 92.2, 7.8, 77.0 -31.25,5,a-pcom-i3,2018-19,Springfield - Gateway to College at Holyoke Community College,02810575, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 -31.25,5,a-pcom-i3,2018-19,Springfield - Gateway to College at Springfield Technical Community College,02810580, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 -12.468749999999998,5,a-pcom-i3,2018-19,Springfield - German Gerena Community School,02810195, 7.5, 0.0, 32.4, 60.1, 0.0, 0.0, 0.0, 91.5, 8.5, 106.5 -4.937499999999999,4.94,a-pcom-i3,2018-19,Springfield - Glenwood,02810065, 2.6, 0.0, 13.2, 84.2, 0.0, 0.0, 0.0, 97.4, 2.6, 38.0 -8.125,5,a-pcom-i3,2018-19,Springfield - Glickman Elementary,02810068, 8.0, 0.0, 18.0, 74.0, 0.0, 0.0, 0.0, 94.0, 6.0, 50.0 -13.374999999999998,5,a-pcom-i3,2018-19,Springfield - High School Of Commerce,02810510, 16.7, 0.7, 25.4, 57.2, 0.0, 0.0, 0.0, 63.0, 37.0, 138.0 -5.218750000000001,5,a-pcom-i3,2018-19,Springfield - Hiram L Dorman,02810050, 11.9, 0.0, 4.8, 83.3, 0.0, 0.0, 0.0, 90.5, 9.5, 42.0 -5.0,5.0,a-pcom-i3,2018-19,Springfield - Homer Street,02810085, 10.0, 0.0, 6.0, 84.0, 0.0, 0.0, 0.0, 92.0, 8.0, 50.0 -16.59375,5,a-pcom-i3,2018-19,Springfield - Impact Prep at Chestnut,02810366, 21.0, 0.0, 29.6, 46.9, 0.0, 0.0, 2.5, 64.2, 35.8, 40.5 -4.874999999999998,4.87,a-pcom-i3,2018-19,Springfield - Indian Orchard Elementary,02810100, 7.8, 0.0, 7.8, 84.4, 0.0, 0.0, 0.0, 93.5, 6.5, 77.0 -13.59375,5,a-pcom-i3,2018-19,Springfield - John F Kennedy Middle,02810328, 28.3, 2.2, 10.9, 56.5, 0.0, 0.0, 2.2, 60.9, 39.1, 46.0 -11.531249999999998,5,a-pcom-i3,2018-19,Springfield - John J Duggan Middle,02810320, 27.1, 1.0, 8.9, 63.1, 0.0, 0.0, 0.0, 66.0, 34.0, 101.5 -6.25,5,a-pcom-i3,2018-19,Springfield - Kensington International School,02810110, 10.0, 0.0, 10.0, 80.0, 0.0, 0.0, 0.0, 90.0, 10.0, 40.0 -8.531249999999998,5,a-pcom-i3,2018-19,Springfield - Liberty,02810115, 21.2, 0.0, 6.1, 72.7, 0.0, 0.0, 0.0, 100.0, 0.0, 33.0 -13.406249999999998,5,a-pcom-i3,2018-19,Springfield - Liberty Preparatory Academy,02810560, 29.2, 0.0, 13.8, 57.1, 0.0, 0.0, 0.0, 70.4, 29.6, 7.3 -11.0,5,a-pcom-i3,2018-19,Springfield - Lincoln,02810120, 13.6, 0.0, 21.6, 64.8, 0.0, 0.0, 0.0, 90.9, 9.1, 44.0 -12.71875,5,a-pcom-i3,2018-19,Springfield - M Marcus Kiley Middle,02810330, 24.6, 0.0, 16.0, 59.3, 0.0, 0.0, 0.0, 71.6, 28.4, 87.3 -8.843749999999998,5,a-pcom-i3,2018-19,Springfield - Margaret C Ells,02810060, 10.9, 0.0, 17.4, 71.7, 0.0, 0.0, 0.0, 91.3, 8.7, 46.0 -5.46875,5,a-pcom-i3,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 5.0, 0.0, 12.5, 82.5, 0.0, 0.0, 0.0, 92.5, 7.5, 40.0 -9.0625,5,a-pcom-i3,2018-19,Springfield - Mary M Lynch,02810140, 16.1, 0.0, 12.9, 71.0, 0.0, 0.0, 0.0, 93.5, 6.5, 31.0 -6.71875,5,a-pcom-i3,2018-19,Springfield - Mary M Walsh,02810155, 4.3, 2.1, 15.0, 78.5, 0.0, 0.0, 0.0, 89.3, 10.7, 46.5 -7.000000000000002,5,a-pcom-i3,2018-19,Springfield - Mary O Pottenger,02810145, 8.2, 0.0, 14.3, 77.6, 0.0, 0.0, 0.0, 95.9, 4.1, 49.0 -8.312499999999998,5,a-pcom-i3,2018-19,Springfield - Milton Bradley School,02810023, 3.8, 0.0, 22.8, 73.4, 0.0, 0.0, 0.0, 89.9, 10.1, 79.0 -17.8125,5,a-pcom-i3,2018-19,Springfield - Rebecca M Johnson,02810055, 38.6, 0.0, 18.4, 43.0, 0.0, 0.0, 0.0, 86.5, 13.5, 103.5 -13.125,5,a-pcom-i3,2018-19,Springfield - Rise Academy at Van Sickle,02810480, 22.2, 2.5, 14.8, 58.0, 0.0, 0.0, 2.5, 70.4, 29.6, 40.5 -8.875000000000002,5,a-pcom-i3,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 11.1, 3.7, 13.7, 71.6, 0.0, 0.0, 0.0, 52.5, 47.5, 190.0 -10.406249999999998,5,a-pcom-i3,2018-19,Springfield - STEM Middle Academy,02810350, 23.3, 0.0, 10.0, 66.7, 0.0, 0.0, 0.0, 66.7, 33.3, 30.0 -7.999999999999998,5,a-pcom-i3,2018-19,Springfield - Samuel Bowles,02810020, 7.7, 2.6, 15.4, 74.4, 0.0, 0.0, 0.0, 92.3, 7.7, 39.0 -11.40625,5,a-pcom-i3,2018-19,Springfield - South End Middle School,02810355, 9.9, 0.0, 26.5, 63.5, 0.0, 0.0, 0.0, 81.2, 18.8, 30.2 -7.593749999999999,5,a-pcom-i3,2018-19,Springfield - Springfield Central High,02810500, 10.1, 2.3, 11.0, 75.7, 0.0, 0.0, 0.9, 55.4, 44.6, 218.5 -12.437499999999998,5,a-pcom-i3,2018-19,Springfield - Springfield High School,02810570, 32.6, 0.0, 7.2, 60.2, 0.0, 0.0, 0.0, 59.4, 40.6, 28.0 -11.374999999999998,5,a-pcom-i3,2018-19,Springfield - Springfield High School of Science and Technology,02810530, 15.0, 2.3, 17.9, 63.6, 0.0, 0.0, 1.2, 62.4, 37.6, 173.1 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Springfield - Springfield International Academy at Johnson,02810215, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 96.2, 3.8, 2.6 -6.937500000000001,5,a-pcom-i3,2018-19,Springfield - Springfield International Academy at Sci-Tech,02810700, 0.0, 0.0, 22.2, 77.8, 0.0, 0.0, 0.0, 52.6, 47.4, 4.4 -14.656249999999998,5,a-pcom-i3,2018-19,Springfield - Springfield Public Day Elementary School,02810005, 30.3, 0.0, 16.6, 53.1, 0.0, 0.0, 0.0, 86.7, 13.3, 30.1 -19.312499999999996,5,a-pcom-i3,2018-19,Springfield - Springfield Public Day High School,02810550, 45.2, 0.0, 16.6, 38.2, 0.0, 0.0, 0.0, 67.8, 32.2, 30.1 -9.187500000000002,5,a-pcom-i3,2018-19,Springfield - Springfield Public Day Middle School,02810345, 17.0, 0.0, 12.4, 70.6, 0.0, 0.0, 0.0, 67.0, 33.0, 24.3 -8.34375,5,a-pcom-i3,2018-19,Springfield - Springfield Vocational Academy,02810675, 9.5, 0.0, 17.2, 73.3, 0.0, 0.0, 0.0, 70.9, 29.1, 11.6 -6.937500000000001,5,a-pcom-i3,2018-19,Springfield - Sumner Avenue,02810160, 11.1, 1.2, 9.9, 77.8, 0.0, 0.0, 0.0, 91.4, 8.6, 81.0 -9.781249999999998,5,a-pcom-i3,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 16.0, 1.2, 13.0, 68.7, 0.0, 0.0, 1.2, 83.5, 16.5, 84.6 -10.6875,5,a-pcom-i3,2018-19,Springfield - Thomas M Balliet,02810015, 18.4, 0.0, 15.8, 65.8, 0.0, 0.0, 0.0, 92.1, 7.9, 38.0 -10.874999999999998,5,a-pcom-i3,2018-19,Springfield - Van Sickle Academy,02810485, 12.9, 0.0, 21.9, 65.2, 0.0, 0.0, 0.0, 76.0, 24.0, 38.8 -9.031250000000002,5,a-pcom-i3,2018-19,Springfield - Warner,02810180, 21.1, 0.0, 7.9, 71.1, 0.0, 0.0, 0.0, 92.1, 7.9, 38.0 -6.000000000000001,5,a-pcom-i3,2018-19,Springfield - Washington,02810185, 7.7, 0.0, 11.5, 80.8, 0.0, 0.0, 0.0, 96.2, 3.8, 52.0 -4.562499999999998,4.56,a-pcom-i3,2018-19,Springfield - White Street,02810190, 6.3, 0.0, 8.3, 85.4, 0.0, 0.0, 0.0, 97.9, 2.1, 48.0 -11.625,5,a-pcom-i3,2018-19,Springfield - William N. DeBerry,02810045, 16.3, 0.0, 20.9, 62.8, 0.0, 0.0, 0.0, 93.0, 7.0, 43.0 -6.843750000000002,5,a-pcom-i3,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 14.0, 0.0, 7.9, 78.1, 0.0, 0.0, 0.0, 91.8, 8.2, 34.3 -1,1,a-pcom-i3,2018-19,Stoneham - Colonial Park,02840005, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 95.9, 4.1, 55.4 -1,1,a-pcom-i3,2018-19,Stoneham - Robin Hood,02840025, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 92.1, 7.9, 50.5 -1,1,a-pcom-i3,2018-19,Stoneham - South,02840030, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 94.7, 5.3, 38.0 -1.5625,1.56,a-pcom-i3,2018-19,Stoneham - Stoneham Central Middle School,02840405, 1.0, 1.0, 1.0, 95.0, 0.0, 0.0, 2.0, 72.6, 27.4, 100.5 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Stoneham - Stoneham High,02840505, 1.1, 2.1, 0.0, 96.8, 0.0, 0.0, 0.0, 74.5, 25.5, 94.0 -1.7499999999999982,1.75,a-pcom-i3,2018-19,Stoughton - Edwin A Jones Early Childhood Center,02850012, 3.9, 0.0, 1.7, 94.4, 0.0, 0.0, 0.0, 98.3, 1.7, 22.3 -1,1,a-pcom-i3,2018-19,Stoughton - Helen Hansen Elementary,02850010, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 87.4, 12.6, 35.4 -1,1,a-pcom-i3,2018-19,Stoughton - Joseph H Gibbons,02850025, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 93.2, 6.8, 45.0 -1,1,a-pcom-i3,2018-19,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 89.4, 10.6, 46.4 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Stoughton - O'Donnell Middle School,02850405, 2.1, 2.0, 0.0, 94.9, 1.0, 0.0, 0.0, 80.3, 19.7, 95.8 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Stoughton - Richard L. Wilkins Elementary School,02850020, 0.0, 0.9, 2.3, 94.6, 0.0, 0.0, 2.3, 91.8, 8.2, 44.2 -1,1,a-pcom-i3,2018-19,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 28.5 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Stoughton - Stoughton High,02850505, 1.1, 0.2, 1.0, 96.1, 0.8, 0.0, 0.8, 68.8, 31.2, 129.3 -1,1,a-pcom-i3,2018-19,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 133.2 -1.25,1.25,a-pcom-i3,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.7, 1.5, 1.8, 96.0, 0.0, 0.0, 0.0, 68.2, 31.8, 136.6 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Sudbury - Ephraim Curtis Middle,02880305, 0.9, 0.5, 0.0, 96.7, 0.0, 0.0, 1.9, 71.8, 28.2, 107.6 -1,1,a-pcom-i3,2018-19,Sudbury - General John Nixon Elementary,02880025, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 88.1, 11.9, 51.5 -2.749999999999999,2.75,a-pcom-i3,2018-19,Sudbury - Israel Loring School,02880015, 2.6, 1.7, 1.4, 91.2, 0.0, 0.0, 3.1, 91.5, 8.5, 58.0 -1,1,a-pcom-i3,2018-19,Sudbury - Josiah Haynes,02880010, 1.5, 0.0, 0.8, 97.7, 0.0, 0.0, 0.0, 93.5, 6.5, 66.4 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Sudbury - Peter Noyes,02880030, 0.0, 0.0, 1.3, 96.2, 0.0, 0.0, 2.6, 93.4, 6.6, 78.2 -1.09375,1.09,a-pcom-i3,2018-19,Sunderland - Sunderland Elementary,02890005, 0.0, 1.7, 1.7, 96.5, 0.0, 0.0, 0.0, 91.3, 8.7, 57.3 -1,1,a-pcom-i3,2018-19,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.3, 0.7, 55.9 -1,1,a-pcom-i3,2018-19,Sutton - Sutton Elementary,02900005, 2.0, 0.8, 0.0, 97.3, 0.0, 0.0, 0.0, 94.9, 5.1, 51.3 -1,1,a-pcom-i3,2018-19,Sutton - Sutton High School,02900510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 57.6, 42.4, 54.2 -1,1,a-pcom-i3,2018-19,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.3, 25.7, 43.6 -1,1,a-pcom-i3,2018-19,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 99.4, 0.0, 0.0, 0.6, 96.8, 3.2, 38.7 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Swampscott - Hadley,02910010, 0.0, 0.0, 2.2, 96.1, 0.0, 0.0, 1.7, 89.8, 10.2, 45.0 -1,1,a-pcom-i3,2018-19,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 97.5, 0.0, 0.0, 2.5, 82.8, 17.2, 40.8 -1.9687499999999991,1.97,a-pcom-i3,2018-19,Swampscott - Swampscott High,02910505, 1.7, 1.2, 3.5, 93.7, 0.0, 0.0, 0.0, 66.5, 33.5, 86.8 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Swampscott - Swampscott Middle,02910305, 1.4, 0.0, 1.0, 96.6, 0.0, 0.0, 1.0, 87.6, 12.4, 104.1 -1,1,a-pcom-i3,2018-19,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 28.1 -1,1,a-pcom-i3,2018-19,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 24.3 -1,1,a-pcom-i3,2018-19,Swansea - Joseph Case High,02920505, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 42.4, 57.6, 62.9 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Swansea - Joseph Case Jr High,02920305, 1.8, 0.0, 1.8, 96.3, 0.0, 0.0, 0.0, 68.7, 31.3, 54.4 -1,1,a-pcom-i3,2018-19,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.5, 15.5, 21.6 -1,1,a-pcom-i3,2018-19,Swansea - Mark G Hoyle Elementary,02920017, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 92.3, 7.7, 32.8 -2.8437499999999982,2.84,a-pcom-i3,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 2.5, 4.9, 1.6, 90.9, 0.0, 0.0, 0.0, 69.9, 30.1, 121.2 -1,1,a-pcom-i3,2018-19,Tantasqua - Tantasqua Regional Jr High,07700405, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 77.5, 22.5, 74.3 -1,1,a-pcom-i3,2018-19,Tantasqua - Tantasqua Regional Sr High,07700505, 0.8, 0.0, 0.5, 97.9, 0.0, 0.0, 0.8, 63.5, 36.5, 127.1 -1,1,a-pcom-i3,2018-19,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 29.8, 70.2, 15.5 -1,1,a-pcom-i3,2018-19,Taunton - Benjamin Friedman Middle,02930315, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 77.3, 22.7, 76.1 -1,1,a-pcom-i3,2018-19,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 80.6 -1,1,a-pcom-i3,2018-19,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 35.5 -1,1,a-pcom-i3,2018-19,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 34.8 -1,1,a-pcom-i3,2018-19,Taunton - Elizabeth Pole,02930027, 0.0, 1.5, 1.5, 97.0, 0.0, 0.0, 0.0, 93.4, 6.6, 65.9 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Taunton - H H Galligan,02930057, 0.0, 0.0, 5.4, 94.6, 0.0, 0.0, 0.0, 99.1, 0.9, 37.2 -1,1,a-pcom-i3,2018-19,Taunton - Hopewell,02930035, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 91.3, 8.7, 38.5 -1.71875,1.72,a-pcom-i3,2018-19,Taunton - John F Parker Middle,02930305, 2.7, 0.0, 2.7, 94.5, 0.0, 0.0, 0.0, 82.2, 17.8, 54.6 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Taunton - Joseph C Chamberlain,02930008, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 97.9, 2.1, 63.2 -1,1,a-pcom-i3,2018-19,Taunton - Joseph H Martin,02930042, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 84.0, 16.0, 67.4 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 96.4, 3.6, 55.0 -1,1,a-pcom-i3,2018-19,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.1, 37.9, 11.2 -1.4999999999999991,1.5,a-pcom-i3,2018-19,Taunton - Taunton High,02930505, 1.7, 0.4, 2.3, 95.2, 0.0, 0.0, 0.4, 64.9, 35.1, 239.3 -1,1,a-pcom-i3,2018-19,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 97.4, 2.6, 39.0 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Tewksbury - John F. Ryan,02950023, 2.7, 0.0, 1.4, 94.6, 0.0, 0.0, 1.4, 88.4, 11.6, 73.4 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Tewksbury - John W. Wynn Middle,02950305, 0.0, 2.8, 1.4, 95.9, 0.0, 0.0, 0.0, 73.0, 27.0, 72.3 -1.4374999999999982,1.44,a-pcom-i3,2018-19,Tewksbury - L F Dewing,02950001, 1.2, 2.3, 1.2, 95.4, 0.0, 0.0, 0.0, 96.5, 3.5, 86.7 -1,1,a-pcom-i3,2018-19,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 28.0 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Tewksbury - North Street,02950020, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 97.7, 2.3, 42.7 -1,1,a-pcom-i3,2018-19,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 63.4, 36.6, 112.1 -2.8125,2.81,a-pcom-i3,2018-19,Tisbury - Tisbury Elementary,02960005, 1.6, 0.0, 6.0, 91.0, 0.0, 0.0, 1.4, 85.7, 14.3, 73.5 -1,1,a-pcom-i3,2018-19,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 92.7, 7.3, 42.9 -1,1,a-pcom-i3,2018-19,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 94.9, 5.1, 57.8 -1,1,a-pcom-i3,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.8, 0.8, 0.0, 98.4, 0.0, 0.0, 0.0, 61.2, 38.8, 128.3 -1,1,a-pcom-i3,2018-19,Triton - Newbury Elementary,07730020, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 88.7, 11.3, 79.7 -1,1,a-pcom-i3,2018-19,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 60.3 -1,1,a-pcom-i3,2018-19,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 69.4 -1,1,a-pcom-i3,2018-19,Triton - Triton Regional High School,07730505, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 59.1, 40.9, 91.2 -1,1,a-pcom-i3,2018-19,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.5, 25.5, 51.4 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Truro - Truro Central,03000005, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 83.8, 16.2, 30.9 -1,1,a-pcom-i3,2018-19,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 90.0, 10.0, 110.6 -1,1,a-pcom-i3,2018-19,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.1, 33.9, 53.9 -1,1,a-pcom-i3,2018-19,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 68.4, 31.6, 51.9 -10.249999999999998,5,a-pcom-i3,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 16.8, 7.6, 6.7, 67.2, 0.0, 0.0, 1.7, 63.0, 37.0, 59.5 -11.875,5,a-pcom-i3,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 26.9, 2.9, 7.0, 62.0, 0.0, 0.0, 1.2, 76.6, 23.4, 85.5 -1,1,a-pcom-i3,2018-19,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 9.3 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Up-Island Regional - West Tisbury Elementary,07740020, 0.3, 0.0, 2.1, 96.1, 0.0, 0.0, 1.5, 89.3, 10.7, 66.8 -1,1,a-pcom-i3,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 99.0, 1.0, 0.0, 0.0, 39.8, 60.2, 104.7 -31.25,5,a-pcom-i3,2018-19,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1,1,a-pcom-i3,2018-19,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 94.3, 5.7, 83.6 -1,1,a-pcom-i3,2018-19,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.3, 32.7, 76.5 -1,1,a-pcom-i3,2018-19,Uxbridge - Whitin Intermediate,03040405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 60.5 -8.218749999999998,5,a-pcom-i3,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 19.1, 0.0, 7.2, 73.7, 0.0, 0.0, 0.0, 85.7, 14.3, 41.9 -1,1,a-pcom-i3,2018-19,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.5, 22.5, 55.0 -1,1,a-pcom-i3,2018-19,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 83.9, 16.1, 51.3 -1,1,a-pcom-i3,2018-19,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 85.8, 14.2, 56.3 -1,1,a-pcom-i3,2018-19,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 58.1 -1.71875,1.72,a-pcom-i3,2018-19,Wachusett - Early Childhood Center,07750001, 1.8, 1.8, 1.8, 94.5, 0.0, 0.0, 0.0, 100.0, 0.0, 54.2 -1,1,a-pcom-i3,2018-19,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 98.0, 0.0, 2.0, 0.0, 87.9, 12.1, 49.7 -1,1,a-pcom-i3,2018-19,Wachusett - Houghton Elementary,07750027, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 96.6, 3.4, 59.5 -1,1,a-pcom-i3,2018-19,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 49.8 -1,1,a-pcom-i3,2018-19,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 80.4, 19.6, 77.5 -1,1,a-pcom-i3,2018-19,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 47.7 -1,1,a-pcom-i3,2018-19,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.0, 17.0, 52.7 -1,1,a-pcom-i3,2018-19,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 44.6 -1,1,a-pcom-i3,2018-19,Wachusett - Wachusett Regional High,07750505, 0.0, 0.4, 0.4, 99.2, 0.0, 0.0, 0.0, 71.3, 28.7, 238.7 -1.4999999999999991,1.5,a-pcom-i3,2018-19,Wakefield - Dolbeare,03050005, 0.0, 1.6, 1.6, 95.2, 1.6, 0.0, 0.0, 87.6, 12.4, 62.1 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 100.0, 0.0, 25.5 -1,1,a-pcom-i3,2018-19,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 76.0, 24.0, 122.5 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Wakefield - Greenwood,03050020, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 95.6, 4.4, 29.3 -1,1,a-pcom-i3,2018-19,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.9, 1.0, 98.1, 0.0, 0.0, 0.0, 66.3, 33.7, 115.6 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Wakefield - Walton,03050040, 0.0, 4.2, 0.0, 95.8, 0.0, 0.0, 0.0, 97.1, 2.9, 24.1 -1.09375,1.09,a-pcom-i3,2018-19,Wakefield - Woodville School,03050015, 0.0, 0.0, 1.8, 96.5, 0.0, 0.0, 1.8, 95.9, 4.1, 56.6 -1,1,a-pcom-i3,2018-19,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.3, 0.7, 21.3 -1.5625,1.56,a-pcom-i3,2018-19,Walpole - Bird Middle,03070305, 0.0, 3.3, 1.7, 95.0, 0.0, 0.0, 0.0, 80.9, 19.1, 60.1 -1,1,a-pcom-i3,2018-19,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 50.7 -1.5312500000000018,1.53,a-pcom-i3,2018-19,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 92.9, 7.1, 15.6 -1,1,a-pcom-i3,2018-19,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.8, 21.2, 59.0 -1,1,a-pcom-i3,2018-19,Walpole - Elm Street School,03070005, 0.0, 1.3, 1.0, 97.7, 0.0, 0.0, 0.0, 98.1, 1.9, 51.4 -1,1,a-pcom-i3,2018-19,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 56.5 -1,1,a-pcom-i3,2018-19,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 46.8 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Walpole - Walpole High,03070505, 0.0, 2.0, 2.2, 95.8, 0.0, 0.0, 0.0, 67.3, 32.7, 138.1 -1,1,a-pcom-i3,2018-19,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 58.2 -4.906250000000001,4.91,a-pcom-i3,2018-19,Waltham - Henry Whittemore Elementary School,03080065, 3.4, 0.2, 8.7, 84.3, 0.0, 1.7, 1.7, 91.1, 8.9, 58.7 -1,1,a-pcom-i3,2018-19,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 1.8, 98.0, 0.0, 0.0, 0.2, 91.7, 8.3, 54.4 -2.593749999999999,2.59,a-pcom-i3,2018-19,Waltham - John F Kennedy Middle,03080404, 0.0, 4.7, 2.4, 91.7, 0.0, 0.0, 1.2, 78.0, 22.0, 84.7 -2.65625,2.66,a-pcom-i3,2018-19,Waltham - John W. McDevitt Middle School,03080415, 2.1, 0.0, 5.3, 91.5, 0.0, 0.0, 1.1, 69.2, 30.8, 93.8 -2.34375,2.34,a-pcom-i3,2018-19,Waltham - Northeast Elementary School,03080040, 2.4, 1.9, 2.0, 92.5, 0.0, 0.0, 1.2, 93.7, 6.3, 81.7 -1.8124999999999991,1.81,a-pcom-i3,2018-19,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.4, 5.1, 94.2, 0.0, 0.0, 0.3, 91.1, 8.9, 58.9 -18.218749999999996,5,a-pcom-i3,2018-19,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 2.8, 55.6, 41.7, 0.0, 0.0, 0.0, 96.8, 3.2, 10.8 -4.0625,4.06,a-pcom-i3,2018-19,Waltham - Waltham Sr High,03080505, 3.9, 1.4, 6.3, 87.0, 0.0, 0.5, 0.9, 65.4, 34.6, 213.0 -1.71875,1.72,a-pcom-i3,2018-19,Waltham - William F. Stanley Elementary School,03080005, 1.9, 0.2, 2.2, 94.5, 0.0, 0.0, 1.2, 93.6, 6.4, 92.4 -1,1,a-pcom-i3,2018-19,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 93.0, 7.0, 57.1 -2.281249999999999,2.28,a-pcom-i3,2018-19,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 7.3, 92.7, 0.0, 0.0, 0.0, 75.5, 24.5, 68.6 -1.4999999999999991,1.5,a-pcom-i3,2018-19,Ware - Ware Middle School,03090305, 2.4, 0.0, 2.4, 95.2, 0.0, 0.0, 0.0, 85.5, 14.5, 41.3 -1,1,a-pcom-i3,2018-19,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 92.3 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 95.9, 0.0, 0.0, 4.1, 94.6, 5.4, 51.6 -1,1,a-pcom-i3,2018-19,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.2, 22.8, 3.5 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Wareham - Wareham Middle,03100305, 1.6, 0.0, 0.0, 96.2, 0.0, 0.0, 2.2, 86.0, 14.0, 63.6 -3.031250000000001,3.03,a-pcom-i3,2018-19,Wareham - Wareham Senior High,03100505, 3.2, 1.1, 0.0, 90.3, 0.0, 0.0, 5.4, 66.4, 33.6, 92.6 -1,1,a-pcom-i3,2018-19,Watertown - Cunniff,03140015, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 92.0, 8.0, 50.2 -1,1,a-pcom-i3,2018-19,Watertown - Hosmer,03140020, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 87.9, 12.1, 128.4 -1,1,a-pcom-i3,2018-19,Watertown - James Russell Lowell,03140025, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 85.9, 14.1, 63.9 -1,1,a-pcom-i3,2018-19,Watertown - Watertown High,03140505, 1.9, 0.9, 0.0, 97.2, 0.0, 0.0, 0.0, 56.8, 43.2, 106.9 -1,1,a-pcom-i3,2018-19,Watertown - Watertown Middle,03140305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.4, 22.6, 75.7 -2.6250000000000018,2.63,a-pcom-i3,2018-19,Wayland - Claypit Hill School,03150005, 1.8, 1.2, 2.8, 91.6, 0.0, 1.2, 1.2, 93.6, 6.4, 80.8 -2.749999999999999,2.75,a-pcom-i3,2018-19,Wayland - Happy Hollow School,03150015, 0.6, 6.4, 1.8, 91.2, 0.0, 0.0, 0.0, 93.6, 6.4, 55.9 -1,1,a-pcom-i3,2018-19,Wayland - Loker School,03150020, 0.7, 2.2, 0.0, 97.1, 0.0, 0.0, 0.0, 88.0, 12.0, 45.5 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Wayland - Wayland High School,03150505, 2.8, 1.0, 0.8, 93.8, 0.8, 0.0, 0.8, 68.4, 31.6, 123.5 -3.0937500000000018,3.09,a-pcom-i3,2018-19,Wayland - Wayland Middle School,03150305, 0.0, 1.8, 6.9, 90.1, 0.0, 0.0, 1.2, 71.1, 28.9, 86.5 -2.1562500000000018,2.16,a-pcom-i3,2018-19,Webster - Bartlett High School,03160505, 3.4, 0.0, 1.7, 93.1, 0.0, 0.0, 1.7, 69.9, 30.1, 58.1 -1,1,a-pcom-i3,2018-19,Webster - Park Avenue Elementary,03160015, 0.9, 0.0, 0.9, 98.2, 0.0, 0.0, 0.0, 95.5, 4.5, 110.5 -1,1,a-pcom-i3,2018-19,Webster - Webster Middle School,03160315, 1.3, 0.0, 1.3, 97.3, 0.0, 0.0, 0.0, 77.9, 22.1, 74.7 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Wellesley - Ernest F Upham,03170050, 0.0, 1.8, 2.5, 95.7, 0.0, 0.0, 0.0, 92.3, 7.7, 56.1 -4.125000000000001,4.13,a-pcom-i3,2018-19,Wellesley - Hunnewell,03170025, 1.6, 2.3, 4.7, 86.8, 0.0, 0.0, 4.6, 94.2, 5.8, 43.7 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Wellesley - John D Hardy,03170020, 0.0, 2.5, 3.4, 94.1, 0.0, 0.0, 0.0, 91.3, 8.7, 40.1 -1,1,a-pcom-i3,2018-19,Wellesley - Joseph E Fiske,03170015, 2.1, 0.0, 0.4, 97.5, 0.0, 0.0, 0.0, 96.9, 3.1, 48.1 -2.03125,2.03,a-pcom-i3,2018-19,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 4.2, 93.5, 0.0, 0.0, 2.3, 100.0, 0.0, 43.2 -2.9375000000000018,2.94,a-pcom-i3,2018-19,Wellesley - Preschool at Wellesley Schools,03170001, 2.4, 4.7, 2.4, 90.6, 0.0, 0.0, 0.0, 100.0, 0.0, 42.5 -1.9375000000000009,1.94,a-pcom-i3,2018-19,Wellesley - Schofield,03170045, 0.0, 1.9, 4.3, 93.8, 0.0, 0.0, 0.0, 90.3, 9.7, 51.4 -1.5937499999999982,1.59,a-pcom-i3,2018-19,Wellesley - Sprague Elementary School,03170048, 1.7, 0.0, 0.0, 94.9, 0.0, 0.0, 3.4, 93.2, 6.8, 58.8 -2.65625,2.66,a-pcom-i3,2018-19,Wellesley - Wellesley Middle,03170305, 2.4, 2.6, 1.9, 91.5, 0.0, 0.0, 1.5, 75.7, 24.3, 179.4 -3.343750000000001,3.34,a-pcom-i3,2018-19,Wellesley - Wellesley Sr High,03170505, 3.3, 3.6, 0.8, 89.3, 0.4, 0.0, 2.5, 65.3, 34.7, 239.4 -1,1,a-pcom-i3,2018-19,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 29.1 -1,1,a-pcom-i3,2018-19,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 58.0 -2.250000000000001,2.25,a-pcom-i3,2018-19,West Boylston - West Boylston Junior/Senior High,03220505, 1.4, 1.4, 2.9, 92.8, 0.0, 0.0, 1.4, 67.0, 33.0, 69.4 -1,1,a-pcom-i3,2018-19,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.3, 14.7, 29.5 -1,1,a-pcom-i3,2018-19,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 29.7 -1,1,a-pcom-i3,2018-19,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 26.6 -1,1,a-pcom-i3,2018-19,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 70.9, 29.1, 64.3 -1,1,a-pcom-i3,2018-19,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 24.9 -1.4999999999999991,1.5,a-pcom-i3,2018-19,West Springfield - John Ashley,03320005, 4.8, 0.0, 0.0, 95.2, 0.0, 0.0, 0.0, 94.8, 5.2, 42.0 -1.3750000000000018,1.38,a-pcom-i3,2018-19,West Springfield - John R Fausey,03320010, 1.5, 0.0, 2.9, 95.6, 0.0, 0.0, 0.0, 92.6, 7.4, 68.0 -1.0625000000000018,1.06,a-pcom-i3,2018-19,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 96.6, 0.0, 0.0, 3.4, 85.5, 14.5, 29.5 -1,1,a-pcom-i3,2018-19,West Springfield - Mittineague,03320030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 22.7 -1,1,a-pcom-i3,2018-19,West Springfield - Philip G Coburn,03320007, 1.4, 1.4, 0.0, 97.2, 0.0, 0.0, 0.0, 95.5, 4.5, 71.1 -1,1,a-pcom-i3,2018-19,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.0, 13.0, 41.1 -2.406250000000001,2.41,a-pcom-i3,2018-19,West Springfield - West Springfield High,03320505, 1.3, 0.6, 5.8, 92.3, 0.0, 0.0, 0.0, 66.3, 33.7, 156.2 -1,1,a-pcom-i3,2018-19,West Springfield - West Springfield Middle,03320305, 0.0, 0.8, 1.6, 97.5, 0.0, 0.0, 0.0, 72.1, 27.9, 121.4 -1,1,a-pcom-i3,2018-19,Westborough - Annie E Fales,03210010, 0.0, 1.7, 0.0, 97.0, 0.0, 0.0, 1.3, 97.2, 2.8, 59.8 -2.124999999999999,2.12,a-pcom-i3,2018-19,Westborough - Elsie A Hastings Elementary,03210025, 1.1, 5.7, 0.0, 93.2, 0.0, 0.0, 0.0, 96.4, 3.6, 91.2 -2.093750000000001,2.09,a-pcom-i3,2018-19,Westborough - J Harding Armstrong,03210005, 1.7, 5.0, 0.0, 93.3, 0.0, 0.0, 0.0, 96.7, 3.3, 59.9 -1.0312499999999991,1.03,a-pcom-i3,2018-19,Westborough - Mill Pond School,03210045, 0.0, 1.7, 0.8, 96.7, 0.0, 0.0, 0.8, 87.3, 12.7, 119.7 -1,1,a-pcom-i3,2018-19,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 1.6, 1.2, 97.3, 0.0, 0.0, 0.0, 78.7, 21.3, 85.3 -1.09375,1.09,a-pcom-i3,2018-19,Westborough - Westborough High,03210505, 0.0, 1.3, 0.8, 96.5, 0.8, 0.8, 0.0, 68.8, 31.2, 133.1 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 98.6, 1.4, 24.4 -4.125000000000001,4.13,a-pcom-i3,2018-19,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 7.9, 5.3, 86.8, 0.0, 0.0, 0.0, 100.0, 0.0, 37.9 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 96.3, 0.0, 0.0, 3.7, 96.0, 4.0, 27.2 -2.6874999999999982,2.69,a-pcom-i3,2018-19,Westfield - Highland,03250025, 0.0, 3.4, 3.4, 91.4, 1.7, 0.0, 0.0, 91.4, 8.6, 58.3 -2.093750000000001,2.09,a-pcom-i3,2018-19,Westfield - Munger Hill,03250033, 3.3, 0.0, 3.3, 93.3, 0.0, 0.0, 0.0, 94.1, 5.9, 59.9 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Westfield - Paper Mill,03250036, 0.0, 0.0, 1.8, 96.4, 0.0, 0.0, 1.8, 95.6, 4.4, 55.5 -1,1,a-pcom-i3,2018-19,Westfield - Southampton Road,03250040, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 98.6, 1.4, 40.0 -1,1,a-pcom-i3,2018-19,Westfield - Westfield High,03250505, 0.0, 1.2, 0.6, 97.5, 0.6, 0.0, 0.0, 75.4, 24.6, 160.9 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Westfield - Westfield Intermediate School,03250075, 2.1, 1.0, 1.0, 95.8, 0.0, 0.0, 0.0, 84.3, 15.7, 96.2 -1,1,a-pcom-i3,2018-19,Westfield - Westfield Middle School,03250310, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 78.0, 22.0, 100.7 -1,1,a-pcom-i3,2018-19,Westfield - Westfield Technical Academy,03250605, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 50.8, 49.2, 91.3 -1,1,a-pcom-i3,2018-19,Westford - Abbot Elementary,03260004, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 97.4, 2.6, 47.0 -2.2187499999999982,2.22,a-pcom-i3,2018-19,Westford - Blanchard Middle,03260310, 0.0, 5.6, 1.4, 92.9, 0.0, 0.0, 0.0, 88.0, 12.0, 70.8 -1.40625,1.41,a-pcom-i3,2018-19,Westford - Col John Robinson,03260025, 0.0, 2.3, 2.3, 95.5, 0.0, 0.0, 0.0, 96.6, 3.4, 44.4 -1,1,a-pcom-i3,2018-19,Westford - Day Elementary,03260007, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 91.7, 8.3, 48.4 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 1.9, 1.9, 96.2, 0.0, 0.0, 0.0, 96.8, 3.2, 52.4 -2.1875,2.19,a-pcom-i3,2018-19,Westford - Millennium Elementary,03260013, 0.0, 7.0, 0.0, 93.0, 0.0, 0.0, 0.0, 96.5, 3.5, 28.4 -1,1,a-pcom-i3,2018-19,Westford - Nabnasset,03260015, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 97.5, 2.5, 48.0 -2.124999999999999,2.12,a-pcom-i3,2018-19,Westford - Rita E. Miller Elementary School,03260055, 1.7, 5.1, 0.0, 93.2, 0.0, 0.0, 0.0, 98.3, 1.7, 58.7 -1,1,a-pcom-i3,2018-19,Westford - Stony Brook School,03260330, 1.2, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 82.9, 17.1, 84.6 -1.6875000000000018,1.69,a-pcom-i3,2018-19,Westford - Westford Academy,03260505, 0.0, 3.6, 1.2, 94.6, 0.0, 0.0, 0.6, 60.1, 39.9, 166.1 -1,1,a-pcom-i3,2018-19,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 27.7 -2.0000000000000018,2.0,a-pcom-i3,2018-19,Weston - Country,03300010, 1.5, 0.0, 2.9, 93.6, 0.0, 0.0, 2.1, 86.3, 13.7, 48.5 -2.906249999999999,2.91,a-pcom-i3,2018-19,Weston - Field Elementary School,03300012, 2.3, 4.7, 2.3, 90.7, 0.0, 0.0, 0.0, 88.7, 11.3, 42.9 -4.968750000000002,4.97,a-pcom-i3,2018-19,Weston - Weston High,03300505, 3.0, 7.8, 3.5, 84.1, 0.0, 0.8, 0.9, 65.5, 34.5, 111.3 -3.2500000000000018,3.25,a-pcom-i3,2018-19,Weston - Weston Middle,03300305, 3.7, 4.3, 1.2, 89.6, 0.0, 0.0, 1.2, 71.0, 29.0, 81.6 -3.187500000000001,3.19,a-pcom-i3,2018-19,Weston - Woodland,03300015, 0.0, 1.7, 7.0, 89.8, 1.6, 0.0, 0.0, 95.1, 4.9, 45.7 -1,1,a-pcom-i3,2018-19,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 54.0 -1,1,a-pcom-i3,2018-19,Westport - Westport Elementary,03310030, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 90.0, 10.0, 68.2 -1,1,a-pcom-i3,2018-19,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.7, 36.3, 79.4 -1,1,a-pcom-i3,2018-19,Westwood - Deerfield School,03350010, 0.0, 2.4, 0.0, 97.3, 0.0, 0.0, 0.2, 91.4, 8.6, 41.2 -1.4687500000000009,1.47,a-pcom-i3,2018-19,Westwood - Downey,03350012, 0.0, 1.7, 1.7, 95.3, 0.0, 0.0, 1.2, 96.2, 3.8, 57.8 -1.8437500000000018,1.84,a-pcom-i3,2018-19,Westwood - E W Thurston Middle,03350305, 2.0, 1.0, 2.0, 94.1, 0.0, 0.0, 1.0, 73.5, 26.5, 101.8 -1,1,a-pcom-i3,2018-19,Westwood - Martha Jones,03350017, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 89.6, 10.4, 38.2 -1,1,a-pcom-i3,2018-19,Westwood - Paul Hanlon,03350015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 28.4 -2.250000000000001,2.25,a-pcom-i3,2018-19,Westwood - Westwood High,03350505, 1.5, 1.5, 3.5, 92.8, 0.0, 0.0, 0.7, 67.7, 32.3, 136.7 -1.9062499999999982,1.91,a-pcom-i3,2018-19,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 6.1, 93.9, 0.0, 0.0, 0.0, 100.0, 0.0, 16.5 -1,1,a-pcom-i3,2018-19,Westwood - William E Sheehan,03350025, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 92.8, 7.2, 48.5 -1,1,a-pcom-i3,2018-19,Weymouth - Abigail Adams Middle School,03360310, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 71.1, 28.9, 102.7 -1,1,a-pcom-i3,2018-19,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 28.3 -1,1,a-pcom-i3,2018-19,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 93.0, 7.0, 38.2 -2.124999999999999,2.12,a-pcom-i3,2018-19,Weymouth - Johnson Early Childhood Center,03360003, 2.3, 2.3, 2.3, 93.2, 0.0, 0.0, 0.0, 98.0, 2.0, 44.1 -1,1,a-pcom-i3,2018-19,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 30.7 -1.09375,1.09,a-pcom-i3,2018-19,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 1.7, 96.5, 0.9, 0.0, 0.9, 63.4, 36.6, 114.4 -1,1,a-pcom-i3,2018-19,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 33.1 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 91.6, 8.4, 28.0 -1,1,a-pcom-i3,2018-19,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 35.1 -1,1,a-pcom-i3,2018-19,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 36.7 -1,1,a-pcom-i3,2018-19,Weymouth - Weymouth High School,03360505, 0.9, 0.9, 0.4, 97.3, 0.0, 0.0, 0.4, 66.6, 33.4, 223.4 -1,1,a-pcom-i3,2018-19,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 42.7 -1,1,a-pcom-i3,2018-19,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 30.4 -1.5625,1.56,a-pcom-i3,2018-19,Whitman-Hanson - Hanson Middle School,07800315, 1.7, 1.7, 1.6, 95.0, 0.0, 0.0, 0.0, 80.7, 19.3, 59.1 -1,1,a-pcom-i3,2018-19,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 50.6 -1.09375,1.09,a-pcom-i3,2018-19,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 1.7, 96.5, 0.0, 0.0, 1.7, 93.5, 6.5, 57.3 -1.0625000000000018,1.06,a-pcom-i3,2018-19,Whitman-Hanson - Louise A Conley,07800010, 1.7, 1.7, 0.0, 96.6, 0.0, 0.0, 0.0, 91.1, 8.9, 51.3 -1,1,a-pcom-i3,2018-19,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.8, 0.0, 0.0, 99.2, 0.0, 0.0, 0.0, 70.0, 30.0, 121.9 -1.1249999999999982,1.12,a-pcom-i3,2018-19,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 76.6, 23.4, 56.1 -1,1,a-pcom-i3,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 51.4, 48.6, 136.1 -1,1,a-pcom-i3,2018-19,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 28.1 -1,1,a-pcom-i3,2018-19,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 28.4 -1,1,a-pcom-i3,2018-19,Wilmington - North Intermediate,03420060, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 95.4, 4.6, 32.4 -1,1,a-pcom-i3,2018-19,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 46.6 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Wilmington - West Intermediate,03420080, 0.0, 3.2, 0.0, 96.8, 0.0, 0.0, 0.0, 93.5, 6.5, 30.8 -1,1,a-pcom-i3,2018-19,Wilmington - Wildwood,03420015, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 90.4, 9.6, 36.6 -1.5625,1.56,a-pcom-i3,2018-19,Wilmington - Wilmington High,03420505, 0.3, 1.9, 1.9, 95.0, 0.9, 0.0, 0.0, 72.9, 27.1, 106.6 -1,1,a-pcom-i3,2018-19,Wilmington - Wilmington Middle School,03420330, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.8, 20.2, 110.9 -1,1,a-pcom-i3,2018-19,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.1, 12.9, 46.4 -1,1,a-pcom-i3,2018-19,Winchendon - Memorial,03430040, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 96.3, 3.7, 40.8 -1,1,a-pcom-i3,2018-19,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 35.1, 64.9, 3.7 -1.71875,1.72,a-pcom-i3,2018-19,Winchendon - Murdock High School,03430515, 2.7, 0.0, 2.7, 94.5, 0.0, 0.0, 0.0, 72.4, 27.6, 36.5 -1,1,a-pcom-i3,2018-19,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 76.0, 24.0, 33.4 -1,1,a-pcom-i3,2018-19,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.5, 11.5, 39.0 -1,1,a-pcom-i3,2018-19,Winchendon - Winchendon PreSchool Program,03430010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.2 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Winchester - Ambrose Elementary,03440045, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 95.4, 4.6, 53.1 -1,1,a-pcom-i3,2018-19,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 46.2 -1,1,a-pcom-i3,2018-19,Winchester - Lynch Elementary,03440020, 0.0, 1.1, 1.1, 97.8, 0.0, 0.0, 0.0, 91.9, 7.0, 92.8 -1.0000000000000009,1.0,a-pcom-i3,2018-19,Winchester - McCall Middle,03440305, 0.8, 0.8, 1.6, 96.8, 0.0, 0.0, 0.0, 77.4, 22.6, 124.9 -1,1,a-pcom-i3,2018-19,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 52.3 -1,1,a-pcom-i3,2018-19,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 55.0 -1,1,a-pcom-i3,2018-19,Winchester - Winchester High School,03440505, 0.7, 0.0, 0.7, 98.6, 0.0, 0.0, 0.0, 65.1, 34.9, 142.2 -1.2187500000000018,1.22,a-pcom-i3,2018-19,Winthrop - Arthur T. Cummings Elementary School,03460020, 2.0, 2.0, 0.0, 96.1, 0.0, 0.0, 0.0, 87.2, 12.8, 50.7 -1,1,a-pcom-i3,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 79.5 -1,1,a-pcom-i3,2018-19,Winthrop - Winthrop High School,03460505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 58.0, 42.0, 67.2 -1.1562500000000009,1.16,a-pcom-i3,2018-19,Winthrop - Winthrop Middle School,03460305, 0.0, 3.7, 0.0, 96.3, 0.0, 0.0, 0.0, 72.9, 27.1, 54.4 -1,1,a-pcom-i3,2018-19,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 60.2 -1.6562499999999991,1.66,a-pcom-i3,2018-19,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.2, 4.1, 94.7, 0.0, 0.0, 0.0, 78.0, 22.0, 84.6 -1,1,a-pcom-i3,2018-19,Woburn - Goodyear Elementary School,03470005, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 91.8, 8.2, 44.1 -1,1,a-pcom-i3,2018-19,Woburn - Hurld-Wyman Elementary School,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 35.2 -1.1874999999999991,1.19,a-pcom-i3,2018-19,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 74.2, 25.8, 66.0 -1,1,a-pcom-i3,2018-19,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 26.6 -1,1,a-pcom-i3,2018-19,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 35.6 -1,1,a-pcom-i3,2018-19,Woburn - Mary D Altavesta,03470065, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 87.6, 12.4, 35.9 -1,1,a-pcom-i3,2018-19,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 69.9 -1.5625,1.56,a-pcom-i3,2018-19,Woburn - Woburn High,03470505, 1.3, 0.6, 3.1, 95.0, 0.0, 0.0, 0.0, 64.7, 35.3, 159.1 -2.34375,2.34,a-pcom-i3,2018-19,Worcester - Belmont Street Community,03480020, 0.0, 0.0, 7.5, 92.5, 0.0, 0.0, 0.0, 91.2, 8.8, 56.0 -5.78125,5,a-pcom-i3,2018-19,Worcester - Burncoat Middle School,03480405, 7.1, 0.0, 11.4, 81.5, 0.0, 0.0, 0.0, 71.6, 28.4, 79.0 -3.4687499999999982,3.47,a-pcom-i3,2018-19,Worcester - Burncoat Senior High,03480503, 1.6, 0.0, 8.7, 88.9, 0.0, 0.0, 0.8, 59.2, 40.8, 125.9 -4.437500000000001,4.44,a-pcom-i3,2018-19,Worcester - Burncoat Street,03480035, 2.4, 0.0, 9.4, 85.8, 0.0, 2.5, 0.0, 91.3, 8.7, 42.5 -1.2812499999999982,1.28,a-pcom-i3,2018-19,Worcester - Canterbury,03480045, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 93.6, 6.4, 46.2 -4.937499999999999,4.94,a-pcom-i3,2018-19,Worcester - Chandler Elementary Community,03480050, 2.1, 1.2, 12.5, 84.2, 0.0, 0.0, 0.0, 93.8, 6.2, 48.6 -9.6875,5,a-pcom-i3,2018-19,Worcester - Chandler Magnet,03480052, 1.2, 1.2, 26.3, 69.0, 1.2, 1.2, 0.0, 86.2, 13.8, 85.8 -3.3124999999999982,3.31,a-pcom-i3,2018-19,Worcester - City View,03480053, 1.8, 0.0, 8.8, 89.4, 0.0, 0.0, 0.0, 91.0, 9.0, 58.9 -7.468750000000002,5,a-pcom-i3,2018-19,Worcester - Claremont Academy,03480350, 8.6, 2.4, 12.9, 76.1, 0.0, 0.0, 0.0, 68.8, 31.2, 58.2 -3.968750000000001,3.97,a-pcom-i3,2018-19,Worcester - Clark St Community,03480055, 2.4, 4.9, 5.4, 87.3, 0.0, 0.0, 0.0, 89.9, 10.1, 41.0 -1.875,1.88,a-pcom-i3,2018-19,Worcester - Columbus Park,03480060, 1.9, 0.0, 4.1, 94.0, 0.0, 0.0, 0.0, 88.4, 11.6, 51.8 -3.0937500000000018,3.09,a-pcom-i3,2018-19,Worcester - Doherty Memorial High,03480512, 0.7, 0.0, 7.4, 90.1, 0.0, 0.0, 1.8, 61.0, 39.0, 135.0 -6.09375,5,a-pcom-i3,2018-19,Worcester - Elm Park Community,03480095, 4.0, 0.0, 12.1, 80.5, 0.0, 0.0, 3.4, 86.6, 13.4, 58.5 -1,1,a-pcom-i3,2018-19,Worcester - Flagg Street,03480090, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 92.4, 7.6, 35.8 -5.375000000000001,5,a-pcom-i3,2018-19,Worcester - Forest Grove Middle,03480415, 6.6, 1.0, 7.7, 82.8, 0.0, 0.0, 1.9, 71.2, 28.8, 105.3 -3.4375,3.44,a-pcom-i3,2018-19,Worcester - Francis J McGrath Elementary,03480177, 0.0, 7.7, 3.4, 89.0, 0.0, 0.0, 0.0, 84.0, 16.0, 26.8 -2.906249999999999,2.91,a-pcom-i3,2018-19,Worcester - Gates Lane,03480110, 3.8, 1.2, 4.3, 90.7, 0.0, 0.0, 0.0, 93.1, 6.9, 104.2 -5.249999999999999,5,a-pcom-i3,2018-19,Worcester - Goddard School/Science Technical,03480100, 0.0, 1.6, 15.1, 83.2, 0.0, 0.0, 0.0, 93.3, 6.7, 60.8 -3.968750000000001,3.97,a-pcom-i3,2018-19,Worcester - Grafton Street,03480115, 2.1, 5.2, 5.5, 87.3, 0.0, 0.0, 0.0, 89.1, 10.9, 48.5 -9.343750000000002,5,a-pcom-i3,2018-19,Worcester - Head Start,03480002, 5.3, 3.2, 20.3, 70.1, 0.0, 0.0, 1.1, 98.9, 1.1, 93.7 -5.656249999999998,5,a-pcom-i3,2018-19,Worcester - Heard Street,03480136, 7.1, 0.0, 3.9, 81.9, 3.5, 0.0, 3.5, 94.7, 5.3, 28.2 -4.593750000000001,4.59,a-pcom-i3,2018-19,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 4.0, 5.9, 85.3, 0.0, 0.0, 4.7, 94.6, 5.4, 43.3 -4.0625,4.06,a-pcom-i3,2018-19,Worcester - Lake View,03480145, 4.9, 2.9, 5.2, 87.0, 0.0, 0.0, 0.0, 86.7, 13.3, 34.3 -5.218750000000001,5,a-pcom-i3,2018-19,Worcester - Lincoln Street,03480160, 0.0, 2.8, 13.9, 83.3, 0.0, 0.0, 0.0, 94.0, 6.0, 35.4 -2.96875,2.97,a-pcom-i3,2018-19,Worcester - May Street,03480175, 3.2, 3.0, 3.2, 90.5, 0.0, 0.0, 0.0, 90.4, 9.6, 31.0 -3.59375,3.59,a-pcom-i3,2018-19,Worcester - Midland Street,03480185, 0.0, 3.9, 3.7, 88.5, 0.0, 0.0, 3.9, 98.5, 1.5, 26.9 -2.562500000000001,2.56,a-pcom-i3,2018-19,Worcester - Nelson Place,03480200, 3.4, 0.0, 4.8, 91.8, 0.0, 0.0, 0.0, 97.3, 2.7, 88.3 -5.906250000000002,5,a-pcom-i3,2018-19,Worcester - Norrback Avenue,03480202, 5.6, 1.1, 11.1, 81.1, 0.0, 0.0, 1.1, 94.3, 5.7, 89.9 -8.781249999999998,5,a-pcom-i3,2018-19,Worcester - North High,03480515, 10.9, 2.9, 12.9, 71.9, 0.0, 0.0, 1.4, 61.6, 38.4, 138.2 -5.375000000000001,5,a-pcom-i3,2018-19,Worcester - Quinsigamond,03480210, 1.2, 5.9, 7.8, 82.8, 0.0, 0.0, 2.3, 89.4, 10.6, 85.6 -7.562500000000001,5,a-pcom-i3,2018-19,Worcester - Rice Square,03480215, 4.6, 4.9, 12.1, 75.8, 0.0, 0.0, 2.7, 93.0, 7.0, 41.8 -5.0,5.0,a-pcom-i3,2018-19,Worcester - Roosevelt,03480220, 2.1, 0.0, 14.0, 84.0, 0.0, 0.0, 0.0, 91.3, 8.7, 96.8 -5.531250000000001,5,a-pcom-i3,2018-19,Worcester - South High Community,03480520, 6.2, 0.7, 9.5, 82.3, 0.0, 0.0, 1.4, 72.0, 28.0, 146.0 -5.687500000000001,5,a-pcom-i3,2018-19,Worcester - Sullivan Middle,03480423, 3.5, 0.9, 12.9, 81.8, 0.0, 0.0, 0.9, 73.7, 26.3, 114.3 -1.6250000000000009,1.63,a-pcom-i3,2018-19,Worcester - Tatnuck,03480230, 2.6, 0.0, 2.6, 94.8, 0.0, 0.0, 0.0, 93.5, 6.5, 38.4 -1.3125000000000009,1.31,a-pcom-i3,2018-19,Worcester - Thorndyke Road,03480235, 0.0, 1.4, 2.9, 95.8, 0.0, 0.0, 0.0, 95.4, 4.6, 37.0 -3.1562499999999982,3.16,a-pcom-i3,2018-19,Worcester - Union Hill School,03480240, 2.3, 0.0, 7.9, 89.9, 0.0, 0.0, 0.0, 81.6, 18.4, 43.7 -5.218750000000001,5,a-pcom-i3,2018-19,Worcester - University Pk Campus School,03480285, 5.3, 0.0, 7.6, 83.3, 0.0, 0.0, 3.8, 70.6, 29.4, 26.3 -4.562499999999998,4.56,a-pcom-i3,2018-19,Worcester - Vernon Hill School,03480280, 7.6, 1.7, 5.3, 85.4, 0.0, 0.0, 0.0, 89.0, 11.0, 59.9 -1,1,a-pcom-i3,2018-19,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 99.2, 0.8, 26.2 -2.9999999999999982,3.0,a-pcom-i3,2018-19,Worcester - West Tatnuck,03480260, 2.1, 0.0, 5.4, 90.4, 0.0, 0.0, 2.1, 94.6, 5.4, 47.8 -4.187500000000002,4.19,a-pcom-i3,2018-19,Worcester - Woodland Academy,03480030, 0.0, 1.9, 9.6, 86.6, 0.0, 0.0, 1.9, 90.0, 10.0, 53.0 -1,1,a-pcom-i3,2018-19,Worcester - Worcester Arts Magnet School,03480225, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 94.9, 5.1, 37.8 -8.374999999999998,5,a-pcom-i3,2018-19,Worcester - Worcester East Middle,03480420, 11.0, 4.9, 11.0, 73.2, 0.0, 0.0, 0.0, 62.5, 37.5, 82.0 -2.65625,2.66,a-pcom-i3,2018-19,Worcester - Worcester Technical High,03480605, 2.3, 1.1, 4.5, 91.5, 0.0, 0.0, 0.6, 49.0, 51.0, 176.8 -1,1,a-pcom-i3,2018-19,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.3, 16.0 -1,1,a-pcom-i3,2018-19,Wrentham - Charles E Roderick,03500010, 0.0, 0.3, 0.0, 99.7, 0.0, 0.0, 0.0, 94.8, 5.2, 63.0 -1.3437499999999991,1.34,a-pcom-i3,2018-19,Wrentham - Delaney,03500003, 0.0, 3.7, 0.6, 95.7, 0.0, 0.0, 0.0, 95.2, 4.8, 96.7 -2.437499999999999,2.44,a-pcom-i3,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 3.9, 0.9, 1.8, 92.2, 0.0, 0.0, 1.2, 79.5, 20.5, 165.1 -1,1,a-pcom-i3,2017-18,Abington - Abington Early Education Program,00010001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 13.0 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Abington - Abington High,00010505, 0.0, 1.1, 2.5, 96.4, 0.0, 0.0, 0.0, 73.2, 26.8, 60.3 -2.250000000000001,2.25,a-pcom-i3,2017-18,Abington - Abington Middle School,00010405, 3.0, 0.5, 3.7, 92.8, 0.0, 0.0, 0.0, 80.4, 19.6, 67.3 -1,1,a-pcom-i3,2017-18,Abington - Beaver Brook Elementary,00010020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.4, 0.6, 52.7 -1,1,a-pcom-i3,2017-18,Abington - Woodsdale Elementary School,00010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 37.4 -11.5625,5,a-pcom-i3,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 23.0, 4.9, 5.7, 63.0, 0.0, 0.0, 3.4, 65.4, 34.6, 69.7 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 1.1, 2.8, 0.5, 94.6, 0.5, 0.0, 0.5, 76.0, 24.0, 189.4 -1,1,a-pcom-i3,2017-18,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 89.9, 10.1, 72.0 -1,1,a-pcom-i3,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 94.4, 5.6, 53.8 -2.250000000000001,2.25,a-pcom-i3,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 7.2, 0.0, 92.8, 0.0, 0.0, 0.0, 96.4, 3.6, 27.6 -1.9687499999999991,1.97,a-pcom-i3,2017-18,Acton-Boxborough - Luther Conant School,06000030, 0.0, 5.3, 1.0, 93.7, 0.0, 0.0, 0.0, 96.9, 3.1, 64.9 -1,1,a-pcom-i3,2017-18,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 1.6, 1.0, 97.4, 0.0, 0.0, 0.0, 93.7, 6.3, 63.5 -1.7812500000000009,1.78,a-pcom-i3,2017-18,Acton-Boxborough - Merriam School,06000010, 1.3, 3.1, 1.3, 94.3, 0.0, 0.0, 0.0, 93.3, 6.7, 74.7 -1.25,1.25,a-pcom-i3,2017-18,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 4.0, 0.0, 96.0, 0.0, 0.0, 0.0, 94.6, 5.4, 56.2 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 2.9, 1.0, 96.2, 0.0, 0.0, 0.0, 78.9, 21.1, 105.2 -1,1,a-pcom-i3,2017-18,Acushnet - Acushnet Elementary School,00030025, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 95.8, 4.2, 64.0 -1,1,a-pcom-i3,2017-18,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 73.1, 26.9, 44.2 -1,1,a-pcom-i3,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,06030020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 84.0 -1,1,a-pcom-i3,2017-18,Adams-Cheshire - Hoosac Valley High School,06030505, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 73.2, 26.8, 55.1 -1,1,a-pcom-i3,2017-18,Adams-Cheshire - Hoosac Valley Middle School,06030315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.1, 21.9, 56.6 -2.749999999999999,2.75,a-pcom-i3,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 3.3, 1.5, 91.2, 0.0, 0.0, 4.0, 59.8, 40.2, 120.1 -1,1,a-pcom-i3,2017-18,Agawam - Agawam Early Childhood Center,00050003, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 99.7, 0.3, 45.8 -1,1,a-pcom-i3,2017-18,Agawam - Agawam High,00050505, 0.1, 0.0, 0.6, 99.3, 0.0, 0.0, 0.0, 69.8, 30.2, 158.0 -1,1,a-pcom-i3,2017-18,Agawam - Agawam Junior High,00050405, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 76.5, 23.5, 85.7 -1,1,a-pcom-i3,2017-18,Agawam - Benjamin J Phelps,00050020, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 92.3, 7.7, 59.8 -1,1,a-pcom-i3,2017-18,Agawam - Clifford M Granger,00050010, 0.3, 0.0, 1.9, 97.8, 0.0, 0.0, 0.0, 96.3, 3.7, 51.9 -1.09375,1.09,a-pcom-i3,2017-18,Agawam - James Clark School,00050030, 1.9, 0.0, 1.6, 96.5, 0.0, 0.0, 0.0, 96.5, 3.5, 61.4 -1.6250000000000009,1.63,a-pcom-i3,2017-18,Agawam - Roberta G. Doering School,00050303, 4.0, 0.0, 1.3, 94.8, 0.0, 0.0, 0.0, 83.9, 16.1, 79.0 -1,1,a-pcom-i3,2017-18,Agawam - Robinson Park,00050025, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 94.3, 5.7, 63.5 -5.625,5,a-pcom-i3,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 4.0, 0.0, 12.0, 82.0, 0.0, 2.0, 0.0, 72.0, 28.0, 50.0 -1,1,a-pcom-i3,2017-18,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 59.5 -1,1,a-pcom-i3,2017-18,Amesbury - Amesbury High,00070505, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 69.8, 30.2, 45.2 -1,1,a-pcom-i3,2017-18,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 39.3, 60.7, 8.6 -1,1,a-pcom-i3,2017-18,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 73.2, 26.8, 84.6 -1,1,a-pcom-i3,2017-18,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 65.8 -4.812500000000002,4.81,a-pcom-i3,2017-18,Amherst - Crocker Farm Elementary,00080009, 1.2, 1.2, 9.5, 84.6, 0.0, 0.0, 3.6, 90.4, 9.6, 84.4 -5.15625,5,a-pcom-i3,2017-18,Amherst - Fort River Elementary,00080020, 1.1, 2.9, 11.4, 83.5, 0.0, 0.0, 1.1, 77.0, 23.0, 91.9 -11.46875,5,a-pcom-i3,2017-18,Amherst - Wildwood Elementary,00080050, 14.1, 5.7, 13.6, 63.3, 0.0, 0.0, 3.3, 78.0, 22.0, 92.2 -5.906250000000002,5,a-pcom-i3,2017-18,Amherst-Pelham - Amherst Regional High,06050505, 7.8, 1.2, 7.4, 81.1, 0.0, 0.0, 2.6, 63.5, 36.5, 154.7 -8.156249999999998,5,a-pcom-i3,2017-18,Amherst-Pelham - Amherst Regional Middle School,06050405, 9.8, 0.2, 12.5, 73.9, 0.0, 0.0, 3.7, 67.1, 32.9, 81.9 -2.34375,2.34,a-pcom-i3,2017-18,Andover - Andover High,00090505, 0.5, 1.5, 4.6, 92.5, 0.0, 0.5, 0.5, 70.2, 29.8, 204.3 -1,1,a-pcom-i3,2017-18,Andover - Andover West Middle,00090310, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 84.3, 15.7, 72.0 -1.71875,1.72,a-pcom-i3,2017-18,Andover - Bancroft Elementary,00090003, 1.1, 3.6, 0.8, 94.5, 0.0, 0.0, 0.0, 94.5, 5.5, 82.4 -1.5625,1.56,a-pcom-i3,2017-18,Andover - Doherty Middle,00090305, 0.0, 3.7, 1.2, 95.0, 0.0, 0.0, 0.0, 86.5, 13.5, 80.8 -1,1,a-pcom-i3,2017-18,Andover - Henry C Sanborn Elementary,00090010, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 88.8, 11.2, 53.2 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Andover - High Plain Elementary,00090004, 0.0, 3.7, 1.2, 95.1, 0.0, 0.0, 0.0, 96.3, 3.7, 81.5 -3.4062500000000018,3.41,a-pcom-i3,2017-18,Andover - Shawsheen School,00090005, 0.0, 5.4, 5.5, 89.1, 0.0, 0.0, 0.0, 94.9, 5.1, 32.5 -1,1,a-pcom-i3,2017-18,Andover - South Elementary,00090020, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 94.5, 5.5, 70.6 -1,1,a-pcom-i3,2017-18,Andover - West Elementary,00090025, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 88.6, 11.4, 98.9 -1,1,a-pcom-i3,2017-18,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 80.4, 19.6, 69.9 -2.124999999999999,2.12,a-pcom-i3,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 4.5, 0.0, 0.0, 93.2, 0.0, 0.0, 2.3, 70.7, 29.3, 44.4 -2.1562500000000018,2.16,a-pcom-i3,2017-18,Arlington - Arlington High,00100505, 2.1, 1.3, 3.5, 93.1, 0.0, 0.0, 0.0, 59.5, 40.5, 142.0 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Arlington - Brackett,00100010, 0.0, 1.8, 3.5, 91.1, 0.0, 1.8, 1.8, 92.9, 7.1, 56.4 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Arlington - Cyrus E Dallin,00100025, 0.0, 3.3, 0.0, 95.1, 0.0, 0.0, 1.6, 88.0, 12.0, 61.3 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Arlington - Hardy,00100030, 0.0, 3.7, 1.9, 94.4, 0.0, 0.0, 0.0, 95.1, 4.9, 54.0 -1,1,a-pcom-i3,2017-18,Arlington - John A Bishop,00100005, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 89.7, 10.3, 40.0 -1,1,a-pcom-i3,2017-18,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 89.8, 10.2, 61.8 -2.124999999999999,2.12,a-pcom-i3,2017-18,Arlington - Menotomy Preschool,00100038, 0.0, 0.0, 3.4, 93.2, 0.0, 0.0, 3.4, 96.6, 3.4, 29.5 -2.437499999999999,2.44,a-pcom-i3,2017-18,Arlington - Ottoson Middle,00100410, 1.4, 3.6, 1.4, 92.2, 0.0, 0.0, 1.4, 77.8, 22.2, 143.5 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Arlington - Peirce,00100045, 2.7, 2.7, 0.0, 94.6, 0.0, 0.0, 0.0, 98.1, 1.9, 37.1 -1.40625,1.41,a-pcom-i3,2017-18,Arlington - Thompson,00100050, 1.8, 1.8, 0.0, 95.5, 0.0, 0.0, 0.9, 92.9, 7.1, 56.0 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Ashburnham-Westminster - Briggs Elementary,06100025, 1.4, 0.0, 0.0, 95.8, 0.0, 0.0, 2.8, 88.5, 11.5, 72.2 -1,1,a-pcom-i3,2017-18,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.4, 1.6, 20.4 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Ashburnham-Westminster - Oakmont Regional High School,06100505, 2.3, 0.0, 2.6, 95.1, 0.0, 0.0, 0.0, 57.7, 42.3, 85.6 -1,1,a-pcom-i3,2017-18,Ashburnham-Westminster - Overlook Middle School,06100305, 1.7, 0.0, 0.3, 98.0, 0.0, 0.0, 0.0, 78.2, 21.8, 59.7 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Ashburnham-Westminster - Westminster Elementary,06100005, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 92.4, 7.6, 42.0 -1,1,a-pcom-i3,2017-18,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.4, 33.6, 80.2 -1,1,a-pcom-i3,2017-18,Ashland - Ashland Middle,00140405, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 70.6, 29.4, 70.2 -1,1,a-pcom-i3,2017-18,Ashland - David Mindess,00140015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 73.3 -1,1,a-pcom-i3,2017-18,Ashland - Henry E Warren Elementary,00140010, 0.0, 1.2, 0.6, 98.2, 0.0, 0.0, 0.0, 98.8, 1.2, 84.4 -2.96875,2.97,a-pcom-i3,2017-18,Ashland - William Pittaway Elementary,00140005, 0.0, 6.4, 3.2, 90.5, 0.0, 0.0, 0.0, 100.0, 0.0, 31.4 -1.8437500000000018,1.84,a-pcom-i3,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.7, 0.7, 4.6, 94.1, 0.0, 0.0, 0.0, 49.8, 50.2, 151.5 -1,1,a-pcom-i3,2017-18,Athol-Royalston - Athol Community Elementary School,06150020, 0.6, 0.0, 0.0, 99.4, 0.0, 0.0, 0.0, 93.4, 6.6, 72.5 -1,1,a-pcom-i3,2017-18,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 67.6, 32.4, 49.3 -1,1,a-pcom-i3,2017-18,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.5, 31.5, 47.6 -1,1,a-pcom-i3,2017-18,Athol-Royalston - Royalston Community School,06150050, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 93.6, 6.4, 19.8 -1,1,a-pcom-i3,2017-18,Atlantis Charter (District) - Atlantis Charter School,04910550, 0.9, 0.0, 0.9, 96.9, 0.0, 0.0, 1.2, 83.8, 16.2, 163.5 -1,1,a-pcom-i3,2017-18,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 97.7, 2.3, 48.4 -6.000000000000001,5,a-pcom-i3,2017-18,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 19.2, 80.8, 0.0, 0.0, 0.0, 88.5, 11.5, 5.8 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Attleboro - Attleboro High,00160505, 0.6, 0.0, 4.4, 94.4, 0.0, 0.0, 0.6, 68.2, 31.8, 179.0 -1,1,a-pcom-i3,2017-18,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 99.1, 0.0, 0.0, 0.9, 83.1, 16.9, 58.0 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 96.4, 0.0, 0.0, 3.6, 99.3, 0.7, 27.6 -1,1,a-pcom-i3,2017-18,Attleboro - Hill-Roberts Elementary School,00160045, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 96.2, 3.8, 42.1 -2.3125000000000018,2.31,a-pcom-i3,2017-18,Attleboro - Hyman Fine Elementary School,00160040, 0.0, 0.0, 7.4, 92.6, 0.0, 0.0, 0.0, 93.8, 6.2, 40.3 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 1.5, 0.0, 95.6, 0.0, 0.0, 2.9, 95.6, 4.4, 68.5 -1,1,a-pcom-i3,2017-18,Attleboro - Robert J. Coelho Middle School,00160305, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 75.4, 24.6, 56.2 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 2.4, 2.4, 95.3, 0.0, 0.0, 0.0, 95.0, 5.0, 42.3 -2.8437499999999982,2.84,a-pcom-i3,2017-18,Attleboro - Wamsutta Middle School,00160320, 2.0, 0.0, 4.1, 90.9, 2.0, 0.0, 1.0, 70.1, 29.9, 49.1 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Auburn - Auburn Middle,00170305, 0.0, 1.4, 1.5, 95.6, 0.0, 0.0, 1.4, 77.9, 22.1, 69.2 -1.09375,1.09,a-pcom-i3,2017-18,Auburn - Auburn Senior High,00170505, 2.0, 0.5, 1.0, 96.5, 0.0, 0.0, 0.0, 69.6, 30.4, 102.3 -1,1,a-pcom-i3,2017-18,Auburn - Bryn Mawr,00170010, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 99.8, 0.2, 44.2 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Auburn - Pakachoag School,00170025, 2.4, 2.4, 0.0, 95.2, 0.0, 0.0, 0.0, 100.0, 0.0, 41.4 -1,1,a-pcom-i3,2017-18,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 1.4, 97.3, 0.0, 0.0, 1.4, 93.2, 6.8, 72.9 -5.093749999999999,5,a-pcom-i3,2017-18,Avon - Avon Middle High School,00180510, 6.1, 4.1, 4.1, 83.7, 2.0, 0.0, 0.0, 71.1, 28.9, 49.2 -1,1,a-pcom-i3,2017-18,Avon - Ralph D Butler,00180010, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 95.9, 4.1, 48.2 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 1.8, 0.0, 1.8, 96.3, 0.0, 0.0, 0.0, 59.3, 40.7, 54.8 -3.5625000000000018,3.56,a-pcom-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.9, 0.0, 7.6, 88.6, 0.0, 0.0, 1.9, 75.2, 24.8, 52.5 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 3.7, 0.0, 96.3, 0.0, 0.0, 0.0, 94.8, 5.2, 54.0 -1,1,a-pcom-i3,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 1.6, 1.6, 0.0, 96.9, 0.0, 0.0, 0.0, 87.6, 12.4, 64.5 -1.875,1.88,a-pcom-i3,2017-18,Barnstable - Barnstable High,00200505, 1.8, 1.3, 2.5, 94.0, 0.0, 0.0, 0.4, 66.6, 33.4, 229.1 -1,1,a-pcom-i3,2017-18,Barnstable - Barnstable Intermediate School,00200315, 1.0, 1.0, 1.0, 97.1, 0.0, 0.0, 0.0, 82.3, 17.7, 101.9 -1,1,a-pcom-i3,2017-18,Barnstable - Barnstable United Elementary School,00200050, 0.9, 0.9, 0.7, 97.5, 0.0, 0.0, 0.0, 91.9, 8.1, 110.7 -1,1,a-pcom-i3,2017-18,Barnstable - Centerville Elementary,00200010, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 91.3, 8.7, 46.2 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 100.0, 0.0, 30.3 -2.124999999999999,2.12,a-pcom-i3,2017-18,Barnstable - Hyannis West Elementary,00200025, 1.7, 3.4, 1.7, 93.2, 0.0, 0.0, 0.0, 98.3, 1.7, 58.8 -1,1,a-pcom-i3,2017-18,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 33.8 -1,1,a-pcom-i3,2017-18,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 99.1, 0.9, 0.0, 0.0, 96.8, 3.2, 63.3 -1,1,a-pcom-i3,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 98.7, 1.3, 0.0, 0.0, 91.0, 9.0, 39.7 -8.75,5,a-pcom-i3,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 17.5, 1.8, 7.0, 72.0, 1.7, 0.0, 0.0, 54.5, 45.5, 57.2 -2.0000000000000018,2.0,a-pcom-i3,2017-18,Bedford - Bedford High,00230505, 1.5, 1.5, 3.3, 93.6, 0.0, 0.0, 0.0, 69.9, 30.1, 132.0 -1,1,a-pcom-i3,2017-18,Bedford - John Glenn Middle,00230305, 1.2, 0.0, 1.5, 97.3, 0.0, 0.0, 0.0, 75.2, 24.8, 81.7 -3.031250000000001,3.03,a-pcom-i3,2017-18,Bedford - Lt Elezer Davis,00230010, 4.1, 1.2, 3.2, 90.3, 0.0, 0.0, 1.2, 91.2, 8.8, 84.8 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Bedford - Lt Job Lane School,00230012, 0.6, 1.2, 1.1, 95.9, 0.0, 0.0, 1.2, 88.4, 11.6, 82.2 -1,1,a-pcom-i3,2017-18,Belchertown - Belchertown High,00240505, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 72.1, 27.9, 80.2 -1,1,a-pcom-i3,2017-18,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 84.0, 16.0, 58.6 -1,1,a-pcom-i3,2017-18,Belchertown - Cold Spring,00240005, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 96.2, 3.8, 37.0 -1,1,a-pcom-i3,2017-18,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 78.4, 21.6, 48.1 -1,1,a-pcom-i3,2017-18,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 56.4 -1,1,a-pcom-i3,2017-18,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.5 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Bellingham - Bellingham High School,00250505, 1.1, 2.1, 0.0, 96.8, 0.0, 0.0, 0.0, 67.6, 32.4, 94.9 -1,1,a-pcom-i3,2017-18,Bellingham - Bellingham Memorial School,00250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.3, 19.7, 90.9 -1,1,a-pcom-i3,2017-18,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 53.0, 47.0, 14.8 -1,1,a-pcom-i3,2017-18,Bellingham - South Elementary,00250020, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 100.0, 0.0, 47.7 -1,1,a-pcom-i3,2017-18,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 55.9 -2.093750000000001,2.09,a-pcom-i3,2017-18,Belmont - Belmont High,00260505, 0.9, 2.1, 1.9, 93.3, 0.0, 0.0, 1.9, 69.8, 30.2, 108.1 -3.4687499999999982,3.47,a-pcom-i3,2017-18,Belmont - Daniel Butler,00260015, 0.0, 2.4, 0.0, 88.9, 0.0, 0.0, 8.6, 88.6, 11.4, 41.2 -1.25,1.25,a-pcom-i3,2017-18,Belmont - Mary Lee Burbank,00260010, 2.1, 0.0, 0.0, 96.0, 0.0, 0.0, 1.9, 90.5, 9.5, 42.0 -1.40625,1.41,a-pcom-i3,2017-18,Belmont - Roger E Wellington,00260035, 1.2, 3.4, 0.0, 95.5, 0.0, 0.0, 0.0, 90.9, 9.1, 77.8 -1,1,a-pcom-i3,2017-18,Belmont - Winn Brook,00260005, 0.0, 0.0, 0.0, 99.6, 0.0, 0.0, 0.4, 97.7, 2.3, 53.2 -4.812500000000002,4.81,a-pcom-i3,2017-18,Belmont - Winthrop L Chenery Middle,00260305, 4.9, 5.7, 0.8, 84.6, 0.0, 0.0, 4.0, 76.4, 23.6, 122.7 -16.75,5,a-pcom-i3,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 42.4, 3.7, 5.6, 46.4, 0.0, 0.0, 1.9, 86.8, 13.2, 53.5 -1,1,a-pcom-i3,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.4, 10.6, 66.2 -2.093750000000001,2.09,a-pcom-i3,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 2.3, 2.3, 2.1, 93.3, 0.0, 0.0, 0.0, 86.2, 13.8, 48.1 -1,1,a-pcom-i3,2017-18,Berkley - Berkley Community School,00270010, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 98.4, 1.6, 63.3 -1,1,a-pcom-i3,2017-18,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.7, 21.3, 42.3 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 1.9, 1.9, 1.9, 94.4, 0.0, 0.0, 0.0, 69.5, 30.5, 53.7 -1,1,a-pcom-i3,2017-18,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 1.4, 97.1, 0.0, 0.0, 1.4, 65.9, 34.1, 69.3 -2.2187499999999982,2.22,a-pcom-i3,2017-18,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.8, 1.8, 1.8, 92.9, 0.0, 0.0, 1.7, 68.0, 32.0, 55.8 -1,1,a-pcom-i3,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 1.4, 1.4, 0.0, 97.1, 0.0, 0.0, 0.1, 90.2, 9.8, 71.6 -1,1,a-pcom-i3,2017-18,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 33.1 -1,1,a-pcom-i3,2017-18,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 74.3, 25.7, 70.5 -1,1,a-pcom-i3,2017-18,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 60.4 -1,1,a-pcom-i3,2017-18,Beverly - Beverly High,00300505, 0.7, 0.0, 0.7, 98.6, 0.0, 0.0, 0.0, 70.3, 29.7, 138.7 -1,1,a-pcom-i3,2017-18,Beverly - Briscoe Middle,00300305, 0.0, 0.9, 1.7, 97.4, 0.0, 0.0, 0.0, 77.6, 22.4, 117.0 -1.25,1.25,a-pcom-i3,2017-18,Beverly - Centerville Elementary,00300010, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 87.9, 12.1, 49.6 -1,1,a-pcom-i3,2017-18,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 63.0 -1,1,a-pcom-i3,2017-18,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 46.6 -1,1,a-pcom-i3,2017-18,Beverly - McKeown School,00300002, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 100.0, 0.0, 33.7 -1,1,a-pcom-i3,2017-18,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 54.4 -1,1,a-pcom-i3,2017-18,Billerica - Billerica Memorial High School,00310505, 0.6, 1.0, 0.0, 98.4, 0.0, 0.0, 0.0, 76.1, 23.9, 171.6 -1,1,a-pcom-i3,2017-18,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 38.1 -1,1,a-pcom-i3,2017-18,Billerica - Frederick J Dutile,00310007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 38.6 -1,1,a-pcom-i3,2017-18,Billerica - Hajjar Elementary,00310026, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 92.8, 7.2, 61.1 -1,1,a-pcom-i3,2017-18,Billerica - John F Kennedy,00310012, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 94.1, 5.9, 39.6 -1,1,a-pcom-i3,2017-18,Billerica - Locke Middle,00310310, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 76.8, 23.2, 67.9 -1,1,a-pcom-i3,2017-18,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.4, 23.6, 90.1 -1,1,a-pcom-i3,2017-18,Billerica - Parker,00310015, 1.2, 0.0, 0.0, 97.5, 0.0, 0.0, 1.2, 96.0, 4.0, 81.1 -1,1,a-pcom-i3,2017-18,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 72.5 -1,1,a-pcom-i3,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.6, 1.3, 98.1, 0.0, 0.0, 0.0, 57.7, 42.3, 159.2 -1,1,a-pcom-i3,2017-18,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.6, 0.4, 34.4 -2.124999999999999,2.12,a-pcom-i3,2017-18,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 6.8, 93.2, 0.0, 0.0, 0.0, 64.5, 35.5, 59.1 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 2.0, 95.9, 0.0, 0.0, 2.0, 82.0, 18.0, 48.9 -1,1,a-pcom-i3,2017-18,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 35.2 -1,1,a-pcom-i3,2017-18,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 40.7 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 2.5, 0.8, 1.6, 95.1, 0.0, 0.0, 0.0, 54.5, 45.5, 122.0 -13.15625,5,a-pcom-i3,2017-18,Boston - Another Course To College,00350541, 19.0, 11.7, 7.7, 57.9, 0.0, 0.0, 3.7, 69.1, 30.9, 26.1 -20.343749999999996,5,a-pcom-i3,2017-18,Boston - Baldwin Early Learning Center,00350003, 23.2, 11.7, 25.6, 34.9, 0.0, 0.0, 4.7, 95.3, 4.7, 43.0 -8.624999999999998,5,a-pcom-i3,2017-18,Boston - Beethoven,00350021, 13.8, 2.7, 11.1, 72.4, 0.0, 0.0, 0.0, 88.9, 11.1, 36.4 -15.249999999999998,5,a-pcom-i3,2017-18,Boston - Blackstone,00350390, 22.3, 3.8, 21.4, 51.2, 0.0, 0.0, 1.3, 78.2, 21.8, 79.4 -21.968749999999996,5,a-pcom-i3,2017-18,Boston - Boston Adult Academy,00350548, 49.4, 10.5, 7.0, 29.7, 0.0, 3.5, 0.0, 52.9, 47.1, 28.5 -15.625,5,a-pcom-i3,2017-18,Boston - Boston Arts Academy,00350546, 26.6, 5.3, 16.2, 50.0, 0.0, 0.0, 1.8, 60.7, 39.3, 56.0 -23.34375,5,a-pcom-i3,2017-18,Boston - Boston Collaborative High School,00350755, 41.4, 8.7, 16.7, 25.3, 0.0, 0.0, 8.0, 58.0, 42.0, 12.0 -16.46875,5,a-pcom-i3,2017-18,Boston - Boston Community Leadership Academy,00350558, 29.8, 7.0, 14.1, 47.3, 0.0, 0.0, 1.7, 70.1, 29.9, 57.0 -15.96875,5,a-pcom-i3,2017-18,Boston - Boston International High School,00350507, 23.8, 7.3, 20.0, 48.9, 0.0, 0.0, 0.0, 60.2, 39.8, 55.0 -10.0625,5,a-pcom-i3,2017-18,Boston - Boston Latin,00350560, 17.0, 6.1, 7.8, 67.8, 0.0, 0.7, 0.7, 58.0, 42.0, 147.7 -13.125,5,a-pcom-i3,2017-18,Boston - Boston Latin Academy,00350545, 15.9, 13.9, 10.3, 58.0, 0.0, 0.0, 1.9, 58.7, 41.3, 106.7 -17.09375,5,a-pcom-i3,2017-18,Boston - Boston Teachers Union School,00350012, 23.9, 9.2, 18.4, 45.3, 0.0, 0.0, 3.1, 84.8, 15.2, 33.2 -13.75,5,a-pcom-i3,2017-18,Boston - Brighton High,00350505, 28.4, 2.3, 10.0, 56.0, 0.0, 0.0, 3.4, 67.6, 32.4, 89.7 -14.71875,5,a-pcom-i3,2017-18,Boston - Carter Developmental Center,00350036, 41.2, 0.0, 0.0, 52.9, 0.0, 0.0, 5.9, 88.2, 11.8, 17.0 -24.28125,5,a-pcom-i3,2017-18,Boston - Charles H Taylor,00350054, 67.2, 3.8, 5.1, 22.3, 0.0, 0.0, 1.7, 91.0, 9.0, 58.5 -14.875,5,a-pcom-i3,2017-18,Boston - Charles Sumner,00350052, 25.4, 0.0, 22.3, 52.4, 0.0, 0.0, 0.0, 92.0, 8.0, 63.4 -13.90625,5,a-pcom-i3,2017-18,Boston - Charlestown High,00350515, 23.3, 10.2, 9.2, 55.5, 0.8, 0.0, 0.8, 66.6, 33.4, 117.9 -13.46875,5,a-pcom-i3,2017-18,Boston - Clarence R Edwards Middle,00350430, 19.4, 10.8, 10.8, 56.9, 2.2, 0.0, 0.0, 61.3, 38.7, 46.4 -22.03125,5,a-pcom-i3,2017-18,Boston - Community Academy,00350518, 41.1, 5.9, 11.7, 29.5, 5.9, 0.0, 5.9, 53.0, 47.0, 17.0 -19.40625,5,a-pcom-i3,2017-18,Boston - Community Academy of Science and Health,00350581, 46.1, 6.0, 7.9, 37.9, 0.0, 0.0, 2.0, 62.1, 37.9, 50.1 -15.625,5,a-pcom-i3,2017-18,Boston - Curley K-8 School,00350020, 24.1, 1.6, 21.9, 50.0, 1.6, 0.0, 0.7, 92.0, 8.0, 124.0 -9.187500000000002,5,a-pcom-i3,2017-18,Boston - Curtis Guild,00350062, 9.9, 0.0, 14.5, 70.6, 2.5, 0.0, 2.5, 83.8, 16.2, 40.3 -8.687499999999998,5,a-pcom-i3,2017-18,Boston - Dante Alighieri Montessori School,00350066, 3.5, 0.0, 17.1, 72.2, 0.0, 0.0, 7.2, 86.7, 13.3, 13.8 -23.28125,5,a-pcom-i3,2017-18,Boston - David A Ellis,00350072, 42.8, 6.8, 20.4, 25.5, 4.5, 0.0, 0.0, 79.1, 20.9, 44.0 -19.125,5,a-pcom-i3,2017-18,Boston - Dearborn,00350074, 42.9, 2.0, 10.2, 38.8, 0.0, 0.0, 6.1, 71.4, 28.6, 49.0 -8.4375,5,a-pcom-i3,2017-18,Boston - Dennis C Haley,00350077, 16.2, 7.2, 1.8, 73.0, 0.0, 0.0, 1.8, 85.4, 14.6, 56.3 -8.90625,5,a-pcom-i3,2017-18,Boston - Donald Mckay,00350080, 7.9, 1.6, 17.2, 71.5, 0.0, 0.0, 1.7, 74.4, 25.6, 63.6 -22.8125,5,a-pcom-i3,2017-18,Boston - Dorchester Academy,00350651, 36.4, 0.0, 36.6, 27.0, 0.0, 0.0, 0.0, 63.3, 36.7, 11.0 -18.9375,5,a-pcom-i3,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 50.1, 2.6, 7.9, 39.4, 0.0, 0.0, 0.0, 84.2, 15.8, 38.1 -8.781249999999998,5,a-pcom-i3,2017-18,Boston - Dr. William Henderson Lower,00350266, 17.8, 0.0, 9.0, 71.9, 0.0, 0.0, 1.3, 82.9, 17.1, 39.3 -9.937499999999998,5,a-pcom-i3,2017-18,Boston - Dr. William Henderson Upper,00350426, 20.0, 4.7, 5.3, 68.2, 0.0, 1.2, 0.6, 76.1, 23.9, 85.0 -16.343749999999996,5,a-pcom-i3,2017-18,Boston - ELC - West Zone,00350006, 27.5, 5.5, 11.0, 47.7, 5.5, 0.0, 2.8, 85.3, 14.7, 36.3 -16.21875,5,a-pcom-i3,2017-18,Boston - East Boston Early Childhood Center,00350009, 9.4, 4.7, 35.5, 48.1, 0.0, 2.3, 0.0, 94.1, 5.9, 42.7 -10.53125,5,a-pcom-i3,2017-18,Boston - East Boston High,00350530, 11.0, 3.1, 18.0, 66.3, 0.0, 0.0, 1.6, 62.8, 37.2, 126.3 -13.9375,5,a-pcom-i3,2017-18,Boston - Edison K-8,00350375, 24.2, 5.6, 10.2, 55.4, 1.1, 0.0, 3.4, 79.4, 20.6, 87.3 -9.75,5,a-pcom-i3,2017-18,Boston - Edward Everett,00350088, 17.3, 6.9, 6.9, 68.8, 0.0, 0.0, 0.0, 89.7, 10.3, 28.9 -10.593750000000002,5,a-pcom-i3,2017-18,Boston - Eliot Elementary,00350096, 19.3, 3.2, 11.3, 66.1, 0.0, 0.0, 0.0, 90.4, 9.6, 61.5 -11.40625,5,a-pcom-i3,2017-18,Boston - Ellis Mendell,00350100, 16.2, 0.0, 20.3, 63.5, 0.0, 0.0, 0.0, 94.6, 5.4, 24.6 -17.15625,5,a-pcom-i3,2017-18,Boston - Excel High School,00350522, 31.6, 11.6, 8.3, 45.1, 1.7, 0.0, 1.7, 58.3, 41.7, 60.0 -17.437499999999996,5,a-pcom-i3,2017-18,Boston - Fenway High School,00350540, 29.9, 7.8, 15.5, 44.2, 0.0, 0.0, 2.6, 58.5, 41.5, 38.5 -12.0625,5,a-pcom-i3,2017-18,Boston - Franklin D Roosevelt,00350116, 26.4, 4.0, 8.1, 61.4, 0.0, 0.0, 0.0, 93.9, 6.1, 49.2 -13.78125,5,a-pcom-i3,2017-18,Boston - Gardner Pilot Academy,00350326, 22.6, 2.1, 19.4, 55.9, 0.0, 0.0, 0.0, 89.8, 10.2, 48.6 -9.656250000000002,5,a-pcom-i3,2017-18,Boston - George H Conley,00350122, 21.4, 3.2, 6.3, 69.1, 0.0, 0.0, 0.0, 89.9, 10.1, 32.0 -25.874999999999996,5,a-pcom-i3,2017-18,Boston - Greater Egleston Community High School,00350543, 49.6, 5.4, 27.8, 17.2, 0.0, 0.0, 0.0, 71.9, 28.1, 18.1 -9.0625,5,a-pcom-i3,2017-18,Boston - Harvard-Kent,00350200, 9.4, 13.4, 6.2, 71.0, 0.0, 0.0, 0.0, 80.3, 19.7, 64.0 -25.53125,5,a-pcom-i3,2017-18,Boston - Haynes Early Education Center,00350010, 74.5, 0.0, 7.2, 18.3, 0.0, 0.0, 0.0, 81.6, 18.4, 41.7 -16.09375,5,a-pcom-i3,2017-18,Boston - Henry Grew,00350135, 42.2, 0.0, 9.4, 48.5, 0.0, 0.0, 0.0, 77.0, 23.0, 21.4 -18.03125,5,a-pcom-i3,2017-18,Boston - Higginson,00350015, 36.0, 7.3, 14.5, 42.3, 0.0, 0.0, 0.0, 89.2, 10.8, 27.8 -24.03125,5,a-pcom-i3,2017-18,Boston - Higginson/Lewis K-8,00350377, 62.2, 6.2, 8.4, 23.1, 0.0, 0.0, 0.0, 81.1, 18.9, 47.6 -9.84375,5,a-pcom-i3,2017-18,Boston - Horace Mann School for the Deaf,00350750, 13.7, 5.5, 12.3, 68.5, 0.0, 0.0, 0.0, 79.3, 20.7, 73.0 -8.5,5,a-pcom-i3,2017-18,Boston - Hugh Roe O'Donnell,00350141, 5.4, 3.6, 18.2, 72.8, 0.0, 0.0, 0.0, 83.8, 16.2, 27.5 -14.375,5,a-pcom-i3,2017-18,Boston - Jackson Mann,00350013, 27.5, 5.4, 11.1, 54.0, 0.0, 0.0, 2.1, 83.8, 16.2, 98.2 -13.374999999999998,5,a-pcom-i3,2017-18,Boston - James Condon Elementary,00350146, 26.3, 5.1, 10.3, 57.2, 0.0, 0.0, 1.1, 80.6, 19.4, 99.0 -18.5625,5,a-pcom-i3,2017-18,Boston - James J Chittick,00350154, 40.4, 6.4, 10.5, 40.6, 2.1, 0.0, 0.0, 85.3, 14.7, 47.1 -10.031249999999998,5,a-pcom-i3,2017-18,Boston - James Otis,00350156, 9.8, 2.5, 19.8, 67.9, 0.0, 0.0, 0.0, 81.5, 18.5, 40.5 -20.625,5,a-pcom-i3,2017-18,Boston - James P Timilty Middle,00350485, 45.8, 0.3, 17.1, 34.0, 0.0, 0.0, 2.8, 74.1, 25.9, 34.8 -17.21875,5,a-pcom-i3,2017-18,Boston - James W Hennigan,00350153, 25.2, 3.3, 25.2, 44.9, 0.0, 0.0, 1.4, 81.3, 18.7, 71.5 -20.53125,5,a-pcom-i3,2017-18,Boston - Jeremiah E Burke High,00350525, 55.8, 0.0, 7.9, 34.3, 0.0, 0.0, 2.0, 52.2, 47.8, 49.6 -17.625,5,a-pcom-i3,2017-18,Boston - John D Philbrick,00350172, 56.4, 0.0, 0.0, 43.6, 0.0, 0.0, 0.0, 78.3, 21.7, 12.7 -14.53125,5,a-pcom-i3,2017-18,Boston - John F Kennedy,00350166, 19.4, 2.6, 24.5, 53.5, 0.0, 0.0, 0.0, 80.9, 19.1, 36.7 -15.093749999999998,5,a-pcom-i3,2017-18,Boston - John W McCormack,00350179, 34.8, 1.9, 11.6, 51.7, 0.0, 0.0, 0.0, 69.1, 30.9, 51.8 -12.53125,5,a-pcom-i3,2017-18,Boston - John Winthrop,00350180, 26.7, 0.0, 10.1, 59.9, 0.0, 0.0, 3.3, 81.1, 18.9, 29.9 -21.968749999999996,5,a-pcom-i3,2017-18,Boston - Joseph J Hurley,00350182, 13.7, 0.0, 53.9, 29.7, 2.7, 0.0, 0.0, 86.5, 13.5, 37.0 -15.8125,5,a-pcom-i3,2017-18,Boston - Joseph Lee,00350183, 41.7, 1.7, 6.3, 49.4, 0.0, 0.0, 0.9, 78.3, 21.7, 115.1 -11.3125,5,a-pcom-i3,2017-18,Boston - Joseph P Manning,00350184, 28.3, 0.0, 7.9, 63.8, 0.0, 0.0, 0.0, 68.2, 31.8, 25.4 -12.906249999999998,5,a-pcom-i3,2017-18,Boston - Joseph P Tynan,00350181, 31.4, 0.0, 7.9, 58.7, 0.0, 0.0, 2.0, 86.1, 13.9, 51.1 -19.96875,5,a-pcom-i3,2017-18,Boston - Josiah Quincy,00350286, 14.9, 43.8, 5.1, 36.1, 0.0, 0.0, 0.0, 85.1, 14.9, 94.1 -5.812499999999998,5,a-pcom-i3,2017-18,Boston - Joyce Kilmer,00350190, 9.4, 0.0, 5.4, 81.4, 1.8, 0.0, 1.9, 89.0, 11.0, 55.1 -19.03125,5,a-pcom-i3,2017-18,Boston - King K-8,00350376, 48.6, 3.5, 7.0, 39.1, 0.0, 0.0, 1.7, 81.8, 18.2, 57.6 -17.03125,5,a-pcom-i3,2017-18,Boston - Lee Academy,00350001, 32.6, 8.2, 13.7, 45.5, 0.0, 0.0, 0.0, 82.3, 17.7, 36.4 -18.90625,5,a-pcom-i3,2017-18,Boston - Lilla G. Frederick Middle School,00350383, 30.9, 4.2, 23.9, 39.5, 0.0, 0.0, 1.5, 67.6, 32.4, 71.0 -8.624999999999998,5,a-pcom-i3,2017-18,Boston - Lyndon,00350262, 18.4, 0.0, 9.2, 72.4, 0.0, 0.0, 0.0, 82.5, 17.5, 54.6 -11.499999999999998,5,a-pcom-i3,2017-18,Boston - Lyon K-8,00350004, 18.4, 7.8, 7.9, 63.2, 0.0, 0.0, 2.6, 79.0, 21.0, 38.1 -12.5,5,a-pcom-i3,2017-18,Boston - Lyon Upper 9-12,00350655, 23.7, 10.9, 5.4, 60.0, 0.0, 0.0, 0.0, 40.8, 59.2, 36.8 -18.15625,5,a-pcom-i3,2017-18,Boston - Madison Park High,00350537, 37.9, 2.0, 14.2, 41.9, 0.0, 0.0, 4.1, 50.7, 49.3, 148.2 -4.500000000000002,4.5,a-pcom-i3,2017-18,Boston - Manassah E Bradley,00350215, 3.2, 4.0, 7.2, 85.6, 0.0, 0.0, 0.0, 85.1, 14.9, 30.8 -19.156249999999996,5,a-pcom-i3,2017-18,Boston - Margarita Muniz Academy,00350549, 0.0, 3.2, 58.1, 38.7, 0.0, 0.0, 0.0, 61.4, 38.6, 31.1 -13.9375,5,a-pcom-i3,2017-18,Boston - Mario Umana Academy,00350656, 13.8, 2.0, 25.8, 55.4, 2.0, 0.0, 1.0, 71.3, 28.7, 101.3 -20.4375,5,a-pcom-i3,2017-18,Boston - Mather,00350227, 43.5, 15.2, 5.0, 34.6, 0.0, 0.0, 1.7, 83.7, 16.3, 59.8 -21.0625,5,a-pcom-i3,2017-18,Boston - Mattapan Early Elementary School,00350016, 58.3, 1.8, 5.4, 32.6, 0.0, 0.0, 1.8, 87.3, 12.7, 54.9 -14.375,5,a-pcom-i3,2017-18,Boston - Maurice J Tobin,00350229, 17.7, 2.5, 25.9, 54.0, 0.0, 0.0, 0.0, 80.6, 19.4, 42.3 -15.6875,5,a-pcom-i3,2017-18,Boston - Michael J Perkins,00350231, 40.2, 0.0, 5.0, 49.8, 0.0, 0.0, 5.0, 74.9, 25.1, 20.1 -20.812499999999996,5,a-pcom-i3,2017-18,Boston - Mildred Avenue K-8,00350378, 48.2, 3.5, 14.9, 33.4, 0.0, 0.0, 0.0, 75.2, 24.8, 59.9 -18.90625,5,a-pcom-i3,2017-18,Boston - Mission Hill School,00350382, 47.8, 0.0, 9.5, 39.5, 0.0, 0.0, 3.2, 76.4, 23.6, 31.5 -12.281249999999998,5,a-pcom-i3,2017-18,Boston - Mozart,00350237, 24.5, 0.0, 14.8, 60.7, 0.0, 0.0, 0.0, 83.6, 16.4, 27.0 -22.0,5,a-pcom-i3,2017-18,Boston - Nathan Hale,00350243, 56.1, 0.0, 14.3, 29.6, 0.0, 0.0, 0.0, 77.4, 22.6, 14.3 -18.218749999999996,5,a-pcom-i3,2017-18,Boston - New Mission High School,00350542, 31.5, 12.3, 14.6, 41.7, 0.0, 0.0, 0.0, 55.9, 44.1, 40.8 -17.65625,5,a-pcom-i3,2017-18,Boston - O W Holmes,00350138, 46.4, 4.0, 6.1, 43.5, 0.0, 0.0, 0.0, 77.8, 22.2, 49.5 -18.531249999999996,5,a-pcom-i3,2017-18,Boston - O'Bryant School Math/Science,00350575, 37.2, 4.5, 16.8, 40.7, 0.0, 0.0, 0.9, 65.7, 34.3, 113.0 -7.562500000000001,5,a-pcom-i3,2017-18,Boston - Oliver Hazard Perry,00350255, 13.9, 0.0, 6.9, 75.8, 0.0, 0.0, 3.4, 86.3, 13.7, 29.1 -15.34375,5,a-pcom-i3,2017-18,Boston - Orchard Gardens,00350257, 27.0, 1.0, 18.0, 50.9, 0.0, 0.0, 3.1, 76.2, 23.8, 99.7 -12.906249999999998,5,a-pcom-i3,2017-18,Boston - Patrick J Kennedy,00350264, 8.2, 2.8, 30.3, 58.7, 0.0, 0.0, 0.0, 89.1, 10.9, 36.3 -17.40625,5,a-pcom-i3,2017-18,Boston - Paul A Dever,00350268, 38.2, 3.8, 7.7, 44.3, 0.0, 0.0, 6.0, 69.6, 30.4, 52.4 -17.5,5,a-pcom-i3,2017-18,Boston - Pauline Agassiz Shaw Elementary School,00350014, 48.0, 0.0, 8.0, 44.0, 0.0, 0.0, 0.0, 84.0, 16.0, 24.9 -6.437499999999998,5,a-pcom-i3,2017-18,Boston - Phineas Bates,00350278, 10.5, 0.0, 10.1, 79.4, 0.0, 0.0, 0.0, 84.7, 15.3, 32.7 -18.0,5,a-pcom-i3,2017-18,Boston - Quincy Upper School,00350565, 20.3, 27.0, 6.8, 42.4, 0.0, 0.0, 3.4, 59.3, 40.7, 59.1 -23.03125,5,a-pcom-i3,2017-18,Boston - Rafael Hernandez,00350691, 2.4, 2.3, 69.1, 26.3, 0.0, 0.0, 0.0, 86.2, 13.8, 43.5 -10.375,5,a-pcom-i3,2017-18,Boston - Richard J Murphy,00350240, 18.3, 7.2, 6.6, 66.8, 0.0, 0.0, 1.1, 79.5, 20.5, 93.1 -15.593749999999998,5,a-pcom-i3,2017-18,Boston - Roger Clap,00350298, 30.0, 0.0, 10.0, 50.1, 0.0, 0.0, 10.0, 80.0, 20.0, 20.1 -14.624999999999998,5,a-pcom-i3,2017-18,Boston - Samuel Adams,00350302, 18.2, 2.6, 26.0, 53.2, 0.0, 0.0, 0.0, 86.9, 13.1, 38.4 -23.25,5,a-pcom-i3,2017-18,Boston - Samuel W Mason,00350304, 60.1, 2.9, 8.6, 25.6, 2.9, 0.0, 0.0, 82.9, 17.1, 35.1 -23.125,5,a-pcom-i3,2017-18,Boston - Sarah Greenwood,00350308, 20.5, 1.8, 47.9, 26.0, 1.8, 0.0, 1.8, 75.8, 24.2, 54.2 -12.468749999999998,5,a-pcom-i3,2017-18,Boston - Snowden International School at Copley,00350690, 25.1, 4.3, 10.5, 60.1, 0.0, 0.0, 0.0, 58.8, 41.2, 47.8 -13.374999999999998,5,a-pcom-i3,2017-18,Boston - TechBoston Academy,00350657, 36.3, 0.9, 3.7, 57.2, 0.0, 0.0, 1.8, 60.8, 39.2, 108.1 -16.0625,5,a-pcom-i3,2017-18,Boston - The English High,00350535, 21.4, 5.8, 22.8, 48.6, 0.0, 0.0, 1.5, 59.9, 40.1, 70.2 -12.71875,5,a-pcom-i3,2017-18,Boston - Thomas J Kenny,00350328, 30.0, 8.0, 2.7, 59.3, 0.0, 0.0, 0.0, 86.4, 13.6, 37.0 -14.21875,5,a-pcom-i3,2017-18,Boston - UP Academy Holland,00350167, 31.8, 4.5, 8.0, 54.5, 0.0, 0.0, 1.1, 86.4, 13.6, 88.0 -17.375,5,a-pcom-i3,2017-18,Boston - Urban Science Academy,00350579, 35.5, 4.0, 14.0, 44.4, 0.0, 0.0, 2.0, 60.1, 39.9, 49.8 -5.125000000000002,5,a-pcom-i3,2017-18,Boston - Warren-Prescott,00350346, 6.6, 0.0, 9.8, 83.6, 0.0, 0.0, 0.0, 88.5, 11.5, 60.1 -15.96875,5,a-pcom-i3,2017-18,Boston - Washington Irving Middle,00350445, 35.5, 4.4, 11.1, 48.9, 0.0, 0.0, 0.0, 77.8, 22.2, 45.0 -14.5625,5,a-pcom-i3,2017-18,Boston - West Roxbury Academy,00350658, 35.4, 3.7, 7.5, 53.4, 0.0, 0.0, 0.0, 62.9, 37.1, 53.8 -14.0625,5,a-pcom-i3,2017-18,Boston - William E Russell,00350366, 17.5, 5.0, 20.0, 55.0, 0.0, 0.0, 2.5, 92.5, 7.5, 40.0 -18.46875,5,a-pcom-i3,2017-18,Boston - William Ellery Channing,00350360, 36.2, 13.7, 0.0, 40.9, 4.6, 0.0, 4.5, 81.8, 18.2, 22.0 -9.249999999999998,5,a-pcom-i3,2017-18,Boston - William H Ohrenberger,00350258, 19.9, 1.6, 8.2, 70.4, 0.0, 0.0, 0.0, 70.7, 29.3, 64.5 -15.65625,5,a-pcom-i3,2017-18,Boston - William McKinley,00350363, 35.7, 1.3, 10.9, 49.9, 0.0, 0.4, 1.7, 62.0, 38.0, 229.1 -17.281249999999996,5,a-pcom-i3,2017-18,Boston - William Monroe Trotter,00350370, 44.2, 2.3, 6.6, 44.7, 0.0, 0.0, 2.2, 83.8, 16.2, 45.6 -15.749999999999998,5,a-pcom-i3,2017-18,Boston - Winship Elementary,00350374, 33.5, 0.0, 16.9, 49.6, 0.0, 0.0, 0.0, 89.7, 10.3, 29.6 -19.875,5,a-pcom-i3,2017-18,Boston - Young Achievers,00350380, 43.9, 3.0, 15.2, 36.4, 0.0, 0.0, 1.5, 81.9, 18.1, 66.2 -10.968749999999998,5,a-pcom-i3,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 13.2, 3.3, 10.9, 64.9, 0.0, 0.0, 7.7, 70.4, 29.6, 90.9 -15.65625,5,a-pcom-i3,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 31.0, 7.1, 9.5, 49.9, 2.4, 0.0, 0.0, 69.1, 30.9, 42.1 -14.156249999999998,5,a-pcom-i3,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 27.7, 3.3, 14.3, 54.7, 0.0, 0.0, 0.0, 64.6, 35.4, 56.1 -13.218749999999998,5,a-pcom-i3,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 25.7, 0.0, 13.1, 57.7, 0.0, 0.0, 3.5, 54.6, 45.4, 57.2 -10.125000000000002,5,a-pcom-i3,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 22.4, 5.8, 2.9, 67.6, 0.0, 0.0, 1.3, 83.3, 16.7, 156.1 -1,1,a-pcom-i3,2017-18,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.1, 32.9, 57.0 -1,1,a-pcom-i3,2017-18,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 74.8 -1,1,a-pcom-i3,2017-18,Bourne - Bournedale Elementary School,00360005, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 97.1, 2.9, 62.1 -1,1,a-pcom-i3,2017-18,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 39.8 -1,1,a-pcom-i3,2017-18,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 94.4, 5.6, 56.5 -1,1,a-pcom-i3,2017-18,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 65.4 -1,1,a-pcom-i3,2017-18,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 92.5, 7.5, 33.3 -1,1,a-pcom-i3,2017-18,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 94.4, 5.6, 56.6 -1,1,a-pcom-i3,2017-18,Braintree - Braintree High,00400505, 0.5, 1.5, 0.5, 97.0, 0.0, 0.0, 0.5, 72.5, 27.5, 198.0 -1,1,a-pcom-i3,2017-18,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 35.1 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Braintree - East Middle School,00400305, 1.2, 1.2, 1.2, 96.4, 0.0, 0.0, 0.0, 80.8, 19.2, 84.2 -1,1,a-pcom-i3,2017-18,Braintree - Highlands,00400015, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 91.7, 8.3, 44.4 -1,1,a-pcom-i3,2017-18,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 55.5 -1,1,a-pcom-i3,2017-18,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 40.1 -1,1,a-pcom-i3,2017-18,Braintree - Mary E Flaherty School,00400020, 0.0, 1.0, 0.0, 97.4, 0.0, 0.0, 1.6, 94.8, 5.2, 61.5 -1,1,a-pcom-i3,2017-18,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 33.7 -1,1,a-pcom-i3,2017-18,Braintree - South Middle School,00400310, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 75.2, 24.8, 80.0 -1,1,a-pcom-i3,2017-18,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 41.6 -1,1,a-pcom-i3,2017-18,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 47.2 -9.656250000000002,5,a-pcom-i3,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 17.8, 5.9, 7.1, 69.1, 0.0, 0.0, 0.0, 77.7, 22.3, 67.3 -1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 84.7, 15.3, 54.8 -1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 1.7, 0.8, 0.0, 97.5, 0.0, 0.0, 0.0, 66.3, 33.7, 121.4 -1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 87.2, 12.8, 43.4 -1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 27.2 -1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 94.6, 5.4, 111.9 -1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.5, 15.5, 64.6 -4.312499999999999,4.31,a-pcom-i3,2017-18,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 13.8, 86.2, 0.0, 0.0, 0.0, 82.0, 18.0, 7.2 -1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.3, 16.7, 73.3 -1,1,a-pcom-i3,2017-18,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 46.1 -1,1,a-pcom-i3,2017-18,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.2, 38.8, 49.0 -1,1,a-pcom-i3,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 0.7, 0.7, 0.0, 97.2, 1.4, 0.0, 0.0, 62.0, 38.0, 144.8 -2.96875,2.97,a-pcom-i3,2017-18,Brockton - Ashfield Middle School,00440421, 9.5, 0.0, 0.0, 90.5, 0.0, 0.0, 0.0, 76.8, 23.2, 55.0 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Brockton - Barrett Russell Early Childhood Center,00440008, 1.9, 1.7, 0.3, 96.1, 0.0, 0.0, 0.0, 100.0, 0.0, 58.4 -6.625000000000001,5,a-pcom-i3,2017-18,Brockton - Brockton Champion High School,00440515, 15.3, 0.0, 5.9, 78.8, 0.0, 0.0, 0.0, 63.1, 36.9, 34.1 -7.000000000000002,5,a-pcom-i3,2017-18,Brockton - Brockton High,00440505, 15.8, 1.7, 2.8, 77.6, 0.0, 0.3, 1.8, 62.9, 37.1, 387.2 -2.4687500000000018,2.47,a-pcom-i3,2017-18,Brockton - Brookfield,00440010, 6.3, 0.0, 1.6, 92.1, 0.0, 0.0, 0.0, 89.8, 10.2, 63.6 -3.843749999999999,3.84,a-pcom-i3,2017-18,Brockton - Downey,00440110, 10.1, 0.0, 2.2, 87.7, 0.0, 0.0, 0.0, 88.2, 11.8, 89.4 -5.562499999999999,5,a-pcom-i3,2017-18,Brockton - Dr W Arnone Community School,00440001, 14.2, 0.0, 3.4, 82.2, 0.0, 0.0, 0.2, 89.0, 11.0, 89.4 -8.093750000000002,5,a-pcom-i3,2017-18,Brockton - East Middle School,00440405, 15.0, 1.8, 5.3, 74.1, 1.8, 0.0, 2.1, 63.9, 36.1, 56.7 -3.7187500000000018,3.72,a-pcom-i3,2017-18,Brockton - Edgar B Davis,00440023, 5.0, 0.0, 2.8, 88.1, 0.1, 0.0, 3.9, 77.3, 22.7, 77.5 -15.124999999999998,5,a-pcom-i3,2017-18,Brockton - Edison Academy,00440520, 35.4, 3.4, 8.3, 51.6, 0.0, 0.0, 1.3, 67.0, 33.0, 14.9 -2.8437499999999982,2.84,a-pcom-i3,2017-18,Brockton - Frederick Douglass Academy,00440080, 4.1, 0.0, 0.0, 90.9, 0.0, 0.0, 5.0, 54.7, 45.3, 16.1 -3.4375,3.44,a-pcom-i3,2017-18,Brockton - Gilmore Elementary School,00440055, 11.0, 0.0, 0.0, 89.0, 0.0, 0.0, 0.0, 85.6, 14.4, 45.4 -3.7812499999999982,3.78,a-pcom-i3,2017-18,Brockton - Hancock,00440045, 3.1, 0.0, 5.4, 87.9, 1.6, 0.0, 2.1, 91.8, 8.2, 48.6 -5.843750000000001,5,a-pcom-i3,2017-18,Brockton - Huntington Therapeutic Day School,00440400, 16.0, 0.0, 2.7, 81.3, 0.0, 0.0, 0.0, 68.8, 31.2, 37.4 -5.562499999999999,5,a-pcom-i3,2017-18,Brockton - John F Kennedy,00440017, 11.0, 2.3, 3.7, 82.2, 0.0, 0.0, 0.9, 89.8, 10.2, 54.7 -6.656249999999999,5,a-pcom-i3,2017-18,Brockton - Joseph F. Plouffe Academy,00440422, 13.8, 4.5, 3.0, 78.7, 0.0, 0.0, 0.0, 77.0, 23.0, 66.2 -5.812499999999998,5,a-pcom-i3,2017-18,Brockton - Louis F Angelo Elementary,00440065, 9.1, 0.3, 7.2, 81.4, 0.0, 0.0, 2.1, 95.4, 4.6, 96.8 -7.312500000000002,5,a-pcom-i3,2017-18,Brockton - Manthala George Jr. School,00440003, 9.0, 0.0, 10.8, 76.6, 1.3, 0.0, 2.3, 92.6, 7.4, 87.6 -7.03125,5,a-pcom-i3,2017-18,Brockton - Mary E. Baker School,00440002, 17.6, 1.2, 3.7, 77.5, 0.0, 0.0, 0.0, 93.6, 6.4, 81.0 -5.249999999999999,5,a-pcom-i3,2017-18,Brockton - North Middle School,00440410, 14.8, 0.0, 0.0, 83.2, 0.0, 0.0, 2.0, 68.9, 31.1, 59.5 -6.000000000000001,5,a-pcom-i3,2017-18,Brockton - Oscar F Raymond,00440078, 14.1, 0.0, 1.3, 80.8, 0.0, 0.0, 3.7, 92.7, 7.3, 74.9 -3.125,3.13,a-pcom-i3,2017-18,Brockton - South Middle School,00440415, 7.3, 0.0, 0.0, 90.0, 0.0, 0.0, 2.7, 77.1, 22.9, 55.0 -6.593749999999998,5,a-pcom-i3,2017-18,Brockton - West Middle School,00440420, 17.6, 1.6, 1.6, 78.9, 0.0, 0.0, 0.3, 75.1, 24.9, 62.6 -10.53125,5,a-pcom-i3,2017-18,Brooke Charter School (District) - Brooke Charter School,04280305, 17.1, 2.8, 13.3, 66.3, 0.0, 0.0, 0.5, 82.9, 17.1, 209.9 -1,1,a-pcom-i3,2017-18,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 43.2 -4.031250000000002,4.03,a-pcom-i3,2017-18,Brookline - Brookline Early Education Program at Beacon,00460001, 6.4, 6.4, 0.0, 87.1, 0.0, 0.0, 0.0, 100.0, 0.0, 9.3 -4.281250000000001,4.28,a-pcom-i3,2017-18,Brookline - Brookline Early Education Program at Putterham,00460002, 10.5, 0.0, 3.2, 86.3, 0.0, 0.0, 0.0, 94.6, 5.4, 18.5 -4.906250000000001,4.91,a-pcom-i3,2017-18,Brookline - Brookline High,00460505, 8.7, 4.1, 2.7, 84.3, 0.3, 0.0, 0.0, 63.5, 36.5, 296.1 -4.437500000000001,4.44,a-pcom-i3,2017-18,Brookline - Edith C Baker,00460005, 2.8, 7.1, 4.3, 85.8, 0.0, 0.0, 0.0, 86.2, 13.8, 106.3 -3.4375,3.44,a-pcom-i3,2017-18,Brookline - Edward Devotion,00460015, 8.2, 1.1, 1.8, 89.0, 0.0, 0.0, 0.0, 81.0, 19.0, 136.8 -5.375000000000001,5,a-pcom-i3,2017-18,Brookline - Heath,00460025, 7.4, 4.2, 5.6, 82.8, 0.0, 0.0, 0.0, 84.5, 15.5, 71.7 -3.8750000000000018,3.88,a-pcom-i3,2017-18,Brookline - John D Runkle,00460045, 2.8, 5.5, 3.0, 87.6, 0.0, 1.0, 0.0, 85.3, 14.7, 100.1 -4.093749999999998,4.09,a-pcom-i3,2017-18,Brookline - Lawrence,00460030, 6.1, 5.9, 0.0, 86.9, 0.0, 0.0, 1.1, 81.0, 19.0, 93.5 -5.656249999999998,5,a-pcom-i3,2017-18,Brookline - Michael Driscoll,00460020, 4.7, 8.3, 4.1, 81.9, 0.0, 0.0, 1.0, 83.7, 16.3, 82.8 -6.25,5,a-pcom-i3,2017-18,Brookline - Pierce,00460040, 9.6, 6.8, 1.8, 80.0, 0.0, 0.0, 1.8, 84.7, 15.3, 111.3 -2.8437499999999982,2.84,a-pcom-i3,2017-18,Brookline - The Lynch Center,00460060, 6.7, 2.4, 0.0, 90.9, 0.0, 0.0, 0.0, 100.0, 0.0, 34.5 -4.125000000000001,4.13,a-pcom-i3,2017-18,Brookline - William H Lincoln,00460035, 5.2, 3.0, 4.0, 86.8, 0.0, 0.0, 1.0, 80.4, 19.6, 93.3 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Burlington - Burlington High,00480505, 0.0, 2.0, 3.3, 94.4, 0.0, 0.0, 0.4, 73.8, 26.2, 152.6 -1,1,a-pcom-i3,2017-18,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 59.9 -1,1,a-pcom-i3,2017-18,Burlington - Francis Wyman Elementary,00480035, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 89.1, 10.9, 90.5 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Burlington - Marshall Simonds Middle,00480303, 1.0, 3.1, 0.0, 94.9, 0.0, 0.0, 1.0, 81.2, 18.8, 97.7 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Burlington - Memorial,00480015, 0.0, 4.4, 0.0, 95.6, 0.0, 0.0, 0.0, 94.6, 5.4, 68.3 -1,1,a-pcom-i3,2017-18,Burlington - Pine Glen Elementary,00480020, 0.0, 0.8, 0.0, 97.5, 0.0, 0.0, 1.7, 90.6, 9.4, 60.3 -15.78125,5,a-pcom-i3,2017-18,Cambridge - Amigos School,00490006, 4.2, 1.7, 44.6, 49.5, 0.0, 0.0, 0.0, 81.9, 18.1, 59.1 -7.156250000000002,5,a-pcom-i3,2017-18,Cambridge - Cambridge Rindge and Latin,00490506, 12.2, 4.1, 5.6, 77.1, 0.4, 0.4, 0.4, 64.1, 35.9, 285.2 -9.375,5,a-pcom-i3,2017-18,Cambridge - Cambridge Street Upper School,00490305, 20.0, 6.0, 4.0, 70.0, 0.0, 0.0, 0.0, 81.5, 18.5, 50.0 -9.406249999999998,5,a-pcom-i3,2017-18,Cambridge - Cambridgeport,00490007, 20.4, 8.0, 0.0, 69.9, 0.0, 1.8, 0.0, 85.7, 14.3, 56.4 -10.249999999999998,5,a-pcom-i3,2017-18,Cambridge - Fletcher/Maynard Academy,00490090, 23.9, 5.9, 0.0, 67.2, 0.0, 1.5, 1.5, 86.2, 13.8, 67.5 -6.40625,5,a-pcom-i3,2017-18,Cambridge - Graham and Parks,00490080, 11.5, 6.9, 2.1, 79.5, 0.0, 0.0, 0.0, 89.2, 10.8, 65.1 -3.5625000000000018,3.56,a-pcom-i3,2017-18,Cambridge - Haggerty,00490020, 5.7, 3.8, 1.9, 88.6, 0.0, 0.0, 0.0, 91.0, 9.0, 52.5 -5.906250000000002,5,a-pcom-i3,2017-18,Cambridge - John M Tobin,00490065, 13.0, 5.0, 1.0, 81.1, 0.0, 0.0, 0.0, 88.4, 11.6, 50.2 -5.406249999999999,5,a-pcom-i3,2017-18,Cambridge - Kennedy-Longfellow,00490040, 6.9, 1.7, 8.7, 82.7, 0.0, 0.0, 0.0, 96.5, 3.5, 57.8 -9.187500000000002,5,a-pcom-i3,2017-18,Cambridge - King Open,00490035, 14.8, 3.5, 11.1, 70.6, 0.0, 0.0, 0.0, 83.1, 16.9, 71.9 -5.718749999999999,5,a-pcom-i3,2017-18,Cambridge - Maria L. Baldwin,00490005, 8.3, 5.0, 5.0, 81.7, 0.0, 0.0, 0.0, 84.8, 15.2, 60.1 -11.15625,5,a-pcom-i3,2017-18,Cambridge - Martin Luther King Jr.,00490030, 9.5, 20.1, 4.1, 64.3, 2.0, 0.0, 0.0, 89.7, 10.3, 48.8 -6.000000000000001,5,a-pcom-i3,2017-18,Cambridge - Morse,00490045, 12.8, 1.6, 4.8, 80.8, 0.0, 0.0, 0.0, 84.0, 16.0, 62.5 -4.718749999999998,4.72,a-pcom-i3,2017-18,Cambridge - Peabody,00490050, 8.9, 3.6, 0.9, 84.9, 1.8, 0.0, 0.0, 90.1, 9.9, 56.2 -15.15625,5,a-pcom-i3,2017-18,Cambridge - Putnam Avenue Upper School,00490310, 33.6, 10.7, 4.2, 51.5, 0.0, 0.0, 0.0, 67.4, 32.6, 47.6 -9.406249999999998,5,a-pcom-i3,2017-18,Cambridge - Rindge Avenue Upper School,00490315, 13.9, 4.6, 11.6, 69.9, 0.0, 0.0, 0.0, 66.5, 33.5, 43.2 -6.531250000000002,5,a-pcom-i3,2017-18,Cambridge - Vassal Lane Upper School,00490320, 10.4, 4.2, 6.3, 79.1, 0.0, 0.0, 0.0, 77.0, 23.0, 47.9 -2.3749999999999982,2.37,a-pcom-i3,2017-18,Canton - Canton High,00500505, 0.9, 2.8, 2.8, 92.4, 0.0, 0.0, 0.9, 67.2, 32.8, 105.7 -1,1,a-pcom-i3,2017-18,Canton - Dean S Luce,00500020, 1.5, 0.0, 1.5, 96.9, 0.0, 0.0, 0.0, 95.6, 4.4, 64.8 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Canton - John F Kennedy,00500017, 2.9, 1.4, 1.4, 94.2, 0.0, 0.0, 0.0, 93.0, 7.0, 69.0 -3.500000000000001,3.5,a-pcom-i3,2017-18,Canton - Lt Peter M Hansen,00500012, 4.2, 1.4, 2.8, 88.8, 0.0, 0.0, 2.8, 93.3, 6.7, 71.7 -5.218750000000001,5,a-pcom-i3,2017-18,Canton - Rodman Early Childhood Center,00500010, 16.7, 0.0, 0.0, 83.3, 0.0, 0.0, 0.0, 87.5, 12.5, 24.0 -3.4687499999999982,3.47,a-pcom-i3,2017-18,Canton - Wm H Galvin Middle,00500305, 3.3, 2.2, 3.3, 88.9, 0.0, 0.0, 2.2, 76.3, 23.7, 89.7 -1,1,a-pcom-i3,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 99.4, 0.0, 0.0, 0.6, 84.4, 15.6, 34.0 -1,1,a-pcom-i3,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 56.3, 43.7, 108.3 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Carlisle - Carlisle School,00510025, 1.0, 3.3, 0.0, 95.7, 0.0, 0.0, 0.0, 84.9, 15.1, 99.7 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Carver - Carver Elementary School,00520015, 0.5, 1.1, 1.1, 96.2, 1.1, 0.0, 0.0, 96.8, 3.2, 92.8 -2.3125000000000018,2.31,a-pcom-i3,2017-18,Carver - Carver Middle/High School,00520405, 4.6, 0.9, 0.9, 92.6, 0.0, 0.9, 0.0, 69.5, 30.5, 108.0 -1,1,a-pcom-i3,2017-18,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.7 -1,1,a-pcom-i3,2017-18,Central Berkshire - Craneville,06350025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.2, 6.8, 52.9 -1,1,a-pcom-i3,2017-18,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.2, 0.8, 25.6 -1,1,a-pcom-i3,2017-18,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 72.1, 27.9, 47.0 -1,1,a-pcom-i3,2017-18,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 97.2, 0.0, 0.0, 2.8, 67.2, 32.8, 72.2 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Chelmsford - Byam School,00560030, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 91.0, 9.0, 88.6 -1,1,a-pcom-i3,2017-18,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 98.5, 1.5, 67.5 -1,1,a-pcom-i3,2017-18,Chelmsford - Charles D Harrington,00560025, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 95.4, 4.6, 65.0 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Chelmsford - Chelmsford High,00560505, 0.0, 1.7, 1.7, 96.7, 0.0, 0.0, 0.0, 68.1, 31.9, 179.8 -1,1,a-pcom-i3,2017-18,Chelmsford - Col Moses Parker School,00560305, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 81.5, 18.5, 108.2 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Chelmsford - Community Education Center,00560001, 2.9, 2.9, 0.0, 94.2, 0.0, 0.0, 0.0, 97.1, 2.9, 34.2 -1.09375,1.09,a-pcom-i3,2017-18,Chelmsford - McCarthy Middle School,00560310, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 85.3, 14.7, 113.9 -1,1,a-pcom-i3,2017-18,Chelmsford - South Row,00560015, 0.8, 0.6, 1.6, 96.9, 0.0, 0.0, 0.0, 100.0, 0.0, 61.6 -5.656249999999998,5,a-pcom-i3,2017-18,Chelsea - Chelsea High,00570505, 0.3, 1.9, 14.1, 81.9, 0.0, 1.3, 0.6, 70.7, 29.3, 158.0 -4.874999999999998,4.87,a-pcom-i3,2017-18,Chelsea - Clark Avenue School,00570050, 5.2, 0.0, 10.4, 84.4, 0.0, 0.0, 0.0, 76.8, 23.2, 57.9 -4.187500000000002,4.19,a-pcom-i3,2017-18,Chelsea - Edgar A Hooks Elementary,00570030, 1.7, 0.0, 11.7, 86.6, 0.0, 0.0, 0.0, 84.7, 15.3, 59.7 -5.750000000000002,5,a-pcom-i3,2017-18,Chelsea - Eugene Wright Science and Technology Academy,00570045, 1.7, 0.0, 16.6, 81.6, 0.0, 0.0, 0.0, 77.7, 22.3, 57.4 -7.124999999999999,5,a-pcom-i3,2017-18,Chelsea - Frank M Sokolowski Elementary,00570040, 1.6, 1.6, 19.5, 77.2, 0.0, 0.0, 0.0, 88.3, 11.7, 61.3 -6.000000000000001,5,a-pcom-i3,2017-18,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 19.2, 80.8, 0.0, 0.0, 0.0, 89.3, 10.7, 57.3 -5.562499999999999,5,a-pcom-i3,2017-18,Chelsea - Joseph A. Browne School,00570055, 3.5, 3.5, 10.7, 82.2, 0.0, 0.0, 0.0, 83.8, 16.2, 56.6 -10.0625,5,a-pcom-i3,2017-18,Chelsea - Shurtleff Early Childhood,00570003, 0.0, 0.0, 32.2, 67.8, 0.0, 0.0, 0.0, 92.7, 7.3, 132.2 -6.937500000000001,5,a-pcom-i3,2017-18,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 1.6, 18.9, 77.8, 0.0, 1.6, 0.0, 84.9, 15.1, 60.8 -1,1,a-pcom-i3,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 29.7 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Chicopee - Barry,00610003, 1.8, 1.8, 0.0, 96.4, 0.0, 0.0, 0.0, 94.5, 5.5, 55.0 -2.9375000000000018,2.94,a-pcom-i3,2017-18,Chicopee - Belcher,00610010, 2.4, 0.0, 7.1, 90.6, 0.0, 0.0, 0.0, 92.0, 8.0, 42.4 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Chicopee - Bellamy Middle,00610305, 0.8, 0.0, 2.5, 95.8, 0.0, 0.8, 0.0, 80.8, 19.2, 120.0 -2.6874999999999982,2.69,a-pcom-i3,2017-18,Chicopee - Bowe,00610015, 3.4, 1.7, 3.4, 91.4, 0.0, 0.0, 0.0, 94.8, 5.2, 58.1 -1,1,a-pcom-i3,2017-18,Chicopee - Bowie,00610020, 2.1, 0.0, 0.7, 97.2, 0.0, 0.0, 0.0, 89.5, 10.5, 47.6 -5.343749999999998,5,a-pcom-i3,2017-18,Chicopee - Chicopee Academy,00610021, 13.1, 1.3, 2.7, 82.9, 0.0, 0.0, 0.0, 62.6, 37.4, 37.4 -2.0000000000000018,2.0,a-pcom-i3,2017-18,Chicopee - Chicopee Comprehensive High School,00610510, 0.6, 1.2, 4.7, 93.6, 0.0, 0.0, 0.0, 57.5, 42.5, 171.8 -2.281249999999999,2.28,a-pcom-i3,2017-18,Chicopee - Chicopee High,00610505, 1.5, 0.0, 5.1, 92.7, 0.7, 0.0, 0.0, 73.0, 27.0, 137.1 -2.5,2.5,a-pcom-i3,2017-18,Chicopee - Dupont Middle,00610310, 0.9, 0.5, 5.6, 92.0, 0.0, 0.0, 0.9, 81.1, 18.9, 105.4 -3.374999999999999,3.37,a-pcom-i3,2017-18,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 10.8, 89.2, 0.0, 0.0, 0.0, 91.8, 8.2, 84.7 -2.124999999999999,2.12,a-pcom-i3,2017-18,Chicopee - Gen John J Stefanik,00610090, 1.7, 0.0, 5.1, 93.2, 0.0, 0.0, 0.0, 93.2, 6.8, 60.0 -1,1,a-pcom-i3,2017-18,Chicopee - Lambert-Lavoie,00610040, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 91.7, 8.3, 48.0 -2.1875,2.19,a-pcom-i3,2017-18,Chicopee - Litwin,00610022, 0.0, 3.5, 3.5, 93.0, 0.0, 0.0, 0.0, 94.7, 5.3, 57.0 -1,1,a-pcom-i3,2017-18,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 97.0, 3.0, 44.5 -1.875,1.88,a-pcom-i3,2017-18,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 94.0, 6.0, 50.0 -3.1562499999999982,3.16,a-pcom-i3,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 4.5, 0.0, 2.6, 89.9, 0.0, 0.0, 3.0, 63.4, 36.6, 67.0 -9.812500000000002,5,a-pcom-i3,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 21.2, 2.0, 6.1, 68.6, 0.0, 0.0, 2.0, 70.9, 29.1, 49.1 -11.968749999999998,5,a-pcom-i3,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 25.5, 6.4, 6.4, 61.7, 0.0, 0.0, 0.0, 62.3, 37.7, 47.0 -9.937499999999998,5,a-pcom-i3,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 19.1, 3.2, 9.5, 68.2, 0.0, 0.0, 0.0, 74.6, 25.4, 31.4 -1,1,a-pcom-i3,2017-18,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.4, 10.6, 31.3 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Clinton - Clinton Elementary,00640050, 0.7, 1.0, 2.5, 95.8, 0.0, 0.0, 0.0, 95.2, 4.8, 104.2 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Clinton - Clinton Middle School,00640305, 2.5, 0.0, 0.1, 96.2, 1.1, 0.0, 0.0, 85.4, 14.6, 90.2 -1.09375,1.09,a-pcom-i3,2017-18,Clinton - Clinton Senior High,00640505, 0.0, 0.0, 1.7, 96.5, 0.0, 1.7, 0.0, 61.8, 38.2, 57.7 -16.21875,5,a-pcom-i3,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 41.8, 4.3, 2.9, 48.1, 1.4, 1.4, 0.0, 69.6, 30.4, 69.0 -1,1,a-pcom-i3,2017-18,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 65.9, 34.1, 101.3 -1,1,a-pcom-i3,2017-18,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 46.4 -1,1,a-pcom-i3,2017-18,Cohasset - Joseph Osgood,00650010, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 92.9, 7.1, 51.0 -6.875,5,a-pcom-i3,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 3.1, 7.9, 11.0, 78.0, 0.0, 0.0, 0.0, 81.9, 18.1, 63.5 -13.90625,5,a-pcom-i3,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 16.3, 3.0, 20.8, 55.5, 0.0, 0.0, 4.4, 68.1, 31.9, 67.5 -6.906249999999998,5,a-pcom-i3,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 2.9, 2.6, 16.5, 77.9, 0.0, 0.0, 0.0, 90.2, 9.8, 51.1 -6.468750000000001,5,a-pcom-i3,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 1.5, 0.2, 18.9, 79.3, 0.0, 0.0, 0.0, 81.9, 18.1, 64.6 -8.156249999999998,5,a-pcom-i3,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 3.1, 2.8, 20.3, 73.9, 0.0, 0.0, 0.0, 85.6, 14.4, 49.0 -2.437499999999999,2.44,a-pcom-i3,2017-18,Concord - Alcott,00670005, 2.5, 2.9, 2.5, 92.2, 0.0, 0.0, 0.0, 92.1, 7.9, 80.9 -2.34375,2.34,a-pcom-i3,2017-18,Concord - Concord Middle,00670305, 2.1, 3.3, 1.1, 92.5, 0.0, 1.1, 0.0, 76.0, 24.0, 94.8 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Concord - Thoreau,00670020, 1.4, 3.2, 0.0, 95.4, 0.0, 0.0, 0.0, 96.7, 3.3, 72.0 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Concord - Willard,00670030, 0.0, 1.6, 2.5, 95.9, 0.0, 0.0, 0.0, 95.8, 4.2, 80.7 -2.281249999999999,2.28,a-pcom-i3,2017-18,Concord-Carlisle - Concord Carlisle High,06400505, 1.7, 1.6, 4.0, 92.7, 0.0, 0.0, 0.0, 62.1, 37.9, 174.8 -12.09375,5,a-pcom-i3,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 23.1, 2.7, 11.6, 61.3, 0.0, 0.0, 1.4, 71.0, 29.0, 73.6 -1,1,a-pcom-i3,2017-18,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.0, 11.0, 36.3 -1,1,a-pcom-i3,2017-18,Danvers - Danvers High,00710505, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 61.1, 38.9, 111.8 -1,1,a-pcom-i3,2017-18,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 40.4 -1,1,a-pcom-i3,2017-18,Danvers - Highlands,00710010, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 87.5, 12.5, 47.9 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.9, 1.9, 95.2, 0.0, 0.0, 1.0, 79.7, 20.3, 103.5 -1,1,a-pcom-i3,2017-18,Danvers - Ivan G Smith,00710032, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 92.8, 7.2, 35.0 -1,1,a-pcom-i3,2017-18,Danvers - Riverside,00710030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 67.6 -1,1,a-pcom-i3,2017-18,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 92.4, 7.6, 44.1 -1,1,a-pcom-i3,2017-18,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.0, 1.0, 23.7 -1,1,a-pcom-i3,2017-18,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 99.1, 0.0, 0.0, 0.9, 64.8, 35.2, 107.0 -1,1,a-pcom-i3,2017-18,Dartmouth - Dartmouth Middle,00720050, 0.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.9, 66.3, 33.7, 107.1 -1,1,a-pcom-i3,2017-18,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 51.7 -1,1,a-pcom-i3,2017-18,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 93.8 -1,1,a-pcom-i3,2017-18,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 45.6 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Dedham - Avery,00730010, 1.8, 1.8, 1.8, 94.7, 0.0, 0.0, 0.0, 88.5, 11.5, 56.5 -2.4687500000000018,2.47,a-pcom-i3,2017-18,Dedham - Dedham High,00730505, 0.6, 3.1, 4.1, 92.1, 0.0, 0.0, 0.0, 72.7, 27.3, 96.4 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Dedham - Dedham Middle School,00730305, 2.0, 0.0, 1.0, 95.9, 0.0, 0.0, 1.0, 78.5, 21.5, 97.8 -1,1,a-pcom-i3,2017-18,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 98.1, 0.0, 0.0, 1.9, 96.1, 3.9, 51.8 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Dedham - Greenlodge,00730025, 2.4, 2.4, 0.0, 95.3, 0.0, 0.0, 0.0, 91.8, 8.2, 42.5 -1,1,a-pcom-i3,2017-18,Dedham - Oakdale,00730030, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 97.2, 2.8, 35.6 -1,1,a-pcom-i3,2017-18,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 35.9 -1,1,a-pcom-i3,2017-18,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.2, 9.8, 80.5 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.9, 0.0, 2.0, 95.3, 0.0, 0.0, 0.8, 67.5, 32.5, 128.8 -1,1,a-pcom-i3,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 95.0, 5.0, 75.4 -1,1,a-pcom-i3,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 56.3 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Dennis-Yarmouth - Mattacheese Middle School,06450305, 1.8, 0.0, 1.1, 95.8, 0.0, 0.0, 1.3, 80.2, 19.8, 75.7 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 1.2, 0.0, 2.4, 95.3, 0.0, 0.0, 1.2, 93.0, 7.0, 84.8 -1,1,a-pcom-i3,2017-18,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.9, 0.0, 1.7, 97.4, 0.0, 0.0, 0.0, 88.3, 11.7, 58.0 -1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dighton Elementary,06500005, 0.4, 0.0, 0.0, 99.6, 0.0, 0.0, 0.0, 95.2, 4.8, 56.0 -1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dighton Middle School,06500305, 0.4, 0.0, 0.0, 97.1, 0.0, 0.0, 2.5, 73.8, 26.2, 45.2 -1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 0.9, 0.0, 1.5, 97.5, 0.0, 0.0, 0.0, 69.2, 30.8, 130.6 -1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.3, 0.0, 1.2, 97.1, 0.0, 0.0, 1.4, 83.6, 16.4, 71.1 -1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Palmer River,06500010, 0.3, 0.0, 0.0, 99.7, 0.0, 0.0, 0.0, 95.8, 4.2, 63.8 -1,1,a-pcom-i3,2017-18,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 48.6 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Douglas - Douglas High School,00770505, 0.0, 1.6, 1.6, 96.7, 0.0, 0.0, 0.0, 66.0, 34.0, 60.7 -1,1,a-pcom-i3,2017-18,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 39.2 -1,1,a-pcom-i3,2017-18,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 97.4, 2.6, 38.5 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Dover - Chickering,00780005, 1.5, 0.0, 2.4, 96.2, 0.0, 0.0, 0.0, 91.4, 8.6, 84.6 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.3, 0.8, 3.6, 95.3, 0.0, 0.0, 0.0, 63.2, 36.8, 97.4 -2.437499999999999,2.44,a-pcom-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.1, 1.4, 3.4, 92.2, 0.0, 0.0, 0.0, 76.2, 23.8, 73.5 -1,1,a-pcom-i3,2017-18,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 86.6, 13.4, 42.5 -1,1,a-pcom-i3,2017-18,Dracut - Dracut Senior High,00790505, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 63.9, 36.1, 93.9 -1,1,a-pcom-i3,2017-18,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 46.0 -1,1,a-pcom-i3,2017-18,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 31.6 -1,1,a-pcom-i3,2017-18,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 95.1, 4.9, 65.2 -1,1,a-pcom-i3,2017-18,Dracut - Justus C. Richardson Middle School,00790410, 1.2, 0.0, 1.7, 97.1, 0.0, 0.0, 0.0, 86.2, 13.8, 86.1 -19.125,5,a-pcom-i3,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 50.2, 0.7, 10.4, 38.8, 0.0, 0.0, 0.0, 93.1, 6.9, 28.9 -1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 50.8 -1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.4, 97.3, 1.4, 0.0, 0.0, 75.5, 24.5, 73.5 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 2.6, 94.7, 2.6, 0.0, 0.0, 97.4, 2.6, 38.0 -1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 76.7, 23.3, 63.3 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 96.3, 0.0, 0.0, 3.7, 96.3, 3.7, 53.9 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 2.7, 94.7, 2.7, 0.0, 0.0, 94.7, 5.3, 37.5 -1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 54.6, 45.4, 97.0 -1,1,a-pcom-i3,2017-18,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 80.4 -1,1,a-pcom-i3,2017-18,Duxbury - Chandler Elementary,00820006, 0.0, 1.1, 1.1, 97.8, 0.0, 0.0, 0.0, 96.8, 3.2, 91.0 -1,1,a-pcom-i3,2017-18,Duxbury - Duxbury High,00820505, 0.8, 1.1, 0.0, 98.1, 0.0, 0.0, 0.0, 64.5, 35.5, 121.4 -1,1,a-pcom-i3,2017-18,Duxbury - Duxbury Middle,00820305, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 83.4, 16.6, 75.6 -1,1,a-pcom-i3,2017-18,East Bridgewater - Central,00830005, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 96.0, 4.0, 75.5 -1,1,a-pcom-i3,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.8, 35.2, 105.0 -1,1,a-pcom-i3,2017-18,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.0, 18.0, 83.4 -1.09375,1.09,a-pcom-i3,2017-18,East Longmeadow - Birchland Park,00870305, 1.2, 1.2, 1.2, 96.5, 0.0, 0.0, 0.0, 77.0, 23.0, 84.9 -2.3125000000000018,2.31,a-pcom-i3,2017-18,East Longmeadow - East Longmeadow High,00870505, 1.1, 2.1, 3.2, 92.6, 0.0, 0.0, 1.1, 64.4, 35.6, 94.0 -1,1,a-pcom-i3,2017-18,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.0, 18.0, 44.3 -1.8437500000000018,1.84,a-pcom-i3,2017-18,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 3.9, 94.1, 0.0, 0.0, 2.0, 99.0, 1.0, 98.0 -1.25,1.25,a-pcom-i3,2017-18,East Longmeadow - Mountain View,00870015, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 89.0, 11.0, 45.4 -1,1,a-pcom-i3,2017-18,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 41.4 -1,1,a-pcom-i3,2017-18,Easthampton - Center School,00860005, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 91.9, 8.1, 25.4 -1,1,a-pcom-i3,2017-18,Easthampton - Easthampton High,00860505, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 61.0, 39.0, 50.0 -1,1,a-pcom-i3,2017-18,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.1, 1.9, 41.7 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 97.3, 2.7, 34.9 -1.71875,1.72,a-pcom-i3,2017-18,Easthampton - White Brook Middle School,00860305, 1.8, 0.0, 1.8, 94.5, 0.0, 0.0, 1.8, 72.3, 27.7, 54.2 -1,1,a-pcom-i3,2017-18,Easton - Center School,00880003, 0.0, 0.0, 0.0, 97.2, 0.0, 0.0, 2.8, 97.4, 2.6, 35.6 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Easton - Easton Middle School,00880405, 1.2, 0.0, 1.0, 95.8, 0.0, 0.0, 2.0, 80.8, 19.2, 100.8 -1,1,a-pcom-i3,2017-18,Easton - Moreau Hall,00880020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 26.8 -1.9062499999999982,1.91,a-pcom-i3,2017-18,Easton - Oliver Ames High,00880505, 1.6, 0.8, 2.9, 93.9, 0.0, 0.0, 0.8, 63.9, 36.1, 124.8 -1,1,a-pcom-i3,2017-18,Easton - Parkview Elementary,00880015, 0.8, 0.0, 0.0, 99.2, 0.0, 0.0, 0.0, 93.9, 6.1, 50.2 -1,1,a-pcom-i3,2017-18,Easton - Richardson Olmsted School,00880025, 0.6, 0.0, 1.0, 97.3, 0.0, 0.0, 1.0, 92.2, 7.8, 96.3 -1,1,a-pcom-i3,2017-18,Edgartown - Edgartown Elementary,00890005, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 83.4, 16.6, 83.0 -19.375,5,a-pcom-i3,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 39.1, 2.2, 16.4, 38.0, 0.0, 0.0, 4.4, 55.2, 44.8, 45.8 -1.40625,1.41,a-pcom-i3,2017-18,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 95.5, 0.0, 0.0, 4.5, 87.7, 12.3, 44.0 -1,1,a-pcom-i3,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 1.1, 0.5, 0.0, 98.4, 0.0, 0.0, 0.0, 60.2, 39.8, 183.5 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Everett - Adams School,00930003, 4.2, 0.0, 0.0, 95.8, 0.0, 0.0, 0.0, 100.0, 0.0, 23.6 -7.96875,5,a-pcom-i3,2017-18,Everett - Devens School,00930030, 14.1, 0.0, 8.5, 74.5, 0.0, 0.0, 2.8, 53.7, 46.3, 35.4 -4.562499999999998,4.56,a-pcom-i3,2017-18,Everett - Everett High,00930505, 4.7, 3.2, 5.0, 85.4, 0.4, 0.4, 0.9, 53.1, 46.9, 233.9 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Everett - George Keverian School,00930028, 1.2, 1.2, 1.2, 95.1, 0.0, 1.2, 0.0, 84.7, 15.3, 81.5 -2.1875,2.19,a-pcom-i3,2017-18,Everett - Lafayette School,00930038, 2.9, 2.0, 2.1, 93.0, 0.0, 0.0, 0.0, 81.1, 18.9, 102.0 -2.03125,2.03,a-pcom-i3,2017-18,Everett - Madeline English School,00930018, 1.9, 1.9, 2.7, 93.5, 0.0, 0.0, 0.0, 90.9, 9.1, 103.9 -3.9374999999999982,3.94,a-pcom-i3,2017-18,Everett - Parlin School,00930058, 2.0, 1.6, 7.7, 87.4, 0.0, 0.0, 1.3, 80.9, 19.1, 78.1 -3.5625000000000018,3.56,a-pcom-i3,2017-18,Everett - Sumner G. Whittier School,00930010, 4.3, 1.4, 4.3, 88.6, 0.0, 0.0, 1.4, 90.1, 9.9, 70.3 -3.062499999999999,3.06,a-pcom-i3,2017-18,Everett - Webster School,00930015, 0.0, 1.8, 7.1, 90.2, 0.9, 0.0, 0.0, 95.5, 4.5, 112.2 -6.25,5,a-pcom-i3,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 3.8, 1.7, 14.6, 80.0, 0.0, 0.0, 0.0, 72.5, 27.5, 172.4 -1,1,a-pcom-i3,2017-18,Fairhaven - East Fairhaven,00940010, 0.5, 0.0, 0.0, 99.5, 0.0, 0.0, 0.0, 96.6, 3.4, 51.8 -2.124999999999999,2.12,a-pcom-i3,2017-18,Fairhaven - Fairhaven High,00940505, 1.7, 1.3, 1.1, 93.2, 0.0, 0.0, 2.7, 58.2, 41.8, 74.2 -1,1,a-pcom-i3,2017-18,Fairhaven - Hastings Middle,00940305, 0.5, 0.0, 0.0, 97.7, 0.0, 0.0, 1.8, 70.2, 29.8, 54.6 -1,1,a-pcom-i3,2017-18,Fairhaven - Leroy Wood,00940030, 0.5, 0.0, 0.0, 99.5, 0.0, 0.0, 0.0, 92.9, 7.1, 52.5 -2.406250000000001,2.41,a-pcom-i3,2017-18,Fall River - B M C Durfee High,00950505, 2.6, 1.1, 2.3, 92.3, 0.0, 0.0, 1.7, 63.1, 36.9, 269.7 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Fall River - Carlton M. Viveiros Elementary School,00950009, 1.1, 1.1, 2.1, 95.7, 0.0, 0.0, 0.0, 92.1, 7.9, 93.3 -31.25,5,a-pcom-i3,2017-18,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Fall River - Henry Lord Community School,00950017, 1.0, 0.0, 2.9, 95.1, 0.0, 0.0, 1.0, 89.2, 10.8, 102.0 -1,1,a-pcom-i3,2017-18,Fall River - James Tansey,00950140, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 90.9, 9.1, 32.9 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Fall River - John J Doran,00950045, 0.0, 0.0, 4.4, 94.2, 0.0, 0.0, 1.5, 84.8, 15.2, 68.9 -4.468749999999999,4.47,a-pcom-i3,2017-18,Fall River - Letourneau Elementary School,00950013, 7.2, 2.9, 4.3, 85.7, 0.0, 0.0, 0.0, 94.9, 5.1, 69.9 -2.1875,2.19,a-pcom-i3,2017-18,Fall River - Mary Fonseca Elementary School,00950011, 1.2, 0.0, 3.5, 93.0, 0.0, 0.0, 2.3, 89.2, 10.8, 85.2 -1.5625,1.56,a-pcom-i3,2017-18,Fall River - Matthew J Kuss Middle,00950320, 1.0, 1.0, 0.0, 95.0, 0.0, 0.0, 3.0, 66.2, 33.8, 98.9 -2.5,2.5,a-pcom-i3,2017-18,Fall River - Morton Middle,00950315, 0.0, 4.6, 3.4, 92.0, 0.0, 0.0, 0.0, 78.8, 21.2, 87.2 -1,1,a-pcom-i3,2017-18,Fall River - North End Elementary,00950005, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 94.9, 5.1, 84.0 -6.062500000000002,5,a-pcom-i3,2017-18,Fall River - Resiliency Preparatory Academy,00950525, 11.4, 0.0, 2.7, 80.6, 0.0, 0.0, 5.3, 52.9, 47.1, 37.7 -1,1,a-pcom-i3,2017-18,Fall River - Samuel Watson,00950145, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.2, 2.8, 35.1 -1,1,a-pcom-i3,2017-18,Fall River - Spencer Borden,00950130, 1.0, 0.0, 1.0, 96.9, 0.0, 0.0, 1.0, 89.8, 10.2, 95.7 -4.968750000000002,4.97,a-pcom-i3,2017-18,Fall River - Stone PK-12 School,00950340, 11.9, 0.0, 0.0, 84.1, 0.0, 0.0, 4.0, 73.0, 27.0, 25.2 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Fall River - Talbot Innovation School,00950305, 4.4, 0.0, 0.0, 95.6, 0.0, 0.0, 0.0, 81.8, 18.2, 67.5 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Fall River - William S Greene,00950065, 0.0, 1.1, 3.3, 95.6, 0.0, 0.0, 0.0, 94.5, 5.5, 91.5 -2.250000000000001,2.25,a-pcom-i3,2017-18,Falmouth - East Falmouth Elementary,00960005, 5.3, 0.0, 0.0, 92.8, 0.0, 0.0, 1.9, 84.2, 15.8, 54.0 -1.7812500000000009,1.78,a-pcom-i3,2017-18,Falmouth - Falmouth High,00960505, 1.9, 0.9, 2.8, 94.3, 0.0, 0.0, 0.0, 65.5, 34.5, 105.5 -2.6874999999999982,2.69,a-pcom-i3,2017-18,Falmouth - Lawrence,00960405, 6.0, 2.7, 0.0, 91.4, 0.0, 0.0, 0.0, 78.6, 21.4, 75.4 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Falmouth - Morse Pond School,00960305, 2.8, 0.0, 0.0, 95.9, 0.0, 0.0, 1.4, 86.9, 13.1, 72.5 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Falmouth - Mullen-Hall,00960020, 2.3, 0.0, 1.6, 96.2, 0.0, 0.0, 0.0, 94.4, 5.6, 62.9 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Falmouth - North Falmouth Elementary,00960030, 2.1, 0.0, 2.1, 95.7, 0.0, 0.0, 0.0, 88.3, 11.7, 47.0 -1.9687499999999991,1.97,a-pcom-i3,2017-18,Falmouth - Teaticket,00960015, 4.7, 0.0, 0.0, 93.7, 0.0, 0.0, 1.6, 95.3, 4.7, 63.9 -1,1,a-pcom-i3,2017-18,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 27.0 -4.624999999999999,4.62,a-pcom-i3,2017-18,Fitchburg - Arthur M Longsjo Middle School,00970315, 4.0, 0.0, 9.4, 85.2, 0.0, 0.0, 1.3, 69.8, 30.2, 74.6 -1.40625,1.41,a-pcom-i3,2017-18,Fitchburg - Crocker Elementary,00970016, 1.5, 0.0, 3.0, 95.5, 0.0, 0.0, 0.0, 94.1, 5.9, 67.2 -4.468749999999999,4.47,a-pcom-i3,2017-18,Fitchburg - Fitchburg High,00970505, 3.1, 0.8, 9.7, 85.7, 0.0, 0.0, 0.8, 60.0, 40.0, 130.5 -7.34375,5,a-pcom-i3,2017-18,Fitchburg - Goodrich Academy,00970510, 5.9, 0.0, 11.8, 76.5, 0.0, 0.0, 5.9, 70.6, 29.4, 17.0 -4.0625,4.06,a-pcom-i3,2017-18,Fitchburg - McKay Arts Academy,00970340, 1.1, 0.0, 11.9, 87.0, 0.0, 0.0, 0.0, 88.1, 11.9, 92.5 -2.593749999999999,2.59,a-pcom-i3,2017-18,Fitchburg - Memorial Intermediate,00970048, 4.2, 0.0, 4.2, 91.7, 0.0, 0.0, 0.0, 81.3, 18.7, 72.0 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Fitchburg - Reingold Elementary,00970043, 1.3, 1.3, 1.3, 94.7, 0.0, 0.0, 1.3, 90.8, 9.2, 75.8 -2.0000000000000018,2.0,a-pcom-i3,2017-18,Fitchburg - South Street Elementary,00970060, 1.1, 0.0, 4.4, 93.6, 0.0, 0.0, 0.9, 91.1, 8.9, 90.4 -1,1,a-pcom-i3,2017-18,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.2, 11.8, 23.8 -1,1,a-pcom-i3,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 67.5, 32.5, 31.1 -1,1,a-pcom-i3,2017-18,Foxborough - Charles Taylor Elementary,00990050, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 96.9, 3.1, 32.6 -1,1,a-pcom-i3,2017-18,Foxborough - Foxborough High,00990505, 1.0, 1.0, 0.0, 98.1, 0.0, 0.0, 0.0, 67.5, 32.5, 105.2 -1,1,a-pcom-i3,2017-18,Foxborough - John J Ahern,00990405, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 79.6, 20.4, 105.2 -1,1,a-pcom-i3,2017-18,Foxborough - Mabelle M Burrell,00990015, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 95.2, 4.8, 41.4 -1,1,a-pcom-i3,2017-18,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 54.3 -3.4375,3.44,a-pcom-i3,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 4.0, 0.0, 6.9, 89.0, 0.0, 0.0, 0.0, 77.1, 22.9, 148.5 -11.343749999999998,5,a-pcom-i3,2017-18,Framingham - Barbieri Elementary,01000035, 0.0, 0.0, 36.3, 63.7, 0.0, 0.0, 0.0, 92.2, 7.8, 92.1 -4.500000000000002,4.5,a-pcom-i3,2017-18,Framingham - Brophy,01000006, 0.0, 0.0, 14.4, 85.6, 0.0, 0.0, 0.0, 92.0, 8.0, 69.6 -3.0937500000000018,3.09,a-pcom-i3,2017-18,Framingham - Cameron Middle School,01000302, 3.6, 0.3, 6.0, 90.1, 0.0, 0.0, 0.0, 79.8, 20.2, 83.2 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Framingham - Charlotte A Dunning,01000007, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 89.5, 10.5, 71.1 -3.999999999999999,4.0,a-pcom-i3,2017-18,Framingham - Framingham High School,01000515, 1.6, 2.7, 8.6, 87.2, 0.0, 0.0, 0.0, 69.0, 31.0, 217.9 -5.062500000000001,5,a-pcom-i3,2017-18,Framingham - Fuller Middle,01000305, 4.2, 0.0, 11.9, 83.8, 0.0, 0.0, 0.0, 76.2, 23.8, 77.0 -2.593749999999999,2.59,a-pcom-i3,2017-18,Framingham - Hemenway,01000015, 1.3, 1.3, 5.7, 91.7, 0.0, 0.0, 0.0, 94.7, 5.3, 75.9 -7.562500000000001,5,a-pcom-i3,2017-18,Framingham - Juniper Hill School,01000001, 2.0, 3.6, 18.5, 75.8, 0.0, 0.0, 0.0, 94.9, 5.1, 54.9 -3.59375,3.59,a-pcom-i3,2017-18,Framingham - King Elementary School,01000005, 2.7, 1.8, 5.2, 88.5, 0.0, 0.0, 1.9, 94.1, 5.9, 33.9 -1,1,a-pcom-i3,2017-18,Framingham - Mary E Stapleton Elementary,01000045, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 89.6, 10.4, 69.4 -3.843749999999999,3.84,a-pcom-i3,2017-18,Framingham - Miriam F McCarthy School,01000050, 2.2, 3.4, 6.7, 87.7, 0.0, 0.0, 0.0, 92.5, 7.5, 89.4 -3.28125,3.28,a-pcom-i3,2017-18,Framingham - Potter Road,01000039, 1.8, 0.9, 7.8, 89.5, 0.0, 0.0, 0.0, 93.3, 6.7, 54.6 -4.031250000000002,4.03,a-pcom-i3,2017-18,Framingham - Walsh Middle,01000310, 1.8, 2.7, 8.4, 87.1, 0.0, 0.0, 0.0, 78.3, 21.7, 91.3 -3.4375,3.44,a-pcom-i3,2017-18,Framingham - Woodrow Wilson,01000055, 0.0, 0.0, 11.0, 89.0, 0.0, 0.0, 0.0, 90.5, 9.5, 81.7 -3.374999999999999,3.37,a-pcom-i3,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 2.8, 0.0, 4.8, 89.2, 0.0, 0.0, 3.2, 66.4, 33.6, 62.3 -1,1,a-pcom-i3,2017-18,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 82.0, 18.0, 55.5 -1,1,a-pcom-i3,2017-18,Franklin - Davis Thayer,01010035, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 96.5, 3.5, 35.8 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 4.1, 0.0, 95.9, 0.0, 0.0, 0.0, 100.0, 0.0, 24.5 -1,1,a-pcom-i3,2017-18,Franklin - Franklin High,01010505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 69.8, 30.2, 176.9 -1,1,a-pcom-i3,2017-18,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 50.9 -1,1,a-pcom-i3,2017-18,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.4, 21.6, 55.7 -3.125,3.13,a-pcom-i3,2017-18,Franklin - J F Kennedy Memorial,01010013, 5.0, 5.0, 0.0, 90.0, 0.0, 0.0, 0.0, 95.0, 5.0, 39.8 -1,1,a-pcom-i3,2017-18,Franklin - Jefferson Elementary,01010010, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 98.5, 1.5, 47.4 -1,1,a-pcom-i3,2017-18,Franklin - Oak Street Elementary,01010030, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 97.9, 2.1, 52.3 -1,1,a-pcom-i3,2017-18,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 43.6 -1,1,a-pcom-i3,2017-18,Franklin - Remington Middle,01010310, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 76.1, 23.9, 58.7 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.3, 0.0, 0.7, 96.7, 0.0, 0.0, 1.3, 41.0, 59.0, 75.2 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 66.6, 33.4, 93.6 -1,1,a-pcom-i3,2017-18,Freetown-Lakeville - Assawompset Elementary School,06650002, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 95.5, 4.5, 44.8 -1,1,a-pcom-i3,2017-18,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 55.7 -1,1,a-pcom-i3,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 73.9, 26.1, 80.6 -1,1,a-pcom-i3,2017-18,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 47.4 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Frontier - Frontier Regional,06700505, 0.0, 0.0, 1.0, 95.9, 2.0, 0.0, 1.0, 68.3, 31.7, 97.7 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Gardner - Elm Street School,01030001, 0.0, 0.0, 1.4, 95.7, 0.0, 0.0, 2.9, 92.0, 8.0, 69.2 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 95.4, 0.0, 0.0, 4.6, 35.3, 64.7, 10.9 -3.7187500000000018,3.72,a-pcom-i3,2017-18,Gardner - Gardner High,01030505, 0.0, 5.5, 2.6, 88.1, 0.0, 0.0, 3.8, 69.6, 30.4, 78.4 -1.5625,1.56,a-pcom-i3,2017-18,Gardner - Gardner Middle School,01030405, 0.0, 1.4, 1.4, 95.0, 0.0, 0.0, 2.1, 80.2, 19.8, 70.1 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Gardner - Waterford Street,01030020, 2.9, 0.0, 0.0, 95.7, 0.0, 0.0, 1.4, 92.8, 7.2, 69.2 -1,1,a-pcom-i3,2017-18,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 23.0 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 95.7, 0.0, 4.3, 0.0, 70.2, 29.8, 46.3 -1,1,a-pcom-i3,2017-18,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.9, 17.1, 30.4 -1,1,a-pcom-i3,2017-18,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 37.9 -1,1,a-pcom-i3,2017-18,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.5, 97.1, 0.0, 1.5, 0.0, 71.8, 28.2, 68.8 -1,1,a-pcom-i3,2017-18,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 99.8, 0.0, 0.2, 0.0, 76.0, 24.0, 12.6 -1,1,a-pcom-i3,2017-18,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 81.5 -1,1,a-pcom-i3,2017-18,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 8.7 -1,1,a-pcom-i3,2017-18,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 86.5, 13.5, 16.3 -1,1,a-pcom-i3,2017-18,Gill-Montague - Great Falls Middle,06740310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.8, 32.2, 36.3 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 3.0, 95.7, 0.0, 0.0, 1.2, 99.4, 0.6, 32.9 -1,1,a-pcom-i3,2017-18,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 0.0, 99.1, 0.0, 0.0, 0.9, 88.3, 11.7, 42.7 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Gill-Montague - Turners Fall High,06740505, 0.0, 0.0, 2.2, 95.6, 0.0, 0.0, 2.2, 73.8, 26.2, 45.5 -2.906249999999999,2.91,a-pcom-i3,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 6.1, 1.4, 1.7, 90.7, 0.0, 0.0, 0.0, 72.0, 28.0, 57.2 -1,1,a-pcom-i3,2017-18,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 53.2 -1,1,a-pcom-i3,2017-18,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 39.2 -1,1,a-pcom-i3,2017-18,Gloucester - Gloucester High,01070505, 0.8, 0.0, 0.8, 98.3, 0.0, 0.0, 0.0, 60.5, 39.5, 119.1 -1,1,a-pcom-i3,2017-18,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.1 -1,1,a-pcom-i3,2017-18,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 37.1 -1,1,a-pcom-i3,2017-18,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 77.4, 22.6, 84.1 -1,1,a-pcom-i3,2017-18,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 44.8 -1,1,a-pcom-i3,2017-18,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 59.0 -1,1,a-pcom-i3,2017-18,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 1.6 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Grafton - Grafton High School,01100505, 0.0, 1.8, 0.9, 96.1, 0.0, 0.0, 1.1, 69.9, 30.1, 109.4 -1,1,a-pcom-i3,2017-18,Grafton - Grafton Middle,01100305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.4, 27.6, 58.7 -1,1,a-pcom-i3,2017-18,Grafton - Millbury Street Elementary School,01100200, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 91.5, 8.5, 94.7 -1,1,a-pcom-i3,2017-18,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 49.3 -1,1,a-pcom-i3,2017-18,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 93.8, 6.2, 76.9 -1,1,a-pcom-i3,2017-18,Grafton - South Grafton Elementary,01100005, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 96.6, 3.4, 58.0 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Granby - East Meadow,01110004, 5.6, 0.0, 0.0, 94.4, 0.0, 0.0, 0.0, 84.8, 15.2, 18.1 -2.03125,2.03,a-pcom-i3,2017-18,Granby - Granby Jr Sr High School,01110505, 0.0, 2.2, 2.2, 93.5, 0.0, 0.0, 2.2, 67.2, 32.8, 46.5 -1,1,a-pcom-i3,2017-18,Granby - West Street,01110010, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 93.6, 6.4, 33.7 -1.25,1.25,a-pcom-i3,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 2.1, 0.0, 1.2, 96.0, 0.6, 0.0, 0.0, 46.6, 53.4, 164.3 -4.406249999999998,4.41,a-pcom-i3,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.9, 0.5, 12.2, 85.9, 0.0, 0.0, 0.5, 60.0, 40.0, 203.6 -2.1562500000000018,2.16,a-pcom-i3,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.8, 2.2, 2.9, 93.1, 0.0, 0.0, 0.0, 62.3, 37.7, 275.9 -2.03125,2.03,a-pcom-i3,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 2.9, 0.4, 2.5, 93.5, 0.7, 0.0, 0.0, 51.9, 48.1, 276.3 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Greenfield - Discovery School at Four Corners,01140025, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 95.4, 4.6, 50.9 -1,1,a-pcom-i3,2017-18,Greenfield - Federal Street School,01140010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 43.5 -1,1,a-pcom-i3,2017-18,Greenfield - Greenfield High,01140505, 0.0, 1.3, 1.3, 97.4, 0.0, 0.0, 0.0, 68.6, 31.4, 75.7 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Greenfield - Greenfield Middle,01140305, 1.5, 1.8, 1.5, 95.3, 0.0, 0.0, 0.0, 80.6, 19.4, 68.0 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Greenfield - Newton School,01140035, 0.0, 2.4, 2.4, 95.2, 0.0, 0.0, 0.0, 87.2, 12.8, 41.7 -1,1,a-pcom-i3,2017-18,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.3, 0.7, 27.7 -1,1,a-pcom-i3,2017-18,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 16.1 -1,1,a-pcom-i3,2017-18,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 95.0, 5.0, 60.5 -1,1,a-pcom-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 1.2, 1.2, 97.7, 0.0, 0.0, 0.0, 68.6, 31.4, 85.2 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.1, 1.1, 95.7, 1.1, 0.0, 1.1, 83.0, 17.0, 92.8 -1,1,a-pcom-i3,2017-18,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 97.9, 0.0, 2.1, 0.0, 95.8, 4.2, 48.1 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Hadley - Hadley Elementary,01170015, 1.9, 1.9, 0.0, 96.1, 0.0, 0.0, 0.0, 86.5, 13.5, 51.9 -1,1,a-pcom-i3,2017-18,Hadley - Hopkins Academy,01170505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.6, 34.4, 37.8 -1,1,a-pcom-i3,2017-18,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.1, 13.9, 64.9 -1,1,a-pcom-i3,2017-18,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 95.1, 4.9, 34.7 -1,1,a-pcom-i3,2017-18,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 94.2, 5.8, 41.2 -2.250000000000001,2.25,a-pcom-i3,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 1.4, 1.4, 92.8, 0.0, 0.0, 4.3, 61.6, 38.4, 69.5 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 2.9, 1.8, 95.3, 0.0, 0.0, 0.0, 88.6, 11.4, 55.4 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Hamilton-Wenham - Winthrop School,06750015, 0.0, 1.8, 0.0, 96.3, 0.0, 0.0, 1.8, 94.1, 5.9, 54.5 -4.656250000000002,4.66,a-pcom-i3,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,04990305, 4.7, 5.5, 4.7, 85.1, 0.0, 0.0, 0.0, 49.7, 50.3, 63.8 -1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Green Meadows Elementary,06800005, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 98.1, 1.9, 52.3 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Hampden-Wilbraham - Mile Tree Elementary,06800025, 1.9, 0.0, 1.9, 96.1, 0.0, 0.0, 0.0, 96.1, 3.9, 51.9 -1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 66.2, 33.8, 108.5 -1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Soule Road,06800030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.2, 2.8, 36.1 -1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 32.5 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Hampden-Wilbraham - Thornton Burgess,06800305, 3.8, 0.0, 0.0, 96.2, 0.0, 0.0, 0.0, 73.7, 26.3, 26.6 -1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.2, 23.8, 54.7 -1,1,a-pcom-i3,2017-18,Hampshire - Hampshire Regional High,06830505, 0.9, 0.9, 0.0, 98.2, 0.0, 0.0, 0.0, 69.9, 30.1, 112.5 -2.8125,2.81,a-pcom-i3,2017-18,Hancock - Hancock Elementary,01210005, 9.0, 0.0, 0.0, 91.0, 0.0, 0.0, 0.0, 83.8, 16.2, 11.1 -1,1,a-pcom-i3,2017-18,Hanover - Cedar Elementary,01220004, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 90.9, 9.1, 55.0 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Hanover - Center Elementary,01220005, 0.0, 1.9, 1.9, 96.1, 0.0, 0.0, 0.0, 97.9, 2.1, 51.7 -1,1,a-pcom-i3,2017-18,Hanover - Hanover High,01220505, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 67.9, 32.1, 91.4 -1,1,a-pcom-i3,2017-18,Hanover - Hanover Middle,01220305, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 76.3, 23.7, 99.0 -1.25,1.25,a-pcom-i3,2017-18,Hanover - Sylvester,01220015, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 80.3, 19.7, 25.0 -1,1,a-pcom-i3,2017-18,Harvard - Bromfield,01250505, 0.0, 0.0, 1.3, 97.5, 0.0, 1.3, 0.0, 72.9, 27.1, 79.4 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Harvard - Hildreth Elementary School,01250005, 1.7, 2.5, 1.7, 94.2, 0.0, 0.0, 0.0, 90.1, 9.9, 60.5 -1,1,a-pcom-i3,2017-18,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 40.8 -1,1,a-pcom-i3,2017-18,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.2, 32.8, 32.9 -1,1,a-pcom-i3,2017-18,Haverhill - Bradford Elementary,01280008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 59.2 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Haverhill - Caleb Dustin Hunking School,01280030, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 87.4, 12.6, 91.5 -2.4687500000000018,2.47,a-pcom-i3,2017-18,Haverhill - Consentino Annex at Bartlett School,01280005, 0.0, 0.0, 7.9, 92.1, 0.0, 0.0, 0.0, 89.5, 10.5, 12.7 -1,1,a-pcom-i3,2017-18,Haverhill - Consentino Middle School,01280100, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 77.0, 23.0, 84.1 -2.9375000000000018,2.94,a-pcom-i3,2017-18,Haverhill - Crowell,01280020, 0.0, 0.0, 9.4, 90.6, 0.0, 0.0, 0.0, 94.4, 5.6, 16.0 -1.71875,1.72,a-pcom-i3,2017-18,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.4, 4.2, 94.5, 0.0, 0.0, 0.0, 87.0, 13.0, 72.2 -1.71875,1.72,a-pcom-i3,2017-18,Haverhill - Golden Hill,01280026, 0.0, 0.0, 5.5, 94.5, 0.0, 0.0, 0.0, 93.0, 7.0, 72.7 -1,1,a-pcom-i3,2017-18,Haverhill - Greenleaf Kindergarten Center,01280027, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 18.2 -3.2500000000000018,3.25,a-pcom-i3,2017-18,Haverhill - Haverhill Alternative School,01280033, 0.0, 0.0, 10.4, 89.6, 0.0, 0.0, 0.0, 59.6, 40.4, 19.2 -2.03125,2.03,a-pcom-i3,2017-18,Haverhill - Haverhill High,01280505, 1.4, 0.9, 4.2, 93.5, 0.0, 0.0, 0.0, 65.2, 34.8, 216.7 -1.40625,1.41,a-pcom-i3,2017-18,Haverhill - John G Whittier,01280085, 2.2, 0.0, 2.2, 95.5, 0.0, 0.0, 0.0, 77.7, 22.3, 44.8 -1.40625,1.41,a-pcom-i3,2017-18,Haverhill - Moody,01280045, 0.0, 2.5, 2.0, 95.5, 0.0, 0.0, 0.0, 100.0, 0.0, 39.9 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 95.8, 4.2, 71.8 -2.65625,2.66,a-pcom-i3,2017-18,Haverhill - TEACH,01280073, 3.3, 5.2, 0.0, 91.5, 0.0, 0.0, 0.0, 77.9, 22.1, 30.5 -1.7812500000000009,1.78,a-pcom-i3,2017-18,Haverhill - Tilton,01280075, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 95.7, 4.3, 70.4 -1,1,a-pcom-i3,2017-18,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 13.9 -1,1,a-pcom-i3,2017-18,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 18.7 -28.843749999999996,5,a-pcom-i3,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 55.8, 3.8, 26.9, 7.7, 0.0, 0.0, 5.8, 46.2, 53.8, 26.0 -1.9375000000000009,1.94,a-pcom-i3,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 0.0, 2.1, 2.1, 93.8, 0.0, 0.0, 2.1, 87.5, 12.5, 48.0 -1,1,a-pcom-i3,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 86.5, 13.5, 38.6 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Hingham - East Elementary School,01310005, 1.3, 0.0, 1.3, 96.1, 0.0, 0.0, 1.3, 91.6, 8.4, 77.8 -1,1,a-pcom-i3,2017-18,Hingham - Hingham High,01310505, 0.0, 0.6, 0.0, 98.7, 0.0, 0.0, 0.7, 66.3, 33.7, 134.6 -1,1,a-pcom-i3,2017-18,Hingham - Hingham Middle School,01310410, 0.0, 0.0, 1.7, 97.4, 0.0, 0.0, 0.9, 79.5, 20.5, 115.0 -1,1,a-pcom-i3,2017-18,Hingham - Plymouth River,01310019, 0.9, 1.0, 0.0, 98.1, 0.0, 0.0, 0.0, 92.6, 7.4, 58.7 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Hingham - South Elementary,01310020, 1.4, 2.9, 0.0, 95.7, 0.0, 0.0, 0.0, 96.2, 3.8, 69.4 -1,1,a-pcom-i3,2017-18,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 93.9, 6.1, 59.5 -1,1,a-pcom-i3,2017-18,Holbrook - Holbrook Middle High School,01330505, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 67.3, 32.7, 56.8 -1,1,a-pcom-i3,2017-18,Holbrook - John F Kennedy,01330018, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 98.2, 1.8, 67.0 -1,1,a-pcom-i3,2017-18,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 32.1 -1,1,a-pcom-i3,2017-18,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 72.8, 27.2, 101.3 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Holliston - Miller School,01360007, 0.0, 1.1, 0.1, 96.6, 1.1, 0.0, 1.1, 93.6, 6.4, 91.7 -1,1,a-pcom-i3,2017-18,Holliston - Placentino Elementary,01360010, 0.0, 1.9, 0.4, 97.7, 0.0, 0.0, 0.0, 94.6, 5.4, 103.7 -1,1,a-pcom-i3,2017-18,Holliston - Robert H. Adams Middle School,01360305, 0.0, 1.0, 1.0, 98.0, 0.0, 0.0, 0.0, 85.1, 14.9, 98.0 -9.406249999999998,5,a-pcom-i3,2017-18,Holyoke - E N White Elementary,01370045, 1.3, 0.0, 27.5, 69.9, 0.0, 0.0, 1.3, 92.1, 7.9, 75.5 -9.500000000000002,5,a-pcom-i3,2017-18,Holyoke - H.B. Lawrence School,01370070, 2.4, 0.0, 28.0, 69.6, 0.0, 0.0, 0.0, 87.8, 12.2, 41.1 -7.531249999999998,5,a-pcom-i3,2017-18,Holyoke - Holyoke High,01370505, 1.3, 1.3, 20.9, 75.9, 0.0, 0.7, 0.0, 66.0, 34.0, 153.1 -10.53125,5,a-pcom-i3,2017-18,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 33.7, 66.3, 0.0, 0.0, 0.0, 100.0, 0.0, 47.4 -11.687499999999998,5,a-pcom-i3,2017-18,Holyoke - Kelly Elementary,01370040, 3.1, 0.0, 32.7, 62.6, 0.0, 0.0, 1.6, 84.6, 15.4, 64.2 -7.906249999999999,5,a-pcom-i3,2017-18,Holyoke - Lt Clayre Sullivan Elementary,01370055, 2.4, 0.0, 22.9, 74.7, 0.0, 0.0, 0.0, 88.0, 12.0, 83.1 -7.999999999999998,5,a-pcom-i3,2017-18,Holyoke - Lt Elmer J McMahon Elementary,01370015, 1.5, 1.5, 22.6, 74.4, 0.0, 0.0, 0.0, 93.2, 6.8, 66.5 -10.46875,5,a-pcom-i3,2017-18,Holyoke - Maurice A Donahue Elementary,01370060, 3.4, 0.0, 29.0, 66.5, 1.1, 0.0, 0.0, 79.5, 20.5, 88.0 -8.96875,5,a-pcom-i3,2017-18,Holyoke - Morgan Full Service Community School,01370025, 10.4, 0.0, 16.5, 71.3, 0.0, 0.0, 1.7, 91.3, 8.7, 57.5 -12.875,5,a-pcom-i3,2017-18,Holyoke - William R. Peck School,01370030, 5.9, 0.0, 35.3, 58.8, 0.0, 0.0, 0.0, 67.6, 32.4, 68.0 -7.843749999999998,5,a-pcom-i3,2017-18,Holyoke - Wm J Dean Vocational Technical High,01370605, 2.5, 0.0, 22.6, 74.9, 0.0, 0.0, 0.0, 52.4, 47.6, 39.9 -12.437499999999998,5,a-pcom-i3,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 5.3, 1.1, 33.5, 60.2, 0.0, 0.0, 0.0, 70.3, 29.7, 94.1 -1,1,a-pcom-i3,2017-18,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 73.7, 26.3, 70.0 -1,1,a-pcom-i3,2017-18,Hopedale - Memorial,01380010, 0.0, 1.2, 1.2, 97.6, 0.0, 0.0, 0.0, 95.1, 4.9, 83.0 -1,1,a-pcom-i3,2017-18,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 19.8 -1,1,a-pcom-i3,2017-18,Hopkinton - Center,01390005, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 94.2, 5.8, 68.7 -1,1,a-pcom-i3,2017-18,Hopkinton - Elmwood,01390010, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 90.1, 9.9, 58.9 -1,1,a-pcom-i3,2017-18,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 92.1, 7.9, 57.2 -1,1,a-pcom-i3,2017-18,Hopkinton - Hopkinton High,01390505, 0.0, 1.2, 1.7, 97.2, 0.0, 0.0, 0.0, 62.2, 37.8, 121.1 -1.09375,1.09,a-pcom-i3,2017-18,Hopkinton - Hopkinton Middle School,01390305, 0.0, 1.6, 2.0, 96.5, 0.0, 0.0, 0.0, 79.7, 20.3, 90.2 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Hopkinton - Hopkinton Pre-School,01390003, 5.4, 0.0, 0.0, 94.6, 0.0, 0.0, 0.0, 100.0, 0.0, 16.7 -1,1,a-pcom-i3,2017-18,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 67.1 -1,1,a-pcom-i3,2017-18,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 96.9 -1,1,a-pcom-i3,2017-18,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 45.8 -1,1,a-pcom-i3,2017-18,Hudson - Hudson High,01410505, 0.8, 0.0, 0.8, 98.5, 0.0, 0.0, 0.0, 75.4, 24.6, 132.0 -1,1,a-pcom-i3,2017-18,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 54.0 -1,1,a-pcom-i3,2017-18,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.0, 36.0, 48.2 -1,1,a-pcom-i3,2017-18,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 57.9 -1,1,a-pcom-i3,2017-18,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.2, 18.8, 32.0 -2.5,2.5,a-pcom-i3,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 1.0, 2.9, 4.1, 92.0, 0.0, 0.0, 0.0, 71.1, 28.9, 104.0 -1,1,a-pcom-i3,2017-18,Ipswich - Ipswich High,01440505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 67.2, 32.8, 69.6 -1,1,a-pcom-i3,2017-18,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.0, 24.0, 61.2 -1,1,a-pcom-i3,2017-18,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 67.1 -1,1,a-pcom-i3,2017-18,Ipswich - Winthrop,01440015, 1.5, 0.0, 1.5, 97.0, 0.0, 0.0, 0.0, 91.1, 8.9, 66.0 -16.59375,5,a-pcom-i3,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 32.6, 0.0, 16.9, 46.9, 1.2, 0.0, 2.4, 69.2, 30.8, 82.8 -12.40625,5,a-pcom-i3,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 14.1, 7.0, 16.0, 60.3, 0.0, 0.0, 2.6, 73.9, 26.1, 156.0 -1,1,a-pcom-i3,2017-18,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.8, 20.2, 84.1 -1,1,a-pcom-i3,2017-18,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.5, 31.5, 135.1 -1,1,a-pcom-i3,2017-18,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 57.2 -1,1,a-pcom-i3,2017-18,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.2, 12.8, 67.1 -1,1,a-pcom-i3,2017-18,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.5, 12.5, 36.8 -4.812500000000002,4.81,a-pcom-i3,2017-18,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 13.7, 84.6, 1.7, 0.0, 0.0, 79.6, 20.4, 59.3 -6.593749999999998,5,a-pcom-i3,2017-18,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 21.1, 78.9, 0.0, 0.0, 0.0, 63.1, 36.9, 57.3 -5.125000000000002,5,a-pcom-i3,2017-18,Lawrence - Community Day Arlington,01490009, 0.0, 1.3, 15.2, 83.6, 0.0, 0.0, 0.0, 81.7, 18.3, 79.7 -6.343749999999999,5,a-pcom-i3,2017-18,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 20.3, 79.7, 0.0, 0.0, 0.0, 93.6, 6.4, 69.7 -4.031250000000002,4.03,a-pcom-i3,2017-18,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.2, 11.7, 87.1, 0.0, 0.0, 0.0, 93.0, 7.0, 86.2 -4.937499999999999,4.94,a-pcom-i3,2017-18,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 15.8, 84.2, 0.0, 0.0, 0.0, 92.0, 8.0, 51.3 -6.156250000000001,5,a-pcom-i3,2017-18,Lawrence - Frost Middle School,01490525, 2.0, 1.9, 15.8, 80.3, 0.0, 0.0, 0.0, 66.7, 33.3, 51.4 -4.874999999999998,4.87,a-pcom-i3,2017-18,Lawrence - Gerard A. Guilmette,01490022, 1.4, 1.4, 12.8, 84.4, 0.0, 0.0, 0.0, 92.9, 7.1, 71.3 -5.718749999999999,5,a-pcom-i3,2017-18,Lawrence - Guilmette Middle School,01490025, 1.5, 0.0, 16.8, 81.7, 0.0, 0.0, 0.0, 77.3, 22.7, 66.3 -5.656249999999998,5,a-pcom-i3,2017-18,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 14.3, 81.9, 3.8, 0.0, 0.0, 56.7, 43.3, 26.0 -9.812500000000002,5,a-pcom-i3,2017-18,Lawrence - James F Hennessey,01490020, 0.0, 1.9, 29.5, 68.6, 0.0, 0.0, 0.0, 92.1, 7.9, 51.3 -11.3125,5,a-pcom-i3,2017-18,Lawrence - John Breen School,01490003, 0.0, 0.0, 34.1, 63.8, 2.1, 0.0, 0.0, 99.8, 0.2, 47.3 -8.125,5,a-pcom-i3,2017-18,Lawrence - John K Tarbox,01490075, 0.0, 0.0, 26.0, 74.0, 0.0, 0.0, 0.0, 91.2, 8.8, 35.0 -12.0625,5,a-pcom-i3,2017-18,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 38.6, 61.4, 0.0, 0.0, 0.0, 88.3, 11.7, 26.2 -5.406249999999999,5,a-pcom-i3,2017-18,Lawrence - Lawrence Family Public Academy,01490011, 2.8, 0.0, 14.5, 82.7, 0.0, 0.0, 0.0, 97.0, 3.0, 35.3 -9.187500000000002,5,a-pcom-i3,2017-18,Lawrence - Lawrence High School,01490515, 3.0, 0.8, 25.1, 70.6, 0.3, 0.0, 0.3, 65.5, 34.5, 371.5 -5.812499999999998,5,a-pcom-i3,2017-18,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 18.6, 81.4, 0.0, 0.0, 0.0, 86.1, 13.9, 65.2 -4.718749999999998,4.72,a-pcom-i3,2017-18,Lawrence - Parthum Middle School,01490027, 0.0, 0.0, 15.1, 84.9, 0.0, 0.0, 0.0, 73.3, 26.7, 60.3 -10.718749999999998,5,a-pcom-i3,2017-18,Lawrence - Phoenix Academy Lawrence,01490540, 0.0, 0.0, 34.3, 65.7, 0.0, 0.0, 0.0, 79.7, 20.3, 13.2 -5.0,5.0,a-pcom-i3,2017-18,Lawrence - Robert Frost,01490018, 3.2, 1.6, 11.3, 84.0, 0.0, 0.0, 0.0, 90.4, 9.6, 63.2 -7.531249999999998,5,a-pcom-i3,2017-18,Lawrence - Rollins Early Childhood Center,01490001, 2.0, 0.0, 22.1, 75.9, 0.0, 0.0, 0.0, 95.9, 4.1, 50.3 -12.312499999999998,5,a-pcom-i3,2017-18,Lawrence - School for Exceptional Studies,01490537, 2.3, 1.5, 35.5, 60.6, 0.0, 0.0, 0.0, 66.4, 33.6, 129.9 -6.375000000000002,5,a-pcom-i3,2017-18,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 0.0, 17.5, 79.6, 1.4, 0.0, 1.4, 86.9, 13.1, 69.2 -8.250000000000002,5,a-pcom-i3,2017-18,Lawrence - Spark Academy,01490085, 3.5, 1.7, 21.1, 73.6, 0.0, 0.0, 0.0, 73.7, 26.3, 57.3 -13.1875,5,a-pcom-i3,2017-18,Lawrence - UP Academy Leonard Middle School,01490090, 2.6, 2.6, 34.3, 57.8, 2.6, 0.0, 0.0, 60.6, 39.4, 38.2 -9.0625,5,a-pcom-i3,2017-18,Lawrence - UP Academy Oliver Middle School,01490049, 2.2, 0.0, 26.8, 71.0, 0.0, 0.0, 0.0, 75.5, 24.5, 45.2 -8.125,5,a-pcom-i3,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.2, 1.2, 23.5, 74.0, 0.0, 0.0, 0.0, 89.6, 10.4, 81.9 -1,1,a-pcom-i3,2017-18,Lee - Lee Elementary,01500025, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 95.7, 4.3, 65.4 -1.09375,1.09,a-pcom-i3,2017-18,Lee - Lee Middle/High School,01500505, 0.0, 1.8, 1.8, 96.5, 0.0, 0.0, 0.0, 76.6, 23.4, 56.4 -2.1875,2.19,a-pcom-i3,2017-18,Leicester - Leicester High,01510505, 0.0, 3.5, 3.6, 93.0, 0.0, 0.0, 0.0, 72.8, 27.2, 57.5 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 92.7, 7.3, 41.0 -1,1,a-pcom-i3,2017-18,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.5, 19.5, 51.3 -1,1,a-pcom-i3,2017-18,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 96.9, 3.1, 64.2 -1,1,a-pcom-i3,2017-18,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.3, 34.7, 73.6 -1,1,a-pcom-i3,2017-18,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 61.0 -3.500000000000001,3.5,a-pcom-i3,2017-18,Leominster - Bennett,01530003, 5.6, 0.0, 5.6, 88.8, 0.0, 0.0, 0.0, 98.9, 1.1, 17.8 -1,1,a-pcom-i3,2017-18,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 31.1, 68.9, 37.0 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Leominster - Fall Brook,01530007, 0.0, 1.3, 2.6, 96.2, 0.0, 0.0, 0.0, 96.2, 3.8, 78.1 -2.718750000000001,2.72,a-pcom-i3,2017-18,Leominster - Frances Drake School,01530010, 2.2, 1.1, 5.4, 91.3, 0.0, 0.0, 0.0, 90.1, 9.9, 92.2 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Leominster - Johnny Appleseed,01530025, 3.5, 0.0, 1.4, 95.1, 0.0, 0.0, 0.0, 97.2, 2.8, 71.5 -3.187500000000001,3.19,a-pcom-i3,2017-18,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 10.2, 89.8, 0.0, 0.0, 0.0, 69.4, 30.6, 9.8 -1.9687499999999991,1.97,a-pcom-i3,2017-18,Leominster - Leominster High School,01530505, 0.6, 1.9, 3.8, 93.7, 0.0, 0.0, 0.0, 66.8, 33.2, 157.9 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Leominster - Lincoln School,01530005, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 95.4, 4.6, 25.9 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Leominster - Northwest,01530030, 2.8, 0.0, 1.4, 95.8, 0.0, 0.0, 0.0, 90.1, 9.9, 70.8 -2.1875,2.19,a-pcom-i3,2017-18,Leominster - Priest Street,01530040, 0.0, 3.5, 3.5, 93.0, 0.0, 0.0, 0.0, 90.9, 9.1, 28.6 -1,1,a-pcom-i3,2017-18,Leominster - Samoset School,01530045, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 77.1, 22.9, 54.6 -1.40625,1.41,a-pcom-i3,2017-18,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 86.5, 13.5, 88.9 -1,1,a-pcom-i3,2017-18,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.7, 16.3, 30.2 -5.593750000000002,5,a-pcom-i3,2017-18,Lexington - Bowman,01550008, 7.0, 7.8, 2.6, 82.1, 0.0, 0.6, 0.0, 89.2, 10.8, 76.4 -2.3749999999999982,2.37,a-pcom-i3,2017-18,Lexington - Bridge,01550006, 1.7, 3.3, 0.0, 92.4, 0.0, 0.0, 2.6, 90.0, 10.0, 77.2 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Lexington - Fiske,01550015, 1.5, 1.9, 1.2, 95.4, 0.0, 0.0, 0.0, 83.5, 16.5, 86.2 -4.468749999999999,4.47,a-pcom-i3,2017-18,Lexington - Harrington,01550030, 3.3, 4.2, 5.6, 85.7, 0.0, 0.0, 1.2, 95.5, 4.5, 65.0 -3.4375,3.44,a-pcom-i3,2017-18,Lexington - Jonas Clarke Middle,01550305, 1.7, 5.2, 2.8, 89.0, 0.0, 0.0, 1.3, 74.9, 25.1, 139.1 -2.562500000000001,2.56,a-pcom-i3,2017-18,Lexington - Joseph Estabrook,01550010, 4.1, 0.9, 1.7, 91.8, 0.0, 0.0, 1.5, 87.4, 12.6, 65.9 -1.25,1.25,a-pcom-i3,2017-18,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 1.2, 96.0, 0.0, 0.0, 2.8, 100.0, 0.0, 24.0 -2.34375,2.34,a-pcom-i3,2017-18,Lexington - Lexington High,01550505, 1.1, 3.6, 2.1, 92.5, 0.0, 0.0, 0.7, 72.9, 27.1, 281.1 -5.249999999999999,5,a-pcom-i3,2017-18,Lexington - Maria Hastings,01550035, 3.1, 8.6, 3.7, 83.2, 0.0, 0.0, 1.3, 92.9, 7.1, 74.8 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Lexington - Wm Diamond Middle,01550310, 1.9, 4.5, 2.5, 91.1, 0.0, 0.0, 0.0, 73.9, 26.1, 125.0 -19.34375,5,a-pcom-i3,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305, 0.0, 10.2, 51.8, 38.1, 0.0, 0.0, 0.0, 55.3, 44.7, 9.9 -2.0624999999999982,2.06,a-pcom-i3,2017-18,Lincoln - Hanscom Middle,01570305, 2.2, 0.1, 4.4, 93.4, 0.0, 0.0, 0.0, 77.6, 22.4, 46.0 -2.093750000000001,2.09,a-pcom-i3,2017-18,Lincoln - Hanscom Primary,01570006, 3.0, 0.0, 3.7, 93.3, 0.0, 0.0, 0.0, 95.2, 4.8, 58.8 -2.437499999999999,2.44,a-pcom-i3,2017-18,Lincoln - Lincoln School,01570025, 3.4, 2.5, 0.9, 92.2, 0.9, 0.0, 0.0, 90.8, 9.2, 116.1 -1.8437500000000018,1.84,a-pcom-i3,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 2.1, 2.3, 0.0, 94.1, 0.5, 0.5, 0.5, 61.6, 38.4, 206.6 -1,1,a-pcom-i3,2017-18,Littleton - Littleton High School,01580505, 0.4, 0.0, 0.0, 99.6, 0.0, 0.0, 0.0, 66.6, 33.4, 54.4 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Littleton - Littleton Middle School,01580305, 1.7, 0.0, 0.0, 96.1, 0.0, 2.3, 0.0, 88.4, 11.6, 44.4 -1,1,a-pcom-i3,2017-18,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 46.1 -2.3125000000000018,2.31,a-pcom-i3,2017-18,Littleton - Shaker Lane Elementary,01580005, 3.3, 1.2, 1.2, 92.6, 0.0, 0.0, 1.7, 97.9, 2.1, 60.4 -1,1,a-pcom-i3,2017-18,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 57.7 -1,1,a-pcom-i3,2017-18,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 57.2 -1,1,a-pcom-i3,2017-18,Longmeadow - Glenbrook Middle,01590017, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 84.3, 15.7, 44.1 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Longmeadow - Longmeadow High,01590505, 0.8, 0.0, 2.5, 96.6, 0.0, 0.0, 0.0, 67.8, 32.2, 118.6 -1,1,a-pcom-i3,2017-18,Longmeadow - Williams Middle,01590305, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 77.5, 22.5, 41.7 -1,1,a-pcom-i3,2017-18,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 93.5, 6.5, 82.2 -5.249999999999999,5,a-pcom-i3,2017-18,Lowell - Abraham Lincoln,01600020, 3.7, 5.8, 7.3, 83.2, 0.0, 0.0, 0.0, 94.2, 5.8, 68.5 -3.7812499999999982,3.78,a-pcom-i3,2017-18,Lowell - B.F. Butler Middle School,01600310, 2.6, 8.0, 1.5, 87.9, 0.0, 0.0, 0.0, 65.6, 34.4, 65.0 -3.1562499999999982,3.16,a-pcom-i3,2017-18,Lowell - Bartlett Community Partnership,01600090, 2.5, 3.8, 2.5, 89.9, 0.0, 1.3, 0.0, 85.4, 14.6, 79.1 -1.875,1.88,a-pcom-i3,2017-18,Lowell - Charles W Morey,01600030, 0.0, 3.0, 3.0, 94.0, 0.0, 0.0, 0.0, 94.8, 5.2, 66.9 -2.1562500000000018,2.16,a-pcom-i3,2017-18,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 3.9, 3.1, 93.1, 0.0, 0.0, 0.0, 90.7, 9.3, 64.8 -2.593749999999999,2.59,a-pcom-i3,2017-18,Lowell - Dr An Wang School,01600345, 1.3, 0.0, 7.1, 91.7, 0.0, 0.0, 0.0, 75.7, 24.3, 70.9 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Lowell - Dr Gertrude Bailey,01600002, 0.0, 1.5, 3.1, 95.4, 0.0, 0.0, 0.0, 92.3, 7.7, 65.0 -3.0937500000000018,3.09,a-pcom-i3,2017-18,Lowell - Greenhalge,01600015, 2.8, 1.4, 1.4, 90.1, 1.4, 1.4, 1.4, 95.8, 4.2, 70.6 -4.156249999999999,4.16,a-pcom-i3,2017-18,Lowell - Henry J Robinson Middle,01600330, 1.3, 5.3, 5.3, 86.7, 0.0, 0.0, 1.3, 74.9, 25.1, 75.2 -2.093750000000001,2.09,a-pcom-i3,2017-18,Lowell - James S Daley Middle School,01600315, 0.6, 3.6, 1.2, 93.3, 1.2, 0.0, 0.0, 81.7, 18.3, 82.3 -3.687499999999999,3.69,a-pcom-i3,2017-18,Lowell - James Sullivan Middle School,01600340, 1.3, 1.3, 9.2, 88.2, 0.0, 0.0, 0.0, 73.2, 26.8, 76.5 -1,1,a-pcom-i3,2017-18,Lowell - John J Shaughnessy,01600050, 1.5, 0.8, 0.0, 97.7, 0.0, 0.0, 0.0, 94.6, 5.4, 65.1 -5.3125,5,a-pcom-i3,2017-18,Lowell - Joseph McAvinnue,01600010, 0.0, 4.3, 12.8, 83.0, 0.0, 0.0, 0.0, 90.1, 9.9, 70.6 -4.093749999999998,4.09,a-pcom-i3,2017-18,Lowell - Kathryn P. Stoklosa Middle School,01600360, 1.4, 9.7, 0.7, 86.9, 0.0, 1.4, 0.0, 65.3, 34.7, 72.6 -7.687499999999998,5,a-pcom-i3,2017-18,Lowell - Laura Lee Therapeutic Day School,01600085, 5.9, 3.8, 14.9, 75.4, 0.0, 0.0, 0.0, 73.0, 27.0, 16.8 -1.7812500000000009,1.78,a-pcom-i3,2017-18,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 5.7, 94.3, 0.0, 0.0, 0.0, 64.4, 35.6, 17.4 -5.218750000000001,5,a-pcom-i3,2017-18,Lowell - Lowell Day School on Broadway,01600605, 0.0, 11.1, 5.6, 83.3, 0.0, 0.0, 0.0, 88.9, 11.1, 36.0 -3.9374999999999982,3.94,a-pcom-i3,2017-18,Lowell - Lowell High,01600505, 3.0, 3.8, 4.9, 87.4, 0.0, 0.0, 0.9, 62.6, 37.4, 317.7 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Lowell - Moody Elementary,01600027, 0.0, 0.0, 5.6, 94.4, 0.0, 0.0, 0.0, 97.2, 2.8, 35.7 -1.9062499999999982,1.91,a-pcom-i3,2017-18,Lowell - Pawtucketville Memorial,01600036, 1.5, 1.5, 3.0, 93.9, 0.0, 0.0, 0.0, 86.7, 13.3, 66.1 -3.531249999999999,3.53,a-pcom-i3,2017-18,Lowell - Peter W Reilly,01600040, 2.3, 0.0, 9.0, 88.7, 0.0, 0.0, 0.0, 92.5, 7.5, 66.6 -4.562499999999998,4.56,a-pcom-i3,2017-18,Lowell - Pyne Arts,01600018, 2.8, 1.4, 10.4, 85.4, 0.0, 0.0, 0.0, 85.0, 15.0, 72.1 -4.437500000000001,4.44,a-pcom-i3,2017-18,Lowell - Rogers STEM Academy,01600005, 2.8, 3.4, 8.0, 85.8, 0.0, 0.0, 0.0, 86.3, 13.7, 87.7 -3.90625,3.91,a-pcom-i3,2017-18,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 1.6, 11.0, 87.5, 0.0, 0.0, 0.0, 88.2, 11.8, 63.7 -6.875,5,a-pcom-i3,2017-18,Lowell - The Career Academy,01600515, 6.1, 15.9, 0.0, 78.0, 0.0, 0.0, 0.0, 68.2, 31.8, 16.5 -3.4375,3.44,a-pcom-i3,2017-18,Lowell - Washington,01600055, 2.2, 0.0, 6.6, 89.0, 2.2, 0.0, 0.0, 90.1, 9.9, 45.3 -8.562500000000002,5,a-pcom-i3,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 3.6, 10.7, 11.3, 72.6, 0.0, 0.0, 1.8, 76.7, 23.3, 111.7 -6.062500000000002,5,a-pcom-i3,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 12.9, 6.5, 80.6, 0.0, 0.0, 0.0, 74.2, 25.8, 15.5 -1,1,a-pcom-i3,2017-18,Ludlow - Chapin Street Elementary School,01610020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 45.4 -1,1,a-pcom-i3,2017-18,Ludlow - East Street Elementary School,01610010, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 95.7, 4.3, 85.3 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Ludlow - Ludlow Senior High,01610505, 0.8, 0.0, 1.6, 96.7, 0.0, 0.0, 0.8, 70.5, 29.5, 122.7 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Ludlow - Paul R Baird Middle,01610305, 1.1, 0.0, 2.1, 96.8, 0.0, 0.0, 0.0, 74.5, 25.5, 94.0 -1,1,a-pcom-i3,2017-18,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 56.4 -1,1,a-pcom-i3,2017-18,Lunenburg - Advanced Community Experience Program,01620605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.2, 35.8, 6.2 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 1.5, 94.9, 1.8, 1.8, 0.0, 60.4, 39.6, 55.0 -1,1,a-pcom-i3,2017-18,Lunenburg - Lunenburg Middle School,01620305, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 86.0, 14.0, 46.5 -1,1,a-pcom-i3,2017-18,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 50.8 -1,1,a-pcom-i3,2017-18,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 44.5 -5.15625,5,a-pcom-i3,2017-18,Lynn - A Drewicz Elementary,01630016, 0.0, 2.1, 12.4, 83.5, 2.1, 0.0, 0.0, 93.7, 6.3, 48.5 -1,1,a-pcom-i3,2017-18,Lynn - Aborn,01630011, 0.0, 0.0, 1.0, 98.5, 0.0, 0.0, 0.5, 94.0, 6.0, 25.2 -3.0937500000000018,3.09,a-pcom-i3,2017-18,Lynn - Breed Middle School,01630405, 1.7, 1.7, 4.1, 90.1, 0.0, 0.0, 2.5, 71.6, 28.4, 120.8 -1,1,a-pcom-i3,2017-18,Lynn - Brickett Elementary,01630020, 0.0, 0.0, 2.6, 97.0, 0.0, 0.0, 0.4, 97.7, 2.3, 28.7 -3.6249999999999982,3.62,a-pcom-i3,2017-18,Lynn - Capt William G Shoemaker,01630090, 1.5, 2.9, 5.8, 88.4, 0.0, 0.0, 1.5, 93.4, 6.6, 68.8 -3.9374999999999982,3.94,a-pcom-i3,2017-18,Lynn - Classical High,01630505, 2.1, 0.0, 8.4, 87.4, 0.0, 0.0, 2.1, 63.6, 36.4, 142.6 -2.4687500000000018,2.47,a-pcom-i3,2017-18,Lynn - Cobbet Elementary,01630035, 1.5, 1.5, 4.9, 92.1, 0.0, 0.0, 0.0, 95.3, 4.7, 66.4 -4.437500000000001,4.44,a-pcom-i3,2017-18,Lynn - E J Harrington,01630045, 1.3, 2.7, 7.4, 85.8, 0.0, 0.0, 2.8, 98.5, 1.5, 74.6 -4.968750000000002,4.97,a-pcom-i3,2017-18,Lynn - Early Childhood Center,01630004, 3.4, 1.7, 10.3, 84.1, 0.0, 0.0, 0.4, 96.0, 4.0, 58.1 -1.40625,1.41,a-pcom-i3,2017-18,Lynn - Edward A Sisson,01630095, 2.2, 0.0, 2.2, 95.5, 0.0, 0.0, 0.0, 95.5, 4.5, 44.9 -7.281249999999999,5,a-pcom-i3,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 4.2, 2.1, 16.9, 76.7, 0.0, 0.0, 0.0, 44.2, 55.8, 47.2 -5.843750000000001,5,a-pcom-i3,2017-18,Lynn - Hood,01630055, 6.1, 4.1, 6.1, 81.3, 0.0, 0.0, 2.3, 94.8, 5.2, 48.9 -3.500000000000001,3.5,a-pcom-i3,2017-18,Lynn - Ingalls,01630060, 6.3, 0.0, 4.7, 88.8, 0.0, 0.0, 0.2, 93.6, 6.4, 63.9 -5.062500000000001,5,a-pcom-i3,2017-18,Lynn - Julia F Callahan,01630030, 5.4, 1.8, 7.2, 83.8, 1.8, 0.0, 0.0, 87.4, 12.6, 55.7 -2.2187499999999982,2.22,a-pcom-i3,2017-18,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 7.1, 92.9, 0.0, 0.0, 0.0, 90.1, 9.9, 28.1 -5.187499999999998,5,a-pcom-i3,2017-18,Lynn - Lynn English High,01630510, 3.2, 0.7, 11.3, 83.4, 0.0, 0.0, 1.4, 54.5, 45.5, 144.2 -6.749999999999998,5,a-pcom-i3,2017-18,Lynn - Lynn Vocational Technical Institute,01630605, 3.5, 0.0, 14.9, 78.4, 0.0, 0.0, 3.1, 51.6, 48.4, 127.5 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Lynn - Lynn Woods,01630075, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 88.1, 11.9, 17.2 -4.343750000000002,4.34,a-pcom-i3,2017-18,Lynn - Pickering Middle,01630420, 2.8, 0.0, 9.7, 86.1, 0.0, 0.0, 1.4, 75.8, 24.2, 71.9 -3.4062500000000018,3.41,a-pcom-i3,2017-18,Lynn - Robert L Ford,01630050, 4.3, 0.0, 6.4, 89.1, 0.0, 0.0, 0.3, 94.8, 5.2, 46.9 -2.4687500000000018,2.47,a-pcom-i3,2017-18,Lynn - Sewell-Anderson,01630085, 2.6, 0.0, 5.2, 92.1, 0.0, 0.0, 0.0, 94.5, 5.5, 38.1 -4.781249999999999,4.78,a-pcom-i3,2017-18,Lynn - Thurgood Marshall Mid,01630305, 4.3, 0.9, 9.0, 84.7, 0.0, 0.0, 1.1, 62.4, 37.6, 115.1 -2.03125,2.03,a-pcom-i3,2017-18,Lynn - Tracy,01630100, 0.0, 0.0, 4.7, 93.5, 0.0, 0.0, 1.8, 97.6, 2.4, 42.5 -4.906250000000001,4.91,a-pcom-i3,2017-18,Lynn - Washington Elementary School,01630005, 4.3, 2.2, 7.0, 84.3, 0.0, 0.0, 2.2, 88.7, 11.3, 46.1 -3.374999999999999,3.37,a-pcom-i3,2017-18,Lynn - William R Fallon,01630080, 7.2, 0.0, 3.6, 89.2, 0.0, 0.0, 0.0, 79.4, 20.6, 27.7 -2.6874999999999982,2.69,a-pcom-i3,2017-18,Lynn - Wm P Connery,01630040, 3.2, 0.0, 5.4, 91.4, 0.0, 0.0, 0.0, 87.3, 12.7, 61.8 -1.5625,1.56,a-pcom-i3,2017-18,Lynnfield - Huckleberry Hill,01640010, 0.0, 1.7, 3.3, 95.0, 0.0, 0.0, 0.0, 98.3, 1.7, 59.8 -1,1,a-pcom-i3,2017-18,Lynnfield - Lynnfield High,01640505, 0.0, 1.2, 0.0, 97.5, 0.0, 0.0, 1.2, 70.3, 29.7, 80.2 -1,1,a-pcom-i3,2017-18,Lynnfield - Lynnfield Middle School,01640405, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 84.8, 15.2, 81.3 -1,1,a-pcom-i3,2017-18,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.7, 1.3, 7.4 -1,1,a-pcom-i3,2017-18,Lynnfield - Summer Street,01640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 50.4 -14.09375,5,a-pcom-i3,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 22.5, 4.4, 14.9, 54.9, 0.4, 0.0, 2.9, 76.9, 23.1, 242.0 -3.656250000000001,3.66,a-pcom-i3,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 0.0, 0.0, 88.3, 0.0, 0.0, 11.7, 70.7, 29.3, 8.5 -3.218749999999999,3.22,a-pcom-i3,2017-18,Malden - Beebe,01650003, 4.6, 3.4, 1.1, 89.7, 0.0, 0.0, 1.1, 88.0, 12.0, 87.5 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Malden - Ferryway,01650013, 1.1, 2.3, 0.0, 96.6, 0.0, 0.0, 0.0, 86.1, 13.9, 87.2 -2.437499999999999,2.44,a-pcom-i3,2017-18,Malden - Forestdale,01650027, 2.1, 2.1, 3.1, 92.2, 0.0, 0.0, 0.5, 92.7, 7.3, 95.5 -2.9375000000000018,2.94,a-pcom-i3,2017-18,Malden - Linden,01650047, 2.7, 2.7, 0.9, 90.6, 0.0, 0.9, 2.2, 81.2, 18.8, 111.5 -4.187500000000002,4.19,a-pcom-i3,2017-18,Malden - Malden Early Learning Center,01650049, 11.0, 2.4, 0.0, 86.6, 0.0, 0.0, 0.0, 98.8, 1.2, 82.0 -3.5625000000000018,3.56,a-pcom-i3,2017-18,Malden - Malden High,01650505, 3.0, 3.6, 4.2, 88.6, 0.0, 0.0, 0.6, 68.2, 31.8, 166.8 -4.781249999999999,4.78,a-pcom-i3,2017-18,Malden - Salemwood,01650057, 5.6, 3.2, 4.0, 84.7, 0.0, 0.0, 2.4, 85.5, 14.5, 124.5 -1,1,a-pcom-i3,2017-18,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 42.6 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.9, 1.8, 96.3, 0.0, 0.0, 0.0, 68.3, 31.7, 55.6 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 4.1, 0.0, 95.9, 0.0, 0.0, 0.0, 80.0, 20.0, 46.9 -1,1,a-pcom-i3,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 55.5 -1.09375,1.09,a-pcom-i3,2017-18,Mansfield - Everett W Robinson,01670007, 1.1, 1.8, 0.6, 96.5, 0.0, 0.0, 0.0, 94.4, 5.6, 90.0 -1,1,a-pcom-i3,2017-18,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.8, 98.3, 0.0, 0.0, 0.8, 80.5, 19.5, 119.7 -1.25,1.25,a-pcom-i3,2017-18,Mansfield - Jordan/Jackson Elementary,01670014, 0.7, 1.1, 1.1, 96.0, 0.0, 0.0, 1.1, 91.0, 9.0, 88.8 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Mansfield - Mansfield High,01670505, 0.7, 0.0, 3.8, 95.6, 0.0, 0.0, 0.0, 67.3, 32.7, 150.1 -1,1,a-pcom-i3,2017-18,Mansfield - Roland Green School,01670003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.2 -1,1,a-pcom-i3,2017-18,Marblehead - Elbridge Gerry,01680015, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 97.3, 2.7, 18.6 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Marblehead - Glover,01680020, 0.0, 1.4, 1.4, 94.4, 0.0, 1.4, 1.4, 94.4, 5.6, 71.9 -1,1,a-pcom-i3,2017-18,Marblehead - L H Coffin,01680010, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 98.4, 1.6, 30.9 -1,1,a-pcom-i3,2017-18,Marblehead - Malcolm L Bell,01680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 41.9 -1,1,a-pcom-i3,2017-18,Marblehead - Marblehead High,01680505, 0.0, 0.0, 2.1, 97.2, 0.0, 0.0, 0.7, 63.1, 36.9, 144.4 -1,1,a-pcom-i3,2017-18,Marblehead - Marblehead Veterans Middle School,01680300, 1.1, 1.5, 0.0, 97.4, 0.0, 0.0, 0.0, 73.5, 26.5, 67.3 -1,1,a-pcom-i3,2017-18,Marblehead - Village School,01680016, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 89.2, 10.8, 96.1 -1,1,a-pcom-i3,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.5, 37.5, 30.9 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Marion - Sippican,01690005, 3.3, 1.6, 0.0, 95.1, 0.0, 0.0, 0.0, 93.8, 6.3, 60.8 -2.437499999999999,2.44,a-pcom-i3,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 1.8, 6.1, 92.2, 0.0, 0.0, 0.0, 78.8, 21.2, 197.8 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Marlborough - Charles Jaworek School,01700030, 0.0, 1.7, 3.4, 94.9, 0.0, 0.0, 0.0, 93.9, 6.1, 116.5 -1.875,1.88,a-pcom-i3,2017-18,Marlborough - Early Childhood Center,01700006, 2.0, 0.0, 4.0, 94.0, 0.0, 0.0, 0.0, 92.0, 8.0, 49.7 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Marlborough - Francis J Kane,01700008, 1.2, 0.0, 2.4, 96.3, 0.0, 0.0, 0.0, 92.8, 7.2, 81.8 -2.03125,2.03,a-pcom-i3,2017-18,Marlborough - Marlborough High,01700505, 1.9, 2.0, 1.9, 93.5, 0.6, 0.0, 0.0, 62.6, 37.4, 156.1 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Marlborough - Richer,01700025, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 93.9, 6.1, 82.1 -1,1,a-pcom-i3,2017-18,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 99.2, 0.8, 0.0, 0.0, 94.9, 5.1, 56.8 -1,1,a-pcom-i3,2017-18,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 42.4 -1,1,a-pcom-i3,2017-18,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 99.2, 0.8, 0.0, 0.0, 84.2, 15.8, 119.3 -1,1,a-pcom-i3,2017-18,Marshfield - Gov Edward Winslow,01710020, 0.0, 1.6, 1.6, 96.9, 0.0, 0.0, 0.0, 89.1, 10.9, 64.3 -1,1,a-pcom-i3,2017-18,Marshfield - Marshfield High,01710505, 0.6, 0.6, 1.2, 97.6, 0.0, 0.0, 0.0, 68.5, 31.5, 166.6 -1,1,a-pcom-i3,2017-18,Marshfield - Martinson Elementary,01710025, 0.0, 1.2, 0.0, 97.5, 1.2, 0.0, 0.0, 94.6, 5.4, 81.0 -1,1,a-pcom-i3,2017-18,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 49.1 -2.9375000000000018,2.94,a-pcom-i3,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 3.3, 0.4, 3.3, 90.6, 0.0, 0.0, 2.5, 65.1, 34.9, 122.2 -1,1,a-pcom-i3,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 85.5, 14.5, 38.2 -11.999999999999998,5,a-pcom-i3,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 21.4, 0.0, 13.2, 61.6, 0.0, 0.0, 3.8, 86.3, 13.7, 53.0 -1,1,a-pcom-i3,2017-18,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 66.6, 33.4, 131.6 -1,1,a-pcom-i3,2017-18,Masconomet - Masconomet Regional Middle School,07050405, 1.2, 1.7, 0.0, 97.1, 0.0, 0.0, 0.0, 63.8, 36.2, 83.4 -1,1,a-pcom-i3,2017-18,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 98.4, 1.6, 0.0, 0.0, 91.3, 8.7, 63.4 -1,1,a-pcom-i3,2017-18,Mashpee - Mashpee High,01720505, 1.7, 0.9, 0.0, 97.4, 0.0, 0.0, 0.0, 62.8, 37.2, 58.5 -1,1,a-pcom-i3,2017-18,Mashpee - Mashpee Middle School,01720020, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 77.9, 22.1, 33.1 -1,1,a-pcom-i3,2017-18,Mashpee - Quashnet School,01720035, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 88.0, 12.0, 66.8 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 0.0, 4.7, 0.0, 95.3, 0.0, 0.0, 0.0, 67.8, 32.2, 41.6 -1,1,a-pcom-i3,2017-18,Mattapoisett - Center,01730005, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 94.7, 5.3, 38.3 -1,1,a-pcom-i3,2017-18,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 34.6 -1,1,a-pcom-i3,2017-18,Maynard - Fowler School,01740305, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 79.0, 21.0, 71.4 -1.9375000000000009,1.94,a-pcom-i3,2017-18,Maynard - Green Meadow,01740010, 0.0, 1.2, 4.9, 93.8, 0.0, 0.0, 0.0, 96.3, 3.7, 81.1 -1,1,a-pcom-i3,2017-18,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.4, 26.6, 46.7 -1,1,a-pcom-i3,2017-18,Medfield - Dale Street,01750005, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 89.2, 10.8, 50.1 -1,1,a-pcom-i3,2017-18,Medfield - Medfield Senior High,01750505, 0.0, 0.9, 0.9, 97.2, 0.0, 0.0, 0.9, 69.6, 30.4, 106.8 -1,1,a-pcom-i3,2017-18,Medfield - Memorial School,01750003, 0.0, 1.5, 0.0, 97.3, 0.0, 0.0, 1.2, 95.2, 4.8, 66.5 -1,1,a-pcom-i3,2017-18,Medfield - Ralph Wheelock School,01750007, 0.0, 0.9, 0.7, 98.4, 0.0, 0.0, 0.0, 93.6, 6.4, 49.1 -1.875,1.88,a-pcom-i3,2017-18,Medfield - Thomas Blake Middle,01750305, 1.2, 2.4, 2.4, 94.0, 0.0, 0.0, 0.0, 74.9, 25.1, 82.9 -1,1,a-pcom-i3,2017-18,Medford - Brooks School,01760130, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 93.7, 6.3, 63.6 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Medford - Christopher Columbus,01760140, 0.0, 1.8, 1.8, 96.3, 0.0, 0.0, 0.0, 93.2, 6.8, 54.5 -1,1,a-pcom-i3,2017-18,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 50.0, 50.0, 8.0 -1,1,a-pcom-i3,2017-18,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 54.2 -1.5625,1.56,a-pcom-i3,2017-18,Medford - John J. McGlynn Middle School,01760320, 1.4, 3.6, 0.0, 95.0, 0.0, 0.0, 0.0, 78.4, 21.6, 71.9 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Medford - Madeleine Dugger Andrews,01760315, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 73.4, 26.6, 66.2 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Medford - Medford High,01760505, 0.5, 1.4, 1.8, 96.4, 0.0, 0.0, 0.0, 66.8, 33.2, 220.9 -1.8437500000000018,1.84,a-pcom-i3,2017-18,Medford - Milton Fuller Roberts,01760150, 2.9, 2.9, 0.0, 94.1, 0.0, 0.0, 0.0, 87.9, 12.1, 68.3 -1,1,a-pcom-i3,2017-18,Medway - Burke/Memorial Elementary School,01770015, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 96.9, 3.1, 63.8 -1,1,a-pcom-i3,2017-18,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 44.7 -1.25,1.25,a-pcom-i3,2017-18,Medway - Medway High,01770505, 0.0, 2.6, 1.3, 96.0, 0.0, 0.0, 0.0, 69.2, 30.8, 75.9 -1,1,a-pcom-i3,2017-18,Medway - Medway Middle,01770305, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 76.4, 23.6, 97.4 -1,1,a-pcom-i3,2017-18,Melrose - Early Childhood Center,01780003, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 99.2, 0.8, 49.5 -1,1,a-pcom-i3,2017-18,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 91.3, 8.7, 34.2 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Melrose - Horace Mann,01780025, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 92.3, 7.7, 25.5 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Melrose - Lincoln,01780020, 1.8, 1.8, 0.0, 96.4, 0.0, 0.0, 0.0, 89.3, 10.7, 55.5 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Melrose - Melrose High,01780505, 1.8, 1.1, 1.7, 95.4, 0.0, 0.0, 0.0, 61.5, 38.5, 108.3 -1,1,a-pcom-i3,2017-18,Melrose - Melrose Middle,01780305, 0.0, 0.0, 1.1, 97.7, 0.0, 0.0, 1.1, 76.1, 23.9, 88.7 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Melrose - Roosevelt,01780035, 0.0, 4.2, 0.0, 95.8, 0.0, 0.0, 0.0, 95.8, 4.2, 52.2 -1.09375,1.09,a-pcom-i3,2017-18,Melrose - Winthrop,01780050, 0.0, 0.6, 0.0, 96.5, 0.0, 0.0, 2.9, 85.5, 14.5, 34.0 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 98.1, 1.9, 51.8 -1,1,a-pcom-i3,2017-18,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 98.6, 1.4, 71.2 -1,1,a-pcom-i3,2017-18,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.6, 0.3, 99.0, 0.0, 0.0, 0.0, 81.0, 19.0, 93.2 -1,1,a-pcom-i3,2017-18,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 70.2, 29.8, 79.2 -1,1,a-pcom-i3,2017-18,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 88.2, 11.8, 127.0 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 87.7, 12.3, 154.0 -1,1,a-pcom-i3,2017-18,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 91.2, 8.8, 134.5 -1,1,a-pcom-i3,2017-18,Methuen - Methuen High,01810505, 0.0, 0.5, 1.4, 98.1, 0.0, 0.0, 0.0, 61.9, 38.1, 207.2 -1,1,a-pcom-i3,2017-18,Methuen - Tenney Grammar School,01810055, 0.7, 0.0, 0.9, 98.4, 0.0, 0.0, 0.0, 88.3, 11.7, 139.4 -1,1,a-pcom-i3,2017-18,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 64.8 -1,1,a-pcom-i3,2017-18,Middleborough - John T. Nichols Middle,01820305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.0, 19.0, 77.2 -1.25,1.25,a-pcom-i3,2017-18,Middleborough - Mary K. Goode Elementary School,01820010, 1.3, 0.0, 0.0, 96.0, 1.3, 0.0, 1.3, 93.0, 7.0, 74.6 -1,1,a-pcom-i3,2017-18,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 41.8 -1,1,a-pcom-i3,2017-18,Middleborough - Middleborough High,01820505, 1.1, 1.1, 0.0, 97.9, 0.0, 0.0, 0.0, 60.6, 39.4, 94.4 -1,1,a-pcom-i3,2017-18,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.7, 0.3, 46.5 -1,1,a-pcom-i3,2017-18,Middleton - Howe-Manning,01840005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 79.0 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Milford - Brookside,01850065, 1.2, 0.0, 3.0, 95.8, 0.0, 0.0, 0.0, 96.7, 3.3, 84.1 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Milford - Memorial,01850010, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 93.9, 6.1, 69.1 -2.0624999999999982,2.06,a-pcom-i3,2017-18,Milford - Milford High,01850505, 0.0, 0.8, 5.9, 93.4, 0.0, 0.0, 0.0, 63.7, 36.3, 133.3 -1,1,a-pcom-i3,2017-18,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 34.3 -1,1,a-pcom-i3,2017-18,Milford - Stacy Middle,01850305, 0.0, 0.0, 1.6, 97.5, 0.0, 0.0, 0.8, 75.6, 24.4, 121.5 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Milford - Woodland,01850090, 0.0, 1.7, 3.4, 94.9, 0.0, 0.0, 0.0, 86.5, 13.5, 118.5 -1,1,a-pcom-i3,2017-18,Millbury - Elmwood Street,01860017, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 96.0, 4.0, 74.8 -1,1,a-pcom-i3,2017-18,Millbury - Millbury Junior/Senior High,01860505, 0.0, 1.0, 0.0, 98.1, 0.0, 0.0, 1.0, 61.2, 38.8, 103.2 -2.281249999999999,2.28,a-pcom-i3,2017-18,Millbury - Raymond E. Shaw Elementary,01860025, 1.8, 1.8, 0.0, 92.7, 0.0, 0.0, 3.7, 81.7, 18.3, 54.5 -1,1,a-pcom-i3,2017-18,Millis - Clyde F Brown,01870005, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 93.3, 6.7, 64.9 -1,1,a-pcom-i3,2017-18,Millis - Millis High School,01870505, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 56.8, 43.2, 40.4 -1,1,a-pcom-i3,2017-18,Millis - Millis Middle,01870020, 0.0, 0.9, 2.1, 97.0, 0.0, 0.0, 0.0, 83.6, 16.4, 47.0 -3.3124999999999982,3.31,a-pcom-i3,2017-18,Milton - Charles S Pierce Middle,01890410, 7.7, 0.0, 2.9, 89.4, 0.0, 0.0, 0.0, 73.9, 26.1, 103.4 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Milton - Collicot,01890005, 4.8, 2.4, 1.7, 91.1, 0.0, 0.0, 0.0, 98.7, 1.3, 83.2 -2.0000000000000018,2.0,a-pcom-i3,2017-18,Milton - Cunningham School,01890007, 4.8, 0.0, 1.6, 93.6, 0.0, 0.0, 0.0, 91.5, 8.5, 62.3 -2.093750000000001,2.09,a-pcom-i3,2017-18,Milton - Glover,01890010, 5.0, 0.0, 0.0, 93.3, 1.7, 0.0, 0.0, 94.1, 5.9, 59.7 -3.59375,3.59,a-pcom-i3,2017-18,Milton - Milton High,01890505, 6.6, 1.6, 1.6, 88.5, 0.0, 0.8, 0.8, 64.3, 35.7, 122.0 -7.062499999999998,5,a-pcom-i3,2017-18,Milton - Tucker,01890020, 15.8, 6.8, 0.0, 77.4, 0.0, 0.0, 0.0, 92.1, 7.9, 44.2 -1,1,a-pcom-i3,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 1.7, 0.9, 97.0, 0.0, 0.4, 0.0, 56.3, 43.7, 117.4 -1,1,a-pcom-i3,2017-18,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 96.8, 3.2, 56.7 -1,1,a-pcom-i3,2017-18,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 28.7 -1,1,a-pcom-i3,2017-18,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 97.4, 1.3, 0.0, 1.3, 67.2, 32.8, 76.9 -1,1,a-pcom-i3,2017-18,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 28.4 -1,1,a-pcom-i3,2017-18,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 44.1 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 1.1, 0.0, 96.6, 0.0, 0.0, 2.3, 94.3, 5.7, 87.7 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Monomoy Regional School District - Monomoy Regional High School,07120515, 0.0, 2.2, 1.1, 95.6, 0.0, 0.0, 1.1, 68.3, 31.7, 91.4 -1,1,a-pcom-i3,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 80.3, 19.7, 67.3 -1,1,a-pcom-i3,2017-18,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 76.3, 23.7, 47.5 -1,1,a-pcom-i3,2017-18,Monson - Monson High School,01910505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.9, 28.1, 44.5 -1,1,a-pcom-i3,2017-18,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 98.4, 0.0, 1.6, 0.0, 92.6, 7.4, 64.0 -1.71875,1.72,a-pcom-i3,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 1.1, 0.0, 3.3, 94.5, 1.1, 0.0, 0.0, 57.7, 42.3, 181.3 -1.9375000000000009,1.94,a-pcom-i3,2017-18,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.2, 5.0, 93.8, 0.0, 0.0, 0.0, 57.7, 42.3, 80.4 -2.34375,2.34,a-pcom-i3,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.7, 2.7, 2.7, 92.5, 0.0, 0.0, 1.4, 74.0, 26.0, 146.0 -1,1,a-pcom-i3,2017-18,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 21.0 -1,1,a-pcom-i3,2017-18,Nantucket - Cyrus Peirce,01970010, 0.0, 0.7, 0.0, 97.2, 0.0, 0.0, 2.1, 81.6, 18.4, 47.7 -1,1,a-pcom-i3,2017-18,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 97.3, 2.7, 55.2 -2.5312499999999982,2.53,a-pcom-i3,2017-18,Nantucket - Nantucket High,01970505, 0.0, 2.4, 5.7, 91.9, 0.0, 0.0, 0.0, 69.5, 30.5, 70.1 -1,1,a-pcom-i3,2017-18,Nantucket - Nantucket Intermediate School,01970020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 48.4 -1,1,a-pcom-i3,2017-18,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 25.7 -1,1,a-pcom-i3,2017-18,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.7, 26.3, 45.4 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Narragansett - Narragansett Regional High,07200505, 0.0, 2.3, 2.3, 95.4, 0.0, 0.0, 0.0, 74.0, 26.0, 43.8 -1,1,a-pcom-i3,2017-18,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.7 -1,1,a-pcom-i3,2017-18,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 22.6 -1,1,a-pcom-i3,2017-18,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 63.0 -1,1,a-pcom-i3,2017-18,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 86.4, 13.6, 97.3 -1,1,a-pcom-i3,2017-18,Nashoba - Hale,07250310, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 85.3, 14.7, 34.0 -1,1,a-pcom-i3,2017-18,Nashoba - Luther Burbank Middle School,07250305, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 82.4, 17.6, 42.7 -1,1,a-pcom-i3,2017-18,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.5, 97.0, 0.0, 0.0, 1.5, 90.2, 9.8, 66.2 -1,1,a-pcom-i3,2017-18,Nashoba - Nashoba Regional,07250505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 63.6, 36.4, 120.4 -1,1,a-pcom-i3,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.1, 0.0, 1.1, 97.7, 0.0, 0.0, 0.0, 47.7, 52.3, 88.0 -1,1,a-pcom-i3,2017-18,Natick - Bennett-Hemenway,01980005, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 87.5, 12.5, 80.8 -1,1,a-pcom-i3,2017-18,Natick - Brown,01980010, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 91.4, 8.6, 66.0 -1.71875,1.72,a-pcom-i3,2017-18,Natick - J F Kennedy Middle School,01980305, 1.2, 1.8, 1.2, 94.5, 1.2, 0.0, 0.0, 79.7, 20.3, 81.3 -1,1,a-pcom-i3,2017-18,Natick - Johnson,01980031, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 92.8, 7.2, 33.4 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Natick - Lilja Elementary,01980035, 2.1, 2.1, 0.0, 95.9, 0.0, 0.0, 0.0, 95.7, 4.3, 48.4 -1,1,a-pcom-i3,2017-18,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 49.1 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Natick - Natick High,01980505, 0.7, 3.2, 0.0, 96.1, 0.0, 0.0, 0.0, 72.8, 27.2, 206.7 -1,1,a-pcom-i3,2017-18,Natick - Wilson Middle,01980310, 1.2, 1.2, 0.8, 96.9, 0.0, 0.0, 0.0, 79.5, 20.5, 127.3 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Nauset - Nauset Regional High,06600505, 0.8, 0.6, 0.3, 96.7, 0.8, 0.8, 0.0, 67.8, 32.2, 123.0 -1.09375,1.09,a-pcom-i3,2017-18,Nauset - Nauset Regional Middle,06600305, 0.0, 0.3, 2.1, 96.5, 0.0, 0.0, 1.1, 84.2, 15.8, 95.0 -1.09375,1.09,a-pcom-i3,2017-18,Needham - Broadmeadow,01990005, 1.9, 1.6, 0.0, 96.5, 0.0, 0.0, 0.0, 95.6, 4.4, 62.7 -1,1,a-pcom-i3,2017-18,Needham - High Rock School,01990410, 0.5, 0.0, 0.0, 97.9, 0.0, 0.0, 1.6, 77.7, 22.3, 64.3 -2.406250000000001,2.41,a-pcom-i3,2017-18,Needham - Hillside Elementary,01990035, 2.6, 4.6, 0.0, 92.3, 0.0, 0.0, 0.5, 87.5, 12.5, 64.9 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Needham - John Eliot,01990020, 0.4, 4.6, 1.9, 91.1, 0.0, 0.0, 1.9, 88.1, 11.9, 51.7 -2.96875,2.97,a-pcom-i3,2017-18,Needham - Needham High,01990505, 3.3, 2.5, 1.5, 90.5, 0.0, 0.0, 2.2, 64.2, 35.8, 183.3 -2.406250000000001,2.41,a-pcom-i3,2017-18,Needham - Newman Elementary,01990050, 3.0, 2.5, 2.2, 92.3, 0.0, 0.0, 0.0, 92.5, 7.5, 119.3 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Needham - Pollard Middle,01990405, 2.3, 0.5, 1.7, 94.6, 0.0, 0.0, 0.9, 75.5, 24.5, 116.5 -2.03125,2.03,a-pcom-i3,2017-18,Needham - William Mitchell,01990040, 1.3, 0.0, 3.8, 93.5, 0.0, 0.0, 1.3, 86.5, 13.5, 52.0 -11.343749999999998,5,a-pcom-i3,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 18.9, 4.4, 9.4, 63.7, 0.0, 0.0, 3.6, 75.6, 24.4, 68.9 -1.8437500000000018,1.84,a-pcom-i3,2017-18,New Bedford - Abraham Lincoln,02010095, 3.0, 0.0, 3.0, 94.1, 0.0, 0.0, 0.0, 89.6, 10.4, 67.3 -4.500000000000002,4.5,a-pcom-i3,2017-18,New Bedford - Alfred J Gomes,02010063, 9.2, 0.0, 3.9, 85.6, 0.0, 0.0, 1.3, 93.1, 6.9, 76.3 -1,1,a-pcom-i3,2017-18,New Bedford - Betsey B Winslow,02010140, 0.9, 0.0, 1.8, 97.2, 0.0, 0.0, 0.0, 98.1, 1.9, 28.0 -1.4374999999999982,1.44,a-pcom-i3,2017-18,New Bedford - Carlos Pacheco,02010105, 4.6, 0.0, 0.0, 95.4, 0.0, 0.0, 0.0, 93.1, 6.9, 43.5 -2.5,2.5,a-pcom-i3,2017-18,New Bedford - Casimir Pulaski,02010123, 2.7, 0.0, 4.3, 92.0, 0.0, 0.0, 1.1, 91.5, 8.5, 94.3 -1,1,a-pcom-i3,2017-18,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 91.4, 8.6, 28.7 -1,1,a-pcom-i3,2017-18,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.0, 17.0, 21.9 -6.156250000000001,5,a-pcom-i3,2017-18,New Bedford - Ellen R Hathaway,02010075, 3.3, 0.0, 13.2, 80.3, 3.3, 0.0, 0.0, 88.4, 11.6, 30.4 -2.281249999999999,2.28,a-pcom-i3,2017-18,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 92.7, 4.9, 0.0, 2.4, 96.3, 3.7, 41.1 -7.312500000000002,5,a-pcom-i3,2017-18,New Bedford - Hayden/McFadden,02010078, 6.9, 0.0, 13.8, 76.6, 0.9, 0.0, 1.8, 92.6, 7.4, 108.8 -2.0624999999999982,2.06,a-pcom-i3,2017-18,New Bedford - Irwin M. Jacobs Elementary School,02010070, 3.3, 0.0, 3.3, 93.4, 0.0, 0.0, 0.0, 85.1, 14.9, 30.2 -1,1,a-pcom-i3,2017-18,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 34.5 -1.40625,1.41,a-pcom-i3,2017-18,New Bedford - Jireh Swift,02010130, 0.0, 0.0, 0.0, 95.5, 4.5, 0.0, 0.0, 93.4, 6.6, 22.0 -4.21875,4.22,a-pcom-i3,2017-18,New Bedford - John Avery Parker,02010115, 2.7, 0.0, 10.8, 86.5, 0.0, 0.0, 0.0, 86.5, 13.5, 36.9 -2.1875,2.19,a-pcom-i3,2017-18,New Bedford - John B Devalles,02010050, 4.4, 0.0, 2.5, 93.0, 0.0, 0.0, 0.0, 83.5, 16.5, 39.2 -5.593750000000002,5,a-pcom-i3,2017-18,New Bedford - Keith Middle School,02010405, 12.2, 0.9, 2.8, 82.1, 0.0, 0.0, 1.9, 67.5, 32.5, 106.4 -5.656249999999998,5,a-pcom-i3,2017-18,New Bedford - New Bedford High,02010505, 6.6, 1.8, 7.7, 81.9, 0.4, 0.4, 1.1, 65.6, 34.4, 271.2 -2.6250000000000018,2.63,a-pcom-i3,2017-18,New Bedford - Normandin Middle School,02010410, 1.7, 0.0, 5.0, 91.6, 0.0, 0.0, 1.7, 68.6, 31.4, 119.6 -6.000000000000001,5,a-pcom-i3,2017-18,New Bedford - Renaissance Community School for the Arts,02010124, 16.0, 0.0, 0.0, 80.8, 0.0, 0.0, 3.2, 93.6, 6.4, 31.3 -6.062500000000002,5,a-pcom-i3,2017-18,New Bedford - Roosevelt Middle School,02010415, 5.8, 1.0, 8.7, 80.6, 1.0, 0.0, 2.9, 73.8, 26.2, 103.0 -4.781249999999999,4.78,a-pcom-i3,2017-18,New Bedford - Sgt Wm H Carney Academy,02010045, 10.2, 0.0, 4.1, 84.7, 0.0, 0.0, 1.0, 90.8, 9.2, 98.1 -1,1,a-pcom-i3,2017-18,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.9, 17.1, 19.3 -4.84375,4.84,a-pcom-i3,2017-18,New Bedford - Trinity Day Academy,02010510, 7.7, 0.0, 7.7, 84.5, 0.0, 0.0, 0.0, 48.5, 51.5, 25.8 -8.562500000000002,5,a-pcom-i3,2017-18,New Bedford - Whaling City Junior/Senior High School,02010515, 16.4, 0.0, 5.5, 72.6, 0.0, 0.0, 5.5, 57.8, 42.2, 36.5 -1,1,a-pcom-i3,2017-18,New Bedford - William H Taylor,02010135, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 22.4 -8.999999999999998,5,a-pcom-i3,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 26.0, 0.0, 2.7, 71.2, 0.0, 0.0, 0.0, 61.6, 38.4, 36.5 -2.124999999999999,2.12,a-pcom-i3,2017-18,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 2.9, 93.2, 0.0, 0.0, 3.9, 94.3, 5.7, 34.7 -1,1,a-pcom-i3,2017-18,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 47.2 -1,1,a-pcom-i3,2017-18,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 101.0 -1,1,a-pcom-i3,2017-18,Newburyport - Newburyport High,02040505, 1.0, 1.0, 0.0, 97.9, 0.0, 0.0, 0.0, 74.5, 25.5, 95.8 -1.40625,1.41,a-pcom-i3,2017-18,Newburyport - Rupert A Nock Middle,02040305, 1.5, 1.5, 1.5, 95.5, 0.0, 0.0, 0.0, 72.3, 27.7, 66.7 -2.8437499999999982,2.84,a-pcom-i3,2017-18,Newton - A E Angier,02070005, 5.0, 1.1, 1.3, 90.9, 0.0, 0.0, 1.8, 89.0, 11.0, 77.9 -4.156249999999999,4.16,a-pcom-i3,2017-18,Newton - Bigelow Middle,02070305, 2.3, 2.7, 5.7, 86.7, 0.0, 0.0, 2.7, 71.3, 28.7, 88.3 -8.374999999999998,5,a-pcom-i3,2017-18,Newton - Bowen,02070015, 8.1, 9.6, 5.8, 73.2, 0.0, 0.0, 3.2, 93.5, 6.5, 61.7 -5.406249999999999,5,a-pcom-i3,2017-18,Newton - C C Burr,02070020, 4.1, 8.2, 4.9, 82.7, 0.0, 0.0, 0.0, 90.8, 9.2, 60.8 -3.999999999999999,4.0,a-pcom-i3,2017-18,Newton - Cabot,02070025, 1.0, 6.8, 3.2, 87.2, 0.0, 1.7, 0.0, 86.3, 13.7, 58.0 -2.96875,2.97,a-pcom-i3,2017-18,Newton - Charles E Brown Middle,02070310, 1.6, 2.3, 3.2, 90.5, 0.0, 0.8, 1.6, 73.2, 26.8, 125.5 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Newton - Countryside,02070040, 2.3, 0.1, 0.0, 96.3, 0.0, 0.0, 1.3, 87.0, 13.0, 79.6 -3.062499999999999,3.06,a-pcom-i3,2017-18,Newton - F A Day Middle,02070315, 1.4, 4.7, 2.3, 90.2, 0.0, 0.0, 1.4, 68.7, 31.3, 141.6 -3.999999999999999,4.0,a-pcom-i3,2017-18,Newton - Franklin,02070055, 6.3, 5.0, 1.5, 87.2, 0.0, 0.0, 0.0, 88.0, 12.0, 67.4 -5.499999999999998,5,a-pcom-i3,2017-18,Newton - Horace Mann,02070075, 8.8, 6.6, 0.0, 82.4, 0.0, 0.0, 2.3, 87.1, 12.9, 64.5 -1.9687499999999991,1.97,a-pcom-i3,2017-18,Newton - John Ward,02070120, 1.9, 1.9, 2.5, 93.7, 0.0, 0.0, 0.0, 90.2, 9.8, 52.3 -3.75,3.75,a-pcom-i3,2017-18,Newton - Lincoln-Eliot,02070070, 0.0, 1.5, 9.0, 88.0, 0.0, 0.0, 1.5, 92.5, 7.5, 66.9 -2.437499999999999,2.44,a-pcom-i3,2017-18,Newton - Mason-Rice,02070080, 0.0, 5.7, 2.1, 92.2, 0.0, 0.0, 0.0, 83.3, 16.7, 64.0 -4.21875,4.22,a-pcom-i3,2017-18,Newton - Memorial Spaulding,02070105, 4.2, 5.0, 4.3, 86.5, 0.0, 0.0, 0.0, 89.3, 10.7, 73.3 -2.8125,2.81,a-pcom-i3,2017-18,Newton - Newton Early Childhood Center,02070108, 2.7, 4.0, 2.4, 91.0, 0.0, 0.0, 0.0, 100.0, 0.0, 72.9 -3.9374999999999982,3.94,a-pcom-i3,2017-18,Newton - Newton North High,02070505, 4.1, 4.5, 2.3, 87.4, 0.0, 0.0, 1.7, 62.1, 37.9, 330.0 -5.0,5.0,a-pcom-i3,2017-18,Newton - Newton South High,02070510, 2.7, 5.9, 4.8, 84.0, 0.0, 0.0, 2.6, 64.1, 35.9, 269.4 -3.687499999999999,3.69,a-pcom-i3,2017-18,Newton - Oak Hill Middle,02070320, 2.1, 4.4, 4.2, 88.2, 0.0, 0.0, 1.1, 71.3, 28.7, 95.1 -2.9999999999999982,3.0,a-pcom-i3,2017-18,Newton - Peirce,02070100, 4.0, 0.0, 3.1, 90.4, 0.0, 0.0, 2.5, 93.0, 7.0, 40.4 -3.28125,3.28,a-pcom-i3,2017-18,Newton - Underwood,02070115, 4.1, 2.3, 4.2, 89.5, 0.0, 0.0, 0.0, 84.5, 15.5, 44.3 -3.500000000000001,3.5,a-pcom-i3,2017-18,Newton - Williams,02070125, 0.2, 6.8, 0.0, 88.8, 0.0, 0.0, 4.2, 87.6, 12.4, 47.8 -3.531249999999999,3.53,a-pcom-i3,2017-18,Newton - Zervas,02070130, 2.4, 5.2, 3.7, 88.7, 0.0, 0.0, 0.0, 85.6, 14.4, 81.1 -1,1,a-pcom-i3,2017-18,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 62.2 -1,1,a-pcom-i3,2017-18,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 98.7, 0.0, 1.3, 0.0, 96.6, 3.4, 78.6 -1,1,a-pcom-i3,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.8, 36.2, 77.4 -1,1,a-pcom-i3,2017-18,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.5, 22.5, 62.2 -1,1,a-pcom-i3,2017-18,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 59.0 -1,1,a-pcom-i3,2017-18,North Adams - Drury High,02090505, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 69.6, 30.4, 80.5 -1,1,a-pcom-i3,2017-18,North Adams - Greylock,02090015, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 91.7, 8.3, 48.1 -1,1,a-pcom-i3,2017-18,North Andover - Annie L Sargent School,02110018, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 95.6, 4.4, 62.6 -1,1,a-pcom-i3,2017-18,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 76.4 -1,1,a-pcom-i3,2017-18,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 65.7 -3.2500000000000018,3.25,a-pcom-i3,2017-18,North Andover - Kittredge,02110015, 0.0, 5.2, 5.2, 89.6, 0.0, 0.0, 0.0, 84.6, 15.4, 38.6 -1,1,a-pcom-i3,2017-18,North Andover - North Andover High,02110505, 0.8, 1.5, 0.8, 96.9, 0.0, 0.0, 0.0, 62.8, 37.2, 124.1 -1,1,a-pcom-i3,2017-18,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.7, 24.3, 108.9 -1,1,a-pcom-i3,2017-18,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 45.2 -1,1,a-pcom-i3,2017-18,North Attleborough - Amvet Boulevard,02120007, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 100.0, 0.0, 42.7 -1.5625,1.56,a-pcom-i3,2017-18,North Attleborough - Community,02120030, 1.7, 1.7, 1.7, 95.0, 0.0, 0.0, 0.0, 92.3, 7.7, 60.0 -1,1,a-pcom-i3,2017-18,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 32.1 -1,1,a-pcom-i3,2017-18,North Attleborough - Joseph W Martin Jr Elementary,02120013, 1.5, 0.0, 1.5, 96.9, 0.0, 0.0, 0.0, 98.5, 1.5, 65.0 -1,1,a-pcom-i3,2017-18,North Attleborough - North Attleboro High,02120505, 0.9, 0.9, 0.9, 97.3, 0.0, 0.0, 0.0, 67.8, 32.2, 111.6 -1.4374999999999982,1.44,a-pcom-i3,2017-18,North Attleborough - North Attleborough Early Learning Center,02120020, 2.8, 0.0, 1.8, 95.4, 0.0, 0.0, 0.0, 100.0, 0.0, 28.2 -1,1,a-pcom-i3,2017-18,North Attleborough - North Attleborough Middle,02120305, 0.9, 0.0, 1.8, 97.3, 0.0, 0.0, 0.0, 74.1, 25.9, 112.1 -1,1,a-pcom-i3,2017-18,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 3.0, 97.0, 0.0, 0.0, 0.0, 91.3, 8.7, 26.1 -1,1,a-pcom-i3,2017-18,North Brookfield - North Brookfield Elementary,02150015, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 86.4, 13.6, 44.0 -1,1,a-pcom-i3,2017-18,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.1, 29.9, 33.5 -1.5312500000000018,1.53,a-pcom-i3,2017-18,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 2.5, 95.1, 0.0, 2.5, 0.0, 98.5, 1.5, 40.6 -1,1,a-pcom-i3,2017-18,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.2, 24.8, 58.6 -1.4999999999999991,1.5,a-pcom-i3,2017-18,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.3, 4.5, 95.2, 0.0, 0.0, 0.0, 79.2, 20.8, 67.4 -1,1,a-pcom-i3,2017-18,North Middlesex - North Middlesex Regional,07350505, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 66.8, 33.2, 91.5 -1,1,a-pcom-i3,2017-18,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.4, 35.6, 5.9 -1,1,a-pcom-i3,2017-18,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 57.1 -1,1,a-pcom-i3,2017-18,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 18.6 -1,1,a-pcom-i3,2017-18,North Middlesex - Varnum Brook,07350035, 0.0, 1.0, 0.0, 97.7, 0.0, 0.0, 1.3, 94.6, 5.4, 78.2 -1,1,a-pcom-i3,2017-18,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 45.7 -1,1,a-pcom-i3,2017-18,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.4, 12.6, 46.0 -1,1,a-pcom-i3,2017-18,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 96.2, 3.8, 52.3 -1,1,a-pcom-i3,2017-18,North Reading - North Reading High,02170505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 52.1, 47.9, 91.1 -1,1,a-pcom-i3,2017-18,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 75.2 -2.6874999999999982,2.69,a-pcom-i3,2017-18,Northampton - Bridge Street,02100005, 1.8, 0.0, 6.8, 91.4, 0.0, 0.0, 0.0, 92.8, 7.2, 55.9 -6.843750000000002,5,a-pcom-i3,2017-18,Northampton - Jackson Street,02100020, 0.0, 2.0, 17.9, 78.1, 0.0, 0.0, 2.0, 86.1, 13.9, 50.3 -2.4687500000000018,2.47,a-pcom-i3,2017-18,Northampton - John F Kennedy Middle School,02100410, 2.0, 1.0, 3.9, 92.1, 1.0, 0.0, 0.0, 76.0, 24.0, 101.4 -3.1562499999999982,3.16,a-pcom-i3,2017-18,Northampton - Leeds,02100025, 2.1, 2.1, 5.9, 89.9, 0.0, 0.0, 0.0, 93.7, 6.3, 47.6 -1.875,1.88,a-pcom-i3,2017-18,Northampton - Northampton High,02100505, 3.0, 0.0, 3.0, 94.0, 0.0, 0.0, 0.0, 62.0, 38.0, 99.5 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Northampton - R. K. Finn Ryan Road,02100029, 0.0, 0.0, 4.9, 95.1, 0.0, 0.0, 0.0, 87.8, 12.2, 41.0 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 52.3, 47.7, 109.0 -1,1,a-pcom-i3,2017-18,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.1, 97.3, 0.0, 0.6, 0.0, 72.7, 27.3, 177.0 -1,1,a-pcom-i3,2017-18,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 48.3 -1,1,a-pcom-i3,2017-18,Northborough - Lincoln Street,02130003, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 92.7, 7.3, 45.3 -1,1,a-pcom-i3,2017-18,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 38.2 -1,1,a-pcom-i3,2017-18,Northborough - Marion E Zeh,02130020, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 90.8, 9.2, 39.8 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Northborough - Robert E. Melican Middle School,02130305, 0.0, 1.2, 2.4, 95.7, 0.0, 0.6, 0.0, 86.3, 13.7, 81.7 -1,1,a-pcom-i3,2017-18,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 97.8, 0.0, 0.7, 1.4, 95.8, 4.2, 69.1 -1,1,a-pcom-i3,2017-18,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.4, 37.6, 75.2 -1,1,a-pcom-i3,2017-18,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 77.2, 22.8, 86.2 -1,1,a-pcom-i3,2017-18,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 1.5, 97.8, 0.0, 0.7, 0.0, 95.9, 4.1, 68.9 -2.3125000000000018,2.31,a-pcom-i3,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 2.5, 1.2, 3.7, 92.6, 0.0, 0.0, 0.0, 49.7, 50.3, 159.7 -1,1,a-pcom-i3,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 57.9, 42.1, 64.4 -1,1,a-pcom-i3,2017-18,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 43.2 -1,1,a-pcom-i3,2017-18,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 63.1 -1,1,a-pcom-i3,2017-18,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.8, 1.2, 34.6 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Norton - Norton High,02180505, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 72.6, 27.4, 82.0 -1,1,a-pcom-i3,2017-18,Norton - Norton Middle,02180305, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 75.7, 24.3, 70.6 -1,1,a-pcom-i3,2017-18,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 55.9 -1,1,a-pcom-i3,2017-18,Norwell - Norwell High,02190505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 64.0, 36.0, 73.8 -1,1,a-pcom-i3,2017-18,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.7, 22.3, 67.4 -1,1,a-pcom-i3,2017-18,Norwell - William G Vinal,02190020, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 90.4, 9.6, 56.8 -3.28125,3.28,a-pcom-i3,2017-18,Norwood - Balch,02200005, 0.0, 2.6, 5.3, 89.5, 2.6, 0.0, 0.0, 95.5, 4.5, 37.9 -1,1,a-pcom-i3,2017-18,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 30.0 -1,1,a-pcom-i3,2017-18,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 32.5 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Norwood - Dr. Philip O. Coakley Middle School,02200305, 1.1, 0.0, 2.2, 96.8, 0.0, 0.0, 0.0, 70.6, 29.4, 93.0 -1,1,a-pcom-i3,2017-18,Norwood - F A Cleveland,02200015, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 96.1, 3.9, 46.0 -1,1,a-pcom-i3,2017-18,Norwood - George F. Willett,02200075, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 99.8, 0.2, 62.3 -1,1,a-pcom-i3,2017-18,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 97.2, 0.0, 2.8, 0.0, 83.9, 16.1, 35.3 -1,1,a-pcom-i3,2017-18,Norwood - Norwood High,02200505, 0.9, 0.9, 0.9, 97.3, 0.0, 0.0, 0.0, 66.2, 33.8, 109.4 -1.8437500000000018,1.84,a-pcom-i3,2017-18,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.9, 0.0, 1.6, 94.1, 0.0, 0.0, 2.4, 92.2, 7.8, 81.9 -1,1,a-pcom-i3,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 1.2, 0.0, 97.5, 0.0, 0.0, 1.2, 58.0, 42.0, 81.0 -1,1,a-pcom-i3,2017-18,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 61.9, 38.1, 86.5 -1,1,a-pcom-i3,2017-18,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.5, 28.5, 59.7 -3.7187500000000018,3.72,a-pcom-i3,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205, 0.0, 0.0, 11.9, 88.1, 0.0, 0.0, 0.0, 94.1, 5.9, 16.8 -1,1,a-pcom-i3,2017-18,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.5, 13.5, 37.1 -1,1,a-pcom-i3,2017-18,Orange - Fisher Hill,02230015, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 95.9, 4.1, 48.7 -1,1,a-pcom-i3,2017-18,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 42.2 -1,1,a-pcom-i3,2017-18,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 41.0 -1,1,a-pcom-i3,2017-18,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.4, 0.6, 33.7 -1,1,a-pcom-i3,2017-18,Oxford - Oxford High,02260505, 1.5, 0.0, 1.5, 96.9, 0.0, 0.0, 0.0, 63.0, 37.0, 64.7 -1,1,a-pcom-i3,2017-18,Oxford - Oxford Middle,02260405, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 89.1, 10.9, 44.0 -1,1,a-pcom-i3,2017-18,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 45.5, 54.5, 11.0 -1,1,a-pcom-i3,2017-18,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 92.1, 7.9, 95.3 -1,1,a-pcom-i3,2017-18,Palmer - Palmer High,02270505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.2, 28.8, 98.9 -1,1,a-pcom-i3,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 49.2, 50.8, 108.5 -18.1875,5,a-pcom-i3,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 18.2, 5.5, 34.5, 41.8, 0.0, 0.0, 0.0, 70.9, 29.1, 55.0 -1,1,a-pcom-i3,2017-18,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 68.6 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Peabody - Center,02290015, 0.0, 2.5, 1.3, 96.2, 0.0, 0.0, 0.0, 96.4, 3.6, 40.0 -1,1,a-pcom-i3,2017-18,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 73.7, 26.3, 144.5 -1,1,a-pcom-i3,2017-18,Peabody - John E Burke,02290007, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 97.8, 2.2, 39.0 -1,1,a-pcom-i3,2017-18,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 58.6 -1,1,a-pcom-i3,2017-18,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.5, 0.5, 98.4, 0.0, 0.0, 0.5, 59.8, 40.2, 189.2 -1,1,a-pcom-i3,2017-18,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 40.1 -1,1,a-pcom-i3,2017-18,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 58.2 -1,1,a-pcom-i3,2017-18,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 38.6 -1,1,a-pcom-i3,2017-18,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 91.1, 8.9, 39.0 -4.84375,4.84,a-pcom-i3,2017-18,Pelham - Pelham Elementary,02300005, 7.8, 0.0, 7.8, 84.5, 0.0, 0.0, 0.0, 86.2, 13.8, 25.7 -1,1,a-pcom-i3,2017-18,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 51.3 -1,1,a-pcom-i3,2017-18,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 51.4 -1,1,a-pcom-i3,2017-18,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 65.0 -1,1,a-pcom-i3,2017-18,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.7, 16.3, 49.1 -1,1,a-pcom-i3,2017-18,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.9, 26.1, 96.6 -1,1,a-pcom-i3,2017-18,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 40.7 -1,1,a-pcom-i3,2017-18,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 99.4, 0.0, 0.0, 0.6, 92.7, 7.3, 49.2 -1,1,a-pcom-i3,2017-18,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 99.5, 0.0, 0.0, 0.5, 95.8, 4.2, 62.5 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 2.5, 96.7, 0.0, 0.0, 0.8, 88.2, 11.8, 39.9 -1,1,a-pcom-i3,2017-18,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 97.9, 0.0, 0.0, 2.1, 71.0, 29.0, 48.4 -1,1,a-pcom-i3,2017-18,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 1.2, 98.5, 0.0, 0.0, 0.3, 61.6, 38.4, 86.2 -1,1,a-pcom-i3,2017-18,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 20.1 -21.84375,5,a-pcom-i3,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 52.4, 8.7, 8.7, 30.1, 0.0, 0.0, 0.0, 61.1, 38.9, 22.9 -13.999999999999998,5,a-pcom-i3,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 11.2, 11.2, 22.4, 55.2, 0.0, 0.0, 0.0, 74.3, 25.7, 26.8 -3.343750000000001,3.34,a-pcom-i3,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 2.9, 3.2, 3.5, 89.3, 0.0, 0.0, 1.2, 79.7, 20.3, 86.4 -11.218750000000002,5,a-pcom-i3,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 11.4, 22.1, 2.4, 64.1, 0.0, 0.0, 0.0, 61.2, 38.8, 41.5 -1,1,a-pcom-i3,2017-18,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.2, 2.8, 32.3 -1,1,a-pcom-i3,2017-18,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 38.1 -1,1,a-pcom-i3,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 14.7 -1,1,a-pcom-i3,2017-18,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 76.2, 23.8, 51.7 -1,1,a-pcom-i3,2017-18,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 15.0 -13.374999999999998,5,a-pcom-i3,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 2.3, 39.3, 0.0, 57.2, 0.0, 0.0, 1.1, 80.3, 19.7, 87.5 -5.218750000000001,5,a-pcom-i3,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 4.6, 1.5, 7.7, 83.3, 0.6, 0.0, 2.3, 60.1, 39.9, 65.1 -1,1,a-pcom-i3,2017-18,Pittsfield - Allendale,02360010, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 100.0, 0.0, 35.5 -1.6250000000000009,1.63,a-pcom-i3,2017-18,Pittsfield - Crosby,02360065, 2.2, 0.0, 2.4, 94.8, 0.0, 0.0, 0.6, 91.0, 9.0, 89.0 -1,1,a-pcom-i3,2017-18,Pittsfield - Egremont,02360035, 0.0, 1.9, 0.2, 96.9, 0.0, 0.0, 0.9, 96.2, 3.8, 53.3 -1.71875,1.72,a-pcom-i3,2017-18,Pittsfield - John T Reid Middle,02360305, 0.0, 1.3, 1.8, 94.5, 0.0, 0.0, 2.5, 68.6, 31.4, 79.6 -2.34375,2.34,a-pcom-i3,2017-18,Pittsfield - Morningside Community School,02360055, 1.5, 1.5, 1.5, 92.5, 0.0, 0.0, 3.0, 89.5, 10.5, 66.6 -2.562500000000001,2.56,a-pcom-i3,2017-18,Pittsfield - Pittsfield High,02360505, 5.2, 0.0, 3.0, 91.8, 0.0, 0.0, 0.0, 66.3, 33.7, 134.8 -2.0000000000000018,2.0,a-pcom-i3,2017-18,Pittsfield - Robert T. Capeless Elementary School,02360045, 2.8, 3.5, 0.0, 93.6, 0.0, 0.0, 0.0, 98.5, 1.5, 28.3 -1.6250000000000009,1.63,a-pcom-i3,2017-18,Pittsfield - Silvio O Conte Community,02360105, 1.7, 0.0, 1.7, 94.8, 0.0, 0.0, 1.7, 92.1, 7.9, 57.2 -1,1,a-pcom-i3,2017-18,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 89.1, 10.9, 32.2 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Pittsfield - Taconic High,02360510, 1.0, 0.0, 1.4, 96.6, 0.0, 0.0, 1.0, 61.9, 38.1, 103.5 -1,1,a-pcom-i3,2017-18,Pittsfield - Theodore Herberg Middle,02360310, 1.2, 0.0, 0.5, 98.3, 0.0, 0.0, 0.0, 72.5, 27.5, 82.5 -1,1,a-pcom-i3,2017-18,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 97.6, 0.0, 0.0, 2.4, 94.1, 5.9, 42.3 -1,1,a-pcom-i3,2017-18,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 98.5, 1.5, 65.4 -1.9375000000000009,1.94,a-pcom-i3,2017-18,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 2.6, 1.0, 93.8, 0.0, 0.0, 2.6, 95.4, 4.6, 39.0 -1,1,a-pcom-i3,2017-18,Plymouth - Cold Spring,02390005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 34.1 -1,1,a-pcom-i3,2017-18,Plymouth - Federal Furnace School,02390011, 0.9, 0.0, 1.6, 97.6, 0.0, 0.0, 0.0, 88.2, 11.8, 64.1 -1,1,a-pcom-i3,2017-18,Plymouth - Hedge,02390010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 93.2, 6.8, 32.3 -1,1,a-pcom-i3,2017-18,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.6, 97.6, 0.0, 0.9, 0.0, 90.1, 9.9, 64.5 -1,1,a-pcom-i3,2017-18,Plymouth - Manomet Elementary,02390015, 0.0, 1.3, 1.6, 97.1, 0.0, 0.0, 0.0, 97.3, 2.7, 37.4 -1,1,a-pcom-i3,2017-18,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 95.9, 4.1, 72.4 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Plymouth - Plymouth Commun Intermediate,02390405, 1.6, 0.8, 1.6, 95.9, 0.0, 0.0, 0.0, 81.9, 18.1, 122.8 -1,1,a-pcom-i3,2017-18,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 30.4 -1,1,a-pcom-i3,2017-18,Plymouth - Plymouth North High,02390505, 0.0, 0.9, 0.6, 98.4, 0.0, 0.0, 0.0, 68.6, 31.4, 158.9 -1,1,a-pcom-i3,2017-18,Plymouth - Plymouth South High,02390515, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 66.3, 33.7, 157.4 -1,1,a-pcom-i3,2017-18,Plymouth - Plymouth South Middle,02390305, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 75.6, 24.4, 87.8 -1,1,a-pcom-i3,2017-18,Plymouth - South Elementary,02390046, 1.2, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 93.9, 6.1, 82.2 -1,1,a-pcom-i3,2017-18,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.2, 9.8, 64.6 -1,1,a-pcom-i3,2017-18,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 31.2 -8.781249999999998,5,a-pcom-i3,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 14.3, 4.5, 8.1, 71.9, 0.0, 0.0, 1.2, 78.2, 21.8, 156.0 -1,1,a-pcom-i3,2017-18,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 0.0, 97.4, 0.0, 0.0, 2.6, 80.2, 19.8, 39.1 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Quabbin - Hardwick Elementary,07530005, 4.7, 0.0, 0.0, 95.3, 0.0, 0.0, 0.0, 96.7, 3.3, 21.2 -1.71875,1.72,a-pcom-i3,2017-18,Quabbin - Hubbardston Center,07530010, 0.0, 2.8, 2.8, 94.5, 0.0, 0.0, 0.0, 89.0, 11.0, 30.9 -4.781249999999999,4.78,a-pcom-i3,2017-18,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 84.7, 0.0, 0.0, 15.3, 66.3, 33.7, 1.6 -1,1,a-pcom-i3,2017-18,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 12.9 -1,1,a-pcom-i3,2017-18,Quabbin - Oakham Center,07530025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.2, 15.8, 12.0 -1.5625,1.56,a-pcom-i3,2017-18,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.3, 1.3, 95.0, 0.0, 1.3, 1.0, 72.5, 27.5, 75.2 -1,1,a-pcom-i3,2017-18,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.4, 17.6, 44.3 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Quabbin - Ruggles Lane,07530030, 1.6, 0.0, 1.6, 96.8, 0.0, 0.0, 0.0, 94.5, 5.5, 61.8 -1,1,a-pcom-i3,2017-18,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 68.1, 31.9, 53.9 -1,1,a-pcom-i3,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.8, 24.2, 19.3 -1,1,a-pcom-i3,2017-18,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.5, 0.0, 99.5, 0.0, 0.0, 0.0, 92.4, 7.6, 65.4 -1,1,a-pcom-i3,2017-18,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 95.3, 4.7, 42.1 -3.4062500000000018,3.41,a-pcom-i3,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 8.3, 0.0, 89.1, 0.0, 0.0, 2.5, 100.0, 0.0, 39.5 -1,1,a-pcom-i3,2017-18,Quincy - Atherton Hough,02430040, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 94.3, 5.7, 43.8 -3.062499999999999,3.06,a-pcom-i3,2017-18,Quincy - Atlantic Middle,02430305, 0.0, 7.4, 0.0, 90.2, 0.0, 0.0, 2.3, 75.6, 24.4, 43.0 -2.6874999999999982,2.69,a-pcom-i3,2017-18,Quincy - Beechwood Knoll Elementary,02430020, 2.9, 5.7, 0.0, 91.4, 0.0, 0.0, 0.0, 96.3, 3.7, 35.0 -1,1,a-pcom-i3,2017-18,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 78.9, 21.1, 45.6 -1,1,a-pcom-i3,2017-18,Quincy - Central Middle,02430315, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 75.8, 24.2, 57.7 -1,1,a-pcom-i3,2017-18,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 88.7, 11.3, 35.6 -1,1,a-pcom-i3,2017-18,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 98.4, 1.6, 61.8 -5.906250000000002,5,a-pcom-i3,2017-18,Quincy - Francis W Parker,02430075, 0.0, 16.6, 0.0, 81.1, 0.0, 0.0, 2.4, 94.6, 5.4, 42.2 -1,1,a-pcom-i3,2017-18,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 57.2 -2.9375000000000018,2.94,a-pcom-i3,2017-18,Quincy - Merrymount,02430060, 0.0, 6.2, 3.1, 90.6, 0.0, 0.0, 0.0, 92.5, 7.5, 32.0 -3.4375,3.44,a-pcom-i3,2017-18,Quincy - Montclair,02430065, 0.0, 11.0, 0.0, 89.0, 0.0, 0.0, 0.0, 94.6, 5.4, 39.1 -2.5312499999999982,2.53,a-pcom-i3,2017-18,Quincy - North Quincy High,02430510, 0.0, 3.5, 0.0, 91.9, 0.0, 0.0, 4.7, 59.5, 40.5, 129.0 -1,1,a-pcom-i3,2017-18,Quincy - Point Webster Middle,02430325, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 71.7, 28.3, 40.5 -2.406250000000001,2.41,a-pcom-i3,2017-18,Quincy - Quincy High,02430505, 0.0, 4.6, 0.6, 92.3, 0.6, 0.0, 1.8, 62.6, 37.4, 162.9 -1,1,a-pcom-i3,2017-18,Quincy - Reay E Sterling Middle,02430320, 0.0, 0.0, 0.0, 97.8, 2.2, 0.0, 0.0, 79.2, 20.8, 45.5 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Quincy - Snug Harbor Community School,02430090, 0.6, 2.6, 0.0, 94.2, 0.0, 0.0, 2.6, 93.5, 6.5, 77.4 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Quincy - Squantum,02430095, 0.0, 3.7, 0.0, 96.3, 0.0, 0.0, 0.0, 90.1, 9.9, 43.5 -2.6874999999999982,2.69,a-pcom-i3,2017-18,Quincy - Wollaston School,02430110, 1.5, 7.1, 0.0, 91.4, 0.0, 0.0, 0.0, 92.6, 7.4, 33.8 -1,1,a-pcom-i3,2017-18,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 7.4, 92.6, 0.3 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.1, 1.1, 3.2, 94.7, 0.0, 0.0, 0.0, 70.4, 29.6, 94.6 -1,1,a-pcom-i3,2017-18,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 7.4, 92.6, 0.3 -4.500000000000002,4.5,a-pcom-i3,2017-18,Randolph - Elizabeth G Lyons Elementary,02440020, 13.3, 1.1, 0.0, 85.6, 0.0, 0.0, 0.0, 81.2, 18.8, 45.3 -6.281249999999998,5,a-pcom-i3,2017-18,Randolph - J F Kennedy Elementary,02440018, 11.2, 2.2, 4.5, 79.9, 0.0, 0.0, 2.2, 87.7, 12.3, 89.4 -4.718749999999998,4.72,a-pcom-i3,2017-18,Randolph - Margaret L Donovan,02440015, 6.5, 4.3, 0.0, 84.9, 0.0, 0.0, 4.3, 95.7, 4.3, 46.4 -5.406249999999999,5,a-pcom-i3,2017-18,Randolph - Martin E Young Elementary,02440040, 4.1, 1.0, 4.1, 82.7, 0.0, 0.0, 8.1, 90.9, 9.1, 49.3 -11.031249999999998,5,a-pcom-i3,2017-18,Randolph - Randolph Community Middle,02440410, 25.8, 4.6, 3.7, 64.7, 1.2, 0.0, 0.0, 76.4, 23.6, 86.5 -10.031249999999998,5,a-pcom-i3,2017-18,Randolph - Randolph High,02440505, 14.5, 8.9, 7.6, 67.9, 0.0, 0.0, 1.1, 68.3, 31.7, 89.0 -1,1,a-pcom-i3,2017-18,Reading - Alice M Barrows,02460002, 0.0, 1.6, 0.1, 98.3, 0.0, 0.0, 0.0, 90.5, 9.5, 38.1 -1,1,a-pcom-i3,2017-18,Reading - Arthur W Coolidge Middle,02460305, 0.0, 1.5, 0.1, 98.4, 0.0, 0.0, 0.0, 84.8, 15.2, 64.9 -1,1,a-pcom-i3,2017-18,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 58.9 -1,1,a-pcom-i3,2017-18,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 47.7 -1,1,a-pcom-i3,2017-18,Reading - Joshua Eaton,02460010, 0.0, 0.8, 0.0, 97.1, 0.0, 0.0, 2.1, 95.0, 5.0, 47.4 -1,1,a-pcom-i3,2017-18,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 100.0, 0.0, 22.7 -1,1,a-pcom-i3,2017-18,Reading - Reading Memorial High,02460505, 0.0, 0.8, 0.0, 98.4, 0.9, 0.0, 0.0, 68.7, 31.3, 117.3 -1,1,a-pcom-i3,2017-18,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 79.1, 20.9, 66.3 -1,1,a-pcom-i3,2017-18,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 43.2 -1,1,a-pcom-i3,2017-18,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 94.8, 5.2, 73.4 -1,1,a-pcom-i3,2017-18,Revere - Abraham Lincoln,02480025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 61.6 -1.7812500000000009,1.78,a-pcom-i3,2017-18,Revere - Beachmont Veterans Memorial School,02480013, 1.9, 0.0, 3.8, 94.3, 0.0, 0.0, 0.0, 88.0, 12.0, 52.8 -3.2500000000000018,3.25,a-pcom-i3,2017-18,Revere - Garfield Elementary School,02480056, 1.2, 4.9, 3.1, 89.6, 0.0, 0.0, 1.2, 88.9, 11.1, 81.4 -1.9375000000000009,1.94,a-pcom-i3,2017-18,Revere - Garfield Middle School,02480057, 0.0, 4.4, 1.8, 93.8, 0.0, 0.0, 0.0, 57.5, 42.5, 56.5 -1,1,a-pcom-i3,2017-18,Revere - Paul Revere,02480050, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 95.0, 5.0, 50.5 -3.500000000000001,3.5,a-pcom-i3,2017-18,Revere - Revere High,02480505, 2.3, 1.7, 4.6, 88.8, 0.9, 0.0, 1.7, 70.5, 29.5, 174.7 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Revere - Rumney Marsh Academy,02480014, 1.5, 0.0, 3.6, 94.9, 0.0, 0.0, 0.0, 75.3, 24.7, 68.8 -3.0937500000000018,3.09,a-pcom-i3,2017-18,Revere - Seacoast School,02480520, 5.0, 0.0, 5.0, 90.1, 0.0, 0.0, 0.0, 54.6, 45.4, 20.2 -1.7812500000000009,1.78,a-pcom-i3,2017-18,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 2.4, 94.3, 0.0, 1.6, 1.6, 89.4, 10.6, 61.5 -1.25,1.25,a-pcom-i3,2017-18,Revere - Susan B. Anthony Middle School,02480305, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 68.6, 31.4, 63.1 -1.40625,1.41,a-pcom-i3,2017-18,Richmond - Richmond Consolidated,02490005, 4.5, 0.0, 0.0, 95.5, 0.0, 0.0, 0.0, 89.7, 10.3, 33.2 -2.437499999999999,2.44,a-pcom-i3,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 2.6, 1.3, 3.9, 92.2, 0.0, 0.0, 0.0, 71.5, 28.5, 77.2 -1.4374999999999982,1.44,a-pcom-i3,2017-18,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 95.4, 0.0, 0.0, 4.6, 82.9, 17.1, 43.9 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Rochester - Rochester Memorial,02500005, 3.4, 0.0, 0.0, 96.6, 0.0, 0.0, 0.0, 84.9, 15.1, 59.7 -1,1,a-pcom-i3,2017-18,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.0, 1.0, 48.3 -1,1,a-pcom-i3,2017-18,Rockland - John W Rogers Middle,02510305, 1.3, 0.0, 0.1, 98.6, 0.0, 0.0, 0.0, 87.1, 12.9, 77.3 -1,1,a-pcom-i3,2017-18,Rockland - Memorial Park,02510020, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 98.0, 2.0, 49.7 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 2.1, 95.8, 0.0, 0.0, 2.1, 94.8, 5.2, 47.8 -1,1,a-pcom-i3,2017-18,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 71.9, 28.1, 81.0 -1,1,a-pcom-i3,2017-18,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 60.1 -1,1,a-pcom-i3,2017-18,Rockport - Rockport High,02520510, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 70.6, 29.4, 43.4 -1,1,a-pcom-i3,2017-18,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.1, 25.9, 45.2 -2.03125,2.03,a-pcom-i3,2017-18,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 6.5, 93.5, 0.0, 0.0, 0.0, 82.4, 17.6, 15.3 -13.687499999999998,5,a-pcom-i3,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 24.6, 6.8, 10.2, 56.2, 0.0, 0.0, 2.2, 63.5, 36.5, 175.9 -7.406250000000001,5,a-pcom-i3,2017-18,Sabis International Charter (District) - Sabis International Charter School,04410505, 11.3, 1.3, 11.0, 76.3, 0.0, 0.0, 0.0, 73.8, 26.2, 127.2 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Salem - Bates,02580003, 0.2, 0.2, 3.3, 96.3, 0.0, 0.0, 0.0, 81.5, 18.5, 60.8 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Salem - Carlton,02580015, 0.2, 0.2, 4.2, 95.4, 0.0, 0.0, 0.0, 91.3, 8.7, 47.9 -2.562500000000001,2.56,a-pcom-i3,2017-18,Salem - Collins Middle,02580305, 2.0, 1.0, 5.1, 91.8, 0.0, 0.0, 0.0, 75.1, 24.9, 98.1 -2.562500000000001,2.56,a-pcom-i3,2017-18,Salem - Horace Mann Laboratory,02580030, 0.2, 0.3, 7.7, 91.8, 0.0, 0.0, 0.0, 92.8, 7.2, 45.6 -5.343749999999998,5,a-pcom-i3,2017-18,Salem - Nathaniel Bowditch,02580025, 1.8, 1.5, 13.9, 82.9, 0.0, 0.0, 0.0, 90.4, 9.6, 68.5 -6.187499999999999,5,a-pcom-i3,2017-18,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 19.8, 80.2, 0.0, 0.0, 0.0, 74.2, 25.8, 12.6 -1,1,a-pcom-i3,2017-18,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 97.2, 2.8, 28.9 -2.718750000000001,2.72,a-pcom-i3,2017-18,Salem - Salem High,02580505, 1.2, 0.0, 7.5, 91.3, 0.0, 0.0, 0.0, 63.4, 36.6, 173.3 -4.343750000000002,4.34,a-pcom-i3,2017-18,Salem - Salem Prep High School,02580515, 0.0, 0.0, 13.9, 86.1, 0.0, 0.0, 0.0, 56.6, 43.4, 14.4 -1,1,a-pcom-i3,2017-18,Salem - Saltonstall School,02580050, 0.3, 0.2, 2.5, 97.0, 0.0, 0.0, 0.0, 88.0, 12.0, 60.9 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Salem - Witchcraft Heights,02580070, 0.2, 0.2, 2.9, 96.8, 0.0, 0.0, 0.0, 91.6, 8.4, 86.4 -6.25,5,a-pcom-i3,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 4.6, 0.0, 13.8, 80.0, 0.0, 1.5, 0.0, 64.2, 35.8, 65.0 -1,1,a-pcom-i3,2017-18,Sandwich - Forestdale School,02610002, 0.0, 1.8, 1.2, 97.0, 0.0, 0.0, 0.0, 95.8, 4.2, 106.2 -1,1,a-pcom-i3,2017-18,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 91.8, 8.2, 109.7 -1,1,a-pcom-i3,2017-18,Sandwich - Sandwich High,02610505, 0.0, 1.1, 1.3, 97.6, 0.0, 0.0, 0.0, 74.7, 25.3, 90.2 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Sandwich - Sandwich STEM Academy,02610305, 0.0, 0.0, 1.4, 96.8, 0.0, 0.0, 1.8, 76.4, 23.6, 54.6 -1,1,a-pcom-i3,2017-18,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 61.9, 38.1, 78.8 -1,1,a-pcom-i3,2017-18,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.9, 10.1, 31.6 -1,1,a-pcom-i3,2017-18,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 30.2 -1,1,a-pcom-i3,2017-18,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 25.1 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Saugus - Saugus High,02620505, 1.5, 0.0, 2.4, 96.1, 0.0, 0.0, 0.0, 62.5, 37.5, 81.9 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 2.1, 95.7, 0.0, 1.1, 1.1, 96.8, 3.2, 93.4 -2.6250000000000018,2.63,a-pcom-i3,2017-18,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 8.4, 91.6, 0.0, 0.0, 0.0, 99.2, 0.8, 12.0 -1,1,a-pcom-i3,2017-18,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 44.0 -1,1,a-pcom-i3,2017-18,Scituate - Gates Middle School,02640305, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 78.1, 21.9, 75.2 -1,1,a-pcom-i3,2017-18,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 53.3 -1,1,a-pcom-i3,2017-18,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 54.9 -1,1,a-pcom-i3,2017-18,Scituate - Scituate High School,02640505, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 68.9, 31.1, 103.8 -1,1,a-pcom-i3,2017-18,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 58.5 -1,1,a-pcom-i3,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.5, 1.5, 0.0, 97.1, 0.0, 0.0, 0.0, 81.0, 19.0, 68.5 -1,1,a-pcom-i3,2017-18,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 92.8, 7.2, 58.4 -1,1,a-pcom-i3,2017-18,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 51.0 -1,1,a-pcom-i3,2017-18,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.4, 31.6, 75.2 -8.374999999999998,5,a-pcom-i3,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 11.2, 1.1, 13.4, 73.2, 1.1, 0.0, 0.0, 79.9, 20.1, 89.4 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Sharon - Cottage Street,02660005, 1.7, 2.1, 0.0, 96.3, 0.0, 0.0, 0.0, 90.3, 9.7, 48.1 -1,1,a-pcom-i3,2017-18,Sharon - East Elementary,02660010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 43.9 -1.71875,1.72,a-pcom-i3,2017-18,Sharon - Heights Elementary,02660015, 4.1, 1.4, 0.0, 94.5, 0.0, 0.0, 0.0, 91.3, 8.7, 72.3 -1,1,a-pcom-i3,2017-18,Sharon - Sharon Early Childhood Center,02660001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.8 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Sharon - Sharon High,02660505, 0.0, 2.3, 0.8, 96.1, 0.8, 0.0, 0.0, 68.2, 31.8, 128.2 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Sharon - Sharon Middle,02660305, 0.0, 3.2, 1.1, 95.8, 0.0, 0.0, 0.0, 78.8, 21.2, 94.4 -1,1,a-pcom-i3,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 1.4, 98.1, 0.0, 0.5, 0.0, 60.7, 39.3, 183.4 -1,1,a-pcom-i3,2017-18,Sherborn - Pine Hill,02690010, 1.5, 0.0, 0.0, 97.3, 0.0, 0.0, 1.2, 93.7, 6.3, 68.5 -1,1,a-pcom-i3,2017-18,Shrewsbury - Beal School,02710005, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 96.0, 4.0, 50.3 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Shrewsbury - Calvin Coolidge,02710015, 0.0, 3.3, 0.0, 94.9, 1.8, 0.0, 0.0, 98.2, 1.8, 56.4 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Shrewsbury - Floral Street School,02710020, 0.0, 3.3, 0.0, 94.6, 1.1, 0.0, 1.1, 96.1, 3.9, 91.8 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Shrewsbury - Oak Middle School,02710030, 0.0, 2.4, 1.8, 95.7, 0.0, 0.0, 0.0, 80.0, 20.0, 109.4 -1,1,a-pcom-i3,2017-18,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 100.0, 0.0, 44.5 -2.65625,2.66,a-pcom-i3,2017-18,Shrewsbury - Sherwood Middle School,02710305, 0.8, 1.1, 4.9, 91.5, 0.0, 0.0, 1.6, 87.9, 12.1, 121.4 -1.9687499999999991,1.97,a-pcom-i3,2017-18,Shrewsbury - Shrewsbury Sr High,02710505, 1.6, 1.6, 2.6, 93.7, 0.0, 0.0, 0.5, 70.9, 29.1, 190.1 -1,1,a-pcom-i3,2017-18,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 51.0 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Shrewsbury - Walter J Paton,02710025, 0.0, 1.9, 1.9, 96.2, 0.0, 0.0, 0.0, 96.2, 3.8, 52.9 -3.062499999999999,3.06,a-pcom-i3,2017-18,Shutesbury - Shutesbury Elementary,02720005, 0.0, 3.1, 3.1, 90.2, 0.0, 0.0, 3.7, 90.8, 9.2, 32.7 -1,1,a-pcom-i3,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 89.5, 10.5, 57.0 -1,1,a-pcom-i3,2017-18,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 69.6, 30.4, 138.8 -1,1,a-pcom-i3,2017-18,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.3, 24.7, 68.9 -2.250000000000001,2.25,a-pcom-i3,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 1.8, 5.3, 92.8, 0.0, 0.0, 0.0, 71.3, 28.7, 54.2 -1,1,a-pcom-i3,2017-18,Somerset - Chace Street,02730005, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 95.5, 4.5, 54.6 -1,1,a-pcom-i3,2017-18,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 58.9 -1,1,a-pcom-i3,2017-18,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.2, 24.8, 73.2 -1,1,a-pcom-i3,2017-18,Somerset - South,02730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 31.6 -1.0312499999999991,1.03,a-pcom-i3,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 64.8, 35.2, 120.5 -4.84375,4.84,a-pcom-i3,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 4.5, 0.0, 9.4, 84.5, 0.0, 0.0, 1.5, 89.8, 10.2, 66.3 -5.812499999999998,5,a-pcom-i3,2017-18,Somerville - Arthur D Healey,02740075, 9.6, 1.5, 7.5, 81.4, 0.0, 0.0, 0.0, 80.4, 19.6, 71.0 -1,1,a-pcom-i3,2017-18,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 23.5 -4.750000000000001,4.75,a-pcom-i3,2017-18,Somerville - Capuano Early Childhood Center,02740005, 2.9, 1.6, 9.2, 84.8, 0.0, 0.0, 1.6, 95.2, 4.8, 63.0 -10.593750000000002,5,a-pcom-i3,2017-18,Somerville - E Somerville Community,02740111, 5.0, 1.2, 24.0, 66.1, 2.5, 0.0, 1.2, 80.8, 19.2, 80.7 -2.093750000000001,2.09,a-pcom-i3,2017-18,Somerville - Full Circle High School,02740510, 0.0, 0.0, 6.7, 93.3, 0.0, 0.0, 0.0, 60.1, 39.9, 14.9 -3.656250000000001,3.66,a-pcom-i3,2017-18,Somerville - John F Kennedy,02740083, 1.4, 4.1, 4.8, 88.3, 0.0, 0.0, 1.4, 74.8, 25.2, 72.6 -3.4375,3.44,a-pcom-i3,2017-18,Somerville - Next Wave Junior High,02740410, 0.0, 11.0, 0.0, 89.0, 0.0, 0.0, 0.0, 76.7, 23.3, 9.1 -5.093749999999999,5,a-pcom-i3,2017-18,Somerville - Somerville High,02740505, 5.3, 1.8, 8.6, 83.7, 0.0, 0.0, 0.6, 60.4, 39.6, 169.6 -6.124999999999998,5,a-pcom-i3,2017-18,Somerville - West Somerville Neighborhood,02740115, 7.5, 2.5, 7.1, 80.4, 0.0, 0.0, 2.5, 82.9, 17.1, 40.0 -3.531249999999999,3.53,a-pcom-i3,2017-18,Somerville - Winter Hill Community,02740120, 2.7, 4.0, 4.7, 88.7, 0.0, 0.0, 0.0, 82.3, 17.7, 75.4 -1,1,a-pcom-i3,2017-18,South Hadley - Michael E. Smith Middle School,02780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.3, 20.7, 72.4 -1,1,a-pcom-i3,2017-18,South Hadley - Mosier,02780020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 54.0 -1.1874999999999991,1.19,a-pcom-i3,2017-18,South Hadley - Plains Elementary,02780015, 1.9, 0.0, 1.9, 96.2, 0.0, 0.0, 0.0, 90.5, 9.5, 52.4 -1,1,a-pcom-i3,2017-18,South Hadley - South Hadley High,02780505, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 59.9, 40.1, 70.7 -2.093750000000001,2.09,a-pcom-i3,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.8, 0.8, 5.0, 93.3, 0.0, 0.0, 0.0, 48.2, 51.8, 119.9 -2.5,2.5,a-pcom-i3,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 5.6, 1.6, 0.8, 92.0, 0.0, 0.0, 0.0, 71.3, 28.7, 121.2 -1,1,a-pcom-i3,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 48.7, 51.3, 87.2 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Southampton - William E Norris,02750005, 0.0, 0.0, 1.2, 95.9, 0.0, 0.0, 2.9, 88.5, 11.5, 69.6 -1,1,a-pcom-i3,2017-18,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 0.0, 0.0, 97.8, 0.0, 2.2, 0.0, 95.5, 4.5, 44.8 -1,1,a-pcom-i3,2017-18,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 41.8 -1,1,a-pcom-i3,2017-18,Southborough - Mary E Finn School,02760008, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 91.1, 8.9, 75.0 -1,1,a-pcom-i3,2017-18,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 97.4, 2.6, 0.0, 0.0, 82.9, 17.1, 76.1 -4.500000000000002,4.5,a-pcom-i3,2017-18,Southbridge - Charlton Street,02770005, 3.6, 0.0, 10.8, 85.6, 0.0, 0.0, 0.0, 91.0, 9.0, 55.4 -2.3125000000000018,2.31,a-pcom-i3,2017-18,Southbridge - Eastford Road,02770010, 0.0, 0.0, 7.4, 92.6, 0.0, 0.0, 0.0, 93.5, 6.5, 53.9 -4.968750000000002,4.97,a-pcom-i3,2017-18,Southbridge - Southbridge High School,02770515, 2.5, 0.0, 13.4, 84.1, 0.0, 0.0, 0.0, 51.0, 49.0, 79.7 -2.1875,2.19,a-pcom-i3,2017-18,Southbridge - Southbridge Middle School,02770315, 1.3, 0.0, 5.7, 93.0, 0.0, 0.0, 0.0, 70.6, 29.4, 76.6 -1,1,a-pcom-i3,2017-18,Southbridge - West Street,02770020, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 91.9, 8.1, 55.8 -3.843749999999999,3.84,a-pcom-i3,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 7.5, 2.1, 2.7, 87.7, 0.0, 0.0, 0.0, 59.0, 41.0, 186.5 -2.437499999999999,2.44,a-pcom-i3,2017-18,Southern Berkshire - Mt Everett Regional,07650505, 3.1, 1.6, 1.6, 92.2, 0.0, 0.0, 1.6, 61.5, 38.5, 64.4 -3.0937500000000018,3.09,a-pcom-i3,2017-18,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 3.7, 90.1, 6.2, 0.0, 0.0, 79.6, 20.4, 16.2 -1,1,a-pcom-i3,2017-18,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 92.6, 7.4, 63.2 -1,1,a-pcom-i3,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 55.9, 44.1, 161.0 -1,1,a-pcom-i3,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 65.1 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 2.8, 95.4, 0.0, 0.0, 1.9, 73.1, 26.9, 107.7 -1,1,a-pcom-i3,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 1.6, 1.6, 96.9, 0.0, 0.0, 0.0, 98.4, 1.6, 63.6 -1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.1, 39.9, 43.7 -1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 39.8 -1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 78.5, 21.5, 49.1 -1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 65.1 -8.374999999999998,5,a-pcom-i3,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 6.7, 0.0, 20.1, 73.2, 0.0, 0.0, 0.0, 93.3, 6.7, 44.8 -4.781249999999999,4.78,a-pcom-i3,2017-18,Springfield - Alice B Beal Elementary,02810175, 9.2, 3.1, 3.1, 84.7, 0.0, 0.0, 0.0, 93.9, 6.1, 32.7 -5.437500000000002,5,a-pcom-i3,2017-18,Springfield - Arthur T Talmadge,02810165, 5.0, 2.5, 9.9, 82.6, 0.0, 0.0, 0.0, 95.0, 5.0, 40.2 -8.1875,5,a-pcom-i3,2017-18,Springfield - Balliet Middle School,02810360, 16.0, 0.0, 10.3, 73.8, 0.0, 0.0, 0.0, 58.8, 41.2, 19.5 -10.53125,5,a-pcom-i3,2017-18,Springfield - Brightwood,02810025, 10.4, 0.0, 23.3, 66.3, 0.0, 0.0, 0.0, 89.6, 10.4, 38.6 -8.59375,5,a-pcom-i3,2017-18,Springfield - Chestnut Academy,02810365, 13.4, 0.0, 14.1, 72.5, 0.0, 0.0, 0.0, 57.2, 42.8, 50.8 -15.906249999999998,5,a-pcom-i3,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 29.7, 2.1, 19.1, 49.1, 0.0, 0.0, 0.0, 72.4, 27.6, 47.1 -11.531249999999998,5,a-pcom-i3,2017-18,Springfield - Conservatory of the Arts,02810475, 19.6, 0.0, 17.3, 63.1, 0.0, 0.0, 0.0, 69.6, 30.4, 51.1 -3.9374999999999982,3.94,a-pcom-i3,2017-18,Springfield - Daniel B Brunton,02810035, 5.4, 0.0, 7.2, 87.4, 0.0, 0.0, 0.0, 94.6, 5.4, 55.6 -8.8125,5,a-pcom-i3,2017-18,Springfield - Early Childhood Education Center,02810001, 15.4, 0.0, 12.8, 71.8, 0.0, 0.0, 0.0, 100.0, 0.0, 39.0 -9.84375,5,a-pcom-i3,2017-18,Springfield - Edward P. Boland School,02810010, 9.6, 0.0, 22.0, 68.5, 0.0, 0.0, 0.0, 87.6, 12.4, 104.5 -12.09375,5,a-pcom-i3,2017-18,Springfield - Elias Brookings,02810030, 23.2, 1.9, 13.6, 61.3, 0.0, 0.0, 0.0, 92.2, 7.8, 51.5 -4.249999999999998,4.25,a-pcom-i3,2017-18,Springfield - Forest Park Middle,02810325, 6.2, 1.2, 6.2, 86.4, 0.0, 0.0, 0.0, 77.8, 22.2, 80.9 -16.28125,5,a-pcom-i3,2017-18,Springfield - Frank H Freedman,02810075, 41.5, 0.0, 10.6, 47.9, 0.0, 0.0, 0.0, 84.6, 15.4, 37.6 -5.375000000000001,5,a-pcom-i3,2017-18,Springfield - Frederick Harris,02810080, 1.4, 1.4, 14.4, 82.8, 0.0, 0.0, 0.0, 94.3, 5.7, 69.6 -31.25,5,a-pcom-i3,2017-18,Springfield - Gateway to College at Holyoke Community College,02810575, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 -31.25,5,a-pcom-i3,2017-18,Springfield - Gateway to College at Springfield Technical Community College,02810580, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.1 -10.78125,5,a-pcom-i3,2017-18,Springfield - German Gerena Community School,02810195, 1.9, 0.0, 32.6, 65.5, 0.0, 0.0, 0.0, 91.5, 8.5, 105.9 -5.78125,5,a-pcom-i3,2017-18,Springfield - Glenwood,02810065, 4.9, 0.0, 13.6, 81.5, 0.0, 0.0, 0.0, 97.3, 2.7, 36.8 -8.96875,5,a-pcom-i3,2017-18,Springfield - Glickman Elementary,02810068, 9.3, 0.0, 19.4, 71.3, 0.0, 0.0, 0.0, 94.6, 5.4, 51.6 -14.0625,5,a-pcom-i3,2017-18,Springfield - High School Of Commerce,02810510, 20.0, 1.3, 23.0, 55.0, 0.0, 0.0, 0.7, 65.7, 34.3, 152.1 -4.624999999999999,4.62,a-pcom-i3,2017-18,Springfield - Hiram L Dorman,02810050, 9.9, 0.0, 4.9, 85.2, 0.0, 0.0, 0.0, 92.6, 7.4, 40.6 -6.312500000000001,5,a-pcom-i3,2017-18,Springfield - Homer Street,02810085, 11.2, 0.0, 9.0, 79.8, 0.0, 0.0, 0.0, 93.3, 6.7, 44.6 -15.906249999999998,5,a-pcom-i3,2017-18,Springfield - Impact Prep at Chestnut,02810366, 27.3, 0.0, 23.6, 49.1, 0.0, 0.0, 0.0, 78.3, 21.7, 25.5 -5.375000000000001,5,a-pcom-i3,2017-18,Springfield - Indian Orchard Elementary,02810100, 11.8, 0.0, 5.4, 82.8, 0.0, 0.0, 0.0, 86.6, 13.4, 74.4 -13.625,5,a-pcom-i3,2017-18,Springfield - John F Kennedy Middle,02810328, 25.4, 5.4, 9.1, 56.4, 0.0, 1.8, 1.9, 70.9, 29.1, 55.1 -10.093749999999998,5,a-pcom-i3,2017-18,Springfield - John J Duggan Middle,02810320, 23.3, 0.9, 8.1, 67.7, 0.0, 0.0, 0.0, 62.8, 37.2, 111.4 -5.406249999999999,5,a-pcom-i3,2017-18,Springfield - Kensington International School,02810110, 5.8, 0.0, 11.6, 82.7, 0.0, 0.0, 0.0, 85.5, 14.5, 34.6 -8.781249999999998,5,a-pcom-i3,2017-18,Springfield - Liberty,02810115, 19.7, 0.0, 8.4, 71.9, 0.0, 0.0, 0.0, 97.2, 2.8, 35.6 -13.406249999999998,5,a-pcom-i3,2017-18,Springfield - Liberty Preparatory Academy,02810560, 29.2, 0.0, 13.7, 57.1, 0.0, 0.0, 0.0, 56.6, 43.4, 7.3 -9.90625,5,a-pcom-i3,2017-18,Springfield - Lincoln,02810120, 11.5, 0.0, 20.2, 68.3, 0.0, 0.0, 0.0, 88.5, 11.5, 43.6 -12.0625,5,a-pcom-i3,2017-18,Springfield - M Marcus Kiley Middle,02810330, 21.3, 0.0, 17.3, 61.4, 0.0, 0.0, 0.0, 66.6, 33.4, 75.0 -6.5625,5,a-pcom-i3,2017-18,Springfield - Margaret C Ells,02810060, 11.7, 0.0, 9.3, 79.0, 0.0, 0.0, 0.0, 95.3, 4.7, 42.8 -3.0937500000000018,3.09,a-pcom-i3,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 4.9, 0.0, 4.9, 90.1, 0.0, 0.0, 0.0, 92.6, 7.4, 40.6 -9.874999999999998,5,a-pcom-i3,2017-18,Springfield - Mary M Lynch,02810140, 19.0, 0.0, 12.7, 68.4, 0.0, 0.0, 0.0, 93.7, 6.3, 31.6 -5.9375,5,a-pcom-i3,2017-18,Springfield - Mary M Walsh,02810155, 4.8, 0.0, 14.3, 81.0, 0.0, 0.0, 0.0, 92.9, 7.1, 42.1 -8.718750000000002,5,a-pcom-i3,2017-18,Springfield - Mary O Pottenger,02810145, 8.6, 0.0, 19.3, 72.1, 0.0, 0.0, 0.0, 93.6, 6.4, 46.6 -9.28125,5,a-pcom-i3,2017-18,Springfield - Milton Bradley School,02810023, 4.3, 0.0, 25.4, 70.3, 0.0, 0.0, 0.0, 92.9, 7.1, 70.1 -17.5,5,a-pcom-i3,2017-18,Springfield - Rebecca M Johnson,02810055, 36.0, 0.0, 20.0, 44.0, 0.0, 0.0, 0.0, 88.7, 11.3, 95.3 -11.46875,5,a-pcom-i3,2017-18,Springfield - Rise Academy at Van Sickle,02810480, 13.3, 3.3, 20.0, 63.3, 0.0, 0.0, 0.0, 73.3, 26.7, 30.0 -9.6875,5,a-pcom-i3,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 11.4, 3.7, 15.9, 69.0, 0.0, 0.0, 0.0, 53.6, 46.4, 188.5 -13.218749999999998,5,a-pcom-i3,2017-18,Springfield - STEM Middle Academy,02810350, 30.8, 0.0, 11.5, 57.7, 0.0, 0.0, 0.0, 57.7, 42.3, 26.0 -8.531249999999998,5,a-pcom-i3,2017-18,Springfield - Samuel Bowles,02810020, 8.2, 0.0, 19.1, 72.7, 0.0, 0.0, 0.0, 89.1, 10.9, 36.6 -13.9375,5,a-pcom-i3,2017-18,Springfield - South End Middle School,02810355, 16.6, 0.0, 28.1, 55.4, 0.0, 0.0, 0.0, 77.9, 22.1, 36.2 -7.937500000000002,5,a-pcom-i3,2017-18,Springfield - Springfield Central High,02810500, 11.1, 2.8, 11.6, 74.6, 0.0, 0.0, 0.0, 55.4, 44.6, 216.1 -9.84375,5,a-pcom-i3,2017-18,Springfield - Springfield High School,02810570, 27.6, 0.0, 3.9, 68.5, 0.0, 0.0, 0.0, 60.0, 40.0, 25.9 -10.6875,5,a-pcom-i3,2017-18,Springfield - Springfield High School of Science and Technology,02810530, 14.3, 2.4, 16.9, 65.8, 0.0, 0.6, 0.0, 58.9, 41.1, 163.2 -13.90625,5,a-pcom-i3,2017-18,Springfield - Springfield Public Day Elementary School,02810005, 29.8, 0.0, 14.7, 55.5, 0.0, 0.0, 0.0, 92.6, 7.4, 27.1 -20.21875,5,a-pcom-i3,2017-18,Springfield - Springfield Public Day High School,02810550, 43.7, 0.0, 21.0, 35.3, 0.0, 0.0, 0.0, 76.1, 23.9, 33.4 -9.28125,5,a-pcom-i3,2017-18,Springfield - Springfield Public Day Middle School,02810345, 22.3, 0.0, 7.4, 70.3, 0.0, 0.0, 0.0, 70.5, 29.5, 27.1 -4.53125,4.53,a-pcom-i3,2017-18,Springfield - Springfield Vocational Academy,02810675, 14.5, 0.0, 0.0, 85.5, 0.0, 0.0, 0.0, 43.8, 56.2, 3.5 -7.281249999999999,5,a-pcom-i3,2017-18,Springfield - Sumner Avenue,02810160, 12.3, 2.4, 8.6, 76.7, 0.0, 0.0, 0.0, 86.5, 13.5, 81.6 -8.8125,5,a-pcom-i3,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 19.9, 0.0, 8.3, 71.8, 0.0, 0.0, 0.0, 82.0, 18.0, 78.0 -8.531249999999998,5,a-pcom-i3,2017-18,Springfield - Thomas M Balliet,02810015, 10.9, 0.0, 16.4, 72.7, 0.0, 0.0, 0.0, 94.5, 5.5, 36.6 -11.031249999999998,5,a-pcom-i3,2017-18,Springfield - Van Sickle Academy,02810485, 17.6, 0.0, 17.6, 64.7, 0.0, 0.0, 0.0, 74.5, 25.5, 51.0 -6.875,5,a-pcom-i3,2017-18,Springfield - Warner,02810180, 16.4, 0.0, 5.6, 78.0, 0.0, 0.0, 0.0, 91.9, 8.1, 36.6 -6.40625,5,a-pcom-i3,2017-18,Springfield - Washington,02810185, 9.1, 0.0, 11.4, 79.5, 0.0, 0.0, 0.0, 95.4, 4.6, 43.8 -3.374999999999999,3.37,a-pcom-i3,2017-18,Springfield - White Street,02810190, 6.5, 0.0, 4.3, 89.2, 0.0, 0.0, 0.0, 97.8, 2.2, 46.1 -11.531249999999998,5,a-pcom-i3,2017-18,Springfield - William N. DeBerry,02810045, 12.3, 0.0, 24.6, 63.1, 0.0, 0.0, 0.0, 90.1, 9.9, 40.6 -10.15625,5,a-pcom-i3,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 24.8, 0.0, 7.6, 67.5, 0.0, 0.0, 0.0, 87.9, 12.1, 31.4 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Stoneham - Colonial Park,02840005, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 96.6, 3.4, 51.6 -1,1,a-pcom-i3,2017-18,Stoneham - Robin Hood,02840025, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 93.9, 6.1, 48.1 -1,1,a-pcom-i3,2017-18,Stoneham - South,02840030, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 97.0, 3.0, 37.3 -1,1,a-pcom-i3,2017-18,Stoneham - Stoneham Central Middle School,02840405, 1.0, 0.0, 0.0, 97.9, 0.0, 0.0, 1.0, 74.2, 25.8, 96.2 -1,1,a-pcom-i3,2017-18,Stoneham - Stoneham High,02840505, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 72.1, 27.9, 85.6 -1.71875,1.72,a-pcom-i3,2017-18,Stoughton - Edwin A Jones Early Childhood Center,02850012, 3.8, 0.0, 1.7, 94.5, 0.0, 0.0, 0.0, 98.3, 1.7, 23.0 -1,1,a-pcom-i3,2017-18,Stoughton - Helen Hansen Elementary,02850010, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 91.1, 8.9, 36.0 -1,1,a-pcom-i3,2017-18,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 42.9 -1,1,a-pcom-i3,2017-18,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.9, 0.0, 98.2, 0.0, 0.0, 0.9, 88.0, 12.0, 42.4 -1,1,a-pcom-i3,2017-18,Stoughton - O'Donnell Middle School,02850405, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 82.8, 17.2, 95.7 -1,1,a-pcom-i3,2017-18,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 29.1 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Stoughton - Stoughton High,02850505, 0.8, 0.0, 0.8, 95.9, 0.8, 0.8, 0.8, 68.8, 31.2, 122.2 -1.7499999999999982,1.75,a-pcom-i3,2017-18,Stoughton - West Elementary,02850020, 0.0, 0.9, 2.4, 94.4, 0.0, 0.0, 2.4, 92.9, 7.1, 42.3 -1,1,a-pcom-i3,2017-18,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 129.9 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 2.3, 1.9, 95.8, 0.0, 0.0, 0.0, 66.4, 33.6, 131.2 -1,1,a-pcom-i3,2017-18,Sudbury - Ephraim Curtis Middle,02880305, 0.9, 0.0, 0.9, 97.2, 0.0, 0.0, 0.9, 73.3, 26.7, 105.9 -1,1,a-pcom-i3,2017-18,Sudbury - General John Nixon Elementary,02880025, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 89.5, 10.5, 50.5 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Sudbury - Israel Loring School,02880015, 4.1, 1.7, 0.0, 91.1, 0.0, 0.0, 3.1, 88.8, 11.2, 58.4 -1,1,a-pcom-i3,2017-18,Sudbury - Josiah Haynes,02880010, 2.3, 0.0, 0.5, 97.2, 0.0, 0.0, 0.0, 94.7, 5.3, 60.9 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Sudbury - Peter Noyes,02880030, 0.7, 0.0, 1.3, 95.4, 0.0, 0.0, 2.6, 93.3, 6.7, 76.7 -1.9687499999999991,1.97,a-pcom-i3,2017-18,Sunderland - Sunderland Elementary,02890005, 1.6, 1.6, 3.2, 93.7, 0.0, 0.0, 0.0, 87.3, 12.7, 63.1 -1,1,a-pcom-i3,2017-18,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.2, 0.8, 54.9 -1,1,a-pcom-i3,2017-18,Sutton - Sutton Elementary,02900005, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 94.6, 5.4, 47.7 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Sutton - Sutton High School,02900510, 5.8, 0.0, 0.0, 94.2, 0.0, 0.0, 0.0, 62.9, 37.1, 52.1 -1,1,a-pcom-i3,2017-18,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.8, 29.2, 42.4 -1,1,a-pcom-i3,2017-18,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 39.8 -1,1,a-pcom-i3,2017-18,Swampscott - Hadley,02910010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.0, 12.0, 41.8 -1,1,a-pcom-i3,2017-18,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.1, 14.9, 41.4 -1.5625,1.56,a-pcom-i3,2017-18,Swampscott - Swampscott High,02910505, 0.6, 1.1, 3.3, 95.0, 0.0, 0.0, 0.0, 64.6, 35.4, 90.7 -1,1,a-pcom-i3,2017-18,Swampscott - Swampscott Middle,02910305, 0.5, 0.0, 0.9, 98.6, 0.0, 0.0, 0.0, 88.3, 11.7, 106.7 -1,1,a-pcom-i3,2017-18,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 26.9 -1,1,a-pcom-i3,2017-18,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 25.7 -1,1,a-pcom-i3,2017-18,Swansea - Joseph Case High,02920505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 44.7, 55.3, 68.3 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Swansea - Joseph Case Jr High,02920305, 1.8, 0.0, 1.8, 96.4, 0.0, 0.0, 0.0, 70.8, 29.2, 54.9 -1,1,a-pcom-i3,2017-18,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.3, 15.7, 22.3 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Swansea - Mark G Hoyle Elementary,02920017, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 90.5, 9.5, 31.5 -2.875000000000001,2.88,a-pcom-i3,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 2.6, 5.3, 1.3, 90.8, 0.0, 0.0, 0.0, 70.3, 29.7, 75.9 -1,1,a-pcom-i3,2017-18,Tantasqua - Tantasqua Regional Jr High,07700405, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 78.6, 21.4, 74.7 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Tantasqua - Tantasqua Regional Sr High,07700505, 0.8, 0.0, 1.6, 96.8, 0.0, 0.0, 0.8, 61.8, 38.2, 123.6 -1,1,a-pcom-i3,2017-18,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 26.5, 73.5, 17.2 -1,1,a-pcom-i3,2017-18,Taunton - Benjamin Friedman Middle,02930315, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 81.5, 18.5, 82.7 -1,1,a-pcom-i3,2017-18,Taunton - East Taunton Elementary,02930010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 77.9 -1,1,a-pcom-i3,2017-18,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 37.6 -1,1,a-pcom-i3,2017-18,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.7, 0.3, 39.2 -1,1,a-pcom-i3,2017-18,Taunton - Elizabeth Pole,02930027, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 95.6, 4.4, 67.0 -1.9375000000000009,1.94,a-pcom-i3,2017-18,Taunton - H H Galligan,02930057, 0.7, 0.0, 5.5, 93.8, 0.0, 0.0, 0.0, 98.1, 1.9, 36.4 -1,1,a-pcom-i3,2017-18,Taunton - Hopewell,02930035, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 90.9, 9.1, 37.0 -1.8124999999999991,1.81,a-pcom-i3,2017-18,Taunton - John F Parker Middle,02930305, 3.8, 0.0, 1.9, 94.2, 0.0, 0.0, 0.0, 83.1, 16.9, 52.1 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Taunton - Joseph C Chamberlain,02930008, 1.6, 3.2, 0.0, 95.1, 0.0, 0.0, 0.0, 96.4, 3.6, 61.7 -1,1,a-pcom-i3,2017-18,Taunton - Joseph H Martin,02930042, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 80.4, 19.6, 63.8 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 97.0, 3.0, 51.6 -1,1,a-pcom-i3,2017-18,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.1, 37.9, 11.2 -1.5625,1.56,a-pcom-i3,2017-18,Taunton - Taunton High,02930505, 2.1, 0.4, 2.1, 95.0, 0.0, 0.0, 0.4, 64.8, 35.2, 240.3 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 2.4, 96.4, 1.2, 0.0, 0.0, 97.7, 2.3, 41.2 -1,1,a-pcom-i3,2017-18,Tewksbury - John F. Ryan,02950023, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 90.8, 9.2, 70.9 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Tewksbury - John W. Wynn Middle,02950305, 0.0, 2.6, 1.3, 96.1, 0.0, 0.0, 0.0, 74.8, 25.2, 76.0 -1.9375000000000009,1.94,a-pcom-i3,2017-18,Tewksbury - L F Dewing,02950001, 1.2, 3.7, 1.2, 93.8, 0.0, 0.0, 0.0, 97.5, 2.5, 80.6 -1,1,a-pcom-i3,2017-18,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 98.3, 1.7, 0.0, 0.0, 86.0, 14.0, 28.8 -1,1,a-pcom-i3,2017-18,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 43.5 -1,1,a-pcom-i3,2017-18,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 65.2, 34.8, 108.8 -2.718750000000001,2.72,a-pcom-i3,2017-18,Tisbury - Tisbury Elementary,02960005, 1.9, 0.0, 5.4, 91.3, 0.0, 0.0, 1.4, 86.3, 13.7, 74.0 -1,1,a-pcom-i3,2017-18,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 39.6 -1,1,a-pcom-i3,2017-18,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 94.9, 5.1, 58.2 -1,1,a-pcom-i3,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 62.0, 38.0, 131.1 -1,1,a-pcom-i3,2017-18,Triton - Newbury Elementary,07730020, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 87.6, 12.4, 80.9 -1,1,a-pcom-i3,2017-18,Triton - Pine Grove,07730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 61.9 -1,1,a-pcom-i3,2017-18,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 72.9 -1,1,a-pcom-i3,2017-18,Triton - Triton Regional High School,07730505, 2.2, 0.0, 0.8, 96.9, 0.0, 0.0, 0.0, 54.1, 45.9, 97.8 -1,1,a-pcom-i3,2017-18,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.2, 34.8, 52.0 -1,1,a-pcom-i3,2017-18,Truro - Truro Central,03000005, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 84.5, 15.5, 32.3 -1,1,a-pcom-i3,2017-18,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 91.7, 8.3, 108.0 -1,1,a-pcom-i3,2017-18,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.2, 39.8, 51.9 -1,1,a-pcom-i3,2017-18,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 64.5, 35.5, 51.0 -9.874999999999998,5,a-pcom-i3,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 17.1, 6.8, 7.7, 68.4, 0.0, 0.0, 0.0, 62.4, 37.6, 58.5 -9.90625,5,a-pcom-i3,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 22.3, 2.4, 7.1, 68.3, 0.0, 0.0, 0.0, 80.1, 19.9, 84.9 -1,1,a-pcom-i3,2017-18,Up-Island Regional - Chilmark Elementary,07740010, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 95.1, 4.9, 10.2 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Up-Island Regional - West Tisbury Elementary,07740020, 0.6, 0.0, 1.7, 96.2, 0.0, 0.0, 1.4, 86.3, 13.7, 71.7 -1,1,a-pcom-i3,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 0.0, 0.0, 0.0, 99.0, 1.0, 0.0, 0.0, 41.1, 58.9, 98.4 -31.25,5,a-pcom-i3,2017-18,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1,1,a-pcom-i3,2017-18,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.3, 27.7, 47.0 -1,1,a-pcom-i3,2017-18,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 94.4, 5.6, 53.6 -1,1,a-pcom-i3,2017-18,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.9, 36.1, 61.2 -1,1,a-pcom-i3,2017-18,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.6, 1.4, 44.1 -8.156249999999998,5,a-pcom-i3,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 8.7, 0.0, 15.2, 73.9, 0.0, 0.0, 2.2, 84.8, 15.2, 46.0 -1,1,a-pcom-i3,2017-18,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.2, 24.8, 53.2 -1,1,a-pcom-i3,2017-18,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 82.9, 17.1, 45.6 -1,1,a-pcom-i3,2017-18,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 86.3, 13.7, 50.8 -1,1,a-pcom-i3,2017-18,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 57.0 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Wachusett - Early Childhood Center,07750001, 2.1, 0.0, 2.1, 95.9, 0.0, 0.0, 0.0, 100.0, 0.0, 48.8 -1,1,a-pcom-i3,2017-18,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 49.0 -1,1,a-pcom-i3,2017-18,Wachusett - Houghton Elementary,07750027, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 96.6, 3.4, 59.1 -1,1,a-pcom-i3,2017-18,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 49.8 -1,1,a-pcom-i3,2017-18,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 80.5, 19.5, 75.3 -1,1,a-pcom-i3,2017-18,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 47.9 -1,1,a-pcom-i3,2017-18,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 52.2 -1,1,a-pcom-i3,2017-18,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 88.1, 11.9, 44.2 -1,1,a-pcom-i3,2017-18,Wachusett - Wachusett Regional High,07750505, 0.0, 0.4, 0.4, 99.1, 0.0, 0.0, 0.0, 69.4, 30.6, 224.3 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Wakefield - Dolbeare,03050005, 0.0, 1.7, 0.0, 96.6, 1.7, 0.0, 0.0, 87.6, 12.4, 58.8 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 4.3, 0.0, 95.7, 0.0, 0.0, 0.0, 100.0, 0.0, 23.4 -1,1,a-pcom-i3,2017-18,Wakefield - Galvin Middle School,03050310, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 74.4, 25.6, 119.7 -1.09375,1.09,a-pcom-i3,2017-18,Wakefield - Greenwood,03050020, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 95.5, 4.5, 28.9 -1,1,a-pcom-i3,2017-18,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.9, 1.9, 97.2, 0.0, 0.0, 0.0, 61.4, 38.6, 115.2 -1,1,a-pcom-i3,2017-18,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 19.9 -1,1,a-pcom-i3,2017-18,Wakefield - Woodville School,03050015, 0.0, 0.0, 1.7, 98.1, 0.0, 0.0, 0.2, 95.6, 4.4, 59.2 -1,1,a-pcom-i3,2017-18,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 20.2 -1,1,a-pcom-i3,2017-18,Walpole - Bird Middle,03070305, 0.0, 1.7, 0.2, 98.1, 0.0, 0.0, 0.0, 85.5, 14.5, 58.7 -1,1,a-pcom-i3,2017-18,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 48.1 -1.4687500000000009,1.47,a-pcom-i3,2017-18,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 93.3, 6.7, 16.4 -1,1,a-pcom-i3,2017-18,Walpole - Eleanor N Johnson Middle,03070310, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 79.5, 20.5, 56.2 -1,1,a-pcom-i3,2017-18,Walpole - Elm Street School,03070005, 0.0, 1.0, 1.2, 97.8, 0.0, 0.0, 0.0, 95.9, 4.1, 49.3 -1,1,a-pcom-i3,2017-18,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 54.6 -1,1,a-pcom-i3,2017-18,Walpole - Old Post Road,03070018, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 91.0, 9.0, 44.7 -1,1,a-pcom-i3,2017-18,Walpole - Walpole High,03070505, 0.0, 1.2, 1.6, 97.3, 0.0, 0.0, 0.0, 66.5, 33.5, 135.1 -1,1,a-pcom-i3,2017-18,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 56.6 -3.7812499999999982,3.78,a-pcom-i3,2017-18,Waltham - Henry Whittemore Elementary School,03080065, 3.4, 0.0, 6.9, 87.9, 0.0, 1.7, 0.0, 89.4, 10.6, 58.0 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 1.8, 96.4, 0.0, 0.0, 1.8, 91.0, 9.0, 55.5 -2.5,2.5,a-pcom-i3,2017-18,Waltham - John F Kennedy Middle,03080404, 0.0, 4.6, 3.4, 92.0, 0.0, 0.0, 0.0, 77.9, 22.1, 87.6 -3.59375,3.59,a-pcom-i3,2017-18,Waltham - John W. McDevitt Middle School,03080415, 4.2, 1.0, 6.3, 88.5, 0.0, 0.0, 0.0, 67.2, 32.8, 95.5 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Waltham - Northeast Elementary School,03080040, 4.7, 1.2, 1.9, 91.1, 0.0, 0.0, 1.2, 93.8, 6.2, 85.8 -1.875,1.88,a-pcom-i3,2017-18,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 92.3, 7.7, 60.9 -13.15625,5,a-pcom-i3,2017-18,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 42.1, 57.9, 0.0, 0.0, 0.0, 98.1, 1.9, 10.5 -3.75,3.75,a-pcom-i3,2017-18,Waltham - Waltham Sr High,03080505, 2.7, 1.4, 6.4, 88.0, 0.0, 0.5, 1.0, 63.0, 37.0, 208.9 -1.7812500000000009,1.78,a-pcom-i3,2017-18,Waltham - William F. Stanley Elementary School,03080005, 1.1, 0.0, 3.4, 94.3, 0.0, 0.0, 1.1, 92.6, 7.4, 90.2 -1,1,a-pcom-i3,2017-18,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 93.3, 6.7, 56.5 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 75.9, 24.1, 65.4 -1.3750000000000018,1.38,a-pcom-i3,2017-18,Ware - Ware Middle School,03090305, 2.2, 0.0, 2.2, 95.6, 0.0, 0.0, 0.0, 81.6, 18.4, 45.6 -1,1,a-pcom-i3,2017-18,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 91.5, 8.5, 78.2 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.0, 94.7, 0.0, 0.0, 5.3, 94.2, 5.8, 75.9 -1,1,a-pcom-i3,2017-18,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.1, 26.9, 3.8 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Wareham - Wareham Middle,03100305, 1.2, 0.0, 0.0, 96.4, 0.0, 0.0, 2.4, 83.3, 16.7, 84.1 -2.718750000000001,2.72,a-pcom-i3,2017-18,Wareham - Wareham Senior High,03100505, 3.3, 1.1, 0.0, 91.3, 0.0, 0.0, 4.3, 66.2, 33.8, 89.7 -1,1,a-pcom-i3,2017-18,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 53.4 -1,1,a-pcom-i3,2017-18,Watertown - Hosmer,03140020, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 87.5, 12.5, 130.9 -1,1,a-pcom-i3,2017-18,Watertown - James Russell Lowell,03140025, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 84.8, 15.2, 68.7 -1,1,a-pcom-i3,2017-18,Watertown - Watertown High,03140505, 1.7, 0.8, 0.0, 97.5, 0.0, 0.0, 0.0, 55.6, 44.4, 120.1 -1,1,a-pcom-i3,2017-18,Watertown - Watertown Middle,03140305, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 79.3, 20.7, 78.5 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Wayland - Claypit Hill School,03150005, 1.2, 0.0, 0.0, 96.3, 0.0, 1.2, 1.2, 94.0, 6.0, 81.9 -2.437499999999999,2.44,a-pcom-i3,2017-18,Wayland - Happy Hollow School,03150015, 0.0, 6.0, 1.7, 92.2, 0.0, 0.0, 0.0, 95.5, 4.5, 57.4 -1,1,a-pcom-i3,2017-18,Wayland - Loker School,03150020, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 86.3, 13.7, 46.3 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Wayland - Wayland High School,03150505, 3.3, 1.3, 0.0, 95.4, 0.0, 0.0, 0.0, 65.3, 34.7, 120.9 -2.6250000000000018,2.63,a-pcom-i3,2017-18,Wayland - Wayland Middle School,03150305, 0.0, 1.8, 5.4, 91.6, 0.0, 0.0, 1.1, 71.4, 28.6, 87.5 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Webster - Bartlett High School,03160505, 1.5, 0.0, 1.5, 95.4, 0.0, 0.0, 1.5, 68.4, 31.6, 64.8 -1,1,a-pcom-i3,2017-18,Webster - Park Avenue Elementary,03160015, 1.8, 0.0, 0.9, 97.3, 0.0, 0.0, 0.0, 98.2, 1.8, 111.1 -1,1,a-pcom-i3,2017-18,Webster - Webster Middle School,03160315, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 75.9, 24.1, 72.7 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Wellesley - Ernest F Upham,03170050, 0.0, 1.8, 2.5, 95.7, 0.0, 0.0, 0.0, 90.3, 9.7, 55.7 -3.812500000000001,3.81,a-pcom-i3,2017-18,Wellesley - Hunnewell,03170025, 1.5, 2.1, 4.3, 87.8, 0.0, 0.0, 4.3, 87.9, 12.1, 46.5 -1,1,a-pcom-i3,2017-18,Wellesley - John D Hardy,03170020, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 90.7, 9.3, 43.1 -2.5312499999999982,2.53,a-pcom-i3,2017-18,Wellesley - Joseph E Fiske,03170015, 2.2, 3.4, 1.3, 91.9, 0.0, 0.0, 1.1, 97.8, 2.2, 89.4 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 1.9, 95.8, 0.0, 0.0, 2.4, 100.0, 0.0, 42.5 -1.25,1.25,a-pcom-i3,2017-18,Wellesley - Schofield,03170045, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 92.1, 7.9, 50.6 -1.0625000000000018,1.06,a-pcom-i3,2017-18,Wellesley - Sprague Elementary School,03170048, 0.0, 1.7, 0.0, 96.6, 0.0, 0.0, 1.7, 93.2, 6.8, 58.9 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Wellesley - Wellesley Middle,03170305, 2.5, 2.7, 2.8, 91.1, 0.0, 0.0, 0.9, 75.4, 24.6, 178.6 -2.8125,2.81,a-pcom-i3,2017-18,Wellesley - Wellesley Sr High,03170505, 2.6, 3.0, 0.9, 91.0, 0.4, 0.0, 2.2, 65.8, 34.2, 234.6 -1,1,a-pcom-i3,2017-18,Wellfleet - Wellfleet Elementary,03180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 30.8 -1,1,a-pcom-i3,2017-18,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 57.5 -2.6874999999999982,2.69,a-pcom-i3,2017-18,West Boylston - West Boylston Junior/Senior High,03220505, 1.4, 1.4, 2.9, 91.4, 0.0, 0.0, 2.9, 67.8, 32.2, 70.1 -1,1,a-pcom-i3,2017-18,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 29.8 -1,1,a-pcom-i3,2017-18,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 30.2 -1,1,a-pcom-i3,2017-18,West Bridgewater - Spring Street School,03230005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 24.3 -1,1,a-pcom-i3,2017-18,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 70.6, 29.4, 65.5 -1,1,a-pcom-i3,2017-18,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.2, 41.8, 7.2 -1.1874999999999991,1.19,a-pcom-i3,2017-18,West Springfield - Cowing Early Childhood,03320001, 0.0, 0.0, 0.0, 96.2, 3.8, 0.0, 0.0, 93.6, 6.4, 26.1 -1,1,a-pcom-i3,2017-18,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 39.8 -1,1,a-pcom-i3,2017-18,West Springfield - John R Fausey,03320010, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 89.4, 10.6, 64.5 -1.0000000000000009,1.0,a-pcom-i3,2017-18,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 96.8, 0.0, 0.0, 3.2, 88.0, 12.0, 31.4 -1.40625,1.41,a-pcom-i3,2017-18,West Springfield - Mittineague,03320030, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 90.6, 9.4, 22.2 -1,1,a-pcom-i3,2017-18,West Springfield - Philip G Coburn,03320007, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 91.8, 8.2, 70.2 -1,1,a-pcom-i3,2017-18,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 35.6 -2.0000000000000018,2.0,a-pcom-i3,2017-18,West Springfield - West Springfield High,03320505, 0.6, 1.3, 4.5, 93.6, 0.0, 0.0, 0.0, 66.3, 33.7, 155.8 -1.0625000000000018,1.06,a-pcom-i3,2017-18,West Springfield - West Springfield Middle,03320305, 0.0, 0.0, 2.5, 96.6, 0.0, 0.0, 0.8, 72.5, 27.5, 119.0 -1.0000000000000009,1.0,a-pcom-i3,2017-18,Westborough - Annie E Fales,03210010, 0.0, 1.8, 0.0, 96.8, 0.0, 0.0, 1.4, 98.2, 1.8, 56.4 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Westborough - Elsie A Hastings Elementary,03210025, 1.1, 3.2, 0.0, 95.7, 0.0, 0.0, 0.0, 96.1, 3.9, 88.9 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Westborough - J Harding Armstrong,03210005, 1.7, 3.4, 0.0, 94.9, 0.0, 0.0, 0.0, 96.6, 3.4, 58.7 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Westborough - Mill Pond School,03210045, 0.0, 1.7, 1.7, 95.8, 0.0, 0.0, 0.8, 88.7, 11.3, 117.8 -1,1,a-pcom-i3,2017-18,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 1.4, 1.2, 97.4, 0.0, 0.0, 0.0, 77.1, 22.9, 83.0 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Westborough - Westborough High,03210505, 0.0, 2.2, 0.0, 96.2, 0.8, 0.8, 0.0, 71.5, 28.5, 128.1 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Westfield - Abner Gibbs,03250020, 0.0, 0.6, 3.6, 95.8, 0.0, 0.0, 0.0, 94.3, 5.7, 27.6 -3.687499999999999,3.69,a-pcom-i3,2017-18,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 7.1, 4.7, 88.2, 0.0, 0.0, 0.0, 100.0, 0.0, 42.4 -1.3125000000000009,1.31,a-pcom-i3,2017-18,Westfield - Franklin Ave,03250015, 0.0, 0.6, 0.0, 95.8, 0.0, 0.0, 3.6, 95.8, 4.2, 28.0 -3.28125,3.28,a-pcom-i3,2017-18,Westfield - Highland,03250025, 0.0, 4.5, 4.5, 89.5, 1.5, 0.0, 0.0, 90.2, 9.8, 66.4 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Westfield - Munger Hill,03250033, 1.7, 0.3, 3.4, 94.6, 0.0, 0.0, 0.0, 94.3, 5.7, 58.9 -1,1,a-pcom-i3,2017-18,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.5, 18.5, 84.4 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Westfield - Paper Mill,03250036, 0.0, 0.3, 1.7, 96.4, 0.0, 0.0, 1.7, 97.2, 2.8, 59.9 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Westfield - Russell Elementary School,03250055, 0.0, 0.7, 0.0, 95.2, 0.0, 0.0, 4.1, 97.8, 2.2, 24.4 -1,1,a-pcom-i3,2017-18,Westfield - South Middle School,03250310, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 76.9, 23.1, 83.0 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Westfield - Southampton Road,03250040, 0.0, 0.3, 3.6, 96.1, 0.0, 0.0, 0.0, 96.4, 3.6, 55.7 -1.2187500000000018,1.22,a-pcom-i3,2017-18,Westfield - Westfield High,03250505, 0.6, 1.9, 0.6, 96.1, 0.6, 0.0, 0.0, 76.0, 24.0, 155.4 -1,1,a-pcom-i3,2017-18,Westfield - Westfield Technical Academy,03250605, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 55.2, 44.8, 85.8 -1,1,a-pcom-i3,2017-18,Westford - Abbot Elementary,03260004, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 97.1, 2.9, 47.6 -2.124999999999999,2.12,a-pcom-i3,2017-18,Westford - Blanchard Middle,03260310, 0.0, 5.4, 1.4, 93.2, 0.0, 0.0, 0.0, 89.1, 10.9, 73.5 -1,1,a-pcom-i3,2017-18,Westford - Col John Robinson,03260025, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 95.9, 4.1, 41.5 -1.25,1.25,a-pcom-i3,2017-18,Westford - Day Elementary,03260007, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 90.0, 10.0, 50.1 -1.25,1.25,a-pcom-i3,2017-18,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 96.6, 3.4, 50.4 -2.093750000000001,2.09,a-pcom-i3,2017-18,Westford - Millennium Elementary,03260013, 0.0, 6.7, 0.0, 93.3, 0.0, 0.0, 0.0, 96.7, 3.3, 30.0 -1,1,a-pcom-i3,2017-18,Westford - Nabnasset,03260015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 45.9 -2.5,2.5,a-pcom-i3,2017-18,Westford - Rita E. Miller Elementary School,03260055, 1.6, 5.4, 0.0, 92.0, 0.0, 0.0, 1.0, 97.4, 2.6, 62.7 -1,1,a-pcom-i3,2017-18,Westford - Stony Brook School,03260330, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 80.3, 19.7, 81.6 -1.4374999999999982,1.44,a-pcom-i3,2017-18,Westford - Westford Academy,03260505, 0.0, 2.8, 1.2, 95.4, 0.0, 0.0, 0.6, 61.0, 39.0, 164.8 -1,1,a-pcom-i3,2017-18,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 29.7 -2.0000000000000018,2.0,a-pcom-i3,2017-18,Weston - Country,03300010, 1.5, 0.0, 4.9, 93.6, 0.0, 0.0, 0.0, 84.9, 15.1, 49.3 -2.875000000000001,2.88,a-pcom-i3,2017-18,Weston - Field Elementary School,03300012, 2.2, 6.2, 0.8, 90.8, 0.0, 0.0, 0.0, 86.0, 14.0, 45.0 -4.968750000000002,4.97,a-pcom-i3,2017-18,Weston - Weston High,03300505, 4.4, 5.8, 4.2, 84.1, 0.0, 0.8, 0.7, 63.2, 36.8, 106.0 -4.249999999999998,4.25,a-pcom-i3,2017-18,Weston - Weston Middle,03300305, 5.1, 3.1, 4.0, 86.4, 0.0, 0.0, 1.4, 73.7, 26.3, 75.3 -2.593749999999999,2.59,a-pcom-i3,2017-18,Weston - Woodland,03300015, 1.8, 0.0, 4.9, 91.7, 1.6, 0.0, 0.0, 93.3, 6.7, 44.9 -1,1,a-pcom-i3,2017-18,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 51.0 -1,1,a-pcom-i3,2017-18,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.6, 12.4, 70.9 -1,1,a-pcom-i3,2017-18,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.6, 39.4, 84.9 -1,1,a-pcom-i3,2017-18,Westwood - Deerfield School,03350010, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 92.0, 8.0, 45.2 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Westwood - Downey,03350012, 0.0, 0.6, 4.3, 95.1, 0.0, 0.0, 0.0, 97.6, 2.4, 46.4 -2.5,2.5,a-pcom-i3,2017-18,Westwood - E W Thurston Middle,03350305, 3.0, 2.0, 2.0, 92.0, 0.0, 0.0, 1.0, 70.9, 29.1, 99.6 -1,1,a-pcom-i3,2017-18,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 39.7 -1,1,a-pcom-i3,2017-18,Westwood - Paul Hanlon,03350015, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 90.9, 9.1, 29.9 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Westwood - Westwood High,03350505, 1.5, 0.8, 2.3, 94.7, 0.0, 0.0, 0.8, 65.4, 34.6, 131.6 -1,1,a-pcom-i3,2017-18,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 15.8 -1,1,a-pcom-i3,2017-18,Westwood - William E Sheehan,03350025, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 92.0, 8.0, 43.4 -1,1,a-pcom-i3,2017-18,Weymouth - Abigail Adams Middle School,03360310, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 77.5, 22.5, 108.5 -1,1,a-pcom-i3,2017-18,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 29.6 -1,1,a-pcom-i3,2017-18,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 35.6 -2.281249999999999,2.28,a-pcom-i3,2017-18,Weymouth - Johnson Early Childhood Center,03360003, 2.4, 2.4, 2.4, 92.7, 0.0, 0.0, 0.0, 97.8, 2.2, 41.3 -1,1,a-pcom-i3,2017-18,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 31.4 -1,1,a-pcom-i3,2017-18,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.8, 97.6, 0.8, 0.0, 0.8, 65.6, 34.4, 126.3 -1,1,a-pcom-i3,2017-18,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 30.2 -1.09375,1.09,a-pcom-i3,2017-18,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 90.6, 9.4, 28.3 -1,1,a-pcom-i3,2017-18,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 34.4 -1,1,a-pcom-i3,2017-18,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 35.3 -1,1,a-pcom-i3,2017-18,Weymouth - Weymouth High School,03360505, 0.5, 0.5, 0.6, 98.1, 0.0, 0.0, 0.5, 67.5, 32.5, 215.7 -1,1,a-pcom-i3,2017-18,Weymouth - William Seach,03360080, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 94.2, 5.8, 36.2 -1,1,a-pcom-i3,2017-18,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 28.4 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Whitman-Hanson - Hanson Middle School,07800315, 2.1, 2.1, 0.0, 95.9, 0.0, 0.0, 0.0, 81.1, 18.9, 48.6 -1,1,a-pcom-i3,2017-18,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 41.0 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 5.4, 94.6, 0.0, 0.0, 0.0, 93.3, 6.7, 43.4 -1,1,a-pcom-i3,2017-18,Whitman-Hanson - Louise A Conley,07800010, 1.7, 0.0, 0.7, 97.6, 0.0, 0.0, 0.0, 90.1, 9.9, 50.4 -1,1,a-pcom-i3,2017-18,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 96.9, 3.1, 51.3 -1,1,a-pcom-i3,2017-18,Whitman-Hanson - Whitman Hanson Regional,07800505, 0.9, 0.0, 0.3, 98.8, 0.0, 0.0, 0.0, 67.7, 32.3, 109.4 -1,1,a-pcom-i3,2017-18,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 72.3, 27.7, 54.2 -1,1,a-pcom-i3,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 51.1, 48.9, 137.9 -1,1,a-pcom-i3,2017-18,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 29.7 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Williamstown - Williamstown Elementary,03410010, 0.0, 2.3, 0.0, 96.3, 0.0, 0.0, 1.4, 97.2, 2.8, 70.5 -1,1,a-pcom-i3,2017-18,Wilmington - Boutwell,03420005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 29.7 -1,1,a-pcom-i3,2017-18,Wilmington - North Intermediate,03420060, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 92.5, 7.5, 31.9 -1,1,a-pcom-i3,2017-18,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 92.5, 7.5, 46.4 -1,1,a-pcom-i3,2017-18,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 29.8 -1.09375,1.09,a-pcom-i3,2017-18,Wilmington - Wildwood,03420015, 0.3, 0.0, 0.0, 96.5, 0.0, 0.0, 3.1, 95.0, 5.0, 32.2 -1.6875000000000018,1.69,a-pcom-i3,2017-18,Wilmington - Wilmington High,03420505, 0.6, 1.9, 1.9, 94.6, 1.0, 0.0, 0.0, 74.5, 25.5, 104.5 -1,1,a-pcom-i3,2017-18,Wilmington - Wilmington Middle School,03420330, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 80.3, 19.7, 113.4 -1,1,a-pcom-i3,2017-18,Wilmington - Woburn Street,03420020, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 85.2, 14.8, 42.1 -1,1,a-pcom-i3,2017-18,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.0, 6.0, 41.8 -1,1,a-pcom-i3,2017-18,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 40.6, 59.4, 4.1 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Winchendon - Murdock High School,03430515, 2.6, 0.0, 2.6, 94.7, 0.0, 0.0, 0.0, 73.4, 26.6, 37.8 -1,1,a-pcom-i3,2017-18,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 70.6, 29.4, 27.3 -1,1,a-pcom-i3,2017-18,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 35.5 -2.7812500000000018,2.78,a-pcom-i3,2017-18,Winchendon - Winchendon PreSchool Program,03430010, 8.9, 0.0, 0.0, 91.1, 0.0, 0.0, 0.0, 100.0, 0.0, 11.2 -1.09375,1.09,a-pcom-i3,2017-18,Winchester - Ambrose Elementary,03440045, 1.8, 0.0, 1.8, 96.5, 0.0, 0.0, 0.0, 97.3, 2.7, 56.8 -1,1,a-pcom-i3,2017-18,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 45.8 -1,1,a-pcom-i3,2017-18,Winchester - Lynch Elementary,03440020, 0.0, 1.2, 1.2, 97.7, 0.0, 0.0, 0.0, 93.6, 6.4, 85.4 -1.4999999999999991,1.5,a-pcom-i3,2017-18,Winchester - McCall Middle,03440305, 2.4, 0.0, 2.4, 95.2, 0.0, 0.0, 0.0, 78.4, 21.6, 124.0 -1,1,a-pcom-i3,2017-18,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 55.4 -1.1249999999999982,1.12,a-pcom-i3,2017-18,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 96.4, 0.0, 0.0, 3.6, 94.5, 5.5, 54.5 -1,1,a-pcom-i3,2017-18,Winchester - Winchester High School,03440505, 0.4, 0.0, 0.7, 98.8, 0.0, 0.0, 0.0, 67.3, 32.7, 136.5 -1.1562500000000009,1.16,a-pcom-i3,2017-18,Winthrop - Arthur T. Cummings Elementary School,03460020, 1.9, 1.9, 0.0, 96.3, 0.0, 0.0, 0.0, 87.8, 12.2, 53.5 -1,1,a-pcom-i3,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 94.5, 5.5, 72.5 -1,1,a-pcom-i3,2017-18,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.2, 40.8, 64.2 -1,1,a-pcom-i3,2017-18,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.6, 25.4, 50.5 -1,1,a-pcom-i3,2017-18,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 55.2 -1.2812499999999982,1.28,a-pcom-i3,2017-18,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.2, 2.9, 95.9, 0.0, 0.0, 0.0, 76.6, 23.4, 85.4 -1,1,a-pcom-i3,2017-18,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.1, 0.9, 23.6 -1,1,a-pcom-i3,2017-18,Woburn - Goodyear Elementary School,03470005, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 93.0, 7.0, 45.8 -1,1,a-pcom-i3,2017-18,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 71.9, 28.1, 64.0 -1,1,a-pcom-i3,2017-18,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 24.0 -1,1,a-pcom-i3,2017-18,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 37.4 -1,1,a-pcom-i3,2017-18,Woburn - Mary D Altavesta,03470065, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 91.7, 8.3, 35.1 -1,1,a-pcom-i3,2017-18,Woburn - Shamrock,03470043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 71.6 -1.1874999999999991,1.19,a-pcom-i3,2017-18,Woburn - Woburn High,03470505, 0.6, 0.6, 2.6, 96.2, 0.0, 0.0, 0.0, 63.6, 36.4, 156.1 -1,1,a-pcom-i3,2017-18,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.1, 0.9, 23.2 -2.3749999999999982,2.37,a-pcom-i3,2017-18,Worcester - Belmont Street Community,03480020, 0.0, 1.8, 5.8, 92.4, 0.0, 0.0, 0.0, 91.7, 8.3, 56.0 -4.375,4.38,a-pcom-i3,2017-18,Worcester - Burncoat Middle School,03480405, 4.7, 0.0, 9.4, 86.0, 0.0, 0.0, 0.0, 70.3, 29.7, 74.7 -3.531249999999999,3.53,a-pcom-i3,2017-18,Worcester - Burncoat Senior High,03480503, 3.2, 0.0, 8.1, 88.7, 0.0, 0.0, 0.0, 62.0, 38.0, 124.2 -4.968750000000002,4.97,a-pcom-i3,2017-18,Worcester - Burncoat Street,03480035, 0.0, 0.0, 13.2, 84.1, 0.0, 2.6, 0.0, 93.6, 6.4, 37.8 -3.656250000000001,3.66,a-pcom-i3,2017-18,Worcester - Canterbury,03480045, 2.2, 2.6, 6.8, 88.3, 0.0, 0.0, 0.0, 94.1, 5.9, 45.3 -3.8750000000000018,3.88,a-pcom-i3,2017-18,Worcester - Chandler Elementary Community,03480050, 0.0, 1.2, 11.2, 87.6, 0.0, 0.0, 0.0, 96.7, 3.3, 48.8 -11.687499999999998,5,a-pcom-i3,2017-18,Worcester - Chandler Magnet,03480052, 0.0, 1.4, 34.8, 62.6, 0.0, 1.2, 0.0, 88.2, 11.8, 86.6 -3.5625000000000018,3.56,a-pcom-i3,2017-18,Worcester - City View,03480053, 1.8, 2.1, 7.5, 88.6, 0.0, 0.0, 0.0, 88.8, 11.2, 55.9 -6.968749999999999,5,a-pcom-i3,2017-18,Worcester - Claremont Academy,03480350, 7.4, 1.9, 13.0, 77.7, 0.0, 0.0, 0.0, 65.6, 34.4, 53.7 -2.749999999999999,2.75,a-pcom-i3,2017-18,Worcester - Clark St Community,03480055, 2.7, 2.7, 3.4, 91.2, 0.0, 0.0, 0.0, 88.4, 11.6, 37.0 -1.875,1.88,a-pcom-i3,2017-18,Worcester - Columbus Park,03480060, 3.8, 0.0, 2.1, 94.0, 0.0, 0.0, 0.0, 88.5, 11.5, 51.7 -3.125,3.13,a-pcom-i3,2017-18,Worcester - Doherty Memorial High,03480512, 1.5, 0.0, 8.4, 90.0, 0.0, 0.0, 0.0, 62.0, 38.0, 130.4 -6.25,5,a-pcom-i3,2017-18,Worcester - Elm Park Community,03480095, 7.0, 0.0, 11.3, 80.0, 0.0, 1.7, 0.0, 86.9, 13.1, 57.4 -1,1,a-pcom-i3,2017-18,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 35.8 -4.375,4.38,a-pcom-i3,2017-18,Worcester - Forest Grove Middle,03480415, 6.0, 1.0, 7.1, 86.0, 0.0, 0.0, 0.0, 70.7, 29.3, 100.4 -3.28125,3.28,a-pcom-i3,2017-18,Worcester - Francis J McGrath Elementary,03480177, 0.0, 4.9, 5.6, 89.5, 0.0, 0.0, 0.0, 82.5, 17.5, 28.7 -3.687499999999999,3.69,a-pcom-i3,2017-18,Worcester - Gates Lane,03480110, 4.4, 0.9, 6.5, 88.2, 0.0, 0.0, 0.0, 91.1, 8.9, 113.0 -6.25,5,a-pcom-i3,2017-18,Worcester - Goddard School/Science Technical,03480100, 1.7, 1.6, 16.7, 80.0, 0.0, 0.0, 0.0, 93.2, 6.8, 60.6 -3.999999999999999,4.0,a-pcom-i3,2017-18,Worcester - Grafton Street,03480115, 0.0, 4.6, 8.2, 87.2, 0.0, 0.0, 0.0, 92.7, 7.3, 43.8 -3.843749999999999,3.84,a-pcom-i3,2017-18,Worcester - Head Start,03480002, 3.1, 6.1, 3.1, 87.7, 0.0, 0.0, 0.0, 96.9, 3.1, 32.6 -4.406249999999998,4.41,a-pcom-i3,2017-18,Worcester - Heard Street,03480136, 6.9, 0.0, 3.8, 85.9, 0.0, 3.4, 0.0, 91.0, 9.0, 29.1 -2.65625,2.66,a-pcom-i3,2017-18,Worcester - Jacob Hiatt Magnet,03480140, 0.0, 4.1, 4.3, 91.5, 0.0, 0.0, 0.0, 92.9, 7.1, 43.1 -2.9375000000000018,2.94,a-pcom-i3,2017-18,Worcester - Lake View,03480145, 3.1, 3.1, 3.1, 90.6, 0.0, 0.0, 0.0, 88.8, 11.2, 31.8 -6.749999999999998,5,a-pcom-i3,2017-18,Worcester - Lincoln Street,03480160, 2.9, 2.9, 15.8, 78.4, 0.0, 0.0, 0.0, 94.3, 5.7, 34.7 -3.90625,3.91,a-pcom-i3,2017-18,Worcester - May Street,03480175, 3.1, 6.3, 3.1, 87.5, 0.0, 0.0, 0.0, 85.4, 14.6, 32.0 -2.3125000000000018,2.31,a-pcom-i3,2017-18,Worcester - Midland Street,03480185, 0.0, 3.7, 3.7, 92.6, 0.0, 0.0, 0.0, 98.6, 1.4, 27.0 -2.562500000000001,2.56,a-pcom-i3,2017-18,Worcester - Nelson Place,03480200, 4.5, 0.0, 3.7, 91.8, 0.0, 0.0, 0.0, 96.1, 3.9, 88.5 -5.46875,5,a-pcom-i3,2017-18,Worcester - Norrback Avenue,03480202, 3.5, 0.0, 12.8, 82.5, 0.0, 1.2, 0.0, 96.3, 3.7, 85.9 -8.687499999999998,5,a-pcom-i3,2017-18,Worcester - North High,03480515, 10.7, 2.1, 15.0, 72.2, 0.0, 0.0, 0.0, 59.1, 40.9, 140.3 -5.656249999999998,5,a-pcom-i3,2017-18,Worcester - Quinsigamond,03480210, 2.5, 6.1, 9.5, 81.9, 0.0, 0.0, 0.0, 87.3, 12.7, 78.7 -3.187500000000001,3.19,a-pcom-i3,2017-18,Worcester - Rice Square,03480215, 1.1, 4.5, 4.5, 89.8, 0.0, 0.0, 0.0, 93.3, 6.7, 44.1 -4.406249999999998,4.41,a-pcom-i3,2017-18,Worcester - Roosevelt,03480220, 1.2, 0.0, 13.0, 85.9, 0.0, 0.0, 0.0, 92.3, 7.7, 84.9 -5.343749999999998,5,a-pcom-i3,2017-18,Worcester - South High Community,03480520, 6.7, 0.7, 9.7, 82.9, 0.0, 0.0, 0.0, 75.7, 24.3, 147.2 -6.968749999999999,5,a-pcom-i3,2017-18,Worcester - Sullivan Middle,03480423, 7.1, 0.0, 15.3, 77.7, 0.0, 0.0, 0.0, 73.4, 26.6, 113.3 -2.3125000000000018,2.31,a-pcom-i3,2017-18,Worcester - Tatnuck,03480230, 2.5, 0.0, 4.9, 92.6, 0.0, 0.0, 0.0, 95.1, 4.9, 40.6 -1.3437499999999991,1.34,a-pcom-i3,2017-18,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 93.3, 6.7, 33.6 -5.406249999999999,5,a-pcom-i3,2017-18,Worcester - Union Hill School,03480240, 6.6, 0.0, 10.7, 82.7, 0.0, 0.0, 0.0, 81.4, 18.6, 45.7 -2.6250000000000018,2.63,a-pcom-i3,2017-18,Worcester - University Pk Campus School,03480285, 4.2, 0.0, 4.2, 91.6, 0.0, 0.0, 0.0, 73.1, 26.9, 23.9 -3.343750000000001,3.34,a-pcom-i3,2017-18,Worcester - Vernon Hill School,03480280, 3.5, 1.7, 5.5, 89.3, 0.0, 0.0, 0.0, 88.4, 11.6, 57.8 -1,1,a-pcom-i3,2017-18,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 96.8, 3.2, 27.8 -1.6250000000000009,1.63,a-pcom-i3,2017-18,Worcester - West Tatnuck,03480260, 2.4, 0.0, 2.9, 94.8, 0.0, 0.0, 0.0, 94.5, 5.5, 42.1 -4.031250000000002,4.03,a-pcom-i3,2017-18,Worcester - Woodland Academy,03480030, 1.9, 0.0, 11.0, 87.1, 0.0, 0.0, 0.0, 92.1, 7.9, 51.9 -1.5937499999999982,1.59,a-pcom-i3,2017-18,Worcester - Worcester Arts Magnet School,03480225, 2.6, 0.0, 2.6, 94.9, 0.0, 0.0, 0.0, 95.2, 4.8, 38.9 -8.218749999999998,5,a-pcom-i3,2017-18,Worcester - Worcester East Middle,03480420, 11.7, 4.7, 9.9, 73.7, 0.0, 0.0, 0.0, 64.1, 35.9, 85.6 -1.6562499999999991,1.66,a-pcom-i3,2017-18,Worcester - Worcester Technical High,03480605, 1.7, 1.1, 2.5, 94.7, 0.0, 0.0, 0.0, 48.9, 51.1, 176.8 -1,1,a-pcom-i3,2017-18,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 14.1 -1,1,a-pcom-i3,2017-18,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 56.6 -1.5312500000000018,1.53,a-pcom-i3,2017-18,Wrentham - Delaney,03500003, 0.0, 3.9, 1.0, 95.1, 0.0, 0.0, 0.0, 94.9, 5.1, 97.4 -2.2187499999999982,2.22,a-pcom-i3,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,04450105, 3.0, 0.6, 3.0, 92.9, 0.0, 0.0, 0.6, 80.7, 19.3, 168.5 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Abington - Abington High,00010505, 0.0, 0.8, 3.3, 95.8, 0.0, 0.0, 0.0, 74.4, 25.6, 60.0 -1,1,a-pcom-i3,2016-17,Abington - Beaver Brook Elementary School,00010003, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 96.0, 4.0, 64.2 -1,1,a-pcom-i3,2016-17,Abington - Center Elementary School,00010002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 26.3 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Abington - Frolio Middle School,00010405, 2.5, 1.3, 2.5, 93.7, 0.0, 0.0, 0.0, 75.1, 24.9, 39.7 -1,1,a-pcom-i3,2016-17,Abington - Woodsdale Elementary School,00010015, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 88.0, 12.0, 35.9 -8.062499999999998,5,a-pcom-i3,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,04120530, 16.3, 2.0, 4.2, 74.2, 0.0, 0.0, 3.3, 66.8, 33.2, 61.2 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,06000505, 1.1, 3.8, 0.0, 94.6, 0.5, 0.0, 0.0, 73.2, 26.8, 189.6 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Acton-Boxborough - Blanchard Memorial School,06000005, 0.0, 3.9, 1.5, 94.6, 0.0, 0.0, 0.0, 88.5, 11.5, 67.6 -1,1,a-pcom-i3,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,06000020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 57.2 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,06000001, 0.0, 5.1, 0.0, 94.9, 0.0, 0.0, 0.0, 96.2, 3.8, 26.3 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Acton-Boxborough - Luther Conant School,06000030, 0.0, 4.1, 0.0, 95.9, 0.0, 0.0, 0.0, 94.1, 5.9, 64.2 -1,1,a-pcom-i3,2016-17,Acton-Boxborough - McCarthy-Towne School,06000015, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 93.6, 6.4, 63.1 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Acton-Boxborough - Merriam School,06000010, 1.3, 2.9, 0.0, 95.8, 0.0, 0.0, 0.0, 94.9, 5.1, 78.9 -1.8437500000000018,1.84,a-pcom-i3,2016-17,Acton-Boxborough - Paul P Gates Elementary School,06000025, 0.0, 5.9, 0.0, 94.1, 0.0, 0.0, 0.0, 93.1, 6.9, 54.8 -1,1,a-pcom-i3,2016-17,Acton-Boxborough - Raymond J Grey Junior High,06000405, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 80.8, 19.2, 100.4 -1,1,a-pcom-i3,2016-17,Acushnet - Acushnet Elementary School,00030025, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 95.4, 4.6, 65.4 -1,1,a-pcom-i3,2016-17,Acushnet - Albert F Ford Middle School,00030305, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 78.2, 21.8, 49.2 -1,1,a-pcom-i3,2016-17,Adams-Cheshire - Cheshire Elementary,06030004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 39.1 -1,1,a-pcom-i3,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,06030505, 0.0, 0.0, 0.0, 98.7, 0.0, 1.3, 0.0, 68.5, 31.5, 78.6 -1,1,a-pcom-i3,2016-17,Adams-Cheshire - Plunkett Elementary,06030020, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 88.4, 11.6, 70.6 -3.500000000000001,3.5,a-pcom-i3,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,04300305, 0.0, 4.7, 2.8, 88.8, 0.0, 0.0, 3.7, 58.7, 41.3, 108.1 -1,1,a-pcom-i3,2016-17,Agawam - Agawam Early Childhood Center,00050003, 0.5, 0.0, 0.0, 99.5, 0.0, 0.0, 0.0, 99.7, 0.3, 44.3 -1,1,a-pcom-i3,2016-17,Agawam - Agawam High,00050505, 0.1, 0.0, 1.4, 98.5, 0.0, 0.0, 0.0, 67.7, 32.3, 144.6 -1,1,a-pcom-i3,2016-17,Agawam - Agawam Junior High,00050405, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 75.3, 24.7, 85.4 -1,1,a-pcom-i3,2016-17,Agawam - Benjamin J Phelps,00050020, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 97.0, 3.0, 53.6 -1,1,a-pcom-i3,2016-17,Agawam - Clifford M Granger,00050010, 0.2, 0.0, 1.8, 97.9, 0.0, 0.0, 0.0, 90.7, 9.3, 54.8 -1,1,a-pcom-i3,2016-17,Agawam - James Clark School,00050030, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 96.4, 3.6, 59.4 -2.718750000000001,2.72,a-pcom-i3,2016-17,Agawam - Roberta G. Doering School,00050303, 7.5, 0.0, 1.2, 91.3, 0.0, 0.0, 0.0, 82.8, 17.2, 82.1 -1,1,a-pcom-i3,2016-17,Agawam - Robinson Park,00050025, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 94.5, 5.5, 65.8 -7.96875,5,a-pcom-i3,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,04090205, 7.7, 0.0, 12.8, 74.5, 0.0, 2.6, 2.6, 76.9, 23.1, 39.2 -1,1,a-pcom-i3,2016-17,Amesbury - Amesbury Elementary,00070005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 59.8 -1,1,a-pcom-i3,2016-17,Amesbury - Amesbury High,00070505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 68.4, 31.6, 69.7 -1,1,a-pcom-i3,2016-17,Amesbury - Amesbury Innovation High School,00070515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 41.2, 58.8, 8.5 -1,1,a-pcom-i3,2016-17,Amesbury - Amesbury Middle,00070013, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 72.1, 27.9, 80.6 -1,1,a-pcom-i3,2016-17,Amesbury - Charles C Cashman Elementary,00070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 62.0 -4.031250000000002,4.03,a-pcom-i3,2016-17,Amherst - Crocker Farm Elementary,00080009, 2.2, 0.0, 7.3, 87.1, 0.0, 0.0, 3.4, 89.8, 10.2, 89.1 -4.375,4.38,a-pcom-i3,2016-17,Amherst - Fort River Elementary,00080020, 1.2, 3.6, 9.1, 86.0, 0.0, 0.0, 0.0, 79.3, 20.7, 82.4 -9.968750000000002,5,a-pcom-i3,2016-17,Amherst - Wildwood Elementary,00080050, 14.2, 4.7, 9.4, 68.1, 0.0, 0.0, 3.5, 79.8, 20.2, 84.8 -4.718749999999998,4.72,a-pcom-i3,2016-17,Amherst-Pelham - Amherst Regional High,06050505, 5.5, 1.2, 6.4, 84.9, 0.0, 0.0, 1.9, 65.0, 35.0, 161.4 -7.34375,5,a-pcom-i3,2016-17,Amherst-Pelham - Amherst Regional Middle School,06050405, 9.0, 0.0, 10.6, 76.5, 0.0, 0.0, 3.9, 69.5, 30.5, 77.4 -2.1562500000000018,2.16,a-pcom-i3,2016-17,Andover - Andover High,00090505, 0.5, 1.5, 4.0, 93.1, 0.0, 0.4, 0.5, 70.0, 30.0, 199.6 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Andover - Andover West Middle,00090310, 0.0, 1.5, 2.9, 95.6, 0.0, 0.0, 0.0, 82.1, 17.9, 68.2 -1.71875,1.72,a-pcom-i3,2016-17,Andover - Bancroft Elementary,00090003, 1.2, 3.5, 0.8, 94.5, 0.0, 0.0, 0.0, 93.3, 6.7, 83.6 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Andover - Doherty Middle,00090305, 0.0, 3.9, 1.3, 94.8, 0.0, 0.0, 0.0, 84.3, 15.7, 75.8 -1,1,a-pcom-i3,2016-17,Andover - Henry C Sanborn Elementary,00090010, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 91.9, 8.1, 48.8 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Andover - High Plain Elementary,00090004, 0.0, 3.6, 1.2, 95.2, 0.0, 0.0, 0.0, 95.6, 4.4, 84.3 -2.6874999999999982,2.69,a-pcom-i3,2016-17,Andover - Shawsheen School,00090005, 0.0, 2.7, 5.9, 91.4, 0.0, 0.0, 0.0, 91.8, 8.2, 30.8 -1,1,a-pcom-i3,2016-17,Andover - South Elementary,00090020, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 94.6, 5.4, 71.7 -1,1,a-pcom-i3,2016-17,Andover - West Elementary,00090025, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 89.7, 10.3, 101.1 -1,1,a-pcom-i3,2016-17,Andover - Wood Hill Middle School,00090350, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 80.6, 19.4, 65.5 -3.90625,3.91,a-pcom-i3,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305, 9.3, 3.1, 0.0, 87.5, 0.0, 0.0, 0.0, 68.8, 31.2, 32.1 -2.593749999999999,2.59,a-pcom-i3,2016-17,Arlington - Arlington High,00100505, 0.7, 2.1, 5.5, 91.7, 0.0, 0.0, 0.0, 60.0, 40.0, 145.2 -5.78125,5,a-pcom-i3,2016-17,Arlington - Brackett,00100010, 0.0, 1.8, 12.9, 81.5, 0.0, 1.8, 1.8, 95.4, 4.6, 54.1 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Arlington - Cyrus E Dallin,00100025, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 86.7, 13.3, 55.3 -2.3125000000000018,2.31,a-pcom-i3,2016-17,Arlington - Hardy,00100030, 0.0, 4.3, 3.0, 92.6, 0.0, 0.0, 0.0, 96.8, 3.2, 49.3 -3.59375,3.59,a-pcom-i3,2016-17,Arlington - John A Bishop,00100005, 4.6, 0.0, 6.9, 88.5, 0.0, 0.0, 0.0, 90.4, 9.6, 43.3 -2.03125,2.03,a-pcom-i3,2016-17,Arlington - M Norcross Stratton,00100055, 0.0, 0.0, 6.5, 93.5, 0.0, 0.0, 0.0, 89.2, 10.8, 61.1 -3.28125,3.28,a-pcom-i3,2016-17,Arlington - Menotomy Preschool,00100038, 0.0, 3.5, 3.5, 89.5, 0.0, 0.0, 3.5, 100.0, 0.0, 28.5 -3.7812499999999982,3.78,a-pcom-i3,2016-17,Arlington - Ottoson Middle,00100410, 0.7, 2.9, 6.4, 87.9, 0.0, 0.0, 2.2, 76.3, 23.7, 138.6 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Arlington - Peirce,00100045, 2.8, 2.8, 0.0, 94.4, 0.0, 0.0, 0.0, 97.2, 2.8, 35.8 -3.687499999999999,3.69,a-pcom-i3,2016-17,Arlington - Thompson,00100050, 2.0, 2.8, 6.0, 88.2, 0.0, 0.0, 1.0, 97.5, 2.5, 50.0 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Ashburnham-Westminster - Briggs Elementary,06100025, 1.4, 0.0, 0.3, 96.2, 0.0, 0.0, 2.1, 88.0, 12.0, 71.8 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Ashburnham-Westminster - Meetinghouse School,06100010, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 96.3, 3.7, 24.8 -1,1,a-pcom-i3,2016-17,Ashburnham-Westminster - Oakmont Regional High School,06100505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 58.2, 41.8, 72.8 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Ashburnham-Westminster - Overlook Middle School,06100305, 1.7, 0.0, 0.3, 96.2, 0.0, 0.0, 1.7, 79.1, 20.9, 58.5 -2.6874999999999982,2.69,a-pcom-i3,2016-17,Ashburnham-Westminster - Westminster Elementary,06100005, 2.7, 0.0, 5.9, 91.4, 0.0, 0.0, 0.0, 90.6, 9.4, 37.3 -1,1,a-pcom-i3,2016-17,Ashland - Ashland High,00140505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.1, 33.9, 79.7 -1,1,a-pcom-i3,2016-17,Ashland - Ashland Middle,00140405, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 69.1, 30.9, 69.2 -1,1,a-pcom-i3,2016-17,Ashland - David Mindess,00140015, 1.4, 0.0, 0.0, 97.2, 0.0, 1.4, 0.0, 88.6, 11.4, 71.1 -1,1,a-pcom-i3,2016-17,Ashland - Henry E Warren Elementary,00140010, 0.3, 0.0, 0.0, 98.4, 0.0, 1.3, 0.0, 98.7, 1.3, 76.0 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Ashland - William Pittaway Elementary,00140005, 0.0, 3.6, 0.0, 96.4, 0.0, 0.0, 0.0, 100.0, 0.0, 28.0 -1,1,a-pcom-i3,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,08010605, 0.7, 0.0, 0.0, 99.3, 0.0, 0.0, 0.0, 49.8, 50.2, 150.5 -1,1,a-pcom-i3,2016-17,Athol-Royalston - Athol Community Elementary School,06150020, 0.7, 0.0, 0.0, 99.3, 0.0, 0.0, 0.0, 90.3, 9.7, 69.1 -1,1,a-pcom-i3,2016-17,Athol-Royalston - Athol High,06150505, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 71.7, 28.3, 49.5 -1,1,a-pcom-i3,2016-17,Athol-Royalston - Athol-Royalston Middle School,06150305, 0.0, 0.0, 0.0, 97.8, 2.2, 0.0, 0.0, 75.7, 24.3, 45.2 -1.5625,1.56,a-pcom-i3,2016-17,Athol-Royalston - Royalston Community School,06150050, 5.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 93.5, 6.5, 19.9 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Atlantis Charter (District) - Atlantis Charter School,04910550, 1.2, 1.2, 1.4, 96.2, 0.0, 0.0, 0.0, 85.6, 14.4, 162.8 -1,1,a-pcom-i3,2016-17,Attleboro - A. Irvin Studley Elementary School,00160001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 50.1 -7.718750000000001,5,a-pcom-i3,2016-17,Attleboro - Attleboro Community Academy,00160515, 0.0, 0.0, 24.7, 75.3, 0.0, 0.0, 0.0, 76.0, 24.0, 5.0 -1,1,a-pcom-i3,2016-17,Attleboro - Attleboro High,00160505, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 68.4, 31.6, 177.8 -1,1,a-pcom-i3,2016-17,Attleboro - Cyril K. Brennan Middle School,00160315, 0.0, 0.0, 0.0, 99.1, 0.0, 0.0, 0.9, 84.5, 15.5, 53.3 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Attleboro - Early Learning Center,00160008, 0.0, 0.0, 0.0, 96.6, 0.0, 0.0, 3.4, 99.7, 0.3, 29.3 -1,1,a-pcom-i3,2016-17,Attleboro - Hill-Roberts Elementary School,00160045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.4, 3.6, 38.7 -1,1,a-pcom-i3,2016-17,Attleboro - Hyman Fine Elementary School,00160040, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 93.0, 7.0, 38.7 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Attleboro - Peter Thacher Elementary School,00160050, 0.0, 1.6, 0.0, 95.2, 0.0, 0.0, 3.2, 97.3, 2.7, 62.7 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Attleboro - Robert J. Coelho Middle School,00160305, 3.3, 0.0, 1.8, 94.9, 0.0, 0.0, 0.0, 76.4, 23.6, 55.2 -1,1,a-pcom-i3,2016-17,Attleboro - Thomas Willett Elementary School,00160035, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 94.9, 5.1, 39.7 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Attleboro - Wamsutta Middle School,00160320, 0.0, 0.0, 2.0, 94.9, 2.0, 0.0, 1.0, 74.0, 26.0, 48.9 -1,1,a-pcom-i3,2016-17,Auburn - Auburn Middle,00170305, 0.0, 1.5, 1.5, 97.1, 0.0, 0.0, 0.0, 77.4, 22.6, 68.7 -1,1,a-pcom-i3,2016-17,Auburn - Auburn Senior High,00170505, 1.1, 0.5, 1.0, 97.4, 0.0, 0.0, 0.0, 72.8, 27.2, 101.9 -1,1,a-pcom-i3,2016-17,Auburn - Bryn Mawr,00170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.6, 0.4, 42.1 -1,1,a-pcom-i3,2016-17,Auburn - Pakachoag School,00170025, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 100.0, 0.0, 35.5 -1,1,a-pcom-i3,2016-17,Auburn - Swanson Road Intermediate School,00170030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.6, 5.4, 70.5 -3.187500000000001,3.19,a-pcom-i3,2016-17,Avon - Avon Middle High School,00180510, 4.1, 4.1, 2.0, 89.8, 0.0, 0.0, 0.0, 71.3, 28.7, 48.9 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Avon - Ralph D Butler,00180010, 2.1, 0.0, 0.0, 95.8, 0.0, 0.0, 2.1, 93.7, 6.3, 47.9 -2.1562500000000018,2.16,a-pcom-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,06160505, 3.3, 0.0, 3.6, 93.1, 0.0, 0.0, 0.0, 59.4, 40.6, 61.1 -3.2500000000000018,3.25,a-pcom-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,06160305, 1.8, 0.0, 6.8, 89.6, 0.0, 0.0, 1.8, 76.7, 23.3, 55.8 -1,1,a-pcom-i3,2016-17,Ayer Shirley School District - Lura A. White Elementary School,06160001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.3, 3.7, 53.5 -1,1,a-pcom-i3,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,06160002, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 90.1, 9.9, 70.7 -1.71875,1.72,a-pcom-i3,2016-17,Barnstable - Barnstable High,00200505, 1.8, 0.9, 2.3, 94.5, 0.0, 0.0, 0.5, 66.5, 33.5, 219.9 -1,1,a-pcom-i3,2016-17,Barnstable - Barnstable Intermediate School,00200315, 0.0, 1.0, 1.6, 97.4, 0.0, 0.0, 0.0, 83.4, 16.6, 102.3 -1,1,a-pcom-i3,2016-17,Barnstable - Barnstable United Elementary School,00200050, 0.7, 0.0, 0.0, 99.3, 0.0, 0.0, 0.0, 90.3, 9.7, 102.6 -1,1,a-pcom-i3,2016-17,Barnstable - Centerville Elementary,00200010, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 91.0, 9.0, 44.1 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Barnstable - Enoch Cobb Early Learning Center,00200001, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 100.0, 0.0, 30.8 -2.124999999999999,2.12,a-pcom-i3,2016-17,Barnstable - Hyannis West Elementary,00200025, 1.7, 3.4, 1.7, 93.2, 0.0, 0.0, 0.0, 96.6, 3.4, 58.6 -1,1,a-pcom-i3,2016-17,Barnstable - West Barnstable Elementary,00200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 36.0 -1,1,a-pcom-i3,2016-17,Barnstable - West Villages Elementary School,00200045, 0.0, 0.0, 0.0, 99.1, 0.9, 0.0, 0.0, 98.5, 1.5, 65.9 -1,1,a-pcom-i3,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,04270010, 0.0, 0.0, 0.0, 98.6, 1.4, 0.0, 0.0, 97.1, 2.9, 36.2 -9.0625,5,a-pcom-i3,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405, 19.5, 0.0, 7.1, 71.0, 2.4, 0.0, 0.0, 53.3, 46.7, 42.2 -2.250000000000001,2.25,a-pcom-i3,2016-17,Bedford - Bedford High,00230505, 1.6, 1.6, 3.1, 92.8, 0.0, 0.0, 0.8, 69.7, 30.3, 122.3 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Bedford - John Glenn Middle,00230305, 1.2, 0.0, 2.7, 96.1, 0.0, 0.0, 0.0, 73.3, 26.7, 81.8 -2.7812500000000018,2.78,a-pcom-i3,2016-17,Bedford - Lt Elezer Davis,00230010, 4.4, 1.2, 2.1, 91.1, 0.0, 0.0, 1.2, 89.9, 10.1, 84.5 -2.093750000000001,2.09,a-pcom-i3,2016-17,Bedford - Lt Job Lane School,00230012, 0.4, 1.5, 1.9, 93.3, 0.0, 0.0, 2.9, 87.5, 12.5, 68.9 -1,1,a-pcom-i3,2016-17,Belchertown - Belchertown High,00240505, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 69.9, 30.1, 77.8 -1,1,a-pcom-i3,2016-17,Belchertown - Chestnut Hill Community School,00240006, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 81.8, 18.2, 62.5 -1,1,a-pcom-i3,2016-17,Belchertown - Cold Spring,00240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 34.3 -1,1,a-pcom-i3,2016-17,Belchertown - Jabish Middle School,00240025, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 79.2, 20.8, 50.0 -1,1,a-pcom-i3,2016-17,Belchertown - Swift River Elementary,00240018, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.2, 7.8, 56.3 -1,1,a-pcom-i3,2016-17,Bellingham - Bellingham Early Childhood Center,00250003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 21.5 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Bellingham - Bellingham High School,00250505, 1.1, 2.3, 0.0, 96.6, 0.0, 0.0, 0.0, 70.6, 29.4, 87.6 -1,1,a-pcom-i3,2016-17,Bellingham - Bellingham Memorial School,00250315, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 77.6, 22.4, 84.7 -1,1,a-pcom-i3,2016-17,Bellingham - Keough Memorial Academy,00250510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 54.1, 45.9, 15.0 -1,1,a-pcom-i3,2016-17,Bellingham - South Elementary,00250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 53.5 -1,1,a-pcom-i3,2016-17,Bellingham - Stall Brook,00250025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.5, 3.5, 56.7 -2.124999999999999,2.12,a-pcom-i3,2016-17,Belmont - Belmont High,00260505, 0.9, 3.0, 1.9, 93.2, 0.0, 0.0, 0.9, 69.9, 30.1, 106.4 -3.656250000000001,3.66,a-pcom-i3,2016-17,Belmont - Daniel Butler,00260015, 0.0, 2.5, 0.0, 88.3, 0.0, 0.0, 9.2, 90.6, 9.4, 39.4 -2.718750000000001,2.72,a-pcom-i3,2016-17,Belmont - Mary Lee Burbank,00260010, 2.2, 0.0, 2.5, 91.3, 0.0, 0.0, 4.0, 89.6, 10.4, 40.4 -1,1,a-pcom-i3,2016-17,Belmont - Roger E Wellington,00260035, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 89.7, 10.3, 75.7 -1.09375,1.09,a-pcom-i3,2016-17,Belmont - Winn Brook,00260005, 0.0, 1.7, 1.7, 96.5, 0.0, 0.0, 0.0, 98.1, 1.9, 52.2 -4.156249999999999,4.16,a-pcom-i3,2016-17,Belmont - Winthrop L Chenery Middle,00260305, 4.1, 4.1, 0.8, 86.7, 0.0, 0.0, 4.4, 74.7, 25.3, 123.1 -15.718749999999998,5,a-pcom-i3,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,04200205, 39.6, 3.6, 5.4, 49.7, 0.0, 0.0, 1.8, 86.1, 13.9, 56.0 -1,1,a-pcom-i3,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,04470205, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 88.6, 11.4, 61.5 -3.28125,3.28,a-pcom-i3,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205, 3.5, 3.5, 3.5, 89.5, 0.0, 0.0, 0.0, 84.3, 15.7, 57.3 -1,1,a-pcom-i3,2016-17,Berkley - Berkley Community School,00270010, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 97.7, 2.3, 65.0 -1,1,a-pcom-i3,2016-17,Berkley - Berkley Middle School,00270305, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 80.6, 19.4, 43.8 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,04140305, 1.8, 0.0, 1.8, 96.4, 0.0, 0.0, 0.0, 74.1, 25.9, 56.0 -1,1,a-pcom-i3,2016-17,Berkshire Hills - Monument Mt Regional High,06180505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.6, 35.4, 69.7 -1.5625,1.56,a-pcom-i3,2016-17,Berkshire Hills - Monument Valley Regional Middle School,06180310, 1.9, 1.9, 0.0, 95.0, 0.0, 0.0, 1.3, 71.1, 28.9, 53.8 -1,1,a-pcom-i3,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,06180035, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.1, 94.2, 5.8, 68.9 -1,1,a-pcom-i3,2016-17,Berlin - Berlin Memorial,00280005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 31.2 -1,1,a-pcom-i3,2016-17,Berlin-Boylston - Tahanto Regional High,06200505, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 69.7, 30.3, 66.6 -1,1,a-pcom-i3,2016-17,Beverly - Ayers/Ryal Side School,00300055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 63.3 -1,1,a-pcom-i3,2016-17,Beverly - Beverly High,00300505, 1.4, 0.0, 1.4, 97.2, 0.0, 0.0, 0.0, 70.2, 29.8, 142.2 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Beverly - Briscoe Middle,00300305, 0.0, 0.8, 2.5, 96.6, 0.0, 0.0, 0.0, 77.6, 22.4, 119.0 -1,1,a-pcom-i3,2016-17,Beverly - Centerville Elementary,00300010, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 90.2, 9.8, 48.0 -1,1,a-pcom-i3,2016-17,Beverly - Cove Elementary,00300015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 67.0 -1,1,a-pcom-i3,2016-17,Beverly - Hannah Elementary,00300033, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 45.7 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Beverly - McKeown School,00300002, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 100.0, 0.0, 29.7 -1,1,a-pcom-i3,2016-17,Beverly - North Beverly Elementary,00300040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 52.9 -1,1,a-pcom-i3,2016-17,Billerica - Billerica Memorial High School,00310505, 1.8, 0.6, 0.0, 97.6, 0.0, 0.0, 0.0, 75.0, 25.0, 169.5 -1,1,a-pcom-i3,2016-17,Billerica - Eugene C Vining,00310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 31.5 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Billerica - Frederick J Dutile,00310007, 0.0, 2.6, 1.3, 96.2, 0.0, 0.0, 0.0, 96.0, 4.0, 39.0 -1,1,a-pcom-i3,2016-17,Billerica - Hajjar Elementary,00310026, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 95.3, 4.7, 59.7 -1,1,a-pcom-i3,2016-17,Billerica - John F Kennedy,00310012, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 91.1, 8.9, 40.2 -1,1,a-pcom-i3,2016-17,Billerica - Locke Middle,00310310, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 79.6, 20.4, 67.8 -1,1,a-pcom-i3,2016-17,Billerica - Marshall Middle School,00310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.5, 25.5, 85.2 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Billerica - Parker,00310015, 2.6, 0.0, 0.0, 96.1, 0.0, 0.0, 1.3, 94.5, 5.5, 76.0 -1,1,a-pcom-i3,2016-17,Billerica - Thomas Ditson,00310005, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 98.6, 1.4, 70.6 -1,1,a-pcom-i3,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,08050605, 0.0, 0.6, 0.9, 98.5, 0.0, 0.0, 0.0, 57.8, 42.2, 154.4 -1,1,a-pcom-i3,2016-17,Blackstone-Millville - A F Maloney,06220015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 33.6 -1.09375,1.09,a-pcom-i3,2016-17,Blackstone-Millville - Blackstone Millville RHS,06220505, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 67.0, 33.0, 57.6 -1,1,a-pcom-i3,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,06220405, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 77.8, 22.2, 48.6 -1,1,a-pcom-i3,2016-17,Blackstone-Millville - John F Kennedy Elementary,06220008, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 96.9, 3.1, 39.7 -1,1,a-pcom-i3,2016-17,Blackstone-Millville - Millville Elementary,06220010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 40.5 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,08060605, 1.7, 0.8, 1.7, 95.8, 0.0, 0.0, 0.0, 50.8, 49.2, 119.0 -12.1875,5,a-pcom-i3,2016-17,Boston - Another Course To College,00350541, 19.4, 7.9, 7.9, 61.0, 0.0, 0.0, 3.9, 64.7, 35.3, 25.4 -20.84375,5,a-pcom-i3,2016-17,Boston - Baldwin Early Learning Center,00350003, 24.0, 10.7, 26.7, 33.3, 0.0, 0.0, 5.3, 94.7, 5.3, 37.5 -8.875000000000002,5,a-pcom-i3,2016-17,Boston - Beethoven,00350021, 11.4, 2.8, 14.2, 71.6, 0.0, 0.0, 0.0, 85.6, 14.4, 35.2 -14.5625,5,a-pcom-i3,2016-17,Boston - Blackstone,00350390, 20.8, 3.9, 19.2, 53.4, 0.0, 0.0, 2.6, 82.1, 17.9, 76.4 -22.8125,5,a-pcom-i3,2016-17,Boston - Boston Adult Academy,00350548, 45.9, 11.6, 7.7, 27.0, 0.0, 3.8, 3.9, 57.7, 42.3, 26.1 -17.53125,5,a-pcom-i3,2016-17,Boston - Boston Arts Academy,00350546, 26.4, 10.5, 17.5, 43.9, 0.0, 0.0, 1.8, 61.5, 38.5, 56.8 -21.812499999999996,5,a-pcom-i3,2016-17,Boston - Boston Collaborative High School,00350755, 49.7, 10.1, 10.1, 30.2, 0.0, 0.0, 0.0, 39.6, 60.4, 9.9 -15.406249999999998,5,a-pcom-i3,2016-17,Boston - Boston Community Leadership Academy,00350558, 21.1, 7.0, 21.1, 50.7, 0.0, 0.0, 0.0, 68.3, 31.7, 56.8 -14.187499999999998,5,a-pcom-i3,2016-17,Boston - Boston International High School,00350507, 22.2, 6.3, 16.9, 54.6, 0.0, 0.0, 0.0, 64.3, 35.7, 47.4 -9.84375,5,a-pcom-i3,2016-17,Boston - Boston Latin,00350560, 16.4, 7.5, 6.2, 68.5, 0.0, 0.7, 0.7, 58.8, 41.2, 145.8 -13.65625,5,a-pcom-i3,2016-17,Boston - Boston Latin Academy,00350545, 19.5, 9.8, 10.5, 56.3, 0.0, 0.0, 3.9, 61.3, 38.7, 102.8 -16.0625,5,a-pcom-i3,2016-17,Boston - Boston Teachers Union School,00350012, 24.3, 9.1, 15.0, 48.6, 0.0, 0.0, 3.1, 81.8, 18.2, 33.0 -13.65625,5,a-pcom-i3,2016-17,Boston - Brighton High,00350505, 27.9, 2.3, 11.3, 56.3, 0.0, 0.0, 2.3, 63.6, 36.4, 88.7 -18.374999999999996,5,a-pcom-i3,2016-17,Boston - Carter Developmental Center,00350036, 47.1, 0.0, 5.9, 41.2, 0.0, 0.0, 5.9, 82.4, 17.6, 17.0 -22.5625,5,a-pcom-i3,2016-17,Boston - Charles H Taylor,00350054, 65.9, 2.4, 3.9, 27.8, 0.0, 0.0, 0.0, 91.8, 8.2, 50.7 -14.624999999999998,5,a-pcom-i3,2016-17,Boston - Charles Sumner,00350052, 23.3, 1.6, 21.9, 53.2, 0.0, 0.0, 0.0, 92.1, 7.9, 64.4 -14.28125,5,a-pcom-i3,2016-17,Boston - Charlestown High,00350515, 23.0, 12.9, 8.9, 54.3, 0.9, 0.0, 0.0, 64.8, 35.2, 112.5 -14.75,5,a-pcom-i3,2016-17,Boston - Clarence R Edwards Middle,00350430, 20.2, 11.3, 11.2, 52.8, 2.2, 0.0, 2.2, 59.6, 40.4, 44.6 -21.53125,5,a-pcom-i3,2016-17,Boston - Community Academy,00350518, 50.1, 0.0, 12.5, 31.1, 6.3, 0.0, 0.0, 49.8, 50.2, 15.9 -18.218749999999996,5,a-pcom-i3,2016-17,Boston - Community Academy of Science and Health,00350581, 43.7, 4.1, 10.4, 41.7, 0.0, 0.0, 0.0, 68.7, 31.3, 48.0 -15.375,5,a-pcom-i3,2016-17,Boston - Curley K-8 School,00350020, 20.8, 2.7, 23.0, 50.8, 1.8, 0.0, 0.9, 91.9, 8.1, 110.5 -6.531250000000002,5,a-pcom-i3,2016-17,Boston - Curtis Guild,00350062, 9.0, 3.0, 5.9, 79.1, 0.0, 0.0, 3.0, 81.6, 18.4, 33.6 -8.468749999999998,5,a-pcom-i3,2016-17,Boston - Dante Alighieri Montessori School,00350066, 3.5, 0.0, 15.8, 72.9, 0.0, 0.0, 7.9, 88.7, 11.3, 12.7 -26.09375,5,a-pcom-i3,2016-17,Boston - David A Ellis,00350072, 50.3, 2.3, 26.3, 16.5, 4.6, 0.0, 0.0, 78.9, 21.1, 43.7 -19.90625,5,a-pcom-i3,2016-17,Boston - Dearborn,00350074, 46.6, 5.2, 7.8, 36.3, 0.0, 0.0, 4.1, 71.4, 28.6, 38.6 -8.8125,5,a-pcom-i3,2016-17,Boston - Dennis C Haley,00350077, 18.7, 4.7, 2.3, 71.8, 0.0, 0.0, 2.4, 81.4, 18.6, 42.4 -8.75,5,a-pcom-i3,2016-17,Boston - Donald Mckay,00350080, 7.4, 1.9, 14.9, 72.0, 0.0, 0.0, 3.9, 73.9, 26.1, 54.2 -15.78125,5,a-pcom-i3,2016-17,Boston - Dorchester Academy,00350651, 30.3, 0.0, 15.2, 49.5, 0.0, 0.0, 5.1, 49.5, 50.5, 19.8 -19.28125,5,a-pcom-i3,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,00350008, 44.0, 3.0, 14.8, 38.3, 0.0, 0.0, 0.0, 85.4, 14.6, 33.9 -10.750000000000002,5,a-pcom-i3,2016-17,Boston - Dr. William Henderson Lower,00350266, 26.1, 0.0, 2.8, 65.6, 0.0, 0.0, 5.5, 82.9, 17.1, 36.4 -11.25,5,a-pcom-i3,2016-17,Boston - Dr. William Henderson Upper,00350426, 19.5, 6.2, 4.2, 64.0, 0.0, 2.1, 4.1, 67.0, 33.0, 48.1 -15.281249999999998,5,a-pcom-i3,2016-17,Boston - ELC - West Zone,00350006, 27.7, 0.0, 8.5, 51.1, 8.5, 0.0, 4.3, 97.9, 2.1, 23.5 -15.375,5,a-pcom-i3,2016-17,Boston - East Boston Early Childhood Center,00350009, 13.9, 5.2, 27.4, 50.8, 0.0, 2.6, 0.0, 86.9, 13.1, 38.1 -8.999999999999998,5,a-pcom-i3,2016-17,Boston - East Boston High,00350530, 9.8, 3.8, 13.7, 71.2, 0.0, 0.0, 1.5, 65.6, 34.4, 131.3 -12.624999999999998,5,a-pcom-i3,2016-17,Boston - Edison K-8,00350375, 21.3, 7.5, 8.9, 59.6, 0.0, 0.0, 2.7, 77.4, 22.6, 74.8 -9.53125,5,a-pcom-i3,2016-17,Boston - Edward Everett,00350088, 17.9, 7.2, 5.4, 69.5, 0.0, 0.0, 0.0, 89.2, 10.8, 27.8 -10.84375,5,a-pcom-i3,2016-17,Boston - Eliot Elementary,00350096, 13.9, 5.2, 13.9, 65.3, 0.0, 0.0, 1.7, 92.7, 7.3, 57.4 -9.90625,5,a-pcom-i3,2016-17,Boston - Ellis Mendell,00350100, 7.9, 0.0, 19.8, 68.3, 0.0, 0.0, 4.0, 94.4, 5.6, 25.2 -16.90625,5,a-pcom-i3,2016-17,Boston - Excel High School,00350522, 32.0, 10.2, 10.2, 45.9, 1.7, 0.0, 0.0, 66.0, 34.0, 58.8 -17.437499999999996,5,a-pcom-i3,2016-17,Boston - Fenway High School,00350540, 34.5, 5.3, 13.3, 44.2, 0.0, 0.0, 2.7, 57.5, 42.5, 37.3 -10.625,5,a-pcom-i3,2016-17,Boston - Franklin D Roosevelt,00350116, 22.2, 2.3, 7.1, 66.0, 0.0, 0.0, 2.4, 90.6, 9.4, 42.4 -15.3125,5,a-pcom-i3,2016-17,Boston - Gardner Pilot Academy,00350326, 24.6, 4.9, 19.6, 51.0, 0.0, 0.0, 0.0, 87.6, 12.4, 41.0 -10.46875,5,a-pcom-i3,2016-17,Boston - George H Conley,00350122, 23.0, 3.6, 7.0, 66.5, 0.0, 0.0, 0.0, 89.4, 10.6, 28.1 -29.156249999999996,5,a-pcom-i3,2016-17,Boston - Greater Egleston Community High School,00350543, 60.0, 6.7, 26.7, 6.7, 0.0, 0.0, 0.0, 66.6, 33.4, 15.0 -7.937500000000002,5,a-pcom-i3,2016-17,Boston - Harvard-Kent,00350200, 5.1, 13.7, 6.6, 74.6, 0.0, 0.0, 0.0, 81.4, 18.6, 58.7 -23.687499999999996,5,a-pcom-i3,2016-17,Boston - Haynes Early Education Center,00350010, 66.0, 0.0, 9.8, 24.2, 0.0, 0.0, 0.0, 83.0, 17.0, 40.8 -15.874999999999998,5,a-pcom-i3,2016-17,Boston - Henry Grew,00350135, 46.3, 0.0, 0.0, 49.2, 0.0, 0.0, 4.4, 77.5, 22.5, 22.6 -17.124999999999996,5,a-pcom-i3,2016-17,Boston - Higginson,00350015, 43.5, 0.0, 11.3, 45.2, 0.0, 0.0, 0.0, 88.7, 11.3, 26.4 -25.90625,5,a-pcom-i3,2016-17,Boston - Higginson/Lewis K-8,00350377, 64.6, 7.5, 8.6, 17.1, 0.0, 0.0, 2.2, 76.4, 23.6, 46.5 -9.21875,5,a-pcom-i3,2016-17,Boston - Horace Mann School for the Deaf,00350750, 10.8, 4.3, 14.4, 70.5, 0.0, 0.0, 0.0, 79.9, 20.1, 69.4 -9.968750000000002,5,a-pcom-i3,2016-17,Boston - Hugh Roe O'Donnell,00350141, 6.3, 0.0, 21.3, 68.1, 0.0, 0.0, 4.3, 81.0, 19.0, 23.4 -13.78125,5,a-pcom-i3,2016-17,Boston - Jackson Mann,00350013, 26.9, 7.2, 7.1, 55.9, 0.0, 1.0, 2.0, 82.0, 18.0, 100.6 -13.125,5,a-pcom-i3,2016-17,Boston - James Condon Elementary,00350146, 26.0, 4.6, 9.1, 58.0, 0.0, 0.0, 2.3, 86.3, 13.7, 88.3 -19.0625,5,a-pcom-i3,2016-17,Boston - James J Chittick,00350154, 45.4, 5.2, 7.8, 39.0, 2.6, 0.0, 0.0, 92.1, 7.9, 38.5 -9.874999999999998,5,a-pcom-i3,2016-17,Boston - James Otis,00350156, 10.5, 2.6, 18.4, 68.4, 0.0, 0.0, 0.0, 82.7, 17.3, 38.1 -20.28125,5,a-pcom-i3,2016-17,Boston - James P Timilty Middle,00350485, 45.9, 3.0, 16.1, 35.1, 0.0, 0.0, 0.0, 67.6, 32.4, 37.0 -15.46875,5,a-pcom-i3,2016-17,Boston - James W Hennigan,00350153, 25.3, 1.9, 22.3, 50.5, 0.0, 0.0, 0.0, 79.0, 21.0, 67.3 -18.125,5,a-pcom-i3,2016-17,Boston - Jeremiah E Burke High,00350525, 44.1, 4.0, 8.0, 42.0, 0.0, 0.0, 2.0, 56.0, 44.0, 49.9 -15.84375,5,a-pcom-i3,2016-17,Boston - John D Philbrick,00350172, 38.3, 0.0, 12.4, 49.3, 0.0, 0.0, 0.0, 87.7, 12.3, 16.1 -15.0,5,a-pcom-i3,2016-17,Boston - John F Kennedy,00350166, 10.0, 0.0, 38.0, 52.0, 0.0, 0.0, 0.0, 72.0, 28.0, 30.0 -16.375,5,a-pcom-i3,2016-17,Boston - John W McCormack,00350179, 41.9, 1.7, 8.7, 47.6, 0.0, 0.0, 0.0, 68.2, 31.8, 57.2 -13.8125,5,a-pcom-i3,2016-17,Boston - John Winthrop,00350180, 31.1, 0.0, 13.0, 55.8, 0.0, 0.0, 0.0, 85.1, 14.9, 26.9 -22.96875,5,a-pcom-i3,2016-17,Boston - Joseph J Hurley,00350182, 11.5, 0.0, 58.7, 26.5, 3.3, 0.0, 0.0, 88.3, 11.7, 30.0 -15.5,5,a-pcom-i3,2016-17,Boston - Joseph Lee,00350183, 39.2, 0.9, 7.7, 50.4, 0.0, 0.0, 1.9, 78.6, 21.4, 107.2 -10.656249999999998,5,a-pcom-i3,2016-17,Boston - Joseph P Manning,00350184, 30.1, 0.0, 4.0, 65.9, 0.0, 0.0, 0.0, 68.3, 31.7, 25.1 -11.78125,5,a-pcom-i3,2016-17,Boston - Joseph P Tynan,00350181, 26.5, 0.0, 8.9, 62.3, 0.0, 0.0, 2.3, 88.8, 11.2, 45.2 -20.249999999999996,5,a-pcom-i3,2016-17,Boston - Josiah Quincy,00350286, 14.9, 45.7, 4.2, 35.2, 0.0, 0.0, 0.0, 82.1, 17.9, 94.4 -7.124999999999999,5,a-pcom-i3,2016-17,Boston - Joyce Kilmer,00350190, 15.3, 0.0, 6.1, 77.2, 0.0, 0.0, 1.4, 90.9, 9.1, 49.1 -18.625,5,a-pcom-i3,2016-17,Boston - King K-8,00350376, 48.4, 2.1, 7.3, 40.4, 0.0, 0.0, 1.8, 81.6, 18.4, 54.9 -14.84375,5,a-pcom-i3,2016-17,Boston - Lee Academy,00350001, 35.8, 2.7, 9.0, 52.5, 0.0, 0.0, 0.0, 85.2, 14.8, 33.4 -18.03125,5,a-pcom-i3,2016-17,Boston - Lilla G. Frederick Middle School,00350383, 33.4, 1.8, 20.8, 42.3, 0.0, 0.0, 1.7, 64.8, 35.2, 56.6 -8.75,5,a-pcom-i3,2016-17,Boston - Lyndon,00350262, 16.0, 2.0, 10.0, 72.0, 0.0, 0.0, 0.0, 82.0, 18.0, 50.0 -10.84375,5,a-pcom-i3,2016-17,Boston - Lyon K-8,00350004, 17.3, 6.9, 3.5, 65.3, 0.0, 0.0, 6.9, 76.0, 24.0, 28.8 -13.65625,5,a-pcom-i3,2016-17,Boston - Lyon Upper 9-12,00350655, 25.0, 12.5, 6.3, 56.3, 0.0, 0.0, 0.0, 40.4, 59.6, 32.0 -18.0,5,a-pcom-i3,2016-17,Boston - Madison Park High,00350537, 32.7, 2.9, 13.9, 42.4, 0.0, 0.0, 8.1, 51.8, 48.2, 136.8 -4.812500000000002,4.81,a-pcom-i3,2016-17,Boston - Manassah E Bradley,00350215, 0.0, 5.0, 10.5, 84.6, 0.0, 0.0, 0.0, 86.6, 13.4, 28.2 -21.593749999999996,5,a-pcom-i3,2016-17,Boston - Margarita Muniz Academy,00350549, 0.0, 0.0, 69.1, 30.9, 0.0, 0.0, 0.0, 63.7, 36.3, 27.5 -13.406249999999998,5,a-pcom-i3,2016-17,Boston - Mario Umana Academy,00350656, 9.2, 3.5, 26.7, 57.1, 0.0, 0.0, 3.5, 71.1, 28.9, 86.2 -20.249999999999996,5,a-pcom-i3,2016-17,Boston - Mather,00350227, 44.5, 14.8, 5.5, 35.2, 0.0, 0.0, 0.0, 88.7, 11.3, 54.1 -18.999999999999996,5,a-pcom-i3,2016-17,Boston - Mattahunt,00350226, 53.0, 0.0, 3.8, 39.2, 1.3, 0.0, 2.6, 87.1, 12.9, 76.6 -18.71875,5,a-pcom-i3,2016-17,Boston - Maurice J Tobin,00350229, 18.5, 2.3, 34.5, 40.1, 0.0, 0.0, 4.6, 71.9, 28.1, 43.1 -16.125,5,a-pcom-i3,2016-17,Boston - Michael J Perkins,00350231, 40.1, 0.0, 5.7, 48.4, 0.0, 0.0, 5.7, 77.0, 23.0, 17.4 -19.8125,5,a-pcom-i3,2016-17,Boston - Mildred Avenue K-8,00350378, 48.0, 4.0, 11.5, 36.6, 0.0, 0.0, 0.0, 80.8, 19.2, 52.0 -18.3125,5,a-pcom-i3,2016-17,Boston - Mission Hill School,00350382, 51.7, 0.0, 6.9, 41.4, 0.0, 0.0, 0.0, 79.5, 20.5, 29.0 -13.59375,5,a-pcom-i3,2016-17,Boston - Mozart,00350237, 25.3, 4.5, 13.6, 56.5, 0.0, 0.0, 0.0, 86.9, 13.1, 22.1 -19.34375,5,a-pcom-i3,2016-17,Boston - Nathan Hale,00350243, 54.8, 0.0, 7.1, 38.1, 0.0, 0.0, 0.0, 76.5, 23.5, 13.8 -20.75,5,a-pcom-i3,2016-17,Boston - New Mission High School,00350542, 43.1, 10.0, 13.3, 33.6, 0.0, 0.0, 0.0, 50.3, 49.7, 30.1 -19.156249999999996,5,a-pcom-i3,2016-17,Boston - O W Holmes,00350138, 47.1, 4.7, 9.5, 38.7, 0.0, 0.0, 0.0, 78.8, 21.2, 42.5 -18.09375,5,a-pcom-i3,2016-17,Boston - O'Bryant School Math/Science,00350575, 39.3, 4.9, 12.7, 42.1, 0.0, 0.0, 1.0, 61.9, 38.1, 101.5 -7.281249999999999,5,a-pcom-i3,2016-17,Boston - Oliver Hazard Perry,00350255, 15.5, 0.0, 3.9, 76.7, 0.0, 0.0, 3.9, 84.4, 15.6, 25.5 -14.75,5,a-pcom-i3,2016-17,Boston - Orchard Gardens,00350257, 26.3, 1.1, 16.5, 52.8, 0.0, 0.0, 3.3, 78.1, 21.9, 90.8 -12.781249999999998,5,a-pcom-i3,2016-17,Boston - Patrick J Kennedy,00350264, 11.7, 0.0, 29.2, 59.1, 0.0, 0.0, 0.0, 88.4, 11.6, 34.2 -15.6875,5,a-pcom-i3,2016-17,Boston - Paul A Dever,00350268, 36.3, 0.0, 9.9, 49.8, 0.0, 0.0, 4.0, 76.1, 23.9, 50.0 -17.21875,5,a-pcom-i3,2016-17,Boston - Pauline Agassiz Shaw Elementary School,00350014, 45.9, 0.0, 9.2, 44.9, 0.0, 0.0, 0.0, 86.2, 13.8, 21.7 -7.96875,5,a-pcom-i3,2016-17,Boston - Phineas Bates,00350278, 12.8, 0.0, 9.9, 74.5, 0.0, 0.0, 2.9, 85.5, 14.5, 34.4 -17.40625,5,a-pcom-i3,2016-17,Boston - Quincy Upper School,00350565, 20.8, 23.6, 7.6, 44.3, 0.0, 0.0, 3.8, 56.5, 43.5, 52.9 -23.03125,5,a-pcom-i3,2016-17,Boston - Rafael Hernandez,00350691, 2.4, 1.4, 69.9, 26.3, 0.0, 0.0, 0.0, 83.2, 16.8, 41.4 -10.46875,5,a-pcom-i3,2016-17,Boston - Richard J Murphy,00350240, 14.7, 9.7, 7.9, 66.5, 0.0, 0.0, 1.1, 75.2, 24.8, 88.5 -13.90625,5,a-pcom-i3,2016-17,Boston - Roger Clap,00350298, 16.7, 0.0, 11.1, 55.5, 0.0, 0.0, 16.6, 89.0, 11.0, 17.9 -15.1875,5,a-pcom-i3,2016-17,Boston - Samuel Adams,00350302, 20.0, 0.0, 28.6, 51.4, 0.0, 0.0, 0.0, 88.6, 11.4, 35.0 -22.843749999999996,5,a-pcom-i3,2016-17,Boston - Samuel W Mason,00350304, 54.0, 0.0, 15.9, 26.9, 3.2, 0.0, 0.0, 79.4, 20.6, 31.4 -16.90625,5,a-pcom-i3,2016-17,Boston - Sarah Greenwood,00350308, 16.0, 2.0, 36.1, 45.9, 0.0, 0.0, 0.0, 80.5, 19.5, 49.7 -15.593749999999998,5,a-pcom-i3,2016-17,Boston - Snowden International School at Copley,00350690, 29.8, 7.5, 12.5, 50.1, 0.0, 0.0, 0.0, 62.4, 37.6, 40.0 -12.09375,5,a-pcom-i3,2016-17,Boston - TechBoston Academy,00350657, 33.6, 1.0, 3.0, 61.3, 0.0, 0.0, 1.0, 61.1, 38.9, 100.4 -15.718749999999998,5,a-pcom-i3,2016-17,Boston - The English High,00350535, 16.0, 7.2, 25.7, 49.7, 0.0, 0.0, 1.4, 62.5, 37.5, 69.9 -7.999999999999998,5,a-pcom-i3,2016-17,Boston - Thomas J Kenny,00350328, 18.7, 3.5, 3.4, 74.4, 0.0, 0.0, 0.0, 82.9, 17.1, 29.5 -13.78125,5,a-pcom-i3,2016-17,Boston - UP Academy Holland,00350167, 26.2, 4.8, 13.1, 55.9, 0.0, 0.0, 0.0, 83.3, 16.7, 83.7 -17.96875,5,a-pcom-i3,2016-17,Boston - Urban Science Academy,00350579, 38.0, 5.5, 14.0, 42.5, 0.0, 0.0, 0.0, 56.9, 43.1, 55.2 -4.906250000000001,4.91,a-pcom-i3,2016-17,Boston - Warren-Prescott,00350346, 5.2, 0.0, 10.5, 84.3, 0.0, 0.0, 0.0, 91.2, 8.8, 57.0 -15.625,5,a-pcom-i3,2016-17,Boston - Washington Irving Middle,00350445, 37.0, 2.2, 10.8, 50.0, 0.0, 0.0, 0.0, 78.3, 21.7, 45.8 -14.031249999999998,5,a-pcom-i3,2016-17,Boston - West Roxbury Academy,00350658, 31.6, 5.0, 8.3, 55.1, 0.0, 0.0, 0.0, 64.9, 35.1, 60.1 -13.28125,5,a-pcom-i3,2016-17,Boston - William E Russell,00350366, 18.3, 3.0, 21.3, 57.5, 0.0, 0.0, 0.0, 90.9, 9.1, 32.9 -23.1875,5,a-pcom-i3,2016-17,Boston - William Ellery Channing,00350360, 53.1, 5.3, 5.3, 25.8, 5.3, 0.0, 5.3, 84.1, 15.9, 18.8 -9.093749999999998,5,a-pcom-i3,2016-17,Boston - William H Ohrenberger,00350258, 20.3, 1.7, 5.4, 70.9, 0.0, 0.0, 1.7, 64.3, 35.7, 58.6 -15.906249999999998,5,a-pcom-i3,2016-17,Boston - William McKinley,00350363, 36.4, 1.8, 10.8, 49.1, 0.0, 0.5, 1.4, 63.3, 36.7, 221.7 -17.0,5,a-pcom-i3,2016-17,Boston - William Monroe Trotter,00350370, 44.6, 0.0, 7.4, 45.6, 0.0, 0.0, 2.5, 79.0, 21.0, 40.6 -14.5625,5,a-pcom-i3,2016-17,Boston - Winship Elementary,00350374, 31.1, 0.0, 15.5, 53.4, 0.0, 0.0, 0.0, 84.6, 15.4, 25.7 -21.031249999999996,5,a-pcom-i3,2016-17,Boston - Young Achievers,00350380, 46.0, 1.8, 16.0, 32.7, 0.0, 0.0, 3.5, 84.1, 15.9, 56.4 -11.124999999999998,5,a-pcom-i3,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,04490305, 14.1, 1.2, 14.3, 64.4, 0.0, 0.0, 6.0, 73.2, 26.8, 82.7 -13.28125,5,a-pcom-i3,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,04240505, 27.5, 5.4, 9.6, 57.5, 0.0, 0.0, 0.0, 66.5, 33.5, 41.8 -13.625,5,a-pcom-i3,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,04110305, 27.4, 0.0, 12.0, 56.4, 0.0, 0.0, 4.2, 64.7, 35.3, 71.1 -10.375,5,a-pcom-i3,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,04160305, 23.1, 0.0, 5.9, 66.8, 0.0, 0.0, 4.2, 62.2, 37.8, 47.6 -9.812500000000002,5,a-pcom-i3,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,04810550, 21.5, 6.1, 3.2, 68.6, 0.0, 0.0, 0.6, 87.7, 12.3, 157.5 -1,1,a-pcom-i3,2016-17,Bourne - Bourne High School,00360505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.5, 31.5, 55.1 -1,1,a-pcom-i3,2016-17,Bourne - Bourne Middle School,00360325, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.6, 15.4, 78.3 -1,1,a-pcom-i3,2016-17,Bourne - Bournedale Elementary School,00360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 58.0 -1,1,a-pcom-i3,2016-17,Bourne - Peebles Elementary School,00360010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 48.3 -1,1,a-pcom-i3,2016-17,Boxford - Harry Lee Cole,00380005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 56.7 -1,1,a-pcom-i3,2016-17,Boxford - Spofford Pond,00380013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 69.6 -1,1,a-pcom-i3,2016-17,Boylston - Boylston Elementary,00390005, 0.0, 0.0, 0.0, 97.3, 0.0, 0.0, 2.7, 93.2, 6.8, 36.9 -1,1,a-pcom-i3,2016-17,Braintree - Archie T Morrison,00400033, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 96.0, 4.0, 51.6 -1,1,a-pcom-i3,2016-17,Braintree - Braintree High,00400505, 0.5, 1.1, 0.5, 97.4, 0.0, 0.0, 0.5, 70.3, 29.7, 196.2 -1,1,a-pcom-i3,2016-17,Braintree - Donald Ross,00400050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 31.8 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Braintree - East Middle School,00400305, 2.4, 0.0, 1.2, 96.4, 0.0, 0.0, 0.0, 82.7, 17.3, 82.1 -1,1,a-pcom-i3,2016-17,Braintree - Highlands,00400015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 40.5 -1,1,a-pcom-i3,2016-17,Braintree - Hollis,00400005, 0.0, 0.0, 0.0, 98.2, 0.0, 0.0, 1.8, 94.5, 5.5, 55.7 -1,1,a-pcom-i3,2016-17,Braintree - Liberty,00400025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 35.6 -1,1,a-pcom-i3,2016-17,Braintree - Mary E Flaherty School,00400020, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 96.4, 3.6, 56.1 -1,1,a-pcom-i3,2016-17,Braintree - Monatiquot Kindergarten Center,00400009, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 34.3 -1,1,a-pcom-i3,2016-17,Braintree - South Middle School,00400310, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 74.1, 25.9, 78.0 -1,1,a-pcom-i3,2016-17,Brewster - Eddy Elementary,00410010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 41.3 -1,1,a-pcom-i3,2016-17,Brewster - Stony Brook Elementary,00410005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 47.8 -7.718750000000001,5,a-pcom-i3,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,04170205, 10.5, 10.5, 0.0, 75.3, 1.6, 0.0, 2.1, 83.9, 16.1, 47.5 -1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Bridgewater Middle School,06250320, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.2, 19.8, 49.4 -1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,06250505, 1.5, 0.8, 0.8, 96.9, 0.0, 0.0, 0.0, 69.2, 30.8, 130.0 -1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Laliberte Elementary School,06250050, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 87.5, 12.5, 39.5 -1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Merrill Elementary School,06250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 30.1 -1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Mitchell Elementary School,06250002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 108.8 -1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Raynham Middle School,06250315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.8, 17.2, 64.0 -4.437500000000001,4.44,a-pcom-i3,2016-17,Bridgewater-Raynham - Therapeutic Day School,06250415, 0.0, 0.0, 14.2, 85.8, 0.0, 0.0, 0.0, 72.7, 27.3, 7.0 -1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Williams Intermediate School,06250300, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 73.5 -1,1,a-pcom-i3,2016-17,Brimfield - Brimfield Elementary,00430005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.6, 14.4, 48.4 -1,1,a-pcom-i3,2016-17,Bristol County Agricultural - Bristol County Agricultural High,09100705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.8, 40.2, 47.3 -1.09375,1.09,a-pcom-i3,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,08100605, 1.4, 1.4, 0.0, 96.5, 0.7, 0.0, 0.0, 61.3, 38.7, 144.9 -2.2187499999999982,2.22,a-pcom-i3,2016-17,Brockton - Ashfield Middle School,00440421, 7.1, 0.0, 0.0, 92.9, 0.0, 0.0, 0.0, 78.6, 21.4, 65.5 -4.53125,4.53,a-pcom-i3,2016-17,Brockton - Barrett Russell School,00440007, 5.8, 0.0, 5.8, 85.5, 0.0, 0.0, 2.9, 98.1, 1.9, 34.4 -8.90625,5,a-pcom-i3,2016-17,Brockton - Brockton Champion High School,00440515, 22.7, 0.0, 5.8, 71.5, 0.0, 0.0, 0.0, 52.8, 47.2, 34.5 -6.40625,5,a-pcom-i3,2016-17,Brockton - Brockton High,00440505, 14.4, 1.8, 3.0, 79.5, 0.0, 0.3, 1.0, 64.1, 35.9, 392.8 -4.343750000000002,4.34,a-pcom-i3,2016-17,Brockton - Brookfield,00440010, 13.2, 0.0, 0.7, 86.1, 0.0, 0.0, 0.0, 92.3, 7.7, 68.3 -4.187500000000002,4.19,a-pcom-i3,2016-17,Brockton - Downey,00440110, 9.3, 0.0, 3.1, 86.6, 0.0, 0.0, 1.0, 89.3, 10.7, 96.9 -5.437500000000002,5,a-pcom-i3,2016-17,Brockton - Dr W Arnone Community School,00440001, 14.0, 0.0, 3.2, 82.6, 0.0, 0.0, 0.2, 86.3, 13.7, 94.3 -9.249999999999998,5,a-pcom-i3,2016-17,Brockton - East Middle School,00440405, 21.6, 1.5, 4.6, 70.4, 0.0, 0.0, 1.9, 70.4, 29.6, 64.9 -3.999999999999999,4.0,a-pcom-i3,2016-17,Brockton - Edgar B Davis,00440023, 6.8, 0.0, 2.5, 87.2, 0.0, 0.0, 3.5, 76.8, 23.2, 86.8 -11.40625,5,a-pcom-i3,2016-17,Brockton - Edison Academy,00440520, 22.2, 0.9, 10.8, 63.5, 0.0, 0.0, 2.7, 71.4, 28.6, 11.3 -2.1562500000000018,2.16,a-pcom-i3,2016-17,Brockton - Frederick Douglass Academy,00440080, 2.2, 0.0, 0.0, 93.1, 0.0, 0.0, 4.7, 50.7, 49.3, 14.8 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Brockton - Gilmore School Early Childhood Center,00440050, 2.6, 1.4, 1.6, 94.4, 0.0, 0.0, 0.0, 97.6, 2.4, 73.4 -5.499999999999998,5,a-pcom-i3,2016-17,Brockton - Goddard Alternative School,00440400, 15.5, 0.0, 2.1, 82.4, 0.0, 0.0, 0.0, 63.4, 36.6, 35.6 -4.21875,4.22,a-pcom-i3,2016-17,Brockton - Hancock,00440045, 2.3, 0.0, 7.2, 86.5, 1.5, 0.0, 2.5, 91.8, 8.2, 52.9 -3.90625,3.91,a-pcom-i3,2016-17,Brockton - Huntington,00440055, 12.5, 0.0, 0.0, 87.5, 0.0, 0.0, 0.0, 89.7, 10.3, 47.9 -4.312499999999999,4.31,a-pcom-i3,2016-17,Brockton - John F Kennedy,00440017, 9.7, 2.0, 1.6, 86.2, 0.0, 0.0, 0.5, 89.8, 10.2, 62.1 -7.03125,5,a-pcom-i3,2016-17,Brockton - Joseph F. Plouffe Academy,00440422, 13.6, 6.0, 3.0, 77.5, 0.0, 0.0, 0.0, 76.9, 23.1, 67.1 -4.468749999999999,4.47,a-pcom-i3,2016-17,Brockton - Louis F Angelo Elementary,00440065, 9.1, 0.2, 2.9, 85.7, 0.0, 0.0, 2.0, 95.6, 4.4, 102.1 -7.5,5,a-pcom-i3,2016-17,Brockton - Manthala George Jr. School,00440003, 6.7, 0.0, 13.9, 76.0, 1.3, 0.0, 2.1, 92.5, 7.5, 95.4 -7.34375,5,a-pcom-i3,2016-17,Brockton - Mary E. Baker School,00440002, 18.6, 1.2, 3.7, 76.5, 0.0, 0.0, 0.0, 93.9, 6.1, 81.7 -6.09375,5,a-pcom-i3,2016-17,Brockton - North Middle School,00440410, 15.0, 0.0, 1.3, 80.5, 1.4, 0.0, 1.7, 71.7, 28.3, 69.0 -6.187499999999999,5,a-pcom-i3,2016-17,Brockton - Oscar F Raymond,00440078, 14.8, 0.0, 1.3, 80.2, 0.0, 0.0, 3.7, 91.4, 8.6, 75.2 -2.749999999999999,2.75,a-pcom-i3,2016-17,Brockton - South Middle School,00440415, 8.3, 0.0, 0.0, 91.2, 0.0, 0.0, 0.6, 71.5, 28.5, 59.3 -5.375000000000001,5,a-pcom-i3,2016-17,Brockton - West Middle School,00440420, 12.7, 1.4, 1.4, 82.8, 0.0, 0.0, 1.7, 76.9, 23.1, 70.2 -1,1,a-pcom-i3,2016-17,Brooke Charter School (District) - Brooke Charter School,04280305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.5 -1,1,a-pcom-i3,2016-17,Brookfield - Brookfield Elementary,00450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 43.6 -4.562499999999998,4.56,a-pcom-i3,2016-17,Brookline - Brookline Early Education Program at Beacon,00460001, 7.3, 0.0, 7.3, 85.4, 0.0, 0.0, 0.0, 100.0, 0.0, 13.7 -2.8125,2.81,a-pcom-i3,2016-17,Brookline - Brookline Early Education Program at Putterham,00460002, 9.0, 0.0, 0.0, 91.0, 0.0, 0.0, 0.0, 90.0, 10.0, 20.0 -4.718749999999998,4.72,a-pcom-i3,2016-17,Brookline - Brookline High,00460505, 9.2, 3.1, 2.5, 84.9, 0.3, 0.0, 0.0, 64.9, 35.1, 292.7 -4.125000000000001,4.13,a-pcom-i3,2016-17,Brookline - Edith C Baker,00460005, 1.7, 7.8, 3.6, 86.8, 0.0, 0.0, 0.0, 85.9, 14.1, 105.9 -3.59375,3.59,a-pcom-i3,2016-17,Brookline - Edward Devotion,00460015, 8.6, 1.2, 1.7, 88.5, 0.0, 0.0, 0.0, 79.8, 20.2, 143.1 -5.750000000000002,5,a-pcom-i3,2016-17,Brookline - Heath,00460025, 10.0, 2.8, 5.6, 81.6, 0.0, 0.0, 0.0, 86.5, 13.5, 71.3 -2.875000000000001,2.88,a-pcom-i3,2016-17,Brookline - John D Runkle,00460045, 3.6, 3.3, 1.3, 90.8, 0.0, 0.9, 0.0, 84.4, 15.6, 110.2 -4.0625,4.06,a-pcom-i3,2016-17,Brookline - Lawrence,00460030, 5.7, 5.4, 0.8, 87.0, 0.0, 0.0, 1.0, 81.7, 18.3, 96.3 -4.406249999999998,4.41,a-pcom-i3,2016-17,Brookline - Michael Driscoll,00460020, 2.2, 7.5, 3.3, 85.9, 0.0, 0.0, 1.1, 82.6, 17.4, 89.2 -4.906250000000001,4.91,a-pcom-i3,2016-17,Brookline - Pierce,00460040, 7.7, 4.3, 1.8, 84.3, 0.0, 0.0, 2.0, 84.5, 15.5, 101.7 -2.4687500000000018,2.47,a-pcom-i3,2016-17,Brookline - The Lynch Center,00460060, 7.9, 0.0, 0.0, 92.1, 0.0, 0.0, 0.0, 100.0, 0.0, 31.0 -4.343750000000002,4.34,a-pcom-i3,2016-17,Brookline - William H Lincoln,00460035, 6.2, 3.0, 4.8, 86.1, 0.0, 0.0, 0.0, 80.4, 19.6, 95.7 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Burlington - Burlington High,00480505, 0.0, 1.9, 2.1, 95.3, 0.0, 0.0, 0.6, 75.4, 24.6, 154.0 -1,1,a-pcom-i3,2016-17,Burlington - Fox Hill,00480007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 56.7 -1,1,a-pcom-i3,2016-17,Burlington - Francis Wyman Elementary,00480035, 0.0, 1.2, 1.2, 97.6, 0.0, 0.0, 0.0, 92.2, 7.8, 83.0 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Burlington - Marshall Simonds Middle,00480303, 1.0, 3.1, 0.0, 95.9, 0.0, 0.0, 0.0, 82.7, 17.3, 97.0 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Burlington - Memorial,00480015, 0.0, 4.8, 0.0, 95.2, 0.0, 0.0, 0.0, 95.0, 5.0, 62.7 -1,1,a-pcom-i3,2016-17,Burlington - Pine Glen Elementary,00480020, 0.0, 0.0, 0.0, 98.3, 0.0, 0.0, 1.7, 91.2, 8.8, 58.0 -14.375,5,a-pcom-i3,2016-17,Cambridge - Amigos School,00490006, 2.7, 1.8, 41.5, 54.0, 0.0, 0.0, 0.0, 84.4, 15.6, 56.3 -7.437499999999999,5,a-pcom-i3,2016-17,Cambridge - Cambridge Rindge and Latin,00490506, 14.4, 2.8, 5.9, 76.2, 0.4, 0.0, 0.4, 67.2, 32.8, 267.9 -7.531249999999998,5,a-pcom-i3,2016-17,Cambridge - Cambridge Street Upper School,00490305, 19.7, 0.0, 4.4, 75.9, 0.0, 0.0, 0.0, 79.0, 21.0, 45.6 -9.718749999999998,5,a-pcom-i3,2016-17,Cambridge - Cambridgeport,00490007, 20.7, 4.7, 3.8, 68.9, 0.0, 1.9, 0.0, 86.8, 13.2, 53.1 -9.968750000000002,5,a-pcom-i3,2016-17,Cambridge - Fletcher/Maynard Academy,00490090, 24.0, 6.3, 0.0, 68.1, 0.0, 0.0, 1.6, 82.9, 17.1, 63.3 -5.78125,5,a-pcom-i3,2016-17,Cambridge - Graham and Parks,00490080, 10.3, 6.7, 1.5, 81.5, 0.0, 0.0, 0.0, 88.8, 11.2, 66.9 -4.093749999999998,4.09,a-pcom-i3,2016-17,Cambridge - Haggerty,00490020, 6.6, 4.4, 2.2, 86.9, 0.0, 0.0, 0.0, 91.2, 8.8, 45.8 -6.187499999999999,5,a-pcom-i3,2016-17,Cambridge - John M Tobin,00490065, 11.5, 7.0, 1.4, 80.2, 0.0, 0.0, 0.0, 84.4, 15.6, 48.0 -2.906249999999999,2.91,a-pcom-i3,2016-17,Cambridge - Kennedy-Longfellow,00490040, 5.6, 1.9, 1.9, 90.7, 0.0, 0.0, 0.0, 95.6, 4.4, 53.5 -8.843749999999998,5,a-pcom-i3,2016-17,Cambridge - King Open,00490035, 8.7, 7.2, 12.3, 71.7, 0.0, 0.0, 0.0, 85.1, 14.9, 76.0 -5.687500000000001,5,a-pcom-i3,2016-17,Cambridge - Maria L. Baldwin,00490005, 8.4, 3.2, 6.6, 81.8, 0.0, 0.0, 0.0, 84.1, 15.9, 59.7 -12.6875,5,a-pcom-i3,2016-17,Cambridge - Martin Luther King Jr.,00490030, 14.2, 20.0, 4.3, 59.4, 2.1, 0.0, 0.0, 89.5, 10.5, 46.8 -6.218750000000002,5,a-pcom-i3,2016-17,Cambridge - Morse,00490045, 12.5, 1.5, 5.9, 80.1, 0.0, 0.0, 0.0, 85.4, 14.6, 68.0 -4.312499999999999,4.31,a-pcom-i3,2016-17,Cambridge - Peabody,00490050, 8.8, 3.2, 0.0, 86.2, 1.8, 0.0, 0.0, 90.2, 9.8, 56.6 -12.8125,5,a-pcom-i3,2016-17,Cambridge - Putnam Avenue Upper School,00490310, 28.3, 10.3, 2.4, 59.0, 0.0, 0.0, 0.0, 60.9, 39.1, 41.8 -7.65625,5,a-pcom-i3,2016-17,Cambridge - Rindge Avenue Upper School,00490315, 9.8, 4.9, 9.8, 75.5, 0.0, 0.0, 0.0, 66.1, 33.9, 40.8 -4.437500000000001,4.44,a-pcom-i3,2016-17,Cambridge - Vassal Lane Upper School,00490320, 6.1, 2.0, 6.1, 85.8, 0.0, 0.0, 0.0, 76.9, 23.1, 49.4 -1.71875,1.72,a-pcom-i3,2016-17,Canton - Canton High,00500505, 0.0, 3.0, 1.0, 94.5, 0.0, 0.0, 1.4, 69.8, 30.2, 98.9 -1,1,a-pcom-i3,2016-17,Canton - Dean S Luce,00500020, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 97.1, 2.9, 63.2 -1.40625,1.41,a-pcom-i3,2016-17,Canton - John F Kennedy,00500017, 3.0, 1.5, 0.0, 95.5, 0.0, 0.0, 0.0, 92.8, 7.2, 67.1 -3.343750000000001,3.34,a-pcom-i3,2016-17,Canton - Lt Peter M Hansen,00500012, 3.8, 1.5, 3.8, 89.3, 0.0, 0.0, 1.5, 92.6, 7.4, 65.4 -5.0,5.0,a-pcom-i3,2016-17,Canton - Rodman Early Childhood Center,00500010, 12.0, 0.0, 0.0, 84.0, 0.0, 0.0, 4.0, 96.0, 4.0, 25.0 -3.90625,3.91,a-pcom-i3,2016-17,Canton - Wm H Galvin Middle,00500305, 2.3, 2.3, 4.5, 87.5, 0.0, 0.0, 3.4, 75.8, 24.2, 88.2 -1,1,a-pcom-i3,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,04320530, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.1, 18.9, 33.3 -1,1,a-pcom-i3,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,08150605, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 55.5, 44.5, 105.3 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Carlisle - Carlisle School,00510025, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 84.1, 15.9, 94.1 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Carver - Carver Elementary School,00520015, 0.5, 0.9, 0.9, 96.7, 0.9, 0.0, 0.0, 97.2, 2.8, 106.1 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Carver - Carver Middle/High School,00520405, 3.6, 0.9, 0.9, 93.7, 0.0, 0.9, 0.0, 72.9, 27.1, 110.6 -1,1,a-pcom-i3,2016-17,Central Berkshire - Becket Washington School,06350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 18.1 -1,1,a-pcom-i3,2016-17,Central Berkshire - Craneville,06350025, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 92.3, 7.7, 59.6 -1,1,a-pcom-i3,2016-17,Central Berkshire - Kittredge,06350035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.3, 0.7, 22.9 -1,1,a-pcom-i3,2016-17,Central Berkshire - Nessacus Regional Middle School,06350305, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 74.9, 25.1, 56.0 -1,1,a-pcom-i3,2016-17,Central Berkshire - Wahconah Regional High,06350505, 0.0, 0.0, 0.0, 97.1, 0.0, 0.0, 2.9, 66.5, 33.5, 68.4 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Chelmsford - Byam School,00560030, 0.0, 3.9, 0.0, 96.1, 0.0, 0.0, 0.0, 90.5, 9.5, 76.0 -1,1,a-pcom-i3,2016-17,Chelmsford - Center Elementary School,00560005, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 95.7, 4.3, 64.9 -1,1,a-pcom-i3,2016-17,Chelmsford - Charles D Harrington,00560025, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 93.6, 6.4, 62.6 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Chelmsford - Chelmsford High,00560505, 0.0, 1.1, 1.7, 96.7, 0.0, 0.6, 0.0, 67.3, 32.7, 180.0 -1,1,a-pcom-i3,2016-17,Chelmsford - Col Moses Parker School,00560305, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 80.6, 19.4, 99.9 -1,1,a-pcom-i3,2016-17,Chelmsford - Community Education Center,00560001, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 100.0, 0.0, 56.1 -1,1,a-pcom-i3,2016-17,Chelmsford - McCarthy Middle School,00560310, 0.0, 2.6, 0.0, 97.4, 0.0, 0.0, 0.0, 82.2, 17.8, 115.6 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Chelmsford - South Row,00560015, 1.8, 1.8, 1.8, 94.6, 0.0, 0.0, 0.0, 98.2, 1.8, 55.7 -5.625,5,a-pcom-i3,2016-17,Chelsea - Chelsea High,00570505, 1.9, 1.9, 12.2, 82.0, 0.0, 1.3, 0.6, 68.7, 31.3, 156.3 -4.812500000000002,4.81,a-pcom-i3,2016-17,Chelsea - Clark Avenue School,00570050, 3.2, 0.8, 11.4, 84.6, 0.0, 0.0, 0.0, 77.3, 22.7, 62.7 -5.187499999999998,5,a-pcom-i3,2016-17,Chelsea - Edgar A Hooks Elementary,00570030, 1.7, 0.0, 14.9, 83.4, 0.0, 0.0, 0.0, 87.5, 12.5, 59.4 -5.531250000000001,5,a-pcom-i3,2016-17,Chelsea - Eugene Wright Science and Technology Academy,00570045, 1.7, 0.0, 16.0, 82.3, 0.0, 0.0, 0.0, 82.1, 17.9, 59.0 -8.156249999999998,5,a-pcom-i3,2016-17,Chelsea - Frank M Sokolowski Elementary,00570040, 3.4, 3.4, 19.3, 73.9, 0.0, 0.0, 0.0, 85.6, 14.4, 58.8 -5.750000000000002,5,a-pcom-i3,2016-17,Chelsea - George F. Kelly Elementary,00570035, 0.0, 0.0, 18.4, 81.6, 0.0, 0.0, 0.0, 92.1, 7.9, 56.4 -7.468750000000002,5,a-pcom-i3,2016-17,Chelsea - Joseph A. Browne School,00570055, 1.7, 8.5, 13.7, 76.1, 0.0, 0.0, 0.0, 81.5, 18.5, 59.1 -9.156249999999998,5,a-pcom-i3,2016-17,Chelsea - Shurtleff Early Childhood,00570003, 0.8, 0.0, 28.6, 70.7, 0.0, 0.0, 0.0, 93.4, 6.6, 132.0 -6.71875,5,a-pcom-i3,2016-17,Chelsea - William A Berkowitz Elementary,00570025, 0.0, 2.0, 17.9, 78.5, 0.0, 1.6, 0.0, 83.2, 16.8, 62.1 -1,1,a-pcom-i3,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,06320025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 26.2 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Chicopee - Barry,00610003, 1.7, 1.7, 0.0, 96.6, 0.0, 0.0, 0.0, 95.0, 5.0, 59.5 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Chicopee - Belcher,00610010, 0.0, 0.0, 5.0, 93.6, 0.0, 1.3, 0.0, 96.5, 3.5, 41.6 -1,1,a-pcom-i3,2016-17,Chicopee - Bellamy Middle,00610305, 0.0, 0.0, 2.2, 96.9, 0.0, 1.0, 0.0, 79.2, 20.8, 104.4 -2.093750000000001,2.09,a-pcom-i3,2016-17,Chicopee - Bowe,00610015, 3.4, 0.0, 3.4, 93.3, 0.0, 0.0, 0.0, 95.0, 5.0, 59.7 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Chicopee - Bowie,00610020, 2.1, 0.0, 1.1, 96.8, 0.0, 0.0, 0.0, 87.2, 12.8, 47.0 -4.093749999999998,4.09,a-pcom-i3,2016-17,Chicopee - Chicopee Academy,00610021, 7.8, 2.6, 2.6, 86.9, 0.0, 0.0, 0.0, 65.4, 34.6, 38.2 -1.8437500000000018,1.84,a-pcom-i3,2016-17,Chicopee - Chicopee Comprehensive High School,00610510, 1.1, 0.7, 4.1, 94.1, 0.0, 0.0, 0.0, 61.2, 38.8, 143.2 -1.7812500000000009,1.78,a-pcom-i3,2016-17,Chicopee - Chicopee High,00610505, 0.8, 0.0, 4.1, 94.3, 0.8, 0.0, 0.0, 73.6, 26.4, 122.2 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Chicopee - Dupont Middle,00610310, 2.9, 1.0, 1.0, 95.2, 0.0, 0.0, 0.0, 78.7, 21.3, 104.5 -4.624999999999999,4.62,a-pcom-i3,2016-17,Chicopee - Fairview Elementary,00610050, 0.0, 0.0, 14.8, 85.2, 0.0, 0.0, 0.0, 88.2, 11.8, 81.0 -1.875,1.88,a-pcom-i3,2016-17,Chicopee - Gen John J Stefanik,00610090, 1.4, 0.0, 4.6, 94.0, 0.0, 0.0, 0.0, 92.5, 7.5, 69.0 -1,1,a-pcom-i3,2016-17,Chicopee - Lambert-Lavoie,00610040, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 90.5, 9.5, 42.0 -2.03125,2.03,a-pcom-i3,2016-17,Chicopee - Litwin,00610022, 0.0, 3.3, 3.3, 93.5, 0.0, 0.0, 0.0, 96.7, 3.3, 61.3 -1,1,a-pcom-i3,2016-17,Chicopee - Streiber Memorial School,00610065, 0.0, 0.0, 0.7, 98.4, 0.0, 0.9, 0.0, 90.1, 9.9, 48.5 -1.8124999999999991,1.81,a-pcom-i3,2016-17,Chicopee - Szetela Early Childhood Center,00610001, 0.0, 0.0, 5.8, 94.2, 0.0, 0.0, 0.0, 94.2, 5.8, 52.0 -3.3124999999999982,3.31,a-pcom-i3,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,04180305, 2.2, 0.0, 3.9, 89.4, 0.0, 0.0, 4.5, 62.1, 37.9, 44.8 -10.187499999999998,5,a-pcom-i3,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,04370505, 21.1, 3.8, 7.7, 67.4, 0.0, 0.0, 0.0, 71.2, 28.8, 52.1 -10.9375,5,a-pcom-i3,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505, 13.6, 5.8, 15.6, 65.0, 0.0, 0.0, 0.0, 63.0, 37.0, 51.4 -7.687499999999998,5,a-pcom-i3,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505, 13.9, 2.8, 7.9, 75.4, 0.0, 0.0, 0.0, 64.3, 35.7, 35.9 -1,1,a-pcom-i3,2016-17,Clarksburg - Clarksburg Elementary,00630010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 31.6 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Clinton - Clinton Elementary,00640050, 1.0, 1.0, 1.3, 96.8, 0.0, 0.0, 0.0, 95.2, 4.8, 104.9 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Clinton - Clinton Middle School,00640305, 2.4, 0.0, 0.0, 96.6, 1.0, 0.0, 0.0, 84.3, 15.7, 83.7 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Clinton - Clinton Senior High,00640505, 1.7, 0.0, 1.7, 94.8, 0.0, 1.7, 0.0, 62.1, 37.9, 57.7 -14.875,5,a-pcom-i3,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,04380505, 34.6, 5.1, 4.7, 52.4, 0.0, 0.0, 3.1, 60.5, 39.5, 63.4 -1,1,a-pcom-i3,2016-17,Cohasset - Cohasset Middle/High School,00650505, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 64.1, 35.9, 104.9 -1,1,a-pcom-i3,2016-17,Cohasset - Deer Hill,00650005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 47.9 -1,1,a-pcom-i3,2016-17,Cohasset - Joseph Osgood,00650010, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 91.0, 9.0, 51.4 -6.25,5,a-pcom-i3,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205, 1.8, 7.3, 9.1, 80.0, 0.0, 0.0, 1.8, 80.9, 19.1, 55.0 -13.15625,5,a-pcom-i3,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,04360305, 16.2, 4.8, 17.9, 57.9, 0.0, 0.0, 3.3, 67.6, 32.4, 61.5 -7.5,5,a-pcom-i3,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,04260205, 3.8, 3.2, 17.0, 76.0, 0.0, 0.0, 0.0, 94.1, 5.9, 39.6 -4.656250000000002,4.66,a-pcom-i3,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,04400205, 1.6, 0.0, 13.2, 85.1, 0.0, 0.0, 0.0, 80.7, 19.3, 61.5 -6.437499999999998,5,a-pcom-i3,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,04310205, 1.1, 3.4, 16.0, 79.4, 0.0, 0.0, 0.0, 90.0, 10.0, 43.5 -2.2187499999999982,2.22,a-pcom-i3,2016-17,Concord - Alcott,00670005, 2.7, 3.3, 1.1, 92.9, 0.0, 0.0, 0.0, 94.2, 5.8, 75.1 -2.7812500000000018,2.78,a-pcom-i3,2016-17,Concord - Concord Middle,00670305, 2.1, 3.7, 2.1, 91.1, 0.0, 1.0, 0.0, 72.8, 27.2, 95.4 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Concord - Thoreau,00670020, 1.5, 3.8, 0.0, 94.7, 0.0, 0.0, 0.0, 95.7, 4.3, 66.2 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Concord - Willard,00670030, 0.0, 2.5, 1.3, 96.2, 0.0, 0.0, 0.0, 96.4, 3.6, 79.0 -2.4687500000000018,2.47,a-pcom-i3,2016-17,Concord-Carlisle - Concord Carlisle High,06400505, 1.5, 2.2, 4.2, 92.1, 0.0, 0.0, 0.0, 64.2, 35.8, 167.4 -14.156249999999998,5,a-pcom-i3,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,04390050, 28.8, 4.1, 11.0, 54.7, 0.0, 0.0, 1.4, 71.4, 28.6, 72.8 -1,1,a-pcom-i3,2016-17,Conway - Conway Grammar,00680005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.8, 11.2, 35.8 -1,1,a-pcom-i3,2016-17,Danvers - Danvers High,00710505, 0.9, 0.0, 0.9, 98.2, 0.0, 0.0, 0.0, 57.5, 42.5, 113.3 -1,1,a-pcom-i3,2016-17,Danvers - Great Oak,00710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 42.4 -1,1,a-pcom-i3,2016-17,Danvers - Highlands,00710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.2, 12.8, 47.1 -1,1,a-pcom-i3,2016-17,Danvers - Holten Richmond Middle School,00710305, 0.0, 1.0, 1.0, 97.0, 0.0, 0.0, 1.0, 80.2, 19.8, 100.9 -1,1,a-pcom-i3,2016-17,Danvers - Ivan G Smith,00710032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 36.6 -1,1,a-pcom-i3,2016-17,Danvers - Riverside,00710030, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 90.7, 9.3, 66.1 -1,1,a-pcom-i3,2016-17,Danvers - Willis E Thorpe,00710045, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 89.0, 11.0, 47.2 -1,1,a-pcom-i3,2016-17,Dartmouth - Andrew B. Cushman School,00720005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.3, 0.7, 25.7 -1,1,a-pcom-i3,2016-17,Dartmouth - Dartmouth High,00720505, 0.0, 0.0, 0.0, 99.1, 0.0, 0.0, 0.9, 68.2, 31.8, 108.3 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Dartmouth - Dartmouth Middle,00720050, 2.7, 0.0, 0.0, 96.4, 0.0, 0.0, 0.9, 63.6, 36.4, 111.6 -1,1,a-pcom-i3,2016-17,Dartmouth - George H Potter,00720030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 52.3 -1,1,a-pcom-i3,2016-17,Dartmouth - James M. Quinn School,00720040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 100.2 -1,1,a-pcom-i3,2016-17,Dartmouth - Joseph Demello,00720015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 46.4 -1,1,a-pcom-i3,2016-17,Dedham - Avery,00730010, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 94.0, 6.0, 52.7 -2.8125,2.81,a-pcom-i3,2016-17,Dedham - Dedham High,00730505, 1.7, 3.1, 4.2, 91.0, 0.0, 0.0, 0.0, 74.2, 25.8, 96.1 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Dedham - Dedham Middle School,00730305, 1.1, 0.0, 1.1, 96.7, 0.0, 0.0, 1.1, 77.8, 22.2, 92.3 -1,1,a-pcom-i3,2016-17,Dedham - Early Childhood Center,00730005, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 95.9, 4.1, 50.8 -1,1,a-pcom-i3,2016-17,Dedham - Greenlodge,00730025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 43.6 -1,1,a-pcom-i3,2016-17,Dedham - Oakdale,00730030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.4, 0.6, 36.0 -1,1,a-pcom-i3,2016-17,Dedham - Riverdale,00730045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 35.1 -1,1,a-pcom-i3,2016-17,Deerfield - Deerfield Elementary,00740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 79.2 -1.25,1.25,a-pcom-i3,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,06450505, 1.9, 0.0, 1.4, 96.0, 0.0, 0.0, 0.6, 66.3, 33.7, 126.6 -1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,06450005, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 95.5, 4.5, 76.1 -1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,06450015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 47.5 -1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Mattacheese Middle School,06450305, 0.7, 0.0, 0.0, 98.0, 0.0, 0.0, 1.3, 75.9, 24.1, 79.4 -1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,06450050, 1.1, 0.0, 0.0, 97.5, 0.0, 0.0, 1.4, 92.0, 8.0, 72.3 -1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Station Avenue Elementary,06450025, 0.8, 0.0, 1.7, 97.5, 0.0, 0.0, 0.0, 89.8, 10.2, 59.1 -1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dighton Elementary,06500005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 61.3 -1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dighton Middle School,06500305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.2, 24.8, 43.2 -1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,06500505, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 69.5, 30.5, 129.2 -1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,06500310, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 85.6, 14.4, 67.1 -1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Palmer River,06500010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.0, 3.0, 72.1 -1,1,a-pcom-i3,2016-17,Douglas - Douglas Elementary School,00770015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.9, 12.1, 43.1 -1,1,a-pcom-i3,2016-17,Douglas - Douglas High School,00770505, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 69.2, 30.8, 58.5 -1,1,a-pcom-i3,2016-17,Douglas - Douglas Middle School,00770305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 37.9 -1,1,a-pcom-i3,2016-17,Douglas - Douglas Primary School,00770005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 33.9 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Dover - Chickering,00780005, 1.8, 0.0, 2.0, 96.2, 0.0, 0.0, 0.0, 92.1, 7.9, 84.6 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,06550505, 0.7, 0.9, 2.8, 95.6, 0.0, 0.0, 0.0, 61.7, 38.3, 88.7 -2.562500000000001,2.56,a-pcom-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,06550405, 3.5, 1.3, 3.4, 91.8, 0.0, 0.0, 0.0, 76.0, 24.0, 74.5 -1,1,a-pcom-i3,2016-17,Dracut - Brookside Elementary,00790035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 40.8 -1,1,a-pcom-i3,2016-17,Dracut - Dracut Senior High,00790505, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 65.7, 34.3, 91.4 -1,1,a-pcom-i3,2016-17,Dracut - George H. Englesby Elementary School,00790045, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 90.6, 9.4, 46.5 -1,1,a-pcom-i3,2016-17,Dracut - Greenmont Avenue,00790030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 29.9 -1,1,a-pcom-i3,2016-17,Dracut - Joseph A Campbell Elementary,00790020, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 94.2, 5.8, 62.6 -1,1,a-pcom-i3,2016-17,Dracut - Justus C. Richardson Middle School,00790410, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 82.4, 17.6, 81.8 -22.96875,5,a-pcom-i3,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,04070405, 53.4, 3.9, 9.7, 26.5, 3.2, 0.0, 3.2, 87.0, 13.0, 30.9 -1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Charlton Elementary,06580020, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 97.0, 3.0, 54.0 -1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Charlton Middle School,06580310, 0.0, 0.0, 1.4, 97.3, 1.4, 0.0, 0.0, 75.4, 24.6, 73.5 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Dudley-Charlton Reg - Dudley Elementary,06580005, 0.0, 0.0, 2.5, 94.8, 2.7, 0.0, 0.0, 97.0, 3.0, 37.0 -1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Dudley Middle School,06580305, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 76.6, 23.4, 54.3 -1.09375,1.09,a-pcom-i3,2016-17,Dudley-Charlton Reg - Heritage School,06580030, 0.0, 0.0, 0.0, 96.5, 0.0, 0.0, 3.5, 94.6, 5.4, 57.9 -1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Mason Road School,06580010, 0.0, 0.0, 0.0, 96.9, 3.1, 0.0, 0.0, 99.7, 0.3, 32.6 -1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,06580505, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 54.7, 45.3, 91.0 -1,1,a-pcom-i3,2016-17,Duxbury - Alden School,00820004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 86.2 -1,1,a-pcom-i3,2016-17,Duxbury - Chandler Elementary,00820006, 0.0, 1.2, 1.2, 97.6, 0.0, 0.0, 0.0, 96.7, 3.3, 84.8 -1,1,a-pcom-i3,2016-17,Duxbury - Duxbury High,00820505, 0.9, 0.2, 0.0, 99.0, 0.0, 0.0, 0.0, 66.4, 33.6, 116.6 -1,1,a-pcom-i3,2016-17,Duxbury - Duxbury Middle,00820305, 1.3, 1.0, 0.0, 97.7, 0.0, 0.0, 0.0, 82.1, 17.9, 78.9 -1,1,a-pcom-i3,2016-17,East Bridgewater - Central,00830005, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 95.4, 4.6, 65.9 -1.1562500000000009,1.16,a-pcom-i3,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,00830505, 1.2, 0.0, 2.5, 96.3, 0.0, 0.0, 0.0, 65.4, 34.6, 81.4 -1,1,a-pcom-i3,2016-17,East Bridgewater - Gordon W Mitchell,00830010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.7, 17.3, 81.0 -1,1,a-pcom-i3,2016-17,East Longmeadow - Birchland Park,00870305, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 77.1, 22.9, 85.1 -1.6562499999999991,1.66,a-pcom-i3,2016-17,East Longmeadow - East Longmeadow High,00870505, 0.0, 1.1, 3.2, 94.7, 0.0, 0.0, 1.1, 67.2, 32.8, 94.9 -1,1,a-pcom-i3,2016-17,East Longmeadow - Mapleshade,00870010, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 82.2, 17.8, 45.0 -1.3125000000000009,1.31,a-pcom-i3,2016-17,East Longmeadow - Meadow Brook,00870013, 0.0, 0.0, 2.0, 95.8, 0.0, 0.0, 2.2, 97.8, 2.2, 90.4 -1.25,1.25,a-pcom-i3,2016-17,East Longmeadow - Mountain View,00870015, 0.0, 1.8, 2.2, 96.0, 0.0, 0.0, 0.0, 89.0, 11.0, 45.4 -1,1,a-pcom-i3,2016-17,Eastham - Eastham Elementary,00850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 42.1 -1,1,a-pcom-i3,2016-17,Easthampton - Center School,00860005, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 96.2, 3.8, 26.2 -1.25,1.25,a-pcom-i3,2016-17,Easthampton - Easthampton High,00860505, 0.0, 2.0, 2.0, 96.0, 0.0, 0.0, 0.0, 64.4, 35.6, 50.6 -1,1,a-pcom-i3,2016-17,Easthampton - Maple,00860010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.0, 2.0, 39.5 -1,1,a-pcom-i3,2016-17,Easthampton - Neil A Pepin,00860020, 0.0, 0.0, 0.0, 98.5, 0.0, 0.0, 1.5, 96.3, 3.7, 27.2 -1,1,a-pcom-i3,2016-17,Easthampton - White Brook Middle School,00860305, 1.8, 0.0, 0.0, 98.2, 0.0, 0.0, 0.0, 71.3, 28.7, 55.8 -1,1,a-pcom-i3,2016-17,Easton - Center School,00880003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 34.6 -1,1,a-pcom-i3,2016-17,Easton - Easton Middle School,00880405, 1.0, 0.0, 1.0, 96.9, 0.0, 0.0, 1.0, 79.3, 20.7, 97.8 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Easton - Moreau Hall,00880020, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 90.8, 9.2, 28.9 -1.5312500000000018,1.53,a-pcom-i3,2016-17,Easton - Oliver Ames High,00880505, 1.7, 0.9, 2.3, 95.1, 0.0, 0.0, 0.0, 62.8, 37.2, 115.0 -1,1,a-pcom-i3,2016-17,Easton - Parkview Elementary,00880015, 0.8, 0.0, 0.0, 99.2, 0.0, 0.0, 0.0, 95.7, 4.3, 47.9 -1,1,a-pcom-i3,2016-17,Easton - Richardson Olmsted School,00880025, 0.6, 0.0, 1.1, 97.2, 0.0, 0.0, 1.1, 91.0, 9.0, 93.9 -1,1,a-pcom-i3,2016-17,Edgartown - Edgartown Elementary,00890005, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 85.6, 14.4, 84.7 -17.593749999999996,5,a-pcom-i3,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),04520505, 33.5, 2.7, 14.7, 43.7, 0.0, 0.0, 5.4, 59.8, 40.2, 37.3 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Erving - Erving Elementary,00910030, 0.0, 0.0, 0.0, 95.6, 0.0, 0.0, 4.4, 88.0, 12.0, 45.0 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,08170505, 2.8, 0.6, 0.6, 96.1, 0.0, 0.0, 0.0, 57.7, 42.3, 178.6 -1,1,a-pcom-i3,2016-17,Everett - Adams School,00930003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 23.6 -7.124999999999999,5,a-pcom-i3,2016-17,Everett - Devens School,00930030, 12.5, 0.0, 5.0, 77.2, 0.0, 0.0, 5.3, 59.5, 40.5, 40.1 -5.187499999999998,5,a-pcom-i3,2016-17,Everett - Everett High,00930505, 6.0, 3.7, 5.2, 83.4, 0.9, 0.4, 0.4, 52.0, 48.0, 231.5 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Everett - George Keverian School,00930028, 1.3, 0.3, 1.3, 95.8, 0.0, 1.3, 0.0, 84.8, 15.2, 77.5 -2.1875,2.19,a-pcom-i3,2016-17,Everett - Lafayette School,00930038, 1.0, 4.0, 2.0, 93.0, 0.0, 0.0, 0.0, 82.9, 17.1, 99.6 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Everett - Madeline English School,00930018, 2.1, 2.1, 2.1, 93.6, 0.0, 0.0, 0.0, 87.3, 12.7, 93.2 -2.0624999999999982,2.06,a-pcom-i3,2016-17,Everett - Parlin School,00930058, 0.0, 1.5, 5.1, 93.4, 0.0, 0.0, 0.0, 85.1, 14.9, 66.8 -3.843749999999999,3.84,a-pcom-i3,2016-17,Everett - Sumner G. Whittier School,00930010, 6.5, 0.0, 4.2, 87.7, 0.0, 0.0, 1.6, 87.9, 12.1, 61.9 -2.562500000000001,2.56,a-pcom-i3,2016-17,Everett - Webster School,00930015, 1.1, 2.3, 4.8, 91.8, 0.0, 0.0, 0.0, 95.9, 4.1, 88.6 -5.78125,5,a-pcom-i3,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,04100205, 4.9, 0.8, 12.9, 81.5, 0.0, 0.0, 0.0, 75.7, 24.3, 132.1 -1,1,a-pcom-i3,2016-17,Fairhaven - East Fairhaven,00940010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.2, 2.8, 53.0 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Fairhaven - Fairhaven High,00940505, 1.3, 0.0, 1.3, 94.7, 0.0, 0.0, 2.7, 59.5, 40.5, 74.9 -1,1,a-pcom-i3,2016-17,Fairhaven - Hastings Middle,00940305, 0.0, 0.0, 0.0, 98.2, 0.0, 0.0, 1.8, 80.1, 19.9, 55.2 -1,1,a-pcom-i3,2016-17,Fairhaven - Leroy Wood,00940030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 55.5 -1.7812500000000009,1.78,a-pcom-i3,2016-17,Fall River - B M C Durfee High,00950505, 1.9, 0.8, 1.9, 94.3, 0.0, 0.0, 1.1, 61.9, 38.1, 262.7 -1,1,a-pcom-i3,2016-17,Fall River - Carlton M. Viveiros Elementary School,00950009, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 93.4, 6.6, 79.0 -1,1,a-pcom-i3,2016-17,Fall River - Fall River Gateway to College @ BCC,00950515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.5 -1.5625,1.56,a-pcom-i3,2016-17,Fall River - Henry Lord Community School,00950017, 0.0, 0.0, 3.7, 95.0, 0.0, 0.0, 1.2, 95.0, 5.0, 80.5 -2.1562500000000018,2.16,a-pcom-i3,2016-17,Fall River - James Tansey,00950140, 0.0, 0.0, 3.5, 93.1, 0.0, 0.0, 3.5, 82.7, 17.3, 28.9 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Fall River - John J Doran,00950045, 0.0, 0.0, 3.2, 95.2, 0.0, 0.0, 1.6, 81.9, 18.1, 62.5 -3.59375,3.59,a-pcom-i3,2016-17,Fall River - Letourneau Elementary School,00950013, 5.7, 1.4, 4.3, 88.5, 0.0, 0.0, 0.0, 93.3, 6.7, 69.8 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Fall River - Mary Fonseca Elementary School,00950011, 1.3, 0.0, 2.5, 94.9, 0.0, 0.0, 1.3, 86.7, 13.3, 79.0 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Fall River - Matthew J Kuss Middle,00950320, 1.1, 1.1, 0.0, 95.6, 0.0, 0.0, 2.2, 64.0, 36.0, 91.2 -1.9375000000000009,1.94,a-pcom-i3,2016-17,Fall River - Morton Middle,00950315, 0.0, 5.0, 1.2, 93.8, 0.0, 0.0, 0.0, 74.6, 25.4, 80.6 -1,1,a-pcom-i3,2016-17,Fall River - North End Elementary,00950005, 0.0, 2.5, 0.0, 97.5, 0.0, 0.0, 0.0, 95.3, 4.7, 80.9 -7.875000000000001,5,a-pcom-i3,2016-17,Fall River - Resiliency Middle School,00950335, 10.8, 0.0, 7.2, 74.8, 0.0, 0.0, 7.2, 71.2, 28.8, 13.9 -5.656249999999998,5,a-pcom-i3,2016-17,Fall River - Resiliency Preparatory School,00950325, 14.3, 0.0, 3.9, 81.9, 0.0, 0.0, 0.0, 52.9, 47.1, 25.9 -1,1,a-pcom-i3,2016-17,Fall River - Samuel Watson,00950145, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 97.1, 2.9, 34.1 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Fall River - Spencer Borden,00950130, 1.2, 0.0, 1.2, 96.4, 0.0, 0.0, 1.2, 90.6, 9.4, 82.6 -3.5625000000000018,3.56,a-pcom-i3,2016-17,Fall River - Stone Day School,00950340, 7.6, 0.0, 0.0, 88.6, 0.0, 0.0, 3.8, 70.0, 30.0, 26.4 -1,1,a-pcom-i3,2016-17,Fall River - Talbot Innovation School,00950305, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 76.8, 23.2, 66.5 -1.5312500000000018,1.53,a-pcom-i3,2016-17,Fall River - William S Greene,00950065, 0.0, 1.2, 3.7, 95.1, 0.0, 0.0, 0.0, 95.0, 5.0, 81.2 -2.250000000000001,2.25,a-pcom-i3,2016-17,Falmouth - East Falmouth Elementary,00960005, 5.7, 0.0, 0.0, 92.8, 0.0, 0.0, 1.5, 88.2, 11.8, 67.7 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Falmouth - Falmouth High,00960505, 0.9, 0.0, 2.8, 96.3, 0.0, 0.0, 0.0, 68.1, 31.9, 108.5 -2.593749999999999,2.59,a-pcom-i3,2016-17,Falmouth - Lawrence,00960405, 4.1, 2.8, 1.4, 91.7, 0.0, 0.0, 0.0, 80.7, 19.3, 72.5 -2.5,2.5,a-pcom-i3,2016-17,Falmouth - Morse Pond School,00960305, 4.0, 1.3, 1.3, 92.0, 0.0, 0.0, 1.3, 85.9, 14.1, 74.8 -1,1,a-pcom-i3,2016-17,Falmouth - Mullen-Hall,00960020, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 91.9, 8.1, 61.9 -1.40625,1.41,a-pcom-i3,2016-17,Falmouth - North Falmouth Elementary,00960030, 2.3, 0.0, 2.3, 95.5, 0.0, 0.0, 0.0, 88.7, 11.3, 44.1 -2.9375000000000018,2.94,a-pcom-i3,2016-17,Falmouth - Teaticket,00960015, 5.6, 0.0, 1.9, 90.6, 0.0, 0.0, 1.9, 97.2, 2.8, 53.3 -1,1,a-pcom-i3,2016-17,Farmington River Reg - Farmington River Elementary,06620020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 26.0 -4.0625,4.06,a-pcom-i3,2016-17,Fitchburg - Arthur M Longsjo Middle School,00970315, 6.5, 0.0, 6.5, 87.0, 0.0, 0.0, 0.0, 72.7, 27.3, 77.0 -1,1,a-pcom-i3,2016-17,Fitchburg - Crocker Elementary,00970016, 1.5, 0.0, 1.5, 97.0, 0.0, 0.0, 0.0, 93.9, 6.1, 65.9 -4.53125,4.53,a-pcom-i3,2016-17,Fitchburg - Fitchburg High,00970505, 3.1, 0.8, 9.8, 85.5, 0.0, 0.0, 0.8, 60.5, 39.5, 128.5 -7.5,5,a-pcom-i3,2016-17,Fitchburg - Goodrich Academy,00970510, 7.1, 0.0, 11.3, 76.0, 0.0, 0.0, 5.6, 66.2, 33.8, 17.8 -3.59375,3.59,a-pcom-i3,2016-17,Fitchburg - McKay Arts Academy,00970340, 1.0, 0.0, 10.5, 88.5, 0.0, 0.0, 0.0, 89.5, 10.5, 95.5 -2.9375000000000018,2.94,a-pcom-i3,2016-17,Fitchburg - Memorial Intermediate,00970048, 4.0, 0.0, 5.4, 90.6, 0.0, 0.0, 0.0, 82.5, 17.5, 74.4 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Fitchburg - Reingold Elementary,00970043, 1.4, 1.4, 2.8, 94.4, 0.0, 0.0, 0.0, 88.9, 11.1, 71.9 -2.3125000000000018,2.31,a-pcom-i3,2016-17,Fitchburg - South Street Elementary,00970060, 1.1, 0.0, 6.3, 92.6, 0.0, 0.0, 0.0, 91.6, 8.4, 94.8 -1,1,a-pcom-i3,2016-17,Florida - Abbott Memorial,00980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 22.1 -1,1,a-pcom-i3,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,04130505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.9, 36.1, 31.2 -1,1,a-pcom-i3,2016-17,Foxborough - Charles Taylor Elementary,00990050, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 89.7, 10.3, 34.2 -1,1,a-pcom-i3,2016-17,Foxborough - Foxborough High,00990505, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 69.0, 31.0, 108.2 -1,1,a-pcom-i3,2016-17,Foxborough - John J Ahern,00990405, 0.0, 2.0, 0.0, 97.0, 0.0, 1.0, 0.0, 80.7, 19.3, 101.1 -1,1,a-pcom-i3,2016-17,Foxborough - Mabelle M Burrell,00990015, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 92.6, 7.4, 41.7 -1,1,a-pcom-i3,2016-17,Foxborough - Vincent M Igo Elementary,00990020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.9, 7.1, 54.2 -3.3124999999999982,3.31,a-pcom-i3,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,04460550, 3.1, 0.0, 7.5, 89.4, 0.0, 0.0, 0.0, 79.0, 21.0, 123.1 -11.75,5,a-pcom-i3,2016-17,Framingham - Barbieri Elementary,01000035, 1.1, 0.0, 36.5, 62.4, 0.0, 0.0, 0.0, 90.9, 9.1, 92.7 -4.937499999999999,4.94,a-pcom-i3,2016-17,Framingham - Brophy,01000006, 0.0, 1.5, 14.3, 84.2, 0.0, 0.0, 0.0, 90.7, 9.3, 66.5 -2.3125000000000018,2.31,a-pcom-i3,2016-17,Framingham - Cameron Middle School,01000302, 2.5, 1.2, 3.7, 92.6, 0.0, 0.0, 0.0, 79.9, 20.1, 81.4 -1.40625,1.41,a-pcom-i3,2016-17,Framingham - Charlotte A Dunning,01000007, 0.3, 0.0, 4.2, 95.5, 0.0, 0.0, 0.0, 90.7, 9.3, 71.0 -3.343750000000001,3.34,a-pcom-i3,2016-17,Framingham - Framingham High School,01000515, 2.0, 2.2, 6.0, 89.3, 0.0, 0.0, 0.4, 66.0, 34.0, 248.4 -4.187500000000002,4.19,a-pcom-i3,2016-17,Framingham - Fuller Middle,01000305, 4.9, 0.0, 8.5, 86.6, 0.0, 0.0, 0.0, 77.3, 22.7, 82.0 -1.875,1.88,a-pcom-i3,2016-17,Framingham - Hemenway,01000015, 0.0, 1.3, 4.7, 94.0, 0.0, 0.0, 0.0, 94.8, 5.2, 77.2 -6.09375,5,a-pcom-i3,2016-17,Framingham - Juniper Hill School,01000001, 1.9, 1.7, 15.8, 80.5, 0.0, 0.0, 0.0, 94.8, 5.2, 57.6 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Framingham - King Elementary School,01000005, 0.0, 2.6, 0.0, 95.2, 0.0, 0.0, 2.2, 97.7, 2.3, 30.0 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Framingham - Mary E Stapleton Elementary,01000045, 1.4, 0.0, 2.7, 95.9, 0.0, 0.0, 0.0, 90.2, 9.8, 73.8 -3.6249999999999982,3.62,a-pcom-i3,2016-17,Framingham - Miriam F McCarthy School,01000050, 2.1, 3.2, 6.3, 88.4, 0.0, 0.0, 0.0, 92.4, 7.6, 94.9 -3.0937500000000018,3.09,a-pcom-i3,2016-17,Framingham - Potter Road,01000039, 1.8, 0.9, 7.2, 90.1, 0.0, 0.0, 0.0, 92.1, 7.9, 55.4 -4.031250000000002,4.03,a-pcom-i3,2016-17,Framingham - Walsh Middle,01000310, 2.4, 1.2, 9.2, 87.1, 0.0, 0.0, 0.0, 78.2, 21.8, 98.1 -3.7187500000000018,3.72,a-pcom-i3,2016-17,Framingham - Woodrow Wilson,01000055, 1.0, 0.0, 11.0, 88.1, 0.0, 0.0, 0.0, 90.6, 9.4, 82.0 -2.9999999999999982,3.0,a-pcom-i3,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,04780505, 2.9, 0.0, 6.7, 90.4, 0.0, 0.0, 0.0, 66.1, 33.9, 60.1 -1,1,a-pcom-i3,2016-17,Franklin - Annie Sullivan Middle School,01010040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.3, 14.7, 54.3 -1,1,a-pcom-i3,2016-17,Franklin - Davis Thayer,01010035, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 96.3, 3.7, 34.6 -1.3437499999999991,1.34,a-pcom-i3,2016-17,Franklin - Franklin Early Childhood Development Center,01010003, 0.0, 4.3, 0.0, 95.7, 0.0, 0.0, 0.0, 100.0, 0.0, 23.5 -1,1,a-pcom-i3,2016-17,Franklin - Franklin High,01010505, 0.0, 1.8, 0.0, 97.2, 1.1, 0.0, 0.0, 70.6, 29.4, 171.1 -1,1,a-pcom-i3,2016-17,Franklin - Helen Keller Elementary,01010012, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 50.7 -1,1,a-pcom-i3,2016-17,Franklin - Horace Mann,01010405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.5, 24.5, 57.2 -2.7812500000000018,2.78,a-pcom-i3,2016-17,Franklin - J F Kennedy Memorial,01010013, 4.4, 4.4, 0.0, 91.1, 0.0, 0.0, 0.0, 93.3, 6.7, 45.1 -1,1,a-pcom-i3,2016-17,Franklin - Jefferson Elementary,01010010, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 98.4, 1.6, 45.7 -1,1,a-pcom-i3,2016-17,Franklin - Oak Street Elementary,01010030, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 97.9, 2.1, 54.4 -1,1,a-pcom-i3,2016-17,Franklin - Parmenter,01010032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.3, 9.7, 51.4 -1,1,a-pcom-i3,2016-17,Franklin - Remington Middle,01010310, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 76.1, 23.9, 62.7 -1,1,a-pcom-i3,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,08180605, 1.3, 0.0, 0.0, 97.5, 0.0, 0.0, 1.3, 44.5, 55.4, 80.0 -1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Apponequet Regional High,06650505, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 69.0, 31.0, 94.1 -1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Assawompset Elementary School,06650002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 45.7 -1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Freetown Elementary School,06650001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 55.0 -1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,06650305, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 73.5, 26.5, 75.6 -1,1,a-pcom-i3,2016-17,Freetown-Lakeville - George R Austin Intermediate School,06650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 51.9 -1,1,a-pcom-i3,2016-17,Frontier - Frontier Regional,06700505, 0.0, 0.0, 0.0, 97.0, 2.0, 0.0, 1.0, 68.6, 31.4, 101.4 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Gardner - Elm Street School,01030001, 0.0, 0.0, 1.5, 95.6, 0.0, 0.0, 3.0, 94.1, 5.9, 67.6 -1,1,a-pcom-i3,2016-17,Gardner - Gardner Academy for Learning and Technology,01030515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 32.0, 68.0, 11.6 -3.6249999999999982,3.62,a-pcom-i3,2016-17,Gardner - Gardner High,01030505, 2.6, 3.9, 1.3, 88.4, 0.0, 0.0, 3.9, 64.0, 36.0, 77.6 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Gardner - Gardner Middle School,01030405, 1.6, 0.0, 0.0, 96.1, 0.0, 0.0, 2.4, 84.2, 15.8, 63.8 -1.40625,1.41,a-pcom-i3,2016-17,Gardner - Waterford Street,01030020, 1.5, 0.0, 0.0, 95.5, 0.0, 0.0, 3.0, 93.2, 6.8, 66.2 -1,1,a-pcom-i3,2016-17,Gateway - Chester Elementary,06720059, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 22.4 -1.40625,1.41,a-pcom-i3,2016-17,Gateway - Gateway Regional High,06720505, 0.0, 0.0, 0.0, 95.5, 0.0, 4.5, 0.0, 70.3, 29.7, 44.8 -1,1,a-pcom-i3,2016-17,Gateway - Gateway Regional Middle School,06720405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.4, 21.6, 30.1 -1,1,a-pcom-i3,2016-17,Gateway - Littleville Elementary School,06720143, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 38.3 -1,1,a-pcom-i3,2016-17,Georgetown - Georgetown High School,01050505, 0.0, 0.0, 1.8, 96.9, 0.0, 1.3, 0.0, 64.0, 36.0, 55.2 -1,1,a-pcom-i3,2016-17,Georgetown - Georgetown Middle School,01050305, 0.0, 0.0, 0.0, 97.9, 0.0, 2.1, 0.0, 78.6, 21.4, 26.5 -1,1,a-pcom-i3,2016-17,Georgetown - Penn Brook,01050010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 73.0 -1,1,a-pcom-i3,2016-17,Georgetown - Perley Elementary,01050005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 12.6 -1,1,a-pcom-i3,2016-17,Gill-Montague - Gill Elementary,06740005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.8, 14.2, 15.5 -1,1,a-pcom-i3,2016-17,Gill-Montague - Great Falls Middle,06740310, 1.1, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 72.8, 27.2, 40.1 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Gill-Montague - Hillcrest Elementary School,06740015, 0.0, 0.0, 3.1, 95.3, 0.0, 0.0, 1.6, 99.4, 0.6, 32.3 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Gill-Montague - Sheffield Elementary School,06740050, 0.0, 0.0, 2.4, 96.4, 0.0, 0.0, 1.2, 89.1, 10.9, 41.7 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Gill-Montague - Turners Fall High,06740505, 1.0, 0.0, 3.4, 95.6, 0.0, 0.0, 0.0, 70.3, 29.7, 44.1 -2.7812500000000018,2.78,a-pcom-i3,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,04960305, 5.5, 1.7, 1.7, 91.1, 0.0, 0.0, 0.0, 72.6, 27.4, 58.8 -1,1,a-pcom-i3,2016-17,Gloucester - Beeman Memorial,01070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 50.6 -1,1,a-pcom-i3,2016-17,Gloucester - East Gloucester Elementary,01070020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.5, 9.5, 37.8 -1,1,a-pcom-i3,2016-17,Gloucester - Gloucester High,01070505, 0.9, 0.0, 0.9, 98.3, 0.0, 0.0, 0.0, 60.0, 40.0, 114.8 -1,1,a-pcom-i3,2016-17,Gloucester - Gloucester PreSchool,01070025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 28.1 -1,1,a-pcom-i3,2016-17,Gloucester - Plum Cove School,01070042, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 37.9 -1,1,a-pcom-i3,2016-17,Gloucester - Ralph B O'Maley Middle,01070305, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 77.5, 22.5, 88.9 -1,1,a-pcom-i3,2016-17,Gloucester - Veterans Memorial,01070045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.3, 5.7, 41.8 -1,1,a-pcom-i3,2016-17,Gloucester - West Parish,01070050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 55.6 -1,1,a-pcom-i3,2016-17,Gosnold - Cuttyhunk Elementary,01090005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 1.5 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Grafton - Grafton High School,01100505, 0.0, 1.0, 1.9, 96.1, 0.0, 0.0, 1.0, 67.3, 32.7, 104.7 -1,1,a-pcom-i3,2016-17,Grafton - Grafton Middle,01100305, 0.0, 2.0, 0.0, 98.0, 0.0, 0.0, 0.0, 72.7, 27.3, 51.3 -1,1,a-pcom-i3,2016-17,Grafton - Millbury Street Elementary School,01100200, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 93.3, 6.7, 95.8 -1,1,a-pcom-i3,2016-17,Grafton - North Grafton Elementary,01100025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 45.1 -1,1,a-pcom-i3,2016-17,Grafton - North Street Elementary School,01100030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 67.9 -1,1,a-pcom-i3,2016-17,Grafton - South Grafton Elementary,01100005, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 95.8, 4.2, 59.0 -2.8437499999999982,2.84,a-pcom-i3,2016-17,Granby - East Meadow,01110004, 4.5, 4.5, 0.0, 90.9, 0.0, 0.0, 0.0, 75.2, 24.8, 22.0 -1.9062499999999982,1.91,a-pcom-i3,2016-17,Granby - Granby Jr Sr High School,01110505, 2.0, 2.0, 2.0, 93.9, 0.0, 0.0, 0.0, 68.4, 31.6, 49.4 -1,1,a-pcom-i3,2016-17,Granby - West Street,01110010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 32.5 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,08210605, 1.9, 0.0, 1.3, 96.3, 0.5, 0.0, 0.0, 42.6, 57.4, 158.3 -3.9374999999999982,3.94,a-pcom-i3,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,08230605, 0.5, 1.0, 10.6, 87.4, 0.0, 0.0, 0.5, 60.3, 39.7, 196.8 -1.8437500000000018,1.84,a-pcom-i3,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,08280605, 1.8, 1.8, 2.2, 94.1, 0.0, 0.0, 0.0, 61.3, 38.7, 271.1 -2.2187499999999982,2.22,a-pcom-i3,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,08250605, 2.4, 0.5, 3.5, 92.9, 0.7, 0.0, 0.0, 50.5, 49.5, 287.8 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Greenfield - Discovery School at Four Corners,01140025, 0.0, 2.1, 2.1, 95.9, 0.0, 0.0, 0.0, 91.0, 9.0, 48.4 -1,1,a-pcom-i3,2016-17,Greenfield - Federal Street School,01140010, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 92.1, 7.9, 42.3 -1,1,a-pcom-i3,2016-17,Greenfield - Green River,01140030, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 92.7, 7.3, 5.6 -1,1,a-pcom-i3,2016-17,Greenfield - Greenfield High,01140505, 1.4, 0.0, 1.4, 97.3, 0.0, 0.0, 0.0, 73.4, 26.6, 74.0 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Greenfield - Greenfield Middle,01140305, 1.5, 1.7, 1.7, 95.2, 0.0, 0.0, 0.0, 82.0, 18.0, 68.9 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Greenfield - Newton School,01140035, 0.0, 2.1, 2.6, 95.3, 0.0, 0.0, 0.0, 93.9, 6.1, 38.5 -1,1,a-pcom-i3,2016-17,Greenfield - The Academy of Early Learning at North Parish,01140005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 30.5 -1,1,a-pcom-i3,2016-17,Groton-Dunstable - Boutwell School,06730001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 20.0 -1,1,a-pcom-i3,2016-17,Groton-Dunstable - Florence Roche School,06730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 62.5 -1,1,a-pcom-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional,06730505, 0.0, 1.1, 1.1, 97.7, 0.0, 0.0, 0.0, 63.6, 36.4, 87.8 -1.25,1.25,a-pcom-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,06730305, 0.0, 1.0, 1.0, 96.0, 1.0, 0.0, 1.0, 79.7, 20.3, 99.7 -1,1,a-pcom-i3,2016-17,Groton-Dunstable - Swallow/Union School,06730005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 48.2 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Hadley - Hadley Elementary,01170015, 1.9, 3.7, 0.0, 94.4, 0.0, 0.0, 0.0, 87.0, 13.0, 53.7 -1,1,a-pcom-i3,2016-17,Hadley - Hopkins Academy,01170505, 2.6, 0.0, 0.0, 97.4, 0.0, 0.0, 0.0, 66.7, 33.3, 38.6 -1,1,a-pcom-i3,2016-17,Halifax - Halifax Elementary,01180005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.0, 14.0, 63.5 -1,1,a-pcom-i3,2016-17,Hamilton-Wenham - Bessie Buker Elementary,06750007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 34.3 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Hamilton-Wenham - Cutler School,06750010, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 93.9, 6.1, 39.5 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,06750505, 0.0, 0.0, 1.4, 94.6, 0.0, 0.0, 4.1, 62.4, 37.6, 73.6 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Hamilton-Wenham - Miles River Middle,06750310, 0.0, 3.4, 1.7, 94.8, 0.0, 0.0, 0.0, 90.0, 10.0, 58.0 -1.09375,1.09,a-pcom-i3,2016-17,Hamilton-Wenham - Winthrop School,06750015, 0.0, 1.8, 0.0, 96.5, 0.0, 0.0, 1.8, 94.3, 5.7, 56.4 -6.218750000000002,5,a-pcom-i3,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,04990305, 7.0, 4.2, 7.0, 80.1, 0.0, 0.0, 1.8, 52.9, 47.1, 57.0 -1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Green Meadows Elementary,06800005, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 100.0, 0.0, 49.2 -1.3437499999999991,1.34,a-pcom-i3,2016-17,Hampden-Wilbraham - Mile Tree Elementary,06800025, 2.2, 0.0, 2.2, 95.7, 0.0, 0.0, 0.0, 97.9, 2.1, 46.5 -1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Minnechaug Regional High,06800505, 0.9, 0.9, 0.0, 98.2, 0.0, 0.0, 0.0, 66.7, 33.3, 111.1 -1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Soule Road,06800030, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 97.2, 2.8, 35.4 -1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Stony Hill School,06800050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 35.0 -1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Thornton Burgess,06800305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 31.2 -1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Wilbraham Middle,06800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.0, 23.0, 52.1 -1,1,a-pcom-i3,2016-17,Hampshire - Hampshire Regional High,06830505, 0.9, 0.9, 0.0, 98.1, 0.0, 0.0, 0.0, 70.2, 29.8, 106.9 -1,1,a-pcom-i3,2016-17,Hancock - Hancock Elementary,01210005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 10.1 -1,1,a-pcom-i3,2016-17,Hanover - Cedar Elementary,01220004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.2, 10.8, 54.6 -1,1,a-pcom-i3,2016-17,Hanover - Center Elementary,01220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 49.8 -1,1,a-pcom-i3,2016-17,Hanover - Hanover High,01220505, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 67.5, 32.5, 88.3 -1,1,a-pcom-i3,2016-17,Hanover - Hanover Middle,01220305, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 76.9, 23.1, 96.7 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Hanover - Sylvester,01220015, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 81.1, 18.9, 25.9 -1,1,a-pcom-i3,2016-17,Harvard - Bromfield,01250505, 0.0, 0.0, 1.3, 97.4, 0.0, 1.3, 0.0, 75.3, 24.7, 76.9 -1.5312500000000018,1.53,a-pcom-i3,2016-17,Harvard - Hildreth Elementary School,01250005, 1.7, 1.6, 1.6, 95.1, 0.0, 0.0, 0.0, 91.8, 8.2, 60.9 -1,1,a-pcom-i3,2016-17,Hatfield - Hatfield Elementary,01270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 39.3 -1,1,a-pcom-i3,2016-17,Hatfield - Smith Academy,01270505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.7, 36.3, 33.1 -1,1,a-pcom-i3,2016-17,Haverhill - Bartlett Kindergarten Center,01280005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 17.9 -1,1,a-pcom-i3,2016-17,Haverhill - Bradford Elementary,01280008, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 92.8, 7.2, 69.9 -1,1,a-pcom-i3,2016-17,Haverhill - Caleb Dustin Hunking,01280035, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 82.9, 17.1, 43.3 -1,1,a-pcom-i3,2016-17,Haverhill - Consentino Middle School,01280100, 1.2, 0.0, 1.2, 97.7, 0.0, 0.0, 0.0, 79.3, 20.7, 85.4 -1,1,a-pcom-i3,2016-17,Haverhill - Crowell,01280020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 20.7 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Haverhill - Dr Paul Nettle,01280050, 0.0, 1.3, 5.0, 93.7, 0.0, 0.0, 0.0, 85.3, 14.7, 79.7 -2.6874999999999982,2.69,a-pcom-i3,2016-17,Haverhill - Golden Hill,01280026, 0.0, 1.4, 7.2, 91.4, 0.0, 0.0, 0.0, 88.7, 11.3, 69.6 -1.25,1.25,a-pcom-i3,2016-17,Haverhill - Greenleaf,01280027, 0.0, 0.0, 4.0, 96.0, 0.0, 0.0, 0.0, 98.0, 2.0, 25.0 -4.718749999999998,4.72,a-pcom-i3,2016-17,Haverhill - Haverhill Alternative School,01280033, 0.0, 5.0, 10.0, 84.9, 0.0, 0.0, 0.0, 52.3, 47.7, 19.9 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Haverhill - Haverhill High,01280505, 1.5, 0.0, 4.1, 94.4, 0.0, 0.0, 0.0, 62.1, 37.9, 197.6 -1,1,a-pcom-i3,2016-17,Haverhill - John G Whittier,01280085, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 83.7, 16.3, 46.7 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Haverhill - Moody,01280045, 0.0, 2.6, 2.1, 95.3, 0.0, 0.0, 0.0, 100.0, 0.0, 38.2 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Haverhill - Pentucket Lake Elementary,01280054, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 92.8, 7.2, 78.3 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Haverhill - TEACH,01280073, 0.0, 0.0, 4.2, 95.8, 0.0, 0.0, 0.0, 76.9, 23.1, 23.7 -1.4374999999999982,1.44,a-pcom-i3,2016-17,Haverhill - Tilton,01280075, 0.0, 0.0, 4.6, 95.4, 0.0, 0.0, 0.0, 95.5, 4.5, 65.7 -1,1,a-pcom-i3,2016-17,Haverhill - Walnut Square,01280080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 13.7 -1,1,a-pcom-i3,2016-17,Hawlemont - Hawlemont Regional,06850005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.1, 10.9, 18.9 -26.968749999999996,5,a-pcom-i3,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,04190305, 58.8, 3.0, 18.3, 13.7, 0.0, 0.0, 6.1, 66.5, 33.5, 32.8 -1,1,a-pcom-i3,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,04550050, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 85.7, 14.3, 36.4 -1,1,a-pcom-i3,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,04500105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.9, 20.1, 33.7 -1.25,1.25,a-pcom-i3,2016-17,Hingham - East Elementary School,01310005, 1.3, 0.0, 1.3, 96.0, 0.0, 0.0, 1.3, 93.2, 6.8, 75.6 -1,1,a-pcom-i3,2016-17,Hingham - Hingham High,01310505, 0.0, 0.0, 0.0, 99.2, 0.0, 0.0, 0.8, 64.6, 35.4, 129.0 -1.09375,1.09,a-pcom-i3,2016-17,Hingham - Hingham Middle School,01310410, 0.9, 0.0, 1.8, 96.5, 0.0, 0.0, 0.9, 81.3, 18.7, 113.2 -1,1,a-pcom-i3,2016-17,Hingham - Plymouth River,01310019, 0.8, 0.8, 0.0, 98.4, 0.0, 0.0, 0.0, 92.0, 8.0, 61.6 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Hingham - South Elementary,01310020, 1.4, 2.8, 0.0, 95.8, 0.0, 0.0, 0.0, 96.8, 3.2, 71.0 -1,1,a-pcom-i3,2016-17,Hingham - Wm L Foster Elementary,01310010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 94.2, 5.8, 58.6 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Holbrook - Holbrook Jr Sr High,01330505, 1.9, 1.9, 0.0, 96.3, 0.0, 0.0, 0.0, 65.1, 34.9, 53.7 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Holbrook - John F Kennedy,01330018, 1.1, 0.0, 0.0, 96.7, 0.0, 0.0, 2.2, 100.0, 0.0, 45.4 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Holbrook - South,01330025, 5.2, 0.0, 0.0, 94.8, 0.0, 0.0, 0.0, 96.5, 3.5, 28.6 -1,1,a-pcom-i3,2016-17,Holland - Holland Elementary,01350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 34.9 -1,1,a-pcom-i3,2016-17,Holliston - Holliston High,01360505, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 68.6, 31.4, 101.8 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Holliston - Miller School,01360007, 0.0, 1.1, 0.2, 96.8, 0.7, 0.0, 1.1, 92.1, 7.9, 87.5 -1,1,a-pcom-i3,2016-17,Holliston - Placentino Elementary,01360010, 0.0, 1.0, 0.4, 97.7, 0.0, 0.0, 1.0, 94.7, 5.3, 104.7 -1,1,a-pcom-i3,2016-17,Holliston - Robert H. Adams Middle School,01360305, 0.0, 1.1, 1.1, 97.8, 0.0, 0.0, 0.0, 84.2, 15.8, 92.4 -7.562500000000001,5,a-pcom-i3,2016-17,Holyoke - E N White Elementary,01370045, 0.0, 0.0, 24.2, 75.8, 0.0, 0.0, 0.0, 84.4, 15.6, 71.0 -9.53125,5,a-pcom-i3,2016-17,Holyoke - H.B. Lawrence School,01370070, 4.4, 0.0, 26.1, 69.5, 0.0, 0.0, 0.0, 89.1, 10.9, 46.0 -7.781250000000002,5,a-pcom-i3,2016-17,Holyoke - Holyoke High,01370505, 1.5, 0.0, 23.5, 75.1, 0.0, 0.0, 0.0, 64.3, 35.7, 135.2 -10.437500000000002,5,a-pcom-i3,2016-17,Holyoke - Joseph Metcalf School,01370003, 0.0, 0.0, 33.4, 66.6, 0.0, 0.0, 0.0, 100.0, 0.0, 53.8 -9.624999999999998,5,a-pcom-i3,2016-17,Holyoke - Kelly Elementary,01370040, 3.1, 0.0, 26.2, 69.2, 0.0, 0.0, 1.5, 81.2, 18.8, 64.5 -7.96875,5,a-pcom-i3,2016-17,Holyoke - Lt Clayre Sullivan Elementary,01370055, 1.3, 0.0, 23.0, 74.5, 0.0, 0.0, 1.3, 91.7, 8.3, 78.8 -7.437499999999999,5,a-pcom-i3,2016-17,Holyoke - Lt Elmer J McMahon Elementary,01370015, 0.0, 1.6, 22.2, 76.2, 0.0, 0.0, 0.0, 97.0, 3.0, 63.1 -8.8125,5,a-pcom-i3,2016-17,Holyoke - Maurice A Donahue Elementary,01370060, 0.0, 0.0, 26.9, 71.8, 0.0, 0.0, 1.3, 78.8, 21.2, 77.9 -8.687499999999998,5,a-pcom-i3,2016-17,Holyoke - Morgan Full Service Community School,01370025, 10.7, 0.0, 15.2, 72.2, 0.0, 0.0, 1.8, 86.6, 13.4, 55.8 -12.437499999999998,5,a-pcom-i3,2016-17,Holyoke - William R. Peck School,01370030, 4.7, 1.6, 33.6, 60.2, 0.0, 0.0, 0.0, 70.6, 29.4, 64.3 -9.156249999999998,5,a-pcom-i3,2016-17,Holyoke - Wm J Dean Vocational Technical High,01370605, 7.7, 0.0, 21.6, 70.7, 0.0, 0.0, 0.0, 51.8, 48.2, 58.4 -12.1875,5,a-pcom-i3,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,04530005, 5.3, 1.1, 31.5, 61.0, 0.0, 0.0, 1.1, 74.9, 25.1, 93.5 -1,1,a-pcom-i3,2016-17,Hopedale - Hopedale Jr Sr High,01380505, 0.0, 0.0, 1.2, 97.4, 1.5, 0.0, 0.0, 74.5, 25.5, 68.1 -1,1,a-pcom-i3,2016-17,Hopedale - Memorial,01380010, 0.0, 1.2, 1.2, 97.7, 0.0, 0.0, 0.0, 95.4, 4.6, 85.6 -1,1,a-pcom-i3,2016-17,Hopedale - Park Street School,01380003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.5, 5.5, 18.2 -1,1,a-pcom-i3,2016-17,Hopkinton - Center,01390005, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 92.5, 7.5, 66.7 -1,1,a-pcom-i3,2016-17,Hopkinton - Elmwood,01390010, 0.0, 1.7, 0.9, 97.4, 0.0, 0.0, 0.0, 94.8, 5.2, 57.5 -1,1,a-pcom-i3,2016-17,Hopkinton - Hopkins Elementary School,01390015, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 92.1, 7.9, 56.9 -1,1,a-pcom-i3,2016-17,Hopkinton - Hopkinton High,01390505, 0.0, 1.0, 1.7, 97.3, 0.0, 0.0, 0.0, 62.9, 37.1, 120.7 -1,1,a-pcom-i3,2016-17,Hopkinton - Hopkinton Middle School,01390305, 0.0, 1.1, 1.5, 97.4, 0.0, 0.0, 0.0, 77.1, 22.9, 93.1 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Hopkinton - Hopkinton Pre-School,01390003, 5.4, 0.0, 0.0, 94.6, 0.0, 0.0, 0.0, 100.0, 0.0, 16.8 -1,1,a-pcom-i3,2016-17,Hudson - C A Farley,01410030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.6, 3.4, 65.5 -1,1,a-pcom-i3,2016-17,Hudson - David J. Quinn Middle School,01410410, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.7, 15.3, 91.3 -1,1,a-pcom-i3,2016-17,Hudson - Forest Avenue Elementary,01410015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 49.3 -1,1,a-pcom-i3,2016-17,Hudson - Hudson High,01410505, 0.7, 0.7, 0.0, 98.6, 0.0, 0.0, 0.0, 74.9, 25.1, 141.3 -1,1,a-pcom-i3,2016-17,Hudson - Mulready Elementary,01410007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.1, 2.9, 58.5 -1,1,a-pcom-i3,2016-17,Hull - Hull High,01420505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 59.9, 40.1, 47.1 -1,1,a-pcom-i3,2016-17,Hull - Lillian M Jacobs,01420015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.8, 7.2, 55.5 -1,1,a-pcom-i3,2016-17,Hull - Memorial Middle,01420305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.7, 26.3, 31.2 -2.093750000000001,2.09,a-pcom-i3,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,04350305, 1.0, 1.8, 3.9, 93.3, 0.0, 0.0, 0.0, 71.3, 28.7, 101.5 -1,1,a-pcom-i3,2016-17,Ipswich - Ipswich High,01440505, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 64.7, 35.3, 75.7 -1,1,a-pcom-i3,2016-17,Ipswich - Ipswich Middle School,01440305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 79.1, 20.9, 65.2 -1,1,a-pcom-i3,2016-17,Ipswich - Paul F Doyon Memorial,01440007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 65.0 -1,1,a-pcom-i3,2016-17,Ipswich - Winthrop,01440015, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 92.7, 7.3, 71.5 -16.5625,5,a-pcom-i3,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,04630205, 27.2, 2.6, 16.8, 47.0, 1.3, 0.0, 5.2, 76.7, 23.3, 77.3 -11.28125,5,a-pcom-i3,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,04290010, 12.1, 7.2, 13.3, 63.9, 0.0, 0.0, 3.6, 74.1, 25.9, 139.2 -1,1,a-pcom-i3,2016-17,King Philip - King Philip Middle School,06900510, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.9, 21.1, 85.1 -1,1,a-pcom-i3,2016-17,King Philip - King Philip Regional High,06900505, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 74.3, 25.7, 127.8 -1,1,a-pcom-i3,2016-17,Kingston - Kingston Elementary,01450005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.8, 9.2, 59.8 -1,1,a-pcom-i3,2016-17,Kingston - Kingston Intermediate,01450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.6, 13.4, 69.1 -1,1,a-pcom-i3,2016-17,Lanesborough - Lanesborough Elementary,01480005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 36.1 -5.093749999999999,5,a-pcom-i3,2016-17,Lawrence - Alexander B Bruce,01490015, 0.0, 0.0, 14.7, 83.7, 1.6, 0.0, 0.0, 83.9, 16.1, 62.4 -5.531250000000001,5,a-pcom-i3,2016-17,Lawrence - Arlington Middle School,01490017, 0.0, 0.0, 17.7, 82.3, 0.0, 0.0, 0.0, 59.9, 40.1, 57.4 -5.3125,5,a-pcom-i3,2016-17,Lawrence - Community Day Arlington,01490009, 0.0, 0.0, 17.0, 83.0, 0.0, 0.0, 0.0, 80.6, 19.4, 77.4 -6.5625,5,a-pcom-i3,2016-17,Lawrence - Edward F. Parthum,01490053, 0.0, 0.0, 21.0, 79.0, 0.0, 0.0, 0.0, 95.8, 4.2, 72.4 -4.781249999999999,4.78,a-pcom-i3,2016-17,Lawrence - Emily G Wetherbee,01490080, 0.0, 1.3, 14.1, 84.7, 0.0, 0.0, 0.0, 92.8, 7.2, 79.0 -5.15625,5,a-pcom-i3,2016-17,Lawrence - Francis M Leahy,01490040, 0.0, 0.0, 16.5, 83.5, 0.0, 0.0, 0.0, 95.0, 5.0, 55.7 -7.093750000000001,5,a-pcom-i3,2016-17,Lawrence - Frost Middle School,01490525, 4.1, 0.0, 16.6, 77.3, 0.0, 2.0, 0.0, 73.6, 26.4, 49.4 -5.593750000000002,5,a-pcom-i3,2016-17,Lawrence - Gerard A. Guilmette,01490022, 0.0, 1.4, 16.5, 82.1, 0.0, 0.0, 0.0, 91.8, 8.2, 73.8 -5.78125,5,a-pcom-i3,2016-17,Lawrence - Guilmette Middle School,01490025, 1.5, 0.0, 17.0, 81.5, 0.0, 0.0, 0.0, 71.1, 28.9, 65.8 -7.625000000000002,5,a-pcom-i3,2016-17,Lawrence - High School Learning Center,01490536, 0.0, 0.0, 20.4, 75.6, 3.9, 0.0, 0.0, 56.5, 43.5, 25.4 -11.4375,5,a-pcom-i3,2016-17,Lawrence - James F Hennessey,01490020, 0.0, 2.8, 33.8, 63.4, 0.0, 0.0, 0.0, 88.8, 11.2, 53.9 -11.15625,5,a-pcom-i3,2016-17,Lawrence - John Breen School,01490003, 0.0, 0.0, 35.7, 64.3, 0.0, 0.0, 0.0, 99.9, 0.1, 45.4 -10.750000000000002,5,a-pcom-i3,2016-17,Lawrence - John K Tarbox,01490075, 2.8, 0.0, 31.6, 65.6, 0.0, 0.0, 0.0, 94.2, 5.8, 35.4 -11.4375,5,a-pcom-i3,2016-17,Lawrence - Lawlor Early Childhood Center,01490002, 0.0, 0.0, 36.6, 63.4, 0.0, 0.0, 0.0, 90.9, 9.1, 22.4 -7.437499999999999,5,a-pcom-i3,2016-17,Lawrence - Lawrence Family Public Academy,01490011, 2.9, 0.0, 20.9, 76.2, 0.0, 0.0, 0.0, 99.9, 0.1, 34.4 -11.59375,5,a-pcom-i3,2016-17,Lawrence - Lawrence High School,01490515, 3.1, 2.5, 30.9, 62.9, 0.6, 0.0, 0.0, 63.3, 36.7, 355.9 -6.031249999999999,5,a-pcom-i3,2016-17,Lawrence - Oliver Partnership School,01490048, 0.0, 0.0, 19.3, 80.7, 0.0, 0.0, 0.0, 89.3, 10.7, 65.9 -4.0625,4.06,a-pcom-i3,2016-17,Lawrence - Parthum Middle School,01490027, 0.0, 1.8, 11.2, 87.0, 0.0, 0.0, 0.0, 74.6, 25.4, 55.4 -12.624999999999998,5,a-pcom-i3,2016-17,Lawrence - Phoenix Academy Lawrence,01490540, 4.9, 0.0, 35.5, 59.6, 0.0, 0.0, 0.0, 75.2, 24.8, 20.3 -6.499999999999999,5,a-pcom-i3,2016-17,Lawrence - Robert Frost,01490018, 3.2, 0.0, 17.7, 79.2, 0.0, 0.0, 0.0, 95.2, 4.8, 63.4 -8.781249999999998,5,a-pcom-i3,2016-17,Lawrence - Rollins Early Childhood Center,01490001, 2.1, 0.0, 26.0, 71.9, 0.0, 0.0, 0.0, 95.7, 4.3, 46.9 -14.937499999999998,5,a-pcom-i3,2016-17,Lawrence - School for Exceptional Studies,01490537, 2.3, 1.6, 43.9, 52.2, 0.0, 0.0, 0.0, 65.8, 34.2, 128.8 -5.750000000000002,5,a-pcom-i3,2016-17,Lawrence - South Lawrence East Elementary School,01490004, 0.0, 2.0, 16.4, 81.6, 0.0, 0.0, 0.0, 86.9, 13.1, 74.3 -9.125,5,a-pcom-i3,2016-17,Lawrence - Spark Academy,01490085, 6.4, 1.6, 21.1, 70.8, 0.0, 0.0, 0.0, 74.3, 25.7, 62.4 -12.375,5,a-pcom-i3,2016-17,Lawrence - UP Academy Leonard Middle School,01490090, 2.6, 2.6, 31.8, 60.4, 2.6, 0.0, 0.0, 63.4, 36.6, 38.4 -11.15625,5,a-pcom-i3,2016-17,Lawrence - UP Academy Oliver Middle School,01490049, 4.4, 0.0, 31.3, 64.3, 0.0, 0.0, 0.0, 84.5, 15.5, 45.4 -8.781249999999998,5,a-pcom-i3,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,04540205, 1.1, 4.5, 22.5, 71.9, 0.0, 0.0, 0.0, 92.7, 7.3, 89.0 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Lee - Lee Elementary,01500025, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 95.7, 4.3, 63.6 -1,1,a-pcom-i3,2016-17,Lee - Lee Middle/High School,01500505, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 73.1, 26.9, 55.4 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Leicester - Leicester High,01510505, 0.0, 1.9, 1.9, 96.3, 0.0, 0.0, 0.0, 72.3, 27.7, 53.9 -1.09375,1.09,a-pcom-i3,2016-17,Leicester - Leicester Memorial Elementary,01510005, 0.0, 0.0, 3.5, 96.5, 0.0, 0.0, 0.0, 93.8, 6.2, 48.4 -1,1,a-pcom-i3,2016-17,Leicester - Leicester Middle,01510015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.8, 24.2, 49.5 -1,1,a-pcom-i3,2016-17,Leicester - Leicester Primary School,01510010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 57.8 -1,1,a-pcom-i3,2016-17,Lenox - Lenox Memorial High,01520505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.4, 35.6, 70.2 -1,1,a-pcom-i3,2016-17,Lenox - Morris,01520015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 55.0 -3.218749999999999,3.22,a-pcom-i3,2016-17,Leominster - Bennett,01530003, 5.2, 0.0, 5.2, 89.7, 0.0, 0.0, 0.0, 99.0, 1.0, 19.4 -1,1,a-pcom-i3,2016-17,Leominster - Center For Technical Education Innovation,01530605, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 32.7, 67.3, 44.6 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Leominster - Fall Brook,01530007, 0.0, 1.3, 2.5, 96.2, 0.0, 0.0, 0.0, 96.1, 3.9, 79.0 -2.6874999999999982,2.69,a-pcom-i3,2016-17,Leominster - Frances Drake School,01530010, 1.1, 1.1, 6.4, 91.4, 0.0, 0.0, 0.0, 91.5, 8.5, 93.1 -1,1,a-pcom-i3,2016-17,Leominster - Johnny Appleseed,01530025, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 96.2, 3.8, 78.5 -3.75,3.75,a-pcom-i3,2016-17,Leominster - Leominster Center for Excellence,01530515, 0.0, 0.0, 12.0, 88.0, 0.0, 0.0, 0.0, 63.9, 36.1, 8.3 -1.875,1.88,a-pcom-i3,2016-17,Leominster - Leominster High School,01530505, 1.2, 1.7, 3.1, 94.0, 0.0, 0.0, 0.0, 67.2, 32.8, 162.5 -2.6250000000000018,2.63,a-pcom-i3,2016-17,Leominster - Lincoln School,01530005, 0.0, 4.2, 4.2, 91.6, 0.0, 0.0, 0.0, 95.0, 5.0, 23.9 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Leominster - Northwest,01530030, 1.3, 0.0, 2.6, 96.1, 0.0, 0.0, 0.0, 90.9, 9.1, 77.9 -1,1,a-pcom-i3,2016-17,Leominster - Priest Street,01530040, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 91.6, 8.4, 31.1 -1,1,a-pcom-i3,2016-17,Leominster - Samoset School,01530045, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 75.7, 24.3, 67.1 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Leominster - Sky View Middle School,01530320, 0.0, 0.0, 5.3, 94.7, 0.0, 0.0, 0.0, 79.8, 20.2, 94.4 -1,1,a-pcom-i3,2016-17,Leverett - Leverett Elementary,01540005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.3, 16.7, 26.6 -6.000000000000001,5,a-pcom-i3,2016-17,Lexington - Bowman,01550008, 6.4, 7.5, 3.6, 80.8, 0.0, 0.4, 1.3, 87.2, 12.8, 78.6 -2.1562500000000018,2.16,a-pcom-i3,2016-17,Lexington - Bridge,01550006, 1.9, 3.5, 0.0, 93.1, 0.0, 0.0, 1.4, 89.4, 10.6, 71.1 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Lexington - Fiske,01550015, 1.6, 1.3, 1.2, 94.7, 0.0, 0.0, 1.2, 84.9, 15.1, 83.6 -2.718750000000001,2.72,a-pcom-i3,2016-17,Lexington - Harrington,01550030, 2.8, 1.7, 4.2, 91.3, 0.0, 0.0, 0.0, 94.3, 5.7, 63.3 -3.374999999999999,3.37,a-pcom-i3,2016-17,Lexington - Jonas Clarke Middle,01550305, 1.8, 4.6, 3.0, 89.2, 0.0, 0.0, 1.4, 73.7, 26.3, 131.1 -2.6250000000000018,2.63,a-pcom-i3,2016-17,Lexington - Joseph Estabrook,01550010, 3.8, 0.2, 2.9, 91.6, 0.0, 0.0, 1.6, 87.5, 12.5, 63.2 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Lexington - Lexington Children's Place,01550001, 0.0, 0.0, 0.0, 94.9, 0.0, 0.0, 5.1, 100.0, 0.0, 26.8 -2.6874999999999982,2.69,a-pcom-i3,2016-17,Lexington - Lexington High,01550505, 1.7, 3.8, 2.2, 91.4, 0.0, 0.0, 0.7, 72.2, 27.8, 278.8 -4.156249999999999,4.16,a-pcom-i3,2016-17,Lexington - Maria Hastings,01550035, 3.2, 4.6, 5.5, 86.7, 0.0, 0.0, 0.0, 94.1, 5.9, 72.7 -2.437499999999999,2.44,a-pcom-i3,2016-17,Lexington - Wm Diamond Middle,01550310, 2.0, 4.1, 1.8, 92.2, 0.0, 0.0, 0.0, 73.2, 26.8, 120.1 -3.343750000000001,3.34,a-pcom-i3,2016-17,Lincoln - Hanscom Middle,01570305, 6.3, 0.1, 4.3, 89.3, 0.0, 0.0, 0.0, 73.7, 26.3, 46.3 -1.71875,1.72,a-pcom-i3,2016-17,Lincoln - Hanscom Primary,01570006, 1.7, 0.0, 3.8, 94.5, 0.0, 0.0, 0.0, 95.2, 4.8, 58.1 -2.7812500000000018,2.78,a-pcom-i3,2016-17,Lincoln - Lincoln School,01570025, 4.3, 3.5, 0.3, 91.1, 0.8, 0.0, 0.0, 88.3, 11.7, 113.3 -2.406250000000001,2.41,a-pcom-i3,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,06950505, 1.9, 2.4, 1.0, 92.3, 0.5, 0.5, 1.4, 63.5, 36.5, 206.9 -1,1,a-pcom-i3,2016-17,Littleton - Littleton High School,01580505, 0.4, 0.0, 0.0, 99.6, 0.0, 0.0, 0.0, 61.3, 38.7, 49.6 -1,1,a-pcom-i3,2016-17,Littleton - Littleton Middle School,01580305, 0.0, 0.0, 0.0, 97.6, 0.0, 2.4, 0.0, 88.7, 11.3, 42.4 -1,1,a-pcom-i3,2016-17,Littleton - Russell St Elementary,01580015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.3, 8.7, 46.1 -2.1875,2.19,a-pcom-i3,2016-17,Littleton - Shaker Lane Elementary,01580005, 2.6, 1.3, 1.3, 93.0, 0.0, 0.0, 1.7, 96.5, 3.5, 57.2 -1,1,a-pcom-i3,2016-17,Longmeadow - Blueberry Hill,01590005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.4, 6.6, 58.7 -1,1,a-pcom-i3,2016-17,Longmeadow - Center,01590010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.4, 0.6, 51.7 -1.09375,1.09,a-pcom-i3,2016-17,Longmeadow - Glenbrook Middle,01590017, 0.0, 1.2, 2.3, 96.5, 0.0, 0.0, 0.0, 81.2, 18.8, 42.9 -1,1,a-pcom-i3,2016-17,Longmeadow - Longmeadow High,01590505, 0.8, 0.0, 1.7, 97.5, 0.0, 0.0, 0.0, 68.3, 31.7, 119.1 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Longmeadow - Williams Middle,01590305, 2.1, 1.1, 2.1, 94.7, 0.0, 0.0, 0.0, 76.0, 24.0, 46.8 -1,1,a-pcom-i3,2016-17,Longmeadow - Wolf Swamp Road,01590025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 76.7 -4.312499999999999,4.31,a-pcom-i3,2016-17,Lowell - Abraham Lincoln,01600020, 2.2, 5.9, 5.7, 86.2, 0.0, 0.0, 0.0, 97.1, 2.9, 68.1 -3.062499999999999,3.06,a-pcom-i3,2016-17,Lowell - B.F. Butler Middle School,01600310, 1.5, 5.3, 3.0, 90.2, 0.0, 0.0, 0.0, 70.8, 29.2, 66.4 -4.187500000000002,4.19,a-pcom-i3,2016-17,Lowell - Bartlett Community Partnership,01600090, 3.5, 4.2, 4.2, 86.6, 0.0, 1.4, 0.0, 88.4, 11.6, 70.8 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Lowell - Charles W Morey,01600030, 0.0, 2.8, 2.8, 94.4, 0.0, 0.0, 0.0, 93.7, 6.3, 71.2 -2.8125,2.81,a-pcom-i3,2016-17,Lowell - Charlotte M Murkland Elementary,01600080, 0.0, 4.4, 4.6, 91.0, 0.0, 0.0, 0.0, 89.3, 10.7, 65.2 -2.875000000000001,2.88,a-pcom-i3,2016-17,Lowell - Dr An Wang School,01600345, 1.4, 1.4, 6.4, 90.8, 0.0, 0.0, 0.0, 75.1, 24.9, 70.3 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Lowell - Dr Gertrude Bailey,01600002, 1.6, 1.6, 3.2, 93.6, 0.0, 0.0, 0.0, 86.6, 13.4, 62.9 -2.1875,2.19,a-pcom-i3,2016-17,Lowell - Greenhalge,01600015, 1.5, 0.8, 0.0, 93.0, 1.5, 1.5, 1.5, 97.7, 2.3, 64.7 -3.28125,3.28,a-pcom-i3,2016-17,Lowell - Henry J Robinson Middle,01600330, 1.3, 3.9, 5.3, 89.5, 0.0, 0.0, 0.0, 79.1, 20.9, 75.9 -3.0937500000000018,3.09,a-pcom-i3,2016-17,Lowell - James S Daley Middle School,01600315, 0.0, 4.9, 2.5, 90.1, 1.2, 1.2, 0.0, 78.3, 21.7, 81.1 -3.374999999999999,3.37,a-pcom-i3,2016-17,Lowell - James Sullivan Middle School,01600340, 1.3, 1.3, 8.3, 89.2, 0.0, 0.0, 0.0, 75.8, 24.2, 78.6 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Lowell - John J Shaughnessy,01600050, 3.0, 0.7, 1.5, 94.8, 0.0, 0.0, 0.0, 94.8, 5.2, 66.9 -4.656250000000002,4.66,a-pcom-i3,2016-17,Lowell - Joseph McAvinnue,01600010, 0.0, 2.8, 12.0, 85.1, 0.0, 0.0, 0.0, 87.3, 12.7, 70.7 -3.812500000000001,3.81,a-pcom-i3,2016-17,Lowell - Kathryn P. Stoklosa Middle School,01600360, 1.3, 7.6, 1.3, 87.8, 0.7, 1.3, 0.0, 69.3, 30.7, 75.5 -3.062499999999999,3.06,a-pcom-i3,2016-17,Lowell - Laura Lee Therapeutic Day School,01600085, 6.1, 3.2, 0.6, 90.2, 0.0, 0.0, 0.0, 74.2, 25.8, 16.4 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Lowell - Leblanc Therapeutic Day School,01600320, 0.0, 0.0, 5.4, 94.6, 0.0, 0.0, 0.0, 65.5, 34.5, 18.6 -3.4062500000000018,3.41,a-pcom-i3,2016-17,Lowell - Lowell High,01600505, 1.8, 4.2, 4.3, 89.1, 0.0, 0.0, 0.6, 62.8, 37.2, 324.6 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Lowell - Moody Elementary,01600027, 0.0, 0.0, 5.4, 94.6, 0.0, 0.0, 0.0, 97.3, 2.7, 37.2 -2.9375000000000018,2.94,a-pcom-i3,2016-17,Lowell - Pawtucketville Memorial,01600036, 4.7, 1.6, 3.1, 90.6, 0.0, 0.0, 0.0, 90.1, 9.9, 63.5 -4.156249999999999,4.16,a-pcom-i3,2016-17,Lowell - Peter W Reilly,01600040, 2.2, 0.0, 11.1, 86.7, 0.0, 0.0, 0.0, 91.9, 8.1, 67.6 -2.8125,2.81,a-pcom-i3,2016-17,Lowell - Pyne Arts,01600018, 1.4, 2.0, 5.6, 91.0, 0.0, 0.0, 0.0, 86.4, 13.6, 71.0 -4.406249999999998,4.41,a-pcom-i3,2016-17,Lowell - Rogers STEM Academy,01600005, 4.0, 3.4, 6.7, 85.9, 0.0, 0.0, 0.0, 85.9, 14.1, 74.5 -3.59375,3.59,a-pcom-i3,2016-17,Lowell - S Christa McAuliffe Elementary,01600075, 0.0, 1.6, 9.9, 88.5, 0.0, 0.0, 0.0, 89.3, 10.7, 60.7 -3.031250000000001,3.03,a-pcom-i3,2016-17,Lowell - The Career Academy,01600515, 0.0, 9.7, 0.0, 90.3, 0.0, 0.0, 0.0, 67.8, 32.2, 17.1 -2.124999999999999,2.12,a-pcom-i3,2016-17,Lowell - Washington,01600055, 2.3, 0.0, 4.6, 93.2, 0.0, 0.0, 0.0, 87.4, 12.6, 43.8 -9.312499999999998,5,a-pcom-i3,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,04560050, 4.5, 10.8, 12.7, 70.2, 0.0, 0.0, 1.8, 83.0, 17.0, 111.0 -6.25,5,a-pcom-i3,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,04580505, 0.0, 13.4, 6.7, 80.0, 0.0, 0.0, 0.0, 73.4, 26.6, 15.0 -1,1,a-pcom-i3,2016-17,Ludlow - Chapin Street Elementary School,01610020, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 96.1, 3.9, 50.2 -1,1,a-pcom-i3,2016-17,Ludlow - East Street Elementary School,01610010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 80.4 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Ludlow - Ludlow Senior High,01610505, 0.8, 0.0, 2.5, 95.9, 0.0, 0.0, 0.8, 70.2, 29.8, 120.7 -1,1,a-pcom-i3,2016-17,Ludlow - Paul R Baird Middle,01610305, 1.1, 0.0, 0.9, 98.0, 0.0, 0.0, 0.0, 74.9, 25.1, 95.1 -1,1,a-pcom-i3,2016-17,Ludlow - Veterans Park Elementary,01610023, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 93.9, 6.1, 48.9 -1.40625,1.41,a-pcom-i3,2016-17,Lunenburg - Lunenburg High,01620505, 0.0, 0.0, 1.1, 95.5, 1.7, 1.7, 0.0, 63.4, 36.6, 59.2 -1,1,a-pcom-i3,2016-17,Lunenburg - Lunenburg Middle School,01620305, 2.2, 0.0, 0.7, 97.1, 0.0, 0.0, 0.0, 84.6, 15.4, 46.3 -1,1,a-pcom-i3,2016-17,Lunenburg - Lunenburg Primary School,01620010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 53.0 -1,1,a-pcom-i3,2016-17,Lunenburg - Turkey Hill Elementary School,01620025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.9, 12.1, 45.3 -4.84375,4.84,a-pcom-i3,2016-17,Lynn - A Drewicz Elementary,01630016, 0.0, 2.1, 11.3, 84.5, 2.1, 0.0, 0.0, 89.2, 10.8, 47.4 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Lynn - Aborn,01630011, 0.0, 0.0, 4.2, 95.3, 0.0, 0.0, 0.5, 92.4, 7.6, 23.8 -3.843749999999999,3.84,a-pcom-i3,2016-17,Lynn - Breed Middle School,01630405, 1.8, 1.8, 6.1, 87.7, 0.0, 0.0, 2.6, 72.0, 28.0, 114.3 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Lynn - Brickett Elementary,01630020, 0.0, 3.6, 1.2, 94.8, 0.0, 0.0, 0.4, 97.7, 2.3, 27.6 -4.562499999999998,4.56,a-pcom-i3,2016-17,Lynn - Capt William G Shoemaker,01630090, 2.9, 2.9, 5.8, 85.4, 0.0, 0.0, 2.9, 93.5, 6.5, 68.5 -4.468749999999999,4.47,a-pcom-i3,2016-17,Lynn - Classical High,01630505, 2.2, 0.7, 8.6, 85.7, 0.0, 0.0, 2.9, 63.7, 36.3, 139.4 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Lynn - Cobbet Elementary,01630035, 0.0, 1.6, 4.8, 93.6, 0.0, 0.0, 0.0, 91.2, 8.8, 62.9 -2.124999999999999,2.12,a-pcom-i3,2016-17,Lynn - E J Harrington,01630045, 0.0, 1.3, 5.3, 93.2, 0.0, 0.0, 0.1, 95.4, 4.6, 75.0 -3.999999999999999,4.0,a-pcom-i3,2016-17,Lynn - Early Childhood Center,01630004, 2.0, 0.0, 10.8, 87.2, 0.0, 0.0, 0.0, 96.0, 4.0, 49.4 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Lynn - Edward A Sisson,01630095, 2.2, 0.0, 2.2, 95.6, 0.0, 0.0, 0.0, 95.5, 4.5, 45.8 -8.374999999999998,5,a-pcom-i3,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,01630525, 5.0, 0.0, 21.8, 73.2, 0.0, 0.0, 0.0, 45.1, 54.9, 59.6 -3.812500000000001,3.81,a-pcom-i3,2016-17,Lynn - Hood,01630055, 4.0, 4.0, 4.0, 87.8, 0.0, 0.0, 0.2, 96.9, 3.1, 50.0 -4.406249999999998,4.41,a-pcom-i3,2016-17,Lynn - Ingalls,01630060, 7.4, 1.5, 3.5, 85.9, 0.0, 0.0, 1.7, 93.4, 6.6, 67.1 -3.59375,3.59,a-pcom-i3,2016-17,Lynn - Julia F Callahan,01630030, 3.7, 0.0, 7.8, 88.5, 0.0, 0.0, 0.0, 90.5, 9.5, 54.2 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Lynn - Lincoln-Thomson,01630070, 0.0, 0.0, 3.7, 96.3, 0.0, 0.0, 0.0, 93.7, 6.3, 26.9 -4.781249999999999,4.78,a-pcom-i3,2016-17,Lynn - Lynn English High,01630510, 2.5, 0.7, 10.6, 84.7, 0.0, 0.0, 1.5, 53.1, 46.9, 136.1 -6.468750000000001,5,a-pcom-i3,2016-17,Lynn - Lynn Vocational Technical Institute,01630605, 2.4, 0.0, 15.2, 79.3, 0.0, 0.0, 3.2, 54.4, 45.6, 126.7 -1,1,a-pcom-i3,2016-17,Lynn - Lynn Woods,01630075, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.8, 10.2, 19.0 -3.843749999999999,3.84,a-pcom-i3,2016-17,Lynn - Pickering Middle,01630420, 2.7, 0.0, 8.2, 87.7, 0.0, 0.0, 1.4, 72.2, 27.8, 73.1 -4.656250000000002,4.66,a-pcom-i3,2016-17,Lynn - Robert L Ford,01630050, 2.2, 0.0, 9.3, 85.1, 1.1, 0.0, 2.4, 91.7, 8.3, 45.9 -3.218749999999999,3.22,a-pcom-i3,2016-17,Lynn - Sewell-Anderson,01630085, 0.0, 2.6, 7.7, 89.7, 0.0, 0.0, 0.0, 95.4, 4.6, 38.7 -4.343750000000002,4.34,a-pcom-i3,2016-17,Lynn - Thurgood Marshall Mid,01630305, 4.8, 1.0, 7.0, 86.1, 0.0, 0.0, 1.2, 60.2, 39.8, 104.5 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Lynn - Tracy,01630100, 0.0, 0.0, 4.8, 95.2, 0.0, 0.0, 0.0, 96.9, 3.1, 41.9 -2.7812500000000018,2.78,a-pcom-i3,2016-17,Lynn - Washington Elementary School,01630005, 2.2, 0.0, 6.7, 91.1, 0.0, 0.0, 0.0, 89.8, 10.2, 45.0 -3.9374999999999982,3.94,a-pcom-i3,2016-17,Lynn - William R Fallon,01630080, 4.0, 0.0, 8.1, 87.4, 0.0, 0.0, 0.5, 89.0, 11.0, 24.8 -2.8125,2.81,a-pcom-i3,2016-17,Lynn - Wm P Connery,01630040, 3.4, 0.0, 5.6, 91.0, 0.0, 0.0, 0.0, 87.0, 13.0, 59.2 -1,1,a-pcom-i3,2016-17,Lynnfield - Huckleberry Hill,01640010, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 98.2, 1.8, 55.6 -1,1,a-pcom-i3,2016-17,Lynnfield - Lynnfield High,01640505, 0.0, 0.0, 0.0, 98.7, 0.0, 0.0, 1.3, 68.9, 31.1, 77.1 -1,1,a-pcom-i3,2016-17,Lynnfield - Lynnfield Middle School,01640405, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 85.4, 14.6, 78.1 -1,1,a-pcom-i3,2016-17,Lynnfield - Lynnfield Preschool,01640005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 9.5 -1,1,a-pcom-i3,2016-17,Lynnfield - Summer Street,01640020, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 94.7, 5.3, 50.5 -12.875,5,a-pcom-i3,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,04690505, 17.6, 7.8, 11.4, 58.8, 0.4, 0.0, 4.0, 74.6, 25.4, 252.0 -3.687499999999999,3.69,a-pcom-i3,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,04680505, 0.0, 11.8, 0.0, 88.2, 0.0, 0.0, 0.0, 59.1, 40.9, 8.5 -3.062499999999999,3.06,a-pcom-i3,2016-17,Malden - Beebe,01650003, 4.9, 2.4, 1.2, 90.2, 0.0, 0.0, 1.2, 85.4, 14.6, 82.0 -2.593749999999999,2.59,a-pcom-i3,2016-17,Malden - Ferryway,01650013, 5.9, 2.4, 0.0, 91.7, 0.0, 0.0, 0.0, 85.1, 14.9, 84.5 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Malden - Forestdale,01650027, 1.1, 1.1, 3.4, 93.7, 0.0, 0.0, 0.6, 92.6, 7.4, 88.0 -3.1562499999999982,3.16,a-pcom-i3,2016-17,Malden - Linden,01650047, 4.4, 1.8, 0.0, 89.9, 0.0, 0.9, 3.1, 81.6, 18.4, 113.8 -3.218749999999999,3.22,a-pcom-i3,2016-17,Malden - Malden Early Learning Center,01650049, 7.7, 2.6, 0.0, 89.7, 0.0, 0.0, 0.0, 98.7, 1.3, 78.0 -3.7812499999999982,3.78,a-pcom-i3,2016-17,Malden - Malden High,01650505, 3.6, 3.0, 4.8, 87.9, 0.0, 0.0, 0.6, 69.8, 30.2, 165.0 -3.531249999999999,3.53,a-pcom-i3,2016-17,Malden - Salemwood,01650057, 3.2, 2.4, 4.1, 88.7, 0.0, 0.0, 1.6, 84.6, 15.4, 123.5 -1,1,a-pcom-i3,2016-17,Manchester Essex Regional - Essex Elementary,06980020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.8, 15.2, 44.3 -1.09375,1.09,a-pcom-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,06980510, 0.0, 1.5, 1.9, 96.5, 0.0, 0.0, 0.0, 72.1, 27.9, 52.1 -1.9375000000000009,1.94,a-pcom-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,06980030, 0.0, 4.3, 1.9, 93.8, 0.0, 0.0, 0.0, 75.7, 24.3, 51.4 -1,1,a-pcom-i3,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,06980010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 58.2 -1.09375,1.09,a-pcom-i3,2016-17,Mansfield - Everett W Robinson,01670007, 1.7, 1.1, 0.7, 96.5, 0.0, 0.0, 0.0, 94.3, 5.7, 87.5 -1,1,a-pcom-i3,2016-17,Mansfield - Harold L Qualters Middle,01670035, 0.0, 0.0, 0.8, 98.4, 0.0, 0.0, 0.8, 80.6, 19.4, 125.3 -1.25,1.25,a-pcom-i3,2016-17,Mansfield - Jordan/Jackson Elementary,01670014, 0.6, 1.1, 1.1, 96.0, 0.0, 0.0, 1.1, 92.3, 7.7, 91.0 -1.5625,1.56,a-pcom-i3,2016-17,Mansfield - Mansfield High,01670505, 1.1, 0.0, 4.0, 95.0, 0.0, 0.0, 0.0, 67.6, 32.4, 151.4 -1,1,a-pcom-i3,2016-17,Mansfield - Roland Green School,01670003, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 100.0, 0.0, 24.6 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Marblehead - Elbridge Gerry,01680015, 2.5, 0.0, 0.0, 95.6, 0.0, 0.0, 2.0, 97.5, 2.5, 20.3 -1.9062499999999982,1.91,a-pcom-i3,2016-17,Marblehead - Glover,01680020, 0.5, 1.4, 1.4, 93.9, 0.0, 1.4, 1.4, 92.9, 7.1, 70.7 -2.093750000000001,2.09,a-pcom-i3,2016-17,Marblehead - L H Coffin,01680010, 2.0, 0.0, 3.2, 93.3, 0.0, 0.0, 1.6, 98.0, 2.0, 25.3 -1,1,a-pcom-i3,2016-17,Marblehead - Malcolm L Bell,01680005, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 95.7, 4.3, 46.4 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Marblehead - Marblehead High,01680505, 0.7, 0.8, 2.1, 95.8, 0.0, 0.0, 0.6, 63.7, 36.3, 142.2 -1,1,a-pcom-i3,2016-17,Marblehead - Marblehead Veterans Middle School,01680300, 1.0, 1.3, 0.0, 97.6, 0.0, 0.0, 0.0, 79.7, 20.3, 74.2 -1,1,a-pcom-i3,2016-17,Marblehead - Village School,01680016, 1.0, 0.0, 0.0, 98.0, 0.0, 0.0, 1.0, 86.0, 14.0, 98.9 -1,1,a-pcom-i3,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,04640305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.2, 24.8, 30.6 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Marion - Sippican,01690005, 3.4, 1.7, 0.0, 94.9, 0.0, 0.0, 0.0, 96.6, 3.4, 58.3 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,01700045, 0.0, 3.2, 1.6, 95.2, 0.0, 0.0, 0.0, 76.2, 23.8, 189.3 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Marlborough - Charles Jaworek School,01700030, 0.0, 0.9, 3.6, 95.6, 0.0, 0.0, 0.0, 92.8, 7.2, 112.6 -3.218749999999999,3.22,a-pcom-i3,2016-17,Marlborough - Early Childhood Center,01700006, 4.2, 2.1, 4.0, 89.7, 0.0, 0.0, 0.0, 89.5, 10.5, 47.4 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Marlborough - Francis J Kane,01700008, 2.4, 0.0, 2.4, 95.2, 0.0, 0.0, 0.0, 92.8, 7.2, 83.1 -1.5625,1.56,a-pcom-i3,2016-17,Marlborough - Marlborough High,01700505, 1.3, 1.9, 1.3, 95.0, 0.6, 0.0, 0.0, 63.4, 36.6, 158.8 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Marlborough - Richer,01700025, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 96.1, 3.9, 77.1 -1,1,a-pcom-i3,2016-17,Marshfield - Daniel Webster,01710015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 56.4 -1,1,a-pcom-i3,2016-17,Marshfield - Eames Way School,01710005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.0, 8.0, 40.2 -1,1,a-pcom-i3,2016-17,Marshfield - Furnace Brook Middle,01710310, 0.0, 0.0, 0.0, 99.1, 0.9, 0.0, 0.0, 83.2, 16.8, 112.1 -1,1,a-pcom-i3,2016-17,Marshfield - Gov Edward Winslow,01710020, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 90.3, 9.7, 63.5 -1,1,a-pcom-i3,2016-17,Marshfield - Marshfield High,01710505, 0.6, 0.0, 0.6, 98.8, 0.0, 0.0, 0.0, 67.7, 32.3, 168.6 -1,1,a-pcom-i3,2016-17,Marshfield - Martinson Elementary,01710025, 0.0, 1.2, 0.0, 97.6, 1.2, 0.0, 0.0, 95.6, 4.4, 83.0 -1,1,a-pcom-i3,2016-17,Marshfield - South River,01710010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 48.6 -1.8437500000000018,1.84,a-pcom-i3,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,07000505, 0.8, 0.8, 2.5, 94.1, 0.0, 0.0, 1.7, 63.4, 36.6, 118.5 -1,1,a-pcom-i3,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,04660550, 2.7, 0.0, 0.0, 97.3, 0.0, 0.0, 0.0, 79.9, 20.1, 37.3 -12.71875,5,a-pcom-i3,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,04920005, 21.1, 0.0, 16.8, 59.3, 0.0, 0.0, 2.7, 86.5, 13.5, 57.4 -1,1,a-pcom-i3,2016-17,Masconomet - Masconomet Regional High School,07050505, 0.0, 0.7, 0.0, 99.3, 0.0, 0.0, 0.0, 63.5, 36.5, 134.2 -1,1,a-pcom-i3,2016-17,Masconomet - Masconomet Regional Middle School,07050405, 1.2, 1.2, 0.0, 97.7, 0.0, 0.0, 0.0, 65.5, 34.5, 85.2 -1,1,a-pcom-i3,2016-17,Mashpee - Kenneth Coombs School,01720005, 0.0, 0.0, 0.0, 98.7, 1.3, 0.0, 0.0, 97.3, 2.7, 75.3 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Mashpee - Mashpee High,01720505, 0.0, 0.0, 2.5, 95.9, 1.6, 0.0, 0.0, 68.5, 31.5, 63.6 -1,1,a-pcom-i3,2016-17,Mashpee - Mashpee Middle School,01720020, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 69.8, 30.2, 27.7 -1,1,a-pcom-i3,2016-17,Mashpee - Quashnet School,01720035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.6, 11.4, 77.8 -2.9999999999999982,3.0,a-pcom-i3,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900, 2.4, 4.8, 2.4, 90.4, 0.0, 0.0, 0.0, 77.1, 22.9, 41.5 -1,1,a-pcom-i3,2016-17,Mattapoisett - Center,01730005, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 95.2, 4.8, 41.5 -1,1,a-pcom-i3,2016-17,Mattapoisett - Old Hammondtown,01730010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.4, 8.6, 34.9 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Maynard - Fowler School,01740305, 0.0, 0.0, 2.2, 96.3, 0.0, 0.0, 1.5, 77.1, 22.9, 64.9 -2.9375000000000018,2.94,a-pcom-i3,2016-17,Maynard - Green Meadow,01740010, 0.0, 1.2, 8.3, 90.6, 0.0, 0.0, 0.0, 95.2, 4.8, 84.7 -1,1,a-pcom-i3,2016-17,Maynard - Maynard High,01740505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.1, 26.9, 55.4 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Medfield - Dale Street,01750005, 0.0, 1.3, 0.4, 96.4, 0.0, 0.0, 2.0, 89.4, 10.6, 51.0 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Medfield - Medfield Senior High,01750505, 0.0, 1.7, 1.1, 96.2, 0.0, 0.0, 0.9, 71.0, 29.0, 105.6 -1,1,a-pcom-i3,2016-17,Medfield - Memorial School,01750003, 0.0, 1.5, 0.3, 97.0, 0.0, 0.0, 1.2, 96.7, 3.3, 65.0 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Medfield - Ralph Wheelock School,01750007, 1.8, 1.0, 0.4, 96.8, 0.0, 0.0, 0.0, 95.3, 4.7, 44.6 -1.5625,1.56,a-pcom-i3,2016-17,Medfield - Thomas Blake Middle,01750305, 1.2, 1.2, 2.6, 95.0, 0.0, 0.0, 0.0, 75.9, 24.1, 83.2 -31.25,5,a-pcom-i3,2016-17,Medford - Brooks School,01760130, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - Christopher Columbus,01760140, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - Curtis-Tufts,01760510, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - John J McGlynn Elementary School,01760068, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - John J. McGlynn Middle School,01760320, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - Madeleine Dugger Andrews,01760315, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - Medford High,01760505, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - Medford Vocational Technical High,01760605, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -31.25,5,a-pcom-i3,2016-17,Medford - Milton Fuller Roberts,01760150, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 -1,1,a-pcom-i3,2016-17,Medway - Burke/Memorial Elementary School,01770015, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 92.1, 7.9, 63.1 -1,1,a-pcom-i3,2016-17,Medway - John D Mc Govern Elementary,01770013, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 46.1 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Medway - Medway High,01770505, 0.0, 2.1, 1.3, 96.7, 0.0, 0.0, 0.0, 64.9, 35.1, 78.0 -1,1,a-pcom-i3,2016-17,Medway - Medway Middle,01770305, 0.0, 0.0, 1.1, 97.7, 0.0, 0.0, 1.1, 79.6, 20.4, 88.4 -1,1,a-pcom-i3,2016-17,Melrose - Early Childhood Center,01780003, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 99.2, 0.8, 48.8 -1.25,1.25,a-pcom-i3,2016-17,Melrose - Herbert Clark Hoover,01780017, 0.0, 0.7, 3.3, 96.0, 0.0, 0.0, 0.0, 85.6, 14.4, 30.2 -1,1,a-pcom-i3,2016-17,Melrose - Horace Mann,01780025, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 97.8, 2.2, 26.2 -1,1,a-pcom-i3,2016-17,Melrose - Lincoln,01780020, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 89.3, 10.7, 54.5 -1,1,a-pcom-i3,2016-17,Melrose - Melrose High,01780505, 0.0, 0.2, 1.7, 98.1, 0.0, 0.0, 0.0, 57.0, 43.0, 103.5 -1,1,a-pcom-i3,2016-17,Melrose - Melrose Middle,01780305, 0.0, 0.0, 0.0, 98.9, 0.0, 0.0, 1.1, 73.1, 26.9, 88.8 -1,1,a-pcom-i3,2016-17,Melrose - Roosevelt,01780035, 0.0, 0.4, 0.0, 99.6, 0.0, 0.0, 0.0, 92.1, 7.9, 51.7 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Melrose - Winthrop,01780050, 0.0, 0.6, 0.0, 96.4, 0.0, 0.0, 3.0, 87.1, 12.9, 33.9 -2.6250000000000018,2.63,a-pcom-i3,2016-17,Mendon-Upton - Henry P Clough,07100179, 0.0, 0.0, 8.4, 91.6, 0.0, 0.0, 0.0, 96.2, 3.8, 52.6 -1,1,a-pcom-i3,2016-17,Mendon-Upton - Memorial School,07100001, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 98.5, 1.5, 65.7 -1,1,a-pcom-i3,2016-17,Mendon-Upton - Miscoe Hill School,07100015, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 79.4, 20.6, 93.4 -1,1,a-pcom-i3,2016-17,Mendon-Upton - Nipmuc Regional High,07100510, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 70.7, 29.3, 78.7 -1,1,a-pcom-i3,2016-17,Methuen - Comprehensive Grammar School,01810050, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 88.7, 11.3, 123.8 -1,1,a-pcom-i3,2016-17,Methuen - Donald P Timony Grammar,01810060, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 86.3, 13.7, 146.0 -1,1,a-pcom-i3,2016-17,Methuen - Marsh Grammar School,01810030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 126.8 -1,1,a-pcom-i3,2016-17,Methuen - Methuen High,01810505, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 63.1, 36.9, 204.5 -1,1,a-pcom-i3,2016-17,Methuen - Tenney Grammar School,01810055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.9, 13.1, 133.5 -1,1,a-pcom-i3,2016-17,Middleborough - Henry B. Burkland Elementary School,01820008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 68.5 -1,1,a-pcom-i3,2016-17,Middleborough - John T. Nichols Middle,01820305, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 78.8, 21.2, 81.2 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Middleborough - Mary K. Goode Elementary School,01820010, 1.3, 0.0, 0.0, 96.2, 1.3, 0.0, 1.3, 93.4, 6.6, 78.5 -1,1,a-pcom-i3,2016-17,Middleborough - Memorial Early Childhood Center,01820011, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.6, 0.4, 48.1 -1,1,a-pcom-i3,2016-17,Middleborough - Middleborough High,01820505, 1.1, 0.7, 0.0, 98.2, 0.0, 0.0, 0.0, 61.4, 38.6, 93.4 -1,1,a-pcom-i3,2016-17,Middleton - Fuller Meadow,01840003, 0.0, 0.0, 1.2, 98.8, 0.0, 0.0, 0.0, 99.6, 0.4, 43.4 -1,1,a-pcom-i3,2016-17,Middleton - Howe-Manning,01840005, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 93.4, 6.6, 76.7 -1.4374999999999982,1.44,a-pcom-i3,2016-17,Milford - Brookside,01850065, 2.3, 0.0, 2.3, 95.4, 0.0, 0.0, 0.0, 96.6, 3.4, 87.9 -1,1,a-pcom-i3,2016-17,Milford - Memorial,01850010, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 96.8, 3.2, 63.1 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Milford - Milford High,01850505, 0.8, 0.8, 3.8, 94.7, 0.0, 0.0, 0.0, 61.7, 38.3, 132.0 -2.65625,2.66,a-pcom-i3,2016-17,Milford - Shining Star Early Childhood Center,01850075, 0.0, 0.0, 8.5, 91.5, 0.0, 0.0, 0.0, 100.0, 0.0, 35.3 -1.09375,1.09,a-pcom-i3,2016-17,Milford - Stacy Middle,01850305, 0.0, 0.0, 2.6, 96.5, 0.0, 0.0, 0.8, 77.1, 22.9, 121.1 -1.25,1.25,a-pcom-i3,2016-17,Milford - Woodland,01850090, 0.0, 1.6, 2.4, 96.0, 0.0, 0.0, 0.0, 88.0, 12.0, 124.9 -1,1,a-pcom-i3,2016-17,Millbury - Elmwood Street,01860017, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 95.8, 4.2, 71.2 -1,1,a-pcom-i3,2016-17,Millbury - Millbury Junior/Senior High,01860505, 0.0, 0.0, 0.0, 99.0, 0.0, 0.0, 1.0, 64.3, 35.7, 102.1 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Millbury - Raymond E. Shaw Elementary,01860025, 1.6, 1.6, 0.0, 93.7, 0.0, 0.0, 3.2, 81.0, 19.0, 63.1 -1,1,a-pcom-i3,2016-17,Millis - Clyde F Brown,01870005, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 91.2, 8.8, 62.8 -1,1,a-pcom-i3,2016-17,Millis - Millis High School,01870505, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 57.6, 42.4, 39.0 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Millis - Millis Middle,01870020, 0.0, 2.1, 2.1, 95.8, 0.0, 0.0, 0.0, 87.4, 12.6, 47.2 -2.875000000000001,2.88,a-pcom-i3,2016-17,Milton - Charles S Pierce Middle,01890410, 4.0, 2.7, 2.5, 90.8, 0.0, 0.0, 0.0, 73.9, 26.1, 93.8 -2.03125,2.03,a-pcom-i3,2016-17,Milton - Collicot,01890005, 3.9, 1.9, 0.6, 93.5, 0.0, 0.0, 0.0, 98.6, 1.4, 77.4 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Milton - Cunningham School,01890007, 4.4, 0.0, 2.0, 93.6, 0.0, 0.0, 0.0, 93.8, 6.2, 45.2 -1.9062499999999982,1.91,a-pcom-i3,2016-17,Milton - Glover,01890010, 3.5, 0.3, 0.0, 93.9, 2.3, 0.0, 0.0, 90.5, 9.5, 43.2 -3.031250000000001,3.03,a-pcom-i3,2016-17,Milton - Milton High,01890505, 5.9, 0.9, 1.9, 90.3, 0.0, 0.0, 1.1, 64.4, 35.6, 93.5 -5.687500000000001,5,a-pcom-i3,2016-17,Milton - Tucker,01890020, 15.6, 2.6, 0.0, 81.8, 0.0, 0.0, 0.0, 89.3, 10.7, 38.4 -1,1,a-pcom-i3,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,08300605, 0.0, 1.3, 0.9, 97.4, 0.0, 0.4, 0.0, 54.9, 45.1, 115.4 -1,1,a-pcom-i3,2016-17,Mohawk Trail - Buckland-Shelburne Regional,07170005, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 97.0, 3.0, 49.5 -1,1,a-pcom-i3,2016-17,Mohawk Trail - Colrain Central,07170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 23.9 -1,1,a-pcom-i3,2016-17,Mohawk Trail - Heath Elementary,07170015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.2, 9.8, 14.0 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Mohawk Trail - Mohawk Trail Regional High,07170505, 0.0, 0.0, 0.0, 96.1, 1.5, 0.0, 2.4, 72.2, 27.8, 64.4 -1,1,a-pcom-i3,2016-17,Mohawk Trail - Sanderson Academy,07170020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 23.5 -1,1,a-pcom-i3,2016-17,Monomoy Regional School District - Chatham Elementary School,07120001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 43.7 -1,1,a-pcom-i3,2016-17,Monomoy Regional School District - Harwich Elementary School,07120002, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 95.0, 5.0, 79.9 -2.1875,2.19,a-pcom-i3,2016-17,Monomoy Regional School District - Monomoy Regional High School,07120515, 1.2, 3.5, 0.0, 93.0, 0.0, 0.0, 2.3, 67.0, 33.0, 85.7 -1,1,a-pcom-i3,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,07120315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.8, 19.2, 67.9 -1,1,a-pcom-i3,2016-17,Monson - Granite Valley Middle,01910310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 81.1, 18.9, 53.0 -1,1,a-pcom-i3,2016-17,Monson - Monson High School,01910505, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 70.5, 29.5, 44.0 -1,1,a-pcom-i3,2016-17,Monson - Quarry Hill Community School,01910025, 0.0, 0.0, 0.0, 98.5, 0.0, 1.5, 0.0, 93.9, 6.1, 66.0 -2.0624999999999982,2.06,a-pcom-i3,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,08320605, 1.7, 0.0, 3.9, 93.4, 1.1, 0.0, 0.0, 56.5, 43.5, 180.8 -1.5625,1.56,a-pcom-i3,2016-17,Mount Greylock - Mt Greylock Regional High,07150505, 0.0, 1.3, 3.8, 95.0, 0.0, 0.0, 0.0, 61.0, 39.0, 79.4 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,04700105, 0.6, 1.3, 3.7, 93.7, 0.0, 0.0, 0.6, 77.6, 22.4, 155.8 -1,1,a-pcom-i3,2016-17,Nahant - Johnson,01960010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 22.9 -2.250000000000001,2.25,a-pcom-i3,2016-17,Nantucket - Cyrus Peirce,01970010, 4.3, 0.7, 0.0, 92.8, 2.2, 0.0, 0.0, 82.8, 17.2, 46.1 -1,1,a-pcom-i3,2016-17,Nantucket - Nantucket Elementary,01970005, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 92.8, 7.2, 97.7 -3.28125,3.28,a-pcom-i3,2016-17,Nantucket - Nantucket High,01970505, 0.0, 2.6, 6.3, 89.5, 0.0, 0.0, 1.6, 67.7, 32.3, 63.4 -1,1,a-pcom-i3,2016-17,Narragansett - Baldwinville Elementary,07200005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 25.1 -1,1,a-pcom-i3,2016-17,Narragansett - Narragansett Middle,07200305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.8, 25.2, 41.8 -1,1,a-pcom-i3,2016-17,Narragansett - Narragansett Regional High,07200505, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 73.4, 26.6, 45.4 -1,1,a-pcom-i3,2016-17,Narragansett - Phillipston Memorial,07200003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 22.8 -1,1,a-pcom-i3,2016-17,Narragansett - Templeton Center,07200020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 20.4 -1,1,a-pcom-i3,2016-17,Nashoba - Center School,07250020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.8, 5.2, 62.7 -1,1,a-pcom-i3,2016-17,Nashoba - Florence Sawyer School,07250025, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 87.2, 12.8, 95.3 -1,1,a-pcom-i3,2016-17,Nashoba - Hale,07250310, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 76.7, 23.3, 34.2 -1,1,a-pcom-i3,2016-17,Nashoba - Luther Burbank Middle School,07250305, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 87.6, 12.4, 44.2 -1,1,a-pcom-i3,2016-17,Nashoba - Mary Rowlandson Elementary,07250010, 0.0, 0.0, 1.3, 97.3, 0.0, 0.0, 1.3, 89.7, 10.3, 75.3 -1,1,a-pcom-i3,2016-17,Nashoba - Nashoba Regional,07250505, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 62.1, 37.9, 121.2 -1,1,a-pcom-i3,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,08520605, 1.2, 0.0, 1.2, 97.6, 0.0, 0.0, 0.0, 46.2, 53.8, 82.3 -1.09375,1.09,a-pcom-i3,2016-17,Natick - Bennett-Hemenway,01980005, 1.2, 2.3, 0.0, 96.5, 0.0, 0.0, 0.0, 90.1, 9.9, 86.2 -1,1,a-pcom-i3,2016-17,Natick - Brown,01980010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 58.3 -1.875,1.88,a-pcom-i3,2016-17,Natick - J F Kennedy Middle School,01980305, 1.3, 2.0, 1.3, 94.0, 1.3, 0.0, 0.0, 76.6, 23.4, 74.7 -1,1,a-pcom-i3,2016-17,Natick - Johnson,01980031, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 92.8, 7.2, 35.3 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Natick - Lilja Elementary,01980035, 3.8, 1.9, 0.0, 94.4, 0.0, 0.0, 0.0, 92.6, 7.4, 53.2 -1,1,a-pcom-i3,2016-17,Natick - Memorial,01980043, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 48.5 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Natick - Natick High,01980505, 1.3, 3.6, 0.5, 94.6, 0.0, 0.0, 0.0, 67.9, 32.1, 199.1 -1.3437499999999991,1.34,a-pcom-i3,2016-17,Natick - Wilson Middle,01980310, 2.1, 1.3, 0.9, 95.7, 0.0, 0.0, 0.0, 73.8, 26.2, 117.6 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Nauset - Nauset Regional High,06600505, 0.8, 1.3, 0.0, 96.3, 0.8, 0.8, 0.0, 65.9, 34.1, 124.8 -1,1,a-pcom-i3,2016-17,Nauset - Nauset Regional Middle,06600305, 0.0, 0.3, 2.1, 97.6, 0.0, 0.0, 0.0, 83.7, 16.3, 97.5 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Needham - Broadmeadow,01990005, 2.2, 1.6, 1.3, 94.9, 0.0, 0.0, 0.0, 97.1, 2.9, 61.7 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Needham - High Rock School,01990410, 2.1, 0.0, 0.5, 95.8, 0.0, 0.0, 1.6, 78.6, 21.4, 63.4 -2.4687500000000018,2.47,a-pcom-i3,2016-17,Needham - Hillside Elementary,01990035, 2.5, 4.9, 0.0, 92.1, 0.0, 0.0, 0.5, 89.5, 10.5, 60.7 -2.906249999999999,2.91,a-pcom-i3,2016-17,Needham - John Eliot,01990020, 2.6, 4.7, 0.0, 90.7, 0.0, 0.0, 2.0, 88.0, 12.0, 51.1 -2.9999999999999982,3.0,a-pcom-i3,2016-17,Needham - Needham High,01990505, 3.2, 3.4, 1.4, 90.4, 0.0, 0.0, 1.6, 63.9, 36.1, 187.2 -2.250000000000001,2.25,a-pcom-i3,2016-17,Needham - Newman Elementary,01990050, 2.0, 2.6, 2.6, 92.8, 0.0, 0.0, 0.0, 95.5, 4.5, 115.1 -1.8437500000000018,1.84,a-pcom-i3,2016-17,Needham - Pollard Middle,01990405, 2.2, 0.5, 1.4, 94.1, 0.0, 0.9, 0.9, 74.8, 25.2, 116.4 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Needham - William Mitchell,01990040, 1.0, 0.0, 4.1, 93.6, 0.0, 0.0, 1.4, 86.7, 13.3, 51.5 -13.999999999999998,5,a-pcom-i3,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,04440205, 18.7, 6.1, 12.3, 55.2, 0.0, 0.0, 7.7, 86.5, 13.5, 65.2 -1.0000000000000009,1.0,a-pcom-i3,2016-17,New Bedford - Abraham Lincoln,02010095, 3.2, 0.0, 0.0, 96.8, 0.0, 0.0, 0.0, 90.3, 9.7, 62.5 -4.656250000000002,4.66,a-pcom-i3,2016-17,New Bedford - Alfred J Gomes,02010063, 9.5, 0.0, 4.1, 85.1, 0.0, 0.0, 1.4, 93.8, 6.2, 73.8 -1,1,a-pcom-i3,2016-17,New Bedford - Betsey B Winslow,02010140, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 98.2, 1.8, 28.0 -1,1,a-pcom-i3,2016-17,New Bedford - Carlos Pacheco,02010105, 0.0, 0.0, 0.0, 97.9, 2.1, 0.0, 0.0, 93.6, 6.4, 46.8 -4.156249999999999,4.16,a-pcom-i3,2016-17,New Bedford - Casimir Pulaski,02010123, 7.5, 0.0, 3.5, 86.7, 0.0, 1.2, 1.2, 91.9, 8.1, 86.7 -1,1,a-pcom-i3,2016-17,New Bedford - Charles S Ashley,02010010, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 92.2, 7.8, 30.9 -1,1,a-pcom-i3,2016-17,New Bedford - Elizabeth Carter Brooks,02010015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 27.0 -5.218750000000001,5,a-pcom-i3,2016-17,New Bedford - Ellen R Hathaway,02010075, 3.3, 0.0, 13.3, 83.3, 0.0, 0.0, 0.0, 91.2, 8.8, 30.0 -1.5625,1.56,a-pcom-i3,2016-17,New Bedford - Elwyn G Campbell,02010020, 0.0, 0.0, 0.0, 95.0, 2.5, 0.0, 2.5, 93.7, 6.3, 40.1 -5.718749999999999,5,a-pcom-i3,2016-17,New Bedford - Hayden/McFadden,02010078, 5.4, 0.0, 10.9, 81.7, 1.0, 0.0, 1.0, 92.0, 8.0, 101.1 -1,1,a-pcom-i3,2016-17,New Bedford - James B Congdon,02010040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.9, 12.1, 34.7 -2.8437499999999982,2.84,a-pcom-i3,2016-17,New Bedford - Jireh Swift,02010130, 4.5, 0.0, 0.0, 90.9, 4.5, 0.0, 0.0, 91.6, 8.4, 22.0 -3.687499999999999,3.69,a-pcom-i3,2016-17,New Bedford - John Avery Parker,02010115, 5.9, 0.0, 5.9, 88.2, 0.0, 0.0, 0.0, 85.2, 14.8, 33.9 -3.187500000000001,3.19,a-pcom-i3,2016-17,New Bedford - John B Devalles,02010050, 7.6, 0.0, 2.5, 89.8, 0.0, 0.0, 0.0, 85.3, 14.7, 39.4 -2.593749999999999,2.59,a-pcom-i3,2016-17,New Bedford - John Hannigan,02010070, 5.0, 0.0, 3.3, 91.7, 0.0, 0.0, 0.0, 86.9, 13.1, 30.5 -4.375,4.38,a-pcom-i3,2016-17,New Bedford - Keith Middle School,02010405, 9.8, 1.0, 1.2, 86.0, 0.0, 0.0, 2.0, 69.6, 30.4, 102.2 -5.562499999999999,5,a-pcom-i3,2016-17,New Bedford - New Bedford High,02010505, 6.1, 2.3, 7.6, 82.2, 0.4, 0.4, 1.1, 65.5, 34.5, 264.3 -2.4687500000000018,2.47,a-pcom-i3,2016-17,New Bedford - Normandin Middle School,02010410, 2.4, 0.0, 4.8, 92.1, 0.0, 0.0, 0.8, 70.6, 29.4, 126.2 -1.875,1.88,a-pcom-i3,2016-17,New Bedford - Renaissance Community School for the Arts,02010124, 3.5, 0.0, 2.6, 94.0, 0.0, 0.0, 0.0, 82.6, 17.4, 28.8 -4.937499999999999,4.94,a-pcom-i3,2016-17,New Bedford - Roosevelt Middle School,02010415, 4.2, 1.1, 6.3, 84.2, 1.1, 1.1, 2.1, 74.7, 25.3, 95.1 -3.7187500000000018,3.72,a-pcom-i3,2016-17,New Bedford - Sgt Wm H Carney Academy,02010045, 8.7, 0.0, 3.3, 88.1, 0.0, 0.0, 0.0, 92.2, 7.8, 92.2 -1,1,a-pcom-i3,2016-17,New Bedford - Thomas R Rodman,02010125, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.7, 9.3, 21.2 -5.375000000000001,5,a-pcom-i3,2016-17,New Bedford - Trinity Day Academy,02010510, 8.6, 0.0, 8.6, 82.8, 0.0, 0.0, 0.0, 40.0, 60.0, 23.4 -7.062499999999998,5,a-pcom-i3,2016-17,New Bedford - Whaling City Junior/Senior High School,02010515, 17.0, 0.0, 5.7, 77.4, 0.0, 0.0, 0.0, 49.1, 50.9, 35.4 -1,1,a-pcom-i3,2016-17,New Bedford - William H Taylor,02010135, 2.2, 0.0, 0.0, 97.8, 0.0, 0.0, 0.0, 97.8, 2.2, 21.8 -11.531249999999998,5,a-pcom-i3,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305, 36.9, 0.0, 0.0, 63.1, 0.0, 0.0, 0.0, 59.8, 40.2, 30.1 -1.4999999999999991,1.5,a-pcom-i3,2016-17,New Salem-Wendell - Swift River,07280015, 0.0, 0.0, 3.0, 95.2, 0.0, 0.0, 1.8, 97.9, 2.1, 33.6 -1,1,a-pcom-i3,2016-17,Newburyport - Edward G. Molin Elementary School,02040030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.1, 8.9, 46.6 -1,1,a-pcom-i3,2016-17,Newburyport - Francis T Bresnahan Elementary,02040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 104.6 -1,1,a-pcom-i3,2016-17,Newburyport - Newburyport High,02040505, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 71.9, 28.1, 94.1 -1,1,a-pcom-i3,2016-17,Newburyport - Rupert A Nock Middle,02040305, 1.5, 1.5, 0.0, 97.0, 0.0, 0.0, 0.0, 69.7, 30.3, 65.7 -3.4062500000000018,3.41,a-pcom-i3,2016-17,Newton - A E Angier,02070005, 3.3, 3.7, 2.7, 89.1, 0.0, 0.0, 1.2, 88.3, 11.7, 74.8 -2.8437499999999982,2.84,a-pcom-i3,2016-17,Newton - Bigelow Middle,02070305, 1.1, 2.5, 4.5, 90.9, 0.0, 0.0, 1.0, 72.7, 27.3, 89.5 -6.656249999999999,5,a-pcom-i3,2016-17,Newton - Bowen,02070015, 8.1, 7.5, 5.8, 78.7, 0.0, 0.0, 0.0, 91.9, 8.1, 62.1 -6.437499999999998,5,a-pcom-i3,2016-17,Newton - C C Burr,02070020, 3.4, 8.6, 5.2, 79.4, 0.0, 0.0, 3.4, 86.9, 13.1, 58.2 -3.6249999999999982,3.62,a-pcom-i3,2016-17,Newton - Cabot,02070025, 1.9, 6.6, 3.2, 88.4, 0.0, 0.0, 0.0, 89.4, 10.6, 59.4 -3.031250000000001,3.03,a-pcom-i3,2016-17,Newton - Charles E Brown Middle,02070310, 2.2, 2.3, 2.2, 90.3, 0.0, 0.7, 2.2, 73.3, 26.7, 136.2 -3.1562499999999982,3.16,a-pcom-i3,2016-17,Newton - Countryside,02070040, 4.3, 2.7, 0.8, 89.9, 0.0, 0.0, 2.3, 84.6, 15.4, 87.5 -2.9999999999999982,3.0,a-pcom-i3,2016-17,Newton - F A Day Middle,02070315, 0.7, 4.6, 2.1, 90.4, 0.0, 0.0, 2.2, 67.6, 32.4, 136.5 -3.9374999999999982,3.94,a-pcom-i3,2016-17,Newton - Franklin,02070055, 8.0, 4.6, 0.0, 87.4, 0.0, 0.0, 0.0, 88.8, 11.2, 77.6 -4.031250000000002,4.03,a-pcom-i3,2016-17,Newton - Horace Mann,02070075, 6.9, 3.2, 0.0, 87.1, 0.0, 0.0, 2.8, 87.3, 12.7, 70.8 -1,1,a-pcom-i3,2016-17,Newton - John Ward,02070120, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 87.5, 12.5, 49.3 -2.9375000000000018,2.94,a-pcom-i3,2016-17,Newton - Lincoln-Eliot,02070070, 0.0, 2.8, 6.5, 90.6, 0.0, 0.0, 0.0, 95.8, 4.2, 70.6 -2.03125,2.03,a-pcom-i3,2016-17,Newton - Mason-Rice,02070080, 1.2, 5.3, 0.0, 93.5, 0.0, 0.0, 0.0, 87.8, 12.2, 61.9 -3.968750000000001,3.97,a-pcom-i3,2016-17,Newton - Memorial Spaulding,02070105, 1.5, 4.4, 6.8, 87.3, 0.0, 0.0, 0.0, 90.1, 9.9, 68.4 -3.374999999999999,3.37,a-pcom-i3,2016-17,Newton - Newton Early Childhood Center,02070108, 2.9, 4.0, 3.2, 89.2, 0.0, 0.0, 0.7, 96.2, 3.8, 71.8 -3.75,3.75,a-pcom-i3,2016-17,Newton - Newton North High,02070505, 3.9, 4.5, 2.2, 88.0, 0.0, 0.0, 1.4, 63.4, 36.6, 337.8 -4.593750000000001,4.59,a-pcom-i3,2016-17,Newton - Newton South High,02070510, 2.4, 6.6, 3.7, 85.3, 0.0, 0.0, 2.0, 67.6, 32.4, 256.3 -4.718749999999998,4.72,a-pcom-i3,2016-17,Newton - Oak Hill Middle,02070320, 5.1, 4.2, 4.8, 84.9, 0.0, 0.0, 1.0, 69.1, 30.9, 97.9 -4.437500000000001,4.44,a-pcom-i3,2016-17,Newton - Peirce,02070100, 5.7, 0.0, 6.4, 85.8, 0.0, 0.0, 2.2, 89.5, 10.5, 46.0 -3.374999999999999,3.37,a-pcom-i3,2016-17,Newton - Underwood,02070115, 3.5, 3.6, 3.6, 89.2, 0.0, 0.0, 0.0, 84.2, 15.8, 54.9 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Newton - Williams,02070125, 0.0, 1.4, 4.2, 94.4, 0.0, 0.0, 0.0, 88.4, 11.6, 43.1 -2.9375000000000018,2.94,a-pcom-i3,2016-17,Newton - Zervas,02070130, 1.6, 4.5, 3.3, 90.6, 0.0, 0.0, 0.0, 86.8, 13.2, 60.1 -1,1,a-pcom-i3,2016-17,Norfolk - Freeman-Kennedy School,02080005, 0.0, 0.4, 2.0, 97.6, 0.0, 0.0, 0.0, 90.0, 10.0, 56.5 -1,1,a-pcom-i3,2016-17,Norfolk - H Olive Day,02080015, 0.0, 0.0, 0.0, 98.5, 0.0, 1.5, 0.0, 97.4, 2.6, 67.7 -1,1,a-pcom-i3,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,09150705, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 62.8, 37.2, 73.1 -1,1,a-pcom-i3,2016-17,North Adams - Brayton,02090035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.8, 16.2, 79.7 -1,1,a-pcom-i3,2016-17,North Adams - Colegrove Park Elementary,02090008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.0, 12.0, 58.3 -1,1,a-pcom-i3,2016-17,North Adams - Drury High,02090505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 66.9, 33.1, 72.8 -1,1,a-pcom-i3,2016-17,North Adams - Greylock,02090015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 49.3 -1,1,a-pcom-i3,2016-17,North Andover - Annie L Sargent School,02110018, 0.0, 1.6, 0.0, 98.4, 0.0, 0.0, 0.0, 91.9, 8.1, 64.2 -1,1,a-pcom-i3,2016-17,North Andover - Atkinson,02110001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.3, 4.7, 76.9 -1,1,a-pcom-i3,2016-17,North Andover - Franklin,02110010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 62.2 -1,1,a-pcom-i3,2016-17,North Andover - Kittredge,02110015, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 86.9, 13.1, 33.7 -1,1,a-pcom-i3,2016-17,North Andover - North Andover High,02110505, 0.8, 1.6, 0.0, 97.6, 0.0, 0.0, 0.0, 65.4, 34.6, 123.7 -1,1,a-pcom-i3,2016-17,North Andover - North Andover Middle,02110305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.2, 27.8, 108.7 -1,1,a-pcom-i3,2016-17,North Andover - Thomson,02110020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.7, 6.3, 37.0 -1,1,a-pcom-i3,2016-17,North Attleborough - Amvet Boulevard,02120007, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 100.0, 0.0, 44.4 -1.09375,1.09,a-pcom-i3,2016-17,North Attleborough - Community,02120030, 0.0, 1.8, 1.8, 96.5, 0.0, 0.0, 0.0, 93.6, 6.4, 56.5 -1,1,a-pcom-i3,2016-17,North Attleborough - Falls,02120010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.4, 7.6, 31.7 -1,1,a-pcom-i3,2016-17,North Attleborough - Joseph W Martin Jr Elementary,02120013, 1.5, 0.0, 1.5, 97.0, 0.0, 0.0, 0.0, 98.5, 1.5, 65.9 -1.0312499999999991,1.03,a-pcom-i3,2016-17,North Attleborough - North Attleboro High,02120505, 0.9, 0.6, 1.8, 96.7, 0.0, 0.0, 0.0, 67.6, 32.4, 112.4 -1,1,a-pcom-i3,2016-17,North Attleborough - North Attleborough Early Learning Center,02120020, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 100.0, 0.0, 27.6 -1.09375,1.09,a-pcom-i3,2016-17,North Attleborough - North Attleborough Middle,02120305, 0.9, 0.0, 2.6, 96.5, 0.0, 0.0, 0.0, 76.8, 23.2, 112.2 -1,1,a-pcom-i3,2016-17,North Attleborough - Roosevelt Avenue,02120015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 25.8 -1,1,a-pcom-i3,2016-17,North Brookfield - North Brookfield Elementary,02150015, 0.0, 2.7, 0.0, 97.3, 0.0, 0.0, 0.0, 86.3, 13.7, 36.5 -1,1,a-pcom-i3,2016-17,North Brookfield - North Brookfield High,02150505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 60.9, 39.1, 28.0 -1.4687500000000009,1.47,a-pcom-i3,2016-17,North Middlesex - Ashby Elementary,07350010, 0.0, 0.0, 2.4, 95.3, 0.0, 2.4, 0.0, 98.9, 1.1, 42.2 -1,1,a-pcom-i3,2016-17,North Middlesex - Hawthorne Brook,07350030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.5, 24.5, 58.4 -1.3437499999999991,1.34,a-pcom-i3,2016-17,North Middlesex - Nissitissit Middle School,07350310, 0.0, 0.0, 4.3, 95.7, 0.0, 0.0, 0.0, 80.0, 20.0, 70.2 -1,1,a-pcom-i3,2016-17,North Middlesex - North Middlesex Regional,07350505, 1.1, 0.0, 0.0, 98.9, 0.0, 0.0, 0.0, 68.6, 31.4, 87.8 -1,1,a-pcom-i3,2016-17,North Middlesex - Peter Fitzpatrick School,07350515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 2.5 -1,1,a-pcom-i3,2016-17,North Middlesex - Spaulding Memorial,07350005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 59.7 -1,1,a-pcom-i3,2016-17,North Middlesex - Squannacook Early Childhood Center,07350002, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.5, 1.5, 19.8 -1,1,a-pcom-i3,2016-17,North Middlesex - Varnum Brook,07350035, 0.0, 0.0, 0.0, 98.8, 0.0, 0.0, 1.2, 93.5, 6.5, 80.7 -1,1,a-pcom-i3,2016-17,North Reading - E Ethel Little School,02170003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.7, 8.3, 46.4 -1,1,a-pcom-i3,2016-17,North Reading - J Turner Hood,02170010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.3, 12.7, 45.8 -1,1,a-pcom-i3,2016-17,North Reading - L D Batchelder,02170005, 0.0, 0.0, 0.4, 99.6, 0.0, 0.0, 0.0, 95.8, 4.2, 47.4 -1,1,a-pcom-i3,2016-17,North Reading - North Reading High,02170505, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 55.2, 44.8, 89.0 -1,1,a-pcom-i3,2016-17,North Reading - North Reading Middle,02170305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 84.0, 16.0, 71.7 -2.406250000000001,2.41,a-pcom-i3,2016-17,Northampton - Bridge Street,02100005, 1.6, 0.0, 6.1, 92.3, 0.0, 0.0, 0.0, 89.3, 10.7, 60.9 -6.124999999999998,5,a-pcom-i3,2016-17,Northampton - Jackson Street,02100020, 0.0, 0.0, 17.8, 80.4, 0.0, 0.0, 1.9, 90.5, 9.5, 53.9 -2.437499999999999,2.44,a-pcom-i3,2016-17,Northampton - John F Kennedy Middle School,02100410, 0.0, 1.0, 5.9, 92.2, 1.0, 0.0, 0.0, 72.7, 27.3, 102.1 -3.28125,3.28,a-pcom-i3,2016-17,Northampton - Leeds,02100025, 2.2, 2.2, 6.1, 89.5, 0.0, 0.0, 0.0, 90.2, 9.8, 45.8 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Northampton - Northampton High,02100505, 2.1, 0.0, 2.1, 95.8, 0.0, 0.0, 0.0, 65.6, 34.4, 94.4 -1.40625,1.41,a-pcom-i3,2016-17,Northampton - R. K. Finn Ryan Road,02100029, 2.2, 0.0, 2.2, 95.5, 0.0, 0.0, 0.0, 85.5, 14.5, 44.8 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,04060705, 0.0, 0.0, 5.4, 94.6, 0.0, 0.0, 0.0, 52.2, 47.8, 92.0 -1,1,a-pcom-i3,2016-17,Northboro-Southboro - Algonquin Regional High,07300505, 0.0, 0.0, 2.0, 97.4, 0.0, 0.6, 0.0, 74.1, 25.9, 176.1 -1,1,a-pcom-i3,2016-17,Northborough - Fannie E Proctor,02130015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 46.9 -1,1,a-pcom-i3,2016-17,Northborough - Lincoln Street,02130003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 42.0 -1,1,a-pcom-i3,2016-17,Northborough - Marguerite E Peaslee,02130014, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 93.3, 6.7, 44.8 -1,1,a-pcom-i3,2016-17,Northborough - Marion E Zeh,02130020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.7, 10.3, 46.3 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Northborough - Robert E. Melican Middle School,02130305, 0.0, 0.0, 2.2, 96.6, 0.0, 1.2, 0.0, 82.9, 17.1, 83.6 -1,1,a-pcom-i3,2016-17,Northbridge - Northbridge Elementary,02140005, 0.0, 0.0, 0.0, 97.9, 0.0, 0.7, 1.4, 95.9, 4.1, 71.3 -1,1,a-pcom-i3,2016-17,Northbridge - Northbridge High,02140505, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 60.1, 39.9, 74.9 -1,1,a-pcom-i3,2016-17,Northbridge - Northbridge Middle,02140305, 0.0, 0.0, 1.8, 97.9, 0.0, 0.0, 0.4, 77.9, 22.1, 85.7 -1,1,a-pcom-i3,2016-17,Northbridge - W Edward Balmer,02140001, 0.0, 0.0, 1.4, 98.0, 0.0, 0.7, 0.0, 94.8, 5.2, 73.8 -1.8437500000000018,1.84,a-pcom-i3,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,08530605, 1.3, 0.0, 4.6, 94.1, 0.0, 0.0, 0.0, 46.9, 53.1, 151.8 -1,1,a-pcom-i3,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,08510605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 56.9, 43.1, 65.7 -1,1,a-pcom-i3,2016-17,Norton - Henri A. Yelle,02180060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 43.5 -1,1,a-pcom-i3,2016-17,Norton - J C Solmonese,02180015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 49.2 -1,1,a-pcom-i3,2016-17,Norton - L G Nourse Elementary,02180010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 35.2 -1.1874999999999991,1.19,a-pcom-i3,2016-17,Norton - Norton High,02180505, 0.0, 0.0, 3.8, 96.2, 0.0, 0.0, 0.0, 72.6, 27.4, 70.4 -1,1,a-pcom-i3,2016-17,Norton - Norton Middle,02180305, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 79.8, 20.2, 63.7 -1,1,a-pcom-i3,2016-17,Norwell - Grace Farrar Cole,02190005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.6, 9.4, 54.4 -1,1,a-pcom-i3,2016-17,Norwell - Norwell High,02190505, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 62.6, 37.4, 74.3 -1,1,a-pcom-i3,2016-17,Norwell - Norwell Middle School,02190405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.8, 25.2, 63.4 -1,1,a-pcom-i3,2016-17,Norwell - William G Vinal,02190020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 55.4 -1.71875,1.72,a-pcom-i3,2016-17,Norwood - Balch,02200005, 0.0, 2.8, 2.8, 94.5, 0.0, 0.0, 0.0, 94.9, 5.1, 36.3 -1,1,a-pcom-i3,2016-17,Norwood - Charles J Prescott,02200025, 0.0, 0.0, 2.7, 97.3, 0.0, 0.0, 0.0, 94.6, 5.4, 36.8 -1,1,a-pcom-i3,2016-17,Norwood - Cornelius M Callahan,02200010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.3, 22.7, 30.7 -1,1,a-pcom-i3,2016-17,Norwood - Dr. Philip O. Coakley Middle School,02200305, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 70.7, 29.3, 92.6 -1,1,a-pcom-i3,2016-17,Norwood - F A Cleveland,02200015, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 93.3, 6.7, 45.1 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Norwood - George F. Willett,02200075, 0.0, 0.0, 1.7, 96.7, 1.7, 0.0, 0.0, 98.3, 1.7, 60.0 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Norwood - John P Oldham,02200020, 0.0, 0.0, 0.0, 96.8, 0.0, 3.2, 0.0, 86.5, 13.5, 31.5 -1,1,a-pcom-i3,2016-17,Norwood - Norwood High,02200505, 0.9, 0.9, 0.9, 97.3, 0.0, 0.0, 0.0, 67.2, 32.8, 112.8 -1.5625,1.56,a-pcom-i3,2016-17,Oak Bluffs - Oak Bluffs Elementary,02210005, 1.9, 0.0, 0.7, 95.0, 0.0, 0.0, 2.4, 91.5, 8.5, 82.6 -1,1,a-pcom-i3,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,08550605, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 59.5, 40.5, 79.6 -1,1,a-pcom-i3,2016-17,Old Rochester - Old Rochester Regional High,07400505, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 64.0, 36.0, 87.9 -1,1,a-pcom-i3,2016-17,Old Rochester - Old Rochester Regional Jr High,07400405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.2, 28.8, 57.2 -1,1,a-pcom-i3,2016-17,Orange - Dexter Park,02230010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.1, 12.9, 38.2 -1,1,a-pcom-i3,2016-17,Orange - Fisher Hill,02230015, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 94.9, 5.1, 47.0 -1,1,a-pcom-i3,2016-17,Orleans - Orleans Elementary,02240005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.2, 12.8, 39.6 -1,1,a-pcom-i3,2016-17,Oxford - Alfred M Chaffee,02260010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 43.6 -1,1,a-pcom-i3,2016-17,Oxford - Clara Barton,02260005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.5, 1.5, 34.9 -1,1,a-pcom-i3,2016-17,Oxford - Oxford High,02260505, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 61.7, 38.3, 70.3 -1,1,a-pcom-i3,2016-17,Oxford - Oxford Middle,02260405, 0.0, 2.1, 0.0, 97.9, 0.0, 0.0, 0.0, 85.4, 14.6, 48.1 -1,1,a-pcom-i3,2016-17,Oxford - Project C.O.F.F.E.E.,02260305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 45.2, 54.8, 11.1 -1,1,a-pcom-i3,2016-17,Palmer - Converse Middle,02270305, 0.0, 0.0, 0.0, 98.6, 0.0, 0.0, 1.4, 88.3, 11.7, 34.4 -1,1,a-pcom-i3,2016-17,Palmer - Old Mill Pond,02270008, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 91.3, 8.7, 91.6 -1,1,a-pcom-i3,2016-17,Palmer - Palmer High,02270505, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 69.9, 30.1, 66.4 -1,1,a-pcom-i3,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,08600605, 0.9, 0.0, 0.0, 99.1, 0.0, 0.0, 0.0, 48.4, 51.6, 111.3 -17.25,5,a-pcom-i3,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505, 17.1, 0.0, 38.0, 44.8, 0.0, 0.0, 0.0, 71.9, 28.1, 52.6 -1,1,a-pcom-i3,2016-17,Peabody - Captain Samuel Brown,02290005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.7, 2.3, 78.8 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Peabody - Center,02290015, 0.0, 2.4, 1.2, 96.4, 0.0, 0.0, 0.0, 97.6, 2.4, 41.7 -1,1,a-pcom-i3,2016-17,Peabody - J Henry Higgins Middle,02290305, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 69.9, 30.1, 145.9 -1,1,a-pcom-i3,2016-17,Peabody - John E Burke,02290007, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 95.8, 4.2, 33.5 -1,1,a-pcom-i3,2016-17,Peabody - John E. McCarthy,02290016, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 57.3 -1,1,a-pcom-i3,2016-17,Peabody - Peabody Veterans Memorial High,02290510, 0.0, 0.5, 0.5, 98.4, 0.0, 0.0, 0.5, 59.2, 40.8, 189.5 -1,1,a-pcom-i3,2016-17,Peabody - South Memorial,02290035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 40.5 -1,1,a-pcom-i3,2016-17,Peabody - Thomas Carroll,02290010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 60.5 -1,1,a-pcom-i3,2016-17,Peabody - West Memorial,02290045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 36.5 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Peabody - William A Welch Sr,02290027, 0.0, 0.0, 5.1, 94.9, 0.0, 0.0, 0.0, 91.1, 8.9, 39.3 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Pelham - Pelham Elementary,02300005, 0.0, 0.0, 3.6, 96.4, 0.0, 0.0, 0.0, 93.1, 6.9, 27.5 -1,1,a-pcom-i3,2016-17,Pembroke - Bryantville Elementary,02310003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.2, 5.8, 51.9 -1,1,a-pcom-i3,2016-17,Pembroke - Hobomock Elementary,02310010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.0, 10.0, 50.1 -1,1,a-pcom-i3,2016-17,Pembroke - North Pembroke Elementary,02310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 62.6 -1,1,a-pcom-i3,2016-17,Pembroke - Pembroke Community Middle School,02310305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 82.4, 17.6, 51.1 -1,1,a-pcom-i3,2016-17,Pembroke - Pembroke High School,02310505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 72.2, 27.8, 104.2 -1,1,a-pcom-i3,2016-17,Pentucket - Dr Frederick N Sweetsir,07450020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.5, 2.5, 36.5 -1,1,a-pcom-i3,2016-17,Pentucket - Dr John C Page School,07450015, 0.0, 0.0, 0.0, 99.4, 0.0, 0.0, 0.6, 88.1, 11.9, 48.2 -1,1,a-pcom-i3,2016-17,Pentucket - Elmer S Bagnall,07450005, 0.0, 0.0, 0.0, 99.5, 0.0, 0.0, 0.5, 90.9, 9.1, 63.5 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Pentucket - Helen R Donaghue School,07450010, 0.0, 0.0, 2.5, 96.8, 0.0, 0.0, 0.7, 93.0, 7.0, 40.8 -1,1,a-pcom-i3,2016-17,Pentucket - Pentucket Regional Middle,07450405, 0.0, 0.0, 0.0, 98.2, 0.0, 1.8, 0.0, 77.7, 22.3, 55.5 -1,1,a-pcom-i3,2016-17,Pentucket - Pentucket Regional Sr High,07450505, 0.0, 0.0, 1.2, 97.7, 0.0, 0.0, 1.2, 60.4, 39.6, 86.3 -1,1,a-pcom-i3,2016-17,Petersham - Petersham Center,02340005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 21.0 -14.4375,5,a-pcom-i3,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505, 30.6, 6.9, 8.7, 53.8, 0.0, 0.0, 0.0, 49.5, 50.5, 22.9 -10.093749999999998,5,a-pcom-i3,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,04930505, 17.8, 3.6, 10.9, 67.7, 0.0, 0.0, 0.0, 64.4, 35.6, 28.1 -3.2500000000000018,3.25,a-pcom-i3,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,04940205, 0.7, 5.3, 4.4, 89.6, 0.0, 0.0, 0.0, 73.7, 26.3, 67.9 -8.781249999999998,5,a-pcom-i3,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505, 8.4, 17.3, 2.4, 71.9, 0.0, 0.0, 0.0, 51.4, 48.6, 41.9 -1,1,a-pcom-i3,2016-17,Pioneer Valley - Bernardston Elementary,07500006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.1, 3.9, 35.6 -1,1,a-pcom-i3,2016-17,Pioneer Valley - Northfield Elementary,07500008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.2, 3.8, 36.9 -1,1,a-pcom-i3,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,07500007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.3, 13.7, 13.2 -1,1,a-pcom-i3,2016-17,Pioneer Valley - Pioneer Valley Regional,07500505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.0, 23.0, 71.3 -1,1,a-pcom-i3,2016-17,Pioneer Valley - Warwick Community School,07500009, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.9, 8.1, 13.5 -13.34375,5,a-pcom-i3,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,04970205, 0.0, 42.7, 0.0, 57.3, 0.0, 0.0, 0.0, 80.9, 19.1, 83.1 -4.781249999999999,4.78,a-pcom-i3,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,04790505, 4.5, 1.6, 6.7, 84.7, 0.0, 0.0, 2.5, 59.3, 40.7, 63.2 -1,1,a-pcom-i3,2016-17,Pittsfield - Allendale,02360010, 0.0, 2.8, 0.0, 97.2, 0.0, 0.0, 0.0, 97.2, 2.8, 36.2 -1,1,a-pcom-i3,2016-17,Pittsfield - Crosby,02360065, 1.0, 0.0, 2.1, 96.9, 0.0, 0.0, 0.0, 90.6, 9.4, 96.0 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Pittsfield - Egremont,02360035, 0.0, 1.7, 3.4, 94.9, 0.0, 0.0, 0.0, 93.3, 6.7, 59.4 -1,1,a-pcom-i3,2016-17,Pittsfield - John T Reid Middle,02360305, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 70.5, 29.5, 86.0 -1,1,a-pcom-i3,2016-17,Pittsfield - Morningside Community School,02360055, 1.4, 0.0, 0.0, 97.2, 0.0, 0.0, 1.4, 90.3, 9.7, 72.4 -2.250000000000001,2.25,a-pcom-i3,2016-17,Pittsfield - Pittsfield High,02360505, 4.6, 0.7, 1.8, 92.8, 0.0, 0.0, 0.0, 69.0, 31.0, 141.1 -1,1,a-pcom-i3,2016-17,Pittsfield - Robert T. Capeless Elementary School,02360045, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 29.1 -2.124999999999999,2.12,a-pcom-i3,2016-17,Pittsfield - Silvio O Conte Community,02360105, 2.8, 1.4, 2.6, 93.2, 0.0, 0.0, 0.0, 93.5, 6.5, 70.7 -1,1,a-pcom-i3,2016-17,Pittsfield - Stearns,02360090, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 34.2 -1,1,a-pcom-i3,2016-17,Pittsfield - Taconic High,02360510, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 62.0, 38.0, 109.1 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Pittsfield - Theodore Herberg Middle,02360310, 0.0, 0.0, 2.8, 94.9, 0.0, 0.0, 2.3, 78.7, 21.3, 87.1 -1,1,a-pcom-i3,2016-17,Pittsfield - Williams,02360100, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 94.5, 5.5, 45.2 -1,1,a-pcom-i3,2016-17,Plainville - Anna Ware Jackson,02380010, 0.0, 0.0, 2.0, 98.0, 0.0, 0.0, 0.0, 98.5, 1.5, 65.0 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Plainville - Beatrice H Wood Elementary,02380005, 0.0, 0.0, 0.5, 96.8, 0.0, 0.0, 2.6, 95.8, 4.2, 38.3 -1,1,a-pcom-i3,2016-17,Plymouth - Cold Spring,02390005, 2.9, 0.0, 0.0, 97.1, 0.0, 0.0, 0.0, 90.6, 9.4, 34.0 -1,1,a-pcom-i3,2016-17,Plymouth - Federal Furnace School,02390011, 0.9, 0.0, 1.5, 97.6, 0.0, 0.0, 0.0, 91.5, 8.5, 65.5 -1,1,a-pcom-i3,2016-17,Plymouth - Hedge,02390010, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 94.5, 5.5, 32.1 -1,1,a-pcom-i3,2016-17,Plymouth - Indian Brook,02390012, 0.0, 0.0, 1.5, 97.6, 0.0, 0.9, 0.0, 91.1, 8.9, 64.7 -1,1,a-pcom-i3,2016-17,Plymouth - Manomet Elementary,02390015, 0.0, 1.3, 1.5, 97.2, 0.0, 0.0, 0.0, 95.2, 4.8, 39.3 -1,1,a-pcom-i3,2016-17,Plymouth - Nathaniel Morton Elementary,02390030, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 95.9, 4.1, 74.3 -1.25,1.25,a-pcom-i3,2016-17,Plymouth - Plymouth Commun Intermediate,02390405, 1.5, 0.8, 1.6, 96.0, 0.0, 0.0, 0.0, 81.7, 18.3, 122.8 -1,1,a-pcom-i3,2016-17,Plymouth - Plymouth Early Childhood Center,02390003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.8, 3.2, 31.4 -1,1,a-pcom-i3,2016-17,Plymouth - Plymouth North High,02390505, 0.0, 0.9, 0.6, 98.4, 0.0, 0.0, 0.0, 68.0, 32.0, 158.5 -1,1,a-pcom-i3,2016-17,Plymouth - Plymouth South High,02390515, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 65.3, 34.7, 157.5 -1,1,a-pcom-i3,2016-17,Plymouth - Plymouth South Middle,02390305, 0.0, 1.0, 0.0, 99.0, 0.0, 0.0, 0.0, 76.3, 23.7, 103.1 -1,1,a-pcom-i3,2016-17,Plymouth - South Elementary,02390046, 1.3, 0.0, 1.3, 97.3, 0.0, 0.0, 0.0, 95.6, 4.4, 75.3 -1,1,a-pcom-i3,2016-17,Plymouth - West Elementary,02390047, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.6, 10.4, 60.8 -1,1,a-pcom-i3,2016-17,Plympton - Dennett Elementary,02400010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.7, 3.3, 30.3 -8.125,5,a-pcom-i3,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,04870550, 12.6, 6.0, 6.3, 74.0, 0.0, 0.0, 1.1, 74.6, 25.4, 163.2 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Provincetown - Provincetown Schools,02420020, 0.0, 0.0, 2.0, 95.3, 0.0, 0.0, 2.7, 78.0, 22.0, 37.0 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Quabbin - Hardwick Elementary,07530005, 4.4, 0.0, 0.0, 95.6, 0.0, 0.0, 0.0, 97.1, 2.9, 22.7 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Quabbin - Hubbardston Center,07530010, 0.0, 2.8, 2.8, 94.4, 0.0, 0.0, 0.0, 94.7, 5.3, 30.2 -6.25,5,a-pcom-i3,2016-17,Quabbin - IB School of Quabbin,07530515, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 20.0, 40.0, 60.0, 1.3 -1,1,a-pcom-i3,2016-17,Quabbin - New Braintree Grade,07530020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 22.0 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Quabbin - Oakham Center,07530025, 4.4, 0.0, 0.0, 95.6, 0.0, 0.0, 0.0, 94.5, 5.5, 22.6 -1.40625,1.41,a-pcom-i3,2016-17,Quabbin - Quabbin Regional High School,07530505, 0.0, 1.3, 0.0, 95.5, 0.0, 1.3, 1.8, 73.8, 26.2, 74.6 -1,1,a-pcom-i3,2016-17,Quabbin - Quabbin Regional Middle School,07530405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.2, 23.8, 35.9 -1,1,a-pcom-i3,2016-17,Quabbin - Ruggles Lane,07530030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.4, 11.6, 35.5 -1,1,a-pcom-i3,2016-17,Quaboag Regional - Quaboag Regional High,07780505, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 71.5, 28.5, 54.6 -1,1,a-pcom-i3,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,07780305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.6, 26.4, 17.9 -1,1,a-pcom-i3,2016-17,Quaboag Regional - Warren Elementary,07780005, 0.0, 0.5, 0.0, 99.5, 0.0, 0.0, 0.0, 92.3, 7.7, 65.2 -1,1,a-pcom-i3,2016-17,Quaboag Regional - West Brookfield Elementary,07780010, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 91.6, 8.4, 35.6 -3.9374999999999982,3.94,a-pcom-i3,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,02430005, 0.0, 10.2, 0.0, 87.4, 0.0, 0.0, 2.4, 99.6, 0.4, 42.0 -1,1,a-pcom-i3,2016-17,Quincy - Atherton Hough,02430040, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 91.5, 8.5, 45.2 -3.0937500000000018,3.09,a-pcom-i3,2016-17,Quincy - Atlantic Middle,02430305, 0.0, 7.5, 0.0, 90.1, 0.0, 0.0, 2.3, 75.7, 24.3, 42.4 -2.6874999999999982,2.69,a-pcom-i3,2016-17,Quincy - Beechwood Knoll Elementary,02430020, 2.9, 5.8, 0.0, 91.4, 0.0, 0.0, 0.0, 98.9, 1.1, 34.7 -1,1,a-pcom-i3,2016-17,Quincy - Broad Meadows Middle,02430310, 0.0, 0.0, 0.0, 97.8, 0.0, 0.0, 2.2, 79.1, 20.9, 44.8 -1,1,a-pcom-i3,2016-17,Quincy - Central Middle,02430315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.3, 21.7, 55.2 -1,1,a-pcom-i3,2016-17,Quincy - Charles A Bernazzani Elementary,02430025, 0.0, 2.9, 0.0, 97.1, 0.0, 0.0, 0.0, 87.8, 12.2, 34.0 -1,1,a-pcom-i3,2016-17,Quincy - Clifford H Marshall Elementary,02430055, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 98.2, 1.8, 67.9 -6.09375,5,a-pcom-i3,2016-17,Quincy - Francis W Parker,02430075, 0.0, 16.7, 0.0, 80.5, 0.0, 0.0, 2.8, 92.1, 7.9, 35.8 -1,1,a-pcom-i3,2016-17,Quincy - Lincoln-Hancock Community School,02430035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 54.5 -2.65625,2.66,a-pcom-i3,2016-17,Quincy - Merrymount,02430060, 0.0, 5.7, 2.8, 91.5, 0.0, 0.0, 0.0, 92.7, 7.3, 35.1 -4.562499999999998,4.56,a-pcom-i3,2016-17,Quincy - Montclair,02430065, 0.0, 14.6, 0.0, 85.4, 0.0, 0.0, 0.0, 95.6, 4.4, 43.2 -2.5,2.5,a-pcom-i3,2016-17,Quincy - North Quincy High,02430510, 0.0, 3.4, 0.0, 92.0, 0.0, 0.0, 4.6, 60.5, 39.5, 131.1 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Quincy - Point Webster Middle,02430325, 0.0, 4.7, 0.0, 95.3, 0.0, 0.0, 0.0, 76.7, 23.3, 42.4 -2.5,2.5,a-pcom-i3,2016-17,Quincy - Quincy High,02430505, 0.3, 4.6, 0.0, 92.0, 1.2, 0.0, 1.8, 65.0, 35.0, 162.5 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Quincy - Reay E Sterling Middle,02430320, 1.1, 0.0, 0.0, 96.7, 2.2, 0.0, 0.0, 77.9, 22.1, 45.5 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Quincy - Snug Harbor Community School,02430090, 0.7, 1.4, 0.0, 95.2, 0.0, 0.0, 2.7, 95.3, 4.7, 73.0 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Quincy - Squantum,02430095, 0.0, 3.4, 0.0, 96.6, 0.0, 0.0, 0.0, 90.5, 9.5, 47.4 -2.6250000000000018,2.63,a-pcom-i3,2016-17,Quincy - Wollaston School,02430110, 1.4, 7.0, 0.0, 91.6, 0.0, 0.0, 0.0, 92.0, 8.0, 34.6 -1,1,a-pcom-i3,2016-17,Ralph C Mahar - Pathways Early College Innovation School,07550515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.3 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Ralph C Mahar - Ralph C Mahar Regional,07550505, 1.0, 0.9, 2.8, 95.3, 0.0, 0.0, 0.0, 66.9, 33.1, 105.2 -1,1,a-pcom-i3,2016-17,Ralph C Mahar - The Gateway to College,07550525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.3 -4.656250000000002,4.66,a-pcom-i3,2016-17,Randolph - Elizabeth G Lyons Elementary,02440020, 12.4, 0.0, 0.0, 85.1, 0.0, 0.0, 2.5, 77.7, 22.3, 40.3 -5.062500000000001,5,a-pcom-i3,2016-17,Randolph - J F Kennedy Elementary,02440018, 8.4, 1.2, 3.6, 83.8, 0.0, 0.0, 3.0, 86.8, 13.2, 83.4 -5.093749999999999,5,a-pcom-i3,2016-17,Randolph - Margaret L Donovan,02440015, 8.1, 4.0, 0.0, 83.7, 0.0, 0.0, 4.2, 93.8, 6.2, 49.6 -5.343749999999998,5,a-pcom-i3,2016-17,Randolph - Martin E Young Elementary,02440040, 2.1, 6.4, 4.3, 82.9, 0.0, 0.0, 4.3, 87.2, 12.8, 46.9 -9.968750000000002,5,a-pcom-i3,2016-17,Randolph - Randolph Community Middle,02440410, 25.7, 2.3, 2.8, 68.1, 1.2, 0.0, 0.0, 77.5, 22.5, 85.7 -9.249999999999998,5,a-pcom-i3,2016-17,Randolph - Randolph High,02440505, 16.5, 6.8, 5.2, 70.4, 0.0, 0.0, 1.1, 64.9, 35.1, 89.0 -1,1,a-pcom-i3,2016-17,Reading - Alice M Barrows,02460002, 0.0, 1.5, 0.5, 98.0, 0.0, 0.0, 0.0, 93.3, 6.7, 38.5 -1,1,a-pcom-i3,2016-17,Reading - Arthur W Coolidge Middle,02460305, 0.0, 0.0, 0.1, 99.9, 0.0, 0.0, 0.0, 83.5, 16.5, 64.5 -1,1,a-pcom-i3,2016-17,Reading - Birch Meadow,02460005, 0.0, 0.0, 0.3, 99.7, 0.0, 0.0, 0.0, 98.5, 1.5, 58.4 -1,1,a-pcom-i3,2016-17,Reading - J Warren Killam,02460017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 48.0 -1,1,a-pcom-i3,2016-17,Reading - Joshua Eaton,02460010, 0.0, 0.9, 0.0, 96.9, 0.0, 0.0, 2.2, 94.7, 5.3, 45.8 -1,1,a-pcom-i3,2016-17,Reading - RISE PreSchool,02460001, 0.0, 0.0, 0.8, 99.2, 0.0, 0.0, 0.0, 100.0, 0.0, 22.9 -1,1,a-pcom-i3,2016-17,Reading - Reading Memorial High,02460505, 0.7, 0.7, 0.0, 97.8, 0.8, 0.0, 0.0, 72.6, 27.4, 119.2 -1,1,a-pcom-i3,2016-17,Reading - Walter S Parker Middle,02460310, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 76.0, 24.0, 66.0 -1,1,a-pcom-i3,2016-17,Reading - Wood End Elementary School,02460020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 45.0 -1,1,a-pcom-i3,2016-17,Revere - A. C. Whelan Elementary School,02480003, 0.0, 0.7, 0.7, 98.6, 0.0, 0.0, 0.0, 95.9, 4.1, 73.5 -1,1,a-pcom-i3,2016-17,Revere - Abraham Lincoln,02480025, 0.0, 0.6, 0.8, 98.6, 0.0, 0.0, 0.0, 94.5, 5.5, 63.4 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Revere - Beachmont Veterans Memorial School,02480013, 2.1, 1.1, 3.2, 93.6, 0.0, 0.0, 0.0, 86.5, 13.5, 47.0 -2.34375,2.34,a-pcom-i3,2016-17,Revere - Garfield Elementary School,02480056, 0.0, 4.0, 2.3, 92.5, 0.0, 0.0, 1.1, 91.2, 8.8, 87.1 -2.03125,2.03,a-pcom-i3,2016-17,Revere - Garfield Middle School,02480057, 0.0, 4.7, 1.8, 93.5, 0.0, 0.0, 0.0, 56.9, 43.1, 55.6 -1,1,a-pcom-i3,2016-17,Revere - Paul Revere,02480050, 0.0, 0.0, 1.0, 99.0, 0.0, 0.0, 0.0, 94.7, 5.3, 50.0 -2.7812500000000018,2.78,a-pcom-i3,2016-17,Revere - Revere High,02480505, 3.1, 1.9, 1.9, 91.1, 0.3, 0.0, 1.9, 67.6, 32.4, 162.0 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Revere - Rumney Marsh Academy,02480014, 1.5, 0.0, 2.2, 96.4, 0.0, 0.0, 0.0, 74.6, 25.4, 68.8 -3.125,3.13,a-pcom-i3,2016-17,Revere - Seacoast School,02480520, 5.0, 0.0, 5.0, 90.0, 0.0, 0.0, 0.0, 51.6, 48.4, 20.0 -2.3749999999999982,2.37,a-pcom-i3,2016-17,Revere - Staff Sargent James J. Hill Elementary School,02480035, 0.0, 0.0, 4.2, 92.4, 0.0, 1.7, 1.7, 88.7, 11.3, 59.3 -1.5312500000000018,1.53,a-pcom-i3,2016-17,Revere - Susan B. Anthony Middle School,02480305, 1.6, 0.0, 3.3, 95.1, 0.0, 0.0, 0.0, 67.6, 32.4, 61.2 -1,1,a-pcom-i3,2016-17,Richmond - Richmond Consolidated,02490005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.2, 9.8, 28.4 -1.40625,1.41,a-pcom-i3,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,04830305, 0.0, 0.6, 3.8, 95.5, 0.0, 0.0, 0.0, 71.4, 28.6, 78.3 -1,1,a-pcom-i3,2016-17,River Valley Charter (District) - River Valley Charter School,04820050, 0.0, 0.0, 0.0, 97.7, 0.0, 0.0, 2.3, 82.7, 17.3, 43.8 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Rochester - Rochester Memorial,02500005, 3.3, 0.0, 0.0, 96.7, 0.0, 0.0, 0.0, 85.2, 14.8, 61.0 -1,1,a-pcom-i3,2016-17,Rockland - Jefferson Elementary School,02510060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.9, 1.1, 47.1 -1,1,a-pcom-i3,2016-17,Rockland - John W Rogers Middle,02510305, 1.3, 0.0, 0.1, 97.3, 0.0, 0.0, 1.3, 85.0, 15.0, 76.6 -1,1,a-pcom-i3,2016-17,Rockland - Memorial Park,02510020, 2.5, 0.0, 0.0, 97.5, 0.0, 0.0, 0.0, 99.1, 0.9, 40.0 -1,1,a-pcom-i3,2016-17,Rockland - R Stewart Esten,02510025, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 93.8, 6.2, 42.2 -1,1,a-pcom-i3,2016-17,Rockland - Rockland Senior High,02510505, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 69.8, 30.2, 83.9 -1,1,a-pcom-i3,2016-17,Rockport - Rockport Elementary,02520005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.3, 11.7, 58.2 -1,1,a-pcom-i3,2016-17,Rockport - Rockport High,02520510, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 66.2, 33.8, 42.2 -1,1,a-pcom-i3,2016-17,Rockport - Rockport Middle,02520305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 74.2, 25.8, 40.7 -2.2187499999999982,2.22,a-pcom-i3,2016-17,Rowe - Rowe Elementary,02530005, 0.0, 0.0, 7.1, 92.9, 0.0, 0.0, 0.0, 83.8, 16.2, 14.0 -13.687499999999998,5,a-pcom-i3,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,04840505, 26.4, 6.6, 9.0, 56.2, 0.0, 0.0, 1.8, 59.2, 40.8, 166.7 -7.1875,5,a-pcom-i3,2016-17,Sabis International Charter (District) - Sabis International Charter School,04410505, 9.3, 1.3, 12.4, 77.0, 0.0, 0.0, 0.0, 73.6, 26.4, 130.6 -2.281249999999999,2.28,a-pcom-i3,2016-17,Salem - Bates,02580003, 4.8, 0.2, 2.2, 92.7, 0.0, 0.0, 0.0, 83.7, 16.3, 62.3 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Salem - Carlton,02580015, 0.0, 0.3, 4.8, 94.9, 0.0, 0.0, 0.0, 89.5, 10.5, 42.0 -2.562500000000001,2.56,a-pcom-i3,2016-17,Salem - Collins Middle,02580305, 2.1, 2.1, 4.1, 91.8, 0.0, 0.0, 0.0, 72.4, 27.6, 97.2 -2.124999999999999,2.12,a-pcom-i3,2016-17,Salem - Horace Mann Laboratory,02580030, 0.0, 0.3, 6.5, 93.2, 0.0, 0.0, 0.0, 94.3, 5.7, 44.7 -4.812500000000002,4.81,a-pcom-i3,2016-17,Salem - Nathaniel Bowditch,02580025, 1.3, 1.3, 12.8, 84.6, 0.0, 0.0, 0.0, 87.0, 13.0, 78.0 -5.906250000000002,5,a-pcom-i3,2016-17,Salem - New Liberty Innovation School,02580510, 0.0, 0.0, 18.9, 81.1, 0.0, 0.0, 0.0, 76.3, 23.7, 10.5 -1,1,a-pcom-i3,2016-17,Salem - Salem Early Childhood,02580001, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 94.3, 5.7, 31.4 -3.031250000000001,3.03,a-pcom-i3,2016-17,Salem - Salem High,02580505, 1.6, 0.0, 8.1, 90.3, 0.0, 0.0, 0.0, 64.4, 35.6, 183.4 -4.624999999999999,4.62,a-pcom-i3,2016-17,Salem - Salem Prep High School,02580515, 0.0, 0.0, 14.8, 85.2, 0.0, 0.0, 0.0, 59.4, 40.6, 13.5 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Salem - Saltonstall School,02580050, 0.0, 0.4, 3.9, 95.6, 0.0, 0.0, 0.0, 87.2, 12.8, 63.7 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Salem - Witchcraft Heights,02580070, 0.0, 0.3, 3.5, 96.1, 0.0, 0.0, 0.0, 89.2, 10.8, 84.9 -6.124999999999998,5,a-pcom-i3,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,04850485, 4.8, 0.0, 13.2, 80.4, 0.0, 1.6, 0.0, 64.9, 35.1, 62.4 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Sandwich - Forestdale School,02610002, 1.0, 3.0, 1.3, 94.7, 0.0, 0.0, 0.0, 95.4, 4.6, 98.2 -1,1,a-pcom-i3,2016-17,Sandwich - Oak Ridge,02610025, 0.0, 0.0, 0.2, 99.8, 0.0, 0.0, 0.0, 90.7, 9.3, 105.8 -1,1,a-pcom-i3,2016-17,Sandwich - Sandwich High,02610505, 0.0, 1.6, 1.2, 97.3, 0.0, 0.0, 0.0, 76.3, 23.7, 96.1 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Sandwich - Sandwich STEM Academy,02610305, 0.0, 1.0, 1.5, 95.6, 0.0, 0.0, 2.0, 77.7, 22.3, 51.1 -1,1,a-pcom-i3,2016-17,Saugus - Ballard School,02620001, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.5 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Saugus - Belmonte Saugus Middle,02620305, 0.0, 0.0, 3.3, 96.7, 0.0, 0.0, 0.0, 61.5, 38.5, 82.9 -1,1,a-pcom-i3,2016-17,Saugus - Douglas Waybright,02620067, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 24.3 -1,1,a-pcom-i3,2016-17,Saugus - Lynnhurst,02620040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 27.6 -1,1,a-pcom-i3,2016-17,Saugus - Oaklandvale,02620050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.7, 4.3, 26.2 -1,1,a-pcom-i3,2016-17,Saugus - Saugus High,02620505, 1.2, 0.0, 1.2, 97.5, 0.0, 0.0, 0.0, 61.6, 38.4, 80.7 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Saugus - Veterans Memorial,02620065, 0.0, 0.0, 1.2, 96.4, 0.0, 1.2, 1.2, 95.2, 4.8, 83.2 -2.718750000000001,2.72,a-pcom-i3,2016-17,Savoy - Emma L Miller Elementary School,02630010, 0.0, 0.0, 8.7, 91.3, 0.0, 0.0, 0.0, 99.1, 0.9, 11.5 -1,1,a-pcom-i3,2016-17,Scituate - Cushing Elementary,02640007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.7, 12.3, 48.7 -1,1,a-pcom-i3,2016-17,Scituate - Gates Intermediate School,02640305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.3, 23.7, 66.6 -1,1,a-pcom-i3,2016-17,Scituate - Hatherly Elementary,02640010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.5, 7.5, 53.4 -1,1,a-pcom-i3,2016-17,Scituate - Jenkins Elementary School,02640015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 55.4 -1,1,a-pcom-i3,2016-17,Scituate - Scituate High School,02640505, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 66.0, 34.0, 99.9 -1,1,a-pcom-i3,2016-17,Scituate - Wampatuck Elementary,02640020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.0, 4.0, 56.1 -1,1,a-pcom-i3,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,02650405, 1.5, 1.5, 0.0, 97.1, 0.0, 0.0, 0.0, 81.0, 19.0, 68.5 -1,1,a-pcom-i3,2016-17,Seekonk - George R Martin,02650007, 0.0, 0.0, 0.0, 98.1, 0.0, 0.0, 1.9, 94.0, 6.0, 53.5 -1,1,a-pcom-i3,2016-17,Seekonk - Mildred Aitken School,02650015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 48.4 -1,1,a-pcom-i3,2016-17,Seekonk - Seekonk High,02650505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.1, 33.9, 74.7 -9.6875,5,a-pcom-i3,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,04860105, 11.3, 3.2, 16.4, 69.0, 0.0, 0.0, 0.0, 77.5, 22.5, 92.9 -1,1,a-pcom-i3,2016-17,Sharon - Cottage Street,02660005, 1.9, 0.5, 0.0, 97.7, 0.0, 0.0, 0.0, 93.0, 7.0, 71.6 -1,1,a-pcom-i3,2016-17,Sharon - East Elementary,02660010, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 93.5, 6.5, 76.3 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Sharon - Heights Elementary,02660015, 2.2, 1.1, 0.0, 96.7, 0.0, 0.0, 0.0, 94.1, 5.9, 91.3 -1.3437499999999991,1.34,a-pcom-i3,2016-17,Sharon - Sharon High,02660505, 0.7, 2.1, 1.4, 95.7, 0.0, 0.0, 0.0, 69.8, 30.2, 140.5 -1,1,a-pcom-i3,2016-17,Sharon - Sharon Middle,02660305, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 76.7, 23.3, 94.4 -1,1,a-pcom-i3,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,08710605, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 56.4, 43.6, 183.4 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Sherborn - Pine Hill,02690010, 1.6, 0.0, 0.1, 95.6, 0.0, 0.0, 2.7, 93.6, 6.4, 67.0 -1,1,a-pcom-i3,2016-17,Shrewsbury - Beal School,02710005, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 96.4, 3.6, 55.3 -1,1,a-pcom-i3,2016-17,Shrewsbury - Calvin Coolidge,02710015, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 96.5, 3.5, 57.0 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Shrewsbury - Floral Street School,02710020, 0.0, 3.3, 0.0, 95.6, 0.0, 0.0, 1.1, 93.4, 6.6, 89.9 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Shrewsbury - Oak Middle School,02710030, 0.0, 2.0, 1.0, 96.4, 0.0, 0.0, 0.7, 81.1, 18.9, 101.8 -1,1,a-pcom-i3,2016-17,Shrewsbury - Parker Road Preschool,02710040, 0.0, 0.0, 0.0, 98.2, 0.0, 0.0, 1.8, 100.0, 0.0, 37.7 -2.2187499999999982,2.22,a-pcom-i3,2016-17,Shrewsbury - Sherwood Middle School,02710305, 1.6, 0.0, 3.5, 92.9, 0.0, 0.0, 2.0, 87.2, 12.8, 115.1 -1.5937499999999982,1.59,a-pcom-i3,2016-17,Shrewsbury - Shrewsbury Sr High,02710505, 0.5, 1.5, 2.4, 94.9, 0.0, 0.0, 0.7, 72.4, 27.6, 204.8 -1,1,a-pcom-i3,2016-17,Shrewsbury - Spring Street,02710035, 0.0, 0.0, 2.4, 97.6, 0.0, 0.0, 0.0, 96.1, 3.9, 42.3 -1.3437499999999991,1.34,a-pcom-i3,2016-17,Shrewsbury - Walter J Paton,02710025, 0.0, 2.2, 2.2, 95.7, 0.0, 0.0, 0.0, 95.7, 4.3, 46.1 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Shutesbury - Shutesbury Elementary,02720005, 0.0, 3.2, 3.2, 93.7, 0.0, 0.0, 0.0, 95.6, 4.4, 31.6 -1,1,a-pcom-i3,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,04770010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 57.3 -1,1,a-pcom-i3,2016-17,Silver Lake - Silver Lake Regional High,07600505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 71.2, 28.8, 142.4 -1,1,a-pcom-i3,2016-17,Silver Lake - Silver Lake Regional Middle School,07600405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.9, 21.1, 69.3 -2.281249999999999,2.28,a-pcom-i3,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,04740505, 0.0, 1.9, 5.3, 92.7, 0.0, 0.0, 0.0, 74.8, 25.2, 51.8 -1,1,a-pcom-i3,2016-17,Somerset - Chace Street,02730005, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 96.1, 3.9, 51.5 -1,1,a-pcom-i3,2016-17,Somerset - North Elementary,02730008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.1, 4.9, 61.3 -1,1,a-pcom-i3,2016-17,Somerset - Somerset Middle School,02730305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 76.2, 23.8, 71.2 -1,1,a-pcom-i3,2016-17,Somerset - South,02730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 31.7 -1,1,a-pcom-i3,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,07630505, 0.0, 0.0, 2.5, 97.5, 0.0, 0.0, 0.0, 65.9, 34.1, 117.4 -5.718749999999999,5,a-pcom-i3,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,02740087, 4.6, 1.5, 10.7, 81.7, 0.0, 0.0, 1.5, 87.6, 12.4, 65.5 -5.531250000000001,5,a-pcom-i3,2016-17,Somerville - Arthur D Healey,02740075, 6.9, 2.9, 8.0, 82.3, 0.0, 0.0, 0.0, 81.3, 18.7, 70.2 -1,1,a-pcom-i3,2016-17,Somerville - Benjamin G Brown,02740015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.5, 8.5, 23.6 -6.343749999999999,5,a-pcom-i3,2016-17,Somerville - Capuano Early Childhood Center,02740005, 4.2, 0.0, 14.6, 79.7, 0.0, 0.0, 1.5, 97.0, 3.0, 67.0 -9.718749999999998,5,a-pcom-i3,2016-17,Somerville - E Somerville Community,02740111, 5.0, 2.5, 22.4, 68.9, 0.0, 0.0, 1.2, 81.4, 18.6, 80.5 -1.875,1.88,a-pcom-i3,2016-17,Somerville - Full Circle High School,02740510, 0.0, 0.0, 6.0, 94.0, 0.0, 0.0, 0.0, 51.5, 48.5, 16.7 -3.59375,3.59,a-pcom-i3,2016-17,Somerville - John F Kennedy,02740083, 1.4, 2.7, 6.1, 88.5, 0.0, 0.0, 1.4, 77.4, 22.6, 73.7 -2.9999999999999982,3.0,a-pcom-i3,2016-17,Somerville - Next Wave Junior High,02740410, 9.6, 0.0, 0.0, 90.4, 0.0, 0.0, 0.0, 76.0, 24.0, 10.4 -5.812499999999998,5,a-pcom-i3,2016-17,Somerville - Somerville High,02740505, 6.1, 2.3, 9.2, 81.4, 0.0, 0.0, 1.1, 62.2, 37.8, 174.9 -6.906249999999998,5,a-pcom-i3,2016-17,Somerville - West Somerville Neighborhood,02740115, 7.8, 0.0, 11.7, 77.9, 0.0, 0.0, 2.6, 82.4, 17.6, 38.4 -5.0,5.0,a-pcom-i3,2016-17,Somerville - Winter Hill Community,02740120, 4.4, 4.4, 5.8, 84.0, 0.0, 0.0, 1.5, 82.5, 17.5, 68.6 -1,1,a-pcom-i3,2016-17,South Hadley - Michael E. Smith Middle School,02780305, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 81.0, 19.0, 70.6 -1,1,a-pcom-i3,2016-17,South Hadley - Mosier,02780020, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 90.1, 9.9, 54.8 -1.1249999999999982,1.12,a-pcom-i3,2016-17,South Hadley - Plains Elementary,02780015, 1.8, 0.0, 1.8, 96.4, 0.0, 0.0, 0.0, 94.6, 5.4, 56.0 -1,1,a-pcom-i3,2016-17,South Hadley - South Hadley High,02780505, 0.0, 1.3, 0.0, 98.7, 0.0, 0.0, 0.0, 59.8, 40.2, 75.0 -1.9375000000000009,1.94,a-pcom-i3,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,08290605, 0.9, 0.9, 4.4, 93.8, 0.0, 0.0, 0.0, 48.5, 51.5, 113.1 -2.3749999999999982,2.37,a-pcom-i3,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,04880550, 4.9, 2.7, 0.0, 92.4, 0.0, 0.0, 0.0, 73.3, 26.7, 97.3 -1,1,a-pcom-i3,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,08730605, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 51.4, 48.6, 87.3 -1,1,a-pcom-i3,2016-17,Southampton - William E Norris,02750005, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 91.0, 9.0, 66.4 -1,1,a-pcom-i3,2016-17,Southborough - Albert S. Woodward Memorial School,02760050, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 96.3, 3.7, 40.6 -1,1,a-pcom-i3,2016-17,Southborough - Margaret A Neary,02760020, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 91.8, 8.2, 48.7 -1,1,a-pcom-i3,2016-17,Southborough - Mary E Finn School,02760008, 1.4, 0.0, 0.0, 97.2, 0.0, 1.4, 0.0, 92.4, 7.6, 72.4 -1,1,a-pcom-i3,2016-17,Southborough - P Brent Trottier,02760305, 0.0, 0.0, 0.0, 97.1, 2.9, 0.0, 0.0, 78.4, 21.6, 69.6 -1.9687499999999991,1.97,a-pcom-i3,2016-17,Southbridge - Charlton Street,02770005, 0.0, 0.0, 6.3, 93.7, 0.0, 0.0, 0.0, 93.3, 6.7, 63.1 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Southbridge - Eastford Road,02770010, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 97.2, 2.8, 42.3 -4.468749999999999,4.47,a-pcom-i3,2016-17,Southbridge - Southbridge High School,02770515, 2.4, 0.0, 11.9, 85.7, 0.0, 0.0, 0.0, 57.0, 43.0, 84.2 -1.3437499999999991,1.34,a-pcom-i3,2016-17,Southbridge - Southbridge Middle School,02770315, 2.9, 0.0, 1.4, 95.7, 0.0, 0.0, 0.0, 72.3, 27.7, 69.2 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Southbridge - West Street,02770020, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 93.0, 7.0, 59.7 -3.031250000000001,3.03,a-pcom-i3,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,08720605, 5.4, 1.6, 2.2, 90.3, 0.0, 0.5, 0.0, 59.5, 40.5, 185.0 -2.5312499999999982,2.53,a-pcom-i3,2016-17,Southern Berkshire - Mt Everett Regional,07650505, 5.1, 1.4, 1.7, 91.9, 0.0, 0.0, 0.0, 62.6, 37.4, 59.0 -4.125000000000001,4.13,a-pcom-i3,2016-17,Southern Berkshire - New Marlborough Central,07650018, 0.0, 0.0, 4.6, 86.8, 8.6, 0.0, 0.0, 72.0, 28.0, 7.2 -3.8750000000000018,3.88,a-pcom-i3,2016-17,Southern Berkshire - South Egremont,07650030, 0.0, 0.0, 12.4, 87.6, 0.0, 0.0, 0.0, 100.0, 0.0, 2.7 -1,1,a-pcom-i3,2016-17,Southern Berkshire - Undermountain,07650035, 0.0, 0.0, 1.8, 98.2, 0.0, 0.0, 0.0, 93.9, 6.1, 72.1 -1,1,a-pcom-i3,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,08760605, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 56.9, 43.1, 159.9 -1,1,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,07660215, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 15.2 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,07660315, 0.0, 2.7, 2.7, 94.6, 0.0, 0.0, 0.0, 90.5, 9.5, 73.9 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,07660505, 0.0, 0.0, 2.5, 95.6, 0.0, 0.0, 1.9, 71.6, 28.4, 104.9 -1,1,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,07660010, 0.0, 2.2, 0.0, 97.8, 0.0, 0.0, 0.0, 98.2, 1.8, 46.3 -1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - David Prouty High,07670505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 66.9, 33.1, 50.5 -1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - East Brookfield Elementary,07670008, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 33.8 -1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - Knox Trail Middle School,07670415, 0.0, 0.0, 0.0, 98.2, 0.0, 0.0, 1.8, 77.3, 22.7, 54.4 -1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - Wire Village School,07670040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.8, 8.2, 63.2 -8.843749999999998,5,a-pcom-i3,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,02810095, 8.1, 0.0, 20.2, 71.7, 0.0, 0.0, 0.0, 93.9, 6.1, 49.2 -5.625,5,a-pcom-i3,2016-17,Springfield - Alice B Beal Elementary,02810175, 12.0, 3.0, 3.0, 82.0, 0.0, 0.0, 0.0, 94.0, 6.0, 33.2 -5.031249999999998,5,a-pcom-i3,2016-17,Springfield - Arthur T Talmadge,02810165, 6.9, 2.3, 6.9, 83.9, 0.0, 0.0, 0.0, 93.1, 6.9, 43.3 -5.874999999999999,5,a-pcom-i3,2016-17,Springfield - Balliet Middle School,02810360, 9.4, 0.0, 9.4, 81.2, 0.0, 0.0, 0.0, 52.8, 47.2, 21.2 -10.093749999999998,5,a-pcom-i3,2016-17,Springfield - Brightwood,02810025, 4.1, 0.0, 28.3, 67.7, 0.0, 0.0, 0.0, 89.7, 10.3, 49.3 -12.09375,5,a-pcom-i3,2016-17,Springfield - Chestnut Accelerated Middle School (North),02810365, 24.9, 0.0, 13.8, 61.3, 0.0, 0.0, 0.0, 62.7, 37.3, 40.1 -12.09375,5,a-pcom-i3,2016-17,Springfield - Chestnut Accelerated Middle School (South),02810366, 15.4, 3.1, 20.2, 61.3, 0.0, 0.0, 0.0, 71.3, 28.7, 32.6 -17.71875,5,a-pcom-i3,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),02810367, 31.8, 2.2, 22.7, 43.3, 0.0, 0.0, 0.0, 82.0, 18.0, 44.5 -8.59375,5,a-pcom-i3,2016-17,Springfield - Conservatory of the Arts,02810475, 14.0, 0.0, 13.5, 72.5, 0.0, 0.0, 0.0, 74.0, 26.0, 50.1 -5.499999999999998,5,a-pcom-i3,2016-17,Springfield - Daniel B Brunton,02810035, 8.8, 0.0, 8.8, 82.4, 0.0, 0.0, 0.0, 94.9, 5.1, 56.8 -8.8125,5,a-pcom-i3,2016-17,Springfield - Early Childhood Education Center,02810001, 12.8, 0.0, 15.4, 71.8, 0.0, 0.0, 0.0, 97.4, 2.6, 39.0 -7.718750000000001,5,a-pcom-i3,2016-17,Springfield - Edward P. Boland School,02810010, 7.9, 0.0, 16.8, 75.3, 0.0, 0.0, 0.0, 89.4, 10.6, 113.6 -10.84375,5,a-pcom-i3,2016-17,Springfield - Elias Brookings,02810030, 18.3, 1.8, 14.5, 65.3, 0.0, 0.0, 0.0, 94.6, 5.4, 55.1 -5.031249999999998,5,a-pcom-i3,2016-17,Springfield - Forest Park Middle,02810325, 7.5, 1.1, 7.5, 83.9, 0.0, 0.0, 0.0, 81.7, 18.3, 93.6 -15.718749999999998,5,a-pcom-i3,2016-17,Springfield - Frank H Freedman,02810075, 41.9, 0.0, 8.4, 49.7, 0.0, 0.0, 0.0, 86.0, 14.0, 35.7 -4.187500000000002,4.19,a-pcom-i3,2016-17,Springfield - Frederick Harris,02810080, 2.4, 1.2, 9.7, 86.6, 0.0, 0.0, 0.0, 92.8, 7.2, 81.7 -2.593749999999999,2.59,a-pcom-i3,2016-17,Springfield - Gateway to College at Holyoke Community College,02810575, 8.3, 0.0, 0.0, 91.7, 0.0, 0.0, 0.0, 8.3, 91.7, 0.4 -2.593749999999999,2.59,a-pcom-i3,2016-17,Springfield - Gateway to College at Springfield Technical Community College,02810580, 8.3, 0.0, 0.0, 91.7, 0.0, 0.0, 0.0, 8.3, 91.7, 0.4 -10.375,5,a-pcom-i3,2016-17,Springfield - German Gerena Community School,02810195, 3.8, 0.0, 29.4, 66.8, 0.0, 0.0, 0.0, 91.4, 8.6, 105.5 -5.499999999999998,5,a-pcom-i3,2016-17,Springfield - Glenwood,02810065, 5.0, 0.0, 12.6, 82.4, 0.0, 0.0, 0.0, 97.5, 2.5, 39.7 -7.593749999999999,5,a-pcom-i3,2016-17,Springfield - Glickman Elementary,02810068, 6.5, 0.0, 17.8, 75.7, 0.0, 0.0, 0.0, 95.2, 4.8, 61.7 -14.75,5,a-pcom-i3,2016-17,Springfield - High School Of Commerce,02810510, 21.2, 4.2, 21.8, 52.8, 0.0, 0.0, 0.0, 62.5, 37.5, 165.8 -2.8437499999999982,2.84,a-pcom-i3,2016-17,Springfield - Hiram L Dorman,02810050, 9.1, 0.0, 0.0, 90.9, 0.0, 0.0, 0.0, 91.0, 9.0, 44.0 -6.625000000000001,5,a-pcom-i3,2016-17,Springfield - Homer Street,02810085, 9.6, 1.9, 9.6, 78.8, 0.0, 0.0, 0.0, 90.4, 9.6, 51.8 -5.750000000000002,5,a-pcom-i3,2016-17,Springfield - Indian Orchard Elementary,02810100, 12.6, 0.0, 5.8, 81.6, 0.0, 0.0, 0.0, 90.8, 9.2, 87.0 -11.968749999999998,5,a-pcom-i3,2016-17,Springfield - John F Kennedy Middle,02810328, 21.8, 5.0, 6.4, 61.7, 0.0, 1.7, 3.5, 69.8, 30.2, 59.6 -9.53125,5,a-pcom-i3,2016-17,Springfield - John J Duggan Middle,02810320, 23.8, 0.0, 6.7, 69.5, 0.0, 0.0, 0.0, 68.7, 31.3, 105.3 -4.874999999999998,4.87,a-pcom-i3,2016-17,Springfield - Kensington International School,02810110, 6.6, 0.0, 9.0, 84.4, 0.0, 0.0, 0.0, 88.8, 11.2, 45.1 -8.062499999999998,5,a-pcom-i3,2016-17,Springfield - Liberty,02810115, 15.4, 0.0, 10.4, 74.2, 0.0, 0.0, 0.0, 94.9, 5.1, 38.8 -9.28125,5,a-pcom-i3,2016-17,Springfield - Liberty Preparatory Academy,02810560, 14.8, 0.0, 14.8, 70.3, 0.0, 0.0, 0.0, 44.5, 55.5, 6.7 -9.500000000000002,5,a-pcom-i3,2016-17,Springfield - Lincoln,02810120, 13.3, 0.0, 17.1, 69.6, 0.0, 0.0, 0.0, 90.3, 9.7, 52.6 -10.343749999999998,5,a-pcom-i3,2016-17,Springfield - M Marcus Kiley Middle,02810330, 19.2, 0.0, 13.9, 66.9, 0.0, 0.0, 0.0, 67.0, 33.0, 93.6 -6.000000000000001,5,a-pcom-i3,2016-17,Springfield - Margaret C Ells,02810060, 9.6, 0.0, 9.6, 80.8, 0.0, 0.0, 0.0, 94.2, 5.8, 52.0 -1.5312500000000018,1.53,a-pcom-i3,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,02810125, 2.4, 0.0, 2.4, 95.1, 0.0, 0.0, 0.0, 95.1, 4.9, 41.2 -9.500000000000002,5,a-pcom-i3,2016-17,Springfield - Mary M Lynch,02810140, 24.3, 0.0, 6.1, 69.6, 0.0, 0.0, 0.0, 96.9, 3.1, 32.8 -4.125000000000001,4.13,a-pcom-i3,2016-17,Springfield - Mary M Walsh,02810155, 6.6, 0.0, 6.6, 86.8, 0.0, 0.0, 0.0, 93.4, 6.6, 45.5 -8.093750000000002,5,a-pcom-i3,2016-17,Springfield - Mary O Pottenger,02810145, 9.2, 0.0, 16.7, 74.1, 0.0, 0.0, 0.0, 94.5, 5.5, 53.8 -8.875000000000002,5,a-pcom-i3,2016-17,Springfield - Milton Bradley School,02810023, 4.9, 0.0, 23.4, 71.6, 0.0, 0.0, 0.0, 91.4, 8.6, 81.2 -16.499999999999996,5,a-pcom-i3,2016-17,Springfield - Rebecca M Johnson,02810055, 34.6, 0.0, 18.2, 47.2, 0.0, 0.0, 0.0, 90.0, 10.0, 109.4 -8.562500000000002,5,a-pcom-i3,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,02810620, 9.9, 2.5, 14.9, 72.6, 0.0, 0.0, 0.0, 55.0, 45.0, 200.7 -14.6875,5,a-pcom-i3,2016-17,Springfield - STEM Middle Academy,02810350, 36.9, 0.0, 10.1, 53.0, 0.0, 0.0, 0.0, 59.8, 40.2, 30.2 -7.843749999999998,5,a-pcom-i3,2016-17,Springfield - Samuel Bowles,02810020, 10.4, 0.0, 14.6, 74.9, 0.0, 0.0, 0.0, 93.8, 6.2, 47.7 -14.90625,5,a-pcom-i3,2016-17,Springfield - South End Middle School,02810355, 20.7, 0.0, 27.0, 52.3, 0.0, 0.0, 0.0, 71.5, 28.5, 38.6 -7.34375,5,a-pcom-i3,2016-17,Springfield - Springfield Central High,02810500, 11.0, 2.8, 9.2, 76.5, 0.0, 0.0, 0.5, 54.9, 45.1, 218.2 -13.625,5,a-pcom-i3,2016-17,Springfield - Springfield High School,02810570, 23.8, 7.9, 11.9, 56.4, 0.0, 0.0, 0.0, 65.7, 34.3, 25.3 -10.53125,5,a-pcom-i3,2016-17,Springfield - Springfield High School of Science and Technology,02810530, 15.1, 2.2, 16.3, 66.3, 0.0, 0.0, 0.0, 60.1, 39.9, 178.1 -12.53125,5,a-pcom-i3,2016-17,Springfield - Springfield Public Day Elementary School,02810005, 23.4, 0.0, 16.7, 59.9, 0.0, 0.0, 0.0, 90.0, 10.0, 30.1 -16.28125,5,a-pcom-i3,2016-17,Springfield - Springfield Public Day High School,02810550, 35.4, 0.0, 16.7, 47.9, 0.0, 0.0, 0.0, 72.9, 27.1, 48.1 -9.656250000000002,5,a-pcom-i3,2016-17,Springfield - Springfield Public Day Middle School,02810345, 21.6, 0.0, 9.3, 69.1, 0.0, 0.0, 0.0, 59.6, 40.4, 32.4 -7.250000000000001,5,a-pcom-i3,2016-17,Springfield - Sumner Avenue,02810160, 9.2, 2.3, 11.7, 76.8, 0.0, 0.0, 0.0, 91.8, 8.2, 87.0 -9.4375,5,a-pcom-i3,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,02810205, 19.5, 0.0, 10.7, 69.8, 0.0, 0.0, 0.0, 80.6, 19.4, 93.6 -9.156249999999998,5,a-pcom-i3,2016-17,Springfield - Thomas M Balliet,02810015, 12.2, 0.0, 17.1, 70.7, 0.0, 0.0, 0.0, 95.1, 4.9, 40.8 -10.84375,5,a-pcom-i3,2016-17,Springfield - Van Sickle Academy,02810480, 11.6, 0.0, 23.1, 65.3, 0.0, 0.0, 0.0, 72.1, 27.9, 43.2 -11.218750000000002,5,a-pcom-i3,2016-17,Springfield - Van Sickle International Baccalaureate,02810485, 15.2, 0.0, 20.7, 64.1, 0.0, 0.0, 0.0, 82.0, 18.0, 39.2 -7.1875,5,a-pcom-i3,2016-17,Springfield - Warner,02810180, 15.4, 0.0, 7.6, 77.0, 0.0, 0.0, 0.0, 92.3, 7.7, 38.8 -4.53125,4.53,a-pcom-i3,2016-17,Springfield - Washington,02810185, 8.0, 0.0, 6.4, 85.5, 0.0, 0.0, 0.0, 98.2, 1.8, 62.0 -4.125000000000001,4.13,a-pcom-i3,2016-17,Springfield - White Street,02810190, 6.6, 0.0, 6.7, 86.8, 0.0, 0.0, 0.0, 97.8, 2.2, 45.5 -10.656249999999998,5,a-pcom-i3,2016-17,Springfield - William N. DeBerry,02810045, 12.1, 0.0, 22.0, 65.9, 0.0, 0.0, 0.0, 90.3, 9.7, 40.9 -11.625,5,a-pcom-i3,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205, 31.9, 0.0, 5.3, 62.8, 0.0, 0.0, 0.0, 84.0, 16.0, 18.8 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Stoneham - Colonial Park,02840005, 0.0, 2.1, 2.1, 95.8, 0.0, 0.0, 0.0, 97.9, 2.1, 47.4 -1,1,a-pcom-i3,2016-17,Stoneham - Robin Hood,02840025, 2.1, 0.0, 0.0, 97.9, 0.0, 0.0, 0.0, 95.9, 4.1, 48.4 -1,1,a-pcom-i3,2016-17,Stoneham - South,02840030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.9, 2.1, 37.8 -1,1,a-pcom-i3,2016-17,Stoneham - Stoneham Central Middle School,02840405, 1.0, 0.0, 1.0, 96.9, 0.0, 0.0, 1.0, 74.0, 26.0, 98.0 -1,1,a-pcom-i3,2016-17,Stoneham - Stoneham High,02840505, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 72.9, 27.1, 82.0 -1.9062499999999982,1.91,a-pcom-i3,2016-17,Stoughton - Edwin A Jones Early Childhood Center,02850012, 4.3, 0.0, 1.8, 93.9, 0.0, 0.0, 0.0, 100.0, 0.0, 20.4 -1,1,a-pcom-i3,2016-17,Stoughton - Helen Hansen Elementary,02850010, 2.4, 0.0, 0.0, 97.6, 0.0, 0.0, 0.0, 90.7, 9.3, 36.1 -1,1,a-pcom-i3,2016-17,Stoughton - Joseph H Gibbons,02850025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 43.7 -1,1,a-pcom-i3,2016-17,Stoughton - Joseph R Dawe Jr Elementary,02850014, 0.0, 0.8, 1.0, 98.2, 0.0, 0.0, 0.0, 84.0, 16.0, 44.5 -1,1,a-pcom-i3,2016-17,Stoughton - O'Donnell Middle School,02850405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 80.3, 19.7, 93.3 -1,1,a-pcom-i3,2016-17,Stoughton - South Elementary,02850015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 30.2 -1,1,a-pcom-i3,2016-17,Stoughton - Stoughton High,02850505, 0.0, 0.0, 0.0, 98.4, 0.8, 0.8, 0.0, 67.4, 32.6, 125.0 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Stoughton - West Elementary,02850020, 0.0, 0.8, 2.2, 94.7, 2.2, 0.0, 0.0, 93.2, 6.8, 44.8 -1,1,a-pcom-i3,2016-17,Sturbridge - Burgess Elementary,02870005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 124.3 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,04890505, 0.0, 3.4, 2.2, 94.4, 0.0, 0.0, 0.0, 64.5, 35.5, 115.7 -2.0000000000000018,2.0,a-pcom-i3,2016-17,Sudbury - Ephraim Curtis Middle,02880305, 2.7, 0.0, 0.9, 93.6, 0.0, 0.0, 2.7, 72.6, 27.4, 110.2 -1,1,a-pcom-i3,2016-17,Sudbury - General John Nixon Elementary,02880025, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 87.6, 12.4, 49.8 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Sudbury - Israel Loring School,02880015, 2.4, 0.0, 0.0, 94.4, 0.0, 0.0, 3.2, 90.2, 9.8, 62.7 -1,1,a-pcom-i3,2016-17,Sudbury - Josiah Haynes,02880010, 2.1, 0.0, 0.5, 97.4, 0.0, 0.0, 0.0, 92.0, 8.0, 65.5 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Sudbury - Peter Noyes,02880030, 1.5, 0.0, 1.4, 95.8, 0.0, 0.0, 1.4, 90.8, 9.2, 73.8 -2.3125000000000018,2.31,a-pcom-i3,2016-17,Sunderland - Sunderland Elementary,02890005, 0.0, 3.7, 3.7, 92.6, 0.0, 0.0, 0.0, 88.9, 11.1, 54.2 -1,1,a-pcom-i3,2016-17,Sutton - Sutton Early Learning,02900003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.1, 0.9, 52.2 -1,1,a-pcom-i3,2016-17,Sutton - Sutton Elementary,02900005, 0.0, 2.3, 0.0, 97.7, 0.0, 0.0, 0.0, 96.5, 3.5, 44.0 -1,1,a-pcom-i3,2016-17,Sutton - Sutton High School,02900510, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 66.7, 33.3, 50.5 -1,1,a-pcom-i3,2016-17,Sutton - Sutton Middle School,02900305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.2, 26.8, 42.2 -1,1,a-pcom-i3,2016-17,Swampscott - Clarke,02910005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 37.9 -1,1,a-pcom-i3,2016-17,Swampscott - Hadley,02910010, 0.0, 0.0, 2.3, 97.7, 0.0, 0.0, 0.0, 86.4, 13.6, 44.0 -1,1,a-pcom-i3,2016-17,Swampscott - Stanley,02910020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.5, 14.5, 41.4 -2.437499999999999,2.44,a-pcom-i3,2016-17,Swampscott - Swampscott High,02910505, 2.1, 1.6, 4.1, 92.2, 0.0, 0.0, 0.0, 68.1, 31.9, 97.2 -1,1,a-pcom-i3,2016-17,Swampscott - Swampscott Middle,02910305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 85.5, 14.5, 103.8 -1,1,a-pcom-i3,2016-17,Swansea - Elizabeth S Brown,02920006, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.3, 6.7, 29.7 -1,1,a-pcom-i3,2016-17,Swansea - Gardner,02920015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 26.3 -1,1,a-pcom-i3,2016-17,Swansea - Joseph Case High,02920505, 0.0, 1.5, 0.0, 98.5, 0.0, 0.0, 0.0, 45.0, 55.0, 67.5 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Swansea - Joseph Case Jr High,02920305, 1.9, 0.0, 1.9, 96.3, 0.0, 0.0, 0.0, 68.9, 31.1, 53.4 -1,1,a-pcom-i3,2016-17,Swansea - Joseph G Luther,02920020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.4, 16.6, 21.0 -1,1,a-pcom-i3,2016-17,Swansea - Mark G Hoyle Elementary,02920017, 3.1, 0.0, 0.0, 96.9, 0.0, 0.0, 0.0, 92.0, 8.0, 32.0 -2.718750000000001,2.72,a-pcom-i3,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900, 2.3, 4.3, 2.1, 91.3, 0.0, 0.0, 0.0, 79.3, 20.7, 46.0 -1,1,a-pcom-i3,2016-17,Tantasqua - Tantasqua Regional Jr High,07700405, 1.4, 0.0, 0.0, 98.6, 0.0, 0.0, 0.0, 77.9, 22.1, 71.5 -1,1,a-pcom-i3,2016-17,Tantasqua - Tantasqua Regional Sr High,07700505, 0.8, 0.0, 1.3, 97.1, 0.0, 0.0, 0.8, 63.5, 36.5, 118.7 -1,1,a-pcom-i3,2016-17,Tantasqua - Tantasqua Regional Vocational,07700605, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 20.9, 79.1, 14.8 -1,1,a-pcom-i3,2016-17,Taunton - Benjamin Friedman Middle,02930315, 1.2, 0.0, 0.4, 98.4, 0.0, 0.0, 0.0, 82.1, 17.9, 82.1 -1,1,a-pcom-i3,2016-17,Taunton - East Taunton Elementary,02930010, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 89.6, 10.4, 81.0 -1,1,a-pcom-i3,2016-17,Taunton - Edmund Hatch Bennett,02930007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 35.1 -1,1,a-pcom-i3,2016-17,Taunton - Edward F. Leddy Preschool,02930005, 0.0, 0.0, 2.6, 97.4, 0.0, 0.0, 0.0, 99.3, 0.7, 38.3 -1,1,a-pcom-i3,2016-17,Taunton - Elizabeth Pole,02930027, 1.5, 0.0, 0.0, 98.5, 0.0, 0.0, 0.0, 96.9, 3.1, 66.2 -2.5312499999999982,2.53,a-pcom-i3,2016-17,Taunton - H H Galligan,02930057, 0.0, 0.0, 8.1, 91.9, 0.0, 0.0, 0.0, 98.4, 1.6, 37.0 -1,1,a-pcom-i3,2016-17,Taunton - Hopewell,02930035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.1, 6.9, 35.1 -1,1,a-pcom-i3,2016-17,Taunton - John F Parker Middle,02930305, 1.8, 0.0, 0.5, 97.6, 0.0, 0.0, 0.0, 85.7, 14.3, 54.8 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Taunton - Joseph C Chamberlain,02930008, 1.7, 3.4, 0.0, 94.8, 0.0, 0.0, 0.0, 96.1, 3.9, 58.2 -1,1,a-pcom-i3,2016-17,Taunton - Joseph H Martin,02930042, 1.6, 0.0, 0.5, 97.9, 0.0, 0.0, 0.0, 81.7, 18.3, 64.0 -1.2187500000000018,1.22,a-pcom-i3,2016-17,Taunton - Mulcahey Elementary School,02930015, 0.0, 0.0, 3.9, 96.1, 0.0, 0.0, 0.0, 98.1, 1.9, 51.3 -1,1,a-pcom-i3,2016-17,Taunton - Taunton Alternative High School,02930525, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.2, 38.8, 11.4 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Taunton - Taunton High,02930505, 1.3, 0.3, 2.5, 95.6, 0.0, 0.0, 0.3, 69.6, 30.4, 157.0 -1,1,a-pcom-i3,2016-17,Tewksbury - Heath-Brook,02950010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 40.5 -1,1,a-pcom-i3,2016-17,Tewksbury - John F. Ryan,02950023, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 90.2, 9.8, 76.3 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Tewksbury - John W. Wynn Middle,02950305, 0.0, 2.7, 1.4, 95.9, 0.0, 0.0, 0.0, 77.7, 22.3, 73.9 -1,1,a-pcom-i3,2016-17,Tewksbury - L F Dewing,02950001, 1.3, 1.3, 0.0, 97.4, 0.0, 0.0, 0.0, 98.7, 1.3, 77.4 -1,1,a-pcom-i3,2016-17,Tewksbury - Louise Davy Trahan,02950025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.7, 7.3, 28.5 -1,1,a-pcom-i3,2016-17,Tewksbury - North Street,02950020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 43.0 -1,1,a-pcom-i3,2016-17,Tewksbury - Tewksbury Memorial High,02950505, 0.0, 0.0, 0.9, 99.1, 0.0, 0.0, 0.0, 65.4, 34.6, 108.4 -2.5312499999999982,2.53,a-pcom-i3,2016-17,Tisbury - Tisbury Elementary,02960005, 1.9, 0.0, 6.2, 91.9, 0.0, 0.0, 0.0, 86.3, 13.7, 77.6 -1,1,a-pcom-i3,2016-17,Topsfield - Proctor Elementary,02980005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.7, 5.3, 41.4 -1,1,a-pcom-i3,2016-17,Topsfield - Steward Elementary,02980010, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 98.4, 1.6, 59.3 -1,1,a-pcom-i3,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,08780605, 0.0, 0.8, 0.0, 98.4, 0.8, 0.0, 0.0, 61.7, 38.3, 128.6 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Triton - Newbury Elementary,07730020, 1.4, 1.8, 0.0, 96.8, 0.0, 0.0, 0.0, 91.6, 8.4, 71.4 -1,1,a-pcom-i3,2016-17,Triton - Pine Grove,07730025, 1.6, 0.5, 0.0, 97.9, 0.0, 0.0, 0.0, 90.3, 9.7, 61.5 -1,1,a-pcom-i3,2016-17,Triton - Salisbury Elementary,07730015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.9, 4.1, 72.7 -1,1,a-pcom-i3,2016-17,Triton - Triton Regional High School,07730505, 2.0, 0.0, 0.8, 97.2, 0.0, 0.0, 0.0, 58.3, 41.7, 99.7 -1,1,a-pcom-i3,2016-17,Triton - Triton Regional Middle School,07730405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 65.8, 34.2, 53.0 -1,1,a-pcom-i3,2016-17,Truro - Truro Central,03000005, 0.0, 0.0, 2.9, 97.1, 0.0, 0.0, 0.0, 88.2, 11.8, 34.0 -1,1,a-pcom-i3,2016-17,Tyngsborough - Tyngsborough Elementary,03010020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.7, 9.3, 109.5 -1,1,a-pcom-i3,2016-17,Tyngsborough - Tyngsborough High School,03010505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 64.4, 35.6, 54.9 -1,1,a-pcom-i3,2016-17,Tyngsborough - Tyngsborough Middle,03010305, 0.0, 0.0, 0.5, 99.5, 0.0, 0.0, 0.0, 64.0, 36.0, 50.3 -9.718749999999998,5,a-pcom-i3,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,04800405, 19.5, 3.9, 7.7, 68.9, 0.0, 0.0, 0.0, 65.2, 34.8, 51.6 -7.96875,5,a-pcom-i3,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405, 13.6, 5.9, 5.9, 74.5, 0.0, 0.0, 0.0, 80.4, 19.6, 84.3 -1,1,a-pcom-i3,2016-17,Up-Island Regional - Chilmark Elementary,07740010, 0.5, 0.0, 0.5, 99.0, 0.0, 0.0, 0.0, 92.6, 7.4, 12.6 -1,1,a-pcom-i3,2016-17,Up-Island Regional - West Tisbury Elementary,07740020, 0.6, 0.0, 0.6, 97.7, 0.0, 0.0, 1.2, 85.3, 14.7, 76.2 -1,1,a-pcom-i3,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,08790605, 1.0, 0.0, 0.0, 99.0, 0.0, 0.0, 0.0, 42.6, 57.4, 98.9 -1,1,a-pcom-i3,2016-17,Uxbridge - Gateway to College,03040515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0 -1,1,a-pcom-i3,2016-17,Uxbridge - McCloskey Middle School,03040015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.6, 22.4, 55.8 -1,1,a-pcom-i3,2016-17,Uxbridge - Taft Early Learning Center,03040005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.6, 4.4, 68.5 -1,1,a-pcom-i3,2016-17,Uxbridge - Uxbridge High,03040505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 63.7, 36.3, 57.7 -1,1,a-pcom-i3,2016-17,Uxbridge - Whitin Elementary School,03040020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.6, 2.4, 41.3 -7.406250000000001,5,a-pcom-i3,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,04980405, 2.2, 2.2, 17.2, 76.3, 0.0, 0.0, 2.2, 82.8, 17.2, 46.5 -1,1,a-pcom-i3,2016-17,Wachusett - Central Tree Middle,07750310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.5, 21.5, 55.9 -1,1,a-pcom-i3,2016-17,Wachusett - Chocksett Middle School,07750315, 0.0, 0.0, 2.8, 97.2, 0.0, 0.0, 0.0, 81.1, 18.9, 42.1 -1,1,a-pcom-i3,2016-17,Wachusett - Davis Hill Elementary,07750018, 0.0, 0.0, 1.9, 98.1, 0.0, 0.0, 0.0, 86.9, 13.1, 52.9 -1,1,a-pcom-i3,2016-17,Wachusett - Dawson,07750020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 62.9 -1.2812499999999982,1.28,a-pcom-i3,2016-17,Wachusett - Early Childhood Center,07750001, 2.1, 0.0, 2.1, 95.9, 0.0, 0.0, 0.0, 100.0, 0.0, 48.6 -1,1,a-pcom-i3,2016-17,Wachusett - Glenwood Elementary School,07750060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.8, 12.2, 54.2 -1,1,a-pcom-i3,2016-17,Wachusett - Houghton Elementary,07750027, 1.6, 0.0, 0.0, 98.4, 0.0, 0.0, 0.0, 97.1, 2.9, 61.1 -1,1,a-pcom-i3,2016-17,Wachusett - Leroy E.Mayo,07750032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.8, 6.2, 48.0 -1,1,a-pcom-i3,2016-17,Wachusett - Mountview Middle,07750305, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 81.4, 18.6, 73.7 -1,1,a-pcom-i3,2016-17,Wachusett - Naquag Elementary School,07750005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.8, 2.2, 44.9 -1,1,a-pcom-i3,2016-17,Wachusett - Paxton Center,07750040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.7, 11.3, 53.0 -1,1,a-pcom-i3,2016-17,Wachusett - Thomas Prince,07750045, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 91.5, 8.5, 47.1 -1,1,a-pcom-i3,2016-17,Wachusett - Wachusett Regional High,07750505, 0.0, 0.5, 0.5, 99.1, 0.0, 0.0, 0.0, 68.3, 31.7, 220.0 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Wakefield - Dolbeare,03050005, 0.0, 1.7, 0.0, 96.6, 1.7, 0.0, 0.0, 88.0, 12.0, 58.8 -1.25,1.25,a-pcom-i3,2016-17,Wakefield - Early Childhood Center at the Doyle School,03050001, 0.0, 4.0, 0.0, 96.0, 0.0, 0.0, 0.0, 100.0, 0.0, 25.2 -1,1,a-pcom-i3,2016-17,Wakefield - Galvin Middle School,03050310, 0.8, 0.0, 1.7, 97.5, 0.0, 0.0, 0.0, 74.4, 25.6, 121.1 -1.09375,1.09,a-pcom-i3,2016-17,Wakefield - Greenwood,03050020, 0.0, 3.5, 0.0, 96.5, 0.0, 0.0, 0.0, 94.6, 5.4, 28.5 -1,1,a-pcom-i3,2016-17,Wakefield - Wakefield Memorial High,03050505, 0.0, 0.9, 2.0, 97.1, 0.0, 0.0, 0.0, 62.4, 37.6, 110.1 -1,1,a-pcom-i3,2016-17,Wakefield - Walton,03050040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 21.6 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Wakefield - Woodville School,03050015, 0.0, 0.0, 1.8, 96.4, 0.0, 0.0, 1.8, 95.7, 4.3, 55.0 -1,1,a-pcom-i3,2016-17,Wales - Wales Elementary,03060005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.5, 6.5, 18.6 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Walpole - Bird Middle,03070305, 0.2, 1.6, 1.6, 96.6, 0.0, 0.0, 0.0, 80.4, 19.6, 61.8 -1,1,a-pcom-i3,2016-17,Walpole - Boyden,03070010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.3, 7.7, 43.0 -1.40625,1.41,a-pcom-i3,2016-17,Walpole - Daniel Feeney Preschool Center,03070002, 0.0, 0.0, 4.5, 95.5, 0.0, 0.0, 0.0, 93.6, 6.4, 17.1 -1,1,a-pcom-i3,2016-17,Walpole - Eleanor N Johnson Middle,03070310, 0.2, 0.0, 0.0, 99.8, 0.0, 0.0, 0.0, 81.1, 18.9, 53.5 -1,1,a-pcom-i3,2016-17,Walpole - Elm Street School,03070005, 0.2, 1.0, 1.0, 97.9, 0.0, 0.0, 0.0, 96.0, 4.0, 52.4 -1,1,a-pcom-i3,2016-17,Walpole - Fisher,03070015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.3, 1.7, 56.8 -1,1,a-pcom-i3,2016-17,Walpole - Old Post Road,03070018, 2.0, 0.0, 0.0, 98.0, 0.0, 0.0, 0.0, 92.6, 7.4, 55.2 -1,1,a-pcom-i3,2016-17,Walpole - Walpole High,03070505, 0.1, 0.8, 0.8, 98.4, 0.0, 0.0, 0.0, 64.1, 35.9, 132.2 -1,1,a-pcom-i3,2016-17,Waltham - Douglas MacArthur Elementary School,03080032, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 54.1 -3.531249999999999,3.53,a-pcom-i3,2016-17,Waltham - Henry Whittemore Elementary School,03080065, 3.5, 0.0, 7.8, 88.7, 0.0, 0.0, 0.0, 90.6, 9.4, 57.7 -1,1,a-pcom-i3,2016-17,Waltham - James Fitzgerald Elementary School,03080060, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 92.1, 7.9, 59.3 -1.40625,1.41,a-pcom-i3,2016-17,Waltham - John F Kennedy Middle,03080404, 0.0, 2.2, 2.2, 95.5, 0.0, 0.0, 0.0, 74.3, 25.7, 89.4 -2.2187499999999982,2.22,a-pcom-i3,2016-17,Waltham - John W. McDevitt Middle School,03080415, 0.0, 1.2, 6.0, 92.9, 0.0, 0.0, 0.0, 72.6, 27.4, 83.9 -2.124999999999999,2.12,a-pcom-i3,2016-17,Waltham - Northeast Elementary School,03080040, 3.3, 1.2, 2.4, 93.2, 0.0, 0.0, 0.0, 92.2, 7.8, 85.1 -2.0624999999999982,2.06,a-pcom-i3,2016-17,Waltham - Thomas R Plympton Elementary School,03080050, 0.0, 0.0, 6.6, 93.4, 0.0, 0.0, 0.0, 92.7, 7.3, 60.9 -12.281249999999998,5,a-pcom-i3,2016-17,Waltham - Waltham Public Schools Dual Language Program,03080001, 0.0, 0.0, 39.3, 60.7, 0.0, 0.0, 0.0, 98.0, 2.0, 5.1 -2.124999999999999,2.12,a-pcom-i3,2016-17,Waltham - Waltham Sr High,03080505, 1.6, 1.0, 3.6, 93.2, 0.0, 0.0, 0.5, 62.2, 37.8, 192.0 -1.9375000000000009,1.94,a-pcom-i3,2016-17,Waltham - William F. Stanley Elementary School,03080005, 2.1, 0.0, 3.0, 93.8, 0.0, 0.0, 1.1, 95.1, 4.9, 93.5 -1,1,a-pcom-i3,2016-17,Ware - Stanley M Koziol Elementary School,03090020, 0.0, 0.0, 1.7, 98.3, 0.0, 0.0, 0.0, 93.8, 6.3, 57.6 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Ware - Ware Junior/Senior High School,03090505, 0.0, 0.0, 4.7, 95.3, 0.0, 0.0, 0.0, 74.3, 25.7, 64.0 -1.5312500000000018,1.53,a-pcom-i3,2016-17,Ware - Ware Middle School,03090305, 2.4, 0.0, 2.4, 95.1, 0.0, 0.0, 0.0, 80.5, 19.5, 41.1 -1,1,a-pcom-i3,2016-17,Wareham - John William Decas,03100003, 0.0, 0.0, 0.0, 98.6, 0.0, 1.4, 0.0, 94.4, 5.6, 73.5 -1.5625,1.56,a-pcom-i3,2016-17,Wareham - Minot Forest,03100017, 0.0, 0.0, 0.7, 95.0, 0.0, 0.0, 4.2, 94.2, 5.8, 70.6 -1,1,a-pcom-i3,2016-17,Wareham - Wareham Cooperative Alternative School,03100315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 75.1, 24.9, 3.0 -1.4374999999999982,1.44,a-pcom-i3,2016-17,Wareham - Wareham Middle,03100305, 1.2, 0.0, 0.0, 95.4, 0.0, 0.0, 3.5, 83.6, 16.4, 86.9 -2.5,2.5,a-pcom-i3,2016-17,Wareham - Wareham Senior High,03100505, 3.4, 1.1, 0.0, 92.0, 0.0, 0.0, 3.4, 62.6, 37.4, 88.0 -1,1,a-pcom-i3,2016-17,Watertown - Cunniff,03140015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.2, 8.8, 56.9 -1,1,a-pcom-i3,2016-17,Watertown - Hosmer,03140020, 0.7, 1.5, 0.0, 97.8, 0.0, 0.0, 0.0, 88.3, 11.7, 137.0 -1,1,a-pcom-i3,2016-17,Watertown - James Russell Lowell,03140025, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 81.8, 18.2, 71.4 -1,1,a-pcom-i3,2016-17,Watertown - Watertown High,03140505, 0.8, 0.8, 0.0, 98.3, 0.0, 0.0, 0.0, 56.7, 43.3, 119.2 -1,1,a-pcom-i3,2016-17,Watertown - Watertown Middle,03140305, 1.2, 0.0, 0.0, 98.8, 0.0, 0.0, 0.0, 73.1, 26.9, 84.6 -1.6562499999999991,1.66,a-pcom-i3,2016-17,Wayland - Claypit Hill School,03150005, 1.7, 0.0, 0.0, 94.7, 0.0, 1.2, 2.4, 91.6, 8.4, 82.4 -2.593749999999999,2.59,a-pcom-i3,2016-17,Wayland - Happy Hollow School,03150015, 0.5, 6.0, 1.8, 91.7, 0.0, 0.0, 0.0, 95.4, 4.6, 57.1 -1,1,a-pcom-i3,2016-17,Wayland - Loker School,03150020, 0.7, 2.4, 0.0, 96.9, 0.0, 0.0, 0.0, 86.1, 13.9, 42.1 -1.3750000000000018,1.38,a-pcom-i3,2016-17,Wayland - Wayland High School,03150505, 3.4, 1.0, 0.0, 95.6, 0.0, 0.0, 0.0, 63.7, 36.3, 119.1 -3.062499999999999,3.06,a-pcom-i3,2016-17,Wayland - Wayland Middle School,03150305, 0.0, 1.9, 6.7, 90.2, 0.0, 0.0, 1.2, 69.6, 30.4, 85.6 -1,1,a-pcom-i3,2016-17,Webster - Bartlett High School,03160505, 0.0, 0.0, 1.5, 96.9, 0.0, 0.0, 1.5, 66.3, 33.7, 65.2 -1,1,a-pcom-i3,2016-17,Webster - Park Avenue Elementary,03160015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.1, 0.9, 105.7 -1,1,a-pcom-i3,2016-17,Webster - Webster Middle School,03160315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 77.0, 23.0, 74.0 -1.1249999999999982,1.12,a-pcom-i3,2016-17,Wellesley - Ernest F Upham,03170050, 0.0, 2.0, 1.6, 96.4, 0.0, 0.0, 0.0, 93.9, 6.1, 49.6 -4.312499999999999,4.31,a-pcom-i3,2016-17,Wellesley - Hunnewell,03170025, 1.6, 2.3, 5.4, 86.2, 0.0, 0.0, 4.5, 86.8, 13.2, 44.2 -1,1,a-pcom-i3,2016-17,Wellesley - John D Hardy,03170020, 0.0, 0.0, 1.1, 98.9, 0.0, 0.0, 0.0, 93.0, 7.0, 43.2 -2.749999999999999,2.75,a-pcom-i3,2016-17,Wellesley - Joseph E Fiske,03170015, 2.1, 4.3, 1.3, 91.2, 0.0, 0.0, 1.1, 97.9, 2.1, 93.5 -2.1875,2.19,a-pcom-i3,2016-17,Wellesley - Katharine Lee Bates,03170005, 0.0, 0.0, 4.8, 93.0, 0.0, 0.0, 2.3, 100.0, 0.0, 44.7 -1.40625,1.41,a-pcom-i3,2016-17,Wellesley - Schofield,03170045, 0.0, 2.0, 2.4, 95.5, 0.0, 0.0, 0.0, 91.9, 8.1, 49.3 -1,1,a-pcom-i3,2016-17,Wellesley - Sprague Elementary School,03170048, 0.0, 1.9, 0.6, 97.5, 0.0, 0.0, 0.0, 92.5, 7.5, 53.0 -2.96875,2.97,a-pcom-i3,2016-17,Wellesley - Wellesley Middle,03170305, 3.3, 2.7, 2.5, 90.5, 0.0, 0.0, 1.1, 76.1, 23.9, 176.8 -2.562500000000001,2.56,a-pcom-i3,2016-17,Wellesley - Wellesley Sr High,03170505, 3.3, 1.9, 1.0, 91.8, 0.0, 0.0, 2.0, 63.8, 36.2, 210.2 -1,1,a-pcom-i3,2016-17,Wellfleet - Wellfleet Elementary,03180005, 3.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0, 91.1, 8.9, 33.8 -1,1,a-pcom-i3,2016-17,West Boylston - Major Edwards Elementary,03220005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 57.6 -1.8124999999999991,1.81,a-pcom-i3,2016-17,West Boylston - West Boylston Junior/Senior High,03220505, 0.4, 1.1, 2.5, 94.2, 0.0, 0.0, 1.8, 68.6, 31.4, 53.0 -1,1,a-pcom-i3,2016-17,West Bridgewater - Howard School,03230305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.6, 8.4, 29.5 -1,1,a-pcom-i3,2016-17,West Bridgewater - Rose L Macdonald,03230003, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 30.7 -1,1,a-pcom-i3,2016-17,West Bridgewater - Spring Street School,03230005, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 98.6, 1.4, 22.1 -1,1,a-pcom-i3,2016-17,West Bridgewater - West Bridgewater Junior/Senior,03230505, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 70.8, 29.2, 64.3 -1,1,a-pcom-i3,2016-17,West Springfield - 21st Century Skills Academy,03320515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 58.8, 41.2, 4.9 -1.7812500000000009,1.78,a-pcom-i3,2016-17,West Springfield - Cowing Early Childhood,03320001, 0.0, 1.9, 0.0, 94.3, 3.8, 0.0, 0.0, 93.7, 6.3, 26.3 -1,1,a-pcom-i3,2016-17,West Springfield - John Ashley,03320005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 96.9, 3.1, 38.0 -1.4999999999999991,1.5,a-pcom-i3,2016-17,West Springfield - John R Fausey,03320010, 0.0, 0.0, 3.2, 95.2, 0.0, 0.0, 1.6, 90.5, 9.5, 62.7 -1.0625000000000018,1.06,a-pcom-i3,2016-17,West Springfield - Memorial,03320025, 0.0, 0.0, 0.0, 96.6, 0.0, 0.0, 3.4, 93.2, 6.8, 29.7 -1.2812499999999982,1.28,a-pcom-i3,2016-17,West Springfield - Mittineague,03320030, 0.0, 0.0, 4.1, 95.9, 0.0, 0.0, 0.0, 89.5, 10.5, 24.2 -1,1,a-pcom-i3,2016-17,West Springfield - Philip G Coburn,03320007, 1.3, 0.0, 0.0, 98.7, 0.0, 0.0, 0.0, 89.2, 10.8, 80.0 -1,1,a-pcom-i3,2016-17,West Springfield - Tatham,03320040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.6, 7.4, 25.6 -2.3125000000000018,2.31,a-pcom-i3,2016-17,West Springfield - West Springfield High,03320505, 2.0, 0.7, 4.7, 92.6, 0.0, 0.0, 0.0, 67.9, 32.1, 149.4 -1.71875,1.72,a-pcom-i3,2016-17,West Springfield - West Springfield Middle,03320305, 1.6, 0.0, 2.3, 94.5, 0.0, 0.0, 1.6, 75.4, 24.6, 128.2 -1,1,a-pcom-i3,2016-17,Westborough - Annie E Fales,03210010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 98.2, 1.8, 56.0 -1,1,a-pcom-i3,2016-17,Westborough - Elsie A Hastings Elementary,03210025, 1.3, 1.2, 0.0, 97.5, 0.0, 0.0, 0.0, 98.0, 2.0, 76.6 -1,1,a-pcom-i3,2016-17,Westborough - J Harding Armstrong,03210005, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 96.4, 3.6, 55.8 -1,1,a-pcom-i3,2016-17,Westborough - Mill Pond School,03210045, 0.0, 1.0, 1.0, 97.3, 0.0, 0.0, 0.8, 88.6, 11.4, 105.2 -1,1,a-pcom-i3,2016-17,Westborough - Sarah W Gibbons Middle,03210305, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 77.4, 22.6, 82.3 -1.25,1.25,a-pcom-i3,2016-17,Westborough - Westborough High,03210505, 0.0, 2.4, 0.0, 96.0, 0.8, 0.8, 0.0, 71.3, 28.7, 120.6 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Westfield - Abner Gibbs,03250020, 0.0, 0.0, 3.4, 96.6, 0.0, 0.0, 0.0, 94.4, 5.6, 29.8 -3.968750000000001,3.97,a-pcom-i3,2016-17,Westfield - Fort Meadow Early Childhood Center,03250003, 0.0, 7.6, 5.1, 87.3, 0.0, 0.0, 0.0, 100.0, 0.0, 39.3 -1,1,a-pcom-i3,2016-17,Westfield - Franklin Ave,03250015, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 3.0, 96.5, 3.5, 33.2 -3.374999999999999,3.37,a-pcom-i3,2016-17,Westfield - Highland,03250025, 0.0, 4.6, 4.6, 89.2, 1.5, 0.0, 0.0, 89.3, 10.7, 64.9 -1.9375000000000009,1.94,a-pcom-i3,2016-17,Westfield - Munger Hill,03250033, 1.5, 0.0, 3.1, 93.8, 0.0, 0.0, 1.5, 95.1, 4.9, 64.8 -1,1,a-pcom-i3,2016-17,Westfield - North Middle School,03250305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 83.5, 16.5, 90.9 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Westfield - Paper Mill,03250036, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 97.3, 2.7, 62.4 -1.0625000000000018,1.06,a-pcom-i3,2016-17,Westfield - Russell Elementary School,03250055, 0.0, 0.0, 0.0, 96.6, 0.0, 0.0, 3.4, 94.4, 5.6, 29.8 -1,1,a-pcom-i3,2016-17,Westfield - South Middle School,03250310, 0.0, 0.0, 1.2, 97.5, 1.2, 0.0, 0.0, 77.8, 22.2, 81.4 -1.0000000000000009,1.0,a-pcom-i3,2016-17,Westfield - Southampton Road,03250040, 0.0, 0.0, 3.2, 96.8, 0.0, 0.0, 0.0, 94.9, 5.1, 62.2 -1.1562500000000009,1.16,a-pcom-i3,2016-17,Westfield - Westfield High,03250505, 0.7, 2.0, 0.7, 96.3, 0.3, 0.0, 0.0, 75.2, 24.8, 148.9 -1,1,a-pcom-i3,2016-17,Westfield - Westfield Technical Academy,03250605, 1.2, 0.0, 0.0, 98.3, 0.5, 0.0, 0.0, 54.1, 45.9, 82.9 -1,1,a-pcom-i3,2016-17,Westford - Abbot Elementary,03260004, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.9, 5.1, 46.7 -1,1,a-pcom-i3,2016-17,Westford - Blanchard Middle,03260310, 0.0, 1.4, 0.0, 98.6, 0.0, 0.0, 0.0, 88.7, 11.3, 69.5 -1,1,a-pcom-i3,2016-17,Westford - Col John Robinson,03260025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.4, 2.6, 38.1 -1,1,a-pcom-i3,2016-17,Westford - Day Elementary,03260007, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.9, 11.1, 49.0 -1,1,a-pcom-i3,2016-17,Westford - John A. Crisafulli Elementary School,03260045, 0.0, 0.0, 2.1, 97.9, 0.0, 0.0, 0.0, 96.5, 3.5, 47.9 -1,1,a-pcom-i3,2016-17,Westford - Millennium Elementary,03260013, 0.0, 3.1, 0.0, 96.9, 0.0, 0.0, 0.0, 96.1, 3.9, 25.6 -1,1,a-pcom-i3,2016-17,Westford - Nabnasset,03260015, 0.0, 1.1, 0.0, 98.9, 0.0, 0.0, 0.0, 97.0, 3.0, 49.3 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Westford - Rita E. Miller Elementary School,03260055, 0.0, 5.6, 0.0, 94.4, 0.0, 0.0, 0.0, 97.3, 2.7, 54.6 -1,1,a-pcom-i3,2016-17,Westford - Stony Brook School,03260330, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 83.6, 16.4, 75.6 -1,1,a-pcom-i3,2016-17,Westford - Westford Academy,03260505, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 61.2, 38.8, 159.2 -1,1,a-pcom-i3,2016-17,Westhampton - Westhampton Elementary School,03270005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.4, 9.6, 24.9 -3.062499999999999,3.06,a-pcom-i3,2016-17,Weston - Country,03300010, 3.3, 0.0, 6.4, 90.2, 0.0, 0.0, 0.0, 85.7, 14.3, 53.3 -2.5312499999999982,2.53,a-pcom-i3,2016-17,Weston - Field Elementary School,03300012, 2.2, 6.0, 0.0, 91.9, 0.0, 0.0, 0.0, 87.5, 12.5, 46.4 -4.937499999999999,4.94,a-pcom-i3,2016-17,Weston - Weston High,03300505, 3.9, 6.5, 3.5, 84.2, 0.0, 0.8, 1.1, 64.6, 35.4, 112.8 -3.7812499999999982,3.78,a-pcom-i3,2016-17,Weston - Weston Middle,03300305, 7.1, 2.7, 1.1, 87.9, 0.0, 0.0, 1.2, 73.9, 26.1, 81.8 -3.031250000000001,3.03,a-pcom-i3,2016-17,Weston - Woodland,03300015, 1.6, 0.0, 6.8, 90.3, 1.3, 0.0, 0.0, 94.4, 5.6, 48.4 -1,1,a-pcom-i3,2016-17,Westport - Alice A Macomber,03310015, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 100.0, 0.0, 45.9 -1,1,a-pcom-i3,2016-17,Westport - Westport Elementary,03310030, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.3, 10.7, 69.4 -1,1,a-pcom-i3,2016-17,Westport - Westport Junior/Senior High School,03310515, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 67.6, 32.4, 65.6 -1,1,a-pcom-i3,2016-17,Westwood - Deerfield School,03350010, 0.0, 3.0, 0.0, 97.0, 0.0, 0.0, 0.0, 92.4, 7.6, 41.4 -1,1,a-pcom-i3,2016-17,Westwood - Downey,03350012, 0.0, 0.6, 0.0, 99.4, 0.0, 0.0, 0.0, 95.4, 4.6, 46.0 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Westwood - E W Thurston Middle,03350305, 2.1, 1.0, 2.1, 94.8, 0.0, 0.0, 0.0, 71.5, 28.5, 96.4 -1,1,a-pcom-i3,2016-17,Westwood - Martha Jones,03350017, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 87.6, 12.4, 32.0 -1,1,a-pcom-i3,2016-17,Westwood - Paul Hanlon,03350015, 0.0, 0.8, 0.0, 99.2, 0.0, 0.0, 0.0, 93.6, 6.4, 29.5 -1.4687500000000009,1.47,a-pcom-i3,2016-17,Westwood - Westwood High,03350505, 0.8, 1.6, 1.5, 95.3, 0.0, 0.0, 0.8, 66.0, 34.0, 126.0 -1,1,a-pcom-i3,2016-17,Westwood - Westwood Integrated Preschool,03350050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 18.7 -1,1,a-pcom-i3,2016-17,Westwood - William E Sheehan,03350025, 0.0, 1.7, 0.0, 98.3, 0.0, 0.0, 0.0, 91.9, 8.1, 43.2 -1,1,a-pcom-i3,2016-17,Weymouth - Abigail Adams Middle School,03360310, 0.0, 1.9, 0.0, 98.1, 0.0, 0.0, 0.0, 76.9, 23.1, 104.5 -1,1,a-pcom-i3,2016-17,Weymouth - Academy Avenue,03360005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.0, 7.0, 34.3 -1,1,a-pcom-i3,2016-17,Weymouth - Frederick C Murphy,03360050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.5, 4.5, 33.3 -1,1,a-pcom-i3,2016-17,Weymouth - Johnson Early Childhood Center,03360003, 0.0, 2.4, 0.0, 97.6, 0.0, 0.0, 0.0, 97.8, 2.2, 41.3 -1,1,a-pcom-i3,2016-17,Weymouth - Lawrence W Pingree,03360065, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.8, 4.2, 34.4 -1,1,a-pcom-i3,2016-17,Weymouth - Maria Weston Chapman Middle School,03360020, 0.0, 0.0, 0.0, 98.4, 0.8, 0.0, 0.8, 66.7, 33.3, 121.2 -1,1,a-pcom-i3,2016-17,Weymouth - Ralph Talbot,03360085, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.2, 4.8, 27.3 -1,1,a-pcom-i3,2016-17,Weymouth - Thomas V Nash,03360060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 24.9 -1,1,a-pcom-i3,2016-17,Weymouth - Thomas W. Hamilton Primary School,03360105, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.6, 6.4, 38.6 -1,1,a-pcom-i3,2016-17,Weymouth - Wessagusset,03360110, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 97.3, 2.7, 37.6 -1,1,a-pcom-i3,2016-17,Weymouth - Weymouth High School,03360505, 0.0, 0.5, 0.0, 99.0, 0.0, 0.0, 0.5, 64.7, 35.3, 208.7 -1,1,a-pcom-i3,2016-17,Weymouth - William Seach,03360080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.5, 0.5, 39.6 -1,1,a-pcom-i3,2016-17,Whately - Whately Elementary,03370005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.4, 4.6, 30.2 -1.3125000000000009,1.31,a-pcom-i3,2016-17,Whitman-Hanson - Hanson Middle School,07800315, 2.1, 2.1, 0.0, 95.8, 0.0, 0.0, 0.0, 79.0, 21.0, 47.8 -1,1,a-pcom-i3,2016-17,Whitman-Hanson - Indian Head,07800035, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 44.8 -1,1,a-pcom-i3,2016-17,Whitman-Hanson - John H Duval,07800030, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 90.2, 9.8, 45.1 -1,1,a-pcom-i3,2016-17,Whitman-Hanson - Louise A Conley,07800010, 1.7, 0.0, 0.0, 98.3, 0.0, 0.0, 0.0, 83.9, 16.1, 52.0 -1,1,a-pcom-i3,2016-17,Whitman-Hanson - Maquan Elementary,07800025, 0.0, 0.0, 0.0, 98.4, 0.0, 0.0, 1.6, 97.0, 3.0, 53.3 -1,1,a-pcom-i3,2016-17,Whitman-Hanson - Whitman Hanson Regional,07800505, 1.9, 0.0, 0.0, 98.1, 0.0, 0.0, 0.0, 67.1, 32.9, 107.7 -1,1,a-pcom-i3,2016-17,Whitman-Hanson - Whitman Middle,07800310, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 73.9, 26.1, 53.2 -1,1,a-pcom-i3,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,08850605, 0.0, 0.0, 0.7, 98.7, 0.0, 0.0, 0.6, 48.7, 51.3, 142.4 -1,1,a-pcom-i3,2016-17,Williamsburg - Anne T. Dunphy School,03400020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.9, 9.1, 26.3 -1.09375,1.09,a-pcom-i3,2016-17,Williamstown - Williamstown Elementary,03410010, 0.0, 2.1, 0.0, 96.5, 0.0, 0.0, 1.5, 95.6, 4.4, 67.7 -1,1,a-pcom-i3,2016-17,Wilmington - Boutwell,03420005, 0.0, 0.0, 1.3, 98.7, 0.0, 0.0, 0.0, 96.4, 3.6, 31.1 -1,1,a-pcom-i3,2016-17,Wilmington - North Intermediate,03420060, 2.3, 0.0, 0.0, 97.7, 0.0, 0.0, 0.0, 97.3, 2.7, 27.4 -1,1,a-pcom-i3,2016-17,Wilmington - Shawsheen Elementary,03420025, 0.0, 0.0, 2.2, 97.8, 0.0, 0.0, 0.0, 93.2, 6.8, 45.9 -1,1,a-pcom-i3,2016-17,Wilmington - West Intermediate,03420080, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 93.9, 6.1, 34.9 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Wilmington - Wildwood,03420015, 1.2, 0.0, 1.2, 94.6, 0.0, 0.0, 3.0, 95.5, 4.5, 33.1 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Wilmington - Wilmington High,03420505, 0.0, 1.9, 1.9, 94.4, 0.9, 0.0, 0.9, 72.2, 27.8, 106.3 -1,1,a-pcom-i3,2016-17,Wilmington - Wilmington Middle School,03420330, 0.0, 0.9, 0.0, 99.1, 0.0, 0.0, 0.0, 81.4, 18.6, 108.3 -1,1,a-pcom-i3,2016-17,Wilmington - Woburn Street,03420020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 86.8, 13.2, 46.5 -1,1,a-pcom-i3,2016-17,Winchendon - Memorial,03430040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.1, 5.9, 42.3 -1,1,a-pcom-i3,2016-17,Winchendon - Murdock Academy for Success,03430405, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 40.4, 59.6, 3.3 -2.250000000000001,2.25,a-pcom-i3,2016-17,Winchendon - Murdock High School,03430515, 4.8, 0.0, 2.4, 92.8, 0.0, 0.0, 0.0, 73.7, 26.3, 41.7 -1,1,a-pcom-i3,2016-17,Winchendon - Murdock Middle School,03430315, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 78.2, 21.8, 34.0 -1,1,a-pcom-i3,2016-17,Winchendon - Toy Town Elementary,03430050, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 88.5, 11.5, 30.5 -2.562500000000001,2.56,a-pcom-i3,2016-17,Winchendon - Winchendon PreSchool Program,03430010, 8.2, 0.0, 0.0, 91.8, 0.0, 0.0, 0.0, 100.0, 0.0, 12.2 -1.7499999999999982,1.75,a-pcom-i3,2016-17,Winchester - Ambrose Elementary,03440045, 1.9, 0.0, 1.9, 94.4, 0.0, 0.0, 1.8, 99.6, 0.4, 53.1 -1,1,a-pcom-i3,2016-17,Winchester - Lincoln Elementary,03440005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 95.0, 5.0, 47.9 -1,1,a-pcom-i3,2016-17,Winchester - Lynch Elementary,03440020, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 92.0, 8.0, 81.7 -1.4999999999999991,1.5,a-pcom-i3,2016-17,Winchester - McCall Middle,03440305, 1.6, 0.8, 2.4, 95.2, 0.0, 0.0, 0.0, 78.7, 21.3, 125.1 -1,1,a-pcom-i3,2016-17,Winchester - Muraco Elementary,03440040, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 90.1, 9.9, 50.4 -1,1,a-pcom-i3,2016-17,Winchester - Vinson-Owen Elementary,03440025, 0.0, 0.0, 0.0, 98.0, 0.0, 0.0, 2.0, 96.0, 4.0, 50.0 -1,1,a-pcom-i3,2016-17,Winchester - Winchester High School,03440505, 0.0, 0.0, 0.7, 99.3, 0.0, 0.0, 0.0, 67.0, 33.0, 133.8 -1,1,a-pcom-i3,2016-17,Winthrop - Arthur T. Cummings Elementary School,03460020, 0.0, 1.8, 0.0, 98.2, 0.0, 0.0, 0.0, 89.2, 10.8, 55.2 -1,1,a-pcom-i3,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,03460015, 0.0, 1.2, 0.0, 98.8, 0.0, 0.0, 0.0, 92.7, 7.3, 82.4 -1,1,a-pcom-i3,2016-17,Winthrop - Winthrop High School,03460505, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 61.5, 38.5, 65.1 -1,1,a-pcom-i3,2016-17,Winthrop - Winthrop Middle School,03460305, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 68.1, 31.9, 37.8 -1,1,a-pcom-i3,2016-17,Woburn - Clyde Reeves,03470040, 0.0, 0.0, 1.6, 98.4, 0.0, 0.0, 0.0, 95.4, 4.6, 62.2 -1,1,a-pcom-i3,2016-17,Woburn - Daniel L Joyce Middle School,03470410, 0.0, 1.2, 1.2, 97.5, 0.0, 0.0, 0.0, 78.9, 21.1, 80.5 -1,1,a-pcom-i3,2016-17,Woburn - Daniel P Hurld,03470020, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.2, 0.8, 25.4 -1,1,a-pcom-i3,2016-17,Woburn - Goodyear Elementary School,03470005, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 91.0, 9.0, 46.4 -1,1,a-pcom-i3,2016-17,Woburn - John F Kennedy Middle School,03470405, 0.0, 0.0, 1.5, 98.5, 0.0, 0.0, 0.0, 74.9, 25.1, 67.7 -1,1,a-pcom-i3,2016-17,Woburn - Linscott-Rumford,03470025, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 92.1, 7.9, 23.8 -1,1,a-pcom-i3,2016-17,Woburn - Malcolm White,03470055, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.4, 0.6, 33.2 -1,1,a-pcom-i3,2016-17,Woburn - Mary D Altavesta,03470065, 2.8, 0.0, 0.0, 97.2, 0.0, 0.0, 0.0, 94.7, 5.3, 35.1 -1,1,a-pcom-i3,2016-17,Woburn - Shamrock,03470043, 0.0, 0.0, 1.4, 98.6, 0.0, 0.0, 0.0, 96.7, 3.3, 69.9 -1,1,a-pcom-i3,2016-17,Woburn - Woburn High,03470505, 0.7, 0.1, 1.4, 97.8, 0.0, 0.0, 0.0, 62.3, 37.7, 146.2 -1,1,a-pcom-i3,2016-17,Woburn - Wyman,03470060, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 99.2, 0.8, 23.6 -2.5312499999999982,2.53,a-pcom-i3,2016-17,Worcester - Belmont Street Community,03480020, 0.9, 1.8, 5.4, 91.9, 0.0, 0.0, 0.0, 93.2, 6.8, 55.2 -3.0937500000000018,3.09,a-pcom-i3,2016-17,Worcester - Burncoat Middle School,03480405, 2.8, 1.4, 5.7, 90.1, 0.0, 0.0, 0.0, 69.8, 30.2, 71.9 -3.187500000000001,3.19,a-pcom-i3,2016-17,Worcester - Burncoat Senior High,03480503, 2.5, 0.0, 7.6, 89.8, 0.0, 0.0, 0.0, 61.5, 38.5, 118.0 -3.343750000000001,3.34,a-pcom-i3,2016-17,Worcester - Burncoat Street,03480035, 0.0, 0.0, 8.0, 89.3, 0.0, 2.7, 0.0, 95.9, 4.1, 37.4 -3.9374999999999982,3.94,a-pcom-i3,2016-17,Worcester - Canterbury,03480045, 2.3, 2.3, 8.0, 87.4, 0.0, 0.0, 0.0, 94.3, 5.7, 43.7 -5.218750000000001,5,a-pcom-i3,2016-17,Worcester - Chandler Elementary Community,03480050, 2.4, 1.0, 13.2, 83.3, 0.0, 0.0, 0.0, 91.4, 8.6, 49.1 -11.09375,5,a-pcom-i3,2016-17,Worcester - Chandler Magnet,03480052, 0.0, 1.2, 33.1, 64.5, 0.0, 1.2, 0.0, 88.0, 12.0, 81.6 -3.3124999999999982,3.31,a-pcom-i3,2016-17,Worcester - City View,03480053, 1.8, 1.8, 7.0, 89.4, 0.0, 0.0, 0.0, 88.7, 11.3, 56.8 -5.843750000000001,5,a-pcom-i3,2016-17,Worcester - Claremont Academy,03480350, 5.6, 1.9, 11.2, 81.3, 0.0, 0.0, 0.0, 56.4, 43.6, 53.3 -2.718750000000001,2.72,a-pcom-i3,2016-17,Worcester - Clark St Community,03480055, 2.7, 0.0, 6.0, 91.3, 0.0, 0.0, 0.0, 88.5, 11.5, 36.6 -2.437499999999999,2.44,a-pcom-i3,2016-17,Worcester - Columbus Park,03480060, 3.9, 0.0, 3.9, 92.2, 0.0, 0.0, 0.0, 89.2, 10.8, 51.6 -3.343750000000001,3.34,a-pcom-i3,2016-17,Worcester - Doherty Memorial High,03480512, 3.2, 0.4, 7.1, 89.3, 0.0, 0.0, 0.0, 58.6, 41.4, 126.5 -9.59375,5,a-pcom-i3,2016-17,Worcester - Elm Park Community,03480095, 14.6, 0.0, 14.6, 69.3, 0.0, 1.6, 0.0, 87.6, 12.4, 61.8 -1,1,a-pcom-i3,2016-17,Worcester - Flagg Street,03480090, 0.0, 0.0, 0.6, 99.4, 0.0, 0.0, 0.0, 91.7, 8.3, 35.7 -4.125000000000001,4.13,a-pcom-i3,2016-17,Worcester - Forest Grove Middle,03480415, 5.8, 1.0, 6.4, 86.8, 0.0, 0.0, 0.0, 69.5, 30.5, 98.6 -3.656250000000001,3.66,a-pcom-i3,2016-17,Worcester - Francis J McGrath Elementary,03480177, 0.0, 5.0, 6.7, 88.3, 0.0, 0.0, 0.0, 81.9, 18.1, 29.9 -3.843749999999999,3.84,a-pcom-i3,2016-17,Worcester - Gates Lane,03480110, 4.4, 2.6, 5.3, 87.7, 0.0, 0.0, 0.0, 91.5, 8.5, 114.2 -6.875,5,a-pcom-i3,2016-17,Worcester - Goddard School/Science Technical,03480100, 4.7, 1.6, 15.7, 78.0, 0.0, 0.0, 0.0, 90.6, 9.4, 63.5 -2.718750000000001,2.72,a-pcom-i3,2016-17,Worcester - Grafton Street,03480115, 2.5, 2.5, 3.7, 91.3, 0.0, 0.0, 0.0, 91.4, 8.6, 40.1 -29.312499999999996,5,a-pcom-i3,2016-17,Worcester - Head Start,03480002, 0.0, 0.0, 3.1, 6.2, 0.0, 0.0, 90.6, 96.9, 3.1, 44.8 -3.500000000000001,3.5,a-pcom-i3,2016-17,Worcester - Heard Street,03480136, 3.7, 0.0, 3.7, 88.8, 0.0, 3.7, 0.0, 90.6, 9.4, 26.7 -2.96875,2.97,a-pcom-i3,2016-17,Worcester - Jacob Hiatt Magnet,03480140, 2.4, 4.7, 2.4, 90.5, 0.0, 0.0, 0.0, 90.7, 9.3, 42.2 -2.124999999999999,2.12,a-pcom-i3,2016-17,Worcester - Lake View,03480145, 3.4, 0.0, 3.4, 93.2, 0.0, 0.0, 0.0, 87.6, 12.4, 29.5 -5.0,5.0,a-pcom-i3,2016-17,Worcester - Lincoln Street,03480160, 3.1, 3.1, 9.9, 84.0, 0.0, 0.0, 0.0, 91.6, 8.4, 32.4 -2.96875,2.97,a-pcom-i3,2016-17,Worcester - May Street,03480175, 3.2, 3.2, 3.2, 90.5, 0.0, 0.0, 0.0, 89.4, 10.6, 31.7 -3.3124999999999982,3.31,a-pcom-i3,2016-17,Worcester - Midland Street,03480185, 0.0, 3.5, 7.1, 89.4, 0.0, 0.0, 0.0, 98.5, 1.5, 28.3 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Worcester - Nelson Place,03480200, 2.6, 0.0, 2.6, 94.8, 0.0, 0.0, 0.0, 96.0, 4.0, 76.6 -5.499999999999998,5,a-pcom-i3,2016-17,Worcester - Norrback Avenue,03480202, 5.8, 0.0, 10.6, 82.4, 0.0, 1.2, 0.0, 95.8, 4.2, 86.5 -8.34375,5,a-pcom-i3,2016-17,Worcester - North High,03480515, 11.9, 1.7, 13.1, 73.3, 0.0, 0.0, 0.0, 56.6, 43.4, 138.2 -5.906250000000002,5,a-pcom-i3,2016-17,Worcester - Quinsigamond,03480210, 2.5, 6.3, 10.1, 81.1, 0.0, 0.0, 0.0, 90.0, 10.0, 79.3 -4.125000000000001,4.13,a-pcom-i3,2016-17,Worcester - Rice Square,03480215, 1.2, 2.4, 9.6, 86.8, 0.0, 0.0, 0.0, 92.8, 7.2, 41.6 -4.21875,4.22,a-pcom-i3,2016-17,Worcester - Roosevelt,03480220, 3.7, 0.0, 9.8, 86.5, 0.0, 0.0, 0.0, 96.8, 3.2, 80.3 -5.656249999999998,5,a-pcom-i3,2016-17,Worcester - South High Community,03480520, 7.8, 0.7, 9.0, 81.9, 0.0, 0.7, 0.0, 77.9, 22.1, 143.1 -8.374999999999998,5,a-pcom-i3,2016-17,Worcester - Sullivan Middle,03480423, 7.0, 0.5, 19.3, 73.2, 0.0, 0.0, 0.0, 73.4, 26.6, 106.7 -2.437499999999999,2.44,a-pcom-i3,2016-17,Worcester - Tatnuck,03480230, 2.6, 0.0, 5.2, 92.2, 0.0, 0.0, 0.0, 90.4, 9.6, 38.4 -1,1,a-pcom-i3,2016-17,Worcester - Thorndyke Road,03480235, 0.0, 0.0, 3.1, 96.9, 0.0, 0.0, 0.0, 92.8, 7.2, 32.4 -4.406249999999998,4.41,a-pcom-i3,2016-17,Worcester - Union Hill School,03480240, 5.7, 0.0, 8.5, 85.9, 0.0, 0.0, 0.0, 80.2, 19.8, 53.1 -2.562500000000001,2.56,a-pcom-i3,2016-17,Worcester - University Pk Campus School,03480285, 4.3, 0.0, 3.9, 91.8, 0.0, 0.0, 0.0, 68.0, 32.0, 25.5 -2.34375,2.34,a-pcom-i3,2016-17,Worcester - Vernon Hill School,03480280, 1.8, 1.8, 3.9, 92.5, 0.0, 0.0, 0.0, 90.7, 9.3, 56.2 -1,1,a-pcom-i3,2016-17,Worcester - Wawecus Road School,03480026, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 94.4, 5.6, 27.4 -2.6874999999999982,2.69,a-pcom-i3,2016-17,Worcester - West Tatnuck,03480260, 2.5, 0.0, 6.2, 91.4, 0.0, 0.0, 0.0, 91.1, 8.9, 40.5 -4.593750000000001,4.59,a-pcom-i3,2016-17,Worcester - Woodland Academy,03480030, 1.7, 0.0, 13.0, 85.3, 0.0, 0.0, 0.0, 93.1, 6.9, 57.7 -1.6250000000000009,1.63,a-pcom-i3,2016-17,Worcester - Worcester Arts Magnet School,03480225, 2.6, 0.0, 2.6, 94.8, 0.0, 0.0, 0.0, 94.6, 5.4, 38.8 -9.125,5,a-pcom-i3,2016-17,Worcester - Worcester East Middle,03480420, 13.7, 3.9, 11.6, 70.8, 0.0, 0.0, 0.0, 60.8, 39.2, 76.4 -1.6875000000000018,1.69,a-pcom-i3,2016-17,Worcester - Worcester Technical High,03480605, 0.8, 1.2, 3.4, 94.6, 0.0, 0.0, 0.0, 47.9, 52.1, 172.9 -1,1,a-pcom-i3,2016-17,Worthington - R. H. Conwell,03490010, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0, 89.5, 10.5, 11.4 -1,1,a-pcom-i3,2016-17,Wrentham - Charles E Roderick,03500010, 0.0, 0.0, 0.0, 98.2, 1.8, 0.0, 0.0, 96.6, 3.4, 55.3 -1.0312499999999991,1.03,a-pcom-i3,2016-17,Wrentham - Delaney,03500003, 0.0, 3.3, 0.0, 96.7, 0.0, 0.0, 0.0, 96.3, 3.7, 82.8 +3.21875,3.22,a-pcom-i3,2021-22,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,4.5,0.6,3.5,89.7,0,0.6,1.2,78.1,21.9,173.4 +1,1,a-pcom-i3,2021-22,Abington - Abington Early Education Program,10001,0,0,0,100,0,0,0,100,0,17 +2.34375,2.34,a-pcom-i3,2021-22,Abington - Abington High,10505,0,1.5,6,92.5,0,0,0,72.5,27.5,66.6 +3.09375,3.09,a-pcom-i3,2021-22,Abington - Abington Middle School,10405,1.3,1.3,5.9,90.1,0,0,1.3,76.3,23.7,75.1 +1,1,a-pcom-i3,2021-22,Abington - Beaver Brook Elementary,10020,0,0,1.4,98.6,0,0,0,98.6,1.4,69.7 +1,1,a-pcom-i3,2021-22,Abington - Woodsdale Elementary School,10015,0,0,0,100,0,0,0,91.1,8.9,39.1 +14.9375,5,a-pcom-i3,2021-22,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,27.6,9.1,10,52.2,0,0,1.1,65.7,34.3,90.4 +1.8125,1.81,a-pcom-i3,2021-22,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0.5,2.4,1.5,94.2,0.5,0,0.9,75,25,198.7 +2.5,2.5,a-pcom-i3,2021-22,Acton-Boxborough - Blanchard Memorial School,6000005,1.1,6.2,0.7,92,0,0,0,87.7,12.3,88 +1.40625,1.41,a-pcom-i3,2021-22,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,0,4.5,95.5,0,0,0,94.4,5.6,53.6 +3.46875,3.47,a-pcom-i3,2021-22,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,0,11.1,0,88.9,0,0,0,96.6,3.4,29.5 +4.9375,4.94,a-pcom-i3,2021-22,Acton-Boxborough - Luther Conant School,6000030,0,11.4,3,84.2,0,0,1.5,97,3,67.7 +3.15625,3.16,a-pcom-i3,2021-22,Acton-Boxborough - McCarthy-Towne School,6000015,0,7.6,2.5,89.9,0,0,0,95.4,4.6,65.8 +3.875,3.88,a-pcom-i3,2021-22,Acton-Boxborough - Merriam School,6000010,2.9,6.6,1.5,87.6,0,0,1.5,95.7,4.3,68.9 +2.625,2.63,a-pcom-i3,2021-22,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,6.5,1.9,91.6,0,0,0,95.4,4.6,52.2 +2,2,a-pcom-i3,2021-22,Acton-Boxborough - Raymond J Grey Junior High,6000405,0.9,3.7,0.9,93.6,0,0,1.1,82.8,17.2,116.3 +1,1,a-pcom-i3,2021-22,Acushnet - Acushnet Elementary School,30025,1.5,0,0,98.5,0,0,0,94.6,5.4,65.1 +1,1,a-pcom-i3,2021-22,Acushnet - Albert F Ford Middle School,30305,0,0,0,100,0,0,0,72.7,27.3,45.8 +2.6875,2.69,a-pcom-i3,2021-22,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,5.3,1.6,91.4,0,0,1.7,56,44,115.2 +1.5,1.5,a-pcom-i3,2021-22,Agawam - Agawam Early Childhood Center,50003,0.3,0,4.5,95.2,0,0,0,99.7,0.3,44.6 +1,1,a-pcom-i3,2021-22,Agawam - Agawam High,50505,0.7,0,0.6,98.7,0,0,0,67.9,32.1,159.2 +1,1,a-pcom-i3,2021-22,Agawam - Agawam Junior High,50405,0.1,0,1.2,98.7,0,0,0,65.9,34.1,85.3 +1,1,a-pcom-i3,2021-22,Agawam - Benjamin J Phelps,50020,0.2,0,0,99.8,0,0,0,89.6,10.4,54.5 +1.125,1.12,a-pcom-i3,2021-22,Agawam - Clifford M Granger,50010,0.2,0,3.4,96.4,0,0,0,98.1,1.9,58.7 +1,1,a-pcom-i3,2021-22,Agawam - James Clark School,50030,0.2,0,0,99.8,0,0,0,96.4,3.6,59.5 +1,1,a-pcom-i3,2021-22,Agawam - Roberta G. Doering School,50303,0.2,0,1.2,98.6,0,0,0,80.2,19.8,81.4 +1.21875,1.22,a-pcom-i3,2021-22,Agawam - Robinson Park,50025,3.9,0,0,96.1,0,0,0,95.2,4.8,54.6 +8.90625,5,a-pcom-i3,2021-22,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,13.9,0.7,13.9,71.5,0,0,0,77.8,22.2,144 +1,1,a-pcom-i3,2021-22,Amesbury - Amesbury Elementary,70005,0,0,0,100,0,0,0,92.5,7.5,53.2 +1,1,a-pcom-i3,2021-22,Amesbury - Amesbury High,70505,0,0,2.8,97.2,0,0,0,69.3,30.7,70.4 +1,1,a-pcom-i3,2021-22,Amesbury - Amesbury Innovation High School,70515,0,0,0,100,0,0,0,54.1,45.9,7.6 +1,1,a-pcom-i3,2021-22,Amesbury - Amesbury Middle,70013,0,0,1.2,98.8,0,0,0,73.5,26.5,81.4 +1,1,a-pcom-i3,2021-22,Amesbury - Charles C Cashman Elementary,70010,0,0,0,100,0,0,0,96.8,3.2,62.1 +8.125,5,a-pcom-i3,2021-22,Amherst - Crocker Farm Elementary,80009,3.7,6.2,16.1,74,0,0,0,87.4,12.6,86.9 +9.65625,5,a-pcom-i3,2021-22,Amherst - Fort River Elementary,80020,3.7,6.3,19.7,69.1,0,0,1.2,81.4,18.6,81.2 +11.125,5,a-pcom-i3,2021-22,Amherst - Wildwood Elementary,80050,16.8,4.1,11,64.4,0,0,3.7,81.3,18.7,81.9 +8.625,5,a-pcom-i3,2021-22,Amherst-Pelham - Amherst Regional High,6050505,14.2,3.2,8.4,72.4,0,0,1.8,63.9,36.1,155.4 +11.21875,5,a-pcom-i3,2021-22,Amherst-Pelham - Amherst Regional Middle School,6050405,13.5,1.6,19.2,64.1,0,0,1.6,66.4,33.6,74.1 +3.4375,3.44,a-pcom-i3,2021-22,Andover - Andover High,90505,1,3.9,5.7,89,0,0.5,0,70.6,29.4,204.6 +1.8125,1.81,a-pcom-i3,2021-22,Andover - Andover West Middle,90310,1.2,1.2,2.3,94.2,0,0,1.2,81.5,18.5,85.6 +2.34375,2.34,a-pcom-i3,2021-22,Andover - Bancroft Elementary,90003,0,5.4,1.1,92.5,0,0,1.1,92.6,7.4,93.1 +3.25,3.25,a-pcom-i3,2021-22,Andover - Doherty Middle,90305,0,3.9,5.2,89.6,1.3,0,0,79.5,20.5,76.7 +1.15625,1.16,a-pcom-i3,2021-22,Andover - Henry C Sanborn Elementary,90010,0,1.8,0,96.3,0,0,1.8,92.6,7.4,54.2 +2.71875,2.72,a-pcom-i3,2021-22,Andover - High Plain Elementary,90004,0,4.5,4.2,91.3,0,0,0,92.8,7.2,90.1 +5.875,5,a-pcom-i3,2021-22,Andover - Shawsheen School,90005,0,16.4,2.5,81.2,0,0,0,95.4,4.6,40.6 +1,1,a-pcom-i3,2021-22,Andover - South Elementary,90020,0,2.7,0,97.3,0,0,0,94.8,5.2,69.7 +1.875,1.88,a-pcom-i3,2021-22,Andover - West Elementary,90025,0.9,3.3,0.8,94,0,0,0.9,91.2,8.8,108 +1.53125,1.53,a-pcom-i3,2021-22,Andover - Wood Hill Middle School,90350,0,1.6,3.3,95.1,0,0,0,76.8,23.2,61.3 +6.28125,5,a-pcom-i3,2021-22,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,6.9,0.3,8.6,79.9,0,0,4.4,67.7,32.3,68.5 +2.3125,2.31,a-pcom-i3,2021-22,Arlington - Arlington High,100505,1.8,1.8,2.9,92.6,0,0,0.9,59.8,40.2,176 +3.875,3.88,a-pcom-i3,2021-22,Arlington - Brackett,100010,3.1,3.1,4.6,87.6,0,0,1.5,89.2,10.8,64.7 +3.65625,3.66,a-pcom-i3,2021-22,Arlington - Cyrus E Dallin,100025,3.3,6.7,0,88.3,0,0,1.7,85.5,12.9,59.9 +1.40625,1.41,a-pcom-i3,2021-22,Arlington - Gibbs School,100305,1.7,1.3,0,95.5,0,0,1.5,68.4,31.6,66.4 +2.1875,2.19,a-pcom-i3,2021-22,Arlington - Hardy,100030,2,3.4,1.7,93,0,0,0,96.4,3.6,59.1 +2.46875,2.47,a-pcom-i3,2021-22,Arlington - John A Bishop,100005,4.1,1.9,0,92.1,0,0,1.9,92.4,7.6,52.6 +1.59375,1.59,a-pcom-i3,2021-22,Arlington - M Norcross Stratton,100055,0,2.5,1.3,94.9,1.3,0,0,92.3,7.7,78.5 +3.03125,3.03,a-pcom-i3,2021-22,Arlington - Menotomy Preschool,100038,0,3.2,0,90.3,0,0,6.5,100,0,30.8 +3.625,3.62,a-pcom-i3,2021-22,Arlington - Ottoson Middle,100410,1.8,6.5,2.5,88.4,0.8,0,0,75.3,24.7,118.8 +3.875,3.88,a-pcom-i3,2021-22,Arlington - Peirce,100045,2.3,2,6,87.6,0,0,2,94.6,5.4,49.8 +1.65625,1.66,a-pcom-i3,2021-22,Arlington - Thompson,100050,1.4,3.9,0,94.7,0,0,0,84.1,15.9,71.2 +1.25,1.25,a-pcom-i3,2021-22,Ashburnham-Westminster - Briggs Elementary,6100025,1.3,0,0.3,96,0,0,2.5,83.3,16.7,79.2 +1,1,a-pcom-i3,2021-22,Ashburnham-Westminster - Meetinghouse School,6100010,0,0,0.8,99.2,0,0,0,97.5,2.5,25.9 +1.3125,1.31,a-pcom-i3,2021-22,Ashburnham-Westminster - Oakmont Regional High School,6100505,3.9,0,0.3,95.8,0,0,0,56.2,43.8,76 +1.21875,1.22,a-pcom-i3,2021-22,Ashburnham-Westminster - Overlook Middle School,6100305,1.8,0,2.1,96.1,0,0,0,69.8,30.2,56.3 +1,1,a-pcom-i3,2021-22,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,2.6,97.4,0,0,0,92.7,7.3,45.8 +2.25,2.25,a-pcom-i3,2021-22,Ashland - Ashland High,140505,4.8,0,1.2,92.8,0,0,1.2,62.4,37.6,83.2 +1.46875,1.47,a-pcom-i3,2021-22,Ashland - Ashland Middle,140405,0,2.4,1.2,95.3,0,0,1.2,72.2,27.8,84.2 +1,1,a-pcom-i3,2021-22,Ashland - David Mindess,140015,1.2,0,1.2,97.6,0,0,0,91.2,8.8,84.2 +1.5625,1.56,a-pcom-i3,2021-22,Ashland - Henry E Warren Elementary,140010,0,3,2,95,0,0,0,96.3,3.7,100.7 +2.21875,2.22,a-pcom-i3,2021-22,Ashland - William Pittaway Elementary,140005,0,3.5,3.5,92.9,0,0,0,95.4,4.6,28.4 +1.1875,1.19,a-pcom-i3,2021-22,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0.6,0,3.2,96.2,0,0,0,51.3,48.7,157 +1,1,a-pcom-i3,2021-22,Athol-Royalston - Athol Community Elementary School,6150020,1.3,0,0,98.7,0,0,0,92.5,7.5,79.8 +1,1,a-pcom-i3,2021-22,Athol-Royalston - Athol High,6150505,0,0,0,100,0,0,0,65.7,34.3,47.8 +1,1,a-pcom-i3,2021-22,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,100,0,0,0,68.9,31.1,51.5 +1,1,a-pcom-i3,2021-22,Athol-Royalston - Royalston Community School,6150050,0,0,0,100,0,0,0,93.8,6.2,16.2 +1.3125,1.31,a-pcom-i3,2021-22,Atlantis Charter (District) - Atlantis Charter School,4910550,1.6,1.1,0.5,95.8,0.5,0,0.5,81.9,18.1,189.5 +1.1875,1.19,a-pcom-i3,2021-22,Attleboro - A. Irvin Studley Elementary School,160001,0,0,3.8,96.2,0,0,0,98.1,1.9,52.4 +15.46875,5,a-pcom-i3,2021-22,Attleboro - Attleboro Community Academy,160515,40,0,9.5,50.5,0,0,0,50.5,49.5,5.3 +2.65625,2.66,a-pcom-i3,2021-22,Attleboro - Attleboro High,160505,2,1,5,91.5,0,0,0.5,70.4,29.6,197.5 +1.90625,1.91,a-pcom-i3,2021-22,Attleboro - Attleboro Virtual Academy,160705,0,0,6.1,93.9,0,0,0,57.1,42.9,6.5 +2.03125,2.03,a-pcom-i3,2021-22,Attleboro - Cyril K. Brennan Middle School,160315,0,1.5,4.4,93.5,0,0,0.7,80.9,19.1,68.9 +1,1,a-pcom-i3,2021-22,Attleboro - Early Learning Center,160008,0,0,2.7,97.3,0,0,0,100,0,32.8 +3,3,a-pcom-i3,2021-22,Attleboro - Hill-Roberts Elementary School,160045,0.9,4.4,4.4,90.4,0,0,0,95.6,4.4,45.8 +2.59375,2.59,a-pcom-i3,2021-22,Attleboro - Hyman Fine Elementary School,160040,0,0,8.3,91.7,0,0,0,90.9,9.1,48.3 +2.03125,2.03,a-pcom-i3,2021-22,Attleboro - Peter Thacher Elementary School,160050,1.3,1.3,2.6,93.5,0,0,1.3,91.1,8.9,77.2 +1.53125,1.53,a-pcom-i3,2021-22,Attleboro - Robert J. Coelho Middle School,160305,3,0,1.9,95.1,0,0,0,77.8,22.2,53.3 +2.1875,2.19,a-pcom-i3,2021-22,Attleboro - Thomas Willett Elementary School,160035,0,2.3,4.7,93,0,0,0,95.3,4.7,42.7 +1.5,1.5,a-pcom-i3,2021-22,Attleboro - Wamsutta Middle School,160320,0,0,2.9,95.2,1.9,0,0,76.5,23.5,52.5 +1.46875,1.47,a-pcom-i3,2021-22,Auburn - Auburn Middle,170305,0,1.9,2.8,95.3,0,0,0,74,26,70.9 +2.09375,2.09,a-pcom-i3,2021-22,Auburn - Auburn Senior High,170505,1.7,0.4,3.7,93.3,0,0,0.9,72.3,27.7,109.5 +1.03125,1.03,a-pcom-i3,2021-22,Auburn - Bryn Mawr,170010,0,0,3.3,96.7,0,0,0,100,0,45.4 +2.65625,2.66,a-pcom-i3,2021-22,Auburn - Pakachoag School,170025,2.7,1.8,4,91.5,0,0,0,100,0,37.3 +1.71875,1.72,a-pcom-i3,2021-22,Auburn - Swanson Road Intermediate School,170030,0,1.4,4.1,94.5,0,0,0,92.4,7.6,72.4 +5.75,5,a-pcom-i3,2021-22,Avon - Avon Middle High School,180510,10.2,4.1,4.1,81.6,0,0,0,63.1,36.9,48.8 +1.1875,1.19,a-pcom-i3,2021-22,Avon - Ralph D Butler,180010,3.8,0,0,96.2,0,0,0,96.2,3.8,53.3 +1.1875,1.19,a-pcom-i3,2021-22,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,1.9,0,1.9,96.2,0,0,0,56.2,43.8,52.9 +2.25,2.25,a-pcom-i3,2021-22,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,1.8,0,3.6,92.8,0,0,1.8,69.5,30.5,55.7 +1,1,a-pcom-i3,2021-22,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,1.8,0,98.2,0,0,0,96.4,3.6,56 +1,1,a-pcom-i3,2021-22,Ayer Shirley School District - Page Hilltop Elementary School,6160002,0,1.9,0,96.8,0,0,1.3,93.4,6.6,76 +1,1,a-pcom-i3,2021-22,Barnstable - Barnstable Community Innovation School,200012,0,1.1,0,98.9,0,0,0,93.4,6.6,45.2 +2.53125,2.53,a-pcom-i3,2021-22,Barnstable - Barnstable High,200505,3.1,1.9,2.7,91.9,0.4,0,0,66.9,33.1,258.1 +1.15625,1.16,a-pcom-i3,2021-22,Barnstable - Barnstable Intermediate School,200315,2.8,0,0.9,96.3,0,0,0,79.5,20.5,107.2 +1.0625,1.06,a-pcom-i3,2021-22,Barnstable - Barnstable United Elementary School,200050,0.9,0,0.9,96.6,0.9,0,0.9,91.4,8.6,116.9 +1,1,a-pcom-i3,2021-22,Barnstable - Centerville Elementary,200010,0,0,2.1,97.3,0.6,0,0,91.2,8.8,48.1 +1,1,a-pcom-i3,2021-22,Barnstable - Enoch Cobb Early Learning Center,200001,0,0,2.8,97.2,0,0,0,100,0,36.3 +2.75,2.75,a-pcom-i3,2021-22,Barnstable - Hyannis West Elementary,200025,1.8,3.5,3.5,91.2,0,0,0,96,4,56.7 +1,1,a-pcom-i3,2021-22,Barnstable - West Barnstable Elementary,200005,0,0,0,99.3,0.7,0,0,91.8,8.2,43.2 +2.40625,2.41,a-pcom-i3,2021-22,Barnstable - West Villages Elementary School,200045,4.6,0,1.5,92.3,0,0,1.5,93,7,64.8 +13.6875,5,a-pcom-i3,2021-22,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,17.2,1.6,23.4,56.2,0,0,1.6,60.9,39.1,64 +2.46875,2.47,a-pcom-i3,2021-22,Bedford - Bedford High,230505,3.1,1.6,3.1,92.1,0,0,0,65.9,34.1,121.2 +1.84375,1.84,a-pcom-i3,2021-22,Bedford - John Glenn Middle,230305,1.1,1.1,2.5,94.1,1.1,0,0,75.7,24.3,87.7 +3.71875,3.72,a-pcom-i3,2021-22,Bedford - Lt Elezer Davis,230010,2.9,6.2,1,88.1,0,0,1.9,94.3,5.7,104.7 +2.4375,2.44,a-pcom-i3,2021-22,Bedford - Lt Job Lane School,230012,1,3.7,2.1,92.2,0,0,1,88.7,11.3,95.6 +1,1,a-pcom-i3,2021-22,Belchertown - Belchertown High,240505,0.3,0,1.3,98.5,0,0,0,73.3,26.7,79 +1,1,a-pcom-i3,2021-22,Belchertown - Chestnut Hill Community School,240006,0,0,0,100,0,0,0,83.7,16.3,57.5 +1,1,a-pcom-i3,2021-22,Belchertown - Cold Spring,240005,0,0,2.7,97.3,0,0,0,93.5,6.5,36.9 +1,1,a-pcom-i3,2021-22,Belchertown - Jabish Middle School,240025,0,0,1.9,98.1,0,0,0,81,19,52 +1,1,a-pcom-i3,2021-22,Belchertown - Swift River Elementary,240018,0,0,0,100,0,0,0,94.5,5.5,61.3 +1,1,a-pcom-i3,2021-22,Bellingham - Bellingham Early Childhood Center,250003,0,0,0,100,0,0,0,94.7,5.3,19 +1.15625,1.16,a-pcom-i3,2021-22,Bellingham - Bellingham High School,250505,1.8,1.8,0,96.3,0,0,0,71,29,109.3 +1,1,a-pcom-i3,2021-22,Bellingham - Bellingham Memorial School,250315,0,0,0,100,0,0,0,81.7,18.3,87.2 +1,1,a-pcom-i3,2021-22,Bellingham - Joseph F DiPietro Elementary School,250020,0,0,0,100,0,0,0,100,0,51.9 +1,1,a-pcom-i3,2021-22,Bellingham - Keough Memorial Academy,250510,0,0,0,100,0,0,0,52.8,47.2,17.1 +1,1,a-pcom-i3,2021-22,Bellingham - Stall Brook,250025,2.1,0,0,97.9,0,0,0,96.3,3.7,48.4 +3.375,3.37,a-pcom-i3,2021-22,Belmont - Belmont High,260505,4,3.5,2.5,89.2,0,0,0.8,68.8,31.2,120.7 +3.90625,3.91,a-pcom-i3,2021-22,Belmont - Daniel Butler,260015,2.1,2.3,2.1,87.5,0,0,6,84.2,15.8,43.2 +2.5625,2.56,a-pcom-i3,2021-22,Belmont - Mary Lee Burbank,260010,2.1,1.9,2.1,91.8,0,0,2.1,89.4,10.6,47.4 +1,1,a-pcom-i3,2021-22,Belmont - Roger E Wellington,260035,0,1.1,1,96.9,0,0,1.1,90.1,9.9,82.6 +1,1,a-pcom-i3,2021-22,Belmont - Winn Brook,260005,0,0,1.5,98.5,0,0,0,94.6,5.4,53.6 +5,5,a-pcom-i3,2021-22,Belmont - Winthrop L Chenery Middle,260305,3.7,5.9,2.8,84,0,0,3.7,71.4,28.6,136.6 +18.46875,5,a-pcom-i3,2021-22,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,43.1,8,8,40.9,0,0,0,84.4,15.6,50.1 +1.125,1.12,a-pcom-i3,2021-22,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0.9,1.8,0.9,96.4,0,0,0,88.2,11.8,110.2 +1,1,a-pcom-i3,2021-22,Berkley - Berkley Community School,270010,0,0,1.4,98.6,0,0,0,97.1,2.9,69.4 +1,1,a-pcom-i3,2021-22,Berkley - Berkley Middle School,270305,0,0,0,100,0,0,0,79.2,20.8,48 +3.5625,3.56,a-pcom-i3,2021-22,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,3.4,1.7,2.9,88.6,0,0,3.4,71.6,28.4,59.3 +2.0625,2.06,a-pcom-i3,2021-22,Berkshire Hills - Monument Mt Regional High,6180505,1.3,1.3,2.6,93.4,0,0,1.3,64,36,75.5 +1,1,a-pcom-i3,2021-22,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,1.5,1.5,0,97,0,0,0,88.1,11.9,67.2 +2.625,2.63,a-pcom-i3,2021-22,Berkshire Hills - W.E.B. Du Bois Regional Middle School,6180310,3.4,1.7,3.4,91.6,0,0,0,70,30,59.2 +1,1,a-pcom-i3,2021-22,Berlin-Boylston - Berlin Memorial School,6200005,0,2.9,0,97.1,0,0,0,94.3,5.7,35 +1,1,a-pcom-i3,2021-22,Berlin-Boylston - Boylston Elementary School,6200010,0,0,0,97.7,0,0,2.3,88.6,11.4,43.9 +1,1,a-pcom-i3,2021-22,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,98.6,0,0,1.4,73.5,26.5,71.7 +1,1,a-pcom-i3,2021-22,Beverly - Ayers/Ryal Side School,300055,0,0,0,100,0,0,0,96.5,3.5,46 +1.0625,1.06,a-pcom-i3,2021-22,Beverly - Beverly High,300505,2.1,0,1.3,96.6,0,0,0,68,32,158.4 +1.1875,1.19,a-pcom-i3,2021-22,Beverly - Beverly Middle School,300305,0.6,1.3,1.9,96.2,0,0,0,77.4,22.6,157.8 +1,1,a-pcom-i3,2021-22,Beverly - Centerville Elementary,300010,0,1.9,0,98.1,0,0,0,92.4,7.6,52.3 +1,1,a-pcom-i3,2021-22,Beverly - Cove Elementary,300015,0,0,1.4,98.6,0,0,0,97.2,2.8,70.2 +1,1,a-pcom-i3,2021-22,Beverly - Hannah Elementary,300033,0,1.2,0,98.8,0,0,0,93,7,42.8 +1,1,a-pcom-i3,2021-22,Beverly - McKeown School,300002,0,2.4,0,97.6,0,0,0,97.6,2.4,41.5 +1,1,a-pcom-i3,2021-22,Beverly - North Beverly Elementary,300040,0,2.5,0,97.5,0,0,0,93.3,6.7,60 +1.09375,1.09,a-pcom-i3,2021-22,Billerica - Billerica Memorial High School,310505,0.9,0.9,1.7,96.5,0,0,0,76.4,23.6,233.3 +1,1,a-pcom-i3,2021-22,Billerica - Frederick J Dutile,310007,0,0,0,100,0,0,0,97.5,2.5,40.6 +1,1,a-pcom-i3,2021-22,Billerica - Hajjar Elementary,310026,0,1.1,0,98.9,0,0,0,95.5,4.5,56.2 +1,1,a-pcom-i3,2021-22,Billerica - John F Kennedy,310012,0,0,0,100,0,0,0,94.3,5.7,49 +1,1,a-pcom-i3,2021-22,Billerica - Locke Middle,310310,0,1.3,0,98.7,0,0,0,83.3,16.7,76 +1.15625,1.16,a-pcom-i3,2021-22,Billerica - Marshall Middle School,310305,2.4,1.2,0,96.3,0,0,0,80.1,19.9,82.2 +1,1,a-pcom-i3,2021-22,Billerica - Parker,310015,0,1.1,0,97.8,0,0,1.1,93.9,6.1,89.2 +1,1,a-pcom-i3,2021-22,Billerica - Thomas Ditson,310005,0,1.4,0,98.6,0,0,0,96.1,3.9,69.5 +1,1,a-pcom-i3,2021-22,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,1.7,98.3,0,0,0,59.7,40.3,174.7 +1.3125,1.31,a-pcom-i3,2021-22,Blackstone-Millville - A F Maloney,6220015,0,1.4,2.8,95.8,0,0,0,94.2,5.8,36.1 +2.71875,2.72,a-pcom-i3,2021-22,Blackstone-Millville - Blackstone Millville RHS,6220505,3.5,0,5.2,91.3,0,0,0,67.1,32.9,57.7 +2.5625,2.56,a-pcom-i3,2021-22,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,8.2,91.8,0,0,0,83.6,16.4,48.8 +1,1,a-pcom-i3,2021-22,Blackstone-Millville - John F Kennedy Elementary,6220008,0,2.5,0,97.5,0,0,0,95,5,19.9 +1,1,a-pcom-i3,2021-22,Blackstone-Millville - Millville Elementary,6220010,2.1,0,0,97.9,0,0,0,98.5,1.5,46.5 +2.1875,2.19,a-pcom-i3,2021-22,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,1.7,2.6,1.7,93,0,0,0.9,51.5,48.5,114.5 +12.625,5,a-pcom-i3,2021-22,Boston - Adams Elementary School,350302,14.4,2.2,23.7,59.6,0,0,0,89.9,10.1,44.3 +6.71875,5,a-pcom-i3,2021-22,Boston - Alighieri Dante Montessori School,350066,14.3,0,7.2,78.5,0,0,0,85.7,14.3,14 +16.90625,5,a-pcom-i3,2021-22,Boston - Another Course To College,350541,43.3,2.7,5.4,45.9,0,0,2.7,59.4,40.6,37 +18.09375,5,a-pcom-i3,2021-22,Boston - Baldwin Early Learning Pilot Academy,350003,19.3,18.2,20.5,42.1,0,0,0,96.6,3.4,44 +7.875,5,a-pcom-i3,2021-22,Boston - Bates Elementary School,350278,14.5,2.4,8.3,74.8,0,0,0,88.2,11.8,42.3 +5.5625,5,a-pcom-i3,2021-22,Boston - Beethoven Elementary School,350021,9.5,2.4,5.9,82.2,0,0,0,86.6,13.4,42.2 +15.875,5,a-pcom-i3,2021-22,Boston - Blackstone Elementary School,350390,23.2,2,23.7,49.2,1,0,1,83.2,16.8,101.4 +24.90625,5,a-pcom-i3,2021-22,Boston - Boston Adult Tech Academy,350548,52.5,13.5,10.2,20.3,0,3.4,0,50.8,49.2,29.5 +16.78125,5,a-pcom-i3,2021-22,Boston - Boston Arts Academy,350546,29.2,6.1,18.4,46.3,0,0,0,62.2,37.8,65.1 +13.21875,5,a-pcom-i3,2021-22,Boston - Boston Collaborative High School,350755,23.5,4.7,14.1,57.7,0,0,0,67.1,32.9,21.3 +16.5625,5,a-pcom-i3,2021-22,Boston - Boston Community Leadership Academy,350558,35.7,5.2,12.2,47,0,0,0,70.9,29.1,115 +15.5,5,a-pcom-i3,2021-22,Boston - Boston International High School & Newcomers Academy,350507,20.3,4.9,24.4,50.4,0,0,0,63,37,61.5 +13.96875,5,a-pcom-i3,2021-22,Boston - Boston Latin Academy,350545,23.2,13.2,6.8,55.3,0.8,0,0.8,61.3,38.7,125.2 +9.84375,5,a-pcom-i3,2021-22,Boston - Boston Latin School,350560,17.3,8,4.9,68.5,0,0.6,0.6,59.3,40.7,162 +14.28125,5,a-pcom-i3,2021-22,Boston - Boston Teachers Union K-8 Pilot,350012,22.5,5.8,17.4,54.3,0,0,0,80.4,19.6,34.5 +4.84375,4.84,a-pcom-i3,2021-22,Boston - Bradley Elementary School,350215,4.9,5.6,5,84.5,0,0,0,87.4,12.6,40.3 +15.4375,5,a-pcom-i3,2021-22,Boston - Brighton High School,350505,29.6,5.8,14,50.6,0,0,0,63.9,36.1,85.9 +19.3125,5,a-pcom-i3,2021-22,Boston - Burke High School,350525,52.9,0,8.9,38.2,0,0,0,58.8,41.2,67.4 +13.59375,5,a-pcom-i3,2021-22,Boston - Carter School,350036,39.1,4.3,0,56.5,0,0,0,87,13,23 +19.625,5,a-pcom-i3,2021-22,Boston - Channing Elementary School,350360,43.5,4.9,13.7,37.2,0.8,0,0,82.7,17.3,40.3 +13.28125,5,a-pcom-i3,2021-22,Boston - Charlestown High School,350515,27.4,9.1,4.8,57.5,0.6,0.6,0,64.9,35.1,165.1 +17.4375,5,a-pcom-i3,2021-22,Boston - Chittick Elementary School,350154,41.3,5.5,7.3,44.2,1.8,0,0,89.1,10.9,54.9 +18.46875,5,a-pcom-i3,2021-22,Boston - Clap Elementary School,350298,40.9,3.6,14.6,40.9,0,0,0,80.1,19.9,28.1 +23.6875,5,a-pcom-i3,2021-22,Boston - Community Academy,350518,42.7,18.9,9.5,24.2,4.7,0,0,66.8,33.2,21.1 +17.46875,5,a-pcom-i3,2021-22,Boston - Community Academy of Science and Health,350581,47.9,3.2,4.8,44.1,0,0,0,63.3,36.7,62.6 +13.78125,5,a-pcom-i3,2021-22,Boston - Condon K-8 School,350146,27.7,4.6,11.8,55.9,0,0,0,83.6,16.4,119 +11.375,5,a-pcom-i3,2021-22,Boston - Conley Elementary School,350122,24.3,3,9.1,63.6,0,0,0,81.8,18.2,33 +12.1875,5,a-pcom-i3,2021-22,Boston - Curley K-8 School,350020,18.3,2,18.8,61,0,0,0,85.6,14.4,152.6 +19.90625,5,a-pcom-i3,2021-22,Boston - Dearborn 6-12 STEM Academy,350074,50,2.6,11.2,36.3,0,0,0,68.3,31.7,78.1 +15.1875,5,a-pcom-i3,2021-22,Boston - Dever Elementary School,350268,27.8,2.8,18.1,51.4,0,0,0,83.3,16.7,72 +15.8125,5,a-pcom-i3,2021-22,Boston - East Boston Early Education Center,350009,16.1,4.6,27.6,49.4,0,2.3,0,95.4,4.6,43.5 +10.21875,5,a-pcom-i3,2021-22,Boston - East Boston High School,350530,9.7,4.3,18.6,67.3,0,0,0,57,43,138.5 +15.1875,5,a-pcom-i3,2021-22,Boston - Edison K-8 School,350375,25.7,7.3,15.6,51.4,0,0,0,77.1,22.9,96.3 +11.71875,5,a-pcom-i3,2021-22,Boston - Eliot K-8 Innovation School,350096,20.3,7.7,8.3,62.5,0,0,1.2,84.5,15.5,83.9 +23.28125,5,a-pcom-i3,2021-22,Boston - Ellis Elementary School,350072,51.3,3.2,18.4,25.5,1.6,0,0,77.7,22.3,62.6 +21.3125,5,a-pcom-i3,2021-22,Boston - Ellison-Parks Early Education School,350008,52.3,4,11.9,31.8,0,0,0,90.1,9.9,50.3 +15.9375,5,a-pcom-i3,2021-22,Boston - English High School,350535,25,4.7,20.3,49,0,0,1,57.8,41.1,96 +12.90625,5,a-pcom-i3,2021-22,Boston - Everett Elementary School,350088,25.3,8,2.7,58.7,0,2.7,2.7,85.4,14.6,37.5 +18.40625,5,a-pcom-i3,2021-22,Boston - Excel High School,350522,36.7,11.1,9.7,41.1,1.4,0,0,68,32,71.8 +18,5,a-pcom-i3,2021-22,Boston - Fenway High School,350540,27.3,3.6,24.9,42.4,0,1.8,0,58.3,41.7,55.4 +21.84375,5,a-pcom-i3,2021-22,Boston - Frederick Pilot Middle School,350383,49.4,2.4,18.1,30.1,0,0,0,69.3,30.7,85 +14.625,5,a-pcom-i3,2021-22,Boston - Gardner Pilot Academy,350326,23.9,5.7,17.2,53.2,0,0,0,87.6,12.4,52.3 +22.125,5,a-pcom-i3,2021-22,Boston - Greater Egleston High School,350543,41.5,0,29.2,29.2,0,0,0,70.2,29.8,17.1 +20.59375,5,a-pcom-i3,2021-22,Boston - Greenwood Sarah K-8 School,350308,14.8,0,51.1,34.1,0,0,0,80,20,67.5 +19.75,5,a-pcom-i3,2021-22,Boston - Grew Elementary School,350135,57.9,0,5.3,36.8,0,0,0,84.2,15.8,28.5 +9.125,5,a-pcom-i3,2021-22,Boston - Guild Elementary School,350062,17.6,2.3,9.3,70.8,0,0,0,83.7,16.3,43 +18.90625,5,a-pcom-i3,2021-22,Boston - Hale Elementary School,350243,45.4,0,15.1,39.5,0,0,0,84.9,15.1,19.8 +11.0625,5,a-pcom-i3,2021-22,Boston - Haley Pilot School,350077,20.6,8.2,6.6,64.6,0,0,0,84.4,15.6,60.7 +9.3125,5,a-pcom-i3,2021-22,Boston - Harvard-Kent Elementary School,350200,13,11,5.7,70.2,0,0,0,75.5,24.5,69.4 +25.65625,5,a-pcom-i3,2021-22,Boston - Haynes Early Education Center,350010,63.2,4.2,14.7,17.9,0,0,0,77.9,22.1,47.5 +7.125,5,a-pcom-i3,2021-22,Boston - Henderson K-12 Inclusion School Lower,350266,18.5,2.2,2.2,77.2,0,0,0,79.4,18.5,46 +11.46875,5,a-pcom-i3,2021-22,Boston - Henderson K-12 Inclusion School Upper,350426,24.2,6,6.5,63.3,0,0,0,73,27,108.3 +15.90625,5,a-pcom-i3,2021-22,Boston - Hennigan K-8 School,350153,27.3,0.3,23.3,49.1,0,0,0,78.7,21.3,87.8 +21.28125,5,a-pcom-i3,2021-22,Boston - Hernandez K-8 School,350691,1.9,0,66.1,31.9,0,0,0,84.5,15.5,51.7 +19.46875,5,a-pcom-i3,2021-22,Boston - Higginson Inclusion K0-2 School,350015,31.2,10.4,20.8,37.7,0,0,0,87,13,38.5 +21.40625,5,a-pcom-i3,2021-22,Boston - Higginson-Lewis K-8 School,350377,56.5,3.4,6.8,31.5,0,0,1.7,71,27.3,58.6 +17.25,5,a-pcom-i3,2021-22,Boston - Holmes Elementary School,350138,49.4,3.9,1.9,44.8,0,0,0,73.7,26.3,51.3 +7.5,5,a-pcom-i3,2021-22,Boston - Horace Mann School for the Deaf Hard of Hearing,350750,8.8,7.6,7.6,76,0,0,0,82.9,17.1,79.1 +22.6875,5,a-pcom-i3,2021-22,Boston - Hurley K-8 School,350182,9.5,0,63.2,27.4,0,0,0,89.5,10.5,47.5 +14.1875,5,a-pcom-i3,2021-22,Boston - Irving Middle School,350445,32.7,4.2,8.4,54.6,0,0,0,77.8,22.2,47.4 +13.9375,5,a-pcom-i3,2021-22,Boston - Jackson-Mann K-8 School,350013,29,1.4,14.3,55.4,0,0,0,76.3,23.7,90.3 +9.9375,5,a-pcom-i3,2021-22,Boston - Kennedy John F Elementary School,350166,21.7,0,10.1,68.2,0,0,0,77.4,22.6,39.7 +11.21875,5,a-pcom-i3,2021-22,Boston - Kennedy Patrick J Elementary School,350264,4.8,4.8,26.3,64.1,0,0,0,92.8,7.2,41.8 +14,5,a-pcom-i3,2021-22,Boston - Kenny Elementary School,350328,28.8,10,4,55.2,0,0,2,78.1,21.9,50.2 +5.75,5,a-pcom-i3,2021-22,Boston - Kilmer K-8 School,350190,14.8,1.4,2.2,81.6,0,0,0,81.2,18.8,69.2 +20.28125,5,a-pcom-i3,2021-22,Boston - King K-8 School,350376,50.4,1,13.5,35.1,0,0,0,73,27,103.6 +18.0625,5,a-pcom-i3,2021-22,Boston - Lee Academy,350001,36.1,2.4,19.3,42.2,0,0,0,81.9,18.1,41.5 +15.34375,5,a-pcom-i3,2021-22,Boston - Lee K-8 School,350183,38,2.1,8.2,50.9,0.7,0,0,77.9,22.1,142.2 +8.21875,5,a-pcom-i3,2021-22,Boston - Lyndon K-8 School,350262,17.9,0,6,73.7,1,0,1.5,81.4,18.6,66.9 +17,5,a-pcom-i3,2021-22,Boston - Lyon High School,350655,35.7,2.8,13.1,45.6,0,2.8,0,53.7,46.3,35.6 +10.3125,5,a-pcom-i3,2021-22,Boston - Lyon K-8 School,350004,17.9,7.2,7.9,67,0,0,0,70.2,29.8,41.9 +16.46875,5,a-pcom-i3,2021-22,Boston - Madison Park Technical Vocational High School,350537,36.5,1.6,13.1,47.3,0.5,1,0,52,48,190.9 +9.375,5,a-pcom-i3,2021-22,Boston - Manning Elementary School,350184,26.7,0,3.3,70,0,0,0,88.3,11.7,30 +16.625,5,a-pcom-i3,2021-22,Boston - Margarita Muniz Academy,350549,2.8,0,50.4,46.8,0,0,0,66.3,33.7,36.2 +15.03125,5,a-pcom-i3,2021-22,Boston - Mario Umana Academy,350656,9.8,2.9,34.3,51.9,1,0,0,77.4,22.6,101.9 +18.21875,5,a-pcom-i3,2021-22,Boston - Mason Elementary School,350304,47.9,4.2,4.2,41.7,2.1,0,0,84.4,15.6,48 +19.5625,5,a-pcom-i3,2021-22,Boston - Mather Elementary School,350227,42.9,18.4,1.4,37.4,0,0,0,80.3,19.7,73.4 +17.125,5,a-pcom-i3,2021-22,Boston - Mattahunt Elementary School,350016,44.3,2.3,8.2,45.2,0,0,0,86,14,85.8 +9.46875,5,a-pcom-i3,2021-22,Boston - McKay K-8 School,350080,4.6,6.9,17.7,69.7,0,0,1.1,80,20,87.5 +16.71875,5,a-pcom-i3,2021-22,Boston - McKinley Schools,350363,42.4,1.3,8.5,46.5,0,0.6,0.6,56.3,43.7,158.2 +19.5,5,a-pcom-i3,2021-22,Boston - Mendell Elementary School,350100,25.9,8.4,28,37.6,0,0,0,91.4,8.6,38.5 +18.90625,5,a-pcom-i3,2021-22,Boston - Mildred Avenue K-8 School,350378,42.5,3.8,14.1,39.5,0,0,0,78.2,21.8,84.7 +14.03125,5,a-pcom-i3,2021-22,Boston - Mission Hill K-8 School,350382,31.1,2.3,11.5,55.1,0,0,0,86.2,13.8,43.4 +13.3125,5,a-pcom-i3,2021-22,Boston - Mozart Elementary School,350237,22.9,1.6,18.1,57.4,0,0,0,86.9,13.1,30.5 +11.90625,5,a-pcom-i3,2021-22,Boston - Murphy K-8 School,350240,22.2,10,5.9,61.9,0,0,0,74.2,25.8,118 +13.6875,5,a-pcom-i3,2021-22,Boston - New Mission High School,350542,22.3,8.9,12.5,56.2,0,0,0,60.7,39.3,56 +18.09375,5,a-pcom-i3,2021-22,Boston - O'Bryant School of Math & Science,350575,36.2,7.2,13.6,42.1,0,0,0.8,57.5,42.5,124.7 +8.9375,5,a-pcom-i3,2021-22,Boston - O'Donnell Elementary School,350141,8.6,2.9,17.2,71.4,0,0,0,77.1,22.9,35 +11.5,5,a-pcom-i3,2021-22,Boston - Ohrenberger School,350258,24.8,0.7,9.8,63.2,0,0,1.5,74.7,25.3,68.5 +12.96875,5,a-pcom-i3,2021-22,Boston - Orchard Gardens K-8 School,350257,28.6,1.7,9.4,58.5,0,0,1.8,79,21,117.1 +8.0625,5,a-pcom-i3,2021-22,Boston - Otis Elementary School,350156,8.2,6.2,11.3,74.2,0,0,0,85.6,14.4,48.5 +15.625,5,a-pcom-i3,2021-22,Boston - Perkins Elementary School,350231,35,6.7,8.3,50,0,0,0,78.3,21.7,30 +6.25,5,a-pcom-i3,2021-22,Boston - Perry K-8 School,350255,11.4,0,8.6,80,0,0,0,85.7,14.3,35 +15.875,5,a-pcom-i3,2021-22,Boston - Philbrick Elementary School,350172,46.3,4.5,0,49.2,0,0,0,73.1,26.9,22.3 +19.65625,5,a-pcom-i3,2021-22,Boston - Quincy Elementary School,350286,13.8,45.7,3.5,37.1,0,0,0,84.2,15.8,113.9 +21.5,5,a-pcom-i3,2021-22,Boston - Quincy Upper School,350565,26.6,31.9,10.4,31.2,0,0,0,65.9,34.1,67.4 +12.09375,5,a-pcom-i3,2021-22,Boston - Roosevelt K-8 School,350116,23.8,3.7,9.4,61.3,1.8,0,0,89,11,54.6 +13.03125,5,a-pcom-i3,2021-22,Boston - Russell Elementary School,350366,22.9,2.1,16.7,58.3,0,0,0,85.4,14.6,48 +17.875,5,a-pcom-i3,2021-22,Boston - Shaw Elementary School,350014,44.3,0,4.3,42.8,4.3,0,4.3,82.9,17.1,23.3 +14.34375,5,a-pcom-i3,2021-22,Boston - Snowden International High School,350690,28.5,7.3,10.1,54.1,0,0,0,62.4,37.6,54.6 +16.4375,5,a-pcom-i3,2021-22,Boston - Sumner Elementary School,350052,25.9,3,23.7,47.4,0,0,0,90.4,9.6,67.4 +23.3125,5,a-pcom-i3,2021-22,Boston - Taylor Elementary School,350054,61.1,9.7,3.7,25.4,0,0,0,90.3,9.7,54 +14.59375,5,a-pcom-i3,2021-22,Boston - TechBoston Academy,350657,40,1.6,5,53.3,0,0,0,56.2,43.8,121.7 +17.6875,5,a-pcom-i3,2021-22,Boston - Timilty Middle School,350485,30.1,0,26.5,43.4,0,0,0,68.7,31.3,41.5 +18.375,5,a-pcom-i3,2021-22,Boston - Tobin K-8 School,350229,25.5,5.9,27.5,41.2,0,0,0,87.3,12.7,51 +19.03125,5,a-pcom-i3,2021-22,Boston - Trotter K-8 School,350370,55.4,1.8,3.6,39.1,0,0,0,86.4,13.6,55 +12.375,5,a-pcom-i3,2021-22,Boston - Tynan Elementary School,350181,27.4,0,12.2,60.4,0,0,0,87.8,12.2,57.4 +12.84375,5,a-pcom-i3,2021-22,Boston - UP Academy Holland,350167,27.4,4.8,8.9,58.9,0,0,0,88.1,11.9,84 +6.5625,5,a-pcom-i3,2021-22,Boston - Warren-Prescott K-8 School,350346,11.2,0.7,9.1,79,0,0,0,90.2,9.8,71.4 +21.75,5,a-pcom-i3,2021-22,Boston - West Zone Early Learning Center,350006,43.5,2.9,20.3,30.4,2.9,0,0,87,13,34.5 +15.125,5,a-pcom-i3,2021-22,Boston - Winship Elementary School,350374,25.8,6.5,16.1,51.6,0,0,0,80.6,19.4,31 +14.25,5,a-pcom-i3,2021-22,Boston - Winthrop Elementary School,350180,30.2,4.2,11.2,54.4,0,0,0,86,14,35.8 +22.75,5,a-pcom-i3,2021-22,Boston - Young Achievers K-8 School,350380,56.3,1.3,15.2,27.2,0,0,0,80.1,19.9,92.8 +15.3125,5,a-pcom-i3,2021-22,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,17.7,4.5,19.6,51,0.9,0,6.3,68.1,31,111.5 +21.09375,5,a-pcom-i3,2021-22,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,38.6,10.8,12.6,32.5,0,0,5.4,62.1,37.9,55.4 +16.09375,5,a-pcom-i3,2021-22,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,28.8,1.9,20.7,48.5,0,0,0,70.3,29.7,79.2 +14.34375,5,a-pcom-i3,2021-22,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,29,5,9.9,54.1,0,0,2,62.4,36.6,100.6 +8.6875,5,a-pcom-i3,2021-22,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,19,4.6,3.6,72.2,0,0,0.7,83,17,152.7 +1,1,a-pcom-i3,2021-22,Bourne - Bourne High School,360505,0,0,0,98.4,0,0,1.6,65.1,34.9,62.1 +1,1,a-pcom-i3,2021-22,Bourne - Bourne Intermediate School,360030,0,0.8,0,99.2,0,0,0,93.3,6.7,59.4 +1.4375,1.44,a-pcom-i3,2021-22,Bourne - Bourne Middle School,360325,0,1.5,0,95.4,0,0,3,82.7,17.3,65.7 +1.0625,1.06,a-pcom-i3,2021-22,Bourne - Bournedale Elementary School,360005,0,0.7,1.3,96.6,0,0,1.3,96.2,3.8,74.2 +1.40625,1.41,a-pcom-i3,2021-22,Boxford - Harry Lee Cole,380005,0,0.9,3.6,95.5,0,0,0,96,4,55.1 +1.46875,1.47,a-pcom-i3,2021-22,Boxford - Spofford Pond,380013,0,0,4.7,95.3,0,0,0,95,5,63.7 +1,1,a-pcom-i3,2021-22,Braintree - Archie T Morrison,400033,0,0,2,98,0,0,0,91.9,8.1,49.4 +1.21875,1.22,a-pcom-i3,2021-22,Braintree - Braintree High,400505,1.4,1,0.5,96.1,0,0,1,68.9,31.1,203.7 +1,1,a-pcom-i3,2021-22,Braintree - Donald Ross,400050,0,0,0,100,0,0,0,97.2,2.8,32.3 +1.09375,1.09,a-pcom-i3,2021-22,Braintree - East Middle School,400305,1.8,0.9,0.9,96.5,0,0,0,79.8,20.2,113.4 +1,1,a-pcom-i3,2021-22,Braintree - Highlands,400015,0,2.2,0,97.8,0,0,0,91.9,7.1,45.3 +1,1,a-pcom-i3,2021-22,Braintree - Hollis,400005,0,0,0,98.6,0,1.4,0,95.6,4.4,45 +1,1,a-pcom-i3,2021-22,Braintree - Liberty,400025,0,0,0,100,0,0,0,96.9,3.1,39 +1.34375,1.34,a-pcom-i3,2021-22,Braintree - Mary E Flaherty School,400020,0,2.7,0,95.7,0,0,1.7,98.7,1.3,60.2 +1.90625,1.91,a-pcom-i3,2021-22,Braintree - Monatiquot Kindergarten Center,400009,3,0,0,93.9,0,3,0,97.9,2.1,33 +1,1,a-pcom-i3,2021-22,Braintree - South Middle School,400310,0,1.4,0,98.6,0,0,0,76.1,23.9,69.5 +1,1,a-pcom-i3,2021-22,Brewster - Eddy Elementary,410010,0,0,0.7,99.3,0,0,0,96.6,3.4,43.5 +1,1,a-pcom-i3,2021-22,Brewster - Stony Brook Elementary,410005,0,0,1.9,98.1,0,0,0,97.1,2.9,51.8 +13.625,5,a-pcom-i3,2021-22,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,27.9,3.6,9.7,56.4,0,0,2.4,81.8,18.2,82.5 +1.28125,1.28,a-pcom-i3,2021-22,Bridgewater-Raynham - Bridgewater Middle School,6250320,3.9,0,0.2,95.9,0,0,0,74.1,25.9,51.7 +1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,1.5,0,1,97.5,0,0,0,70.9,29.1,130.2 +1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0.3,99.7,0,0,0,88.5,11.5,45.6 +1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Merrill Elementary School,6250020,0,0,0.4,99.6,0,0,0,94.6,5.4,32.6 +1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Mitchell Elementary School,6250002,0,0,0.9,98.3,0,0,0.8,95.2,4.8,123.9 +1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Raynham Middle School,6250315,1.5,0,0.2,98.3,0,0,0,83.2,16.8,65.3 +1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,100,0,0,0,94,6,8.6 +1,1,a-pcom-i3,2021-22,Bridgewater-Raynham - Williams Intermediate School,6250300,1.4,0,0.2,97.1,0,0,1.4,84.2,15.8,73.5 +1,1,a-pcom-i3,2021-22,Brimfield - Brimfield Elementary,430005,0,2.2,0,97.8,0,0,0,92.8,7.2,46.4 +1,1,a-pcom-i3,2021-22,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,1.8,98.2,0,0,0,64.3,35.7,55.9 +1.46875,1.47,a-pcom-i3,2021-22,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,2,0,1.3,95.3,1.3,0,0,60.3,39.7,149 +4.6875,4.69,a-pcom-i3,2021-22,Brockton - Ashfield Middle School,440421,12.1,1.4,1.4,85,0,0,0,82.4,17.6,69.5 +2.9375,2.94,a-pcom-i3,2021-22,Brockton - Barrett Russell Early Childhood Center,440008,5.5,1.8,2.1,90.6,0,0,0,96.5,3.5,56.7 +9.09375,5,a-pcom-i3,2021-22,Brockton - Brockton Champion High School,440515,24.3,0,3.6,70.9,0,0,1.2,64.3,35.7,41.5 +8.78125,5,a-pcom-i3,2021-22,Brockton - Brockton High,440505,19.7,2.2,3.1,71.9,0.2,0.5,2.4,62.5,37.5,412.9 +6.71875,5,a-pcom-i3,2021-22,Brockton - Brockton Virtual Learning Academy,440705,12.5,0,8.9,78.5,0,0,0,82.8,17.2,22.4 +4.90625,4.91,a-pcom-i3,2021-22,Brockton - Brookfield,440010,10,0,4.3,84.3,0,0,1.4,94.3,5.7,69.9 +5.5625,5,a-pcom-i3,2021-22,Brockton - Downey,440110,10.7,1,3.1,82.2,1,0,2,90.8,9.2,98.1 +6.90625,5,a-pcom-i3,2021-22,Brockton - Dr W Arnone Community School,440001,13.6,0,7.4,77.9,0,0,1.1,91.7,8.3,108 +6.0625,5,a-pcom-i3,2021-22,Brockton - East Middle School,440405,11.8,1.3,4.8,80.6,0,1.3,0.3,69.5,30.5,79.4 +4.40625,4.41,a-pcom-i3,2021-22,Brockton - Edgar B Davis,440023,5.5,0,4.6,85.9,0,1,3,73.8,26.2,98.5 +16.1875,5,a-pcom-i3,2021-22,Brockton - Edison Academy,440520,47.6,0,2.5,48.2,0,0,1.7,66.8,33.2,18.1 +8.28125,5,a-pcom-i3,2021-22,Brockton - Frederick Douglass Academy,440080,7.2,0,8,73.5,8,0,3.2,82.7,17.3,12.5 +9.375,5,a-pcom-i3,2021-22,Brockton - Gilmore Elementary School,440055,28.2,0,0,70,0,0,1.8,88.7,11.3,55.3 +7.03125,5,a-pcom-i3,2021-22,Brockton - Hancock,440045,17.3,0,2.6,77.5,0.9,0,1.7,87,13,57.8 +10.75,5,a-pcom-i3,2021-22,Brockton - Huntington Therapeutic Day School,440400,28.1,0,6.3,65.6,0,0,0,60.7,39.3,55.5 +7.125,5,a-pcom-i3,2021-22,Brockton - John F Kennedy,440017,12.4,5.4,3.3,77.2,0,0,1.7,91.6,8.4,60.4 +10.28125,5,a-pcom-i3,2021-22,Brockton - Joseph F. Plouffe Academy,440422,21.7,4.1,7.2,67.1,0,0,0,80,20,97.7 +7.71875,5,a-pcom-i3,2021-22,Brockton - Louis F Angelo Elementary,440065,14.7,1.1,4.5,75.3,0,0.9,3.6,93.4,6.6,112.2 +11.28125,5,a-pcom-i3,2021-22,Brockton - Manthala George Jr. School,440003,16.2,0,18.8,63.9,1.1,0,0,94.2,5.8,87.8 +6.6875,5,a-pcom-i3,2021-22,Brockton - Mary E. Baker School,440002,15.6,0,4.9,78.6,0,0.9,0,97,3,106.7 +7.90625,5,a-pcom-i3,2021-22,Brockton - North Middle School,440410,18.4,0,2.2,74.7,0,0,4.8,60.9,39.1,46.3 +4.4375,4.44,a-pcom-i3,2021-22,Brockton - Oscar F Raymond,440078,12.8,0,0,85.8,0.5,0,0.9,93.2,6.8,93.8 +12.625,5,a-pcom-i3,2021-22,Brockton - South Middle School,440415,31.8,0,7.3,59.6,0,0,1.2,77.5,22.5,89.2 +8.75,5,a-pcom-i3,2021-22,Brockton - West Middle School,440420,20,2.6,3.9,72,0,0,1.5,68.3,31.7,77.6 +17.375,5,a-pcom-i3,2021-22,Brooke Charter School (District) - Brooke Charter School,4280305,27.9,2.4,21.2,44.4,0,0.7,3.4,78.1,21.6,293.5 +1,1,a-pcom-i3,2021-22,Brookfield - Brookfield Elementary,450005,0,0,0,100,0,0,0,96.4,3.6,48 +3.125,3.13,a-pcom-i3,2021-22,Brookline - Brookline Early Education Program at Beacon,460001,0,10,0,90,0,0,0,90,10,10 +7.53125,5,a-pcom-i3,2021-22,Brookline - Brookline Early Education Program at Clark Road,460003,23.6,0.5,0,75.9,0,0,0,89.8,10.2,19.6 +4.65625,4.66,a-pcom-i3,2021-22,Brookline - Brookline Early Education Program at Putterham,460002,3.6,7,4.3,85.1,0,0,0,95.7,4.3,23.1 +7.09375,5,a-pcom-i3,2021-22,Brookline - Brookline High,460505,10.2,4.8,6.1,77.3,0,0,1.5,64.1,35.9,320.1 +4.65625,4.66,a-pcom-i3,2021-22,Brookline - Edith C Baker,460005,6.6,4.6,2.6,85.1,0,0,1,83.6,16.4,101.9 +5.25,5,a-pcom-i3,2021-22,Brookline - Florida Ruffin Ridley School,460015,8.4,3.1,4.6,83.2,0,0.7,0,78.6,21.4,149.8 +4.8125,4.81,a-pcom-i3,2021-22,Brookline - Heath,460025,5.1,2.7,7.6,84.6,0,0,0,87.4,12.6,78.4 +5.65625,5,a-pcom-i3,2021-22,Brookline - John D Runkle,460045,10.2,4.4,1.7,81.9,0,0.9,0.9,88.2,11.8,105.9 +5.75,5,a-pcom-i3,2021-22,Brookline - Lawrence,460030,5.5,9,3,81.6,0,0,1,82.8,17.2,103.9 +5.53125,5,a-pcom-i3,2021-22,Brookline - Michael Driscoll,460020,5.2,7.3,4,82.3,0,0,1.2,83.3,16.7,86.4 +5.40625,5,a-pcom-i3,2021-22,Brookline - Pierce,460040,4.4,9.1,2.9,82.7,0,0,0.9,83.2,16.8,108.5 +7.34375,5,a-pcom-i3,2021-22,Brookline - The Lynch Center,460060,3.8,3.5,16.1,76.5,0,0,0,95.8,0,21.9 +5.28125,5,a-pcom-i3,2021-22,Brookline - William H Lincoln,460035,7.6,2.2,5.1,83.1,0,0,2,82.1,17.9,90.5 +1.78125,1.78,a-pcom-i3,2021-22,Burlington - Burlington High,480505,0,2.6,2,94.3,0,0,1.1,77,23,151.9 +1,1,a-pcom-i3,2021-22,Burlington - Fox Hill,480007,0,0,1.5,97,0,0,1.5,85.6,14.4,66.5 +1,1,a-pcom-i3,2021-22,Burlington - Francis Wyman Elementary,480035,0,0.2,0,99.8,0,0,0,91.3,8.7,85.7 +2.0625,2.06,a-pcom-i3,2021-22,Burlington - Marshall Simonds Middle,480303,2,3.6,1,93.4,0,0,0,81.1,18.9,98.1 +2.53125,2.53,a-pcom-i3,2021-22,Burlington - Memorial,480015,1.6,4.9,1.6,91.9,0,0,0,96,4,61.4 +1.4375,1.44,a-pcom-i3,2021-22,Burlington - Pine Glen Elementary,480020,0,1.5,3,95.4,0,0,0,90,8.5,65.6 +16.75,5,a-pcom-i3,2021-22,Cambridge - Amigos School,490006,2,0,51.6,46.4,0,0,0,73.1,26.9,65.2 +8.6875,5,a-pcom-i3,2021-22,Cambridge - Cambridge Rindge and Latin,490506,13.2,4.4,7,72.2,0.2,0.3,2.8,63.8,36.2,322.2 +10.03125,5,a-pcom-i3,2021-22,Cambridge - Cambridge Street Upper School,490305,18.6,6.8,5.1,67.9,0,0,1.7,86.1,13.9,59.2 +11.53125,5,a-pcom-i3,2021-22,Cambridge - Cambridgeport,490007,26.5,4.8,4,63.1,0,0,1.6,79.9,20.1,62.7 +11.21875,5,a-pcom-i3,2021-22,Cambridge - Fletcher/Maynard Academy,490090,22.7,7.9,3,64.1,0,1.2,1.2,79.9,20.1,83.9 +10.03125,5,a-pcom-i3,2021-22,Cambridge - Graham and Parks,490080,18,5,4.3,67.9,0,0,4.8,91.9,8.1,70 +8,5,a-pcom-i3,2021-22,Cambridge - Haggerty,490020,10.9,5.5,5.6,74.4,0,0,3.6,88.7,11.3,55 +6.8125,5,a-pcom-i3,2021-22,Cambridge - John M Tobin,490065,10.3,3.9,7.1,78.2,0,0,0.5,90.5,9.5,63.3 +7.96875,5,a-pcom-i3,2021-22,Cambridge - Kennedy-Longfellow,490040,14,4.3,7.2,74.5,0,0,0,92.1,7.9,69.8 +9.90625,5,a-pcom-i3,2021-22,Cambridge - King Open,490035,16.6,5.2,9.9,68.3,0,0,0,88,12,77 +5.75,5,a-pcom-i3,2021-22,Cambridge - Maria L. Baldwin,490005,7.5,6.3,4.7,81.6,0,0,0,81.1,18.9,63.8 +14.6875,5,a-pcom-i3,2021-22,Cambridge - Martin Luther King Jr.,490030,15.6,22.6,5.2,53,0,0,3.5,93,7,57.5 +7.375,5,a-pcom-i3,2021-22,Cambridge - Morse,490045,9.1,4.9,6.3,76.4,0,0,3.3,90,10,71.2 +7.59375,5,a-pcom-i3,2021-22,Cambridge - Peabody,490050,11.9,5.1,5.6,75.7,0,0,1.7,83.8,16.2,58.8 +12.15625,5,a-pcom-i3,2021-22,Cambridge - Putnam Avenue Upper School,490310,20.1,6,7.3,61.1,0,0,5.5,72.6,27.4,54.8 +11.84375,5,a-pcom-i3,2021-22,Cambridge - Rindge Avenue Upper School,490315,21.3,8.5,8.1,62.1,0,0,0,69.6,30.4,49.1 +9.5625,5,a-pcom-i3,2021-22,Cambridge - Vassal Lane Upper School,490320,14.6,4.5,8,69.4,0,0,3.6,79.2,20.8,56.2 +1.625,1.63,a-pcom-i3,2021-22,Canton - Canton High,500505,1,1,1,94.8,0,0,2.1,68.1,31.9,96.5 +1.34375,1.34,a-pcom-i3,2021-22,Canton - Dean S Luce,500020,2.2,2.2,0,95.7,0,0,0,93.9,6.1,46.2 +1.53125,1.53,a-pcom-i3,2021-22,Canton - John F Kennedy,500017,4.9,0,0,95.1,0,0,0,92.1,7.9,61.5 +3.71875,3.72,a-pcom-i3,2021-22,Canton - Lt Peter M Hansen,500012,3.4,1.7,3.4,88.1,0,0,3.4,90.1,9.9,58.9 +1,1,a-pcom-i3,2021-22,Canton - Rodman Early Childhood Center,500010,0,0,0,100,0,0,0,100,0,17.5 +3,3,a-pcom-i3,2021-22,Canton - Wm H Galvin Middle,500305,4.3,0,2.1,90.4,0,0,3.2,76.6,23.4,93.3 +1,1,a-pcom-i3,2021-22,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,100,0,0,0,81.8,18.2,32.3 +1,1,a-pcom-i3,2021-22,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,1,0,0,97.1,1,0,1,56.6,43.4,103.8 +1.375,1.38,a-pcom-i3,2021-22,Carlisle - Carlisle School,510025,0.9,2.6,0.9,95.6,0,0,0,83.7,16.3,109.5 +1,1,a-pcom-i3,2021-22,Carver - Carver Elementary School,520015,0.5,0,1,97.6,1,0,0,95.2,4.8,103.4 +1.5,1.5,a-pcom-i3,2021-22,Carver - Carver Middle/High School,520405,1.9,0,1,95.2,0,1,1,67.9,32.1,103.4 +1,1,a-pcom-i3,2021-22,Central Berkshire - Becket Washington School,6350005,2.4,0,0,97.6,0,0,0,95.1,4.9,20.5 +1,1,a-pcom-i3,2021-22,Central Berkshire - Craneville,6350025,1.8,0,0,98.2,0,0,0,91.1,8.9,56.2 +1,1,a-pcom-i3,2021-22,Central Berkshire - Kittredge,6350035,1.8,0,0,98.2,0,0,0,96.4,3.6,28 +1,1,a-pcom-i3,2021-22,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,100,0,0,0,75.2,24.8,44.3 +1,1,a-pcom-i3,2021-22,Central Berkshire - Wahconah Regional High,6350505,0,0,0,97,0,0,3,64.7,35.3,66.9 +2.375,2.37,a-pcom-i3,2021-22,Chelmsford - Byam School,560030,0,7,0.6,92.4,0,0,0,90.7,9.3,85.9 +1.625,1.63,a-pcom-i3,2021-22,Chelmsford - Center Elementary School,560005,0,2.6,1.3,94.8,0,0,1.3,97.4,2.6,76.3 +1,1,a-pcom-i3,2021-22,Chelmsford - Charles D Harrington,560025,0,1.5,0,98.5,0,0,0,91.3,7.3,68.7 +2.15625,2.16,a-pcom-i3,2021-22,Chelmsford - Chelmsford High,560505,0.5,2.2,4.2,93.1,0,0,0,65,35,185.9 +1.75,1.75,a-pcom-i3,2021-22,Chelmsford - Col Moses Parker School,560305,0.9,4.7,0,94.4,0,0,0,86,14,107.3 +4.375,4.38,a-pcom-i3,2021-22,Chelmsford - Community Education Center,560001,7,7,0,86,0,0,0,93,7,28.6 +1.1875,1.19,a-pcom-i3,2021-22,Chelmsford - McCarthy Middle School,560310,0,3.7,0.1,96.2,0,0,0,83.4,16.6,107.4 +1.375,1.38,a-pcom-i3,2021-22,Chelmsford - South Row,560015,0,1.5,1.5,95.6,0,0,1.5,95.6,4.4,69 +9,5,a-pcom-i3,2021-22,Chelsea - Chelsea High,570505,4.6,3.5,20.7,71.2,0,0,0,69.4,30.6,173.6 +10.625,5,a-pcom-i3,2021-22,Chelsea - Chelsea Opportunity Academy,570515,0,0,34,66,0,0,0,52.3,47.7,11.8 +20.96875,5,a-pcom-i3,2021-22,Chelsea - Chelsea Virtual Learning Academy,570705,13.4,0,53.7,32.9,0,0,0,85.2,14.8,7.5 +7.71875,5,a-pcom-i3,2021-22,Chelsea - Clark Avenue School,570050,2.4,4.7,17.6,75.3,0,0,0,77.5,22.5,85 +7.71875,5,a-pcom-i3,2021-22,Chelsea - Edgar A Hooks Elementary,570030,3.2,0,21.5,75.3,0,0,0,87.6,12.4,62.9 +8.125,5,a-pcom-i3,2021-22,Chelsea - Eugene Wright Science and Technology Academy,570045,1.4,2.9,18.8,74,0,1.4,1.4,71.7,28.3,69.3 +9.65625,5,a-pcom-i3,2021-22,Chelsea - Frank M Sokolowski Elementary,570040,3,3,24.9,69.1,0,0,0,87.5,12.5,66.3 +12.40625,5,a-pcom-i3,2021-22,Chelsea - George F. Kelly Elementary,570035,0,3.1,36.6,60.3,0,0,0,91.1,8.9,65 +12.625,5,a-pcom-i3,2021-22,Chelsea - Joseph A. Browne School,570055,1.6,6.2,32.7,59.6,0,0,0,75.7,24.3,64.3 +12.5625,5,a-pcom-i3,2021-22,Chelsea - Shurtleff Early Childhood,570003,0,0.7,39.5,59.8,0,0,0,94.8,5.2,137.7 +4.84375,4.84,a-pcom-i3,2021-22,Chelsea - William A Berkowitz Elementary,570025,1.5,1.5,10.8,84.5,0,1.5,0,88.7,11.3,64.6 +1,1,a-pcom-i3,2021-22,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,0,0,0,100,0,0,0,86.9,13.1,28.9 +1,1,a-pcom-i3,2021-22,Chicopee - Barry,610003,1.6,0,0.8,97.6,0,0,0,98.4,1.6,62.6 +2.5,2.5,a-pcom-i3,2021-22,Chicopee - Belcher,610010,0,0,5.3,92,0,0,2.7,92,8,37.5 +1.40625,1.41,a-pcom-i3,2021-22,Chicopee - Bellamy Middle,610305,0.9,0,1.8,95.5,0,0.9,0.9,79.1,20.9,112.2 +1.625,1.63,a-pcom-i3,2021-22,Chicopee - Bowe,610015,1.7,1.7,1.7,94.8,0,0,0,91.4,8.6,58 +1,1,a-pcom-i3,2021-22,Chicopee - Bowie,610020,2.3,0,0.6,97.1,0,0,0,90,10,42.8 +4.65625,4.66,a-pcom-i3,2021-22,Chicopee - Chicopee Academy,610021,10,1.7,3.3,85.1,0,0,0,67.8,32.2,30.1 +2.09375,2.09,a-pcom-i3,2021-22,Chicopee - Chicopee Comprehensive High School,610510,0,0.7,6,93.3,0,0,0,58.9,41.1,150.2 +4.03125,4.03,a-pcom-i3,2021-22,Chicopee - Chicopee High,610505,3.2,0,8.9,87.1,0.8,0,0,71.4,28.6,124 +4.15625,4.16,a-pcom-i3,2021-22,Chicopee - Dupont Middle,610310,2.9,1,9.3,86.7,0,0,0,71.6,28.4,101.9 +5.84375,5,a-pcom-i3,2021-22,Chicopee - Fairview Elementary,610050,1.2,1.2,15.2,81.3,0,0,1.2,89.4,10.6,85.5 +4.5625,4.56,a-pcom-i3,2021-22,Chicopee - Gen John J Stefanik,610090,0,0,14.6,85.4,0,0,0,93.3,6.7,60 +1,1,a-pcom-i3,2021-22,Chicopee - Lambert-Lavoie,610040,0,0,0.5,97.4,0,0,2.1,96.7,3.3,47.4 +1.25,1.25,a-pcom-i3,2021-22,Chicopee - Litwin,610022,0,1.8,2.2,96,0,0,0,94.1,5.9,55.9 +1.75,1.75,a-pcom-i3,2021-22,Chicopee - Streiber Memorial School,610065,4.5,0,1.1,94.4,0,0,0,89.9,10.1,44.4 +2.125,2.12,a-pcom-i3,2021-22,Chicopee - Szetela Early Childhood Center,610001,0,0,6.8,93.2,0,0,0,91,9,44.4 +2.5,2.5,a-pcom-i3,2021-22,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,1.6,1.6,4.8,92,0,0,0,57.4,42.6,62.3 +11.46875,5,a-pcom-i3,2021-22,City on a Hill Charter Public School (District) - City on a Hill Charter Public School,4370505,19.5,3.6,9.1,63.3,0,0,4.5,64.1,33.6,44.2 +1,1,a-pcom-i3,2021-22,Clarksburg - Clarksburg Elementary,630010,0,0,0,100,0,0,0,84,16,31.3 +1.9375,1.94,a-pcom-i3,2021-22,Clinton - Clinton Elementary,640050,0,0.8,3.9,93.8,0,0,1.6,93,7,128 +3.1875,3.19,a-pcom-i3,2021-22,Clinton - Clinton Middle School,640305,1.3,1.3,5.1,89.8,0,0,2.5,82.1,17.9,78.7 +2.46875,2.47,a-pcom-i3,2021-22,Clinton - Clinton Senior High,640505,0,0,6.3,92.1,0,0,1.6,63.7,36.3,63.3 +16.34375,5,a-pcom-i3,2021-22,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,38.7,3.7,6.2,47.7,0,1.1,2.5,71.3,28.7,80 +1,1,a-pcom-i3,2021-22,Cohasset - Cohasset High School,650505,1.6,0,1.6,96.8,0,0,0,59.3,40.7,62.1 +1,1,a-pcom-i3,2021-22,Cohasset - Cohasset Middle School,650305,0,0,2.2,97.8,0,0,0,83.3,16.7,45 +1.1875,1.19,a-pcom-i3,2021-22,Cohasset - Deer Hill,650005,1.9,1.9,0,96.2,0,0,0,90.4,9.6,52.2 +1,1,a-pcom-i3,2021-22,Cohasset - Joseph Osgood,650010,1.8,0,0,98.2,0,0,0,94.7,5.3,54.3 +6.6875,5,a-pcom-i3,2021-22,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,4.1,3.1,14.2,78.6,0,0,0,79.7,20.3,98.3 +11.96875,5,a-pcom-i3,2021-22,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,16.1,4.6,16.9,61.7,0,0,0.7,69.3,30.7,65.2 +8.3125,5,a-pcom-i3,2021-22,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,1.5,0,22.1,73.4,0,0,3,85.3,14.7,66.2 +12.28125,5,a-pcom-i3,2021-22,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,1.7,3.4,33.2,60.7,0,0,1,78.6,21.4,59.1 +8.53125,5,a-pcom-i3,2021-22,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,0,1.6,22.3,72.7,0,0,3.3,76.7,23.3,60.9 +3.03125,3.03,a-pcom-i3,2021-22,Concord - Alcott,670005,2.9,1.7,5.1,90.3,0,0,0,91.1,8.9,72.1 +4.53125,4.53,a-pcom-i3,2021-22,Concord - Concord Middle,670305,3.9,6.8,2.9,85.5,0,1,0,74.1,25.9,103.5 +1.25,1.25,a-pcom-i3,2021-22,Concord - Thoreau,670020,0.1,2.5,1.4,96,0,0,0,94.2,5.8,87.3 +1.75,1.75,a-pcom-i3,2021-22,Concord - Willard,670030,1.4,1.5,2.7,94.4,0,0,0,89.5,10.5,80.4 +3.25,3.25,a-pcom-i3,2021-22,Concord-Carlisle - Concord Carlisle High,6400505,2.6,3.1,4.8,89.6,0,0,0,64.6,35.4,188 +13.21875,5,a-pcom-i3,2021-22,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,29.6,0,12.6,57.7,0,0,0,71.9,28.1,63.3 +1,1,a-pcom-i3,2021-22,Conway - Conway Grammar,680005,0,0,0,100,0,0,0,91.3,8.7,37.7 +1,1,a-pcom-i3,2021-22,Danvers - Danvers High,710505,0,0,0.9,98.3,0,0,0.9,61.2,38.8,115.7 +1.53125,1.53,a-pcom-i3,2021-22,Danvers - Great Oak,710015,2.4,0,2.4,95.1,0,0,0,88.5,11.5,40.9 +1,1,a-pcom-i3,2021-22,Danvers - Highlands,710010,0,0,0,100,0,0,0,78,22,42.8 +1.15625,1.16,a-pcom-i3,2021-22,Danvers - Holten Richmond Middle School,710305,0,0,1.9,96.3,0,0.9,0.9,81.3,18.7,106.8 +1.25,1.25,a-pcom-i3,2021-22,Danvers - Ivan G Smith,710032,0,2.2,1.8,96,0,0,0,95.6,4.4,45.5 +1,1,a-pcom-i3,2021-22,Danvers - Riverside,710030,0,0,1.5,98.5,0,0,0,90.8,9.2,65 +1.71875,1.72,a-pcom-i3,2021-22,Danvers - Willis E Thorpe,710045,0,3.4,2.1,94.5,0,0,0,93.7,6.3,47.6 +1,1,a-pcom-i3,2021-22,Dartmouth - Andrew B. Cushman School,720005,0,0,0,100,0,0,0,98,2,29.6 +1,1,a-pcom-i3,2021-22,Dartmouth - Dartmouth High,720505,0,0,0,99,0,0,1,60.6,39.4,104.1 +1,1,a-pcom-i3,2021-22,Dartmouth - Dartmouth Middle,720050,1,0,0,98.1,0,0,1,64.5,35.5,104.3 +1,1,a-pcom-i3,2021-22,Dartmouth - George H Potter,720030,0,0,0,100,0,0,0,90.9,9.1,50.5 +1,1,a-pcom-i3,2021-22,Dartmouth - James M. Quinn School,720040,0,0,0,100,0,0,0,94.3,5.7,88.3 +1,1,a-pcom-i3,2021-22,Dartmouth - Joseph Demello,720015,0,0,0,100,0,0,0,100,0,46.4 +1,1,a-pcom-i3,2021-22,Dedham - Avery,730010,0,0,0,100,0,0,0,92.9,7.1,57 +1.8125,1.81,a-pcom-i3,2021-22,Dedham - Dedham High,730505,0.8,2,3,94.2,0,0,0,73.4,26.6,99.3 +1,1,a-pcom-i3,2021-22,Dedham - Dedham Middle School,730305,2,0,0.6,97.3,0,0,0,72,28,97.6 +1,1,a-pcom-i3,2021-22,Dedham - Early Childhood Center,730005,1.6,0,0,98.4,0,0,0,98.4,1.6,64.2 +1,1,a-pcom-i3,2021-22,Dedham - Greenlodge,730025,0,0,0,100,0,0,0,95.4,4.6,43.8 +1,1,a-pcom-i3,2021-22,Dedham - Oakdale,730030,0,0,0,100,0,0,0,94.9,5.1,39.3 +1,1,a-pcom-i3,2021-22,Dedham - Riverdale,730045,0,0,0,100,0,0,0,89.3,10.7,36.5 +1,1,a-pcom-i3,2021-22,Deerfield - Deerfield Elementary,740015,0,0,0,100,0,0,0,92.8,7.2,74.9 +2.1875,2.19,a-pcom-i3,2021-22,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,2.6,0.8,2.8,93,0,0,0.8,65.8,34.2,128.6 +1.1875,1.19,a-pcom-i3,2021-22,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,0,0,3.3,96.2,0.5,0,0,95.1,4.9,78.3 +1,1,a-pcom-i3,2021-22,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,0,0,0,100,0,0,0,97.1,2.9,68.2 +2.0625,2.06,a-pcom-i3,2021-22,Dennis-Yarmouth - Mattacheese Middle School,6450305,3.6,0,1.5,93.4,0,0,1.5,74.1,25.9,66.3 +1,1,a-pcom-i3,2021-22,Dennis-Yarmouth - Nathaniel H. Wixon School,6450050,0,0,1.2,97.6,0,0,1.3,92.5,7.5,77.6 +1,1,a-pcom-i3,2021-22,Dennis-Yarmouth - Station Avenue Elementary,6450025,1.3,0,1.6,97,0,0,0,92.1,7.9,61 +1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Dighton Elementary,6500005,0.3,0,0,99.7,0,0,0,94.5,5.5,63.5 +1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Dighton Middle School,6500305,0.4,0,0,97.5,0,0,2.1,73.9,26.1,47.2 +1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,0.2,0,2.1,97.7,0,0,0,70.2,29.8,94.1 +1.8125,1.81,a-pcom-i3,2021-22,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0.3,0,3.2,94.2,0,0,2.4,81.9,18.1,63.4 +1,1,a-pcom-i3,2021-22,Dighton-Rehoboth - Palmer River,6500010,0.3,0,0,99,0,0,0.7,96.5,3.5,71.4 +1,1,a-pcom-i3,2021-22,Douglas - Douglas Elementary School,770015,0,0,0,100,0,0,0,87.7,12.3,48 +1,1,a-pcom-i3,2021-22,Douglas - Douglas High School,770505,0,1.9,0,98.1,0,0,0,63.6,36.4,52.2 +1,1,a-pcom-i3,2021-22,Douglas - Douglas Middle School,770305,0,0,0,100,0,0,0,87.5,12.5,36.1 +1,1,a-pcom-i3,2021-22,Douglas - Douglas Primary School,770005,0,0,0,100,0,0,0,98.1,1.9,27.9 +1.90625,1.91,a-pcom-i3,2021-22,Dover - Chickering,780005,1.5,1.2,3.4,93.9,0,0,0,91.1,8.9,85.1 +2.5,2.5,a-pcom-i3,2021-22,Dover-Sherborn - Dover-Sherborn Regional High,6550505,2.4,1.9,3.7,92,0,0,0,70.4,29.6,94.5 +3.09375,3.09,a-pcom-i3,2021-22,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,3,1.3,4.3,90.1,0,1.3,0,74.4,25.6,76.1 +1,1,a-pcom-i3,2021-22,Dracut - Brookside Elementary,790035,0,0,0,100,0,0,0,91.8,8.2,51.2 +1,1,a-pcom-i3,2021-22,Dracut - Dracut Senior High,790505,0,1.5,1,97.4,0,0,0,68.8,31.2,97.8 +1,1,a-pcom-i3,2021-22,Dracut - George H. Englesby Elementary School,790045,0,1,0,99,0,0,0,95.9,4.1,51.8 +1.03125,1.03,a-pcom-i3,2021-22,Dracut - Greenmont Avenue,790030,0,3.3,0,96.7,0,0,0,95,5,30 +1,1,a-pcom-i3,2021-22,Dracut - Joseph A Campbell Elementary,790020,1.5,0,0,98.5,0,0,0,95.2,4.8,66.8 +2.125,2.12,a-pcom-i3,2021-22,Dracut - Justus C. Richardson Middle School,790410,2.3,0.6,3.9,93.2,0,0,0,81.5,18.5,86.5 +21.0625,5,a-pcom-i3,2021-22,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,45.7,0,21.7,32.6,0,0,0,89.1,10.9,23 +1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Charlton Elementary,6580020,0,0,0,100,0,0,0,98,2,50.6 +1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,1.2,98.8,0,0,0,78.2,21.8,80.6 +1.90625,1.91,a-pcom-i3,2021-22,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,3.7,93.9,2.3,0,0,90.6,9.4,42.8 +1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,100,0,0,0,77.5,22.5,55.5 +1.625,1.63,a-pcom-i3,2021-22,Dudley-Charlton Reg - Heritage School,6580030,0,0,1.7,94.8,0,0,3.5,96.5,3.5,57.8 +2.71875,2.72,a-pcom-i3,2021-22,Dudley-Charlton Reg - Mason Road School,6580010,0,0,3.6,91.3,2.5,0,2.5,95.4,4.6,39.3 +1,1,a-pcom-i3,2021-22,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,2,98,0,0,0,55.9,44.1,101.5 +1,1,a-pcom-i3,2021-22,Duxbury - Alden School,820004,0,0,0,100,0,0,0,88.2,11.8,76.4 +1,1,a-pcom-i3,2021-22,Duxbury - Chandler Elementary,820006,0,1,0,99,0,0,0,97.8,2.2,87.8 +1,1,a-pcom-i3,2021-22,Duxbury - Duxbury High,820505,0,0.7,0.9,98.2,0,0,0.2,66,34,113 +1,1,a-pcom-i3,2021-22,Duxbury - Duxbury Middle,820305,0,1.4,0,98.6,0,0,0,76.2,23.8,70.6 +1,1,a-pcom-i3,2021-22,East Bridgewater - Central,830005,0.9,0,0,99.1,0,0,0,92.1,7.9,76.2 +1,1,a-pcom-i3,2021-22,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,100,0,0,0,67.6,32.4,108 +1,1,a-pcom-i3,2021-22,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,100,0,0,0,85.1,14.9,87 +2.40625,2.41,a-pcom-i3,2021-22,East Longmeadow - Birchland Park,870305,2.7,3.8,1.3,92.3,0,0,0,71.2,28.8,79.2 +2.5625,2.56,a-pcom-i3,2021-22,East Longmeadow - East Longmeadow High,870505,3.1,1,3.1,91.8,0,0,1,63.5,36.5,97.3 +1,1,a-pcom-i3,2021-22,East Longmeadow - Mapleshade,870010,0,0,2.1,97.9,0,0,0,83.4,16.6,48.1 +1.375,1.38,a-pcom-i3,2021-22,East Longmeadow - Meadow Brook,870013,1.1,0,1.1,95.6,0,0,2.2,96.7,3.3,90.3 +1,1,a-pcom-i3,2021-22,East Longmeadow - Mountain View,870015,0,0,2.2,97.8,0,0,0,85.7,14.3,46 +1,1,a-pcom-i3,2021-22,Eastham - Eastham Elementary,850005,0,0,0,100,0,0,0,94,6,36.4 +1,1,a-pcom-i3,2021-22,Easthampton - Center School,860005,0,0,2.2,97.8,0,0,0,94.1,5.9,22.6 +1.03125,1.03,a-pcom-i3,2021-22,Easthampton - Easthampton High,860505,0,0,3.3,96.7,0,0,0,60,40,55 +1,1,a-pcom-i3,2021-22,Easthampton - Maple,860010,0,0,0,100,0,0,0,93.8,6.2,50.9 +1.1875,1.19,a-pcom-i3,2021-22,Easthampton - Neil A Pepin,860020,0,0,3.8,96.2,0,0,0,91.5,8.5,39.1 +1.625,1.63,a-pcom-i3,2021-22,Easthampton - White Brook Middle School,860305,3.5,0,1.7,94.8,0,0,0,72.2,27.8,57.6 +1,1,a-pcom-i3,2021-22,Easton - Center School,880003,0,0,0,100,0,0,0,93.9,6.1,33.9 +1.3125,1.31,a-pcom-i3,2021-22,Easton - Easton Middle School,880405,0,0.9,1.9,95.8,0,0,1.4,82.7,17.3,106.5 +1,1,a-pcom-i3,2021-22,Easton - Moreau Hall,880020,0,0,1.5,97,0,0,1.5,94.6,5.4,29.8 +2.28125,2.28,a-pcom-i3,2021-22,Easton - Oliver Ames High,880505,1.5,1.5,3.5,92.7,0,0,0.8,62.1,37.9,132 +1,1,a-pcom-i3,2021-22,Easton - Parkview Elementary,880015,0,0,0,99.1,0,0,0.9,91.9,8.1,51.3 +1,1,a-pcom-i3,2021-22,Easton - Richardson Olmsted School,880025,0,0,0,98.9,0,0,1.1,90.4,9.6,91.4 +1.59375,1.59,a-pcom-i3,2021-22,Edgartown - Edgartown Elementary,890005,1.5,0,3.3,94.9,0,0,0.3,81,19,82.8 +17.34375,5,a-pcom-i3,2021-22,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,44.6,0.8,10,44.5,0,0,0,61.2,38.8,59.8 +2.1875,2.19,a-pcom-i3,2021-22,Erving - Erving Elementary,910030,0,0,0,93,0,0,7,87.2,12.8,42.9 +1,1,a-pcom-i3,2021-22,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0.5,1,1,97.6,0,0,0,56.4,43.6,209.7 +1,1,a-pcom-i3,2021-22,Everett - Adams School,930003,0,0,0,100,0,0,0,100,0,18.5 +5.1875,5,a-pcom-i3,2021-22,Everett - Devens School,930030,6.6,0,6.6,83.4,0,0,3.3,46.8,53.2,30.1 +5.28125,5,a-pcom-i3,2021-22,Everett - Everett High,930505,5.8,4.3,5.8,83.1,0,0.5,0.5,59.4,40.6,207.7 +3.4375,3.44,a-pcom-i3,2021-22,Everett - George Keverian School,930028,3.7,1.2,3.7,89,0,1.2,1.2,83.9,16.1,81.8 +2.5,2.5,a-pcom-i3,2021-22,Everett - Lafayette School,930038,0.2,3.8,4,92,0,0,0,81.4,18.6,105.6 +2.875,2.88,a-pcom-i3,2021-22,Everett - Madeline English School,930018,1.2,4.6,3.5,90.8,0,0,0,89.2,10.8,86.6 +1.59375,1.59,a-pcom-i3,2021-22,Everett - Parlin School,930058,1.3,1.3,2.6,94.9,0,0,0,82.8,17.2,78 +2.09375,2.09,a-pcom-i3,2021-22,Everett - Sumner G. Whittier School,930010,3.4,0,3.4,93.3,0,0,0,89.3,10.7,59.6 +1.40625,1.41,a-pcom-i3,2021-22,Everett - Webster Extension,930001,0,0,4.5,95.5,0,0,0,97.7,2.3,22 +2.53125,2.53,a-pcom-i3,2021-22,Everett - Webster School,930015,0,3.3,4.9,91.9,0,0,0,92.3,7.7,61.4 +13.1875,5,a-pcom-i3,2021-22,Excel Academy Charter (District) - Excel Academy Charter School,4100205,9.8,4.7,25.3,57.8,0,0,2.5,75.8,22.5,235.1 +1,1,a-pcom-i3,2021-22,Fairhaven - East Fairhaven,940010,0.3,0,0.5,99.2,0,0,0,95,5,50 +1,1,a-pcom-i3,2021-22,Fairhaven - Fairhaven High,940505,1.5,0,0,97.1,0,0,1.4,62.5,37.5,74.7 +1.5,1.5,a-pcom-i3,2021-22,Fairhaven - Hastings Middle,940305,1.8,0,2.9,95.2,0,0,0,76.5,23.5,50.9 +1.46875,1.47,a-pcom-i3,2021-22,Fairhaven - Leroy Wood,940030,2.2,2,0.5,95.3,0,0,0,93.1,6.9,50.8 +2.5625,2.56,a-pcom-i3,2021-22,Fall River - B M C Durfee High,950505,2.2,1.4,3.4,91.8,0,0,1.2,66.6,33.4,277.8 +2.0625,2.06,a-pcom-i3,2021-22,Fall River - Carlton M. Viveiros Elementary School,950009,1.2,0,1.9,93.4,0,0,3.5,92.2,7.8,84.8 +2.875,2.88,a-pcom-i3,2021-22,Fall River - Henry Lord Community School,950017,2.8,0,5.5,90.8,0.9,0,0,89.8,10.2,108.7 +2.78125,2.78,a-pcom-i3,2021-22,Fall River - James Tansey,950140,0,3,3,91.1,0,0,3,89.6,10.4,33.8 +1.8125,1.81,a-pcom-i3,2021-22,Fall River - John J Doran,950045,1.5,0,4.4,94.2,0,0,0,85.2,14.8,68.5 +4.03125,4.03,a-pcom-i3,2021-22,Fall River - Letourneau Elementary School,950013,7.2,0,4.3,87.1,1.4,0,0,92.4,7.6,69.7 +3.5625,3.56,a-pcom-i3,2021-22,Fall River - Mary Fonseca Elementary School,950011,0,0,8.7,88.6,0,0,2.7,93.3,6.7,74.9 +3.28125,3.28,a-pcom-i3,2021-22,Fall River - Matthew J Kuss Middle,950320,3,1.1,3.3,89.5,0,1.1,1.9,69.5,30.5,89.7 +3.3125,3.31,a-pcom-i3,2021-22,Fall River - Morton Middle,950315,0,4.7,4.7,89.4,0,0,1.2,75,25,84.5 +1,1,a-pcom-i3,2021-22,Fall River - North End Elementary,950005,0,0,0,98.9,0,0,1.1,92.4,7.6,91.9 +4.46875,4.47,a-pcom-i3,2021-22,Fall River - Resiliency Preparatory Academy,950525,5.7,0,8.6,85.7,0,0,0,52.4,47.6,35 +2.90625,2.91,a-pcom-i3,2021-22,Fall River - Samuel Watson,950145,6.2,0,3.1,90.7,0,0,0,96,4,32.1 +1,1,a-pcom-i3,2021-22,Fall River - Spencer Borden,950130,0,0,1,98.3,0,0,0.6,94.3,5.7,96.3 +7.21875,5,a-pcom-i3,2021-22,Fall River - Stone PK-12 School,950340,16.3,0,1.4,76.9,0,0,5.5,73.8,26.2,36.3 +4.375,4.38,a-pcom-i3,2021-22,Fall River - Talbot Innovation School,950305,6.4,1.3,3.8,86,0,0,2.5,75.3,24.7,78.6 +2.53125,2.53,a-pcom-i3,2021-22,Fall River - William S Greene,950065,4.7,1.2,2.3,91.9,0,0,0,91.9,8.1,86 +1,1,a-pcom-i3,2021-22,Falmouth - East Falmouth Elementary,960005,0,0,1.9,98.1,0,0,0,88.9,11.1,52.9 +2.0625,2.06,a-pcom-i3,2021-22,Falmouth - Falmouth High,960505,3.4,1.6,1.6,93.4,0,0,0,68,32,119.2 +3.09375,3.09,a-pcom-i3,2021-22,Falmouth - Lawrence,960405,4.9,1.2,2.5,90.1,0,0,1.2,80.9,19.1,81 +1.8125,1.81,a-pcom-i3,2021-22,Falmouth - Morse Pond School,960305,1.9,0,0,94.2,1.3,0,2.6,87.7,12.3,77 +2.03125,2.03,a-pcom-i3,2021-22,Falmouth - Mullen-Hall,960020,0.7,0,2.9,93.5,0,0,2.9,91.7,8.3,69 +2.375,2.37,a-pcom-i3,2021-22,Falmouth - North Falmouth Elementary,960030,3.8,0,3.8,92.4,0,0,0,93,7,52.4 +2.6875,2.69,a-pcom-i3,2021-22,Falmouth - Teaticket,960015,1.7,1.7,1.7,91.4,0,0,3.4,98.7,1.3,58.4 +1,1,a-pcom-i3,2021-22,Farmington River Reg - Farmington River Elementary,6620020,0,0,0,100,0,0,0,82.5,17.5,25.7 +5.03125,5,a-pcom-i3,2021-22,Fitchburg - Arthur M Longsjo Middle School,970315,2.5,1.2,11.1,83.9,0,0,1.2,76.5,23.5,80.9 +4.53125,4.53,a-pcom-i3,2021-22,Fitchburg - Crocker Elementary,970016,4,1.3,9.2,85.5,0,0,0,96,4,75.8 +6.59375,5,a-pcom-i3,2021-22,Fitchburg - Fitchburg High,970505,2.2,1.4,16.7,78.9,0,0,0.7,64.3,35.7,137.9 +5.03125,5,a-pcom-i3,2021-22,Fitchburg - Goodrich Academy,970510,8.6,0,7.6,83.9,0,0,0,81.9,18.1,17.5 +4.0625,4.06,a-pcom-i3,2021-22,Fitchburg - McKay Arts Academy,970340,1.1,0,11.9,87,0,0,0,90.2,9.8,92.3 +3.125,3.13,a-pcom-i3,2021-22,Fitchburg - Memorial Middle School,970048,3.8,0,5,90,0,0,1.3,78.7,21.3,79.8 +3.90625,3.91,a-pcom-i3,2021-22,Fitchburg - Reingold Elementary,970043,1.4,1.4,8.3,87.5,0,0,1.4,93.1,6.9,71.9 +2.5625,2.56,a-pcom-i3,2021-22,Fitchburg - South Street Elementary,970060,1,1,6.2,91.8,0,0,0,90.8,9.2,97.4 +1,1,a-pcom-i3,2021-22,Florida - Abbott Memorial,980005,0,0,0,100,0,0,0,78.3,21.7,23.3 +4,4,a-pcom-i3,2021-22,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0.5,0,9.3,87.2,0,0,3.1,72.2,27.8,32.3 +1,1,a-pcom-i3,2021-22,Foxborough - Charles Taylor Elementary,990050,0,0,0,100,0,0,0,97.1,2.9,34.4 +1,1,a-pcom-i3,2021-22,Foxborough - Foxborough High,990505,1.2,0,0,98.8,0,0,0,67.9,32.1,104.3 +1,1,a-pcom-i3,2021-22,Foxborough - John J Ahern,990405,0,3.1,0,96.9,0,0,0,77,23,95.5 +1,1,a-pcom-i3,2021-22,Foxborough - Mabelle M Burrell,990015,0,2.2,0,97.8,0,0,0,95.6,4.4,45.1 +1,1,a-pcom-i3,2021-22,Foxborough - Vincent M Igo Elementary,990020,3.2,0,0,96.8,0,0,0,97.9,2.1,47.4 +3.90625,3.91,a-pcom-i3,2021-22,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,5.6,0.5,6.5,87.5,0,0,0,78.7,21.3,193.3 +16.0625,5,a-pcom-i3,2021-22,Framingham - Barbieri Elementary,1000035,0,1.2,50.3,48.6,0,0,0,93.5,6.5,86.6 +7.125,5,a-pcom-i3,2021-22,Framingham - Brophy,1000006,0,0,22.8,77.2,0,0,0,93.2,6.8,73.1 +5.625,5,a-pcom-i3,2021-22,Framingham - Cameron Middle School,1000302,8.1,2.3,7.7,82,0,0,0,75.9,24.1,87.9 +4.1875,4.19,a-pcom-i3,2021-22,Framingham - Charlotte A Dunning,1000007,0,1.3,10.7,86.6,1.3,0,0,90.5,9.5,74.7 +5,5,a-pcom-i3,2021-22,Framingham - Framingham High School,1000515,3.7,0.7,11.3,84,0.4,0,0,70,30,276.2 +6.75,5,a-pcom-i3,2021-22,Framingham - Fuller Middle,1000305,0.3,4.3,17.1,78.4,0,0,0,78.1,21.9,93.5 +6.90625,5,a-pcom-i3,2021-22,Framingham - Harmony Grove Elementary,1000055,0.3,4,17.9,77.9,0,0,0,87.3,12.7,75.7 +3.09375,3.09,a-pcom-i3,2021-22,Framingham - Hemenway,1000015,2.7,0.7,6.5,90.1,0,0,0,94.2,5.8,73.1 +8.25,5,a-pcom-i3,2021-22,Framingham - Juniper Hill School,1000001,0,3,23.3,73.6,0,0,0,95.5,4.5,66 +4.1875,4.19,a-pcom-i3,2021-22,Framingham - King Elementary School,1000005,3.4,1.7,8.2,86.6,0,0,0,86.3,13.7,58.3 +3.0625,3.06,a-pcom-i3,2021-22,Framingham - Mary E Stapleton Elementary,1000045,0,1.5,8.3,90.2,0,0,0,91.2,8.8,64.8 +3.125,3.13,a-pcom-i3,2021-22,Framingham - Miriam F McCarthy School,1000050,3.6,1.3,5.1,90,0,0,0,90.6,9.4,77.8 +8.15625,5,a-pcom-i3,2021-22,Framingham - Potter Road,1000039,0,1.7,24.4,73.9,0,0,0,90.5,9.5,58.7 +5.125,5,a-pcom-i3,2021-22,Framingham - Walsh Middle,1000310,1,1.4,14,83.6,0,0,0,82,18,103.9 +3,3,a-pcom-i3,2021-22,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,3.2,0,6.4,90.4,0,0,0,72.4,27.6,62.6 +1,1,a-pcom-i3,2021-22,Franklin - Annie Sullivan Middle School,1010040,1.7,0,0,98.3,0,0,0,82.4,17.6,57.7 +2.53125,2.53,a-pcom-i3,2021-22,Franklin - Franklin Early Childhood Development Center,1010003,0,8.1,0,91.9,0,0,0,98.4,1.6,34.5 +1,1,a-pcom-i3,2021-22,Franklin - Franklin High,1010505,0.6,1.7,0,97.7,0,0,0,70.4,29.6,177 +1,1,a-pcom-i3,2021-22,Franklin - Helen Keller Elementary,1010012,0,1.3,1.3,97.5,0,0,0,90.7,9.3,78.5 +1,1,a-pcom-i3,2021-22,Franklin - Horace Mann,1010405,0,0,0,100,0,0,0,81.3,18.7,59.6 +1.75,1.75,a-pcom-i3,2021-22,Franklin - J F Kennedy Memorial,1010013,0,1.9,1.9,94.4,1.9,0,0,94.1,5.9,53.8 +1,1,a-pcom-i3,2021-22,Franklin - Jefferson Elementary,1010010,0,0,0,100,0,0,0,97.1,2.9,58.8 +1,1,a-pcom-i3,2021-22,Franklin - Oak Street Elementary,1010030,0,1.9,0,98.1,0,0,0,95.9,4.1,52.7 +1,1,a-pcom-i3,2021-22,Franklin - Parmenter,1010032,0,1.6,0,98.4,0,0,0,91.6,8.4,60.9 +1,1,a-pcom-i3,2021-22,Franklin - Remington Middle,1010310,0,0,0,100,0,0,0,77.6,22.4,58.6 +1,1,a-pcom-i3,2021-22,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,97.4,0,0,2.6,40.8,59.2,77.4 +1.03125,1.03,a-pcom-i3,2021-22,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,3.3,96.7,0,0,0,69,31,90.3 +1,1,a-pcom-i3,2021-22,Freetown-Lakeville - Assawompset Elementary School,6650002,0,0,0,100,0,0,0,95.7,4.3,47 +1,1,a-pcom-i3,2021-22,Freetown-Lakeville - Freetown Elementary School,6650001,0,0,0,100,0,0,0,96.4,3.6,55 +1.1875,1.19,a-pcom-i3,2021-22,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,2.5,0,1.3,96.2,0,0,0,74.7,25.3,79.1 +1,1,a-pcom-i3,2021-22,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,100,0,0,0,91.3,8.7,46 +1,1,a-pcom-i3,2021-22,Frontier - Frontier Regional,6700505,1,0,0,96.9,2,0,0,63.4,36.6,98.3 +2.46875,2.47,a-pcom-i3,2021-22,Gardner - Elm Street School,1030001,0,1.3,3.9,92.1,1.3,0,1.3,81.6,18.4,76 +1,1,a-pcom-i3,2021-22,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,100,0,0,0,47.6,52.4,10.5 +2.65625,2.66,a-pcom-i3,2021-22,Gardner - Gardner High,1030505,0,2.3,5.7,91.5,0,0,0.6,62.6,37.4,88.1 +4.3125,4.31,a-pcom-i3,2021-22,Gardner - Gardner Middle School,1030405,1.4,1.4,8.3,86.2,0,0,2.7,69.6,30.4,72.5 +1.40625,1.41,a-pcom-i3,2021-22,Gardner - Waterford Street,1030020,1.1,0,2.2,95.5,1.1,0,0,82.1,17.9,89.3 +1,1,a-pcom-i3,2021-22,Gateway - Chester Elementary,6720059,0,0,0,100,0,0,0,95.8,4.2,24.7 +1.15625,1.16,a-pcom-i3,2021-22,Gateway - Gateway Regional High,6720505,0,0,0,96.3,0,0,3.7,72.2,27.8,45 +1.6875,1.69,a-pcom-i3,2021-22,Gateway - Gateway Regional Middle School,6720405,0,0,0,94.6,0,0,5.4,79.1,20.9,24.9 +1,1,a-pcom-i3,2021-22,Gateway - Littleville Elementary School,6720143,0,0,0,98,0,2,0,88.9,11.1,49.2 +1,1,a-pcom-i3,2021-22,Georgetown - Georgetown High School,1050505,0,0,1.8,97.2,0,1.1,0,69.9,30.1,56.2 +1,1,a-pcom-i3,2021-22,Georgetown - Georgetown Middle School,1050305,0,0,0,98,0,2,0,76.8,23.2,20.3 +1,1,a-pcom-i3,2021-22,Georgetown - Penn Brook,1050010,0,0,0,98.7,0,0,1.3,87.4,12.6,79.3 +1,1,a-pcom-i3,2021-22,Georgetown - Perley Elementary,1050005,0,0,0,100,0,0,0,100,0,7.2 +1,1,a-pcom-i3,2021-22,Gill-Montague - Gill Elementary,6740005,0,0,1.5,98.5,0,0,0,93.7,6.3,19.8 +1,1,a-pcom-i3,2021-22,Gill-Montague - Great Falls Middle,6740310,0,0,1.6,98.4,0,0,0,63.6,36.4,32.1 +1.09375,1.09,a-pcom-i3,2021-22,Gill-Montague - Hillcrest Elementary School,6740015,0,0,3.5,96.5,0,0,0,93.3,6.7,37.3 +2.15625,2.16,a-pcom-i3,2021-22,Gill-Montague - Sheffield Elementary School,6740050,0,2.9,4,93.1,0,0,0,85,15,34.7 +2.0625,2.06,a-pcom-i3,2021-22,Gill-Montague - Turners Fall High,6740505,0,0,3.9,93.4,0,0,2.6,73.5,26.5,38.1 +5.3125,5,a-pcom-i3,2021-22,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,5.7,1.6,9.7,83,0,0,0,70.6,29.4,61.6 +1,1,a-pcom-i3,2021-22,Gloucester - Beeman Memorial,1070010,0,0,0,100,0,0,0,93.7,6.3,55.3 +1,1,a-pcom-i3,2021-22,Gloucester - East Gloucester Elementary,1070020,0,0,2.6,97.4,0,0,0,94.9,5.1,38.9 +1,1,a-pcom-i3,2021-22,Gloucester - Gloucester High,1070505,1.6,0,1.6,96.8,0,0,0,60.7,39.3,125.7 +1,1,a-pcom-i3,2021-22,Gloucester - Gloucester PreSchool,1070025,0,0,0,100,0,0,0,100,0,28.6 +1,1,a-pcom-i3,2021-22,Gloucester - Plum Cove School,1070042,0,0,2.7,97.3,0,0,0,90.6,9.4,37.1 +1,1,a-pcom-i3,2021-22,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,100,0,0,0,70.7,29.3,92.1 +1,1,a-pcom-i3,2021-22,Gloucester - Veterans Memorial,1070045,0,2.5,0,97.5,0,0,0,97.5,2.5,40.4 +1,1,a-pcom-i3,2021-22,Gloucester - West Parish,1070050,0,0,0,100,0,0,0,100,0,53.9 +31.25,5,a-pcom-i3,2021-22,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,0,0,0,0,0,0,0 +1.53125,1.53,a-pcom-i3,2021-22,Grafton - Grafton High School,1100505,0.9,1,1,95.1,0,0,2,69.1,30.9,102.9 +1.59375,1.59,a-pcom-i3,2021-22,Grafton - Grafton Middle,1100305,0,5.1,0,94.9,0,0,0,68,32,71.9 +1,1,a-pcom-i3,2021-22,Grafton - Millbury Street Elementary School,1100200,0,0,0,100,0,0,0,92.3,7.7,90.4 +1,1,a-pcom-i3,2021-22,Grafton - North Grafton Elementary,1100025,1.8,0,0,98.2,0,0,0,98.2,1.8,44.8 +1,1,a-pcom-i3,2021-22,Grafton - North Street Elementary School,1100030,0,0,1.2,98.8,0,0,0,95.1,4.9,81.1 +2.34375,2.34,a-pcom-i3,2021-22,Grafton - South Grafton Elementary,1100005,5.9,0,0,92.5,1.6,0,0,96.1,3.9,50.9 +1,1,a-pcom-i3,2021-22,Granby - East Meadow,1110004,1.4,1.8,0,96.8,0,0,0,85.9,14.1,69.3 +2.59375,2.59,a-pcom-i3,2021-22,Granby - Granby Jr Sr High School,1110505,0,3.9,2.2,91.7,0,0,2.2,65.9,34.1,45.3 +1.34375,1.34,a-pcom-i3,2021-22,Greater Commonwealth Virtual District - Greater Commonwealth Virtual School,39010900,1.2,1.2,1.9,95.7,0,0,0,70.5,29.5,80.5 +1,1,a-pcom-i3,2021-22,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,1.7,0,0.6,97.7,0,0,0,47.8,52.2,173.3 +5.125,5,a-pcom-i3,2021-22,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0.9,0.9,14.1,83.6,0,0,0.5,57.3,42.7,211.9 +2.59375,2.59,a-pcom-i3,2021-22,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,1.9,2.5,3.5,91.7,0.3,0,0,60.8,39.2,313.9 +1.9375,1.94,a-pcom-i3,2021-22,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,2.2,0.4,2.9,93.8,0.7,0,0,51.6,48.4,273 +2.4375,2.44,a-pcom-i3,2021-22,Greenfield - Discovery School at Four Corners,1140025,1.9,0,5.9,92.2,0,0,0,89,11,51.9 +2.59375,2.59,a-pcom-i3,2021-22,Greenfield - Federal Street School,1140010,0,0,5.5,91.7,0,0,2.8,94.5,5.5,35.8 +1.25,1.25,a-pcom-i3,2021-22,Greenfield - Greenfield High,1140505,0,2.7,0,96,0,0,1.3,62.9,37.1,75 +1.15625,1.16,a-pcom-i3,2021-22,Greenfield - Greenfield Middle,1140305,0,1.9,0,96.3,0,0,1.9,83.1,16.9,53.4 +2.375,2.37,a-pcom-i3,2021-22,Greenfield - Newton School,1140035,0,0,7.6,92.4,0,0,0,89.6,10.4,39.3 +1,1,a-pcom-i3,2021-22,Greenfield - The Academy of Early Learning at North Parish,1140005,0,0,0,100,0,0,0,100,0,24.7 +1,1,a-pcom-i3,2021-22,Groton-Dunstable - Boutwell School,6730001,0,0,0,100,0,0,0,100,0,17.9 +1,1,a-pcom-i3,2021-22,Groton-Dunstable - Florence Roche School,6730010,0,2.9,0,97.1,0,0,0,92.7,7.3,68.7 +1,1,a-pcom-i3,2021-22,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,1.2,97.5,1.2,0,0,65.1,34.9,81.2 +1,1,a-pcom-i3,2021-22,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,99,0,0,1,86.6,13.4,96.9 +1,1,a-pcom-i3,2021-22,Groton-Dunstable - Swallow/Union School,6730005,0,0,0,100,0,0,0,95.4,4.6,43.5 +3.03125,3.03,a-pcom-i3,2021-22,Hadley - Hadley Elementary,1170015,0,7.5,2.2,90.3,0,0,0,84.5,15.5,45.3 +3.8125,3.81,a-pcom-i3,2021-22,Hadley - Hopkins Academy,1170505,5,0,7.1,87.8,0,0,0,73.9,26.1,42.2 +1,1,a-pcom-i3,2021-22,Halifax - Halifax Elementary,1180005,0,0,0,100,0,0,0,86.2,13.8,65.4 +1,1,a-pcom-i3,2021-22,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,0,0,100,0,0,0,96.9,3.1,38.7 +1,1,a-pcom-i3,2021-22,Hamilton-Wenham - Cutler School,6750010,0,0,2.6,97.4,0,0,0,94.3,5.7,38.9 +1.59375,1.59,a-pcom-i3,2021-22,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,2.2,1.4,94.9,0,0,1.4,63.6,36.4,71.2 +1.375,1.38,a-pcom-i3,2021-22,Hamilton-Wenham - Miles River Middle,6750310,0,2.5,0,95.6,0,0,1.9,79,21,51.9 +1,1,a-pcom-i3,2021-22,Hamilton-Wenham - Winthrop School,6750015,0,1.6,0,96.8,0,0,1.6,94,6,63.1 +4.71875,4.72,a-pcom-i3,2021-22,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,5,6.7,1.7,84.9,1.7,0,0,59.3,40.7,59.4 +6.90625,5,a-pcom-i3,2021-22,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,18.1,2,2,77.9,0,0,0,59.4,40.6,49.7 +1,1,a-pcom-i3,2021-22,Hampden-Wilbraham - Green Meadows Elementary,6800005,1.5,0,0,96.9,0,0,1.5,96.1,3.9,64.7 +1.59375,1.59,a-pcom-i3,2021-22,Hampden-Wilbraham - Mile Tree Elementary,6800025,1.7,0,3.4,94.9,0,0,0,97.5,2.5,59 +1.25,1.25,a-pcom-i3,2021-22,Hampden-Wilbraham - Minnechaug Regional High,6800505,1.3,0,2.7,96,0,0,0,66.4,33.6,111.8 +1,1,a-pcom-i3,2021-22,Hampden-Wilbraham - Soule Road,6800030,0,0,0,100,0,0,0,96.2,3.8,39.4 +1.3125,1.31,a-pcom-i3,2021-22,Hampden-Wilbraham - Stony Hill School,6800050,0,0,2.1,95.8,0,0,2.1,92.6,7.4,47.4 +1,1,a-pcom-i3,2021-22,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,100,0,0,0,74.7,25.3,71.1 +1,1,a-pcom-i3,2021-22,Hampshire - Hampshire Regional High,6830505,0.9,0,0,99.1,0,0,0,66.6,33.4,116.5 +1,1,a-pcom-i3,2021-22,Hancock - Hancock Elementary,1210005,0,0,0,100,0,0,0,88.1,11.9,16.8 +1,1,a-pcom-i3,2021-22,Hanover - Cedar Elementary,1220004,1.4,0,0,98.6,0,0,0,97.2,2.8,71.8 +1,1,a-pcom-i3,2021-22,Hanover - Center Elementary,1220005,0,1.5,1.5,97,0,0,0,91.1,8.9,67.3 +1,1,a-pcom-i3,2021-22,Hanover - Hanover High,1220505,2,0,1,96.9,0,0,0,66.4,33.6,98.2 +1,1,a-pcom-i3,2021-22,Hanover - Hanover Middle,1220305,0,0,1,99,0,0,0,81.6,18.4,96.1 +2,2,a-pcom-i3,2021-22,Harvard - Bromfield,1250505,1.3,1.3,2.6,93.6,0,1.3,0,71,29,78.3 +1.0625,1.06,a-pcom-i3,2021-22,Harvard - Hildreth Elementary School,1250005,0,3.4,0,96.6,0,0,0,91.2,8.8,63.9 +1,1,a-pcom-i3,2021-22,Hatfield - Hatfield Elementary,1270005,0,0,0,100,0,0,0,85.5,14.5,38.6 +1,1,a-pcom-i3,2021-22,Hatfield - Smith Academy,1270505,0,0,0,100,0,0,0,65.2,34.8,29.9 +1.53125,1.53,a-pcom-i3,2021-22,Haverhill - Bartlett School and Assessment Center,1280073,0,0,4.9,95.1,0,0,0,84.4,15.6,25.7 +2.25,2.25,a-pcom-i3,2021-22,Haverhill - Bradford Elementary,1280008,1.2,1.2,3.6,92.8,0,0,1.2,95.2,4.8,83.2 +3.625,3.62,a-pcom-i3,2021-22,Haverhill - Caleb Dustin Hunking School,1280030,0.8,0.8,10,88.4,0,0,0,84,16,131.6 +1.8125,1.81,a-pcom-i3,2021-22,Haverhill - Consentino Middle School,1280100,0,0,5.8,94.2,0,0,0,83.6,16.4,86.8 +1,1,a-pcom-i3,2021-22,Haverhill - Crowell,1280515,0,0,0,100,0,0,0,80.7,19.3,5.7 +3.3125,3.31,a-pcom-i3,2021-22,Haverhill - Dr Paul Nettle,1280050,0,0,10.6,89.4,0,0,0,72.3,27.7,84.8 +2.71875,2.72,a-pcom-i3,2021-22,Haverhill - Golden Hill,1280026,0,2.5,6.2,91.3,0,0,0,89.4,10.6,80.3 +3.71875,3.72,a-pcom-i3,2021-22,Haverhill - Greenleaf Academy,1280033,0,0,11.9,88.1,0,0,0,68.3,31.7,18.9 +4.59375,4.59,a-pcom-i3,2021-22,Haverhill - Haverhill High,1280505,2.6,1.7,10.4,85.3,0,0,0,67.8,32.2,231.1 +1.84375,1.84,a-pcom-i3,2021-22,Haverhill - John G Whittier,1280085,1.7,0,2.5,94.1,1.7,0,0,74.9,25.1,59.8 +3.03125,3.03,a-pcom-i3,2021-22,Haverhill - Moody,1280045,2.1,0,7.6,90.3,0,0,0,97.9,2.1,47.5 +3.84375,3.84,a-pcom-i3,2021-22,Haverhill - Moody Preschool Extension,1280001,0,0,12.3,87.7,0,0,0,100,0,16.3 +2.1875,2.19,a-pcom-i3,2021-22,Haverhill - Pentucket Lake Elementary,1280054,0,0,7,93,0,0,0,91.1,8.9,78.4 +2.90625,2.91,a-pcom-i3,2021-22,Haverhill - Silver Hill Elementary School,1280067,0,1.3,6.6,90.7,0,0,1.3,89.2,10.8,75.6 +2.1875,2.19,a-pcom-i3,2021-22,Haverhill - Tilton,1280075,0,0,7,93,0,0,0,95.3,4.7,64.3 +1,1,a-pcom-i3,2021-22,Haverhill - Tilton Upper Middle School,1280105,0,0,1.8,98.2,0,0,0,87,13,27.8 +1,1,a-pcom-i3,2021-22,Haverhill - Walnut Square,1280080,0,0,2.3,97.7,0,0,0,97.7,2.3,21.9 +1,1,a-pcom-i3,2021-22,Hawlemont - Hawlemont Regional,6850005,0,0,0,100,0,0,0,88.2,11.8,26.9 +25.8125,5,a-pcom-i3,2021-22,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,65.2,3.5,10.5,17.4,0,0,3.5,71.4,28.6,28.7 +1.6875,1.69,a-pcom-i3,2021-22,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,0,2.7,94.6,0,0,2.7,97.3,2.7,37 +1.21875,1.22,a-pcom-i3,2021-22,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,2.4,0,1.5,96.1,0,0,0,83.1,16.9,40.9 +1.15625,1.16,a-pcom-i3,2021-22,Hingham - East Elementary School,1310005,1.2,0,0,96.3,1.2,0,1.2,94.2,5.8,80.6 +1,1,a-pcom-i3,2021-22,Hingham - Hingham High,1310505,0,1.4,0,98.6,0,0,0,67.2,32.8,147.6 +1.0625,1.06,a-pcom-i3,2021-22,Hingham - Hingham Middle School,1310410,0,0,2.5,96.6,0,0,0.8,81.3,18.7,118.6 +1,1,a-pcom-i3,2021-22,Hingham - Plymouth River,1310019,0,0.8,0,99.2,0,0,0,91.3,8.7,61.3 +1.65625,1.66,a-pcom-i3,2021-22,Hingham - South Elementary,1310020,2.6,2.7,0,94.7,0,0,0,95.1,4.9,74.1 +1,1,a-pcom-i3,2021-22,Hingham - Wm L Foster Elementary,1310010,0,0,1.5,98.5,0,0,0,92.8,7.2,64.7 +1,1,a-pcom-i3,2021-22,Holbrook - Holbrook Middle High School,1330505,0,1.6,0,96.9,0,0,1.6,72.9,27.1,64.1 +1.1875,1.19,a-pcom-i3,2021-22,Holbrook - John F Kennedy,1330018,3.8,0,0,96.2,0,0,0,100,0,78.2 +1,1,a-pcom-i3,2021-22,Holland - Holland Elementary,1350005,0,0,0,100,0,0,0,92.4,7.6,33.6 +1.3125,1.31,a-pcom-i3,2021-22,Holliston - Holliston High,1360505,1.4,0,1.9,95.8,0,0,0.9,72.6,27.4,106.9 +2.5625,2.56,a-pcom-i3,2021-22,Holliston - Miller School,1360007,3.1,1,2.1,91.8,1,0,1,86.8,13.2,98.2 +1.71875,1.72,a-pcom-i3,2021-22,Holliston - Placentino Elementary,1360010,0.9,1.9,1.8,94.5,0.9,0,0,93.4,6.6,107.3 +1.5,1.5,a-pcom-i3,2021-22,Holliston - Robert H. Adams Middle School,1360305,0.5,2.1,2.1,95.2,0,0,0,81.9,18.1,93.3 +14.78125,5,a-pcom-i3,2021-22,Holyoke - E N White Elementary,1370045,3.6,0,43.6,52.7,0,0,0,87.9,12.1,82.5 +10.375,5,a-pcom-i3,2021-22,Holyoke - H.B. Lawrence School,1370070,5.8,0,26,66.8,0,1.4,0,91.3,8.7,34.6 +12.21875,5,a-pcom-i3,2021-22,Holyoke - Holyoke High,1370505,5.4,3.5,29.8,60.9,0,0.4,0,54.1,45.5,239.8 +13.71875,5,a-pcom-i3,2021-22,Holyoke - Holyoke STEM Academy,1370320,8.6,0,33.2,56.1,0,0,2.1,65.8,34.2,46.8 +18.03125,5,a-pcom-i3,2021-22,Holyoke - Joseph Metcalf School,1370003,0,3.9,53.8,42.3,0,0,0,83.5,15.6,51.5 +13.875,5,a-pcom-i3,2021-22,Holyoke - Kelly Elementary,1370040,5.6,0,37.1,55.6,1.7,0,0,82,18,44.5 +12.3125,5,a-pcom-i3,2021-22,Holyoke - Lt Clayre Sullivan Elementary,1370055,3.5,0,35.9,60.6,0,0,0,87.6,12.4,72.4 +8.28125,5,a-pcom-i3,2021-22,Holyoke - Lt Elmer J McMahon Elementary,1370015,0,0,24.9,73.5,0,1.6,0,87.5,12.5,64.2 +12.71875,5,a-pcom-i3,2021-22,Holyoke - Maurice A Donahue Elementary,1370060,4.9,2,32.8,59.3,0,0,1,83.3,16.7,102 +13.65625,5,a-pcom-i3,2021-22,Holyoke - Morgan Full Service Community School,1370025,7,0,36.7,56.3,0,0,0,96.5,3.5,57.3 +17.5,5,a-pcom-i3,2021-22,Holyoke - Veritas Prep Holyoke,1370075,16.1,7.1,31.4,44,0,0,1.4,77.7,22.3,70.1 +13.5625,5,a-pcom-i3,2021-22,Holyoke - William R. Peck School,1370030,3.7,0,39.7,56.6,0,0,0,76.9,23.1,54.1 +15.46875,5,a-pcom-i3,2021-22,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,7,0,42.5,50.5,0,0,0,67.5,32.5,100 +1,1,a-pcom-i3,2021-22,Hoosac Valley Regional - Hoosac Valley Elementary School,6030020,1.4,0,0,98.6,0,0,0,94.3,5.7,70 +1,1,a-pcom-i3,2021-22,Hoosac Valley Regional - Hoosac Valley High School,6030505,1.8,0,0,98.2,0,0,0,82.6,17.4,54.6 +1,1,a-pcom-i3,2021-22,Hoosac Valley Regional - Hoosac Valley Middle School,6030315,0,0,0,100,0,0,0,65.8,34.2,53.2 +1,1,a-pcom-i3,2021-22,Hopedale - Hopedale Jr Sr High,1380505,0,0,3,97,0,0,0,73.3,26.7,65.9 +1,1,a-pcom-i3,2021-22,Hopedale - Memorial,1380010,0,0,1.2,98.8,0,0,0,94.1,5.9,85.2 +1,1,a-pcom-i3,2021-22,Hopedale - Park Street School,1380003,0,0,0,100,0,0,0,100,0,17.3 +2.84375,2.84,a-pcom-i3,2021-22,Hopkinton - Elmwood,1390010,1.3,6.5,1.3,90.9,0,0,0,90.9,9.1,76.6 +2.5,2.5,a-pcom-i3,2021-22,Hopkinton - Hopkins Elementary School,1390015,0,5.3,2.7,92,0,0,0,90.2,9.8,74.9 +1.59375,1.59,a-pcom-i3,2021-22,Hopkinton - Hopkinton High,1390505,0.7,2.2,2.2,94.9,0,0,0,59.6,40.4,138 +1.40625,1.41,a-pcom-i3,2021-22,Hopkinton - Hopkinton Middle School,1390305,1,2.6,1,95.5,0,0,0,74.5,25.5,101.2 +2.84375,2.84,a-pcom-i3,2021-22,Hopkinton - Hopkinton Pre-School,1390003,4.5,0,4.5,90.9,0,0,0,100,0,19.8 +2.65625,2.66,a-pcom-i3,2021-22,Hopkinton - Marathon Elementary School,1390005,2.4,4.9,1.2,91.5,0,0,0,92.7,7.3,82.4 +1.78125,1.78,a-pcom-i3,2021-22,Hudson - C A Farley,1410030,0,0,5.7,94.3,0,0,0,98.6,1.4,70.2 +1.0625,1.06,a-pcom-i3,2021-22,Hudson - David J. Quinn Middle School,1410410,0,0,2.2,96.6,1.1,0,0,86.9,13.1,89.4 +1,1,a-pcom-i3,2021-22,Hudson - Forest Avenue Elementary,1410015,0,0,0,100,0,0,0,96.1,3.9,51.6 +1,1,a-pcom-i3,2021-22,Hudson - Hudson High,1410505,1.6,0,0.8,97.6,0,0,0,73.4,26.6,127.7 +1.5,1.5,a-pcom-i3,2021-22,Hudson - Mulready Elementary,1410007,0,1.6,1.6,95.2,0,0,1.6,95.5,4.5,62.3 +1,1,a-pcom-i3,2021-22,Hull - Hull High,1420505,0,0,0,100,0,0,0,65.9,34.1,44.2 +1,1,a-pcom-i3,2021-22,Hull - Lillian M Jacobs,1420015,0,0,0.2,99.8,0,0,0,91.4,8.6,61.7 +1,1,a-pcom-i3,2021-22,Hull - Memorial Middle,1420305,0,0,0,100,0,0,0,62.9,37.1,30.7 +3.28125,3.28,a-pcom-i3,2021-22,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,2.3,2.5,4.4,89.5,0,0,1.2,72.1,27.9,102.7 +1,1,a-pcom-i3,2021-22,Ipswich - Ipswich High,1440505,0,0,0,100,0,0,0,71.9,28.1,77.5 +1,1,a-pcom-i3,2021-22,Ipswich - Ipswich Middle School,1440305,0,0,1.7,98.3,0,0,0,83.1,16.9,59.9 +1.96875,1.97,a-pcom-i3,2021-22,Ipswich - Paul F Doyon Memorial,1440007,0,0,6.3,93.7,0,0,0,95.4,4.6,63.9 +1,1,a-pcom-i3,2021-22,Ipswich - Winthrop,1440015,0,0,0,98.6,0,1.4,0,91.8,8.2,71 +19.84375,5,a-pcom-i3,2021-22,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,40,2.4,16.5,36.5,0,1.2,3.5,75.3,24.7,85 +16.9375,5,a-pcom-i3,2021-22,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,31.2,5.5,13.7,45.8,0,0,3.7,73,26.4,189.2 +1.40625,1.41,a-pcom-i3,2021-22,King Philip - King Philip Middle School,6900510,2.2,1.1,1.1,95.5,0,0,0,79.6,20.4,89.1 +1.125,1.12,a-pcom-i3,2021-22,King Philip - King Philip Regional High,6900505,0,1.4,1.4,96.4,0,0,0.7,69.5,30.5,139.7 +1,1,a-pcom-i3,2021-22,Kingston - Kingston Elementary,1450005,0,0,0,100,0,0,0,92.6,7.4,60.6 +1,1,a-pcom-i3,2021-22,Kingston - Kingston Intermediate,1450020,0,0,0,100,0,0,0,89.2,10.8,69.4 +5.46875,5,a-pcom-i3,2021-22,Lawrence - Alexander B Bruce,1490015,0,0,17.5,82.5,0,0,0,71.3,28.7,63 +4.90625,4.91,a-pcom-i3,2021-22,Lawrence - Arlington Elementary,1490009,1.3,0,14.4,84.3,0,0,0,86.5,13.5,76.3 +6.75,5,a-pcom-i3,2021-22,Lawrence - Arlington Middle School,1490017,0,0,19.9,78.4,1.7,0,0,68.2,31.8,59.2 +7.34375,5,a-pcom-i3,2021-22,Lawrence - Edward F. Parthum,1490053,0,0,22.2,76.5,1.3,0,0,89.5,10.5,76.7 +5.1875,5,a-pcom-i3,2021-22,Lawrence - Emily G Wetherbee,1490080,0,0,16.6,83.4,0,0,0,84.5,15.5,90.8 +8.5,5,a-pcom-i3,2021-22,Lawrence - Francis M Leahy,1490040,3.6,0,23.6,72.8,0,0,0,87.2,12.8,55.1 +6.9375,5,a-pcom-i3,2021-22,Lawrence - Frost Middle School,1490525,2,0,18.1,77.8,2,0,0,67.5,32.5,48.8 +4.8125,4.81,a-pcom-i3,2021-22,Lawrence - Gerard A. Guilmette,1490022,0,1.4,14,84.6,0,0,0,91.5,8.5,71.8 +7.75,5,a-pcom-i3,2021-22,Lawrence - Guilmette Middle School,1490025,1.2,0,22.4,75.2,1.2,0,0,75.1,24.9,80.7 +8.15625,5,a-pcom-i3,2021-22,Lawrence - High School Learning Center,1490536,0,0,17.4,73.9,4.3,0,4.3,58.2,41.8,23.2 +12.0625,5,a-pcom-i3,2021-22,Lawrence - James F Hennessey,1490020,0,0,38.6,61.4,0,0,0,94.5,5.5,55.6 +12.28125,5,a-pcom-i3,2021-22,Lawrence - John Breen School,1490003,0,0,39.3,60.7,0,0,0,99.8,0.2,44.6 +11.78125,5,a-pcom-i3,2021-22,Lawrence - John K Tarbox,1490075,0,0,37.7,62.3,0,0,0,93.2,6.8,45.2 +11.09375,5,a-pcom-i3,2021-22,Lawrence - Lawlor Early Childhood Center,1490002,0,0,35.5,64.5,0,0,0,95.2,4.8,22.6 +9.0625,5,a-pcom-i3,2021-22,Lawrence - Lawrence Family Public Academy,1490011,0,0,29,71,0,0,0,96.6,3.4,31.2 +10.875,5,a-pcom-i3,2021-22,Lawrence - Lawrence High School,1490515,2,0.3,30,65.2,2.2,0,0.3,61.1,38.9,346.7 +13.28125,5,a-pcom-i3,2021-22,Lawrence - Oliver Partnership School,1490048,0,0,40.8,57.5,0,0,1.7,89.7,10.3,58.9 +5.78125,5,a-pcom-i3,2021-22,Lawrence - Parthum Middle School,1490027,0,1.6,16.9,81.5,0,0,0,75.2,24.8,64 +10.9375,5,a-pcom-i3,2021-22,Lawrence - RISE Academy,1490615,6.1,0,28.9,65,0,0,0,63.6,36.4,16.4 +8.875,5,a-pcom-i3,2021-22,Lawrence - Robert Frost,1490018,4.1,1.4,21.7,71.6,1.4,0,0,88,12,74 +10.75,5,a-pcom-i3,2021-22,Lawrence - Rollins Early Childhood Center,1490001,0,0,34.4,65.6,0,0,0,97.4,2.6,40.8 +13.5,5,a-pcom-i3,2021-22,Lawrence - School for Exceptional Studies,1490537,2,0,41.2,56.8,0,0,0,65.1,34,102.1 +5.25,5,a-pcom-i3,2021-22,Lawrence - South Lawrence East Elementary School,1490004,0,0,15.5,83.2,0,0,1.3,83.8,16.2,79.3 +11.8125,5,a-pcom-i3,2021-22,Lawrence - Spark Academy,1490085,5.8,0,30.6,62.2,1.5,0,0,73.7,26.3,68.8 +11.46875,5,a-pcom-i3,2021-22,Lawrence - UP Academy Leonard Middle School,1490090,0,0,34.1,63.3,2.6,0,0,71.1,28.9,38.3 +11.9375,5,a-pcom-i3,2021-22,Lawrence - UP Academy Oliver Middle School,1490049,4.5,0,31.4,61.8,2.2,0,0,79.7,20.3,44.7 +9.46875,5,a-pcom-i3,2021-22,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,2.2,5.4,22.7,69.7,0,0,0,83.8,16.2,92.5 +7.5,5,a-pcom-i3,2021-22,Learning First Charter Public School (District) - Learning First Charter Public School,4860105,12.8,2.1,9.1,76,0,0,0,84,16,93.7 +1,1,a-pcom-i3,2021-22,Lee - Lee Elementary,1500025,0,0,1.6,98.4,0,0,0,89,11,63.6 +1,1,a-pcom-i3,2021-22,Lee - Lee Middle/High School,1500505,0,1.5,1.5,96.9,0,0,0,73.7,26.3,64.7 +1,1,a-pcom-i3,2021-22,Leicester - Leicester Elementary,1510005,1.5,1.5,0,97.1,0,0,0,96.7,3.3,68.5 +2.375,2.37,a-pcom-i3,2021-22,Leicester - Leicester High,1510505,0,1.9,5.7,92.4,0,0,0,69,31,52.7 +2.65625,2.66,a-pcom-i3,2021-22,Leicester - Leicester Integrated Preschool,1510001,0,0,8.5,91.5,0,0,0,97.9,2.1,11.8 +1.15625,1.16,a-pcom-i3,2021-22,Leicester - Leicester Middle,1510015,0,0,1.9,96.3,0,0,1.9,77.2,22.8,53.7 +1,1,a-pcom-i3,2021-22,Lenox - Lenox Memorial High,1520505,0,0,0,100,0,0,0,68.6,31.4,75.2 +1,1,a-pcom-i3,2021-22,Lenox - Morris,1520015,0,0,1.6,98.4,0,0,0,95.2,4.8,62.3 +1.375,1.38,a-pcom-i3,2021-22,Leominster - Bennett,1530003,4.4,0,0,95.6,0,0,0,98.7,1.3,22.5 +1,1,a-pcom-i3,2021-22,Leominster - Center For Technical Education Innovation,1530605,0,0,1.9,98.1,0,0,0,42.4,57.6,53.2 +2.375,2.37,a-pcom-i3,2021-22,Leominster - Fall Brook,1530007,0,1.3,6.4,92.4,0,0,0,97.3,2.7,78.4 +3.34375,3.34,a-pcom-i3,2021-22,Leominster - Frances Drake School,1530010,1,2,7.6,89.3,0,0,0,88.3,11.7,97.6 +1.3125,1.31,a-pcom-i3,2021-22,Leominster - Johnny Appleseed,1530025,1.8,0,2.4,95.8,0,0,0,95.6,4.4,82.7 +3.5,3.5,a-pcom-i3,2021-22,Leominster - Leominster Center for Excellence,1530515,11.2,0,0,88.8,0,0,0,75.3,24.7,8.9 +2.375,2.37,a-pcom-i3,2021-22,Leominster - Leominster High School,1530505,1.4,1.7,4.4,92.4,0,0,0,64.7,35.3,141.9 +1.53125,1.53,a-pcom-i3,2021-22,Leominster - Lincoln School,1530005,0,0,4.9,95.1,0,0,0,93.1,6.9,20.3 +3.71875,3.72,a-pcom-i3,2021-22,Leominster - Northwest,1530030,3.8,0,8.1,88.1,0,0,0,90,10,80 +1.03125,1.03,a-pcom-i3,2021-22,Leominster - Priest Street,1530040,0,3.3,0,96.7,0,0,0,98.7,1.3,30.7 +2.28125,2.28,a-pcom-i3,2021-22,Leominster - Samoset School,1530045,1.7,1.7,4,92.7,0,0,0,76.9,23.1,60.2 +1.28125,1.28,a-pcom-i3,2021-22,Leominster - Sky View Middle School,1530320,0,0,4.1,95.9,0,0,0,79.3,20.7,97.1 +1,1,a-pcom-i3,2021-22,Leverett - Leverett Elementary,1540005,0,0,0,100,0,0,0,88.7,11.3,25.9 +6.25,5,a-pcom-i3,2021-22,Lexington - Bowman,1550008,8.5,7.7,2.9,80,0,0.8,0.2,84.3,15.7,64.9 +4.375,4.38,a-pcom-i3,2021-22,Lexington - Bridge,1550006,3.3,5.1,1.7,86,0,0,3.8,88.9,11.1,63.7 +4.78125,4.78,a-pcom-i3,2021-22,Lexington - Fiske,1550015,3.3,8.1,1.6,84.7,0.9,0,1.4,87.5,12.5,97.6 +6.25,5,a-pcom-i3,2021-22,Lexington - Harrington,1550030,4.5,10.2,3.7,80,0,0,1.5,87.5,12.5,74.4 +4.53125,4.53,a-pcom-i3,2021-22,Lexington - Jonas Clarke Middle,1550305,2.6,7.3,3.1,85.5,0,0,1.5,75.1,24.9,132.7 +3.8125,3.81,a-pcom-i3,2021-22,Lexington - Joseph Estabrook,1550010,3.2,4.3,3.1,87.8,0,0,1.6,89,11,68.2 +4.5625,4.56,a-pcom-i3,2021-22,Lexington - Lexington Children's Place,1550001,0,8.5,3.2,85.4,0,0,2.9,100,0,26.8 +4.53125,4.53,a-pcom-i3,2021-22,Lexington - Lexington High,1550505,2.3,6.2,4.3,85.5,0,0,1.7,73.2,26.8,301.7 +6.84375,5,a-pcom-i3,2021-22,Lexington - Maria Hastings,1550035,9.7,10,1.7,78.1,0,0,0.5,93.4,6.6,92.4 +4.4375,4.44,a-pcom-i3,2021-22,Lexington - Wm Diamond Middle,1550310,3,5.9,4.5,85.8,0,0,0.8,75.1,24.9,143.3 +16.03125,5,a-pcom-i3,2021-22,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,21.1,1.5,25.7,48.7,0,0,3.1,60.6,37.9,65.4 +1.21875,1.22,a-pcom-i3,2021-22,Lincoln - Hanscom Middle,1570305,2,0,2,96.1,0,0,0,81.3,18.7,50.9 +1.21875,1.22,a-pcom-i3,2021-22,Lincoln - Hanscom Primary,1570006,0,1.2,2.7,96.1,0,0,0,93.6,6.4,69.6 +3.34375,3.34,a-pcom-i3,2021-22,Lincoln - Lincoln School,1570025,4.6,3.7,1.5,89.3,0.9,0,0,88,12,107 +3.28125,3.28,a-pcom-i3,2021-22,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,4.5,1.4,3.2,89.5,0,0,1.4,59.4,40.6,211.2 +1,1,a-pcom-i3,2021-22,Littleton - Littleton High School,1580505,0,0,0,98.1,0,0,1.9,65.9,34.1,53 +1,1,a-pcom-i3,2021-22,Littleton - Littleton Middle School,1580305,1.8,0,0,98.2,0,0,0,73.6,26.4,41.5 +1,1,a-pcom-i3,2021-22,Littleton - Russell St Elementary,1580015,0,0,0,100,0,0,0,95.3,4.7,42.3 +2.1875,2.19,a-pcom-i3,2021-22,Littleton - Shaker Lane Elementary,1580005,0,4.1,1.2,93,0,0,1.6,99.2,0.8,60.9 +1,1,a-pcom-i3,2021-22,Longmeadow - Blueberry Hill,1590005,0,0,0,100,0,0,0,94.1,5.9,64.5 +1.53125,1.53,a-pcom-i3,2021-22,Longmeadow - Center,1590010,0,3.3,1.6,95.1,0,0,0,90,10,60.9 +1,1,a-pcom-i3,2021-22,Longmeadow - Glenbrook Middle,1590017,0,0,0,100,0,0,0,79.3,20.7,43.3 +1.0625,1.06,a-pcom-i3,2021-22,Longmeadow - Longmeadow High,1590505,0.8,0,1.7,96.6,0,0,0.8,68.3,31.7,118 +1,1,a-pcom-i3,2021-22,Longmeadow - Williams Middle,1590305,2.2,0,0,97.8,0,0,0,82.2,17.8,44.5 +1,1,a-pcom-i3,2021-22,Longmeadow - Wolf Swamp Road,1590025,0,0,0,100,0,0,0,94.1,5.9,78.6 +3.875,3.88,a-pcom-i3,2021-22,Lowell - Abraham Lincoln,1600020,1.6,7.8,3.1,87.6,0,0,0,94.6,5.4,64.3 +3.9375,3.94,a-pcom-i3,2021-22,Lowell - B.F. Butler Middle School,1600310,6.7,3,1.5,87.4,0,0,1.5,73.7,26.3,67.3 +4.84375,4.84,a-pcom-i3,2021-22,Lowell - Bartlett Community Partnership,1600090,1.1,5.6,7.8,84.5,1.1,0,0,82.9,17.1,90.1 +6.25,5,a-pcom-i3,2021-22,Lowell - Cardinal O'Connell Early Learning Center,1600001,0,12.9,7.1,80,0,0,0,100,0,35 +3.5625,3.56,a-pcom-i3,2021-22,Lowell - Charles W Morey,1600030,0,5.7,5.7,88.6,0,0,0,94.3,5.7,70.4 +4.34375,4.34,a-pcom-i3,2021-22,Lowell - Charlotte M Murkland Elementary,1600080,0,9.5,4.4,86.1,0,0,0,86.1,13.9,68.3 +1.6875,1.69,a-pcom-i3,2021-22,Lowell - Dr An Wang School,1600345,0,2.7,2.7,94.6,0,0,0,83.7,16.3,73.7 +1.125,1.12,a-pcom-i3,2021-22,Lowell - Dr Gertrude Bailey,1600002,0.7,2.9,0,96.4,0,0,0,97.1,2.9,69.2 +5.5625,5,a-pcom-i3,2021-22,Lowell - Dr. Janice Adie Day School,1600605,2,7.9,7.9,82.2,0,0,0,74.3,25.7,50.6 +4.28125,4.28,a-pcom-i3,2021-22,Lowell - Greenhalge,1600015,3.1,4.4,3.7,86.3,1.2,0,1.2,96.3,3.7,80.4 +7.5625,5,a-pcom-i3,2021-22,Lowell - Henry J Robinson Middle,1600330,3.7,6.8,12.4,75.8,0,0,1.2,75.2,24.8,80.6 +3.96875,3.97,a-pcom-i3,2021-22,Lowell - James S Daley Middle School,1600315,2.3,6.9,3.5,87.3,0,0,0,82.1,17.9,86.4 +4.46875,4.47,a-pcom-i3,2021-22,Lowell - James Sullivan Middle School,1600340,5.2,1.1,8,85.7,0,0,0,75.9,24.1,87.2 +2.75,2.75,a-pcom-i3,2021-22,Lowell - John J Shaughnessy,1600050,4.4,0,4.4,91.2,0,0,0,91.2,8.8,68.1 +5.125,5,a-pcom-i3,2021-22,Lowell - Joseph McAvinnue,1600010,0,2.8,13.7,83.6,0,0,0,89,11,72.4 +5.15625,5,a-pcom-i3,2021-22,Lowell - Kathryn P. Stoklosa Middle School,1600360,2.4,8.6,4.9,83.5,0,0.6,0,68,32,81.8 +8.21875,5,a-pcom-i3,2021-22,Lowell - Laura Lee Therapeutic Day School,1600085,5.7,0,18.9,73.7,0,0,1.7,66.9,33.1,17.5 +6,5,a-pcom-i3,2021-22,Lowell - Leblanc Therapeutic Day School,1600320,2.5,0,15.7,80.8,0,0,1,69,31,20.4 +5.84375,5,a-pcom-i3,2021-22,Lowell - Lowell High,1600505,2.5,6,8.8,81.3,0,0,1.4,63,37,323.9 +2.71875,2.72,a-pcom-i3,2021-22,Lowell - Moody Elementary,1600027,0,0,8.7,91.3,0,0,0,94.5,5.5,36.6 +2.09375,2.09,a-pcom-i3,2021-22,Lowell - Pawtucketville Memorial,1600036,2.2,4.5,0,93.3,0,0,0,92.5,7.5,67 +4.09375,4.09,a-pcom-i3,2021-22,Lowell - Peter W Reilly,1600040,1.5,0.4,11.2,86.9,0,0,0,95.5,4.5,66.9 +4.15625,4.16,a-pcom-i3,2021-22,Lowell - Pyne Arts,1600018,2.7,4,6.6,86.7,0,0,0,86.5,13.5,75.4 +5.25,5,a-pcom-i3,2021-22,Lowell - Rogers STEM Academy,1600005,2.4,8.2,5.2,83.2,1,0,0,78.2,21.8,103.3 +5.03125,5,a-pcom-i3,2021-22,Lowell - S Christa McAuliffe Elementary,1600075,2.7,1.3,12.1,83.9,0,0,0,91.4,8.6,74.4 +3.65625,3.66,a-pcom-i3,2021-22,Lowell - The Career Academy,1600515,0,5.9,5.9,88.3,0,0,0,66.6,33.4,17.1 +1.96875,1.97,a-pcom-i3,2021-22,Lowell - Washington,1600055,0,2.4,3.9,93.7,0,0,0,87.2,12.8,50.9 +10.21875,5,a-pcom-i3,2021-22,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,6,9.9,15.9,67.3,0,0,1,78.2,21.8,100.8 +5.9375,5,a-pcom-i3,2021-22,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,9.5,9.5,81,0,0,0,61.9,38.1,10.5 +1,1,a-pcom-i3,2021-22,Ludlow - East Street Elementary School,1610010,1.2,0,0,98.8,0,0,0,94.6,5.4,86.7 +1,1,a-pcom-i3,2021-22,Ludlow - Harris Brook Elementary School,1610665,0,0,2.2,97.8,0,0,0,94.8,5.2,89.4 +1.28125,1.28,a-pcom-i3,2021-22,Ludlow - Ludlow Senior High,1610505,1.7,0.7,1.7,95.9,0,0,0,66.3,33.7,115.8 +1,1,a-pcom-i3,2021-22,Ludlow - Paul R Baird Middle,1610305,1.1,0,1.1,97.8,0,0,0,79.1,20.9,90.7 +1,1,a-pcom-i3,2021-22,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,100,0,0,0,69.2,30.8,3.3 +1,1,a-pcom-i3,2021-22,Lunenburg - Lunenburg High,1620505,0,0,0,98.3,0,1.7,0,54.8,45.2,57.2 +1,1,a-pcom-i3,2021-22,Lunenburg - Lunenburg Middle School,1620305,0,0,0,98,0,0,2,79.6,20.4,50.2 +1,1,a-pcom-i3,2021-22,Lunenburg - Lunenburg Primary School,1620010,0,0,0,100,0,0,0,93.8,6.2,56.1 +1,1,a-pcom-i3,2021-22,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,100,0,0,0,89.6,10.4,47.9 +5.53125,5,a-pcom-i3,2021-22,Lynn - A Drewicz Elementary,1630016,2,3.9,11.8,82.3,0,0,0,95.9,4.1,50.9 +2.5,2.5,a-pcom-i3,2021-22,Lynn - Aborn,1630011,0,0,8,92,0,0,0,100,0,25.1 +5.0625,5,a-pcom-i3,2021-22,Lynn - Breed Middle School,1630405,1.5,2.3,10.8,83.8,0,0,1.5,68.9,31.1,129.4 +1.75,1.75,a-pcom-i3,2021-22,Lynn - Brickett Elementary,1630020,0,2.6,2.6,94.4,0,0,0.3,97.8,2.2,37.8 +2.84375,2.84,a-pcom-i3,2021-22,Lynn - Capt William G Shoemaker,1630090,1.3,1.3,5.2,90.9,0,0,1.3,92.9,7.1,77.1 +4.21875,4.22,a-pcom-i3,2021-22,Lynn - Classical High,1630505,3.1,0,8,86.5,0,0,2.4,63.9,36.1,163.5 +4.15625,4.16,a-pcom-i3,2021-22,Lynn - Cobbet Elementary,1630035,0,4,8,86.7,0,0,1.3,92.4,7.6,75.4 +5.09375,5,a-pcom-i3,2021-22,Lynn - E J Harrington,1630045,0,0,16.2,83.7,0,0,0.1,98.3,1.7,82.5 +4.03125,4.03,a-pcom-i3,2021-22,Lynn - Edward A Sisson,1630095,4.1,0,8.8,87.1,0,0,0,91.6,8.4,49.2 +7.71875,5,a-pcom-i3,2021-22,Lynn - Fecteau-Leary Junior/Senior High School,1630525,8.3,0,16.4,75.3,0,0,0,48.8,51.2,48.9 +4.96875,4.97,a-pcom-i3,2021-22,Lynn - Hood,1630055,1.7,3.5,10.5,84.1,0,0,0.2,96,4,57.1 +4.5625,4.56,a-pcom-i3,2021-22,Lynn - Ingalls,1630060,5.3,2.6,5.3,85.4,0,0,1.5,96.8,3.2,75.9 +4.90625,4.91,a-pcom-i3,2021-22,Lynn - Julia F Callahan,1630030,7,0,7,84.3,1.7,0,0,87.6,12.4,57.2 +1.625,1.63,a-pcom-i3,2021-22,Lynn - Lincoln-Thomson,1630070,0,0,5.2,94.8,0,0,0,92.7,7.3,28.8 +6.3125,5,a-pcom-i3,2021-22,Lynn - Lynn English High,1630510,2.9,0.6,16.1,79.8,0,0,0.6,55.4,44.6,173.4 +5.125,5,a-pcom-i3,2021-22,Lynn - Lynn Vocational Technical Institute,1630605,2.3,0.6,12.4,83.6,0,0,1.2,60,40,177.4 +1.9375,1.94,a-pcom-i3,2021-22,Lynn - Lynn Woods,1630075,0,0,6.2,93.8,0,0,0,90.7,9.3,24.3 +4.6875,4.69,a-pcom-i3,2021-22,Lynn - Pickering Middle,1630420,2.7,1.4,9.5,85,0,0,1.4,71.4,28.6,73.4 +1.3125,1.31,a-pcom-i3,2021-22,Lynn - Robert L Ford,1630050,0,0,4.2,95.8,0,0,0,85.6,14.4,47.7 +1.78125,1.78,a-pcom-i3,2021-22,Lynn - Sewell-Anderson,1630085,0,0,5.7,94.3,0,0,0,91.6,8.4,34.8 +5.5625,5,a-pcom-i3,2021-22,Lynn - Thurgood Marshall Mid,1630305,3.6,0.7,11.1,82.2,0,0,2.4,65.9,34.1,139.4 +3.28125,3.28,a-pcom-i3,2021-22,Lynn - Tracy,1630100,0,0,8.4,89.5,2.1,0,0,93.5,6.5,47.5 +5.34375,5,a-pcom-i3,2021-22,Lynn - Washington Elementary School,1630005,6.5,3.3,7.1,82.9,0,0,0.2,89,11,61.1 +2.96875,2.97,a-pcom-i3,2021-22,Lynn - William R Fallon,1630080,0,0,9.5,90.5,0,0,0,84.1,11.2,21 +3.25,3.25,a-pcom-i3,2021-22,Lynn - Wm P Connery,1630040,1.6,0,7.2,89.6,0,0,1.6,90,10,62.8 +1.8125,1.81,a-pcom-i3,2021-22,Lynnfield - Huckleberry Hill,1640010,0,4.4,1.5,94.2,0,0,0,98.7,1.3,68.7 +1,1,a-pcom-i3,2021-22,Lynnfield - Lynnfield High,1640505,1.3,0,0,97.4,0,0,1.3,65.1,34.9,75.6 +1,1,a-pcom-i3,2021-22,Lynnfield - Lynnfield Middle School,1640405,0,0,0,100,0,0,0,74.7,25.3,85.4 +1,1,a-pcom-i3,2021-22,Lynnfield - Lynnfield Preschool,1640005,0,0,0,100,0,0,0,100,0,8.3 +1,1,a-pcom-i3,2021-22,Lynnfield - Summer Street,1640020,0,1.9,0,98.1,0,0,0,95.3,4.7,53.4 +15,5,a-pcom-i3,2021-22,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,28.1,4.1,14.1,52,0,0,1.7,75.4,24.1,238.1 +3.6875,3.69,a-pcom-i3,2021-22,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,88.2,0,0,11.8,64.7,35.3,8.5 +3.40625,3.41,a-pcom-i3,2021-22,Malden - Beebe,1650003,3,6,2,89.1,0,0,0,87.6,12.4,100.7 +3.5,3.5,a-pcom-i3,2021-22,Malden - Ferryway,1650013,3.1,3.1,4.1,88.8,0,0,1,83.5,16.5,98.3 +3.28125,3.28,a-pcom-i3,2021-22,Malden - Forestdale,1650027,2.1,3.1,4.2,89.5,0,0,1,91.4,8.6,95.5 +3.40625,3.41,a-pcom-i3,2021-22,Malden - Linden,1650047,5.9,2,1,89.1,0,0,2,85,15,101.2 +4.40625,4.41,a-pcom-i3,2021-22,Malden - Malden Early Learning Center,1650049,9.9,4.2,0,85.9,0,0,0,95.8,4.2,71 +5.375,5,a-pcom-i3,2021-22,Malden - Malden High,1650505,6.1,2.7,6.1,82.8,0,0,2.2,67.2,32.8,179 +5.625,5,a-pcom-i3,2021-22,Malden - Salemwood,1650057,5.6,4.8,5.6,82,0,0,2,87.8,12.2,124.9 +1,1,a-pcom-i3,2021-22,Manchester Essex Regional - Essex Elementary,6980020,0,0,0,100,0,0,0,89.4,10.6,44.4 +1,1,a-pcom-i3,2021-22,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,0,98.5,0,0,1.5,59.2,40.8,67.4 +2.0625,2.06,a-pcom-i3,2021-22,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,2.2,4.4,93.4,0,0,0,77.5,22.5,45.7 +1,1,a-pcom-i3,2021-22,Manchester Essex Regional - Manchester Memorial Elementary,6980010,0,0,1.7,98.3,0,0,0,92.8,7.2,58.7 +1.53125,1.53,a-pcom-i3,2021-22,Mansfield - Everett W Robinson,1670007,1,2,1,95.1,0,0,1,93.7,6.3,102 +1.34375,1.34,a-pcom-i3,2021-22,Mansfield - Harold L Qualters Middle,1670035,0.9,0,2.6,95.7,0,0,0.9,78.5,21.5,116.9 +1.90625,1.91,a-pcom-i3,2021-22,Mansfield - Jordan/Jackson Elementary,1670014,0.6,3.3,1.1,93.9,0,0,1.1,92.7,7.3,90.9 +1.65625,1.66,a-pcom-i3,2021-22,Mansfield - Mansfield High,1670505,0.7,0.7,4,94.7,0,0,0,67.8,32.2,150.2 +1,1,a-pcom-i3,2021-22,Mansfield - Roland Green School,1670003,0,0,0,100,0,0,0,100,0,26.4 +4.28125,4.28,a-pcom-i3,2021-22,Map Academy Charter School (District) - Map Academy Charter School,35170505,2.7,2.7,8.2,86.3,0,0,0,62.9,37.1,36.4 +1,1,a-pcom-i3,2021-22,Marblehead - Glover,1680020,0,0,0,97.5,0,2.5,0,91.6,8.4,39.3 +1,1,a-pcom-i3,2021-22,Marblehead - Lucretia and Joseph Brown School,1680030,0,0,0,99.7,0,0,0.3,95,5,100 +1.8125,1.81,a-pcom-i3,2021-22,Marblehead - Marblehead High,1680505,0.7,1.5,2.2,94.2,0,0,1.5,62.6,37.4,137.9 +1,1,a-pcom-i3,2021-22,Marblehead - Marblehead Veterans Middle School,1680300,0,1.6,0,98.4,0,0,0,73.4,26.6,60.8 +1.03125,1.03,a-pcom-i3,2021-22,Marblehead - Village School,1680016,0,1.1,1.1,96.7,0,0,1.1,90,10,90.2 +1,1,a-pcom-i3,2021-22,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,97,0,0,3,76,24,33.3 +1.53125,1.53,a-pcom-i3,2021-22,Marion - Sippican,1690005,3.3,1.6,0,95.1,0,0,0,90.5,9.5,61 +2.1875,2.19,a-pcom-i3,2021-22,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,0,4.9,93,0,0,2.1,74.9,25.1,146 +1.34375,1.34,a-pcom-i3,2021-22,Marlborough - Charles Jaworek School,1700030,1.1,0,3.3,95.7,0,0,0,95.1,4.9,92.3 +2.5625,2.56,a-pcom-i3,2021-22,Marlborough - Early Childhood Center,1700006,0,2,6.1,91.8,0,0,0,93.6,6.4,49 +1.96875,1.97,a-pcom-i3,2021-22,Marlborough - Francis J Kane,1700008,0,0,6.3,93.7,0,0,0,88.5,11.5,63.2 +2.21875,2.22,a-pcom-i3,2021-22,Marlborough - Goodnow Brothers Elementary School,1700020,1,0,5,92.9,0,0,1.1,91.1,8.9,93.8 +2.65625,2.66,a-pcom-i3,2021-22,Marlborough - Marlborough High,1700505,3.3,0.7,3.3,91.5,0,0,1.2,68.3,31.7,151.3 +2.6875,2.69,a-pcom-i3,2021-22,Marlborough - Richer,1700025,1.3,0,6.1,91.4,0,0,1.3,98.2,1.8,78.7 +1,1,a-pcom-i3,2021-22,Marshfield - Daniel Webster,1710015,0,0,0,100,0,0,0,94.9,5.1,58.4 +1,1,a-pcom-i3,2021-22,Marshfield - Eames Way School,1710005,0,0,0,98.7,0,0,1.3,85,15,37.9 +1,1,a-pcom-i3,2021-22,Marshfield - Furnace Brook Middle,1710310,0,0,0.8,98.3,0.8,0,0,82.6,17.4,119.2 +1,1,a-pcom-i3,2021-22,Marshfield - Gov Edward Winslow,1710020,0,0,1.6,98.4,0,0,0,89.6,10.4,61.8 +1,1,a-pcom-i3,2021-22,Marshfield - Marshfield High,1710505,1.3,0,0,98.1,0.6,0,0,69.1,30.9,155.6 +1.53125,1.53,a-pcom-i3,2021-22,Marshfield - Martinson Elementary,1710025,0,2.5,1.2,95.1,1.2,0,0,94.6,5.4,81.2 +1,1,a-pcom-i3,2021-22,Marshfield - South River,1710010,0,0,2,98,0,0,0,94.9,5.1,49.4 +1.75,1.75,a-pcom-i3,2021-22,Martha's Vineyard - Martha's Vineyard Regional High,7000505,1,0.9,1.9,94.4,0.9,0,0.9,64.4,35.6,113.1 +2.125,2.12,a-pcom-i3,2021-22,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,2.3,0,2.3,93.2,0,0,2.3,77.3,22.7,44 +14.5,5,a-pcom-i3,2021-22,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,23.8,0,19.7,53.6,0,0,2.9,78.1,21.9,68.4 +1,1,a-pcom-i3,2021-22,Masconomet - Masconomet Regional High School,7050505,0,1.4,0.8,97.8,0,0,0,61.3,38.7,131.6 +1.8125,1.81,a-pcom-i3,2021-22,Masconomet - Masconomet Regional Middle School,7050405,3.9,1.9,0,94.2,0,0,0,66.4,33.6,77.1 +1,1,a-pcom-i3,2021-22,Mashpee - Kenneth Coombs School,1720005,0,0,0,100,0,0,0,98.3,1.7,59.4 +2.5625,2.56,a-pcom-i3,2021-22,Mashpee - Mashpee High,1720505,5.1,1,0,91.8,2.1,0,0,61.2,38.8,56.1 +2.21875,2.22,a-pcom-i3,2021-22,Mashpee - Mashpee Middle School,1720020,3.2,1.3,0,92.9,2.6,0,0,86.6,13.4,31.2 +1.71875,1.72,a-pcom-i3,2021-22,Mashpee - Quashnet School,1720035,3.6,0,0,94.5,1.8,0,0,85.4,14.6,54.9 +1,1,a-pcom-i3,2021-22,Mattapoisett - Center,1730005,0,0,0,100,0,0,0,95.7,4.3,40.1 +1.03125,1.03,a-pcom-i3,2021-22,Mattapoisett - Old Hammondtown,1730010,0,3.3,0,96.7,0,0,0,85.8,14.2,30.2 +3.4375,3.44,a-pcom-i3,2021-22,Maynard - Fowler School,1740305,1.3,1.6,8.1,89,0,0,0,81.7,18.3,74.3 +2.625,2.63,a-pcom-i3,2021-22,Maynard - Green Meadow,1740010,0,2.4,6,91.6,0,0,0,94,6,83.7 +1.71875,1.72,a-pcom-i3,2021-22,Maynard - Maynard High,1740505,0,1.8,1.8,94.5,0,0,1.8,62.4,37.6,54.7 +1,1,a-pcom-i3,2021-22,Medfield - Dale Street,1750005,0,1.1,1.1,97.4,0,0,0.3,92.8,7.2,58.8 +1.25,1.25,a-pcom-i3,2021-22,Medfield - Medfield Senior High,1750505,0,2,1,96,0,0,1,70.8,29.2,100.5 +1.1875,1.19,a-pcom-i3,2021-22,Medfield - Memorial School,1750003,0,1.5,1.1,96.2,0,0,1.2,96.9,3.1,68.1 +1.25,1.25,a-pcom-i3,2021-22,Medfield - Ralph Wheelock School,1750007,0,0.8,3.3,96,0,0,0,89.4,10.6,51.1 +1.03125,1.03,a-pcom-i3,2021-22,Medfield - Thomas Blake Middle,1750305,1.2,0.7,1.2,96.7,0,0,0.2,75.1,24.9,84.8 +1.125,1.12,a-pcom-i3,2021-22,Medford - Brooks School,1760130,1,1.3,1.3,96.4,0,0,0,94.8,5.2,77.2 +1,1,a-pcom-i3,2021-22,Medford - Curtis-Tufts,1760510,0,0,0,100,0,0,0,30,70,7.5 +1,1,a-pcom-i3,2021-22,Medford - John J McGlynn Elementary School,1760068,0,3.2,0,96.8,0,0,0,94.4,5.6,62 +2.90625,2.91,a-pcom-i3,2021-22,Medford - John J. McGlynn Middle School,1760320,2.8,5.1,1.4,90.7,0,0,0,73.7,26.3,70.9 +2.1875,2.19,a-pcom-i3,2021-22,Medford - Madeleine Dugger Andrews,1760315,1.6,5.4,0,93,0,0,0,68.8,31.2,62.4 +1.28125,1.28,a-pcom-i3,2021-22,Medford - Medford High,1760505,2.1,1,1,95.9,0,0,0,62.6,37.4,194.4 +1,1,a-pcom-i3,2021-22,Medford - Milton Fuller Roberts,1760150,1.4,0,0,98.6,0,0,0,88.3,11.7,72.8 +1,1,a-pcom-i3,2021-22,Medford - Missituk Elementary School,1760140,0,1.5,0,98.5,0,0,0,93.1,6.9,66.4 +1,1,a-pcom-i3,2021-22,Medway - Burke/Memorial Elementary School,1770015,0,1.6,0,98.4,0,0,0,96,4,62.3 +1,1,a-pcom-i3,2021-22,Medway - John D Mc Govern Elementary,1770013,0,0,1.8,98.2,0,0,0,96.4,3.6,55.3 +1,1,a-pcom-i3,2021-22,Medway - Medway High,1770505,0,1.1,1.4,97.5,0,0,0,62.8,37.2,71.8 +1.09375,1.09,a-pcom-i3,2021-22,Medway - Medway Middle,1770305,0,2.3,1.2,96.5,0,0,0,81.5,18.5,86.3 +2.09375,2.09,a-pcom-i3,2021-22,Melrose - Early Childhood Center,1780003,3.6,0.9,2.2,93.3,0,0,0,96.2,3.8,55.1 +1,1,a-pcom-i3,2021-22,Melrose - Herbert Clark Hoover,1780017,0,0,1.3,98.7,0,0,0,91.4,8.6,31.9 +1,1,a-pcom-i3,2021-22,Melrose - Horace Mann,1780025,0,2.1,0,97.9,0,0,0,93.3,6.7,29 +2.125,2.12,a-pcom-i3,2021-22,Melrose - Lincoln,1780020,0,2.9,3.9,93.2,0,0,0,93.5,6.5,61.8 +1.4375,1.44,a-pcom-i3,2021-22,Melrose - Melrose High,1780505,0.9,2,1.7,95.4,0,0,0,63.5,36.5,107.8 +1.75,1.75,a-pcom-i3,2021-22,Melrose - Melrose Middle,1780305,1.1,0,3.4,94.4,0,0,1.1,74,26,89.5 +1.4375,1.44,a-pcom-i3,2021-22,Melrose - Roosevelt,1780035,1.5,0,1.5,95.4,0,0,1.5,98.1,1.9,65.9 +1.25,1.25,a-pcom-i3,2021-22,Melrose - Winthrop,1780050,0,1.2,0.5,96,0,0,2.4,89.8,10.2,42.3 +1,1,a-pcom-i3,2021-22,Mendon-Upton - Henry P Clough,7100179,0,0,1.9,98.1,0,0,0,94.2,5.8,51.5 +2.96875,2.97,a-pcom-i3,2021-22,Mendon-Upton - Memorial School,7100001,0,0,9.5,90.5,0,0,0,95.8,4.2,71 +1,1,a-pcom-i3,2021-22,Mendon-Upton - Miscoe Hill School,7100015,0,0,1.1,97.8,0,0,1.1,78.1,21.9,90.9 +1,1,a-pcom-i3,2021-22,Mendon-Upton - Nipmuc Regional High,7100510,0,0,1.7,98.3,0,0,0,71.2,28.8,73.3 +1.8125,1.81,a-pcom-i3,2021-22,Methuen - Comprehensive Grammar School,1810050,0,0,5.8,94.2,0,0,0,90.6,9.4,139 +1.15625,1.16,a-pcom-i3,2021-22,Methuen - Donald P Timony Grammar,1810060,0,0,3.7,96.3,0,0,0,86.1,13.9,142 +1.34375,1.34,a-pcom-i3,2021-22,Methuen - Marsh Grammar School,1810030,0.7,0,3.6,95.7,0,0,0,89.2,10.8,139.3 +1.96875,1.97,a-pcom-i3,2021-22,Methuen - Methuen High,1810505,0.5,0.5,5,93.7,0.5,0,0,63.6,36.4,220.9 +2.0625,2.06,a-pcom-i3,2021-22,Methuen - Tenney Grammar School,1810055,0.7,0,5.2,93.4,0.7,0,0,88.2,11.8,152.5 +1,1,a-pcom-i3,2021-22,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,0,100,0,0,0,88.6,11.4,61.6 +1,1,a-pcom-i3,2021-22,Middleborough - John T. Nichols Middle,1820305,0,0,0,100,0,0,0,75.5,24.5,76.5 +1,1,a-pcom-i3,2021-22,Middleborough - Mary K. Goode Elementary School,1820010,0,1.5,0,97.1,1.5,0,0,91.3,8.7,68.7 +1,1,a-pcom-i3,2021-22,Middleborough - Memorial Early Childhood Center,1820011,0,0,0,100,0,0,0,100,0,38 +1,1,a-pcom-i3,2021-22,Middleborough - Middleborough High,1820505,0,1,0,99,0,0,0,57.9,42.1,99 +1,1,a-pcom-i3,2021-22,Middleton - Fuller Meadow,1840003,0,0,0,100,0,0,0,96.4,3.6,60.2 +1,1,a-pcom-i3,2021-22,Middleton - Howe-Manning,1840005,0,0,0,100,0,0,0,91.2,8.8,78 +1.625,1.63,a-pcom-i3,2021-22,Milford - Brookside,1850065,0,1.2,4,94.8,0,0,0,94.9,5.1,86.3 +1.40625,1.41,a-pcom-i3,2021-22,Milford - Memorial,1850010,0,0,4.5,95.5,0,0,0,99.3,0.7,76.2 +1.75,1.75,a-pcom-i3,2021-22,Milford - Milford High,1850505,0.7,0,4.2,94.4,0,0,0.7,64.5,35.5,147.2 +2.25,2.25,a-pcom-i3,2021-22,Milford - Shining Star Early Childhood Center,1850075,0,0,7.2,92.8,0,0,0,100,0,38.4 +2.65625,2.66,a-pcom-i3,2021-22,Milford - Stacy Middle,1850305,0,0,7.6,91.5,0.8,0,0,72.1,27.9,120.3 +2.0625,2.06,a-pcom-i3,2021-22,Milford - Woodland,1850090,0.7,0.7,5.2,93.4,0,0,0,91,9,144.2 +1,1,a-pcom-i3,2021-22,Millbury - Elmwood Street,1860017,1.3,0,0,97.4,0,0,1.3,95.5,4.5,77.2 +1,1,a-pcom-i3,2021-22,Millbury - Millbury Junior/Senior High,1860505,0,1.9,1,97.1,0,0,0,63.4,36.6,103.8 +1,1,a-pcom-i3,2021-22,Millbury - Raymond E. Shaw Elementary,1860025,0,1.7,0,98.3,0,0,0,84.5,15.5,57.9 +1,1,a-pcom-i3,2021-22,Millis - Clyde F Brown,1870005,0,0,2.1,97.9,0,0,0,94.5,5.5,72.4 +1,1,a-pcom-i3,2021-22,Millis - Millis High School,1870505,0,0,2.2,97.8,0,0,0,61.7,38.3,45.2 +1.125,1.12,a-pcom-i3,2021-22,Millis - Millis Middle,1870020,0,2.6,1,96.4,0,0,0,83.9,16.1,38.6 +3.5,3.5,a-pcom-i3,2021-22,Milton - Charles S Pierce Middle,1890410,5.5,1.9,2.8,88.8,0,0,0.9,73.1,26.9,105.8 +2.09375,2.09,a-pcom-i3,2021-22,Milton - Collicot,1890005,2.7,1.5,2.5,93.3,0,0,0,92.6,7.4,67.3 +2.4375,2.44,a-pcom-i3,2021-22,Milton - Cunningham School,1890007,5.5,0.6,1.7,92.2,0,0,0,96.4,3.6,82.3 +3.625,3.62,a-pcom-i3,2021-22,Milton - Glover,1890010,6.2,1.7,0.6,88.4,1.5,0,1.5,95.8,4.2,64.7 +3.4375,3.44,a-pcom-i3,2021-22,Milton - Milton High,1890505,6.4,2.3,1.6,89,0,0.8,0,65,35,126 +7.6875,5,a-pcom-i3,2021-22,Milton - Tucker,1890020,19.2,5.5,0,75.4,0,0,0,85.9,14.1,45.8 +1,1,a-pcom-i3,2021-22,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0,2,97.1,0,0,1,56.3,43.7,101.8 +1.0625,1.06,a-pcom-i3,2021-22,Mohawk Trail - Buckland-Shelburne Regional,7170005,1.8,0,1.6,96.6,0,0,0,89.1,10.9,56.1 +1,1,a-pcom-i3,2021-22,Mohawk Trail - Colrain Central,7170010,0,0,0,100,0,0,0,96.7,3.3,30.3 +1.40625,1.41,a-pcom-i3,2021-22,Mohawk Trail - Mohawk Trail Regional School,7170505,1.5,0,0,95.5,1.5,0,1.5,72,28,67 +1,1,a-pcom-i3,2021-22,Mohawk Trail - Sanderson Academy,7170020,0,0,0,100,0,0,0,100,0,24.1 +1,1,a-pcom-i3,2021-22,Monomoy Regional School District - Chatham Elementary School,7120001,0,0,0,100,0,0,0,88.7,11.3,32 +1.1875,1.19,a-pcom-i3,2021-22,Monomoy Regional School District - Harwich Elementary School,7120002,0,0.4,2.2,96.2,0,0,1.1,94.5,5.5,90.3 +1.90625,1.91,a-pcom-i3,2021-22,Monomoy Regional School District - Monomoy Regional High School,7120515,1.6,2.4,1,93.9,0,0,1,65.6,34.4,98.4 +1,1,a-pcom-i3,2021-22,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,100,0,0,0,83.8,16.2,70.3 +1,1,a-pcom-i3,2021-22,Monson - Granite Valley School,1910030,0,0,0.8,97.5,0,1.6,0,89.4,10.6,61.2 +1,1,a-pcom-i3,2021-22,Monson - Monson High School,1910505,0,1.6,1.6,96.8,0,0,0,64.1,35.9,62.3 +1,1,a-pcom-i3,2021-22,Monson - Quarry Hill Community School,1910010,0,0,0,100,0,0,0,95.8,4.2,24 +3.0625,3.06,a-pcom-i3,2021-22,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0.5,0,7.7,90.2,1.1,0,0.5,53.7,46.3,182.9 +1,1,a-pcom-i3,2021-22,Mount Greylock - Lanesborough Elementary,7150005,2.2,0,0,97.8,0,0,0,75.2,24.8,45.1 +1.90625,1.91,a-pcom-i3,2021-22,Mount Greylock - Mt Greylock Regional High,7150505,1.2,1.2,3.6,93.9,0,0,0,58.9,41.1,82.6 +1,1,a-pcom-i3,2021-22,Mount Greylock - Williamstown Elementary,7150010,0,2.7,0,97.3,0,0,0,92,8,74.7 +2.875,2.88,a-pcom-i3,2021-22,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,2.6,3.4,1.3,90.8,0,0,1.9,71.7,28.3,155.4 +1,1,a-pcom-i3,2021-22,Nahant - Johnson,1960010,0,0,0,100,0,0,0,89.5,10.5,23.8 +3.5625,3.56,a-pcom-i3,2021-22,Nantucket - Cyrus Peirce,1970010,7,0,2.6,88.6,0,0,1.8,78.9,21.1,56.9 +2.0625,2.06,a-pcom-i3,2021-22,Nantucket - Nantucket Elementary,1970005,0,0,5.3,93.4,0,0,1.3,96.1,3.9,76.1 +2.78125,2.78,a-pcom-i3,2021-22,Nantucket - Nantucket High,1970505,1.5,3,3,91.1,1.5,0,0,66.4,33.6,67.4 +1,1,a-pcom-i3,2021-22,Nantucket - Nantucket Intermediate School,1970020,1.3,0,1.8,96.9,0,0,0,89,11,54.7 +1,1,a-pcom-i3,2021-22,Narragansett - Narragansett Middle,7200305,0,0,0,100,0,0,0,79.9,20.1,44.8 +1,1,a-pcom-i3,2021-22,Narragansett - Narragansett Regional High,7200505,0,0,0,100,0,0,0,63.6,36.4,57.6 +1,1,a-pcom-i3,2021-22,Narragansett - Templeton Elementary School,7200020,0,0,0,100,0,0,0,98.6,1.4,70 +1,1,a-pcom-i3,2021-22,Nashoba - Center School,7250020,0,0,1.4,97.3,0,1.4,0,93.5,6.5,73 +1,1,a-pcom-i3,2021-22,Nashoba - Florence Sawyer School,7250025,0,0,0,100,0,0,0,83.6,16.4,103.4 +1.6875,1.69,a-pcom-i3,2021-22,Nashoba - Hale,7250310,0,2.7,2.7,94.6,0,0,0,73,27,37.1 +1,1,a-pcom-i3,2021-22,Nashoba - Luther Burbank Middle School,7250305,2.5,0,0,97.5,0,0,0,85.5,14.5,39.8 +1,1,a-pcom-i3,2021-22,Nashoba - Mary Rowlandson Elementary,7250010,0,0,0,98.6,0,0,1.4,90.9,9.1,72 +1,1,a-pcom-i3,2021-22,Nashoba - Nashoba Regional,7250505,0,0.9,0.9,98.2,0,0,0,64.5,35.5,111.6 +1,1,a-pcom-i3,2021-22,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,1,1,1,96.9,0,0,0,53.2,46.8,97.3 +1.5,1.5,a-pcom-i3,2021-22,Natick - Bennett-Hemenway,1980005,0,3.6,1.2,95.2,0,0,0,91.4,8.6,83.7 +1,1,a-pcom-i3,2021-22,Natick - Brown,1980010,0,2.1,0,97.9,0,0,0,91.5,8.5,75.9 +1.1875,1.19,a-pcom-i3,2021-22,Natick - J F Kennedy Middle School,1980305,0,2.3,0.6,96.2,0.9,0,0,78.4,21.6,108.3 +1,1,a-pcom-i3,2021-22,Natick - Johnson,1980031,0,0,0,100,0,0,0,94.1,5.9,34 +1,1,a-pcom-i3,2021-22,Natick - Lilja Elementary,1980035,1.7,0,0.8,97.5,0,0,0,96.4,3.6,60.6 +1.78125,1.78,a-pcom-i3,2021-22,Natick - Memorial,1980043,3.8,1.9,0,94.3,0,0,0,92.4,7.6,52.5 +2.15625,2.16,a-pcom-i3,2021-22,Natick - Natick High,1980505,2,2.9,1.2,93.1,0,0,0.8,68.3,31.2,240.4 +1,1,a-pcom-i3,2021-22,Natick - Wilson Middle,1980310,0.8,0.4,1.2,97.6,0,0,0,74.8,25.2,120.3 +1,1,a-pcom-i3,2021-22,Nauset - Nauset Regional High,6600505,0.9,0,2,97.1,0,0,0,67.1,32.9,114.4 +1.21875,1.22,a-pcom-i3,2021-22,Nauset - Nauset Regional Middle,6600305,0,1.1,2.7,96.1,0,0,0,77.7,22.3,87.5 +1.8125,1.81,a-pcom-i3,2021-22,Needham - Broadmeadow,1990005,0.4,2.8,1.2,94.2,0,1.3,0,92.7,7.3,75.7 +1,1,a-pcom-i3,2021-22,Needham - High Rock School,1990410,0.5,0.2,0.5,97.2,0,0,1.6,76.1,23.9,63.4 +3.78125,3.78,a-pcom-i3,2021-22,Needham - John Eliot,1990020,5.9,3.2,3,87.9,0,0,0,89.5,10.5,66.4 +3.53125,3.53,a-pcom-i3,2021-22,Needham - Needham High,1990505,5,2.7,2.6,88.7,0,0,1,64.7,35.3,196.2 +2.5,2.5,a-pcom-i3,2021-22,Needham - Newman Elementary,1990050,1.8,3,2.5,92,0,0,0.7,92.3,7.7,120.3 +3.0625,3.06,a-pcom-i3,2021-22,Needham - Pollard Middle,1990405,1.4,0.8,4.4,90.2,0,0,3.3,74.1,25.9,121.6 +2.75,2.75,a-pcom-i3,2021-22,Needham - Sunita L. Williams Elementary,1990035,3.6,1.2,3.1,91.2,0,0,1,88.3,11.7,97.5 +3.5625,3.56,a-pcom-i3,2021-22,Needham - William Mitchell,1990040,2.2,4.7,3,88.6,0,0,1.5,83.6,16.4,67.1 +16.59375,5,a-pcom-i3,2021-22,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,29.7,6.2,13.7,46.9,0.7,0,2.8,77.2,22.8,144.6 +3.28125,3.28,a-pcom-i3,2021-22,New Bedford - Abraham Lincoln,2010095,4.2,0.7,4.2,89.5,0,1.4,0,92.3,7.7,71.4 +7.59375,5,a-pcom-i3,2021-22,New Bedford - Alfred J Gomes,2010063,8.1,0,15,75.7,0,0,1.2,89.6,10.4,86.5 +4.1875,4.19,a-pcom-i3,2021-22,New Bedford - Betsey B Winslow,2010140,6,0,7.4,86.6,0,0,0,87.1,12.9,33.5 +1.9375,1.94,a-pcom-i3,2021-22,New Bedford - Carlos Pacheco,2010105,4.1,0,2.1,93.8,0,0,0,97.9,2.1,48.6 +1.96875,1.97,a-pcom-i3,2021-22,New Bedford - Casimir Pulaski,2010123,3.6,0,2.7,93.7,0,0,0,85.4,14.6,111.2 +2.0625,2.06,a-pcom-i3,2021-22,New Bedford - Charles S Ashley,2010010,5.1,0.3,1.3,93.4,0,0,0,95.9,4.1,39.1 +4.75,4.75,a-pcom-i3,2021-22,New Bedford - Elizabeth Carter Brooks,2010015,9.4,2.3,2.3,84.8,0,0,1.2,87.8,12.2,42.7 +4.03125,4.03,a-pcom-i3,2021-22,New Bedford - Ellen R Hathaway,2010075,2.6,0,10.3,87.1,0,0,0,95.1,4.9,38.7 +4.34375,4.34,a-pcom-i3,2021-22,New Bedford - Elwyn G Campbell,2010020,3.5,0,6.9,86.1,1.7,0,1.7,94.8,5.2,57.7 +7.53125,5,a-pcom-i3,2021-22,New Bedford - Hayden/McFadden,2010078,8.3,0.2,14,75.9,0.8,0,0.8,91.6,8.4,121.2 +3.5,3.5,a-pcom-i3,2021-22,New Bedford - Irwin M. Jacobs Elementary School,2010070,3.7,0,7.4,88.8,0,0,0,90.7,9.3,53.8 +2.59375,2.59,a-pcom-i3,2021-22,New Bedford - James B Congdon,2010040,0,0,8.3,91.7,0,0,0,94.5,5.5,36.3 +1.09375,1.09,a-pcom-i3,2021-22,New Bedford - Jireh Swift,2010130,3.5,0,0,96.5,0,0,0,93.1,6.9,28.8 +7.625,5,a-pcom-i3,2021-22,New Bedford - John Avery Parker,2010115,9.2,9.2,6.1,75.6,0,0,0,93.9,6.1,32.8 +1.71875,1.72,a-pcom-i3,2021-22,New Bedford - John B Devalles,2010050,0,0,5.5,94.5,0,0,0,86.2,13.8,36.3 +4.96875,4.97,a-pcom-i3,2021-22,New Bedford - Keith Middle School,2010405,7.7,0.7,5,84.1,0,0,2.5,70,30,140.7 +6.3125,5,a-pcom-i3,2021-22,New Bedford - New Bedford High,2010505,8.5,1.3,8.4,79.8,0.3,0,1.6,64.3,35.7,308 +4.375,4.38,a-pcom-i3,2021-22,New Bedford - Normandin Middle School,2010410,6.3,0,4.6,86,0,0,3.2,68.6,31.4,126.7 +10.46875,5,a-pcom-i3,2021-22,New Bedford - Renaissance Community Innovation School,2010124,21.5,0,12,66.5,0,0,0,86.5,13.5,25.1 +5.875,5,a-pcom-i3,2021-22,New Bedford - Roosevelt Middle School,2010415,5,0.8,9,81.2,1.6,0,2.4,73.4,26.6,124.2 +5.625,5,a-pcom-i3,2021-22,New Bedford - Sgt Wm H Carney Academy,2010045,7.3,1,8.1,82,0,0,1.6,86.1,13.9,123.1 +2.90625,2.91,a-pcom-i3,2021-22,New Bedford - Thomas R Rodman,2010125,0,0,7.4,90.7,0,0,1.9,85.2,14.8,27 +6.28125,5,a-pcom-i3,2021-22,New Bedford - Trinity Day Academy,2010510,14.4,0,2.9,79.9,0,0,2.9,52.6,47.4,34.8 +5.28125,5,a-pcom-i3,2021-22,New Bedford - Whaling City Junior/Senior High School,2010515,14.2,0,0,83.1,0,0,2.7,54.5,45.5,37.4 +2.5,2.5,a-pcom-i3,2021-22,New Bedford - William H Taylor,2010135,5.3,0,2.7,92,0,0,0,94.7,5.3,37.6 +10.28125,5,a-pcom-i3,2021-22,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,29.4,1.4,1.4,67.1,0,0,0.7,64.5,35.5,72 +3.3125,3.31,a-pcom-i3,2021-22,New Salem-Wendell - Swift River,7280015,0,0,0,89.4,0,0,10.6,92.5,7.5,28.3 +1,1,a-pcom-i3,2021-22,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,99.3,0,0.7,0,85.1,14.9,46.5 +1,1,a-pcom-i3,2021-22,Newburyport - Francis T Bresnahan Elementary,2040005,0,0,1.7,98,0,0.3,0,93.2,6.8,107.2 +1,1,a-pcom-i3,2021-22,Newburyport - Newburyport High,2040505,0,0,0,100,0,0,0,73.6,25.4,101.6 +2.875,2.88,a-pcom-i3,2021-22,Newburyport - Rupert A Nock Middle,2040305,2.5,1.3,5,90.8,0,0.4,0,70.1,29.9,79.4 +6.3125,5,a-pcom-i3,2021-22,Newton - A E Angier,2070005,9.5,6.2,3.4,79.8,0,0,1.2,84.1,15.9,76.1 +3.78125,3.78,a-pcom-i3,2021-22,Newton - Bigelow Middle,2070305,2.7,2.8,5.3,87.9,0,0,1.3,75.2,24.8,74.9 +6.53125,5,a-pcom-i3,2021-22,Newton - Bowen,2070015,3.4,8.8,5.6,79.1,1.6,0,1.5,89.4,10.6,53.5 +6.71875,5,a-pcom-i3,2021-22,Newton - C C Burr,2070020,2.8,10.2,5.1,78.5,0,0,3.4,96.9,3.1,58.9 +5.9375,5,a-pcom-i3,2021-22,Newton - Cabot,2070025,4.9,6.6,4.9,81,0,0,2.5,85.5,14.5,72.6 +4.90625,4.91,a-pcom-i3,2021-22,Newton - Charles E Brown Middle,2070310,5.5,3.5,5.3,84.3,0,0,1.5,70.8,29.2,136.7 +3.40625,3.41,a-pcom-i3,2021-22,Newton - Countryside,2070040,8.1,1.6,0,89.1,0,0,1.2,85.9,14.1,67.4 +2.6875,2.69,a-pcom-i3,2021-22,Newton - F A Day Middle,2070315,3.1,2.6,1.4,91.4,0,0,1.5,72,28,130.8 +3.0625,3.06,a-pcom-i3,2021-22,Newton - Franklin,2070055,3.1,5.3,1.4,90.2,0,0,0,88.1,11.9,57.2 +4.6875,4.69,a-pcom-i3,2021-22,Newton - Horace Mann,2070075,8.8,4.6,0,85,0,0,1.6,84.7,15.3,53.3 +4.6875,4.69,a-pcom-i3,2021-22,Newton - John Ward,2070120,4.6,6.3,4.1,85,0,0,0,94.6,5.4,39.3 +4.03125,4.03,a-pcom-i3,2021-22,Newton - Lincoln-Eliot,2070070,2.6,2.4,7.9,87.1,0,0,0,93.2,6.8,66.4 +3.21875,3.22,a-pcom-i3,2021-22,Newton - Mason-Rice,2070080,3.3,5.2,1.8,89.7,0,0,0,93,7,56 +4.9375,4.94,a-pcom-i3,2021-22,Newton - Memorial Spaulding,2070105,5.5,3,7.4,84.2,0,0,0,91.2,8.8,64.3 +3.09375,3.09,a-pcom-i3,2021-22,Newton - Newton Early Childhood Program,2070108,3.7,3.2,1,90.1,0,0,1.9,100,0,71 +5.40625,5,a-pcom-i3,2021-22,Newton - Newton North High,2070505,5.6,6.4,4.1,82.7,0,0,1.2,65.8,34.2,331.5 +6.125,5,a-pcom-i3,2021-22,Newton - Newton South High,2070510,5.7,6.7,4.6,80.4,0,0,2.6,65.4,34.2,259.1 +5.0625,5,a-pcom-i3,2021-22,Newton - Oak Hill Middle,2070320,4.4,4.1,5.7,83.8,0,0,2,76.1,23.9,98.9 +3.84375,3.84,a-pcom-i3,2021-22,Newton - Peirce,2070100,5.1,0.2,4.8,87.7,0,0,2.2,90.7,9.3,45 +4.90625,4.91,a-pcom-i3,2021-22,Newton - Underwood,2070115,6,2.4,6.6,84.3,0,0,0.7,85.1,14.9,41.8 +3.78125,3.78,a-pcom-i3,2021-22,Newton - Williams,2070125,3.1,3,0,87.9,0,1.9,4.1,84.6,15.4,43.7 +4.8125,4.81,a-pcom-i3,2021-22,Newton - Zervas,2070130,6.1,6.2,3.2,84.6,0,0,0,88,12,82.6 +1.5,1.5,a-pcom-i3,2021-22,Norfolk - Freeman-Kennedy School,2080005,1.4,3.5,0,95.2,0,0,0,90.3,9.7,72.3 +1,1,a-pcom-i3,2021-22,Norfolk - H Olive Day,2080015,0,0,0,100,0,0,0,95.8,4.2,87.9 +1,1,a-pcom-i3,2021-22,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,100,0,0,0,59.2,40.8,80.5 +1.46875,1.47,a-pcom-i3,2021-22,North Adams - Brayton,2090035,0,1.6,3.1,95.3,0,0,0,85.9,14.1,63.9 +1,1,a-pcom-i3,2021-22,North Adams - Colegrove Park Elementary,2090008,0,0,0,100,0,0,0,88.2,11.8,59.3 +1.28125,1.28,a-pcom-i3,2021-22,North Adams - Drury High,2090505,1.4,0,2.7,95.9,0,0,0,64.4,35.6,73.4 +1,1,a-pcom-i3,2021-22,North Adams - Greylock,2090015,2.1,0,0,97.9,0,0,0,91.6,8.4,47.4 +1,1,a-pcom-i3,2021-22,North Andover - Anne Bradstreet Early Childhood Center,2110005,0,1.2,0,98.8,0,0,0,98.8,1.2,83.1 +1,1,a-pcom-i3,2021-22,North Andover - Annie L Sargent School,2110018,0,1.5,0,98.5,0,0,0,93.9,6.1,65.2 +1,1,a-pcom-i3,2021-22,North Andover - Atkinson,2110001,0,2,0,98,0,0,0,97,3,50.9 +1,1,a-pcom-i3,2021-22,North Andover - Franklin,2110010,0,0,0,100,0,0,0,93.8,6.2,61.7 +1.28125,1.28,a-pcom-i3,2021-22,North Andover - Kittredge,2110015,0,2.7,1.4,95.9,0,0,0,90.7,9.3,36.9 +1,1,a-pcom-i3,2021-22,North Andover - North Andover High,2110505,0.7,0.7,0,98.6,0,0,0,66.5,33.5,140.2 +1,1,a-pcom-i3,2021-22,North Andover - North Andover Middle,2110305,0,0,0,100,0,0,0,71.4,28.6,120.6 +1,1,a-pcom-i3,2021-22,North Andover - Thomson,2110020,0,0,0,100,0,0,0,96,4,50 +1,1,a-pcom-i3,2021-22,North Attleborough - Amvet Boulevard,2120007,0,0,0,100,0,0,0,95.9,4.1,49.3 +1,1,a-pcom-i3,2021-22,North Attleborough - Community,2120030,0,1.6,1.6,96.8,0,0,0,95.9,4.1,61.6 +1,1,a-pcom-i3,2021-22,North Attleborough - Falls,2120010,0,0,0,100,0,0,0,93.1,6.9,36.4 +1,1,a-pcom-i3,2021-22,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,0,0,100,0,0,0,96,4,74.7 +1.28125,1.28,a-pcom-i3,2021-22,North Attleborough - North Attleboro High,2120505,0,0.8,1.6,95.9,0,0,1.6,72,28,121.4 +1.625,1.63,a-pcom-i3,2021-22,North Attleborough - North Attleborough Early Learning Center,2120020,2.6,2.6,0,94.8,0,0,0,100,0,30.7 +1.625,1.63,a-pcom-i3,2021-22,North Attleborough - North Attleborough Middle,2120305,0.9,2.6,0.9,94.8,0,0,0.9,72.5,27.5,116.1 +1.8125,1.81,a-pcom-i3,2021-22,North Attleborough - Roosevelt Avenue,2120015,3.2,0,2.6,94.2,0,0,0,92.6,7.4,31.2 +1.3125,1.31,a-pcom-i3,2021-22,North Brookfield - North Brookfield Elementary,2150015,0,2.1,2.1,95.8,0,0,0,94.7,5.3,47.6 +1,1,a-pcom-i3,2021-22,North Brookfield - North Brookfield High,2150505,0,0,3,97,0,0,0,67.6,32.4,31.1 +1.09375,1.09,a-pcom-i3,2021-22,North Middlesex - Ashby Elementary,7350010,0,0,0,96.5,0,3.5,0,97.9,2.1,28.7 +1,1,a-pcom-i3,2021-22,North Middlesex - Hawthorne Brook,7350030,0,0,0,100,0,0,0,74.3,25.7,54.1 +1.28125,1.28,a-pcom-i3,2021-22,North Middlesex - Nissitissit Middle School,7350310,0,0,4.1,95.9,0,0,0,79.9,20.1,72.3 +1,1,a-pcom-i3,2021-22,North Middlesex - North Middlesex Regional,7350505,1.2,1.2,0,97.7,0,0,0,65.8,34.2,86.3 +1,1,a-pcom-i3,2021-22,North Middlesex - Spaulding Memorial,7350005,0,0,0,100,0,0,0,88.1,11.9,53.8 +1,1,a-pcom-i3,2021-22,North Middlesex - Squannacook Early Childhood Center,7350002,0,0,0,100,0,0,0,100,0,22.4 +1,1,a-pcom-i3,2021-22,North Middlesex - Varnum Brook,7350035,0,0,0,98.8,0,0,1.2,95.1,4.9,81.4 +1,1,a-pcom-i3,2021-22,North Reading - E Ethel Little School,2170003,0,0,0,100,0,0,0,90.5,9.5,46.3 +1,1,a-pcom-i3,2021-22,North Reading - J Turner Hood,2170010,0,2.1,0,97.9,0,0,0,94.2,5.8,48.4 +1,1,a-pcom-i3,2021-22,North Reading - L D Batchelder,2170005,0,0,1.8,98.2,0,0,0,96.5,3.5,57.1 +1.25,1.25,a-pcom-i3,2021-22,North Reading - North Reading High,2170505,0,1.1,3,96,0,0,0,51.5,48.5,94.3 +1,1,a-pcom-i3,2021-22,North Reading - North Reading Middle,2170305,0,0,0,100,0,0,0,84.6,15.4,68.2 +1.75,1.75,a-pcom-i3,2021-22,Northampton - Bridge Street,2100005,0,0,5.6,94.4,0,0,0,90.9,7.6,69.5 +7.78125,5,a-pcom-i3,2021-22,Northampton - Jackson Street,2100020,5.4,1.8,12.8,75.1,0,0,4.9,84.8,15.2,55.8 +2.75,2.75,a-pcom-i3,2021-22,Northampton - John F Kennedy Middle School,2100410,2.9,1.9,3,91.2,0,0,1,74.9,25.1,103.5 +2.125,2.12,a-pcom-i3,2021-22,Northampton - Leeds,2100025,0,0,5,93.2,0,0,1.7,91.4,8.6,58.1 +3.03125,3.03,a-pcom-i3,2021-22,Northampton - Northampton High,2100505,1.9,0.9,5,90.3,0,0,1.9,62.3,37.7,106.9 +2.375,2.37,a-pcom-i3,2021-22,Northampton - R. K. Finn Ryan Road,2100029,0,2.1,2.4,92.4,0,0,3.1,87.4,12.6,47.8 +1.5625,1.56,a-pcom-i3,2021-22,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,1,0,3,95,0,0,1,53,47,100 +1,1,a-pcom-i3,2021-22,Northboro-Southboro - Algonquin Regional High,7300505,0.6,0,0.6,98.9,0,0,0,74.3,25.7,177.2 +1,1,a-pcom-i3,2021-22,Northborough - Fannie E Proctor,2130015,0,0,2.2,97.8,0,0,0,88.8,11.2,44.5 +1,1,a-pcom-i3,2021-22,Northborough - Lincoln Street,2130003,0,0,1.1,98.9,0,0,0,89.9,10.1,44.6 +1,1,a-pcom-i3,2021-22,Northborough - Marguerite E Peaslee,2130014,0,0,0,100,0,0,0,93.2,6.8,44.4 +1.78125,1.78,a-pcom-i3,2021-22,Northborough - Marion E Zeh,2130020,0,0,5.7,94.3,0,0,0,95,5,43.6 +1.96875,1.97,a-pcom-i3,2021-22,Northborough - Robert E. Melican Middle School,2130305,0,1.3,2.5,93.7,0,1.3,1.3,86.3,13.7,79.1 +1,1,a-pcom-i3,2021-22,Northbridge - Northbridge Elementary School,2140001,0,0,0,99.1,0,0.3,0.6,92.8,7.2,158.1 +1,1,a-pcom-i3,2021-22,Northbridge - Northbridge High,2140505,1.4,0,0.7,97.3,0,0.7,0,59.7,40.3,72.8 +1,1,a-pcom-i3,2021-22,Northbridge - Northbridge Middle,2140305,0,0,0.7,99.3,0,0,0,75.8,24.2,69.7 +2.65625,2.66,a-pcom-i3,2021-22,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,2.7,0.7,5.2,91.5,0,0,0,51.3,48.7,150.9 +1,1,a-pcom-i3,2021-22,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,100,0,0,0,58.5,41.5,67.5 +1,1,a-pcom-i3,2021-22,Norton - Henri A. Yelle,2180060,0,0,0,100,0,0,0,90.1,9.9,53.6 +1,1,a-pcom-i3,2021-22,Norton - J C Solmonese,2180015,1.5,0,0,98.5,0,0,0,94.8,5.2,67.4 +1,1,a-pcom-i3,2021-22,Norton - L G Nourse Elementary,2180010,0,0,0,100,0,0,0,96.4,3.6,42.2 +1.625,1.63,a-pcom-i3,2021-22,Norton - Norton High,2180505,1.9,0,3.4,94.8,0,0,0,72.3,27.7,89 +1,1,a-pcom-i3,2021-22,Norton - Norton Middle,2180305,0,0,1.5,98.5,0,0,0,73.6,26.4,68.7 +1,1,a-pcom-i3,2021-22,Norwell - Grace Farrar Cole,2190005,0.4,0,1.6,98,0,0,0,92.5,7.5,61.6 +1,1,a-pcom-i3,2021-22,Norwell - Norwell High,2190505,0.3,0,0,99.7,0,0,0,63.5,36.5,75 +1,1,a-pcom-i3,2021-22,Norwell - Norwell Middle School,2190405,0.4,0,0,98,0,0,1.6,73.3,26.7,63.6 +1,1,a-pcom-i3,2021-22,Norwell - William G Vinal,2190020,0.4,0,0,99.6,0,0,0,92.5,7.5,63.6 +2.125,2.12,a-pcom-i3,2021-22,Norwood - Balch,2200005,0,0,4.5,93.2,2.3,0,0,91.4,8.6,44.4 +3.46875,3.47,a-pcom-i3,2021-22,Norwood - Charles J Prescott,2200025,0,2.8,0,88.9,5.5,0,2.8,91.7,8.3,36.1 +1,1,a-pcom-i3,2021-22,Norwood - Cornelius M Callahan,2200010,0,0,1.4,98.6,0,0,0,87.6,12.4,34.8 +1.5,1.5,a-pcom-i3,2021-22,Norwood - Dr. Philip O. Coakley Middle School,2200305,1.9,1,1,95.2,1,0,0,68.5,31.5,104.6 +1.53125,1.53,a-pcom-i3,2021-22,Norwood - F A Cleveland,2200015,2,2,1,95.1,0,0,0,96.9,3.1,51 +1.9375,1.94,a-pcom-i3,2021-22,Norwood - George F. Willett,2200075,2.1,1.3,1.3,93.8,1.3,0,0,96.5,3.5,74.4 +1,1,a-pcom-i3,2021-22,Norwood - John P Oldham,2200020,0,0,0,100,0,0,0,86.4,13.6,41.8 +1.96875,1.97,a-pcom-i3,2021-22,Norwood - Norwood High,2200505,2.4,0.8,2.3,93.7,0.8,0,0,64.8,35.2,127.9 +3.21875,3.22,a-pcom-i3,2021-22,Oak Bluffs - Oak Bluffs Elementary,2210005,1.4,1.1,3.1,89.7,1.1,0,3.8,87.9,12.1,93.9 +1.46875,1.47,a-pcom-i3,2021-22,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,1.2,0,95.3,0,0,3.5,55.8,44.2,86 +1.0625,1.06,a-pcom-i3,2021-22,Old Rochester - Old Rochester Regional High,7400505,1.1,1.1,1.1,96.6,0,0,0,65.7,34.3,88.9 +1,1,a-pcom-i3,2021-22,Old Rochester - Old Rochester Regional Jr High,7400405,1.7,0,0,98.3,0,0,0,72.9,27.1,57.2 +2.71875,2.72,a-pcom-i3,2021-22,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,0,8.7,91.3,0,0,0,71.1,28.9,34.6 +1,1,a-pcom-i3,2021-22,Orange - Dexter Park,2230010,0,0,0,100,0,0,0,84.8,15.2,42.7 +1,1,a-pcom-i3,2021-22,Orange - Fisher Hill,2230015,0,0,2.1,97.9,0,0,0,97.9,2.1,47.1 +1,1,a-pcom-i3,2021-22,Orleans - Orleans Elementary,2240005,0,0,0,100,0,0,0,88.8,11.2,40.9 +1,1,a-pcom-i3,2021-22,Oxford - Alfred M Chaffee,2260010,0,0,0,100,0,0,0,96.8,3.2,49 +1,1,a-pcom-i3,2021-22,Oxford - Clara Barton,2260005,0,0,0,100,0,0,0,94.6,5.4,45.6 +1.71875,1.72,a-pcom-i3,2021-22,Oxford - Oxford High,2260505,0,2.8,1.4,94.5,0,0,1.4,61.3,38.7,72.2 +1,1,a-pcom-i3,2021-22,Oxford - Oxford Middle,2260405,0,0,1.7,98.3,0,0,0,84.4,15.6,57.6 +1.15625,1.16,a-pcom-i3,2021-22,Palmer - Old Mill Pond,2270008,0,0,2.7,96.3,0,0,1.1,93.2,6.8,93.6 +1.15625,1.16,a-pcom-i3,2021-22,Palmer - Palmer High,2270505,0,1,1.6,96.3,0,0,1,70.1,29.9,95.6 +1,1,a-pcom-i3,2021-22,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,100,0,0,0,51.6,48.4,106.5 +18.28125,5,a-pcom-i3,2021-22,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,26.8,0,31.8,41.5,0,0,0,68.8,31.2,44.9 +1,1,a-pcom-i3,2021-22,Peabody - Captain Samuel Brown,2290005,0,1.3,0,98.7,0,0,0,94.6,5.4,74.8 +1,1,a-pcom-i3,2021-22,Peabody - Center,2290015,0,2.4,0,97.6,0,0,0,91.9,8.1,41.1 +1,1,a-pcom-i3,2021-22,Peabody - J Henry Higgins Middle,2290305,0,0,1.3,98.7,0,0,0,71.8,28.2,152.6 +1,1,a-pcom-i3,2021-22,Peabody - John E Burke,2290007,0,0,2.7,97.3,0,0,0,98.7,1.3,37.6 +1,1,a-pcom-i3,2021-22,Peabody - John E. McCarthy,2290016,0,0,1,97.1,0,0,1.9,96.2,3.8,52.6 +1,1,a-pcom-i3,2021-22,Peabody - Peabody Personalized Remote Education Program (Peabody P.R.E.P.),2290705,0,0,0,100,0,0,0,35.3,64.7,6.8 +1,1,a-pcom-i3,2021-22,Peabody - Peabody Veterans Memorial High,2290510,0,0,2.3,97.2,0,0,0.6,61.4,38.6,176 +1,1,a-pcom-i3,2021-22,Peabody - South Memorial,2290035,0,0,0,100,0,0,0,91.7,8.3,38.6 +1,1,a-pcom-i3,2021-22,Peabody - Thomas Carroll,2290010,0,1.9,0,98.1,0,0,0,94.4,5.6,53.9 +1,1,a-pcom-i3,2021-22,Peabody - West Memorial,2290045,0,0,2.4,97.6,0,0,0,95.6,4.4,40.9 +1,1,a-pcom-i3,2021-22,Peabody - William A Welch Sr,2290027,0,0,2.5,97.5,0,0,0,90.1,9.9,40.3 +3.8125,3.81,a-pcom-i3,2021-22,Pelham - Pelham Elementary,2300005,0,4.6,7.6,87.8,0,0,0,87.8,12.2,26.2 +1,1,a-pcom-i3,2021-22,Pembroke - Bryantville Elementary,2310003,0,2.2,0,97.8,0,0,0,88.1,11.9,45.3 +1,1,a-pcom-i3,2021-22,Pembroke - Hobomock Elementary,2310010,0,0,0,100,0,0,0,90.3,9.7,55.6 +1,1,a-pcom-i3,2021-22,Pembroke - North Pembroke Elementary,2310015,0,0,0,100,0,0,0,93.6,6.4,52.8 +1,1,a-pcom-i3,2021-22,Pembroke - Pembroke Community Middle School,2310305,0,0,0,100,0,0,0,86.6,13.4,47.8 +1,1,a-pcom-i3,2021-22,Pembroke - Pembroke High School,2310505,0,0,0,100,0,0,0,73,27,82.6 +1,1,a-pcom-i3,2021-22,Pentucket - Dr Frederick N Sweetsir,7450020,0,0,0,99.1,0,0.9,0,94.5,5.5,45.7 +1,1,a-pcom-i3,2021-22,Pentucket - Dr John C Page School,7450015,0,0,0,99.5,0,0,0.5,92.7,7.3,47.1 +1.125,1.12,a-pcom-i3,2021-22,Pentucket - Elmer S Bagnall,7450005,0,0,1.6,96.4,0,0,2,97.7,2.3,63.1 +1.25,1.25,a-pcom-i3,2021-22,Pentucket - Helen R Donaghue School,7450010,0,0,2.4,96,0,1,0.6,87.9,12.1,41 +1.09375,1.09,a-pcom-i3,2021-22,Pentucket - Pentucket Regional Middle,7450405,0,0,3.1,96.5,0,0,0.4,80.7,19.3,46.1 +1.0625,1.06,a-pcom-i3,2021-22,Pentucket - Pentucket Regional Sr High,7450505,0,0,1.8,96.6,1.3,0,0.3,61.3,38.7,76.9 +1,1,a-pcom-i3,2021-22,Petersham - Petersham Center,2340005,0,0,0,100,0,0,0,91.8,8.2,24.5 +15.4375,5,a-pcom-i3,2021-22,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,7,5.3,37.1,50.6,0,0,0,73.5,26.5,18.9 +18.25,5,a-pcom-i3,2021-22,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,54,0,4.4,41.6,0,0,0,69.3,30.7,22.8 +16.5,5,a-pcom-i3,2021-22,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,26.1,12.4,14.4,47.2,0,0,0,70.8,29.2,24.3 +3.875,3.88,a-pcom-i3,2021-22,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,2.7,2.1,7.6,87.6,0,0,0,66,34,96 +10.375,5,a-pcom-i3,2021-22,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,7.7,14.9,10.6,66.8,0,0,0,50.7,49.3,47.1 +1,1,a-pcom-i3,2021-22,Pioneer Valley - Bernardston Elementary,7500006,0,0,0,100,0,0,0,98.4,1.6,39.9 +1,1,a-pcom-i3,2021-22,Pioneer Valley - Northfield Elementary,7500008,0,0,0,100,0,0,0,96.8,3.2,39.6 +1,1,a-pcom-i3,2021-22,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,1.8,98.2,0,0,0,71.4,28.6,56.9 +14.71875,5,a-pcom-i3,2021-22,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,2,42.4,1.6,52.9,0,0,1,81.8,18.2,99 +6.4375,5,a-pcom-i3,2021-22,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,9.3,2.7,6,79.4,0,0,2.7,60.8,39.2,75.2 +1.53125,1.53,a-pcom-i3,2021-22,Pittsfield - Allendale,2360010,0,2.5,2.5,95.1,0,0,0,98.8,1.2,40.7 +3.03125,3.03,a-pcom-i3,2021-22,Pittsfield - Crosby,2360065,3.5,0,4.4,90.3,0,0,1.8,87.6,12.4,56.6 +4.3125,4.31,a-pcom-i3,2021-22,Pittsfield - Crosby Educational Academy,2360030,6.9,0,6.9,86.2,0,0,0,86.2,13.8,14.5 +4.5625,4.56,a-pcom-i3,2021-22,Pittsfield - Eagle Education Academy,2360525,12.5,0,2.1,85.4,0,0,0,60.3,39.7,16 +1.4375,1.44,a-pcom-i3,2021-22,Pittsfield - Egremont,2360035,0,1.5,3.1,95.4,0,0,0,98.5,1.5,64.8 +2.40625,2.41,a-pcom-i3,2021-22,Pittsfield - John T Reid Middle,2360305,1.3,2.6,3.8,92.3,0,0,0,54.8,45.2,78.1 +3.1875,3.19,a-pcom-i3,2021-22,Pittsfield - Morningside Community School,2360055,7.9,1.6,0.8,89.8,0,0,0,96.8,3.2,63.4 +2.4375,2.44,a-pcom-i3,2021-22,Pittsfield - Pittsfield High,2360505,2.5,0,3.6,92.2,0.8,0,0.8,68.8,31.2,120 +1,1,a-pcom-i3,2021-22,Pittsfield - Pittsfield Public Virtual Academy,2360705,0,0,0,100,0,0,0,48.9,51.1,7.8 +1,1,a-pcom-i3,2021-22,Pittsfield - Robert T. Capeless Elementary School,2360045,3,0,0,97,0,0,0,97.7,2.3,33.4 +2.5,2.5,a-pcom-i3,2021-22,Pittsfield - Silvio O Conte Community,2360105,1.6,0,4.8,92,0,0,1.6,90.9,9.1,62.9 +1,1,a-pcom-i3,2021-22,Pittsfield - Stearns,2360090,0,2,0,98,0,0,0,96.1,3.9,50.8 +2.09375,2.09,a-pcom-i3,2021-22,Pittsfield - Taconic High,2360510,0,0,5.9,93.3,0,0,0.8,57.6,42.4,119.5 +2.53125,2.53,a-pcom-i3,2021-22,Pittsfield - Theodore Herberg Middle,2360310,3.8,1.3,3,91.9,0,0,0,70.4,29.6,78.5 +1,1,a-pcom-i3,2021-22,Pittsfield - Williams,2360100,0,0,0,100,0,0,0,93.2,6.8,44 +1,1,a-pcom-i3,2021-22,Plainville - Anna Ware Jackson,2380010,0,0,0,100,0,0,0,98.2,1.8,55 +1,1,a-pcom-i3,2021-22,Plainville - Beatrice H Wood Elementary,2380005,0,2.8,0,97.2,0,0,0,88.7,11.3,35.3 +1,1,a-pcom-i3,2021-22,Plymouth - Cold Spring,2390005,0,0,0,100,0,0,0,100,0,33.4 +1.0625,1.06,a-pcom-i3,2021-22,Plymouth - Federal Furnace School,2390011,0.9,0,2.5,96.6,0,0,0,86.5,13.5,63.6 +1,1,a-pcom-i3,2021-22,Plymouth - Hedge,2390010,0,0,0,100,0,0,0,95.7,4.3,32.6 +1,1,a-pcom-i3,2021-22,Plymouth - Indian Brook,2390012,0,0,1.3,97.9,0,0.7,0,96.9,3.1,76 +1,1,a-pcom-i3,2021-22,Plymouth - Manomet Elementary,2390015,0,0,0,100,0,0,0,97.1,2.9,34.9 +1,1,a-pcom-i3,2021-22,Plymouth - Nathaniel Morton Elementary,2390030,0,0,0,100,0,0,0,94.8,5.2,72.4 +1.5625,1.56,a-pcom-i3,2021-22,Plymouth - Plymouth Commun Intermediate,2390405,2.5,0.8,1.7,95,0,0,0,83.2,16.8,120.7 +1,1,a-pcom-i3,2021-22,Plymouth - Plymouth Early Childhood Center,2390003,0,0,1.5,98.5,0,0,0,97.1,2.9,34.7 +1,1,a-pcom-i3,2021-22,Plymouth - Plymouth North High,2390505,0.6,0,0.6,98.8,0,0,0,67,33,161.4 +1,1,a-pcom-i3,2021-22,Plymouth - Plymouth South High,2390515,0.6,1.3,0,97.4,0.6,0,0,65.5,34.5,154.2 +1,1,a-pcom-i3,2021-22,Plymouth - Plymouth South Middle,2390305,0.6,1.1,1.1,97.1,0,0,0,79.3,20.7,88.1 +1,1,a-pcom-i3,2021-22,Plymouth - South Elementary,2390046,1.2,0,1.2,97.6,0,0,0,97.4,2.6,84.1 +1,1,a-pcom-i3,2021-22,Plymouth - West Elementary,2390047,0,0,0,98.2,0,1.8,0,92.4,7.6,54.2 +1,1,a-pcom-i3,2021-22,Plympton - Dennett Elementary,2400010,0,0,0,100,0,0,0,97,3,33 +9.125,5,a-pcom-i3,2021-22,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,13.7,4.5,8.1,70.8,0,0,2.9,78.8,21.2,172.7 +1,1,a-pcom-i3,2021-22,Provincetown - Provincetown Schools,2420020,0,0,0,100,0,0,0,72.4,27.6,41.6 +1,1,a-pcom-i3,2021-22,Quabbin - Hardwick Elementary,7530005,0,0,0,100,0,0,0,87.1,12.9,28.6 +1.96875,1.97,a-pcom-i3,2021-22,Quabbin - Hubbardston Center,7530010,0,3,3.3,93.7,0,0,0,97,3,30.2 +1,1,a-pcom-i3,2021-22,Quabbin - New Braintree Grade,7530020,0,0,0,100,0,0,0,100,0,11.3 +1.875,1.88,a-pcom-i3,2021-22,Quabbin - Oakham Center,7530025,0,0,6,94,0,0,0,83.8,16.2,16.6 +1.0625,1.06,a-pcom-i3,2021-22,Quabbin - Quabbin Regional High School,7530505,0,1.2,1.2,96.6,0,0,1,71.8,28.2,81.7 +1,1,a-pcom-i3,2021-22,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,99.6,0,0,0.4,77.7,22.3,55.5 +1.03125,1.03,a-pcom-i3,2021-22,Quabbin - Ruggles Lane,7530030,1.6,0,1.6,96.7,0,0,0,93.6,6.4,60.8 +1,1,a-pcom-i3,2021-22,Quaboag Regional - Quaboag Regional High,7780505,0,0.6,0,99.4,0,0,0,60,40,54.3 +1,1,a-pcom-i3,2021-22,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,100,0,0,0,62.1,37.9,15.5 +1,1,a-pcom-i3,2021-22,Quaboag Regional - Warren Elementary,7780005,0,0.5,0,99.5,0,0,0,90.1,9.9,60.7 +1,1,a-pcom-i3,2021-22,Quaboag Regional - West Brookfield Elementary,7780010,0,0.8,0,99.2,0,0,0,93.7,6.3,39.8 +3.1875,3.19,a-pcom-i3,2021-22,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,0,5.5,0,89.8,0,0,4.8,100,0,42.1 +1,1,a-pcom-i3,2021-22,Quincy - Atherton Hough,2430040,0,2.7,0,97.3,0,0,0,96,4,45 +3.875,3.88,a-pcom-i3,2021-22,Quincy - Atlantic Middle,2430305,0,8.4,2,87.6,0,0,2,74.9,25.1,49.8 +1.59375,1.59,a-pcom-i3,2021-22,Quincy - Beechwood Knoll Elementary,2430020,0,5.1,0,94.9,0,0,0,96.6,3.4,29.3 +1.3125,1.31,a-pcom-i3,2021-22,Quincy - Broad Meadows Middle,2430310,0,1.7,0,95.8,0,0,2.5,73.9,26.1,41.1 +1,1,a-pcom-i3,2021-22,Quincy - Central Middle,2430315,0,1.8,0,98.2,0,0,0,75.3,24.7,57 +1,1,a-pcom-i3,2021-22,Quincy - Charles A Bernazzani Elementary,2430025,0,1.9,0,98.1,0,0,0,87.8,12.2,31 +1,1,a-pcom-i3,2021-22,Quincy - Clifford H Marshall Elementary,2430055,0,3.1,0,96.9,0,0,0,98.4,1.6,63.6 +4.59375,4.59,a-pcom-i3,2021-22,Quincy - Francis W Parker,2430075,0,14.7,0,85.3,0,0,0,90.6,9.4,40.8 +3.1875,3.19,a-pcom-i3,2021-22,Quincy - Lincoln-Hancock Community School,2430035,3.4,5.1,0,89.8,0,0,1.7,97.6,2.4,58.6 +2.6875,2.69,a-pcom-i3,2021-22,Quincy - Merrymount,2430060,0,5.9,2.7,91.4,0,0,0,94.6,5.4,37.1 +4.6875,4.69,a-pcom-i3,2021-22,Quincy - Montclair,2430065,0,15,0,85,0,0,0,96.6,3.4,46.9 +3.59375,3.59,a-pcom-i3,2021-22,Quincy - North Quincy High,2430510,1.5,4.8,0.7,88.5,0,0,4.5,63.3,36.7,134.6 +2.0625,2.06,a-pcom-i3,2021-22,Quincy - Point Webster Middle,2430325,2.2,4.4,0,93.4,0,0,0,85.8,14.2,45.3 +2.5,2.5,a-pcom-i3,2021-22,Quincy - Quincy High,2430505,1.2,4.5,1.2,92,0,0,1.2,62,38,167.9 +3.40625,3.41,a-pcom-i3,2021-22,Quincy - Snug Harbor Community School,2430090,1.1,7.5,0,89.1,0,0,2.4,91.7,8.3,83.2 +1,1,a-pcom-i3,2021-22,Quincy - South West Middle School,2430320,0,0,0,100,0,0,0,81.2,18.8,49.2 +1,1,a-pcom-i3,2021-22,Quincy - Squantum,2430095,0.8,1.9,0,97.3,0,0,0,92.9,7.1,52.2 +2.28125,2.28,a-pcom-i3,2021-22,Quincy - Wollaston School,2430110,1.5,5.8,0,92.7,0,0,0,94.2,5.8,34.4 +1.03125,1.03,a-pcom-i3,2021-22,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,1.2,2.1,96.7,0,0,0,72.3,27.7,86.9 +10.71875,5,a-pcom-i3,2021-22,Randolph - Elizabeth G Lyons Elementary,2440020,21.2,6.2,2,65.7,2.5,0,2.5,82.7,17.3,40.6 +8.65625,5,a-pcom-i3,2021-22,Randolph - J F Kennedy Elementary,2440018,17.4,2.9,7.3,72.3,0,0,0,89.3,10.7,91.8 +4,4,a-pcom-i3,2021-22,Randolph - Margaret L Donovan,2440015,4.1,4.6,4.1,87.2,0,0,0,92.6,7.4,49.3 +7,5,a-pcom-i3,2021-22,Randolph - Martin E Young Elementary,2440040,13.2,1.2,3.1,77.6,0,0,4.9,91.6,8.4,40.8 +9.53125,5,a-pcom-i3,2021-22,Randolph - Randolph Community Middle,2440410,28.5,2.1,0,69.5,0,0,0,67.9,32.1,77.6 +6.4375,5,a-pcom-i3,2021-22,Randolph - Randolph High,2440505,10.9,4.8,4.8,79.4,0,0,0,67.5,32.5,82.6 +1,1,a-pcom-i3,2021-22,Reading - Alice M Barrows,2460002,0,0,0.3,99.7,0,0,0,97.8,2.2,49.3 +1,1,a-pcom-i3,2021-22,Reading - Arthur W Coolidge Middle,2460305,0,0,1.6,98.4,0,0,0,81.7,18.3,65.6 +1,1,a-pcom-i3,2021-22,Reading - Birch Meadow,2460005,0,0,0.3,99.7,0,0,0,95.3,4.7,67.4 +1,1,a-pcom-i3,2021-22,Reading - J Warren Killam,2460017,0,0,0,100,0,0,0,95.5,4.5,44.7 +1.8125,1.81,a-pcom-i3,2021-22,Reading - Joshua Eaton,2460010,0,3,0.6,94.2,0,0,2.1,93.9,6.1,48 +1.1875,1.19,a-pcom-i3,2021-22,Reading - RISE PreSchool,2460001,0,3.3,0.5,96.2,0,0,0,98.6,1.4,28.3 +1,1,a-pcom-i3,2021-22,Reading - Reading Memorial High,2460505,0.8,0.8,0.1,97.7,0.7,0,0,67.2,32.8,129.7 +1,1,a-pcom-i3,2021-22,Reading - Walter S Parker Middle,2460310,0,1.5,0.1,98.5,0,0,0,78,22,68.3 +1,1,a-pcom-i3,2021-22,Reading - Wood End Elementary School,2460020,0,0,0,100,0,0,0,96.3,3.7,48.2 +1.53125,1.53,a-pcom-i3,2021-22,Revere - A. C. Whelan Elementary School,2480003,0.6,1.2,3.1,95.1,0,0,0,88.1,11.9,82.8 +2.71875,2.72,a-pcom-i3,2021-22,Revere - Abraham Lincoln,2480025,0,1.4,7.3,91.3,0,0,0,90.9,9.1,69.9 +2.375,2.37,a-pcom-i3,2021-22,Revere - Beachmont Veterans Memorial School,2480013,0,1.2,6.4,92.4,0,0,0,88.3,11.7,56.4 +3.53125,3.53,a-pcom-i3,2021-22,Revere - Garfield Elementary School,2480056,1.6,5,3.2,88.7,0.5,0,1,92.2,7.8,96.1 +4.40625,4.41,a-pcom-i3,2021-22,Revere - Garfield Middle School,2480057,0.8,4.9,8.4,85.9,0,0,0,62.2,37.8,60.8 +1,1,a-pcom-i3,2021-22,Revere - Paul Revere,2480050,0,0.9,2,97.1,0,0,0,94.5,5.5,54.9 +5,5,a-pcom-i3,2021-22,Revere - Revere High,2480505,3.6,2.2,8,84,0.7,0,1.6,61.2,38.6,208.5 +3.0625,3.06,a-pcom-i3,2021-22,Revere - Rumney Marsh Academy,2480014,5.2,0,3.4,90.2,0,0,1.3,76.1,23.9,77.3 +4.59375,4.59,a-pcom-i3,2021-22,Revere - Seacoast School,2480520,8.9,0,4.9,85.3,0,0,0.9,63.4,36.6,22.3 +2.40625,2.41,a-pcom-i3,2021-22,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,0,3.3,92.3,0,1.3,3.2,94.3,5.7,78.8 +3.125,3.13,a-pcom-i3,2021-22,Revere - Susan B. Anthony Middle School,2480305,4.2,1.4,3,90,0,0,1.4,66.3,33,70.7 +1,1,a-pcom-i3,2021-22,Richmond - Richmond Consolidated,2490005,0,0,1.1,98.9,0,0,0,87.2,12.8,35.5 +3.03125,3.03,a-pcom-i3,2021-22,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,2.4,2.4,4.8,90.3,0,0,0,70.1,29.9,82.6 +1.3125,1.31,a-pcom-i3,2021-22,River Valley Charter (District) - River Valley Charter School,4820050,0,0,0,95.8,0,0,4.2,81.8,18.2,47.8 +1,1,a-pcom-i3,2021-22,Rochester - Rochester Memorial,2500005,3.1,0,0,96.9,0,0,0,89.2,10.8,65.1 +1,1,a-pcom-i3,2021-22,Rockland - Jefferson Elementary School,2510060,0,0,0,100,0,0,0,94.3,5.7,47.4 +1,1,a-pcom-i3,2021-22,Rockland - John W Rogers Middle,2510305,0,0,1.2,98.8,0,0,0,84,16,83.8 +1,1,a-pcom-i3,2021-22,Rockland - Memorial Park,2510020,0,0,0,100,0,0,0,97.8,2.2,45.3 +1.84375,1.84,a-pcom-i3,2021-22,Rockland - R Stewart Esten,2510025,0,0,3.9,94.1,0,0,2,94.4,5.6,50.7 +1.09375,1.09,a-pcom-i3,2021-22,Rockland - Rockland Senior High,2510505,0,0,2.3,96.5,0,0,1.2,66.4,33.6,85.2 +1,1,a-pcom-i3,2021-22,Rockport - Rockport Elementary,2520005,0,0,0,100,0,0,0,93.3,6.7,60 +1,1,a-pcom-i3,2021-22,Rockport - Rockport High,2520510,0,0,0,100,0,0,0,73,27,45.1 +1,1,a-pcom-i3,2021-22,Rockport - Rockport Middle,2520305,0,2.4,0,97.6,0,0,0,72,28,42.5 +2.09375,2.09,a-pcom-i3,2021-22,Rowe - Rowe Elementary,2530005,0,0,6.7,93.3,0,0,0,85.5,14.5,17.9 +13.28125,5,a-pcom-i3,2021-22,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,20.1,5.1,12.2,57.5,0,0,5.1,65.6,33.3,177.9 +2.125,2.12,a-pcom-i3,2021-22,Salem - Bates,2580003,3.1,0,3.7,93.2,0,0,0,85.2,14.8,64.4 +9.78125,5,a-pcom-i3,2021-22,Salem - Bentley Academy Innovation School,2580010,3.5,0,27.9,68.7,0,0,0,87.8,12.2,57.4 +1,1,a-pcom-i3,2021-22,Salem - Carlton,2580015,0,2.3,0,97.7,0,0,0,91.3,8.7,47.1 +5.21875,5,a-pcom-i3,2021-22,Salem - Collins Middle,2580305,2,2,12.7,83.3,0,0,0,70.1,29.9,99.9 +4.40625,4.41,a-pcom-i3,2021-22,Salem - Horace Mann Laboratory,2580030,0,1.9,12.2,85.9,0,0,0,94.2,5.8,51.3 +10.84375,5,a-pcom-i3,2021-22,Salem - New Liberty Innovation School,2580510,0,0,34.7,65.3,0,0,0,76.7,23.3,11.4 +2.375,2.37,a-pcom-i3,2021-22,Salem - Salem Early Childhood,2580001,2.5,0,5,92.4,0,0,0,99.7,0.3,39.7 +4.53125,4.53,a-pcom-i3,2021-22,Salem - Salem High,2580505,3.7,1.9,8.9,85.5,0,0,0,70.3,29.7,167.9 +1,1,a-pcom-i3,2021-22,Salem - Salem Prep High School,2580515,0,0,0,100,0,0,0,67.3,32.7,10.4 +2.71875,2.72,a-pcom-i3,2021-22,Salem - Saltonstall School,2580050,1.6,0.8,6.3,91.3,0,0,0,92,8,63.4 +2.125,2.12,a-pcom-i3,2021-22,Salem - Witchcraft Heights,2580070,0.2,0,5.4,93.2,0,0,1.2,92.9,7.1,80.4 +7.4375,5,a-pcom-i3,2021-22,Salem Academy Charter (District) - Salem Academy Charter School,4850485,5.3,0,18.5,76.2,0,0,0,67,33,75.8 +1,1,a-pcom-i3,2021-22,Sandwich - Forestdale School,2610002,0,0.9,0.9,98.2,0,0,0,94.6,5.4,111.8 +1,1,a-pcom-i3,2021-22,Sandwich - Oak Ridge,2610025,0,0,0.8,98.4,0.8,0,0,93.8,6.2,121.3 +1,1,a-pcom-i3,2021-22,Sandwich - Sandwich High,2610505,0,0,2.9,97.1,0,0,0,66.5,33.5,89.3 +1.78125,1.78,a-pcom-i3,2021-22,Sandwich - Sandwich STEM Academy,2610305,1.8,0,2.1,94.3,0,0,1.8,80.4,19.6,56.3 +1.15625,1.16,a-pcom-i3,2021-22,Saugus - Belmonte STEAM Academy,2620060,0,0,3.7,96.3,0,0,0,95.1,4.9,82 +1.53125,1.53,a-pcom-i3,2021-22,Saugus - Saugus High,2620505,1.5,0,3.4,95.1,0,0,0,60.9,39.1,66.9 +1,1,a-pcom-i3,2021-22,Saugus - Saugus Middle School,2620305,0,0,1.5,98.5,0,0,0,74.2,25.8,67.6 +1,1,a-pcom-i3,2021-22,Saugus - Veterans Early Learning Center,2620065,0,0,0,97.4,0,1.1,1.5,97,3,67.7 +1,1,a-pcom-i3,2021-22,Savoy - Emma L Miller Elementary School,2630010,0,0,0,100,0,0,0,91.5,8.5,14.2 +1,1,a-pcom-i3,2021-22,Scituate - Cushing Elementary,2640007,0,0,0,100,0,0,0,87.4,12.6,45.3 +1,1,a-pcom-i3,2021-22,Scituate - Gates Middle School,2640305,1.2,1.2,0,97.5,0,0,0,78.8,21.2,80.8 +1,1,a-pcom-i3,2021-22,Scituate - Hatherly Elementary,2640010,0,0,0,100,0,0,0,94,6,49.8 +1,1,a-pcom-i3,2021-22,Scituate - Jenkins Elementary School,2640015,0,0,0,100,0,0,0,92.5,7.5,53.6 +1.125,1.12,a-pcom-i3,2021-22,Scituate - Scituate High School,2640505,1,1,0,96.4,0,0.6,1,67.2,32.8,101.4 +1,1,a-pcom-i3,2021-22,Scituate - Wampatuck Elementary,2640020,0,0,0,100,0,0,0,96.4,3.6,64.6 +1,1,a-pcom-i3,2021-22,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,1.5,1.5,0,97.1,0,0,0,77.9,22.1,68 +1,1,a-pcom-i3,2021-22,Seekonk - George R Martin,2650007,0,0,0,100,0,0,0,88.6,11.4,70.2 +2.28125,2.28,a-pcom-i3,2021-22,Seekonk - Mildred Aitken School,2650015,1.5,1.5,1.5,92.7,0,0,2.9,92.7,7.3,68.7 +1,1,a-pcom-i3,2021-22,Seekonk - Seekonk High,2650505,1.3,0,0,97.4,0,0,1.3,69.3,30.7,76.1 +2.125,2.12,a-pcom-i3,2021-22,Sharon - Cottage Street,2660005,1.6,3.1,2.1,93.2,0,0,0,93,7,63.9 +1.1875,1.19,a-pcom-i3,2021-22,Sharon - East Elementary,2660010,0,0,2.2,96.2,0,0,1.6,94.1,5.9,62.1 +2.71875,2.72,a-pcom-i3,2021-22,Sharon - Heights Elementary,2660015,5.5,2.8,0.4,91.3,0,0,0,89.4,10.6,72.4 +1,1,a-pcom-i3,2021-22,Sharon - Sharon Early Childhood Center,2660001,0,0,0,100,0,0,0,100,0,17.1 +1.46875,1.47,a-pcom-i3,2021-22,Sharon - Sharon High,2660505,0,4,0.7,95.3,0,0,0,71.3,28.7,150.4 +1.40625,1.41,a-pcom-i3,2021-22,Sharon - Sharon Middle,2660305,0,2.7,0,95.5,0.9,0.9,0,83.7,16.3,110.3 +1,1,a-pcom-i3,2021-22,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,1,1,97.9,0,0,0,58.9,41.1,194.5 +1.84375,1.84,a-pcom-i3,2021-22,Sherborn - Pine Hill,2690010,1.6,1.5,1.2,94.1,0,0,1.5,97.5,2.5,65.7 +3.03125,3.03,a-pcom-i3,2021-22,Shrewsbury - Calvin Coolidge School,2710015,4.7,1.9,1.6,90.3,0,0,1.6,96.9,3.1,64.2 +3.46875,3.47,a-pcom-i3,2021-22,Shrewsbury - Floral Street School,2710020,2.1,4.9,2.1,88.9,1,1,0,94.8,5.2,96.1 +3.65625,3.66,a-pcom-i3,2021-22,Shrewsbury - Major Howard W. Beal School,2710005,2.4,7.2,2.2,88.3,0,0,0,96.5,3.5,85.1 +3.40625,3.41,a-pcom-i3,2021-22,Shrewsbury - Oak Middle School,2710030,0,7.5,2.5,89.1,0,0.8,0,78.5,21.5,119.7 +4.15625,4.16,a-pcom-i3,2021-22,Shrewsbury - Parker Road Preschool,2710040,2.2,11.1,0,86.7,0,0,0,100,0,45 +2.96875,2.97,a-pcom-i3,2021-22,Shrewsbury - Sherwood Middle School,2710305,0,5.2,3.4,90.5,0,0,0.9,85.2,14.8,116 +2.59375,2.59,a-pcom-i3,2021-22,Shrewsbury - Shrewsbury High School,2710505,1,2.9,2.9,91.7,0,0,1.5,71.3,28.2,203.9 +1.1875,1.19,a-pcom-i3,2021-22,Shrewsbury - Spring Street School,2710035,0,0,3.8,96.2,0,0,0,91.1,8.9,52.7 +2.46875,2.47,a-pcom-i3,2021-22,Shrewsbury - Walter J. Paton School,2710025,0,3.1,3.1,92.1,0,0,1.7,95.3,4.7,57.9 +3.34375,3.34,a-pcom-i3,2021-22,Shutesbury - Shutesbury Elementary,2720005,0,3.6,3.6,89.3,0,0,3.6,92.2,7.8,28.1 +1,1,a-pcom-i3,2021-22,Silver Lake - Silver Lake Regional High,7600505,1.4,0,0,98.6,0,0,0,73.6,26.4,143.1 +1,1,a-pcom-i3,2021-22,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,100,0,0,0,66.9,33.1,66.4 +2.96875,2.97,a-pcom-i3,2021-22,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,1.6,1.6,6.3,90.5,0,0,0,74.3,25.7,61.7 +1,1,a-pcom-i3,2021-22,Somerset - Chace Street,2730005,0,0,0.6,99.4,0,0,0,93.5,6.5,50.7 +1,1,a-pcom-i3,2021-22,Somerset - North Elementary,2730008,1.5,0,0.3,98.2,0,0,0,98.1,1.9,68.4 +1,1,a-pcom-i3,2021-22,Somerset - Somerset Middle School,2730305,0,0,3,97,0,0,0,76.9,23.1,74.9 +2.34375,2.34,a-pcom-i3,2021-22,Somerset - South,2730015,2.3,0,2.9,92.5,0,0,2.3,92.4,7.6,43.3 +1.34375,1.34,a-pcom-i3,2021-22,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0.9,0.9,2.6,95.7,0,0,0,64.2,35.8,115.8 +7.25,5,a-pcom-i3,2021-22,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,7.1,1.6,14.5,76.8,0,0,0,86.8,13.2,62.1 +7.84375,5,a-pcom-i3,2021-22,Somerville - Arthur D Healey,2740075,12.3,2.7,10.1,74.9,0,0,0,76.4,23.6,73.3 +2.46875,2.47,a-pcom-i3,2021-22,Somerville - Benjamin G Brown,2740015,2.6,0,5.3,92.1,0,0,0,84.2,15.8,19 +3.84375,3.84,a-pcom-i3,2021-22,Somerville - Capuano Early Childhood Center,2740005,1.6,1.6,9.1,87.7,0,0,0,92.1,7.9,63.4 +11.28125,5,a-pcom-i3,2021-22,Somerville - E Somerville Community,2740111,4.5,0.7,29.5,63.9,0,0,1.4,80.2,18.5,73.2 +1,1,a-pcom-i3,2021-22,Somerville - Full Circle High School,2740510,0,0,1.8,98.2,0,0,0,61.1,38.9,11.3 +4.65625,4.66,a-pcom-i3,2021-22,Somerville - John F Kennedy,2740083,3.1,4.7,6.3,85.1,0,0,0.8,80.9,19.1,63.9 +1.125,1.12,a-pcom-i3,2021-22,Somerville - Next Wave Junior High,2740410,0,0,3.6,96.4,0,0,0,78.2,21.8,5.5 +5.625,5,a-pcom-i3,2021-22,Somerville - Somerville High,2740505,5.9,1.7,8.4,82,0,0.7,1.4,62.1,37.9,181.1 +5.5,5,a-pcom-i3,2021-22,Somerville - West Somerville Neighborhood,2740115,5.9,0,9.4,82.4,0,0,2.4,83.5,16.5,42.6 +5.03125,5,a-pcom-i3,2021-22,Somerville - Winter Hill Community,2740120,3,3.9,7.9,83.9,0,0,1.3,87.8,12.2,76.2 +1,1,a-pcom-i3,2021-22,South Hadley - Michael E. Smith Middle School,2780305,0,0,1.3,97.3,0,1.3,0,72,28,75.1 +1.46875,1.47,a-pcom-i3,2021-22,South Hadley - Mosier,2780020,0,1.6,3.1,95.3,0,0,0,87.5,12.5,64.2 +1,1,a-pcom-i3,2021-22,South Hadley - Plains Elementary,2780015,0,0,1.6,98.4,0,0,0,91.8,8.2,61 +1,1,a-pcom-i3,2021-22,South Hadley - South Hadley High,2780505,0,1.3,0,97.4,1.3,0,0,70,30,76 +4.5,4.5,a-pcom-i3,2021-22,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,1.5,1.5,11.4,85.6,0,0,0,55.7,44.3,131.9 +3,3,a-pcom-i3,2021-22,South Shore Charter Public (District) - South Shore Charter Public School,4880550,6.7,0.6,0.6,90.4,0,0,1.7,72.4,27.6,161.3 +1,1,a-pcom-i3,2021-22,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,1.1,98.9,0,0,0,51.9,48.1,93.7 +1,1,a-pcom-i3,2021-22,Southampton - William E Norris,2750005,0,0,0,96.9,0,0,3.1,89.5,10.5,65.6 +1,1,a-pcom-i3,2021-22,Southborough - Albert S. Woodward Memorial School,2760050,0,2.4,0,97.6,0,0,0,95.3,4.7,42.4 +1.46875,1.47,a-pcom-i3,2021-22,Southborough - Margaret A Neary,2760020,0,2.4,2.4,95.3,0,0,0,90.5,9.5,42.2 +3.28125,3.28,a-pcom-i3,2021-22,Southborough - Mary E Finn School,2760008,0,7.5,3,89.5,0,0,0,95.5,4.5,66.9 +1.3125,1.31,a-pcom-i3,2021-22,Southborough - P Brent Trottier,2760305,0,0,2.8,95.8,1.4,0,0,80.3,19.7,71.1 +9.28125,5,a-pcom-i3,2021-22,Southbridge - Charlton Street,2770005,10.5,0,17.5,70.3,0,0,1.7,87.8,12.2,57.3 +7.5,5,a-pcom-i3,2021-22,Southbridge - Eastford Road,2770010,1.6,0,22.4,76,0,0,0,88.8,11.2,62.5 +9.65625,5,a-pcom-i3,2021-22,Southbridge - Southbridge Academy,2770525,8.1,0,22.8,69.1,0,0,0,54.5,45.5,30.8 +7.09375,5,a-pcom-i3,2021-22,Southbridge - Southbridge High School,2770515,4.3,0,18.4,77.3,0,0,0,67.5,32.5,70.5 +9.34375,5,a-pcom-i3,2021-22,Southbridge - Southbridge Middle School,2770315,0,3.3,26.6,70.1,0,0,0,70.9,29.1,60.2 +5,5,a-pcom-i3,2021-22,Southbridge - West Street,2770020,0,0,14.4,84,0,0,1.6,93.6,6.4,62.5 +4.21875,4.22,a-pcom-i3,2021-22,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,7.7,2.1,3.2,86.5,0,0,0.5,60.3,39.7,189 +3.6875,3.69,a-pcom-i3,2021-22,Southern Berkshire - Mt Everett Regional,7650505,2.9,5.8,1.7,88.2,0,0,1.4,67,33,69.3 +2.875,2.88,a-pcom-i3,2021-22,Southern Berkshire - New Marlborough Central,7650018,0,0,2.1,90.8,7,0,0,88.7,11.3,14.2 +1.25,1.25,a-pcom-i3,2021-22,Southern Berkshire - South Egremont,7650030,0,0,4,96,0,0,0,48,52,2.5 +1,1,a-pcom-i3,2021-22,Southern Berkshire - Undermountain,7650035,0,0,3.2,96.8,0,0,0,95.3,4.7,50.9 +1,1,a-pcom-i3,2021-22,Southern Worcester County Regional Vocational School District - Bay Path Regional Vocational Technical High School,8760605,0,0,1.2,97.6,0,0.6,0.6,57.6,42.4,164.9 +1,1,a-pcom-i3,2021-22,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,1.6,98.4,0,0,0,90.1,9.9,62.7 +1.9375,1.94,a-pcom-i3,2021-22,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,4.1,93.8,0,0,2.1,69.1,30.9,96.6 +1,1,a-pcom-i3,2021-22,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,0,0,0,100,0,0,0,97.5,2.5,63.5 +1,1,a-pcom-i3,2021-22,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,100,0,0,0,56.9,43.1,35.4 +1.1875,1.19,a-pcom-i3,2021-22,Spencer-E Brookfield - East Brookfield Elementary,7670008,2.5,0,1.3,96.2,0,0,0,89.3,10.7,39.8 +1,1,a-pcom-i3,2021-22,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,2.2,97.8,0,0,0,74.7,25.3,44.5 +1,1,a-pcom-i3,2021-22,Spencer-E Brookfield - Wire Village School,7670040,0,0,0.8,99.2,0,0,0,90,10,64.6 +8.34375,5,a-pcom-i3,2021-22,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,4.1,0,22.6,73.3,0,0,0,93.8,6.2,48.6 +5.28125,5,a-pcom-i3,2021-22,Springfield - Alice B Beal Elementary,2810175,8.4,2.8,5.6,83.1,0,0,0,92.1,7.9,35.6 +6.1875,5,a-pcom-i3,2021-22,Springfield - Arthur T Talmadge,2810165,4.9,2.5,9.9,80.2,0,0,2.5,91.5,8.5,40.5 +9.8125,5,a-pcom-i3,2021-22,Springfield - Brightwood,2810025,1.7,0,29.7,68.6,0,0,0,84.9,15.1,57.8 +21.34375,5,a-pcom-i3,2021-22,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,44.5,1.5,19.4,31.7,0,0,3,69.4,30.6,67.1 +15.9375,5,a-pcom-i3,2021-22,Springfield - Conservatory of the Arts,2810475,20.4,2,26.5,49,0,0,2,73.5,26.5,49 +6.1875,5,a-pcom-i3,2021-22,Springfield - Daniel B Brunton,2810035,6.6,0,11.6,80.2,0,0,1.7,93.4,6.6,60.6 +13.8125,5,a-pcom-i3,2021-22,Springfield - Early Childhood Education Center,2810001,30.2,0,14,55.8,0,0,0,90.7,9.3,43 +10.96875,5,a-pcom-i3,2021-22,Springfield - Edward P. Boland School,2810010,9.2,0.9,22.2,64.9,0,0,2.8,87.1,12.9,108.2 +13.9375,5,a-pcom-i3,2021-22,Springfield - Elias Brookings,2810030,23.3,5.3,16,55.4,0,0,0,91.1,8.9,56.3 +9.3125,5,a-pcom-i3,2021-22,Springfield - Emergence Academy,2810318,9.6,0,20.2,70.2,0,0,0,70.2,29.8,10.4 +5.5,5,a-pcom-i3,2021-22,Springfield - Forest Park Middle,2810325,7.4,1.5,8.8,82.4,0,0,0,66.2,33.8,68 +19.6875,5,a-pcom-i3,2021-22,Springfield - Frank H Freedman,2810075,41,2.2,19.8,37,0,0,0,82.8,17.2,45.4 +8.15625,5,a-pcom-i3,2021-22,Springfield - Frederick Harris,2810080,5.6,1.1,19.4,73.9,0,0,0,93.2,6.8,88.6 +31.25,5,a-pcom-i3,2021-22,Springfield - Gateway to College at Holyoke Community College,2810575,100,0,0,0,0,0,0,100,0,0.2 +31.25,5,a-pcom-i3,2021-22,Springfield - Gateway to College at Springfield Technical Community College,2810580,100,0,0,0,0,0,0,100,0,0.2 +13.0625,5,a-pcom-i3,2021-22,Springfield - German Gerena Community School,2810195,3.7,0,38.1,58.2,0,0,0,89.6,10.4,107.6 +5.71875,5,a-pcom-i3,2021-22,Springfield - Glenwood,2810065,6.6,0,11.7,81.7,0,0,0,97.7,2.3,42.6 +9.3125,5,a-pcom-i3,2021-22,Springfield - Glickman Elementary,2810068,7.6,0,22.1,70.2,0,0,0,88.3,11.7,49.7 +16.75,5,a-pcom-i3,2021-22,Springfield - High School Of Commerce,2810510,33.1,2.2,16.2,46.4,0,0,2.1,64.4,35.6,190.2 +8.90625,5,a-pcom-i3,2021-22,Springfield - Hiram L Dorman,2810050,23.3,0,5.2,71.5,0,0,0,89.6,10.4,38.6 +6.0625,5,a-pcom-i3,2021-22,Springfield - Homer Street,2810085,10.6,0,7.1,80.6,0,0,1.8,85.9,14.1,56.6 +23.40625,5,a-pcom-i3,2021-22,Springfield - Impact Prep at Chestnut,2810366,36.9,0,38,25.1,0,0,0,78.5,21.5,39.9 +5.5,5,a-pcom-i3,2021-22,Springfield - Indian Orchard Elementary,2810100,5,1.3,10.1,82.4,0,0,1.3,93.7,6.3,79.4 +12.71875,5,a-pcom-i3,2021-22,Springfield - John F Kennedy Middle,2810328,23.2,2.7,14.8,59.3,0,0,0,66.5,33.5,75.1 +13.3125,5,a-pcom-i3,2021-22,Springfield - John J Duggan Middle,2810320,28.4,0.9,11.4,57.4,0,0.9,0.9,66.4,33.6,106.3 +3.34375,3.34,a-pcom-i3,2021-22,Springfield - Kensington International School,2810110,2.7,0,8,89.3,0,0,0,89.3,10.7,37.5 +16.90625,5,a-pcom-i3,2021-22,Springfield - Kiley Academy,2810316,44.8,0,9.4,45.9,0,0,0,64.1,35.9,42.8 +13.1875,5,a-pcom-i3,2021-22,Springfield - Kiley Prep,2810315,42.2,0,0,57.8,0,0,0,72.4,27.6,23.9 +12.21875,5,a-pcom-i3,2021-22,Springfield - Liberty,2810115,23,0,16.1,60.9,0,0,0,93.1,6.9,43.5 +1,1,a-pcom-i3,2021-22,Springfield - Liberty Preparatory Academy,2810560,1.9,0,0,98.1,0,0,0,66.7,33.3,6.4 +14.15625,5,a-pcom-i3,2021-22,Springfield - Lincoln,2810120,17.2,0,28.1,54.7,0,0,0,85.5,14.5,64 +17.71875,5,a-pcom-i3,2021-22,Springfield - Lyceum Academy,2810317,13.3,1.7,36.7,43.3,0,0,5,63,37,60 +9.34375,5,a-pcom-i3,2021-22,Springfield - M Marcus Kiley Middle,2810330,8.2,0,21.8,70.1,0,0,0,67.4,32.6,36.7 +15.21875,5,a-pcom-i3,2021-22,Springfield - Margaret C Ells,2810060,30.8,0,17.9,51.3,0,0,0,94.9,5.1,39 +7.34375,5,a-pcom-i3,2021-22,Springfield - Mary A. Dryden Veterans Memorial School,2810125,9.4,0,14.1,76.5,0,0,0,93,7,42.6 +11.8125,5,a-pcom-i3,2021-22,Springfield - Mary M Lynch,2810140,20.1,2.9,14.8,62.2,0,0,0,88.5,11.5,34.8 +8.03125,5,a-pcom-i3,2021-22,Springfield - Mary M Walsh,2810155,10.7,2.1,12.8,74.3,0,0,0,92.4,7.6,46.7 +9.125,5,a-pcom-i3,2021-22,Springfield - Mary O Pottenger,2810145,10.9,0,18.2,70.8,0,0,0,89.1,10.9,54.8 +5.46875,5,a-pcom-i3,2021-22,Springfield - Milton Bradley School,2810023,4,0,13.4,82.5,0,0,0,93.3,6.7,74.4 +17.125,5,a-pcom-i3,2021-22,Springfield - Rebecca M Johnson,2810055,35.1,0,19.7,45.2,0,0,0,85.7,14.3,110.6 +14.46875,5,a-pcom-i3,2021-22,Springfield - Rise Academy at Van Sickle,2810480,30.5,0,15.8,53.7,0,0,0,73.2,26.8,46.5 +10.125,5,a-pcom-i3,2021-22,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,10.4,2.6,18.8,67.6,0,0,0.5,54.3,45.7,189.2 +13.96875,5,a-pcom-i3,2021-22,Springfield - STEM Middle Academy,2810350,19.6,0,25.1,55.3,0,0,0,66.5,33.5,35.8 +8.15625,5,a-pcom-i3,2021-22,Springfield - Samuel Bowles,2810020,7.1,2.4,16.6,73.9,0,0,0,81.1,18.9,42.2 +7.875,5,a-pcom-i3,2021-22,Springfield - South End Middle School,2810355,9.4,0,15.7,74.8,0,0,0,65.4,34.6,31.8 +8.3125,5,a-pcom-i3,2021-22,Springfield - Springfield Central High,2810500,11.7,2.4,11.3,73.4,0,0,1.2,55.6,44.4,248.1 +13.5625,5,a-pcom-i3,2021-22,Springfield - Springfield High School,2810570,21.6,0,21.7,56.6,0,0,0,68.2,31.8,28.3 +10.96875,5,a-pcom-i3,2021-22,Springfield - Springfield High School of Science and Technology,2810530,13.5,3.2,17.7,64.9,0,0,0.6,57.8,42.2,158.2 +6.25,5,a-pcom-i3,2021-22,Springfield - Springfield International Academy at Johnson,2810215,20,0,0,80,0,0,0,80,20,2.5 +9.3125,5,a-pcom-i3,2021-22,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,29.8,70.2,0,0,0,78.8,21.2,6.4 +3.15625,3.16,a-pcom-i3,2021-22,Springfield - Springfield Middle School,2810360,10.1,0,0,89.9,0,0,0,64,36,11.1 +12.0625,5,a-pcom-i3,2021-22,Springfield - Springfield Public Day Elementary School,2810005,16.3,0,22.3,61.4,0,0,0,95.2,4.8,31.4 +19.8125,5,a-pcom-i3,2021-22,Springfield - Springfield Public Day High School,2810550,33.7,0,29.7,36.6,0,0,0,56.8,43.2,30.5 +5.625,5,a-pcom-i3,2021-22,Springfield - Springfield Public Day Middle School,2810345,13.7,0,4.4,82,0,0,0,71.6,28.4,22.9 +22.78125,5,a-pcom-i3,2021-22,Springfield - Springfield Realization Academy,2810335,25.4,0,47.5,27.1,0,0,0,81.4,18.6,14.8 +9.8125,5,a-pcom-i3,2021-22,Springfield - Springfield Transition Academy,2810675,16.2,0,15.2,68.6,0,0,0,68.6,31.4,13.1 +8.03125,5,a-pcom-i3,2021-22,Springfield - Sumner Avenue,2810160,13.4,1.2,11,74.3,0,0,0,87.8,12.2,81.8 +12.1875,5,a-pcom-i3,2021-22,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,19.1,2.2,15.5,61,0,1.1,1.1,73.3,26.7,90.5 +8.03125,5,a-pcom-i3,2021-22,Springfield - The Springfield Virtual School,2810705,18.4,1.8,3.7,74.3,0,0,1.8,83.1,16.9,54.4 +15.625,5,a-pcom-i3,2021-22,Springfield - Thomas M Balliet,2810015,31.8,0,15.9,50,0,0,2.3,88.6,11.4,44 +9.5625,5,a-pcom-i3,2021-22,Springfield - Van Sickle Academy,2810485,10.2,0,20.4,69.4,0,0,0,73.5,26.5,49 +8.53125,5,a-pcom-i3,2021-22,Springfield - Warner,2810180,19.1,0,8.2,72.7,0,0,0,94.5,5.5,36.6 +6.25,5,a-pcom-i3,2021-22,Springfield - Washington,2810185,5.8,1.4,12.8,80,0,0,0,98.6,1.4,69 +5.125,5,a-pcom-i3,2021-22,Springfield - White Street,2810190,3.7,1.9,10.8,83.6,0,0,0,96.3,3.7,53.6 +13.03125,5,a-pcom-i3,2021-22,Springfield - William N. DeBerry,2810045,19.7,0,21.9,58.3,0,0,0,89,11,45.6 +8.59375,5,a-pcom-i3,2021-22,Springfield International Charter (District) - Springfield International Charter School,4410505,11.5,1.9,11.9,72.5,0,0,2.2,70.5,29.5,134.6 +13.21875,5,a-pcom-i3,2021-22,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,18.2,1.7,20.8,57.7,0,1.7,0,90.1,9.9,60.5 +1,1,a-pcom-i3,2021-22,Stoneham - Colonial Park,2840005,0,0,0,100,0,0,0,96,4,51 +1,1,a-pcom-i3,2021-22,Stoneham - Robin Hood,2840025,0,1.9,0,98.1,0,0,0,86.5,13.5,52.7 +1,1,a-pcom-i3,2021-22,Stoneham - South,2840030,0,2,0,98,0,0,0,89.7,10.3,50 +1.21875,1.22,a-pcom-i3,2021-22,Stoneham - Stoneham Central Middle School,2840405,1,1,0,96.1,0,0,1.9,59.9,40.1,103.8 +1,1,a-pcom-i3,2021-22,Stoneham - Stoneham High,2840505,0,0,0,100,0,0,0,77.6,22.4,94.4 +3.375,3.37,a-pcom-i3,2021-22,Stoughton - Edwin A Jones Early Childhood Center,2850012,4.8,0,5.9,89.2,0,0,0,100,0,28 +1,1,a-pcom-i3,2021-22,Stoughton - Helen Hansen Elementary,2850010,0,0,0,100,0,0,0,90,10,36.5 +1,1,a-pcom-i3,2021-22,Stoughton - Joseph H Gibbons,2850025,0,2.1,0,97.9,0,0,0,92.9,7.1,42.4 +1.0625,1.06,a-pcom-i3,2021-22,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,0,0,96.6,0,1.6,1.8,89.6,10.4,55.3 +3.5625,3.56,a-pcom-i3,2021-22,Stoughton - O'Donnell Middle School,2850405,6.3,2.2,2.9,88.6,0,0,0,82.7,17.3,101.9 +1.625,1.63,a-pcom-i3,2021-22,Stoughton - Richard L. Wilkins Elementary School,2850020,0,0,2.6,94.8,0,0,2.6,93.3,6.7,38.1 +1,1,a-pcom-i3,2021-22,Stoughton - South Elementary,2850015,0,0,0,100,0,0,0,91.8,8.2,30.2 +2.84375,2.84,a-pcom-i3,2021-22,Stoughton - Stoughton High,2850505,1.4,1.3,3.4,90.9,0.7,1.5,0.7,70.2,29.8,139.8 +1,1,a-pcom-i3,2021-22,Sturbridge - Burgess Elementary,2870005,0.7,0,0,99.3,0,0,0,93.3,6.7,135.3 +1.875,1.88,a-pcom-i3,2021-22,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,1.4,0.7,3.9,94,0,0,0,71.8,28.2,142.7 +1.6875,1.69,a-pcom-i3,2021-22,Sudbury - Ephraim Curtis Middle,2880305,0.8,0.5,2.7,94.6,0,0,1.4,72.2,27.8,126.6 +1.6875,1.69,a-pcom-i3,2021-22,Sudbury - General John Nixon Elementary,2880025,4.1,0,1.2,94.6,0,0,0,89.3,10.7,48.6 +1.90625,1.91,a-pcom-i3,2021-22,Sudbury - Israel Loring School,2880015,1.6,0,1.6,93.9,0,0,2.9,90,10,62 +1.8125,1.81,a-pcom-i3,2021-22,Sudbury - Josiah Haynes,2880010,0,3.7,2.1,94.2,0,0,0,92.6,7.4,67.6 +1.96875,1.97,a-pcom-i3,2021-22,Sudbury - Peter Noyes,2880030,0,2.3,1.7,93.7,0,0,2.3,94,6,86.7 +1.6875,1.69,a-pcom-i3,2021-22,Sunderland - Sunderland Elementary,2890005,0,3.6,1.8,94.6,0,0,0,84,16,55.1 +1,1,a-pcom-i3,2021-22,Sutton - Sutton Early Learning,2900003,0,0,0,100,0,0,0,98.8,1.2,58.1 +1,1,a-pcom-i3,2021-22,Sutton - Sutton Elementary,2900005,0,0,0,100,0,0,0,95.8,4.2,48 +1,1,a-pcom-i3,2021-22,Sutton - Sutton High School,2900510,1.9,0,0,98.1,0,0,0,60.9,39.1,53.7 +1,1,a-pcom-i3,2021-22,Sutton - Sutton Middle School,2900305,0,0,0,100,0,0,0,73.2,26.8,44 +1.25,1.25,a-pcom-i3,2021-22,Swampscott - Clarke,2910005,0,0,2.7,96,0,0,1.3,94.7,5.3,37.5 +1.9375,1.94,a-pcom-i3,2021-22,Swampscott - Hadley,2910010,0,0,4.9,93.8,0,0,1.2,92.6,7.4,40.4 +1.9375,1.94,a-pcom-i3,2021-22,Swampscott - Stanley,2910020,0,2.5,0,93.8,0,0,3.7,82.7,17.3,40.5 +2,2,a-pcom-i3,2021-22,Swampscott - Swampscott High,2910505,2.1,0,4.3,93.6,0,0,0,67,33,93.7 +1.21875,1.22,a-pcom-i3,2021-22,Swampscott - Swampscott Middle,2910305,1,1,1.9,96.1,0,0,0,85.1,14.9,103 +1,1,a-pcom-i3,2021-22,Swansea - Elizabeth S Brown,2920006,0,0,0,100,0,0,0,95,5,24.9 +1,1,a-pcom-i3,2021-22,Swansea - Gardner,2920015,0,0,0,100,0,0,0,92.3,7.7,26.1 +1,1,a-pcom-i3,2021-22,Swansea - Joseph Case High,2920505,0,1.5,0,98.5,0,0,0,47.7,52.3,65 +1,1,a-pcom-i3,2021-22,Swansea - Joseph Case Jr High,2920305,0,0,1.9,98.1,0,0,0,69.2,30.8,54 +1,1,a-pcom-i3,2021-22,Swansea - Joseph G Luther,2920020,0,0,0,100,0,0,0,88.5,11.5,28.2 +1,1,a-pcom-i3,2021-22,Swansea - Mark G Hoyle Elementary,2920017,3.2,0,0,96.8,0,0,0,91.2,8.8,31.1 +3.0625,3.06,a-pcom-i3,2021-22,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,1.2,4.6,4,90.2,0,0,0,75.4,24.6,172.9 +1,1,a-pcom-i3,2021-22,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,1.4,98.6,0,0,0,79.4,19.2,72.7 +1,1,a-pcom-i3,2021-22,Tantasqua - Tantasqua Regional Sr High,7700505,0,0,2.4,96.8,0,0,0.8,68.8,31.2,124.3 +1.90625,1.91,a-pcom-i3,2021-22,Tantasqua - Tantasqua Regional Vocational,7700605,6.1,0,0,93.9,0,0,0,36.3,63.7,16.5 +1,1,a-pcom-i3,2021-22,Taunton - Benjamin Friedman Middle,2930315,0,0,0,99.6,0,0,0.4,81.2,18.8,80.1 +1,1,a-pcom-i3,2021-22,Taunton - East Taunton Elementary,2930010,1.4,0,1.4,96.8,0,0,0.5,92.7,7.3,73 +1,1,a-pcom-i3,2021-22,Taunton - Edmund Hatch Bennett,2930007,0,0,0,100,0,0,0,93.4,6.6,38.7 +1,1,a-pcom-i3,2021-22,Taunton - Edward F. Leddy Preschool,2930005,0,0,2.8,97.2,0,0,0,100,0,35.5 +1,1,a-pcom-i3,2021-22,Taunton - Elizabeth Pole,2930027,0,0,1.8,98.2,0,0,0,94,6,67.6 +3.40625,3.41,a-pcom-i3,2021-22,Taunton - H H Galligan,2930057,5,0,5,89.1,0,0,0.8,96.7,3.3,39.8 +1,1,a-pcom-i3,2021-22,Taunton - James L. Mulcahey Elementary School,2930015,0,0,2,98,0,0,0,95,5,102.1 +3.9375,3.94,a-pcom-i3,2021-22,Taunton - John F Parker Middle,2930305,4.8,1.9,5.8,87.4,0,0,0,77.7,22.3,51.8 +2.15625,2.16,a-pcom-i3,2021-22,Taunton - Joseph C Chamberlain,2930008,0,3.4,1.7,93.1,0,0,1.7,95.6,4.4,58.3 +2.1875,2.19,a-pcom-i3,2021-22,Taunton - Joseph H Martin,2930042,7,0,0,93,0,0,0,83.2,16.8,71.9 +4.5,4.5,a-pcom-i3,2021-22,Taunton - Taunton Alternative High School,2930525,1.9,0,12.5,85.6,0,0,0,67.2,32.8,16 +2.25,2.25,a-pcom-i3,2021-22,Taunton - Taunton High,2930505,3.5,0.4,2.9,92.8,0,0,0.4,66.4,33.6,244.2 +3.75,3.75,a-pcom-i3,2021-22,Tewksbury - Heath-Brook,2950010,0,4.8,7.2,88,0,0,0,98.8,1.2,41.6 +3.5625,3.56,a-pcom-i3,2021-22,Tewksbury - John F. Ryan,2950023,3.4,1.3,6.7,88.6,0,0,0,84.1,15.9,74.2 +1.53125,1.53,a-pcom-i3,2021-22,Tewksbury - John W. Wynn Middle,2950305,0,3.3,1.6,95.1,0,0,0,75.3,24.7,61.4 +3.15625,3.16,a-pcom-i3,2021-22,Tewksbury - L F Dewing,2950001,1.8,2.8,5.5,89.9,0,0,0,96.8,3.2,108.7 +1.9375,1.94,a-pcom-i3,2021-22,Tewksbury - Louise Davy Trahan,2950025,3.1,0,3.1,93.8,0,0,0,93.8,6.2,32.1 +4.03125,4.03,a-pcom-i3,2021-22,Tewksbury - North Street,2950020,2.1,0,10.7,87.1,0,0,0,95.5,4.5,46.5 +1.34375,1.34,a-pcom-i3,2021-22,Tewksbury - Tewksbury Memorial High,2950505,0,1.7,2.6,95.7,0,0,0,58.4,40.7,115.4 +2.4375,2.44,a-pcom-i3,2021-22,Tisbury - Tisbury Elementary,2960005,1.6,0,4.3,92.2,0,0,1.9,88.1,11.9,73.4 +1,1,a-pcom-i3,2021-22,Topsfield - Proctor Elementary,2980005,0,0,1.1,98.9,0,0,0,90.2,9.8,47.3 +1.125,1.12,a-pcom-i3,2021-22,Topsfield - Steward Elementary,2980010,0,0,3.6,96.4,0,0,0,95.4,4.6,64.2 +1,1,a-pcom-i3,2021-22,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0,0,100,0,0,0,60.1,39.9,134.6 +1,1,a-pcom-i3,2021-22,Triton - Newbury Elementary,7730020,0,0,0,100,0,0,0,89.8,10.2,80.4 +1,1,a-pcom-i3,2021-22,Triton - Pine Grove,7730025,0,1.5,0,98.5,0,0,0,90.9,9.1,66 +1,1,a-pcom-i3,2021-22,Triton - Salisbury Elementary,7730015,0,1.5,0,98.5,0,0,0,95.5,4.5,66.9 +1,1,a-pcom-i3,2021-22,Triton - Triton Regional High School,7730505,1.1,0,1.3,97.7,0,0,0,63.5,36.5,94.3 +1,1,a-pcom-i3,2021-22,Triton - Triton Regional Middle School,7730405,0,0,0,100,0,0,0,70.6,29.4,51.8 +1,1,a-pcom-i3,2021-22,Truro - Truro Central,3000005,0,0,0,100,0,0,0,89.5,10.5,32.3 +1,1,a-pcom-i3,2021-22,Tyngsborough - Tyngsborough Elementary,3010020,0,2,0,98,0,0,0,90.2,9.8,101.7 +1,1,a-pcom-i3,2021-22,Tyngsborough - Tyngsborough High School,3010505,0,0,2.1,97.9,0,0,0,64.2,35.8,48.3 +1,1,a-pcom-i3,2021-22,Tyngsborough - Tyngsborough Middle,3010305,0,0,1.8,98.2,0,0,0,70.9,29.1,55.6 +12.5,5,a-pcom-i3,2021-22,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,35.1,0,4.9,60,0,0,0,69.8,30.2,51.3 +12.65625,5,a-pcom-i3,2021-22,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,27.8,2.5,10.1,59.5,0,0,0,81,19,79 +2.9375,2.94,a-pcom-i3,2021-22,Up-Island Regional - Chilmark Elementary,7740010,0.3,0,0.9,90.6,0,0,8.2,86.9,13.1,12.6 +1.03125,1.03,a-pcom-i3,2021-22,Up-Island Regional - West Tisbury Elementary,7740020,0.6,0,2.3,96.7,0,0,0.3,84.5,15.5,70.9 +1,1,a-pcom-i3,2021-22,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,99.1,0.9,0,0,42.5,57.5,106.9 +31.25,5,a-pcom-i3,2021-22,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0 +1,1,a-pcom-i3,2021-22,Uxbridge - Taft Early Learning Center,3040005,0,0,0,100,0,0,0,94.3,5.7,87.4 +1,1,a-pcom-i3,2021-22,Uxbridge - Uxbridge High,3040505,0,1.1,0,98.9,0,0,0,67,33,87.8 +1,1,a-pcom-i3,2021-22,Uxbridge - Whitin Intermediate,3040405,0,0,0,100,0,0,0,81.4,18.6,64.5 +13.65625,5,a-pcom-i3,2021-22,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,27.7,1.6,12.9,56.3,0,0,1.6,75.9,24.1,62.2 +1,1,a-pcom-i3,2021-22,Wachusett - Central Tree Middle,7750310,0,0,0,100,0,0,0,82.6,17.4,46 +1,1,a-pcom-i3,2021-22,Wachusett - Chocksett Middle School,7750315,0,0,0,100,0,0,0,84.1,15.9,41.4 +1.09375,1.09,a-pcom-i3,2021-22,Wachusett - Davis Hill Elementary,7750018,0,0,3.5,96.5,0,0,0,85.4,14.6,57 +1,1,a-pcom-i3,2021-22,Wachusett - Dawson,7750020,0,0,0,100,0,0,0,92.8,7.2,56.4 +2.21875,2.22,a-pcom-i3,2021-22,Wachusett - Early Childhood Center,7750001,2.4,0,4.7,92.9,0,0,0,100,0,42.5 +1,1,a-pcom-i3,2021-22,Wachusett - Glenwood Elementary School,7750060,2,0,0,98,0,0,0,87.9,12.1,49.7 +1,1,a-pcom-i3,2021-22,Wachusett - Houghton Elementary,7750027,1.5,0,1.5,97.1,0,0,0,94.1,5.9,68 +1,1,a-pcom-i3,2021-22,Wachusett - Leroy E.Mayo,7750032,0,0,0,100,0,0,0,92.5,7.5,53.3 +1,1,a-pcom-i3,2021-22,Wachusett - Mountview Middle,7750305,0,0,1.3,98.7,0,0,0,82,18,78 +1,1,a-pcom-i3,2021-22,Wachusett - Naquag Elementary School,7750005,0,0,0,100,0,0,0,97.7,2.3,48.1 +1,1,a-pcom-i3,2021-22,Wachusett - Paxton Center,7750040,0,0,0,100,0,0,0,82.4,17.6,58 +1,1,a-pcom-i3,2021-22,Wachusett - Thomas Prince,7750045,0,0,0,97.6,0,2.4,0,95.1,4.9,41.2 +1,1,a-pcom-i3,2021-22,Wachusett - Wachusett Regional High,7750505,0,0.4,0,99.6,0,0,0,69.3,30.7,232.5 +1,1,a-pcom-i3,2021-22,Wakefield - Dolbeare,3050005,0,1.5,0,97.1,1.5,0,0,91.3,8.7,68.9 +1.15625,1.16,a-pcom-i3,2021-22,Wakefield - Early Childhood Center at the Doyle School,3050001,0,3.7,0,96.3,0,0,0,100,0,26.7 +1,1,a-pcom-i3,2021-22,Wakefield - Galvin Middle School,3050310,0,0,0.8,99.2,0,0,0,71.5,28.5,122.7 +1,1,a-pcom-i3,2021-22,Wakefield - Greenwood,3050020,0,3.1,0,96.9,0,0,0,90.6,9.4,32 +1,1,a-pcom-i3,2021-22,Wakefield - Wakefield Memorial High,3050505,0,0,0.9,99.1,0,0,0,65.1,34.9,110.8 +1,1,a-pcom-i3,2021-22,Wakefield - Walton,3050040,0,0,0,100,0,0,0,93.9,6.1,26.3 +1.03125,1.03,a-pcom-i3,2021-22,Wakefield - Woodville School,3050015,0,0,1.7,96.7,0,0,1.7,93.5,6.5,60.1 +1.375,1.38,a-pcom-i3,2021-22,Wales - Wales Elementary,3060005,0,0,0,95.6,0,0,4.4,89.2,10.8,22.8 +1,1,a-pcom-i3,2021-22,Walpole - Bird Middle,3070305,0.9,1.7,0,97,0,0,0.4,74.9,25.1,57.8 +1,1,a-pcom-i3,2021-22,Walpole - Boyden,3070010,0,0,0,99.2,0,0,0.8,95.7,4.3,53.2 +1,1,a-pcom-i3,2021-22,Walpole - Daniel Feeney Preschool Center,3070002,0,0,0,100,0,0,0,94.7,5.3,18.8 +1,1,a-pcom-i3,2021-22,Walpole - Eleanor N Johnson Middle,3070310,0.8,0,1.7,97.1,0,0,0.4,82.4,17.6,59.7 +1,1,a-pcom-i3,2021-22,Walpole - Elm Street School,3070005,1.8,0,0,97.6,0,0,0.6,94.5,5.5,54.3 +1,1,a-pcom-i3,2021-22,Walpole - Fisher,3070015,1.7,0,0,98.3,0,0,0,94.9,5.1,58.5 +1,1,a-pcom-i3,2021-22,Walpole - Old Post Road,3070018,0,0,0,100,0,0,0,85.4,14.6,50.1 +1.09375,1.09,a-pcom-i3,2021-22,Walpole - Walpole High,3070505,0,2.7,0.7,96.5,0,0,0.2,64.6,35.4,142.8 +1,1,a-pcom-i3,2021-22,Waltham - Douglas MacArthur Elementary School,3080032,0,0.2,1.6,98.3,0,0,0,93.4,6.6,64 +5.53125,5,a-pcom-i3,2021-22,Waltham - Henry Whittemore Elementary School,3080065,3.1,3.3,9.7,82.3,0,0,1.6,88.5,11.5,63.5 +1.84375,1.84,a-pcom-i3,2021-22,Waltham - James Fitzgerald Elementary School,3080060,0,0,4.1,94.1,0,0,1.8,87.2,12.8,55.4 +4,4,a-pcom-i3,2021-22,Waltham - John F Kennedy Middle,3080404,2.4,2.4,8,87.2,0,0,0,80.2,19.8,82.8 +5.15625,5,a-pcom-i3,2021-22,Waltham - John W. McDevitt Middle School,3080415,4.4,0.9,10.3,83.5,0,0,0.9,65.4,34.6,110.5 +2.125,2.12,a-pcom-i3,2021-22,Waltham - Northeast Elementary School,3080040,1.2,1.3,3.2,93.2,0,0,1,95.5,4.5,86.1 +2.15625,2.16,a-pcom-i3,2021-22,Waltham - Thomas R Plympton Elementary School,3080050,1.7,0,5.3,93.1,0,0,0,89.7,10.3,60.5 +17.34375,5,a-pcom-i3,2021-22,Waltham - Waltham Public Schools Dual Language Program,3080001,0,0,55.5,44.5,0,0,0,85.8,14.2,30.3 +5.03125,5,a-pcom-i3,2021-22,Waltham - Waltham Sr High,3080505,4.8,3.5,6.5,83.9,0,0.4,0.9,68.1,31.9,230.3 +1.9375,1.94,a-pcom-i3,2021-22,Waltham - William F. Stanley Elementary School,3080005,0,1,4.2,93.8,0,0,1,87.3,12.7,99.7 +1,1,a-pcom-i3,2021-22,Ware - Stanley M Koziol Elementary School,3090020,0,0,1.9,98.1,0,0,0,94.4,5.6,53.4 +3.09375,3.09,a-pcom-i3,2021-22,Ware - Ware Junior/Senior High School,3090505,2.9,0,7,90.1,0,0,0,69.4,30.6,68.6 +1,1,a-pcom-i3,2021-22,Ware - Ware Middle School,3090305,0,0,0.5,99.5,0,0,0,81.2,18.8,37.3 +1,1,a-pcom-i3,2021-22,Wareham - John William Decas,3100003,0,0,0,98.4,0,0,1.6,93.2,6.8,95.5 +1,1,a-pcom-i3,2021-22,Wareham - Minot Forest,3100017,0,0,0,99,0,0,1,89.4,10.6,48.9 +1,1,a-pcom-i3,2021-22,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,100,0,0,0,69.3,30.7,4 +1,1,a-pcom-i3,2021-22,Wareham - Wareham Middle,3100305,0,0,0,98.3,0,0,1.7,85.2,14.8,67 +2.375,2.37,a-pcom-i3,2021-22,Wareham - Wareham Senior High,3100505,2.8,0.9,0,92.4,0,0,3.8,68.8,31.2,105.4 +3.5625,3.56,a-pcom-i3,2021-22,Watertown - Cunniff,3140015,0,0.9,10.5,88.6,0,0,0,80.9,19.1,58.5 +3.8125,3.81,a-pcom-i3,2021-22,Watertown - Hosmer,3140020,0.6,0.3,10.1,87.8,0.6,0,0.6,90.8,9.2,161.6 +5.5,5,a-pcom-i3,2021-22,Watertown - James Russell Lowell,3140025,1.3,1.3,14.9,82.4,0,0,0,89.3,10.7,75.6 +3.5,3.5,a-pcom-i3,2021-22,Watertown - Watertown High,3140505,1.7,0.8,6.9,88.8,0,0,1.7,49.4,50.6,118 +2.6875,2.69,a-pcom-i3,2021-22,Watertown - Watertown Middle,3140305,1.1,1.1,6.4,91.4,0,0,0,74.3,25.7,89.6 +2.21875,2.22,a-pcom-i3,2021-22,Wayland - Claypit Hill School,3150005,3.5,1.2,1.2,92.9,0,0,1.2,96,4,84.9 +3.875,3.88,a-pcom-i3,2021-22,Wayland - Happy Hollow School,3150015,0.8,5,6.6,87.6,0,0,0,90.4,9.6,60.3 +4.03125,4.03,a-pcom-i3,2021-22,Wayland - Loker School,3150020,0.8,1.5,9.1,87.1,0,0,1.5,90.9,9.1,65.7 +2.625,2.63,a-pcom-i3,2021-22,Wayland - Wayland High School,3150505,4.1,1.1,2.4,91.6,0,0,0.8,68.5,31.5,123.1 +3.65625,3.66,a-pcom-i3,2021-22,Wayland - Wayland Middle School,3150305,1.9,2.9,6.8,88.3,0,0,0,75.7,24.3,103 +2.65625,2.66,a-pcom-i3,2021-22,Webster - Bartlett High School,3160505,3.4,0,3.4,91.5,0,0,1.7,66.9,33.1,58.9 +1,1,a-pcom-i3,2021-22,Webster - Park Avenue Elementary,3160015,0.9,0,0,99.1,0,0,0,94.8,5.2,114.6 +1,1,a-pcom-i3,2021-22,Webster - Webster Middle School,3160315,1.3,0,0,98.7,0,0,0,79.7,20.3,76.5 +3.28125,3.28,a-pcom-i3,2021-22,Wellesley - Ernest F Upham,3170050,2,3.5,5.1,89.5,0,0,0,93.4,6.6,57.9 +3,3,a-pcom-i3,2021-22,Wellesley - Hunnewell,3170025,2.9,0,4.6,90.4,0,0,2.1,92.3,7.7,47.5 +2.375,2.37,a-pcom-i3,2021-22,Wellesley - John D Hardy,3170020,0.3,2.2,5,92.4,0,0,0,93.7,6.3,44.8 +2.34375,2.34,a-pcom-i3,2021-22,Wellesley - Joseph E Fiske,3170015,4.6,0,0.7,92.5,0,0,2.2,96.5,3.5,46.2 +2.59375,2.59,a-pcom-i3,2021-22,Wellesley - Katharine Lee Bates,3170005,0.3,0,5.5,91.7,0,0,2.5,97.2,2.8,40.8 +5.3125,5,a-pcom-i3,2021-22,Wellesley - Preschool at Wellesley Schools,3170001,0,6.4,6.4,83,0,0,4.2,97.9,2.1,47.1 +2.84375,2.84,a-pcom-i3,2021-22,Wellesley - Schofield,3170045,4.4,0,4.7,90.9,0,0,0,87.2,12.8,48.1 +1.75,1.75,a-pcom-i3,2021-22,Wellesley - Sprague Elementary School,3170048,0.2,3.3,0.4,94.4,0,0,1.6,94.9,5.1,61 +2.9375,2.94,a-pcom-i3,2021-22,Wellesley - Wellesley Middle,3170305,1.5,3.9,1.8,90.6,0,0,2.2,75.4,24.6,177.8 +2.6875,2.69,a-pcom-i3,2021-22,Wellesley - Wellesley Sr High,3170505,2.8,2.8,1.7,91.4,0,0,1.3,65.4,34.6,229.1 +1,1,a-pcom-i3,2021-22,Wellfleet - Wellfleet Elementary,3180005,0,0,0,100,0,0,0,92.1,7.9,28 +1,1,a-pcom-i3,2021-22,West Boylston - Major Edwards Elementary,3220005,0,0,0,100,0,0,0,93.2,6.8,63.8 +1.5,1.5,a-pcom-i3,2021-22,West Boylston - West Boylston Junior/Senior High,3220505,2.8,0,2,95.2,0,0,0,69.5,30.5,70.5 +1,1,a-pcom-i3,2021-22,West Bridgewater - Howard School,3230305,0,0,0,100,0,0,0,91,9,27.8 +1,1,a-pcom-i3,2021-22,West Bridgewater - Rose L Macdonald,3230003,0,0,3.2,96.8,0,0,0,95.9,4.1,30.9 +1,1,a-pcom-i3,2021-22,West Bridgewater - Spring Street School,3230005,0,0,0,100,0,0,0,98.9,1.1,22.8 +1,1,a-pcom-i3,2021-22,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,96.8,0,0,3.2,69.4,30.6,63.3 +2.34375,2.34,a-pcom-i3,2021-22,West Springfield - Cowing Early Childhood,3320001,7.5,0,0,92.5,0,0,0,99.6,0.4,26.8 +1.1875,1.19,a-pcom-i3,2021-22,West Springfield - John Ashley,3320005,3.8,0,0,96.2,0,0,0,91.5,8.5,52.3 +1,1,a-pcom-i3,2021-22,West Springfield - John R Fausey,3320010,0,0,3.1,96.9,0,0,0,97.7,2.3,65.5 +1,1,a-pcom-i3,2021-22,West Springfield - Memorial,3320025,2.7,0,0,97.3,0,0,0,86.4,13.6,36.6 +1,1,a-pcom-i3,2021-22,West Springfield - Mittineague,3320030,0,0,0,100,0,0,0,94.1,5.9,26.6 +1,1,a-pcom-i3,2021-22,West Springfield - Philip G Coburn,3320007,1.3,1.3,0,97.5,0,0,0,94.1,5.9,79.7 +1,1,a-pcom-i3,2021-22,West Springfield - Tatham,3320040,0,0,0,100,0,0,0,89,11,38.5 +1.8125,1.81,a-pcom-i3,2021-22,West Springfield - West Springfield High,3320505,0.6,0,4.5,94.2,0,0.6,0,69.7,30.3,155.8 +1.3125,1.31,a-pcom-i3,2021-22,West Springfield - West Springfield Middle,3320305,0.8,0.8,1.7,95.8,0,0,0.8,72.8,27.2,119.3 +1.59375,1.59,a-pcom-i3,2021-22,Westborough - Annie E Fales,3210010,0,0,3.6,94.9,0,0,1.4,97.6,2.4,55.4 +2.90625,2.91,a-pcom-i3,2021-22,Westborough - Elsie A Hastings Elementary,3210025,1,7.2,1,90.7,0,0,0,95.2,4.8,97.2 +3.40625,3.41,a-pcom-i3,2021-22,Westborough - J Harding Armstrong,3210005,0,7.6,1.7,89.1,0,0,1.7,98.3,1.7,59.4 +1.78125,1.78,a-pcom-i3,2021-22,Westborough - Mill Pond School,3210045,0,3.3,2.5,94.3,0,0,0,89,11,122.1 +2.59375,2.59,a-pcom-i3,2021-22,Westborough - Sarah W Gibbons Middle,3210305,2.3,2.5,3.5,91.7,0,0,0,72.2,27.8,86.6 +2.21875,2.22,a-pcom-i3,2021-22,Westborough - Westborough High,3210505,1.4,3.3,1.1,92.9,0,0.7,0.7,68.9,31.1,146.7 +1,1,a-pcom-i3,2021-22,Westfield - Abner Gibbs,3250020,0,0,0,100,0,0,0,100,0,24.4 +4.53125,4.53,a-pcom-i3,2021-22,Westfield - Fort Meadow Early Childhood Center,3250003,0,8.7,5.8,85.5,0,0,0,97.1,2.9,34.5 +1.34375,1.34,a-pcom-i3,2021-22,Westfield - Franklin Ave,3250015,0,0,0,95.7,0,0,4.3,95.8,4.2,23.6 +1.84375,1.84,a-pcom-i3,2021-22,Westfield - Highland,3250025,0,2,2,94.1,2,0,0,92.1,7.9,50.9 +2.625,2.63,a-pcom-i3,2021-22,Westfield - Munger Hill,3250033,5.1,1.7,1.7,91.6,0,0,0,93.2,6.8,59.2 +1,1,a-pcom-i3,2021-22,Westfield - Paper Mill,3250036,0,0,2.5,97.5,0,0,0,97.8,2.2,40.4 +1,1,a-pcom-i3,2021-22,Westfield - Southampton Road,3250040,0,0,2.6,97.4,0,0,0,97.6,2.4,39.1 +1,1,a-pcom-i3,2021-22,Westfield - Westfield High,3250505,0,0.7,0.7,98.5,0,0,0,73.8,26.2,137.8 +1.03125,1.03,a-pcom-i3,2021-22,Westfield - Westfield Intermediate School,3250075,2.2,1.1,0,96.7,0,0,0,82.6,17.4,91.8 +1,1,a-pcom-i3,2021-22,Westfield - Westfield Middle School,3250310,0,1.1,1.1,97.8,0,0,0,75.9,24.1,92.1 +1.0625,1.06,a-pcom-i3,2021-22,Westfield - Westfield Technical Academy,3250605,1.1,0,0,96.6,1.1,0,1.1,51.5,48.5,89.8 +1,1,a-pcom-i3,2021-22,Westfield - Westfield Virtual School,3250705,0,0,0,100,0,0,0,59.9,40.1,10.4 +1,1,a-pcom-i3,2021-22,Westford - Abbot Elementary,3260004,0,0,0,100,0,0,0,93.5,6.5,55 +1.84375,1.84,a-pcom-i3,2021-22,Westford - Blanchard Middle,3260310,0,4.4,1.5,94.1,0,0,0,89.5,10.5,68.2 +1,1,a-pcom-i3,2021-22,Westford - Col John Robinson,3260025,0,1.9,0,98.1,0,0,0,95.3,4.7,53.8 +1.4375,1.44,a-pcom-i3,2021-22,Westford - Day Elementary,3260007,0,0.9,1.9,95.4,0,0,1.9,91.5,8.5,54 +1,1,a-pcom-i3,2021-22,Westford - John A. Crisafulli Elementary School,3260045,0,1.8,0,98.2,0,0,0,97.5,2.5,56.2 +1,1,a-pcom-i3,2021-22,Westford - Nabnasset,3260015,0,1.9,0,98.1,0,0,0,95.9,4.1,52.5 +2.71875,2.72,a-pcom-i3,2021-22,Westford - Rita E. Miller Elementary School,3260055,1.5,7.3,0,91.3,0,0,0,95.6,4.4,68.6 +1,1,a-pcom-i3,2021-22,Westford - Stony Brook School,3260330,1.3,0,1.3,97.3,0,0,0,80.7,19.3,75.2 +1,1,a-pcom-i3,2021-22,Westford - Westford Academy,3260505,0,2.4,0.6,97.1,0,0,0,60,40,169.7 +1,1,a-pcom-i3,2021-22,Westhampton - Westhampton Elementary School,3270005,0,0,0,100,0,0,0,89.2,10.8,29.6 +1.40625,1.41,a-pcom-i3,2021-22,Weston - Country,3300010,0,0,4.5,95.5,0,0,0,87.2,12.8,55.7 +4.0625,4.06,a-pcom-i3,2021-22,Weston - Field Elementary School,3300012,3.9,3.9,3.8,87,0,0,1.3,84.2,15.8,46.1 +4.65625,4.66,a-pcom-i3,2021-22,Weston - Weston High,3300505,1.5,8.3,5.1,85.1,0,0,0,67,33,97.5 +3.03125,3.03,a-pcom-i3,2021-22,Weston - Weston Middle,3300305,3.7,4.8,1.3,90.3,0,0,0,74.2,25.8,78.5 +1.90625,1.91,a-pcom-i3,2021-22,Weston - Woodland,3300015,0,1.6,4.4,93.9,0,0,0,94.5,5.5,49.2 +1,1,a-pcom-i3,2021-22,Westport - Alice A Macomber,3310015,0,0,0,100,0,0,0,97.2,2.8,35.5 +1,1,a-pcom-i3,2021-22,Westport - Westport Elementary,3310030,0,0,0,100,0,0,0,98.4,1.6,64.2 +1,1,a-pcom-i3,2021-22,Westport - Westport Middle-High School,3310515,0,0,0,100,0,0,0,66.4,33.6,103.1 +1.71875,1.72,a-pcom-i3,2021-22,Westwood - Deerfield School,3350010,0,5.3,0,94.5,0,0,0.3,89.7,10.3,38.1 +1.28125,1.28,a-pcom-i3,2021-22,Westwood - Downey,3350012,0,0.3,2.9,95.9,0,0,0.9,90.4,8.1,68.7 +3.59375,3.59,a-pcom-i3,2021-22,Westwood - E W Thurston Middle,3350305,5.2,2.1,2.1,88.5,0,0,2.1,70.9,29.1,95.5 +1,1,a-pcom-i3,2021-22,Westwood - Martha Jones,3350017,0,1.3,0,98.5,0,0,0.2,89.8,10.2,38.8 +1,1,a-pcom-i3,2021-22,Westwood - Paul Hanlon,3350015,0,0,0,100,0,0,0,88.1,11.9,33.2 +3.34375,3.34,a-pcom-i3,2021-22,Westwood - Westwood High,3350505,2.3,3.1,3.8,89.3,0,0,1.5,64.5,35.5,130.9 +1.9375,1.94,a-pcom-i3,2021-22,Westwood - Westwood Integrated Preschool,3350050,6.2,0,0,93.8,0,0,0,93.8,6.2,16.1 +1,1,a-pcom-i3,2021-22,Westwood - William E Sheehan,3350025,0,2.8,0,97.2,0,0,0,90.4,9.6,53.5 +1.03125,1.03,a-pcom-i3,2021-22,Weymouth - Abigail Adams Middle School,3360310,0,2.5,0.8,96.7,0,0,0,71.9,28.1,120.4 +1,1,a-pcom-i3,2021-22,Weymouth - Academy Avenue,3360005,0,0,0,100,0,0,0,92.2,7.8,38.4 +1,1,a-pcom-i3,2021-22,Weymouth - Frederick C Murphy,3360050,0,0,2.3,97.7,0,0,0,88.5,11.5,43.6 +3.53125,3.53,a-pcom-i3,2021-22,Weymouth - Johnson Early Childhood Center,3360003,2,7.3,2,88.7,0,0,0,98,2,49.6 +1,1,a-pcom-i3,2021-22,Weymouth - Lawrence W Pingree,3360065,0,0,0,100,0,0,0,97.5,2.5,40.2 +1,1,a-pcom-i3,2021-22,Weymouth - Ralph Talbot,3360085,3.2,0,0,96.8,0,0,0,96.8,3.2,31.6 +1,1,a-pcom-i3,2021-22,Weymouth - Thomas V Nash,3360060,0,0,0,100,0,0,0,84.4,15.6,38.4 +1,1,a-pcom-i3,2021-22,Weymouth - Thomas W. Hamilton Primary School,3360105,0,0,0,100,0,0,0,93.4,6.6,45.2 +1,1,a-pcom-i3,2021-22,Weymouth - Wessagusset,3360110,0,0,1.8,98.2,0,0,0,82.5,17.5,57.1 +1.125,1.12,a-pcom-i3,2021-22,Weymouth - Weymouth High School,3360505,0.7,0.7,1.3,96.4,0.3,0,0.7,67.7,32.3,305.2 +1,1,a-pcom-i3,2021-22,Weymouth - William Seach,3360080,0,0,0,100,0,0,0,95.2,4.8,50.5 +1,1,a-pcom-i3,2021-22,Whately - Whately Elementary,3370005,0,0,0,100,0,0,0,97.4,2.6,30.3 +1.21875,1.22,a-pcom-i3,2021-22,Whitman-Hanson - Hanson Middle School,7800315,2.4,0,1.5,96.1,0,0,0,74.9,25.1,62.1 +1.4375,1.44,a-pcom-i3,2021-22,Whitman-Hanson - Indian Head,7800035,2.2,0,2.5,95.4,0,0,0,91,9,59.3 +1,1,a-pcom-i3,2021-22,Whitman-Hanson - John H Duval,7800030,1.4,0,1.6,97,0,0,0,96,4,61.8 +1,1,a-pcom-i3,2021-22,Whitman-Hanson - Louise A Conley,7800010,0,0,0.9,99.1,0,0,0,92.9,7.1,56.1 +1,1,a-pcom-i3,2021-22,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,7800001,0,0,0,100,0,0,0,100,0,14.4 +1,1,a-pcom-i3,2021-22,Whitman-Hanson - Whitman Hanson Regional,7800505,0.9,0,0.9,98.2,0,0,0,65,35,107.3 +1.03125,1.03,a-pcom-i3,2021-22,Whitman-Hanson - Whitman Middle,7800310,2.4,0,0.9,96.7,0,0,0,72.5,27.5,58.6 +1.53125,1.53,a-pcom-i3,2021-22,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,1.4,0,3.5,95.1,0,0,0,53.6,46.4,142.4 +1,1,a-pcom-i3,2021-22,Williamsburg - Anne T. Dunphy School,3400020,0,0,0,100,0,0,0,88.4,11.6,27.6 +1,1,a-pcom-i3,2021-22,Wilmington - Boutwell,3420005,0,1.8,0,98.2,0,0,0,100,0,28.3 +1,1,a-pcom-i3,2021-22,Wilmington - North Intermediate,3420060,0,3.2,0,96.8,0,0,0,93.7,6.3,31.7 +1,1,a-pcom-i3,2021-22,Wilmington - Shawsheen Elementary,3420025,2.2,0,0,97.8,0,0,0,93.5,6.5,46.3 +3.125,3.13,a-pcom-i3,2021-22,Wilmington - West Intermediate,3420080,0,4.3,5.7,90,0,0,0,94.3,5.7,34.9 +1.6875,1.69,a-pcom-i3,2021-22,Wilmington - Wildwood,3420015,0,0,2.7,94.6,0,0,2.7,94.6,5.4,37.3 +1.09375,1.09,a-pcom-i3,2021-22,Wilmington - Wilmington High,3420505,0,0.9,1.7,96.5,0.9,0,0,72.9,27.1,115 +1,1,a-pcom-i3,2021-22,Wilmington - Wilmington Middle School,3420330,0,0,1,99,0,0,0,77.5,22.5,101.6 +1,1,a-pcom-i3,2021-22,Wilmington - Woburn Street,3420020,0,0,0,100,0,0,0,93,7,43 +1,1,a-pcom-i3,2021-22,Winchendon - Memorial,3430040,2.2,0,0,97.8,0,0,0,96.7,3.3,46.2 +1,1,a-pcom-i3,2021-22,Winchendon - Murdock Academy for Success,3430405,0,0,0,100,0,0,0,72.2,27.8,1.8 +1.6875,1.69,a-pcom-i3,2021-22,Winchendon - Murdock High School,3430515,2.7,0,2.7,94.6,0,0,0,70.2,29.8,36.9 +1.8125,1.81,a-pcom-i3,2021-22,Winchendon - Murdock Middle School,3430315,0,0,5.8,94.2,0,0,0,77.1,22.9,34.2 +1,1,a-pcom-i3,2021-22,Winchendon - Toy Town Elementary,3430050,0,0,0,100,0,0,0,93.8,6.2,32.5 +1,1,a-pcom-i3,2021-22,Winchendon - Winchendon PreSchool Program,3430010,0,0,0,100,0,0,0,100,0,7.7 +1.1875,1.19,a-pcom-i3,2021-22,Winchester - Ambrose Elementary,3440045,1.9,0,1.9,96.2,0,0,0,93.6,6.4,53.1 +1,1,a-pcom-i3,2021-22,Winchester - Lincoln Elementary,3440005,0,0,2.4,97.6,0,0,0,94.1,5.9,42.4 +1,1,a-pcom-i3,2021-22,Winchester - Lynch Elementary,3440020,0,1.1,1.1,97.8,0,0,0,95,3.9,89.9 +1.5625,1.56,a-pcom-i3,2021-22,Winchester - McCall Middle,3440305,1.5,2.1,1.5,95,0,0,0,75.9,24.1,135.2 +1.15625,1.16,a-pcom-i3,2021-22,Winchester - Muraco Elementary,3440040,0,1.9,1.9,96.3,0,0,0,94,6,53.8 +1.09375,1.09,a-pcom-i3,2021-22,Winchester - Vinson-Owen Elementary,3440025,0,1.8,0,96.5,0,0,1.8,90.5,9.5,56.5 +1,1,a-pcom-i3,2021-22,Winchester - Winchester High School,3440505,0.7,0,1.3,98,0,0,0,66.1,33.9,149.8 +1,1,a-pcom-i3,2021-22,Winthrop - Arthur T. Cummings Elementary School,3460020,0,1.7,0,98.3,0,0,0,90.6,9.4,58.5 +1,1,a-pcom-i3,2021-22,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,0,0,0,100,0,0,0,92.3,7.7,77.5 +1,1,a-pcom-i3,2021-22,Winthrop - Winthrop High School,3460505,0,3.1,0,96.9,0,0,0,61.1,38.9,65.2 +1,1,a-pcom-i3,2021-22,Winthrop - Winthrop Middle School,3460305,0,1.8,0,98.2,0,0,0,70.9,29.1,54.6 +1,1,a-pcom-i3,2021-22,Woburn - Clyde Reeves,3470040,1.5,0,0,97.1,1.5,0,0,95,5,68.7 +1,1,a-pcom-i3,2021-22,Woburn - Daniel L Joyce Middle School,3470410,0,1.1,1.3,97.5,0,0,0,76.5,23.5,72.7 +1,1,a-pcom-i3,2021-22,Woburn - Goodyear Elementary School,3470005,0,0,0,100,0,0,0,91.7,8.3,44.2 +1,1,a-pcom-i3,2021-22,Woburn - Hurld-Wyman Elementary School,3470020,0,0,0,100,0,0,0,98.8,1.2,34.4 +1,1,a-pcom-i3,2021-22,Woburn - John F Kennedy Middle School,3470405,0,0,2.3,97.7,0,0,0,67.6,32.4,65.8 +1,1,a-pcom-i3,2021-22,Woburn - Linscott-Rumford,3470025,0,0,0,100,0,0,0,90.5,9.5,25.3 +1,1,a-pcom-i3,2021-22,Woburn - Malcolm White,3470055,0,0,0,100,0,0,0,92.5,7.5,39.1 +1,1,a-pcom-i3,2021-22,Woburn - Mary D Altavesta,3470065,0,0,3.1,96.9,0,0,0,93.3,6.7,32.4 +1,1,a-pcom-i3,2021-22,Woburn - Shamrock,3470043,1.3,0,0,98.7,0,0,0,90.4,9.6,74.6 +1.5625,1.56,a-pcom-i3,2021-22,Woburn - Woburn High,3470505,1.9,0.6,2.5,95,0,0,0,65.2,34.8,161.5 +1,1,a-pcom-i3,2021-22,Worcester - Belmont Street Community,3480020,1.6,0,1.6,96.9,0,0,0,89.7,10.3,64.4 +5.46875,5,a-pcom-i3,2021-22,Worcester - Burncoat Middle School,3480405,8.4,0,9.1,82.5,0,0,0,66.4,33.6,99.4 +3.46875,3.47,a-pcom-i3,2021-22,Worcester - Burncoat Senior High,3480503,2.3,0,8.8,88.9,0,0,0,61.6,38.4,150.8 +4.8125,4.81,a-pcom-i3,2021-22,Worcester - Burncoat Street,3480035,3,0,12.4,84.6,0,0,0,87.7,12.3,40.2 +2.71875,2.72,a-pcom-i3,2021-22,Worcester - Canterbury,3480045,1.7,0,7,91.3,0,0,0,95.8,4.2,44.2 +4.40625,4.41,a-pcom-i3,2021-22,Worcester - Chandler Elementary Community,3480050,2.3,1,10.9,85.9,0,0,0,92.9,7.1,61.6 +13.6875,5,a-pcom-i3,2021-22,Worcester - Chandler Magnet,3480052,2.7,1.4,39.7,56.2,0,0,0,94.3,5.7,73.3 +5.46875,5,a-pcom-i3,2021-22,Worcester - City View,3480053,3,1.5,13,82.5,0,0,0,87.1,12.9,66.8 +7.28125,5,a-pcom-i3,2021-22,Worcester - Claremont Academy,3480350,10,1.6,11.7,76.7,0,0,0,73.2,26.8,62.5 +5.53125,5,a-pcom-i3,2021-22,Worcester - Clark St Community,3480055,2.7,0,15,82.3,0,0,0,83.6,16.4,42.6 +2.6875,2.69,a-pcom-i3,2021-22,Worcester - Columbus Park,3480060,3.8,0.8,4,91.4,0,0,0,89,11,52.3 +2.8125,2.81,a-pcom-i3,2021-22,Worcester - Doherty Memorial High,3480512,2.1,0,6.9,91,0,0,0,60.8,39.2,151.7 +3.90625,3.91,a-pcom-i3,2021-22,Worcester - Elm Park Community,3480095,1.8,1.8,7,87.5,0,1.8,0,89,11,54.3 +1,1,a-pcom-i3,2021-22,Worcester - Flagg Street,3480090,0,2.6,0.2,97.1,0,0,0,87.3,12.7,37.9 +5.03125,5,a-pcom-i3,2021-22,Worcester - Forest Grove Middle,3480415,6.1,2.6,7.4,83.9,0,0,0,73.6,26.4,115.4 +2.625,2.63,a-pcom-i3,2021-22,Worcester - Francis J McGrath Elementary,3480177,0,8.1,0.3,91.6,0,0,0,91.6,8.4,29.6 +3.5,3.5,a-pcom-i3,2021-22,Worcester - Gates Lane,3480110,4,2,5.1,88.8,0,0,0,92.9,7.1,99.2 +4.3125,4.31,a-pcom-i3,2021-22,Worcester - Goddard School/Science Technical,3480100,2.5,0,11.3,86.2,0,0,0,96.5,3.5,64.5 +5.09375,5,a-pcom-i3,2021-22,Worcester - Grafton Street,3480115,7.4,2.4,6.5,83.7,0,0,0,86.3,13.7,41.3 +9.375,5,a-pcom-i3,2021-22,Worcester - Head Start,3480002,6.5,3.1,20.4,70,0,0,0,98.1,1.9,98 +6.40625,5,a-pcom-i3,2021-22,Worcester - Heard Street,3480136,8.3,2,6.9,79.5,0,3.3,0,95.4,4.6,30.2 +1.8125,1.81,a-pcom-i3,2021-22,Worcester - Jacob Hiatt Magnet,3480140,0,2.4,3.4,94.2,0,0,0,94.8,5.2,41 +24.46875,5,a-pcom-i3,2021-22,Worcester - La Familia Dual Language School,3480025,0.8,0.6,76.9,21.7,0,0,0,91.9,8.1,20.5 +1.78125,1.78,a-pcom-i3,2021-22,Worcester - Lake View,3480145,2.9,0,2.9,94.3,0,0,0,87.6,12.4,34.8 +3.59375,3.59,a-pcom-i3,2021-22,Worcester - Lincoln Street,3480160,0.7,3,7.8,88.5,0,0,0,91.5,8.5,33.5 +3.6875,3.69,a-pcom-i3,2021-22,Worcester - May Street,3480175,3.2,5.4,3.2,88.2,0,0,0,88.6,11.4,31.5 +1.28125,1.28,a-pcom-i3,2021-22,Worcester - Midland Street,3480185,0,0,4.1,95.9,0,0,0,96,4,24.5 +3.3125,3.31,a-pcom-i3,2021-22,Worcester - Nelson Place,3480200,4.7,0,6,89.4,0,0,0,91.8,8.2,108.6 +5.46875,5,a-pcom-i3,2021-22,Worcester - Norrback Avenue,3480202,5.6,2,8.9,82.5,0,1,0,92.4,7.6,102.1 +7.78125,5,a-pcom-i3,2021-22,Worcester - North High,3480515,9,3.1,12.8,75.1,0,0,0,67.4,32.6,144 +5.84375,5,a-pcom-i3,2021-22,Worcester - Quinsigamond,3480210,1,7.5,10.2,81.3,0,0,0,88,12,95.5 +5.53125,5,a-pcom-i3,2021-22,Worcester - Rice Square,3480215,2.3,3.7,11.7,82.3,0,0,0,94.7,5.3,48.4 +3.28125,3.28,a-pcom-i3,2021-22,Worcester - Roosevelt,3480220,1.7,0.2,8.7,89.5,0,0,0,95.2,4.8,95.8 +4.96875,4.97,a-pcom-i3,2021-22,Worcester - South High Community,3480520,4.9,0.8,9.4,84.1,0,0.7,0,71,29,181.5 +6.46875,5,a-pcom-i3,2021-22,Worcester - Sullivan Middle,3480423,4.1,0,16.6,79.3,0,0,0,70.8,29.2,122.4 +1,1,a-pcom-i3,2021-22,Worcester - Tatnuck,3480230,0,0,2.2,97.8,0,0,0,94.5,5.5,45.5 +1.78125,1.78,a-pcom-i3,2021-22,Worcester - Thorndyke Road,3480235,0,0,2.8,94.3,0,2.8,0,94.2,5.8,35.4 +3.75,3.75,a-pcom-i3,2021-22,Worcester - Union Hill School,3480240,1.1,0,10.9,88,0,0,0,83.3,16.7,47.5 +5.15625,5,a-pcom-i3,2021-22,Worcester - University Pk Campus School,3480285,4.7,0,11.8,83.5,0,0,0,66.5,33.5,29.6 +4.71875,4.72,a-pcom-i3,2021-22,Worcester - Vernon Hill School,3480280,6.6,1.7,6.8,84.9,0,0,0,88.2,11.8,60.2 +2.125,2.12,a-pcom-i3,2021-22,Worcester - Wawecus Road School,3480026,3.4,0,3.4,93.2,0,0,0,92.8,7.2,29.4 +3.46875,3.47,a-pcom-i3,2021-22,Worcester - West Tatnuck,3480260,6.7,0,4.4,88.9,0,0,0,92.5,7.5,45.6 +7.375,5,a-pcom-i3,2021-22,Worcester - Woodland Academy,3480030,1.7,1.7,20.3,76.4,0,0,0,91.4,8.6,59.7 +2.75,2.75,a-pcom-i3,2021-22,Worcester - Worcester Arts Magnet School,3480225,3.4,0,5.3,91.2,0,0,0,92.4,7.6,41.1 +7.90625,5,a-pcom-i3,2021-22,Worcester - Worcester East Middle,3480420,8.8,2.1,14.5,74.7,0,0,0,59.5,40.5,96.8 +2.6875,2.69,a-pcom-i3,2021-22,Worcester - Worcester Technical High,3480605,3.6,1.2,3.9,91.4,0,0,0,50.9,49.1,194.1 +1,1,a-pcom-i3,2021-22,Worthington - R. H. Conwell,3490010,0,0,0,100,0,0,0,84,16,12.5 +1,1,a-pcom-i3,2021-22,Wrentham - Charles E Roderick,3500010,0,0.3,0,98,0,0,1.6,93,7,61.3 +1,1,a-pcom-i3,2021-22,Wrentham - Delaney,3500003,0,2,0.7,96.9,0,0,0.4,94.9,5.1,90.8 +2.90625,2.91,a-pcom-i3,2020-21,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,3.7,0.6,3.7,90.7,0,0,1.2,78.3,21.7,100 +1,1,a-pcom-i3,2020-21,Abington - Abington Early Education Program,10001,0,0,0,100,0,0,0,94.7,5.3,100 +2.125,2.12,a-pcom-i3,2020-21,Abington - Abington High,10505,0.8,1.5,4.5,93.2,0,0,0,73.4,26.6,100 +2.625,2.63,a-pcom-i3,2020-21,Abington - Abington Middle School,10405,2.1,0,4.8,91.6,0,0,1.4,78.3,21.7,100 +1,1,a-pcom-i3,2020-21,Abington - Beaver Brook Elementary,10020,0,0,0,100,0,0,0,98.4,1.6,100 +1,1,a-pcom-i3,2020-21,Abington - Woodsdale Elementary School,10015,0,0,0,100,0,0,0,86.6,13.4,100 +14.40625,5,a-pcom-i3,2020-21,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,24.4,7.4,11.9,53.9,0,0,2.4,72.6,27.4,100 +1.15625,1.16,a-pcom-i3,2020-21,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,2.2,1,96.3,0.5,0,0,75.3,24.7,100 +1.46875,1.47,a-pcom-i3,2020-21,Acton-Boxborough - Blanchard Memorial School,6000005,1.3,2.7,0.7,95.3,0,0,0,87.8,12.2,100 +1.4375,1.44,a-pcom-i3,2020-21,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,2.5,2.1,95.4,0,0,0,91,9,100 +2.65625,2.66,a-pcom-i3,2020-21,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,0,8.5,0,91.5,0,0,0,96.6,3.4,100 +4.21875,4.22,a-pcom-i3,2020-21,Acton-Boxborough - Luther Conant School,6000030,2,9.6,2,86.5,0,0,0,95.5,4.5,100 +1,1,a-pcom-i3,2020-21,Acton-Boxborough - McCarthy-Towne School,6000015,0,1.8,1.1,97.1,0,0,0,92.9,7.1,100 +1.375,1.38,a-pcom-i3,2020-21,Acton-Boxborough - Merriam School,6000010,0,2.6,1.8,95.6,0,0,0,96.5,3.5,100 +4.1875,4.19,a-pcom-i3,2020-21,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,10.6,2.8,86.6,0,0,0,93.3,6.7,100 +1.78125,1.78,a-pcom-i3,2020-21,Acton-Boxborough - Raymond J Grey Junior High,6000405,1.7,3.1,0,94.3,0,0,0.9,83,17,100 +1,1,a-pcom-i3,2020-21,Acushnet - Acushnet Elementary School,30025,1.6,0,0,98.4,0,0,0,92.1,7.9,100 +1,1,a-pcom-i3,2020-21,Acushnet - Albert F Ford Middle School,30305,0,0,0,100,0,0,0,76.6,23.4,100 +2.0625,2.06,a-pcom-i3,2020-21,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,4,1.7,93.4,0,0,0.9,59.8,40.2,100 +1.4375,1.44,a-pcom-i3,2020-21,Agawam - Agawam Early Childhood Center,50003,0.3,0,4.4,95.4,0,0,0,99.7,0.3,100 +1,1,a-pcom-i3,2020-21,Agawam - Agawam High,50505,1.3,0,1.3,97.4,0,0,0,68.5,31.5,100 +1,1,a-pcom-i3,2020-21,Agawam - Agawam Junior High,50405,1.3,0,1.2,97.5,0,0,0,71.8,28.2,100 +1,1,a-pcom-i3,2020-21,Agawam - Benjamin J Phelps,50020,0.2,1.7,0,98.1,0,0,0,90.5,9.5,100 +1,1,a-pcom-i3,2020-21,Agawam - Clifford M Granger,50010,0.2,0,1.9,97.9,0,0,0,96.1,3.9,100 +1,1,a-pcom-i3,2020-21,Agawam - James Clark School,50030,0.2,0,0,99.8,0,0,0,96.6,3.4,100 +1,1,a-pcom-i3,2020-21,Agawam - Roberta G. Doering School,50303,0.2,0,1.3,98.6,0,0,0,85.7,14.3,100 +1.0625,1.06,a-pcom-i3,2020-21,Agawam - Robinson Park,50025,1.8,0,0,96.6,0,0,1.6,92.7,7.3,100 +7.15625,5,a-pcom-i3,2020-21,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,9.7,0.8,12.4,77.1,0,0,0,76.9,23.1,100 +1,1,a-pcom-i3,2020-21,Amesbury - Amesbury Elementary,70005,0,0,0,100,0,0,0,97.5,2.5,100 +1,1,a-pcom-i3,2020-21,Amesbury - Amesbury High,70505,0,0,1.7,98.3,0,0,0,73.3,26.7,100 +1,1,a-pcom-i3,2020-21,Amesbury - Amesbury Innovation High School,70515,0,0,0,100,0,0,0,42,58,100 +1,1,a-pcom-i3,2020-21,Amesbury - Amesbury Middle,70013,0,0,0,100,0,0,0,72.1,27.9,100 +1,1,a-pcom-i3,2020-21,Amesbury - Charles C Cashman Elementary,70010,0,0,0,100,0,0,0,97.9,2.1,100 +7.15625,5,a-pcom-i3,2020-21,Amherst - Crocker Farm Elementary,80009,0.8,3.4,16.4,77.1,0,0,2.4,89.3,10.7,100 +8.71875,5,a-pcom-i3,2020-21,Amherst - Fort River Elementary,80020,3.6,4.8,17.1,72.1,0,0,2.4,79.2,20.8,100 +10.3125,5,a-pcom-i3,2020-21,Amherst - Wildwood Elementary,80050,14.1,3.9,11.1,67,0,0,3.9,80.7,19.3,100 +8.125,5,a-pcom-i3,2020-21,Amherst-Pelham - Amherst Regional High,6050505,15.1,1.3,8.3,74,0,0,1.3,65.6,34.4,100 +10.90625,5,a-pcom-i3,2020-21,Amherst-Pelham - Amherst Regional Middle School,6050405,10.5,1.4,20.6,65.1,0,0,2.3,66.1,33.9,100 +2.96875,2.97,a-pcom-i3,2020-21,Andover - Andover High,90505,0.9,2.8,4.9,90.5,0,0.5,0.5,70,30,100 +1.09375,1.09,a-pcom-i3,2020-21,Andover - Andover West Middle,90310,0,1.2,2.3,96.5,0,0,0,82.9,17.1,100 +1.71875,1.72,a-pcom-i3,2020-21,Andover - Bancroft Elementary,90003,0,4.4,1.1,94.5,0,0,0,93.9,6.1,100 +1.65625,1.66,a-pcom-i3,2020-21,Andover - Doherty Middle,90305,0,2.7,1.3,94.7,0,0,1.3,82,18,100 +2.25,2.25,a-pcom-i3,2020-21,Andover - Henry C Sanborn Elementary,90010,0,3.6,3.6,92.8,0,0,0,94.6,5.4,100 +1.71875,1.72,a-pcom-i3,2020-21,Andover - High Plain Elementary,90004,0,3.5,2,94.5,0,0,0,95.5,4.5,100 +6.5625,5,a-pcom-i3,2020-21,Andover - Shawsheen School,90005,0,16.5,4.5,79,0,0,0,97.9,2.1,100 +1.28125,1.28,a-pcom-i3,2020-21,Andover - South Elementary,90020,1.4,2.7,0,95.9,0,0,0,97.2,2.8,100 +1.96875,1.97,a-pcom-i3,2020-21,Andover - West Elementary,90025,0,3.3,2,93.7,1,0,0,90.2,9.8,100 +1,1,a-pcom-i3,2020-21,Andover - Wood Hill Middle School,90350,0,1.6,1.6,96.8,0,0,0,79.5,20.5,100 +5.21875,5,a-pcom-i3,2020-21,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,8.5,1.4,6.8,83.3,0,0,0,75.5,24.5,100 +3.03125,3.03,a-pcom-i3,2020-21,Arlington - Arlington High,100505,2.4,1.9,4.4,90.3,0,0,1,57.9,42.1,100 +4.03125,4.03,a-pcom-i3,2020-21,Arlington - Brackett,100010,1.6,4.8,3.2,87.1,0,1.6,1.6,88.7,11.3,100 +2.4375,2.44,a-pcom-i3,2020-21,Arlington - Cyrus E Dallin,100025,0,6.3,0,92.2,0,0,1.6,92.5,6,100 +1.6875,1.69,a-pcom-i3,2020-21,Arlington - Gibbs School,100305,2.8,1.2,0,94.6,0,0,1.4,77.4,22.6,100 +3.5625,3.56,a-pcom-i3,2020-21,Arlington - Hardy,100030,4.6,2.3,4.6,88.6,0,0,0,93.2,6.8,100 +2.375,2.37,a-pcom-i3,2020-21,Arlington - John A Bishop,100005,1.9,0,3.8,92.4,0,0,1.9,92.7,7.3,100 +1,1,a-pcom-i3,2020-21,Arlington - M Norcross Stratton,100055,0,0,1.6,98.4,0,0,0,93.9,6.1,100 +3.09375,3.09,a-pcom-i3,2020-21,Arlington - Menotomy Preschool,100038,0,3.3,0,90.1,0,0,6.6,100,0,100 +2.71875,2.72,a-pcom-i3,2020-21,Arlington - Ottoson Middle,100410,1.8,5.1,1.8,91.3,0,0,0,72.8,27.2,100 +4.96875,4.97,a-pcom-i3,2020-21,Arlington - Peirce,100045,5.3,5.3,2.7,84.1,0,0,2.7,93.4,6.6,100 +1.65625,1.66,a-pcom-i3,2020-21,Arlington - Thompson,100050,2.7,2.7,0,94.7,0,0,0,83.7,16.3,100 +1.34375,1.34,a-pcom-i3,2020-21,Ashburnham-Westminster - Briggs Elementary,6100025,1.4,0,0.3,95.7,0,0,2.7,86.2,13.8,100 +1,1,a-pcom-i3,2020-21,Ashburnham-Westminster - Meetinghouse School,6100010,0,0,0.9,99.1,0,0,0,98.5,1.5,100 +1.28125,1.28,a-pcom-i3,2020-21,Ashburnham-Westminster - Oakmont Regional High School,6100505,3.9,0,0.3,95.9,0,0,0,57.2,42.8,100 +1,1,a-pcom-i3,2020-21,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0.3,99.7,0,0,0,74,26,100 +1,1,a-pcom-i3,2020-21,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,2.7,97.3,0,0,0,91.8,8.2,100 +1.09375,1.09,a-pcom-i3,2020-21,Ashland - Ashland High,140505,2.4,0,0,96.5,0,0,1.2,62.5,37.5,100 +1.15625,1.16,a-pcom-i3,2020-21,Ashland - Ashland Middle,140405,0,2.7,1.1,96.3,0,0,0,67.7,32.3,100 +1,1,a-pcom-i3,2020-21,Ashland - David Mindess,140015,0,0,1.7,98.3,0,0,0,83.6,16.4,100 +1.15625,1.16,a-pcom-i3,2020-21,Ashland - Henry E Warren Elementary,140010,0,3.7,0,96.3,0,0,0,96.7,3.3,100 +1.28125,1.28,a-pcom-i3,2020-21,Ashland - William Pittaway Elementary,140005,0,0,4.1,95.9,0,0,0,98.8,1.2,100 +1.53125,1.53,a-pcom-i3,2020-21,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0.7,0,4.2,95.1,0,0,0,51.1,48.9,100 +1,1,a-pcom-i3,2020-21,Athol-Royalston - Athol Community Elementary School,6150020,1.3,0,0,98.7,0,0,0,92.2,7.8,100 +1,1,a-pcom-i3,2020-21,Athol-Royalston - Athol High,6150505,0,0,0,100,0,0,0,67.9,32.1,100 +1,1,a-pcom-i3,2020-21,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,1.9,98.1,0,0,0,73.5,26.5,100 +1,1,a-pcom-i3,2020-21,Athol-Royalston - Royalston Community School,6150050,0,0,0,100,0,0,0,89,11,100 +1.5625,1.56,a-pcom-i3,2020-21,Atlantis Charter (District) - Atlantis Charter School,4910550,1.7,1.1,0,95,1.1,0,1.1,83.1,16.9,100 +1,1,a-pcom-i3,2020-21,Attleboro - A. Irvin Studley Elementary School,160001,0,0,2,98,0,0,0,98,2,100 +6.96875,5,a-pcom-i3,2020-21,Attleboro - Attleboro Community Academy,160515,22.3,0,0,77.7,0,0,0,68.8,31.2,100 +2.34375,2.34,a-pcom-i3,2020-21,Attleboro - Attleboro High,160505,2,0,5.1,92.5,0,0,0.5,71.1,28.9,100 +1.71875,1.72,a-pcom-i3,2020-21,Attleboro - Cyril K. Brennan Middle School,160315,0,0,3.1,94.5,0,0,2.4,81.5,18.5,100 +2,2,a-pcom-i3,2020-21,Attleboro - Early Learning Center,160008,0,0,3,93.6,0,0,3.4,100,0,100 +1.40625,1.41,a-pcom-i3,2020-21,Attleboro - Hill-Roberts Elementary School,160045,0,2.3,2.3,95.5,0,0,0,95.5,4.5,100 +2.625,2.63,a-pcom-i3,2020-21,Attleboro - Hyman Fine Elementary School,160040,0,0,8.4,91.6,0,0,0,90.8,9.2,100 +1.21875,1.22,a-pcom-i3,2020-21,Attleboro - Peter Thacher Elementary School,160050,0,1.3,0,96.1,0,0,2.6,92.4,7.6,100 +1.4375,1.44,a-pcom-i3,2020-21,Attleboro - Robert J. Coelho Middle School,160305,2.8,0,1.8,95.4,0,0,0,80,20,100 +1.53125,1.53,a-pcom-i3,2020-21,Attleboro - Thomas Willett Elementary School,160035,0,2.4,2.4,95.1,0,0,0,92.7,4.9,100 +1,1,a-pcom-i3,2020-21,Attleboro - Wamsutta Middle School,160320,0,0,1,97.1,1.9,0,0,74.8,25.2,100 +1,1,a-pcom-i3,2020-21,Auburn - Auburn Middle,170305,0,2.2,0.8,97,0,0,0,76,24,100 +1.65625,1.66,a-pcom-i3,2020-21,Auburn - Auburn Senior High,170505,2,0.4,2,94.7,0,0,1,69.9,30.1,100 +1,1,a-pcom-i3,2020-21,Auburn - Bryn Mawr,170010,0,0,2.4,97.6,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Auburn - Pakachoag School,170025,0,1.9,0,98.1,0,0,0,100,0,100 +2.875,2.88,a-pcom-i3,2020-21,Auburn - Swanson Road Intermediate School,170030,0,0,9.2,90.8,0,0,0,98.7,1.3,100 +4.1875,4.19,a-pcom-i3,2020-21,Avon - Avon Middle High School,180510,4.5,4.5,4.5,86.6,0,0,0,66.6,33.4,100 +1.25,1.25,a-pcom-i3,2020-21,Avon - Ralph D Butler,180010,3.9,0,0,96,0,0,0,94.1,5.9,100 +1.6875,1.69,a-pcom-i3,2020-21,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,1.8,0,3.6,94.6,0,0,0,62.2,37.8,100 +2.75,2.75,a-pcom-i3,2020-21,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,1.8,0,5.3,91.2,0,0,1.8,73.5,26.5,100 +1,1,a-pcom-i3,2020-21,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,1.9,0,98.1,0,0,0,96.1,3.9,100 +1.125,1.12,a-pcom-i3,2020-21,Ayer Shirley School District - Page Hilltop Elementary School,6160002,0,3.6,0,96.4,0,0,0,92.8,7.2,100 +1.15625,1.16,a-pcom-i3,2020-21,Barnstable - Barnstable Community Innovation School,200012,0,1.2,0,96.3,0,0,2.5,93,7,100 +1.8125,1.81,a-pcom-i3,2020-21,Barnstable - Barnstable High,200505,2.5,1.2,2.1,94.2,0,0,0,67.4,32.6,100 +1.21875,1.22,a-pcom-i3,2020-21,Barnstable - Barnstable Intermediate School,200315,1,2,0,96.1,0,0,1,81.4,18.6,100 +1,1,a-pcom-i3,2020-21,Barnstable - Barnstable United Elementary School,200050,0.9,0,0.9,97.3,0,0,0.9,89.6,10.4,100 +1.21875,1.22,a-pcom-i3,2020-21,Barnstable - Centerville Elementary,200010,0,0,2.5,96.1,1.5,0,0,92.6,7.4,100 +1,1,a-pcom-i3,2020-21,Barnstable - Enoch Cobb Early Learning Center,200001,0,0,2.8,97.2,0,0,0,100,0,100 +1.5625,1.56,a-pcom-i3,2020-21,Barnstable - Hyannis West Elementary,200025,0,2.9,2.1,95,0,0,0,95.8,4.2,100 +1,1,a-pcom-i3,2020-21,Barnstable - West Barnstable Elementary,200005,0,0,0,100,0,0,0,90.9,9.1,100 +1.6875,1.69,a-pcom-i3,2020-21,Barnstable - West Villages Elementary School,200045,3.6,0,1.8,94.6,0,0,0,95.5,4.5,100 +11.09375,5,a-pcom-i3,2020-21,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,17.1,0,18.4,64.5,0,0,0,64.2,35.8,100 +1.9375,1.94,a-pcom-i3,2020-21,Bedford - Bedford High,230505,3.2,0,3,93.8,0,0,0,64,36,100 +2.4375,2.44,a-pcom-i3,2020-21,Bedford - John Glenn Middle,230305,2.2,2,2.4,92.2,1.1,0,0,75.9,24.1,100 +4.125,4.13,a-pcom-i3,2020-21,Bedford - Lt Elezer Davis,230010,4.1,7,1,86.8,0,0,1,93.4,6.6,100 +2,2,a-pcom-i3,2020-21,Bedford - Lt Job Lane School,230012,1.1,3.2,1.1,93.6,0,0,1.1,89.9,10.1,100 +1,1,a-pcom-i3,2020-21,Belchertown - Belchertown High,240505,0,0,1.3,98.7,0,0,0,71,29,100 +1,1,a-pcom-i3,2020-21,Belchertown - Chestnut Hill Community School,240006,0,0,0,100,0,0,0,83.6,16.4,100 +1,1,a-pcom-i3,2020-21,Belchertown - Cold Spring,240005,0,0,2.6,97.4,0,0,0,96.4,3.6,100 +1,1,a-pcom-i3,2020-21,Belchertown - Jabish Middle School,240025,0,0,2.1,97.9,0,0,0,79.1,20.9,100 +1,1,a-pcom-i3,2020-21,Belchertown - Swift River Elementary,240018,0,0,0,100,0,0,0,94.4,5.6,100 +1,1,a-pcom-i3,2020-21,Bellingham - Bellingham Early Childhood Center,250003,0,0,0,100,0,0,0,100,0,100 +1.4375,1.44,a-pcom-i3,2020-21,Bellingham - Bellingham High School,250505,1.9,1.9,0.9,95.4,0,0,0,68.1,31.9,100 +1,1,a-pcom-i3,2020-21,Bellingham - Bellingham Memorial School,250315,0,1.2,0,98.8,0,0,0,78.3,21.7,100 +1,1,a-pcom-i3,2020-21,Bellingham - Joseph F DiPietro Elementary School,250020,0,0,2.1,97.9,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Bellingham - Keough Memorial Academy,250510,0,0,0,100,0,0,0,60,40,100 +1,1,a-pcom-i3,2020-21,Bellingham - Stall Brook,250025,0,0,0,100,0,0,0,96.1,3.9,100 +2.28125,2.28,a-pcom-i3,2020-21,Belmont - Belmont High,260505,0.9,2.8,2.7,92.7,0,0,0.9,70.8,29.2,100 +2.78125,2.78,a-pcom-i3,2020-21,Belmont - Daniel Butler,260015,2.2,2.5,0,91.1,0,0,4.2,88,12,100 +2.59375,2.59,a-pcom-i3,2020-21,Belmont - Mary Lee Burbank,260010,4,0,2.1,91.7,0,0,2.1,91.5,8.5,100 +1.875,1.88,a-pcom-i3,2020-21,Belmont - Roger E Wellington,260035,0,3.6,0,94,0,0,2.4,90.6,9.4,100 +1,1,a-pcom-i3,2020-21,Belmont - Winn Brook,260005,0,0,0,100,0,0,0,96.1,3.9,100 +5.34375,5,a-pcom-i3,2020-21,Belmont - Winthrop L Chenery Middle,260305,3.1,6.2,2.3,82.9,0,0,5.5,71.2,28.8,100 +16.4375,5,a-pcom-i3,2020-21,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,41,5.8,5.8,47.4,0,0,0,86,14,100 +1,1,a-pcom-i3,2020-21,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,1,1,1,97.1,0,0,0,88.5,11.5,100 +1,1,a-pcom-i3,2020-21,Berkley - Berkley Community School,270010,0,0,1.5,98.5,0,0,0,95.4,4.6,100 +1,1,a-pcom-i3,2020-21,Berkley - Berkley Middle School,270305,0,0,0,100,0,0,0,76.9,23.1,100 +1.1875,1.19,a-pcom-i3,2020-21,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,1.9,96.2,0,0,1.9,74.6,25.4,100 +1,1,a-pcom-i3,2020-21,Berkshire Hills - Monument Mt Regional High,6180505,0,0,1.4,97.2,0,0,1.4,67.5,32.5,100 +1,1,a-pcom-i3,2020-21,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,1.4,1.4,0,97.2,0,0,0,88.8,11.2,100 +1.625,1.63,a-pcom-i3,2020-21,Berkshire Hills - W.E.B. Du Bois Regional Middle School,6180310,1.7,1.7,1.7,94.8,0,0,0,68.4,31.6,100 +1,1,a-pcom-i3,2020-21,Berlin-Boylston - Berlin Memorial School,6200005,0,0,0,100,0,0,0,93.6,6.4,100 +1,1,a-pcom-i3,2020-21,Berlin-Boylston - Boylston Elementary School,6200010,0,0,0,97.6,0,0,2.4,90.5,9.5,100 +1,1,a-pcom-i3,2020-21,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,98.6,0,0,1.4,74.7,25.3,100 +1,1,a-pcom-i3,2020-21,Beverly - Ayers/Ryal Side School,300055,0,0,0,100,0,0,0,94,6,100 +1,1,a-pcom-i3,2020-21,Beverly - Beverly High,300505,1.3,0,0.5,98.1,0,0,0,67.8,32.2,100 +1.625,1.63,a-pcom-i3,2020-21,Beverly - Beverly Middle School,300305,0.6,0.6,3.9,94.8,0,0,0,75.2,24.8,100 +1,1,a-pcom-i3,2020-21,Beverly - Centerville Elementary,300010,0,1.9,0,98.1,0,0,0,90.7,9.3,100 +1,1,a-pcom-i3,2020-21,Beverly - Cove Elementary,300015,0,0,0,100,0,0,0,97.1,2.9,100 +1,1,a-pcom-i3,2020-21,Beverly - Hannah Elementary,300033,0,0,0,100,0,0,0,93.4,6.6,100 +1,1,a-pcom-i3,2020-21,Beverly - McKeown School,300002,0,0,0,100,0,0,0,97.5,2.5,100 +1,1,a-pcom-i3,2020-21,Beverly - North Beverly Elementary,300040,0,1.9,0,98.1,0,0,0,94.2,5.8,100 +1,1,a-pcom-i3,2020-21,Billerica - Billerica Memorial High School,310505,0.4,1,1.3,97.3,0,0,0,76.1,23.9,100 +1,1,a-pcom-i3,2020-21,Billerica - Frederick J Dutile,310007,0,0,2.9,97.1,0,0,0,96.1,3.9,100 +1,1,a-pcom-i3,2020-21,Billerica - Hajjar Elementary,310026,0,0.9,0,99.1,0,0,0,94.3,5.7,100 +1,1,a-pcom-i3,2020-21,Billerica - John F Kennedy,310012,0,2.1,0,97.9,0,0,0,91.8,8.2,100 +1,1,a-pcom-i3,2020-21,Billerica - Locke Middle,310310,0,0,0,100,0,0,0,81.7,18.3,100 +1.40625,1.41,a-pcom-i3,2020-21,Billerica - Marshall Middle School,310305,3.4,1.1,0,95.5,0,0,0,79.9,20.1,100 +1,1,a-pcom-i3,2020-21,Billerica - Parker,310015,0,0,0,98.7,0,0,1.3,92.9,7.1,100 +1,1,a-pcom-i3,2020-21,Billerica - Thomas Ditson,310005,0,1.4,0,98.6,0,0,0,95.7,4.3,100 +1,1,a-pcom-i3,2020-21,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,1.8,98.2,0,0,0,57.6,42.4,100 +1,1,a-pcom-i3,2020-21,Blackstone-Millville - A F Maloney,6220015,0,1.6,0,98.4,0,0,0,93.4,6.6,100 +1.1875,1.19,a-pcom-i3,2020-21,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,3.8,96.2,0,0,0,61.3,38.7,100 +2.78125,2.78,a-pcom-i3,2020-21,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,8.9,91.1,0,0,0,84.3,15.7,100 +1,1,a-pcom-i3,2020-21,Blackstone-Millville - John F Kennedy Elementary,6220008,0,2.1,0,97.9,0,0,0,94.4,5.6,100 +1,1,a-pcom-i3,2020-21,Blackstone-Millville - Millville Elementary,6220010,0,0,0,100,0,0,0,95.5,4.5,100 +2.46875,2.47,a-pcom-i3,2020-21,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,2.6,2.6,1.8,92.1,0,0,0.9,52,48,100 +14.1875,5,a-pcom-i3,2020-21,Boston - Another Course To College,350541,33.3,6.1,3,54.6,0,0,3,57.6,42.4,100 +17.40625,5,a-pcom-i3,2020-21,Boston - Baldwin Early Learning Center,350003,18.2,19.3,18.2,44.3,0,0,0,94.3,5.7,100 +5.53125,5,a-pcom-i3,2020-21,Boston - Beethoven,350021,9.2,2.8,5.8,82.3,0,0,0,87,13,100 +16.96875,5,a-pcom-i3,2020-21,Boston - Blackstone,350390,26.7,1.9,23.7,45.7,1,0,1,81.5,18.5,100 +24.78125,5,a-pcom-i3,2020-21,Boston - Boston Adult Academy,350548,55.2,10.3,10.3,20.7,0,3.5,0,51.7,48.3,100 +16.5,5,a-pcom-i3,2020-21,Boston - Boston Arts Academy,350546,31.2,4,17.6,47.2,0,0,0,64.8,35.2,100 +16.6875,5,a-pcom-i3,2020-21,Boston - Boston Collaborative High School,350755,23.3,4.5,25.6,46.6,0,0,0,68.6,31.4,100 +18.4375,5,a-pcom-i3,2020-21,Boston - Boston Community Leadership Academy,350558,39.3,7.5,12.2,41,0,0,0,68.1,31.9,100 +15.21875,5,a-pcom-i3,2020-21,Boston - Boston International High School,350507,20.8,2.4,25.6,51.3,0,0,0,60.7,39.3,100 +10.25,5,a-pcom-i3,2020-21,Boston - Boston Latin,350560,18,7.4,6.2,67.2,0,0.6,0.6,58.4,41.6,100 +13.125,5,a-pcom-i3,2020-21,Boston - Boston Latin Academy,350545,19.6,13.1,8.6,58,0,0,0.8,63.3,36.7,100 +13.6875,5,a-pcom-i3,2020-21,Boston - Boston Teachers Union School,350012,24.6,3.2,16.1,56.2,0,0,0,84,16,100 +14.71875,5,a-pcom-i3,2020-21,Boston - Brighton High,350505,26.4,3.6,17,52.9,0,0,0,64.5,35.5,100 +13.03125,5,a-pcom-i3,2020-21,Boston - Carter School,350036,37.5,4.2,0,58.3,0,0,0,83.3,16.7,100 +24.03125,5,a-pcom-i3,2020-21,Boston - Charles H Taylor,350054,67.3,5.9,3.6,23.1,0,0,0,90.5,9.5,100 +15.25,5,a-pcom-i3,2020-21,Boston - Charles Sumner,350052,23.9,2.9,22,51.2,0,0,0,93.7,6.3,100 +13.96875,5,a-pcom-i3,2020-21,Boston - Charlestown High,350515,30.7,6.5,6.9,55.3,0.6,0,0,63.9,36.1,100 +14.1875,5,a-pcom-i3,2020-21,Boston - Clarence R Edwards Middle,350430,26.1,6.4,12.9,54.6,0,0,0,63.5,36.5,100 +21.8125,5,a-pcom-i3,2020-21,Boston - Community Academy,350518,35.7,19.5,9.7,30.2,4.9,0,0,64.3,35.7,100 +16.4375,5,a-pcom-i3,2020-21,Boston - Community Academy of Science and Health,350581,46.2,3.2,3.2,47.4,0,0,0,63.3,36.7,100 +12.59375,5,a-pcom-i3,2020-21,Boston - Condon K-8,350146,26,3.7,10.6,59.7,0,0,0,82.9,17.1,100 +11.75,5,a-pcom-i3,2020-21,Boston - Curley K-8 School,350020,17.1,1.5,18.3,62.4,0.6,0,0,87.7,12.3,100 +8.9375,5,a-pcom-i3,2020-21,Boston - Curtis Guild,350062,15.2,2.2,11.2,71.4,0,0,0,85.9,14.1,100 +10.71875,5,a-pcom-i3,2020-21,Boston - Dante Alighieri Montessori School,350066,6.5,0,27.8,65.7,0,0,0,85.3,14.7,100 +22.59375,5,a-pcom-i3,2020-21,Boston - David A Ellis,350072,53.9,3.4,13.4,27.7,1.7,0,0,79.1,20.9,100 +17.46875,5,a-pcom-i3,2020-21,Boston - Dearborn,350074,38.7,4.1,11.7,44.1,1.4,0,0,66.1,33.9,100 +10.46875,5,a-pcom-i3,2020-21,Boston - Dennis C Haley,350077,19.1,9.6,4.8,66.5,0,0,0,88,12,100 +9.46875,5,a-pcom-i3,2020-21,Boston - Donald Mckay,350080,4.3,6.4,18.6,69.7,0,0,1.1,79.3,20.7,100 +20.71875,5,a-pcom-i3,2020-21,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,52.2,4.3,9.8,33.7,0,0,0,89.1,10.9,100 +8.1875,5,a-pcom-i3,2020-21,Boston - Dr. William Henderson Lower,350266,19.2,3.5,3.5,73.8,0,0,0,80.8,17.4,100 +8.9375,5,a-pcom-i3,2020-21,Boston - Dr. William Henderson Upper,350426,17.6,6,5,71.4,0,0,0,76.2,23.8,100 +20.28125,5,a-pcom-i3,2020-21,Boston - ELC - West Zone,350006,40.5,2.7,18.9,35.1,2.7,0,0,86.5,13.5,100 +16.0625,5,a-pcom-i3,2020-21,Boston - East Boston Early Childhood Center,350009,18.3,4.1,26.9,48.6,0,2.1,0,92.5,7.5,100 +9.65625,5,a-pcom-i3,2020-21,Boston - East Boston High,350530,9.3,3.1,18.4,69.1,0,0,0,57.3,42.7,100 +13.8125,5,a-pcom-i3,2020-21,Boston - Edison K-8,350375,23.2,5.4,15.6,55.8,0,0,0,77.5,22.5,100 +12.90625,5,a-pcom-i3,2020-21,Boston - Edward Everett,350088,25.3,8,5.3,58.7,0,0,2.7,88,12,100 +11.28125,5,a-pcom-i3,2020-21,Boston - Eliot Elementary,350096,17.8,10.1,7.1,63.9,0,0,1.2,85.8,14.2,100 +13.8125,5,a-pcom-i3,2020-21,Boston - Ellis Mendell,350100,15.6,3.2,25.4,55.8,0,0,0,94,6,100 +16.84375,5,a-pcom-i3,2020-21,Boston - Excel High School,350522,35.8,10.5,6.3,46.1,1.3,0,0,63.8,36.2,100 +17.84375,5,a-pcom-i3,2020-21,Boston - Fenway High School,350540,34.5,3.7,17.1,42.9,0,1.9,0,58.1,41.9,100 +11.3125,5,a-pcom-i3,2020-21,Boston - Franklin D Roosevelt,350116,24.2,3.7,8.3,63.8,0,0,0,92.6,7.4,100 +14.78125,5,a-pcom-i3,2020-21,Boston - Gardner Pilot Academy,350326,23.1,6,18.1,52.7,0,0,0,87.9,12.1,100 +11,5,a-pcom-i3,2020-21,Boston - George H Conley,350122,25.1,2.5,7.5,64.8,0,0,0,84.9,15.1,100 +22.1875,5,a-pcom-i3,2020-21,Boston - Greater Egleston Community High School,350543,41.9,3.2,25.8,29,0,0,0,74.2,25.8,100 +9.625,5,a-pcom-i3,2020-21,Boston - Harvard-Kent,350200,12.5,13.1,5.2,69.2,0,0,0,77.4,22.6,100 +26.40625,5,a-pcom-i3,2020-21,Boston - Haynes Early Education Center,350010,68,2.1,14.4,15.5,0,0,0,80.4,19.6,100 +17.34375,5,a-pcom-i3,2020-21,Boston - Henry Grew,350135,48.4,0,7.1,44.5,0,0,0,86.4,13.6,100 +18.34375,5,a-pcom-i3,2020-21,Boston - Higginson,350015,31.2,8.3,19.3,41.3,0,0,0,89,11,100 +22.34375,5,a-pcom-i3,2020-21,Boston - Higginson/Lewis K-8,350377,61.6,1.7,6.6,28.5,0,0,1.7,78.1,21.9,100 +8.90625,5,a-pcom-i3,2020-21,Boston - Horace Mann School for the Deaf,350750,10.7,7.1,10.7,71.5,0,0,0,84,16,100 +10.40625,5,a-pcom-i3,2020-21,Boston - Hugh Roe O'Donnell,350141,6.2,3.1,21,66.7,3.1,0,0,84.6,15.4,100 +14.3125,5,a-pcom-i3,2020-21,Boston - Jackson Mann,350013,28.8,5.2,11.8,54.2,0,0,0,78.1,21.9,100 +17.53125,5,a-pcom-i3,2020-21,Boston - James J Chittick,350154,40.6,5.2,6.9,43.9,1.7,0,1.7,89.7,10.3,100 +8.34375,5,a-pcom-i3,2020-21,Boston - James Otis,350156,8.9,5.9,11.9,73.3,0,0,0,84.9,15.1,100 +20.03125,5,a-pcom-i3,2020-21,Boston - James P Timilty Middle,350485,43.5,0,20.6,35.9,0,0,0,67.5,30.2,100 +16.53125,5,a-pcom-i3,2020-21,Boston - James W Hennigan,350153,31.3,0.7,21,47.1,0,0,0,83.5,16.5,100 +17.65625,5,a-pcom-i3,2020-21,Boston - Jeremiah E Burke High,350525,49.2,0,7.3,43.5,0,0,0,59.5,40.5,100 +15.46875,5,a-pcom-i3,2020-21,Boston - John D Philbrick,350172,40.1,4,5.3,50.5,0,0,0,79.3,20.7,100 +10.46875,5,a-pcom-i3,2020-21,Boston - John F Kennedy,350166,22.1,0,11.4,66.5,0,0,0,79.5,20.5,100 +15.03125,5,a-pcom-i3,2020-21,Boston - John W McCormack,350179,28.2,4.4,15.5,51.9,0,0,0,73.5,26.5,100 +12.25,5,a-pcom-i3,2020-21,Boston - John Winthrop,350180,27.5,2.9,8.8,60.8,0,0,0,85.3,14.7,100 +22.125,5,a-pcom-i3,2020-21,Boston - Joseph J Hurley,350182,9,0,61.8,29.2,0,0,0,88.8,11.2,100 +15.5,5,a-pcom-i3,2020-21,Boston - Joseph Lee,350183,39.1,3.3,6.6,50.4,0.7,0,0,77.3,22.7,100 +10.1875,5,a-pcom-i3,2020-21,Boston - Joseph P Manning,350184,29.2,0,3.4,67.4,0,0,0,81.1,18.9,100 +11.75,5,a-pcom-i3,2020-21,Boston - Joseph P Tynan,350181,26.1,0,11.4,62.4,0,0,0,90.2,9.8,100 +19.46875,5,a-pcom-i3,2020-21,Boston - Josiah Quincy,350286,15.7,44,2.6,37.7,0,0,0,86.1,13.9,100 +5.34375,5,a-pcom-i3,2020-21,Boston - Joyce Kilmer,350190,14.1,0,3,82.9,0,0,0,82.6,17.4,100 +21.6875,5,a-pcom-i3,2020-21,Boston - King K-8,350376,58.1,2,9.2,30.6,0,0,0,76.3,23.7,100 +17.84375,5,a-pcom-i3,2020-21,Boston - Lee Academy,350001,32.4,7,17.8,42.9,0,0,0,82.6,17.4,100 +20.90625,5,a-pcom-i3,2020-21,Boston - Lilla G. Frederick Middle School,350383,42.8,3.7,20.4,33.1,0,0,0,69.5,30.5,100 +7.1875,5,a-pcom-i3,2020-21,Boston - Lyndon,350262,14.5,0,6.2,77,1,0,1.4,84.8,15.2,100 +9.5,5,a-pcom-i3,2020-21,Boston - Lyon K-8,350004,17.7,7.6,5.1,69.6,0,0,0,74.7,25.3,100 +15.375,5,a-pcom-i3,2020-21,Boston - Lyon Upper 9-12,350655,32.3,3.9,10.4,50.8,0,2.6,0,53.9,46.1,100 +16.1875,5,a-pcom-i3,2020-21,Boston - Madison Park High,350537,36.4,1.3,13.1,48.2,0,1,0,51.8,48.2,100 +1.78125,1.78,a-pcom-i3,2020-21,Boston - Manassah E Bradley,350215,3,2.7,0,94.3,0,0,0,87.8,12.2,100 +16.1875,5,a-pcom-i3,2020-21,Boston - Margarita Muniz Academy,350549,0,2.9,48.9,48.2,0,0,0,67.6,32.4,100 +12.6875,5,a-pcom-i3,2020-21,Boston - Mario Umana Academy,350656,10.9,2,26.7,59.4,1,0,0,79.7,20.3,100 +20.09375,5,a-pcom-i3,2020-21,Boston - Mather,350227,46.1,14,4.2,35.7,0,0,0,80.5,19.5,100 +17.125,5,a-pcom-i3,2020-21,Boston - Mattahunt Elementary School,350016,44.4,1.2,9.2,45.2,0,0,0,86.2,13.8,100 +15.25,5,a-pcom-i3,2020-21,Boston - Maurice J Tobin,350229,15.9,4.1,28.8,51.2,0,0,0,85.7,14.3,100 +14.625,5,a-pcom-i3,2020-21,Boston - Michael J Perkins,350231,27.4,6.1,13.4,53.2,0,0,0,87.8,12.2,100 +19,5,a-pcom-i3,2020-21,Boston - Mildred Avenue K-8,350378,43.2,3.8,13.9,39.2,0,0,0,79.5,20.5,100 +15.25,5,a-pcom-i3,2020-21,Boston - Mission Hill School,350382,37.6,0.7,10.5,51.2,0,0,0,82.1,17.9,100 +12.875,5,a-pcom-i3,2020-21,Boston - Mozart,350237,21.1,3.1,17,58.8,0,0,0,87.6,12.4,100 +17.09375,5,a-pcom-i3,2020-21,Boston - Nathan Hale,350243,40,0,10.6,45.3,4,0,0,84,16,100 +15,5,a-pcom-i3,2020-21,Boston - New Mission High School,350542,29.5,10.7,7.8,52,0,0,0,62.3,37.7,100 +16.96875,5,a-pcom-i3,2020-21,Boston - O W Holmes,350138,47.8,3.2,3.3,45.7,0,0,0,77.6,22.4,100 +18.25,5,a-pcom-i3,2020-21,Boston - O'Bryant School Math/Science,350575,35.8,6.8,14.9,41.6,0,0,0.8,59.7,40.3,100 +7.65625,5,a-pcom-i3,2020-21,Boston - Oliver Hazard Perry,350255,14,0,10.5,75.5,0,0,0,88.8,11.2,100 +14.5625,5,a-pcom-i3,2020-21,Boston - Orchard Gardens,350257,28.7,1.7,14.6,53.4,0,0,1.7,77.9,22.1,100 +10.5625,5,a-pcom-i3,2020-21,Boston - Patrick J Kennedy,350264,4.7,2.4,26.7,66.2,0,0,0,92.9,7.1,100 +14.34375,5,a-pcom-i3,2020-21,Boston - Paul A Dever,350268,28.6,1.5,15.8,54.1,0,0,0,78.9,21.1,100 +15.96875,5,a-pcom-i3,2020-21,Boston - Pauline Agassiz Shaw Elementary School,350014,33.3,0,8.9,48.9,4.4,0,4.4,84.5,15.5,100 +8.53125,5,a-pcom-i3,2020-21,Boston - Phineas Bates,350278,15,2.4,9.8,72.7,0,0,0,85.3,14.7,100 +20.4375,5,a-pcom-i3,2020-21,Boston - Quincy Upper School,350565,23.9,28.7,12.8,34.6,0,0,0,67,33,100 +21.4375,5,a-pcom-i3,2020-21,Boston - Rafael Hernandez,350691,5.5,0,63.1,31.4,0,0,0,84.1,15.9,100 +12.71875,5,a-pcom-i3,2020-21,Boston - Richard J Murphy,350240,25.5,8.6,6.7,59.3,0,0,0,71.7,28.3,100 +17.375,5,a-pcom-i3,2020-21,Boston - Roger Clap,350298,48.5,2,5.1,44.4,0,0,0,77.9,22.1,100 +14.03125,5,a-pcom-i3,2020-21,Boston - Samuel Adams,350302,14.7,2,28.3,55.1,0,0,0,86.3,13.7,100 +18.6875,5,a-pcom-i3,2020-21,Boston - Samuel W Mason,350304,48.3,1.9,7.7,40.2,1.9,0,0,85.3,14.7,100 +20.0625,5,a-pcom-i3,2020-21,Boston - Sarah Greenwood,350308,17.8,1.5,44.9,35.8,0,0,0,79.1,20.9,100 +13.65625,5,a-pcom-i3,2020-21,Boston - Snowden International School at Copley,350690,28.1,5.3,10.3,56.3,0,0,0,57.6,42.4,100 +13.8125,5,a-pcom-i3,2020-21,Boston - TechBoston Academy,350657,37.8,0.9,5.5,55.8,0,0,0,60.6,39.4,100 +14.625,5,a-pcom-i3,2020-21,Boston - The English High,350535,23.9,4.4,17.4,53.2,0,0,1.1,60.7,39.3,100 +12.71875,5,a-pcom-i3,2020-21,Boston - Thomas J Kenny,350328,25.9,7,7,59.3,0,0,0.9,81.1,18.9,100 +14.03125,5,a-pcom-i3,2020-21,Boston - UP Academy Holland,350167,25.8,6.7,12.4,55.1,0,0,0,84.3,15.7,100 +7.21875,5,a-pcom-i3,2020-21,Boston - Warren-Prescott,350346,14.6,1.2,7.3,76.9,0,0,0,87.6,12.4,100 +13,5,a-pcom-i3,2020-21,Boston - Washington Irving Middle,350445,28.7,4.1,8.9,58.4,0,0,0,76.4,23.6,100 +12.15625,5,a-pcom-i3,2020-21,Boston - William E Russell,350366,19.3,3.1,16.5,61.1,0,0,0,86.9,13.1,100 +19.625,5,a-pcom-i3,2020-21,Boston - William Ellery Channing,350360,43.9,5.2,12.9,37.2,0.9,0,0,82.6,17.4,100 +11.71875,5,a-pcom-i3,2020-21,Boston - William H Ohrenberger,350258,25.4,0.7,9.9,62.5,0,0,1.5,69,31,100 +17.25,5,a-pcom-i3,2020-21,Boston - William McKinley,350363,43,1.1,9.9,44.8,0,0.6,0.6,54.3,45.7,100 +17.125,5,a-pcom-i3,2020-21,Boston - William Monroe Trotter,350370,51.1,1.9,1.9,45.2,0,0,0,86.1,13.9,100 +14.6875,5,a-pcom-i3,2020-21,Boston - Winship Elementary,350374,25.8,3,18.2,53,0,0,0,84.9,15.1,100 +21.90625,5,a-pcom-i3,2020-21,Boston - Young Achievers,350380,56.7,1,12.4,29.9,0,0,0,80.1,19.9,100 +13.09375,5,a-pcom-i3,2020-21,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,14.9,4.8,16.4,58.1,0,0,5.8,67.1,32.9,100 +19.125,5,a-pcom-i3,2020-21,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,32.2,7.8,15.5,38.8,1.9,0,3.9,67.1,32.9,100 +16.15625,5,a-pcom-i3,2020-21,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,30.8,5.7,15.2,48.3,0,0,0,69.3,30.7,100 +11.09375,5,a-pcom-i3,2020-21,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,23,5,5,64.5,0,0,2.5,66.8,33.2,100 +9,5,a-pcom-i3,2020-21,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,19.4,4.5,4.2,71.2,0,0,0.6,81.9,18.1,100 +1,1,a-pcom-i3,2020-21,Bourne - Bourne High School,360505,0,0,0,98.4,0,0,1.6,67.4,32.6,100 +1,1,a-pcom-i3,2020-21,Bourne - Bourne Intermediate School,360030,0,0.9,0,99.1,0,0,0,91.9,8.1,100 +1.84375,1.84,a-pcom-i3,2020-21,Bourne - Bourne Middle School,360325,0,1.5,0,94.1,0,0,4.4,80.8,19.2,100 +1,1,a-pcom-i3,2020-21,Bourne - Bournedale Elementary School,360005,0,0.8,0,99.2,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Boxford - Harry Lee Cole,380005,0,0,1.9,98.1,0,0,0,95.8,4.2,100 +1.9375,1.94,a-pcom-i3,2020-21,Boxford - Spofford Pond,380013,0,0,6.2,93.8,0,0,0,95.1,4.9,100 +1,1,a-pcom-i3,2020-21,Braintree - Archie T Morrison,400033,0,0,1.9,98.1,0,0,0,90.3,9.7,100 +1.03125,1.03,a-pcom-i3,2020-21,Braintree - Braintree High,400505,1,1,0.5,96.7,0,0.3,0.5,69.8,30.2,100 +1,1,a-pcom-i3,2020-21,Braintree - Donald Ross,400050,0,0,0,100,0,0,0,98.6,1.4,100 +1,1,a-pcom-i3,2020-21,Braintree - East Middle School,400305,0.9,0,0.9,98.3,0,0,0,78.5,21.5,100 +1,1,a-pcom-i3,2020-21,Braintree - Highlands,400015,0,2.4,0,97.6,0,0,0,91.5,8.5,100 +1,1,a-pcom-i3,2020-21,Braintree - Hollis,400005,0,0,0,100,0,0,0,96.1,3.9,100 +1,1,a-pcom-i3,2020-21,Braintree - Liberty,400025,2.6,0,0,97.4,0,0,0,97.4,2.6,100 +1.46875,1.47,a-pcom-i3,2020-21,Braintree - Mary E Flaherty School,400020,1.8,1.1,0,95.3,0,0,1.8,98.2,1.8,100 +2.28125,2.28,a-pcom-i3,2020-21,Braintree - Monatiquot Kindergarten Center,400009,3.6,0,0,92.7,0,3.6,0,97.5,2.5,100 +1,1,a-pcom-i3,2020-21,Braintree - South Middle School,400310,0,0,0,100,0,0,0,77.6,22.4,100 +1,1,a-pcom-i3,2020-21,Brewster - Eddy Elementary,410010,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Brewster - Stony Brook Elementary,410005,0,0,2,98,0,0,0,97.1,2.9,100 +9.78125,5,a-pcom-i3,2020-21,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,23.9,1.6,4.1,68.7,0,0,1.6,74.2,24.2,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,100,0,0,0,79.8,20.2,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,2.4,0,0.8,96.8,0,0,0,68,32,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,100,0,0,0,87.4,12.6,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Merrill Elementary School,6250020,0,0,0,100,0,0,0,92.6,7.4,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Mitchell Elementary School,6250002,0.9,0,0.9,97.4,0,0,0.9,94.8,5.2,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,100,0,0,0,84.3,15.7,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,100,0,0,0,79.6,20.4,100 +1,1,a-pcom-i3,2020-21,Bridgewater-Raynham - Williams Intermediate School,6250300,1.5,0,0,97.1,0,0,1.5,86,14,100 +1,1,a-pcom-i3,2020-21,Brimfield - Brimfield Elementary,430005,0,2.4,0,97.6,0,0,0,92.1,7.9,100 +1,1,a-pcom-i3,2020-21,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,2,98,0,0,0,59,41,100 +1.46875,1.47,a-pcom-i3,2020-21,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,2,0,1.3,95.3,1.3,0,0,62.8,37.2,100 +2.875,2.88,a-pcom-i3,2020-21,Brockton - Ashfield Middle School,440421,9.2,0,0,90.8,0,0,0,84.6,15.4,100 +3.3125,3.31,a-pcom-i3,2020-21,Brockton - Barrett Russell Early Childhood Center,440008,5.3,1.7,3.6,89.4,0,0,0,97.8,2.2,100 +11.0625,5,a-pcom-i3,2020-21,Brockton - Brockton Champion High School,440515,29.2,0,2.7,64.6,0,0,3.5,66,34,100 +7.8125,5,a-pcom-i3,2020-21,Brockton - Brockton High,440505,17.8,2.1,3,75,0,0.5,1.5,63.7,36.3,100 +5.4375,5,a-pcom-i3,2020-21,Brockton - Brookfield,440010,12.7,0,4.7,82.6,0,0,0,95.8,4.2,100 +5.46875,5,a-pcom-i3,2020-21,Brockton - Downey,440110,11.8,1.1,2.3,82.5,1.1,0,1.1,93.4,6.6,100 +7.0625,5,a-pcom-i3,2020-21,Brockton - Dr W Arnone Community School,440001,13.7,1,5.8,77.4,0,0,2.1,93.5,6.5,100 +5.03125,5,a-pcom-i3,2020-21,Brockton - East Middle School,440405,13,1.4,1.4,83.9,0,0,0.3,65.5,34.5,100 +4.5625,4.56,a-pcom-i3,2020-21,Brockton - Edgar B Davis,440023,8.7,0,2.4,85.4,0,0,3.5,73.5,26.5,100 +15.1875,5,a-pcom-i3,2020-21,Brockton - Edison Academy,440520,46.6,0,1.4,51.4,0,0,0.6,61.2,38.8,100 +8.625,5,a-pcom-i3,2020-21,Brockton - Frederick Douglass Academy,440080,10.6,0,8.8,72.4,5.9,0,2.4,66.5,33.5,100 +7.375,5,a-pcom-i3,2020-21,Brockton - Gilmore Elementary School,440055,21.5,0,0,76.4,0,0,2.1,88.4,11.6,100 +5.4375,5,a-pcom-i3,2020-21,Brockton - Hancock,440045,7.6,0,6.4,82.6,0.6,0,2.8,92.8,7.2,100 +8.9375,5,a-pcom-i3,2020-21,Brockton - Huntington Therapeutic Day School,440400,25.6,0,3,71.4,0,0,0,62.7,37.3,100 +7.375,5,a-pcom-i3,2020-21,Brockton - John F Kennedy,440017,15.3,4.1,3.6,76.4,0,0,0.6,92.2,7.8,100 +7.125,5,a-pcom-i3,2020-21,Brockton - Joseph F. Plouffe Academy,440422,14.7,4,4,77.2,0,0,0,81.8,18.2,100 +6.5,5,a-pcom-i3,2020-21,Brockton - Louis F Angelo Elementary,440065,13.7,0.2,2.9,79.2,0,0,3.9,90.5,9.5,100 +10.90625,5,a-pcom-i3,2020-21,Brockton - Manthala George Jr. School,440003,16.6,0.6,16.4,65.1,1.2,0,0,95.7,4.3,100 +7.78125,5,a-pcom-i3,2020-21,Brockton - Mary E. Baker School,440002,16.3,0,7.5,75.1,0,1.1,0,97.4,2.6,100 +9.5625,5,a-pcom-i3,2020-21,Brockton - North Middle School,440410,22,0,0,69.4,0,0,8.6,77.6,22.4,100 +4.6875,4.69,a-pcom-i3,2020-21,Brockton - Oscar F Raymond,440078,11.9,0,1.1,85,0,0,2,94.7,5.3,100 +8.0625,5,a-pcom-i3,2020-21,Brockton - South Middle School,440415,22.8,0,2.5,74.2,0,0,0.5,78,22,100 +6.75,5,a-pcom-i3,2020-21,Brockton - West Middle School,440420,16.8,3,1.5,78.4,0,0,0.3,70.9,29.1,100 +14.4375,5,a-pcom-i3,2020-21,Brooke Charter School (District) - Brooke Charter School,4280305,23.3,1.4,17.9,53.8,0,0.7,2.9,78.1,21.9,100 +1,1,a-pcom-i3,2020-21,Brookfield - Brookfield Elementary,450005,0,0,0,100,0,0,0,93.3,6.7,100 +8.6875,5,a-pcom-i3,2020-21,Brookline - Brookline Early Education Program at Beacon,460001,6.4,10.7,10.7,72.2,0,0,0,89.3,10.7,100 +5.875,5,a-pcom-i3,2020-21,Brookline - Brookline Early Education Program at Clark Road,460003,17.9,1,0,81.2,0,0,0,90.3,9.7,100 +5.3125,5,a-pcom-i3,2020-21,Brookline - Brookline Early Education Program at Putterham,460002,4,3.6,9.4,83,0,0,0,100,0,100 +6.9375,5,a-pcom-i3,2020-21,Brookline - Brookline High,460505,9.9,4.3,6.1,77.8,0,0,1.8,65,35,100 +4.875,4.87,a-pcom-i3,2020-21,Brookline - Edith C Baker,460005,6.5,5.2,2.9,84.4,0,0,1,80.9,19.1,100 +6.46875,5,a-pcom-i3,2020-21,Brookline - Florida Ruffin Ridley School,460015,10.3,3.1,5.9,79.3,0,0.7,0.7,78.5,21.5,100 +5.03125,5,a-pcom-i3,2020-21,Brookline - Heath,460025,6.6,2.8,6.6,83.9,0,0,0,86.8,13.2,100 +4.90625,4.91,a-pcom-i3,2020-21,Brookline - John D Runkle,460045,8.7,3.9,1.1,84.3,0,1,1,86.7,13.3,100 +5.46875,5,a-pcom-i3,2020-21,Brookline - Lawrence,460030,5.7,9.6,1.1,82.5,0,0,1,83.5,16.5,100 +5.28125,5,a-pcom-i3,2020-21,Brookline - Michael Driscoll,460020,6.1,5.7,4,83.1,0,0,1.2,83.7,16.3,100 +5.1875,5,a-pcom-i3,2020-21,Brookline - Pierce,460040,5.6,7.9,1.1,83.4,0,0,1.9,85.1,14.9,100 +5.5,5,a-pcom-i3,2020-21,Brookline - The Lynch Center,460060,3.2,0.4,14.1,82.4,0,0,0,96.4,0,100 +5.25,5,a-pcom-i3,2020-21,Brookline - William H Lincoln,460035,6.3,2.8,6.8,83.2,0,0,0.9,82.1,17.9,100 +1.75,1.75,a-pcom-i3,2020-21,Burlington - Burlington High,480505,0,2.6,2.6,94.4,0,0,0.4,77.5,22.5,100 +1,1,a-pcom-i3,2020-21,Burlington - Fox Hill,480007,0,0,0,100,0,0,0,81.6,18.4,100 +1,1,a-pcom-i3,2020-21,Burlington - Francis Wyman Elementary,480035,0,0,0,100,0,0,0,92,8,100 +1.65625,1.66,a-pcom-i3,2020-21,Burlington - Marshall Simonds Middle,480303,1.1,4.2,0,94.7,0,0,0,82.5,17.5,100 +1.46875,1.47,a-pcom-i3,2020-21,Burlington - Memorial,480015,0,4.7,0,95.3,0,0,0,96.5,3.5,100 +1,1,a-pcom-i3,2020-21,Burlington - Pine Glen Elementary,480020,0,1.5,0,97,0,0,1.5,90.6,7.9,100 +17.59375,5,a-pcom-i3,2020-21,Cambridge - Amigos School,490006,4.2,0,52.1,43.7,0,0,0,79.2,20.8,100 +7.9375,5,a-pcom-i3,2020-21,Cambridge - Cambridge Rindge and Latin,490506,13.7,4.6,6,74.6,0.2,0.3,0.6,63.4,36.6,100 +8.84375,5,a-pcom-i3,2020-21,Cambridge - Cambridge Street Upper School,490305,18.9,6.3,3.1,71.7,0,0,0,88.6,11.4,100 +10.53125,5,a-pcom-i3,2020-21,Cambridge - Cambridgeport,490007,22.7,7.8,3.1,66.3,0,0,0,83.6,16.4,100 +13.1875,5,a-pcom-i3,2020-21,Cambridge - Fletcher/Maynard Academy,490090,28.6,9.3,1.8,57.8,0,1.2,1.2,81,19,100 +8.59375,5,a-pcom-i3,2020-21,Cambridge - Graham and Parks,490080,18.5,4.1,4.1,72.5,0.7,0,0,94.4,5.6,100 +6.25,5,a-pcom-i3,2020-21,Cambridge - Haggerty,490020,12,3.8,2.6,80,1.7,0,0,84.3,15.7,100 +6.5625,5,a-pcom-i3,2020-21,Cambridge - John M Tobin,490065,13.3,4.2,3.5,79,0,0,0,83.1,16.9,100 +7.5,5,a-pcom-i3,2020-21,Cambridge - Kennedy-Longfellow,490040,12.5,3.8,7.7,76,0,0,0,94.9,5.1,100 +12.28125,5,a-pcom-i3,2020-21,Cambridge - King Open,490035,18.3,9.3,11.7,60.7,0,0,0,83.3,16.7,100 +4.96875,4.97,a-pcom-i3,2020-21,Cambridge - Maria L. Baldwin,490005,5.6,4.4,5.9,84.1,0,0,0,83.5,16.5,100 +10.875,5,a-pcom-i3,2020-21,Cambridge - Martin Luther King Jr.,490030,14.1,17.5,3.1,65.2,0,0,0,87.5,12.5,100 +7.65625,5,a-pcom-i3,2020-21,Cambridge - Morse,490045,14,2.6,7.2,75.5,0.7,0,0,87.4,12.6,100 +6.03125,5,a-pcom-i3,2020-21,Cambridge - Peabody,490050,9.4,6.3,3.6,80.7,0,0,0,92.1,7.9,100 +14.5625,5,a-pcom-i3,2020-21,Cambridge - Putnam Avenue Upper School,490310,29.5,11.6,5.5,53.4,0,0,0,65.9,34.1,100 +11.5625,5,a-pcom-i3,2020-21,Cambridge - Rindge Avenue Upper School,490315,21.5,7.7,7.8,63,0,0,0,69.8,30.2,100 +8.34375,5,a-pcom-i3,2020-21,Cambridge - Vassal Lane Upper School,490320,14.8,1.8,10.1,73.3,0,0,0,75.2,24.8,100 +1.84375,1.84,a-pcom-i3,2020-21,Canton - Canton High,500505,0,2,2,94.1,0,0,2,67.4,32.6,100 +1.5625,1.56,a-pcom-i3,2020-21,Canton - Dean S Luce,500020,1.7,1.7,1.7,95,0,0,0,95.2,4.8,100 +2.3125,2.31,a-pcom-i3,2020-21,Canton - John F Kennedy,500017,5.9,0,0,92.6,0,1.5,0,92.1,7.9,100 +3.15625,3.16,a-pcom-i3,2020-21,Canton - Lt Peter M Hansen,500012,2.9,1.4,2.9,89.9,0,0,2.9,90.2,9.8,100 +1,1,a-pcom-i3,2020-21,Canton - Rodman Early Childhood Center,500010,0,0,0,100,0,0,0,95.4,4.6,100 +4,4,a-pcom-i3,2020-21,Canton - Wm H Galvin Middle,500305,3.9,0,4.9,87.2,0,0,3.9,77.3,22.7,100 +1,1,a-pcom-i3,2020-21,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,1.3,98.7,0,0,0,84.1,15.9,100 +1,1,a-pcom-i3,2020-21,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,1,0,1,98,0,0,0,55.7,44.3,100 +1.6875,1.69,a-pcom-i3,2020-21,Carlisle - Carlisle School,510025,0.9,3.5,0.9,94.6,0,0,0,82.5,17.5,100 +1.1875,1.19,a-pcom-i3,2020-21,Carver - Carver Elementary School,520015,0.5,1.1,1.1,96.2,1.1,0,0,93.6,6.4,100 +1.71875,1.72,a-pcom-i3,2020-21,Carver - Carver Middle/High School,520405,2.8,0,0.9,94.5,0,0.9,0.9,68.7,31.3,100 +1,1,a-pcom-i3,2020-21,Central Berkshire - Becket Washington School,6350005,0,0,0,100,0,0,0,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,Central Berkshire - Craneville,6350025,2.1,0,0,97.9,0,0,0,87.2,12.8,100 +1,1,a-pcom-i3,2020-21,Central Berkshire - Kittredge,6350035,0,0,0,100,0,0,0,99.6,0.4,100 +1,1,a-pcom-i3,2020-21,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,100,0,0,0,71,29,100 +1,1,a-pcom-i3,2020-21,Central Berkshire - Wahconah Regional High,6350505,0,0,0,96.9,0,0,3.1,66.2,33.8,100 +1.90625,1.91,a-pcom-i3,2020-21,Chelmsford - Byam School,560030,1.2,4.9,0,93.9,0,0,0,91.5,8.5,100 +1.34375,1.34,a-pcom-i3,2020-21,Chelmsford - Center Elementary School,560005,0,1.4,1.4,95.7,0,0,1.4,98.6,1.4,100 +1,1,a-pcom-i3,2020-21,Chelmsford - Charles D Harrington,560025,0,1.4,0,98.6,0,0,0,91.6,7,100 +1.875,1.88,a-pcom-i3,2020-21,Chelmsford - Chelmsford High,560505,1.1,1.6,2.7,94,0,0.5,0,65.6,34.4,100 +1.5,1.5,a-pcom-i3,2020-21,Chelmsford - Col Moses Parker School,560305,1,3.9,0,95.2,0,0,0,83.8,16.2,100 +5.40625,5,a-pcom-i3,2020-21,Chelmsford - Community Education Center,560001,5.8,11.6,0,82.7,0,0,0,94.2,5.8,100 +1,1,a-pcom-i3,2020-21,Chelmsford - McCarthy Middle School,560310,0,2.9,0.1,97.1,0,0,0,84,16,100 +1,1,a-pcom-i3,2020-21,Chelmsford - South Row,560015,0,0,1.5,97,0,0,1.5,97,3,100 +7.28125,5,a-pcom-i3,2020-21,Chelsea - Chelsea High,570505,1.4,0,19.8,76.7,0,0,2.2,71.7,28.3,100 +10.625,5,a-pcom-i3,2020-21,Chelsea - Chelsea Opportunity Academy,570515,2.1,0,32,66,0,0,0,45.4,54.6,100 +7.625,5,a-pcom-i3,2020-21,Chelsea - Clark Avenue School,570050,2.9,0,17,75.6,0,0,4.4,79.7,20.3,100 +6.09375,5,a-pcom-i3,2020-21,Chelsea - Edgar A Hooks Elementary,570030,3.7,0,15.1,80.5,0,0,0.7,89,11,100 +7.53125,5,a-pcom-i3,2020-21,Chelsea - Eugene Wright Science and Technology Academy,570045,0.3,0,18.5,75.9,0,1.6,3.7,72.4,27.6,100 +7.09375,5,a-pcom-i3,2020-21,Chelsea - Frank M Sokolowski Elementary,570040,1.8,0,17.4,77.3,0,0,3.5,85,15,100 +7.9375,5,a-pcom-i3,2020-21,Chelsea - George F. Kelly Elementary,570035,0,0,23.6,74.6,0,0,1.7,87.3,12.7,100 +10.09375,5,a-pcom-i3,2020-21,Chelsea - Joseph A. Browne School,570055,2.2,0,24.9,67.7,0,0,5.3,73.8,26.2,100 +11.4375,5,a-pcom-i3,2020-21,Chelsea - Shurtleff Early Childhood,570003,1.1,0,35.5,63.4,0,0,0,93.9,6.1,100 +5.125,5,a-pcom-i3,2020-21,Chelsea - William A Berkowitz Elementary,570025,0,0,11.1,83.6,0,1.8,3.5,90.4,9.6,100 +1,1,a-pcom-i3,2020-21,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,0,0,0,100,0,0,0,90.1,9.9,100 +1,1,a-pcom-i3,2020-21,Chicopee - Barry,610003,1.7,0,0.8,97.5,0,0,0,96.7,3.3,100 +2.40625,2.41,a-pcom-i3,2020-21,Chicopee - Belcher,610010,0,0,5.1,92.3,0,0,2.6,92.3,7.7,100 +1.125,1.12,a-pcom-i3,2020-21,Chicopee - Bellamy Middle,610305,0.9,0,1.8,96.4,0,0.9,0,80.5,19.5,100 +1.59375,1.59,a-pcom-i3,2020-21,Chicopee - Bowe,610015,1.7,1.7,1.7,94.9,0,0,0,93.2,6.8,100 +1,1,a-pcom-i3,2020-21,Chicopee - Bowie,610020,2,0,1,96.9,0,0,0,91.3,8.7,100 +2.25,2.25,a-pcom-i3,2020-21,Chicopee - Chicopee Academy,610021,7.2,0,0,92.8,0,0,0,72.4,27.6,100 +1.84375,1.84,a-pcom-i3,2020-21,Chicopee - Chicopee Comprehensive High School,610510,0.7,0.7,4.6,94.1,0,0,0,57.3,42.7,100 +3.1875,3.19,a-pcom-i3,2020-21,Chicopee - Chicopee High,610505,3.9,0,5.5,89.8,0.8,0,0,73.7,26.3,100 +3.9375,3.94,a-pcom-i3,2020-21,Chicopee - Dupont Middle,610310,1.4,2,8.3,87.4,0,0,1,74.2,25.8,100 +5.1875,5,a-pcom-i3,2020-21,Chicopee - Fairview Elementary,610050,2.2,1.1,11,83.4,0,0,2.2,88.8,11.2,100 +3.0625,3.06,a-pcom-i3,2020-21,Chicopee - Gen John J Stefanik,610090,0,0,9.8,90.2,0,0,0,93.5,6.5,100 +1,1,a-pcom-i3,2020-21,Chicopee - Lambert-Lavoie,610040,0,0,0,97.8,0,0,2.2,94.4,5.6,100 +1.59375,1.59,a-pcom-i3,2020-21,Chicopee - Litwin,610022,0,1.7,3.4,94.9,0,0,0,94.4,5.6,100 +1.71875,1.72,a-pcom-i3,2020-21,Chicopee - Streiber Memorial School,610065,2.2,0,3.3,94.5,0,0,0,96.7,3.3,100 +1.5,1.5,a-pcom-i3,2020-21,Chicopee - Szetela Early Childhood Center,610001,0,0,4.8,95.2,0,0,0,95.2,4.8,100 +2.90625,2.91,a-pcom-i3,2020-21,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,0,1.5,6.2,90.7,1.5,0,0,62.2,37.8,100 +12.53125,5,a-pcom-i3,2020-21,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,27.3,3.6,9.1,59.9,0,0,0,75.4,24.6,100 +1,1,a-pcom-i3,2020-21,Clarksburg - Clarksburg Elementary,630010,0,0,0,100,0,0,0,88.1,11.9,100 +2,2,a-pcom-i3,2020-21,Clinton - Clinton Elementary,640050,0,0.9,4.5,93.6,0,0,0.9,95.4,4.6,100 +2.625,2.63,a-pcom-i3,2020-21,Clinton - Clinton Middle School,640305,1.7,0,3.5,91.6,0,0,3.2,80.8,19.2,100 +1.46875,1.47,a-pcom-i3,2020-21,Clinton - Clinton Senior High,640505,0,0,3,95.3,0,0,1.8,61.9,38.1,100 +16.71875,5,a-pcom-i3,2020-21,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,40.7,3.8,6.4,46.5,0,0,2.6,74.4,25.6,100 +1,1,a-pcom-i3,2020-21,Cohasset - Cohasset High School,650505,0,0,1.6,98.4,0,0,0,56.6,43.4,100 +1,1,a-pcom-i3,2020-21,Cohasset - Cohasset Middle School,650305,0,0,2.2,97.8,0,0,0,82.3,17.7,100 +1.59375,1.59,a-pcom-i3,2020-21,Cohasset - Deer Hill,650005,3.1,2.1,0,94.9,0,0,0,91.8,8.2,100 +1,1,a-pcom-i3,2020-21,Cohasset - Joseph Osgood,650010,3,0,0,97,0,0,0,93.1,6.9,100 +7.125,5,a-pcom-i3,2020-21,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,5.7,3.4,13.7,77.2,0,0,0,80.5,19.5,100 +15.8125,5,a-pcom-i3,2020-21,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,19.2,9.2,21.5,49.4,0,0,0.7,67.7,32.3,100 +6.5,5,a-pcom-i3,2020-21,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,1.5,1.5,17.8,79.2,0,0,0,87.7,12.3,100 +11.4375,5,a-pcom-i3,2020-21,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,1.6,1.6,32,63.4,0,0,1.6,79.1,20.9,100 +8.03125,5,a-pcom-i3,2020-21,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,3.5,0,20.4,74.3,0,0,1.8,76.8,23.2,100 +3.3125,3.31,a-pcom-i3,2020-21,Concord - Alcott,670005,2.7,5.1,2.8,89.4,0,0,0,91.4,8.6,100 +4.25,4.25,a-pcom-i3,2020-21,Concord - Concord Middle,670305,4.5,4.9,3.3,86.4,0,0.9,0,70.5,29.5,100 +1.125,1.12,a-pcom-i3,2020-21,Concord - Thoreau,670020,0.1,2,1.6,96.4,0,0,0,94.5,5.5,100 +1.71875,1.72,a-pcom-i3,2020-21,Concord - Willard,670030,1.4,1.3,2.8,94.5,0,0,0,90.1,9.9,100 +2.59375,2.59,a-pcom-i3,2020-21,Concord-Carlisle - Concord Carlisle High,6400505,2.6,2.2,3.4,91.7,0,0,0,58.6,41.4,100 +13.03125,5,a-pcom-i3,2020-21,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,29.3,0,10.8,58.3,0,0,1.5,76.4,23.6,100 +1,1,a-pcom-i3,2020-21,Conway - Conway Grammar,680005,0,0,0,100,0,0,0,90.8,9.2,100 +1,1,a-pcom-i3,2020-21,Danvers - Danvers High,710505,0,0,0.9,99.1,0,0,0,58.9,41.1,100 +1,1,a-pcom-i3,2020-21,Danvers - Great Oak,710015,0,0,3,97,0,0,0,94.9,5.1,100 +1,1,a-pcom-i3,2020-21,Danvers - Highlands,710010,0,0,0,100,0,0,0,83.3,16.7,100 +1.53125,1.53,a-pcom-i3,2020-21,Danvers - Holten Richmond Middle School,710305,0,0,1.9,95.1,0,0,2.9,79.6,20.4,100 +1,1,a-pcom-i3,2020-21,Danvers - Ivan G Smith,710032,0,0,0,100,0,0,0,92.8,7.2,100 +1,1,a-pcom-i3,2020-21,Danvers - Riverside,710030,0,0,0,100,0,0,0,92.8,7.2,100 +1.6875,1.69,a-pcom-i3,2020-21,Danvers - Willis E Thorpe,710045,0,2.1,3.3,94.6,0,0,0,89.6,10.4,100 +1,1,a-pcom-i3,2020-21,Dartmouth - Andrew B. Cushman School,720005,0,0,1.5,98.5,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Dartmouth - Dartmouth High,720505,0,0,0,99,0,0,1,61.9,38.1,100 +1,1,a-pcom-i3,2020-21,Dartmouth - Dartmouth Middle,720050,1,0,0,98,0,0,1,63.5,36.5,100 +1,1,a-pcom-i3,2020-21,Dartmouth - George H Potter,720030,0,0,1,99,0,0,0,93.1,6.9,100 +1,1,a-pcom-i3,2020-21,Dartmouth - James M. Quinn School,720040,1.1,0,1.2,97.7,0,0,0,95.5,4.5,100 +1,1,a-pcom-i3,2020-21,Dartmouth - Joseph Demello,720015,0,0,0.7,99.3,0,0,0,97.8,2.2,100 +1,1,a-pcom-i3,2020-21,Dedham - Avery,730010,0,0,0,100,0,0,0,93.4,6.6,100 +2.3125,2.31,a-pcom-i3,2020-21,Dedham - Dedham High,730505,0,3.2,4.2,92.6,0,0,0,73.2,26.8,100 +1.4375,1.44,a-pcom-i3,2020-21,Dedham - Dedham Middle School,730305,4,0,0.6,95.4,0,0,0,69.2,30.8,100 +1,1,a-pcom-i3,2020-21,Dedham - Early Childhood Center,730005,1.6,0,0,98.4,0,0,0,98.4,1.6,100 +1,1,a-pcom-i3,2020-21,Dedham - Greenlodge,730025,0,0,0,100,0,0,0,95.1,4.9,100 +1,1,a-pcom-i3,2020-21,Dedham - Oakdale,730030,0,0,0,100,0,0,0,91.7,8.3,100 +1,1,a-pcom-i3,2020-21,Dedham - Riverdale,730045,0,0,0,100,0,0,0,91.7,8.3,100 +1,1,a-pcom-i3,2020-21,Deerfield - Deerfield Elementary,740015,0,0,0,100,0,0,0,91.5,8.5,100 +1.71875,1.72,a-pcom-i3,2020-21,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,2.6,0,2.1,94.5,0,0,0.8,67.1,32.9,100 +1.28125,1.28,a-pcom-i3,2020-21,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,0,0,3.5,95.9,0.5,0,0,94.8,5.2,100 +1,1,a-pcom-i3,2020-21,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,0,0,0,100,0,0,0,94.5,5.5,100 +2.53125,2.53,a-pcom-i3,2020-21,Dennis-Yarmouth - Mattacheese Middle School,6450305,3.6,0,3,91.9,0,0,1.5,76.3,23.7,100 +1.15625,1.16,a-pcom-i3,2020-21,Dennis-Yarmouth - Nathaniel H. Wixon School,6450050,0,0,2.3,96.3,0,0,1.4,92.5,7.5,100 +1,1,a-pcom-i3,2020-21,Dennis-Yarmouth - Station Avenue Elementary,6450025,0.8,0,1.7,97.5,0,0,0,90.3,9.7,100 +1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Dighton Elementary,6500005,0.3,0,0,99.7,0,0,0,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Dighton Middle School,6500305,0.5,0,0,97.3,0,0,2.3,72,28,100 +1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,0.2,0,1.1,98.7,0,0,0,67.8,32.2,100 +1.96875,1.97,a-pcom-i3,2020-21,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0.3,0,3.4,93.7,0,0,2.6,80.3,19.7,100 +1,1,a-pcom-i3,2020-21,Dighton-Rehoboth - Palmer River,6500010,0.3,0,0,99,0,0,0.7,96.5,3.5,100 +1,1,a-pcom-i3,2020-21,Douglas - Douglas Elementary School,770015,0,0,0,100,0,0,0,87.3,12.7,100 +1,1,a-pcom-i3,2020-21,Douglas - Douglas High School,770505,0,1.7,0,98.3,0,0,0,68.9,31.1,100 +1,1,a-pcom-i3,2020-21,Douglas - Douglas Middle School,770305,0,0,0,100,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Douglas - Douglas Primary School,770005,0,0,0,100,0,0,0,97.6,2.4,100 +1.25,1.25,a-pcom-i3,2020-21,Dover - Chickering,780005,0.3,0,3.7,96,0,0,0,89.2,10.8,100 +2.15625,2.16,a-pcom-i3,2020-21,Dover-Sherborn - Dover-Sherborn Regional High,6550505,1.3,1.8,3.7,93.1,0,0,0,68.8,31.2,100 +3.6875,3.69,a-pcom-i3,2020-21,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,4.5,1.4,4.6,88.2,0,1.4,0,78.6,21.4,100 +1,1,a-pcom-i3,2020-21,Dracut - Brookside Elementary,790035,1,0,0,99,0,0,0,91,9,100 +1,1,a-pcom-i3,2020-21,Dracut - Dracut Senior High,790505,0,1.7,0,98.3,0,0,0,67.1,32.9,100 +1,1,a-pcom-i3,2020-21,Dracut - George H. Englesby Elementary School,790045,0.8,0,0,99.2,0,0,0,97.7,2.3,100 +1,1,a-pcom-i3,2020-21,Dracut - Greenmont Avenue,790030,0.7,0,0,99.3,0,0,0,95.2,4.8,100 +1,1,a-pcom-i3,2020-21,Dracut - Joseph A Campbell Elementary,790020,1.5,0.7,0,97.8,0,0,0,97.6,2.4,100 +1.3125,1.31,a-pcom-i3,2020-21,Dracut - Justus C. Richardson Middle School,790410,1.2,0.6,2.4,95.8,0,0,0,81.4,18.6,100 +23.5625,5,a-pcom-i3,2020-21,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,53.8,0,21.5,24.6,0,0,0,81.5,18.5,100 +1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Charlton Elementary,6580020,0,0,0,100,0,0,0,97.7,2.3,100 +1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,1.9,98.1,0,0,0,75.5,24.5,100 +1.875,1.88,a-pcom-i3,2020-21,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,3,94,3,0,0,89.4,10.6,100 +1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,0,100,0,0,0,75.3,24.7,100 +1.25,1.25,a-pcom-i3,2020-21,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,96,0,0,4,98,2,100 +1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Mason Road School,6580010,0,0,2.8,97.2,0,0,0,95.9,4.1,100 +1,1,a-pcom-i3,2020-21,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,1.8,98.2,0,0,0,55.8,44.2,100 +1,1,a-pcom-i3,2020-21,Duxbury - Alden School,820004,0,0,0,100,0,0,0,87.4,12.6,100 +1,1,a-pcom-i3,2020-21,Duxbury - Chandler Elementary,820006,0,1.1,0,98.9,0,0,0,97.7,2.3,100 +1,1,a-pcom-i3,2020-21,Duxbury - Duxbury High,820505,0,1.7,0.9,97.4,0,0,0,66.8,33.2,100 +1,1,a-pcom-i3,2020-21,Duxbury - Duxbury Middle,820305,0,1.3,1.3,97.3,0,0,0,79.1,20.9,100 +1,1,a-pcom-i3,2020-21,East Bridgewater - Central,830005,0.7,0,0,99.3,0,0,0,95.8,4.2,100 +1,1,a-pcom-i3,2020-21,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0.9,0,99.1,0,0,0,67.9,32.1,100 +1,1,a-pcom-i3,2020-21,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,100,0,0,0,87.7,12.3,100 +2.28125,2.28,a-pcom-i3,2020-21,East Longmeadow - Birchland Park,870305,2.4,1.2,3.6,92.7,0,0,0,68.2,31.8,100 +3.71875,3.72,a-pcom-i3,2020-21,East Longmeadow - East Longmeadow High,870505,6.1,1,3.9,88.1,0,0,1,62.1,37.9,100 +1,1,a-pcom-i3,2020-21,East Longmeadow - Mapleshade,870010,0,0,0,100,0,0,0,82,18,100 +2,2,a-pcom-i3,2020-21,East Longmeadow - Meadow Brook,870013,0,0,5.3,93.6,0,0,1.1,98.9,1.1,100 +1,1,a-pcom-i3,2020-21,East Longmeadow - Mountain View,870015,0,0,2.2,97.8,0,0,0,90.7,9.3,100 +1,1,a-pcom-i3,2020-21,Eastham - Eastham Elementary,850005,0,0,0,100,0,0,0,94.1,5.9,100 +1,1,a-pcom-i3,2020-21,Easthampton - Center School,860005,0,0,2.6,97.4,0,0,0,93.8,6.2,100 +1.15625,1.16,a-pcom-i3,2020-21,Easthampton - Easthampton High,860505,0,0,3.7,96.3,0,0,0,57.3,42.7,100 +1,1,a-pcom-i3,2020-21,Easthampton - Maple,860010,0,0,2.1,97.9,0,0,0,98.3,1.7,100 +1,1,a-pcom-i3,2020-21,Easthampton - Neil A Pepin,860020,0,0,2.7,97.3,0,0,0,95.3,4.7,100 +1.125,1.12,a-pcom-i3,2020-21,Easthampton - White Brook Middle School,860305,3.6,0,0,96.4,0,0,0,73.2,26.8,100 +1,1,a-pcom-i3,2020-21,Easton - Center School,880003,0,0,0,100,0,0,0,93.7,6.3,100 +2,2,a-pcom-i3,2020-21,Easton - Easton Middle School,880405,0,1,4,93.6,0,0,1.4,81.1,18.9,100 +1,1,a-pcom-i3,2020-21,Easton - Moreau Hall,880020,0,0,0,100,0,0,0,94.5,5.5,100 +2.1875,2.19,a-pcom-i3,2020-21,Easton - Oliver Ames High,880505,1.6,1.6,2.9,93,0,0,0.8,61,39,100 +1,1,a-pcom-i3,2020-21,Easton - Parkview Elementary,880015,1,0,0,99,0,0,0,94,6,100 +1,1,a-pcom-i3,2020-21,Easton - Richardson Olmsted School,880025,0.5,0,1.1,97.3,0,0,1.1,90.4,9.6,100 +1.53125,1.53,a-pcom-i3,2020-21,Edgartown - Edgartown Elementary,890005,2.8,0,2,95.1,0,0,0,84.1,15.9,100 +19.28125,5,a-pcom-i3,2020-21,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,46.1,3.9,11.7,38.3,0,0,0,59.9,40.1,100 +2.15625,2.16,a-pcom-i3,2020-21,Erving - Erving Elementary,910030,0,0,0,93.1,0,0,6.9,90.8,9.2,100 +1,1,a-pcom-i3,2020-21,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0,1.1,1.6,97.3,0,0,0,56.7,43.3,100 +1,1,a-pcom-i3,2020-21,Everett - Adams School,930003,0,0,0,100,0,0,0,100,0,100 +5.90625,5,a-pcom-i3,2020-21,Everett - Devens School,930030,7.6,0,7.6,81.1,0,0,3.8,50.7,49.3,100 +4.46875,4.47,a-pcom-i3,2020-21,Everett - Everett High,930505,3.6,3.6,5.6,85.7,0.5,0.5,0.5,59.6,40.4,100 +2.40625,2.41,a-pcom-i3,2020-21,Everett - George Keverian School,930028,1.3,1.3,3.9,92.3,0,1.3,0,81.6,18.4,100 +2.8125,2.81,a-pcom-i3,2020-21,Everett - Lafayette School,930038,1.8,4.4,2.8,91,0,0,0,82,18,100 +2.15625,2.16,a-pcom-i3,2020-21,Everett - Madeline English School,930018,0,4.6,2.3,93.1,0,0,0,90.4,9.6,100 +1.125,1.12,a-pcom-i3,2020-21,Everett - Parlin School,930058,0,0,2.4,96.4,0,0,1.2,84.4,15.6,100 +1.59375,1.59,a-pcom-i3,2020-21,Everett - Sumner G. Whittier School,930010,3.4,0,1.7,94.9,0,0,0,89,11,100 +1.3125,1.31,a-pcom-i3,2020-21,Everett - Webster Extension,930001,0,0,4.2,95.8,0,0,0,97.9,2.1,100 +2.84375,2.84,a-pcom-i3,2020-21,Everett - Webster School,930015,0,3.6,5.4,90.9,0,0,0,93.5,6.5,100 +11.71875,5,a-pcom-i3,2020-21,Excel Academy Charter (District) - Excel Academy Charter School,4100205,8.6,2.2,23.9,62.5,0,0,2.8,77.6,22.4,100 +1,1,a-pcom-i3,2020-21,Fairhaven - East Fairhaven,940010,0.2,0,0,99.8,0,0,0,96,4,100 +1,1,a-pcom-i3,2020-21,Fairhaven - Fairhaven High,940505,1.5,0,0,97.1,0,0,1.4,58.5,41.5,100 +1,1,a-pcom-i3,2020-21,Fairhaven - Hastings Middle,940305,0.2,0,0,99.8,0,0,0,80.4,19.6,100 +1.3125,1.31,a-pcom-i3,2020-21,Fairhaven - Leroy Wood,940030,2.2,2,0,95.8,0,0,0,94.1,5.9,100 +2.34375,2.34,a-pcom-i3,2020-21,Fall River - B M C Durfee High,950505,1.3,1.5,3.7,92.5,0,0,1,66.3,33.7,100 +1.6875,1.69,a-pcom-i3,2020-21,Fall River - Carlton M. Viveiros Elementary School,950009,2.4,0,1.9,94.6,0,0,1.2,88.5,11.5,100 +3.78125,3.78,a-pcom-i3,2020-21,Fall River - Henry Lord Community School,950017,4.7,0,5.6,87.9,0,0,1.9,89.1,10.9,100 +2.5625,2.56,a-pcom-i3,2020-21,Fall River - James Tansey,950140,0,2.7,2.7,91.8,0,0,2.7,90.4,9.6,100 +1.375,1.38,a-pcom-i3,2020-21,Fall River - John J Doran,950045,1.5,0,2.9,95.6,0,0,0,85,15,100 +3.15625,3.16,a-pcom-i3,2020-21,Fall River - Letourneau Elementary School,950013,7.2,0,2.9,89.9,0,0,0,90.9,9.1,100 +3.40625,3.41,a-pcom-i3,2020-21,Fall River - Mary Fonseca Elementary School,950011,0,0,7.3,89.1,1.2,0,2.4,91.1,8.9,100 +2.71875,2.72,a-pcom-i3,2020-21,Fall River - Matthew J Kuss Middle,950320,1.1,1.1,2,91.3,0,1.1,3.3,66.3,33.7,100 +2.5,2.5,a-pcom-i3,2020-21,Fall River - Morton Middle,950315,1.3,3.1,3.6,92,0,0,0,78.3,21.7,100 +1,1,a-pcom-i3,2020-21,Fall River - North End Elementary,950005,0,1,0,98,0,0,1,88.4,11.6,100 +3.09375,3.09,a-pcom-i3,2020-21,Fall River - Resiliency Preparatory Academy,950525,5,0,2.5,90.1,0,0,2.5,48.3,51.7,100 +1,1,a-pcom-i3,2020-21,Fall River - Samuel Watson,950145,3.2,0,0,96.8,0,0,0,89.3,10.7,100 +1.3125,1.31,a-pcom-i3,2020-21,Fall River - Spencer Borden,950130,2.1,0,1,95.8,0,0,1,92.9,7.1,100 +6.40625,5,a-pcom-i3,2020-21,Fall River - Stone PK-12 School,950340,12.7,0,0,79.5,0,0,7.8,76.7,23.3,100 +4.375,4.38,a-pcom-i3,2020-21,Fall River - Talbot Innovation School,950305,5.1,1.3,5.1,86,0,0,2.5,71.2,28.8,100 +2.5625,2.56,a-pcom-i3,2020-21,Fall River - William S Greene,950065,3.5,2.3,2.3,91.8,0,0,0,92.1,7.9,100 +2.0625,2.06,a-pcom-i3,2020-21,Falmouth - East Falmouth Elementary,960005,1.9,0.9,1.9,93.4,0,0,1.9,88.4,11.6,100 +2.125,2.12,a-pcom-i3,2020-21,Falmouth - Falmouth High,960505,1.7,0.9,2.5,93.2,0.9,0,0.9,66.6,33.4,100 +2.25,2.25,a-pcom-i3,2020-21,Falmouth - Lawrence,960405,4.4,1.3,0.3,92.8,0,0,1.3,84,16,100 +1.90625,1.91,a-pcom-i3,2020-21,Falmouth - Morse Pond School,960305,1.2,0,1.1,93.9,1.2,0,2.5,89,11,100 +1.5,1.5,a-pcom-i3,2020-21,Falmouth - Mullen-Hall,960020,0.7,0,2.7,95.2,0,0,1.4,89.2,10.8,100 +2.28125,2.28,a-pcom-i3,2020-21,Falmouth - North Falmouth Elementary,960030,4.2,1,2.1,92.7,0,0,0,91.8,8.2,100 +2.65625,2.66,a-pcom-i3,2020-21,Falmouth - Teaticket,960015,3.4,0,1.7,91.5,0,0,3.4,96.8,3.2,100 +1,1,a-pcom-i3,2020-21,Farmington River Reg - Farmington River Elementary,6620020,0,0,0,100,0,0,0,81.8,18.2,100 +5,5,a-pcom-i3,2020-21,Fitchburg - Arthur M Longsjo Middle School,970315,1.1,3.4,9.1,84,0,0,2.3,73.7,26.3,100 +2.65625,2.66,a-pcom-i3,2020-21,Fitchburg - Crocker Elementary,970016,2.8,0,5.7,91.5,0,0,0,95.7,4.3,100 +5.96875,5,a-pcom-i3,2020-21,Fitchburg - Fitchburg High,970505,2.3,0.8,15.3,80.9,0,0,0.8,64,36,100 +5.28125,5,a-pcom-i3,2020-21,Fitchburg - Goodrich Academy,970510,3.2,0,13.6,83.1,0,0,0,83.8,16.2,100 +4.59375,4.59,a-pcom-i3,2020-21,Fitchburg - McKay Arts Academy,970340,1.1,1.1,12.4,85.3,0,0,0,89.8,10.2,100 +2.25,2.25,a-pcom-i3,2020-21,Fitchburg - Memorial Middle School,970048,2.7,0,4.5,92.8,0,0,0,81.4,18.6,100 +2.625,2.63,a-pcom-i3,2020-21,Fitchburg - Reingold Elementary,970043,1.4,1.4,4.2,91.6,0,0,1.4,91.6,8.4,100 +1.9375,1.94,a-pcom-i3,2020-21,Fitchburg - South Street Elementary,970060,1,1,4.1,93.8,0,0,0,88.7,11.3,100 +1,1,a-pcom-i3,2020-21,Florida - Abbott Memorial,980005,0,0,0,100,0,0,0,79.3,20.7,100 +2.84375,2.84,a-pcom-i3,2020-21,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,3,0,6.1,90.9,0,0,0,69.4,30.6,100 +1,1,a-pcom-i3,2020-21,Foxborough - Charles Taylor Elementary,990050,0,0,0,100,0,0,0,94.4,5.6,100 +1,1,a-pcom-i3,2020-21,Foxborough - Foxborough High,990505,1,0,0,99,0,0,0,66.8,33.2,100 +1,1,a-pcom-i3,2020-21,Foxborough - John J Ahern,990405,0,3,0,97,0,0,0,77.2,22.8,100 +1,1,a-pcom-i3,2020-21,Foxborough - Mabelle M Burrell,990015,0,2.4,0,97.6,0,0,0,97.6,2.4,100 +1.09375,1.09,a-pcom-i3,2020-21,Foxborough - Vincent M Igo Elementary,990020,3.5,0,0,96.5,0,0,0,94.4,5.6,100 +4.125,4.13,a-pcom-i3,2020-21,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,5.4,0,7.8,86.8,0,0,0,78.2,21.8,100 +14.75,5,a-pcom-i3,2020-21,Framingham - Barbieri Elementary,1000035,0,0,47.2,52.8,0,0,0,89.4,10.6,100 +7.5625,5,a-pcom-i3,2020-21,Framingham - Brophy,1000006,0,0,24.2,75.8,0,0,0,91.3,8.7,100 +5.5625,5,a-pcom-i3,2020-21,Framingham - Cameron Middle School,1000302,7.8,2.2,7.8,82.2,0,0,0,80.8,19.2,100 +3.0625,3.06,a-pcom-i3,2020-21,Framingham - Charlotte A Dunning,1000007,0,1.4,7,90.2,1.4,0,0,88.7,11.3,100 +4.71875,4.72,a-pcom-i3,2020-21,Framingham - Framingham High School,1000515,3.9,0.4,10.8,84.9,0,0,0,68.1,31.9,100 +7.65625,5,a-pcom-i3,2020-21,Framingham - Fuller Middle,1000305,3.4,2.1,19,75.5,0,0,0,74.2,25.8,100 +3.84375,3.84,a-pcom-i3,2020-21,Framingham - Hemenway,1000015,2.9,2.2,7.2,87.7,0,0,0,92.2,7.8,100 +7.8125,5,a-pcom-i3,2020-21,Framingham - Juniper Hill School,1000001,0,2.8,22.2,75,0,0,0,95.7,4.3,100 +5.25,5,a-pcom-i3,2020-21,Framingham - King Elementary School,1000005,7.6,1.9,7.2,83.2,0,0,0,91,9,100 +3.5625,3.56,a-pcom-i3,2020-21,Framingham - Mary E Stapleton Elementary,1000045,1.5,1.5,8.5,88.6,0,0,0,94.9,5.1,100 +2.625,2.63,a-pcom-i3,2020-21,Framingham - Miriam F McCarthy School,1000050,3.5,2.5,2.5,91.6,0,0,0,89.9,10.1,100 +8.65625,5,a-pcom-i3,2020-21,Framingham - Potter Road,1000039,0,2.5,25.2,72.3,0,0,0,93.1,6.9,100 +5.28125,5,a-pcom-i3,2020-21,Framingham - Walsh Middle,1000310,2,1.5,13.4,83.1,0,0,0,81.5,18.5,100 +6.03125,5,a-pcom-i3,2020-21,Framingham - Woodrow Wilson,1000055,0.3,2.8,16.2,80.7,0,0,0,92,8,100 +2.5,2.5,a-pcom-i3,2020-21,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,3.2,0,4.8,92,0,0,0,69.4,30.6,100 +1,1,a-pcom-i3,2020-21,Franklin - Annie Sullivan Middle School,1010040,0,0,0,100,0,0,0,82,18,100 +1,1,a-pcom-i3,2020-21,Franklin - Davis Thayer,1010035,0,0,0,100,0,0,0,95.7,4.3,100 +2.15625,2.16,a-pcom-i3,2020-21,Franklin - Franklin Early Childhood Development Center,1010003,0,6.9,0,93.1,0,0,0,99.4,0.6,100 +1,1,a-pcom-i3,2020-21,Franklin - Franklin High,1010505,0.6,0.6,0,98.8,0,0,0,69.2,30.8,100 +1.21875,1.22,a-pcom-i3,2020-21,Franklin - Helen Keller Elementary,1010012,0,1.9,1.9,96.1,0,0,0,90,10,100 +1,1,a-pcom-i3,2020-21,Franklin - Horace Mann,1010405,0,0,0,100,0,0,0,79.3,20.7,100 +1.1875,1.19,a-pcom-i3,2020-21,Franklin - J F Kennedy Memorial,1010013,0,1.9,1.9,96.2,0,0,0,95.9,4.1,100 +1,1,a-pcom-i3,2020-21,Franklin - Jefferson Elementary,1010010,0,1.9,0,98.1,0,0,0,98.4,1.6,100 +1,1,a-pcom-i3,2020-21,Franklin - Oak Street Elementary,1010030,0,1.9,0,98.1,0,0,0,94.1,5.9,100 +1,1,a-pcom-i3,2020-21,Franklin - Parmenter,1010032,0,0,0,100,0,0,0,90.5,9.5,100 +1,1,a-pcom-i3,2020-21,Franklin - Remington Middle,1010310,1.8,0,0,98.2,0,0,0,78.5,21.5,100 +1,1,a-pcom-i3,2020-21,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0,97.3,0,0,2.7,39.8,60.2,100 +1,1,a-pcom-i3,2020-21,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,2.2,97.8,0,0,0,63.4,36.6,100 +1,1,a-pcom-i3,2020-21,Freetown-Lakeville - Assawompset Elementary School,6650002,0,0,0,100,0,0,0,95.6,4.4,100 +1,1,a-pcom-i3,2020-21,Freetown-Lakeville - Freetown Elementary School,6650001,0,0,0,100,0,0,0,98.1,1.9,100 +1.1875,1.19,a-pcom-i3,2020-21,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,2.5,0,1.3,96.2,0,0,0,74.7,25.3,100 +1,1,a-pcom-i3,2020-21,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,100,0,0,0,91.4,8.6,100 +1,1,a-pcom-i3,2020-21,Frontier - Frontier Regional,6700505,1,0,0,96.9,2.1,0,0,64.6,35.4,100 +1.28125,1.28,a-pcom-i3,2020-21,Gardner - Elm Street School,1030001,0,0,2.7,95.9,0,0,1.4,82.3,17.7,100 +1,1,a-pcom-i3,2020-21,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,100,0,0,0,47.6,52.4,100 +2.46875,2.47,a-pcom-i3,2020-21,Gardner - Gardner High,1030505,0,2.4,4.9,92.1,0,0,0.6,65.9,34.1,100 +2.28125,2.28,a-pcom-i3,2020-21,Gardner - Gardner Middle School,1030405,1.5,1.5,1.5,92.7,0,0,2.9,75.2,24.8,100 +1,1,a-pcom-i3,2020-21,Gardner - Waterford Street,1030020,0,0,1.2,98.8,0,0,0,85.4,14.6,100 +1,1,a-pcom-i3,2020-21,Gateway - Chester Elementary,6720059,0,0,0,100,0,0,0,97.3,2.7,100 +1,1,a-pcom-i3,2020-21,Gateway - Gateway Regional High,6720505,0,0,0,97.5,0,0,2.5,70.5,29.5,100 +1.5,1.5,a-pcom-i3,2020-21,Gateway - Gateway Regional Middle School,6720405,0,0,0,95.2,0,0,4.8,69.9,30.1,100 +1,1,a-pcom-i3,2020-21,Gateway - Littleville Elementary School,6720143,0,0,0,100,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Georgetown - Georgetown High School,1050505,0,0,1.7,97.4,0,0.9,0,70.5,29.5,100 +1,1,a-pcom-i3,2020-21,Georgetown - Georgetown Middle School,1050305,0,0,0,98.2,0,1.8,0,76.8,23.2,100 +1,1,a-pcom-i3,2020-21,Georgetown - Penn Brook,1050010,0,0,0,98.7,0,0,1.3,90,10,100 +1,1,a-pcom-i3,2020-21,Georgetown - Perley Elementary,1050005,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Gill-Montague - Gill Elementary,6740005,0,0,0,98.7,0,0,1.3,94,6,100 +1,1,a-pcom-i3,2020-21,Gill-Montague - Great Falls Middle,6740310,0,0,1.7,98.3,0,0,0,67.9,32.1,100 +1.3125,1.31,a-pcom-i3,2020-21,Gill-Montague - Hillcrest Elementary School,6740015,0,0,3,95.8,0,0,1.2,93.4,6.6,100 +2.15625,2.16,a-pcom-i3,2020-21,Gill-Montague - Sheffield Elementary School,6740050,0,2.9,2.9,93.1,0,0,1.1,89.1,10.9,100 +1.9375,1.94,a-pcom-i3,2020-21,Gill-Montague - Turners Fall High,6740505,0,0,6.2,93.8,0,0,0,76.2,23.8,100 +5.15625,5,a-pcom-i3,2020-21,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,5.6,1.3,8,83.5,0,1.6,0,74.7,25.3,100 +1,1,a-pcom-i3,2020-21,Gloucester - Beeman Memorial,1070010,0,1.8,0,98.2,0,0,0,96.5,3.5,100 +1,1,a-pcom-i3,2020-21,Gloucester - East Gloucester Elementary,1070020,0,0,2.4,97.6,0,0,0,92.7,7.3,100 +1.53125,1.53,a-pcom-i3,2020-21,Gloucester - Gloucester High,1070505,1.6,0,2.4,95.1,0.8,0,0,60.7,39.3,100 +1,1,a-pcom-i3,2020-21,Gloucester - Gloucester PreSchool,1070025,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Gloucester - Plum Cove School,1070042,0,0,2.6,97.4,0,0,0,92.1,7.9,100 +1,1,a-pcom-i3,2020-21,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,100,0,0,0,73.9,26.1,100 +1,1,a-pcom-i3,2020-21,Gloucester - Veterans Memorial,1070045,0,0,0,100,0,0,0,97.7,2.3,100 +1,1,a-pcom-i3,2020-21,Gloucester - West Parish,1070050,0,0,0,100,0,0,0,98.1,1.9,100 +1,1,a-pcom-i3,2020-21,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,100,0,0,0,100,0,100 +2.3125,2.31,a-pcom-i3,2020-21,Grafton - Grafton High School,1100505,1.9,0.9,2.8,92.6,0,0,1.9,67.5,32.5,100 +1.84375,1.84,a-pcom-i3,2020-21,Grafton - Grafton Middle,1100305,0,5.9,0,94.1,0,0,0,65.3,34.7,100 +1,1,a-pcom-i3,2020-21,Grafton - Millbury Street Elementary School,1100200,0,0,0,100,0,0,0,93.6,6.4,100 +1.6875,1.69,a-pcom-i3,2020-21,Grafton - North Grafton Elementary,1100025,1.7,0,0,94.6,0,0,3.8,96.2,3.8,100 +1,1,a-pcom-i3,2020-21,Grafton - North Street Elementary School,1100030,0,1.3,1.3,97.4,0,0,0,94.8,5.2,100 +2.0625,2.06,a-pcom-i3,2020-21,Grafton - South Grafton Elementary,1100005,5.2,0,0,93.4,1.4,0,0,94.8,5.2,100 +1,1,a-pcom-i3,2020-21,Granby - East Meadow,1110004,1.4,1.4,0,97.2,0,0,0,85.8,14.2,100 +1.75,1.75,a-pcom-i3,2020-21,Granby - Granby Jr Sr High School,1110505,0,1.9,1.9,94.4,0,0,1.9,65.9,34.1,100 +1,1,a-pcom-i3,2020-21,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,1.5,0,0.6,98,0,0,0,48.8,51.2,100 +4.625,4.62,a-pcom-i3,2020-21,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0.4,1,13,85.2,0,0,0.4,59.8,40.2,100 +2.46875,2.47,a-pcom-i3,2020-21,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,1.7,2.3,3.5,92.1,0.3,0,0,62.8,37.2,100 +1.53125,1.53,a-pcom-i3,2020-21,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,1.7,0.4,2,95.1,0.8,0,0,54.9,45.1,100 +2.78125,2.78,a-pcom-i3,2020-21,Greenfield - Discovery School at Four Corners,1140025,2.2,0,4.4,91.1,0,0,2.2,88.7,11.3,100 +1,1,a-pcom-i3,2020-21,Greenfield - Federal Street School,1140010,0,0,0,100,0,0,0,89.8,10.2,100 +1.6875,1.69,a-pcom-i3,2020-21,Greenfield - Greenfield High,1140505,0,1.3,2.7,94.6,0,0,1.3,59.8,40.2,100 +1.28125,1.28,a-pcom-i3,2020-21,Greenfield - Greenfield Middle,1140305,0,2.1,0,95.9,0,0,2.1,81.5,18.5,100 +3.5,3.5,a-pcom-i3,2020-21,Greenfield - Newton School,1140035,0,0,11.2,88.8,0,0,0,85,15,100 +1,1,a-pcom-i3,2020-21,Greenfield - The Academy of Early Learning at North Parish,1140005,0,0,0,100,0,0,0,99.2,0.8,100 +1.375,1.38,a-pcom-i3,2020-21,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,1.5,1.5,1.5,95.6,0,0,0,70.5,29.5,100 +1,1,a-pcom-i3,2020-21,Groton-Dunstable - Boutwell School,6730001,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Groton-Dunstable - Florence Roche School,6730010,0,1.4,0,98.6,0,0,0,90,10,100 +1,1,a-pcom-i3,2020-21,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,98.8,1.2,0,0,62.2,37.8,100 +1,1,a-pcom-i3,2020-21,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,99,0,0,1,83.5,16.5,100 +1,1,a-pcom-i3,2020-21,Groton-Dunstable - Swallow/Union School,6730005,0,0,0,100,0,0,0,97.8,2.2,100 +2.125,2.12,a-pcom-i3,2020-21,Hadley - Hadley Elementary,1170015,2.3,2.3,2.3,93.2,0,0,0,84.2,15.8,100 +2.3125,2.31,a-pcom-i3,2020-21,Hadley - Hopkins Academy,1170505,2.5,0,5,92.6,0,0,0,70.2,29.8,100 +1,1,a-pcom-i3,2020-21,Halifax - Halifax Elementary,1180005,0,0,0,100,0,0,0,86.2,13.8,100 +1,1,a-pcom-i3,2020-21,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,0,0,100,0,0,0,95.5,4.5,100 +1,1,a-pcom-i3,2020-21,Hamilton-Wenham - Cutler School,6750010,0,0,2.7,97.3,0,0,0,96.2,3.8,100 +2.03125,2.03,a-pcom-i3,2020-21,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,2.3,2.8,93.5,0,0,1.4,62,38,100 +1,1,a-pcom-i3,2020-21,Hamilton-Wenham - Miles River Middle,6750310,0,2.5,0,97.5,0,0,0,80.1,19.9,100 +1.53125,1.53,a-pcom-i3,2020-21,Hamilton-Wenham - Winthrop School,6750015,0,1.8,1.4,95.1,0,0,1.8,94.4,5.6,100 +4.1875,4.19,a-pcom-i3,2020-21,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,3.6,4.5,5.4,86.6,0,0,0,58.9,41.1,100 +4.96875,4.97,a-pcom-i3,2020-21,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,9.1,2.3,4.5,84.1,0,0,0,61.4,38.6,100 +1,1,a-pcom-i3,2020-21,Hampden-Wilbraham - Green Meadows Elementary,6800005,0,0,0,98.5,0,0,1.5,95.4,4.6,100 +1.6875,1.69,a-pcom-i3,2020-21,Hampden-Wilbraham - Mile Tree Elementary,6800025,1.8,0,3.6,94.6,0,0,0,95.5,4.5,100 +1.53125,1.53,a-pcom-i3,2020-21,Hampden-Wilbraham - Minnechaug Regional High,6800505,1.3,0,3.6,95.1,0,0,0,67.7,32.3,100 +1.53125,1.53,a-pcom-i3,2020-21,Hampden-Wilbraham - Soule Road,6800030,0,0,4.9,95.1,0,0,0,94.6,5.4,100 +1.40625,1.41,a-pcom-i3,2020-21,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,95.5,0,0,4.5,94.4,5.6,100 +1,1,a-pcom-i3,2020-21,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,100,0,0,0,75.7,24.3,100 +1,1,a-pcom-i3,2020-21,Hampshire - Hampshire Regional High,6830505,0.9,0.9,0,98.2,0,0,0,72.4,27.6,100 +1,1,a-pcom-i3,2020-21,Hancock - Hancock Elementary,1210005,0,0,0,100,0,0,0,86.6,13.4,100 +1,1,a-pcom-i3,2020-21,Hanover - Cedar Elementary,1220004,0,0,0,100,0,0,0,97.3,2.7,100 +1,1,a-pcom-i3,2020-21,Hanover - Center Elementary,1220005,0,1.6,1.6,96.9,0,0,0,92.2,7.8,100 +1,1,a-pcom-i3,2020-21,Hanover - Hanover High,1220505,1.1,0,0,98.9,0,0,0,69.2,30.8,100 +1,1,a-pcom-i3,2020-21,Hanover - Hanover Middle,1220305,1,0,1,96.9,1,0,0,78.6,21.4,100 +1.21875,1.22,a-pcom-i3,2020-21,Harvard - Bromfield,1250505,0.2,0,2.5,96.1,0,1.2,0,70.9,29.1,100 +2.46875,2.47,a-pcom-i3,2020-21,Harvard - Hildreth Elementary School,1250005,1.4,4,2.4,92.1,0,0,0,91.1,8.9,100 +1,1,a-pcom-i3,2020-21,Hatfield - Hatfield Elementary,1270005,0,0,2.8,97.2,0,0,0,85.1,14.9,100 +1,1,a-pcom-i3,2020-21,Hatfield - Smith Academy,1270505,0,0,0,100,0,0,0,70.4,29.6,100 +2.3125,2.31,a-pcom-i3,2020-21,Haverhill - Bradford Elementary,1280008,1.5,0,4.5,92.6,0,0,1.5,95.5,4.5,100 +2.96875,2.97,a-pcom-i3,2020-21,Haverhill - Caleb Dustin Hunking School,1280030,0,1,7.5,90.5,1,0,0,84.5,15.5,100 +1.5625,1.56,a-pcom-i3,2020-21,Haverhill - Consentino Middle School,1280100,0,0,5,95,0,0,0,83.1,16.9,100 +1,1,a-pcom-i3,2020-21,Haverhill - Crowell,1280515,0,0,0,100,0,0,0,73.2,26.8,100 +2.28125,2.28,a-pcom-i3,2020-21,Haverhill - Dr Paul Nettle,1280050,0,0,7.3,92.7,0,0,0,79.9,20.1,100 +3.09375,3.09,a-pcom-i3,2020-21,Haverhill - Golden Hill,1280026,0,2.8,7.1,90.1,0,0,0,90.1,9.9,100 +4.3125,4.31,a-pcom-i3,2020-21,Haverhill - Greenleaf Academy,1280033,0,0,13.8,86.2,0,0,0,55.7,44.3,100 +4.46875,4.47,a-pcom-i3,2020-21,Haverhill - Haverhill High,1280505,1.3,2.6,10.4,85.7,0,0,0,66.5,33.5,100 +1,1,a-pcom-i3,2020-21,Haverhill - John G Whittier,1280085,0,0,3,97,0,0,0,79.5,20.5,100 +2.125,2.12,a-pcom-i3,2020-21,Haverhill - Moody,1280045,2.2,0,4.6,93.2,0,0,0,100,0,100 +1.1875,1.19,a-pcom-i3,2020-21,Haverhill - Pentucket Lake Elementary,1280054,0,0,3.8,96.2,0,0,0,88.9,11.1,100 +3.0625,3.06,a-pcom-i3,2020-21,Haverhill - Silver Hill Elementary School,1280067,0,0,9.8,90.2,0,0,0,91.6,8.4,100 +3.46875,3.47,a-pcom-i3,2020-21,Haverhill - TEACH,1280073,0,4.8,6.3,88.9,0,0,0,78.6,21.4,100 +1.96875,1.97,a-pcom-i3,2020-21,Haverhill - Tilton,1280075,0,0,6.3,93.7,0,0,0,92.8,7.2,100 +1,1,a-pcom-i3,2020-21,Haverhill - Tilton Upper Middle School,1280105,0,0,2.3,97.7,0,0,0,96.9,3.1,100 +1,1,a-pcom-i3,2020-21,Haverhill - Walnut Square,1280080,0,0,1.6,98.4,0,0,0,97.6,2.4,100 +1,1,a-pcom-i3,2020-21,Hawlemont - Hawlemont Regional,6850005,0,0,0,100,0,0,0,90.3,9.7,100 +27.71875,5,a-pcom-i3,2020-21,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,69.8,3.8,11.3,11.3,0,0,3.8,66,34,100 +2.6875,2.69,a-pcom-i3,2020-21,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,2.9,0,2.9,91.4,0,0,2.9,88.6,11.4,100 +1,1,a-pcom-i3,2020-21,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,2.2,0,1,96.8,0,0,0,83.9,16.1,100 +1.28125,1.28,a-pcom-i3,2020-21,Hingham - East Elementary School,1310005,1.4,0,0,95.9,1.4,0,1.4,91.1,8.9,100 +1,1,a-pcom-i3,2020-21,Hingham - Hingham High,1310505,0,1.3,0.7,97.9,0,0,0,67.6,32.4,100 +1.09375,1.09,a-pcom-i3,2020-21,Hingham - Hingham Middle School,1310410,0,0,2.6,96.5,0,0,0.9,80.5,19.5,100 +1,1,a-pcom-i3,2020-21,Hingham - Plymouth River,1310019,0,0.9,0,99.1,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Hingham - South Elementary,1310020,1.4,1.5,0,97.1,0,0,0,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,Hingham - Wm L Foster Elementary,1310010,0,0,1.6,98.4,0,0,0,94,6,100 +1,1,a-pcom-i3,2020-21,Holbrook - Holbrook Middle High School,1330505,0,1.5,0,98.5,0,0,0,67.8,32.2,100 +1.625,1.63,a-pcom-i3,2020-21,Holbrook - John F Kennedy,1330018,3.9,1.3,0,94.8,0,0,0,97.4,2.6,100 +1.09375,1.09,a-pcom-i3,2020-21,Holland - Holland Elementary,1350005,0,3.5,0,96.5,0,0,0,91.5,8.5,100 +1.15625,1.16,a-pcom-i3,2020-21,Holliston - Holliston High,1360505,0.9,0.9,1.8,96.3,0,0,0,66.3,33.7,100 +1.9375,1.94,a-pcom-i3,2020-21,Holliston - Miller School,1360007,2,0,1.1,93.8,1,0,2,89.7,10.3,100 +1.0625,1.06,a-pcom-i3,2020-21,Holliston - Placentino Elementary,1360010,1,1,1.4,96.6,0,0,0,94.1,5.9,100 +1,1,a-pcom-i3,2020-21,Holliston - Robert H. Adams Middle School,1360305,0,2.1,1.1,96.8,0,0,0,82.8,17.2,100 +14.15625,5,a-pcom-i3,2020-21,Holyoke - E N White Elementary,1370045,2.7,0,42.5,54.7,0,0,0,90.5,9.5,100 +10.84375,5,a-pcom-i3,2020-21,Holyoke - H.B. Lawrence School,1370070,6,0,28.7,65.3,0,0,0,92.5,7.5,100 +11.375,5,a-pcom-i3,2020-21,Holyoke - Holyoke High,1370505,6,2.1,28.2,63.6,0,0,0,53.5,46,100 +12.875,5,a-pcom-i3,2020-21,Holyoke - Holyoke STEM Academy,1370320,5.2,0,36,58.8,0,0,0,66.6,33.4,100 +15.875,5,a-pcom-i3,2020-21,Holyoke - Joseph Metcalf School,1370003,0,2.6,48.2,49.2,0,0,0,81.7,18.3,100 +10.53125,5,a-pcom-i3,2020-21,Holyoke - Kelly Elementary,1370040,6.3,0,27.4,66.3,0,0,0,72.8,27.2,100 +13.0625,5,a-pcom-i3,2020-21,Holyoke - Lt Clayre Sullivan Elementary,1370055,8.8,0,33.1,58.2,0,0,0,86.5,13.5,100 +7.5,5,a-pcom-i3,2020-21,Holyoke - Lt Elmer J McMahon Elementary,1370015,2.5,0,21.5,76,0,0,0,91.7,8.3,100 +12.59375,5,a-pcom-i3,2020-21,Holyoke - Maurice A Donahue Elementary,1370060,6,0,33.2,59.7,0,0,1,81.6,18.4,100 +11.34375,5,a-pcom-i3,2020-21,Holyoke - Morgan Full Service Community School,1370025,8,0,28.3,63.7,0,0,0,98,2,100 +18.46875,5,a-pcom-i3,2020-21,Holyoke - Veritas Prep Holyoke,1370075,16.1,5.6,33.7,40.9,3.7,0,0,79.3,20.7,100 +15.34375,5,a-pcom-i3,2020-21,Holyoke - William R. Peck School,1370030,1.7,0,47.4,50.9,0,0,0,80.3,19.7,100 +13.40625,5,a-pcom-i3,2020-21,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,5.3,0,37.6,57.1,0,0,0,72.5,27.5,100 +1,1,a-pcom-i3,2020-21,Hoosac Valley Regional - Hoosac Valley Elementary School,6030020,1.3,0,0,98.7,0,0,0,94.8,5.2,100 +1,1,a-pcom-i3,2020-21,Hoosac Valley Regional - Hoosac Valley High School,6030505,1.8,0,0,98.2,0,0,0,77.1,22.9,100 +1,1,a-pcom-i3,2020-21,Hoosac Valley Regional - Hoosac Valley Middle School,6030315,1.6,0,0,96.9,0,1.6,0,68.5,31.5,100 +1.25,1.25,a-pcom-i3,2020-21,Hopedale - Hopedale Jr Sr High,1380505,0,0,2.6,96,0,0,1.3,70.4,29.6,100 +1,1,a-pcom-i3,2020-21,Hopedale - Memorial,1380010,0,0,1.1,98.9,0,0,0,95.5,4.5,100 +1,1,a-pcom-i3,2020-21,Hopedale - Park Street School,1380003,0,0,0,100,0,0,0,100,0,100 +1.75,1.75,a-pcom-i3,2020-21,Hopkinton - Elmwood,1390010,0,5.6,0,94.4,0,0,0,89.3,10.7,100 +1.40625,1.41,a-pcom-i3,2020-21,Hopkinton - Hopkins Elementary School,1390015,0,2.9,1.6,95.5,0,0,0,92.5,7.5,100 +1.65625,1.66,a-pcom-i3,2020-21,Hopkinton - Hopkinton High,1390505,0.7,2.5,2.1,94.7,0,0,0,61.9,38.1,100 +1.21875,1.22,a-pcom-i3,2020-21,Hopkinton - Hopkinton Middle School,1390305,1,1.9,1,96.1,0,0,0,76.1,23.9,100 +2.90625,2.91,a-pcom-i3,2020-21,Hopkinton - Hopkinton Pre-School,1390003,4.7,0,4.7,90.7,0,0,0,100,0,100 +2.40625,2.41,a-pcom-i3,2020-21,Hopkinton - Marathon Elementary School,1390005,2.5,3.8,1.4,92.3,0,0,0,93.6,6.4,100 +1,1,a-pcom-i3,2020-21,Hudson - C A Farley,1410030,0,1.4,1.4,97.2,0,0,0,98.6,1.4,100 +1.40625,1.41,a-pcom-i3,2020-21,Hudson - David J. Quinn Middle School,1410410,0,0,4.5,95.5,0,0,0,83.9,16.1,100 +1,1,a-pcom-i3,2020-21,Hudson - Forest Avenue Elementary,1410015,0,0,0,100,0,0,0,93.6,6.4,100 +1,1,a-pcom-i3,2020-21,Hudson - Hudson High,1410505,0.8,0.8,1.5,96.9,0,0,0,73,27,100 +1,1,a-pcom-i3,2020-21,Hudson - Mulready Elementary,1410007,0,1.6,1.6,96.8,0,0,0,97.2,2.8,100 +1,1,a-pcom-i3,2020-21,Hull - Hull High,1420505,0,0,0,100,0,0,0,66.8,33.2,100 +1,1,a-pcom-i3,2020-21,Hull - Lillian M Jacobs,1420015,0,0,0.2,99.8,0,0,0,94.5,5.5,100 +1,1,a-pcom-i3,2020-21,Hull - Memorial Middle,1420305,0,0,0,100,0,0,0,72.6,27.4,100 +3.8125,3.81,a-pcom-i3,2020-21,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,1.8,3.7,5.6,87.8,0,0,1,74.3,25.7,100 +1,1,a-pcom-i3,2020-21,Ipswich - Ipswich High,1440505,0,0,1.3,98.7,0,0,0,71,29,100 +1,1,a-pcom-i3,2020-21,Ipswich - Ipswich Middle School,1440305,0,0,1.6,98.4,0,0,0,83.1,16.9,100 +1,1,a-pcom-i3,2020-21,Ipswich - Paul F Doyon Memorial,1440007,0,0,2.9,97.1,0,0,0,96.5,3.5,100 +1,1,a-pcom-i3,2020-21,Ipswich - Winthrop,1440015,0,0,1.5,97.1,0,1.5,0,93,7,100 +20.09375,5,a-pcom-i3,2020-21,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,41.1,0,17.7,35.7,1.4,0,4.1,77.9,22.1,100 +15.40625,5,a-pcom-i3,2020-21,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,27.2,6.8,12.4,50.7,0,0,3,72.3,27.2,100 +1.0625,1.06,a-pcom-i3,2020-21,King Philip - King Philip Middle School,6900510,1.2,0,2.2,96.6,0,0,0,81.1,18.9,100 +1.15625,1.16,a-pcom-i3,2020-21,King Philip - King Philip Regional High,6900505,0.7,1.5,1.5,96.3,0,0,0,67.3,32.7,100 +1,1,a-pcom-i3,2020-21,Kingston - Kingston Elementary,1450005,0,0,0,100,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Kingston - Kingston Intermediate,1450020,0,0,0,100,0,0,0,86.3,13.7,100 +4.5625,4.56,a-pcom-i3,2020-21,Lawrence - Alexander B Bruce,1490015,0,0,13,85.4,1.6,0,0,74.3,25.7,100 +7,5,a-pcom-i3,2020-21,Lawrence - Arlington Middle School,1490017,0,0,22.4,77.6,0,0,0,65.1,34.9,100 +5.34375,5,a-pcom-i3,2020-21,Lawrence - Community Day Arlington,1490009,0,0,14.7,82.9,2.4,0,0,83.9,16.1,100 +5.6875,5,a-pcom-i3,2020-21,Lawrence - Edward F. Parthum,1490053,0,0,17,81.8,1.2,0,0,89.1,10.9,100 +4.40625,4.41,a-pcom-i3,2020-21,Lawrence - Emily G Wetherbee,1490080,0,0,14.1,85.9,0,0,0,87.7,12.3,100 +6.25,5,a-pcom-i3,2020-21,Lawrence - Francis M Leahy,1490040,1.8,0,18.2,80,0,0,0,89.1,10.9,100 +6.6875,5,a-pcom-i3,2020-21,Lawrence - Frost Middle School,1490525,3.9,0,13.6,78.6,2,0,2,68.9,31.1,100 +5.625,5,a-pcom-i3,2020-21,Lawrence - Gerard A. Guilmette,1490022,0,1.5,16.5,82,0,0,0,94,6,100 +5.90625,5,a-pcom-i3,2020-21,Lawrence - Guilmette Middle School,1490025,1.2,0,16.4,81.1,1.2,0,0,78.7,21.3,100 +8.21875,5,a-pcom-i3,2020-21,Lawrence - High School Learning Center,1490536,0,0,17.7,73.7,4.3,0,4.3,56.7,43.3,100 +10.1875,5,a-pcom-i3,2020-21,Lawrence - James F Hennessey,1490020,0,0,30.8,67.4,1.9,0,0,94.3,5.7,100 +12.96875,5,a-pcom-i3,2020-21,Lawrence - John Breen School,1490003,0,0,41.5,58.5,0,0,0,99.9,0.1,100 +8.625,5,a-pcom-i3,2020-21,Lawrence - John K Tarbox,1490075,0,0,27.6,72.4,0,0,0,92.4,7.6,100 +13.15625,5,a-pcom-i3,2020-21,Lawrence - Lawlor Early Childhood Center,1490002,0,0,42.1,57.9,0,0,0,95.2,4.8,100 +9.5,5,a-pcom-i3,2020-21,Lawrence - Lawrence Family Public Academy,1490011,3,0,27.4,69.6,0,0,0,96.9,3.1,100 +9.84375,5,a-pcom-i3,2020-21,Lawrence - Lawrence High School,1490515,1.2,0,28.4,68.5,1.6,0,0.3,64.2,35.8,100 +9.125,5,a-pcom-i3,2020-21,Lawrence - Oliver Partnership School,1490048,1.7,0,27.6,70.8,0,0,0,83.4,16.6,100 +5.40625,5,a-pcom-i3,2020-21,Lawrence - Parthum Middle School,1490027,0,0,17.3,82.7,0,0,0,74.3,25.7,100 +8.96875,5,a-pcom-i3,2020-21,Lawrence - RISE Academy,1490615,0,0,28.7,71.3,0,0,0,60.2,39.8,100 +7.21875,5,a-pcom-i3,2020-21,Lawrence - Robert Frost,1490018,3.1,0,17,76.9,1.5,0,1.5,90.8,9.2,100 +9.875,5,a-pcom-i3,2020-21,Lawrence - Rollins Early Childhood Center,1490001,0,0,31.6,68.4,0,0,0,95.1,4.9,100 +13.84375,5,a-pcom-i3,2020-21,Lawrence - School for Exceptional Studies,1490537,4.2,0,40,55.7,0,0,0,65.5,33.6,100 +5,5,a-pcom-i3,2020-21,Lawrence - South Lawrence East Elementary School,1490004,0,0,14.7,84,0,0,1.2,84.1,15.9,100 +11.5625,5,a-pcom-i3,2020-21,Lawrence - Spark Academy,1490085,4.9,0,28.9,63,3.2,0,0,77.7,22.3,100 +12.875,5,a-pcom-i3,2020-21,Lawrence - UP Academy Leonard Middle School,1490090,2.4,0,38.8,58.8,0,0,0,61.4,38.6,100 +12.9375,5,a-pcom-i3,2020-21,Lawrence - UP Academy Oliver Middle School,1490049,4.8,0,31.7,58.6,4.8,0,0,73.3,26.7,100 +9.71875,5,a-pcom-i3,2020-21,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,1,5.2,24.9,68.9,0,0,0,88.6,11.4,100 +7.34375,5,a-pcom-i3,2020-21,Learning First Charter Public School (District) - Learning First Charter Public School,4860105,7.8,1.3,14.4,76.5,0,0,0,84.3,15.7,100 +1,1,a-pcom-i3,2020-21,Lee - Lee Elementary,1500025,0,0,1.6,98.4,0,0,0,89.4,10.6,100 +1.03125,1.03,a-pcom-i3,2020-21,Lee - Lee Middle/High School,1500505,0,1.6,1.6,96.7,0,0,0,76.6,23.4,100 +1,1,a-pcom-i3,2020-21,Leicester - Leicester Elementary,1510005,0,1.5,1.5,97,0,0,0,95.7,4.3,100 +2.375,2.37,a-pcom-i3,2020-21,Leicester - Leicester High,1510505,0,1.9,5.7,92.4,0,0,0,75.8,24.2,100 +2.5625,2.56,a-pcom-i3,2020-21,Leicester - Leicester Integrated Preschool,1510001,0,0,8.2,91.8,0,0,0,98.4,1.6,100 +1.25,1.25,a-pcom-i3,2020-21,Leicester - Leicester Middle,1510015,0,2,2,96,0,0,0,79.1,20.9,100 +1,1,a-pcom-i3,2020-21,Lenox - Lenox Memorial High,1520505,0,0,1.4,98.6,0,0,0,66.6,33.4,100 +1,1,a-pcom-i3,2020-21,Lenox - Morris,1520015,0,0,1.5,98.5,0,0,0,93.8,6.2,100 +3.65625,3.66,a-pcom-i3,2020-21,Leominster - Bennett,1530003,6.3,1.5,3.9,88.3,0,0,0,98.5,1.5,100 +1.21875,1.22,a-pcom-i3,2020-21,Leominster - Center For Technical Education Innovation,1530605,1,2.3,0.6,96.1,0,0,0,50.5,49.5,100 +1,1,a-pcom-i3,2020-21,Leominster - Fall Brook,1530007,0,0,2.2,97.8,0,0,0,95.3,4.7,100 +3.75,3.75,a-pcom-i3,2020-21,Leominster - Frances Drake School,1530010,2.3,1.3,8.3,88,0,0,0,85.6,14.4,100 +1.0625,1.06,a-pcom-i3,2020-21,Leominster - Johnny Appleseed,1530025,2.1,0,1.3,96.6,0,0,0,98.6,1.4,100 +3.625,3.62,a-pcom-i3,2020-21,Leominster - Leominster Center for Excellence,1530515,11.6,0,0,88.4,0,0,0,76.7,23.3,100 +2.34375,2.34,a-pcom-i3,2020-21,Leominster - Leominster High School,1530505,1.4,1.2,5,92.5,0,0,0,66.3,33.7,100 +2.15625,2.16,a-pcom-i3,2020-21,Leominster - Lincoln School,1530005,0,0,6.9,93.1,0,0,0,92.5,7.5,100 +2.125,2.12,a-pcom-i3,2020-21,Leominster - Northwest,1530030,4.7,0,2.2,93.2,0,0,0,93,7,100 +1.84375,1.84,a-pcom-i3,2020-21,Leominster - Priest Street,1530040,3,3,0,94.1,0,0,0,98.3,1.7,100 +1,1,a-pcom-i3,2020-21,Leominster - Samoset School,1530045,0,0,2.6,97.4,0,0,0,73.7,26.3,100 +2.0625,2.06,a-pcom-i3,2020-21,Leominster - Sky View Middle School,1530320,1.2,0,5.3,93.4,0,0,0,84.9,15.1,100 +1.1875,1.19,a-pcom-i3,2020-21,Leverett - Leverett Elementary,1540005,3.8,0,0,96.2,0,0,0,88.4,11.6,100 +5.9375,5,a-pcom-i3,2020-21,Lexington - Bowman,1550008,5.1,9.8,3.4,81,0,0.8,0,83.2,16.8,100 +3.9375,3.94,a-pcom-i3,2020-21,Lexington - Bridge,1550006,3,5.3,1.4,87.4,0,0,2.8,89,11,100 +3.84375,3.84,a-pcom-i3,2020-21,Lexington - Fiske,1550015,1.6,7.6,1.1,87.7,1,0,1,88.6,11.4,100 +4.4375,4.44,a-pcom-i3,2020-21,Lexington - Harrington,1550030,3.4,6.6,2.9,85.8,0,0,1.4,86.5,13.5,100 +4.5,4.5,a-pcom-i3,2020-21,Lexington - Jonas Clarke Middle,1550305,2.4,5.9,4.8,85.6,0,0,1.3,76.9,23.1,100 +3.40625,3.41,a-pcom-i3,2020-21,Lexington - Joseph Estabrook,1550010,3.2,3.4,2.9,89.1,0,0,1.5,91.1,8.9,100 +2.6875,2.69,a-pcom-i3,2020-21,Lexington - Lexington Children's Place,1550001,0,4.3,2.1,91.4,0,0,2.1,100,0,100 +3.40625,3.41,a-pcom-i3,2020-21,Lexington - Lexington High,1550505,1.7,4.3,3.8,89.1,0,0,1,70.6,29.4,100 +6.90625,5,a-pcom-i3,2020-21,Lexington - Maria Hastings,1550035,10.6,8.3,2.1,77.9,0,0,1.1,93.8,6.2,100 +4.09375,4.09,a-pcom-i3,2020-21,Lexington - Wm Diamond Middle,1550310,1.8,6.1,4.4,86.9,0,0,0.7,76.2,23.8,100 +11.875,5,a-pcom-i3,2020-21,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,14.3,0,19,62,0,0,4.8,69.1,30.9,100 +1.9375,1.94,a-pcom-i3,2020-21,Lincoln - Hanscom Middle,1570305,2.1,0,4.1,93.8,0,0,0,81.2,18.8,100 +1.9375,1.94,a-pcom-i3,2020-21,Lincoln - Hanscom Primary,1570006,2.6,3.1,0.5,93.8,0,0,0,96.8,3.2,100 +3.03125,3.03,a-pcom-i3,2020-21,Lincoln - Lincoln School,1570025,4,3.6,1.2,90.3,0.9,0,0,87.3,12.7,100 +2.25,2.25,a-pcom-i3,2020-21,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,3.1,1.4,1.7,92.8,0.5,0,0.5,61.6,38.4,100 +1.25,1.25,a-pcom-i3,2020-21,Littleton - Littleton High School,1580505,0,0,0,96,0,0,4,67.4,32.6,100 +1,1,a-pcom-i3,2020-21,Littleton - Littleton Middle School,1580305,1.9,0,0,98.1,0,0,0,77.7,22.3,100 +1,1,a-pcom-i3,2020-21,Littleton - Russell St Elementary,1580015,0,0,0,100,0,0,0,93.5,6.5,100 +1.90625,1.91,a-pcom-i3,2020-21,Littleton - Shaker Lane Elementary,1580005,0,3.1,1.3,93.9,0,0,1.8,97.8,2.2,100 +1,1,a-pcom-i3,2020-21,Longmeadow - Blueberry Hill,1590005,0,0,0,100,0,0,0,92.2,7.8,100 +2.21875,2.22,a-pcom-i3,2020-21,Longmeadow - Center,1590010,0,5.3,1.8,92.9,0,0,0,91.1,8.9,100 +1,1,a-pcom-i3,2020-21,Longmeadow - Glenbrook Middle,1590017,0,0,2.5,97.5,0,0,0,81.3,18.7,100 +1.34375,1.34,a-pcom-i3,2020-21,Longmeadow - Longmeadow High,1590505,0.9,0,2.6,95.7,0,0,0.9,67.1,32.9,100 +1,1,a-pcom-i3,2020-21,Longmeadow - Williams Middle,1590305,2.4,0,0,97.6,0,0,0,78.3,21.7,100 +1,1,a-pcom-i3,2020-21,Longmeadow - Wolf Swamp Road,1590025,0,0,0,100,0,0,0,98.6,1.4,100 +3.96875,3.97,a-pcom-i3,2020-21,Lowell - Abraham Lincoln,1600020,0,6.3,6.3,87.3,0,0,0,91.4,8.6,100 +5.625,5,a-pcom-i3,2020-21,Lowell - B.F. Butler Middle School,1600310,7.4,5.7,3.3,82,0,0,1.6,78.9,21.1,100 +4,4,a-pcom-i3,2020-21,Lowell - Bartlett Community Partnership,1600090,1.3,6.4,5.1,87.2,0,0,0,85.6,14.4,100 +5.71875,5,a-pcom-i3,2020-21,Lowell - Cardinal O'Connell Early Learning Center,1600001,0,13.7,4.6,81.7,0,0,0,97,3,100 +3.25,3.25,a-pcom-i3,2020-21,Lowell - Charles W Morey,1600030,0,3.2,6.4,89.6,0,0,0.8,95.2,4.8,100 +4.28125,4.28,a-pcom-i3,2020-21,Lowell - Charlotte M Murkland Elementary,1600080,0,8.8,4.8,86.3,0,0,0,86.5,13.5,100 +1,1,a-pcom-i3,2020-21,Lowell - Dr An Wang School,1600345,0,0,3.1,96.9,0,0,0,83.1,16.9,100 +1,1,a-pcom-i3,2020-21,Lowell - Dr Gertrude Bailey,1600002,0,1.6,1.6,96.8,0,0,0,95.2,4.8,100 +5.6875,5,a-pcom-i3,2020-21,Lowell - Dr. Janice Adie Day School,1600605,0,11.4,6.8,81.8,0,0,0,77.3,22.7,100 +3.1875,3.19,a-pcom-i3,2020-21,Lowell - Greenhalge,1600015,1.5,1.5,4.4,89.8,1.5,0,1.5,98.5,1.5,100 +6.125,5,a-pcom-i3,2020-21,Lowell - Henry J Robinson Middle,1600330,1.5,4.5,12.1,80.4,0,0,1.5,69.9,30.1,100 +3.125,3.13,a-pcom-i3,2020-21,Lowell - James S Daley Middle School,1600315,3.7,3.7,2.5,90,0,0,0,80.5,19.5,100 +4.65625,4.66,a-pcom-i3,2020-21,Lowell - James Sullivan Middle School,1600340,5.4,0,9.5,85.1,0,0,0,76.9,23.1,100 +1,1,a-pcom-i3,2020-21,Lowell - John J Shaughnessy,1600050,1.5,0.8,0.8,97,0,0,0,93.9,6.1,100 +5.9375,5,a-pcom-i3,2020-21,Lowell - Joseph McAvinnue,1600010,0,4.4,14.6,81,0,0,0,91.2,8.8,100 +4.46875,4.47,a-pcom-i3,2020-21,Lowell - Kathryn P. Stoklosa Middle School,1600360,2.7,8.2,2.7,85.7,0,0.7,0,61.4,38.6,100 +5.71875,5,a-pcom-i3,2020-21,Lowell - Laura Lee Therapeutic Day School,1600085,6.1,0,12.2,81.7,0,0,0,67.7,32.3,100 +5.1875,5,a-pcom-i3,2020-21,Lowell - Leblanc Therapeutic Day School,1600320,0,0,16.6,83.4,0,0,0,65.1,34.9,100 +5.28125,5,a-pcom-i3,2020-21,Lowell - Lowell High,1600505,2.4,5.2,7.8,83.1,0,0,1.5,64.4,35.6,100 +3,3,a-pcom-i3,2020-21,Lowell - Moody Elementary,1600027,0,1.6,8,90.4,0,0,0,95.2,4.8,100 +1.28125,1.28,a-pcom-i3,2020-21,Lowell - Pawtucketville Memorial,1600036,2.4,1.6,0,95.9,0,0,0,93.5,6.5,100 +4,4,a-pcom-i3,2020-21,Lowell - Peter W Reilly,1600040,1.7,0,11.1,87.2,0,0,0,94.9,5.1,100 +2.78125,2.78,a-pcom-i3,2020-21,Lowell - Pyne Arts,1600018,1.5,1.5,5.9,91.1,0,0,0,86.3,13.7,100 +4.78125,4.78,a-pcom-i3,2020-21,Lowell - Rogers STEM Academy,1600005,4.9,5.5,4.9,84.7,0,0,0,79.2,20.8,100 +4.75,4.75,a-pcom-i3,2020-21,Lowell - S Christa McAuliffe Elementary,1600075,3,1.5,10.6,84.8,0,0,0,91.8,8.2,100 +6.0625,5,a-pcom-i3,2020-21,Lowell - The Career Academy,1600515,5.5,8.3,5.5,80.6,0,0,0,68.4,31.6,100 +2.78125,2.78,a-pcom-i3,2020-21,Lowell - Washington,1600055,0,2.2,4.4,91.1,2.2,0,0,86.7,13.3,100 +8.8125,5,a-pcom-i3,2020-21,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,4.3,9.8,13,71.8,0,0,1.1,76.1,23.9,100 +7.5,5,a-pcom-i3,2020-21,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,8,16,76,0,0,0,64,36,100 +1,1,a-pcom-i3,2020-21,Ludlow - Chapin Street Elementary School,1610020,0,0,0,100,0,0,0,98.6,1.4,100 +1,1,a-pcom-i3,2020-21,Ludlow - East Street Elementary School,1610010,1.2,0,1.2,97.6,0,0,0,94.3,5.7,100 +1.40625,1.41,a-pcom-i3,2020-21,Ludlow - Ludlow Senior High,1610505,1.8,0.9,1.8,95.5,0,0,0,67.4,32.6,100 +1,1,a-pcom-i3,2020-21,Ludlow - Paul R Baird Middle,1610305,1.1,0,1.1,97.8,0,0,0,81,19,100 +1,1,a-pcom-i3,2020-21,Ludlow - Veterans Park Elementary,1610023,0,0,1.9,98.1,0,0,0,89.3,8.8,100 +1,1,a-pcom-i3,2020-21,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,100,0,0,0,62.5,37.5,100 +1,1,a-pcom-i3,2020-21,Lunenburg - Lunenburg High,1620505,0,0,0,98,0,2,0,53.8,46.2,100 +1,1,a-pcom-i3,2020-21,Lunenburg - Lunenburg Middle School,1620305,0,0,0,100,0,0,0,86.1,13.9,100 +1,1,a-pcom-i3,2020-21,Lunenburg - Lunenburg Primary School,1620010,0,0,0,100,0,0,0,94.9,5.1,100 +1,1,a-pcom-i3,2020-21,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,100,0,0,0,91.2,8.8,100 +3.75,3.75,a-pcom-i3,2020-21,Lynn - A Drewicz Elementary,1630016,2,4,6,88,0,0,0,93.8,6.2,100 +3.84375,3.84,a-pcom-i3,2020-21,Lynn - Aborn,1630011,4,0,8,87.7,0,0,0.4,99.6,0.4,100 +4.3125,4.31,a-pcom-i3,2020-21,Lynn - Breed Middle School,1630405,2.4,2.4,6.5,86.2,0,0,2.4,68.9,31.1,100 +2.75,2.75,a-pcom-i3,2020-21,Lynn - Brickett Elementary,1630020,0,2.8,5.6,91.2,0,0,0.3,94.8,5.2,100 +2.8125,2.81,a-pcom-i3,2020-21,Lynn - Capt William G Shoemaker,1630090,0,1.3,6.4,91,0,0,1.3,95.5,4.5,100 +4.28125,4.28,a-pcom-i3,2020-21,Lynn - Classical High,1630505,3.9,0,6.5,86.3,0,0,3.3,63.4,36.6,100 +4.15625,4.16,a-pcom-i3,2020-21,Lynn - Cobbet Elementary,1630035,1.5,3,7.4,86.7,0,0,1.5,92.6,7.4,100 +3.4375,3.44,a-pcom-i3,2020-21,Lynn - E J Harrington,1630045,0,2.6,8.2,89,0,0,0.1,98.1,1.9,100 +4.84375,4.84,a-pcom-i3,2020-21,Lynn - Edward A Sisson,1630095,4.2,0,11.3,84.5,0,0,0,95,5,100 +7.125,5,a-pcom-i3,2020-21,Lynn - Fecteau-Leary Junior/Senior High School,1630525,7.6,0,15.2,77.2,0,0,0,49,51,100 +4.90625,4.91,a-pcom-i3,2020-21,Lynn - Hood,1630055,0,3.9,9.7,84.3,0,0,2.1,98,2,100 +4.40625,4.41,a-pcom-i3,2020-21,Lynn - Ingalls,1630060,7,1.4,5.6,85.9,0,0,0.1,97.1,2.9,100 +4.875,4.87,a-pcom-i3,2020-21,Lynn - Julia F Callahan,1630030,6.9,0,6.9,84.4,1.7,0,0,89.4,8.8,100 +1.125,1.12,a-pcom-i3,2020-21,Lynn - Lincoln-Thomson,1630070,0,0,3.6,96.4,0,0,0,91.4,8.6,100 +6,5,a-pcom-i3,2020-21,Lynn - Lynn English High,1630510,3.2,0.6,14.7,80.8,0,0,0.6,52.3,47.7,100 +5.46875,5,a-pcom-i3,2020-21,Lynn - Lynn Vocational Technical Institute,1630605,1.8,0,14.4,82.5,0,0,1.3,58.6,41.4,100 +2.90625,2.91,a-pcom-i3,2020-21,Lynn - Lynn Woods,1630075,0,0,9.3,90.7,0,0,0,94.2,5.8,100 +3.5625,3.56,a-pcom-i3,2020-21,Lynn - Pickering Middle,1630420,2.9,1.4,5.7,88.6,0,0,1.4,77.2,22.8,100 +1.375,1.38,a-pcom-i3,2020-21,Lynn - Robert L Ford,1630050,0,0,4.2,95.6,0,0,0.2,91.4,8.6,100 +3.71875,3.72,a-pcom-i3,2020-21,Lynn - Sewell-Anderson,1630085,0,0,11.9,88.1,0,0,0,91.3,8.7,100 +4,4,a-pcom-i3,2020-21,Lynn - Thurgood Marshall Mid,1630305,3.8,0.8,8,87.2,0,0,0.2,63.7,36.3,100 +3.0625,3.06,a-pcom-i3,2020-21,Lynn - Tracy,1630100,0,0,7.3,90.2,2.4,0,0,95.8,4.2,100 +5.9375,5,a-pcom-i3,2020-21,Lynn - Washington Elementary School,1630005,5.5,3.7,8,81,0,0,1.8,92,8,100 +3.59375,3.59,a-pcom-i3,2020-21,Lynn - William R Fallon,1630080,0,0,11.5,88.5,0,0,0,90.4,5.8,100 +3.1875,3.19,a-pcom-i3,2020-21,Lynn - Wm P Connery,1630040,1.6,1.6,7,89.8,0,0,0,89,11,100 +1.34375,1.34,a-pcom-i3,2020-21,Lynnfield - Huckleberry Hill,1640010,0,1.4,2.9,95.7,0,0,0,99.4,0.6,100 +1,1,a-pcom-i3,2020-21,Lynnfield - Lynnfield High,1640505,0,1.3,0,97.3,0,0,1.3,69,31,100 +1,1,a-pcom-i3,2020-21,Lynnfield - Lynnfield Middle School,1640405,0,1.2,0,98.8,0,0,0,81.8,18.2,100 +1,1,a-pcom-i3,2020-21,Lynnfield - Lynnfield Preschool,1640005,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Lynnfield - Summer Street,1640020,0,2,0,98,0,0,0,96,4,100 +14.40625,5,a-pcom-i3,2020-21,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,25,4.7,13.1,53.9,0.4,0,2.8,73.7,26.3,100 +3.6875,3.69,a-pcom-i3,2020-21,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,88.2,0,0,11.8,58.8,41.2,100 +2.75,2.75,a-pcom-i3,2020-21,Malden - Beebe,1650003,2.9,4.9,1,91.2,0,0,0,86.4,13.6,100 +2.3125,2.31,a-pcom-i3,2020-21,Malden - Ferryway,1650013,2.1,3.2,2.1,92.6,0,0,0,83.4,16.6,100 +2.59375,2.59,a-pcom-i3,2020-21,Malden - Forestdale,1650027,1.9,2.9,2.9,91.7,0,0,0.5,93.5,6.5,100 +2.71875,2.72,a-pcom-i3,2020-21,Malden - Linden,1650047,5.8,1.9,0,91.3,0,0,1,86.3,13.7,100 +5.78125,5,a-pcom-i3,2020-21,Malden - Malden Early Learning Center,1650049,12.3,6.2,0,81.5,0,0,0,96.9,3.1,100 +4.6875,4.69,a-pcom-i3,2020-21,Malden - Malden High,1650505,6.2,2.7,4.5,85,0,0,1.7,67.6,32.4,100 +5.28125,5,a-pcom-i3,2020-21,Malden - Salemwood,1650057,6.6,3.3,3.3,83.1,0,0,3.7,85,15,100 +1,1,a-pcom-i3,2020-21,Manchester Essex Regional - Essex Elementary,6980020,0,0,0,100,0,0,0,82.6,17.4,100 +1,1,a-pcom-i3,2020-21,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,1,1.7,97.3,0,0,0,64.9,35.1,100 +1.4375,1.44,a-pcom-i3,2020-21,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,2.3,2.3,95.4,0,0,0,77.6,22.4,100 +1,1,a-pcom-i3,2020-21,Manchester Essex Regional - Manchester Memorial Elementary,6980010,0,0,2.1,97.9,0,0,0,91.6,8.4,100 +1,1,a-pcom-i3,2020-21,Mansfield - Everett W Robinson,1670007,1,1,0,97.9,0,0,0,94.4,5.6,100 +1.0625,1.06,a-pcom-i3,2020-21,Mansfield - Harold L Qualters Middle,1670035,0.9,0,1.7,96.6,0,0,0.9,77.8,22.2,100 +1.65625,1.66,a-pcom-i3,2020-21,Mansfield - Jordan/Jackson Elementary,1670014,0.7,2.3,1.2,94.7,0,0,1.2,92.9,7.1,100 +1.46875,1.47,a-pcom-i3,2020-21,Mansfield - Mansfield High,1670505,0,0.7,4,95.3,0,0,0,68.8,31.2,100 +1,1,a-pcom-i3,2020-21,Mansfield - Roland Green School,1670003,0,0,0,100,0,0,0,100,0,100 +3.4375,3.44,a-pcom-i3,2020-21,Map Academy Charter School (District) - Map Academy Charter School,35170505,7.3,0,3.7,89,0,0,0,61,39,100 +2.375,2.37,a-pcom-i3,2020-21,Marblehead - Dr. Samuel C. Eveleth,1680025,0,0,6,92.4,0,0,1.5,100,0,100 +1.28125,1.28,a-pcom-i3,2020-21,Marblehead - Glover,1680020,0,0,1.4,95.9,0,1.4,1.4,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,Marblehead - L H Coffin,1680010,0,0,0,98.7,0,0,1.3,97.3,2.7,100 +2.21875,2.22,a-pcom-i3,2020-21,Marblehead - Marblehead High,1680505,0.7,2.2,2.9,92.9,0,0,1.4,61.4,38.6,100 +1,1,a-pcom-i3,2020-21,Marblehead - Marblehead Veterans Middle School,1680300,0,1.5,1.5,96.9,0,0,0,76.8,23.2,100 +1,1,a-pcom-i3,2020-21,Marblehead - Village School,1680016,0,0,0.9,97.9,0,0,1.2,90,10,100 +1,1,a-pcom-i3,2020-21,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,96.9,0,0,3.1,78.6,21.4,100 +1.15625,1.16,a-pcom-i3,2020-21,Marion - Sippican,1690005,1.8,1.8,0,96.3,0,0,0,93,7,100 +1.90625,1.91,a-pcom-i3,2020-21,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,2,3.4,93.9,0.7,0,0,72.7,27.3,100 +1.75,1.75,a-pcom-i3,2020-21,Marlborough - Charles Jaworek School,1700030,2.2,1.1,2.4,94.4,0,0,0,96.4,3.6,100 +1.875,1.88,a-pcom-i3,2020-21,Marlborough - Early Childhood Center,1700006,0,0,4,94,0,0,2,90,10,100 +2.09375,2.09,a-pcom-i3,2020-21,Marlborough - Francis J Kane,1700008,1.4,0,5.3,93.3,0,0,0,87.3,12.7,100 +1.6875,1.69,a-pcom-i3,2020-21,Marlborough - Goodnow Brothers Elementary School,1700020,2.2,1.1,2,94.6,0,0,0,89.7,10.3,100 +2.4375,2.44,a-pcom-i3,2020-21,Marlborough - Marlborough High,1700505,1.2,0.5,5.5,92.2,0.6,0,0,67.4,32.6,100 +2.9375,2.94,a-pcom-i3,2020-21,Marlborough - Richer,1700025,0,1.3,8.1,90.6,0,0,0,94.4,5.6,100 +1,1,a-pcom-i3,2020-21,Marshfield - Daniel Webster,1710015,0,0,0,100,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Marshfield - Eames Way School,1710005,0,0,0,100,0,0,0,89.3,10.7,100 +1,1,a-pcom-i3,2020-21,Marshfield - Furnace Brook Middle,1710310,0.8,0,0.3,98,0.8,0,0,85.3,14.7,100 +1.5,1.5,a-pcom-i3,2020-21,Marshfield - Gov Edward Winslow,1710020,0,0,4.8,95.2,0,0,0,88.8,11.2,100 +1,1,a-pcom-i3,2020-21,Marshfield - Marshfield High,1710505,1.3,0,0.4,97.7,0.6,0,0,71.1,28.9,100 +1.21875,1.22,a-pcom-i3,2020-21,Marshfield - Martinson Elementary,1710025,0,2.6,0,96.1,1.3,0,0,95.6,4.4,100 +1,1,a-pcom-i3,2020-21,Marshfield - South River,1710010,0,0,1.9,98.1,0,0,0,97.3,2.7,100 +2.46875,2.47,a-pcom-i3,2020-21,Martha's Vineyard - Martha's Vineyard Regional High,7000505,1.8,0.8,1.9,92.1,0.8,0,2.5,66.7,33.3,100 +1.59375,1.59,a-pcom-i3,2020-21,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,2.5,0,0,94.9,0,0,2.5,82.2,17.8,100 +13,5,a-pcom-i3,2020-21,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,23.4,0,18.2,58.4,0,0,0,80.9,19.1,100 +1,1,a-pcom-i3,2020-21,Masconomet - Masconomet Regional High School,7050505,0,1.5,0.8,97.7,0,0,0,64.6,35.4,100 +1.78125,1.78,a-pcom-i3,2020-21,Masconomet - Masconomet Regional Middle School,7050405,2.6,1.8,0,94.3,0,0,1.3,67.6,32.4,100 +1,1,a-pcom-i3,2020-21,Mashpee - Kenneth Coombs School,1720005,1.5,0,0,98.5,0,0,0,98.5,1.5,100 +1.96875,1.97,a-pcom-i3,2020-21,Mashpee - Mashpee High,1720505,1.9,1,0,93.7,1.9,1.4,0,62.5,37.5,100 +1.25,1.25,a-pcom-i3,2020-21,Mashpee - Mashpee Middle School,1720020,2.8,1.3,0,96,0,0,0,80.1,19.9,100 +1,1,a-pcom-i3,2020-21,Mashpee - Quashnet School,1720035,0,0,1.7,98.3,0,0,0,82.8,17.2,100 +1,1,a-pcom-i3,2020-21,Mattapoisett - Center,1730005,0,0,0,100,0,0,0,96.9,3.1,100 +1.03125,1.03,a-pcom-i3,2020-21,Mattapoisett - Old Hammondtown,1730010,0,3.3,0,96.7,0,0,0,84.3,15.7,100 +2.21875,2.22,a-pcom-i3,2020-21,Maynard - Fowler School,1740305,0,1.4,5.7,92.9,0,0,0,77.5,22.5,100 +3,3,a-pcom-i3,2020-21,Maynard - Green Meadow,1740010,0,2.4,7.2,90.4,0,0,0,94,6,100 +1.6875,1.69,a-pcom-i3,2020-21,Maynard - Maynard High,1740505,0,1.8,1.8,94.6,0,0,1.8,64.5,35.5,100 +1,1,a-pcom-i3,2020-21,Medfield - Dale Street,1750005,0,1.1,1.2,97.7,0,0,0,91,9,100 +1,1,a-pcom-i3,2020-21,Medfield - Medfield Senior High,1750505,0,1,1,97,0,0,1,69.5,30.5,100 +1.125,1.12,a-pcom-i3,2020-21,Medfield - Memorial School,1750003,0,1.5,1,96.4,0,0,1.2,95.9,4.1,100 +1.21875,1.22,a-pcom-i3,2020-21,Medfield - Ralph Wheelock School,1750007,0,0.7,3.1,96.1,0,0,0,95.6,4.4,100 +1,1,a-pcom-i3,2020-21,Medfield - Thomas Blake Middle,1750305,1.2,0.7,1.2,97,0,0,0,75.7,24.3,100 +1,1,a-pcom-i3,2020-21,Medford - Brooks School,1760130,0,0,1.5,98.5,0,0,0,95.1,4.9,100 +1,1,a-pcom-i3,2020-21,Medford - Christopher Columbus,1760140,0,1.7,0,98.3,0,0,0,91.3,8.7,100 +4.15625,4.16,a-pcom-i3,2020-21,Medford - Curtis-Tufts,1760510,0,0,0,86.7,0,0,13.3,46.7,53.3,100 +1.0625,1.06,a-pcom-i3,2020-21,Medford - John J McGlynn Elementary School,1760068,0,3.4,0,96.6,0,0,0,97.2,2.8,100 +1.5,1.5,a-pcom-i3,2020-21,Medford - John J. McGlynn Middle School,1760320,1.3,2.2,1.3,95.2,0,0,0,75.9,24.1,100 +1.78125,1.78,a-pcom-i3,2020-21,Medford - Madeleine Dugger Andrews,1760315,1.7,4,0,94.3,0,0,0,67.5,32.5,100 +1.25,1.25,a-pcom-i3,2020-21,Medford - Medford High,1760505,2,1,1,96,0,0,0,64.2,35.8,100 +1,1,a-pcom-i3,2020-21,Medford - Milton Fuller Roberts,1760150,1.3,0,0,98.7,0,0,0,90.6,9.4,100 +1.03125,1.03,a-pcom-i3,2020-21,Medway - Burke/Memorial Elementary School,1770015,1.7,1.7,0,96.7,0,0,0,95,5,100 +1,1,a-pcom-i3,2020-21,Medway - John D Mc Govern Elementary,1770013,0,0,0,100,0,0,0,94.3,5.7,100 +1.3125,1.31,a-pcom-i3,2020-21,Medway - Medway High,1770505,0,1,1.9,95.8,1.3,0,0,66.6,33.4,100 +1.15625,1.16,a-pcom-i3,2020-21,Medway - Medway Middle,1770305,1.1,2.1,0.5,96.3,0,0,0,76,24,100 +1,1,a-pcom-i3,2020-21,Melrose - Early Childhood Center,1780003,0,0,0.4,99.6,0,0,0,99,1,100 +1.25,1.25,a-pcom-i3,2020-21,Melrose - Herbert Clark Hoover,1780017,0,0.6,2.9,96,0,0,0.6,92.6,7.4,100 +1.125,1.12,a-pcom-i3,2020-21,Melrose - Horace Mann,1780025,0,2.4,0.6,96.4,0,0,0.6,92.6,7.4,100 +1,1,a-pcom-i3,2020-21,Melrose - Lincoln,1780020,0,1.9,0,98.1,0,0,0,89.6,10.4,100 +1.09375,1.09,a-pcom-i3,2020-21,Melrose - Melrose High,1780505,0,2,1.6,96.5,0,0,0,59,41,100 +1.09375,1.09,a-pcom-i3,2020-21,Melrose - Melrose Middle,1780305,0,0,2.3,96.5,0,0,1.2,70.5,29.5,100 +2.34375,2.34,a-pcom-i3,2020-21,Melrose - Roosevelt,1780035,1.8,2.1,1.8,92.5,0,0,1.8,97.5,2.5,100 +1.875,1.88,a-pcom-i3,2020-21,Melrose - Winthrop,1780050,0,4.9,0.6,94,0,0,0.6,85.6,14.4,100 +1.46875,1.47,a-pcom-i3,2020-21,Mendon-Upton - Henry P Clough,7100179,0,0,4.7,95.3,0,0,0,92.3,7.7,100 +2.84375,2.84,a-pcom-i3,2020-21,Mendon-Upton - Memorial School,7100001,0,0,9.1,90.9,0,0,0,97,3,100 +1,1,a-pcom-i3,2020-21,Mendon-Upton - Miscoe Hill School,7100015,0,0,1.1,97.8,0,0,1.1,81.4,18.6,100 +1,1,a-pcom-i3,2020-21,Mendon-Upton - Nipmuc Regional High,7100510,0,0,1.7,98.3,0,0,0,69.5,30.5,100 +1.75,1.75,a-pcom-i3,2020-21,Methuen - Comprehensive Grammar School,1810050,0,0,5.6,94.4,0,0,0,89.9,10.1,100 +1,1,a-pcom-i3,2020-21,Methuen - Donald P Timony Grammar,1810060,0,0,2.2,97.8,0,0,0,86,14,100 +1,1,a-pcom-i3,2020-21,Methuen - Marsh Grammar School,1810030,0,0,2.2,97.8,0,0,0,91.3,8.7,100 +1.21875,1.22,a-pcom-i3,2020-21,Methuen - Methuen High,1810505,1,0,2.9,96.1,0,0,0,62.6,37.4,100 +1,1,a-pcom-i3,2020-21,Methuen - Tenney Grammar School,1810055,0.7,0,1.4,97.2,0.7,0,0,88.1,11.9,100 +1,1,a-pcom-i3,2020-21,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,0,100,0,0,0,86.6,13.4,100 +1,1,a-pcom-i3,2020-21,Middleborough - John T. Nichols Middle,1820305,0,0,0,100,0,0,0,76.1,23.9,100 +1.34375,1.34,a-pcom-i3,2020-21,Middleborough - Mary K. Goode Elementary School,1820010,1.4,0,0,95.7,1.4,0,1.4,91.4,8.6,100 +1,1,a-pcom-i3,2020-21,Middleborough - Memorial Early Childhood Center,1820011,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Middleborough - Middleborough High,1820505,0,1,0,99,0,0,0,55.7,44.3,100 +1,1,a-pcom-i3,2020-21,Middleton - Fuller Meadow,1840003,0,0,0,100,0,0,0,97.9,2.1,100 +1,1,a-pcom-i3,2020-21,Middleton - Howe-Manning,1840005,0,0,0,100,0,0,0,91.2,8.8,100 +1,1,a-pcom-i3,2020-21,Milford - Brookside,1850065,0,0,2.9,97.1,0,0,0,94.7,5.3,100 +1.4375,1.44,a-pcom-i3,2020-21,Milford - Memorial,1850010,0,0,4.6,95.4,0,0,0,99,1,100 +1.84375,1.84,a-pcom-i3,2020-21,Milford - Milford High,1850505,0.7,0.7,4.5,94.1,0,0,0,64.2,35.8,100 +4.3125,4.31,a-pcom-i3,2020-21,Milford - Shining Star Early Childhood Center,1850075,2.6,0,11.2,86.2,0,0,0,100,0,100 +3.40625,3.41,a-pcom-i3,2020-21,Milford - Stacy Middle,1850305,2.5,0,6.7,89.1,0.8,0,0.8,72.3,27.7,100 +1.6875,1.69,a-pcom-i3,2020-21,Milford - Woodland,1850090,0,0.7,4.7,94.6,0,0,0,89.3,10.7,100 +1,1,a-pcom-i3,2020-21,Millbury - Elmwood Street,1860017,0,1.1,0,97.6,0,0,1.3,95.3,4.7,100 +1.46875,1.47,a-pcom-i3,2020-21,Millbury - Millbury Junior/Senior High,1860505,1.9,1.9,0.9,95.3,0,0,0,59,41,100 +1,1,a-pcom-i3,2020-21,Millbury - Raymond E. Shaw Elementary,1860025,0,1.6,0,98.4,0,0,0,84.3,15.7,100 +1,1,a-pcom-i3,2020-21,Millis - Clyde F Brown,1870005,0,0,2.4,97.6,0,0,0,94.3,5.7,100 +1,1,a-pcom-i3,2020-21,Millis - Millis High School,1870505,0,0,2.3,97.7,0,0,0,57.7,42.3,100 +2,2,a-pcom-i3,2020-21,Millis - Millis Middle,1870020,0,4.7,1.7,93.6,0,0,0,88.2,11.8,100 +3.3125,3.31,a-pcom-i3,2020-21,Milton - Charles S Pierce Middle,1890410,7,0.9,2.7,89.4,0,0,0,67.9,32.1,100 +2.5625,2.56,a-pcom-i3,2020-21,Milton - Collicot,1890005,2.8,1.7,3.8,91.8,0,0,0,90.8,9.2,100 +3.375,3.37,a-pcom-i3,2020-21,Milton - Cunningham School,1890007,7.5,0.3,3,89.2,0,0,0,96.9,3.1,100 +2.5,2.5,a-pcom-i3,2020-21,Milton - Glover,1890010,5.5,0.4,0.3,92,1.7,0,0,95.3,4.7,100 +2.8125,2.81,a-pcom-i3,2020-21,Milton - Milton High,1890505,4.7,1.9,1.6,91,0,0.8,0,67.8,32.2,100 +7.25,5,a-pcom-i3,2020-21,Milton - Tucker,1890020,17.9,4.7,0.6,76.8,0,0,0,90.7,9.3,100 +1.28125,1.28,a-pcom-i3,2020-21,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,0.9,1.8,95.9,0,0.5,0.9,53.9,46.1,100 +1,1,a-pcom-i3,2020-21,Mohawk Trail - Buckland-Shelburne Regional,7170005,0,0,1.7,98.3,0,0,0,96.3,3.7,100 +1,1,a-pcom-i3,2020-21,Mohawk Trail - Colrain Central,7170010,0,0,0,100,0,0,0,96.3,3.7,100 +1,1,a-pcom-i3,2020-21,Mohawk Trail - Mohawk Trail Regional School,7170505,0,0,0,96.9,1.5,0,1.5,72.4,27.6,100 +1,1,a-pcom-i3,2020-21,Mohawk Trail - Sanderson Academy,7170020,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Monomoy Regional School District - Chatham Elementary School,7120001,0,0,0,100,0,0,0,96.8,3.2,100 +1,1,a-pcom-i3,2020-21,Monomoy Regional School District - Harwich Elementary School,7120002,0,0.6,1.3,96.8,0,0,1.3,93.6,6.4,100 +1.875,1.88,a-pcom-i3,2020-21,Monomoy Regional School District - Monomoy Regional High School,7120515,2.2,2.6,1.1,94,0,0,0,64.6,35.4,100 +1,1,a-pcom-i3,2020-21,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,100,0,0,0,86.3,13.7,100 +1,1,a-pcom-i3,2020-21,Monson - Granite Valley School,1910030,0,0,0.8,97.5,0,1.6,0,87.6,12.4,100 +1,1,a-pcom-i3,2020-21,Monson - Monson High School,1910505,0,0,1.7,98.3,0,0,0,64.3,35.7,100 +1,1,a-pcom-i3,2020-21,Monson - Quarry Hill Community School,1910010,0,0,0,100,0,0,0,95.9,4.1,100 +1.9375,1.94,a-pcom-i3,2020-21,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0.6,0,4.5,93.8,1.1,0,0,56,44,100 +1,1,a-pcom-i3,2020-21,Mount Greylock - Lanesborough Elementary,7150005,0,0,0,100,0,0,0,76.7,23.3,100 +1.125,1.12,a-pcom-i3,2020-21,Mount Greylock - Mt Greylock Regional High,7150505,1.2,0,2.4,96.4,0,0,0,60.2,39.8,100 +1,1,a-pcom-i3,2020-21,Mount Greylock - Williamstown Elementary,7150010,0,2.9,0,97.1,0,0,0,91.2,8.8,100 +3,3,a-pcom-i3,2020-21,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,3.6,2.4,2.4,90.4,0,0,1.2,74.2,25.8,100 +1,1,a-pcom-i3,2020-21,Nahant - Johnson,1960010,0,0,0,100,0,0,0,94.9,5.1,100 +2,2,a-pcom-i3,2020-21,Nantucket - Cyrus Peirce,1970010,1.8,0,2.7,93.6,0,0,1.8,80,20,100 +2.5625,2.56,a-pcom-i3,2020-21,Nantucket - Nantucket Elementary,1970005,0,0,6.8,91.8,0,0,1.4,97.3,2.7,100 +3.0625,3.06,a-pcom-i3,2020-21,Nantucket - Nantucket High,1970505,1.4,2.8,4.2,90.2,1.4,0,0,69.1,30.9,100 +2.15625,2.16,a-pcom-i3,2020-21,Nantucket - Nantucket Intermediate School,1970020,3.8,0,3.1,93.1,0,0,0,88.5,11.5,100 +1,1,a-pcom-i3,2020-21,Narragansett - Narragansett Middle,7200305,0,0,0,100,0,0,0,82.2,17.8,100 +1,1,a-pcom-i3,2020-21,Narragansett - Narragansett Regional High,7200505,0,0,1.8,98.2,0,0,0,58.8,41.2,100 +1,1,a-pcom-i3,2020-21,Narragansett - Templeton Elementary School,7200020,0,0,0,100,0,0,0,98.5,1.5,100 +1,1,a-pcom-i3,2020-21,Nashoba - Center School,7250020,0,0,1.5,98.5,0,0,0,94.5,5.5,100 +1,1,a-pcom-i3,2020-21,Nashoba - Florence Sawyer School,7250025,0,0,0,100,0,0,0,85.5,14.5,100 +1,1,a-pcom-i3,2020-21,Nashoba - Hale,7250310,0,2.4,0,97.6,0,0,0,75.6,24.4,100 +1,1,a-pcom-i3,2020-21,Nashoba - Luther Burbank Middle School,7250305,2.5,0,0,97.5,0,0,0,82.4,17.6,100 +1,1,a-pcom-i3,2020-21,Nashoba - Mary Rowlandson Elementary,7250010,0,0,0,98.6,0,0,1.4,89.7,10.3,100 +1,1,a-pcom-i3,2020-21,Nashoba - Nashoba Regional,7250505,0,0.9,0,99.1,0,0,0,64.8,35.2,100 +1,1,a-pcom-i3,2020-21,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,1.1,1.1,1.1,96.8,0,0,0,52.9,47.1,100 +1,1,a-pcom-i3,2020-21,Natick - Bennett-Hemenway,1980005,0,2.7,0,97.3,0,0,0,90.2,9.8,100 +1.34375,1.34,a-pcom-i3,2020-21,Natick - Brown,1980010,0,2.6,1.6,95.7,0,0,0,91,9,100 +1.09375,1.09,a-pcom-i3,2020-21,Natick - J F Kennedy Middle School,1980305,0,1.5,1,96.5,1,0,0,79.2,20.8,100 +1,1,a-pcom-i3,2020-21,Natick - Johnson,1980031,0,0,0,100,0,0,0,90.6,9.4,100 +1,1,a-pcom-i3,2020-21,Natick - Lilja Elementary,1980035,2,0,0,98,0,0,0,96,4,100 +1.34375,1.34,a-pcom-i3,2020-21,Natick - Memorial,1980043,2.1,2.1,0,95.7,0,0,0,91.5,8.5,100 +1.78125,1.78,a-pcom-i3,2020-21,Natick - Natick High,1980505,0.7,2.7,0.9,94.3,0,0,1.5,70.5,29.5,100 +1,1,a-pcom-i3,2020-21,Natick - Wilson Middle,1980310,0.8,0.4,0.8,98,0,0,0,74.2,25.8,100 +1.0625,1.06,a-pcom-i3,2020-21,Nauset - Nauset Regional High,6600505,0.8,0,2.6,96.6,0,0,0,67.7,32.3,100 +1.3125,1.31,a-pcom-i3,2020-21,Nauset - Nauset Regional Middle,6600305,0,1.1,3.2,95.8,0,0,0,82.5,17.5,100 +1.5,1.5,a-pcom-i3,2020-21,Needham - Broadmeadow,1990005,1.3,1.6,1.9,95.2,0,0,0,96.5,3.5,100 +1.5,1.5,a-pcom-i3,2020-21,Needham - High Rock School,1990410,0.5,0.2,2.5,95.2,0,0,1.6,74.4,25.6,100 +2.5625,2.56,a-pcom-i3,2020-21,Needham - John Eliot,1990020,2,4.7,1.5,91.8,0,0,0,85.8,12.7,100 +3.625,3.62,a-pcom-i3,2020-21,Needham - Needham High,1990505,5,3.2,2.5,88.4,0,0,1,66.7,33.3,100 +3.1875,3.19,a-pcom-i3,2020-21,Needham - Newman Elementary,1990050,2.5,3.8,3.1,89.8,0,0,0.9,91.6,8.4,100 +2.375,2.37,a-pcom-i3,2020-21,Needham - Pollard Middle,1990405,2.1,0.7,2.4,92.4,0,0,2.4,75.6,24.4,100 +2.71875,2.72,a-pcom-i3,2020-21,Needham - Sunita L. Williams Elementary,1990035,2.6,1.7,4.3,91.3,0,0,0,85.7,14.3,100 +2.75,2.75,a-pcom-i3,2020-21,Needham - William Mitchell,1990040,0.8,3.2,3.4,91.2,0,0,1.5,82,18,100 +16.25,5,a-pcom-i3,2020-21,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,27.1,7.9,12.7,48,0.9,0,3.5,76.7,23.3,100 +1.875,1.88,a-pcom-i3,2020-21,New Bedford - Abraham Lincoln,2010095,3,0,1.5,94,0,1.5,0,92.2,7.8,100 +6.59375,5,a-pcom-i3,2020-21,New Bedford - Alfred J Gomes,2010063,10.6,0,9.2,78.9,0,0,1.3,92.1,7.9,100 +2.71875,2.72,a-pcom-i3,2020-21,New Bedford - Betsey B Winslow,2010140,3.5,0,5.2,91.3,0,0,0,96.5,3.5,100 +1.40625,1.41,a-pcom-i3,2020-21,New Bedford - Carlos Pacheco,2010105,4.5,0,0,95.5,0,0,0,97.3,2.7,100 +2.96875,2.97,a-pcom-i3,2020-21,New Bedford - Casimir Pulaski,2010123,5.7,0,3.8,90.5,0,0,0,88.4,11.6,100 +2.71875,2.72,a-pcom-i3,2020-21,New Bedford - Charles S Ashley,2010010,7.2,0,1.4,91.3,0,0,0,95.7,4.3,100 +3.5,3.5,a-pcom-i3,2020-21,New Bedford - Elizabeth Carter Brooks,2010015,8.4,0,2.8,88.8,0,0,0,87.4,12.6,100 +3.96875,3.97,a-pcom-i3,2020-21,New Bedford - Ellen R Hathaway,2010075,2.5,0,7.6,87.3,2.5,0,0,92.7,7.3,100 +4.90625,4.91,a-pcom-i3,2020-21,New Bedford - Elwyn G Campbell,2010020,3.9,0,7.8,84.3,2,0,2,95.7,4.3,100 +8.46875,5,a-pcom-i3,2020-21,New Bedford - Hayden/McFadden,2010078,7.9,0,18.4,72.9,0.9,0,0,92.1,7.9,100 +2.71875,2.72,a-pcom-i3,2020-21,New Bedford - Irwin M. Jacobs Elementary School,2010070,2.2,0,6.5,91.3,0,0,0,91.3,8.7,100 +2.0625,2.06,a-pcom-i3,2020-21,New Bedford - James B Congdon,2010040,0,0,6.6,93.4,0,0,0,93.4,6.6,100 +1,1,a-pcom-i3,2020-21,New Bedford - Jireh Swift,2010130,0,0,0,100,0,0,0,93.9,6.1,100 +6.125,5,a-pcom-i3,2020-21,New Bedford - John Avery Parker,2010115,8.4,5.6,5.6,80.4,0,0,0,94.4,5.6,100 +2.625,2.63,a-pcom-i3,2020-21,New Bedford - John B Devalles,2010050,2.8,0,5.6,91.6,0,0,0,85.9,14.1,100 +4.96875,4.97,a-pcom-i3,2020-21,New Bedford - Keith Middle School,2010405,9.1,0.8,4,84.1,0,0,2,69.3,30.7,100 +5.6875,5,a-pcom-i3,2020-21,New Bedford - New Bedford High,2010505,7.3,1.4,7.4,81.8,0.4,0,1.8,63.1,36.9,100 +3.59375,3.59,a-pcom-i3,2020-21,New Bedford - Normandin Middle School,2010410,4.2,0,4.9,88.5,0,0,2.5,69.2,30.8,100 +9.15625,5,a-pcom-i3,2020-21,New Bedford - Renaissance Community Innovation School,2010124,17.6,0,11.7,70.7,0,0,0,81.6,18.4,100 +5.375,5,a-pcom-i3,2020-21,New Bedford - Roosevelt Middle School,2010415,7,0.9,6,82.8,1.7,0,1.7,71.9,28.1,100 +6.53125,5,a-pcom-i3,2020-21,New Bedford - Sgt Wm H Carney Academy,2010045,8,0.8,9.6,79.1,0,0,2.4,87.2,12.8,100 +1,1,a-pcom-i3,2020-21,New Bedford - Thomas R Rodman,2010125,0,0,0,100,0,0,0,83.5,16.5,100 +3.6875,3.69,a-pcom-i3,2020-21,New Bedford - Trinity Day Academy,2010510,8.8,0,2.9,88.2,0,0,0,51.1,48.9,100 +5.90625,5,a-pcom-i3,2020-21,New Bedford - Whaling City Junior/Senior High School,2010515,13.5,0,2.7,81.1,0,0,2.7,57,43,100 +2.4375,2.44,a-pcom-i3,2020-21,New Bedford - William H Taylor,2010135,4.7,0,3.1,92.2,0,0,0,94.4,5.6,100 +9.375,5,a-pcom-i3,2020-21,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,25.8,1.4,1.4,70,0,0,1.4,60.9,39.1,100 +4.375,4.38,a-pcom-i3,2020-21,New Salem-Wendell - Swift River,7280015,3.5,0,3.5,86,0,0,7,92.8,7.2,100 +1,1,a-pcom-i3,2020-21,Newburyport - Edward G. Molin Elementary School,2040030,0,1.1,0,98.2,0,0.7,0,86.8,13.2,100 +1,1,a-pcom-i3,2020-21,Newburyport - Francis T Bresnahan Elementary,2040005,0,0,1.1,98.6,0,0.4,0,95,5,100 +1,1,a-pcom-i3,2020-21,Newburyport - Newburyport High,2040505,0,0,0,100,0,0,0,70.5,29.5,100 +2.125,2.12,a-pcom-i3,2020-21,Newburyport - Rupert A Nock Middle,2040305,2.8,0.7,2.8,93.2,0,0.5,0,72.3,27.7,100 +6.21875,5,a-pcom-i3,2020-21,Newton - A E Angier,2070005,10.3,4.8,3.5,80.1,0,0,1.2,85,15,100 +3.15625,3.16,a-pcom-i3,2020-21,Newton - Bigelow Middle,2070305,2.5,2.5,5.1,89.9,0,0,0,71.8,28.2,100 +5,5,a-pcom-i3,2020-21,Newton - Bowen,2070015,4.4,7.5,2.2,84,1.9,0,0,90.4,9.6,100 +7.125,5,a-pcom-i3,2020-21,Newton - C C Burr,2070020,3.2,11.6,6,77.2,0,0,2,96.8,3.2,100 +5.34375,5,a-pcom-i3,2020-21,Newton - Cabot,2070025,1.8,8.7,5,82.9,0,0,1.6,89.4,10.6,100 +3.25,3.25,a-pcom-i3,2020-21,Newton - Charles E Brown Middle,2070310,2.4,2.3,4.1,89.6,0,0,1.5,70.9,29.1,100 +3.15625,3.16,a-pcom-i3,2020-21,Newton - Countryside,2070040,8.8,0.2,0,89.9,0,0,1.1,86.7,13.3,100 +2.46875,2.47,a-pcom-i3,2020-21,Newton - F A Day Middle,2070315,3,3.3,0.2,92.1,0,0,1.5,70.2,29.8,100 +2.21875,2.22,a-pcom-i3,2020-21,Newton - Franklin,2070055,5.2,1.9,0,92.9,0,0,0,89,11,100 +5.65625,5,a-pcom-i3,2020-21,Newton - Horace Mann,2070075,10.3,6.1,1.6,81.9,0,0,0,88,12,100 +3.53125,3.53,a-pcom-i3,2020-21,Newton - John Ward,2070120,2.4,4.8,3.8,88.7,0,0,0.3,91,9,100 +3.34375,3.34,a-pcom-i3,2020-21,Newton - Lincoln-Eliot,2070070,1.5,0,9.2,89.3,0,0,0,93.6,6.4,100 +3.46875,3.47,a-pcom-i3,2020-21,Newton - Mason-Rice,2070080,1.9,7.2,2,88.9,0,0,0,90,10,100 +5.375,5,a-pcom-i3,2020-21,Newton - Memorial Spaulding,2070105,6.1,2,9.1,82.8,0,0,0,92.3,7.7,100 +2.75,2.75,a-pcom-i3,2020-21,Newton - Newton Early Childhood Program,2070108,1.4,3.2,2.2,91.2,0,0,1.9,100,0,100 +4.78125,4.78,a-pcom-i3,2020-21,Newton - Newton North High,2070505,5.3,6.5,2.2,84.7,0,0,1.3,64.9,35.1,100 +5.25,5,a-pcom-i3,2020-21,Newton - Newton South High,2070510,4.2,5.1,4.6,83.2,0,0,2.9,66.3,33.3,100 +4.25,4.25,a-pcom-i3,2020-21,Newton - Oak Hill Middle,2070320,4,3.2,5.3,86.4,0,0,1.1,74.9,25.1,100 +2.28125,2.28,a-pcom-i3,2020-21,Newton - Peirce,2070100,3.5,0.3,3.5,92.7,0,0,0,89.8,10.2,100 +3.40625,3.41,a-pcom-i3,2020-21,Newton - Underwood,2070115,5,3,2.9,89.1,0,0,0,90.7,9.3,100 +4.40625,4.41,a-pcom-i3,2020-21,Newton - Williams,2070125,1.3,8.3,0,85.9,0,0,4.5,84.1,15.9,100 +3.3125,3.31,a-pcom-i3,2020-21,Newton - Zervas,2070130,2.6,2.6,5.4,89.4,0,0,0,91.1,8.9,100 +1,1,a-pcom-i3,2020-21,Norfolk - Freeman-Kennedy School,2080005,0,0,0,100,0,0,0,89.5,10.5,100 +1,1,a-pcom-i3,2020-21,Norfolk - H Olive Day,2080015,0,0,0,100,0,0,0,95.4,4.6,100 +1,1,a-pcom-i3,2020-21,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,100,0,0,0,60.6,39.4,100 +1.0625,1.06,a-pcom-i3,2020-21,North Adams - Brayton,2090035,0,1.7,1.7,96.6,0,0,0,84.7,15.3,100 +1,1,a-pcom-i3,2020-21,North Adams - Colegrove Park Elementary,2090008,0,0,0,100,0,0,0,88.5,11.5,100 +1,1,a-pcom-i3,2020-21,North Adams - Drury High,2090505,0,0,1.3,97.4,0,0,1.3,60.5,39.5,100 +1,1,a-pcom-i3,2020-21,North Adams - Greylock,2090015,2.1,0,0,97.9,0,0,0,91.7,8.3,100 +1,1,a-pcom-i3,2020-21,North Andover - Anne Bradstreet Early Childhood Center,2110005,0,1.4,0,98.6,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,North Andover - Annie L Sargent School,2110018,0,1.8,0,98.2,0,0,0,93.1,6.9,100 +1,1,a-pcom-i3,2020-21,North Andover - Atkinson,2110001,0,2.2,0,97.8,0,0,0,96.8,3.2,100 +1,1,a-pcom-i3,2020-21,North Andover - Franklin,2110010,0,0,0,100,0,0,0,95,5,100 +1,1,a-pcom-i3,2020-21,North Andover - Kittredge,2110015,0,0,3.1,96.9,0,0,0,86.2,13.8,100 +1,1,a-pcom-i3,2020-21,North Andover - North Andover High,2110505,0.8,0.8,0,98.5,0,0,0,65.2,34.8,100 +1,1,a-pcom-i3,2020-21,North Andover - North Andover Middle,2110305,0,0,0,100,0,0,0,70.7,29.3,100 +1,1,a-pcom-i3,2020-21,North Andover - Thomson,2110020,0,2.3,0,97.7,0,0,0,93.7,6.3,100 +1,1,a-pcom-i3,2020-21,North Attleborough - Amvet Boulevard,2120007,2.3,0,0.5,97.3,0,0,0,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,North Attleborough - Community,2120030,0,3,0,97,0,0,0,95.5,4.5,100 +1,1,a-pcom-i3,2020-21,North Attleborough - Falls,2120010,0,0,0,100,0,0,0,97.3,2.7,100 +1,1,a-pcom-i3,2020-21,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,North Attleborough - North Attleboro High,2120505,0,0.8,0.8,97.5,0,0,0.8,74.4,25.6,100 +1.71875,1.72,a-pcom-i3,2020-21,North Attleborough - North Attleborough Early Learning Center,2120020,2.7,2.7,0,94.5,0,0,0,100,0,100 +1.34375,1.34,a-pcom-i3,2020-21,North Attleborough - North Attleborough Middle,2120305,0.9,1.7,0.9,95.7,0,0,0.9,70.7,29.3,100 +1,1,a-pcom-i3,2020-21,North Attleborough - Roosevelt Avenue,2120015,0,0,2.9,97.1,0,0,0,95.3,4.7,100 +1.34375,1.34,a-pcom-i3,2020-21,North Brookfield - North Brookfield Elementary,2150015,0,2.2,2.2,95.7,0,0,0,92.4,7.6,100 +1.40625,1.41,a-pcom-i3,2020-21,North Brookfield - North Brookfield High,2150505,0,0,4.5,95.5,0,0,0,64.8,35.2,100 +1,1,a-pcom-i3,2020-21,North Middlesex - Ashby Elementary,7350010,0,0,0,97.1,0,2.9,0,94.2,5.8,100 +1,1,a-pcom-i3,2020-21,North Middlesex - Hawthorne Brook,7350030,0,0,0,100,0,0,0,75.6,24.4,100 +1.3125,1.31,a-pcom-i3,2020-21,North Middlesex - Nissitissit Middle School,7350310,0,0,4.2,95.8,0,0,0,81,19,100 +1,1,a-pcom-i3,2020-21,North Middlesex - North Middlesex Regional,7350505,1.1,0,0,98.9,0,0,0,66.8,33.2,100 +1,1,a-pcom-i3,2020-21,North Middlesex - Spaulding Memorial,7350005,0,0,0,100,0,0,0,86.4,13.6,100 +1,1,a-pcom-i3,2020-21,North Middlesex - Squannacook Early Childhood Center,7350002,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,North Middlesex - Varnum Brook,7350035,0,1.1,0,97.6,0,0,1.3,96,4,100 +1,1,a-pcom-i3,2020-21,North Reading - E Ethel Little School,2170003,0,0,0,100,0,0,0,89.5,10.5,100 +1,1,a-pcom-i3,2020-21,North Reading - J Turner Hood,2170010,0,0,0,100,0,0,0,93.8,6.2,100 +1,1,a-pcom-i3,2020-21,North Reading - L D Batchelder,2170005,0,0,1.7,98.3,0,0,0,94.8,5.2,100 +1,1,a-pcom-i3,2020-21,North Reading - North Reading High,2170505,0,0,2.1,97.9,0,0,0,51.9,48.1,100 +1,1,a-pcom-i3,2020-21,North Reading - North Reading Middle,2170305,0,0,0,100,0,0,0,84,16,100 +2.40625,2.41,a-pcom-i3,2020-21,Northampton - Bridge Street,2100005,0,0,7.7,92.3,0,0,0,91.1,8.9,100 +6.84375,5,a-pcom-i3,2020-21,Northampton - Jackson Street,2100020,3.9,2,14,78.1,0,0,2,82.1,17.9,100 +2.09375,2.09,a-pcom-i3,2020-21,Northampton - John F Kennedy Middle School,2100410,1.9,0,2.9,93.3,0,0,1.9,76.9,23.1,100 +1.65625,1.66,a-pcom-i3,2020-21,Northampton - Leeds,2100025,0,0,5.3,94.7,0,0,0,90.9,9.1,100 +3.09375,3.09,a-pcom-i3,2020-21,Northampton - Northampton High,2100505,2.8,0,4.8,90.1,0,0,2.2,61.6,38.4,100 +1,1,a-pcom-i3,2020-21,Northampton - R. K. Finn Ryan Road,2100029,0,0,2.4,97.6,0,0,0,93.6,6.4,100 +1.40625,1.41,a-pcom-i3,2020-21,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0.9,0,2.7,95.5,0,0,0.9,52.8,47.2,100 +1,1,a-pcom-i3,2020-21,Northboro-Southboro - Algonquin Regional High,7300505,0.5,0.5,1.1,97.3,0,0.5,0,75,25,100 +1,1,a-pcom-i3,2020-21,Northborough - Fannie E Proctor,2130015,0,2,0,98,0,0,0,89.8,10.2,100 +1,1,a-pcom-i3,2020-21,Northborough - Lincoln Street,2130003,0,0,1.1,98.9,0,0,0,90,10,100 +1,1,a-pcom-i3,2020-21,Northborough - Marguerite E Peaslee,2130014,0,0,0,100,0,0,0,93.3,6.7,100 +1,1,a-pcom-i3,2020-21,Northborough - Marion E Zeh,2130020,0,0,1.3,98.7,0,0,0,93.3,6.7,100 +1.90625,1.91,a-pcom-i3,2020-21,Northborough - Robert E. Melican Middle School,2130305,0,1.2,2.5,93.9,0,1.2,1.2,87.8,12.2,100 +1,1,a-pcom-i3,2020-21,Northbridge - Northbridge Elementary,2140005,0,0,0,98.6,0,0,1.4,97.5,2.5,100 +1,1,a-pcom-i3,2020-21,Northbridge - Northbridge High,2140505,1.3,0,0,98,0,0.7,0,56.5,43.5,100 +1,1,a-pcom-i3,2020-21,Northbridge - Northbridge Middle,2140305,0,0,1.2,98.8,0,0,0,73.1,26.9,100 +1,1,a-pcom-i3,2020-21,Northbridge - W Edward Balmer,2140001,0,0,0,99.1,0,0.9,0,93.2,6.8,100 +2.4375,2.44,a-pcom-i3,2020-21,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,2.5,1.2,4.1,92.2,0,0,0,49.8,50.2,100 +1,1,a-pcom-i3,2020-21,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,100,0,0,0,58.1,41.9,100 +1,1,a-pcom-i3,2020-21,Norton - Henri A. Yelle,2180060,0,0,0,100,0,0,0,86.9,13.1,100 +1,1,a-pcom-i3,2020-21,Norton - J C Solmonese,2180015,0,0,0,100,0,0,0,95.6,4.4,100 +1,1,a-pcom-i3,2020-21,Norton - L G Nourse Elementary,2180010,0,0,0,100,0,0,0,98.9,1.1,100 +1.46875,1.47,a-pcom-i3,2020-21,Norton - Norton High,2180505,1.2,0,3.5,95.3,0,0,0,71.7,28.3,100 +1,1,a-pcom-i3,2020-21,Norton - Norton Middle,2180305,0,0,1.5,98.5,0,0,0,72.8,27.2,100 +1.0625,1.06,a-pcom-i3,2020-21,Norwell - Grace Farrar Cole,2190005,1.7,1.7,0,96.6,0,0,0,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,Norwell - Norwell High,2190505,0,1.3,0,98.7,0,0,0,62.3,37.7,100 +1,1,a-pcom-i3,2020-21,Norwell - Norwell Middle School,2190405,0,0,1.5,98.5,0,0,0,71.5,28.5,100 +1,1,a-pcom-i3,2020-21,Norwell - William G Vinal,2190020,0,0,1.8,98.2,0,0,0,90.5,9.5,100 +3.34375,3.34,a-pcom-i3,2020-21,Norwood - Balch,2200005,2.3,0,6.1,89.3,2.3,0,0,94.7,5.3,100 +1,1,a-pcom-i3,2020-21,Norwood - Charles J Prescott,2200025,0,2.6,0,97.4,0,0,0,90.3,9.7,100 +1,1,a-pcom-i3,2020-21,Norwood - Cornelius M Callahan,2200010,0,0,1.3,98.7,0,0,0,85.4,14.6,100 +1.25,1.25,a-pcom-i3,2020-21,Norwood - Dr. Philip O. Coakley Middle School,2200305,3,1,0,96,0,0,0,64.7,35.3,100 +1,1,a-pcom-i3,2020-21,Norwood - F A Cleveland,2200015,0,0,1.9,98.1,0,0,0,95.2,4.8,100 +1,1,a-pcom-i3,2020-21,Norwood - George F. Willett,2200075,0,0,1.5,98.5,0,0,0,97.8,2.2,100 +1,1,a-pcom-i3,2020-21,Norwood - John P Oldham,2200020,0,0,0,100,0,0,0,86.3,13.7,100 +1.34375,1.34,a-pcom-i3,2020-21,Norwood - Norwood High,2200505,1.7,0,2.6,95.7,0,0,0,62.1,37.9,100 +1.5625,1.56,a-pcom-i3,2020-21,Oak Bluffs - Oak Bluffs Elementary,2210005,0.5,0,0.9,95,0,0,3.6,91.8,8.2,100 +1.4375,1.44,a-pcom-i3,2020-21,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,1.1,0,95.4,0,0,3.4,55.2,44.8,100 +1.40625,1.41,a-pcom-i3,2020-21,Old Rochester - Old Rochester Regional High,7400505,2.2,1.1,1.1,95.5,0,0,0,63.7,36.3,100 +1.125,1.12,a-pcom-i3,2020-21,Old Rochester - Old Rochester Regional Jr High,7400405,1.8,1.8,0,96.4,0,0,0,74.2,25.8,100 +2.0625,2.06,a-pcom-i3,2020-21,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,0,6.6,93.4,0,0,0,80.1,19.9,100 +1,1,a-pcom-i3,2020-21,Orange - Dexter Park,2230010,0,0,0,100,0,0,0,83.6,16.4,100 +1,1,a-pcom-i3,2020-21,Orange - Fisher Hill,2230015,0,0,2.3,97.7,0,0,0,94.3,5.7,100 +1,1,a-pcom-i3,2020-21,Orleans - Orleans Elementary,2240005,0,0,0,100,0,0,0,89,11,100 +1,1,a-pcom-i3,2020-21,Oxford - Alfred M Chaffee,2260010,0.2,0,0,99.8,0,0,0,96.5,3.5,100 +1,1,a-pcom-i3,2020-21,Oxford - Clara Barton,2260005,0,0,0,100,0,0,0,95.6,4.4,100 +1,1,a-pcom-i3,2020-21,Oxford - Oxford High,2260505,0.1,1.4,0,97.1,0,0,1.4,65,35,100 +1,1,a-pcom-i3,2020-21,Oxford - Oxford Middle,2260405,0,0,0,100,0,0,0,88.7,11.3,100 +1,1,a-pcom-i3,2020-21,Palmer - Old Mill Pond,2270008,0,0,1.7,98.3,0,0,0,92.2,7.8,100 +1.4375,1.44,a-pcom-i3,2020-21,Palmer - Palmer High,2270505,0,1,1.5,95.4,0,0,2.1,75.9,24.1,100 +1,1,a-pcom-i3,2020-21,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,100,0,0,0,51.2,48.8,100 +16.125,5,a-pcom-i3,2020-21,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,22.9,0,28.7,48.4,0,0,0,72,28,100 +1,1,a-pcom-i3,2020-21,Peabody - Captain Samuel Brown,2290005,0,0,0,100,0,0,0,95.5,4.5,100 +1.3125,1.31,a-pcom-i3,2020-21,Peabody - Center,2290015,0,2.8,1.4,95.8,0,0,0,91.8,8.2,100 +1,1,a-pcom-i3,2020-21,Peabody - J Henry Higgins Middle,2290305,0,0,0.8,99.2,0,0,0,74.1,25.9,100 +1,1,a-pcom-i3,2020-21,Peabody - John E Burke,2290007,0,0,2.7,97.3,0,0,0,97.3,2.7,100 +1,1,a-pcom-i3,2020-21,Peabody - John E. McCarthy,2290016,0,0,0,100,0,0,0,96,4,100 +1,1,a-pcom-i3,2020-21,Peabody - Peabody Veterans Memorial High,2290510,0,0,2.2,97.2,0,0,0.6,64,36,100 +1,1,a-pcom-i3,2020-21,Peabody - South Memorial,2290035,0,0,0,100,0,0,0,91.3,8.7,100 +1,1,a-pcom-i3,2020-21,Peabody - Thomas Carroll,2290010,0,0,0,100,0,0,0,95,5,100 +1,1,a-pcom-i3,2020-21,Peabody - West Memorial,2290045,0,0,0,100,0,0,0,91.5,8.5,100 +1.5625,1.56,a-pcom-i3,2020-21,Peabody - William A Welch Sr,2290027,2.5,0,2.5,95,0,0,0,89.4,10.6,100 +3.28125,3.28,a-pcom-i3,2020-21,Pelham - Pelham Elementary,2300005,0,0.8,9.7,89.5,0,0,0,91.4,8.6,100 +1,1,a-pcom-i3,2020-21,Pembroke - Bryantville Elementary,2310003,0,2.2,0,97.8,0,0,0,87.8,12.2,100 +1,1,a-pcom-i3,2020-21,Pembroke - Hobomock Elementary,2310010,0,0,0,100,0,0,0,89.9,10.1,100 +1,1,a-pcom-i3,2020-21,Pembroke - North Pembroke Elementary,2310015,0,0,0,100,0,0,0,96.1,3.9,100 +1,1,a-pcom-i3,2020-21,Pembroke - Pembroke Community Middle School,2310305,0,0,0,100,0,0,0,86.3,13.7,100 +1,1,a-pcom-i3,2020-21,Pembroke - Pembroke High School,2310505,0,0,0,100,0,0,0,68.7,31.3,100 +1,1,a-pcom-i3,2020-21,Pentucket - Dr Frederick N Sweetsir,7450020,0,0,0,97.5,0,0,2.5,96.3,3.7,100 +1,1,a-pcom-i3,2020-21,Pentucket - Dr John C Page School,7450015,0,0,0,99.5,0,0,0.5,90.2,9.8,100 +1,1,a-pcom-i3,2020-21,Pentucket - Elmer S Bagnall,7450005,0,0,0,97.9,0,0,2.1,95.8,4.2,100 +1,1,a-pcom-i3,2020-21,Pentucket - Helen R Donaghue School,7450010,0,0,2.4,97,0,0,0.6,90.6,9.4,100 +1,1,a-pcom-i3,2020-21,Pentucket - Pentucket Regional Middle,7450405,0,0,0.2,99.4,0,0,0.4,73.8,26.2,100 +1,1,a-pcom-i3,2020-21,Pentucket - Pentucket Regional Sr High,7450505,0,0,1.2,98.4,0,0,0.3,58.5,41.5,100 +1,1,a-pcom-i3,2020-21,Petersham - Petersham Center,2340005,0,0,0,100,0,0,0,87.7,12.3,100 +9.75,5,a-pcom-i3,2020-21,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,10.6,0,20.6,68.8,0,0,0,84.1,15.9,100 +21.96875,5,a-pcom-i3,2020-21,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,46.1,9.9,14.3,29.7,0,0,0,80.2,19.8,100 +21.15625,5,a-pcom-i3,2020-21,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,19.2,14.4,34.1,32.3,0,0,0,82,18,100 +3.0625,3.06,a-pcom-i3,2020-21,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,4.2,2.1,3.4,90.2,0,0,0,65.6,34.4,100 +11.125,5,a-pcom-i3,2020-21,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,8.4,16.8,10.5,64.4,0,0,0,57.3,42.7,100 +1,1,a-pcom-i3,2020-21,Pioneer Valley - Bernardston Elementary,7500006,0,0,0,100,0,0,0,94.7,5.3,100 +1,1,a-pcom-i3,2020-21,Pioneer Valley - Northfield Elementary,7500008,0,0,0,100,0,0,0,96,4,100 +1,1,a-pcom-i3,2020-21,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,100,0,0,0,68.9,31.1,100 +14.90625,5,a-pcom-i3,2020-21,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,2.2,42.3,1.1,52.3,0,0,2.2,82.1,17.9,100 +4.78125,4.78,a-pcom-i3,2020-21,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,6.1,1.5,7.7,84.7,0,0,0,63.2,36.8,100 +1,1,a-pcom-i3,2020-21,Pittsfield - Allendale,2360010,0,2.7,0,97.3,0,0,0,100,0,100 +5.3125,5,a-pcom-i3,2020-21,Pittsfield - Crosby,2360065,7.5,1.5,5.7,83,0,0,2.3,88.6,11.4,100 +3.90625,3.91,a-pcom-i3,2020-21,Pittsfield - Crosby Educational Academy,2360030,5,0,5,87.5,0,0,2.5,88.7,11.3,100 +6.375,5,a-pcom-i3,2020-21,Pittsfield - Eagle Education Academy,2360525,18.4,0,2,79.6,0,0,0,55.1,44.9,100 +1.96875,1.97,a-pcom-i3,2020-21,Pittsfield - Egremont,2360035,1.6,1.6,3.2,93.7,0,0,0,97.9,2.1,100 +2.5625,2.56,a-pcom-i3,2020-21,Pittsfield - John T Reid Middle,2360305,1.4,2.7,2.7,91.8,0,0,1.4,63.5,36.5,100 +3.15625,3.16,a-pcom-i3,2020-21,Pittsfield - Morningside Community School,2360055,6.8,1.7,0,89.9,0,0,1.7,96.1,3.9,100 +3.46875,3.47,a-pcom-i3,2020-21,Pittsfield - Pittsfield High,2360505,5,0.8,3.6,88.9,0.8,0,0.8,70.4,29.6,100 +1,1,a-pcom-i3,2020-21,Pittsfield - Robert T. Capeless Elementary School,2360045,2.7,0,0,97.3,0,0,0,100,0,100 +1.625,1.63,a-pcom-i3,2020-21,Pittsfield - Silvio O Conte Community,2360105,1.7,0,1.7,94.8,0,0,1.7,93.1,6.9,100 +1,1,a-pcom-i3,2020-21,Pittsfield - Stearns,2360090,0,0,0,100,0,0,0,93,7,100 +1.75,1.75,a-pcom-i3,2020-21,Pittsfield - Taconic High,2360510,0,0,3,94.4,0,0,2.6,56.2,43.8,100 +1,1,a-pcom-i3,2020-21,Pittsfield - Theodore Herberg Middle,2360310,0,0,3,97,0,0,0,75.4,24.6,100 +1,1,a-pcom-i3,2020-21,Pittsfield - Williams,2360100,0,0,0,97.6,0,0,2.4,92.7,7.3,100 +1,1,a-pcom-i3,2020-21,Plainville - Anna Ware Jackson,2380010,0,0,0,100,0,0,0,97.7,2.3,100 +2.5,2.5,a-pcom-i3,2020-21,Plainville - Beatrice H Wood Elementary,2380005,0,4,4,92,0,0,0,97,3,100 +1,1,a-pcom-i3,2020-21,Plymouth - Cold Spring,2390005,0,0,0,100,0,0,0,100,0,100 +1.625,1.63,a-pcom-i3,2020-21,Plymouth - Federal Furnace School,2390011,0.9,0,2.6,94.8,1.7,0,0,85.8,14.2,100 +1,1,a-pcom-i3,2020-21,Plymouth - Hedge,2390010,0,0,0,100,0,0,0,95,5,100 +1,1,a-pcom-i3,2020-21,Plymouth - Indian Brook,2390012,0,0,1.4,97.8,0,0.8,0,95.2,4.8,100 +1,1,a-pcom-i3,2020-21,Plymouth - Manomet Elementary,2390015,0,0,0,100,0,0,0,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,Plymouth - Nathaniel Morton Elementary,2390030,0,0,0,100,0,0,0,92.9,7.1,100 +1.78125,1.78,a-pcom-i3,2020-21,Plymouth - Plymouth Commun Intermediate,2390405,2.4,1.6,1.6,94.3,0,0,0,80.8,19.2,100 +1,1,a-pcom-i3,2020-21,Plymouth - Plymouth Early Childhood Center,2390003,0,0,1.6,98.4,0,0,0,96.9,3.1,100 +1,1,a-pcom-i3,2020-21,Plymouth - Plymouth North High,2390505,0,0,0.6,99.4,0,0,0,65.1,34.9,100 +1,1,a-pcom-i3,2020-21,Plymouth - Plymouth South High,2390515,0.7,1.3,0,98,0,0,0,64.2,35.8,100 +1,1,a-pcom-i3,2020-21,Plymouth - Plymouth South Middle,2390305,0,1.2,1.2,97.7,0,0,0,78.9,21.1,100 +1,1,a-pcom-i3,2020-21,Plymouth - South Elementary,2390046,1.3,0,1.3,97.5,0,0,0,95.7,4.3,100 +1,1,a-pcom-i3,2020-21,Plymouth - West Elementary,2390047,0,0,0,98.1,0,1.9,0,93.1,6.9,100 +1,1,a-pcom-i3,2020-21,Plympton - Dennett Elementary,2400010,0,0,0,100,0,0,0,96.9,3.1,100 +9.28125,5,a-pcom-i3,2020-21,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,13.2,5.1,8.8,70.3,0,0,2.6,81,19,100 +2.09375,2.09,a-pcom-i3,2020-21,Provincetown - Provincetown Schools,2420020,0,0,3.3,93.3,0,0,3.3,75.1,24.9,100 +1,1,a-pcom-i3,2020-21,Quabbin - Hardwick Elementary,7530005,0,0,0,100,0,0,0,88.3,11.7,100 +1.90625,1.91,a-pcom-i3,2020-21,Quabbin - Hubbardston Center,7530010,0,2.9,3.2,93.9,0,0,0,92.7,7.3,100 +2.15625,2.16,a-pcom-i3,2020-21,Quabbin - New Braintree Grade,7530020,6.9,0,0,93.1,0,0,0,89.8,10.2,100 +1,1,a-pcom-i3,2020-21,Quabbin - Oakham Center,7530025,0,0,0,100,0,0,0,90.8,9.2,100 +1,1,a-pcom-i3,2020-21,Quabbin - Quabbin Regional High School,7530505,0,1.3,0,97.6,0,0,1.1,71.9,28.1,100 +1,1,a-pcom-i3,2020-21,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,99.6,0,0,0.4,74.8,25.2,100 +1.09375,1.09,a-pcom-i3,2020-21,Quabbin - Ruggles Lane,7530030,1.7,0,1.7,96.5,0,0,0,94.8,5.2,100 +1,1,a-pcom-i3,2020-21,Quaboag Regional - Quaboag Regional High,7780505,0,0.6,0,99.4,0,0,0,61.6,38.4,100 +1,1,a-pcom-i3,2020-21,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,100,0,0,0,58.9,41.1,100 +1,1,a-pcom-i3,2020-21,Quaboag Regional - Warren Elementary,7780005,0,0.6,0,99.4,0,0,0,87.6,12.4,100 +1,1,a-pcom-i3,2020-21,Quaboag Regional - West Brookfield Elementary,7780010,0,0.9,0,99.1,0,0,0,92.9,7.1,100 +2.65625,2.66,a-pcom-i3,2020-21,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,0,5.9,0,91.5,0,0,2.6,100,0,100 +1,1,a-pcom-i3,2020-21,Quincy - Atherton Hough,2430040,0,2.5,0,97.5,0,0,0,92.3,7.7,100 +3.34375,3.34,a-pcom-i3,2020-21,Quincy - Atlantic Middle,2430305,0,8.6,0,89.3,0,0,2,76.4,23.6,100 +1,1,a-pcom-i3,2020-21,Quincy - Beechwood Knoll Elementary,2430020,0,2,0,98,0,0,0,95.9,4.1,100 +1.03125,1.03,a-pcom-i3,2020-21,Quincy - Broad Meadows Middle,2430310,0,1,0,96.7,0,0,2.4,77.5,22.5,100 +1,1,a-pcom-i3,2020-21,Quincy - Central Middle,2430315,0,2.9,0,97.1,0,0,0,75.7,24.3,100 +1,1,a-pcom-i3,2020-21,Quincy - Charles A Bernazzani Elementary,2430025,0,2.1,0,97.9,0,0,0,85.9,14.1,100 +1,1,a-pcom-i3,2020-21,Quincy - Clifford H Marshall Elementary,2430055,0,2,0,98,0,0,0,98,2,100 +4.59375,4.59,a-pcom-i3,2020-21,Quincy - Francis W Parker,2430075,0,14.7,0,85.3,0,0,0,96.7,3.3,100 +2.84375,2.84,a-pcom-i3,2020-21,Quincy - Lincoln-Hancock Community School,2430035,0,6.9,0,90.9,0,0,2.2,95.4,4.6,100 +1.78125,1.78,a-pcom-i3,2020-21,Quincy - Merrymount,2430060,0,5.7,0,94.3,0,0,0,93.9,6.1,100 +5.28125,5,a-pcom-i3,2020-21,Quincy - Montclair,2430065,0,16.9,0,83.1,0,0,0,95.5,4.5,100 +3.28125,3.28,a-pcom-i3,2020-21,Quincy - North Quincy High,2430510,0.8,4.3,0.8,89.5,0,0,4.6,62,38,100 +1.09375,1.09,a-pcom-i3,2020-21,Quincy - Point Webster Middle,2430325,0,3.5,0,96.5,0,0,0,84.9,15.1,100 +2.5,2.5,a-pcom-i3,2020-21,Quincy - Quincy High,2430505,1.2,4.4,1.2,92,0,0,1.2,63.9,36.1,100 +3.28125,3.28,a-pcom-i3,2020-21,Quincy - Snug Harbor Community School,2430090,0.7,7,0,89.5,0,0,2.8,89.5,10.5,100 +1,1,a-pcom-i3,2020-21,Quincy - South West Middle School,2430320,0,0,0,100,0,0,0,83.5,16.5,100 +1,1,a-pcom-i3,2020-21,Quincy - Squantum,2430095,0,2.2,0,97.8,0,0,0,92.7,7.3,100 +3.78125,3.78,a-pcom-i3,2020-21,Quincy - Wollaston School,2430110,1.6,10.5,0,87.9,0,0,0,93.7,6.3,100 +1.0625,1.06,a-pcom-i3,2020-21,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,1.1,2.3,96.6,0,0,0,70.7,29.3,100 +7.03125,5,a-pcom-i3,2020-21,Randolph - Elizabeth G Lyons Elementary,2440020,18,1.4,0,77.5,2.9,0,0.2,78.1,21.9,100 +9.09375,5,a-pcom-i3,2020-21,Randolph - J F Kennedy Elementary,2440018,18.6,3.5,5.9,70.9,0,0,1.1,85.9,14.1,100 +5.03125,5,a-pcom-i3,2020-21,Randolph - Margaret L Donovan,2440015,4.6,9.2,2.3,83.9,0,0,0,97.7,2.3,100 +6.28125,5,a-pcom-i3,2020-21,Randolph - Martin E Young Elementary,2440040,6.3,1.3,5,79.9,0,0,7.5,93.7,6.3,100 +11.46875,5,a-pcom-i3,2020-21,Randolph - Randolph Community Middle,2440410,31.4,2.7,2.6,63.3,0,0,0,69.9,30.1,100 +8.5,5,a-pcom-i3,2020-21,Randolph - Randolph High,2440505,11.8,7.6,7.8,72.8,0,0,0,69.7,30.3,100 +1,1,a-pcom-i3,2020-21,Reading - Alice M Barrows,2460002,0,0,0.2,99.8,0,0,0,95.1,4.9,100 +1,1,a-pcom-i3,2020-21,Reading - Arthur W Coolidge Middle,2460305,0,0,3.2,96.8,0,0,0,80.1,19.9,100 +1,1,a-pcom-i3,2020-21,Reading - Birch Meadow,2460005,0,0,0.5,99.5,0,0,0,95.2,4.8,100 +1,1,a-pcom-i3,2020-21,Reading - J Warren Killam,2460017,0,0,0,100,0,0,0,96.4,3.6,100 +1.53125,1.53,a-pcom-i3,2020-21,Reading - Joshua Eaton,2460010,0,2.3,0.3,95.1,0,0,2.3,94.2,5.8,100 +1,1,a-pcom-i3,2020-21,Reading - RISE PreSchool,2460001,0,3.2,0,96.8,0,0,0,99.2,0.8,100 +1,1,a-pcom-i3,2020-21,Reading - Reading Memorial High,2460505,0.5,1.6,0.1,97.9,0,0,0,68.6,31.4,100 +1,1,a-pcom-i3,2020-21,Reading - Walter S Parker Middle,2460310,0,1.3,1.5,97.2,0,0,0,78.8,21.2,100 +1,1,a-pcom-i3,2020-21,Reading - Wood End Elementary School,2460020,0,0,0,100,0,0,0,98,2,100 +1.1875,1.19,a-pcom-i3,2020-21,Revere - A. C. Whelan Elementary School,2480003,0.6,1.2,2,96.2,0,0,0,89,11,100 +1,1,a-pcom-i3,2020-21,Revere - Abraham Lincoln,2480025,0,0,1.8,98.2,0,0,0,91.6,8.4,100 +2.5625,2.56,a-pcom-i3,2020-21,Revere - Beachmont Veterans Memorial School,2480013,1.9,1.3,5,91.8,0,0,0,87.6,12.4,100 +2.71875,2.72,a-pcom-i3,2020-21,Revere - Garfield Elementary School,2480056,0.6,4.2,2.9,91.3,0,0,1.1,90.9,9.1,100 +4.1875,4.19,a-pcom-i3,2020-21,Revere - Garfield Middle School,2480057,0.9,5.3,7.2,86.6,0,0,0,58.6,41.4,100 +1,1,a-pcom-i3,2020-21,Revere - Paul Revere,2480050,0,0,0.2,99.8,0,0,0,92.8,7.2,100 +4.28125,4.28,a-pcom-i3,2020-21,Revere - Revere High,2480505,3.3,2.5,5.8,86.3,0.5,0,1.6,63.9,36.1,100 +2.03125,2.03,a-pcom-i3,2020-21,Revere - Rumney Marsh Academy,2480014,2.8,0,3.7,93.5,0,0,0,77.3,22.7,100 +3.3125,3.31,a-pcom-i3,2020-21,Revere - Seacoast School,2480520,10.1,0,0.5,89.4,0,0,0,64.2,35.8,100 +2,2,a-pcom-i3,2020-21,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,0,2.5,93.6,0,1.6,2.3,94.3,5.7,100 +1.5,1.5,a-pcom-i3,2020-21,Revere - Susan B. Anthony Middle School,2480305,2.3,0,2.5,95.2,0,0,0,69.5,30.5,100 +1.84375,1.84,a-pcom-i3,2020-21,Richmond - Richmond Consolidated,2490005,5.9,0,0,94.1,0,0,0,90.8,9.2,100 +2.71875,2.72,a-pcom-i3,2020-21,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,2.5,2.5,3.7,91.3,0,0,0,70.5,29.5,100 +1.25,1.25,a-pcom-i3,2020-21,River Valley Charter (District) - River Valley Charter School,4820050,0,0,0,96,0,0,4,78.4,21.6,100 +1.0625,1.06,a-pcom-i3,2020-21,Rochester - Rochester Memorial,2500005,3.4,0,0,96.6,0,0,0,89.7,10.3,100 +1,1,a-pcom-i3,2020-21,Rockland - Jefferson Elementary School,2510060,0,0,0,100,0,0,0,98.3,1.7,100 +1,1,a-pcom-i3,2020-21,Rockland - John W Rogers Middle,2510305,0,0,0,100,0,0,0,89,11,100 +1,1,a-pcom-i3,2020-21,Rockland - Memorial Park,2510020,2.1,0,0,97.9,0,0,0,96.5,3.5,100 +1.40625,1.41,a-pcom-i3,2020-21,Rockland - R Stewart Esten,2510025,0,0,2.2,95.5,0,0,2.2,94.1,5.9,100 +1.21875,1.22,a-pcom-i3,2020-21,Rockland - Rockland Senior High,2510505,0,0,3.9,96.1,0,0,0,65.8,34.2,100 +1,1,a-pcom-i3,2020-21,Rockport - Rockport Elementary,2520005,0,0,0,100,0,0,0,93.2,6.8,100 +1,1,a-pcom-i3,2020-21,Rockport - Rockport High,2520510,0,0,0,100,0,0,0,72,28,100 +1,1,a-pcom-i3,2020-21,Rockport - Rockport Middle,2520305,0,0,0,100,0,0,0,77.3,22.7,100 +2.1875,2.19,a-pcom-i3,2020-21,Rowe - Rowe Elementary,2530005,0,0,7,93,0,0,0,79.8,20.2,100 +31.25,5,a-pcom-i3,2020-21,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,0,0,0,0,0,0,0,0,0,100 +6.5,5,a-pcom-i3,2020-21,Sabis International Charter (District) - Sabis International Charter School,4410505,9.1,1.3,9.7,79.2,0,0,0.6,70.8,29.2,100 +1,1,a-pcom-i3,2020-21,Salem - Bates,2580003,0,0,2.5,97.5,0,0,0,84.8,15.2,100 +3.8125,3.81,a-pcom-i3,2020-21,Salem - Bentley Academy Innovation School,2580010,2,2,8.1,87.8,0,0,0,91.9,8.1,100 +1,1,a-pcom-i3,2020-21,Salem - Carlton,2580015,0,0,2.2,97.8,0,0,0,94.3,5.7,100 +4.34375,4.34,a-pcom-i3,2020-21,Salem - Collins Middle,2580305,3,2.1,8.9,86.1,0,0,0,70.3,29.7,100 +3.09375,3.09,a-pcom-i3,2020-21,Salem - Horace Mann Laboratory,2580030,0,2.3,7.6,90.1,0,0,0,95.3,4.7,100 +6.59375,5,a-pcom-i3,2020-21,Salem - New Liberty Innovation School,2580510,0,0,21.1,78.9,0,0,0,72.3,27.7,100 +1.75,1.75,a-pcom-i3,2020-21,Salem - Salem Early Childhood,2580001,0,0,5.6,94.4,0,0,0,99.7,0.3,100 +4.53125,4.53,a-pcom-i3,2020-21,Salem - Salem High,2580505,2.5,1.3,10.1,85.5,0,0,0.6,70.4,29.6,100 +4.4375,4.44,a-pcom-i3,2020-21,Salem - Salem Prep High School,2580515,0,0,14.2,85.8,0,0,0,65.4,34.6,100 +2.03125,2.03,a-pcom-i3,2020-21,Salem - Saltonstall School,2580050,0.4,0,6.2,93.5,0,0,0,90.4,9.6,100 +1,1,a-pcom-i3,2020-21,Salem - Witchcraft Heights,2580070,0,0,3,97,0,0,0,93.7,6.3,100 +6.4375,5,a-pcom-i3,2020-21,Salem Academy Charter (District) - Salem Academy Charter School,4850485,4.4,1.5,14.7,79.4,0,0,0,69.4,30.6,100 +1,1,a-pcom-i3,2020-21,Sandwich - Forestdale School,2610002,0,1.1,1.1,97.9,0,0,0,94.7,5.3,100 +1,1,a-pcom-i3,2020-21,Sandwich - Oak Ridge,2610025,0,0,0.9,99.1,0,0,0,92,8,100 +1,1,a-pcom-i3,2020-21,Sandwich - Sandwich High,2610505,0,0.8,1.2,98,0,0,0,70.6,29.4,100 +1.21875,1.22,a-pcom-i3,2020-21,Sandwich - Sandwich STEM Academy,2610305,0,0.5,1.7,96.1,0,0,1.7,81.5,18.5,100 +1,1,a-pcom-i3,2020-21,Saugus - Douglas Waybright,2620067,0,0,0,100,0,0,0,91.3,8.7,100 +1,1,a-pcom-i3,2020-21,Saugus - Lynnhurst,2620040,0,0,0,100,0,0,0,92.7,7.3,100 +1,1,a-pcom-i3,2020-21,Saugus - Oaklandvale,2620050,0,0,0,100,0,0,0,98.4,1.6,100 +1.375,1.38,a-pcom-i3,2020-21,Saugus - Saugus High,2620505,1.4,0,3.1,95.6,0,0,0,59.9,40.1,100 +1,1,a-pcom-i3,2020-21,Saugus - Saugus Middle School,2620305,0,0,1.4,98.6,0,0,0,69.5,30.5,100 +1.65625,1.66,a-pcom-i3,2020-21,Saugus - Veterans Memorial,2620065,0,0,3.1,94.7,0,1.1,1.1,98.9,1.1,100 +1,1,a-pcom-i3,2020-21,Savoy - Emma L Miller Elementary School,2630010,0,0,0,100,0,0,0,85.3,14.7,100 +1,1,a-pcom-i3,2020-21,Scituate - Cushing Elementary,2640007,0,0,0,100,0,0,0,87.7,12.3,100 +1,1,a-pcom-i3,2020-21,Scituate - Gates Middle School,2640305,0,1.3,0,98.7,0,0,0,78.6,21.4,100 +1,1,a-pcom-i3,2020-21,Scituate - Hatherly Elementary,2640010,0,0,0,100,0,0,0,93.9,6.1,100 +1,1,a-pcom-i3,2020-21,Scituate - Jenkins Elementary School,2640015,0,0,0,100,0,0,0,94.6,5.4,100 +1.375,1.38,a-pcom-i3,2020-21,Scituate - Scituate High School,2640505,1.9,1,0,95.6,0,0.6,1,67.4,32.6,100 +1,1,a-pcom-i3,2020-21,Scituate - Wampatuck Elementary,2640020,0,0,0,100,0,0,0,94.8,5.2,100 +1,1,a-pcom-i3,2020-21,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,1.4,1.4,0,97.1,0,0,0,78.7,21.3,100 +1,1,a-pcom-i3,2020-21,Seekonk - George R Martin,2650007,1.3,0,0,98.7,0,0,0,90.7,9.3,100 +1.15625,1.16,a-pcom-i3,2020-21,Seekonk - Mildred Aitken School,2650015,0,0,0,96.3,0,0,3.7,94.5,5.5,100 +1,1,a-pcom-i3,2020-21,Seekonk - Seekonk High,2650505,1.3,0,0,97.4,0,0,1.3,70,30,100 +1.6875,1.69,a-pcom-i3,2020-21,Sharon - Cottage Street,2660005,0,3.6,1.8,94.6,0,0,0,93.2,6.8,100 +1.0625,1.06,a-pcom-i3,2020-21,Sharon - East Elementary,2660010,0,1.7,0,96.6,0,0,1.7,91.7,8.3,100 +2.59375,2.59,a-pcom-i3,2020-21,Sharon - Heights Elementary,2660015,5.5,2.8,0,91.7,0,0,0,87.8,12.2,100 +1,1,a-pcom-i3,2020-21,Sharon - Sharon Early Childhood Center,2660001,0,0,0,100,0,0,0,97.5,2.5,100 +1.84375,1.84,a-pcom-i3,2020-21,Sharon - Sharon High,2660505,0.8,4.4,0.8,94.1,0,0,0,73.8,26.2,100 +2.375,2.37,a-pcom-i3,2020-21,Sharon - Sharon Middle,2660305,0,5.6,0,92.4,1,1,0,77.3,22.7,100 +1,1,a-pcom-i3,2020-21,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,1.1,1.6,97.3,0,0,0,59.7,40.3,100 +1.46875,1.47,a-pcom-i3,2020-21,Sherborn - Pine Hill,2690010,1.7,0,1.5,95.3,0,0,1.5,96.3,3.7,100 +2.3125,2.31,a-pcom-i3,2020-21,Shrewsbury - Beal School,2710005,0,7.4,0,92.6,0,0,0,97.3,2.7,100 +2.375,2.37,a-pcom-i3,2020-21,Shrewsbury - Calvin Coolidge,2710015,1.5,4.6,0,92.4,0,0,1.5,98.5,1.5,100 +3.09375,3.09,a-pcom-i3,2020-21,Shrewsbury - Floral Street School,2710020,2.8,5.6,0,90.1,1.4,0,0,97.6,2.4,100 +2,2,a-pcom-i3,2020-21,Shrewsbury - Oak Middle School,2710030,1.1,3,2.3,93.6,0,0,0,77.8,22.2,100 +3.71875,3.72,a-pcom-i3,2020-21,Shrewsbury - Parker Road Preschool,2710040,2.4,9.5,0,88.1,0,0,0,100,0,100 +3.03125,3.03,a-pcom-i3,2020-21,Shrewsbury - Sherwood Middle School,2710305,1.1,3.2,3.2,90.3,0,0,2.2,86.7,13.3,100 +2,2,a-pcom-i3,2020-21,Shrewsbury - Shrewsbury Sr High,2710505,0.9,2.7,1.9,93.6,0,0,0.9,70.3,29.2,100 +1,1,a-pcom-i3,2020-21,Shrewsbury - Spring Street,2710035,0,0,0,100,0,0,0,95.1,4.9,100 +1,1,a-pcom-i3,2020-21,Shrewsbury - Walter J Paton,2710025,0,1.5,1.5,97.1,0,0,0,96.9,3.1,100 +3.03125,3.03,a-pcom-i3,2020-21,Shutesbury - Shutesbury Elementary,2720005,0,3.2,3.2,90.3,0,0,3.2,92.9,7.1,100 +1,1,a-pcom-i3,2020-21,Silver Lake - Silver Lake Regional High,7600505,1.4,0.7,0,97.8,0,0,0,73.1,26.9,100 +1,1,a-pcom-i3,2020-21,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,100,0,0,0,67.8,32.2,100 +3.1875,3.19,a-pcom-i3,2020-21,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,1.7,1.7,6.7,89.8,0,0,0,81.1,18.9,100 +1,1,a-pcom-i3,2020-21,Somerset - Chace Street,2730005,0,0,0,100,0,0,0,94.4,5.6,100 +1,1,a-pcom-i3,2020-21,Somerset - North Elementary,2730008,0,0,0,100,0,0,0,97.6,2.4,100 +1,1,a-pcom-i3,2020-21,Somerset - Somerset Middle School,2730305,0,0,0,100,0,0,0,77.9,22.1,100 +1,1,a-pcom-i3,2020-21,Somerset - South,2730015,2.6,0,0,97.4,0,0,0,93.3,6.7,100 +1.09375,1.09,a-pcom-i3,2020-21,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0.9,2.6,96.5,0,0,0,66.2,33.8,100 +7,5,a-pcom-i3,2020-21,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,4.4,0,18,77.6,0,0,0,88.7,11.3,100 +6.3125,5,a-pcom-i3,2020-21,Somerville - Arthur D Healey,2740075,9.8,2.9,7.6,79.8,0,0,0,77,23,100 +1,1,a-pcom-i3,2020-21,Somerville - Benjamin G Brown,2740015,0,0,0,100,0,0,0,84.8,15.2,100 +3.9375,3.94,a-pcom-i3,2020-21,Somerville - Capuano Early Childhood Center,2740005,1.4,1.4,9.7,87.4,0,0,0,94.3,5.7,100 +10.34375,5,a-pcom-i3,2020-21,Somerville - E Somerville Community,2740111,3.7,0.6,26.2,66.9,1.2,0,1.2,80.1,19.9,100 +2.6875,2.69,a-pcom-i3,2020-21,Somerville - Full Circle High School,2740510,2.3,0,6.2,91.4,0,0,0,66.5,33.5,100 +3.65625,3.66,a-pcom-i3,2020-21,Somerville - John F Kennedy,2740083,1.5,2.9,5.8,88.3,0,0,1.5,81.8,18.2,100 +2.375,2.37,a-pcom-i3,2020-21,Somerville - Next Wave Junior High,2740410,5.5,0,2.2,92.4,0,0,0,78.9,21.1,100 +4.875,4.87,a-pcom-i3,2020-21,Somerville - Somerville High,2740505,5.7,2.3,6.7,84.4,0,0,0.9,66.3,33.7,100 +7.6875,5,a-pcom-i3,2020-21,Somerville - West Somerville Neighborhood,2740115,6.2,2.1,10.3,75.4,0,0,6.2,87.4,12.6,100 +4.5625,4.56,a-pcom-i3,2020-21,Somerville - Winter Hill Community,2740120,2.4,3.6,7.4,85.4,0,0,1.2,86.6,13.4,100 +1,1,a-pcom-i3,2020-21,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,100,0,0,0,71.6,28.4,100 +1.125,1.12,a-pcom-i3,2020-21,South Hadley - Mosier,2780020,0,1.8,1.8,96.4,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,South Hadley - Plains Elementary,2780015,0.7,0,1.8,97.5,0,0,0,89.4,10.6,100 +1,1,a-pcom-i3,2020-21,South Hadley - South Hadley High,2780505,0,1.4,0,98.6,0,0,0,65.5,34.5,100 +4.03125,4.03,a-pcom-i3,2020-21,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,1.6,0.8,10.5,87.1,0,0,0,54.8,45.2,100 +2.875,2.88,a-pcom-i3,2020-21,South Shore Charter Public (District) - South Shore Charter Public School,4880550,6.5,1.3,0.7,90.8,0,0,0.7,72.5,27.5,100 +1,1,a-pcom-i3,2020-21,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,1.1,98.9,0,0,0,48.4,51.6,100 +1,1,a-pcom-i3,2020-21,Southampton - William E Norris,2750005,0,0,0,97.1,0,0,2.9,88.2,11.8,100 +1,1,a-pcom-i3,2020-21,Southborough - Albert S. Woodward Memorial School,2760050,0,2.7,0,97.3,0,0,0,94.5,5.5,100 +1,1,a-pcom-i3,2020-21,Southborough - Margaret A Neary,2760020,0,0,0,100,0,0,0,92.1,7.9,100 +2.8125,2.81,a-pcom-i3,2020-21,Southborough - Mary E Finn School,2760008,0,4.5,4.5,91,0,0,0,97.3,2.7,100 +1.375,1.38,a-pcom-i3,2020-21,Southborough - P Brent Trottier,2760305,0,0,2.9,95.6,1.5,0,0,80.9,19.1,100 +7.71875,5,a-pcom-i3,2020-21,Southbridge - Charlton Street,2770005,5.6,0,17.1,75.3,0,0,1.9,83.1,16.9,100 +4.5,4.5,a-pcom-i3,2020-21,Southbridge - Eastford Road,2770010,0,0,14.4,85.6,0,0,0,94.6,5.4,100 +9.875,5,a-pcom-i3,2020-21,Southbridge - Southbridge Academy,2770525,9.9,0,21.7,68.4,0,0,0,60.5,39.5,100 +7,5,a-pcom-i3,2020-21,Southbridge - Southbridge High School,2770515,1.9,0,20.5,77.6,0,0,0,62.7,37.3,100 +5.21875,5,a-pcom-i3,2020-21,Southbridge - Southbridge Middle School,2770315,0.7,1.7,14.2,83.3,0,0,0,66.6,33.4,100 +2.875,2.88,a-pcom-i3,2020-21,Southbridge - West Street,2770020,0,0,9.2,90.8,0,0,0,89,11,100 +3.96875,3.97,a-pcom-i3,2020-21,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,7.1,2.3,2.8,87.3,0,0,0.6,60.4,39.6,100 +2.28125,2.28,a-pcom-i3,2020-21,Southern Berkshire - Mt Everett Regional,7650505,2.9,1.5,1.5,92.7,0,0,1.5,64.9,35.1,100 +2.71875,2.72,a-pcom-i3,2020-21,Southern Berkshire - New Marlborough Central,7650018,0,0,2,91.3,6.7,0,0,81.3,18.7,100 +1.1875,1.19,a-pcom-i3,2020-21,Southern Berkshire - South Egremont,7650030,0,0,3.8,96.2,0,0,0,88.5,11.5,100 +1.53125,1.53,a-pcom-i3,2020-21,Southern Berkshire - Undermountain,7650035,0,1.9,3,95.1,0,0,0,94.5,5.5,100 +1,1,a-pcom-i3,2020-21,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,1.2,98.1,0,0,0.6,57.8,42.2,100 +1,1,a-pcom-i3,2020-21,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,100,0,0,0,93.9,6.1,100 +1.875,1.88,a-pcom-i3,2020-21,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,4,94,0,0,2,71.6,28.4,100 +1,1,a-pcom-i3,2020-21,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,0,0,1.6,98.4,0,0,0,97.9,2.1,100 +1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,100,0,0,0,56.7,43.3,100 +1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - East Brookfield Elementary,7670008,0,0,1.3,98.7,0,0,0,91.5,8.5,100 +1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,2.3,97.7,0,0,0,75,25,100 +1,1,a-pcom-i3,2020-21,Spencer-E Brookfield - Wire Village School,7670040,0,0,0.8,99.2,0,0,0,89.1,10.9,100 +8.125,5,a-pcom-i3,2020-21,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,4,0,22,74,0,0,0,94,6,100 +6.0625,5,a-pcom-i3,2020-21,Springfield - Alice B Beal Elementary,2810175,9.7,3.2,6.5,80.6,0,0,0,87.1,12.9,100 +4.9375,4.94,a-pcom-i3,2020-21,Springfield - Arthur T Talmadge,2810165,5.3,0,7.9,84.2,0,0,2.6,93.4,6.6,100 +7.6875,5,a-pcom-i3,2020-21,Springfield - Balliet Middle School,2810360,24.6,0,0,75.4,0,0,0,65.1,34.9,100 +10,5,a-pcom-i3,2020-21,Springfield - Brightwood,2810025,2,0,30,68,0,0,0,81.1,18.9,100 +4.46875,4.47,a-pcom-i3,2020-21,Springfield - Chestnut Academy,2810365,14.3,0,0,85.7,0,0,0,82.9,17.1,100 +19.65625,5,a-pcom-i3,2020-21,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,40.9,4,18,37.1,0,0,0,73.3,26.7,100 +16.3125,5,a-pcom-i3,2020-21,Springfield - Conservatory of the Arts,2810475,22.4,0,27.8,47.8,0,0,2,71.5,28.5,100 +4.96875,4.97,a-pcom-i3,2020-21,Springfield - Daniel B Brunton,2810035,7.9,0,7.9,84.1,0,0,0,95.2,4.8,100 +13.1875,5,a-pcom-i3,2020-21,Springfield - Early Childhood Education Center,2810001,28.9,0,13.3,57.8,0,0,0,93.3,6.7,100 +9.3125,5,a-pcom-i3,2020-21,Springfield - Edward P. Boland School,2810010,8.7,1,19.2,70.2,0,0,1,85.6,14.4,100 +12.96875,5,a-pcom-i3,2020-21,Springfield - Elias Brookings,2810030,22.6,5.7,13.2,58.5,0,0,0,92.5,7.5,100 +1,1,a-pcom-i3,2020-21,Springfield - Emergence Academy,2810318,0,0,0,100,0,0,0,100,0,100 +5.125,5,a-pcom-i3,2020-21,Springfield - Forest Park Middle,2810325,5.5,1.4,9.6,83.6,0,0,0,75.3,24.7,100 +17.25,5,a-pcom-i3,2020-21,Springfield - Frank H Freedman,2810075,39.1,2.3,13.8,44.8,0,0,0,83.9,16.1,100 +7.125,5,a-pcom-i3,2020-21,Springfield - Frederick Harris,2810080,4.8,1.2,16.8,77.2,0,0,0,91.6,8.4,100 +31.25,5,a-pcom-i3,2020-21,Springfield - Gateway to College at Holyoke Community College,2810575,100,0,0,0,0,0,0,100,0,100 +31.25,5,a-pcom-i3,2020-21,Springfield - Gateway to College at Springfield Technical Community College,2810580,100,0,0,0,0,0,0,100,0,100 +12.1875,5,a-pcom-i3,2020-21,Springfield - German Gerena Community School,2810195,2,0,37,61,0,0,0,91,9,100 +5.625,5,a-pcom-i3,2020-21,Springfield - Glenwood,2810065,4.5,0,13.5,82,0,0,0,97.8,2.2,100 +8.65625,5,a-pcom-i3,2020-21,Springfield - Glickman Elementary,2810068,5.9,2,19.8,72.3,0,0,0,92.1,7.9,100 +14.9375,5,a-pcom-i3,2020-21,Springfield - High School Of Commerce,2810510,24.6,1.2,18.4,52.2,0,0,3.6,65.6,34.4,100 +9.90625,5,a-pcom-i3,2020-21,Springfield - Hiram L Dorman,2810050,19.5,0,12.2,68.3,0,0,0,90.2,9.8,100 +6.8125,5,a-pcom-i3,2020-21,Springfield - Homer Street,2810085,10.9,0,9.1,78.2,0,0,1.8,87.3,12.7,100 +23.28125,5,a-pcom-i3,2020-21,Springfield - Impact Prep at Chestnut,2810366,40,0,34.5,25.5,0,0,0,70,30,100 +4.8125,4.81,a-pcom-i3,2020-21,Springfield - Indian Orchard Elementary,2810100,4.7,0,10.6,84.6,0,0,0,93.4,6.6,100 +13.625,5,a-pcom-i3,2020-21,Springfield - John F Kennedy Middle,2810328,29.8,1.4,12.5,56.4,0,0,0,69.5,30.5,100 +13.59375,5,a-pcom-i3,2020-21,Springfield - John J Duggan Middle,2810320,27.8,0.9,13.9,56.5,0,0.9,0,69.9,30.1,100 +2.96875,2.97,a-pcom-i3,2020-21,Springfield - Kensington International School,2810110,4.8,0,4.8,90.5,0,0,0,90.5,9.5,100 +13.375,5,a-pcom-i3,2020-21,Springfield - Kiley Academy,2810316,29.3,0,13.5,57.2,0,0,0,61.8,38.2,100 +12.09375,5,a-pcom-i3,2020-21,Springfield - Kiley Prep,2810315,38.7,0,0,61.3,0,0,0,80.6,19.4,100 +11.28125,5,a-pcom-i3,2020-21,Springfield - Liberty,2810115,24.1,0,12,63.9,0,0,0,92.8,7.2,100 +4.75,4.75,a-pcom-i3,2020-21,Springfield - Liberty Preparatory Academy,2810560,15.2,0,0,84.8,0,0,0,80.7,19.3,100 +10.40625,5,a-pcom-i3,2020-21,Springfield - Lincoln,2810120,14.6,0,18.7,66.7,0,0,0,88.5,11.5,100 +15.0625,5,a-pcom-i3,2020-21,Springfield - Lyceum Academy,2810317,10.7,2.7,30.4,51.8,0,0,4.5,67,33,100 +13.3125,5,a-pcom-i3,2020-21,Springfield - M Marcus Kiley Middle,2810330,21.3,1.8,17.8,57.4,0,0,1.8,75.6,24.4,100 +13.40625,5,a-pcom-i3,2020-21,Springfield - Margaret C Ells,2810060,20,0,22.9,57.1,0,0,0,94.3,5.7,100 +5.8125,5,a-pcom-i3,2020-21,Springfield - Mary A. Dryden Veterans Memorial School,2810125,7,0,11.6,81.4,0,0,0,93,7,100 +10.25,5,a-pcom-i3,2020-21,Springfield - Mary M Lynch,2810140,17.9,0,14.9,67.2,0,0,0,92.5,7.5,100 +7.96875,5,a-pcom-i3,2020-21,Springfield - Mary M Walsh,2810155,8.5,2.1,14.9,74.5,0,0,0,92.6,7.4,100 +8.40625,5,a-pcom-i3,2020-21,Springfield - Mary O Pottenger,2810145,11.5,0,15.4,73.1,0,0,0,94.2,5.8,100 +7.21875,5,a-pcom-i3,2020-21,Springfield - Milton Bradley School,2810023,5.4,0,17.7,76.9,0,0,0,93.2,6.8,100 +17,5,a-pcom-i3,2020-21,Springfield - Rebecca M Johnson,2810055,35.1,0,18.4,45.6,0,0.9,0,86,14,100 +11.5,5,a-pcom-i3,2020-21,Springfield - Rise Academy at Van Sickle,2810480,18.4,0,18.4,63.2,0,0,0,71.1,28.9,100 +9.65625,5,a-pcom-i3,2020-21,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,11.2,2.7,16.5,69.1,0,0,0.5,51.7,48.3,100 +13.125,5,a-pcom-i3,2020-21,Springfield - STEM Middle Academy,2810350,27.5,0,14.5,58,0,0,0,62.3,37.7,100 +7.5,5,a-pcom-i3,2020-21,Springfield - Samuel Bowles,2810020,8,2.7,13.3,76,0,0,0,81.4,18.6,100 +9.96875,5,a-pcom-i3,2020-21,Springfield - South End Middle School,2810355,5.4,0,26.5,68.1,0,0,0,74.3,25.7,100 +8.03125,5,a-pcom-i3,2020-21,Springfield - Springfield Central High,2810500,11.7,2.2,10,74.3,0,0,1.7,54.6,45.4,100 +13.46875,5,a-pcom-i3,2020-21,Springfield - Springfield High School,2810570,18.7,0,24.4,56.9,0,0,0,69.3,30.7,100 +11.28125,5,a-pcom-i3,2020-21,Springfield - Springfield High School of Science and Technology,2810530,14.6,2.9,17.4,63.9,0,0,1.2,57.5,42.5,100 +3.46875,3.47,a-pcom-i3,2020-21,Springfield - Springfield International Academy at Johnson,2810215,11.1,0,0,88.9,0,0,0,88.9,11.1,100 +11.25,5,a-pcom-i3,2020-21,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,36,64,0,0,0,89.2,10.8,100 +12.5,5,a-pcom-i3,2020-21,Springfield - Springfield Public Day Elementary School,2810005,22,0,18,60,0,0,0,93.9,6.1,100 +18.375,5,a-pcom-i3,2020-21,Springfield - Springfield Public Day High School,2810550,34.4,0,24.4,41.2,0,0,0,56.3,43.7,100 +8.90625,5,a-pcom-i3,2020-21,Springfield - Springfield Public Day Middle School,2810345,21,0,7.5,71.5,0,0,0,67,33,100 +6.25,5,a-pcom-i3,2020-21,Springfield - Springfield Vocational Academy,2810675,12,0,8,80,0,0,0,72,28,100 +8.3125,5,a-pcom-i3,2020-21,Springfield - Sumner Avenue,2810160,17.3,1.2,8.1,73.4,0,0,0,88.4,11.6,100 +9.375,5,a-pcom-i3,2020-21,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,15.9,1.2,10.6,70,0,1.2,1.2,78.8,21.2,100 +11.09375,5,a-pcom-i3,2020-21,Springfield - Thomas M Balliet,2810015,22.8,0,12.7,64.5,0,0,0,87.3,12.7,100 +9.34375,5,a-pcom-i3,2020-21,Springfield - Van Sickle Academy,2810485,5.2,0,24.7,70.1,0,0,0,76.6,23.4,100 +9.75,5,a-pcom-i3,2020-21,Springfield - Warner,2810180,23.4,0,7.8,68.8,0,0,0,88.3,11.7,100 +3.71875,3.72,a-pcom-i3,2020-21,Springfield - Washington,2810185,5.1,0,6.8,88.1,0,0,0,94.9,5.1,100 +3.75,3.75,a-pcom-i3,2020-21,Springfield - White Street,2810190,4,0,8,88,0,0,0,98,2,100 +13.4375,5,a-pcom-i3,2020-21,Springfield - William N. DeBerry,2810045,17.2,0,25.8,57,0,0,0,91.4,8.6,100 +11.3125,5,a-pcom-i3,2020-21,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,12.1,2,20.1,63.8,0,2,0,87.9,10,100 +1,1,a-pcom-i3,2020-21,Stoneham - Colonial Park,2840005,0,0,0,100,0,0,0,97.7,2.3,100 +1,1,a-pcom-i3,2020-21,Stoneham - Robin Hood,2840025,0,2,0,98,0,0,0,88,12,100 +1,1,a-pcom-i3,2020-21,Stoneham - South,2840030,0,0,0,100,0,0,0,91.6,8.4,100 +1.25,1.25,a-pcom-i3,2020-21,Stoneham - Stoneham Central Middle School,2840405,1,1,1,96,0,0,1,65.4,34.6,100 +1,1,a-pcom-i3,2020-21,Stoneham - Stoneham High,2840505,0,1.1,0,98.9,0,0,0,78,22,100 +1.1875,1.19,a-pcom-i3,2020-21,Stoughton - Edwin A Jones Early Childhood Center,2850012,3.8,0,0,96.2,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Stoughton - Helen Hansen Elementary,2850010,2.9,0,0,97.1,0,0,0,86.1,13.9,100 +1,1,a-pcom-i3,2020-21,Stoughton - Joseph H Gibbons,2850025,0,2.2,0,97.8,0,0,0,92,8,100 +1,1,a-pcom-i3,2020-21,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,0,0,97.6,0,0,2.4,89.6,10.4,100 +2.40625,2.41,a-pcom-i3,2020-21,Stoughton - O'Donnell Middle School,2850405,4.4,2.3,1,92.3,0,0,0,84.6,15.4,100 +1.96875,1.97,a-pcom-i3,2020-21,Stoughton - Richard L. Wilkins Elementary School,2850020,0,0,3.2,93.7,0,0,3.2,96.6,3.4,100 +1,1,a-pcom-i3,2020-21,Stoughton - South Elementary,2850015,0,0,0,100,0,0,0,96,4,100 +1.625,1.63,a-pcom-i3,2020-21,Stoughton - Stoughton High,2850505,0.8,0.5,2.2,94.8,0.8,0.8,0.1,69.6,30.4,100 +1,1,a-pcom-i3,2020-21,Sturbridge - Burgess Elementary,2870005,0,0,0.8,99.2,0,0,0,94.4,5.6,100 +1.625,1.63,a-pcom-i3,2020-21,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0.7,0.7,3.8,94.8,0,0,0,70.2,29.8,100 +2.3125,2.31,a-pcom-i3,2020-21,Sudbury - Ephraim Curtis Middle,2880305,1.6,0,4.3,92.6,0,0,1.4,72.6,27.4,100 +2.0625,2.06,a-pcom-i3,2020-21,Sudbury - General John Nixon Elementary,2880025,4.2,1.1,1.3,93.4,0,0,0,91.3,8.7,100 +2.5625,2.56,a-pcom-i3,2020-21,Sudbury - Israel Loring School,2880015,1.7,0,3.4,91.8,0,0,3.1,93,7,100 +1.875,1.88,a-pcom-i3,2020-21,Sudbury - Josiah Haynes,2880010,0,3.9,2.2,94,0,0,0,92.1,7.9,100 +1.71875,1.72,a-pcom-i3,2020-21,Sudbury - Peter Noyes,2880030,0,1.2,1.8,94.5,0,0,2.4,93.4,6.6,100 +2.125,2.12,a-pcom-i3,2020-21,Sunderland - Sunderland Elementary,2890005,0,5.1,1.7,93.2,0,0,0,82.9,17.1,100 +1,1,a-pcom-i3,2020-21,Sutton - Sutton Early Learning,2900003,0,0,0,100,0,0,0,98.7,1.3,100 +1,1,a-pcom-i3,2020-21,Sutton - Sutton Elementary,2900005,0,0,0,100,0,0,0,93.6,6.4,100 +1,1,a-pcom-i3,2020-21,Sutton - Sutton High School,2900510,2.1,0,0,97.9,0,0,0,60.2,39.8,100 +1,1,a-pcom-i3,2020-21,Sutton - Sutton Middle School,2900305,0,0,0,100,0,0,0,71.2,28.8,100 +1,1,a-pcom-i3,2020-21,Swampscott - Clarke,2910005,0,0,2.8,97.2,0,0,0,93.5,6.5,100 +1,1,a-pcom-i3,2020-21,Swampscott - Hadley,2910010,0,0,2.6,97.4,0,0,0,92.9,7.1,100 +2.25,2.25,a-pcom-i3,2020-21,Swampscott - Stanley,2910020,0,2.4,0,92.8,0,0,4.8,83.8,16.2,100 +1.90625,1.91,a-pcom-i3,2020-21,Swampscott - Swampscott High,2910505,2.5,0,3.7,93.9,0,0,0,64.6,35.4,100 +1,1,a-pcom-i3,2020-21,Swampscott - Swampscott Middle,2910305,1,0,1,97.1,0,0,1,89.1,10.9,100 +1,1,a-pcom-i3,2020-21,Swansea - Elizabeth S Brown,2920006,0,0,0,100,0,0,0,94.3,5.7,100 +1,1,a-pcom-i3,2020-21,Swansea - Gardner,2920015,0,0,0,100,0,0,0,89.6,10.4,100 +1,1,a-pcom-i3,2020-21,Swansea - Joseph Case High,2920505,0,1.6,0,98.4,0,0,0,46.9,53.1,100 +1,1,a-pcom-i3,2020-21,Swansea - Joseph Case Jr High,2920305,0,0,2,98,0,0,0,68.3,31.7,100 +1,1,a-pcom-i3,2020-21,Swansea - Joseph G Luther,2920020,0,0,0,100,0,0,0,86.9,13.1,100 +1,1,a-pcom-i3,2020-21,Swansea - Mark G Hoyle Elementary,2920017,3,0,0,97,0,0,0,92.2,7.8,100 +2.90625,2.91,a-pcom-i3,2020-21,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,1.3,4.6,3.3,90.7,0,0,0,73.8,26.2,100 +1,1,a-pcom-i3,2020-21,Tantasqua - Tantasqua Regional Jr High,7700405,0,0,2.6,97.4,0,0,0,76.5,22.1,100 +1,1,a-pcom-i3,2020-21,Tantasqua - Tantasqua Regional Sr High,7700505,0.4,0,0.9,97.9,0,0,0.9,66.6,33.4,100 +1.875,1.88,a-pcom-i3,2020-21,Tantasqua - Tantasqua Regional Vocational,7700605,6,0,0,94,0,0,0,33.7,66.3,100 +1,1,a-pcom-i3,2020-21,Taunton - Benjamin Friedman Middle,2930315,0,0,0,100,0,0,0,80.8,19.2,100 +1,1,a-pcom-i3,2020-21,Taunton - East Taunton Elementary,2930010,0,0,0,98.6,0,0,1.4,94,6,100 +1.8125,1.81,a-pcom-i3,2020-21,Taunton - Edmund Hatch Bennett,2930007,2.9,0,2.9,94.2,0,0,0,92.6,7.4,100 +1,1,a-pcom-i3,2020-21,Taunton - Edward F. Leddy Preschool,2930005,0,0,2.7,97.3,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Taunton - Elizabeth Pole,2930027,0,0,2.4,97.6,0,0,0,94.7,5.3,100 +1.78125,1.78,a-pcom-i3,2020-21,Taunton - H H Galligan,2930057,0,0,5.7,94.3,0,0,0,96.3,3.7,100 +3.5625,3.56,a-pcom-i3,2020-21,Taunton - John F Parker Middle,2930305,3.8,1.9,5.7,88.6,0,0,0,82.3,17.7,100 +1.625,1.63,a-pcom-i3,2020-21,Taunton - Joseph C Chamberlain,2930008,0,5.2,0,94.8,0,0,0,96.6,3.4,100 +1.8125,1.81,a-pcom-i3,2020-21,Taunton - Joseph H Martin,2930042,5.8,0,0,94.2,0,0,0,82.6,17.4,100 +1.34375,1.34,a-pcom-i3,2020-21,Taunton - Mulcahey Elementary School,2930015,2,0.3,2,95.7,0,0,0,94.1,5.9,100 +2.53125,2.53,a-pcom-i3,2020-21,Taunton - Taunton Alternative High School,2930525,0,0,8.1,91.9,0,0,0,56.5,43.5,100 +1.96875,1.97,a-pcom-i3,2020-21,Taunton - Taunton High,2930505,2.5,0.4,2.9,93.7,0,0,0.4,64.8,35.2,100 +4.03125,4.03,a-pcom-i3,2020-21,Tewksbury - Heath-Brook,2950010,2.2,6.5,4.3,87.1,0,0,0,98.9,1.1,100 +1.09375,1.09,a-pcom-i3,2020-21,Tewksbury - John F. Ryan,2950023,2.1,1.4,0,96.5,0,0,0,89.4,10.6,100 +1,1,a-pcom-i3,2020-21,Tewksbury - John W. Wynn Middle,2950305,0,3.1,0,96.9,0,0,0,74.2,25.8,100 +1.0625,1.06,a-pcom-i3,2020-21,Tewksbury - L F Dewing,2950001,0,1.1,2.3,96.6,0,0,0,97.2,2.8,100 +1.03125,1.03,a-pcom-i3,2020-21,Tewksbury - Louise Davy Trahan,2950025,0,0,3.3,96.7,0,0,0,93.5,6.5,100 +3.4375,3.44,a-pcom-i3,2020-21,Tewksbury - North Street,2950020,0,0,11,89,0,0,0,95.6,4.4,100 +1,1,a-pcom-i3,2020-21,Tewksbury - Tewksbury Memorial High,2950505,0,0.9,1.8,97.3,0,0,0,61.3,37.8,100 +2.46875,2.47,a-pcom-i3,2020-21,Tisbury - Tisbury Elementary,2960005,1.8,0,4.7,92.1,0,0,1.4,84.9,15.1,100 +1,1,a-pcom-i3,2020-21,Topsfield - Proctor Elementary,2980005,0,0,0,100,0,0,0,91,9,100 +1,1,a-pcom-i3,2020-21,Topsfield - Steward Elementary,2980010,0,0,2.9,97.1,0,0,0,96.8,3.2,100 +1,1,a-pcom-i3,2020-21,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0.8,0,99.2,0,0,0,61.8,38.2,100 +1,1,a-pcom-i3,2020-21,Triton - Newbury Elementary,7730020,0,0,0,100,0,0,0,89.2,10.8,100 +1,1,a-pcom-i3,2020-21,Triton - Pine Grove,7730025,0,1.6,0,98.4,0,0,0,87.2,12.8,100 +1,1,a-pcom-i3,2020-21,Triton - Salisbury Elementary,7730015,0,1.5,0,98.5,0,0,0,95.6,4.4,100 +1,1,a-pcom-i3,2020-21,Triton - Triton Regional High School,7730505,2.2,0,0,97.8,0,0,0,60,40,100 +1,1,a-pcom-i3,2020-21,Triton - Triton Regional Middle School,7730405,0,0,0,100,0,0,0,70.1,29.9,100 +1,1,a-pcom-i3,2020-21,Truro - Truro Central,3000005,0,0,3.2,96.8,0,0,0,90.3,9.7,100 +1,1,a-pcom-i3,2020-21,Tyngsborough - Tyngsborough Elementary,3010020,0,1,0,99,0,0,0,89.8,10.2,100 +1,1,a-pcom-i3,2020-21,Tyngsborough - Tyngsborough High School,3010505,0,0,2,98,0,0,0,66.1,33.9,100 +1,1,a-pcom-i3,2020-21,Tyngsborough - Tyngsborough Middle,3010305,0,0,1.9,98.1,0,0,0,71.2,28.8,100 +11.03125,5,a-pcom-i3,2020-21,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,27.5,0,7.8,64.7,0,0,0,70.6,29.4,100 +11.15625,5,a-pcom-i3,2020-21,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,27.1,0,8.6,64.3,0,0,0,78.6,21.4,100 +2.90625,2.91,a-pcom-i3,2020-21,Up-Island Regional - Chilmark Elementary,7740010,0,0,0,90.7,0,0,9.3,96.5,3.5,100 +1.09375,1.09,a-pcom-i3,2020-21,Up-Island Regional - West Tisbury Elementary,7740020,0.3,0,3.2,96.5,0,0,0,85.8,14.2,100 +1,1,a-pcom-i3,2020-21,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,99,1,0,0,39.3,60.7,100 +31.25,5,a-pcom-i3,2020-21,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,100 +1,1,a-pcom-i3,2020-21,Uxbridge - Taft Early Learning Center,3040005,0,0,0,100,0,0,0,94.7,5.3,100 +1,1,a-pcom-i3,2020-21,Uxbridge - Uxbridge High,3040505,0,1.3,0,98.7,0,0,0,73.6,26.4,100 +1,1,a-pcom-i3,2020-21,Uxbridge - Whitin Intermediate,3040405,0,0,0,100,0,0,0,81,19,100 +11.71875,5,a-pcom-i3,2020-21,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,23.2,1.8,10.7,62.5,0,0,1.8,80.4,19.6,100 +1,1,a-pcom-i3,2020-21,Wachusett - Central Tree Middle,7750310,0,0,0,100,0,0,0,77.5,22.5,100 +1,1,a-pcom-i3,2020-21,Wachusett - Chocksett Middle School,7750315,0,0,0,100,0,0,0,84.8,15.2,100 +1.125,1.12,a-pcom-i3,2020-21,Wachusett - Davis Hill Elementary,7750018,0,0,3.6,96.4,0,0,0,87.3,12.7,100 +1,1,a-pcom-i3,2020-21,Wachusett - Dawson,7750020,0,0,0,100,0,0,0,92.4,7.6,100 +1,1,a-pcom-i3,2020-21,Wachusett - Early Childhood Center,7750001,2.4,0,0,97.6,0,0,0,97.6,2.4,100 +1,1,a-pcom-i3,2020-21,Wachusett - Glenwood Elementary School,7750060,0,0,0,100,0,0,0,88.2,11.8,100 +1,1,a-pcom-i3,2020-21,Wachusett - Houghton Elementary,7750027,1.6,0,0,98.4,0,0,0,96.9,3.1,100 +1,1,a-pcom-i3,2020-21,Wachusett - Leroy E.Mayo,7750032,0,0,0,100,0,0,0,95.8,4.2,100 +1,1,a-pcom-i3,2020-21,Wachusett - Mountview Middle,7750305,0,0,1.4,98.6,0,0,0,80.6,19.4,100 +1,1,a-pcom-i3,2020-21,Wachusett - Naquag Elementary School,7750005,0,0,0,100,0,0,0,97.7,2.3,100 +1,1,a-pcom-i3,2020-21,Wachusett - Paxton Center,7750040,0,0,0,100,0,0,0,82.3,17.7,100 +1,1,a-pcom-i3,2020-21,Wachusett - Thomas Prince,7750045,0,0,0,97.5,0,2.5,0,86.3,13.7,100 +1,1,a-pcom-i3,2020-21,Wachusett - Wachusett Regional High,7750505,0,0.5,0.5,99.1,0,0,0,70.4,29.6,100 +1,1,a-pcom-i3,2020-21,Wakefield - Dolbeare,3050005,0,1.5,0,96.9,1.5,0,0,90.7,9.3,100 +1.3125,1.31,a-pcom-i3,2020-21,Wakefield - Early Childhood Center at the Doyle School,3050001,0,4.2,0,95.8,0,0,0,95.8,4.2,100 +1,1,a-pcom-i3,2020-21,Wakefield - Galvin Middle School,3050310,0.9,0,0.8,98.3,0,0,0,72.5,27.5,100 +1.09375,1.09,a-pcom-i3,2020-21,Wakefield - Greenwood,3050020,0,3.5,0,96.5,0,0,0,89.4,10.6,100 +1,1,a-pcom-i3,2020-21,Wakefield - Wakefield Memorial High,3050505,0,0,0.4,99.6,0,0,0,67.4,32.6,100 +1,1,a-pcom-i3,2020-21,Wakefield - Walton,3050040,0,0,0,100,0,0,0,92.2,7.8,100 +1.15625,1.16,a-pcom-i3,2020-21,Wakefield - Woodville School,3050015,0,0,1.8,96.3,0,0,1.8,94.5,5.5,100 +1.34375,1.34,a-pcom-i3,2020-21,Wales - Wales Elementary,3060005,0,0,0,95.7,0,0,4.3,89.4,10.6,100 +1,1,a-pcom-i3,2020-21,Walpole - Bird Middle,3070305,0,1.7,0,98.3,0,0,0,75.6,24.4,100 +1,1,a-pcom-i3,2020-21,Walpole - Boyden,3070010,0,0,2,98,0,0,0,95.4,4.6,100 +1.375,1.38,a-pcom-i3,2020-21,Walpole - Daniel Feeney Preschool Center,3070002,0,0,4.4,95.6,0,0,0,94.3,5.7,100 +1,1,a-pcom-i3,2020-21,Walpole - Eleanor N Johnson Middle,3070310,0,0,1.8,98.2,0,0,0,78.2,21.8,100 +1,1,a-pcom-i3,2020-21,Walpole - Elm Street School,3070005,0,1,0,99,0,0,0,96.3,3.7,100 +1,1,a-pcom-i3,2020-21,Walpole - Fisher,3070015,0,0,0,100,0,0,0,95,5,100 +1,1,a-pcom-i3,2020-21,Walpole - Old Post Road,3070018,0,0,0,100,0,0,0,87.4,12.6,100 +1.03125,1.03,a-pcom-i3,2020-21,Walpole - Walpole High,3070505,0,1.4,1.4,96.7,0,0,0.4,68.7,31.3,100 +1,1,a-pcom-i3,2020-21,Waltham - Douglas MacArthur Elementary School,3080032,0,0,0.7,99.3,0,0,0,89.9,10.1,100 +5.125,5,a-pcom-i3,2020-21,Waltham - Henry Whittemore Elementary School,3080065,4,0,10.4,83.6,0,0,2,88.3,11.7,100 +2.40625,2.41,a-pcom-i3,2020-21,Waltham - James Fitzgerald Elementary School,3080060,0,0,5.8,92.3,0,0,1.9,87.3,12.7,100 +3.90625,3.91,a-pcom-i3,2020-21,Waltham - John F Kennedy Middle,3080404,2.7,2.7,7.1,87.5,0,0,0,78.3,21.7,100 +4.0625,4.06,a-pcom-i3,2020-21,Waltham - John W. McDevitt Middle School,3080415,2.4,0.9,8.5,87,0,0,1.1,68.1,31.9,100 +2,2,a-pcom-i3,2020-21,Waltham - Northeast Elementary School,3080040,1.2,1.7,2.8,93.6,0,0,0.6,92.6,7.4,100 +2.125,2.12,a-pcom-i3,2020-21,Waltham - Thomas R Plympton Elementary School,3080050,1.9,0.9,4,93.2,0,0,0,92.7,7.3,100 +17.96875,5,a-pcom-i3,2020-21,Waltham - Waltham Public Schools Dual Language Program,3080001,0,0,57.5,42.5,0,0,0,86.7,13.3,100 +4.34375,4.34,a-pcom-i3,2020-21,Waltham - Waltham Sr High,3080505,4.1,2.6,6.1,86.1,0,0.5,0.5,64.9,35.1,100 +2.46875,2.47,a-pcom-i3,2020-21,Waltham - William F. Stanley Elementary School,3080005,0.9,3.4,2.4,92.1,0,0,1.2,87.8,12.2,100 +1,1,a-pcom-i3,2020-21,Ware - Stanley M Koziol Elementary School,3090020,0,0,1.9,98.1,0,0,0,90.6,9.4,100 +2.5625,2.56,a-pcom-i3,2020-21,Ware - Ware Junior/Senior High School,3090505,1.4,0,6.8,91.8,0,0,0,71.7,28.3,100 +1,1,a-pcom-i3,2020-21,Ware - Ware Middle School,3090305,0,0,0.5,99.5,0,0,0,81.5,18.5,100 +1,1,a-pcom-i3,2020-21,Wareham - John William Decas,3100003,0,0,0,99.4,0,0,0.6,92.8,7.2,100 +1,1,a-pcom-i3,2020-21,Wareham - Minot Forest,3100017,0,0,0,99,0,0,1,91.2,8.8,100 +1,1,a-pcom-i3,2020-21,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,100,0,0,0,86,14,100 +1.375,1.38,a-pcom-i3,2020-21,Wareham - Wareham Middle,3100305,1.4,0,0,95.6,0,0,3,86.7,13.3,100 +2.59375,2.59,a-pcom-i3,2020-21,Wareham - Wareham Senior High,3100505,3.1,0,0,91.7,0,0,5.2,66.1,33.9,100 +3.78125,3.78,a-pcom-i3,2020-21,Watertown - Cunniff,3140015,0,1.1,11,87.9,0,0,0,86.8,13.2,100 +2.5,2.5,a-pcom-i3,2020-21,Watertown - Hosmer,3140020,0,0.4,6.8,92,0,0,0.8,90,10,100 +7.03125,5,a-pcom-i3,2020-21,Watertown - James Russell Lowell,3140025,4.2,0,18.3,77.5,0,0,0,89,11,100 +2.25,2.25,a-pcom-i3,2020-21,Watertown - Watertown High,3140505,1,1,4.2,92.8,0,0,1,50.2,49.8,100 +1.9375,1.94,a-pcom-i3,2020-21,Watertown - Watertown Middle,3140305,0,0,4.9,93.8,0,0,1.3,70.9,29.1,100 +2,2,a-pcom-i3,2020-21,Wayland - Claypit Hill School,3150005,2.6,1.3,1.3,93.6,0,0,1.3,94.9,5.1,100 +4.0625,4.06,a-pcom-i3,2020-21,Wayland - Happy Hollow School,3150015,0.9,6.9,5.2,87,0,0,0,96.4,3.6,100 +3.84375,3.84,a-pcom-i3,2020-21,Wayland - Loker School,3150020,0.8,1.6,8.4,87.7,0,0,1.6,91.2,8.8,100 +2.25,2.25,a-pcom-i3,2020-21,Wayland - Wayland High School,3150505,4,1.6,1.6,92.8,0,0,0,65.9,34.1,100 +3.9375,3.94,a-pcom-i3,2020-21,Wayland - Wayland Middle School,3150305,1.9,3.9,6.8,87.4,0,0,0,73.9,26.1,100 +2.21875,2.22,a-pcom-i3,2020-21,Webster - Bartlett High School,3160505,1.8,0,3.6,92.9,0,0,1.8,64.9,35.1,100 +1,1,a-pcom-i3,2020-21,Webster - Park Avenue Elementary,3160015,2.7,0,0,97.3,0,0,0,94.6,5.4,100 +1,1,a-pcom-i3,2020-21,Webster - Webster Middle School,3160315,0,0,0,100,0,0,0,83.6,16.4,100 +3.0625,3.06,a-pcom-i3,2020-21,Wellesley - Ernest F Upham,3170050,2.2,1.9,5.7,90.2,0,0,0,91.4,8.6,100 +3.15625,3.16,a-pcom-i3,2020-21,Wellesley - Hunnewell,3170025,3.1,0,4.6,89.9,0,0,2.4,93.4,6.6,100 +1.15625,1.16,a-pcom-i3,2020-21,Wellesley - John D Hardy,3170020,0.4,0,3.3,96.3,0,0,0,92.6,7.4,100 +1.125,1.12,a-pcom-i3,2020-21,Wellesley - Joseph E Fiske,3170015,0.3,0,0.8,96.4,0,0,2.4,99.7,0.3,100 +1.9375,1.94,a-pcom-i3,2020-21,Wellesley - Katharine Lee Bates,3170005,0.4,0,5.8,93.8,0,0,0,96.8,3.2,100 +3.46875,3.47,a-pcom-i3,2020-21,Wellesley - Preschool at Wellesley Schools,3170001,2.2,2.2,4.4,88.9,0,0,2.2,100,0,100 +3.6875,3.69,a-pcom-i3,2020-21,Wellesley - Schofield,3170045,2.5,2.2,4.9,88.2,0,0,2.2,88.1,11.9,100 +1.34375,1.34,a-pcom-i3,2020-21,Wellesley - Sprague Elementary School,3170048,0.2,1.7,0.4,95.7,0,0,1.9,94.6,5.4,100 +3.53125,3.53,a-pcom-i3,2020-21,Wellesley - Wellesley Middle,3170305,2.7,3.3,3.5,88.7,0,0,1.9,72.6,27.4,100 +3.0625,3.06,a-pcom-i3,2020-21,Wellesley - Wellesley Sr High,3170505,3,3.5,1.7,90.2,0,0,1.6,65.3,34.7,100 +1,1,a-pcom-i3,2020-21,Wellfleet - Wellfleet Elementary,3180005,0,0,0,100,0,0,0,92.2,7.8,100 +1,1,a-pcom-i3,2020-21,West Boylston - Major Edwards Elementary,3220005,0,0,0,100,0,0,0,95.1,4.9,100 +1.34375,1.34,a-pcom-i3,2020-21,West Boylston - West Boylston Junior/Senior High,3220505,1.4,0,2.8,95.7,0,0,0,69.7,30.3,100 +1.21875,1.22,a-pcom-i3,2020-21,West Bridgewater - Howard School,3230305,0,0,3.9,96.1,0,0,0,90.3,9.7,100 +1,1,a-pcom-i3,2020-21,West Bridgewater - Rose L Macdonald,3230003,0,0,0,100,0,0,0,95.7,4.3,100 +1,1,a-pcom-i3,2020-21,West Bridgewater - Spring Street School,3230005,0,0,0,100,0,0,0,98.8,1.2,100 +1,1,a-pcom-i3,2020-21,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,96.8,0,0,3.2,68.7,31.3,100 +2.15625,2.16,a-pcom-i3,2020-21,West Springfield - Cowing Early Childhood,3320001,3.4,0,3.4,93.1,0,0,0,92.8,7.2,100 +1,1,a-pcom-i3,2020-21,West Springfield - John Ashley,3320005,0,0,0,100,0,0,0,92.3,7.7,100 +1.9375,1.94,a-pcom-i3,2020-21,West Springfield - John R Fausey,3320010,1.5,0,4.6,93.8,0,0,0,96.2,3.8,100 +1,1,a-pcom-i3,2020-21,West Springfield - Memorial,3320025,0,0,0,100,0,0,0,87.2,12.8,100 +1,1,a-pcom-i3,2020-21,West Springfield - Mittineague,3320030,0,0,0,100,0,0,0,93.7,6.3,100 +1,1,a-pcom-i3,2020-21,West Springfield - Philip G Coburn,3320007,1.3,1.3,0,97.4,0,0,0,90.2,9.8,100 +1,1,a-pcom-i3,2020-21,West Springfield - Tatham,3320040,0,0,0,100,0,0,0,88.2,11.8,100 +1.75,1.75,a-pcom-i3,2020-21,West Springfield - West Springfield High,3320505,0.6,0.6,3.7,94.4,0,0.6,0,68.5,31.5,100 +1,1,a-pcom-i3,2020-21,West Springfield - West Springfield Middle,3320305,0,0.9,1.7,97.4,0,0,0,71.5,28.5,100 +1.59375,1.59,a-pcom-i3,2020-21,Westborough - Annie E Fales,3210010,0,1.8,1.8,94.9,0,0,1.5,97.1,2.9,100 +2.09375,2.09,a-pcom-i3,2020-21,Westborough - Elsie A Hastings Elementary,3210025,1.1,5.6,0,93.3,0,0,0,93.9,6.1,100 +2.09375,2.09,a-pcom-i3,2020-21,Westborough - J Harding Armstrong,3210005,1.7,5,0,93.3,0,0,0,98.3,1.7,100 +1.03125,1.03,a-pcom-i3,2020-21,Westborough - Mill Pond School,3210045,0,2.5,0.8,96.7,0,0,0,85.9,14.1,100 +2.21875,2.22,a-pcom-i3,2020-21,Westborough - Sarah W Gibbons Middle,3210305,1.1,2.6,3.4,92.9,0,0,0,75.9,24.1,100 +1.28125,1.28,a-pcom-i3,2020-21,Westborough - Westborough High,3210505,1.4,2,0,95.9,0,0.7,0,66.4,33.6,100 +1,1,a-pcom-i3,2020-21,Westfield - Abner Gibbs,3250020,0,0,0,100,0,0,0,96.4,3.6,100 +2.96875,2.97,a-pcom-i3,2020-21,Westfield - Fort Meadow Early Childhood Center,3250003,0,6.4,3.2,90.5,0,0,0,100,0,100 +1.25,1.25,a-pcom-i3,2020-21,Westfield - Franklin Ave,3250015,0,0,0,96,0,0,4,94.4,5.6,100 +1.9375,1.94,a-pcom-i3,2020-21,Westfield - Highland,3250025,0,2.1,2.1,93.8,2.1,0,0,93.8,6.2,100 +2.03125,2.03,a-pcom-i3,2020-21,Westfield - Munger Hill,3250033,4.9,0,1.6,93.5,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Westfield - Paper Mill,3250036,0,0,2.5,97.5,0,0,0,98.6,1.4,100 +1,1,a-pcom-i3,2020-21,Westfield - Southampton Road,3250040,0,0,2.9,97.1,0,0,0,98.2,1.8,100 +1,1,a-pcom-i3,2020-21,Westfield - Westfield High,3250505,0.7,0.7,0.7,97.9,0,0,0,73.6,26.4,100 +1.28125,1.28,a-pcom-i3,2020-21,Westfield - Westfield Intermediate School,3250075,2,1,1,95.9,0,0,0,84.6,15.4,100 +1,1,a-pcom-i3,2020-21,Westfield - Westfield Middle School,3250310,0,0,1,99,0,0,0,75.3,24.7,100 +1,1,a-pcom-i3,2020-21,Westfield - Westfield Technical Academy,3250605,1.1,0,0,97.8,1.1,0,0,51.6,48.4,100 +1,1,a-pcom-i3,2020-21,Westford - Abbot Elementary,3260004,0,0,2.2,97.8,0,0,0,98.9,1.1,100 +1.96875,1.97,a-pcom-i3,2020-21,Westford - Blanchard Middle,3260310,0,4.7,1.6,93.7,0,0,0,88.7,11.3,100 +1.25,1.25,a-pcom-i3,2020-21,Westford - Col John Robinson,3260025,0,2,2,96,0,0,0,96.4,3.6,100 +1,1,a-pcom-i3,2020-21,Westford - Day Elementary,3260007,0,0,2.3,97.7,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Westford - John A. Crisafulli Elementary School,3260045,0,0,0,100,0,0,0,97.1,2.9,100 +1,1,a-pcom-i3,2020-21,Westford - Nabnasset,3260015,0,2,0,98,0,0,0,95.6,4.4,100 +2.8125,2.81,a-pcom-i3,2020-21,Westford - Rita E. Miller Elementary School,3260055,1.5,7.5,0,91,0,0,0,98.5,1.5,100 +1,1,a-pcom-i3,2020-21,Westford - Stony Brook School,3260330,1.3,0,1.3,97.4,0,0,0,81.7,18.3,100 +1.46875,1.47,a-pcom-i3,2020-21,Westford - Westford Academy,3260505,0,3.5,0.6,95.3,0,0,0.6,60.4,39.6,100 +1,1,a-pcom-i3,2020-21,Westhampton - Westhampton Elementary School,3270005,0,0,0,100,0,0,0,87.3,12.7,100 +1.25,1.25,a-pcom-i3,2020-21,Weston - Country,3300010,0,0,4,96,0,0,0,88.3,11.7,100 +4.8125,4.81,a-pcom-i3,2020-21,Weston - Field Elementary School,3300012,3.8,5.9,3.7,84.6,0,0,2.1,84.8,15.2,100 +3.90625,3.91,a-pcom-i3,2020-21,Weston - Weston High,3300505,1.4,7.4,3.7,87.5,0,0,0,61.4,38.6,100 +3.28125,3.28,a-pcom-i3,2020-21,Weston - Weston Middle,3300305,3.6,4.6,2.3,89.5,0,0,0,72.1,27.9,100 +1.84375,1.84,a-pcom-i3,2020-21,Weston - Woodland,3300015,0,1.6,4.3,94.1,0,0,0,92.5,7.5,100 +1,1,a-pcom-i3,2020-21,Westport - Alice A Macomber,3310015,0,0,0,100,0,0,0,98.2,1.8,100 +1,1,a-pcom-i3,2020-21,Westport - Westport Elementary,3310030,0,0,0,100,0,0,0,92.5,7.5,100 +1,1,a-pcom-i3,2020-21,Westport - Westport Junior/Senior High School,3310515,0,0,0,100,0,0,0,68.5,31.5,100 +1.53125,1.53,a-pcom-i3,2020-21,Westwood - Deerfield School,3350010,0,2.4,2.4,95.1,0,0,0,87,13,100 +1.5,1.5,a-pcom-i3,2020-21,Westwood - Downey,3350012,0,1.7,1.7,95.2,0,0,1.4,94.9,5.1,100 +3.03125,3.03,a-pcom-i3,2020-21,Westwood - E W Thurston Middle,3350305,3.2,1.1,4.3,90.3,0,0,1.1,73.4,26.6,100 +1.34375,1.34,a-pcom-i3,2020-21,Westwood - Martha Jones,3350017,0,4.3,0,95.7,0,0,0,89.9,10.1,100 +1,1,a-pcom-i3,2020-21,Westwood - Paul Hanlon,3350015,0,0,0,100,0,0,0,91.8,8.2,100 +2.6875,2.69,a-pcom-i3,2020-21,Westwood - Westwood High,3350505,3,1.9,3,91.4,0,0,0.7,66.7,33.3,100 +1,1,a-pcom-i3,2020-21,Westwood - Westwood Integrated Preschool,3350050,0,0,0,100,0,0,0,93.6,6.4,100 +1.03125,1.03,a-pcom-i3,2020-21,Westwood - William E Sheehan,3350025,0,3.3,0,96.7,0,0,0,92.6,7.4,100 +1,1,a-pcom-i3,2020-21,Weymouth - Abigail Adams Middle School,3360310,0,1.7,0.9,97.4,0,0,0,70.8,29.2,100 +1,1,a-pcom-i3,2020-21,Weymouth - Academy Avenue,3360005,0,0,0,100,0,0,0,90.9,9.1,100 +1,1,a-pcom-i3,2020-21,Weymouth - Frederick C Murphy,3360050,0,0,0,100,0,0,0,86.8,13.2,100 +3.3125,3.31,a-pcom-i3,2020-21,Weymouth - Johnson Early Childhood Center,3360003,2.1,6.3,2.1,89.4,0,0,0,97.9,2.1,100 +1,1,a-pcom-i3,2020-21,Weymouth - Lawrence W Pingree,3360065,0,0,0,100,0,0,0,96.8,3.2,100 +1,1,a-pcom-i3,2020-21,Weymouth - Ralph Talbot,3360085,0,0,0,100,0,0,0,96.6,3.4,100 +1,1,a-pcom-i3,2020-21,Weymouth - Thomas V Nash,3360060,0,0,3,97,0,0,0,91,9,100 +1,1,a-pcom-i3,2020-21,Weymouth - Thomas W. Hamilton Primary School,3360105,0,0,0,100,0,0,0,91,9,100 +1,1,a-pcom-i3,2020-21,Weymouth - Wessagusset,3360110,0,0,0,100,0,0,0,85,15,100 +1.0625,1.06,a-pcom-i3,2020-21,Weymouth - Weymouth High School,3360505,0.7,1,1,96.6,0.3,0,0.3,65.4,34.6,100 +1,1,a-pcom-i3,2020-21,Weymouth - William Seach,3360080,0,0,0,100,0,0,0,91.2,8.8,100 +1,1,a-pcom-i3,2020-21,Whately - Whately Elementary,3370005,0,0,0,100,0,0,0,97.4,2.6,100 +1.03125,1.03,a-pcom-i3,2020-21,Whitman-Hanson - Hanson Middle School,7800315,1.5,0,1.8,96.7,0,0,0,79.8,20.2,100 +1,1,a-pcom-i3,2020-21,Whitman-Hanson - Indian Head,7800035,0.9,0,1,98.1,0,0,0,91.5,8.5,100 +1.1875,1.19,a-pcom-i3,2020-21,Whitman-Hanson - John H Duval,7800030,1.4,1.4,0.9,96.2,0,0,0,95.5,4.5,100 +1,1,a-pcom-i3,2020-21,Whitman-Hanson - Louise A Conley,7800010,0,0,0.9,99.1,0,0,0,91.7,8.3,100 +1,1,a-pcom-i3,2020-21,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,7800001,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Whitman-Hanson - Whitman Hanson Regional,7800505,1,0,0,99,0,0,0,64.8,35.2,100 +1,1,a-pcom-i3,2020-21,Whitman-Hanson - Whitman Middle,7800310,0.9,0,2.1,97,0,0,0,74.7,25.3,100 +1,1,a-pcom-i3,2020-21,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0.6,0,0.8,98.7,0,0,0,52.8,47.2,100 +1,1,a-pcom-i3,2020-21,Williamsburg - Anne T. Dunphy School,3400020,0,0,0,100,0,0,0,88.8,11.2,100 +1,1,a-pcom-i3,2020-21,Wilmington - Boutwell,3420005,0,2.3,0,97.7,0,0,0,100,0,100 +1.0625,1.06,a-pcom-i3,2020-21,Wilmington - North Intermediate,3420060,0,3.4,0,96.6,0,0,0,96.6,3.4,100 +1,1,a-pcom-i3,2020-21,Wilmington - Shawsheen Elementary,3420025,0,0,0,100,0,0,0,90.8,9.2,100 +1.5625,1.56,a-pcom-i3,2020-21,Wilmington - West Intermediate,3420080,0,5,0,95,0,0,0,89.9,10.1,100 +1.03125,1.03,a-pcom-i3,2020-21,Wilmington - Wildwood,3420015,0,0,0,96.7,0,0,3.3,93.4,6.6,100 +1.53125,1.53,a-pcom-i3,2020-21,Wilmington - Wilmington High,3420505,0.4,1.8,1.8,95.1,0.9,0,0,73.3,26.7,100 +1,1,a-pcom-i3,2020-21,Wilmington - Wilmington Middle School,3420330,0,0,0,100,0,0,0,77.6,22.4,100 +1,1,a-pcom-i3,2020-21,Wilmington - Woburn Street,3420020,0,0,0,100,0,0,0,91,9,100 +1,1,a-pcom-i3,2020-21,Winchendon - Memorial,3430040,2.4,0,0,97.6,0,0,0,97.6,2.4,100 +1,1,a-pcom-i3,2020-21,Winchendon - Murdock Academy for Success,3430405,0,0,0,100,0,0,0,56.5,43.5,100 +1.875,1.88,a-pcom-i3,2020-21,Winchendon - Murdock High School,3430515,3,0,0,94,0,3,0,79,21,100 +1.96875,1.97,a-pcom-i3,2020-21,Winchendon - Murdock Middle School,3430315,0,0,6.3,93.7,0,0,0,75,25,100 +1,1,a-pcom-i3,2020-21,Winchendon - Toy Town Elementary,3430050,0,0,0,100,0,0,0,96.6,3.4,100 +1,1,a-pcom-i3,2020-21,Winchendon - Winchendon PreSchool Program,3430010,0,0,0,100,0,0,0,100,0,100 +1,1,a-pcom-i3,2020-21,Winchester - Ambrose Elementary,3440045,2.1,0,0,97.9,0,0,0,94.6,3.8,100 +1,1,a-pcom-i3,2020-21,Winchester - Lincoln Elementary,3440005,0,0,0,100,0,0,0,90.2,9.8,100 +1.15625,1.16,a-pcom-i3,2020-21,Winchester - Lynch Elementary,3440020,0,2.4,1.2,96.3,0,0,0.1,95.9,4.1,100 +1.40625,1.41,a-pcom-i3,2020-21,Winchester - McCall Middle,3440305,1.5,1.4,1.5,95.5,0,0,0,77.6,22.4,100 +1,1,a-pcom-i3,2020-21,Winchester - Muraco Elementary,3440040,0,0,0,99.8,0,0,0.2,95,5,100 +1,1,a-pcom-i3,2020-21,Winchester - Vinson-Owen Elementary,3440025,0,0,0,98.7,0,0,1.3,88.2,11.8,100 +1,1,a-pcom-i3,2020-21,Winchester - Winchester High School,3440505,0.7,0,0.7,98.6,0,0,0,64.9,35.1,100 +1,1,a-pcom-i3,2020-21,Winthrop - Arthur T. Cummings Elementary School,3460020,0,1.9,0,98.1,0,0,0,89.7,10.3,100 +1,1,a-pcom-i3,2020-21,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,0,0,0,100,0,0,0,92.5,7.5,100 +1.40625,1.41,a-pcom-i3,2020-21,Winthrop - Winthrop High School,3460505,0,3,1.5,95.5,0,0,0,59,41,100 +1,1,a-pcom-i3,2020-21,Winthrop - Winthrop Middle School,3460305,0,1.9,0,98.1,0,0,0,71.8,28.2,100 +1.15625,1.16,a-pcom-i3,2020-21,Woburn - Clyde Reeves,3470040,1.9,0,0,96.3,1.9,0,0,95.6,4.4,100 +1.09375,1.09,a-pcom-i3,2020-21,Woburn - Daniel L Joyce Middle School,3470410,0,1.7,1.7,96.5,0,0,0,76.3,23.7,100 +1,1,a-pcom-i3,2020-21,Woburn - Goodyear Elementary School,3470005,0,0,0,100,0,0,0,90.8,9.2,100 +1,1,a-pcom-i3,2020-21,Woburn - Hurld-Wyman Elementary School,3470020,0,0,0,100,0,0,0,95.5,4.5,100 +1,1,a-pcom-i3,2020-21,Woburn - John F Kennedy Middle School,3470405,0,0,2.4,97.6,0,0,0,67.9,32.1,100 +1,1,a-pcom-i3,2020-21,Woburn - Linscott-Rumford,3470025,0,0,0,100,0,0,0,92.5,7.5,100 +1,1,a-pcom-i3,2020-21,Woburn - Malcolm White,3470055,0,0,0,100,0,0,0,94.3,5.7,100 +1.4375,1.44,a-pcom-i3,2020-21,Woburn - Mary D Altavesta,3470065,1.5,0,3,95.4,0,0,0,88.7,11.3,100 +1,1,a-pcom-i3,2020-21,Woburn - Shamrock,3470043,2.2,0,0,97.8,0,0,0,90.2,9.8,100 +2.25,2.25,a-pcom-i3,2020-21,Woburn - Woburn High,3470505,1.3,2,4,92.8,0,0,0,67.8,32.2,100 +1,1,a-pcom-i3,2020-21,Worcester - Belmont Street Community,3480020,0,0,3.1,96.9,0,0,0,90.6,9.4,100 +6.0625,5,a-pcom-i3,2020-21,Worcester - Burncoat Middle School,3480405,8.3,0,11.2,80.6,0,0,0,68.3,31.7,100 +3.59375,3.59,a-pcom-i3,2020-21,Worcester - Burncoat Senior High,3480503,3.1,0,8.4,88.5,0,0,0,59.7,40.3,100 +4,4,a-pcom-i3,2020-21,Worcester - Burncoat Street,3480035,0,0,12.8,87.2,0,0,0,89.8,10.2,100 +2.125,2.12,a-pcom-i3,2020-21,Worcester - Canterbury,3480045,0,2.3,4.5,93.2,0,0,0,95.5,4.5,100 +3.96875,3.97,a-pcom-i3,2020-21,Worcester - Chandler Elementary Community,3480050,1.6,1.6,9.5,87.3,0,0,0,96.8,3.2,100 +13.8125,5,a-pcom-i3,2020-21,Worcester - Chandler Magnet,3480052,1.5,1.5,41.2,55.8,0,0,0,94.1,5.9,100 +3.6875,3.69,a-pcom-i3,2020-21,Worcester - City View,3480053,2.9,0,8.8,88.2,0,0,0,86.8,13.2,100 +8.375,5,a-pcom-i3,2020-21,Worcester - Claremont Academy,3480350,12,4.9,9.9,73.2,0,0,0,71.9,28.1,100 +8.15625,5,a-pcom-i3,2020-21,Worcester - Clark St Community,3480055,4.3,2.2,19.6,73.9,0,0,0,91.3,8.7,100 +2.90625,2.91,a-pcom-i3,2020-21,Worcester - Columbus Park,3480060,3.7,0,5.6,90.7,0,0,0,88.9,11.1,100 +2.4375,2.44,a-pcom-i3,2020-21,Worcester - Doherty Memorial High,3480512,1.4,0,6.5,92.2,0,0,0,60.7,39.3,100 +4.625,4.62,a-pcom-i3,2020-21,Worcester - Elm Park Community,3480095,1.9,0,11.1,85.2,0,1.9,0,88.9,11.1,100 +1,1,a-pcom-i3,2020-21,Worcester - Flagg Street,3480090,0,2.4,0,97.6,0,0,0,85.4,14.6,100 +4.65625,4.66,a-pcom-i3,2020-21,Worcester - Forest Grove Middle,3480415,6.6,1.7,6.6,85.1,0,0,0,75.7,24.3,100 +1.125,1.12,a-pcom-i3,2020-21,Worcester - Francis J McGrath Elementary,3480177,0,3.6,0,96.4,0,0,0,92.9,7.1,100 +4.25,4.25,a-pcom-i3,2020-21,Worcester - Gates Lane,3480110,3.9,1.9,7.8,86.4,0,0,0,95.1,4.9,100 +4.15625,4.16,a-pcom-i3,2020-21,Worcester - Goddard School/Science Technical,3480100,2.9,0,10.3,86.7,0,0,0,94.4,5.6,100 +6.6875,5,a-pcom-i3,2020-21,Worcester - Grafton Street,3480115,7.1,4.8,9.5,78.6,0,0,0,85.7,14.3,100 +8.84375,5,a-pcom-i3,2020-21,Worcester - Head Start,3480002,5.5,2.7,20.1,71.7,0,0,0,99.1,0.9,100 +5.78125,5,a-pcom-i3,2020-21,Worcester - Heard Street,3480136,7.4,0,7.4,81.5,0,3.7,0,96.3,3.7,100 +2.28125,2.28,a-pcom-i3,2020-21,Worcester - Jacob Hiatt Magnet,3480140,0,2.4,4.9,92.7,0,0,0,92.7,7.3,100 +3.125,3.13,a-pcom-i3,2020-21,Worcester - Lake View,3480145,3.3,3.3,3.3,90,0,0,0,86.7,13.3,100 +5.34375,5,a-pcom-i3,2020-21,Worcester - Lincoln Street,3480160,0,2.4,14.6,82.9,0,0,0,92.7,7.3,100 +3.90625,3.91,a-pcom-i3,2020-21,Worcester - May Street,3480175,3.1,6.3,3.1,87.5,0,0,0,87.5,12.5,100 +1.34375,1.34,a-pcom-i3,2020-21,Worcester - Midland Street,3480185,0,4.3,0,95.7,0,0,0,100,0,100 +3.21875,3.22,a-pcom-i3,2020-21,Worcester - Nelson Place,3480200,3.4,0,6.9,89.7,0,0,0,92.7,7.3,100 +6.125,5,a-pcom-i3,2020-21,Worcester - Norrback Avenue,3480202,7.4,2.8,8.4,80.4,0,0.9,0,95.3,4.7,100 +8.46875,5,a-pcom-i3,2020-21,Worcester - North High,3480515,10.1,3.3,13.7,72.9,0,0,0,66.1,33.9,100 +6.78125,5,a-pcom-i3,2020-21,Worcester - Quinsigamond,3480210,2.2,6.5,13,78.3,0,0,0,87,13,100 +5.625,5,a-pcom-i3,2020-21,Worcester - Rice Square,3480215,2,4,12,82,0,0,0,94,6,100 +4.375,4.38,a-pcom-i3,2020-21,Worcester - Roosevelt,3480220,3,0,11,86,0,0,0,94,6,100 +4.875,4.87,a-pcom-i3,2020-21,Worcester - South High Community,3480520,4.7,0.6,9.7,84.4,0,0.6,0,71.1,28.9,100 +6.4375,5,a-pcom-i3,2020-21,Worcester - Sullivan Middle,3480423,5.7,0,15,79.4,0,0,0,74.2,25.8,100 +1,1,a-pcom-i3,2020-21,Worcester - Tatnuck,3480230,0,0,0,100,0,0,0,91.3,8.7,100 +1.9375,1.94,a-pcom-i3,2020-21,Worcester - Thorndyke Road,3480235,0,0,3.1,93.8,0,3.1,0,96.9,3.1,100 +4.875,4.87,a-pcom-i3,2020-21,Worcester - Union Hill School,3480240,2.2,0,13.3,84.4,0,0,0,82.2,17.8,100 +4.96875,4.97,a-pcom-i3,2020-21,Worcester - University Pk Campus School,3480285,5,3.6,7.2,84.1,0,0,0,66.4,33.6,100 +4.25,4.25,a-pcom-i3,2020-21,Worcester - Vernon Hill School,3480280,8.5,3.4,1.7,86.4,0,0,0,89.8,10.2,100 +3.34375,3.34,a-pcom-i3,2020-21,Worcester - Wawecus Road School,3480026,3.6,0,7.1,89.3,0,0,0,92.9,7.1,100 +3.21875,3.22,a-pcom-i3,2020-21,Worcester - West Tatnuck,3480260,6.2,0,4.1,89.7,0,0,0,91.7,8.3,100 +6.6875,5,a-pcom-i3,2020-21,Worcester - Woodland Academy,3480030,1.8,3.6,16.1,78.6,0,0,0,94.6,5.4,100 +2.40625,2.41,a-pcom-i3,2020-21,Worcester - Worcester Arts Magnet School,3480225,5.1,0,2.6,92.3,0,0,0,92.3,7.7,100 +8.0625,5,a-pcom-i3,2020-21,Worcester - Worcester East Middle,3480420,8.6,1.1,16.1,74.2,0,0,0,62.6,37.4,100 +2.625,2.63,a-pcom-i3,2020-21,Worcester - Worcester Technical High,3480605,3.1,0.5,4.7,91.6,0,0,0,49.4,50.6,100 +1,1,a-pcom-i3,2020-21,Worthington - R. H. Conwell,3490010,0,0,0,100,0,0,0,87,13,100 +1,1,a-pcom-i3,2020-21,Wrentham - Charles E Roderick,3500010,0,0.3,0,99.7,0,0,0,91,9,100 +1,1,a-pcom-i3,2020-21,Wrentham - Delaney,3500003,0,2,0.7,97.3,0,0,0,94.8,5.2,100 +2.71875,2.72,a-pcom-i3,2019-20,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,3.1,1.2,3.1,91.3,0,0,1.3,79.3,20.7,159.8 +1,1,a-pcom-i3,2019-20,Abington - Abington Early Education Program,10001,0,0,0,100,0,0,0,94.8,5.2,19.1 +1.84375,1.84,a-pcom-i3,2019-20,Abington - Abington High,10505,0,1.5,4.5,94.1,0,0,0,75.3,24.7,67.4 +2.09375,2.09,a-pcom-i3,2019-20,Abington - Abington Middle School,10405,1.4,0,4,93.3,0,0,1.4,74.9,25.1,73 +1,1,a-pcom-i3,2019-20,Abington - Beaver Brook Elementary,10020,0,0,0,100,0,0,0,98.3,1.7,58.7 +1,1,a-pcom-i3,2019-20,Abington - Woodsdale Elementary School,10015,0,0,0,100,0,0,0,87,13,38.3 +16.46875,5,a-pcom-i3,2019-20,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,29.7,5.6,10.7,47.3,0,0,6.7,69.8,30.2,74.7 +1.0625,1.06,a-pcom-i3,2019-20,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0,2.3,0.5,96.6,0.5,0,0,75,25,196.2 +1.40625,1.41,a-pcom-i3,2019-20,Acton-Boxborough - Blanchard Memorial School,6000005,1.2,3.2,0,95.5,0,0,0,91,9,80.7 +1.4375,1.44,a-pcom-i3,2019-20,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,2.7,1.9,95.4,0,0,0,92.4,7.6,52.9 +2.375,2.37,a-pcom-i3,2019-20,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,0,7.6,0,92.4,0,0,0,96.8,3.2,31.3 +3.4375,3.44,a-pcom-i3,2019-20,Acton-Boxborough - Luther Conant School,6000030,0,7.4,2.8,89,0,0,0.8,97.2,2.8,71.2 +1.53125,1.53,a-pcom-i3,2019-20,Acton-Boxborough - McCarthy-Towne School,6000015,0,3.2,1.7,95.1,0,0,0,94.4,5.6,70.9 +1.53125,1.53,a-pcom-i3,2019-20,Acton-Boxborough - Merriam School,6000010,0,3.5,1.3,95.1,0,0,0,96.1,3.9,75.1 +2.84375,2.84,a-pcom-i3,2019-20,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,9.1,0,90.9,0,0,0,91.8,8.2,54.4 +1.34375,1.34,a-pcom-i3,2019-20,Acton-Boxborough - Raymond J Grey Junior High,6000405,0.9,2.6,0,95.7,0,0,0.9,81.2,18.8,116.8 +1,1,a-pcom-i3,2019-20,Acushnet - Acushnet Elementary School,30025,3.1,0,0,96.9,0,0,0,92.2,7.8,64.3 +1,1,a-pcom-i3,2019-20,Acushnet - Albert F Ford Middle School,30305,0,0,0,100,0,0,0,75.5,24.5,49 +2.3125,2.31,a-pcom-i3,2019-20,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,4.8,1.7,92.6,0,0,0.9,59.9,40.1,116.9 +1,1,a-pcom-i3,2019-20,Agawam - Agawam Early Childhood Center,50003,0,0,2.2,97.8,0,0,0,99.7,0.3,44.8 +1,1,a-pcom-i3,2019-20,Agawam - Agawam High,50505,1.4,0,0.6,98,0,0,0,68.3,31.7,158 +1,1,a-pcom-i3,2019-20,Agawam - Agawam Junior High,50405,1.3,0,1.1,97.6,0,0,0,70.4,29.6,89.9 +1,1,a-pcom-i3,2019-20,Agawam - Benjamin J Phelps,50020,0.2,0,0,99.8,0,0,0,91.7,8.3,57.8 +1.21875,1.22,a-pcom-i3,2019-20,Agawam - Clifford M Granger,50010,0.3,0,3.7,96.1,0,0,0,97.9,2.1,54.5 +1,1,a-pcom-i3,2019-20,Agawam - James Clark School,50030,1.8,0,0,98.2,0,0,0,95.2,4.8,64.8 +1,1,a-pcom-i3,2019-20,Agawam - Roberta G. Doering School,50303,0.2,0,1.2,98.6,0,0,0,83.6,16.4,80.4 +1,1,a-pcom-i3,2019-20,Agawam - Robinson Park,50025,0.2,0,0,99.8,0,0,0,95.9,4.1,65.7 +6.875,5,a-pcom-i3,2019-20,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,9.4,1,11.5,78,0,0,0,81.2,18.8,95.5 +1,1,a-pcom-i3,2019-20,Amesbury - Amesbury Elementary,70005,0,0,0,100,0,0,0,97.3,2.7,54.6 +1,1,a-pcom-i3,2019-20,Amesbury - Amesbury High,70505,0,0,1.4,97.2,0,0,1.4,73.2,26.8,71.6 +1,1,a-pcom-i3,2019-20,Amesbury - Amesbury Innovation High School,70515,0,0,0,100,0,0,0,41.2,58.8,9.4 +1,1,a-pcom-i3,2019-20,Amesbury - Amesbury Middle,70013,0,0,1.2,98.8,0,0,0,75,25,83.7 +1,1,a-pcom-i3,2019-20,Amesbury - Charles C Cashman Elementary,70010,0,0,0,100,0,0,0,97.6,2.4,62.8 +6.46875,5,a-pcom-i3,2019-20,Amherst - Crocker Farm Elementary,80009,0.9,4.1,12.4,79.3,0,0,3.4,90.7,9.3,89.2 +7.53125,5,a-pcom-i3,2019-20,Amherst - Fort River Elementary,80020,3.5,2.3,15.9,75.9,0,0,2.3,80.9,19.1,85.2 +9.34375,5,a-pcom-i3,2019-20,Amherst - Wildwood Elementary,80050,11.3,5,9.8,70.1,0,0,3.8,83.6,16.4,79.4 +8.75,5,a-pcom-i3,2019-20,Amherst-Pelham - Amherst Regional High,6050505,14.2,2.4,9.8,72,0,0,1.6,62.9,37.1,161.9 +10.8125,5,a-pcom-i3,2019-20,Amherst-Pelham - Amherst Regional Middle School,6050405,12.9,1.4,18.8,65.4,0,0,1.5,64.5,35.5,88 +2.59375,2.59,a-pcom-i3,2019-20,Andover - Andover High,90505,0.5,2.4,5,91.7,0,0,0.5,71.6,28.4,212.4 +1,1,a-pcom-i3,2019-20,Andover - Andover West Middle,90310,0,0,2.5,97.5,0,0,0,80.5,19.5,81.2 +2.09375,2.09,a-pcom-i3,2019-20,Andover - Bancroft Elementary,90003,0,5.6,1.1,93.3,0,0,0,94,6,89.1 +1.5625,1.56,a-pcom-i3,2019-20,Andover - Doherty Middle,90305,0,2.5,1.3,95,0,0,1.3,84.9,15.1,79.3 +1.21875,1.22,a-pcom-i3,2019-20,Andover - Henry C Sanborn Elementary,90010,0,1.8,2.1,96.1,0,0,0,91.1,8.9,56.3 +1.6875,1.69,a-pcom-i3,2019-20,Andover - High Plain Elementary,90004,0,3.7,1.7,94.6,0,0,0,95.1,4.9,81.5 +5.1875,5,a-pcom-i3,2019-20,Andover - Shawsheen School,90005,0,11.7,4.9,83.4,0,0,0,95.6,4.4,37.1 +1,1,a-pcom-i3,2019-20,Andover - South Elementary,90020,0,1.3,0.6,98.1,0,0,0,94.1,5.9,70 +1.625,1.63,a-pcom-i3,2019-20,Andover - West Elementary,90025,1,1.3,1.9,94.8,1,0,0,90.7,9.3,104.8 +1.0625,1.06,a-pcom-i3,2019-20,Andover - Wood Hill Middle School,90350,0,1.4,2,96.6,0,0,0,78.8,21.2,71.2 +6.4375,5,a-pcom-i3,2019-20,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,5.7,3,9,79.4,0,0,3,72.7,27.3,67 +2.40625,2.41,a-pcom-i3,2019-20,Arlington - Arlington High,100505,1.3,1.9,3.9,92.3,0,0,0.6,57.1,42.9,155.4 +4.28125,4.28,a-pcom-i3,2019-20,Arlington - Brackett,100010,0,4.6,3.1,86.3,1.5,1.5,3.1,93.8,6.2,65.5 +2.125,2.12,a-pcom-i3,2019-20,Arlington - Cyrus E Dallin,100025,0,5.1,0,93.2,0,0,1.7,91.8,6.5,58.9 +1.78125,1.78,a-pcom-i3,2019-20,Arlington - Gibbs School,100305,1.6,0.9,1.6,94.3,0,0,1.6,79.2,20.8,61.6 +2.625,2.63,a-pcom-i3,2019-20,Arlington - Hardy,100030,0,2.1,6.3,91.6,0,0,0,93.7,6.3,47.9 +1.21875,1.22,a-pcom-i3,2019-20,Arlington - John A Bishop,100005,2,0,0,96.1,0,0,2,93.8,6.2,50.7 +1,1,a-pcom-i3,2019-20,Arlington - M Norcross Stratton,100055,0,0,1.5,97,0,0,1.5,92,8,67.7 +2.09375,2.09,a-pcom-i3,2019-20,Arlington - Menotomy Preschool,100038,0,0,0,93.3,0,0,6.7,100,0,29.8 +2.5625,2.56,a-pcom-i3,2019-20,Arlington - Ottoson Middle,100410,2.8,4.4,0.9,91.8,0,0,0,73.1,26.9,105.6 +4.90625,4.91,a-pcom-i3,2019-20,Arlington - Peirce,100045,2.5,8.4,2.5,84.3,0,0,2.5,96.3,3.7,40.7 +1.46875,1.47,a-pcom-i3,2019-20,Arlington - Thompson,100050,3.1,1.6,0,95.3,0,0,0,87.6,12.4,64.1 +1.25,1.25,a-pcom-i3,2019-20,Ashburnham-Westminster - Briggs Elementary,6100025,1.3,0,0.2,96,0,0,2.5,88,12,80 +1,1,a-pcom-i3,2019-20,Ashburnham-Westminster - Meetinghouse School,6100010,0,0,0.8,99.2,0,0,0,97.3,2.7,24.7 +1.5625,1.56,a-pcom-i3,2019-20,Ashburnham-Westminster - Oakmont Regional High School,6100505,3.6,0,1.4,95,0,0,0,58.9,41.1,83.4 +1,1,a-pcom-i3,2019-20,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0.3,99.7,0,0,0,71.7,28.3,60.8 +1,1,a-pcom-i3,2019-20,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,2.6,97.4,0,0,0,89.1,10.9,45.8 +1,1,a-pcom-i3,2019-20,Ashland - Ashland High,140505,1.2,0,0,97.6,0,0,1.2,61.4,38.6,82.9 +1.21875,1.22,a-pcom-i3,2019-20,Ashland - Ashland Middle,140405,0,2.6,1.3,96.1,0,0,0,67.8,32.2,76.3 +1,1,a-pcom-i3,2019-20,Ashland - David Mindess,140015,0,0,1.3,98.7,0,0,0,87.2,12.8,79.6 +1,1,a-pcom-i3,2019-20,Ashland - Henry E Warren Elementary,140010,0,3.2,0,96.8,0,0,0,97.1,2.9,94.5 +2.1875,2.19,a-pcom-i3,2019-20,Ashland - William Pittaway Elementary,140005,0,3.5,3.5,93,0,0,0,98.9,1.1,28.4 +1.625,1.63,a-pcom-i3,2019-20,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0.6,0,4.5,94.8,0,0,0,49.9,50.1,154.5 +1,1,a-pcom-i3,2019-20,Athol-Royalston - Athol Community Elementary School,6150020,1.4,0,0,98.6,0,0,0,93.9,6.1,73.7 +1,1,a-pcom-i3,2019-20,Athol-Royalston - Athol High,6150505,0,0,0,100,0,0,0,68.8,31.2,50.9 +1,1,a-pcom-i3,2019-20,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,2.1,97.9,0,0,0,70.2,29.8,46.9 +1,1,a-pcom-i3,2019-20,Athol-Royalston - Royalston Community School,6150050,0,0,0,100,0,0,0,96.3,3.7,16.3 +1.4375,1.44,a-pcom-i3,2019-20,Atlantis Charter (District) - Atlantis Charter School,4910550,1.7,1.2,0,95.4,0.6,0,1.2,83.8,16.2,172.6 +1,1,a-pcom-i3,2019-20,Attleboro - A. Irvin Studley Elementary School,160001,0,0,2,98,0,0,0,98,2,51.2 +11.3125,5,a-pcom-i3,2019-20,Attleboro - Attleboro Community Academy,160515,0,0,36.2,63.8,0,0,0,94.1,5.9,3.4 +2.125,2.12,a-pcom-i3,2019-20,Attleboro - Attleboro High,160505,2.1,0,4.2,93.2,0,0,0.5,72.1,27.9,189.5 +1,1,a-pcom-i3,2019-20,Attleboro - Cyril K. Brennan Middle School,160315,0,0,1.6,97.6,0,0,0.8,84.5,15.5,63.4 +1.09375,1.09,a-pcom-i3,2019-20,Attleboro - Early Learning Center,160008,0,0,0,96.5,0,0,3.5,100,0,28.8 +1.5,1.5,a-pcom-i3,2019-20,Attleboro - Hill-Roberts Elementary School,160045,0,2.4,2.4,95.2,0,0,0,95.2,4.8,41.9 +2.15625,2.16,a-pcom-i3,2019-20,Attleboro - Hyman Fine Elementary School,160040,0,0,6.9,93.1,0,0,0,89.9,10.1,43.4 +1.28125,1.28,a-pcom-i3,2019-20,Attleboro - Peter Thacher Elementary School,160050,1.4,1.4,0,95.9,0,0,1.4,92,8,74 +1,1,a-pcom-i3,2019-20,Attleboro - Robert J. Coelho Middle School,160305,3.2,0,0,96.8,0,0,0,77.3,22.7,50.6 +1.34375,1.34,a-pcom-i3,2019-20,Attleboro - Thomas Willett Elementary School,160035,0,2.2,2.2,95.7,0,0,0,93.5,4.3,46.3 +1.59375,1.59,a-pcom-i3,2019-20,Attleboro - Wamsutta Middle School,160320,0,0,3,94.9,2,0,0,77.7,22.3,49.3 +1.0625,1.06,a-pcom-i3,2019-20,Auburn - Auburn Middle,170305,0,1.9,1.4,96.6,0,0,0,78.3,21.7,69 +1.625,1.63,a-pcom-i3,2019-20,Auburn - Auburn Senior High,170505,2,0.4,1.9,94.8,0,0,0.9,70.7,29.3,105.5 +1,1,a-pcom-i3,2019-20,Auburn - Bryn Mawr,170010,0,0,0,100,0,0,0,100,0,45.1 +1.3125,1.31,a-pcom-i3,2019-20,Auburn - Pakachoag School,170025,2.6,1.7,0,95.8,0,0,0,100,0,39.2 +1,1,a-pcom-i3,2019-20,Auburn - Swanson Road Intermediate School,170030,0,0,1.3,98.7,0,0,0,96,4,75.3 +4.5625,4.56,a-pcom-i3,2019-20,Avon - Avon Middle High School,180510,6.2,4.2,4.2,85.4,0,0,0,68.8,31.2,48.1 +1,1,a-pcom-i3,2019-20,Avon - Ralph D Butler,180010,2,0,0,98,0,0,0,98,2,51 +1.8125,1.81,a-pcom-i3,2019-20,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,1.9,0,3.8,94.2,0,0,0,57.5,42.5,52 +4.09375,4.09,a-pcom-i3,2019-20,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,1.9,0,7.5,86.9,0,0,3.7,75.7,24.3,53.6 +1,1,a-pcom-i3,2019-20,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,1.9,0,98.1,0,0,0,94.6,5.4,51.8 +1,1,a-pcom-i3,2019-20,Ayer Shirley School District - Page Hilltop Elementary School,6160002,0,2.9,0,97.1,0,0,0,94.1,5.9,68.3 +1.15625,1.16,a-pcom-i3,2019-20,Barnstable - Barnstable Community Innovation School,200012,0,0,0,96.3,1.3,0,2.5,97.5,2.5,40 +2.1875,2.19,a-pcom-i3,2019-20,Barnstable - Barnstable High,200505,2.1,1.7,2.9,93,0,0,0.4,66.9,33.1,241.2 +1,1,a-pcom-i3,2019-20,Barnstable - Barnstable Intermediate School,200315,1,0,1,98,0,0,0,81.7,18.3,98.2 +1,1,a-pcom-i3,2019-20,Barnstable - Barnstable United Elementary School,200050,0.9,0,0.9,97.4,0,0,0.9,92.1,7.9,113.7 +1,1,a-pcom-i3,2019-20,Barnstable - Centerville Elementary,200010,0,0,2.5,97.5,0,0,0,92,8,40.5 +1,1,a-pcom-i3,2019-20,Barnstable - Enoch Cobb Early Learning Center,200001,0,0,2.6,97.4,0,0,0,100,0,37.9 +1.59375,1.59,a-pcom-i3,2019-20,Barnstable - Hyannis West Elementary,200025,0,3.4,1.7,94.9,0,0,0,96.2,3.8,59.3 +1,1,a-pcom-i3,2019-20,Barnstable - West Barnstable Elementary,200005,0,0,0,100,0,0,0,93.6,6.4,34.9 +1,1,a-pcom-i3,2019-20,Barnstable - West Villages Elementary School,200045,1.5,0,0,97.5,0.9,0,0,96.5,3.5,65 +10.65625,5,a-pcom-i3,2019-20,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,22.3,0,8.7,65.9,1.5,1.5,0,55.6,44.4,64.6 +2.25,2.25,a-pcom-i3,2019-20,Bedford - Bedford High,230505,4.1,0.8,2.3,92.8,0,0,0,67.4,32.6,122.6 +1.5,1.5,a-pcom-i3,2019-20,Bedford - John Glenn Middle,230305,1.1,1.1,2.5,95.2,0,0,0,74.1,25.9,87.9 +4.28125,4.28,a-pcom-i3,2019-20,Bedford - Lt Elezer Davis,230010,4.1,5,3.5,86.3,0,0,1,93.3,6.7,97.2 +2.09375,2.09,a-pcom-i3,2019-20,Bedford - Lt Job Lane School,230012,0,4.5,1.1,93.3,0,0,1.1,89.3,10.7,88.9 +1,1,a-pcom-i3,2019-20,Belchertown - Belchertown High,240505,0,0,2.5,97.5,0,0,0,71.9,28.1,81.5 +1,1,a-pcom-i3,2019-20,Belchertown - Chestnut Hill Community School,240006,0,0,0,100,0,0,0,82.8,17.2,60.6 +1,1,a-pcom-i3,2019-20,Belchertown - Cold Spring,240005,0,0,2.5,97.5,0,0,0,96.5,3.5,40 +1,1,a-pcom-i3,2019-20,Belchertown - Jabish Middle School,240025,0,0,2,98,0,0,0,80.6,19.4,51 +1,1,a-pcom-i3,2019-20,Belchertown - Swift River Elementary,240018,0,0,0,100,0,0,0,94.3,5.7,60 +1,1,a-pcom-i3,2019-20,Bellingham - Bellingham Early Childhood Center,250003,0,0,0,100,0,0,0,100,0,17 +1,1,a-pcom-i3,2019-20,Bellingham - Bellingham High School,250505,1,2,0,97,0,0,0,67.7,32.3,100.2 +1,1,a-pcom-i3,2019-20,Bellingham - Bellingham Memorial School,250315,0,0,0,100,0,0,0,79.6,20.4,83.5 +1,1,a-pcom-i3,2019-20,Bellingham - Joseph F DiPietro Elementary School,250020,0,0,0,100,0,0,0,100,0,48 +1,1,a-pcom-i3,2019-20,Bellingham - Keough Memorial Academy,250510,0,0,0,100,0,0,0,60.3,39.7,14.9 +1,1,a-pcom-i3,2019-20,Bellingham - Stall Brook,250025,0,0,0,100,0,0,0,96.4,3.6,54.8 +2.5,2.5,a-pcom-i3,2019-20,Belmont - Belmont High,260505,0.9,4.5,1.7,92,0,0,0.9,72.1,27.9,115.2 +3.1875,3.19,a-pcom-i3,2019-20,Belmont - Daniel Butler,260015,2,2.3,0,89.8,0,0,5.9,84.6,15.4,44.2 +1.90625,1.91,a-pcom-i3,2019-20,Belmont - Mary Lee Burbank,260010,1.9,0,2.1,93.9,0,0,2.1,89.5,10.5,47.6 +1.875,1.88,a-pcom-i3,2019-20,Belmont - Roger E Wellington,260035,2.5,3.5,0,94,0,0,0,91,9,80 +1.0625,1.06,a-pcom-i3,2019-20,Belmont - Winn Brook,260005,0,0,3.4,96.6,0,0,0,94.5,5.5,52.8 +5.6875,5,a-pcom-i3,2019-20,Belmont - Winthrop L Chenery Middle,260305,3,6.7,2.5,81.8,0,0,6,72.4,27.6,134.3 +17.125,5,a-pcom-i3,2019-20,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,44.8,4,6,45.2,0,0,0,86.5,13.5,50.4 +1,1,a-pcom-i3,2019-20,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,1,1,0,98,0,0,0,88.8,11.2,98 +2.25,2.25,a-pcom-i3,2019-20,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,2.5,2.4,2.2,92.8,0,0,0,86.9,13.1,45.5 +1,1,a-pcom-i3,2019-20,Berkley - Berkley Community School,270010,0,0,0,100,0,0,0,96.9,3.1,64.7 +1,1,a-pcom-i3,2019-20,Berkley - Berkley Middle School,270305,0,0,0,100,0,0,0,79.3,20.7,43.5 +1.78125,1.78,a-pcom-i3,2019-20,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,1.9,0,1.9,94.3,0,0,1.9,72,28,53 +1.28125,1.28,a-pcom-i3,2019-20,Berkshire Hills - Monument Mt Regional High,6180505,1.4,0,1.4,95.9,0,0,1.4,67,33,72.8 +1.53125,1.53,a-pcom-i3,2019-20,Berkshire Hills - Monument Valley Regional Middle School,6180310,1.6,1.6,1.6,95.1,0,0,0,70.8,29.2,60.8 +1.3125,1.31,a-pcom-i3,2019-20,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,1.4,1.4,1.4,95.8,0,0,0,87.2,12.8,71.1 +1,1,a-pcom-i3,2019-20,Berlin-Boylston - Berlin Memorial School,6200005,0,0,0,100,0,0,0,92.1,7.9,31.7 +1,1,a-pcom-i3,2019-20,Berlin-Boylston - Boylston Elementary School,6200010,0,0,0,97.5,0,0,2.5,93.7,6.3,39.5 +1,1,a-pcom-i3,2019-20,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,98.6,0,0,1.4,74.7,25.3,71.6 +1,1,a-pcom-i3,2019-20,Beverly - Ayers/Ryal Side School,300055,0,0,0,100,0,0,0,97.9,2.1,48.2 +1,1,a-pcom-i3,2019-20,Beverly - Beverly High,300505,1.3,0,0.5,98.1,0,0,0,71,29,148.9 +1.625,1.63,a-pcom-i3,2019-20,Beverly - Beverly Middle School,300305,0.6,0.6,3.9,94.8,0,0,0,76.5,23.5,153.9 +1,1,a-pcom-i3,2019-20,Beverly - Centerville Elementary,300010,0,2.2,0,97.8,0,0,0,88.9,11.1,45 +1,1,a-pcom-i3,2019-20,Beverly - Cove Elementary,300015,0,0,0,100,0,0,0,95.6,4.4,68.3 +1,1,a-pcom-i3,2019-20,Beverly - Hannah Elementary,300033,0,0,0,100,0,0,0,90.9,9.1,43.9 +1,1,a-pcom-i3,2019-20,Beverly - McKeown School,300002,0,0,0,100,0,0,0,100,0,36.3 +1,1,a-pcom-i3,2019-20,Beverly - North Beverly Elementary,300040,0,0,0,100,0,0,0,91.6,8.4,47.4 +1,1,a-pcom-i3,2019-20,Billerica - Billerica Memorial High School,310505,0.4,0.5,0.4,98.6,0,0,0,76.8,23.2,228.7 +1,1,a-pcom-i3,2019-20,Billerica - Frederick J Dutile,310007,0,0,2.7,97.3,0,0,0,98.5,1.5,37.5 +1,1,a-pcom-i3,2019-20,Billerica - Hajjar Elementary,310026,0,0,0,100,0,0,0,94.9,5.1,53.3 +1,1,a-pcom-i3,2019-20,Billerica - John F Kennedy,310012,0,0,0,100,0,0,0,94,6,51.3 +1,1,a-pcom-i3,2019-20,Billerica - Locke Middle,310310,0,0,0,100,0,0,0,82.6,17.4,70.5 +1,1,a-pcom-i3,2019-20,Billerica - Marshall Middle School,310305,2.3,0,0,97.7,0,0,0,79.3,20.7,87.8 +1,1,a-pcom-i3,2019-20,Billerica - Parker,310015,0,0,0,98.7,0,0,1.3,95,5,77 +1,1,a-pcom-i3,2019-20,Billerica - Thomas Ditson,310005,0,1.3,0,98.7,0,0,0,95.1,4.9,75.8 +1,1,a-pcom-i3,2019-20,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0.1,99.9,0,0,0,58,42,163.5 +1,1,a-pcom-i3,2019-20,Blackstone-Millville - A F Maloney,6220015,0,1.6,0,98.4,0,0,0,98,2,32.2 +1.625,1.63,a-pcom-i3,2019-20,Blackstone-Millville - Blackstone Millville RHS,6220505,1.7,0,3.5,94.8,0,0,0,62.3,37.7,57.3 +1.40625,1.41,a-pcom-i3,2019-20,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,4.5,95.5,0,0,0,84.7,15.3,44.4 +1.53125,1.53,a-pcom-i3,2019-20,Blackstone-Millville - John F Kennedy Elementary,6220008,0,1.6,3.2,95.1,0,0,0,91.2,8.8,30.8 +1,1,a-pcom-i3,2019-20,Blackstone-Millville - Millville Elementary,6220010,0,0,0,100,0,0,0,95.9,4.1,40.4 +2.375,2.37,a-pcom-i3,2019-20,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,2.5,2.5,1.7,92.4,0,0,0.8,53,47,118 +13.90625,5,a-pcom-i3,2019-20,Boston - Another Course To College,350541,33.4,3.8,3.6,55.5,0,0,3.7,70.4,29.6,26.9 +18.46875,5,a-pcom-i3,2019-20,Boston - Baldwin Early Learning Center,350003,20.4,15.9,22.8,40.9,0,0,0,95.5,4.5,44.2 +8.40625,5,a-pcom-i3,2019-20,Boston - Beethoven,350021,16.5,2.6,7.8,73.1,0,0,0,91.6,8.4,38.3 +16.3125,5,a-pcom-i3,2019-20,Boston - Blackstone,350390,24.5,2.1,23.4,47.8,1.1,0,1.1,82.9,17.1,94.2 +22.59375,5,a-pcom-i3,2019-20,Boston - Boston Adult Academy,350548,48.7,10.5,9.7,27.7,0,3.5,0,51.8,48.2,28.8 +16.34375,5,a-pcom-i3,2019-20,Boston - Boston Arts Academy,350546,25.8,7.7,18.7,47.7,0,0,0,67.6,32.4,63.9 +15.53125,5,a-pcom-i3,2019-20,Boston - Boston Collaborative High School,350755,22.5,5.7,21.5,50.3,0,0,0,60.7,39.3,17.9 +16.3125,5,a-pcom-i3,2019-20,Boston - Boston Community Leadership Academy,350558,29.9,9,13.3,47.8,0,0,0,67.3,32.7,66.7 +14.875,5,a-pcom-i3,2019-20,Boston - Boston International High School,350507,20.7,6.3,20.6,52.4,0,0,0,60.2,39.8,62.9 +10.8125,5,a-pcom-i3,2019-20,Boston - Boston Latin,350560,18.9,8.2,6.3,65.4,0,0.6,0.6,59.1,40.9,158.7 +13.375,5,a-pcom-i3,2019-20,Boston - Boston Latin Academy,350545,19.5,13.8,8.7,57.2,0,0,0.8,62.8,37.2,124.4 +14.21875,5,a-pcom-i3,2019-20,Boston - Boston Teachers Union School,350012,25.7,5.7,14.1,54.5,0,0,0,82.9,17.1,34.9 +14.84375,5,a-pcom-i3,2019-20,Boston - Brighton High,350505,30.8,2.6,14.1,52.5,0,0,0,66.6,33.4,78.1 +11.375,5,a-pcom-i3,2019-20,Boston - Carter School,350036,31.8,4.5,0,63.6,0,0,0,81.8,18.2,22 +22.75,5,a-pcom-i3,2019-20,Boston - Charles H Taylor,350054,63.2,6.4,3.3,27.2,0,0,0,85.5,14.5,61.5 +15.4375,5,a-pcom-i3,2019-20,Boston - Charles Sumner,350052,24.6,1.4,23.4,50.6,0,0,0,90.2,9.8,73.1 +13.5625,5,a-pcom-i3,2019-20,Boston - Charlestown High,350515,27.6,9,6.2,56.6,0.7,0,0,62.2,37.8,144.9 +13.96875,5,a-pcom-i3,2019-20,Boston - Clarence R Edwards Middle,350430,14.3,10.8,19.6,55.3,0,0,0,64.3,35.7,55.9 +21.84375,5,a-pcom-i3,2019-20,Boston - Community Academy,350518,33.6,20.7,10.4,30.1,5.2,0,0,63.8,36.2,19.3 +17.65625,5,a-pcom-i3,2019-20,Boston - Community Academy of Science and Health,350581,47.7,5.3,3.5,43.5,0,0,0,61.2,38.8,56.6 +12.71875,5,a-pcom-i3,2019-20,Boston - Condon K-8,350146,24,5,11.8,59.3,0,0,0,81.9,18.1,119.3 +12.65625,5,a-pcom-i3,2019-20,Boston - Curley K-8 School,350020,20.3,1.4,17.4,59.5,1.4,0,0,87.5,12.5,143.6 +8.15625,5,a-pcom-i3,2019-20,Boston - Curtis Guild,350062,12.4,3,10.7,73.9,0,0,0,81.9,18.1,37.5 +10.5625,5,a-pcom-i3,2019-20,Boston - Dante Alighieri Montessori School,350066,9.1,0,24.7,66.2,0,0,0,79,21,16.2 +22.3125,5,a-pcom-i3,2019-20,Boston - David A Ellis,350072,49.5,1.9,18.3,28.6,1.8,0,0,76.2,23.8,54.8 +17.75,5,a-pcom-i3,2019-20,Boston - Dearborn,350074,37.3,6,12,43.2,1.5,0,0,62.7,37.3,66.8 +9.125,5,a-pcom-i3,2019-20,Boston - Dennis C Haley,350077,15.5,8.7,5,70.8,0,0,0,91.4,8.6,57.9 +8.3125,5,a-pcom-i3,2019-20,Boston - Donald Mckay,350080,4.6,4.6,16.1,73.4,0,0,1.2,81.2,18.8,86.4 +18.46875,5,a-pcom-i3,2019-20,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,40.8,4.6,13.8,40.9,0,0,0,84.1,15.9,44.1 +9.09375,5,a-pcom-i3,2019-20,Boston - Dr. William Henderson Lower,350266,19.7,4.7,4.7,70.9,0,0,0,85.9,14.1,64.1 +8.09375,5,a-pcom-i3,2019-20,Boston - Dr. William Henderson Upper,350426,15.4,4.7,4.7,74.1,0,1.2,0,74.3,25.7,84.7 +16.5625,5,a-pcom-i3,2019-20,Boston - ELC - West Zone,350006,32.4,5.9,11.8,47,2.9,0,0,85.3,14.7,33.9 +15.09375,5,a-pcom-i3,2019-20,Boston - East Boston Early Childhood Center,350009,11.6,4.3,30.2,51.7,0,2.2,0,92.6,7.4,46.4 +10.09375,5,a-pcom-i3,2019-20,Boston - East Boston High,350530,11,2.4,18.9,67.7,0,0,0,59,41,126.9 +13.40625,5,a-pcom-i3,2019-20,Boston - Edison K-8,350375,22.1,6.2,14.5,57.1,0,0,0,77,23,96.2 +9.78125,5,a-pcom-i3,2019-20,Boston - Edward Everett,350088,19.4,8.9,3,68.7,0,0,0,86.5,13.5,33.5 +8.34375,5,a-pcom-i3,2019-20,Boston - Eliot Elementary,350096,15.5,4.2,5.6,73.3,0,0,1.4,89.8,10.2,71.2 +15.9375,5,a-pcom-i3,2019-20,Boston - Ellis Mendell,350100,18,7.8,25.2,49,0,0,0,95.6,4.4,38.7 +16.25,5,a-pcom-i3,2019-20,Boston - Excel High School,350522,35.1,9.1,6.5,48,1.3,0,0,63.7,36.3,77.2 +17.75,5,a-pcom-i3,2019-20,Boston - Fenway High School,350540,33.3,5.9,15.7,43.2,0,2,0,54.8,45.2,51 +11.3125,5,a-pcom-i3,2019-20,Boston - Franklin D Roosevelt,350116,22.8,3.8,9.6,63.8,0,0,0,92.4,7.6,52.5 +14.5,5,a-pcom-i3,2019-20,Boston - Gardner Pilot Academy,350326,26.8,1.9,17.6,53.6,0,0,0,86.1,13.9,51 +10,5,a-pcom-i3,2019-20,Boston - George H Conley,350122,26.2,2.6,3.1,68,0,0,0,86.8,13.2,38.1 +22.53125,5,a-pcom-i3,2019-20,Boston - Greater Egleston Community High School,350543,38.8,5.4,27.9,27.9,0,0,0,72.1,27.9,17.9 +8.34375,5,a-pcom-i3,2019-20,Boston - Harvard-Kent,350200,8,12.4,6.3,73.3,0,0,0,78.1,21.9,64.1 +25.8125,5,a-pcom-i3,2019-20,Boston - Haynes Early Education Center,350010,65.2,4.4,13,17.4,0,0,0,82.7,17.3,45.9 +15.59375,5,a-pcom-i3,2019-20,Boston - Henry Grew,350135,46.1,0,3.8,50.1,0,0,0,84.5,15.5,26 +19.09375,5,a-pcom-i3,2019-20,Boston - Higginson,350015,28.1,9,24,38.9,0,0,0,88,12,33.3 +21.65625,5,a-pcom-i3,2019-20,Boston - Higginson/Lewis K-8,350377,59.1,2,8.1,30.7,0,0,0,81.7,18.3,48.9 +8.84375,5,a-pcom-i3,2019-20,Boston - Horace Mann School for the Deaf,350750,11.8,5.9,10.6,71.7,0,0,0,83.5,16.5,84.6 +9.65625,5,a-pcom-i3,2019-20,Boston - Hugh Roe O'Donnell,350141,1.7,3.7,25.5,69.1,0,0,0,80,20,27.5 +13.28125,5,a-pcom-i3,2019-20,Boston - Jackson Mann,350013,26.2,5.4,10.8,57.5,0,0,0,81.6,18.4,91.6 +19.3125,5,a-pcom-i3,2019-20,Boston - James J Chittick,350154,42.7,5.8,9.5,38.2,2,0,1.9,86.6,13.4,52 +8.3125,5,a-pcom-i3,2019-20,Boston - James Otis,350156,8.9,2.1,15.6,73.4,0,0,0,82.8,17.2,45 +20.46875,5,a-pcom-i3,2019-20,Boston - James P Timilty Middle,350485,37.9,2.4,25.2,34.5,0,0,0,65.2,34.8,39.7 +17.59375,5,a-pcom-i3,2019-20,Boston - James W Hennigan,350153,29.5,1.2,25.6,43.7,0,0,0,81.8,18.2,82.1 +16.46875,5,a-pcom-i3,2019-20,Boston - Jeremiah E Burke High,350525,44.3,1.4,7,47.3,0,0,0,63.9,36.1,71.3 +15,5,a-pcom-i3,2019-20,Boston - John D Philbrick,350172,31.1,4.7,12.2,52,0,0,0,85.1,14.9,21.2 +11.25,5,a-pcom-i3,2019-20,Boston - John F Kennedy,350166,23.9,0,12.1,64,0,0,0,78.1,21.9,41.3 +14.46875,5,a-pcom-i3,2019-20,Boston - John W McCormack,350179,29.7,1.8,14.8,53.7,0,0,0,70.3,29.7,54 +12.4375,5,a-pcom-i3,2019-20,Boston - John Winthrop,350180,28.6,2.9,8.4,60.2,0,0,0,86.1,13.9,35.1 +23.3125,5,a-pcom-i3,2019-20,Boston - Joseph J Hurley,350182,11.7,0,62.9,25.4,0,0,0,88.4,11.6,42.9 +15.21875,5,a-pcom-i3,2019-20,Boston - Joseph Lee,350183,37.6,3.7,6.7,51.3,0.7,0,0,79.2,20.8,134.2 +9.21875,5,a-pcom-i3,2019-20,Boston - Joseph P Manning,350184,25.8,0,3.7,70.5,0,0,0,77.9,22.1,27.1 +12.5,5,a-pcom-i3,2019-20,Boston - Joseph P Tynan,350181,26.1,0,12.2,60,0,0,1.7,89.7,10.3,57 +20.09375,5,a-pcom-i3,2019-20,Boston - Josiah Quincy,350286,13.9,46.5,4,35.7,0,0,0,84.4,15.6,101 +5.0625,5,a-pcom-i3,2019-20,Boston - Joyce Kilmer,350190,11.6,0,4.6,83.8,0,0,0,84,16,62.7 +21.59375,5,a-pcom-i3,2019-20,Boston - King K-8,350376,58.2,1.2,9.7,30.9,0,0,0,72.8,27.2,82.3 +17.375,5,a-pcom-i3,2019-20,Boston - Lee Academy,350001,36.3,4.5,14.8,44.4,0,0,0,78.3,21.7,44.1 +21.59375,5,a-pcom-i3,2019-20,Boston - Lilla G. Frederick Middle School,350383,38,5.4,25.7,30.9,0,0,0,72.9,27.1,73.8 +7.5625,5,a-pcom-i3,2019-20,Boston - Lyndon,350262,13.9,0,8.6,75.8,1.7,0,0,81.1,18.9,57.5 +8.6875,5,a-pcom-i3,2019-20,Boston - Lyon K-8,350004,13.9,8.4,2.8,72.2,0,0,2.8,77.9,22.1,35.9 +14.5,5,a-pcom-i3,2019-20,Boston - Lyon Upper 9-12,350655,32.6,4.6,9.2,53.6,0,0,0,48.8,51.2,43.1 +17.375,5,a-pcom-i3,2019-20,Boston - Madison Park High,350537,39.2,1.7,14.7,44.4,0,0,0,51.6,48.4,175.5 +2.5625,2.56,a-pcom-i3,2019-20,Boston - Manassah E Bradley,350215,2.8,0,5.5,91.8,0,0,0,85,15,36.4 +16.96875,5,a-pcom-i3,2019-20,Boston - Margarita Muniz Academy,350549,0,2.9,51.4,45.7,0,0,0,71.5,28.5,35 +12.625,5,a-pcom-i3,2019-20,Boston - Mario Umana Academy,350656,10.1,2.8,26.6,59.6,0.9,0,0,76.1,23.9,108.7 +18.78125,5,a-pcom-i3,2019-20,Boston - Mather,350227,40,13.7,4.8,39.9,0,0,1.5,81.5,18.5,65.3 +17.6875,5,a-pcom-i3,2019-20,Boston - Mattahunt Elementary School,350016,47.2,1.2,8.2,43.4,0,0,0,84.8,15.2,84.8 +15.9375,5,a-pcom-i3,2019-20,Boston - Maurice J Tobin,350229,17,4.4,29.6,49,0,0,0,87.1,12.9,46.9 +15.03125,5,a-pcom-i3,2019-20,Boston - Michael J Perkins,350231,40.1,0,8,51.9,0,0,0,88,12,24.9 +19.1875,5,a-pcom-i3,2019-20,Boston - Mildred Avenue K-8,350378,42.4,3.8,15.1,38.6,0,0,0,78.5,21.5,78.8 +15.59375,5,a-pcom-i3,2019-20,Boston - Mission Hill School,350382,38.7,2.6,8.6,50.1,0,0,0,83.8,16.2,38.7 +13.21875,5,a-pcom-i3,2019-20,Boston - Mozart,350237,22.8,0,19.4,57.7,0,0,0,84.4,15.6,30.6 +17.78125,5,a-pcom-i3,2019-20,Boston - Nathan Hale,350243,36.6,0,20.3,43.1,0,0,0,79.6,20.4,16.3 +14.375,5,a-pcom-i3,2019-20,Boston - New Mission High School,350542,24.1,10,11.9,54,0,0,0,53.9,46.1,49.9 +17.25,5,a-pcom-i3,2019-20,Boston - O W Holmes,350138,45.8,3.2,6.3,44.8,0,0,0,74.8,25.2,63.2 +18.125,5,a-pcom-i3,2019-20,Boston - O'Bryant School Math/Science,350575,35.8,5.2,16.2,42,0,0,0.9,63.3,36.7,116.7 +8.53125,5,a-pcom-i3,2019-20,Boston - Oliver Hazard Perry,350255,15.2,0,9.1,72.7,0,0,3,90.9,9.1,32.9 +13.71875,5,a-pcom-i3,2019-20,Boston - Orchard Gardens,350257,26.6,1.7,14,56.1,0,0,1.7,79.3,20.7,121 +12.15625,5,a-pcom-i3,2019-20,Boston - Patrick J Kennedy,350264,2.8,2.8,33.3,61.1,0,0,0,94.5,5.5,36 +15.625,5,a-pcom-i3,2019-20,Boston - Paul A Dever,350268,29.4,1.5,19.1,50,0,0,0,77.9,22.1,67.9 +16.28125,5,a-pcom-i3,2019-20,Boston - Pauline Agassiz Shaw Elementary School,350014,40,0,8,47.9,4,0,0,87.9,12.1,24.9 +8.96875,5,a-pcom-i3,2019-20,Boston - Phineas Bates,350278,14.8,2.3,11.6,71.3,0,0,0,88.4,11.6,42.8 +19.65625,5,a-pcom-i3,2019-20,Boston - Quincy Upper School,350565,24.2,22.5,14.5,37.1,1.6,0,0,61.3,38.7,61.9 +22.75,5,a-pcom-i3,2019-20,Boston - Rafael Hernandez,350691,6.2,0,66.7,27.2,0,0,0,83.2,16.8,47.7 +12.125,5,a-pcom-i3,2019-20,Boston - Richard J Murphy,350240,23,8.8,6.9,61.2,0,0,0,77.5,22.5,113.4 +16.84375,5,a-pcom-i3,2019-20,Boston - Roger Clap,350298,32.3,9.3,12.3,46.1,0,0,0,74,26,21.7 +15.375,5,a-pcom-i3,2019-20,Boston - Samuel Adams,350302,13.3,2.2,33.7,50.8,0,0,0,84.3,15.7,44.6 +18.1875,5,a-pcom-i3,2019-20,Boston - Samuel W Mason,350304,45,2.1,8.8,41.8,2.2,0,0,86,14,45.1 +22.625,5,a-pcom-i3,2019-20,Boston - Sarah Greenwood,350308,24.2,0,48.2,27.6,0,0,0,77.4,22.6,57.8 +13.875,5,a-pcom-i3,2019-20,Boston - Snowden International School at Copley,350690,27.8,3.7,13,55.6,0,0,0,55.6,44.4,54 +13.65625,5,a-pcom-i3,2019-20,Boston - TechBoston Academy,350657,36.3,1.9,5.6,56.3,0,0,0,58.3,41.7,107.9 +15.75,5,a-pcom-i3,2019-20,Boston - The English High,350535,23.6,5.4,20.3,49.6,0,0,1.1,62.9,37.1,88.7 +11.09375,5,a-pcom-i3,2019-20,Boston - Thomas J Kenny,350328,23,6.1,6.3,64.5,0,0,0,81.1,18.9,47.8 +14.15625,5,a-pcom-i3,2019-20,Boston - UP Academy Holland,350167,26.9,4.3,14.1,54.7,0,0,0,86,14,92.8 +17.78125,5,a-pcom-i3,2019-20,Boston - Urban Science Academy,350579,37.4,3.9,15.6,43.1,0,0,0,60.6,39.4,25.5 +7.15625,5,a-pcom-i3,2019-20,Boston - Warren-Prescott,350346,13.1,0,9.8,77.1,0,0,0,85.5,14.5,83.1 +14.46875,5,a-pcom-i3,2019-20,Boston - Washington Irving Middle,350445,33,5.9,7.5,53.7,0,0,0,69.7,30.3,51.6 +22.3125,5,a-pcom-i3,2019-20,Boston - West Roxbury Academy,350658,65.7,0,5.7,28.6,0,0,0,71.4,28.6,17.5 +12.90625,5,a-pcom-i3,2019-20,Boston - William E Russell,350366,20.6,4.6,16.1,58.7,0,0,0,84.2,15.8,43.6 +15.46875,5,a-pcom-i3,2019-20,Boston - William Ellery Channing,350360,40.6,5.8,3.1,50.5,0,0,0,78.2,21.8,32 +10.1875,5,a-pcom-i3,2019-20,Boston - William H Ohrenberger,350258,21.3,1.4,8.5,67.4,0,0,1.4,67.4,32.6,69.9 +16.59375,5,a-pcom-i3,2019-20,Boston - William McKinley,350363,39.6,1.5,11,46.9,0,0.5,0.5,60.1,39.9,199.5 +17,5,a-pcom-i3,2019-20,Boston - William Monroe Trotter,350370,49.4,1.7,3.3,45.6,0,0,0,83.2,16.8,59.5 +15.9375,5,a-pcom-i3,2019-20,Boston - Winship Elementary,350374,33.9,0,17.1,49,0,0,0,90.1,9.9,29.4 +22.53125,5,a-pcom-i3,2019-20,Boston - Young Achievers,350380,56,1.2,13.6,27.9,0,0,1.2,76.6,23.4,80.7 +13.34375,5,a-pcom-i3,2019-20,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,15.6,5.9,16.4,57.3,0,0,4.9,67.7,32.3,102.6 +18.9375,5,a-pcom-i3,2019-20,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,37,5.9,15.7,39.4,2,0,0,68.5,31.5,50.8 +15,5,a-pcom-i3,2019-20,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,29.1,1.5,17.5,52,0,0,0,72.4,27.6,68.8 +13,5,a-pcom-i3,2019-20,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,27,2.6,9.3,58.4,0,0,2.6,64.2,35.8,75.5 +8.84375,5,a-pcom-i3,2019-20,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,19.7,5.7,2.2,71.7,0,0,0.6,83.4,16.6,157 +1,1,a-pcom-i3,2019-20,Bourne - Bourne High School,360505,0,0,0,98.3,0,0,1.7,67.5,32.5,58.4 +1,1,a-pcom-i3,2019-20,Bourne - Bourne Intermediate School,360030,0,0.9,0,99.1,0,0,0,88.7,11.3,53.2 +1.875,1.88,a-pcom-i3,2019-20,Bourne - Bourne Middle School,360325,0,1.5,0,94,0,0,4.5,80.4,19.6,66.4 +1,1,a-pcom-i3,2019-20,Bourne - Bournedale Elementary School,360005,0,0.8,0,99.2,0,0,0,100,0,64.4 +1,1,a-pcom-i3,2019-20,Boxford - Harry Lee Cole,380005,0,0,1.8,98.2,0,0,0,93.5,6.5,57.1 +1.46875,1.47,a-pcom-i3,2019-20,Boxford - Spofford Pond,380013,0,0,4.7,95.3,0,0,0,96.5,3.5,63.8 +1,1,a-pcom-i3,2019-20,Braintree - Archie T Morrison,400033,0,0,1.6,98.4,0,0,0,94.5,5.5,61 +1.375,1.38,a-pcom-i3,2019-20,Braintree - Braintree High,400505,1.8,1.3,0.5,95.6,0,0.3,0.5,70.6,29.4,209.8 +1,1,a-pcom-i3,2019-20,Braintree - Donald Ross,400050,0,0,0,100,0,0,0,96.4,3.6,35.7 +1,1,a-pcom-i3,2019-20,Braintree - East Middle School,400305,0,0,1.2,98.8,0,0,0,78.1,21.9,83 +1,1,a-pcom-i3,2019-20,Braintree - Highlands,400015,0,2.3,0,97.7,0,0,0,90.9,9.1,43 +1,1,a-pcom-i3,2019-20,Braintree - Hollis,400005,0,0,0,100,0,0,0,94,6,56.7 +1,1,a-pcom-i3,2019-20,Braintree - Liberty,400025,2.6,0,0,97.4,0,0,0,95.2,4.8,39.1 +1.3125,1.31,a-pcom-i3,2019-20,Braintree - Mary E Flaherty School,400020,1.6,1,0,95.8,0,0,1.6,96.8,3.2,61.8 +1.90625,1.91,a-pcom-i3,2019-20,Braintree - Monatiquot Kindergarten Center,400009,3.1,0,0,93.9,0,3.1,0,98.2,1.8,32.7 +1,1,a-pcom-i3,2019-20,Braintree - South Middle School,400310,0,0,0,100,0,0,0,77,23,83.3 +1,1,a-pcom-i3,2019-20,Brewster - Eddy Elementary,410010,0,0,0,100,0,0,0,99.4,0.6,41.9 +1,1,a-pcom-i3,2019-20,Brewster - Stony Brook Elementary,410005,0,0,1.9,98.1,0,0,0,95.1,4.9,51.3 +10.46875,5,a-pcom-i3,2019-20,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,27.2,0,3.4,66.5,1.4,0,1.4,82.3,17.7,69.8 +1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,2.1,0,97.9,0,0,0,79.7,20.3,48.7 +1.03125,1.03,a-pcom-i3,2019-20,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,2.5,0,0.8,96.7,0,0,0,71.3,28.7,121.2 +1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,100,0,0,0,86.7,13.3,41.5 +1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Merrill Elementary School,6250020,0,0,0,100,0,0,0,94.3,5.7,31.5 +1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Mitchell Elementary School,6250002,0.9,0,0.9,97.4,0,0,0.9,94,6,115.8 +1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,100,0,0,0,84.5,15.5,64.7 +1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,100,0,0,0,76.5,23.5,8.2 +1,1,a-pcom-i3,2019-20,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,98.6,0,0,1.4,86.7,13.3,73.5 +1,1,a-pcom-i3,2019-20,Brimfield - Brimfield Elementary,430005,0,2.2,0,97.8,0,0,0,88.2,11.8,45.2 +1,1,a-pcom-i3,2019-20,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,1.9,98.1,0,0,0,57.9,42.1,52.2 +1.0625,1.06,a-pcom-i3,2019-20,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,1.4,0,0.7,96.6,1.4,0,0,62.3,37.7,147.4 +2.03125,2.03,a-pcom-i3,2019-20,Brockton - Ashfield Middle School,440421,5,0,1.6,93.5,0,0,0,82,16.5,63.8 +2.875,2.88,a-pcom-i3,2019-20,Brockton - Barrett Russell Early Childhood Center,440008,3.7,1.7,3.8,90.8,0,0,0,98.3,1.7,57.4 +10.8125,5,a-pcom-i3,2019-20,Brockton - Brockton Champion High School,440515,27.4,0,2.4,65.4,2.4,0,2.4,67.1,32.9,41.3 +7.53125,5,a-pcom-i3,2019-20,Brockton - Brockton High,440505,17.9,2,2.5,75.9,0,0.2,1.5,63.7,35.6,407.5 +5.46875,5,a-pcom-i3,2019-20,Brockton - Brookfield,440010,11.8,0,5.6,82.5,0,0,0,93.1,5.5,71 +4.09375,4.09,a-pcom-i3,2019-20,Brockton - Downey,440110,8.7,1.1,2.2,86.9,1.1,0,0,92.9,7.1,91.8 +5.15625,5,a-pcom-i3,2019-20,Brockton - Dr W Arnone Community School,440001,12.3,0,4,83.5,0,0,0.2,92.7,6.6,99.3 +5.21875,5,a-pcom-i3,2019-20,Brockton - East Middle School,440405,12.2,1.4,2.9,83.3,0,0,0.3,64.7,35.3,69.9 +3.90625,3.91,a-pcom-i3,2019-20,Brockton - Edgar B Davis,440023,6.1,0,2.8,87.5,0.1,0,3.4,77.4,21.5,88 +17.71875,5,a-pcom-i3,2019-20,Brockton - Edison Academy,440520,49.3,0,5.2,43.3,0,0,2.2,61.1,38.9,18.3 +5.09375,5,a-pcom-i3,2019-20,Brockton - Frederick Douglass Academy,440080,12.5,0,0,83.7,0,0,3.8,50.9,49.1,16 +5.53125,5,a-pcom-i3,2019-20,Brockton - Gilmore Elementary School,440055,17.7,0,0,82.3,0,0,0,86,14,50.9 +3.75,3.75,a-pcom-i3,2019-20,Brockton - Hancock,440045,2.9,0,4.9,88,1.6,0,2.6,89.8,10.2,51 +6.6875,5,a-pcom-i3,2019-20,Brockton - Huntington Therapeutic Day School,440400,19.2,0,2.2,78.6,0,0,0,65,34,46.2 +6.0625,5,a-pcom-i3,2019-20,Brockton - John F Kennedy,440017,9.6,3.9,5.3,80.6,0,0,0.6,87.9,12.1,57 +7.4375,5,a-pcom-i3,2019-20,Brockton - Joseph F. Plouffe Academy,440422,17.2,4,2.6,76.2,0,0,0,78.4,20.2,75.6 +6.34375,5,a-pcom-i3,2019-20,Brockton - Louis F Angelo Elementary,440065,11.8,0.2,3.7,79.7,0,0,4.6,89.3,8.8,108.6 +8.875,5,a-pcom-i3,2019-20,Brockton - Manthala George Jr. School,440003,10.7,0,15.5,71.6,1.2,0,1.1,92.7,7.3,92.5 +7.8125,5,a-pcom-i3,2019-20,Brockton - Mary E. Baker School,440002,18.6,0,5.3,75,0,0,1.1,96.2,3.5,94 +8.125,5,a-pcom-i3,2019-20,Brockton - North Middle School,440410,18.9,0,0,74,0,0,7.1,80.6,18.1,30.8 +5.40625,5,a-pcom-i3,2019-20,Brockton - Oscar F Raymond,440078,14.2,0,1.1,82.7,0,0,2,95.1,4.9,88.9 +7.0625,5,a-pcom-i3,2019-20,Brockton - South Middle School,440415,19.4,0,2.7,77.4,0,0,0.5,71.7,26.5,74.6 +5.40625,5,a-pcom-i3,2019-20,Brockton - West Middle School,440420,14.2,1.4,1.4,82.7,0,0,0.3,74.9,24.7,70.6 +12.8125,5,a-pcom-i3,2019-20,Brooke Charter School (District) - Brooke Charter School,4280305,21.1,1.6,16,59,0,0.4,2,80.9,19.1,256 +1,1,a-pcom-i3,2019-20,Brookfield - Brookfield Elementary,450005,0,0,0,100,0,0,0,91.6,8.4,44.5 +6.96875,5,a-pcom-i3,2019-20,Brookline - Brookline Early Education Program at Beacon,460001,5.2,8.6,8.6,77.7,0,0,0,100,0,11.7 +14.6875,5,a-pcom-i3,2019-20,Brookline - Brookline Early Education Program at Clark Road,460003,15.2,16.7,15.2,53,0,0,0,84.8,15.2,6.6 +5.25,5,a-pcom-i3,2019-20,Brookline - Brookline Early Education Program at Putterham,460002,3.9,3.6,9.3,83.2,0,0,0,100,0,21.5 +6.375,5,a-pcom-i3,2019-20,Brookline - Brookline High,460505,10.1,4.8,4.7,79.6,0,0,0.9,63.7,36.3,339.2 +5,5,a-pcom-i3,2019-20,Brookline - Coolidge Corner School,460015,9.4,2.4,3.6,84,0,0.6,0,80.8,19.2,154.6 +4.90625,4.91,a-pcom-i3,2019-20,Brookline - Edith C Baker,460005,5.3,6.7,1.8,84.3,0,0,1.8,83.4,16.6,110.7 +5.59375,5,a-pcom-i3,2019-20,Brookline - Heath,460025,7.6,2.7,7.6,82.1,0,0,0,89.5,10.5,78.6 +6.03125,5,a-pcom-i3,2019-20,Brookline - John D Runkle,460045,10.1,4.5,2.9,80.7,0,0.9,0.9,86,13.2,108.5 +5.53125,5,a-pcom-i3,2019-20,Brookline - Lawrence,460030,5.4,7.4,3.9,82.3,0,0,1,82.9,17.1,102 +6.53125,5,a-pcom-i3,2019-20,Brookline - Michael Driscoll,460020,5.4,10,4.5,79.1,0,0,1,86,14,100.3 +6.375,5,a-pcom-i3,2019-20,Brookline - Pierce,460040,8.3,8.6,1.8,79.6,0,0,1.7,83.1,16.9,118.8 +4.625,4.62,a-pcom-i3,2019-20,Brookline - The Lynch Center,460060,4.8,0.3,9.7,85.2,0,0,0,94.9,2.3,33.6 +5.625,5,a-pcom-i3,2019-20,Brookline - William H Lincoln,460035,6.5,3.5,7.2,82,0,0,0.8,82.1,17.9,102.6 +1.9375,1.94,a-pcom-i3,2019-20,Burlington - Burlington High,480505,0,1.9,3.9,93.8,0,0,0.4,78.6,21.4,156 +1,1,a-pcom-i3,2019-20,Burlington - Fox Hill,480007,0,0,0,98.4,0,0,1.6,86,14,61.3 +1,1,a-pcom-i3,2019-20,Burlington - Francis Wyman Elementary,480035,0,1.2,0,98.8,0,0,0,90.8,9.2,84 +1.53125,1.53,a-pcom-i3,2019-20,Burlington - Marshall Simonds Middle,480303,1,3.9,0,95.1,0,0,0,81.5,18.5,101.8 +1.46875,1.47,a-pcom-i3,2019-20,Burlington - Memorial,480015,0,4.7,0,95.3,0,0,0,95.5,4.5,63.8 +1,1,a-pcom-i3,2019-20,Burlington - Pine Glen Elementary,480020,0,1.5,0,97,0,0,1.5,91.9,6.6,65.8 +18.75,5,a-pcom-i3,2019-20,Cambridge - Amigos School,490006,4.3,0,55.7,40,0,0,0,80.3,18,58.4 +8.53125,5,a-pcom-i3,2019-20,Cambridge - Cambridge Rindge and Latin,490506,14.4,5.8,6.1,72.7,0.3,0.3,0.3,61.8,37.7,305.7 +9.5,5,a-pcom-i3,2019-20,Cambridge - Cambridge Street Upper School,490305,19.7,7.1,3.6,69.6,0,0,0,88.8,11.2,56 +8.84375,5,a-pcom-i3,2019-20,Cambridge - Cambridgeport,490007,17.5,7.6,3.2,71.7,0,0,0,82.5,15.9,62.9 +12.78125,5,a-pcom-i3,2019-20,Cambridge - Fletcher/Maynard Academy,490090,28.2,8,2,59.1,0,1.3,1.3,80,20,75.3 +7.5,5,a-pcom-i3,2019-20,Cambridge - Graham and Parks,490080,15.8,4.6,2.9,76,0.7,0,0,94,3.2,69.7 +5.09375,5,a-pcom-i3,2019-20,Cambridge - Haggerty,490020,8.6,5.2,2.6,83.7,0,0,0,86.5,11.8,58.2 +5.46875,5,a-pcom-i3,2019-20,Cambridge - John M Tobin,490065,12.2,4.4,0.9,82.5,0,0,0,82.5,15.7,57.3 +7.5625,5,a-pcom-i3,2019-20,Cambridge - Kennedy-Longfellow,490040,13.6,2.7,8,75.8,0,0,0,93.3,5.3,75.2 +11.3125,5,a-pcom-i3,2019-20,Cambridge - King Open,490035,15.5,11,9.7,63.8,0,0,0,83.6,15,72.5 +5.28125,5,a-pcom-i3,2019-20,Cambridge - Maria L. Baldwin,490005,6.5,5.2,5.2,83.1,0,0,0,85.7,13.5,57.4 +12.1875,5,a-pcom-i3,2019-20,Cambridge - Martin Luther King Jr.,490030,15.5,19.6,3.9,61,0,0,0,89.7,10,51.5 +6.34375,5,a-pcom-i3,2019-20,Cambridge - Morse,490045,13.4,1.4,4.9,79.7,0.7,0,0,84.8,15.2,72.1 +7.09375,5,a-pcom-i3,2019-20,Cambridge - Peabody,490050,10.3,5.2,3.7,77.3,3.4,0,0,91.3,8.7,58.1 +15.15625,5,a-pcom-i3,2019-20,Cambridge - Putnam Avenue Upper School,490310,34.4,8.7,5.4,51.5,0,0,0,62,34.4,55.3 +10,5,a-pcom-i3,2019-20,Cambridge - Rindge Avenue Upper School,490315,14.9,6.4,10.7,68,0,0,0,67,29.8,46.6 +8.21875,5,a-pcom-i3,2019-20,Cambridge - Vassal Lane Upper School,490320,13.1,1.8,11.3,73.7,0,0,0,71.7,28.3,54.8 +2.03125,2.03,a-pcom-i3,2019-20,Canton - Canton High,500505,0,2.8,2.8,93.5,0,0,0.9,68.7,31.3,108.1 +1.5,1.5,a-pcom-i3,2019-20,Canton - Dean S Luce,500020,3.2,0,1.6,95.2,0,0,0,94,6,62.9 +1.90625,1.91,a-pcom-i3,2019-20,Canton - John F Kennedy,500017,4.6,1.5,0,93.9,0,0,0,91.1,8.9,65.2 +3.75,3.75,a-pcom-i3,2019-20,Canton - Lt Peter M Hansen,500012,4.5,1.5,3,88,0,0,3,92.5,7.5,66.8 +1.1875,1.19,a-pcom-i3,2019-20,Canton - Rodman Early Childhood Center,500010,0,3.8,0,96.2,0,0,0,92.3,7.7,26 +3.53125,3.53,a-pcom-i3,2019-20,Canton - Wm H Galvin Middle,500305,3.4,1.1,3.4,88.7,0,0,3.4,77.7,22.3,88.8 +1,1,a-pcom-i3,2019-20,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,1.3,98.7,0,0,0,84.5,15.5,38.8 +1,1,a-pcom-i3,2019-20,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0,0,0,100,0,0,0,54.2,45.8,100.9 +1.09375,1.09,a-pcom-i3,2019-20,Carlisle - Carlisle School,510025,0,3.5,0,96.5,0,0,0,81.4,18.6,107.5 +1.125,1.12,a-pcom-i3,2019-20,Carver - Carver Elementary School,520015,0.5,1,1,96.4,1,0,0,93.4,6.6,97.8 +1.6875,1.69,a-pcom-i3,2019-20,Carver - Carver Middle/High School,520405,2.7,0,0.9,94.6,0,0.9,0.9,71.1,28.9,110.8 +1,1,a-pcom-i3,2019-20,Central Berkshire - Becket Washington School,6350005,0,0,0,100,0,0,0,100,0,20.2 +1,1,a-pcom-i3,2019-20,Central Berkshire - Craneville,6350025,2,0,0,98,0,0,0,90.2,9.8,50.8 +1,1,a-pcom-i3,2019-20,Central Berkshire - Kittredge,6350035,0,0,0,100,0,0,0,100,0,27.7 +1,1,a-pcom-i3,2019-20,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,100,0,0,0,75.7,24.3,49.4 +1,1,a-pcom-i3,2019-20,Central Berkshire - Wahconah Regional High,6350505,0,0,0,96.9,0,0,3.1,64.6,35.4,63.9 +1.78125,1.78,a-pcom-i3,2019-20,Chelmsford - Byam School,560030,1.1,4.6,0,94.3,0,0,0,89.9,10.1,91.2 +1.21875,1.22,a-pcom-i3,2019-20,Chelmsford - Center Elementary School,560005,0,1.3,1.3,96.1,0,0,1.3,98.7,1.3,76.3 +1.96875,1.97,a-pcom-i3,2019-20,Chelmsford - Charles D Harrington,560025,0,3.4,2.9,93.7,0,0,0,92.9,7.1,70 +1.65625,1.66,a-pcom-i3,2019-20,Chelmsford - Chelmsford High,560505,0,1.6,3.2,94.7,0.5,0,0,67.2,32.8,187.9 +1.125,1.12,a-pcom-i3,2019-20,Chelmsford - Col Moses Parker School,560305,0.9,2.7,0,96.4,0,0,0,82.9,17.1,110.9 +4.0625,4.06,a-pcom-i3,2019-20,Chelmsford - Community Education Center,560001,2.9,10.1,0,87,0,0,0,94.2,5.8,34.6 +1,1,a-pcom-i3,2019-20,Chelmsford - McCarthy Middle School,560310,0,2.7,0,97.3,0,0,0,82.7,17.3,108.9 +1.34375,1.34,a-pcom-i3,2019-20,Chelmsford - South Row,560015,0,1.4,1.4,95.7,0,0,1.4,97.1,2.9,69.5 +6.28125,5,a-pcom-i3,2019-20,Chelsea - Chelsea High,570505,0.6,0,16.4,79.9,0,0.6,2.4,71.6,28.4,159 +8.5625,5,a-pcom-i3,2019-20,Chelsea - Chelsea Opportunity Academy,570515,0,0,27.4,72.6,0,0,0,44.2,55.8,9.5 +4.5625,4.56,a-pcom-i3,2019-20,Chelsea - Clark Avenue School,570050,1.4,0,13.2,85.4,0,0,0,81.2,18.8,71.6 +4.8125,4.81,a-pcom-i3,2019-20,Chelsea - Edgar A Hooks Elementary,570030,1.7,0,13.1,84.6,0,0,0.7,88.1,11.9,60.1 +7.03125,5,a-pcom-i3,2019-20,Chelsea - Eugene Wright Science and Technology Academy,570045,0,0,17,77.5,0,1.8,3.6,75.7,24.3,55.4 +7.25,5,a-pcom-i3,2019-20,Chelsea - Frank M Sokolowski Elementary,570040,1.8,0,17.8,76.8,0,0,3.6,88,12,55.5 +8.5,5,a-pcom-i3,2019-20,Chelsea - George F. Kelly Elementary,570035,1.7,0,23.8,72.8,0,0,1.7,88.8,11.2,58.3 +7.28125,5,a-pcom-i3,2019-20,Chelsea - Joseph A. Browne School,570055,0,0,17.4,76.7,0,0,5.9,77.7,22.3,50.8 +9.78125,5,a-pcom-i3,2019-20,Chelsea - Shurtleff Early Childhood,570003,1.1,0,30.2,68.7,0,0,0,92.5,7.5,127.6 +5.65625,5,a-pcom-i3,2019-20,Chelsea - William A Berkowitz Elementary,570025,0,0,11.4,81.9,0,1.7,5.1,87.3,12.7,59.4 +1,1,a-pcom-i3,2019-20,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,0,0,0,100,0,0,0,90.8,9.2,26.2 +1.375,1.38,a-pcom-i3,2019-20,Chicopee - Barry,610003,1.6,0,2.9,95.6,0,0,0,96.6,3.4,64 +1.65625,1.66,a-pcom-i3,2019-20,Chicopee - Belcher,610010,0,0,5.3,94.7,0,0,0,96.3,3.7,37.8 +1.15625,1.16,a-pcom-i3,2019-20,Chicopee - Bellamy Middle,610305,0.9,0,1.8,96.3,0,0.9,0,80.2,19.8,109.1 +2.59375,2.59,a-pcom-i3,2019-20,Chicopee - Bowe,610015,1.6,1.6,5.2,91.7,0,0,0,93.5,6.5,64.1 +1,1,a-pcom-i3,2019-20,Chicopee - Bowie,610020,2.1,0,0.7,97.3,0,0,0,91.4,8.6,48.7 +4.90625,4.91,a-pcom-i3,2019-20,Chicopee - Chicopee Academy,610021,11,1.4,3.3,84.3,0,0,0,68.9,31.1,36.2 +1.71875,1.72,a-pcom-i3,2019-20,Chicopee - Chicopee Comprehensive High School,610510,0.7,0.7,4.1,94.5,0,0,0,57.8,42.2,150 +2.9375,2.94,a-pcom-i3,2019-20,Chicopee - Chicopee High,610505,3.1,0,5.5,90.6,0.8,0,0,72.4,27.6,127.6 +3.15625,3.16,a-pcom-i3,2019-20,Chicopee - Dupont Middle,610310,1.8,1.4,6,89.9,0,0,0.9,75.4,24.6,108.8 +3.90625,3.91,a-pcom-i3,2019-20,Chicopee - Fairview Elementary,610050,1.1,0,11.4,87.5,0,0,0,87.9,12.1,89.1 +3.46875,3.47,a-pcom-i3,2019-20,Chicopee - Gen John J Stefanik,610090,0,0,11.1,88.9,0,0,0,93.5,6.5,64.5 +1,1,a-pcom-i3,2019-20,Chicopee - Lambert-Lavoie,610040,0,0,0.7,99.3,0,0,0,92.1,7.9,46.2 +1.03125,1.03,a-pcom-i3,2019-20,Chicopee - Litwin,610022,0,1.6,1.6,96.7,0,0,0,94.7,5.3,60.7 +1.65625,1.66,a-pcom-i3,2019-20,Chicopee - Streiber Memorial School,610065,4.6,0,0.7,94.7,0,0,0,96.3,3.7,43.8 +1.25,1.25,a-pcom-i3,2019-20,Chicopee - Szetela Early Childhood Center,610001,0,0,4,96,0,0,0,94,6,49.9 +2.875,2.88,a-pcom-i3,2019-20,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,1.5,0,6.1,90.8,1.5,0,0,67,33,65.1 +16.96875,5,a-pcom-i3,2019-20,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,36.9,0,17.4,45.7,0,0,0,60.8,39.2,22.4 +12.875,5,a-pcom-i3,2019-20,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,29.7,0,11.5,58.8,0,0,0,65.2,34.8,18 +3.25,3.25,a-pcom-i3,2019-20,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,5.2,0,0,89.6,0,0,5.2,57.9,42.1,19.2 +1,1,a-pcom-i3,2019-20,Clarksburg - Clarksburg Elementary,630010,0,0,0,100,0,0,0,85.2,14.8,29.7 +1.84375,1.84,a-pcom-i3,2019-20,Clinton - Clinton Elementary,640050,0,0.9,4.2,94.1,0,0,0.9,94,6,117.5 +2.21875,2.22,a-pcom-i3,2019-20,Clinton - Clinton Middle School,640305,1.4,1.4,2.9,92.9,0,0,1.4,83.1,16.9,71.8 +1.5625,1.56,a-pcom-i3,2019-20,Clinton - Clinton Senior High,640505,0,0,3.3,95,0,0,1.7,58.9,41.1,60.4 +14,5,a-pcom-i3,2019-20,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,36.2,4.3,4.3,55.2,0,0,0,71.4,28.6,69.7 +1,1,a-pcom-i3,2019-20,Cohasset - Cohasset High School,650505,0,0,1.6,98.4,0,0,0,57.2,42.8,63.5 +1,1,a-pcom-i3,2019-20,Cohasset - Cohasset Middle School,650305,0,0,2.4,97.6,0,0,0,85.3,14.7,41 +1.28125,1.28,a-pcom-i3,2019-20,Cohasset - Deer Hill,650005,2,2,0,95.9,0,0,0,91.9,8.1,49.2 +1,1,a-pcom-i3,2019-20,Cohasset - Joseph Osgood,650010,2,0,0,98,0,0,0,92.8,7.2,49.8 +6.5,5,a-pcom-i3,2019-20,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,3.7,4.9,12.3,79.2,0,0,0,81.5,18.5,81.6 +14.78125,5,a-pcom-i3,2019-20,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,19.9,5,21.6,52.7,0,0,0.8,61,39,60.2 +6.59375,5,a-pcom-i3,2019-20,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,1.6,0,19.4,78.9,0,0,0,89.4,10.6,61.3 +8.5,5,a-pcom-i3,2019-20,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,1.7,1.7,23.7,72.8,0,0,0,77.4,22.6,57.4 +7.0625,5,a-pcom-i3,2019-20,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,0,0,22.6,77.4,0,0,0,69.9,30.1,57.2 +2.78125,2.78,a-pcom-i3,2019-20,Concord - Alcott,670005,2.5,3.7,2.7,91.1,0,0,0,90.8,9.2,80.8 +3.78125,3.78,a-pcom-i3,2019-20,Concord - Concord Middle,670305,4.8,3.6,2.7,87.9,0,1,0,73.5,26.5,104.3 +1.46875,1.47,a-pcom-i3,2019-20,Concord - Thoreau,670020,0,1.9,2.8,95.3,0,0,0,96.4,3.6,79.5 +2.09375,2.09,a-pcom-i3,2019-20,Concord - Willard,670030,1.2,2.7,2.7,93.3,0,0,0,90.8,9.2,80.7 +1.96875,1.97,a-pcom-i3,2019-20,Concord-Carlisle - Concord Carlisle High,6400505,1.7,1.5,3.1,93.7,0,0,0,61.4,38.6,178.3 +13.03125,5,a-pcom-i3,2019-20,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,25.6,1.3,12.1,58.3,1.3,0,1.3,71.3,28.7,74.3 +1,1,a-pcom-i3,2019-20,Conway - Conway Grammar,680005,0,0,0,100,0,0,0,91.2,8.8,37.3 +1,1,a-pcom-i3,2019-20,Danvers - Danvers High,710505,0.8,0.8,0.8,97.5,0,0,0,64,36,121.5 +1,1,a-pcom-i3,2019-20,Danvers - Great Oak,710015,0,0,0,100,0,0,0,97.7,2.3,42.8 +1,1,a-pcom-i3,2019-20,Danvers - Highlands,710010,0,0,0,100,0,0,0,86.5,13.5,44.6 +1,1,a-pcom-i3,2019-20,Danvers - Holten Richmond Middle School,710305,0,0,0.9,98.1,0,0,0.9,80.4,19.6,107.3 +1,1,a-pcom-i3,2019-20,Danvers - Ivan G Smith,710032,0,0,0,100,0,0,0,89.3,10.7,37.5 +1,1,a-pcom-i3,2019-20,Danvers - Riverside,710030,0,0,0,100,0,0,0,93.2,6.8,69.1 +1.09375,1.09,a-pcom-i3,2019-20,Danvers - Willis E Thorpe,710045,0,0,3.5,96.5,0,0,0,93.4,6.6,45.1 +1,1,a-pcom-i3,2019-20,Dartmouth - Andrew B. Cushman School,720005,0,0,0,100,0,0,0,98.8,1.2,24.4 +1,1,a-pcom-i3,2019-20,Dartmouth - Dartmouth High,720505,0,0,0,99,0,0,1,62.8,37.2,101.3 +1,1,a-pcom-i3,2019-20,Dartmouth - Dartmouth Middle,720050,0.9,0,0,98.2,0,0,0.9,63.8,36.2,112.7 +1,1,a-pcom-i3,2019-20,Dartmouth - George H Potter,720030,0,0,0,100,0,0,0,94.6,5.4,55.9 +1,1,a-pcom-i3,2019-20,Dartmouth - James M. Quinn School,720040,1,0,0,99,0,0,0,96.2,3.8,96.2 +1,1,a-pcom-i3,2019-20,Dartmouth - Joseph Demello,720015,0,0,0,100,0,0,0,97.7,2.3,43.2 +1,1,a-pcom-i3,2019-20,Dedham - Avery,730010,0,0,0,100,0,0,0,91.3,8.7,49.4 +2.5,2.5,a-pcom-i3,2019-20,Dedham - Dedham High,730505,1,3,4,92,0,0,0,73.3,26.7,100.1 +1.46875,1.47,a-pcom-i3,2019-20,Dedham - Dedham Middle School,730305,3.1,0,0.6,95.3,0,0,1,73.5,26.5,97.3 +1,1,a-pcom-i3,2019-20,Dedham - Early Childhood Center,730005,0,0,0,100,0,0,0,97.8,2.2,63.7 +1,1,a-pcom-i3,2019-20,Dedham - Greenlodge,730025,0,0,0,100,0,0,0,97.5,2.5,40.8 +1,1,a-pcom-i3,2019-20,Dedham - Oakdale,730030,0,0,0,100,0,0,0,91.8,8.2,36.8 +1,1,a-pcom-i3,2019-20,Dedham - Riverdale,730045,2.9,0,0,97.1,0,0,0,89.4,10.6,35 +1,1,a-pcom-i3,2019-20,Deerfield - Deerfield Elementary,740015,0,0,0,100,0,0,0,91.1,8.9,85.7 +1.40625,1.41,a-pcom-i3,2019-20,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,2.4,0,2,95.5,0,0,0,65.8,34.2,128 +1,1,a-pcom-i3,2019-20,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,0,0,2.5,97,0.5,0,0,94.7,5.3,72.3 +1,1,a-pcom-i3,2019-20,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,0,0,0,100,0,0,0,94.5,5.5,54.3 +1.90625,1.91,a-pcom-i3,2019-20,Dennis-Yarmouth - Mattacheese Middle School,6450305,2.3,0,2.9,93.9,0,0,0.8,76.3,23.7,68.4 +1.21875,1.22,a-pcom-i3,2019-20,Dennis-Yarmouth - N H Wixon Innovation School,6450050,0,0,2.5,96.1,0,0,1.5,92.7,7.3,68.7 +1.375,1.38,a-pcom-i3,2019-20,Dennis-Yarmouth - Station Avenue Elementary,6450025,0.9,1.8,1.8,95.6,0,0,0,89.8,10.2,56.7 +1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Dighton Elementary,6500005,0.3,0,0,99.7,0,0,0,94.8,5.2,71.4 +1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Dighton Middle School,6500305,0.5,0,0,97.2,0,0,2.3,73.5,26.5,43 +1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,0.2,0,1,98.8,0,0,0,66.1,33.9,101 +1.78125,1.78,a-pcom-i3,2019-20,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0.3,0,3.1,94.3,0,0,2.3,80.5,19.5,65 +1,1,a-pcom-i3,2019-20,Dighton-Rehoboth - Palmer River,6500010,0.3,0,0,99,0,0,0.7,94.9,5.1,73.2 +1,1,a-pcom-i3,2019-20,Douglas - Douglas Elementary School,770015,0,0,0,100,0,0,0,90.1,9.9,59.8 +1,1,a-pcom-i3,2019-20,Douglas - Douglas High School,770505,0,0,0,100,0,0,0,68.1,31.9,61.5 +1,1,a-pcom-i3,2019-20,Douglas - Douglas Middle School,770305,0,0,0,100,0,0,0,91.8,8.2,42.7 +1,1,a-pcom-i3,2019-20,Douglas - Douglas Primary School,770005,0,0,0,100,0,0,0,98.3,1.7,34.7 +1.46875,1.47,a-pcom-i3,2019-20,Dover - Chickering,780005,0.3,2,2.5,95.3,0,0,0,91.6,8.4,81.5 +1.78125,1.78,a-pcom-i3,2019-20,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0.3,1.8,3.6,94.3,0,0,0,67.1,32.9,98 +2.8125,2.81,a-pcom-i3,2019-20,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,3,1.3,4.7,91,0,0,0,77.5,22.5,74.8 +1,1,a-pcom-i3,2019-20,Dracut - Brookside Elementary,790035,0,0,1.1,98.9,0,0,0,90.2,9.8,45.7 +1.0625,1.06,a-pcom-i3,2019-20,Dracut - Dracut Senior High,790505,0,2.3,1.1,96.6,0,0,0,67.1,32.9,90.9 +1,1,a-pcom-i3,2019-20,Dracut - George H. Englesby Elementary School,790045,0,0,0,100,0,0,0,96.2,3.8,54.7 +1,1,a-pcom-i3,2019-20,Dracut - Greenmont Avenue,790030,0,0,0,100,0,0,0,90,10,30 +1,1,a-pcom-i3,2019-20,Dracut - Joseph A Campbell Elementary,790020,0.7,0.7,0,98.5,0,0,0,95.9,4.1,68.6 +1.40625,1.41,a-pcom-i3,2019-20,Dracut - Justus C. Richardson Middle School,790410,1.1,0.6,2.8,95.5,0,0,0,80.4,19.6,88 +17.46875,5,a-pcom-i3,2019-20,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,35.6,0,20.3,44.1,0,0,0,93.2,6.8,29.5 +1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Charlton Elementary,6580020,0,0,0,100,0,0,0,95.7,4.3,51.6 +1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,1.3,98.7,0,0,0,79,21,75.1 +1.09375,1.09,a-pcom-i3,2019-20,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,1,96.5,2.5,0,0,95.1,4.9,40.5 +1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,2,98,0,0,0,75.6,24.4,61.3 +1.15625,1.16,a-pcom-i3,2019-20,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,96.3,0,0,3.7,94.8,5.2,54 +1.5,1.5,a-pcom-i3,2019-20,Dudley-Charlton Reg - Mason Road School,6580010,0,0,2.4,95.2,2.4,0,0,95.2,4.8,42 +1,1,a-pcom-i3,2019-20,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,1,99,0,0,0,56,44,99.9 +1,1,a-pcom-i3,2019-20,Duxbury - Alden School,820004,0,0,0,100,0,0,0,87.5,12.5,80.1 +1,1,a-pcom-i3,2019-20,Duxbury - Chandler Elementary,820006,0,1.1,1.1,97.9,0,0,0,98,2,94.7 +1,1,a-pcom-i3,2019-20,Duxbury - Duxbury High,820505,0,1.5,0,98.5,0,0,0,65.1,34.9,130.3 +1,1,a-pcom-i3,2019-20,Duxbury - Duxbury Middle,820305,0,1.3,1.3,97.4,0,0,0,81.2,18.8,77.7 +1,1,a-pcom-i3,2019-20,East Bridgewater - Central,830005,0,0,0,100,0,0,0,94.6,5.4,74 +1,1,a-pcom-i3,2019-20,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,100,0,0,0,68.6,31.4,102 +1,1,a-pcom-i3,2019-20,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,100,0,0,0,87.7,12.3,81.5 +1.84375,1.84,a-pcom-i3,2019-20,East Longmeadow - Birchland Park,870305,2.3,1.2,2.3,94.1,0,0,0,70.4,29.6,85.4 +4.21875,4.22,a-pcom-i3,2019-20,East Longmeadow - East Longmeadow High,870505,4.9,2,5.7,86.5,0,0,1,64.1,35.9,102.2 +1,1,a-pcom-i3,2019-20,East Longmeadow - Mapleshade,870010,0,0,0,100,0,0,0,83.4,16.6,48.1 +2.21875,2.22,a-pcom-i3,2019-20,East Longmeadow - Meadow Brook,870013,0,0,6,92.9,0,0,1,96.9,3.1,96 +1,1,a-pcom-i3,2019-20,East Longmeadow - Mountain View,870015,0,0,2,98,0,0,0,89.9,10.1,49.5 +1,1,a-pcom-i3,2019-20,Eastham - Eastham Elementary,850005,0,0,0,100,0,0,0,94.5,5.5,40.2 +1,1,a-pcom-i3,2019-20,Easthampton - Center School,860005,0,0,1.9,98.1,0,0,0,89.5,10.5,27 +1.15625,1.16,a-pcom-i3,2019-20,Easthampton - Easthampton High,860505,0,0,3.7,96.3,0,0,0,59.8,40.2,49.7 +1,1,a-pcom-i3,2019-20,Easthampton - Maple,860010,0,0,2,98,0,0,0,97.7,2.3,50.5 +1.375,1.38,a-pcom-i3,2019-20,Easthampton - Neil A Pepin,860020,0,0,4.4,95.6,0,0,0,94.6,5.4,34 +1.71875,1.72,a-pcom-i3,2019-20,Easthampton - White Brook Middle School,860305,3.7,0,0,94.5,0,0,1.8,74.2,25.8,54.3 +1,1,a-pcom-i3,2019-20,Easton - Center School,880003,0,0,2.6,97.4,0,0,0,95,5,38.4 +1.5,1.5,a-pcom-i3,2019-20,Easton - Easton Middle School,880405,0,1,2.4,95.2,0,0,1.4,79.5,20.5,102.2 +1.0625,1.06,a-pcom-i3,2019-20,Easton - Moreau Hall,880020,0,0,3.4,96.6,0,0,0,94.2,5.8,29.6 +2.34375,2.34,a-pcom-i3,2019-20,Easton - Oliver Ames High,880505,2.3,1.5,2.9,92.5,0,0,0.8,62.5,37.5,130.1 +1,1,a-pcom-i3,2019-20,Easton - Parkview Elementary,880015,0.8,0,0,99.2,0,0,0,94.1,5.9,50.3 +1,1,a-pcom-i3,2019-20,Easton - Richardson Olmsted School,880025,0.7,0,0.5,97.7,0,0,1.1,90.4,9.6,91.5 +1.625,1.63,a-pcom-i3,2019-20,Edgartown - Edgartown Elementary,890005,2.8,0,2.3,94.8,0,0,0,84.6,15.4,83.3 +16.71875,5,a-pcom-i3,2019-20,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,44.1,1.7,7.8,46.5,0,0,0,51.9,48.1,51.3 +2.46875,2.47,a-pcom-i3,2019-20,Erving - Erving Elementary,910030,0,0,1.1,92.1,0,0,6.7,89.9,10.1,44.5 +1,1,a-pcom-i3,2019-20,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0.5,1.1,0.5,97.8,0,0,0,59.9,40.1,185.5 +1,1,a-pcom-i3,2019-20,Everett - Adams School,930003,0,0,0,100,0,0,0,97.7,2.3,22 +5.25,5,a-pcom-i3,2019-20,Everett - Devens School,930030,7.3,0,5.9,83.2,0,0,3.7,57.5,42.5,27.3 +4.5,4.5,a-pcom-i3,2019-20,Everett - Everett High,930505,4.7,3.3,4.7,85.6,0.5,0.5,0.9,56.9,43.1,214.8 +3.125,3.13,a-pcom-i3,2019-20,Everett - George Keverian School,930028,1.2,3.7,3.7,90,0,1.2,0,80.9,19.1,80.2 +2.375,2.37,a-pcom-i3,2019-20,Everett - Lafayette School,930038,1.9,1.9,3.8,92.4,0,0,0,84.7,15.3,105.5 +1.40625,1.41,a-pcom-i3,2019-20,Everett - Madeline English School,930018,0,1.1,3.4,95.5,0,0,0,87,13,88.9 +1.09375,1.09,a-pcom-i3,2019-20,Everett - Parlin School,930058,0,1.2,2.3,96.5,0,0,0,83.6,16.4,86.2 +3.40625,3.41,a-pcom-i3,2019-20,Everett - Sumner G. Whittier School,930010,6.2,0,4.7,89.1,0,0,0,88.1,11.9,64.2 +1,1,a-pcom-i3,2019-20,Everett - Webster Extension,930001,0,0,0,100,0,0,0,100,0,7.5 +2.65625,2.66,a-pcom-i3,2019-20,Everett - Webster School,930015,0,2.4,6.1,91.5,0,0,0,95.2,4.8,82.5 +10.625,5,a-pcom-i3,2019-20,Excel Academy Charter (District) - Excel Academy Charter School,4100205,5.6,1.6,24.3,66,0,0,2.5,76.2,23.8,192.1 +1,1,a-pcom-i3,2019-20,Fairhaven - East Fairhaven,940010,0.2,0,0,99.8,0,0,0,97.1,2.9,52.3 +1,1,a-pcom-i3,2019-20,Fairhaven - Fairhaven High,940505,1.5,0,0,97.1,0,0,1.4,59.4,40.6,74.4 +1.21875,1.22,a-pcom-i3,2019-20,Fairhaven - Hastings Middle,940305,0.2,0,1.8,96.1,0,0,1.8,73.5,26.5,54.4 +1.25,1.25,a-pcom-i3,2019-20,Fairhaven - Leroy Wood,940030,2.1,1.9,0,96,0,0,0,95.3,4.7,52.9 +2.3125,2.31,a-pcom-i3,2019-20,Fall River - B M C Durfee High,950505,2.2,1.1,3.4,92.6,0,0,0.7,65.8,34.2,265.4 +1,1,a-pcom-i3,2019-20,Fall River - Carlton M. Viveiros Elementary School,950009,1.2,0,0.7,96.8,0,0,1.2,89.6,10.4,80.7 +3.96875,3.97,a-pcom-i3,2019-20,Fall River - Henry Lord Community School,950017,5.9,0,5.9,87.3,0,0,1,88.9,11.1,102.1 +2.65625,2.66,a-pcom-i3,2019-20,Fall River - James Tansey,950140,0,2.8,2.8,91.5,0,0,2.8,90,10,35.2 +1.3125,1.31,a-pcom-i3,2019-20,Fall River - John J Doran,950045,0,0,2.8,95.8,0,0,1.4,86.7,13.3,71.2 +3.03125,3.03,a-pcom-i3,2019-20,Fall River - Letourneau Elementary School,950013,6.5,0,3.2,90.3,0,0,0,91.4,8.6,61.7 +3.53125,3.53,a-pcom-i3,2019-20,Fall River - Mary Fonseca Elementary School,950011,1.3,0,6.3,88.7,1.3,0,2.5,90,10,79.6 +2.375,2.37,a-pcom-i3,2019-20,Fall River - Matthew J Kuss Middle,950320,0,1.2,2.2,92.4,0,1.2,2.9,64.3,35.7,81.7 +2.46875,2.47,a-pcom-i3,2019-20,Fall River - Morton Middle,950315,0,4,4,92.1,0,0,0,81.3,18.7,75.8 +1,1,a-pcom-i3,2019-20,Fall River - North End Elementary,950005,0,1.2,0,98.8,0,0,0,89.1,10.9,83.3 +2.6875,2.69,a-pcom-i3,2019-20,Fall River - Resiliency Preparatory Academy,950525,2.7,0,3,91.4,0,0,3,41.3,58.7,33.6 +1,1,a-pcom-i3,2019-20,Fall River - Samuel Watson,950145,3,0,0,97,0,0,0,89.6,10.4,33.6 +1.0625,1.06,a-pcom-i3,2019-20,Fall River - Spencer Borden,950130,1.1,0,1.1,96.6,0,0,1.1,91.5,8.5,87.8 +4.40625,4.41,a-pcom-i3,2019-20,Fall River - Stone PK-12 School,950340,5.5,0,0,85.9,0,0,8.7,71.1,28.9,34.7 +4.15625,4.16,a-pcom-i3,2019-20,Fall River - Talbot Innovation School,950305,2.7,1.4,7.9,86.7,0,0,1.4,73.8,26.2,73.8 +1.8125,1.81,a-pcom-i3,2019-20,Fall River - William S Greene,950065,2.3,1.2,2.3,94.2,0,0,0,94,6,85.8 +1.6875,1.69,a-pcom-i3,2019-20,Falmouth - East Falmouth Elementary,960005,3.3,0,0,94.6,0,0,2.1,88.8,11.2,48.7 +1.6875,1.69,a-pcom-i3,2019-20,Falmouth - Falmouth High,960505,1.9,0.9,1.8,94.6,0.9,0,0,64.4,35.6,112.1 +2.53125,2.53,a-pcom-i3,2019-20,Falmouth - Lawrence,960405,4.4,2.5,1.2,91.9,0,0,0,80.7,19.3,80.2 +1,1,a-pcom-i3,2019-20,Falmouth - Morse Pond School,960305,1.4,0,0,97.2,0,0,1.4,85.8,14.2,70.5 +1.15625,1.16,a-pcom-i3,2019-20,Falmouth - Mullen-Hall,960020,2.3,0,1.4,96.3,0,0,0,90.7,9.3,70.3 +2.09375,2.09,a-pcom-i3,2019-20,Falmouth - North Falmouth Elementary,960030,4.6,0,2.1,93.3,0,0,0,92.5,7.5,46.6 +2.96875,2.97,a-pcom-i3,2019-20,Falmouth - Teaticket,960015,5.8,0,1.8,90.5,0,0,1.8,99.1,0.9,54.2 +1,1,a-pcom-i3,2019-20,Farmington River Reg - Farmington River Elementary,6620020,0,0,0,100,0,0,0,82.5,17.5,25.7 +4.25,4.25,a-pcom-i3,2019-20,Fitchburg - Arthur M Longsjo Middle School,970315,1.1,2.3,7.9,86.4,0,0,2.3,73.8,26.2,88.5 +2.03125,2.03,a-pcom-i3,2019-20,Fitchburg - Crocker Elementary,970016,2.5,0,4,93.5,0,0,0,96,4,74.2 +6.375,5,a-pcom-i3,2019-20,Fitchburg - Fitchburg High,970505,4.6,0.8,15,79.6,0,0,0,64.3,35.7,130.6 +6.53125,5,a-pcom-i3,2019-20,Fitchburg - Goodrich Academy,970510,7,0,14,79.1,0,0,0,72.1,27.9,14.3 +4.34375,4.34,a-pcom-i3,2019-20,Fitchburg - McKay Arts Academy,970340,2.1,0,11.8,86.1,0,0,0,87.1,12.9,93.3 +2.34375,2.34,a-pcom-i3,2019-20,Fitchburg - Memorial Middle School,970048,2.6,0,4.9,92.5,0,0,0,80.2,19.8,75.7 +2.28125,2.28,a-pcom-i3,2019-20,Fitchburg - Reingold Elementary,970043,1.9,1.4,2.7,92.7,0,0,1.4,88.5,11.5,73.8 +1.96875,1.97,a-pcom-i3,2019-20,Fitchburg - South Street Elementary,970060,2.1,0,4.2,93.7,0,0,0,89.5,10.5,94.9 +1,1,a-pcom-i3,2019-20,Florida - Abbott Memorial,980005,0,0,0,100,0,0,0,93.1,6.9,20.2 +3.875,3.88,a-pcom-i3,2019-20,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,3.1,3.1,6.2,87.6,0,0,0,73.8,26.2,32.4 +1,1,a-pcom-i3,2019-20,Foxborough - Charles Taylor Elementary,990050,0,0,0,100,0,0,0,97.1,2.9,34.3 +1,1,a-pcom-i3,2019-20,Foxborough - Foxborough High,990505,0.9,0,0,99.1,0,0,0,67.1,32.9,109.7 +1.1875,1.19,a-pcom-i3,2019-20,Foxborough - John J Ahern,990405,0,3.8,0,96.2,0,0,0,77.7,22.3,105.6 +1,1,a-pcom-i3,2019-20,Foxborough - Mabelle M Burrell,990015,0,2.5,0,97.5,0,0,0,97.5,2.5,40.6 +1,1,a-pcom-i3,2019-20,Foxborough - Vincent M Igo Elementary,990020,1.8,0,0,98.2,0,0,0,93.8,6.2,56.9 +3.6875,3.69,a-pcom-i3,2019-20,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,4.7,0,7.2,88.2,0,0,0,79.9,20.1,181.5 +13.15625,5,a-pcom-i3,2019-20,Framingham - Barbieri Elementary,1000035,1.1,1.1,39.9,57.9,0,0,0,91.1,8.9,92.2 +5.84375,5,a-pcom-i3,2019-20,Framingham - Brophy,1000006,0,0,18.7,81.3,0,0,0,94.5,5.5,64.2 +3.75,3.75,a-pcom-i3,2019-20,Framingham - Cameron Middle School,1000302,4.8,1.2,6,88,0,0,0,79.1,20.9,83.4 +1.3125,1.31,a-pcom-i3,2019-20,Framingham - Charlotte A Dunning,1000007,0,0,4.2,95.8,0,0,0,86.6,13.4,71.4 +4.25,4.25,a-pcom-i3,2019-20,Framingham - Framingham High School,1000515,4.3,1.3,8.1,86.4,0,0,0,66.4,33.6,236.4 +5.4375,5,a-pcom-i3,2019-20,Framingham - Fuller Middle,1000305,2.6,2.3,12.6,82.6,0,0,0,77.7,22.3,87.5 +4.28125,4.28,a-pcom-i3,2019-20,Framingham - Hemenway,1000015,3,0.8,10,86.3,0,0,0,92.5,7.5,66.6 +6.375,5,a-pcom-i3,2019-20,Framingham - Juniper Hill School,1000001,0,3,17.4,79.6,0,0,0,95.2,4.8,66.6 +3.59375,3.59,a-pcom-i3,2019-20,Framingham - King Elementary School,1000005,6.3,0,3.8,88.5,0,0,1.4,86.3,13.7,47.6 +2.5625,2.56,a-pcom-i3,2019-20,Framingham - Mary E Stapleton Elementary,1000045,0,1.6,6.6,91.8,0,0,0,93.1,6.9,62 +1.8125,1.81,a-pcom-i3,2019-20,Framingham - Miriam F McCarthy School,1000050,1,3.6,1.2,94.2,0,0,0,92.5,7.5,82.7 +7.125,5,a-pcom-i3,2019-20,Framingham - Potter Road,1000039,1.7,2.6,18.4,77.2,0,0,0,91.1,8.9,57.7 +5.21875,5,a-pcom-i3,2019-20,Framingham - Walsh Middle,1000310,2.1,1.6,13,83.3,0,0,0,77.1,22.9,95.1 +3.375,3.37,a-pcom-i3,2019-20,Framingham - Woodrow Wilson,1000055,0.3,1.3,9.2,89.2,0,0,0,92.5,7.5,75.8 +3.5625,3.56,a-pcom-i3,2019-20,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,4.9,0,3.2,88.6,0,0,3.2,70.3,29.7,61.6 +1,1,a-pcom-i3,2019-20,Franklin - Annie Sullivan Middle School,1010040,0,0,0,100,0,0,0,82.8,17.2,53.3 +1,1,a-pcom-i3,2019-20,Franklin - Davis Thayer,1010035,0,0,0,100,0,0,0,96.5,3.5,37.6 +2.09375,2.09,a-pcom-i3,2019-20,Franklin - Franklin Early Childhood Development Center,1010003,0,6.7,0,93.3,0,0,0,99.4,0.6,30 +1,1,a-pcom-i3,2019-20,Franklin - Franklin High,1010505,1.1,0.6,0,98.3,0,0,0,68.2,31.8,177.8 +1,1,a-pcom-i3,2019-20,Franklin - Helen Keller Elementary,1010012,0,0,0,100,0,0,0,90,10,52.1 +1,1,a-pcom-i3,2019-20,Franklin - Horace Mann,1010405,0,0,0,100,0,0,0,77.8,22.2,59.3 +1.25,1.25,a-pcom-i3,2019-20,Franklin - J F Kennedy Memorial,1010013,0,2,2,96,0,0,0,95.7,4.3,50.3 +1,1,a-pcom-i3,2019-20,Franklin - Jefferson Elementary,1010010,0,2,0,98,0,0,0,98.3,1.7,49.4 +1,1,a-pcom-i3,2019-20,Franklin - Oak Street Elementary,1010030,0,2,0,98,0,0,0,93.4,6.6,49.5 +1,1,a-pcom-i3,2019-20,Franklin - Parmenter,1010032,0,0,0,100,0,0,0,89.7,10.3,49.4 +1,1,a-pcom-i3,2019-20,Franklin - Remington Middle,1010310,1.8,0,0,98.2,0,0,0,78,22,55 +1.0625,1.06,a-pcom-i3,2019-20,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,0,0,0.7,96.6,0,0,2.7,40.2,59.8,72.8 +1.03125,1.03,a-pcom-i3,2019-20,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,3.3,96.7,0,0,0,68.1,31.9,89.7 +1,1,a-pcom-i3,2019-20,Freetown-Lakeville - Assawompset Elementary School,6650002,0,0,0,100,0,0,0,95.7,4.3,46.9 +1,1,a-pcom-i3,2019-20,Freetown-Lakeville - Freetown Elementary School,6650001,0,0,0,100,0,0,0,98.2,1.8,54.8 +1.8125,1.81,a-pcom-i3,2019-20,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,3.5,1.2,1.2,94.2,0,0,0,72.3,27.7,85.9 +1,1,a-pcom-i3,2019-20,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,100,0,0,0,91.6,8.4,47.6 +1,1,a-pcom-i3,2019-20,Frontier - Frontier Regional,6700505,1,0,0,96.9,2,0,0,63.4,36.6,98.1 +1.34375,1.34,a-pcom-i3,2019-20,Gardner - Elm Street School,1030001,0,0,2.9,95.7,0,0,1.4,85.5,14.5,69 +1,1,a-pcom-i3,2019-20,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,100,0,0,0,47.6,52.4,10.5 +2.71875,2.72,a-pcom-i3,2019-20,Gardner - Gardner High,1030505,0,3.8,3.6,91.3,0,0,1.3,68.7,31.3,79.8 +2.6875,2.69,a-pcom-i3,2019-20,Gardner - Gardner Middle School,1030405,1.4,1.4,2.9,91.4,0,0,2.9,73.8,26.2,69.8 +1,1,a-pcom-i3,2019-20,Gardner - Waterford Street,1030020,0,0,2.3,97.7,0,0,0,84.8,15.2,85.3 +1,1,a-pcom-i3,2019-20,Gateway - Chester Elementary,6720059,0,0,0,100,0,0,0,93.9,6.1,24.7 +1,1,a-pcom-i3,2019-20,Gateway - Gateway Regional High,6720505,0,0,0,97.8,0,0,2.2,76.9,23.1,45 +1.09375,1.09,a-pcom-i3,2019-20,Gateway - Gateway Regional Middle School,6720405,0,0,0,96.5,0,0,3.5,78.7,21.3,28.6 +1,1,a-pcom-i3,2019-20,Gateway - Littleville Elementary School,6720143,0,0,0,100,0,0,0,94.9,5.1,43.5 +1,1,a-pcom-i3,2019-20,Georgetown - Georgetown High School,1050505,0,0,1.5,97.6,0,0.9,0,68.3,31.7,66.3 +1,1,a-pcom-i3,2019-20,Georgetown - Georgetown Middle School,1050305,0,0,0,98.1,0,1.9,0,76.9,23.1,21.6 +1,1,a-pcom-i3,2019-20,Georgetown - Penn Brook,1050010,0,0,0,98.8,0,0,1.2,89.6,10.4,86.7 +1,1,a-pcom-i3,2019-20,Georgetown - Perley Elementary,1050005,0,0,0,100,0,0,0,100,0,11.6 +1,1,a-pcom-i3,2019-20,Gill-Montague - Gill Elementary,6740005,0,0,0,98.9,0,0,1.1,87.2,12.8,17.4 +1,1,a-pcom-i3,2019-20,Gill-Montague - Great Falls Middle,6740310,0,0,1.4,98.6,0,0,0,63.2,36.8,35.1 +1.28125,1.28,a-pcom-i3,2019-20,Gill-Montague - Hillcrest Elementary School,6740015,0,0,2.9,95.9,0,0,1.2,96.5,3.5,34.5 +1.75,1.75,a-pcom-i3,2019-20,Gill-Montague - Sheffield Elementary School,6740050,0,2.3,0,94.4,0,0,3.3,88.4,11.6,43 +2.03125,2.03,a-pcom-i3,2019-20,Gill-Montague - Turners Fall High,6740505,0,0,6.5,93.5,0,0,0,76.9,23.1,38.5 +4.75,4.75,a-pcom-i3,2019-20,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,5.7,1.3,8.2,84.8,0,0,0,72,28,61.1 +1,1,a-pcom-i3,2019-20,Gloucester - Beeman Memorial,1070010,0,0,0,100,0,0,0,96.4,3.6,55.6 +1,1,a-pcom-i3,2019-20,Gloucester - East Gloucester Elementary,1070020,0,0,2.4,97.6,0,0,0,88.1,11.9,42 +1.09375,1.09,a-pcom-i3,2019-20,Gloucester - Gloucester High,1070505,0.9,0,1.7,96.5,0.9,0,0,56.6,43.4,115.3 +1,1,a-pcom-i3,2019-20,Gloucester - Gloucester PreSchool,1070025,0,0,0,100,0,0,0,100,0,25 +1,1,a-pcom-i3,2019-20,Gloucester - Plum Cove School,1070042,0,0,0,100,0,0,0,92.3,7.7,38.8 +1,1,a-pcom-i3,2019-20,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,100,0,0,0,77.5,22.5,84.5 +1,1,a-pcom-i3,2019-20,Gloucester - Veterans Memorial,1070045,0,0,0,100,0,0,0,98,2,48.8 +1,1,a-pcom-i3,2019-20,Gloucester - West Parish,1070050,0,0,0,100,0,0,0,98.1,1.9,52.8 +31.25,5,a-pcom-i3,2019-20,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,0,0,0,0,0,0,0 +1.1875,1.19,a-pcom-i3,2019-20,Grafton - Grafton High School,1100505,0,0.9,1.9,96.2,0,0,1,66.4,33.6,107.1 +1,1,a-pcom-i3,2019-20,Grafton - Grafton Middle,1100305,0,3,0,97,0,0,0,73.2,26.8,67.2 +1,1,a-pcom-i3,2019-20,Grafton - Millbury Street Elementary School,1100200,0,0,0,99,0,0,1,91.8,8.2,97.4 +1,1,a-pcom-i3,2019-20,Grafton - North Grafton Elementary,1100025,0,0,0,100,0,0,0,100,0,45.5 +1,1,a-pcom-i3,2019-20,Grafton - North Street Elementary School,1100030,0,1.3,0,98.7,0,0,0,96.2,3.8,78.3 +1.65625,1.66,a-pcom-i3,2019-20,Grafton - South Grafton Elementary,1100005,4,0,0,94.7,1.3,0,0,94.4,5.6,60.5 +1,1,a-pcom-i3,2019-20,Granby - East Meadow,1110004,1.5,1.5,0,97.1,0,0,0,88.6,11.4,68.8 +2.53125,2.53,a-pcom-i3,2019-20,Granby - Granby Jr Sr High School,1110505,0,2,4.1,91.9,0,0,2,69.1,30.9,49.3 +1,1,a-pcom-i3,2019-20,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,2.1,0,0.6,97.3,0,0,0,48.6,51.4,168.2 +4.5,4.5,a-pcom-i3,2019-20,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0.5,1.4,12,85.6,0,0,0.5,59.4,40.6,214.7 +2.1875,2.19,a-pcom-i3,2019-20,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,1.8,2,2.8,93,0.4,0,0,62.6,37.4,283.8 +1.65625,1.66,a-pcom-i3,2019-20,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,1.8,0.4,2.3,94.7,0.8,0,0,54.7,45.3,256.4 +2.34375,2.34,a-pcom-i3,2019-20,Greenfield - Discovery School at Four Corners,1140025,0,0,5.6,92.5,0,0,1.9,90.5,9.5,53.6 +1,1,a-pcom-i3,2019-20,Greenfield - Federal Street School,1140010,0,0,0,100,0,0,0,88.3,11.7,41.2 +1.15625,1.16,a-pcom-i3,2019-20,Greenfield - Greenfield High,1140505,0,1.2,1.2,96.3,0,0,1.2,62.7,37.3,80.1 +1.21875,1.22,a-pcom-i3,2019-20,Greenfield - Greenfield Middle,1140305,2,2,0,96.1,0,0,0,78.7,21.3,60.9 +1,1,a-pcom-i3,2019-20,Greenfield - Newton School,1140035,0,0,2.4,97.6,0,0,0,92.7,7.3,41.7 +1,1,a-pcom-i3,2019-20,Greenfield - The Academy of Early Learning at North Parish,1140005,0,0,0,100,0,0,0,97.5,2.5,31.7 +1.90625,1.91,a-pcom-i3,2019-20,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,2,2,2,93.9,0,0,0,72.4,27.6,48.9 +1,1,a-pcom-i3,2019-20,Groton-Dunstable - Boutwell School,6730001,0,0,0,100,0,0,0,100,0,18 +1,1,a-pcom-i3,2019-20,Groton-Dunstable - Florence Roche School,6730010,0,0,0,98.4,0,0,1.6,93.5,6.5,62 +1,1,a-pcom-i3,2019-20,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,98.7,1.3,0,0,62.2,37.8,78.5 +1,1,a-pcom-i3,2019-20,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,0,99,0,0,1,83.9,16.1,98.1 +1,1,a-pcom-i3,2019-20,Groton-Dunstable - Swallow/Union School,6730005,0,0,0,100,0,0,0,97.9,2.1,47 +1.28125,1.28,a-pcom-i3,2019-20,Hadley - Hadley Elementary,1170015,2,2,0,95.9,0,0,0,87.8,12.2,49.2 +2.28125,2.28,a-pcom-i3,2019-20,Hadley - Hopkins Academy,1170505,2.4,0,4.9,92.7,0,0,0,73.2,26.8,41.1 +1,1,a-pcom-i3,2019-20,Halifax - Halifax Elementary,1180005,0,0,0,100,0,0,0,85.6,14.4,62.4 +1,1,a-pcom-i3,2019-20,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,0,0,100,0,0,0,95.1,4.9,35 +1,1,a-pcom-i3,2019-20,Hamilton-Wenham - Cutler School,6750010,0,0,2.4,97.6,0,0,0,96.6,3.4,40.8 +1.8125,1.81,a-pcom-i3,2019-20,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,2.2,1.4,94.2,0,0,2.2,61.7,38.3,72.9 +2.4375,2.44,a-pcom-i3,2019-20,Hamilton-Wenham - Miles River Middle,6750310,0,3.4,1.8,92.2,0,0,2.5,82.9,17.1,55 +1.3125,1.31,a-pcom-i3,2019-20,Hamilton-Wenham - Winthrop School,6750015,0,1.7,0.8,95.8,0,0,1.7,94.6,5.4,58.9 +4.125,4.13,a-pcom-i3,2019-20,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,4.7,3.9,4.7,86.8,0,0,0,59.7,40.3,64.5 +4.75,4.75,a-pcom-i3,2019-20,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,10.1,2.5,2.5,84.8,0,0,0,62,38,39.5 +1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Green Meadows Elementary,6800005,1.6,0,0,96.9,0,0,1.6,92.1,7.9,63.6 +1.5625,1.56,a-pcom-i3,2019-20,Hampden-Wilbraham - Mile Tree Elementary,6800025,1.7,0,3.3,95,0,0,0,98.3,1.7,60.5 +1.34375,1.34,a-pcom-i3,2019-20,Hampden-Wilbraham - Minnechaug Regional High,6800505,0.9,0,3.5,95.7,0,0,0,69.8,30.2,115.9 +1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Soule Road,6800030,0,0,0,100,0,0,0,95.9,4.1,36.7 +1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,100,0,0,0,96.2,3.8,40 +1,1,a-pcom-i3,2019-20,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,100,0,0,0,72.1,27.9,71.6 +1,1,a-pcom-i3,2019-20,Hampshire - Hampshire Regional High,6830505,0.9,0.9,0.9,97.3,0,0,0,68.7,31.3,111.6 +1,1,a-pcom-i3,2019-20,Hancock - Hancock Elementary,1210005,0,0,0,100,0,0,0,86.4,13.6,14.7 +1,1,a-pcom-i3,2019-20,Hanover - Cedar Elementary,1220004,0,0,0,100,0,0,0,97,3,65.8 +1.03125,1.03,a-pcom-i3,2019-20,Hanover - Center Elementary,1220005,0,1.6,1.6,96.7,0,0,0,91.9,8.1,61.4 +1,1,a-pcom-i3,2019-20,Hanover - Hanover High,1220505,2.1,0,0,97.9,0,0,0,67,33,95.5 +1,1,a-pcom-i3,2019-20,Hanover - Hanover Middle,1220305,0,0,1,98,1,0,0,76.9,23.1,101.7 +1.1875,1.19,a-pcom-i3,2019-20,Harvard - Bromfield,1250505,0,0,2.5,96.2,0,1.3,0,72.5,27.5,79.9 +2.4375,2.44,a-pcom-i3,2019-20,Harvard - Hildreth Elementary School,1250005,1.7,4.3,1.7,92.2,0,0,0,91.4,8.6,58.1 +1,1,a-pcom-i3,2019-20,Hatfield - Hatfield Elementary,1270005,0,0,2.5,97.5,0,0,0,86.5,13.5,40 +1,1,a-pcom-i3,2019-20,Hatfield - Smith Academy,1270505,0,0,0,100,0,0,0,67.2,32.8,32.3 +1.03125,1.03,a-pcom-i3,2019-20,Haverhill - Bradford Elementary,1280008,0,0,3.3,96.7,0,0,0,95.3,4.7,74.9 +2.46875,2.47,a-pcom-i3,2019-20,Haverhill - Caleb Dustin Hunking School,1280030,0,0,7.9,92.1,0,0,0,85,15,113.4 +1.0625,1.06,a-pcom-i3,2019-20,Haverhill - Consentino Middle School,1280100,0,0,3.4,96.6,0,0,0,81.8,18.2,72.7 +1,1,a-pcom-i3,2019-20,Haverhill - Crowell,1280515,0,0,0,100,0,0,0,32.3,67.7,3.1 +2.1875,2.19,a-pcom-i3,2019-20,Haverhill - Dr Paul Nettle,1280050,0,0,7,93,0,0,0,83.4,16.6,78.2 +2.53125,2.53,a-pcom-i3,2019-20,Haverhill - Golden Hill,1280026,0,1.3,6.9,91.9,0,0,0,90,10,79.9 +3.5625,3.56,a-pcom-i3,2019-20,Haverhill - Greenleaf Academy,1280033,0,0,11.4,88.6,0,0,0,54.4,45.6,17.5 +3.3125,3.31,a-pcom-i3,2019-20,Haverhill - Haverhill High,1280505,0.9,1.8,7.9,89.4,0,0,0,66.6,33.4,226.6 +1.53125,1.53,a-pcom-i3,2019-20,Haverhill - John G Whittier,1280085,2,0,3,95.1,0,0,0,75.6,24.4,50.7 +2.15625,2.16,a-pcom-i3,2019-20,Haverhill - Moody,1280045,2.3,2.3,2.3,93.1,0,0,0,100,0,43.5 +1.03125,1.03,a-pcom-i3,2019-20,Haverhill - Pentucket Lake Elementary,1280054,0,0,3.3,96.7,0,0,0,93.2,6.8,76.6 +1.1875,1.19,a-pcom-i3,2019-20,Haverhill - Silver Hill Elementary School,1280067,0,0,3.8,96.2,0,0,0,90.6,9.4,66.5 +1.1875,1.19,a-pcom-i3,2019-20,Haverhill - TEACH,1280073,0,3.8,0,96.2,0,0,0,80.9,19.1,26.1 +2.21875,2.22,a-pcom-i3,2019-20,Haverhill - Tilton,1280075,0,0,7.1,92.9,0,0,0,94.3,5.7,70.5 +1.65625,1.66,a-pcom-i3,2019-20,Haverhill - Tilton Upper Middle School,1280105,0,0,5.3,94.7,0,0,0,92,8,28.2 +1,1,a-pcom-i3,2019-20,Haverhill - Walnut Square,1280080,0,0,0,100,0,0,0,97.7,2.3,15.6 +1,1,a-pcom-i3,2019-20,Hawlemont - Hawlemont Regional,6850005,0,0,0,100,0,0,0,92,8,32.4 +29.09375,5,a-pcom-i3,2019-20,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,75.9,3.4,10.3,6.9,0,0,3.4,72.4,27.6,29 +3.5625,3.56,a-pcom-i3,2019-20,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,2.9,2.8,2.9,88.6,0,0,2.9,91.4,8.6,35 +2.34375,2.34,a-pcom-i3,2019-20,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,1.9,0,3.7,92.5,0,0,1.9,83.7,16.3,39.7 +1.15625,1.16,a-pcom-i3,2019-20,Hingham - East Elementary School,1310005,1.2,0,0,96.3,1.2,0,1.2,91.9,8.1,80.7 +1,1,a-pcom-i3,2019-20,Hingham - Hingham High,1310505,0.7,0.5,0.7,98.1,0,0,0,67.9,32.1,146.3 +1.09375,1.09,a-pcom-i3,2019-20,Hingham - Hingham Middle School,1310410,0,0,2.6,96.5,0,0,0.9,78.8,21.2,114.8 +1,1,a-pcom-i3,2019-20,Hingham - Plymouth River,1310019,0,0.8,0,99.2,0,0,0,91.4,8.6,61.9 +1.34375,1.34,a-pcom-i3,2019-20,Hingham - South Elementary,1310020,1.4,2.9,0,95.7,0,0,0,96.2,3.8,69.3 +1,1,a-pcom-i3,2019-20,Hingham - Wm L Foster Elementary,1310010,1.6,0,1.6,96.8,0,0,0,94.2,5.8,63 +1,1,a-pcom-i3,2019-20,Holbrook - Holbrook Middle High School,1330505,0,1.6,0,98.4,0,0,0,68.3,31.7,62.4 +2.09375,2.09,a-pcom-i3,2019-20,Holbrook - John F Kennedy,1330018,5.3,1.3,0,93.3,0,0,0,98.7,1.3,74.9 +1,1,a-pcom-i3,2019-20,Holland - Holland Elementary,1350005,0,3.1,0,96.9,0,0,0,92.5,7.5,32.7 +1,1,a-pcom-i3,2019-20,Holliston - Holliston High,1360505,0,2,1,97,0,0,0,67.8,32.2,101.4 +1.6875,1.69,a-pcom-i3,2019-20,Holliston - Miller School,1360007,1.1,0,1.2,94.6,1.1,0,2.1,93.4,6.6,95 +1,1,a-pcom-i3,2019-20,Holliston - Placentino Elementary,1360010,0,1,0.9,98.1,0,0,0,94.6,5.4,100.5 +1,1,a-pcom-i3,2019-20,Holliston - Robert H. Adams Middle School,1360305,0,2.1,1,96.9,0,0,0,84.8,15.2,97.5 +13.40625,5,a-pcom-i3,2019-20,Holyoke - E N White Elementary,1370045,3,0,39.9,57.1,0,0,0,92.6,7.4,67.7 +9.3125,5,a-pcom-i3,2019-20,Holyoke - H.B. Lawrence School,1370070,5.2,0,24.6,70.2,0,0,0,94.8,5.2,38.6 +10.125,5,a-pcom-i3,2019-20,Holyoke - Holyoke High,1370505,4,1.5,26.9,67.6,0,0,0,57,43,198.7 +11.03125,5,a-pcom-i3,2019-20,Holyoke - Holyoke STEM Academy,1370320,6,0,29.3,64.7,0,0,0,62.4,37.6,33.3 +15.40625,5,a-pcom-i3,2019-20,Holyoke - Joseph Metcalf School,1370003,0,0,49.3,50.7,0,0,0,84.3,15.7,31.4 +11.6875,5,a-pcom-i3,2019-20,Holyoke - Kelly Elementary,1370040,8.2,0,29.2,62.6,0,0,0,75.4,24.6,48.7 +11.625,5,a-pcom-i3,2019-20,Holyoke - Lt Clayre Sullivan Elementary,1370055,6.8,1.4,29,62.8,0,0,0,85,15,73.3 +6.59375,5,a-pcom-i3,2019-20,Holyoke - Lt Elmer J McMahon Elementary,1370015,0,0,21.1,78.9,0,0,0,93.6,6.4,62.8 +12.25,5,a-pcom-i3,2019-20,Holyoke - Maurice A Donahue Elementary,1370060,7.3,0,30.8,60.8,0,0,1,78.2,21.8,95.7 +10.15625,5,a-pcom-i3,2019-20,Holyoke - Morgan Full Service Community School,1370025,7.9,0,22.7,67.5,2,0,0,98,2,50.8 +19.4375,5,a-pcom-i3,2019-20,Holyoke - Veritas Prep Holyoke,1370075,21.6,5.4,29.7,37.8,5.4,0,0,75.7,24.3,37 +13.1875,5,a-pcom-i3,2019-20,Holyoke - William R. Peck School,1370030,3.8,0,36.4,57.8,0,0,1.9,78.6,21.4,52.1 +12.65625,5,a-pcom-i3,2019-20,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,3.2,0,37.3,59.5,0,0,0,69.7,30.3,92.5 +1,1,a-pcom-i3,2019-20,Hoosac Valley Regional - Hoosac Valley Elementary School,6030020,1.2,0,0,98.8,0,0,0,96.5,3.5,81.9 +1,1,a-pcom-i3,2019-20,Hoosac Valley Regional - Hoosac Valley High School,6030505,1.6,0,0,98.4,0,0,0,74.1,25.9,63.4 +1,1,a-pcom-i3,2019-20,Hoosac Valley Regional - Hoosac Valley Middle School,6030315,1.6,0,0,96.9,0,1.6,0,72.4,27.6,63.5 +1,1,a-pcom-i3,2019-20,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,100,0,0,0,74.2,25.8,72.5 +1,1,a-pcom-i3,2019-20,Hopedale - Memorial,1380010,0,0,1.1,98.9,0,0,0,97.6,2.4,89.1 +1,1,a-pcom-i3,2019-20,Hopedale - Park Street School,1380003,0,0,0,100,0,0,0,100,0,15.5 +1,1,a-pcom-i3,2019-20,Hopkinton - Elmwood,1390010,0,3,0,97,0,0,0,90.1,9.9,65.7 +1,1,a-pcom-i3,2019-20,Hopkinton - Hopkins Elementary School,1390015,0,1.5,1.5,97,0,0,0,92.4,7.6,65.7 +1.15625,1.16,a-pcom-i3,2019-20,Hopkinton - Hopkinton High,1390505,0,1.7,2,96.3,0,0,0,61.3,38.7,126.2 +1.46875,1.47,a-pcom-i3,2019-20,Hopkinton - Hopkinton Middle School,1390305,1.1,2,1.6,95.3,0,0,0,78,22,91.9 +1.5,1.5,a-pcom-i3,2019-20,Hopkinton - Hopkinton Pre-School,1390003,4.8,0,0,95.2,0,0,0,100,0,18.8 +1.25,1.25,a-pcom-i3,2019-20,Hopkinton - Marathon Elementary School,1390005,0,2.7,1.3,96,0,0,0,94.7,5.3,75.4 +1,1,a-pcom-i3,2019-20,Hudson - C A Farley,1410030,0,0,1.4,98.6,0,0,0,97.1,2.9,69.2 +1.40625,1.41,a-pcom-i3,2019-20,Hudson - David J. Quinn Middle School,1410410,0,0,4.5,95.5,0,0,0,84.9,15.1,88.5 +1,1,a-pcom-i3,2019-20,Hudson - Forest Avenue Elementary,1410015,0,0,0,100,0,0,0,92,8,50 +1,1,a-pcom-i3,2019-20,Hudson - Hudson High,1410505,0.7,0.7,0.7,97.8,0,0,0,74.5,25.5,133.5 +1,1,a-pcom-i3,2019-20,Hudson - Mulready Elementary,1410007,0,0,0,100,0,0,0,95.5,4.5,61.7 +1,1,a-pcom-i3,2019-20,Hull - Hull High,1420505,0,0,0,100,0,0,0,64.1,35.9,45.7 +1,1,a-pcom-i3,2019-20,Hull - Lillian M Jacobs,1420015,0,0,0,100,0,0,0,94,6,57.4 +1,1,a-pcom-i3,2019-20,Hull - Memorial Middle,1420305,0,0,0,100,0,0,0,80.6,19.4,31 +2.875,2.88,a-pcom-i3,2019-20,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,1.8,2.6,3.9,90.8,0,0,1,73.7,26.3,101.7 +1,1,a-pcom-i3,2019-20,Ipswich - Ipswich High,1440505,1.3,0,1.3,97.5,0,0,0,71.4,28.6,78.8 +1,1,a-pcom-i3,2019-20,Ipswich - Ipswich Middle School,1440305,0,0,3.1,96.9,0,0,0,80.5,19.5,65 +1,1,a-pcom-i3,2019-20,Ipswich - Paul F Doyon Memorial,1440007,0,0,2.8,97.2,0,0,0,94.5,5.5,71.9 +1,1,a-pcom-i3,2019-20,Ipswich - Winthrop,1440015,0,0,1.5,97,0,1.5,0,92.8,7.2,67.7 +19.9375,5,a-pcom-i3,2019-20,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,36.2,2.9,21.7,36.2,1.4,0,1.4,73.9,26.1,69 +13.5625,5,a-pcom-i3,2019-20,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,23.2,5.6,11.8,56.6,0,0,2.8,72.3,27.7,178.2 +1,1,a-pcom-i3,2019-20,King Philip - King Philip Middle School,6900510,0,0,2.3,97.7,0,0,0,81.7,18.3,86.5 +1,1,a-pcom-i3,2019-20,King Philip - King Philip Regional High,6900505,0,0.8,1.5,97.7,0,0,0,68.4,31.6,132.8 +1,1,a-pcom-i3,2019-20,Kingston - Kingston Elementary,1450005,0,0,0,100,0,0,0,92.6,7.4,60.7 +1,1,a-pcom-i3,2019-20,Kingston - Kingston Intermediate,1450020,0,0,0,100,0,0,0,86.7,13.3,71.4 +3.625,3.62,a-pcom-i3,2019-20,Lawrence - Alexander B Bruce,1490015,0,0,10,88.4,1.6,0,0,75.4,24.6,61.1 +4.96875,4.97,a-pcom-i3,2019-20,Lawrence - Arlington Middle School,1490017,0,0,15.9,84.1,0,0,0,63.9,36.1,55.5 +3.75,3.75,a-pcom-i3,2019-20,Lawrence - Community Day Arlington,1490009,0,1.3,10.7,88,0,0,0,85,15,75.4 +5.78125,5,a-pcom-i3,2019-20,Lawrence - Edward F. Parthum,1490053,0,0,18.5,81.5,0,0,0,91.4,8.6,70.6 +4.59375,4.59,a-pcom-i3,2019-20,Lawrence - Emily G Wetherbee,1490080,0,0,14.7,85.3,0,0,0,87.6,12.4,88.7 +4.4375,4.44,a-pcom-i3,2019-20,Lawrence - Francis M Leahy,1490040,0,0,14.2,85.8,0,0,0,91.8,8.2,49.1 +6.6875,5,a-pcom-i3,2019-20,Lawrence - Frost Middle School,1490525,3.9,2,13.5,78.6,0,2,0,68.8,31.2,50.8 +5.09375,5,a-pcom-i3,2019-20,Lawrence - Gerard A. Guilmette,1490022,0,1.5,14.8,83.7,0,0,0,97,3,67.8 +3.9375,3.94,a-pcom-i3,2019-20,Lawrence - Guilmette Middle School,1490025,1.4,0,11.2,87.4,0,0,0,74.9,25.1,71.9 +4.875,4.87,a-pcom-i3,2019-20,Lawrence - High School Learning Center,1490536,0,0,11.7,84.4,3.9,0,0,59,41,25.6 +10.125,5,a-pcom-i3,2019-20,Lawrence - James F Hennessey,1490020,0,1.9,30.5,67.6,0,0,0,90.6,9.4,53.4 +12.5625,5,a-pcom-i3,2019-20,Lawrence - John Breen School,1490003,0,0,37.9,59.8,2.4,0,0,99.9,0.1,42.4 +6.25,5,a-pcom-i3,2019-20,Lawrence - John K Tarbox,1490075,0,0,20,80,0,0,0,91.3,8.7,35.1 +14.34375,5,a-pcom-i3,2019-20,Lawrence - Lawlor Early Childhood Center,1490002,0,0,45.9,54.1,0,0,0,91.6,8.4,24.2 +5.09375,5,a-pcom-i3,2019-20,Lawrence - Lawrence Family Public Academy,1490011,3.2,0,13.1,83.7,0,0,0,99.9,0.1,31.2 +8.03125,5,a-pcom-i3,2019-20,Lawrence - Lawrence High School,1490515,0.8,1.1,23.7,74.3,0,0,0,60.6,39.4,363.2 +6.15625,5,a-pcom-i3,2019-20,Lawrence - Oliver Partnership School,1490048,0,0,19.7,80.3,0,0,0,85.7,14.3,56.1 +4.03125,4.03,a-pcom-i3,2019-20,Lawrence - Parthum Middle School,1490027,0,0,12.9,87.1,0,0,0,69.4,30.6,62.1 +4.84375,4.84,a-pcom-i3,2019-20,Lawrence - Robert Frost,1490018,3.1,1.5,10.8,84.5,0,0,0,89.4,10.6,64.9 +7.21875,5,a-pcom-i3,2019-20,Lawrence - Rollins Early Childhood Center,1490001,0,0,23.1,76.9,0,0,0,95.3,4.7,43.4 +11.4375,5,a-pcom-i3,2019-20,Lawrence - School for Exceptional Studies,1490537,3.4,0.9,32.3,63.4,0,0,0,64.5,35.5,116.1 +5.21875,5,a-pcom-i3,2019-20,Lawrence - South Lawrence East Elementary School,1490004,0,0,14.2,83.3,1.3,0,1.3,83.3,16.7,78 +7.84375,5,a-pcom-i3,2019-20,Lawrence - Spark Academy,1490085,3.5,0,21.5,74.9,0,0,0,80.2,19.8,57 +13.71875,5,a-pcom-i3,2019-20,Lawrence - UP Academy Leonard Middle School,1490090,2.4,0,39,56.1,2.4,0,0,61,39,41.1 +8.34375,5,a-pcom-i3,2019-20,Lawrence - UP Academy Oliver Middle School,1490049,2.2,6.6,17.8,73.3,0,0,0,75.5,24.5,45.1 +8.03125,5,a-pcom-i3,2019-20,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,1.1,4.3,20.3,74.3,0,0,0,89.3,10.7,93.5 +1,1,a-pcom-i3,2019-20,Lee - Lee Elementary,1500025,0,0,1.6,98.4,0,0,0,92.4,7.6,63.4 +1.53125,1.53,a-pcom-i3,2019-20,Lee - Lee Middle/High School,1500505,0,1.6,3.3,95.1,0,0,0,76.8,23.2,61.3 +1,1,a-pcom-i3,2019-20,Leicester - Leicester Elementary,1510005,0,0,1.4,98.6,0,0,0,98.6,1.4,71.1 +2.375,2.37,a-pcom-i3,2019-20,Leicester - Leicester High,1510505,0,1.7,2.5,92.4,0,0,3.4,71.5,28.5,59.3 +2.1875,2.19,a-pcom-i3,2019-20,Leicester - Leicester Integrated Preschool,1510001,0,7,0,93,0,0,0,93,7,14.4 +1.34375,1.34,a-pcom-i3,2019-20,Leicester - Leicester Middle,1510015,0,0,2.6,95.7,0,0,1.7,79.2,20.8,57.6 +1,1,a-pcom-i3,2019-20,Lenox - Lenox Memorial High,1520505,0,0,1.4,98.6,0,0,0,62.6,37.4,70.5 +1,1,a-pcom-i3,2019-20,Lenox - Morris,1520015,0,0,0,100,0,0,0,92,8,62.9 +2.90625,2.91,a-pcom-i3,2019-20,Leominster - Bennett,1530003,4.7,0,4.7,90.7,0,0,0,100,0,21.4 +1.34375,1.34,a-pcom-i3,2019-20,Leominster - Center For Technical Education Innovation,1530605,0,2.1,2.1,95.7,0,0,0,37.9,62.1,47 +1.53125,1.53,a-pcom-i3,2019-20,Leominster - Fall Brook,1530007,0,0,4.9,95.1,0,0,0,97.6,2.4,82.3 +3.0625,3.06,a-pcom-i3,2019-20,Leominster - Frances Drake School,1530010,2.8,0.9,6.1,90.2,0,0,0,89.7,10.3,106.7 +1.375,1.38,a-pcom-i3,2019-20,Leominster - Johnny Appleseed,1530025,1.9,1.3,1.3,95.6,0,0,0,96.9,3.1,79.5 +6.21875,5,a-pcom-i3,2019-20,Leominster - Leominster Center for Excellence,1530515,10,0,10,80.1,0,0,0,70.1,29.9,10.1 +2.0625,2.06,a-pcom-i3,2019-20,Leominster - Leominster High School,1530505,2,1.3,3.3,93.4,0,0,0,66.9,33.1,152.4 +2.21875,2.22,a-pcom-i3,2019-20,Leominster - Lincoln School,1530005,0,0,7.1,92.9,0,0,0,96.5,3.5,28.3 +2.03125,2.03,a-pcom-i3,2019-20,Leominster - Northwest,1530030,3.9,0,2.6,93.5,0,0,0,89.5,10.5,76.4 +1,1,a-pcom-i3,2019-20,Leominster - Priest Street,1530040,0,0,1.7,98.3,0,0,0,95,5,30.3 +1.84375,1.84,a-pcom-i3,2019-20,Leominster - Samoset School,1530045,1.5,0,4.5,94.1,0,0,0,75.5,24.5,67.3 +1.84375,1.84,a-pcom-i3,2019-20,Leominster - Sky View Middle School,1530320,0,0,5.9,94.1,0,0,0,84.4,15.6,93.8 +1,1,a-pcom-i3,2019-20,Leverett - Leverett Elementary,1540005,3.2,0,0,96.8,0,0,0,79.9,20.1,29.4 +5.6875,5,a-pcom-i3,2019-20,Lexington - Bowman,1550008,4.8,8.5,2.9,81.8,0,0.7,1.4,84.8,15.2,73.5 +3.375,3.37,a-pcom-i3,2019-20,Lexington - Bridge,1550006,3,4.3,0.9,89.2,0,0,2.6,91.6,8.4,76.7 +1.625,1.63,a-pcom-i3,2019-20,Lexington - Fiske,1550015,1.6,2.5,1.1,94.8,0,0,0,87.7,12.3,88.9 +4.4375,4.44,a-pcom-i3,2019-20,Lexington - Harrington,1550030,3.5,6.8,2.6,85.8,0,0,1.4,87.3,12.7,72.4 +4.21875,4.22,a-pcom-i3,2019-20,Lexington - Jonas Clarke Middle,1550305,3.5,4.8,3.9,86.5,0,0,1.2,75.8,24.2,150.6 +3.9375,3.94,a-pcom-i3,2019-20,Lexington - Joseph Estabrook,1550010,3,3.4,4.8,87.4,0,0,1.4,89.8,10.2,72.9 +1.875,1.88,a-pcom-i3,2019-20,Lexington - Lexington Children's Place,1550001,0,0,1.3,94,2.7,0,2,100,0,33.4 +3.21875,3.22,a-pcom-i3,2019-20,Lexington - Lexington High,1550505,1.9,3.6,3.7,89.7,0,0,1,71.8,28.2,294.5 +6.375,5,a-pcom-i3,2019-20,Lexington - Maria Hastings,1550035,7.7,9.7,1.7,79.6,0,0,1.2,93,7,81.7 +3.4375,3.44,a-pcom-i3,2019-20,Lexington - Wm Diamond Middle,1550310,1.8,5.2,4,89,0,0,0,74.9,25.1,130.1 +13.78125,5,a-pcom-i3,2019-20,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,12.8,4.9,21.5,55.9,0,0,4.9,63.3,36.7,40.6 +2.03125,2.03,a-pcom-i3,2019-20,Lincoln - Hanscom Middle,1570305,2,0.1,4.4,93.5,0,0,0,77,23,49.9 +2.65625,2.66,a-pcom-i3,2019-20,Lincoln - Hanscom Primary,1570006,3.7,0,4.8,91.5,0,0,0,93.4,6.6,64.2 +3.34375,3.34,a-pcom-i3,2019-20,Lincoln - Lincoln School,1570025,4.8,3.8,1.2,89.3,1,0,0,89.7,10.3,103.9 +2.375,2.37,a-pcom-i3,2019-20,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,2.8,2.4,1,92.4,0.5,0.5,0.5,61.6,38.4,209.8 +1.3125,1.31,a-pcom-i3,2019-20,Littleton - Littleton High School,1580505,0,0,0.4,95.8,0,0,3.9,63.8,36.2,51.8 +1,1,a-pcom-i3,2019-20,Littleton - Littleton Middle School,1580305,1.6,0,0,98.4,0,0,0,83.1,16.9,46.1 +1,1,a-pcom-i3,2019-20,Littleton - Russell St Elementary,1580015,0,0,0,100,0,0,0,93.3,6.7,44.6 +1.78125,1.78,a-pcom-i3,2019-20,Littleton - Shaker Lane Elementary,1580005,0,2.8,1.2,94.3,0,0,1.6,98,2,61.5 +1,1,a-pcom-i3,2019-20,Longmeadow - Blueberry Hill,1590005,0,0,0,100,0,0,0,95,5,61.7 +1,1,a-pcom-i3,2019-20,Longmeadow - Center,1590010,0,0,0,100,0,0,0,95.8,4.2,54.6 +1,1,a-pcom-i3,2019-20,Longmeadow - Glenbrook Middle,1590017,0,0,2.1,97.9,0,0,0,81,19,47.2 +1.0625,1.06,a-pcom-i3,2019-20,Longmeadow - Longmeadow High,1590505,0.9,0,2.6,96.6,0,0,0,68.8,31.2,116.1 +1,1,a-pcom-i3,2019-20,Longmeadow - Williams Middle,1590305,2.3,0,0,97.7,0,0,0,79.4,20.6,44.3 +1,1,a-pcom-i3,2019-20,Longmeadow - Wolf Swamp Road,1590025,0,0,0,100,0,0,0,94.5,5.5,77.6 +3.5,3.5,a-pcom-i3,2019-20,Lowell - Abraham Lincoln,1600020,0.7,4.5,6,88.8,0,0,0,94.9,5.1,66.9 +4.09375,4.09,a-pcom-i3,2019-20,Lowell - B.F. Butler Middle School,1600310,5.4,4.6,3.1,86.9,0,0,0,78.9,21.1,64.8 +2.875,2.88,a-pcom-i3,2019-20,Lowell - Bartlett Community Partnership,1600090,1.8,3.7,2.5,90.8,0,1.2,0,87.3,12.7,81.2 +5.875,5,a-pcom-i3,2019-20,Lowell - Cardinal O'Connell Early Learning Center,1600001,0,11,4.7,81.2,3.1,0,0,96.9,3.1,31.9 +1.875,1.88,a-pcom-i3,2019-20,Lowell - Charles W Morey,1600030,0,1.5,4.5,94,0,0,0,94,6,66.3 +4.375,4.38,a-pcom-i3,2019-20,Lowell - Charlotte M Murkland Elementary,1600080,0.7,7.4,5.9,86,0,0,0,86.1,13.9,67.7 +1.5,1.5,a-pcom-i3,2019-20,Lowell - Dr An Wang School,1600345,0,0.7,4.1,95.2,0,0,0,82.8,17.2,72.8 +1,1,a-pcom-i3,2019-20,Lowell - Dr Gertrude Bailey,1600002,0,1.6,0,98.4,0,0,0,93.6,6.4,62.4 +4.5,4.5,a-pcom-i3,2019-20,Lowell - Dr. Janice Adie Day School,1600605,0,8.3,6.2,85.6,0,0,0,85.1,14.9,48.5 +3.53125,3.53,a-pcom-i3,2019-20,Lowell - Greenhalge,1600015,2.8,0,4.2,88.7,1.4,1.4,1.4,95.8,4.2,71 +6.21875,5,a-pcom-i3,2019-20,Lowell - Henry J Robinson Middle,1600330,1.9,5.1,11.6,80.1,0,0,1.3,71.2,28.8,77.7 +2.71875,2.72,a-pcom-i3,2019-20,Lowell - James S Daley Middle School,1600315,1.8,3.7,2.4,91.3,0.7,0,0,82.2,17.8,82 +3.46875,3.47,a-pcom-i3,2019-20,Lowell - James Sullivan Middle School,1600340,2.5,0,7.4,88.9,0,1.2,0,77.2,22.8,81 +1.15625,1.16,a-pcom-i3,2019-20,Lowell - John J Shaughnessy,1600050,1.5,0.7,1.5,96.3,0,0,0,94,6,67.1 +6.03125,5,a-pcom-i3,2019-20,Lowell - Joseph McAvinnue,1600010,0.7,5.7,12.9,80.7,0,0,0,90,10,69.9 +4.09375,4.09,a-pcom-i3,2019-20,Lowell - Kathryn P. Stoklosa Middle School,1600360,1.3,9.8,0,86.9,0,0.7,1.3,62.8,37.2,76.3 +6.96875,5,a-pcom-i3,2019-20,Lowell - Laura Lee Therapeutic Day School,1600085,5.6,0,16.8,77.7,0,0,0,67.6,32.4,17.9 +5.84375,5,a-pcom-i3,2019-20,Lowell - Leblanc Therapeutic Day School,1600320,0,2.7,16,81.3,0,0,0,65.3,34.7,18.8 +3.9375,3.94,a-pcom-i3,2019-20,Lowell - Lowell High,1600505,2.3,4.7,4.9,87.4,0,0,0.7,63.7,36.3,305.9 +1.90625,1.91,a-pcom-i3,2019-20,Lowell - Moody Elementary,1600027,0,0,6.1,93.9,0,0,0,93.9,6.1,32.6 +1,1,a-pcom-i3,2019-20,Lowell - Pawtucketville Memorial,1600036,1.4,0,0,98.6,0,0,0,91,9,72.6 +4.34375,4.34,a-pcom-i3,2019-20,Lowell - Peter W Reilly,1600040,1.6,0,12.3,86.1,0,0,0,94.3,5.7,61.1 +3.03125,3.03,a-pcom-i3,2019-20,Lowell - Pyne Arts,1600018,2.8,1.4,5.6,90.3,0,0,0,83.5,16.5,71.9 +4.6875,4.69,a-pcom-i3,2019-20,Lowell - Rogers STEM Academy,1600005,2.7,6.4,5.9,85,0,0,0,81.8,18.2,93.2 +4.71875,4.72,a-pcom-i3,2019-20,Lowell - S Christa McAuliffe Elementary,1600075,1.5,1.5,12,84.9,0,0,0,90.4,9.6,66.4 +6.9375,5,a-pcom-i3,2019-20,Lowell - The Career Academy,1600515,5.5,11.1,5.5,77.8,0,0,0,65.1,34.9,18.1 +1.375,1.38,a-pcom-i3,2019-20,Lowell - Washington,1600055,0,0,2.2,95.6,2.2,0,0,85.7,14.3,45.5 +8.65625,5,a-pcom-i3,2019-20,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,4,9.9,11.9,72.3,0,0,2,77.3,22.7,101.3 +9.25,5,a-pcom-i3,2019-20,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,14.8,14.8,70.4,0,0,0,77.8,22.2,13.5 +1,1,a-pcom-i3,2019-20,Ludlow - Chapin Street Elementary School,1610020,0,0,0,100,0,0,0,96.4,3.6,46.7 +1,1,a-pcom-i3,2019-20,Ludlow - East Street Elementary School,1610010,1.1,0,1.1,97.9,0,0,0,93,7,94.8 +1.09375,1.09,a-pcom-i3,2019-20,Ludlow - Ludlow Senior High,1610505,0.9,0,1.7,96.5,0,0,0.9,67,33,115.2 +1,1,a-pcom-i3,2019-20,Ludlow - Paul R Baird Middle,1610305,1,0,1,98,0,0,0,77.7,22.3,98.5 +1,1,a-pcom-i3,2019-20,Ludlow - Veterans Park Elementary,1610023,0,0,0.8,99.2,0,0,0,90.5,9.5,53.3 +1,1,a-pcom-i3,2019-20,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,100,0,0,0,62.5,37.5,3.2 +1,1,a-pcom-i3,2019-20,Lunenburg - Lunenburg High,1620505,0,0,0,98,0,2,0,56.2,43.8,50.9 +1,1,a-pcom-i3,2019-20,Lunenburg - Lunenburg Middle School,1620305,0,0,0,100,0,0,0,84.8,15.2,49.4 +1,1,a-pcom-i3,2019-20,Lunenburg - Lunenburg Primary School,1620010,0,0,0,100,0,0,0,95.2,4.8,52.2 +1,1,a-pcom-i3,2019-20,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,100,0,0,0,90.6,9.4,43.7 +4.3125,4.31,a-pcom-i3,2019-20,Lynn - A Drewicz Elementary,1630016,0,4,7.9,86.2,0,0,2,94,6,50.5 +2.53125,2.53,a-pcom-i3,2019-20,Lynn - Aborn,1630011,3.9,0,3.9,91.9,0,0,0.4,98.1,1.9,26 +4.65625,4.66,a-pcom-i3,2019-20,Lynn - Breed Middle School,1630405,2.7,2.3,6.9,85.1,0,0,3.1,68.9,31.1,130.9 +1.90625,1.91,a-pcom-i3,2019-20,Lynn - Brickett Elementary,1630020,0,2.9,2.9,93.9,0,0,0.3,98,2,34.4 +3.5625,3.56,a-pcom-i3,2019-20,Lynn - Capt William G Shoemaker,1630090,0,1.3,8.9,88.6,0,0,1.3,95.6,4.4,78.9 +5,5,a-pcom-i3,2019-20,Lynn - Classical High,1630505,4.6,0,9.5,84,0,0,2,67.1,32.9,153.3 +4.78125,4.78,a-pcom-i3,2019-20,Lynn - Cobbet Elementary,1630035,0,2.8,11.1,84.7,0,0,1.4,93,7,71.8 +2.75,2.75,a-pcom-i3,2019-20,Lynn - E J Harrington,1630045,1.2,1.2,6.3,91.2,0,0,0.1,98.3,1.7,84.4 +3.53125,3.53,a-pcom-i3,2019-20,Lynn - Edward A Sisson,1630095,4.2,0,7.1,88.7,0,0,0,94.2,5.8,47.2 +7.34375,5,a-pcom-i3,2019-20,Lynn - Fecteau-Leary Junior/Senior High School,1630525,7.9,0,15.6,76.5,0,0,0,52.1,47.9,51.5 +3.75,3.75,a-pcom-i3,2019-20,Lynn - Hood,1630055,0,1.7,8.4,88,0,0,1.9,95.5,4.5,59.3 +4.65625,4.66,a-pcom-i3,2019-20,Lynn - Ingalls,1630060,6.7,2.7,5.4,85.1,0,0,0.1,97,3,74.5 +5.75,5,a-pcom-i3,2019-20,Lynn - Julia F Callahan,1630030,6.7,0,10,81.6,1.7,0,0,87.9,10.4,59.8 +2.5625,2.56,a-pcom-i3,2019-20,Lynn - Lincoln-Thomson,1630070,4.9,0,3.3,91.8,0,0,0,93.7,6.3,30.3 +4.59375,4.59,a-pcom-i3,2019-20,Lynn - Lynn English High,1630510,1.3,1.3,10.7,85.3,0,0,1.3,52.2,47.8,149.6 +6.09375,5,a-pcom-i3,2019-20,Lynn - Lynn Vocational Technical Institute,1630605,4,0,14.3,80.5,0,0,1.2,62.5,37.5,174.7 +3,3,a-pcom-i3,2019-20,Lynn - Lynn Woods,1630075,0,0,9.6,90.4,0,0,0,92.8,7.2,20.9 +4,4,a-pcom-i3,2019-20,Lynn - Pickering Middle,1630420,2.8,0,8.5,87.2,0,0,1.4,77.3,22.7,70.4 +1,1,a-pcom-i3,2019-20,Lynn - Robert L Ford,1630050,0,0,0,99.8,0,0,0.2,91.2,8.8,44.5 +2.28125,2.28,a-pcom-i3,2019-20,Lynn - Sewell-Anderson,1630085,0,0,7.3,92.7,0,0,0,91.5,8.5,34 +4.3125,4.31,a-pcom-i3,2019-20,Lynn - Thurgood Marshall Mid,1630305,4.7,0.8,8.2,86.2,0,0,0.2,60.6,39.4,128.6 +2.34375,2.34,a-pcom-i3,2019-20,Lynn - Tracy,1630100,0,0,5,92.5,2.5,0,0,95,5,39.9 +6.3125,5,a-pcom-i3,2019-20,Lynn - Washington Elementary School,1630005,3.9,2,12.4,79.8,0,0,2,92.9,7.1,51.1 +4,4,a-pcom-i3,2019-20,Lynn - William R Fallon,1630080,3.2,0,9.6,87.2,0,0,0,83.6,13.2,31.2 +2.6875,2.69,a-pcom-i3,2019-20,Lynn - Wm P Connery,1630040,1.6,1.6,5.5,91.4,0,0,0,89,11,63.9 +1.375,1.38,a-pcom-i3,2019-20,Lynnfield - Huckleberry Hill,1640010,0,1.5,2.9,95.6,0,0,0,98.1,1.9,68.7 +1,1,a-pcom-i3,2019-20,Lynnfield - Lynnfield High,1640505,0,1.3,0,97.4,0,0,1.3,66.8,33.2,76.8 +1,1,a-pcom-i3,2019-20,Lynnfield - Lynnfield Middle School,1640405,0,1.3,0,98.7,0,0,0,82.9,17.1,79.4 +1,1,a-pcom-i3,2019-20,Lynnfield - Lynnfield Preschool,1640005,0,0,0,100,0,0,0,100,0,7.6 +1.25,1.25,a-pcom-i3,2019-20,Lynnfield - Summer Street,1640020,0,2,2,96,0,0,0,98,2,50.2 +12.46875,5,a-pcom-i3,2019-20,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,22.6,2.8,12.9,60.1,0.4,0,1.3,75,25,237.2 +3.28125,3.28,a-pcom-i3,2019-20,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,89.5,0,0,10.5,63.2,36.8,9.5 +2.25,2.25,a-pcom-i3,2019-20,Malden - Beebe,1650003,2.1,4.1,1,92.8,0,0,0,84.8,15.2,97 +2.9375,2.94,a-pcom-i3,2019-20,Malden - Ferryway,1650013,2.1,4.2,2.1,90.6,1,0,0,83.7,16.3,96 +3.09375,3.09,a-pcom-i3,2019-20,Malden - Forestdale,1650027,2.1,3.1,4.2,90.1,0,0,0.5,93,7,95.5 +2.34375,2.34,a-pcom-i3,2019-20,Malden - Linden,1650047,4.7,1.9,0,92.5,0,0,0.9,86.3,13.7,107 +5.21875,5,a-pcom-i3,2019-20,Malden - Malden Early Learning Center,1650049,11.5,5.2,0,83.3,0,0,0,96.9,3.1,96 +4.125,4.13,a-pcom-i3,2019-20,Malden - Malden High,1650505,4.5,2.1,4.5,86.8,0,0,2.2,66.7,33.3,179.5 +6.28125,5,a-pcom-i3,2019-20,Malden - Salemwood,1650057,6.6,6.6,3.3,79.9,0,0,3.7,85.1,14.9,121.9 +1,1,a-pcom-i3,2019-20,Manchester Essex Regional - Essex Elementary,6980020,0,0,0,100,0,0,0,86.5,13.5,43 +1,1,a-pcom-i3,2019-20,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0.4,1.6,98,0,0,0,67,33,62.1 +1.1875,1.19,a-pcom-i3,2019-20,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,1.7,2.1,96.2,0,0,0,79.2,20.8,46.5 +1,1,a-pcom-i3,2019-20,Manchester Essex Regional - Manchester Memorial Elementary,6980010,0,0,0,100,0,0,0,94.4,5.6,53.3 +1,1,a-pcom-i3,2019-20,Mansfield - Everett W Robinson,1670007,1.1,1.1,0.6,97.2,0,0,0,94.6,5.4,92 +1,1,a-pcom-i3,2019-20,Mansfield - Harold L Qualters Middle,1670035,0,0,0.8,98.3,0,0,0.8,80.9,19.1,119.6 +1.53125,1.53,a-pcom-i3,2019-20,Mansfield - Jordan/Jackson Elementary,1670014,0.6,2.1,1.1,95.1,0,0,1.1,92.5,7.5,93.3 +1.65625,1.66,a-pcom-i3,2019-20,Mansfield - Mansfield High,1670505,0.7,0.7,4,94.7,0,0,0,67.1,32.9,150.2 +1,1,a-pcom-i3,2019-20,Mansfield - Roland Green School,1670003,0,0,0,100,0,0,0,100,0,24.5 +5.25,5,a-pcom-i3,2019-20,Map Academy Charter School (District) - Map Academy Charter School,35170505,11.2,0,5.6,83.2,0,0,0,70.9,29.1,17.9 +1,1,a-pcom-i3,2019-20,Marblehead - Dr. Samuel C. Eveleth,1680025,0,0,0,98.3,0,0,1.7,100,0,18.7 +1,1,a-pcom-i3,2019-20,Marblehead - Glover,1680020,0,0,1.4,97.3,0,1.4,0,95.9,4.1,73.4 +1,1,a-pcom-i3,2019-20,Marblehead - L H Coffin,1680010,0,0,0,99.8,0,0,0.2,97.3,2.7,37.3 +1.71875,1.72,a-pcom-i3,2019-20,Marblehead - Marblehead High,1680505,0,2.1,2.1,94.5,0,0,1.4,62.2,37.8,144.8 +1,1,a-pcom-i3,2019-20,Marblehead - Marblehead Veterans Middle School,1680300,0,1.4,0,98.6,0,0,0,76.6,23.4,69.3 +1,1,a-pcom-i3,2019-20,Marblehead - Village School,1680016,0,0,0,98.5,0,0,1.5,90.9,9.1,109.5 +1,1,a-pcom-i3,2019-20,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,100,0,0,0,74.4,25.6,31.7 +1.375,1.38,a-pcom-i3,2019-20,Marion - Sippican,1690005,3.5,0.9,0,95.6,0,0,0,91.5,8.5,56.5 +2,2,a-pcom-i3,2019-20,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,2.1,3.7,93.6,0.5,0,0,78.2,21.8,188.5 +2.0625,2.06,a-pcom-i3,2019-20,Marlborough - Charles Jaworek School,1700030,0.9,0.6,5.2,93.4,0,0,0,93.8,6.2,116 +1.71875,1.72,a-pcom-i3,2019-20,Marlborough - Early Childhood Center,1700006,0,0,3.6,94.5,0,0,1.8,90.9,9.1,54.9 +1.59375,1.59,a-pcom-i3,2019-20,Marlborough - Francis J Kane,1700008,0,0,5.1,94.9,0,0,0,92.6,7.4,78.3 +3.0625,3.06,a-pcom-i3,2019-20,Marlborough - Marlborough High,1700505,3.7,1.1,4.3,90.2,0.6,0,0,65.1,34.9,161.4 +1.4375,1.44,a-pcom-i3,2019-20,Marlborough - Richer,1700025,0,0,4.6,95.4,0,0,0,96.6,3.4,87.4 +1,1,a-pcom-i3,2019-20,Marshfield - Daniel Webster,1710015,0,0,0,100,0,0,0,93.6,6.4,56.9 +1,1,a-pcom-i3,2019-20,Marshfield - Eames Way School,1710005,0,0,0,100,0,0,0,91.5,8.5,39.8 +1,1,a-pcom-i3,2019-20,Marshfield - Furnace Brook Middle,1710310,0,0,0,99.2,0.8,0,0,84.1,15.9,118.6 +1,1,a-pcom-i3,2019-20,Marshfield - Gov Edward Winslow,1710020,0,0,1.6,97.7,0.7,0,0,88.6,11.4,62.9 +1,1,a-pcom-i3,2019-20,Marshfield - Marshfield High,1710505,1.2,0,1.2,97.5,0,0,0,70.9,29.1,161.7 +1,1,a-pcom-i3,2019-20,Marshfield - Martinson Elementary,1710025,0,1.2,0,97.5,1.2,0,0,94.5,5.5,80.4 +1,1,a-pcom-i3,2019-20,Marshfield - South River,1710010,0,0,0,100,0,0,0,95.1,4.9,49.5 +2.875,2.88,a-pcom-i3,2019-20,Martha's Vineyard - Martha's Vineyard Regional High,7000505,1.7,1.2,2.6,90.8,0.8,0,2.8,64.6,35.4,121.1 +1,1,a-pcom-i3,2019-20,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,2.5,0,0,97.5,0,0,0,86,14,30.4 +10.71875,5,a-pcom-i3,2019-20,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,19.4,0,11.4,65.7,0,0,3.5,82.4,17.6,56.8 +1,1,a-pcom-i3,2019-20,Masconomet - Masconomet Regional High School,7050505,0.1,0.7,0.7,98.4,0,0,0,63.7,36.3,136 +1.65625,1.66,a-pcom-i3,2019-20,Masconomet - Masconomet Regional Middle School,7050405,2.3,1.8,1.3,94.7,0,0,0,66.5,33.5,79.2 +1,1,a-pcom-i3,2019-20,Mashpee - Kenneth Coombs School,1720005,0,0,0,100,0,0,0,96.9,3.1,64.1 +1.71875,1.72,a-pcom-i3,2019-20,Mashpee - Mashpee High,1720505,2.6,1.2,0,94.5,0,1.8,0,64.1,35.9,55.6 +2.25,2.25,a-pcom-i3,2019-20,Mashpee - Mashpee Middle School,1720020,3,1.1,0,92.8,0,3,0,81.4,18.6,33.2 +1,1,a-pcom-i3,2019-20,Mashpee - Quashnet School,1720035,0,0,1.6,98.4,0,0,0,84.3,15.7,63.6 +1,1,a-pcom-i3,2019-20,Mattapoisett - Center,1730005,0,0,0,100,0,0,0,93.1,6.9,39.4 +1,1,a-pcom-i3,2019-20,Mattapoisett - Old Hammondtown,1730010,0,3.1,0,96.9,0,0,0,92.9,7.1,32.3 +2.40625,2.41,a-pcom-i3,2019-20,Maynard - Fowler School,1740305,0,1.4,5.6,92.3,0,0,0.7,78.3,21.7,71.1 +3.0625,3.06,a-pcom-i3,2019-20,Maynard - Green Meadow,1740010,0,2.2,7.6,90.2,0,0,0,93.5,6.5,92 +1,1,a-pcom-i3,2019-20,Maynard - Maynard High,1740505,0,0,2,97,0,0,1,68.2,31.8,50.8 +1,1,a-pcom-i3,2019-20,Medfield - Dale Street,1750005,0,1.2,0.6,98.2,0,0,0,91.9,8.1,55 +1,1,a-pcom-i3,2019-20,Medfield - Medfield Senior High,1750505,0,1,1,96.9,0,0,1,70.3,29.7,97.2 +1,1,a-pcom-i3,2019-20,Medfield - Memorial School,1750003,0,1.4,0.5,97,0,0,1.1,97.1,2.9,71.8 +1,1,a-pcom-i3,2019-20,Medfield - Ralph Wheelock School,1750007,0,0,2.4,97.6,0,0,0,95.3,4.7,55.4 +1.46875,1.47,a-pcom-i3,2019-20,Medfield - Thomas Blake Middle,1750305,1.2,2.3,1.2,95.3,0,0,0,73.7,26.3,82.3 +1,1,a-pcom-i3,2019-20,Medford - Brooks School,1760130,1.4,0,1.4,97.1,0,0,0,95.7,4.3,70 +1,1,a-pcom-i3,2019-20,Medford - Christopher Columbus,1760140,0,0,1.6,98.4,0,0,0,90.6,9.4,64 +3.875,3.88,a-pcom-i3,2019-20,Medford - Curtis-Tufts,1760510,0,0,0,87.6,0,0,12.4,62.7,37.3,8.1 +1,1,a-pcom-i3,2019-20,Medford - John J McGlynn Elementary School,1760068,0,3.1,0,96.9,0,0,0,96.9,3.1,64 +1.09375,1.09,a-pcom-i3,2019-20,Medford - John J. McGlynn Middle School,1760320,1.3,2.2,0,96.5,0,0,0,79.3,20.7,74.3 +1.125,1.12,a-pcom-i3,2019-20,Medford - Madeleine Dugger Andrews,1760315,0,3.6,0,96.4,0,0,0,72.7,27.3,66.9 +1,1,a-pcom-i3,2019-20,Medford - Medford High,1760505,1.4,0.9,0.9,96.8,0,0,0,65.8,34.2,219.6 +1.5,1.5,a-pcom-i3,2019-20,Medford - Milton Fuller Roberts,1760150,2.4,1.2,0,95.2,0,0,1.2,89.9,10.1,82.5 +1,1,a-pcom-i3,2019-20,Medway - Burke/Memorial Elementary School,1770015,0,1.6,0,98.4,0,0,0,96.9,3.1,64.1 +1,1,a-pcom-i3,2019-20,Medway - John D Mc Govern Elementary,1770013,0,0,0,100,0,0,0,98.1,1.9,52.6 +1.0625,1.06,a-pcom-i3,2019-20,Medway - Medway High,1770505,0,2.2,1.2,96.6,0,0,0,70.8,29.2,81.8 +1.09375,1.09,a-pcom-i3,2019-20,Medway - Medway Middle,1770305,1.2,1.2,1.2,96.5,0,0,0,78.3,21.7,85.1 +1,1,a-pcom-i3,2019-20,Melrose - Early Childhood Center,1780003,0,0,1.8,98.2,0,0,0,99.1,0.9,54.2 +1,1,a-pcom-i3,2019-20,Melrose - Herbert Clark Hoover,1780017,0,0.6,0,99.4,0,0,0,93.6,6.4,33.6 +1,1,a-pcom-i3,2019-20,Melrose - Horace Mann,1780025,0,2.7,0,97.3,0,0,0,90.9,9.1,29.3 +1,1,a-pcom-i3,2019-20,Melrose - Lincoln,1780020,0,1.9,0,98.1,0,0,0,88,12,51.9 +1.09375,1.09,a-pcom-i3,2019-20,Melrose - Melrose High,1780505,0.9,1,1.6,96.5,0,0,0,59.3,40.7,115.5 +1.40625,1.41,a-pcom-i3,2019-20,Melrose - Melrose Middle,1780305,1.1,0,2.3,95.5,0,0,1.1,72.9,27.1,88.8 +1.0625,1.06,a-pcom-i3,2019-20,Melrose - Roosevelt,1780035,1.6,1.9,0,96.6,0,0,0,97.3,2.7,63.9 +2.09375,2.09,a-pcom-i3,2019-20,Melrose - Winthrop,1780050,0,4.2,2.5,93.3,0,0,0,83.1,16.9,40.3 +1.21875,1.22,a-pcom-i3,2019-20,Mendon-Upton - Henry P Clough,7100179,0,0,3.9,96.1,0,0,0,93.2,6.8,51.2 +2.6875,2.69,a-pcom-i3,2019-20,Mendon-Upton - Memorial School,7100001,0,0,8.6,91.4,0,0,0,97.1,2.9,78.9 +1.03125,1.03,a-pcom-i3,2019-20,Mendon-Upton - Miscoe Hill School,7100015,0,0,2.2,96.7,0,0,1.1,82.8,17.2,92.2 +1,1,a-pcom-i3,2019-20,Mendon-Upton - Nipmuc Regional High,7100510,0,0,1.7,98.3,0,0,0,66,34,74.6 +1.59375,1.59,a-pcom-i3,2019-20,Methuen - Comprehensive Grammar School,1810050,0,0,5.1,94.9,0,0,0,89.5,9.7,123.8 +1,1,a-pcom-i3,2019-20,Methuen - Donald P Timony Grammar,1810060,0,0,1.4,98.6,0,0,0,86.5,12.7,140.5 +1,1,a-pcom-i3,2019-20,Methuen - Marsh Grammar School,1810030,0,0,1.4,98.6,0,0,0,89.5,9.1,143.4 +1.03125,1.03,a-pcom-i3,2019-20,Methuen - Methuen High,1810505,1,0,2.4,96.7,0,0,0,62.5,37,205.6 +1,1,a-pcom-i3,2019-20,Methuen - Tenney Grammar School,1810055,0.7,0,0.7,97.9,0.8,0,0,87.1,12.1,149.6 +1,1,a-pcom-i3,2019-20,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,0,100,0,0,0,90.1,9.9,62.8 +1,1,a-pcom-i3,2019-20,Middleborough - John T. Nichols Middle,1820305,0,0,0,100,0,0,0,75.8,24.2,77.4 +1.3125,1.31,a-pcom-i3,2019-20,Middleborough - Mary K. Goode Elementary School,1820010,1.4,0,0,95.8,1.4,0,1.4,91.2,8.8,70.8 +1,1,a-pcom-i3,2019-20,Middleborough - Memorial Early Childhood Center,1820011,0,0,0,100,0,0,0,99.5,0.5,42.4 +1,1,a-pcom-i3,2019-20,Middleborough - Middleborough High,1820505,0,1,0,99,0,0,0,57.6,42.4,97.2 +1,1,a-pcom-i3,2019-20,Middleton - Fuller Meadow,1840003,0,0,0,100,0,0,0,97.9,2.1,53.6 +1,1,a-pcom-i3,2019-20,Middleton - Howe-Manning,1840005,0,0,1.3,98.7,0,0,0,91.4,8.6,77.6 +1.40625,1.41,a-pcom-i3,2019-20,Milford - Brookside,1850065,0,0,4.5,95.5,0,0,0,96.8,3.2,71.5 +1,1,a-pcom-i3,2019-20,Milford - Memorial,1850010,0,0,3.1,96.9,0,0,0,96.3,3.7,72.4 +2.03125,2.03,a-pcom-i3,2019-20,Milford - Milford High,1850505,0,0,6.5,93.5,0,0,0,67.3,32.7,145.2 +2.96875,2.97,a-pcom-i3,2019-20,Milford - Shining Star Early Childhood Center,1850075,0,0,9.5,90.5,0,0,0,97.8,2.2,44.6 +2.5625,2.56,a-pcom-i3,2019-20,Milford - Stacy Middle,1850305,1.6,0.8,4.3,91.8,0.8,0,0.8,75.3,24.7,127.5 +1.65625,1.66,a-pcom-i3,2019-20,Milford - Woodland,1850090,0,0.7,4.6,94.7,0,0,0,88.8,11.2,136.7 +1,1,a-pcom-i3,2019-20,Millbury - Elmwood Street,1860017,0,1,0,99,0,0,0,95.4,4.6,76.2 +1,1,a-pcom-i3,2019-20,Millbury - Millbury Junior/Senior High,1860505,0,1.9,1,97.1,0,0,0,61.3,38.7,103.4 +2.21875,2.22,a-pcom-i3,2019-20,Millbury - Raymond E. Shaw Elementary,1860025,1.8,3.5,0,92.9,0,0,1.8,81.4,18.6,56.6 +1.3125,1.31,a-pcom-i3,2019-20,Millis - Clyde F Brown,1870005,0,0,4.2,95.8,0,0,0,93.8,6.2,71.4 +1,1,a-pcom-i3,2019-20,Millis - Millis High School,1870505,0,0,2.1,97.9,0,0,0,58.6,41.4,46.6 +1.03125,1.03,a-pcom-i3,2019-20,Millis - Millis Middle,1870020,0,2.6,0.7,96.7,0,0,0,89.9,10.1,37.9 +3.75,3.75,a-pcom-i3,2019-20,Milton - Charles S Pierce Middle,1890410,8.9,0.5,2.7,88,0,0,0,68.7,31.3,110.4 +3.375,3.37,a-pcom-i3,2019-20,Milton - Collicot,1890005,1.5,3,6.3,89.2,0,0,0,93,7,65.9 +2.3125,2.31,a-pcom-i3,2019-20,Milton - Cunningham School,1890007,4.8,0,2.6,92.6,0,0,0,97.1,2.9,83 +2.75,2.75,a-pcom-i3,2019-20,Milton - Glover,1890010,5,1.7,0.6,91.2,1.7,0,0,93.6,6.4,60.4 +3.0625,3.06,a-pcom-i3,2019-20,Milton - Milton High,1890505,7.9,0.4,0.7,90.2,0,0.8,0,64.3,35.7,126.2 +7.40625,5,a-pcom-i3,2019-20,Milton - Tucker,1890020,16.1,6.9,0.7,76.3,0,0,0,88.7,11.3,43.5 +1.4375,1.44,a-pcom-i3,2019-20,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,2.5,1.7,95.4,0,0.4,0,54.2,45.8,118.4 +1,1,a-pcom-i3,2019-20,Mohawk Trail - Buckland-Shelburne Regional,7170005,0,0,1.6,98.4,0,0,0,96.2,3.8,64 +1,1,a-pcom-i3,2019-20,Mohawk Trail - Colrain Central,7170010,0,0,0,100,0,0,0,96.7,3.3,29.9 +1,1,a-pcom-i3,2019-20,Mohawk Trail - Mohawk Trail Regional School,7170505,0,0,0,97.5,1.1,0,1.4,76.8,23.2,71.6 +1,1,a-pcom-i3,2019-20,Mohawk Trail - Sanderson Academy,7170020,0,0,0,100,0,0,0,100,0,26.7 +1,1,a-pcom-i3,2019-20,Monomoy Regional School District - Chatham Elementary School,7120001,0,0,0,100,0,0,0,98.6,1.4,36.8 +1,1,a-pcom-i3,2019-20,Monomoy Regional School District - Harwich Elementary School,7120002,0,0,1.1,97.7,0,0,1.1,93.1,6.9,87 +1.625,1.63,a-pcom-i3,2019-20,Monomoy Regional School District - Monomoy Regional High School,7120515,1,2.1,0,94.8,0,0,2.1,67.8,32.2,95.4 +1,1,a-pcom-i3,2019-20,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,100,0,0,0,74.4,25.6,67 +1,1,a-pcom-i3,2019-20,Monson - Granite Valley School,1910030,0,0,0.8,97.6,0,1.6,0,85.1,14.9,62.2 +1,1,a-pcom-i3,2019-20,Monson - Monson High School,1910505,0,0,1.7,98.3,0,0,0,68.1,31.9,59.5 +1,1,a-pcom-i3,2019-20,Monson - Quarry Hill Community School,1910010,0,0,0,100,0,0,0,93.5,6.5,30.8 +1.90625,1.91,a-pcom-i3,2019-20,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0.6,0,4.4,93.9,1.1,0,0,55,45,181.2 +1,1,a-pcom-i3,2019-20,Mount Greylock - Lanesborough Elementary,7150005,2.6,0,0,97.4,0,0,0,84.9,15.1,38.3 +1.28125,1.28,a-pcom-i3,2019-20,Mount Greylock - Mt Greylock Regional High,7150505,1.4,0,2.7,95.9,0,0,0,62.3,37.7,73.7 +1,1,a-pcom-i3,2019-20,Mount Greylock - Williamstown Elementary,7150010,0,1.5,0,98.5,0,0,0,94.2,5.8,68.9 +3.0625,3.06,a-pcom-i3,2019-20,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,2.6,2.6,2.6,90.2,0,0,2,71.5,28.5,152.7 +1,1,a-pcom-i3,2019-20,Nahant - Johnson,1960010,0,0,0,100,0,0,0,89.6,10.4,21.1 +2.125,2.12,a-pcom-i3,2019-20,Nantucket - Cyrus Peirce,1970010,2,0,2.9,93.2,0,0,2,82,18,51.2 +1.8125,1.81,a-pcom-i3,2019-20,Nantucket - Nantucket Elementary,1970005,0,0,4.4,94.2,0,0,1.5,97.8,2.2,68.5 +3.125,3.13,a-pcom-i3,2019-20,Nantucket - Nantucket High,1970505,1.4,2.9,4.3,90,1.4,0,0,68,32,70 +1,1,a-pcom-i3,2019-20,Nantucket - Nantucket Intermediate School,1970020,2,0,0.8,97.2,0,0,0,83.1,16.9,50.2 +1,1,a-pcom-i3,2019-20,Narragansett - Narragansett Middle,7200305,0,0,0,100,0,0,0,67.9,32.1,41.1 +1.34375,1.34,a-pcom-i3,2019-20,Narragansett - Narragansett Regional High,7200505,0,0,4.3,95.7,0,0,0,68.3,31.7,46.3 +1,1,a-pcom-i3,2019-20,Narragansett - Phillipston Memorial,7200003,0,0,0,100,0,0,0,97.6,2.4,16.8 +1,1,a-pcom-i3,2019-20,Narragansett - Templeton Elementary School,7200020,0,0,0,100,0,0,0,97.7,2.3,71 +1,1,a-pcom-i3,2019-20,Nashoba - Center School,7250020,0,0,0.9,99.1,0,0,0,95,5,71.4 +1,1,a-pcom-i3,2019-20,Nashoba - Florence Sawyer School,7250025,0,0,0,100,0,0,0,85.2,14.8,100.9 +1.0625,1.06,a-pcom-i3,2019-20,Nashoba - Hale,7250310,0,2.6,0.9,96.6,0,0,0,77.4,22.6,38.7 +1,1,a-pcom-i3,2019-20,Nashoba - Luther Burbank Middle School,7250305,2.4,0,0,97.6,0,0,0,83.7,16.3,41.5 +1,1,a-pcom-i3,2019-20,Nashoba - Mary Rowlandson Elementary,7250010,0,0,1.4,97.1,0,0,1.4,89,11,69.1 +1,1,a-pcom-i3,2019-20,Nashoba - Nashoba Regional,7250505,0,1.7,0,98.3,0,0,0,63.9,36.1,118.6 +1.03125,1.03,a-pcom-i3,2019-20,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,1.1,1.1,1.1,96.7,0,0,0,50.2,49.8,90.4 +1,1,a-pcom-i3,2019-20,Natick - Bennett-Hemenway,1980005,0,2.5,0,97.5,0,0,0,88.1,11.9,79.8 +1,1,a-pcom-i3,2019-20,Natick - Brown,1980010,0,2.2,0,97.8,0,0,0,92.3,7.7,74.3 +1.125,1.12,a-pcom-i3,2019-20,Natick - J F Kennedy Middle School,1980305,0,1.6,1,96.4,1,0,0,79,21,96.3 +1,1,a-pcom-i3,2019-20,Natick - Johnson,1980031,0,0,0,100,0,0,0,90.3,9.7,30.9 +1,1,a-pcom-i3,2019-20,Natick - Lilja Elementary,1980035,1.7,0,0,98.3,0,0,0,94.8,5.2,57.8 +1,1,a-pcom-i3,2019-20,Natick - Memorial,1980043,0,0,0,100,0,0,0,92,8,52.8 +1,1,a-pcom-i3,2019-20,Natick - Natick High,1980505,0.7,2.2,0,97.1,0,0,0,72,28,224.2 +1,1,a-pcom-i3,2019-20,Natick - Wilson Middle,1980310,1.1,1.1,0.8,97,0,0,0,75.8,24.2,133.2 +1,1,a-pcom-i3,2019-20,Nauset - Nauset Regional High,6600505,0.8,0,2.4,96.9,0,0,0,68.2,31.8,127.3 +1.46875,1.47,a-pcom-i3,2019-20,Nauset - Nauset Regional Middle,6600305,1.6,1,2.1,95.3,0,0,0,84.9,15.1,97.1 +1.65625,1.66,a-pcom-i3,2019-20,Needham - Broadmeadow,1990005,1.7,1.9,0.2,94.7,0,0,1.4,97.5,2.5,70.1 +1.65625,1.66,a-pcom-i3,2019-20,Needham - High Rock School,1990410,0.5,0.2,3,94.7,0,0,1.5,77.3,22.7,65.7 +3.15625,3.16,a-pcom-i3,2019-20,Needham - John Eliot,1990020,3.7,4.7,1.7,89.9,0,0,0,88.5,9.8,59.9 +3.4375,3.44,a-pcom-i3,2019-20,Needham - Needham High,1990505,4.6,2.9,2.5,89,0,0,1,66.3,33.7,195.1 +2.03125,2.03,a-pcom-i3,2019-20,Needham - Newman Elementary,1990050,1.7,3.5,1.3,93.5,0,0,0,93.3,6.7,119.5 +2.0625,2.06,a-pcom-i3,2019-20,Needham - Pollard Middle,1990405,1.4,0.9,1.7,93.4,0,0,2.6,76.7,23.3,116.4 +2.125,2.12,a-pcom-i3,2019-20,Needham - Sunita L. Williams Elementary,1990035,3.1,1.5,2.2,93.2,0,0,0,88.4,11.6,88.3 +3.1875,3.19,a-pcom-i3,2019-20,Needham - William Mitchell,1990040,1.1,3.7,3.7,89.8,0,0,1.6,83.6,16.4,62.4 +14.15625,5,a-pcom-i3,2019-20,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,21.7,7.4,11.8,54.7,0.9,0,3.5,73.1,26.9,107.9 +1.84375,1.84,a-pcom-i3,2019-20,New Bedford - Abraham Lincoln,2010095,1.5,0,2.9,94.1,0,1.5,0,91.2,8.8,68.3 +5.90625,5,a-pcom-i3,2019-20,New Bedford - Alfred J Gomes,2010063,8.1,1.4,8.1,81.1,0,0,1.4,94.6,5.4,74 +1.65625,1.66,a-pcom-i3,2019-20,New Bedford - Betsey B Winslow,2010140,0,0,5.3,94.7,0,0,0,96.4,3.6,28.2 +1.5,1.5,a-pcom-i3,2019-20,New Bedford - Carlos Pacheco,2010105,4.8,0,0,95.2,0,0,0,92.9,7.1,42.1 +3.3125,3.31,a-pcom-i3,2019-20,New Bedford - Casimir Pulaski,2010123,6.2,0,4.4,89.4,0,0,0,91,9,113.4 +1.5,1.5,a-pcom-i3,2019-20,New Bedford - Charles S Ashley,2010010,3.2,0,1.6,95.2,0,0,0,94.4,5.6,31.2 +2.375,2.37,a-pcom-i3,2019-20,New Bedford - Elizabeth Carter Brooks,2010015,7.6,0,0,92.4,0,0,0,86.7,13.3,26.3 +4.96875,4.97,a-pcom-i3,2019-20,New Bedford - Ellen R Hathaway,2010075,2.7,0,10.6,84.1,2.7,0,0,93.4,6.6,37.6 +4.21875,4.22,a-pcom-i3,2019-20,New Bedford - Elwyn G Campbell,2010020,2.3,0,4.5,86.5,4.5,0,2.3,93.7,6.3,44.4 +6.71875,5,a-pcom-i3,2019-20,New Bedford - Hayden/McFadden,2010078,7.4,0,13.2,78.5,0.8,0,0,92.6,7.4,121.2 +2.9375,2.94,a-pcom-i3,2019-20,New Bedford - Irwin M. Jacobs Elementary School,2010070,2.4,0,7.1,90.6,0,0,0,90.6,9.4,42.4 +1,1,a-pcom-i3,2019-20,New Bedford - James B Congdon,2010040,0,0,3,97,0,0,0,94,6,33.5 +1,1,a-pcom-i3,2019-20,New Bedford - Jireh Swift,2010130,0,0,0,100,0,0,0,89.2,10.8,20.9 +4.625,4.62,a-pcom-i3,2019-20,New Bedford - John Avery Parker,2010115,3,5.9,5.9,85.2,0,0,0,91.1,8.9,33.8 +1,1,a-pcom-i3,2019-20,New Bedford - John B Devalles,2010050,3,0,0,97,0,0,0,88,12,33.3 +4.8125,4.81,a-pcom-i3,2019-20,New Bedford - Keith Middle School,2010405,9.8,1.7,1.7,84.6,0,0,2.2,70.8,29.2,116.1 +5.1875,5,a-pcom-i3,2019-20,New Bedford - New Bedford High,2010505,6.4,1.4,7,83.4,0.4,0,1.4,62.9,37.1,281.7 +3.96875,3.97,a-pcom-i3,2019-20,New Bedford - Normandin Middle School,2010410,5,0.8,4.8,87.3,0,0,2.1,67.7,32.3,120.1 +8.9375,5,a-pcom-i3,2019-20,New Bedford - Renaissance Community Innovation School,2010124,17.9,0,10.7,71.4,0,0,0,82.1,17.9,28 +5.125,5,a-pcom-i3,2019-20,New Bedford - Roosevelt Middle School,2010415,4.5,0.9,8.2,83.6,0.9,0,1.8,72,28,110 +5.84375,5,a-pcom-i3,2019-20,New Bedford - Sgt Wm H Carney Academy,2010045,8.5,0.9,6.8,81.3,0,0,2.6,89.9,10.1,117.4 +1,1,a-pcom-i3,2019-20,New Bedford - Thomas R Rodman,2010125,0,0,0,100,0,0,0,80.2,19.8,22.4 +2.8125,2.81,a-pcom-i3,2019-20,New Bedford - Trinity Day Academy,2010510,6.2,0,2.9,91,0,0,0,51.2,48.8,34.8 +6.21875,5,a-pcom-i3,2019-20,New Bedford - Whaling City Junior/Senior High School,2010515,12.8,0,2.3,80.1,0,0,4.7,60.3,39.7,42.8 +1,1,a-pcom-i3,2019-20,New Bedford - William H Taylor,2010135,0,0,0,100,0,0,0,94.6,5.4,27.8 +8.5,5,a-pcom-i3,2019-20,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,24,0,1.6,72.8,0,0,1.6,59.9,40.1,61.8 +2.875,2.88,a-pcom-i3,2019-20,New Salem-Wendell - Swift River,7280015,3.1,0,3.1,90.8,0,0,3.1,90.4,9.6,32.5 +1,1,a-pcom-i3,2019-20,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,99.5,0,0.5,0,88.3,11.7,46.5 +1,1,a-pcom-i3,2019-20,Newburyport - Francis T Bresnahan Elementary,2040005,0,0,1,98.8,0,0.2,0,95.9,4.1,103.3 +1,1,a-pcom-i3,2019-20,Newburyport - Newburyport High,2040505,0,0,0,100,0,0,0,73.3,25.7,98.3 +1.8125,1.81,a-pcom-i3,2019-20,Newburyport - Rupert A Nock Middle,2040305,2.7,1.4,1.4,94.2,0,0.3,0,72.5,27.5,72.9 +4.84375,4.84,a-pcom-i3,2019-20,Newton - A E Angier,2070005,6.7,3.4,4.4,84.5,0,0,1,89.2,10.8,88.4 +2.65625,2.66,a-pcom-i3,2019-20,Newton - Bigelow Middle,2070305,1.2,2.5,4.8,91.5,0,0,0,70.8,29.2,83.1 +6.90625,5,a-pcom-i3,2019-20,Newton - Bowen,2070015,3.8,11,5.4,77.9,0,0,1.9,91.5,8.5,53 +7,5,a-pcom-i3,2019-20,Newton - C C Burr,2070020,3.5,12.1,5.2,77.6,0,0,1.7,94,6,57.9 +5.53125,5,a-pcom-i3,2019-20,Newton - Cabot,2070025,1.6,8.3,6.1,82.3,0,1.6,0,91.5,8.5,61.7 +2.6875,2.69,a-pcom-i3,2019-20,Newton - Charles E Brown Middle,2070310,1.6,2.3,3.1,91.4,0,0,1.6,71.7,28.3,128.3 +3.03125,3.03,a-pcom-i3,2019-20,Newton - Countryside,2070040,5.9,1.4,0,90.3,0,0,2.4,87.3,12.7,76.4 +2.15625,2.16,a-pcom-i3,2019-20,Newton - F A Day Middle,2070315,2.9,2.6,0,93.1,0,0,1.4,66.4,33.6,140 +3.75,3.75,a-pcom-i3,2019-20,Newton - Franklin,2070055,3.8,6.6,1.6,88,0,0,0,91.8,8.2,63.3 +4.75,4.75,a-pcom-i3,2019-20,Newton - Horace Mann,2070075,7.1,6.4,1.8,84.8,0,0,0,89.9,10.1,56.6 +2.34375,2.34,a-pcom-i3,2019-20,Newton - John Ward,2070120,2.1,4.1,1.3,92.5,0,0,0,93,7,47.4 +4.34375,4.34,a-pcom-i3,2019-20,Newton - Lincoln-Eliot,2070070,2.8,2.5,8.5,86.1,0,0,0,92.9,7.1,70.7 +3.25,3.25,a-pcom-i3,2019-20,Newton - Mason-Rice,2070080,1.5,4.4,4.5,89.6,0,0,0,91.6,8.4,67 +3.71875,3.72,a-pcom-i3,2019-20,Newton - Memorial Spaulding,2070105,5.8,1.6,4.5,88.1,0,0,0,92.2,7.8,69.8 +3.125,3.13,a-pcom-i3,2019-20,Newton - Newton Early Childhood Center,2070108,3.2,2.5,2.5,90,0,0,1.9,100,0,78.7 +4.09375,4.09,a-pcom-i3,2019-20,Newton - Newton North High,2070505,3.6,5.9,2.6,86.9,0,0,0.9,64.2,35.8,319.5 +5.40625,5,a-pcom-i3,2019-20,Newton - Newton South High,2070510,3.7,6,5,82.7,0,0,2.6,67.3,32.3,269.9 +4.46875,4.47,a-pcom-i3,2019-20,Newton - Oak Hill Middle,2070320,2.2,5.7,5.2,85.7,0,0,1.1,75.3,24.7,89.7 +3.9375,3.94,a-pcom-i3,2019-20,Newton - Peirce,2070100,7.4,0.2,2.8,87.4,0,0,2.2,90.5,9.5,45.8 +2.90625,2.91,a-pcom-i3,2019-20,Newton - Underwood,2070115,4.8,0,4.5,90.7,0,0,0,85.4,14.6,41.7 +5.375,5,a-pcom-i3,2019-20,Newton - Williams,2070125,3.4,9.3,0,82.8,0,0,4.5,86.2,13.8,44.3 +3.34375,3.34,a-pcom-i3,2019-20,Newton - Zervas,2070130,4.3,4,2.4,89.3,0,0,0,88.5,11.5,84.1 +1,1,a-pcom-i3,2019-20,Norfolk - Freeman-Kennedy School,2080005,0,0,0,100,0,0,0,91.4,8.6,69.7 +1,1,a-pcom-i3,2019-20,Norfolk - H Olive Day,2080015,0,0,0,100,0,0,0,95.4,4.6,80.9 +1,1,a-pcom-i3,2019-20,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,100,0,0,0,62.4,37.6,76.9 +1.46875,1.47,a-pcom-i3,2019-20,North Adams - Brayton,2090035,0,1.6,3.2,95.3,0,0,0,87.4,12.6,63.4 +1,1,a-pcom-i3,2019-20,North Adams - Colegrove Park Elementary,2090008,0,0,0,100,0,0,0,89.3,10.7,65.2 +1,1,a-pcom-i3,2019-20,North Adams - Drury High,2090505,1.1,0,1.1,97.7,0,0,0,66.7,33.3,88.2 +1.21875,1.22,a-pcom-i3,2019-20,North Adams - Greylock,2090015,1.9,0,1.9,96.1,0,0,0,92.2,7.8,51.3 +1,1,a-pcom-i3,2019-20,North Andover - Anne Bradstreet Early Childhood Center,2110005,0,0,0,100,0,0,0,99.5,0.5,76.5 +1,1,a-pcom-i3,2019-20,North Andover - Annie L Sargent School,2110018,0,1.6,0,98.4,0,0,0,95.9,4.1,60.8 +1,1,a-pcom-i3,2019-20,North Andover - Atkinson,2110001,0,0,0,100,0,0,0,96,4,43.4 +1,1,a-pcom-i3,2019-20,North Andover - Franklin,2110010,0,0,1.6,98.4,0,0,0,93.2,6.8,61.5 +1.6875,1.69,a-pcom-i3,2019-20,North Andover - Kittredge,2110015,0,2.7,2.7,94.6,0,0,0,83.9,16.1,37.2 +1,1,a-pcom-i3,2019-20,North Andover - North Andover High,2110505,0.7,0.7,0,98.5,0,0,0,67.7,32.3,136.6 +1,1,a-pcom-i3,2019-20,North Andover - North Andover Middle,2110305,0,0,0,100,0,0,0,73.2,26.8,114.9 +1,1,a-pcom-i3,2019-20,North Andover - Thomson,2110020,0,2.2,0,97.8,0,0,0,93.8,6.2,45.4 +1,1,a-pcom-i3,2019-20,North Attleborough - Amvet Boulevard,2120007,1.1,0,0,98.9,0,0,0,97.7,2.3,44.2 +1,1,a-pcom-i3,2019-20,North Attleborough - Community,2120030,0,1.6,0,98.4,0,0,0,95.9,4.1,61.6 +1,1,a-pcom-i3,2019-20,North Attleborough - Falls,2120010,0,0,0,100,0,0,0,95.3,4.7,31.5 +1,1,a-pcom-i3,2019-20,North Attleborough - Joseph W Martin Jr Elementary,2120013,0,0,1.4,98.6,0,0,0,97.1,2.9,70 +1,1,a-pcom-i3,2019-20,North Attleborough - North Attleboro High,2120505,0,0.8,0.8,97.5,0,0,0.8,72.8,27.2,118.2 +1.84375,1.84,a-pcom-i3,2019-20,North Attleborough - North Attleborough Early Learning Center,2120020,2.6,3.3,0,94.1,0,0,0,100,0,30.6 +1.0625,1.06,a-pcom-i3,2019-20,North Attleborough - North Attleborough Middle,2120305,0,1.7,0.8,96.6,0,0,0.8,71.5,28.5,119.1 +1,1,a-pcom-i3,2019-20,North Attleborough - Roosevelt Avenue,2120015,0,0,2,98,0,0,0,95.9,4.1,24.6 +1,1,a-pcom-i3,2019-20,North Brookfield - North Brookfield Elementary,2150015,0,2,0,98,0,0,0,93.9,6.1,48.9 +1,1,a-pcom-i3,2019-20,North Brookfield - North Brookfield High,2150505,0,0,0,100,0,0,0,64.2,35.8,37.4 +1,1,a-pcom-i3,2019-20,North Middlesex - Ashby Elementary,7350010,0,0,0,97.4,0,2.6,0,94.9,5.1,39.1 +1,1,a-pcom-i3,2019-20,North Middlesex - Hawthorne Brook,7350030,0,0,0,100,0,0,0,73.2,26.8,57.3 +1.71875,1.72,a-pcom-i3,2019-20,North Middlesex - Nissitissit Middle School,7350310,0,0,5.5,94.5,0,0,0,80.6,19.4,72.1 +1,1,a-pcom-i3,2019-20,North Middlesex - North Middlesex Regional,7350505,1.1,0,0,98.9,0,0,0,68.4,31.6,93.5 +1,1,a-pcom-i3,2019-20,North Middlesex - Spaulding Memorial,7350005,0,0,0,100,0,0,0,87,13,54 +1,1,a-pcom-i3,2019-20,North Middlesex - Squannacook Early Childhood Center,7350002,0,0,0,100,0,0,0,100,0,19.1 +1,1,a-pcom-i3,2019-20,North Middlesex - Varnum Brook,7350035,0,1.1,0,98.9,0,0,0,96,4,74.5 +1,1,a-pcom-i3,2019-20,North Reading - E Ethel Little School,2170003,0,0,0,100,0,0,0,91.8,8.2,48.9 +1,1,a-pcom-i3,2019-20,North Reading - J Turner Hood,2170010,0,0,0,100,0,0,0,89.6,10.4,46.1 +1,1,a-pcom-i3,2019-20,North Reading - L D Batchelder,2170005,0,0,1.7,98.3,0,0,0,94.8,5.2,57.5 +1,1,a-pcom-i3,2019-20,North Reading - North Reading High,2170505,0,0,2.1,97.9,0,0,0,51.2,48.8,95.5 +1,1,a-pcom-i3,2019-20,North Reading - North Reading Middle,2170305,0,0,0,100,0,0,0,84.4,15.6,66.6 +1.5,1.5,a-pcom-i3,2019-20,Northampton - Bridge Street,2100005,0,0,4.8,95.2,0,0,0,89.9,10.1,58.3 +6.53125,5,a-pcom-i3,2019-20,Northampton - Jackson Street,2100020,3.8,1.9,13.3,79.1,0,0,1.9,80.8,19.2,52.6 +1.8125,1.81,a-pcom-i3,2019-20,Northampton - John F Kennedy Middle School,2100410,1,0,3.9,94.2,0,0,1,77.6,22.4,103.8 +1.71875,1.72,a-pcom-i3,2019-20,Northampton - Leeds,2100025,0,0,5.5,94.5,0,0,0,92.6,7.4,51.3 +2.53125,2.53,a-pcom-i3,2019-20,Northampton - Northampton High,2100505,3.1,0,2.9,91.9,0,0,2,65.3,34.7,101.7 +1,1,a-pcom-i3,2019-20,Northampton - R. K. Finn Ryan Road,2100029,0,0,2.2,97.8,0,0,0,91.1,8.9,45 +1.40625,1.41,a-pcom-i3,2019-20,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,3.6,95.5,0,0,0.9,52.7,47.3,112 +1,1,a-pcom-i3,2019-20,Northboro-Southboro - Algonquin Regional High,7300505,0.5,0.5,1.6,96.8,0,0.5,0,75.3,24.7,185.7 +1,1,a-pcom-i3,2019-20,Northborough - Fannie E Proctor,2130015,0,0,0,98.2,0,0,1.8,89.1,10.9,55.2 +1.03125,1.03,a-pcom-i3,2019-20,Northborough - Lincoln Street,2130003,0,0,3.3,96.7,0,0,0,88.9,11.1,45.1 +1,1,a-pcom-i3,2019-20,Northborough - Marguerite E Peaslee,2130014,0,0,0,100,0,0,0,96.4,3.6,41.7 +1.15625,1.16,a-pcom-i3,2019-20,Northborough - Marion E Zeh,2130020,0,0,3.7,96.3,0,0,0,95.3,4.7,40.2 +1.15625,1.16,a-pcom-i3,2019-20,Northborough - Robert E. Melican Middle School,2130305,0,1.2,1.2,96.3,0,1.2,0,83.7,16.3,81.6 +1,1,a-pcom-i3,2019-20,Northbridge - Northbridge Elementary,2140005,0,0,0,98.5,0,0,1.5,96,4,68 +1,1,a-pcom-i3,2019-20,Northbridge - Northbridge High,2140505,1.4,0,0,97.9,0,0.7,0,60.1,39.9,72.8 +1,1,a-pcom-i3,2019-20,Northbridge - Northbridge Middle,2140305,0,0,1.2,98.8,0,0,0,75.5,24.5,84 +1,1,a-pcom-i3,2019-20,Northbridge - W Edward Balmer,2140001,0,0,0,99.2,0,0.8,0,95.7,4.3,63.4 +2.375,2.37,a-pcom-i3,2019-20,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,3,1.2,3.4,92.4,0,0,0,50.5,49.5,166 +1,1,a-pcom-i3,2019-20,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,100,0,0,0,57.1,42.9,62.1 +1,1,a-pcom-i3,2019-20,Norton - Henri A. Yelle,2180060,0,0,0,100,0,0,0,89,11,39.2 +1,1,a-pcom-i3,2019-20,Norton - J C Solmonese,2180015,0,0,0,100,0,0,0,96.6,3.4,66 +1,1,a-pcom-i3,2019-20,Norton - L G Nourse Elementary,2180010,1.4,0,0,98.6,0,0,0,98.7,1.3,35.7 +1.03125,1.03,a-pcom-i3,2019-20,Norton - Norton High,2180505,0,0,3.3,96.7,0,0,0,71.3,28.7,80 +1,1,a-pcom-i3,2019-20,Norton - Norton Middle,2180305,0,0,1.6,98.4,0,0,0,76.9,23.1,61.2 +1,1,a-pcom-i3,2019-20,Norwell - Grace Farrar Cole,2190005,0,0,0,100,0,0,0,94.3,5.7,57.6 +1,1,a-pcom-i3,2019-20,Norwell - Norwell High,2190505,0,0,0,100,0,0,0,65.8,34.2,71.9 +1,1,a-pcom-i3,2019-20,Norwell - Norwell Middle School,2190405,0,0,0,100,0,0,0,74.8,25.2,67.6 +1,1,a-pcom-i3,2019-20,Norwell - William G Vinal,2190020,0,1.8,0,98.2,0,0,0,90.4,9.6,56.9 +3.0625,3.06,a-pcom-i3,2019-20,Norwood - Balch,2200005,0,2.5,4.9,90.2,2.5,0,0,97.1,2.9,40.7 +1,1,a-pcom-i3,2019-20,Norwood - Charles J Prescott,2200025,0,0,1.6,98.4,0,0,0,93.4,6.6,30.4 +1,1,a-pcom-i3,2019-20,Norwood - Cornelius M Callahan,2200010,0,0,1.3,98.7,0,0,0,85.7,14.3,37.1 +1,1,a-pcom-i3,2019-20,Norwood - Dr. Philip O. Coakley Middle School,2200305,1,1,0,98,0,0,0,69.4,30.6,98 +1,1,a-pcom-i3,2019-20,Norwood - F A Cleveland,2200015,0,0,0,100,0,0,0,94.5,5.5,47.4 +1,1,a-pcom-i3,2019-20,Norwood - George F. Willett,2200075,0,0,1.5,98.5,0,0,0,99.7,0.3,66.5 +1,1,a-pcom-i3,2019-20,Norwood - John P Oldham,2200020,0,0,0,100,0,0,0,85.4,14.6,32.3 +1.53125,1.53,a-pcom-i3,2019-20,Norwood - Norwood High,2200505,2.4,0,2.5,95.1,0,0,0,63.6,36.4,117.8 +2,2,a-pcom-i3,2019-20,Oak Bluffs - Oak Bluffs Elementary,2210005,1.6,0,1.2,93.6,0,0,3.5,89,11,85.6 +1.0625,1.06,a-pcom-i3,2019-20,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,1.1,0,96.6,0,0,2.3,56.3,43.7,87 +1,1,a-pcom-i3,2019-20,Old Rochester - Old Rochester Regional High,7400505,0,0,1.1,98.9,0,0,0,65.6,34.4,90.3 +1,1,a-pcom-i3,2019-20,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,100,0,0,0,72.4,27.6,56.2 +3.4375,3.44,a-pcom-i3,2019-20,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,0,11,89,0,0,0,83.4,16.6,27.2 +1,1,a-pcom-i3,2019-20,Orange - Dexter Park,2230010,0,0,0,100,0,0,0,83.8,16.2,40.7 +1,1,a-pcom-i3,2019-20,Orange - Fisher Hill,2230015,0,0,1.8,98.2,0,0,0,90.1,9.9,55.1 +1,1,a-pcom-i3,2019-20,Orleans - Orleans Elementary,2240005,0,0,0,100,0,0,0,89.2,10.8,42.7 +1,1,a-pcom-i3,2019-20,Oxford - ACE Program,2260305,0,0,1.9,98.1,0,0,0,42.7,57.3,5.3 +1,1,a-pcom-i3,2019-20,Oxford - Alfred M Chaffee,2260010,0,0,0,100,0,0,0,97.3,2.7,37.2 +1,1,a-pcom-i3,2019-20,Oxford - Clara Barton,2260005,0,0,0,100,0,0,0,97.6,2.4,41.9 +1.25,1.25,a-pcom-i3,2019-20,Oxford - Oxford High,2260505,0,1.4,1.2,96,0,0,1.4,66.4,33.6,72.8 +1,1,a-pcom-i3,2019-20,Oxford - Oxford Middle,2260405,0,0,0,100,0,0,0,84.1,15.9,43.5 +1,1,a-pcom-i3,2019-20,Palmer - Old Mill Pond,2270008,0,0,1.5,98.5,0,0,0,90.4,9.6,98.5 +1.65625,1.66,a-pcom-i3,2019-20,Palmer - Palmer High,2270505,0,1.9,1.5,94.7,0,0,1.9,76.7,23.3,103 +1,1,a-pcom-i3,2019-20,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,100,0,0,0,51.6,48.4,108.5 +13.8125,5,a-pcom-i3,2019-20,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,17.3,0,26.8,55.8,0,0,0,68.2,31.8,41.6 +1,1,a-pcom-i3,2019-20,Peabody - Captain Samuel Brown,2290005,0,0,0,100,0,0,0,94.1,5.9,72.3 +1,1,a-pcom-i3,2019-20,Peabody - Center,2290015,0,2.6,0,97.4,0,0,0,95.3,4.7,38.4 +1,1,a-pcom-i3,2019-20,Peabody - J Henry Higgins Middle,2290305,0,0,0.6,99.4,0,0,0,74,26,153.9 +1,1,a-pcom-i3,2019-20,Peabody - John E Burke,2290007,0,0,2.6,97.4,0,0,0,97.6,2.4,38.1 +1,1,a-pcom-i3,2019-20,Peabody - John E. McCarthy,2290016,0,0,0,100,0,0,0,92.7,7.3,55.9 +1,1,a-pcom-i3,2019-20,Peabody - Peabody Veterans Memorial High,2290510,0,0.5,1.6,97.3,0,0,0.5,63.4,36.6,186.2 +1,1,a-pcom-i3,2019-20,Peabody - South Memorial,2290035,0,0,0,100,0,0,0,91.8,8.2,38 +1,1,a-pcom-i3,2019-20,Peabody - Thomas Carroll,2290010,0,0,0,100,0,0,0,95,5,55.9 +1,1,a-pcom-i3,2019-20,Peabody - West Memorial,2290045,0,0,0,100,0,0,0,95.1,4.9,44.9 +1.59375,1.59,a-pcom-i3,2019-20,Peabody - William A Welch Sr,2290027,2.6,0,2.6,94.9,0,0,0,90.8,9.2,39.2 +4.8125,4.81,a-pcom-i3,2019-20,Pelham - Pelham Elementary,2300005,3.7,0.7,11,84.6,0,0,0,88.3,11.7,27.3 +1,1,a-pcom-i3,2019-20,Pembroke - Bryantville Elementary,2310003,0,0,0,100,0,0,0,93.6,6.4,47.2 +1,1,a-pcom-i3,2019-20,Pembroke - Hobomock Elementary,2310010,0,0,0,100,0,0,0,90.4,9.6,52.2 +1,1,a-pcom-i3,2019-20,Pembroke - North Pembroke Elementary,2310015,0,0,0,100,0,0,0,94.7,5.3,56.6 +1,1,a-pcom-i3,2019-20,Pembroke - Pembroke Community Middle School,2310305,0,0,0,100,0,0,0,85.9,14.1,49.6 +1,1,a-pcom-i3,2019-20,Pembroke - Pembroke High School,2310505,0,0,0,100,0,0,0,72.8,27.2,88.7 +1,1,a-pcom-i3,2019-20,Pentucket - Dr Frederick N Sweetsir,7450020,0,0,0,97.8,0,0,2.2,97.3,2.7,45.7 +1,1,a-pcom-i3,2019-20,Pentucket - Dr John C Page School,7450015,0,0,0,99.5,0,0,0.5,92.7,7.3,47.2 +1,1,a-pcom-i3,2019-20,Pentucket - Elmer S Bagnall,7450005,0,0,0,97.9,0,0,2.1,97.6,2.4,60.8 +1,1,a-pcom-i3,2019-20,Pentucket - Helen R Donaghue School,7450010,0,0,2.4,97,0,0,0.6,96,4,42.2 +1.125,1.12,a-pcom-i3,2019-20,Pentucket - Pentucket Regional Middle,7450405,0,0,0,96.4,0,0,3.6,71.6,28.4,46.6 +1,1,a-pcom-i3,2019-20,Pentucket - Pentucket Regional Sr High,7450505,0,0,1.2,98.5,0,0,0.3,61.2,38.8,83.8 +1,1,a-pcom-i3,2019-20,Petersham - Petersham Center,2340005,0,0,0,100,0,0,0,83,17,23.5 +13.5,5,a-pcom-i3,2019-20,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,4.4,4.4,34.5,56.8,0,0,0,73.8,26.2,22.9 +21.1875,5,a-pcom-i3,2019-20,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,40.2,4.6,18.4,32.2,0,0,4.6,77,23,21.7 +17.78125,5,a-pcom-i3,2019-20,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,15.6,7.2,34.1,43.1,0,0,0,78.4,21.6,27.8 +3.25,3.25,a-pcom-i3,2019-20,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,4.2,2.7,3.4,89.6,0,0,0,70.9,29.1,94.4 +9.375,5,a-pcom-i3,2019-20,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,4.6,16.1,6.9,70,0,0,2.3,54.1,45.9,43.4 +1,1,a-pcom-i3,2019-20,Pioneer Valley - Bernardston Elementary,7500006,0,0,0,100,0,0,0,95.5,4.5,37.7 +1,1,a-pcom-i3,2019-20,Pioneer Valley - Northfield Elementary,7500008,0,0,0,100,0,0,0,94.5,5.5,33.8 +1.28125,1.28,a-pcom-i3,2019-20,Pioneer Valley - Pioneer Valley Regional,7500505,0,2.1,2.1,95.9,0,0,0,71.4,28.6,48.2 +1,1,a-pcom-i3,2019-20,Pioneer Valley - Warwick Community School,7500009,0,0,0,100,0,0,0,88.9,11.1,10.7 +13.75,5,a-pcom-i3,2019-20,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,1,40.9,1,56,0,0,1,76.9,23.1,96.3 +4.65625,4.66,a-pcom-i3,2019-20,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,5.7,1.4,6.7,85.1,1.1,0,0,56.2,42.4,73.1 +1,1,a-pcom-i3,2019-20,Pittsfield - Allendale,2360010,0,2.6,0,97.4,0,0,0,97.4,2.6,38.9 +4.34375,4.34,a-pcom-i3,2019-20,Pittsfield - Crosby,2360065,5.4,0,3.4,86.1,0,0,5.1,87.6,12.4,88.4 +2.71875,2.72,a-pcom-i3,2019-20,Pittsfield - Egremont,2360035,1.6,1.6,4.8,91.3,0,0,0.8,98.4,1.6,63.1 +2.3125,2.31,a-pcom-i3,2019-20,Pittsfield - John T Reid Middle,2360305,1.2,1.2,2.5,92.6,0,0,2.5,59.3,40.7,80.6 +3.46875,3.47,a-pcom-i3,2019-20,Pittsfield - Morningside Community School,2360055,4.8,3.2,0,88.9,0,0,3.2,92.1,7.9,62.9 +3.03125,3.03,a-pcom-i3,2019-20,Pittsfield - Pittsfield High,2360505,5.8,0.4,2.8,90.3,0.8,0,0,69.7,30.3,130.3 +1,1,a-pcom-i3,2019-20,Pittsfield - Robert T. Capeless Elementary School,2360045,2.7,0,0,97.3,0,0,0,100,0,29.5 +1.96875,1.97,a-pcom-i3,2019-20,Pittsfield - Silvio O Conte Community,2360105,1.6,0,1.6,93.7,0,0,3.2,92.1,7.9,63.5 +1,1,a-pcom-i3,2019-20,Pittsfield - Stearns,2360090,0,0,0,100,0,0,0,92.6,7.4,40.7 +2.375,2.37,a-pcom-i3,2019-20,Pittsfield - Taconic High,2360510,2.1,0,3,92.4,0,0,2.5,55.2,44.8,117.9 +1.875,1.88,a-pcom-i3,2019-20,Pittsfield - Theodore Herberg Middle,2360310,0.6,0.6,2.3,94,0,0,2.5,69.9,30.1,80.9 +1,1,a-pcom-i3,2019-20,Pittsfield - Williams,2360100,0,0,0,97.8,0,0,2.2,90.4,9.6,45.3 +1,1,a-pcom-i3,2019-20,Plainville - Anna Ware Jackson,2380010,0,0,0,100,0,0,0,98.5,1.5,66.7 +1,1,a-pcom-i3,2019-20,Plainville - Beatrice H Wood Elementary,2380005,0,2.7,0,97.3,0,0,0,91.9,8.1,37.2 +1,1,a-pcom-i3,2019-20,Plymouth - Cold Spring,2390005,0,0,0,100,0,0,0,94.1,5.9,33.8 +1,1,a-pcom-i3,2019-20,Plymouth - Federal Furnace School,2390011,1,0,1.7,96.8,0.5,0,0,83.5,16.5,57.9 +1,1,a-pcom-i3,2019-20,Plymouth - Hedge,2390010,0,0,0,100,0,0,0,95.6,4.4,33.7 +1,1,a-pcom-i3,2019-20,Plymouth - Indian Brook,2390012,0,0,1.5,97.7,0,0.8,0,94.9,5.1,68.5 +1,1,a-pcom-i3,2019-20,Plymouth - Manomet Elementary,2390015,0,0,1.5,98.5,0,0,0,97.5,2.5,39.3 +1,1,a-pcom-i3,2019-20,Plymouth - Nathaniel Morton Elementary,2390030,0,0,0,100,0,0,0,94.7,5.3,71.5 +1.5,1.5,a-pcom-i3,2019-20,Plymouth - Plymouth Commun Intermediate,2390405,2.4,0.8,1.6,95.2,0,0,0,83.2,16.8,124.4 +1,1,a-pcom-i3,2019-20,Plymouth - Plymouth Early Childhood Center,2390003,0,0,1.5,98.5,0,0,0,97,3,33.2 +1,1,a-pcom-i3,2019-20,Plymouth - Plymouth North High,2390505,0,0.3,0.6,99.1,0,0,0,67.2,32.8,162.1 +1,1,a-pcom-i3,2019-20,Plymouth - Plymouth South High,2390515,0,2.2,0,97.8,0,0,0,65.8,34.2,158.5 +1,1,a-pcom-i3,2019-20,Plymouth - Plymouth South Middle,2390305,0,1.1,0,98.9,0,0,0,75.7,24.3,87.2 +1,1,a-pcom-i3,2019-20,Plymouth - South Elementary,2390046,1.1,0,1.1,97.7,0,0,0,95.3,4.7,87.8 +1,1,a-pcom-i3,2019-20,Plymouth - West Elementary,2390047,0,0,0,98.4,0,1.6,0,90.2,9.8,64.4 +1,1,a-pcom-i3,2019-20,Plympton - Dennett Elementary,2400010,0,0,0,100,0,0,0,96.8,3.2,31.2 +8.59375,5,a-pcom-i3,2019-20,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,13.4,4.2,9.2,72.5,0,0,0.7,77.6,22.4,141.8 +1,1,a-pcom-i3,2019-20,Provincetown - Provincetown Schools,2420020,0,0,0,97.2,0,0,2.8,78.8,21.2,35.9 +1,1,a-pcom-i3,2019-20,Quabbin - Hardwick Elementary,7530005,0,0,0,100,0,0,0,98.3,1.7,24.5 +1.90625,1.91,a-pcom-i3,2019-20,Quabbin - Hubbardston Center,7530010,0,2.8,3.3,93.9,0,0,0,88,12,30.2 +1,1,a-pcom-i3,2019-20,Quabbin - New Braintree Grade,7530020,0,0,0,100,0,0,0,94.5,5.5,11.4 +2.375,2.37,a-pcom-i3,2019-20,Quabbin - Oakham Center,7530025,7.6,0,0,92.4,0,0,0,85.7,14.3,13.2 +1.125,1.12,a-pcom-i3,2019-20,Quabbin - Quabbin Regional High School,7530505,0,1.3,0,96.4,0,1.3,1,74.6,25.4,76.8 +1,1,a-pcom-i3,2019-20,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,100,0,0,0,79.4,20.6,45.4 +1,1,a-pcom-i3,2019-20,Quabbin - Ruggles Lane,7530030,1.6,0,1.6,96.9,0,0,0,92.1,7.9,64.2 +1,1,a-pcom-i3,2019-20,Quaboag Regional - Quaboag Regional High,7780505,0,0.6,0,99.4,0,0,0,60.7,39.3,56.9 +1,1,a-pcom-i3,2019-20,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,100,0,0,0,58.5,41.5,14.8 +1,1,a-pcom-i3,2019-20,Quaboag Regional - Warren Elementary,7780005,0,0.5,0,99.5,0,0,0,87.4,12.6,62.5 +1,1,a-pcom-i3,2019-20,Quaboag Regional - West Brookfield Elementary,7780010,0,0.8,0,99.2,0,0,0,95,5,39.8 +2.84375,2.84,a-pcom-i3,2019-20,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,0,7,0,90.9,0,0,2.1,100,0,47 +1,1,a-pcom-i3,2019-20,Quincy - Atherton Hough,2430040,0,2.6,0,97.4,0,0,0,94.4,5.6,46.8 +2.875,2.88,a-pcom-i3,2019-20,Quincy - Atlantic Middle,2430305,0,7,0,90.8,0,0,2.2,79.2,20.8,45.7 +1,1,a-pcom-i3,2019-20,Quincy - Beechwood Knoll Elementary,2430020,0,3.1,0,96.9,0,0,0,96.9,3.1,32.7 +1,1,a-pcom-i3,2019-20,Quincy - Broad Meadows Middle,2430310,0,0.9,0,96.9,0,0,2.2,77,23,45.7 +1.125,1.12,a-pcom-i3,2019-20,Quincy - Central Middle,2430315,0,3.6,0,96.4,0,0,0,75.1,24.9,56.2 +1,1,a-pcom-i3,2019-20,Quincy - Charles A Bernazzani Elementary,2430025,0,0,0,100,0,0,0,86.6,13.4,31.3 +1,1,a-pcom-i3,2019-20,Quincy - Clifford H Marshall Elementary,2430055,0,1.5,0,98.5,0,0,0,98.5,1.5,66.4 +6.8125,5,a-pcom-i3,2019-20,Quincy - Francis W Parker,2430075,4.8,14.5,0,78.2,0,0,2.4,92.3,7.7,41.3 +1.03125,1.03,a-pcom-i3,2019-20,Quincy - Lincoln-Hancock Community School,2430035,1.7,1.7,0,96.7,0,0,0,96.2,3.8,60 +2.6875,2.69,a-pcom-i3,2019-20,Quincy - Merrymount,2430060,0,5.9,2.7,91.4,0,0,0,94.6,5.4,37.4 +3.90625,3.91,a-pcom-i3,2019-20,Quincy - Montclair,2430065,0,12.5,0,87.5,0,0,0,94.8,5.2,40.4 +3.125,3.13,a-pcom-i3,2019-20,Quincy - North Quincy High,2430510,0.8,3.6,0.8,90,0,0,4.8,59.2,40.8,125.1 +1.40625,1.41,a-pcom-i3,2019-20,Quincy - Point Webster Middle,2430325,2.2,2.2,0,95.5,0,0,0,81.2,18.8,44.9 +2.75,2.75,a-pcom-i3,2019-20,Quincy - Quincy High,2430505,0.6,5.2,1.2,91.2,0.6,0,1.2,65.1,34.9,165 +2.625,2.63,a-pcom-i3,2019-20,Quincy - Snug Harbor Community School,2430090,1.9,4,0,91.6,0,0,2.5,91.8,8.2,79.6 +1,1,a-pcom-i3,2019-20,Quincy - South West Middle School,2430320,2,0,0,98,0,0,0,84.8,15.2,48.8 +1.40625,1.41,a-pcom-i3,2019-20,Quincy - Squantum,2430095,0,4.5,0,95.5,0,0,0,92.7,7.3,44.8 +3.0625,3.06,a-pcom-i3,2019-20,Quincy - Wollaston School,2430110,1.4,8.4,0,90.2,0,0,0,94.4,5.6,35.6 +1,1,a-pcom-i3,2019-20,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,1,2.1,96.9,0,0,0,70.2,29.8,96.9 +5.0625,5,a-pcom-i3,2019-20,Randolph - Elizabeth G Lyons Elementary,2440020,12.9,1.1,0,83.8,0,0,2.2,78.4,21.6,46.4 +7.75,5,a-pcom-i3,2019-20,Randolph - J F Kennedy Elementary,2440018,15.1,3.2,4.3,75.2,0,0,2.2,85.1,14.9,92.9 +4.6875,4.69,a-pcom-i3,2019-20,Randolph - Margaret L Donovan,2440015,6.4,6.4,2.1,85,0,0,0,89.3,10.7,46.5 +5.21875,5,a-pcom-i3,2019-20,Randolph - Martin E Young Elementary,2440040,2.2,1.1,4.5,83.3,0,0,8.9,91.1,8.9,44.8 +9.90625,5,a-pcom-i3,2019-20,Randolph - Randolph Community Middle,2440410,25.9,2.3,2.3,68.3,1.2,0,0,67.6,32.4,86.4 +8.0625,5,a-pcom-i3,2019-20,Randolph - Randolph High,2440505,10.4,8.8,5.4,74.2,0,0,1.1,69.7,30.3,92 +1,1,a-pcom-i3,2019-20,Reading - Alice M Barrows,2460002,0,0,0.4,99.6,0,0,0,95,5,39.7 +1,1,a-pcom-i3,2019-20,Reading - Arthur W Coolidge Middle,2460305,0,0,1.7,98.3,0,0,0,81.6,18.4,64.4 +1,1,a-pcom-i3,2019-20,Reading - Birch Meadow,2460005,0,0,0.2,99.8,0,0,0,95.4,4.6,60.7 +1,1,a-pcom-i3,2019-20,Reading - J Warren Killam,2460017,0,0,0,100,0,0,0,96.7,3.3,52 +1.3125,1.31,a-pcom-i3,2019-20,Reading - Joshua Eaton,2460010,0,2.1,0,95.8,0,0,2.1,94.2,5.8,47.6 +1,1,a-pcom-i3,2019-20,Reading - RISE PreSchool,2460001,0,0,0.6,99.4,0,0,0,99.4,0.6,24.4 +1,1,a-pcom-i3,2019-20,Reading - Reading Memorial High,2460505,0,1.5,0,97.7,0.8,0,0,70.8,29.2,124 +1,1,a-pcom-i3,2019-20,Reading - Walter S Parker Middle,2460310,0,0,1.6,98.4,0,0,0,77.2,22.8,65.2 +1,1,a-pcom-i3,2019-20,Reading - Wood End Elementary School,2460020,0,0,0,100,0,0,0,98.1,1.9,47.7 +1,1,a-pcom-i3,2019-20,Revere - A. C. Whelan Elementary School,2480003,0.6,0,1.9,97.4,0,0,0,92.3,7.7,81.7 +1,1,a-pcom-i3,2019-20,Revere - Abraham Lincoln,2480025,0,0,3.1,96.9,0,0,0,93.6,6.4,68.2 +1.875,1.88,a-pcom-i3,2019-20,Revere - Beachmont Veterans Memorial School,2480013,1.8,0.4,3.8,94,0,0,0,86.8,13.2,54.4 +2.90625,2.91,a-pcom-i3,2019-20,Revere - Garfield Elementary School,2480056,1.1,4.2,2.9,90.7,0,0,1.1,91.7,8.3,90.3 +3.125,3.13,a-pcom-i3,2019-20,Revere - Garfield Middle School,2480057,0.9,5.4,3.7,90,0,0,0,58,42,55.9 +1,1,a-pcom-i3,2019-20,Revere - Paul Revere,2480050,0,0,1.1,98.9,0,0,0,91.6,8.4,53.7 +4.6875,4.69,a-pcom-i3,2019-20,Revere - Revere High,2480505,4.3,2.1,6.7,85,0.8,0,1.1,63.8,36.2,187.7 +1.8125,1.81,a-pcom-i3,2019-20,Revere - Rumney Marsh Academy,2480014,2.1,0,3.7,94.2,0,0,0,71.3,28.7,70.2 +1.6875,1.69,a-pcom-i3,2019-20,Revere - Seacoast School,2480520,5,0,0.5,94.6,0,0,0,62.1,37.9,20.1 +1.6875,1.69,a-pcom-i3,2019-20,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,0,2.4,94.6,0,1.5,1.5,90.3,9.7,67.1 +1.1875,1.19,a-pcom-i3,2019-20,Revere - Susan B. Anthony Middle School,2480305,0,1.5,2.4,96.2,0,0,0,72.1,27.9,67.4 +1.875,1.88,a-pcom-i3,2019-20,Richmond - Richmond Consolidated,2490005,6,0,0,94,0,0,0,90.8,9.2,33.6 +3.125,3.13,a-pcom-i3,2019-20,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,2.5,2.5,5,90,0,0,0,69.4,30.6,80.3 +1.375,1.38,a-pcom-i3,2019-20,River Valley Charter (District) - River Valley Charter School,4820050,0,0,0,95.6,0,0,4.4,78.9,21.1,45.3 +1,1,a-pcom-i3,2019-20,Rochester - Rochester Memorial,2500005,3.1,0,0,96.9,0,0,0,89,11,63.7 +1,1,a-pcom-i3,2019-20,Rockland - Jefferson Elementary School,2510060,0,0,0,97.6,0,0,2.4,98,2,42.5 +1,1,a-pcom-i3,2019-20,Rockland - John W Rogers Middle,2510305,0,0,0,100,0,0,0,88.5,11.5,75.8 +1,1,a-pcom-i3,2019-20,Rockland - Memorial Park,2510020,0,0,2,98,0,0,0,95.3,4.7,50.1 +2.0625,2.06,a-pcom-i3,2019-20,Rockland - R Stewart Esten,2510025,0,0,4.4,93.4,0,0,2.2,93.8,6.2,45.6 +1,1,a-pcom-i3,2019-20,Rockland - Rockland Senior High,2510505,0,0,2.4,97.6,0,0,0,68,32,83.2 +1,1,a-pcom-i3,2019-20,Rockport - Rockport Elementary,2520005,0,0,0,100,0,0,0,92.9,7.1,56.5 +1,1,a-pcom-i3,2019-20,Rockport - Rockport High,2520510,0,0,0,100,0,0,0,64.5,35.5,47.8 +1,1,a-pcom-i3,2019-20,Rockport - Rockport Middle,2520305,0,0,0,100,0,0,0,77.3,22.7,34.9 +3.75,3.75,a-pcom-i3,2019-20,Rowe - Rowe Elementary,2530005,0,0,6,88,0,0,6,82.5,17.5,16.6 +12.5625,5,a-pcom-i3,2019-20,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,23.3,3.7,7.4,59.8,0,0,5.8,61.9,37.6,189 +5.8125,5,a-pcom-i3,2019-20,Sabis International Charter (District) - Sabis International Charter School,4410505,8.1,1.2,8.7,81.4,0,0,0.6,72,28,161 +1.78125,1.78,a-pcom-i3,2019-20,Salem - Bates,2580003,0.3,0.2,5.3,94.3,0,0,0,80.7,19.3,63.9 +1,1,a-pcom-i3,2019-20,Salem - Carlton,2580015,0.3,0.2,2,97.5,0,0,0,93.3,6.7,49.8 +4.3125,4.31,a-pcom-i3,2019-20,Salem - Collins Middle,2580305,1.9,2.9,9,86.2,0,0,0,70.8,29.2,104.3 +2.9375,2.94,a-pcom-i3,2019-20,Salem - Horace Mann Laboratory,2580030,0.3,2.5,6.5,90.6,0,0,0,91.7,8.3,45.9 +6.5625,5,a-pcom-i3,2019-20,Salem - New Liberty Innovation School,2580510,0,0,21,79,0,0,0,83.9,16.1,14.3 +2.34375,2.34,a-pcom-i3,2019-20,Salem - Salem Early Childhood,2580001,0,0,7.5,92.5,0,0,0,97.6,2.4,37.5 +3.4375,3.44,a-pcom-i3,2019-20,Salem - Salem High,2580505,1.8,0.6,8.5,89,0,0,0,67.5,32.5,164.1 +4.3125,4.31,a-pcom-i3,2019-20,Salem - Salem Prep High School,2580515,0,0,13.8,86.2,0,0,0,66.3,33.7,11.6 +1.625,1.63,a-pcom-i3,2019-20,Salem - Saltonstall School,2580050,0.3,0.2,4.7,94.8,0,0,0,92.9,7.1,61.5 +1.5625,1.56,a-pcom-i3,2019-20,Salem - Witchcraft Heights,2580070,0.2,1.2,3.6,95,0,0,0,93.1,6.9,94.8 +5.9375,5,a-pcom-i3,2019-20,Salem Academy Charter (District) - Salem Academy Charter School,4850485,4.4,1.5,13.1,81,0,0,0,71.2,28.8,68.5 +1,1,a-pcom-i3,2019-20,Sandwich - Forestdale School,2610002,0,2,1,97,0,0,0,95,5,100.5 +1,1,a-pcom-i3,2019-20,Sandwich - Oak Ridge,2610025,0,0,0,100,0,0,0,95.4,4.6,109.8 +1,1,a-pcom-i3,2019-20,Sandwich - Sandwich High,2610505,0,0.7,2,97.3,0,0,0,71.7,28.3,91.7 +1.625,1.63,a-pcom-i3,2019-20,Sandwich - Sandwich STEM Academy,2610305,0,0.6,2.8,94.8,0,0,1.8,76.5,23.5,55.8 +1,1,a-pcom-i3,2019-20,Saugus - Belmonte Saugus Middle,2620305,0,0,2.3,97.7,0,0,0,72.3,27.7,88.8 +1,1,a-pcom-i3,2019-20,Saugus - Douglas Waybright,2620067,0,0,0,100,0,0,0,93.4,6.6,31.7 +1,1,a-pcom-i3,2019-20,Saugus - Lynnhurst,2620040,0,0,0,100,0,0,0,96.2,3.8,29.2 +1.125,1.12,a-pcom-i3,2019-20,Saugus - Oaklandvale,2620050,3.6,0,0,96.4,0,0,0,95,5,27.4 +1.84375,1.84,a-pcom-i3,2019-20,Saugus - Saugus High,2620505,2.4,0,3.5,94.1,0,0,0,58.7,41.3,84.5 +1.53125,1.53,a-pcom-i3,2019-20,Saugus - Veterans Memorial,2620065,0,0,2.9,95.1,0,1,1,98.1,1.9,102.9 +1.875,1.88,a-pcom-i3,2019-20,Savoy - Emma L Miller Elementary School,2630010,0,0,6,94,0,0,0,86.9,13.1,16.8 +1,1,a-pcom-i3,2019-20,Scituate - Cushing Elementary,2640007,0,0,0,100,0,0,0,86.7,13.3,44.4 +1,1,a-pcom-i3,2019-20,Scituate - Gates Middle School,2640305,0,1.3,0,98.7,0,0,0,81.5,18.5,79.4 +1,1,a-pcom-i3,2019-20,Scituate - Hatherly Elementary,2640010,0,0,0,100,0,0,0,93.5,6.5,49.4 +1,1,a-pcom-i3,2019-20,Scituate - Jenkins Elementary School,2640015,0,0,0,100,0,0,0,96.1,3.9,53.9 +1.09375,1.09,a-pcom-i3,2019-20,Scituate - Scituate High School,2640505,1,1,0,96.5,0,0.6,1,66.9,33.1,102.8 +1,1,a-pcom-i3,2019-20,Scituate - Wampatuck Elementary,2640020,0,0,0,100,0,0,0,94.8,5.2,63 +1,1,a-pcom-i3,2019-20,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,1.4,1.4,0,97.1,0,0,0,76.8,23.2,69 +1.25,1.25,a-pcom-i3,2019-20,Seekonk - George R Martin,2650007,1.3,0,0,96,0,0,2.7,90.7,9.3,75.2 +1,1,a-pcom-i3,2019-20,Seekonk - Mildred Aitken School,2650015,0,0,0,98.1,0,0,1.9,92.5,7.5,53.2 +1.15625,1.16,a-pcom-i3,2019-20,Seekonk - Seekonk High,2650505,0,1.2,1.2,96.3,0,0,1.2,67.6,32.4,80.2 +7.25,5,a-pcom-i3,2019-20,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,7.3,1.2,13.4,76.8,0,0,1.2,82.9,17.1,82 +1.6875,1.69,a-pcom-i3,2019-20,Sharon - Cottage Street,2660005,1.3,4.1,0,94.6,0,0,0,93.2,6.8,61.2 +1,1,a-pcom-i3,2019-20,Sharon - East Elementary,2660010,0,0.7,0,99.3,0,0,0,94,6,68.1 +1.78125,1.78,a-pcom-i3,2019-20,Sharon - Heights Elementary,2660015,3.4,2.3,0,94.3,0,0,0,90.1,9.9,87.4 +1,1,a-pcom-i3,2019-20,Sharon - Sharon Early Childhood Center,2660001,0,0,0,100,0,0,0,98.9,1.1,18.5 +1.75,1.75,a-pcom-i3,2019-20,Sharon - Sharon High,2660505,1.4,3.5,0.7,94.4,0,0,0,70,30,143.2 +3.28125,3.28,a-pcom-i3,2019-20,Sharon - Sharon Middle,2660305,4.4,4.4,0,89.5,0.9,0.9,0,78.4,21.6,114.5 +1,1,a-pcom-i3,2019-20,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0.5,2.2,96.8,0,0.5,0,61.1,38.9,184.9 +1.28125,1.28,a-pcom-i3,2019-20,Sherborn - Pine Hill,2690010,1.5,0,1.2,95.9,0,0,1.4,95.3,4.7,71.3 +2.46875,2.47,a-pcom-i3,2019-20,Shrewsbury - Beal School,2710005,0,7.9,0,92.1,0,0,0,96.4,3.6,55.5 +1.8125,1.81,a-pcom-i3,2019-20,Shrewsbury - Calvin Coolidge,2710015,0,4.3,0,94.2,0,0,1.5,98.5,1.5,65 +2,2,a-pcom-i3,2019-20,Shrewsbury - Floral Street School,2710020,1.1,4.3,0,93.6,1.1,0,0,96.7,3.3,93.1 +2.4375,2.44,a-pcom-i3,2019-20,Shrewsbury - Oak Middle School,2710030,1.7,3.5,1.7,92.2,0.9,0,0,80.4,19.6,117.1 +2.25,2.25,a-pcom-i3,2019-20,Shrewsbury - Parker Road Preschool,2710040,2,3.9,0,92.8,0,0,1.3,100,0,50.8 +2.5625,2.56,a-pcom-i3,2019-20,Shrewsbury - Sherwood Middle School,2710305,0.8,1.6,4.2,91.8,0,0,1.7,85.4,14.6,120 +1.53125,1.53,a-pcom-i3,2019-20,Shrewsbury - Shrewsbury Sr High,2710505,1,1,2.3,95.1,0,0,0.6,71.7,28.3,204.7 +1,1,a-pcom-i3,2019-20,Shrewsbury - Spring Street,2710035,0,1.8,0,98.2,0,0,0,97,3,54.1 +1.3125,1.31,a-pcom-i3,2019-20,Shrewsbury - Walter J Paton,2710025,0,1,1.4,95.8,0,0,1.8,97,3,56.6 +2.40625,2.41,a-pcom-i3,2019-20,Shutesbury - Shutesbury Elementary,2720005,0,3.1,3.1,92.3,0,0,1.5,90.8,9.2,32.6 +1,1,a-pcom-i3,2019-20,Silver Lake - Silver Lake Regional High,7600505,1.4,0,0,98.6,0,0,0,71.3,28.7,139.5 +1,1,a-pcom-i3,2019-20,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,100,0,0,0,69.5,30.5,68.7 +3.96875,3.97,a-pcom-i3,2019-20,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,1.6,1.6,9.4,87.3,0,0,0,81.1,18.9,62.1 +1,1,a-pcom-i3,2019-20,Somerset - Chace Street,2730005,0,0,0,100,0,0,0,93.4,6.6,49.5 +1,1,a-pcom-i3,2019-20,Somerset - North Elementary,2730008,0,0,1.4,98.6,0,0,0,94.2,5.8,73 +1,1,a-pcom-i3,2019-20,Somerset - Somerset Middle School,2730305,0,0,0,100,0,0,0,80.7,19.3,74 +1,1,a-pcom-i3,2019-20,Somerset - South,2730015,0,0,0,100,0,0,0,96.1,3.9,32.2 +1.0625,1.06,a-pcom-i3,2019-20,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0.8,2.5,96.6,0,0,0,64.1,35.9,118.8 +7.46875,5,a-pcom-i3,2019-20,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,4.3,0.4,19.2,76.1,0,0,0,87.1,12.9,70.1 +6.0625,5,a-pcom-i3,2019-20,Somerville - Arthur D Healey,2740075,11,1.4,7,80.6,0,0,0,77.5,22.5,71.2 +1,1,a-pcom-i3,2019-20,Somerville - Benjamin G Brown,2740015,0,0,0,100,0,0,0,81.6,18.4,21.8 +4.1875,4.19,a-pcom-i3,2019-20,Somerville - Capuano Early Childhood Center,2740005,1.5,1.5,10.4,86.6,0,0,0,93.9,6.1,65.6 +9.8125,5,a-pcom-i3,2019-20,Somerville - E Somerville Community,2740111,3.6,1.4,25,68.6,1.2,0,0,80.5,19.5,82.3 +3.1875,3.19,a-pcom-i3,2019-20,Somerville - Full Circle High School,2740510,6.4,0,3.8,89.8,0,0,0,58.1,41.9,15.6 +3.46875,3.47,a-pcom-i3,2019-20,Somerville - John F Kennedy,2740083,1.4,2.8,5.6,88.9,0,0,1.4,82.3,17.7,72 +2.53125,2.53,a-pcom-i3,2019-20,Somerville - Next Wave Junior High,2740410,2,0,6.1,91.9,0,0,0,81,19,9.9 +4.625,4.62,a-pcom-i3,2019-20,Somerville - Somerville High,2740505,7.1,0.6,5.9,85.2,0,0,1.2,62.1,37.9,168.6 +7.75,5,a-pcom-i3,2019-20,Somerville - West Somerville Neighborhood,2740115,8.3,2.1,10.4,75.2,0,0,4.1,83.4,16.6,48.3 +4.71875,4.72,a-pcom-i3,2019-20,Somerville - Winter Hill Community,2740120,2.4,3.6,7.9,84.9,0,0,1.2,85.6,14.4,83.3 +1,1,a-pcom-i3,2019-20,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,100,0,0,0,69,31,71 +1.125,1.12,a-pcom-i3,2019-20,South Hadley - Mosier,2780020,0,1.8,1.8,96.4,0,0,0,90.9,9.1,55 +1,1,a-pcom-i3,2019-20,South Hadley - Plains Elementary,2780015,0,0,1.9,98.1,0,0,0,86.8,13.2,53.1 +1,1,a-pcom-i3,2019-20,South Hadley - South Hadley High,2780505,0,1.4,0,98.6,0,0,0,62.7,37.3,72.4 +3.8125,3.81,a-pcom-i3,2019-20,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,1.6,0.8,9.8,87.8,0,0,0,52.4,47.6,123 +3.71875,3.72,a-pcom-i3,2019-20,South Shore Charter Public (District) - South Shore Charter Public School,4880550,8.6,1.3,1.3,88.1,0,0,0.7,74.8,25.2,149.1 +1,1,a-pcom-i3,2019-20,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,1.1,98.5,0,0.4,0,46.9,53.1,93.9 +1,1,a-pcom-i3,2019-20,Southampton - William E Norris,2750005,0,0,0,97,0,0,3,88.1,11.9,67.2 +1,1,a-pcom-i3,2019-20,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,100,0,0,0,95.2,4.8,41.3 +1,1,a-pcom-i3,2019-20,Southborough - Margaret A Neary,2760020,0,0,0,100,0,0,0,90.4,9.6,41.8 +2.46875,2.47,a-pcom-i3,2019-20,Southborough - Mary E Finn School,2760008,1.3,0,5.3,92.1,0,1.3,0,94.7,5.3,75.7 +1.25,1.25,a-pcom-i3,2019-20,Southborough - P Brent Trottier,2760305,0,0,1.3,96,2.7,0,0,82.6,17.4,75.1 +7.15625,5,a-pcom-i3,2019-20,Southbridge - Charlton Street,2770005,5.7,0,17.1,77.1,0,0,0,82.9,17.1,52.5 +3.59375,3.59,a-pcom-i3,2019-20,Southbridge - Eastford Road,2770010,0,0,11.5,88.5,0,0,0,94.2,5.8,52.1 +13.40625,5,a-pcom-i3,2019-20,Southbridge - Southbridge Academy,2770525,14.3,0,28.6,57.1,0,0,0,61.9,38.1,21 +3.625,3.62,a-pcom-i3,2019-20,Southbridge - Southbridge High School,2770515,2.1,0,9.5,88.4,0,0,0,61.8,38.2,63 +3.625,3.62,a-pcom-i3,2019-20,Southbridge - Southbridge Middle School,2770315,2.5,1.5,7.6,88.4,0,0,0,71.4,28.6,66.2 +2.71875,2.72,a-pcom-i3,2019-20,Southbridge - West Street,2770020,0,0,8.7,91.3,0,0,0,88.6,11.4,45.7 +4.65625,4.66,a-pcom-i3,2019-20,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,8.1,2.1,4.2,85.1,0,0,0.5,59.7,40.3,191.8 +2.1875,2.19,a-pcom-i3,2019-20,Southern Berkshire - Mt Everett Regional,7650505,2.7,1.4,1.5,93,0,0,1.4,64.4,35.6,72.9 +2.9375,2.94,a-pcom-i3,2019-20,Southern Berkshire - New Marlborough Central,7650018,0,0,1.6,90.6,7.9,0,0,80.3,19.7,12.7 +1.1875,1.19,a-pcom-i3,2019-20,Southern Berkshire - South Egremont,7650030,0,0,3.8,96.2,0,0,0,92.3,7.7,2.6 +1.1875,1.19,a-pcom-i3,2019-20,Southern Berkshire - Undermountain,7650035,0,0.9,2.8,96.2,0,0,0,95.5,4.5,53 +1,1,a-pcom-i3,2019-20,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,1.2,98.1,0,0,0.6,57.1,42.9,161 +1,1,a-pcom-i3,2019-20,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,1.7,98.3,0,0,0,92.1,7.9,60.2 +1.46875,1.47,a-pcom-i3,2019-20,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,2.8,95.3,0,0,1.9,71.3,28.7,105.5 +1,1,a-pcom-i3,2019-20,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,0,0,0,100,0,0,0,96.4,3.6,64.8 +1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - David Prouty High,7670505,0,0,2.2,97.8,0,0,0,59.5,40.5,45.6 +1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - East Brookfield Elementary,7670008,0,0,1.1,98.9,0,0,0,92.9,7.1,45.7 +1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,1.9,98.1,0,0,0,73.9,26.1,52.1 +1,1,a-pcom-i3,2019-20,Spencer-E Brookfield - Wire Village School,7670040,1.4,0,0.7,97.8,0,0,0,89,11,69.2 +9.5625,5,a-pcom-i3,2019-20,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,4.1,0,26.5,69.4,0,0,0,89.8,10.2,49 +7.0625,5,a-pcom-i3,2019-20,Springfield - Alice B Beal Elementary,2810175,12.9,3.2,6.5,77.4,0,0,0,87.1,12.9,31 +5.0625,5,a-pcom-i3,2019-20,Springfield - Arthur T Talmadge,2810165,8.1,0,8.1,83.8,0,0,0,94.6,5.4,37 +7.375,5,a-pcom-i3,2019-20,Springfield - Balliet Middle School,2810360,12.1,0,11.4,76.4,0,0,0,72.2,27.8,17.5 +7.8125,5,a-pcom-i3,2019-20,Springfield - Brightwood,2810025,2.3,0,22.7,75,0,0,0,77.3,22.7,44 +8.96875,5,a-pcom-i3,2019-20,Springfield - Chestnut Academy,2810365,17.2,0,11.5,71.3,0,0,0,56.3,43.7,43.5 +17.8125,5,a-pcom-i3,2019-20,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,32.7,3.7,20.6,43,0,0,0,75.7,24.3,53.5 +14.96875,5,a-pcom-i3,2019-20,Springfield - Conservatory of the Arts,2810475,19.1,0,28.7,52.1,0,0,0,68.1,31.9,47 +3.53125,3.53,a-pcom-i3,2019-20,Springfield - Daniel B Brunton,2810035,3.8,0,7.5,88.7,0,0,0,94.3,5.7,53 +11.28125,5,a-pcom-i3,2019-20,Springfield - Early Childhood Education Center,2810001,24.1,0,12,63.9,0,0,0,97.6,2.4,41.5 +10.40625,5,a-pcom-i3,2019-20,Springfield - Edward P. Boland School,2810010,11.1,0.9,20.4,66.7,0,0,0.9,87,12,108 +12.15625,5,a-pcom-i3,2019-20,Springfield - Elias Brookings,2810030,22.2,3.7,13,61.1,0,0,0,94.4,5.6,54 +5.21875,5,a-pcom-i3,2019-20,Springfield - Forest Park Middle,2810325,6,2.4,8.3,83.3,0,0,0,71.4,28.6,84 +17.4375,5,a-pcom-i3,2019-20,Springfield - Frank H Freedman,2810075,44.2,0,11.6,44.2,0,0,0,83.7,16.3,43 +8,5,a-pcom-i3,2019-20,Springfield - Frederick Harris,2810080,6.1,1.2,18.3,74.4,0,0,0,93.9,6.1,82 +31.25,5,a-pcom-i3,2019-20,Springfield - Gateway to College at Holyoke Community College,2810575,54.2,0,45.8,0,0,0,0,100,0,0.7 +11.1875,5,a-pcom-i3,2019-20,Springfield - Gateway to College at Springfield Technical Community College,2810580,35.8,0,0,64.2,0,0,0,100,0,1.1 +12.25,5,a-pcom-i3,2019-20,Springfield - German Gerena Community School,2810195,3.9,0,35.3,60.8,0,0,0,93.1,6.9,102 +4.125,4.13,a-pcom-i3,2019-20,Springfield - Glenwood,2810065,2.6,0,10.5,86.8,0,0,0,97.4,2.6,38 +9.25,5,a-pcom-i3,2019-20,Springfield - Glickman Elementary,2810068,5.5,0,24,70.4,0,0,0,90.8,9.2,54.1 +14.03125,5,a-pcom-i3,2019-20,Springfield - High School Of Commerce,2810510,21.3,2.9,20,55.1,0,0,0.6,66,34,154.7 +6.0625,5,a-pcom-i3,2019-20,Springfield - Hiram L Dorman,2810050,13.9,0,5.6,80.6,0,0,0,91.7,8.3,36 +6.125,5,a-pcom-i3,2019-20,Springfield - Homer Street,2810085,11.8,0,7.8,80.4,0,0,0,88.2,11.8,51 +19.59375,5,a-pcom-i3,2019-20,Springfield - Impact Prep at Chestnut,2810366,27.5,0,27.5,37.3,0,0,7.8,66.7,33.3,51 +4.75,4.75,a-pcom-i3,2019-20,Springfield - Indian Orchard Elementary,2810100,3.8,0,11.4,84.8,0,0,0,93.7,6.3,79 +13.625,5,a-pcom-i3,2019-20,Springfield - John F Kennedy Middle,2810328,28.6,1.4,13.6,56.4,0,0,0,69.3,30.7,70 +12.96875,5,a-pcom-i3,2019-20,Springfield - John J Duggan Middle,2810320,29.5,1,11.1,58.5,0,0,0,69.6,30.4,103.5 +4,4,a-pcom-i3,2019-20,Springfield - Kensington International School,2810110,5.1,0,7.7,87.2,0,0,0,89.7,10.3,39 +10.03125,5,a-pcom-i3,2019-20,Springfield - Liberty,2810115,21.4,0,10.7,67.9,0,0,0,94.7,5.3,37.4 +8.5,5,a-pcom-i3,2019-20,Springfield - Liberty Preparatory Academy,2810560,27.2,0,0,72.8,0,0,0,59.3,40.7,7.8 +9.40625,5,a-pcom-i3,2019-20,Springfield - Lincoln,2810120,12.9,0,17.2,69.9,0,0,0,89.2,10.8,46.5 +12.90625,5,a-pcom-i3,2019-20,Springfield - M Marcus Kiley Middle,2810330,27.2,0,14.1,58.7,0,0,0,76.1,23.9,92 +12.03125,5,a-pcom-i3,2019-20,Springfield - Margaret C Ells,2810060,20.5,0,17.9,61.5,0,0,0,94.9,5.1,39 +5.9375,5,a-pcom-i3,2019-20,Springfield - Mary A. Dryden Veterans Memorial School,2810125,9.5,0,9.5,81,0,0,0,95.2,4.8,42 +10.09375,5,a-pcom-i3,2019-20,Springfield - Mary M Lynch,2810140,19.4,0,12.9,67.7,0,0,0,93.5,6.5,31 +6.25,5,a-pcom-i3,2019-20,Springfield - Mary M Walsh,2810155,6.7,2.2,11.1,80,0,0,0,88.9,11.1,45 +7.5,5,a-pcom-i3,2019-20,Springfield - Mary O Pottenger,2810145,10,0,14,76,0,0,0,96,4,50 +8.75,5,a-pcom-i3,2019-20,Springfield - Milton Bradley School,2810023,6.7,0,21.3,72,0,0,0,92,8,75 +16.59375,5,a-pcom-i3,2019-20,Springfield - Rebecca M Johnson,2810055,34,0,18.2,46.9,0,1,0,88,12,104.5 +11.375,5,a-pcom-i3,2019-20,Springfield - Rise Academy at Van Sickle,2810480,22.7,0,13.6,63.6,0,0,0,72.7,27.3,44 +9.28125,5,a-pcom-i3,2019-20,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,11.1,2.7,15.4,70.3,0,0,0.5,52.2,47.8,185 +11.46875,5,a-pcom-i3,2019-20,Springfield - STEM Middle Academy,2810350,20,0,16.7,63.3,0,0,0,66.7,33.3,30 +7.59375,5,a-pcom-i3,2019-20,Springfield - Samuel Bowles,2810020,8.1,2.7,13.5,75.7,0,0,0,83.8,16.2,37 +13.75,5,a-pcom-i3,2019-20,Springfield - South End Middle School,2810355,14.7,0,29.3,56,0,0,0,85,15,34.1 +8.25,5,a-pcom-i3,2019-20,Springfield - Springfield Central High,2810500,12.7,2.2,10.1,73.6,0,0,1.3,54.9,45.1,227.5 +13.46875,5,a-pcom-i3,2019-20,Springfield - Springfield High School,2810570,23.4,0,19.7,56.9,0,0,0,62.8,37.2,30.5 +10.71875,5,a-pcom-i3,2019-20,Springfield - Springfield High School of Science and Technology,2810530,14.5,1.8,16.2,65.7,0,0,1.8,60.7,39.3,165.1 +6.25,5,a-pcom-i3,2019-20,Springfield - Springfield International Academy at Johnson,2810215,20,0,0,80,0,0,0,80,20,2.5 +7.96875,5,a-pcom-i3,2019-20,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,25.5,74.5,0,0,0,80.4,19.6,4.6 +13.3125,5,a-pcom-i3,2019-20,Springfield - Springfield Public Day Elementary School,2810005,23.4,0,19.1,57.4,0,0,0,96.2,3.8,26.1 +17.25,5,a-pcom-i3,2019-20,Springfield - Springfield Public Day High School,2810550,30,0,25.2,44.8,0,0,0,66.7,33.3,30.4 +8.46875,5,a-pcom-i3,2019-20,Springfield - Springfield Public Day Middle School,2810345,18.2,0,8.8,72.9,0,0,0,64.6,35.4,22.6 +9.09375,5,a-pcom-i3,2019-20,Springfield - Springfield Vocational Academy,2810675,12,0,17.1,70.9,0,0,0,62.9,37.1,12.5 +7.625,5,a-pcom-i3,2019-20,Springfield - Sumner Avenue,2810160,12.2,1.2,11,75.6,0,0,0,89,11,82 +8.8125,5,a-pcom-i3,2019-20,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,14.1,1.2,10.6,71.8,0,1.2,1.2,80.6,19.4,85 +9.5,5,a-pcom-i3,2019-20,Springfield - Thomas M Balliet,2810015,15.2,0,15.2,69.6,0,0,0,87.3,12.7,39.5 +10.15625,5,a-pcom-i3,2019-20,Springfield - Van Sickle Academy,2810485,7.8,0,24.7,67.5,0,0,0,76.6,23.4,38.5 +6.75,5,a-pcom-i3,2019-20,Springfield - Warner,2810180,16.2,0,5.4,78.4,0,0,0,89.2,10.8,37 +5.125,5,a-pcom-i3,2019-20,Springfield - Washington,2810185,6.6,0,9.8,83.6,0,0,0,95.1,4.9,61 +4.8125,4.81,a-pcom-i3,2019-20,Springfield - White Street,2810190,3.8,0,11.5,84.6,0,0,0,98.1,1.9,52 +11.40625,5,a-pcom-i3,2019-20,Springfield - William N. DeBerry,2810045,14.1,0,22.4,63.5,0,0,0,95.3,4.7,42.5 +10.09375,5,a-pcom-i3,2019-20,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,13.6,0,16.4,67.7,0,2.3,0,93.5,6.5,42.8 +1,1,a-pcom-i3,2019-20,Stoneham - Colonial Park,2840005,0,1.9,0,98.1,0,0,0,94.7,5.3,52 +1,1,a-pcom-i3,2019-20,Stoneham - Robin Hood,2840025,0,1,0,99,0,0,0,92.3,7.7,51.7 +1,1,a-pcom-i3,2019-20,Stoneham - South,2840030,0,1,0,99,0,0,0,92,8,49.9 +1.1875,1.19,a-pcom-i3,2019-20,Stoneham - Stoneham Central Middle School,2840405,0.9,0.9,0.9,96.2,0,0,0.9,64,36,105.5 +1,1,a-pcom-i3,2019-20,Stoneham - Stoneham High,2840505,0,1.1,0,98.9,0,0,0,80.9,19.1,94.3 +1.625,1.63,a-pcom-i3,2019-20,Stoughton - Edwin A Jones Early Childhood Center,2850012,3.5,0,1.7,94.8,0,0,0,98.3,1.7,23 +1,1,a-pcom-i3,2019-20,Stoughton - Helen Hansen Elementary,2850010,2.4,0,0,97.6,0,0,0,85.5,14.5,36.8 +1,1,a-pcom-i3,2019-20,Stoughton - Joseph H Gibbons,2850025,0,2,0,98,0,0,0,90.9,9.1,44.6 +1.28125,1.28,a-pcom-i3,2019-20,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,2,0,95.9,0,0,2,87.8,12.2,49.1 +1.71875,1.72,a-pcom-i3,2019-20,Stoughton - O'Donnell Middle School,2850405,3.3,1.7,0.5,94.5,0,0,0,82.7,17.3,101.1 +1.625,1.63,a-pcom-i3,2019-20,Stoughton - Richard L. Wilkins Elementary School,2850020,0,0.8,2.2,94.8,0,0,2.2,94.8,5.2,45.6 +1,1,a-pcom-i3,2019-20,Stoughton - South Elementary,2850015,0,0,0,100,0,0,0,92.4,7.6,29.3 +1.40625,1.41,a-pcom-i3,2019-20,Stoughton - Stoughton High,2850505,1.1,1,0.7,95.5,0.8,0.8,0.2,69.4,30.6,129.3 +1,1,a-pcom-i3,2019-20,Sturbridge - Burgess Elementary,2870005,0,0,0,100,0,0,0,93.2,6.8,131.6 +1.4375,1.44,a-pcom-i3,2019-20,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0.7,0.7,3.2,95.4,0,0,0,68.6,31.4,142 +2.4375,2.44,a-pcom-i3,2019-20,Sudbury - Ephraim Curtis Middle,2880305,1.7,0.8,3.7,92.2,0,0,1.5,72.8,27.2,117.9 +1,1,a-pcom-i3,2019-20,Sudbury - General John Nixon Elementary,2880025,2,0,0,98,0,0,0,91.9,8.1,50.6 +3.28125,3.28,a-pcom-i3,2019-20,Sudbury - Israel Loring School,2880015,2.6,1.7,3.1,89.5,0,0,3.1,92.9,7.1,58.1 +2,2,a-pcom-i3,2019-20,Sudbury - Josiah Haynes,2880010,0,0.8,5.6,93.6,0,0,0,93.6,6.4,64 +2.0625,2.06,a-pcom-i3,2019-20,Sudbury - Peter Noyes,2880030,0,1.2,3,93.4,0,0,2.4,93.8,6.2,83 +1.78125,1.78,a-pcom-i3,2019-20,Sunderland - Sunderland Elementary,2890005,0,3.8,1.9,94.3,0,0,0,90.6,9.4,53 +1,1,a-pcom-i3,2019-20,Sutton - Sutton Early Learning,2900003,0,0,0,100,0,0,0,99.3,0.7,56.2 +1,1,a-pcom-i3,2019-20,Sutton - Sutton Elementary,2900005,0,0,0,100,0,0,0,93,7,51.2 +1,1,a-pcom-i3,2019-20,Sutton - Sutton High School,2900510,1.7,0,0,98.3,0,0,0,62.2,37.8,57.6 +1,1,a-pcom-i3,2019-20,Sutton - Sutton Middle School,2900305,0,0,0,100,0,0,0,74.1,25.9,45.3 +1,1,a-pcom-i3,2019-20,Swampscott - Clarke,2910005,0,0,2.7,97.3,0,0,0,91.2,8.8,36.8 +1,1,a-pcom-i3,2019-20,Swampscott - Hadley,2910010,0,0,2.2,97.8,0,0,0,92,8,44.9 +1.40625,1.41,a-pcom-i3,2019-20,Swampscott - Stanley,2910020,0,0,0,95.5,0,0,4.5,84.3,15.7,44.6 +1.625,1.63,a-pcom-i3,2019-20,Swampscott - Swampscott High,2910505,1.1,0.7,3.4,94.8,0,0,0,69.8,30.2,87.7 +1,1,a-pcom-i3,2019-20,Swampscott - Swampscott Middle,2910305,0.9,0,0.9,97.2,0,0,0.9,88.6,11.4,106.5 +1,1,a-pcom-i3,2019-20,Swansea - Elizabeth S Brown,2920006,0,0,0,100,0,0,0,93.4,6.6,28.3 +1,1,a-pcom-i3,2019-20,Swansea - Gardner,2920015,0,0,0,100,0,0,0,90.5,9.5,23.7 +1,1,a-pcom-i3,2019-20,Swansea - Joseph Case High,2920505,0,1.5,0,98.5,0,0,0,46.8,53.2,65.6 +1,1,a-pcom-i3,2019-20,Swansea - Joseph Case Jr High,2920305,0,0,1.8,98.2,0,0,0,66.9,33.1,54.6 +1,1,a-pcom-i3,2019-20,Swansea - Joseph G Luther,2920020,0,0,0,100,0,0,0,86,14,25.1 +1,1,a-pcom-i3,2019-20,Swansea - Mark G Hoyle Elementary,2920017,3,0,0,97,0,0,0,91.4,8.6,33.2 +3.28125,3.28,a-pcom-i3,2019-20,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,0.8,5.6,4,89.5,0,0,0,70.5,29.5,123.8 +1,1,a-pcom-i3,2019-20,Tantasqua - Tantasqua Regional Jr High,7700405,1.1,0,0,98.9,0,0,0,76.8,21.8,71.1 +1,1,a-pcom-i3,2019-20,Tantasqua - Tantasqua Regional Sr High,7700505,0.9,0,0.8,97.5,0,0,0.8,64.1,35.9,125.1 +1.6875,1.69,a-pcom-i3,2019-20,Tantasqua - Tantasqua Regional Vocational,7700605,5.4,0,0,94.6,0,0,0,33.3,66.7,16 +1,1,a-pcom-i3,2019-20,Taunton - Benjamin Friedman Middle,2930315,0,0,0,100,0,0,0,80.4,19.6,82.1 +1,1,a-pcom-i3,2019-20,Taunton - East Taunton Elementary,2930010,1.2,0,1.2,97.7,0,0,0,91.6,8.4,86.6 +1,1,a-pcom-i3,2019-20,Taunton - Edmund Hatch Bennett,2930007,0,0,0,100,0,0,0,96.3,3.7,36.5 +1.75,1.75,a-pcom-i3,2019-20,Taunton - Edward F. Leddy Preschool,2930005,2.8,0,2.8,94.4,0,0,0,100,0,35.6 +1,1,a-pcom-i3,2019-20,Taunton - Elizabeth Pole,2930027,0,0,2.2,97.8,0,0,0,92.7,7.3,68 +1.53125,1.53,a-pcom-i3,2019-20,Taunton - H H Galligan,2930057,0,0,4.9,95.1,0,0,0,98.7,1.3,41 +2.46875,2.47,a-pcom-i3,2019-20,Taunton - Hopewell,2930035,5.3,0,2.6,92.1,0,0,0,88.5,11.5,38.1 +2.15625,2.16,a-pcom-i3,2019-20,Taunton - John F Parker Middle,2930305,3.4,0,3.4,93.1,0,0,0,74.6,25.4,58.3 +1,1,a-pcom-i3,2019-20,Taunton - Joseph C Chamberlain,2930008,0,3.1,0,96.9,0,0,0,97.6,2.4,63.7 +1.34375,1.34,a-pcom-i3,2019-20,Taunton - Joseph H Martin,2930042,4.3,0,0,95.7,0,0,0,82.8,17.2,70.1 +1.03125,1.03,a-pcom-i3,2019-20,Taunton - Mulcahey Elementary School,2930015,0,0,3.3,96.7,0,0,0,94.9,5.1,60.2 +1,1,a-pcom-i3,2019-20,Taunton - Taunton Alternative High School,2930525,0,0,0,100,0,0,0,55.1,44.9,11.7 +2.0625,2.06,a-pcom-i3,2019-20,Taunton - Taunton High,2930505,3.4,0.4,2.4,93.4,0,0,0.4,65.4,34.6,248.2 +2.90625,2.91,a-pcom-i3,2019-20,Tewksbury - Heath-Brook,2950010,0,7,2.3,90.7,0,0,0,98.8,1.2,43.1 +1.125,1.12,a-pcom-i3,2019-20,Tewksbury - John F. Ryan,2950023,2.9,0.7,0,96.4,0,0,0,89.3,10.7,69.9 +1,1,a-pcom-i3,2019-20,Tewksbury - John W. Wynn Middle,2950305,0,3.1,0,96.9,0,0,0,76.3,23.7,65.3 +1.125,1.12,a-pcom-i3,2019-20,Tewksbury - L F Dewing,2950001,1.2,1.2,1.2,96.4,0,0,0,97,3,83 +1.03125,1.03,a-pcom-i3,2019-20,Tewksbury - Louise Davy Trahan,2950025,0,0,3.3,96.7,0,0,0,91.8,8.2,30.6 +1.84375,1.84,a-pcom-i3,2019-20,Tewksbury - North Street,2950020,0,1.2,4.7,94.1,0,0,0,96.5,3.5,42.6 +1.09375,1.09,a-pcom-i3,2019-20,Tewksbury - Tewksbury Memorial High,2950505,0,1.8,1.8,96.5,0,0,0,63.1,36.9,113.9 +2.4375,2.44,a-pcom-i3,2019-20,Tisbury - Tisbury Elementary,2960005,1.8,0,4.6,92.2,0,0,1.4,85.5,14.5,72.5 +1,1,a-pcom-i3,2019-20,Topsfield - Proctor Elementary,2980005,0,0,0,100,0,0,0,91.1,8.9,42 +1,1,a-pcom-i3,2019-20,Topsfield - Steward Elementary,2980010,0,0,3,97,0,0,0,96.8,3.2,60.5 +1,1,a-pcom-i3,2019-20,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0.8,0.8,0,98.5,0,0,0,62.1,37.9,131.4 +1,1,a-pcom-i3,2019-20,Triton - Newbury Elementary,7730020,0,0,0,100,0,0,0,87.4,12.6,79.5 +1,1,a-pcom-i3,2019-20,Triton - Pine Grove,7730025,0,1.6,0,98.4,0,0,0,88.5,11.5,61.1 +1,1,a-pcom-i3,2019-20,Triton - Salisbury Elementary,7730015,0,0,0,100,0,0,0,95.6,4.4,68.5 +1,1,a-pcom-i3,2019-20,Triton - Triton Regional High School,7730505,2.3,0,0,97.7,0,0,0,57.3,42.7,94.6 +1,1,a-pcom-i3,2019-20,Triton - Triton Regional Middle School,7730405,0,0,0,100,0,0,0,65.6,34.4,49.7 +1.0625,1.06,a-pcom-i3,2019-20,Truro - Truro Central,3000005,0,0,3.4,96.6,0,0,0,86.5,13.5,29.6 +1,1,a-pcom-i3,2019-20,Tyngsborough - Tyngsborough Elementary,3010020,0,1,0,99,0,0,0,90.9,9.1,99 +1,1,a-pcom-i3,2019-20,Tyngsborough - Tyngsborough High School,3010505,0,0,1.9,98.1,0,0,0,65.9,34.1,52.1 +1,1,a-pcom-i3,2019-20,Tyngsborough - Tyngsborough Middle,3010305,0,0,1.9,98.1,0,0,0,71.1,28.9,53.2 +10.71875,5,a-pcom-i3,2019-20,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,24.2,2,8.1,65.7,0,0,0,63.7,36.3,49.5 +12.5,5,a-pcom-i3,2019-20,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,29.3,0,10.7,60,0,0,0,82.7,17.3,75 +1,1,a-pcom-i3,2019-20,Up-Island Regional - Chilmark Elementary,7740010,0.3,0,0,99.7,0,0,0,97.9,2.1,11.1 +1.21875,1.22,a-pcom-i3,2019-20,Up-Island Regional - West Tisbury Elementary,7740020,0.4,0,2.2,96.1,0,0,1.3,84.3,15.7,75.2 +1,1,a-pcom-i3,2019-20,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,99.1,0.9,0,0,44.5,55.5,109.1 +31.25,5,a-pcom-i3,2019-20,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0 +1,1,a-pcom-i3,2019-20,Uxbridge - Taft Early Learning Center,3040005,0,0,0,100,0,0,0,95.1,4.9,82.1 +1,1,a-pcom-i3,2019-20,Uxbridge - Uxbridge High,3040505,0,0,0,100,0,0,0,72.1,27.9,78.9 +1,1,a-pcom-i3,2019-20,Uxbridge - Whitin Intermediate,3040405,0,0,0,100,0,0,0,85,15,60.2 +9.28125,5,a-pcom-i3,2019-20,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,18.6,1.9,9.3,70.3,0,0,0,81.4,18.6,53.8 +1,1,a-pcom-i3,2019-20,Wachusett - Central Tree Middle,7750310,0,0,0,100,0,0,0,78.1,21.9,52.5 +1,1,a-pcom-i3,2019-20,Wachusett - Chocksett Middle School,7750315,0,0,0,100,0,0,0,83.3,16.7,50.3 +1.0625,1.06,a-pcom-i3,2019-20,Wachusett - Davis Hill Elementary,7750018,0,0,3.4,96.6,0,0,0,86.3,13.7,58.3 +1,1,a-pcom-i3,2019-20,Wachusett - Dawson,7750020,0,0,0,100,0,0,0,92.8,7.2,55.6 +1,1,a-pcom-i3,2019-20,Wachusett - Early Childhood Center,7750001,2,0,0,98,0,0,0,98,2,50.4 +1,1,a-pcom-i3,2019-20,Wachusett - Glenwood Elementary School,7750060,0,0,0,100,0,0,0,88.5,11.5,56.7 +1,1,a-pcom-i3,2019-20,Wachusett - Houghton Elementary,7750027,1.5,0,0,98.5,0,0,0,97,3,67 +1,1,a-pcom-i3,2019-20,Wachusett - Leroy E.Mayo,7750032,0,0,0,100,0,0,0,94,6,49.8 +1,1,a-pcom-i3,2019-20,Wachusett - Mountview Middle,7750305,0,0,1.3,98.7,0,0,0,80,20,75.4 +1,1,a-pcom-i3,2019-20,Wachusett - Naquag Elementary School,7750005,0,0,0,100,0,0,0,96.9,3.1,47.7 +1,1,a-pcom-i3,2019-20,Wachusett - Paxton Center,7750040,0,0,0,100,0,0,0,84.7,15.3,52.3 +1,1,a-pcom-i3,2019-20,Wachusett - Thomas Prince,7750045,0,0,0,100,0,0,0,88.3,11.7,42.6 +1,1,a-pcom-i3,2019-20,Wachusett - Wachusett Regional High,7750505,0,0.4,0.4,99.1,0,0,0,70.8,29.2,229.2 +1,1,a-pcom-i3,2019-20,Wakefield - Dolbeare,3050005,0,1.5,0,96.9,1.5,0,0,89.8,10.2,65.5 +1.21875,1.22,a-pcom-i3,2019-20,Wakefield - Early Childhood Center at the Doyle School,3050001,0,3.9,0,96.1,0,0,0,100,0,25.7 +1,1,a-pcom-i3,2019-20,Wakefield - Galvin Middle School,3050310,0.8,0,0.8,98.4,0,0,0,75.1,24.9,122.8 +1.03125,1.03,a-pcom-i3,2019-20,Wakefield - Greenwood,3050020,0,3.3,0,96.7,0,0,0,92.3,7.7,29.9 +1,1,a-pcom-i3,2019-20,Wakefield - Wakefield Memorial High,3050505,0,0.9,0.9,98.3,0,0,0,64.6,35.4,114.8 +1.21875,1.22,a-pcom-i3,2019-20,Wakefield - Walton,3050040,3.9,0,0,96.1,0,0,0,97.3,2.7,25.7 +1.5625,1.56,a-pcom-i3,2019-20,Wakefield - Woodville School,3050015,0,0,3.4,95,0,0,1.7,94.5,5.5,59.6 +1,1,a-pcom-i3,2019-20,Wales - Wales Elementary,3060005,0,0,0,100,0,0,0,98.3,1.7,20.7 +1.0625,1.06,a-pcom-i3,2019-20,Walpole - Bird Middle,3070305,0,3.4,0,96.6,0,0,0,77.6,22.4,58.1 +1,1,a-pcom-i3,2019-20,Walpole - Boyden,3070010,0,0,0,100,0,0,0,95.7,4.3,53.1 +1.34375,1.34,a-pcom-i3,2019-20,Walpole - Daniel Feeney Preschool Center,3070002,0,0,4.3,95.7,0,0,0,94.4,5.6,18 +1,1,a-pcom-i3,2019-20,Walpole - Eleanor N Johnson Middle,3070310,0,0,1.7,98.3,0,0,0,77.9,22.1,58.9 +1,1,a-pcom-i3,2019-20,Walpole - Elm Street School,3070005,0,1,1,98,0,0,0,97.9,2.1,52.3 +1,1,a-pcom-i3,2019-20,Walpole - Fisher,3070015,0,0,0,100,0,0,0,94.7,5.3,56.4 +1,1,a-pcom-i3,2019-20,Walpole - Old Post Road,3070018,0,0,0,98,0,0,2,89.8,10.2,49.2 +1,1,a-pcom-i3,2019-20,Walpole - Walpole High,3070505,0,1.4,1.8,96.8,0,0,0,68.7,31.3,141.3 +1,1,a-pcom-i3,2019-20,Waltham - Douglas MacArthur Elementary School,3080032,0,0.2,0.7,99.1,0,0,0,91.7,8.3,58.8 +4.40625,4.41,a-pcom-i3,2019-20,Waltham - Henry Whittemore Elementary School,3080065,3.4,0,9,85.9,0,0,1.7,87.3,12.7,59.7 +1.125,1.12,a-pcom-i3,2019-20,Waltham - James Fitzgerald Elementary School,3080060,0,0,1.9,96.4,0,0,1.7,87.8,12.2,58.2 +3.28125,3.28,a-pcom-i3,2019-20,Waltham - John F Kennedy Middle,3080404,1.2,4.5,4.7,89.5,0,0,0,79.4,20.6,88.5 +3.125,3.13,a-pcom-i3,2019-20,Waltham - John W. McDevitt Middle School,3080415,1,0,7.1,90,0,0,2,66.7,33.3,101.9 +3.03125,3.03,a-pcom-i3,2019-20,Waltham - Northeast Elementary School,3080040,1.1,1.2,6.2,90.3,0,0,1.1,94.6,5.4,88.3 +1.53125,1.53,a-pcom-i3,2019-20,Waltham - Thomas R Plympton Elementary School,3080050,0,0.8,4.1,95.1,0,0,0,90.2,9.8,62.8 +16.1875,5,a-pcom-i3,2019-20,Waltham - Waltham Public Schools Dual Language Program,3080001,0,0.6,51.3,48.2,0,0,0,81.6,18.4,18 +3.9375,3.94,a-pcom-i3,2019-20,Waltham - Waltham Sr High,3080505,3.9,1.4,6.4,87.4,0,0.5,0.5,66.2,33.8,219.8 +1.90625,1.91,a-pcom-i3,2019-20,Waltham - William F. Stanley Elementary School,3080005,2,1.7,1.3,93.9,0,0,1.1,90.2,9.8,90.8 +1,1,a-pcom-i3,2019-20,Ware - Stanley M Koziol Elementary School,3090020,0,0,1.7,98.3,0,0,0,91.4,8.6,58.1 +2.0625,2.06,a-pcom-i3,2019-20,Ware - Ware Junior/Senior High School,3090505,1.4,0,5.2,93.4,0,0,0,72.4,27.6,73 +1,1,a-pcom-i3,2019-20,Ware - Ware Middle School,3090305,0,0,3,97,0,0,0,85.2,14.8,40.5 +1,1,a-pcom-i3,2019-20,Wareham - John William Decas,3100003,0,0,0.5,99.5,0,0,0,94.3,5.7,95.9 +1,1,a-pcom-i3,2019-20,Wareham - Minot Forest,3100017,0,0,0,97.1,0,0,2.9,93,7,51.5 +1,1,a-pcom-i3,2019-20,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,100,0,0,0,77.1,22.9,4 +1.40625,1.41,a-pcom-i3,2019-20,Wareham - Wareham Middle,3100305,1.5,0,0,95.5,0,0,3,86.4,13.6,66.2 +2.8125,2.81,a-pcom-i3,2019-20,Wareham - Wareham Senior High,3100505,3,1,0,91,0,0,5,67,33,99.9 +2.125,2.12,a-pcom-i3,2019-20,Watertown - Cunniff,3140015,0,2.9,3.9,93.2,0,0,0,90.3,9.7,51.5 +1,1,a-pcom-i3,2019-20,Watertown - Hosmer,3140020,0,1.2,0,97.9,0,0,0.8,88.5,11.5,121.6 +3.6875,3.69,a-pcom-i3,2019-20,Watertown - James Russell Lowell,3140025,4.4,1.5,5.9,88.2,0,0,0,88.2,11.8,67.6 +1.21875,1.22,a-pcom-i3,2019-20,Watertown - Watertown High,3140505,1,1,1,96.1,0,0,1,51.5,48.5,103.4 +1,1,a-pcom-i3,2019-20,Watertown - Watertown Middle,3140305,0,0,1.2,97.6,0,0,1.2,74.6,25.4,82.6 +1.65625,1.66,a-pcom-i3,2019-20,Wayland - Claypit Hill School,3150005,1.6,1.2,1.2,94.7,0,0,1.2,94.1,5.9,82.1 +3.09375,3.09,a-pcom-i3,2019-20,Wayland - Happy Hollow School,3150015,0.6,5.9,3.4,90.1,0,0,0,97.3,2.7,58.6 +3.21875,3.22,a-pcom-i3,2019-20,Wayland - Loker School,3150020,0.6,1.8,6.1,89.7,0,0,1.8,90,10,54.4 +1.71875,1.72,a-pcom-i3,2019-20,Wayland - Wayland High School,3150505,3.9,0.8,0.8,94.5,0,0,0,66.4,33.6,127.1 +3.28125,3.28,a-pcom-i3,2019-20,Wayland - Wayland Middle School,3150305,1.1,1.9,6.4,89.5,0,0,1.1,69.4,30.6,93.6 +2.59375,2.59,a-pcom-i3,2019-20,Webster - Bartlett High School,3160505,3.3,0,3.3,91.7,0,0,1.7,67.5,32.5,60 +1,1,a-pcom-i3,2019-20,Webster - Park Avenue Elementary,3160015,0,0,0,100,0,0,0,94.8,5.2,115.9 +1,1,a-pcom-i3,2019-20,Webster - Webster Middle School,3160315,0,0,0,100,0,0,0,74.7,25.3,69.2 +2.125,2.12,a-pcom-i3,2019-20,Wellesley - Ernest F Upham,3170050,0.3,1.8,4.7,93.2,0,0,0,90.2,9.8,55.3 +2.71875,2.72,a-pcom-i3,2019-20,Wellesley - Hunnewell,3170025,2,0,4.4,91.3,0,0,2.4,91.4,8.6,42.5 +1.71875,1.72,a-pcom-i3,2019-20,Wellesley - John D Hardy,3170020,0.4,2.6,2.6,94.5,0,0,0,95.3,4.7,38.8 +1,1,a-pcom-i3,2019-20,Wellesley - Joseph E Fiske,3170015,0.3,0,0,99.7,0,0,0,97.6,2.4,48.2 +2.96875,2.97,a-pcom-i3,2019-20,Wellesley - Katharine Lee Bates,3170005,2.7,0,4.3,90.5,0,0,2.4,99.7,0.3,41.6 +2.25,2.25,a-pcom-i3,2019-20,Wellesley - Preschool at Wellesley Schools,3170001,0,4.8,2.4,92.8,0,0,0,100,0,41.5 +1.875,1.88,a-pcom-i3,2019-20,Wellesley - Schofield,3170045,2.2,0,3.8,94,0,0,0,86.7,13.3,52.3 +2.25,2.25,a-pcom-i3,2019-20,Wellesley - Sprague Elementary School,3170048,2,1.7,0,92.8,0,0,3.5,94.5,5.5,57.4 +2.84375,2.84,a-pcom-i3,2019-20,Wellesley - Wellesley Middle,3170305,2,2.1,3.5,90.9,0,0,1.6,75.1,24.9,177.6 +3.125,3.13,a-pcom-i3,2019-20,Wellesley - Wellesley Sr High,3170505,3.1,3.1,1.8,90,0,0,2.1,64.8,35.2,228.6 +1,1,a-pcom-i3,2019-20,Wellfleet - Wellfleet Elementary,3180005,0,0,0,100,0,0,0,92.1,7.9,27.7 +1,1,a-pcom-i3,2019-20,West Boylston - Major Edwards Elementary,3220005,0,0,0,100,0,0,0,94.4,5.6,59.9 +1.875,1.88,a-pcom-i3,2019-20,West Boylston - West Boylston Junior/Senior High,3220505,1.8,1.4,2.8,94,0,0,0,65.1,34.9,71.1 +1,1,a-pcom-i3,2019-20,West Bridgewater - Howard School,3230305,0,0,0,100,0,0,0,86.5,13.5,29.6 +1,1,a-pcom-i3,2019-20,West Bridgewater - Rose L Macdonald,3230003,0,0,0,100,0,0,0,95.8,4.2,29.8 +1,1,a-pcom-i3,2019-20,West Bridgewater - Spring Street School,3230005,0,0,0,100,0,0,0,97.8,2.2,20.1 +1,1,a-pcom-i3,2019-20,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,96.8,0,0,3.2,70.9,29.1,62.1 +1.03125,1.03,a-pcom-i3,2019-20,West Springfield - Cowing Early Childhood,3320001,3.3,0,0,96.7,0,0,0,100,0,30.2 +1,1,a-pcom-i3,2019-20,West Springfield - John Ashley,3320005,0,0,0,100,0,0,0,93.5,6.5,49.2 +1.9375,1.94,a-pcom-i3,2019-20,West Springfield - John R Fausey,3320010,1.5,0,4.6,93.8,0,0,0,96.6,3.4,64.9 +1,1,a-pcom-i3,2019-20,West Springfield - Memorial,3320025,0,0,0,97,0,0,3,86.5,13.5,33.9 +1,1,a-pcom-i3,2019-20,West Springfield - Mittineague,3320030,0,0,0,100,0,0,0,93.1,6.9,22.8 +1.21875,1.22,a-pcom-i3,2019-20,West Springfield - Philip G Coburn,3320007,1.3,1.3,1.3,96.1,0,0,0,93.1,6.9,77.4 +1,1,a-pcom-i3,2019-20,West Springfield - Tatham,3320040,0,0,0,100,0,0,0,83.4,16.6,41.3 +1.96875,1.97,a-pcom-i3,2019-20,West Springfield - West Springfield High,3320505,0.6,0.6,4.4,93.7,0,0.6,0,70.4,29.6,159.4 +1,1,a-pcom-i3,2019-20,West Springfield - West Springfield Middle,3320305,0,0.9,1.7,97.4,0,0,0,71.5,28.5,115.3 +1,1,a-pcom-i3,2019-20,Westborough - Annie E Fales,3210010,0,1.7,0,96.9,0,0,1.4,96.7,3.3,57.5 +2.1875,2.19,a-pcom-i3,2019-20,Westborough - Elsie A Hastings Elementary,3210025,1.1,5.8,0,93,0,0,0,94.3,5.7,90.6 +1.46875,1.47,a-pcom-i3,2019-20,Westborough - J Harding Armstrong,3210005,1.6,3.1,0,95.3,0,0,0,98.4,1.6,64.3 +1,1,a-pcom-i3,2019-20,Westborough - Mill Pond School,3210045,0,1.7,0.8,97.5,0,0,0,87.3,12.7,119.2 +1.90625,1.91,a-pcom-i3,2019-20,Westborough - Sarah W Gibbons Middle,3210305,1.2,1.4,3.5,93.9,0,0,0,77.7,22.3,85.3 +1,1,a-pcom-i3,2019-20,Westborough - Westborough High,3210505,0,2.1,0,97.1,0,0.8,0,69.4,30.6,131.7 +1.21875,1.22,a-pcom-i3,2019-20,Westfield - Abner Gibbs,3250020,0,0,3.9,96.1,0,0,0,98.6,1.4,25.8 +3.5,3.5,a-pcom-i3,2019-20,Westfield - Fort Meadow Early Childhood Center,3250003,0,8.4,2.8,88.8,0,0,0,100,0,35.7 +1.21875,1.22,a-pcom-i3,2019-20,Westfield - Franklin Ave,3250015,0,0,0,96.1,0,0,3.9,96.1,3.9,25.9 +1.71875,1.72,a-pcom-i3,2019-20,Westfield - Highland,3250025,0,1.8,1.8,94.5,1.8,0,0,92.4,7.6,54.4 +2.5,2.5,a-pcom-i3,2019-20,Westfield - Munger Hill,3250033,4.8,0,3.2,92,0,0,0,91,9,62.8 +1.34375,1.34,a-pcom-i3,2019-20,Westfield - Paper Mill,3250036,0,0,2.1,95.7,0,0,2.1,96,4,46.6 +1,1,a-pcom-i3,2019-20,Westfield - Southampton Road,3250040,0,0,2.5,97.5,0,0,0,97.4,2.6,39.2 +1,1,a-pcom-i3,2019-20,Westfield - Westfield High,3250505,0,0.6,0.6,98.1,0.6,0,0,72.9,27.1,160.9 +1,1,a-pcom-i3,2019-20,Westfield - Westfield Intermediate School,3250075,1,1,1,97,0,0,0,85.1,14.9,101.2 +1,1,a-pcom-i3,2019-20,Westfield - Westfield Middle School,3250310,0,0,2,98,0,0,0,78,22,100.6 +1,1,a-pcom-i3,2019-20,Westfield - Westfield Technical Academy,3250605,1.1,0,0,98.9,0,0,0,50.3,49.7,90.7 +1,1,a-pcom-i3,2019-20,Westford - Abbot Elementary,3260004,0,0,0,100,0,0,0,97.1,2.9,48.9 +1.3125,1.31,a-pcom-i3,2019-20,Westford - Blanchard Middle,3260310,0,4.2,0,95.8,0,0,0,88.8,11.2,71.7 +1.5,1.5,a-pcom-i3,2019-20,Westford - Col John Robinson,3260025,0,2.4,2.4,95.2,0,0,0,97.6,2.4,41.4 +1,1,a-pcom-i3,2019-20,Westford - Day Elementary,3260007,0,0,2.2,97.8,0,0,0,90.5,9.5,46.1 +1,1,a-pcom-i3,2019-20,Westford - John A. Crisafulli Elementary School,3260045,0,0,1.8,98.2,0,0,0,97.8,2.2,54.7 +1,1,a-pcom-i3,2019-20,Westford - Millennium Elementary,3260013,0,0,0,100,0,0,0,93.5,6.5,15.5 +1,1,a-pcom-i3,2019-20,Westford - Nabnasset,3260015,0,2.2,0,97.8,0,0,0,97.8,2.2,46.4 +2.625,2.63,a-pcom-i3,2019-20,Westford - Rita E. Miller Elementary School,3260055,1.4,7,0,91.6,0,0,0,98.6,1.4,71.5 +1,1,a-pcom-i3,2019-20,Westford - Stony Brook School,3260330,1.2,0,1.2,97.5,0,0,0,82.8,17.2,81.3 +1.65625,1.66,a-pcom-i3,2019-20,Westford - Westford Academy,3260505,0,3.5,1.2,94.7,0,0,0.6,59.8,40.2,167.3 +1,1,a-pcom-i3,2019-20,Westhampton - Westhampton Elementary School,3270005,0,0,0,100,0,0,0,91.7,8.3,29 +2.3125,2.31,a-pcom-i3,2019-20,Weston - Country,3300010,1.9,1,3.2,92.6,0,0,1.3,79.9,18.5,79 +2.96875,2.97,a-pcom-i3,2019-20,Weston - Field Elementary School,3300012,2.4,4.8,2.4,90.5,0,0,0,86.3,13.7,41.9 +4.90625,4.91,a-pcom-i3,2019-20,Weston - Weston High,3300505,2.8,8,3.1,84.3,0,0.8,0.9,66.6,33.4,107.1 +3.9375,3.94,a-pcom-i3,2019-20,Weston - Weston Middle,3300305,3.7,4.8,2.9,87.4,0,0,1.2,71.6,28.4,81.1 +2.4375,2.44,a-pcom-i3,2019-20,Weston - Woodland,3300015,0,1.9,4.5,92.2,1.5,0,0,92.5,5.5,49.3 +1,1,a-pcom-i3,2019-20,Westport - Alice A Macomber,3310015,0,0,0,100,0,0,0,98.1,1.9,54 +1,1,a-pcom-i3,2019-20,Westport - Westport Elementary,3310030,0,0,0,100,0,0,0,92,8,68.9 +1,1,a-pcom-i3,2019-20,Westport - Westport Junior/Senior High School,3310515,0,1.2,0,98.8,0,0,0,68.1,31.9,84.2 +1,1,a-pcom-i3,2019-20,Westwood - Deerfield School,3350010,0,2.4,0,97.4,0,0,0.2,88.4,11.6,41.6 +2.34375,2.34,a-pcom-i3,2019-20,Westwood - Downey,3350012,1.6,1.6,1.6,92.5,0,0,2.7,98,2,63 +2.53125,2.53,a-pcom-i3,2019-20,Westwood - E W Thurston Middle,3350305,4.1,1,2,91.9,0,0,1,75.1,24.9,98.8 +1,1,a-pcom-i3,2019-20,Westwood - Martha Jones,3350017,0,1.3,0,98.7,0,0,0,90.3,9.7,37.6 +1,1,a-pcom-i3,2019-20,Westwood - Paul Hanlon,3350015,0,0,0,100,0,0,0,93.5,6.5,29.9 +3.0625,3.06,a-pcom-i3,2019-20,Westwood - Westwood High,3350505,2.1,2.1,4.9,90.2,0,0,0.7,68.9,31.1,141.6 +1,1,a-pcom-i3,2019-20,Westwood - Westwood Integrated Preschool,3350050,0,0,0,100,0,0,0,100,0,12.7 +1,1,a-pcom-i3,2019-20,Westwood - William E Sheehan,3350025,0,3,0,97,0,0,0,93.1,6.9,50.5 +1,1,a-pcom-i3,2019-20,Weymouth - Abigail Adams Middle School,3360310,0,0.9,0,99.1,0,0,0,75.1,24.9,115.5 +1,1,a-pcom-i3,2019-20,Weymouth - Academy Avenue,3360005,0,0,0,100,0,0,0,95.3,4.7,33.1 +1,1,a-pcom-i3,2019-20,Weymouth - Frederick C Murphy,3360050,0,0.7,2.5,96.8,0,0,0,92,8,40.3 +2.34375,2.34,a-pcom-i3,2019-20,Weymouth - Johnson Early Childhood Center,3360003,1.9,3.8,1.9,92.5,0,0,0,98.1,1.9,53.1 +1,1,a-pcom-i3,2019-20,Weymouth - Lawrence W Pingree,3360065,0,0,0,100,0,0,0,97.2,2.8,35.2 +1.5,1.5,a-pcom-i3,2019-20,Weymouth - Maria Weston Chapman Middle School,3360020,0.8,1.6,0.8,95.2,0.8,0,0.8,64.6,35.4,126.3 +1,1,a-pcom-i3,2019-20,Weymouth - Ralph Talbot,3360085,0,0,0,100,0,0,0,95.1,4.9,30.5 +1,1,a-pcom-i3,2019-20,Weymouth - Thomas V Nash,3360060,0,0,3.2,96.8,0,0,0,93.6,6.4,31 +1,1,a-pcom-i3,2019-20,Weymouth - Thomas W. Hamilton Primary School,3360105,0,0,0,100,0,0,0,91.5,8.5,35.5 +1,1,a-pcom-i3,2019-20,Weymouth - Wessagusset,3360110,0,0,0,100,0,0,0,89.1,10.9,45 +1,1,a-pcom-i3,2019-20,Weymouth - Weymouth High School,3360505,0.9,0.9,0.9,96.9,0,0,0.4,66.5,33.5,228.1 +1,1,a-pcom-i3,2019-20,Weymouth - William Seach,3360080,0,0,0,100,0,0,0,95.3,4.7,42.7 +1,1,a-pcom-i3,2019-20,Whately - Whately Elementary,3370005,0,0,0,100,0,0,0,97.3,2.7,29.2 +1.125,1.12,a-pcom-i3,2019-20,Whitman-Hanson - Hanson Middle School,7800315,1.7,0,1.9,96.4,0,0,0,80.1,19.9,57.5 +1,1,a-pcom-i3,2019-20,Whitman-Hanson - Indian Head,7800035,0,0,0.3,99.7,0,0,0,93.6,6.4,49.7 +1.15625,1.16,a-pcom-i3,2019-20,Whitman-Hanson - John H Duval,7800030,0,0,3.7,96.3,0,0,0,95.4,4.6,58.3 +1,1,a-pcom-i3,2019-20,Whitman-Hanson - Louise A Conley,7800010,1.6,0,0.3,98.1,0,0,0,91.5,8.5,54.6 +1,1,a-pcom-i3,2019-20,Whitman-Hanson - The Pre-School Academy at Whitman Hanson,7800001,0,0,0,100,0,0,0,100,0,11.3 +1,1,a-pcom-i3,2019-20,Whitman-Hanson - Whitman Hanson Regional,7800505,1,0,0.2,98.9,0,0,0,64.8,35.2,103.2 +1,1,a-pcom-i3,2019-20,Whitman-Hanson - Whitman Middle,7800310,0,0,2.1,97.9,0,0,0,70.2,29.8,56 +1,1,a-pcom-i3,2019-20,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,1.1,98.9,0,0,0,51.9,48.1,142.6 +1,1,a-pcom-i3,2019-20,Williamsburg - Anne T. Dunphy School,3400020,0,0,0,100,0,0,0,92,8,30 +1.0625,1.06,a-pcom-i3,2019-20,Wilmington - Boutwell,3420005,0,3.4,0,96.6,0,0,0,100,0,29.2 +1.0625,1.06,a-pcom-i3,2019-20,Wilmington - North Intermediate,3420060,0,3.4,0,96.6,0,0,0,98.3,1.7,29.4 +1,1,a-pcom-i3,2019-20,Wilmington - Shawsheen Elementary,3420025,0,0,0,100,0,0,0,95.6,4.4,45.6 +1,1,a-pcom-i3,2019-20,Wilmington - West Intermediate,3420080,0,3.2,0,96.8,0,0,0,96.8,3.2,31.6 +1,1,a-pcom-i3,2019-20,Wilmington - Wildwood,3420015,0,0,0,97.3,0,0,2.7,90.4,9.6,36.5 +1.59375,1.59,a-pcom-i3,2019-20,Wilmington - Wilmington High,3420505,0.5,1.9,1.9,94.9,0.9,0,0,72.9,27.1,107.5 +1,1,a-pcom-i3,2019-20,Wilmington - Wilmington Middle School,3420330,0.1,0,0,99.9,0,0,0,79.4,20.6,109 +1,1,a-pcom-i3,2019-20,Wilmington - Woburn Street,3420020,0,0,0,100,0,0,0,90.9,9.1,44.1 +1,1,a-pcom-i3,2019-20,Winchendon - Memorial,3430040,2.2,0,0,97.8,0,0,0,96.8,3.2,46.3 +1,1,a-pcom-i3,2019-20,Winchendon - Murdock Academy for Success,3430405,0,0,0,100,0,0,0,53.1,46.9,3.2 +1.53125,1.53,a-pcom-i3,2019-20,Winchendon - Murdock High School,3430515,2.4,0,0,95.1,0,2.4,0,75.6,24.4,41 +2.9375,2.94,a-pcom-i3,2019-20,Winchendon - Murdock Middle School,3430315,0,0,9.4,90.6,0,0,0,78.1,21.9,32 +1,1,a-pcom-i3,2019-20,Winchendon - Toy Town Elementary,3430050,0,0,0,100,0,0,0,90,10,35 +1,1,a-pcom-i3,2019-20,Winchendon - Winchendon PreSchool Program,3430010,0,0,0,100,0,0,0,100,0,10.2 +1,1,a-pcom-i3,2019-20,Winchester - Ambrose Elementary,3440045,2,0,0,98,0,0,0,94.1,5.9,49.8 +1,1,a-pcom-i3,2019-20,Winchester - Lincoln Elementary,3440005,0,0,0,100,0,0,0,92.6,7.4,47.5 +1.03125,1.03,a-pcom-i3,2019-20,Winchester - Lynch Elementary,3440020,0,2.2,1.1,96.7,0,0,0,95,3.9,90 +1.09375,1.09,a-pcom-i3,2019-20,Winchester - McCall Middle,3440305,0.8,1.1,1.6,96.5,0,0,0,79.4,20.6,126.1 +1,1,a-pcom-i3,2019-20,Winchester - Muraco Elementary,3440040,0,0,0,100,0,0,0,95.8,4.2,50.6 +1.15625,1.16,a-pcom-i3,2019-20,Winchester - Vinson-Owen Elementary,3440025,0,0,0,96.3,0,0,3.7,89.8,10.2,54 +1,1,a-pcom-i3,2019-20,Winchester - Winchester High School,3440505,0.7,0,0.7,98.6,0,0,0,62.5,37.5,147 +1,1,a-pcom-i3,2019-20,Winthrop - Arthur T. Cummings Elementary School,3460020,0,1.8,0,98.2,0,0,0,88.5,11.5,56.5 +1,1,a-pcom-i3,2019-20,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,0,0,0,100,0,0,0,92.7,7.3,82.5 +1,1,a-pcom-i3,2019-20,Winthrop - Winthrop High School,3460505,0,1.5,1.5,97,0,0,0,61.3,38.7,65.6 +1,1,a-pcom-i3,2019-20,Winthrop - Winthrop Middle School,3460305,0,1.8,0,98.2,0,0,0,70.7,29.3,54.7 +1,1,a-pcom-i3,2019-20,Woburn - Clyde Reeves,3470040,1.8,0,0,98.2,0,0,0,96.2,3.8,56.3 +1.34375,1.34,a-pcom-i3,2019-20,Woburn - Daniel L Joyce Middle School,3470410,0,1.2,3.1,95.7,0,0,0,78.3,21.7,81.1 +1,1,a-pcom-i3,2019-20,Woburn - Goodyear Elementary School,3470005,0,0,0,100,0,0,0,91.6,8.4,43 +1,1,a-pcom-i3,2019-20,Woburn - Hurld-Wyman Elementary School,3470020,0,0,0,100,0,0,0,98.2,1.8,33.2 +1,1,a-pcom-i3,2019-20,Woburn - John F Kennedy Middle School,3470405,0,0,2.3,97.7,0,0,0,73.4,26.6,64 +1,1,a-pcom-i3,2019-20,Woburn - Linscott-Rumford,3470025,0,0,0,100,0,0,0,95.8,4.2,26.7 +1,1,a-pcom-i3,2019-20,Woburn - Malcolm White,3470055,0,0,0,100,0,0,0,95.7,4.3,37.4 +1,1,a-pcom-i3,2019-20,Woburn - Mary D Altavesta,3470065,3.1,0,0,96.9,0,0,0,88.7,11.3,31.8 +1,1,a-pcom-i3,2019-20,Woburn - Shamrock,3470043,1.5,0,0,98.5,0,0,0,95.5,4.5,68.8 +1.78125,1.78,a-pcom-i3,2019-20,Woburn - Woburn High,3470505,0.6,1.9,3.1,94.3,0,0,0,64,36,159.1 +1.4375,1.44,a-pcom-i3,2019-20,Worcester - Belmont Street Community,3480020,0,0,4.6,95.4,0,0,0,89.4,10.6,65.8 +5.90625,5,a-pcom-i3,2019-20,Worcester - Burncoat Middle School,3480405,7.9,0,11,81.1,0,0,0,68.8,31.2,94.5 +3.84375,3.84,a-pcom-i3,2019-20,Worcester - Burncoat Senior High,3480503,5,0,7.4,87.7,0,0,0,59.9,40.1,141.4 +4.40625,4.41,a-pcom-i3,2019-20,Worcester - Burncoat Street,3480035,0,0,11.8,85.9,0,2.4,0,90.6,9.4,42.5 +2.375,2.37,a-pcom-i3,2019-20,Worcester - Canterbury,3480045,1.9,1.9,3.9,92.4,0,0,0,98.1,1.9,53.7 +3.84375,3.84,a-pcom-i3,2019-20,Worcester - Chandler Elementary Community,3480050,1.5,1.5,9.3,87.7,0,0,0,95.5,4.5,67 +9.1875,5,a-pcom-i3,2019-20,Worcester - Chandler Magnet,3480052,1,1,26.5,70.6,0,1,0,86.3,13.7,102.1 +2.625,2.63,a-pcom-i3,2019-20,Worcester - City View,3480053,1.7,0,6.8,91.6,0,0,0,89.2,10.8,60 +7.8125,5,a-pcom-i3,2019-20,Worcester - Claremont Academy,3480350,11.6,5,8.4,75,0,0,0,70.9,29.1,60.5 +5.71875,5,a-pcom-i3,2019-20,Worcester - Clark St Community,3480055,4.6,2.3,11.4,81.7,0,0,0,87.4,12.6,43.8 +1.84375,1.84,a-pcom-i3,2019-20,Worcester - Columbus Park,3480060,1.9,0,4,94.1,0,0,0,88.6,11.4,52.7 +2.5,2.5,a-pcom-i3,2019-20,Worcester - Doherty Memorial High,3480512,1.4,0,6.6,92,0,0,0,60.1,39.9,143.4 +5.5625,5,a-pcom-i3,2019-20,Worcester - Elm Park Community,3480095,5.2,0,10.8,82.2,0,1.7,0,87.8,12.2,57.2 +1,1,a-pcom-i3,2019-20,Worcester - Flagg Street,3480090,0,2.6,0.3,97,0,0,0,84.3,15.7,38.2 +4.5625,4.56,a-pcom-i3,2019-20,Worcester - Forest Grove Middle,3480415,6,0,8.6,85.4,0,0,0,74,26,117.5 +3.625,3.62,a-pcom-i3,2019-20,Worcester - Francis J McGrath Elementary,3480177,0,3.7,7.9,88.4,0,0,0,85,15,26.7 +3.5,3.5,a-pcom-i3,2019-20,Worcester - Gates Lane,3480110,3.7,1.9,5.7,88.8,0,0,0,94.4,5.6,107.7 +4.84375,4.84,a-pcom-i3,2019-20,Worcester - Goddard School/Science Technical,3480100,1.5,1.5,12.4,84.5,0,0,0,93.9,6.1,65.3 +5.3125,5,a-pcom-i3,2019-20,Worcester - Grafton Street,3480115,7,4,6,83,0,0,0,91,9,50.1 +9.0625,5,a-pcom-i3,2019-20,Worcester - Head Start,3480002,6.8,1.7,20.4,71,0,0,0,99.1,0.9,117.4 +5.625,5,a-pcom-i3,2019-20,Worcester - Heard Street,3480136,7.1,0,7.4,82,0,3.5,0,96.5,3.5,28.3 +2.6875,2.69,a-pcom-i3,2019-20,Worcester - Jacob Hiatt Magnet,3480140,0,6,2.6,91.4,0,0,0,95.2,4.8,41.6 +3.1875,3.19,a-pcom-i3,2019-20,Worcester - Lake View,3480145,3.4,3.4,3.4,89.8,0,0,0,89.8,10.2,29.4 +5.46875,5,a-pcom-i3,2019-20,Worcester - Lincoln Street,3480160,0,2.9,14.6,82.5,0,0,0,91.3,8.7,34.3 +2.875,2.88,a-pcom-i3,2019-20,Worcester - May Street,3480175,3.1,3.1,3.1,90.8,0,0,0,90.8,9.2,32.6 +5.5625,5,a-pcom-i3,2019-20,Worcester - Midland Street,3480185,4,4,9.9,82.2,0,0,0,100,0,25.2 +3,3,a-pcom-i3,2019-20,Worcester - Nelson Place,3480200,3.6,0,6,90.4,0,0,0,93.6,6.4,110 +5.15625,5,a-pcom-i3,2019-20,Worcester - Norrback Avenue,3480202,4.1,2.1,9.3,83.5,0,1,0,95.9,4.1,97.2 +8.53125,5,a-pcom-i3,2019-20,Worcester - North High,3480515,9,2.6,15.8,72.7,0,0,0,65.3,34.7,156 +6.53125,5,a-pcom-i3,2019-20,Worcester - Quinsigamond,3480210,2.2,6.2,12.5,79.1,0,0,0,88.8,11.2,89 +5.53125,5,a-pcom-i3,2019-20,Worcester - Rice Square,3480215,2,3.9,11.8,82.3,0,0,0,94.1,5.9,50.9 +5.09375,5,a-pcom-i3,2019-20,Worcester - Roosevelt,3480220,4.8,0,11.5,83.7,0,0,0,92.3,7.7,104.3 +5.40625,5,a-pcom-i3,2019-20,Worcester - South High Community,3480520,6.2,0.6,9.7,82.7,0,0.9,0,72.3,27.7,170.1 +5.8125,5,a-pcom-i3,2019-20,Worcester - Sullivan Middle,3480423,4,0.8,13.9,81.4,0,0,0,74.6,25.4,126 +1,1,a-pcom-i3,2019-20,Worcester - Tatnuck,3480230,0,0,0,100,0,0,0,95.3,4.7,42.2 +1,1,a-pcom-i3,2019-20,Worcester - Thorndyke Road,3480235,0,0,2.8,97.2,0,0,0,97.2,2.8,35.1 +4.15625,4.16,a-pcom-i3,2019-20,Worcester - Union Hill School,3480240,2.2,0,11.1,86.7,0,0,0,84.5,15.5,45.2 +6.28125,5,a-pcom-i3,2019-20,Worcester - University Pk Campus School,3480285,5.4,3.6,11.1,79.9,0,0,0,67.8,32.2,27.8 +4.96875,4.97,a-pcom-i3,2019-20,Worcester - Vernon Hill School,3480280,10.7,3.3,1.9,84.1,0,0,0,89.3,10.7,60.9 +2.09375,2.09,a-pcom-i3,2019-20,Worcester - Wawecus Road School,3480026,0,0,6.7,93.3,0,0,0,90,10,29.9 +3.125,3.13,a-pcom-i3,2019-20,Worcester - West Tatnuck,3480260,4.4,0,5.5,90,0,0,0,93.4,6.6,45.2 +4.71875,4.72,a-pcom-i3,2019-20,Worcester - Woodland Academy,3480030,1.7,3.3,10.1,84.9,0,0,0,96.7,3.3,60.3 +2.125,2.12,a-pcom-i3,2019-20,Worcester - Worcester Arts Magnet School,3480225,2.3,0,4.5,93.2,0,0,0,91,9,44.3 +7.9375,5,a-pcom-i3,2019-20,Worcester - Worcester East Middle,3480420,7.2,4.7,13.5,74.6,0,0,0,59.6,40.4,96.6 +1.90625,1.91,a-pcom-i3,2019-20,Worcester - Worcester Technical High,3480605,2,0.5,3.6,93.9,0,0,0,48,52,196.6 +1,1,a-pcom-i3,2019-20,Worthington - R. H. Conwell,3490010,0,0,0,100,0,0,0,86.5,13.5,14.8 +1,1,a-pcom-i3,2019-20,Wrentham - Charles E Roderick,3500010,0,0.3,0,99.7,0,0,0,94.7,5.3,61.7 +1,1,a-pcom-i3,2019-20,Wrentham - Delaney,3500003,0,2,0.7,97.3,0,0,0,94.9,5.1,90.2 +2.375,2.37,a-pcom-i3,2018-19,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,3.7,0.9,1.8,92.4,0,0,1.2,79.2,20.8,163 +1,1,a-pcom-i3,2018-19,Abington - Abington Early Education Program,10001,0,0,0,100,0,0,0,100,0,16 +1.34375,1.34,a-pcom-i3,2018-19,Abington - Abington High,10505,0,1.1,1.6,95.7,0,0,1.6,72.5,27.5,62.4 +2.34375,2.34,a-pcom-i3,2018-19,Abington - Abington Middle School,10405,2.7,0,4.8,92.5,0,0,0,77.3,22.7,73.7 +1,1,a-pcom-i3,2018-19,Abington - Beaver Brook Elementary,10020,0,0,1.7,98.3,0,0,0,99.3,0.7,57.7 +1,1,a-pcom-i3,2018-19,Abington - Woodsdale Elementary School,10015,0,0,0,100,0,0,0,88.8,11.2,39.4 +14.6875,5,a-pcom-i3,2018-19,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,21.8,6.1,11.6,53,0,0,7.5,68.7,31.3,68.9 +1.21875,1.22,a-pcom-i3,2018-19,Acton-Boxborough - Acton-Boxborough Regional High,6000505,0.5,2.4,0.5,96.1,0.5,0,0,76.1,23.9,195 +1.28125,1.28,a-pcom-i3,2018-19,Acton-Boxborough - Blanchard Memorial School,6000005,1.3,2.8,0,95.9,0,0,0,91.4,8.6,79.3 +1,1,a-pcom-i3,2018-19,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,0.9,0,99.1,0,0,0,92.4,7.6,52.4 +2.0625,2.06,a-pcom-i3,2018-19,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,0,6.6,0,93.4,0,0,0,96.7,3.3,30.3 +2.5625,2.56,a-pcom-i3,2018-19,Acton-Boxborough - Luther Conant School,6000030,0,7.4,0.9,91.8,0,0,0,97.1,2.9,69.4 +2,2,a-pcom-i3,2018-19,Acton-Boxborough - McCarthy-Towne School,6000015,0,5.5,0.9,93.6,0,0,0,94.3,5.7,69.7 +1.6875,1.69,a-pcom-i3,2018-19,Acton-Boxborough - Merriam School,6000010,0,2.8,1.3,94.6,0,1.3,0,94.6,5.4,74.8 +1.21875,1.22,a-pcom-i3,2018-19,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,3.9,0,96.1,0,0,0,94.7,5.3,54.2 +1.46875,1.47,a-pcom-i3,2018-19,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,2.8,0.9,95.3,0,0,0.9,78.4,21.6,107.2 +1,1,a-pcom-i3,2018-19,Acushnet - Acushnet Elementary School,30025,3,0,0,97,0,0,0,94.1,5.9,67.5 +1,1,a-pcom-i3,2018-19,Acushnet - Albert F Ford Middle School,30305,1.7,0,0,98.3,0,0,0,75.6,24.4,57.5 +1,1,a-pcom-i3,2018-19,Adams-Cheshire - Hoosac Valley Elementary School,6030020,0,0,0,100,0,0,0,93.4,6.6,81 +1.03125,1.03,a-pcom-i3,2018-19,Adams-Cheshire - Hoosac Valley High School,6030505,0,0,1.6,96.7,0,0,1.7,73.8,26.2,57.3 +1,1,a-pcom-i3,2018-19,Adams-Cheshire - Hoosac Valley Middle School,6030315,0,0,0,99.6,0,0,0.4,75.6,24.4,65.2 +2.53125,2.53,a-pcom-i3,2018-19,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,4.7,1.7,91.9,0,0,1.7,61.7,38.3,117.9 +1,1,a-pcom-i3,2018-19,Agawam - Agawam Early Childhood Center,50003,0,0,2.3,97.7,0,0,0,99.7,0.3,44.3 +1,1,a-pcom-i3,2018-19,Agawam - Agawam High,50505,1.3,0,0.6,98.1,0,0,0,69,31,163.5 +1,1,a-pcom-i3,2018-19,Agawam - Agawam Junior High,50405,2.4,0,0,97.6,0,0,0,71.7,28.3,90.5 +1,1,a-pcom-i3,2018-19,Agawam - Benjamin J Phelps,50020,0.2,0,0,99.8,0,0,0,90,10,60.9 +1,1,a-pcom-i3,2018-19,Agawam - Clifford M Granger,50010,0.3,0,1.8,97.9,0,0,0,98.3,1.7,54.2 +1,1,a-pcom-i3,2018-19,Agawam - James Clark School,50030,0.3,0,0,99.7,0,0,0,97.2,2.8,59 +1,1,a-pcom-i3,2018-19,Agawam - Roberta G. Doering School,50303,0.2,0,2.4,97.4,0,0,0,84.2,15.8,83.1 +1,1,a-pcom-i3,2018-19,Agawam - Robinson Park,50025,0.2,0,0,99.8,0,0,0,95.8,4.2,62.9 +6.25,5,a-pcom-i3,2018-19,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,5,1.7,13.3,80,0,0,0,73.3,26.7,60 +1,1,a-pcom-i3,2018-19,Amesbury - Amesbury Elementary,70005,0,0,0,100,0,0,0,95.8,4.2,60 +1,1,a-pcom-i3,2018-19,Amesbury - Amesbury High,70505,0,0,0,98.6,0,0,1.4,71.4,28.6,72.6 +1,1,a-pcom-i3,2018-19,Amesbury - Amesbury Innovation High School,70515,0,0,0,100,0,0,0,38.4,61.6,10.3 +1,1,a-pcom-i3,2018-19,Amesbury - Amesbury Middle,70013,0,0,2.4,97.6,0,0,0,73.5,26.5,84.5 +1,1,a-pcom-i3,2018-19,Amesbury - Charles C Cashman Elementary,70010,0,0,0,100,0,0,0,96.9,3.1,67.8 +5.6875,5,a-pcom-i3,2018-19,Amherst - Crocker Farm Elementary,80009,2.3,1.2,11.1,81.8,0,0,3.5,90.6,9.4,85.4 +6.0625,5,a-pcom-i3,2018-19,Amherst - Fort River Elementary,80020,3.3,2.2,11.7,80.6,0,0,2.2,78,22,91.1 +10.84375,5,a-pcom-i3,2018-19,Amherst - Wildwood Elementary,80050,13.8,6,11.3,65.3,0,0,3.6,81.1,18.9,83.7 +7.5625,5,a-pcom-i3,2018-19,Amherst-Pelham - Amherst Regional High,6050505,11.5,1.1,9,75.8,0,0,2.5,64.5,35.5,165.1 +9.21875,5,a-pcom-i3,2018-19,Amherst-Pelham - Amherst Regional Middle School,6050405,13.5,0.4,13.5,70.5,0,0,2.2,66.5,33.5,81.7 +2.75,2.75,a-pcom-i3,2018-19,Andover - Andover High,90505,0.5,1.9,5.4,91.2,0,0.5,0.5,70.4,29.6,210 +1,1,a-pcom-i3,2018-19,Andover - Andover West Middle,90310,0,0,2.7,97.3,0,0,0,83,17,72.8 +1.375,1.38,a-pcom-i3,2018-19,Andover - Bancroft Elementary,90003,0,3.6,0.9,95.6,0,0,0,95.3,4.7,79.8 +2,2,a-pcom-i3,2018-19,Andover - Doherty Middle,90305,0,3.9,1.3,93.6,0,0,1.3,88.4,11.6,77.7 +1,1,a-pcom-i3,2018-19,Andover - Henry C Sanborn Elementary,90010,0,0,1.9,98.1,0,0,0,88.6,11.4,52 +1.53125,1.53,a-pcom-i3,2018-19,Andover - High Plain Elementary,90004,0,3.7,1.2,95.1,0,0,0,96.3,3.7,81.9 +3.65625,3.66,a-pcom-i3,2018-19,Andover - Shawsheen School,90005,0,5.8,5.9,88.3,0,0,0,97.2,2.8,30.3 +1,1,a-pcom-i3,2018-19,Andover - South Elementary,90020,0,1.1,0,98.9,0,0,0,94.7,5.3,72.8 +1.71875,1.72,a-pcom-i3,2018-19,Andover - West Elementary,90025,0.9,1.3,2.7,94.5,0.6,0,0,88.9,11.1,104.3 +1,1,a-pcom-i3,2018-19,Andover - Wood Hill Middle School,90350,0,0,1.4,98.6,0,0,0,83.5,16.5,71.1 +4.875,4.87,a-pcom-i3,2018-19,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,5.5,4,4,84.4,0,0,2,69.3,30.7,49.8 +2.71875,2.72,a-pcom-i3,2018-19,Arlington - Arlington High,100505,2,2,4,91.3,0,0,0.7,57.4,42.6,149.3 +3.75,3.75,a-pcom-i3,2018-19,Arlington - Brackett,100010,0,3.5,5.1,88,0,1.7,1.7,90.7,9.3,59.3 +1.625,1.63,a-pcom-i3,2018-19,Arlington - Cyrus E Dallin,100025,0,3.6,0,94.8,0,0,1.7,89,11,59.1 +1.53125,1.53,a-pcom-i3,2018-19,Arlington - Gibbs School,100305,0,1.3,1.8,95.1,0,0,1.8,82.3,17.7,56.7 +3.0625,3.06,a-pcom-i3,2018-19,Arlington - Hardy,100030,0,4,3.8,90.2,0,0,1.9,92.3,7.7,52.1 +1,1,a-pcom-i3,2018-19,Arlington - John A Bishop,100005,2.2,0.2,0,97.6,0,0,0,92,8,46.4 +1,1,a-pcom-i3,2018-19,Arlington - M Norcross Stratton,100055,0,0.2,1.5,98.3,0,0,0,91.6,8.4,65.2 +3.9375,3.94,a-pcom-i3,2018-19,Arlington - Menotomy Preschool,100038,3.1,0,3.1,87.4,0,0,6.3,96.9,3.1,31.8 +2.28125,2.28,a-pcom-i3,2018-19,Arlington - Ottoson Middle,100410,3,2.3,2,92.7,0,0,0,71.2,28.8,100.8 +4,4,a-pcom-i3,2018-19,Arlington - Peirce,100045,2.5,5.3,2.5,87.2,0,0,2.5,98.6,1.4,39.8 +1.46875,1.47,a-pcom-i3,2018-19,Arlington - Thompson,100050,1.8,3,0,95.3,0,0,0,92.6,7.4,57.1 +1.375,1.38,a-pcom-i3,2018-19,Ashburnham-Westminster - Briggs Elementary,6100025,1.4,0,0.3,95.6,0,0,2.7,86.8,13.2,72.9 +1,1,a-pcom-i3,2018-19,Ashburnham-Westminster - Meetinghouse School,6100010,0,0,0.9,99.1,0,0,0,97,3,22.1 +1.59375,1.59,a-pcom-i3,2018-19,Ashburnham-Westminster - Oakmont Regional High School,6100505,3.6,0,1.5,94.9,0,0,0,56.1,43.9,82.5 +1,1,a-pcom-i3,2018-19,Ashburnham-Westminster - Overlook Middle School,6100305,0,0,0.3,99.7,0,0,0,74.5,25.5,59.3 +1.5625,1.56,a-pcom-i3,2018-19,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,5,95,0,0,0,91.3,8.7,44 +1,1,a-pcom-i3,2018-19,Ashland - Ashland High,140505,0,0,1.2,98.8,0,0,0,64,36,80.6 +1.53125,1.53,a-pcom-i3,2018-19,Ashland - Ashland Middle,140405,0,2.7,2.2,95.1,0,0,0,70.8,29.2,73.7 +1,1,a-pcom-i3,2018-19,Ashland - David Mindess,140015,0,0,2.6,97.4,0,0,0,89.1,10.9,75.7 +1,1,a-pcom-i3,2018-19,Ashland - Henry E Warren Elementary,140010,0,0,0.5,99.5,0,0,0,98.1,1.9,91.2 +1.875,1.88,a-pcom-i3,2018-19,Ashland - William Pittaway Elementary,140005,0,3,3,94,0,0,0,99.1,0.9,33.3 +1.875,1.88,a-pcom-i3,2018-19,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0.7,0.7,4.6,94,0,0,0,49.8,50.2,152.7 +1,1,a-pcom-i3,2018-19,Athol-Royalston - Athol Community Elementary School,6150020,1.2,0,0,98.8,0,0,0,93.7,6.3,68.6 +1,1,a-pcom-i3,2018-19,Athol-Royalston - Athol High,6150505,0,0,2.1,97.9,0,0,0,66,34,47.1 +1,1,a-pcom-i3,2018-19,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,2.1,97.9,0,0,0,67.9,32.1,46.8 +1,1,a-pcom-i3,2018-19,Athol-Royalston - Royalston Community School,6150050,1.1,0,0,98.9,0,0,0,90.6,9.4,18.2 +1.125,1.12,a-pcom-i3,2018-19,Atlantis Charter (District) - Atlantis Charter School,4910550,1.2,0.6,0,96.4,0.6,0,1.2,84.5,15.5,164 +1,1,a-pcom-i3,2018-19,Attleboro - A. Irvin Studley Elementary School,160001,0,0,2.1,97.9,0,0,0,97.9,2.1,48.7 +7.9375,5,a-pcom-i3,2018-19,Attleboro - Attleboro Community Academy,160515,0,0,25.4,74.6,0,0,0,100,0,4.8 +1.84375,1.84,a-pcom-i3,2018-19,Attleboro - Attleboro High,160505,1.1,0,4.3,94.1,0,0,0.5,69.4,30.6,186.4 +1,1,a-pcom-i3,2018-19,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,99.2,0,0,0.8,81.6,18.4,59 +2.09375,2.09,a-pcom-i3,2018-19,Attleboro - Early Learning Center,160008,0,0,0,93.3,0,0,6.7,100,0,29.8 +1,1,a-pcom-i3,2018-19,Attleboro - Hill-Roberts Elementary School,160045,0,2.4,0,97.6,0,0,0,95.2,4.8,41.9 +2.25,2.25,a-pcom-i3,2018-19,Attleboro - Hyman Fine Elementary School,160040,0,0,7.2,92.8,0,0,0,91.8,8.2,41.4 +1,1,a-pcom-i3,2018-19,Attleboro - Peter Thacher Elementary School,160050,0,1.4,0,97.2,0,0,1.4,93.1,6.9,71.3 +1,1,a-pcom-i3,2018-19,Attleboro - Robert J. Coelho Middle School,160305,3.1,0,0,96.9,0,0,0,73.8,26.2,51.6 +1.375,1.38,a-pcom-i3,2018-19,Attleboro - Thomas Willett Elementary School,160035,0,2.2,2.2,95.6,0,0,0,95.6,4.4,45.1 +1.5625,1.56,a-pcom-i3,2018-19,Attleboro - Wamsutta Middle School,160320,0,0,3,95,2,0,0,78.1,21.9,50.3 +1.5,1.5,a-pcom-i3,2018-19,Auburn - Auburn Middle,170305,0,1.9,1.4,95.2,0,0,1.4,75.7,24.3,70.1 +1.375,1.38,a-pcom-i3,2018-19,Auburn - Auburn Senior High,170505,2,0.4,1.9,95.6,0,0,0,70.7,29.3,102.6 +1,1,a-pcom-i3,2018-19,Auburn - Bryn Mawr,170010,0,0,1.9,98.1,0,0,0,99.6,0.4,51.5 +1,1,a-pcom-i3,2018-19,Auburn - Pakachoag School,170025,0,1.7,0,98.3,0,0,0,100,0,38.9 +1.375,1.38,a-pcom-i3,2018-19,Auburn - Swanson Road Intermediate School,170030,1.5,0,1.5,95.6,0,0,1.5,95.9,4.1,68.5 +4,4,a-pcom-i3,2018-19,Avon - Avon Middle High School,180510,4.2,4.3,4.2,87.2,0,0,0,68.1,31.9,47.1 +1,1,a-pcom-i3,2018-19,Avon - Ralph D Butler,180010,2,0,0,98,0,0,0,96,4,50 +1,1,a-pcom-i3,2018-19,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,1.9,0,0,98.1,0,0,0,56.2,43.8,52.5 +3.03125,3.03,a-pcom-i3,2018-19,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,0,0,7.7,90.3,0,0,1.9,76.8,23.2,51.7 +1.1875,1.19,a-pcom-i3,2018-19,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,3.8,0,96.2,0,0,0,94.6,5.4,52.3 +1,1,a-pcom-i3,2018-19,Ayer Shirley School District - Page Hilltop Elementary School,6160002,0,1.6,0,98.4,0,0,0,89.1,10.9,64 +1.875,1.88,a-pcom-i3,2018-19,Barnstable - Barnstable High,200505,2.2,1.3,2.2,94,0,0,0.4,65.9,34.1,231.4 +1,1,a-pcom-i3,2018-19,Barnstable - Barnstable Intermediate School,200315,1.1,0,1.1,96.8,0,0,1.1,79.9,20.1,94.4 +1.125,1.12,a-pcom-i3,2018-19,Barnstable - Barnstable United Elementary School,200050,1.8,0.9,0.9,96.4,0,0,0,90.9,9.1,109.6 +1,1,a-pcom-i3,2018-19,Barnstable - Centerville Elementary,200010,0,0,0.7,99.3,0,0,0,89.8,10.2,41.6 +1,1,a-pcom-i3,2018-19,Barnstable - Enoch Cobb Early Learning Center,200001,0,0,3.2,96.8,0,0,0,100,0,30.9 +1.59375,1.59,a-pcom-i3,2018-19,Barnstable - Hyannis West Elementary,200025,0,3.4,1.7,94.9,0,0,0,97.9,2.1,58.3 +1,1,a-pcom-i3,2018-19,Barnstable - West Barnstable Elementary,200005,0,0,0,100,0,0,0,93.5,6.5,34.4 +1,1,a-pcom-i3,2018-19,Barnstable - West Villages Elementary School,200045,0,0,0,99,1,0,0,94.7,5.3,61.6 +1.90625,1.91,a-pcom-i3,2018-19,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,4270010,0,0,2.4,93.9,1.2,0,2.4,97.6,2.4,41.2 +9.15625,5,a-pcom-i3,2018-19,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,20.1,1.5,4.6,70.7,1.5,1.5,0,51.7,48.3,64.8 +1.8125,1.81,a-pcom-i3,2018-19,Bedford - Bedford High,230505,2.4,0,3.5,94.2,0,0,0,70.7,29.3,126.9 +1.1875,1.19,a-pcom-i3,2018-19,Bedford - John Glenn Middle,230305,1.2,1.2,1.4,96.2,0,0,0,75.5,24.5,84.9 +3.03125,3.03,a-pcom-i3,2018-19,Bedford - Lt Elezer Davis,230010,2.5,2.5,3.5,90.3,0,0,1.2,91.9,8.1,80.5 +1.84375,1.84,a-pcom-i3,2018-19,Bedford - Lt Job Lane School,230012,0,3.6,1.1,94.1,0,0,1.2,87.4,12.6,83.5 +1.1875,1.19,a-pcom-i3,2018-19,Belchertown - Belchertown High,240505,1.3,0,2.5,96.2,0,0,0,71.9,28.1,79.8 +1,1,a-pcom-i3,2018-19,Belchertown - Chestnut Hill Community School,240006,0,0,0,100,0,0,0,83.8,16.2,58 +1,1,a-pcom-i3,2018-19,Belchertown - Cold Spring,240005,0,0,2.6,97.4,0,0,0,96.3,3.7,38 +1,1,a-pcom-i3,2018-19,Belchertown - Jabish Middle School,240025,0,0,2,98,0,0,0,79.1,20.9,49.4 +1,1,a-pcom-i3,2018-19,Belchertown - Swift River Elementary,240018,0,0,0,100,0,0,0,92.2,7.8,56.2 +1,1,a-pcom-i3,2018-19,Bellingham - Bellingham Early Childhood Center,250003,0,0,0,100,0,0,0,100,0,18.5 +1,1,a-pcom-i3,2018-19,Bellingham - Bellingham High School,250505,1,2,0,96.9,0,0,0,69.4,30.6,98.1 +1,1,a-pcom-i3,2018-19,Bellingham - Bellingham Memorial School,250315,0,0,0,100,0,0,0,80.1,19.9,90.7 +1,1,a-pcom-i3,2018-19,Bellingham - Joseph F DiPietro Elementary School,250020,0,0,2.1,97.9,0,0,0,100,0,48.3 +1,1,a-pcom-i3,2018-19,Bellingham - Keough Memorial Academy,250510,0,0,0,100,0,0,0,53.4,46.6,15 +1,1,a-pcom-i3,2018-19,Bellingham - Stall Brook,250025,0,0,0,100,0,0,0,98.2,1.8,54.8 +2.125,2.12,a-pcom-i3,2018-19,Belmont - Belmont High,260505,0,3,2.8,93.2,0,0,0.9,73.9,26.1,105.9 +2.5625,2.56,a-pcom-i3,2018-19,Belmont - Daniel Butler,260015,0,2.3,0,91.8,0,0,5.9,86.6,13.4,44 +2.03125,2.03,a-pcom-i3,2018-19,Belmont - Mary Lee Burbank,260010,2,0,2.2,93.5,0,0,2.2,91,9,44.5 +1.03125,1.03,a-pcom-i3,2018-19,Belmont - Roger E Wellington,260035,1.1,1.1,1.1,96.7,0,0,0,90.1,9.9,81.6 +1.09375,1.09,a-pcom-i3,2018-19,Belmont - Winn Brook,260005,0,0,3.5,96.5,0,0,0,96.3,3.7,50.9 +4.53125,4.53,a-pcom-i3,2018-19,Belmont - Winthrop L Chenery Middle,260305,3.2,7,1.2,85.5,0,0,3.2,73.7,26.3,127 +17.125,5,a-pcom-i3,2018-19,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,47.1,3.8,3.8,45.2,0,0,0,85.4,14.6,52.2 +1,1,a-pcom-i3,2018-19,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,0,0,100,0,0,0,90.9,9.1,66.3 +2.03125,2.03,a-pcom-i3,2018-19,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,2.2,2.2,2,93.5,0,0,0,85.5,14.5,49.3 +1,1,a-pcom-i3,2018-19,Berkley - Berkley Community School,270010,0,0,0,100,0,0,0,98.4,1.6,61.3 +1,1,a-pcom-i3,2018-19,Berkley - Berkley Middle School,270305,0,0,0,100,0,0,0,79.2,20.8,43.3 +1.21875,1.22,a-pcom-i3,2018-19,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,0,0,1.9,96.1,0,0,1.9,71.3,28.7,51.7 +1.34375,1.34,a-pcom-i3,2018-19,Berkshire Hills - Monument Mt Regional High,6180505,1.4,0,1.4,95.7,0,0,1.4,65.8,34.2,69.9 +2.09375,2.09,a-pcom-i3,2018-19,Berkshire Hills - Monument Valley Regional Middle School,6180310,1.7,1.7,1.7,93.3,0,0,1.5,71.7,28.3,58.8 +1.25,1.25,a-pcom-i3,2018-19,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,1.3,1.3,1.3,96,0,0,0.1,88.2,11.8,76.6 +1,1,a-pcom-i3,2018-19,Berlin - Berlin Memorial,280005,0,0,0,100,0,0,0,92.5,7.5,33.5 +1,1,a-pcom-i3,2018-19,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,98.6,0,0,1.4,73.5,26.5,71.6 +1,1,a-pcom-i3,2018-19,Beverly - Ayers/Ryal Side School,300055,0,0,0,100,0,0,0,96,4,50.3 +1,1,a-pcom-i3,2018-19,Beverly - Beverly High,300505,0.7,0,0.5,98.8,0,0,0,69.6,30.4,148.1 +1,1,a-pcom-i3,2018-19,Beverly - Beverly Middle School,300305,0,0.7,2,97.4,0,0,0,78.9,21.1,152.9 +1,1,a-pcom-i3,2018-19,Beverly - Centerville Elementary,300010,0,2.3,0,97.7,0,0,0,86.5,13.5,44.4 +1,1,a-pcom-i3,2018-19,Beverly - Cove Elementary,300015,0,0,0,100,0,0,0,96.8,3.2,62.3 +1,1,a-pcom-i3,2018-19,Beverly - Hannah Elementary,300033,0,0,0,100,0,0,0,91.1,8.9,44.9 +1,1,a-pcom-i3,2018-19,Beverly - McKeown School,300002,0,2.8,0,97.2,0,0,0,100,0,35.3 +1,1,a-pcom-i3,2018-19,Beverly - North Beverly Elementary,300040,0,0,0,100,0,0,0,92.2,7.8,51.1 +1,1,a-pcom-i3,2018-19,Billerica - Billerica Memorial High School,310505,0.6,0.7,0,98.8,0,0,0,76.3,23.7,181 +1,1,a-pcom-i3,2018-19,Billerica - Eugene C Vining,310030,0,0,0,100,0,0,0,97.5,2.5,36.5 +1,1,a-pcom-i3,2018-19,Billerica - Frederick J Dutile,310007,0,0,2.6,97.4,0,0,0,94.7,5.3,38.5 +1,1,a-pcom-i3,2018-19,Billerica - Hajjar Elementary,310026,0,1.6,0,98.4,0,0,0,92.2,7.8,62 +1,1,a-pcom-i3,2018-19,Billerica - John F Kennedy,310012,0,0,0,100,0,0,0,94.3,5.7,41.2 +1,1,a-pcom-i3,2018-19,Billerica - Locke Middle,310310,0,0,1.4,98.6,0,0,0,78.8,21.2,70 +1,1,a-pcom-i3,2018-19,Billerica - Marshall Middle School,310305,2.2,0,0,97.8,0,0,0,77.9,22.1,89.3 +1,1,a-pcom-i3,2018-19,Billerica - Parker,310015,0,0,0,98.7,0,0,1.3,97.1,2.9,77.3 +1,1,a-pcom-i3,2018-19,Billerica - Thomas Ditson,310005,0,0.7,0,99.3,0,0,0,94.9,5.1,73.8 +1,1,a-pcom-i3,2018-19,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0,0.7,99.3,0,0,0,58.4,41.6,165.3 +1,1,a-pcom-i3,2018-19,Blackstone-Millville - A F Maloney,6220015,0,0,0,100,0,0,0,99.5,0.5,32.9 +1.625,1.63,a-pcom-i3,2018-19,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,5.2,94.8,0,0,0,66.2,33.8,54.4 +1.4375,1.44,a-pcom-i3,2018-19,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,4.6,95.4,0,0,0,84.5,15.5,43.8 +1,1,a-pcom-i3,2018-19,Blackstone-Millville - John F Kennedy Elementary,6220008,0,0,0,100,0,0,0,96.6,3.4,35.8 +1,1,a-pcom-i3,2018-19,Blackstone-Millville - Millville Elementary,6220010,0,0,0,100,0,0,0,98.2,1.8,36.6 +1.8125,1.81,a-pcom-i3,2018-19,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,2.5,0.8,1.7,94.2,0,0,0.8,54.1,45.9,121 +11.78125,5,a-pcom-i3,2018-19,Boston - Another Course To College,350541,25,4.3,4.3,62.3,0,0,4.2,70.9,29.1,23.9 +19.71875,5,a-pcom-i3,2018-19,Boston - Baldwin Early Learning Center,350003,18.3,10.6,28.9,36.9,0,0,5.3,94.7,5.3,38 +8.1875,5,a-pcom-i3,2018-19,Boston - Beethoven,350021,15.7,2.6,7.9,73.8,0,0,0,91.2,8.8,38.4 +15.84375,5,a-pcom-i3,2018-19,Boston - Blackstone,350390,23.5,1.2,24.8,49.3,1.2,0,0,76.1,23.9,85 +23.1875,5,a-pcom-i3,2018-19,Boston - Boston Adult Academy,350548,44.7,11.1,11.1,25.8,0,3.7,3.6,57.3,42.7,26.9 +16.875,5,a-pcom-i3,2018-19,Boston - Boston Arts Academy,350546,34,5.4,12.7,46,0,0,1.9,66.1,33.9,54.5 +22.4375,5,a-pcom-i3,2018-19,Boston - Boston Collaborative High School,350755,28.3,7.4,29,28.2,0,0,7.1,71.9,28.1,14 +16.6875,5,a-pcom-i3,2018-19,Boston - Boston Community Leadership Academy,350558,24.2,10.3,17.2,46.6,0,0,1.7,65.3,34.7,58 +15.59375,5,a-pcom-i3,2018-19,Boston - Boston International High School,350507,22.4,5.2,22.3,50.1,0,0,0,61.9,38.1,57.9 +11.4375,5,a-pcom-i3,2018-19,Boston - Boston Latin,350560,19.3,7.3,8,63.4,0,0.7,1.3,57.4,42.6,150 +14.25,5,a-pcom-i3,2018-19,Boston - Boston Latin Academy,350545,17.5,15,11.4,54.4,0,0,1.7,59.7,40.3,114.9 +15.1875,5,a-pcom-i3,2018-19,Boston - Boston Teachers Union School,350012,21.3,8.9,15.2,51.4,0,0,3.1,85,15,33.1 +16.03125,5,a-pcom-i3,2018-19,Boston - Brighton High,350505,28.7,3.7,15,48.7,0,0,3.7,70,30,80 +13.6875,5,a-pcom-i3,2018-19,Boston - Carter School,350036,37.5,0,0,56.2,0,0,6.3,87.5,12.5,16 +23.5,5,a-pcom-i3,2018-19,Boston - Charles H Taylor,350054,65.1,3.6,6.5,24.8,0,0,0,91.3,8.7,59.4 +14.6875,5,a-pcom-i3,2018-19,Boston - Charles Sumner,350052,21.8,0,25.2,53,0,0,0,89.6,10.4,63.6 +13.0625,5,a-pcom-i3,2018-19,Boston - Charlestown High,350515,16,12,12,58.2,0.9,0,0.9,64.1,35.9,108.4 +13.625,5,a-pcom-i3,2018-19,Boston - Clarence R Edwards Middle,350430,17.5,17.4,8.7,56.4,0,0,0,60.7,39.3,46 +22.3125,5,a-pcom-i3,2018-19,Boston - Community Academy,350518,35.6,14.3,14.3,28.6,0,0,7.2,57.2,42.8,14 +18.40625,5,a-pcom-i3,2018-19,Boston - Community Academy of Science and Health,350581,47.1,4,5.9,41.1,0,0,2,54.9,45.1,51 +13.40625,5,a-pcom-i3,2018-19,Boston - Condon K-8,350146,26.7,3.3,12,57.1,0,0,1,80.1,19.9,101.5 +13.96875,5,a-pcom-i3,2018-19,Boston - Curley K-8 School,350020,18.3,1.6,21.5,55.3,1.7,0,1.6,91.4,8.6,125.8 +9.75,5,a-pcom-i3,2018-19,Boston - Curtis Guild,350062,10.7,3.1,14.6,68.8,0,0,2.7,82.4,17.6,36.6 +13.0625,5,a-pcom-i3,2018-19,Boston - Dante Alighieri Montessori School,350066,8.1,0,27.1,58.2,0,0,6.6,82.8,17.2,14.9 +22.71875,5,a-pcom-i3,2018-19,Boston - David A Ellis,350072,44.1,3.2,17.5,27.3,3.9,0,3.9,78.4,21.6,51.3 +17.90625,5,a-pcom-i3,2018-19,Boston - Dearborn,350074,38.9,3.7,11.2,42.7,1.6,0,1.9,65,35,53.7 +9.21875,5,a-pcom-i3,2018-19,Boston - Dennis C Haley,350077,14.8,9.2,3.7,70.5,0,0,1.9,89,11,54.8 +8.09375,5,a-pcom-i3,2018-19,Boston - Donald Mckay,350080,4.4,1.5,18.4,74.1,0,0,1.6,76,24,68.4 +18.0625,5,a-pcom-i3,2018-19,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,47.3,5.3,5.2,42.2,0,0,0,81.5,18.5,38 +9.0625,5,a-pcom-i3,2018-19,Boston - Dr. William Henderson Lower,350266,19.5,3.9,4.4,71,0,0.3,0.9,79.6,20.4,53.5 +8.3125,5,a-pcom-i3,2018-19,Boston - Dr. William Henderson Upper,350426,17.2,3.9,3.6,73.4,0,1.2,0.7,75.1,24.9,72.7 +17.3125,5,a-pcom-i3,2018-19,Boston - ELC - West Zone,350006,32,5.8,11.7,44.6,2.9,0,2.9,90.4,9.6,34.3 +16.15625,5,a-pcom-i3,2018-19,Boston - East Boston Early Childhood Center,350009,9,4.4,36,48.3,0,2.2,0,93.3,6.7,44.5 +10.59375,5,a-pcom-i3,2018-19,Boston - East Boston High,350530,12.2,2.4,17.7,66.1,0,0,1.6,59,41,123.1 +13.3125,5,a-pcom-i3,2018-19,Boston - Edison K-8,350375,23.6,4.6,13.4,57.4,0,0,1.1,75.4,24.6,88.8 +11.125,5,a-pcom-i3,2018-19,Boston - Edward Everett,350088,17.7,10.7,7.1,64.4,0,0,0,92.8,7.2,28 +10.0625,5,a-pcom-i3,2018-19,Boston - Eliot Elementary,350096,19.3,3.3,8.1,67.8,0,0,1.6,88.7,11.3,61.3 +12.78125,5,a-pcom-i3,2018-19,Boston - Ellis Mendell,350100,17,0,23.9,59.1,0,0,0,95.1,4.9,29.4 +17.84375,5,a-pcom-i3,2018-19,Boston - Excel High School,350522,35.3,14.2,6.1,42.9,1.5,0,0,63.1,36.9,65.3 +17.40625,5,a-pcom-i3,2018-19,Boston - Fenway High School,350540,33,2.5,17.6,44.3,0,0,2.5,60.8,39.2,39.3 +11.8125,5,a-pcom-i3,2018-19,Boston - Franklin D Roosevelt,350116,23.4,3.6,9,62.2,0,0,1.8,94.6,5.4,55.3 +14.1875,5,a-pcom-i3,2018-19,Boston - Gardner Pilot Academy,350326,24.3,4,17,54.6,0,0,0,90,10,49.2 +10.3125,5,a-pcom-i3,2018-19,Boston - George H Conley,350122,22.6,2.6,5.2,67,0,0,2.6,87.7,12.3,38.3 +22.90625,5,a-pcom-i3,2018-19,Boston - Greater Egleston Community High School,350543,46.5,0,26.8,26.7,0,0,0,66.9,33.1,14.9 +7.6875,5,a-pcom-i3,2018-19,Boston - Harvard-Kent,350200,9.4,10.5,4.6,75.4,0,0,0,80.3,19.7,66.5 +25.375,5,a-pcom-i3,2018-19,Boston - Haynes Early Education Center,350010,66.4,2.5,12.4,18.8,0,0,0,76.2,23.8,40.7 +15.1875,5,a-pcom-i3,2018-19,Boston - Henry Grew,350135,39.6,0,8.9,51.4,0,0,0,80.2,19.8,22.4 +18.9375,5,a-pcom-i3,2018-19,Boston - Higginson,350015,27.3,6.1,24.2,39.4,0,0,3,88,12,33 +21.375,5,a-pcom-i3,2018-19,Boston - Higginson/Lewis K-8,350377,54.2,6,8.2,31.6,0,0,0,80,20,50.3 +10.15625,5,a-pcom-i3,2018-19,Boston - Horace Mann School for the Deaf,350750,13.5,8.1,9.5,67.5,0,0,1.4,81,19,73.8 +6.6875,5,a-pcom-i3,2018-19,Boston - Hugh Roe O'Donnell,350141,1.7,3.9,15.8,78.6,0,0,0,74.8,25.2,25.3 +14.375,5,a-pcom-i3,2018-19,Boston - Jackson Mann,350013,28.6,5.8,10.4,54,0,0,1.2,81.4,18.6,87.6 +17.90625,5,a-pcom-i3,2018-19,Boston - James J Chittick,350154,38.3,6,10.8,42.7,2.1,0,0,87.1,12.9,46.9 +9.9375,5,a-pcom-i3,2018-19,Boston - James Otis,350156,10.3,2.6,18.9,68.2,0,0,0,78.1,21.9,38.9 +21.40625,5,a-pcom-i3,2018-19,Boston - James P Timilty Middle,350485,48.5,0.2,19.8,31.5,0,0,0,67.5,32.5,35.2 +16.90625,5,a-pcom-i3,2018-19,Boston - James W Hennigan,350153,25.9,0.9,25.9,45.9,0,0,1.4,79.4,20.6,73 +18.5,5,a-pcom-i3,2018-19,Boston - Jeremiah E Burke High,350525,48.9,0,8.2,40.8,0,0,2,53.1,46.9,48.9 +16.0625,5,a-pcom-i3,2018-19,Boston - John D Philbrick,350172,38.2,5.8,7.4,48.6,0,0,0,86.9,13.1,17.4 +15.59375,5,a-pcom-i3,2018-19,Boston - John F Kennedy,350166,21.1,2.6,26.2,50.1,0,0,0,75.9,24.1,38.1 +14.125,5,a-pcom-i3,2018-19,Boston - John W McCormack,350179,30.9,2.1,12.3,54.8,0,0,0,73.3,26.7,48.7 +12.34375,5,a-pcom-i3,2018-19,Boston - John Winthrop,350180,28,0,8.6,60.5,0,0,2.9,85.7,14.3,34.7 +23.6875,5,a-pcom-i3,2018-19,Boston - Joseph J Hurley,350182,15,0,57.8,24.2,3.1,0,0,85,15,32.7 +16.40625,5,a-pcom-i3,2018-19,Boston - Joseph Lee,350183,39.5,3.4,8,47.5,0.8,0,0.8,78.1,21.9,119 +11.59375,5,a-pcom-i3,2018-19,Boston - Joseph P Manning,350184,33.3,0,3.8,62.9,0,0,0,74,26,26.6 +13.09375,5,a-pcom-i3,2018-19,Boston - Joseph P Tynan,350181,24.9,0,14.9,58.1,0,0,2,87.1,12.9,46.5 +20.125,5,a-pcom-i3,2018-19,Boston - Josiah Quincy,350286,15,45.4,4,35.6,0,0,0,86.7,13.3,100.1 +5.96875,5,a-pcom-i3,2018-19,Boston - Joyce Kilmer,350190,11.4,0,6.1,80.9,0,0,1.7,85.2,14.8,61.4 +19.46875,5,a-pcom-i3,2018-19,Boston - King K-8,350376,52.4,1.4,7,37.7,0,0,1.4,79.3,20.7,69.9 +17.5625,5,a-pcom-i3,2018-19,Boston - Lee Academy,350001,31.6,8.5,16.1,43.8,0,0,0,75.9,24.1,35.2 +19.375,5,a-pcom-i3,2018-19,Boston - Lilla G. Frederick Middle School,350383,32.4,5.6,22.6,38,0,0,1.4,70.4,29.6,70.9 +8.4375,5,a-pcom-i3,2018-19,Boston - Lyndon,350262,16.2,1.8,9,73,0,0,0,80.1,19.9,55.3 +9.3125,5,a-pcom-i3,2018-19,Boston - Lyon K-8,350004,17.8,6,3,70.2,0,0,3,79.2,20.8,33.4 +13,5,a-pcom-i3,2018-19,Boston - Lyon Upper 9-12,350655,27.7,11.1,2.8,58.4,0,0,0,47.1,52.9,36.1 +18.09375,5,a-pcom-i3,2018-19,Boston - Madison Park High,350537,35.1,2.8,15.2,42.1,0,0,4.8,50.4,49.6,145 +3.21875,3.22,a-pcom-i3,2018-19,Boston - Manassah E Bradley,350215,3,3.5,3.8,89.7,0,0,0,86.5,13.5,33 +16.8125,5,a-pcom-i3,2018-19,Boston - Margarita Muniz Academy,350549,0,0,53.8,46.2,0,0,0,72.7,27.3,30.3 +13.125,5,a-pcom-i3,2018-19,Boston - Mario Umana Academy,350656,11.6,1.9,24.6,58,1,0,2.9,70.9,29.1,102.5 +20.9375,5,a-pcom-i3,2018-19,Boston - Mather,350227,43.6,15.6,3.9,33,0,0,3.9,82.2,17.8,51.1 +22.28125,5,a-pcom-i3,2018-19,Boston - Mattahunt Elementary School,350016,59,1.4,5.4,28.7,0,0,5.5,86.5,13.5,73 +15.65625,5,a-pcom-i3,2018-19,Boston - Maurice J Tobin,350229,19.3,2.2,26.5,49.9,0,0,2.2,85.2,14.8,45.1 +18.125,5,a-pcom-i3,2018-19,Boston - Michael J Perkins,350231,47.4,0,5.3,42,0,0,5.3,73.6,26.4,18.9 +20,5,a-pcom-i3,2018-19,Boston - Mildred Avenue K-8,350378,44.2,3.1,15.3,36,0,0,1.5,78.7,21.3,65.5 +18.5,5,a-pcom-i3,2018-19,Boston - Mission Hill School,350382,51.1,0,8.1,40.8,0,0,0,78.1,21.9,35.1 +15.03125,5,a-pcom-i3,2018-19,Boston - Mozart,350237,29.1,0,19,51.9,0,0,0,82.7,17.3,26.3 +20.21875,5,a-pcom-i3,2018-19,Boston - Nathan Hale,350243,41.2,0,23.5,35.3,0,0,0,76.4,23.6,17 +18,5,a-pcom-i3,2018-19,Boston - New Mission High School,350542,36,10.5,8.9,42.4,0,0,2.3,57.5,42.5,44.4 +14.71875,5,a-pcom-i3,2018-19,Boston - O W Holmes,350138,35.8,4.9,6.5,52.9,0,0,0,74.5,25.5,61.5 +17,5,a-pcom-i3,2018-19,Boston - O'Bryant School Math/Science,350575,32.8,4.7,16,45.6,0,0,0.9,62.8,37.2,106.6 +8.90625,5,a-pcom-i3,2018-19,Boston - Oliver Hazard Perry,350255,14.1,0,10.8,71.5,0,0,3.6,85.9,14.1,28 +13.4375,5,a-pcom-i3,2018-19,Boston - Orchard Gardens,350257,24.8,0.9,13.6,57,0,0,3.7,81.2,18.8,110.4 +12.09375,5,a-pcom-i3,2018-19,Boston - Patrick J Kennedy,350264,4.3,2.9,31.5,61.3,0,0,0,91.7,8.3,34.9 +17.75,5,a-pcom-i3,2018-19,Boston - Paul A Dever,350268,35.2,1.8,14.3,43.2,0,0,5.4,73,27,55.4 +18.53125,5,a-pcom-i3,2018-19,Boston - Pauline Agassiz Shaw Elementary School,350014,50.1,0,9.1,40.7,0,0,0,81.7,18.3,21.8 +8.875,5,a-pcom-i3,2018-19,Boston - Phineas Bates,350278,14.2,0,14.3,71.6,0,0,0,88.6,11.4,34.6 +19.53125,5,a-pcom-i3,2018-19,Boston - Quincy Upper School,350565,25,24.9,8.9,37.5,1.8,0,1.8,60.6,39.4,55.9 +23.3125,5,a-pcom-i3,2018-19,Boston - Rafael Hernandez,350691,7,0,67.6,25.4,0,0,0,85.9,14.1,42.7 +11.8125,5,a-pcom-i3,2018-19,Boston - Richard J Murphy,350240,22.1,7.7,6.9,62.2,0,0,1,78.2,21.8,99.3 +15.65625,5,a-pcom-i3,2018-19,Boston - Roger Clap,350298,22.6,0,9.1,49.9,0,0,18.4,77.5,22.5,22 +15.21875,5,a-pcom-i3,2018-19,Boston - Samuel Adams,350302,13.8,2.3,32.6,51.3,0,0,0,85.7,14.3,43.1 +20.15625,5,a-pcom-i3,2018-19,Boston - Samuel W Mason,350304,47.7,0,14,35.5,2.8,0,0,83.4,16.6,35.7 +24.03125,5,a-pcom-i3,2018-19,Boston - Sarah Greenwood,350308,24.9,0,52,23.1,0,0,0,75.2,24.8,55.6 +12.75,5,a-pcom-i3,2018-19,Boston - Snowden International School at Copley,350690,25.2,3.9,11.6,59.2,0,0,0,58.3,41.7,51.4 +13.875,5,a-pcom-i3,2018-19,Boston - TechBoston Academy,350657,38.3,2,2,55.6,0,0,2,56.5,43.5,99.8 +15.8125,5,a-pcom-i3,2018-19,Boston - The English High,350535,23.8,4.2,21.2,49.4,0,0,1.4,60.5,39.5,70.6 +11.71875,5,a-pcom-i3,2018-19,Boston - Thomas J Kenny,350328,24.9,7.6,5,62.5,0,0,0,84.8,15.2,40.4 +13.625,5,a-pcom-i3,2018-19,Boston - UP Academy Holland,350167,26.3,4,12,56.4,0,0,1.3,84.2,15.8,75.7 +14.6875,5,a-pcom-i3,2018-19,Boston - Urban Science Academy,350579,31.9,4.8,10.3,53,0,0,0,64.9,35.1,76.8 +4.90625,4.91,a-pcom-i3,2018-19,Boston - Warren-Prescott,350346,6.4,0,7.7,84.3,0,0,1.6,89.1,10.9,62.7 +13.71875,5,a-pcom-i3,2018-19,Boston - Washington Irving Middle,350445,35.5,2.1,6.3,56.1,0,0,0,66.6,33.4,47.9 +19.875,5,a-pcom-i3,2018-19,Boston - West Roxbury Academy,350658,63.6,0,0,36.4,0,0,0,75.8,24.2,16.5 +15.625,5,a-pcom-i3,2018-19,Boston - William E Russell,350366,24.9,2.8,19.5,50,0,0,2.8,86.3,13.7,35.8 +18.46875,5,a-pcom-i3,2018-19,Boston - William Ellery Channing,350360,42,6.9,2.9,40.9,3.7,0,3.7,78.9,21.1,26.2 +10,5,a-pcom-i3,2018-19,Boston - William H Ohrenberger,350258,21.1,1.5,7.9,68,0,0,1.5,67.1,32.9,65.8 +16.03125,5,a-pcom-i3,2018-19,Boston - William McKinley,350363,36.6,1.7,11.4,48.7,0,0.4,1.3,63.5,36.5,237.6 +18.1875,5,a-pcom-i3,2018-19,Boston - William Monroe Trotter,350370,48.1,6.1,4,41.8,0,0,0,85,15,50 +17.03125,5,a-pcom-i3,2018-19,Boston - Winship Elementary,350374,35.6,4,15,45.5,0,0,0,84,16,25.1 +22.46875,5,a-pcom-i3,2018-19,Boston - Young Achievers,350380,53.8,1.8,13.4,28.1,0,0,2.9,76.8,23.2,69.3 +11.84375,5,a-pcom-i3,2018-19,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,12.4,2.2,16.9,62.1,0,0,6.4,68.3,31.7,91 +16.75,5,a-pcom-i3,2018-19,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,28.9,8.2,14.4,46.4,2.1,0,0,64.9,35.1,48.5 +14.875,5,a-pcom-i3,2018-19,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,29,3.4,15.2,52.4,0,0,0,68.5,31.5,59.3 +12.75,5,a-pcom-i3,2018-19,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,26.7,1.4,9.9,59.2,0,0,2.8,65.9,34.1,71.1 +8.90625,5,a-pcom-i3,2018-19,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,20.1,5.6,2.2,71.5,0,0,0.6,83.1,16.9,159.5 +1,1,a-pcom-i3,2018-19,Bourne - Bourne High School,360505,0,0,0,100,0,0,0,69.3,30.7,61.9 +1,1,a-pcom-i3,2018-19,Bourne - Bourne Middle School,360325,0,0,0,97.4,0,0,2.6,83,17,76.5 +1,1,a-pcom-i3,2018-19,Bourne - Bournedale Elementary School,360005,0,0.8,0,99.2,0,0,0,98.4,1.6,62 +1,1,a-pcom-i3,2018-19,Bourne - Peebles Elementary School,360010,0,1.2,0,98.8,0,0,0,92.7,7.3,40.9 +1,1,a-pcom-i3,2018-19,Boxford - Harry Lee Cole,380005,0,0,0,100,0,0,0,94.8,5.2,54 +1,1,a-pcom-i3,2018-19,Boxford - Spofford Pond,380013,0,0,0,100,0,0,0,93.6,6.4,64.1 +1.28125,1.28,a-pcom-i3,2018-19,Boylston - Boylston Elementary,390005,0,1.4,0,95.9,0,0,2.7,93.2,6.8,36.5 +1,1,a-pcom-i3,2018-19,Braintree - Archie T Morrison,400033,0,0,1.6,98.4,0,0,0,93.1,6.9,62.8 +1.25,1.25,a-pcom-i3,2018-19,Braintree - Braintree High,400505,1.4,1.6,0.5,96,0,0,0.5,71.7,28.3,196.1 +1,1,a-pcom-i3,2018-19,Braintree - Donald Ross,400050,0,0,0,100,0,0,0,93.9,6.1,34.9 +1.09375,1.09,a-pcom-i3,2018-19,Braintree - East Middle School,400305,1.2,1.2,1.2,96.5,0,0,0,78.6,21.4,85 +1,1,a-pcom-i3,2018-19,Braintree - Highlands,400015,0,2.4,0,97.6,0,0,0,91,9,40.9 +1,1,a-pcom-i3,2018-19,Braintree - Hollis,400005,0,0,0,100,0,0,0,94.3,5.7,56.5 +1,1,a-pcom-i3,2018-19,Braintree - Liberty,400025,0,0,0,100,0,0,0,95.4,4.6,40.1 +1,1,a-pcom-i3,2018-19,Braintree - Mary E Flaherty School,400020,0,1,0,97.4,0,0,1.6,93.3,6.7,62.6 +1,1,a-pcom-i3,2018-19,Braintree - Monatiquot Kindergarten Center,400009,0,0,0,96.9,0,3.1,0,97.9,2.1,32.8 +1,1,a-pcom-i3,2018-19,Braintree - South Middle School,400310,0,0,0,100,0,0,0,76.2,23.8,84 +1,1,a-pcom-i3,2018-19,Brewster - Eddy Elementary,410010,0,0,0,100,0,0,0,99.3,0.7,40.6 +1,1,a-pcom-i3,2018-19,Brewster - Stony Brook Elementary,410005,0,0,2.1,97.9,0,0,0,94.2,5.8,46.7 +11.03125,5,a-pcom-i3,2018-19,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,24.5,1.3,5.8,64.7,1.3,0,2.5,85.1,14.9,79.7 +1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,100,0,0,0,82.3,17.7,48.7 +1.03125,1.03,a-pcom-i3,2018-19,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,1.6,0.8,0.8,96.7,0,0,0,69.4,30.6,121.3 +1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,0,100,0,0,0,87.8,12.2,42.9 +1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Merrill Elementary School,6250020,0,0,0,100,0,0,0,94.1,5.9,29.3 +1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Mitchell Elementary School,6250002,0.9,0,1.9,97.2,0,0,0,94.4,5.6,106 +1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,100,0,0,0,85.6,14.4,62.3 +1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,0,100,0,0,0,80.5,19.5,6.7 +1,1,a-pcom-i3,2018-19,Bridgewater-Raynham - Williams Intermediate School,6250300,1.4,0,0,97.2,0,0,1.4,84.3,15.7,72.3 +1,1,a-pcom-i3,2018-19,Brimfield - Brimfield Elementary,430005,0,0,0,100,0,0,0,90.5,9.5,44.3 +1.15625,1.16,a-pcom-i3,2018-19,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,3.7,96.3,0,0,0,54,46,53.9 +1.03125,1.03,a-pcom-i3,2018-19,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,1.3,0,0.7,96.7,1.3,0,0,62,38,149.6 +2.625,2.63,a-pcom-i3,2018-19,Brockton - Ashfield Middle School,440421,6.7,0,1.7,91.6,0,0,0,82.6,17.4,57.5 +2.46875,2.47,a-pcom-i3,2018-19,Brockton - Barrett Russell Early Childhood Center,440008,5.7,1.8,0.4,92.1,0,0,0,100,0,54.5 +8.125,5,a-pcom-i3,2018-19,Brockton - Brockton Champion High School,440515,17.1,0,5.4,74,0.7,0,2.7,56.5,43.5,36.8 +7.21875,5,a-pcom-i3,2018-19,Brockton - Brockton High,440505,16.2,2.2,3.2,76.9,0,0.3,1.3,64.4,35.6,378.7 +4,4,a-pcom-i3,2018-19,Brockton - Brookfield,440010,9.6,0,3.2,87.2,0,0,0,88.5,11.5,62.3 +4.8125,4.81,a-pcom-i3,2018-19,Brockton - Downey,440110,10.3,0,3.1,84.6,1,0,1,90.7,9.3,97.1 +5.125,5,a-pcom-i3,2018-19,Brockton - Dr W Arnone Community School,440001,12.9,0,3.3,83.6,0,0,0.2,89.4,10.6,90.7 +7.15625,5,a-pcom-i3,2018-19,Brockton - East Middle School,440405,13.6,1.5,4.5,77.1,1.5,0,1.8,67.6,32.4,66.4 +4.0625,4.06,a-pcom-i3,2018-19,Brockton - Edgar B Davis,440023,8,0,1.2,87,0.1,0,3.7,77.3,22.7,80.5 +13.375,5,a-pcom-i3,2018-19,Brockton - Edison Academy,440520,38,0,4.7,57.2,0,0,0,68.9,31.1,20.7 +4.65625,4.66,a-pcom-i3,2018-19,Brockton - Frederick Douglass Academy,440080,0,0,0,85.1,8.3,0,6.6,64.8,35.2,15.1 +4.65625,4.66,a-pcom-i3,2018-19,Brockton - Gilmore Elementary School,440055,14.3,0,0.6,85.1,0,0,0,81.4,18.6,48.9 +4.21875,4.22,a-pcom-i3,2018-19,Brockton - Hancock,440045,3.2,0,5.7,86.5,1.7,0,2.9,89.8,10.2,46.9 +7.375,5,a-pcom-i3,2018-19,Brockton - Huntington Therapeutic Day School,440400,19.1,0,2.3,76.4,0,0,2.3,64.1,35.9,44.4 +6.03125,5,a-pcom-i3,2018-19,Brockton - John F Kennedy,440017,10.9,4.1,3.6,80.7,0,0,0.6,90.2,9.8,54.8 +5.6875,5,a-pcom-i3,2018-19,Brockton - Joseph F. Plouffe Academy,440422,10.7,4.4,3,81.8,0,0,0,78.2,21.8,67.5 +6.40625,5,a-pcom-i3,2018-19,Brockton - Louis F Angelo Elementary,440065,12.7,0.2,4.7,79.5,0,0,2.8,89.1,10.9,106.1 +9.46875,5,a-pcom-i3,2018-19,Brockton - Manthala George Jr. School,440003,12.1,0,14.8,69.7,1.2,0,2.2,91.5,8.5,90.1 +7.25,5,a-pcom-i3,2018-19,Brockton - Mary E. Baker School,440002,16.7,0,5.4,76.8,0,0,1.1,95.9,4.1,92.9 +3.75,3.75,a-pcom-i3,2018-19,Brockton - North Middle School,440410,9.1,0,0,88,0,0,2.9,70.5,29.5,41.3 +5.09375,5,a-pcom-i3,2018-19,Brockton - Oscar F Raymond,440078,13.9,0,0,83.7,0,0,2.4,95.9,4.1,76.1 +4.71875,4.72,a-pcom-i3,2018-19,Brockton - South Middle School,440415,13.1,0,0,84.9,0,0,2,74.1,25.9,66.9 +6.21875,5,a-pcom-i3,2018-19,Brockton - West Middle School,440420,16.7,1.5,1.5,80.1,0,0,0.3,69.6,30.4,68.8 +11.46875,5,a-pcom-i3,2018-19,Brooke Charter School (District) - Brooke Charter School,4280305,20,1.9,14,63.3,0,0,0.9,81.4,18.6,215 +1,1,a-pcom-i3,2018-19,Brookfield - Brookfield Elementary,450005,0,0,0,100,0,0,0,91.9,8.1,44 +5.25,5,a-pcom-i3,2018-19,Brookline - Brookline Early Education Program at Beacon,460001,3.9,6.5,0,83.2,0,6.5,0,100,0,15.5 +4.53125,4.53,a-pcom-i3,2018-19,Brookline - Brookline Early Education Program at Putterham,460002,10.4,4.1,0,85.5,0,0,0,94.6,5.4,18.7 +5.90625,5,a-pcom-i3,2018-19,Brookline - Brookline High,460505,8.6,5,5,81.1,0,0,0.3,65.2,34.8,318.7 +4.25,4.25,a-pcom-i3,2018-19,Brookline - Coolidge Corner School,460015,5.6,2.4,4.8,86.4,0,0.7,0,81.2,18.8,139.9 +4.96875,4.97,a-pcom-i3,2018-19,Brookline - Edith C Baker,460005,2.5,6.8,5.6,84.1,0,0,0.9,84.7,15.3,106.6 +5.75,5,a-pcom-i3,2018-19,Brookline - Heath,460025,9.4,3.8,5.1,81.6,0,0,0,85.7,14.3,78.1 +5,5,a-pcom-i3,2018-19,Brookline - John D Runkle,460045,6.7,5.3,3.1,84,0,1,0,86.7,13.3,105.3 +5.8125,5,a-pcom-i3,2018-19,Brookline - Lawrence,460030,6.1,7.4,4,81.4,0,0,1,80.4,19.6,95.9 +6.03125,5,a-pcom-i3,2018-19,Brookline - Michael Driscoll,460020,5,7.4,4.8,80.7,0,0,2.1,83.4,16.6,96.1 +5.875,5,a-pcom-i3,2018-19,Brookline - Pierce,460040,8.3,6.3,1.7,81.2,0,0,2.5,86.4,13.6,119.2 +2.90625,2.91,a-pcom-i3,2018-19,Brookline - The Lynch Center,460060,5.2,0,4.1,90.7,0,0,0,100,0,32.7 +4.5,4.5,a-pcom-i3,2018-19,Brookline - William H Lincoln,460035,4,3.8,6.6,85.6,0,0,0,85.4,14.6,99.7 +1.78125,1.78,a-pcom-i3,2018-19,Burlington - Burlington High,480505,0,2,3.3,94.3,0,0,0.4,76.2,23.8,151 +1,1,a-pcom-i3,2018-19,Burlington - Fox Hill,480007,0,0,0,98.2,0,0,1.8,86.5,13.5,55.1 +1,1,a-pcom-i3,2018-19,Burlington - Francis Wyman Elementary,480035,0,1.2,0,98.8,0,0,0,88.3,11.7,83.1 +1.25,1.25,a-pcom-i3,2018-19,Burlington - Marshall Simonds Middle,480303,1,3,0,96,0,0,0,82.4,17.6,99.2 +1.40625,1.41,a-pcom-i3,2018-19,Burlington - Memorial,480015,0,4.5,0,95.5,0,0,0,95.5,4.5,64.9 +1,1,a-pcom-i3,2018-19,Burlington - Pine Glen Elementary,480020,0,0.2,0,98.3,0,0,1.6,94.2,5.8,63.8 +17.375,5,a-pcom-i3,2018-19,Cambridge - Amigos School,490006,4.2,0,51.4,44.4,0,0,0,81.4,18.6,59.6 +8.15625,5,a-pcom-i3,2018-19,Cambridge - Cambridge Rindge and Latin,490506,13.9,5,6.1,73.9,0.3,0.3,0.3,61.9,38.1,294.2 +9.8125,5,a-pcom-i3,2018-19,Cambridge - Cambridge Street Upper School,490305,23.5,3.9,3.9,68.6,0,0,0,85.8,14.2,51 +11.375,5,a-pcom-i3,2018-19,Cambridge - Cambridgeport,490007,25.2,6.1,3.5,63.6,0,1.7,0,83.9,16.1,57.7 +11.0625,5,a-pcom-i3,2018-19,Cambridge - Fletcher/Maynard Academy,490090,22.9,8.9,0.7,64.6,0,1.5,1.5,83.7,16.3,67.8 +7.46875,5,a-pcom-i3,2018-19,Cambridge - Graham and Parks,490080,14.2,6,3,76.1,0.7,0,0,89.2,10.8,66.8 +4.59375,4.59,a-pcom-i3,2018-19,Cambridge - Haggerty,490020,5.9,5.9,2.9,85.3,0,0,0,89.4,10.6,50.9 +6.625,5,a-pcom-i3,2018-19,Cambridge - John M Tobin,490065,13.1,5,3,78.8,0,0,0,87.1,12.9,49.5 +5.625,5,a-pcom-i3,2018-19,Cambridge - Kennedy-Longfellow,490040,9,1.8,7.2,82,0,0,0,98.2,1.8,55.7 +10.75,5,a-pcom-i3,2018-19,Cambridge - King Open,490035,16.8,6.9,10.7,65.6,0,0,0,87.4,12.6,65.4 +4.53125,4.53,a-pcom-i3,2018-19,Cambridge - Maria L. Baldwin,490005,5.4,3.6,5.4,85.5,0,0,0,84.1,15.9,55.2 +11.9375,5,a-pcom-i3,2018-19,Cambridge - Martin Luther King Jr.,490030,12.9,18.9,4.3,61.8,2.1,0,0,86.3,13.7,46.6 +6.4375,5,a-pcom-i3,2018-19,Cambridge - Morse,490045,13.8,1.5,4.6,79.4,0.8,0,0,87.2,12.8,65.9 +5.1875,5,a-pcom-i3,2018-19,Cambridge - Peabody,490050,8.7,5.2,0.9,83.4,1.7,0,0,89.4,10.6,57.2 +16.09375,5,a-pcom-i3,2018-19,Cambridge - Putnam Avenue Upper School,490310,37.9,9.6,4,48.5,0,0,0,62.8,37.2,50.1 +10.4375,5,a-pcom-i3,2018-19,Cambridge - Rindge Avenue Upper School,490315,16.3,7.3,9.8,66.6,0,0,0,63.1,36.9,40.9 +8.15625,5,a-pcom-i3,2018-19,Cambridge - Vassal Lane Upper School,490320,15.1,3.8,7.2,73.9,0,0,0,77.4,22.6,52.8 +1.90625,1.91,a-pcom-i3,2018-19,Canton - Canton High,500505,1.9,1.9,1.3,93.9,0,0,1,66.5,33.5,104.4 +1,1,a-pcom-i3,2018-19,Canton - Dean S Luce,500020,1.7,0,0,98.3,0,0,0,95.3,4.7,59.9 +1.8125,1.81,a-pcom-i3,2018-19,Canton - John F Kennedy,500017,4.3,1.4,0,94.2,0,0,0,93,7,69.2 +3.21875,3.22,a-pcom-i3,2018-19,Canton - Lt Peter M Hansen,500012,2.9,1.5,2.9,89.7,0,0,2.9,90.5,9.5,68.2 +2.21875,2.22,a-pcom-i3,2018-19,Canton - Rodman Early Childhood Center,500010,0,3.6,3.6,92.9,0,0,0,92.9,7.1,28 +3.21875,3.22,a-pcom-i3,2018-19,Canton - Wm H Galvin Middle,500305,3.4,1.1,3.4,89.7,0,0,2.3,79.2,20.8,87.6 +1,1,a-pcom-i3,2018-19,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,99.4,0,0,0.6,81.8,18.2,33.3 +1,1,a-pcom-i3,2018-19,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,1,0,0,99,0,0,0,53.4,46.6,102.4 +1.34375,1.34,a-pcom-i3,2018-19,Carlisle - Carlisle School,510025,1,3.3,0,95.7,0,0,0,84,16,100.1 +1.46875,1.47,a-pcom-i3,2018-19,Carver - Carver Elementary School,520015,0.5,2.1,1,95.3,1,0,0,95.8,4.2,96.2 +2.21875,2.22,a-pcom-i3,2018-19,Carver - Carver Middle/High School,520405,4.4,0,0.9,92.9,0,0.9,0.9,70.9,29.1,113.2 +1,1,a-pcom-i3,2018-19,Central Berkshire - Becket Washington School,6350005,0,0,0,100,0,0,0,100,0,18.3 +1,1,a-pcom-i3,2018-19,Central Berkshire - Craneville,6350025,0,0,0,100,0,0,0,89.2,10.8,46.1 +1,1,a-pcom-i3,2018-19,Central Berkshire - Kittredge,6350035,0,0,0,100,0,0,0,100,0,24.8 +1,1,a-pcom-i3,2018-19,Central Berkshire - Nessacus Regional Middle School,6350305,0,0,0,100,0,0,0,77.7,22.3,49.3 +1,1,a-pcom-i3,2018-19,Central Berkshire - Wahconah Regional High,6350505,0,0,0,97,0,0,3,66.5,33.5,67.5 +1.6875,1.69,a-pcom-i3,2018-19,Chelmsford - Byam School,560030,1.1,4.3,0,94.6,0,0,0,90.2,9.8,92.1 +1,1,a-pcom-i3,2018-19,Chelmsford - Center Elementary School,560005,0,0,1.4,97.1,0,0,1.4,97.9,2.1,70.2 +2.03125,2.03,a-pcom-i3,2018-19,Chelmsford - Charles D Harrington,560025,1.5,2.1,2.9,93.5,0,0,0,94.1,5.9,68 +1.34375,1.34,a-pcom-i3,2018-19,Chelmsford - Chelmsford High,560505,0,2.1,2.1,95.7,0,0,0,65.2,34.8,187.6 +1,1,a-pcom-i3,2018-19,Chelmsford - Col Moses Parker School,560305,1.1,1.9,0,97,0,0,0,83.6,16.4,105.2 +3.5,3.5,a-pcom-i3,2018-19,Chelmsford - Community Education Center,560001,2.8,8.4,0,88.8,0,0,0,91.6,8.4,35.7 +1.125,1.12,a-pcom-i3,2018-19,Chelmsford - McCarthy Middle School,560310,0.9,2.7,0,96.4,0,0,0,83.1,16.9,110.2 +1,1,a-pcom-i3,2018-19,Chelmsford - South Row,560015,0,1.4,1.4,97.2,0,0,0,97.9,2.1,72.2 +5.90625,5,a-pcom-i3,2018-19,Chelsea - Chelsea High,570505,0.8,1.4,16.1,81.1,0,0.6,0,70,30,171.8 +4.28125,4.28,a-pcom-i3,2018-19,Chelsea - Chelsea Opportunity Academy,570515,0,0,13.8,86.3,0,0,0,33.8,66.3,8 +4.90625,4.91,a-pcom-i3,2018-19,Chelsea - Clark Avenue School,570050,1.5,0,14.2,84.3,0,0,0,78.3,21.7,66.4 +4.78125,4.78,a-pcom-i3,2018-19,Chelsea - Edgar A Hooks Elementary,570030,1.7,0.7,11.4,84.7,0,0,1.7,83.2,16.8,60.3 +4.8125,4.81,a-pcom-i3,2018-19,Chelsea - Eugene Wright Science and Technology Academy,570045,1.8,1.8,9.9,84.6,0,1.8,0,79.2,20.8,54.9 +5.40625,5,a-pcom-i3,2018-19,Chelsea - Frank M Sokolowski Elementary,570040,1.8,1.8,13.8,82.7,0,0,0,88.3,11.7,56.9 +6.34375,5,a-pcom-i3,2018-19,Chelsea - George F. Kelly Elementary,570035,1.9,1.9,16.5,79.7,0,0,0,87.8,12.2,53.6 +6.375,5,a-pcom-i3,2018-19,Chelsea - Joseph A. Browne School,570055,2,5.9,8.5,79.6,0,2,2,81.6,18.4,50.8 +7.78125,5,a-pcom-i3,2018-19,Chelsea - Shurtleff Early Childhood,570003,1.1,0,23.8,75.1,0,0,0,93.9,6.1,124 +5.71875,5,a-pcom-i3,2018-19,Chelsea - William A Berkowitz Elementary,570025,0,5.1,11.5,81.7,0,1.7,0,87.2,12.8,58.9 +1,1,a-pcom-i3,2018-19,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,0,0,0,100,0,0,0,91.2,8.8,27.3 +1.65625,1.66,a-pcom-i3,2018-19,Chicopee - Barry,610003,1.7,1.7,2,94.7,0,0,0,96.3,3.7,60.2 +2.1875,2.19,a-pcom-i3,2018-19,Chicopee - Belcher,610010,2.3,0,4.7,93,0,0,0,94.4,5.6,42.8 +1.1875,1.19,a-pcom-i3,2018-19,Chicopee - Bellamy Middle,610305,0.9,0,1.9,96.2,0,0.9,0,79.7,20.3,106.2 +2.625,2.63,a-pcom-i3,2018-19,Chicopee - Bowe,610015,3.2,1.6,3.6,91.6,0,0,0,91.6,8.4,61.5 +1,1,a-pcom-i3,2018-19,Chicopee - Bowie,610020,2.1,0,0.5,97.4,0,0,0,89.2,10.8,48.2 +5.0625,5,a-pcom-i3,2018-19,Chicopee - Chicopee Academy,610021,13.5,0,2.8,83.8,0,0,0,64.6,35.4,36.4 +1.59375,1.59,a-pcom-i3,2018-19,Chicopee - Chicopee Comprehensive High School,610510,0.6,0.6,3.8,94.9,0,0,0,56.5,43.5,156.9 +3.4375,3.44,a-pcom-i3,2018-19,Chicopee - Chicopee High,610505,2.4,0,7.8,89,0.8,0,0,71.3,28.7,123.3 +2.65625,2.66,a-pcom-i3,2018-19,Chicopee - Dupont Middle,610310,1,1.5,5,91.5,0,0,1,76.3,23.7,100.1 +2.625,2.63,a-pcom-i3,2018-19,Chicopee - Fairview Elementary,610050,0,0,8.4,91.6,0,0,0,90.6,9.4,83.3 +2.71875,2.72,a-pcom-i3,2018-19,Chicopee - Gen John J Stefanik,610090,0,0,8.7,91.3,0,0,0,92.5,7.5,69.1 +1,1,a-pcom-i3,2018-19,Chicopee - Lambert-Lavoie,610040,2.2,0,0,97.8,0,0,0,90.4,9.6,46.3 +1.65625,1.66,a-pcom-i3,2018-19,Chicopee - Litwin,610022,0,1.8,3.6,94.7,0,0,0,94.3,5.7,56.3 +1,1,a-pcom-i3,2018-19,Chicopee - Streiber Memorial School,610065,0,0,0.5,99.5,0,0,0,99.4,0.6,36 +1.28125,1.28,a-pcom-i3,2018-19,Chicopee - Szetela Early Childhood Center,610001,0,0,4.1,95.9,0,0,0,93.9,6.1,49.2 +2.09375,2.09,a-pcom-i3,2018-19,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,1.7,0,5,93.3,0,0,0,70.8,29.2,60 +13.59375,5,a-pcom-i3,2018-19,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,29.7,4.6,6.9,56.5,0,0,2.3,63.4,36.6,43.7 +9.4375,5,a-pcom-i3,2018-19,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,18.4,4.7,7.1,69.8,0,0,0,62.2,37.8,42.4 +8.28125,5,a-pcom-i3,2018-19,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,16.9,2.4,7.2,73.5,0,0,0,63.9,36.1,41.5 +1,1,a-pcom-i3,2018-19,Clarksburg - Clarksburg Elementary,630010,0,0,0,100,0,0,0,86.4,13.6,30.8 +1.5625,1.56,a-pcom-i3,2018-19,Clinton - Clinton Elementary,640050,0,0,3.5,95,0,0,1.5,92,8,112.6 +2.5625,2.56,a-pcom-i3,2018-19,Clinton - Clinton Middle School,640305,1.3,1.3,2.7,91.8,1.3,0,1.7,82.9,17.1,77.6 +1.59375,1.59,a-pcom-i3,2018-19,Clinton - Clinton Senior High,640505,0,0,3.4,94.9,0,0,1.7,62.7,37.3,58.5 +16.21875,5,a-pcom-i3,2018-19,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,44.6,4.3,1.4,48.1,0,1.4,0,74.1,25.9,69.4 +1,1,a-pcom-i3,2018-19,Cohasset - Cohasset Middle/High School,650505,0,0,1.9,98.1,0,0,0,65.6,34.4,103.2 +1,1,a-pcom-i3,2018-19,Cohasset - Deer Hill,650005,0,0,0,100,0,0,0,93.7,6.3,47.8 +1,1,a-pcom-i3,2018-19,Cohasset - Joseph Osgood,650010,2,0,0,98,0,0,0,92.8,7.2,50.3 +7.1875,5,a-pcom-i3,2018-19,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,4.1,5.7,11.8,77,0,0,1.5,85,15,67.8 +15.25,5,a-pcom-i3,2018-19,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,19.2,3.7,19.2,51.2,1.5,0,5.2,62.2,37.8,67.6 +4.78125,4.78,a-pcom-i3,2018-19,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,0,0,14.6,84.7,0,0,0.6,88.8,11.2,56.4 +7.40625,5,a-pcom-i3,2018-19,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,4.8,1.6,16.9,76.3,0,0,0.4,77.6,22.4,63.1 +7.3125,5,a-pcom-i3,2018-19,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,0,0,21.2,76.6,0,0,2.2,77,23,57.6 +2.40625,2.41,a-pcom-i3,2018-19,Concord - Alcott,670005,2.6,2.6,2.6,92.3,0,0,0,90.5,8.2,77.7 +2.9375,2.94,a-pcom-i3,2018-19,Concord - Concord Middle,670305,3.2,4.1,1.1,90.6,0,1.1,0,74.4,25.6,93.1 +1.28125,1.28,a-pcom-i3,2018-19,Concord - Thoreau,670020,1.4,2.8,0,95.9,0,0,0,94.6,5.4,72.5 +2.34375,2.34,a-pcom-i3,2018-19,Concord - Willard,670030,1.3,2.5,3.7,92.5,0,0,0,93.3,6.7,79.1 +1.71875,1.72,a-pcom-i3,2018-19,Concord-Carlisle - Concord Carlisle High,6400505,1.2,1.2,3.2,94.5,0,0,0,60.8,39.2,172 +14.1875,5,a-pcom-i3,2018-19,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,27.8,1.5,13.2,54.6,1.5,0,1.5,63.7,36.3,68.3 +1,1,a-pcom-i3,2018-19,Conway - Conway Grammar,680005,0,0,0,100,0,0,0,89,11,36.3 +1,1,a-pcom-i3,2018-19,Danvers - Danvers High,710505,0,0.8,1.7,97.5,0,0,0,63.8,36.2,119.3 +1,1,a-pcom-i3,2018-19,Danvers - Great Oak,710015,0,0,0,100,0,0,0,97.6,2.4,41.4 +1,1,a-pcom-i3,2018-19,Danvers - Highlands,710010,0,0,0,100,0,0,0,87.4,12.6,47.5 +1,1,a-pcom-i3,2018-19,Danvers - Holten Richmond Middle School,710305,0,1,1,97.1,0,0,1,81,19,105 +1,1,a-pcom-i3,2018-19,Danvers - Ivan G Smith,710032,0,0,0,100,0,0,0,93.4,6.6,38.4 +1,1,a-pcom-i3,2018-19,Danvers - Riverside,710030,0,0.8,1.5,97.7,0,0,0,92.9,7.1,67.9 +1,1,a-pcom-i3,2018-19,Danvers - Willis E Thorpe,710045,0,0,3.2,96.8,0,0,0,91.3,8.7,49.4 +1,1,a-pcom-i3,2018-19,Dartmouth - Andrew B. Cushman School,720005,0,0,0,100,0,0,0,98.7,1.3,26 +1,1,a-pcom-i3,2018-19,Dartmouth - Dartmouth High,720505,0,0,0,99,0,0,1,65.4,34.6,105.2 +1,1,a-pcom-i3,2018-19,Dartmouth - Dartmouth Middle,720050,0.9,0,0,98.2,0,0,0.9,65.3,34.7,112.3 +1,1,a-pcom-i3,2018-19,Dartmouth - George H Potter,720030,1.8,0,0,98.2,0,0,0,94.6,5.4,56 +1,1,a-pcom-i3,2018-19,Dartmouth - James M. Quinn School,720040,0,0,0,100,0,0,0,96,4,91.3 +1,1,a-pcom-i3,2018-19,Dartmouth - Joseph Demello,720015,0,0,0,100,0,0,0,95.1,4.9,40.8 +1,1,a-pcom-i3,2018-19,Dedham - Avery,730010,0,0,0,100,0,0,0,90.9,9.1,58.7 +2.46875,2.47,a-pcom-i3,2018-19,Dedham - Dedham High,730505,0.6,3.1,4.2,92.1,0,0,0,71.8,28.2,96.3 +1.9375,1.94,a-pcom-i3,2018-19,Dedham - Dedham Middle School,730305,3.1,0,2.1,93.8,0,0,1,79.7,20.3,97.2 +1,1,a-pcom-i3,2018-19,Dedham - Early Childhood Center,730005,0,0,0,98.2,0,0,1.8,98.2,1.8,56.6 +1,1,a-pcom-i3,2018-19,Dedham - Greenlodge,730025,2.4,0,0,97.6,0,0,0,94.3,5.7,41.9 +1,1,a-pcom-i3,2018-19,Dedham - Oakdale,730030,2.7,0,0,97.3,0,0,0,95.5,4.5,36.6 +1,1,a-pcom-i3,2018-19,Dedham - Riverdale,730045,0,0,0,100,0,0,0,92.4,7.6,35.2 +1,1,a-pcom-i3,2018-19,Deerfield - Deerfield Elementary,740015,0,0,0,100,0,0,0,90.6,9.4,84.4 +1.6875,1.69,a-pcom-i3,2018-19,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,2.5,0,2.1,94.6,0,0,0.8,64,36,121.4 +1,1,a-pcom-i3,2018-19,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,0,0,2.6,97.4,0,0,0,94.4,5.6,68.4 +1,1,a-pcom-i3,2018-19,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,0,0,0,100,0,0,0,94.4,5.6,53.1 +1.875,1.88,a-pcom-i3,2018-19,Dennis-Yarmouth - Mattacheese Middle School,6450305,2.4,0,2.3,94,0,0,1.4,80.9,19.1,72.6 +1.3125,1.31,a-pcom-i3,2018-19,Dennis-Yarmouth - N H Wixon Innovation School,6450050,0,0,2.7,95.8,0,0,1.5,93.5,6.5,66.4 +1,1,a-pcom-i3,2018-19,Dennis-Yarmouth - Station Avenue Elementary,6450025,0.9,0,1.7,97.4,0,0,0,88.2,11.8,57.6 +1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Dighton Elementary,6500005,0.3,0,0,99.7,0,0,0,94.9,5.1,72 +1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Dighton Middle School,6500305,0.4,0,0,97.4,0,0,2.2,72.3,27.7,45.8 +1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,1.2,0,1,97.9,0,0,0,64.9,35.1,104.2 +1.4375,1.44,a-pcom-i3,2018-19,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0.3,0,2.9,95.4,0,0,1.4,82.9,17.1,69.2 +1,1,a-pcom-i3,2018-19,Dighton-Rehoboth - Palmer River,6500010,0.3,0,0,99.7,0,0,0,96.9,3.1,70.5 +1,1,a-pcom-i3,2018-19,Douglas - Douglas Elementary School,770015,0,0,0,100,0,0,0,89.4,10.6,55.6 +1,1,a-pcom-i3,2018-19,Douglas - Douglas High School,770505,0,1.6,0,98.4,0,0,0,67.2,32.8,63.5 +1,1,a-pcom-i3,2018-19,Douglas - Douglas Middle School,770305,0,0,0,100,0,0,0,84.5,15.5,41.9 +1,1,a-pcom-i3,2018-19,Douglas - Douglas Primary School,770005,0,0,0,100,0,0,0,98.3,1.7,34.3 +1.625,1.63,a-pcom-i3,2018-19,Dover - Chickering,780005,1.5,0,3.7,94.8,0,0,0,91.1,8.9,81.7 +1.46875,1.47,a-pcom-i3,2018-19,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0.3,0.8,3.6,95.3,0,0,0,64.7,35.3,97.8 +2.71875,2.72,a-pcom-i3,2018-19,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,4.2,1.3,3.2,91.3,0,0,0,77.4,22.6,77.9 +1,1,a-pcom-i3,2018-19,Dracut - Brookside Elementary,790035,0,0,1.1,98.9,0,0,0,86,14,46.1 +1,1,a-pcom-i3,2018-19,Dracut - Dracut Senior High,790505,0,1.6,0,98.4,0,0,0,64.6,35.4,92.9 +1,1,a-pcom-i3,2018-19,Dracut - George H. Englesby Elementary School,790045,0,0,0,100,0,0,0,97.7,2.3,46.9 +1,1,a-pcom-i3,2018-19,Dracut - Greenmont Avenue,790030,0,0,0,100,0,0,0,93.4,6.6,28.8 +1,1,a-pcom-i3,2018-19,Dracut - Joseph A Campbell Elementary,790020,0,0.7,0,99.3,0,0,0,96.7,3.3,67 +1.0625,1.06,a-pcom-i3,2018-19,Dracut - Justus C. Richardson Middle School,790410,1.1,0.6,1.7,96.6,0,0,0,84,16,87.7 +18.34375,5,a-pcom-i3,2018-19,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,42.9,0,15.9,41.3,0,0,0,93.7,6.3,31.5 +1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Charlton Elementary,6580020,0,0,0,100,0,0,0,97.9,2.1,48.7 +1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,1.3,98.7,0,0,0,73.2,26.8,74.6 +1.59375,1.59,a-pcom-i3,2018-19,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,2.5,94.9,2.5,0,0,97.5,2.5,39.6 +1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,1.6,98.4,0,0,0,76.3,23.7,61.1 +1.15625,1.16,a-pcom-i3,2018-19,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,96.3,0,0,3.7,94.4,5.6,54 +1.59375,1.59,a-pcom-i3,2018-19,Dudley-Charlton Reg - Mason Road School,6580010,0,0,2.6,94.9,2.6,0,0,94.9,5.1,39.1 +1,1,a-pcom-i3,2018-19,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,2.1,97.9,0,0,0,56.2,43.8,95.4 +1,1,a-pcom-i3,2018-19,Duxbury - Alden School,820004,0,0,0,100,0,0,0,89.6,10.4,77.9 +1,1,a-pcom-i3,2018-19,Duxbury - Chandler Elementary,820006,0,1.1,1.1,97.8,0,0,0,97.9,2.1,90.7 +1,1,a-pcom-i3,2018-19,Duxbury - Duxbury High,820505,1.6,1.5,0,96.9,0,0,0,65.6,34.4,124.5 +1,1,a-pcom-i3,2018-19,Duxbury - Duxbury Middle,820305,0,1.1,0,98.9,0,0,0,78.5,21.5,72.6 +1,1,a-pcom-i3,2018-19,East Bridgewater - Central,830005,1.3,0,0,98.7,0,0,0,94.8,5.2,76.7 +1,1,a-pcom-i3,2018-19,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,1,0,99,0,0,0,71.4,28.6,104.3 +1,1,a-pcom-i3,2018-19,East Bridgewater - Gordon W. Mitchell School,830010,0,0,0,100,0,0,0,86.5,13.5,81.5 +2.15625,2.16,a-pcom-i3,2018-19,East Longmeadow - Birchland Park,870305,4.1,1.4,1.4,93.1,0,0,0,70.2,29.8,73 +3,3,a-pcom-i3,2018-19,East Longmeadow - East Longmeadow High,870505,2.9,1.8,4.2,90.4,0,0,0.7,65.3,34.7,87.1 +1,1,a-pcom-i3,2018-19,East Longmeadow - Mapleshade,870010,0,0,0,100,0,0,0,83.4,16.6,48.1 +1.90625,1.91,a-pcom-i3,2018-19,East Longmeadow - Meadow Brook,870013,0,0,4,93.9,0,0,2.1,96.8,3.2,94.4 +1.1875,1.19,a-pcom-i3,2018-19,East Longmeadow - Mountain View,870015,0,0,3.8,96.2,0,0,0,89.6,10.4,48 +1,1,a-pcom-i3,2018-19,Eastham - Eastham Elementary,850005,0,0,0,100,0,0,0,94.8,5.2,40.7 +1,1,a-pcom-i3,2018-19,Easthampton - Center School,860005,0,0,1.9,98.1,0,0,0,89.3,10.7,26.7 +1.125,1.12,a-pcom-i3,2018-19,Easthampton - Easthampton High,860505,0,0,3.6,96.4,0,0,0,63.1,36.9,50.4 +1,1,a-pcom-i3,2018-19,Easthampton - Maple,860010,0,0,2.2,97.8,0,0,0,95.4,4.6,46.4 +1.5,1.5,a-pcom-i3,2018-19,Easthampton - Neil A Pepin,860020,0,0,4.8,95.2,0,0,0,94.3,5.7,31.3 +1.15625,1.16,a-pcom-i3,2018-19,Easthampton - White Brook Middle School,860305,1.8,0,0,96.3,0,0,1.8,74.3,25.7,54.5 +1,1,a-pcom-i3,2018-19,Easton - Center School,880003,0.7,0,0,99.3,0,0,0,95.1,4.9,39.4 +1.21875,1.22,a-pcom-i3,2018-19,Easton - Easton Middle School,880405,0,0,2.9,96.1,0,0,1,80.5,19.5,102.1 +1,1,a-pcom-i3,2018-19,Easton - Moreau Hall,880020,0,0,0,100,0,0,0,91.6,8.4,32.6 +2.59375,2.59,a-pcom-i3,2018-19,Easton - Oliver Ames High,880505,2.3,1.5,2.9,91.7,0,0,1.5,61.9,38.1,130.1 +1,1,a-pcom-i3,2018-19,Easton - Parkview Elementary,880015,0.8,0,2,97.2,0,0,0,93.7,6.3,49.3 +1,1,a-pcom-i3,2018-19,Easton - Richardson Olmsted School,880025,0.6,0,1.1,97.2,0,0,1.1,91.4,8.6,93.6 +1.78125,1.78,a-pcom-i3,2018-19,Edgartown - Edgartown Elementary,890005,1.5,0,3,94.3,0,0,1.2,83.6,16.4,82.2 +18.3125,5,a-pcom-i3,2018-19,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,42,1.9,10.7,41.4,0,0,3.9,51.6,48.4,51.4 +1,1,a-pcom-i3,2018-19,Erving - Erving Elementary,910030,0,0,0,97.5,0,0,2.5,88.8,11.2,40.3 +1,1,a-pcom-i3,2018-19,Essex North Shore Agricultural and Technical School District - Essex North Shore Agricultural and Technical School,8170505,0.5,1.1,0.5,97.9,0,0,0,58.7,41.3,187.6 +1,1,a-pcom-i3,2018-19,Everett - Adams School,930003,0,0,0,100,0,0,0,100,0,20.4 +6.78125,5,a-pcom-i3,2018-19,Everett - Devens School,930030,9.3,0,9.3,78.3,0,0,3.1,45.8,54.2,32.3 +4.65625,4.66,a-pcom-i3,2018-19,Everett - Everett High,930505,4.4,3.9,4.9,85.1,0.4,0.5,0.8,55.4,44.6,206.6 +2.90625,2.91,a-pcom-i3,2018-19,Everett - George Keverian School,930028,3,0.3,4.5,90.7,0,1.5,0,84.3,15.7,66.9 +2.21875,2.22,a-pcom-i3,2018-19,Everett - Lafayette School,930038,2.4,2.4,2.4,92.9,0,0,0,83.5,16.5,85.1 +1.28125,1.28,a-pcom-i3,2018-19,Everett - Madeline English School,930018,0,2,2.2,95.9,0,0,0,89.6,10.4,82 +1.40625,1.41,a-pcom-i3,2018-19,Everett - Parlin School,930058,0,1.7,2.8,95.5,0,0,0,84.1,15.9,71.5 +3.28125,3.28,a-pcom-i3,2018-19,Everett - Sumner G. Whittier School,930010,7,0,3.5,89.5,0,0,0,88,12,57.2 +2.625,2.63,a-pcom-i3,2018-19,Everett - Webster School,930015,0,2.1,6.3,91.6,0,0,0,94,6,94.9 +7.03125,5,a-pcom-i3,2018-19,Excel Academy Charter (District) - Excel Academy Charter School,4100205,4.2,0.8,17,77.5,0,0,0.6,75,25,180.6 +1,1,a-pcom-i3,2018-19,Fairhaven - East Fairhaven,940010,0.5,0,0,99.5,0,0,0,96.6,3.4,51.8 +1,1,a-pcom-i3,2018-19,Fairhaven - Fairhaven High,940505,1.6,0,0,97.1,0,0,1.3,60,40,78.4 +1.46875,1.47,a-pcom-i3,2018-19,Fairhaven - Hastings Middle,940305,0.5,0,0,95.3,0,0,4.2,71.9,28.1,53.3 +1,1,a-pcom-i3,2018-19,Fairhaven - Leroy Wood,940030,0.5,0,0,99.5,0,0,0,93.1,6.9,54.5 +2.375,2.37,a-pcom-i3,2018-19,Fall River - B M C Durfee High,950505,2.5,1.2,2.7,92.4,0,0,1.2,64.1,35.9,257.2 +1.0625,1.06,a-pcom-i3,2018-19,Fall River - Carlton M. Viveiros Elementary School,950009,1.3,0,2.1,96.6,0,0,0,86.2,13.8,76.6 +3,3,a-pcom-i3,2018-19,Fall River - Henry Lord Community School,950017,1.1,0,7.5,90.4,0,0,1.1,89.4,10.6,93.8 +2.1875,2.19,a-pcom-i3,2018-19,Fall River - James Tansey,950140,0,0,3.5,93,0,0,3.5,87.7,12.3,28.4 +1.84375,1.84,a-pcom-i3,2018-19,Fall River - John J Doran,950045,0,0,4.4,94.1,0,0,1.5,84.9,15.1,68.3 +3.21875,3.22,a-pcom-i3,2018-19,Fall River - Letourneau Elementary School,950013,7.1,1.6,1.6,89.7,0,0,0,89.7,10.3,63 +2.6875,2.69,a-pcom-i3,2018-19,Fall River - Mary Fonseca Elementary School,950011,1.2,0,4.9,91.4,0,0,2.5,91.4,8.6,81 +2.3125,2.31,a-pcom-i3,2018-19,Fall River - Matthew J Kuss Middle,950320,2.3,1.2,1.2,92.6,0,0,2.8,67,33,85.9 +3.21875,3.22,a-pcom-i3,2018-19,Fall River - Morton Middle,950315,0,5.1,5.1,89.7,0,0,0,84.4,15.6,78 +1,1,a-pcom-i3,2018-19,Fall River - North End Elementary,950005,1.2,1.2,0,97.6,0,0,0,90.2,9.8,82.8 +3.46875,3.47,a-pcom-i3,2018-19,Fall River - Resiliency Preparatory Academy,950525,6.1,0,2.8,88.9,0,0,2.2,41.9,58.1,36.2 +1,1,a-pcom-i3,2018-19,Fall River - Samuel Watson,950145,0,0,0,100,0,0,0,95.4,4.6,32.6 +1.125,1.12,a-pcom-i3,2018-19,Fall River - Spencer Borden,950130,1.2,0,1.2,96.4,0,0,1.2,90.5,9.5,83.9 +3.25,3.25,a-pcom-i3,2018-19,Fall River - Stone PK-12 School,950340,6.8,0,0,89.6,0,0,3.6,67.7,32.3,27.9 +3.1875,3.19,a-pcom-i3,2018-19,Fall River - Talbot Innovation School,950305,2.9,0,7.3,89.8,0,0,0,75.6,24.4,68.5 +1,1,a-pcom-i3,2018-19,Fall River - William S Greene,950065,0,1.2,1.2,97.7,0,0,0,96.5,3.5,86.4 +2.5,2.5,a-pcom-i3,2018-19,Falmouth - East Falmouth Elementary,960005,6,0,0,92,0,0,2,84.9,15.1,49.8 +1.46875,1.47,a-pcom-i3,2018-19,Falmouth - Falmouth High,960505,1.9,0.9,1.9,95.3,0,0,0,63.7,36.3,107.9 +2.5625,2.56,a-pcom-i3,2018-19,Falmouth - Lawrence,960405,5.7,2.5,0,91.8,0,0,0,80.4,19.6,79.1 +1,1,a-pcom-i3,2018-19,Falmouth - Morse Pond School,960305,1.4,0,0,97.3,0,0,1.4,87.1,12.9,73.6 +1,1,a-pcom-i3,2018-19,Falmouth - Mullen-Hall,960020,0.8,0,1.6,97.5,0,0,0,92.6,7.4,61.1 +1.875,1.88,a-pcom-i3,2018-19,Falmouth - North Falmouth Elementary,960030,4,0,2,94,0,0,0,89,11,50.3 +2.53125,2.53,a-pcom-i3,2018-19,Falmouth - Teaticket,960015,4.9,0,1.6,91.9,0,0,1.6,96.7,3.3,61.8 +1,1,a-pcom-i3,2018-19,Farmington River Reg - Farmington River Elementary,6620020,0,0,0,100,0,0,0,86.5,13.5,25.9 +4.625,4.62,a-pcom-i3,2018-19,Fitchburg - Arthur M Longsjo Middle School,970315,2.5,0,9.8,85.2,0,0,2.5,68,32,81.3 +1.875,1.88,a-pcom-i3,2018-19,Fitchburg - Crocker Elementary,970016,3,0,3,94,0,0,0,94,6,66.2 +5.40625,5,a-pcom-i3,2018-19,Fitchburg - Fitchburg High,970505,3.1,0.8,12.7,82.7,0,0,0.8,62.3,37.7,130.9 +8.28125,5,a-pcom-i3,2018-19,Fitchburg - Goodrich Academy,970510,6.6,0,13.2,73.5,0,0,6.6,80.1,19.9,15.1 +3.9375,3.94,a-pcom-i3,2018-19,Fitchburg - McKay Arts Academy,970340,1,0,11.5,87.4,0,0,0,84.3,15.7,95.4 +2.46875,2.47,a-pcom-i3,2018-19,Fitchburg - Memorial Middle School,970048,4.1,0,3.8,92.1,0,0,0,78.4,21.6,73.8 +2.53125,2.53,a-pcom-i3,2018-19,Fitchburg - Reingold Elementary,970043,1.4,1.4,4.1,91.9,0,0,1.4,89.1,10.9,73.8 +1.875,1.88,a-pcom-i3,2018-19,Fitchburg - South Street Elementary,970060,1,0,5,94,0,0,0,90.9,9.1,99.2 +1,1,a-pcom-i3,2018-19,Florida - Abbott Memorial,980005,0,0,0,100,0,0,0,87.9,12.1,21.5 +1.90625,1.91,a-pcom-i3,2018-19,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,3,3.1,93.9,0,0,0,73.7,26.3,32.2 +1,1,a-pcom-i3,2018-19,Foxborough - Charles Taylor Elementary,990050,0,0,1.6,98.4,0,0,0,96.8,3.2,31.6 +1,1,a-pcom-i3,2018-19,Foxborough - Foxborough High,990505,0.9,0,0,99.1,0,0,0,66.5,33.5,106.9 +1.15625,1.16,a-pcom-i3,2018-19,Foxborough - John J Ahern,990405,0,3.7,0,96.3,0,0,0,81.1,18.9,108.3 +1,1,a-pcom-i3,2018-19,Foxborough - Mabelle M Burrell,990015,0,2.4,0,97.6,0,0,0,97.6,2.4,42 +1,1,a-pcom-i3,2018-19,Foxborough - Vincent M Igo Elementary,990020,1.9,0,0.5,97.6,0,0,0,93.4,6.6,53.2 +3.34375,3.34,a-pcom-i3,2018-19,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,3.5,0.6,6.6,89.3,0,0,0,78.9,21.1,173.5 +11.34375,5,a-pcom-i3,2018-19,Framingham - Barbieri Elementary,1000035,0,1.1,35.3,63.7,0,0,0,92.3,7.7,93 +6.25,5,a-pcom-i3,2018-19,Framingham - Brophy,1000006,0,0,20,80,0,0,0,93.4,6.6,70.1 +4.03125,4.03,a-pcom-i3,2018-19,Framingham - Cameron Middle School,1000302,4.9,1.2,6.8,87.1,0,0,0,78,22,82.1 +1.71875,1.72,a-pcom-i3,2018-19,Framingham - Charlotte A Dunning,1000007,0,0,5.5,94.5,0,0,0,90.3,9.7,72.1 +3.59375,3.59,a-pcom-i3,2018-19,Framingham - Framingham High School,1000515,2.4,1.7,7.4,88.5,0,0,0,70.8,29.2,230.2 +3.625,3.62,a-pcom-i3,2018-19,Framingham - Fuller Middle,1000305,2.9,0,8.7,88.4,0,0,0,75.4,24.6,77.2 +3.625,3.62,a-pcom-i3,2018-19,Framingham - Hemenway,1000015,1.3,1.3,8.9,88.4,0,0,0,94.5,5.5,74.9 +6.71875,5,a-pcom-i3,2018-19,Framingham - Juniper Hill School,1000001,1,3.3,17.3,78.5,0,0,0,95.1,4.9,61.4 +3.6875,3.69,a-pcom-i3,2018-19,Framingham - King Elementary School,1000005,4.4,1.3,4.7,88.2,0,0,1.4,85,15,45.8 +1.375,1.38,a-pcom-i3,2018-19,Framingham - Mary E Stapleton Elementary,1000045,1.5,0,2.9,95.6,0,0,0,88,12,68.4 +3.4375,3.44,a-pcom-i3,2018-19,Framingham - Miriam F McCarthy School,1000050,1.2,5.8,4.1,89,0,0,0,94,6,86 +5.03125,5,a-pcom-i3,2018-19,Framingham - Potter Road,1000039,1.7,0.8,13.6,83.9,0,0,0,92.8,7.2,58.9 +4.21875,4.22,a-pcom-i3,2018-19,Framingham - Walsh Middle,1000310,2.5,1.3,9.7,86.5,0,0,0,79.1,20.9,96.8 +2.25,2.25,a-pcom-i3,2018-19,Framingham - Woodrow Wilson,1000055,0,1.3,5.9,92.8,0,0,0,92.6,7.4,76.5 +4.96875,4.97,a-pcom-i3,2018-19,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,4.8,0,6.3,84.1,0,0,4.8,65.1,34.9,63.1 +1,1,a-pcom-i3,2018-19,Franklin - Annie Sullivan Middle School,1010040,0,0,0,100,0,0,0,84.9,15.1,52.8 +1,1,a-pcom-i3,2018-19,Franklin - Davis Thayer,1010035,0,0,0,100,0,0,0,96.4,3.6,37 +2.3125,2.31,a-pcom-i3,2018-19,Franklin - Franklin Early Childhood Development Center,1010003,0,7.4,0,92.6,0,0,0,100,0,26.9 +1,1,a-pcom-i3,2018-19,Franklin - Franklin High,1010505,0,1.7,0,98.3,0,0,0,68.6,31.4,178.6 +1,1,a-pcom-i3,2018-19,Franklin - Helen Keller Elementary,1010012,0,0,0,100,0,0,0,89.6,10.4,51.5 +1,1,a-pcom-i3,2018-19,Franklin - Horace Mann,1010405,0,0,0,100,0,0,0,81.3,18.7,58.8 +1.40625,1.41,a-pcom-i3,2018-19,Franklin - J F Kennedy Memorial,1010013,0,2.2,2.2,95.5,0,0,0,96.6,3.4,44.5 +1,1,a-pcom-i3,2018-19,Franklin - Jefferson Elementary,1010010,0,2.1,0,97.9,0,0,0,98.9,1.1,46.5 +1,1,a-pcom-i3,2018-19,Franklin - Oak Street Elementary,1010030,0,0,2,98,0,0,0,95.4,4.6,50.4 +1,1,a-pcom-i3,2018-19,Franklin - Parmenter,1010032,0,0,0,100,0,0,0,91.6,8.4,47.4 +1,1,a-pcom-i3,2018-19,Franklin - Remington Middle,1010310,1.7,0,0,98.3,0,0,0,75.9,24.1,58.2 +1.03125,1.03,a-pcom-i3,2018-19,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,1.3,0,0.7,96.7,0,0,1.3,39.1,60.9,76.7 +1.03125,1.03,a-pcom-i3,2018-19,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,3.3,96.7,0,0,0,64.2,35.8,90.6 +1,1,a-pcom-i3,2018-19,Freetown-Lakeville - Assawompset Elementary School,6650002,0,0,0,100,0,0,0,93.6,6.4,46.9 +1,1,a-pcom-i3,2018-19,Freetown-Lakeville - Freetown Elementary School,6650001,1.8,0,0,98.2,0,0,0,98.2,1.8,54.9 +1,1,a-pcom-i3,2018-19,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,2.4,0,0,97.6,0,0,0,74.6,25.4,82.6 +1,1,a-pcom-i3,2018-19,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,100,0,0,0,91.6,8.4,47.9 +1,1,a-pcom-i3,2018-19,Frontier - Frontier Regional,6700505,0,0,0,97,2,0,1.1,69.6,30.4,101.8 +1.3125,1.31,a-pcom-i3,2018-19,Gardner - Elm Street School,1030001,0,0,1.4,95.8,0,0,2.8,89.5,10.5,71.4 +1.40625,1.41,a-pcom-i3,2018-19,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,95.5,0,0,4.5,50,50,11 +3.96875,3.97,a-pcom-i3,2018-19,Gardner - Gardner High,1030505,2.5,5.1,3.8,87.3,0,0,1.3,65.9,34.1,79.1 +1.9375,1.94,a-pcom-i3,2018-19,Gardner - Gardner Middle School,1030405,1.4,1.4,1.4,93.8,0,0,1.9,73,27,69.4 +1,1,a-pcom-i3,2018-19,Gardner - Waterford Street,1030020,1.2,0,1.2,97.7,0,0,0,85.6,14.4,86.7 +1,1,a-pcom-i3,2018-19,Gateway - Chester Elementary,6720059,0,0,0,100,0,0,0,90,10,24.9 +1.40625,1.41,a-pcom-i3,2018-19,Gateway - Gateway Regional High,6720505,0,0,0,95.5,0,2.2,2.2,72.9,27.1,44.7 +1.0625,1.06,a-pcom-i3,2018-19,Gateway - Gateway Regional Middle School,6720405,0,0,0,96.6,0,0,3.4,78.3,21.7,29.5 +1,1,a-pcom-i3,2018-19,Gateway - Littleville Elementary School,6720143,0,0,0,100,0,0,0,94.3,5.7,43.7 +1,1,a-pcom-i3,2018-19,Georgetown - Georgetown High School,1050505,0,0.3,1.7,96.9,0,1,0,67.9,32.1,58.6 +1.90625,1.91,a-pcom-i3,2018-19,Georgetown - Georgetown Middle School,1050305,0,4.4,0,93.9,0,1.7,0,78.2,21.8,22.9 +1,1,a-pcom-i3,2018-19,Georgetown - Penn Brook,1050010,0,0,0,100,0,0,0,91.4,8.6,76.4 +1,1,a-pcom-i3,2018-19,Georgetown - Perley Elementary,1050005,0,0,0,100,0,0,0,100,0,8.7 +1,1,a-pcom-i3,2018-19,Gill-Montague - Gill Elementary,6740005,0,0,0,98.9,0,0,1.1,87.9,12.1,17.9 +1,1,a-pcom-i3,2018-19,Gill-Montague - Great Falls Middle,6740310,0,0,0,100,0,0,0,67.5,32.5,31.4 +1.3125,1.31,a-pcom-i3,2018-19,Gill-Montague - Hillcrest Elementary School,6740015,0,0,3,95.8,0,0,1.2,96.4,3.6,33.5 +1,1,a-pcom-i3,2018-19,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,99.1,0,0,0.9,86.2,13.8,43.6 +1,1,a-pcom-i3,2018-19,Gill-Montague - Turners Fall High,6740505,0,0,2.3,97.7,0,0,0,72.7,27.3,43.3 +3.71875,3.72,a-pcom-i3,2018-19,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,7.3,1.3,3.3,88.1,0,0,0,73.8,26.2,61.4 +1,1,a-pcom-i3,2018-19,Gloucester - Beeman Memorial,1070010,0,0,0,100,0,0,0,96.3,3.7,53.7 +1,1,a-pcom-i3,2018-19,Gloucester - East Gloucester Elementary,1070020,0,0,0,100,0,0,0,90.5,9.5,42.2 +1,1,a-pcom-i3,2018-19,Gloucester - Gloucester High,1070505,0.9,0,0.9,98.2,0,0,0,57.9,42.1,111.5 +1,1,a-pcom-i3,2018-19,Gloucester - Gloucester PreSchool,1070025,0,0,0,100,0,0,0,100,0,26.1 +1,1,a-pcom-i3,2018-19,Gloucester - Plum Cove School,1070042,0,0,0,100,0,0,0,89.8,10.2,39.1 +1,1,a-pcom-i3,2018-19,Gloucester - Ralph B O'Maley Middle,1070305,0,0,0,100,0,0,0,75.8,24.2,86.9 +1,1,a-pcom-i3,2018-19,Gloucester - Veterans Memorial,1070045,0,0,0,100,0,0,0,95.6,4.4,45.8 +1,1,a-pcom-i3,2018-19,Gloucester - West Parish,1070050,0,0,0,100,0,0,0,98.1,1.9,52 +1,1,a-pcom-i3,2018-19,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,100,0,0,0,100,0,1.1 +1.15625,1.16,a-pcom-i3,2018-19,Grafton - Grafton High School,1100505,0.9,1.8,0.9,96.3,0,0,0.1,70,30,110 +1,1,a-pcom-i3,2018-19,Grafton - Grafton Middle,1100305,0,1.5,0,98.5,0,0,0,70.9,29.1,65.9 +1,1,a-pcom-i3,2018-19,Grafton - Millbury Street Elementary School,1100200,0,1.1,0,98.9,0,0,0,94.5,5.5,94 +1,1,a-pcom-i3,2018-19,Grafton - North Grafton Elementary,1100025,0,0,0,100,0,0,0,100,0,45.2 +1,1,a-pcom-i3,2018-19,Grafton - North Street Elementary School,1100030,0,0,1.3,98.7,0,0,0,93.6,6.4,75.6 +1.28125,1.28,a-pcom-i3,2018-19,Grafton - South Grafton Elementary,1100005,2.7,0,0,95.9,1.4,0,0,93.9,6.1,58.9 +1.0625,1.06,a-pcom-i3,2018-19,Granby - East Meadow,1110004,1.7,1.7,0,96.6,0,0,0,88.1,11.9,59.6 +2,2,a-pcom-i3,2018-19,Granby - Granby Jr Sr High School,1110505,0,2.1,2.1,93.6,0,0,2.1,69.6,30.4,46.9 +1.21875,1.22,a-pcom-i3,2018-19,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,2.1,0,1.2,96.1,0.6,0,0,46,54,165.3 +4.59375,4.59,a-pcom-i3,2018-19,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,1,0.5,12.7,85.3,0,0,0.5,58,42,203.3 +2.21875,2.22,a-pcom-i3,2018-19,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,1.8,2.1,2.8,92.9,0.4,0,0,62.5,37.5,282.8 +1.8125,1.81,a-pcom-i3,2018-19,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,2.2,0.4,2.5,94.2,0.7,0,0,52.7,47.3,275.2 +1,1,a-pcom-i3,2018-19,Greenfield - Discovery School at Four Corners,1140025,0,0,2,98,0,0,0,93.3,6.7,49.5 +1,1,a-pcom-i3,2018-19,Greenfield - Federal Street School,1140010,0,0,0,100,0,0,0,90,10,43 +1,1,a-pcom-i3,2018-19,Greenfield - Greenfield High,1140505,0,1.2,1.2,97.6,0,0,0,65.8,34.2,84.2 +1,1,a-pcom-i3,2018-19,Greenfield - Greenfield Middle,1140305,0,0,0,100,0,0,0,76.8,23.2,67.3 +1.59375,1.59,a-pcom-i3,2018-19,Greenfield - Newton School,1140035,0,2.6,2.6,94.9,0,0,0,91,9,39.1 +1,1,a-pcom-i3,2018-19,Greenfield - The Academy of Early Learning at North Parish,1140005,0,0,0,100,0,0,0,99.9,0.1,27.9 +2.25,2.25,a-pcom-i3,2018-19,Greenfield Commonwealth Virtual District - Greenfield Commonwealth Virtual School,39010900,0,4.8,2.4,92.8,0,0,0,65.7,34.3,41.8 +1,1,a-pcom-i3,2018-19,Groton-Dunstable - Boutwell School,6730001,0,0,0,100,0,0,0,100,0,17 +1,1,a-pcom-i3,2018-19,Groton-Dunstable - Florence Roche School,6730010,0,0,0,98.4,0,0,1.6,93.6,6.4,62.1 +1,1,a-pcom-i3,2018-19,Groton-Dunstable - Groton Dunstable Regional,6730505,0,0,0,100,0,0,0,65.8,34.2,81.9 +1,1,a-pcom-i3,2018-19,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,0,1.1,96.8,1.1,0,1.1,84.9,15.1,93 +1,1,a-pcom-i3,2018-19,Groton-Dunstable - Swallow/Union School,6730005,0,0,0,100,0,0,0,96,4,49.5 +1.1875,1.19,a-pcom-i3,2018-19,Hadley - Hadley Elementary,1170015,1.9,1.9,0,96.2,0,0,0,90.5,9.5,52.7 +1,1,a-pcom-i3,2018-19,Hadley - Hopkins Academy,1170505,2.6,0,0,97.4,0,0,0,69.4,30.6,37.9 +1,1,a-pcom-i3,2018-19,Halifax - Halifax Elementary,1180005,0,0,0,100,0,0,0,85.8,14.2,63.3 +1,1,a-pcom-i3,2018-19,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,0,0,97.2,0,0,2.8,92.5,7.5,35.9 +1,1,a-pcom-i3,2018-19,Hamilton-Wenham - Cutler School,6750010,0,0,2.4,97.6,0,0,0,94.3,5.7,42.1 +1.9375,1.94,a-pcom-i3,2018-19,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,1.4,1.4,93.8,0,0,3.4,62.2,37.8,72.9 +3.09375,3.09,a-pcom-i3,2018-19,Hamilton-Wenham - Miles River Middle,6750310,0,2.9,3.6,90.1,0,0,3.5,85.7,14.3,55.9 +1.0625,1.06,a-pcom-i3,2018-19,Hamilton-Wenham - Winthrop School,6750015,0,1.7,0,96.6,0,0,1.7,94.5,5.5,58 +3.6875,3.69,a-pcom-i3,2018-19,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,3.5,4.9,3.5,88.2,0,0,0,55.7,44.3,57.6 +6.0625,5,a-pcom-i3,2018-19,Hampden Charter School of Science West (District) - Hampden Charter School of Science West,35160305,16.1,3.2,0,80.6,0,0,0,59,41,31 +1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Green Meadows Elementary,6800005,1.7,0,0,98.3,0,0,0,93.9,6.1,58.7 +1.15625,1.16,a-pcom-i3,2018-19,Hampden-Wilbraham - Mile Tree Elementary,6800025,1.8,0,1.8,96.3,0,0,0,98.2,1.8,54.1 +1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0,0.9,99.1,0,0,0,66.5,33.5,113.3 +1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Soule Road,6800030,0,0,0,100,0,0,0,97.4,2.6,38.8 +1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,100,0,0,0,94.8,5.2,38.7 +1,1,a-pcom-i3,2018-19,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,100,0,0,0,74.8,25.2,71.4 +1,1,a-pcom-i3,2018-19,Hampshire - Hampshire Regional High,6830505,0.9,0.9,0,98.2,0,0,0,68.9,31.1,109.2 +2.125,2.12,a-pcom-i3,2018-19,Hancock - Hancock Elementary,1210005,6.8,0,0,93.2,0,0,0,85.5,14.5,11.7 +1,1,a-pcom-i3,2018-19,Hanover - Cedar Elementary,1220004,0,0,0,100,0,0,0,95,5,60.5 +1.96875,1.97,a-pcom-i3,2018-19,Hanover - Center Elementary,1220005,0,4.2,2.1,93.7,0,0,0,97.7,2.3,47.8 +1,1,a-pcom-i3,2018-19,Hanover - Hanover High,1220505,2.2,0,0,97.8,0,0,0,66.1,33.9,92.6 +1,1,a-pcom-i3,2018-19,Hanover - Hanover Middle,1220305,1,0,1,98,0,0,0,78.7,21.3,100.8 +1.3125,1.31,a-pcom-i3,2018-19,Hanover - Sylvester,1220015,0,0,4.2,95.8,0,0,0,83.4,16.6,23.6 +1,1,a-pcom-i3,2018-19,Harvard - Bromfield,1250505,0,0,1.4,97.3,0,1.4,0,72.2,27.8,73.7 +1.9375,1.94,a-pcom-i3,2018-19,Harvard - Hildreth Elementary School,1250005,1.8,2.7,1.8,93.8,0,0,0,89.3,10.7,56.2 +1,1,a-pcom-i3,2018-19,Hatfield - Hatfield Elementary,1270005,0,0,0,100,0,0,0,88.8,11.2,39.2 +1,1,a-pcom-i3,2018-19,Hatfield - Smith Academy,1270505,0,0,0,100,0,0,0,74.8,25.2,34.1 +1,1,a-pcom-i3,2018-19,Haverhill - Bradford Elementary,1280008,1.5,0,0,98.5,0,0,0,94.5,5.5,67.3 +1.21875,1.22,a-pcom-i3,2018-19,Haverhill - Caleb Dustin Hunking School,1280030,0,0,3.9,96.1,0,0,0,85.1,14.9,101.3 +2.40625,2.41,a-pcom-i3,2018-19,Haverhill - Consentino Annex at Bartlett School,1280005,0,0,7.7,92.3,0,0,0,88.5,11.5,13 +1,1,a-pcom-i3,2018-19,Haverhill - Consentino Middle School,1280100,0,0,1.3,98.7,0,0,0,81,19,76.3 +1.75,1.75,a-pcom-i3,2018-19,Haverhill - Crowell,1280020,0,0,5.6,94.4,0,0,0,97.2,2.8,14.4 +1.71875,1.72,a-pcom-i3,2018-19,Haverhill - Dr Paul Nettle,1280050,0,1.4,4.1,94.5,0,0,0,81.9,18.1,72.6 +1.3125,1.31,a-pcom-i3,2018-19,Haverhill - Golden Hill,1280026,0,0,4.2,95.8,0,0,0,92.9,7.1,72.3 +1,1,a-pcom-i3,2018-19,Haverhill - Greenleaf Kindergarten Center,1280027,0,0,0,100,0,0,0,96.8,3.2,15.4 +3.375,3.37,a-pcom-i3,2018-19,Haverhill - Haverhill Alternative School,1280033,0,0,10.8,89.2,0,0,0,56.8,43.2,18.5 +2.8125,2.81,a-pcom-i3,2018-19,Haverhill - Haverhill High,1280505,1.4,1.9,5.7,91,0,0,0,65.5,34.5,210.6 +1.65625,1.66,a-pcom-i3,2018-19,Haverhill - John G Whittier,1280085,2.1,0,3.2,94.7,0,0,0,78.3,21.7,46.7 +2.34375,2.34,a-pcom-i3,2018-19,Haverhill - Moody,1280045,2.5,2.5,2.5,92.5,0,0,0,100,0,40 +1.09375,1.09,a-pcom-i3,2018-19,Haverhill - Pentucket Lake Elementary,1280054,0,0,3.5,96.5,0,0,0,95.8,4.2,72.4 +1.125,1.12,a-pcom-i3,2018-19,Haverhill - Silver Hill Elementary School,1280067,0,0,3.6,96.4,0,0,0,92.5,7.5,54.8 +2.8125,2.81,a-pcom-i3,2018-19,Haverhill - TEACH,1280073,3.5,5.5,0,91,0,0,0,79.2,20.8,28.9 +1.28125,1.28,a-pcom-i3,2018-19,Haverhill - Tilton,1280075,0,0,4.1,95.9,0,0,0,94.6,5.4,74.1 +1,1,a-pcom-i3,2018-19,Haverhill - Walnut Square,1280080,0,0,0,100,0,0,0,89.9,10.1,11.8 +1,1,a-pcom-i3,2018-19,Hawlemont - Hawlemont Regional,6850005,0,0,0,100,0,0,0,90.9,9.1,30.6 +27.21875,5,a-pcom-i3,2018-19,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,69.4,6.5,11.3,12.9,0,0,0,67.7,32.3,31 +1.40625,1.41,a-pcom-i3,2018-19,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,0,2.3,95.5,0,0,2.3,86.4,13.6,44 +2.65625,2.66,a-pcom-i3,2018-19,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,0,6.6,91.5,0,0,1.9,79.4,20.6,39.4 +1.21875,1.22,a-pcom-i3,2018-19,Hingham - East Elementary School,1310005,1.3,0,1.3,96.1,0,0,1.3,92.8,7.2,77.4 +1,1,a-pcom-i3,2018-19,Hingham - Hingham High,1310505,0,0.6,0,99.4,0,0,0,68.2,31.8,138.7 +1,1,a-pcom-i3,2018-19,Hingham - Hingham Middle School,1310410,0,0,1.6,97.6,0,0,0.8,79.1,20.9,123.5 +1,1,a-pcom-i3,2018-19,Hingham - Plymouth River,1310019,0,0.8,0,99.2,0,0,0,93.1,6.9,62.5 +1.34375,1.34,a-pcom-i3,2018-19,Hingham - South Elementary,1310020,1.4,2.9,0,95.7,0,0,0,96.1,3.9,68.3 +1,1,a-pcom-i3,2018-19,Hingham - Wm L Foster Elementary,1310010,0,0,1.7,98.3,0,0,0,93.9,6.1,59.5 +1,1,a-pcom-i3,2018-19,Holbrook - Holbrook Middle High School,1330505,0,1.6,0,98.4,0,0,0,64.8,35.2,62.4 +1.28125,1.28,a-pcom-i3,2018-19,Holbrook - John F Kennedy,1330018,4.1,0,0,95.9,0,0,0,98.6,1.4,74 +1,1,a-pcom-i3,2018-19,Holland - Holland Elementary,1350005,0,0,0,100,0,0,0,93.2,6.8,33.5 +1,1,a-pcom-i3,2018-19,Holliston - Holliston High,1360505,0,0,1,99,0,0,0,67.9,32.1,101.2 +1.71875,1.72,a-pcom-i3,2018-19,Holliston - Miller School,1360007,1.1,1.1,1.1,94.5,1.1,0,1.1,94.1,5.9,92.2 +1,1,a-pcom-i3,2018-19,Holliston - Placentino Elementary,1360010,0,0.9,0.4,98.7,0,0,0,95.8,4.2,108 +1,1,a-pcom-i3,2018-19,Holliston - Robert H. Adams Middle School,1360305,1,0,1,97.9,0,0,0,85.9,14.1,96.7 +11.71875,5,a-pcom-i3,2018-19,Holyoke - E N White Elementary,1370045,3.1,0,34.4,62.5,0,0,0,95.3,4.7,63.9 +9.46875,5,a-pcom-i3,2018-19,Holyoke - H.B. Lawrence School,1370070,5.3,0,25,69.7,0,0,0,92.1,7.9,37.9 +8.90625,5,a-pcom-i3,2018-19,Holyoke - Holyoke High,1370505,3.8,1.1,23.5,71.5,0,0,0,61.5,38.5,181.9 +12.90625,5,a-pcom-i3,2018-19,Holyoke - Holyoke STEM Academy,1370320,9.5,3.2,28.6,58.7,0,0,0,68.3,31.7,31.5 +11.40625,5,a-pcom-i3,2018-19,Holyoke - Joseph Metcalf School,1370003,0,0,36.5,63.5,0,0,0,93,7,35.6 +14.25,5,a-pcom-i3,2018-19,Holyoke - Kelly Elementary,1370040,7,0,38.6,54.4,0,0,0,84.3,15.7,57 +9.09375,5,a-pcom-i3,2018-19,Holyoke - Lt Clayre Sullivan Elementary,1370055,2.7,1.3,25.1,70.9,0,0,0,79.6,20.4,74.8 +6.5625,5,a-pcom-i3,2018-19,Holyoke - Lt Elmer J McMahon Elementary,1370015,0,0,21,79,0,0,0,93.6,6.4,62 +12.75,5,a-pcom-i3,2018-19,Holyoke - Maurice A Donahue Elementary,1370060,6.5,0,34.3,59.2,0,0,0,83.2,16.8,91.9 +8.125,5,a-pcom-i3,2018-19,Holyoke - Morgan Full Service Community School,1370025,7.4,0,16.1,74,0,0,2.5,90.1,9.9,40.4 +20,5,a-pcom-i3,2018-19,Holyoke - Veritas Prep Holyoke,1370075,24.3,3.2,28,36,8.5,0,0,78.6,21.4,20.6 +14.03125,5,a-pcom-i3,2018-19,Holyoke - William R. Peck School,1370030,7.5,1.9,33.7,55.1,0,0,1.9,66.1,33.9,53.5 +12.875,5,a-pcom-i3,2018-19,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,4.3,0,36.9,58.8,0,0,0,75.9,24.1,93.6 +1,1,a-pcom-i3,2018-19,Hopedale - Hopedale Jr Sr High,1380505,0,0,0,99.4,0,0.6,0,78.3,21.7,68.8 +1,1,a-pcom-i3,2018-19,Hopedale - Memorial,1380010,0,1.2,1.2,97.5,0,0,0,96.2,3.8,81.5 +1,1,a-pcom-i3,2018-19,Hopedale - Park Street School,1380003,0,0,0,100,0,0,0,100,0,18.6 +1,1,a-pcom-i3,2018-19,Hopkinton - Elmwood,1390010,0,1.6,0,98.4,0,0,0,89.3,10.7,63.8 +1,1,a-pcom-i3,2018-19,Hopkinton - Hopkins Elementary School,1390015,0,0,1.7,98.3,0,0,0,91.3,8.7,58 +1,1,a-pcom-i3,2018-19,Hopkinton - Hopkinton High,1390505,0,1.2,1.7,97.2,0,0,0,63.6,36.4,120.6 +1.3125,1.31,a-pcom-i3,2018-19,Hopkinton - Hopkinton Middle School,1390305,0,2,2.2,95.8,0,0,0,79.2,20.8,89.7 +1.625,1.63,a-pcom-i3,2018-19,Hopkinton - Hopkinton Pre-School,1390003,5.2,0,0,94.8,0,0,0,100,0,17.4 +1.3125,1.31,a-pcom-i3,2018-19,Hopkinton - Marathon Elementary School,1390005,0,2.8,1.4,95.8,0,0,0,94.4,5.6,72.1 +1,1,a-pcom-i3,2018-19,Hudson - C A Farley,1410030,0,0,1.5,98.5,0,0,0,95.5,4.5,67.3 +1,1,a-pcom-i3,2018-19,Hudson - David J. Quinn Middle School,1410410,0,0,0,100,0,0,0,83.5,16.5,85.1 +1,1,a-pcom-i3,2018-19,Hudson - Forest Avenue Elementary,1410015,0,0,0,100,0,0,0,91.6,8.4,47.9 +1,1,a-pcom-i3,2018-19,Hudson - Hudson High,1410505,0.8,0.8,0,98.5,0,0,0,77.2,22.8,131.8 +1,1,a-pcom-i3,2018-19,Hudson - Mulready Elementary,1410007,0,0,0,100,0,0,0,96.7,3.3,53.9 +1,1,a-pcom-i3,2018-19,Hull - Hull High,1420505,0,0,0,100,0,0,0,61,39,47.1 +1,1,a-pcom-i3,2018-19,Hull - Lillian M Jacobs,1420015,0,0,0,100,0,0,0,95,5,59.4 +1,1,a-pcom-i3,2018-19,Hull - Memorial Middle,1420305,0,0,0,100,0,0,0,80.3,19.7,32.1 +2.90625,2.91,a-pcom-i3,2018-19,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,1,4.4,4,90.7,0,0,0,74.7,25.3,100.8 +1,1,a-pcom-i3,2018-19,Ipswich - Ipswich High,1440505,0,0,1.3,98.7,0,0,0,69.6,30.4,75.2 +1.0625,1.06,a-pcom-i3,2018-19,Ipswich - Ipswich Middle School,1440305,0,0,3.4,96.6,0,0,0,74.7,25.3,58.2 +1,1,a-pcom-i3,2018-19,Ipswich - Paul F Doyon Memorial,1440007,0,0,1.4,98.6,0,0,0,93,7,70.4 +1,1,a-pcom-i3,2018-19,Ipswich - Winthrop,1440015,0,0,1.6,98.4,0,0,0,90.9,9.1,64.3 +18.28125,5,a-pcom-i3,2018-19,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,32.7,3,18.2,41.5,1.5,0,3,76.3,23.7,65.8 +11.90625,5,a-pcom-i3,2018-19,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,17.3,6.4,13.1,61.9,0,0,1.3,72.5,27.5,156.2 +1.125,1.12,a-pcom-i3,2018-19,King Philip - King Philip Middle School,6900510,1.2,0,2.4,96.4,0,0,0,84.6,15.4,84.5 +1,1,a-pcom-i3,2018-19,King Philip - King Philip Regional High,6900505,0,0.8,1.5,97.7,0,0,0,67.4,32.6,130.1 +1,1,a-pcom-i3,2018-19,Kingston - Kingston Elementary,1450005,0,0,0,100,0,0,0,94.3,5.7,61.1 +1,1,a-pcom-i3,2018-19,Kingston - Kingston Intermediate,1450020,0,0,0,100,0,0,0,86.2,13.8,68.8 +4.25,4.25,a-pcom-i3,2018-19,Lawrence - Alexander B Bruce,1490015,0,0,11.9,86.4,1.7,0,0,73,27,59.4 +5.90625,5,a-pcom-i3,2018-19,Lawrence - Arlington Middle School,1490017,0,0,18.9,81.1,0,0,0,64.9,35.1,57.1 +4.46875,4.47,a-pcom-i3,2018-19,Lawrence - Community Day Arlington,1490009,0,1.3,13,85.7,0,0,0,78.1,21.9,77.6 +5.1875,5,a-pcom-i3,2018-19,Lawrence - Edward F. Parthum,1490053,0,0,16.6,83.4,0,0,0,93.3,6.7,72.5 +4.28125,4.28,a-pcom-i3,2018-19,Lawrence - Emily G Wetherbee,1490080,0,0,13.7,86.3,0,0,0,88.8,11.2,80.7 +5.3125,5,a-pcom-i3,2018-19,Lawrence - Francis M Leahy,1490040,0,0,17,83,0,0,0,87.2,12.8,47.1 +7.375,5,a-pcom-i3,2018-19,Lawrence - Frost Middle School,1490525,3.9,2,15.8,76.4,0,2,0,66.6,33.4,51 +4.90625,4.91,a-pcom-i3,2018-19,Lawrence - Gerard A. Guilmette,1490022,1.6,0,14.1,84.3,0,0,0,96.8,3.2,64 +5.125,5,a-pcom-i3,2018-19,Lawrence - Guilmette Middle School,1490025,1.5,0,15,83.6,0,0,0,73.1,26.9,67.1 +4.8125,4.81,a-pcom-i3,2018-19,Lawrence - High School Learning Center,1490536,0,0,11.5,84.6,3.8,0,0,53.9,46.1,26 +11.03125,5,a-pcom-i3,2018-19,Lawrence - James F Hennessey,1490020,0,2,33.3,64.7,0,0,0,90.1,9.9,51.1 +12.28125,5,a-pcom-i3,2018-19,Lawrence - John Breen School,1490003,0,0,37,60.7,2.3,0,0,99.9,0.1,43.4 +6.6875,5,a-pcom-i3,2018-19,Lawrence - John K Tarbox,1490075,0,0,21.4,78.6,0,0,0,94.3,5.7,35.7 +13.75,5,a-pcom-i3,2018-19,Lawrence - Lawlor Early Childhood Center,1490002,0,0,44,56,0,0,0,87.9,12.1,25.2 +4.65625,4.66,a-pcom-i3,2018-19,Lawrence - Lawrence Family Public Academy,1490011,2.9,0,11.9,85.1,0,0,0,99.9,0.1,34.2 +8.46875,5,a-pcom-i3,2018-19,Lawrence - Lawrence High School,1490515,2.1,0.5,23.6,72.9,0.5,0,0.3,62.9,37.1,368 +5.84375,5,a-pcom-i3,2018-19,Lawrence - Oliver Partnership School,1490048,0,0,18.7,81.3,0,0,0,86.4,13.6,59.1 +3.09375,3.09,a-pcom-i3,2018-19,Lawrence - Parthum Middle School,1490027,0,0,9.9,90.1,0,0,0,73.7,26.3,61 +4.875,4.87,a-pcom-i3,2018-19,Lawrence - Robert Frost,1490018,3.1,1.6,11,84.4,0,0,0,90.6,9.4,64.2 +8.21875,5,a-pcom-i3,2018-19,Lawrence - Rollins Early Childhood Center,1490001,2.2,0,24.2,73.7,0,0,0,95.5,4.5,45.7 +12.25,5,a-pcom-i3,2018-19,Lawrence - School for Exceptional Studies,1490537,3.2,0.8,35.2,60.8,0,0,0,66.4,33.6,125.2 +3.96875,3.97,a-pcom-i3,2018-19,Lawrence - South Lawrence East Elementary School,1490004,0,0,11.4,87.3,0,0,1.3,85.9,14.1,78.5 +7.125,5,a-pcom-i3,2018-19,Lawrence - Spark Academy,1490085,3.5,0,19.3,77.2,0,0,0,73.6,26.4,57.1 +12.75,5,a-pcom-i3,2018-19,Lawrence - UP Academy Leonard Middle School,1490090,2.5,0,35.7,59.2,2.5,0,0,61.7,38.3,39.3 +9.53125,5,a-pcom-i3,2018-19,Lawrence - UP Academy Oliver Middle School,1490049,2.2,6.5,21.8,69.5,0,0,0,78.2,21.8,46.2 +7.78125,5,a-pcom-i3,2018-19,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,1.1,3.2,20.5,75.1,0,0,0,90.3,9.7,92.5 +1.46875,1.47,a-pcom-i3,2018-19,Lee - Lee Elementary,1500025,0,1.6,3.1,95.3,0,0,0,92.1,7.9,63.6 +1.53125,1.53,a-pcom-i3,2018-19,Lee - Lee Middle/High School,1500505,0,1.6,3.3,95.1,0,0,0,77.1,22.9,61.2 +1.0625,1.06,a-pcom-i3,2018-19,Leicester - Leicester High,1510505,0,1.7,1.7,96.6,0,0,0,75,25,58.8 +1.53125,1.53,a-pcom-i3,2018-19,Leicester - Leicester Memorial Elementary,1510005,0,2.4,2.4,95.1,0,0,0,92.7,7.3,40.9 +1,1,a-pcom-i3,2018-19,Leicester - Leicester Middle,1510015,0,0,0,100,0,0,0,79.4,20.6,53.4 +1,1,a-pcom-i3,2018-19,Leicester - Leicester Primary School,1510010,0,0,1.7,98.3,0,0,0,96.5,3.5,57.7 +1,1,a-pcom-i3,2018-19,Lenox - Lenox Memorial High,1520505,0,0,1.2,98.8,0,0,0,64.4,35.6,68.6 +1,1,a-pcom-i3,2018-19,Lenox - Morris,1520015,0,0,0,100,0,0,0,93.4,6.6,60.7 +3.25,3.25,a-pcom-i3,2018-19,Leominster - Bennett,1530003,5.2,0,5.2,89.6,0,0,0,100,0,19.2 +1.15625,1.16,a-pcom-i3,2018-19,Leominster - Center For Technical Education Innovation,1530605,1.4,0.1,2.1,96.3,0,0,0,38.1,61.9,47.5 +1.5625,1.56,a-pcom-i3,2018-19,Leominster - Fall Brook,1530007,0,1.2,3.7,95,0,0,0,95,5,80.3 +3.3125,3.31,a-pcom-i3,2018-19,Leominster - Frances Drake School,1530010,3.8,1,5.8,89.4,0,0,0,92.7,7.3,104.1 +1.1875,1.19,a-pcom-i3,2018-19,Leominster - Johnny Appleseed,1530025,3.2,0,0.6,96.2,0,0,0,97.4,2.6,78 +6.46875,5,a-pcom-i3,2018-19,Leominster - Leominster Center for Excellence,1530515,10.8,0,9.9,79.3,0,0,0,80.3,19.7,10.2 +2.09375,2.09,a-pcom-i3,2018-19,Leominster - Leominster High School,1530505,0.7,2.7,3.3,93.3,0,0,0,68.7,31.3,149.8 +1,1,a-pcom-i3,2018-19,Leominster - Lincoln School,1530005,0,0,0,100,0,0,0,96.1,3.9,25.4 +1.4375,1.44,a-pcom-i3,2018-19,Leominster - Northwest,1530030,2.6,0,2,95.4,0,0,0,90.6,9.4,75.9 +1,1,a-pcom-i3,2018-19,Leominster - Priest Street,1530040,0,0,1.5,98.5,0,0,0,95.5,4.5,33.3 +1,1,a-pcom-i3,2018-19,Leominster - Samoset School,1530045,0,0,1.7,98.3,0,0,0,74.1,25.9,59.6 +2.375,2.37,a-pcom-i3,2018-19,Leominster - Sky View Middle School,1530320,0,0,7.6,92.4,0,0,0,84.2,15.8,95.2 +1.09375,1.09,a-pcom-i3,2018-19,Leverett - Leverett Elementary,1540005,3.5,0,0,96.5,0,0,0,82.6,17.4,28.4 +5.1875,5,a-pcom-i3,2018-19,Lexington - Bowman,1550008,4.6,8,2,83.4,0,0.7,1.3,90.2,9.8,76 +2.34375,2.34,a-pcom-i3,2018-19,Lexington - Bridge,1550006,2.6,1.5,0.7,92.5,0,0,2.7,89.8,10.2,74.5 +1.625,1.63,a-pcom-i3,2018-19,Lexington - Fiske,1550015,1.7,2.3,1.1,94.8,0,0,0,82.8,17.2,87.6 +4.03125,4.03,a-pcom-i3,2018-19,Lexington - Harrington,1550030,2.1,6.9,2.7,87.1,0,0,1.2,87.4,12.6,71.3 +3.90625,3.91,a-pcom-i3,2018-19,Lexington - Jonas Clarke Middle,1550305,2.3,5.1,3.3,87.5,0.6,0,1.3,76.7,23.3,147.7 +3.59375,3.59,a-pcom-i3,2018-19,Lexington - Joseph Estabrook,1550010,3,2.9,4.3,88.5,0,0,1.4,87.6,12.4,73 +1.53125,1.53,a-pcom-i3,2018-19,Lexington - Lexington Children's Place,1550001,0,2.4,0,95.1,0,0,2.4,100,0,27.6 +2.53125,2.53,a-pcom-i3,2018-19,Lexington - Lexington High,1550505,1,3.7,2.6,91.9,0,0,0.7,72.9,27.1,287.7 +5.4375,5,a-pcom-i3,2018-19,Lexington - Maria Hastings,1550035,4.1,11.6,0.5,82.6,0,0,1.2,91.3,8.7,81.9 +3.53125,3.53,a-pcom-i3,2018-19,Lexington - Wm Diamond Middle,1550310,1.7,4.3,4.5,88.7,0,0,0.7,72.3,27.7,136 +12.15625,5,a-pcom-i3,2018-19,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,8.3,4.1,26.5,61.1,0,0,0,56.9,43.1,24.2 +2.09375,2.09,a-pcom-i3,2018-19,Lincoln - Hanscom Middle,1570305,2.2,0.1,4.4,93.3,0,0,0,70.8,29.2,45.1 +2.5625,2.56,a-pcom-i3,2018-19,Lincoln - Hanscom Primary,1570006,2.9,0,5.3,91.8,0,0,0,95.7,4.3,59.2 +3.3125,3.31,a-pcom-i3,2018-19,Lincoln - Lincoln School,1570025,3.6,4.4,1.6,89.4,0.9,0,0,90.8,9.2,111.4 +2.125,2.12,a-pcom-i3,2018-19,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,2.3,2.6,0.5,93.2,0.5,0.5,0.5,62.7,37.3,210.6 +1.09375,1.09,a-pcom-i3,2018-19,Littleton - Littleton High School,1580505,0,0,1.9,96.5,0,0,1.6,68.8,31.2,53.2 +1,1,a-pcom-i3,2018-19,Littleton - Littleton Middle School,1580305,1.6,0,0,98.4,0,0,0,89.2,10.8,46.3 +1,1,a-pcom-i3,2018-19,Littleton - Russell St Elementary,1580015,0,0,0,100,0,0,0,91.1,8.9,44.8 +1.25,1.25,a-pcom-i3,2018-19,Littleton - Shaker Lane Elementary,1580005,0,1.2,1.2,96,0,0,1.6,98,2,61.8 +1,1,a-pcom-i3,2018-19,Longmeadow - Blueberry Hill,1590005,0,0,0,100,0,0,0,93.9,6.1,67.1 +1,1,a-pcom-i3,2018-19,Longmeadow - Center,1590010,0,0,0,100,0,0,0,99.5,0.5,56.6 +1,1,a-pcom-i3,2018-19,Longmeadow - Glenbrook Middle,1590017,0,0,2.1,97.9,0,0,0,83.1,16.9,46.7 +1.0625,1.06,a-pcom-i3,2018-19,Longmeadow - Longmeadow High,1590505,0.8,0,2.5,96.6,0,0,0,68.5,31.5,118.2 +1,1,a-pcom-i3,2018-19,Longmeadow - Williams Middle,1590305,2.5,0,0,97.5,0,0,0,76.7,23.3,39.5 +1,1,a-pcom-i3,2018-19,Longmeadow - Wolf Swamp Road,1590025,0,0,1.3,98.7,0,0,0,94.4,5.6,76.2 +3.875,3.88,a-pcom-i3,2018-19,Lowell - Abraham Lincoln,1600020,2.2,5.9,4.4,87.6,0,0,0,95.6,4.4,68.3 +4.875,4.87,a-pcom-i3,2018-19,Lowell - B.F. Butler Middle School,1600310,5.5,5.5,4.7,84.4,0,0,0,69,31,64.2 +3.75,3.75,a-pcom-i3,2018-19,Lowell - Bartlett Community Partnership,1600090,2.5,4.4,3.8,88,0,1.3,0,87.4,12.6,79.3 +3.5,3.5,a-pcom-i3,2018-19,Lowell - Cardinal O'Connell Early Learning Center,1600001,0,5.6,5.6,88.8,0,0,0,96.3,3.7,26.7 +1.5625,1.56,a-pcom-i3,2018-19,Lowell - Charles W Morey,1600030,0.7,1.4,2.9,95,0,0,0,96.4,3.6,69.7 +3,3,a-pcom-i3,2018-19,Lowell - Charlotte M Murkland Elementary,1600080,0,6.7,3,90.4,0,0,0,91.1,8.9,67.6 +2.1875,2.19,a-pcom-i3,2018-19,Lowell - Dr An Wang School,1600345,1.4,0,5.6,93,0,0,0,78.9,21.1,71 +1,1,a-pcom-i3,2018-19,Lowell - Dr Gertrude Bailey,1600002,0.8,1.6,0,97.6,0,0,0,95.2,4.8,62.3 +5.65625,5,a-pcom-i3,2018-19,Lowell - Dr. Janice Adie Day School,1600605,2.3,11.3,4.5,81.9,0,0,0,83.7,16.3,44.2 +3,3,a-pcom-i3,2018-19,Lowell - Greenhalge,1600015,2.7,0,2.7,90.4,1.4,1.4,1.4,94.5,5.5,72.8 +2.96875,2.97,a-pcom-i3,2018-19,Lowell - Henry J Robinson Middle,1600330,0,2.7,4.1,90.5,1.4,0,1.4,77.6,22.4,74.1 +2.375,2.37,a-pcom-i3,2018-19,Lowell - James S Daley Middle School,1600315,0.6,5,1.3,92.4,0.8,0,0,80.5,19.5,79.8 +2.8125,2.81,a-pcom-i3,2018-19,Lowell - James Sullivan Middle School,1600340,2.8,0,6.2,91,0,0,0,72.4,27.6,72.5 +1.25,1.25,a-pcom-i3,2018-19,Lowell - John J Shaughnessy,1600050,1.6,0.8,1.6,96,0,0,0,92.9,7.1,63.2 +5.78125,5,a-pcom-i3,2018-19,Lowell - Joseph McAvinnue,1600010,0,5.7,12.8,81.5,0,0,0,90,10,70.1 +4.15625,4.16,a-pcom-i3,2018-19,Lowell - Kathryn P. Stoklosa Middle School,1600360,1.3,9.9,0.7,86.7,0,1.3,0,64.6,35.4,75.4 +7.1875,5,a-pcom-i3,2018-19,Lowell - Laura Lee Therapeutic Day School,1600085,5.7,2.9,14.4,77,0,0,0,68.4,31.6,17.4 +3.59375,3.59,a-pcom-i3,2018-19,Lowell - Leblanc Therapeutic Day School,1600320,0,0,11.5,88.5,0,0,0,70.1,29.9,17.4 +3.84375,3.84,a-pcom-i3,2018-19,Lowell - Lowell High,1600505,2.7,4.1,4.5,87.7,0,0,1,63.3,36.7,307.9 +1.84375,1.84,a-pcom-i3,2018-19,Lowell - Moody Elementary,1600027,0,0,5.9,94.1,0,0,0,95.6,4.4,34 +1.84375,1.84,a-pcom-i3,2018-19,Lowell - Pawtucketville Memorial,1600036,1.5,1.5,3,94.1,0,0,0,88.9,11.1,67.6 +4.09375,4.09,a-pcom-i3,2018-19,Lowell - Peter W Reilly,1600040,2.3,0,10.8,86.9,0,0,0,93.8,6.2,64.8 +4.15625,4.16,a-pcom-i3,2018-19,Lowell - Pyne Arts,1600018,2.8,1.4,9.1,86.7,0,0,0,82.3,17.7,71.7 +3.28125,3.28,a-pcom-i3,2018-19,Lowell - Rogers STEM Academy,1600005,2.9,3.5,4.1,89.5,0,0,0,82.5,17.5,85.8 +3.5625,3.56,a-pcom-i3,2018-19,Lowell - S Christa McAuliffe Elementary,1600075,0,1.6,9.8,88.6,0,0,0,89.4,10.6,61.5 +7.21875,5,a-pcom-i3,2018-19,Lowell - The Career Academy,1600515,5.8,17.3,0,76.9,0,0,0,69.9,30.1,17.3 +2.84375,2.84,a-pcom-i3,2018-19,Lowell - Washington,1600055,0,0,6.8,90.9,2.3,0,0,88.7,11.3,44.1 +9.78125,5,a-pcom-i3,2018-19,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,3.8,10.4,15.2,68.7,0,0,1.9,77.3,22.7,105.1 +8.34375,5,a-pcom-i3,2018-19,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,13.3,13.3,73.3,0,0,0,80,20,15 +1,1,a-pcom-i3,2018-19,Ludlow - Chapin Street Elementary School,1610020,0,0,0,100,0,0,0,96.2,3.8,43.2 +1,1,a-pcom-i3,2018-19,Ludlow - East Street Elementary School,1610010,0,0,0,100,0,0,0,95.9,4.1,90 +1,1,a-pcom-i3,2018-19,Ludlow - Ludlow Senior High,1610505,0.9,0,0.9,97.4,0,0,0.9,68.3,31.7,116.8 +1,1,a-pcom-i3,2018-19,Ludlow - Paul R Baird Middle,1610305,1.1,0,1.8,97.1,0,0,0,75.1,24.9,89.2 +1,1,a-pcom-i3,2018-19,Ludlow - Veterans Park Elementary,1610023,0,0,0.7,99.3,0,0,0,92.6,7.4,54.9 +1,1,a-pcom-i3,2018-19,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,100,0,0,0,47.6,52.4,4.2 +1.09375,1.09,a-pcom-i3,2018-19,Lunenburg - Lunenburg High,1620505,0,0,1.6,96.5,0,1.9,0,58.6,41.4,52.7 +1,1,a-pcom-i3,2018-19,Lunenburg - Lunenburg Middle School,1620305,0,0,0.4,99.6,0,0,0,84,16,47 +1,1,a-pcom-i3,2018-19,Lunenburg - Lunenburg Primary School,1620010,0,0,0,100,0,0,0,90.5,9.5,52.8 +1,1,a-pcom-i3,2018-19,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,100,0,0,0,89.7,10.3,43.5 +4.59375,4.59,a-pcom-i3,2018-19,Lynn - A Drewicz Elementary,1630016,2.1,2.1,10.5,85.3,0,0,0,90.9,9.1,47.8 +1,1,a-pcom-i3,2018-19,Lynn - Aborn,1630011,0,0,0.9,98.7,0,0,0.4,98.7,1.3,26.5 +4.0625,4.06,a-pcom-i3,2018-19,Lynn - Breed Middle School,1630405,3.3,2.4,6.5,87,0,0,0.8,69.6,30.4,122.8 +1.46875,1.47,a-pcom-i3,2018-19,Lynn - Brickett Elementary,1630020,0,3.3,1.1,95.3,0,0,0.3,97.7,2.3,30.7 +3.03125,3.03,a-pcom-i3,2018-19,Lynn - Capt William G Shoemaker,1630090,0,1.4,7,90.3,0,0,1.4,95.3,4.7,71.9 +3.8125,3.81,a-pcom-i3,2018-19,Lynn - Classical High,1630505,3.4,0,6.8,87.8,0,0,2,66.7,33.3,147.3 +3.34375,3.34,a-pcom-i3,2018-19,Lynn - Cobbet Elementary,1630035,1.5,1.5,6.1,89.3,0,0,1.5,92.4,7.6,65.6 +2.84375,2.84,a-pcom-i3,2018-19,Lynn - E J Harrington,1630045,1.3,1.3,5.1,90.9,0,0,1.4,98.6,1.4,78 +4.125,4.13,a-pcom-i3,2018-19,Lynn - Early Childhood Center,1630004,3.3,0,9.9,86.8,0,0,0,95.8,4.2,60.5 +1.375,1.38,a-pcom-i3,2018-19,Lynn - Edward A Sisson,1630095,2.2,0,2.2,95.6,0,0,0,96.2,3.8,45.8 +7.46875,5,a-pcom-i3,2018-19,Lynn - Fecteau-Leary Junior/Senior High School,1630525,6.5,0,17.4,76.1,0,0,0,45,55,46 +3.9375,3.94,a-pcom-i3,2018-19,Lynn - Hood,1630055,2.1,2.1,8.3,87.4,0,0,0.2,99,1,48.4 +3.5,3.5,a-pcom-i3,2018-19,Lynn - Ingalls,1630060,6.3,0,4.7,88.8,0,0,0.2,96.2,3.8,63.6 +4.5625,4.56,a-pcom-i3,2018-19,Lynn - Julia F Callahan,1630030,7.3,1.8,3.6,85.4,1.8,0,0,88.3,11.7,54.8 +2.21875,2.22,a-pcom-i3,2018-19,Lynn - Lincoln-Thomson,1630070,0,0,3.6,92.9,3.6,0,0,94.7,5.3,28 +3.90625,3.91,a-pcom-i3,2018-19,Lynn - Lynn English High,1630510,1.9,0.7,9.2,87.5,0,0,0.7,54.7,45.3,143.8 +7.1875,5,a-pcom-i3,2018-19,Lynn - Lynn Vocational Technical Institute,1630605,5,0,15.7,77,0,0,2.3,54.7,45.3,129.8 +3.59375,3.59,a-pcom-i3,2018-19,Lynn - Lynn Woods,1630075,0,0,11.5,88.5,0,0,0,90.8,9.2,19.1 +3.15625,3.16,a-pcom-i3,2018-19,Lynn - Pickering Middle,1630420,1.4,0,7.2,89.9,0,0,1.4,78.3,21.7,69 +3.40625,3.41,a-pcom-i3,2018-19,Lynn - Robert L Ford,1630050,6.1,0,4.6,89.1,0,0,0.2,92,8,49 +2.5,2.5,a-pcom-i3,2018-19,Lynn - Sewell-Anderson,1630085,0,0,8,92,0,0,0,94.8,5.2,34.8 +5.125,5,a-pcom-i3,2018-19,Lynn - Thurgood Marshall Mid,1630305,6,0.8,8.5,83.6,0,0,1.1,61.3,38.7,132.4 +2.65625,2.66,a-pcom-i3,2018-19,Lynn - Tracy,1630100,0,0,7.1,91.5,0,0,1.4,96.2,3.8,42.1 +6.0625,5,a-pcom-i3,2018-19,Lynn - Washington Elementary School,1630005,4.2,2.1,11.1,80.6,0,0,2.1,88.8,11.2,48.1 +3.4375,3.44,a-pcom-i3,2018-19,Lynn - William R Fallon,1630080,3.7,0,7.4,89,0,0,0,85.8,14.2,27.2 +3.375,3.37,a-pcom-i3,2018-19,Lynn - Wm P Connery,1630040,3.4,0,5,89.2,0,0,2.3,89.1,10.9,59.4 +1.0625,1.06,a-pcom-i3,2018-19,Lynnfield - Huckleberry Hill,1640010,0,0,3.4,96.6,0,0,0,97.8,2.2,58.9 +1,1,a-pcom-i3,2018-19,Lynnfield - Lynnfield High,1640505,0,1.3,0,97.4,0,0,1.3,70.3,29.7,75.7 +1,1,a-pcom-i3,2018-19,Lynnfield - Lynnfield Middle School,1640405,0,1.3,0,98.7,0,0,0,84.3,15.7,79.1 +1,1,a-pcom-i3,2018-19,Lynnfield - Lynnfield Preschool,1640005,0,0,0,100,0,0,0,100,0,5.8 +1,1,a-pcom-i3,2018-19,Lynnfield - Summer Street,1640020,0,0,1.9,98.1,0,0,0,96.7,3.3,51.5 +12.25,5,a-pcom-i3,2018-19,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,21.5,3.3,13.2,60.8,0.4,0,0.9,74.2,25.8,232.7 +3.28125,3.28,a-pcom-i3,2018-19,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,89.5,0,0,10.5,63.2,36.8,9.5 +3.59375,3.59,a-pcom-i3,2018-19,Malden - Beebe,1650003,6.3,3.1,2.1,88.5,0,0,0,86.7,13.3,95.7 +1.65625,1.66,a-pcom-i3,2018-19,Malden - Ferryway,1650013,1.1,2.1,2.1,94.7,0,0,0,83.2,16.8,93.7 +3.15625,3.16,a-pcom-i3,2018-19,Malden - Forestdale,1650027,1.1,4.2,4.2,89.9,0,0,0.5,94,6,94.5 +2.25,2.25,a-pcom-i3,2018-19,Malden - Linden,1650047,3.6,1.8,0.9,92.8,0,0,0.9,84.1,15.9,111.6 +4.375,4.38,a-pcom-i3,2018-19,Malden - Malden Early Learning Center,1650049,10.5,2.3,0,86,0,0,1.2,97.7,2.3,86 +4.125,4.13,a-pcom-i3,2018-19,Malden - Malden High,1650505,4.2,2.9,4.2,86.8,0,0,1.8,65.6,34.4,165.1 +4,4,a-pcom-i3,2018-19,Malden - Salemwood,1650057,4,3.2,2.4,87.2,0,0,3.2,85.4,14.6,125 +1,1,a-pcom-i3,2018-19,Manchester Essex Regional - Essex Elementary,6980020,0,0,0,100,0,0,0,85.4,14.6,39.8 +1,1,a-pcom-i3,2018-19,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,0,1.7,98.3,0,0,0,64.9,35.1,58.7 +1.3125,1.31,a-pcom-i3,2018-19,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,1.9,2.4,95.8,0,0,0,80.2,19.8,41.9 +1,1,a-pcom-i3,2018-19,Manchester Essex Regional - Manchester Memorial Elementary,6980010,0,0,0,100,0,0,0,92.7,7.3,55.1 +1.03125,1.03,a-pcom-i3,2018-19,Mansfield - Everett W Robinson,1670007,1.1,1.7,0.6,96.7,0,0,0,94.7,5.3,94.8 +1,1,a-pcom-i3,2018-19,Mansfield - Harold L Qualters Middle,1670035,0,0,0.9,98.3,0,0,0.9,79.7,20.3,114.6 +1.25,1.25,a-pcom-i3,2018-19,Mansfield - Jordan/Jackson Elementary,1670014,0.7,1.1,1.1,96,0,0,1.1,90,10,90 +1.875,1.88,a-pcom-i3,2018-19,Mansfield - Mansfield High,1670505,0.7,1.3,4,94,0,0,0,68.7,31.3,148.8 +1,1,a-pcom-i3,2018-19,Mansfield - Roland Green School,1670003,0,0,0,100,0,0,0,100,0,25.4 +8.6875,5,a-pcom-i3,2018-19,Map Academy Charter School (District) - Map Academy Charter School,35170505,13.9,6.9,6.9,72.2,0,0,0,63.9,36.1,14.4 +1,1,a-pcom-i3,2018-19,Marblehead - Glover,1680020,0,0,0,98.5,0,1.5,0,97.1,2.9,68.8 +1.3125,1.31,a-pcom-i3,2018-19,Marblehead - L H Coffin,1680010,0,0,2.4,95.8,0,0,1.9,97,3,33.8 +1,1,a-pcom-i3,2018-19,Marblehead - Malcolm L Bell,1680005,0,0,0,99.7,0,0,0.3,96.1,3.9,51 +1.5625,1.56,a-pcom-i3,2018-19,Marblehead - Marblehead High,1680505,0,1.4,2.9,95,0,0,0.7,63.7,36.3,140.1 +1,1,a-pcom-i3,2018-19,Marblehead - Marblehead Veterans Middle School,1680300,0,1.4,0,98.6,0,0,0,76.3,23.7,72.5 +1,1,a-pcom-i3,2018-19,Marblehead - Village School,1680016,0,0,0,98.8,0,0,1.2,88.4,11.6,86 +1,1,a-pcom-i3,2018-19,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,100,0,0,0,71.9,28.1,37.7 +1.53125,1.53,a-pcom-i3,2018-19,Marion - Sippican,1690005,3.2,1.6,0,95.1,0,0,0,93.9,6.1,61.8 +1.96875,1.97,a-pcom-i3,2018-19,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,1.6,4.7,93.7,0,0,0,78.4,21.6,189.5 +2.375,2.37,a-pcom-i3,2018-19,Marlborough - Charles Jaworek School,1700030,0,2.5,5.1,92.4,0,0,0,94.9,5.1,117.9 +1.71875,1.72,a-pcom-i3,2018-19,Marlborough - Early Childhood Center,1700006,1.8,0,3.6,94.5,0,0,0,89.1,10.9,54.9 +1.53125,1.53,a-pcom-i3,2018-19,Marlborough - Francis J Kane,1700008,1.2,0,3.6,95.1,0,0,0,91.6,8.4,82.5 +2.0625,2.06,a-pcom-i3,2018-19,Marlborough - Marlborough High,1700505,1.8,1,3.2,93.4,0.6,0,0,64.7,35.3,167.5 +1.4375,1.44,a-pcom-i3,2018-19,Marlborough - Richer,1700025,0,0,4.6,95.4,0,0,0,95.4,4.6,87 +1,1,a-pcom-i3,2018-19,Marshfield - Daniel Webster,1710015,0,0,0,99.2,0.8,0,0,93.7,6.3,58.1 +1,1,a-pcom-i3,2018-19,Marshfield - Eames Way School,1710005,0,0,0,100,0,0,0,91.3,8.7,39.2 +1,1,a-pcom-i3,2018-19,Marshfield - Furnace Brook Middle,1710310,0,0,0,99.2,0.8,0,0,84,16,118.2 +1,1,a-pcom-i3,2018-19,Marshfield - Gov Edward Winslow,1710020,0,0,1.5,98.5,0,0,0,89.5,10.5,68.4 +1,1,a-pcom-i3,2018-19,Marshfield - Marshfield High,1710505,0.6,0,1.9,97.5,0,0,0,70.1,29.9,160.8 +1,1,a-pcom-i3,2018-19,Marshfield - Martinson Elementary,1710025,0,1.3,0,97.4,1.3,0,0,95.7,4.3,78.3 +1,1,a-pcom-i3,2018-19,Marshfield - South River,1710010,0,0,0,100,0,0,0,95.1,4.9,49.4 +2.8125,2.81,a-pcom-i3,2018-19,Martha's Vineyard - Martha's Vineyard Regional High,7000505,1.9,0.4,3.4,91,0.8,0,2.5,66.4,33.6,122.3 +1,1,a-pcom-i3,2018-19,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,2.1,0,0,97.9,0,0,0,83.6,16.4,35.1 +10.8125,5,a-pcom-i3,2018-19,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,19.1,0,11.6,65.4,0,0,3.9,90.3,9.7,51.8 +1,1,a-pcom-i3,2018-19,Masconomet - Masconomet Regional High School,7050505,0,0.8,0,99.2,0,0,0,65.1,34.9,129.5 +1,1,a-pcom-i3,2018-19,Masconomet - Masconomet Regional Middle School,7050405,1.2,1.7,0,97.2,0,0,0,65.3,34.7,84.6 +1,1,a-pcom-i3,2018-19,Mashpee - Kenneth Coombs School,1720005,0,0,0,98.4,1.6,0,0,93,7,64.5 +1.3125,1.31,a-pcom-i3,2018-19,Mashpee - Mashpee High,1720505,1.7,0.7,0,95.8,0,1.7,0,65.2,34.8,57.5 +1,1,a-pcom-i3,2018-19,Mashpee - Mashpee Middle School,1720020,0,1.9,0,98.1,0,0,0,79.7,20.3,31.7 +1,1,a-pcom-i3,2018-19,Mashpee - Quashnet School,1720035,0,0,0,100,0,0,0,87.8,12.2,65.5 +1,1,a-pcom-i3,2018-19,Mattapoisett - Center,1730005,0,2.5,0,97.5,0,0,0,93.4,6.6,39.8 +1,1,a-pcom-i3,2018-19,Mattapoisett - Old Hammondtown,1730010,0,0,0,100,0,0,0,93,7,33.7 +1.78125,1.78,a-pcom-i3,2018-19,Maynard - Fowler School,1740305,0,0,5.7,94.3,0,0,0,76.5,23.5,65.5 +2.21875,2.22,a-pcom-i3,2018-19,Maynard - Green Meadow,1740010,0,2.3,4.8,92.9,0,0,0,94.4,5.6,87 +1,1,a-pcom-i3,2018-19,Maynard - Maynard High,1740505,0,0,0,100,0,0,0,72.8,27.2,42.6 +1,1,a-pcom-i3,2018-19,Medfield - Dale Street,1750005,0,1.2,0.6,98.2,0,0,0,91.3,8.7,52.8 +1,1,a-pcom-i3,2018-19,Medfield - Medfield Senior High,1750505,0,1,1,97.1,0,0,1,69.8,30.2,103.2 +1,1,a-pcom-i3,2018-19,Medfield - Memorial School,1750003,0,1.4,0.5,97,0,0,1.1,96.6,3.4,71.3 +1,1,a-pcom-i3,2018-19,Medfield - Ralph Wheelock School,1750007,0,0.8,0.7,98.5,0,0,0,93.4,6.6,50.2 +1.15625,1.16,a-pcom-i3,2018-19,Medfield - Thomas Blake Middle,1750305,1.2,1.2,1.2,96.3,0,0,0,74.5,25.5,81 +1,1,a-pcom-i3,2018-19,Medford - Brooks School,1760130,0,0,1.4,98.6,0,0,0,95.7,4.3,70.3 +1.4375,1.44,a-pcom-i3,2018-19,Medford - Christopher Columbus,1760140,1.5,1.5,1.5,95.4,0,0,0,91.6,8.4,65.1 +3.40625,3.41,a-pcom-i3,2018-19,Medford - Curtis-Tufts,1760510,0,0,0,89.1,0,0,10.9,57.4,42.6,9.2 +1.53125,1.53,a-pcom-i3,2018-19,Medford - John J McGlynn Elementary School,1760068,1.6,1.6,1.6,95.1,0,0,0,95.1,4.9,60.8 +1.5625,1.56,a-pcom-i3,2018-19,Medford - John J. McGlynn Middle School,1760320,1.4,3.6,0,95,0,0,0,78.8,21.2,72.6 +1.09375,1.09,a-pcom-i3,2018-19,Medford - Madeleine Dugger Andrews,1760315,0,3.5,0,96.5,0,0,0,72.9,27.1,67.8 +1.25,1.25,a-pcom-i3,2018-19,Medford - Medford High,1760505,1.3,1.3,1.3,96,0,0,0,67.7,32.3,222.4 +1.625,1.63,a-pcom-i3,2018-19,Medford - Milton Fuller Roberts,1760150,2.6,1.3,0,94.8,0,0,1.3,89.1,10.9,76.4 +1,1,a-pcom-i3,2018-19,Medway - Burke/Memorial Elementary School,1770015,0,1.6,0,98.4,0,0,0,95.3,4.7,64.5 +1,1,a-pcom-i3,2018-19,Medway - John D Mc Govern Elementary,1770013,0,0,0,100,0,0,0,97.8,2.2,44.7 +1.375,1.38,a-pcom-i3,2018-19,Medway - Medway High,1770505,0,1.9,2.5,95.6,0,0,0,69.8,30.2,78.7 +1,1,a-pcom-i3,2018-19,Medway - Medway Middle,1770305,0,0,0,100,0,0,0,77.2,22.8,79.4 +1,1,a-pcom-i3,2018-19,Melrose - Early Childhood Center,1780003,0,0,1.8,98.2,0,0,0,99.1,0.9,54.8 +1,1,a-pcom-i3,2018-19,Melrose - Herbert Clark Hoover,1780017,0,0.6,0,99.4,0,0,0,92.9,7.1,34 +1.25,1.25,a-pcom-i3,2018-19,Melrose - Horace Mann,1780025,0,4,0,96,0,0,0,92.3,7.7,24.7 +1.75,1.75,a-pcom-i3,2018-19,Melrose - Lincoln,1780020,1.9,3.7,0,94.4,0,0,0,87.9,12.1,53.4 +1,1,a-pcom-i3,2018-19,Melrose - Melrose High,1780505,0,1.1,1.6,97.3,0,0,0,56.8,43.2,110.8 +1,1,a-pcom-i3,2018-19,Melrose - Melrose Middle,1780305,0,0,1.1,97.7,0,0,1.1,73.6,26.4,87 +1,1,a-pcom-i3,2018-19,Melrose - Roosevelt,1780035,0,2.1,0,97.9,0,0,0,97,3,57 +1.5,1.5,a-pcom-i3,2018-19,Melrose - Winthrop,1780050,0,2,0,95.2,0,0,2.8,84.8,15.2,35.8 +1,1,a-pcom-i3,2018-19,Mendon-Upton - Henry P Clough,7100179,0,0,1,99,0,0,0,95.1,4.9,51.2 +2.78125,2.78,a-pcom-i3,2018-19,Mendon-Upton - Memorial School,7100001,0,0,8.9,91.1,0,0,0,97.1,2.9,76.6 +1,1,a-pcom-i3,2018-19,Mendon-Upton - Miscoe Hill School,7100015,0,0,0,100,0,0,0,83.6,16.4,96.8 +1,1,a-pcom-i3,2018-19,Mendon-Upton - Nipmuc Regional High,7100510,0,0,2.9,97.1,0,0,0,64.8,35.2,76.4 +1,1,a-pcom-i3,2018-19,Methuen - Comprehensive Grammar School,1810050,0,0,3.2,96.8,0,0,0,89.4,10.6,123.2 +1.53125,1.53,a-pcom-i3,2018-19,Methuen - Donald P Timony Grammar,1810060,0,0,4.9,95.1,0,0,0,86.7,13.3,142.5 +1,1,a-pcom-i3,2018-19,Methuen - Marsh Grammar School,1810030,0,0,1.5,98.5,0,0,0,91.6,8.4,130.7 +1,1,a-pcom-i3,2018-19,Methuen - Methuen High,1810505,1,0,1,98,0,0,0,63.4,36.6,200.7 +1,1,a-pcom-i3,2018-19,Methuen - Tenney Grammar School,1810055,0.7,0,0.7,97.9,0.7,0,0,88.1,11.9,142.8 +1,1,a-pcom-i3,2018-19,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,0,100,0,0,0,92,8,64.8 +1,1,a-pcom-i3,2018-19,Middleborough - John T. Nichols Middle,1820305,0,0,0,100,0,0,0,79.9,20.1,78.2 +1.375,1.38,a-pcom-i3,2018-19,Middleborough - Mary K. Goode Elementary School,1820010,1.5,0,0,95.6,1.5,0,1.5,92.4,7.6,68.9 +1,1,a-pcom-i3,2018-19,Middleborough - Memorial Early Childhood Center,1820011,0,0,0,100,0,0,0,99.5,0.5,39.8 +1,1,a-pcom-i3,2018-19,Middleborough - Middleborough High,1820505,1,1,0,97.9,0,0,0,57.1,42.9,96.3 +1,1,a-pcom-i3,2018-19,Middleton - Fuller Meadow,1840003,0,0,0,100,0,0,0,99.7,0.3,50.6 +1,1,a-pcom-i3,2018-19,Middleton - Howe-Manning,1840005,0,0,0,100,0,0,0,90,10,78.7 +1.59375,1.59,a-pcom-i3,2018-19,Milford - Brookside,1850065,0,0,5.1,94.9,0,0,0,97.4,2.6,73.2 +1.15625,1.16,a-pcom-i3,2018-19,Milford - Memorial,1850010,0,0,3.7,96.3,0,0,0,95.8,4.2,74.1 +2.09375,2.09,a-pcom-i3,2018-19,Milford - Milford High,1850505,0,0.7,5.2,93.3,0,0,0.7,63.2,36.8,134.3 +2.375,2.37,a-pcom-i3,2018-19,Milford - Shining Star Early Childhood Center,1850075,0,0,7.6,92.4,0,0,0,95.3,4.7,42.8 +1,1,a-pcom-i3,2018-19,Milford - Stacy Middle,1850305,0,0,2.4,97.6,0,0,0,76.9,23.1,123.7 +1.75,1.75,a-pcom-i3,2018-19,Milford - Woodland,1850090,0,0.8,4.8,94.4,0,0,0,88.4,11.6,129.5 +1,1,a-pcom-i3,2018-19,Millbury - Elmwood Street,1860017,0,1.1,0,98.9,0,0,0,95.3,4.7,75.1 +1,1,a-pcom-i3,2018-19,Millbury - Millbury Junior/Senior High,1860505,0.5,1,0,98.6,0,0,0,64.7,35.3,103.5 +2.25,2.25,a-pcom-i3,2018-19,Millbury - Raymond E. Shaw Elementary,1860025,1.8,1.8,0,92.8,0,0,3.6,80.2,19.8,55.6 +1,1,a-pcom-i3,2018-19,Millis - Clyde F Brown,1870005,0,0,1.6,98.4,0,0,0,93.1,6.9,64.2 +1,1,a-pcom-i3,2018-19,Millis - Millis High School,1870505,0,0,2.3,97.7,0,0,0,55.8,44.2,43 +1,1,a-pcom-i3,2018-19,Millis - Millis Middle,1870020,0,0.9,2.2,96.9,0,0,0,88.5,11.5,44.5 +3.375,3.37,a-pcom-i3,2018-19,Milton - Charles S Pierce Middle,1890410,6.5,0.5,3.8,89.2,0,0,0,74.7,25.3,104.4 +3.03125,3.03,a-pcom-i3,2018-19,Milton - Collicot,1890005,2.9,2.9,3.9,90.3,0,0,0,95,5,69.3 +2.65625,2.66,a-pcom-i3,2018-19,Milton - Cunningham School,1890007,5,0,3.5,91.5,0,0,0,96.9,3.1,79.3 +3.125,3.13,a-pcom-i3,2018-19,Milton - Glover,1890010,6.3,1.6,0.5,90,1.6,0,0,91.1,8.9,63.3 +3.71875,3.72,a-pcom-i3,2018-19,Milton - Milton High,1890505,8.2,0.4,1.6,88.1,0,0.8,0.8,66.5,33.5,121.9 +8.375,5,a-pcom-i3,2018-19,Milton - Tucker,1890020,17.6,6.6,2.6,73.2,0,0,0,86.6,13.4,45.5 +1.15625,1.16,a-pcom-i3,2018-19,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,2.5,0.8,96.3,0,0.4,0,56.5,43.5,120.3 +1,1,a-pcom-i3,2018-19,Mohawk Trail - Buckland-Shelburne Regional,7170005,0,0,1.6,98.4,0,0,0,97.7,2.3,63.9 +1,1,a-pcom-i3,2018-19,Mohawk Trail - Colrain Central,7170010,0,0,0,100,0,0,0,92.8,7.2,30.5 +1,1,a-pcom-i3,2018-19,Mohawk Trail - Mohawk Trail Regional High,7170505,0,0,0,97.3,1.4,0,1.4,72.6,27.4,73.5 +1,1,a-pcom-i3,2018-19,Mohawk Trail - Sanderson Academy,7170020,0,0,0,100,0,0,0,96.7,3.3,30.7 +1,1,a-pcom-i3,2018-19,Monomoy Regional School District - Chatham Elementary School,7120001,0,0,0,100,0,0,0,98.9,1.1,43.5 +1,1,a-pcom-i3,2018-19,Monomoy Regional School District - Harwich Elementary School,7120002,0,0.9,0,98,0,0,1.1,95.1,4.9,92.1 +1.71875,1.72,a-pcom-i3,2018-19,Monomoy Regional School District - Monomoy Regional High School,7120515,0,2.2,1.1,94.5,0,0,2.2,69.2,30.8,91 +1,1,a-pcom-i3,2018-19,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,1.5,0,98.5,0,0,0,71,29,67.2 +1.28125,1.28,a-pcom-i3,2018-19,Monson - Granite Valley Middle,1910310,0,0,4.1,95.9,0,0,0,76.8,23.2,49 +1,1,a-pcom-i3,2018-19,Monson - Monson High School,1910505,0,0,0,100,0,0,0,67.3,32.7,41.3 +1,1,a-pcom-i3,2018-19,Monson - Quarry Hill Community School,1910025,0,0,0,98.4,0,1.6,0,93.7,6.3,63.2 +1.5625,1.56,a-pcom-i3,2018-19,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,0.6,0,3.3,95,1.1,0,0,56.3,43.8,180.8 +1,1,a-pcom-i3,2018-19,Mount Greylock - Lanesborough Elementary,7150005,0,0,0,100,0,0,0,89.9,10.1,35.5 +1.21875,1.22,a-pcom-i3,2018-19,Mount Greylock - Mt Greylock Regional High,7150505,0,1.3,2.6,96.1,0,0,0,59.5,40.5,76.6 +1,1,a-pcom-i3,2018-19,Mount Greylock - Williamstown Elementary,7150010,0,2.3,0,97.7,0,0,0,98,2,68.8 +2.71875,2.72,a-pcom-i3,2018-19,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,2.7,2.7,2,91.3,0,0,1.3,70.5,29.5,149.1 +1,1,a-pcom-i3,2018-19,Nahant - Johnson,1960010,0,0,0,100,0,0,0,88.9,11.1,21.5 +2.78125,2.78,a-pcom-i3,2018-19,Nantucket - Cyrus Peirce,1970010,3.9,2,1,91.1,0,0,2,77.5,22.5,50.7 +1.03125,1.03,a-pcom-i3,2018-19,Nantucket - Nantucket Elementary,1970005,0,0,1.7,96.7,0,0,1.7,95,5,60.3 +3.59375,3.59,a-pcom-i3,2018-19,Nantucket - Nantucket High,1970505,2.9,2.9,4.3,88.5,1.4,0,0,68.9,31.1,69.4 +1,1,a-pcom-i3,2018-19,Nantucket - Nantucket Intermediate School,1970020,0,0,0.8,99.2,0,0,0,86.6,13.4,52.2 +1,1,a-pcom-i3,2018-19,Narragansett - Baldwinville Elementary,7200005,0,0,0,100,0,0,0,97.4,2.6,28.6 +1,1,a-pcom-i3,2018-19,Narragansett - Narragansett Middle,7200305,0,0,0,100,0,0,0,68.9,31.1,50.4 +1,1,a-pcom-i3,2018-19,Narragansett - Narragansett Regional High,7200505,0,0,2.3,97.7,0,0,0,75.9,24.1,42.9 +1,1,a-pcom-i3,2018-19,Narragansett - Phillipston Memorial,7200003,0,0,0,100,0,0,0,100,0,22.8 +1,1,a-pcom-i3,2018-19,Narragansett - Templeton Center,7200020,0,0,0,100,0,0,0,98.9,1.1,22.7 +1,1,a-pcom-i3,2018-19,Nashoba - Center School,7250020,0,0,0,100,0,0,0,95.2,4.8,67.8 +1,1,a-pcom-i3,2018-19,Nashoba - Florence Sawyer School,7250025,0,0,1,99,0,0,0,86.3,13.7,97.1 +1.625,1.63,a-pcom-i3,2018-19,Nashoba - Hale,7250310,0,2.6,2.6,94.8,0,0,0,84.4,15.6,38.5 +1,1,a-pcom-i3,2018-19,Nashoba - Luther Burbank Middle School,7250305,2.3,0,0,97.7,0,0,0,79.8,20.2,43.5 +1,1,a-pcom-i3,2018-19,Nashoba - Mary Rowlandson Elementary,7250010,0,0,1.5,97,0,0,1.5,90.3,9.7,66.4 +1,1,a-pcom-i3,2018-19,Nashoba - Nashoba Regional,7250505,0,1.7,0,98.3,0,0,0,62.8,37.2,118.3 +1.03125,1.03,a-pcom-i3,2018-19,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,1.1,1.1,1.1,96.7,0,0,0,45.4,54.6,91.3 +1,1,a-pcom-i3,2018-19,Natick - Bennett-Hemenway,1980005,0,2.4,0,97.6,0,0,0,89.4,10.6,84.1 +1,1,a-pcom-i3,2018-19,Natick - Brown,1980010,0,0.9,0,99.1,0,0,0,92.4,7.6,66.2 +1.21875,1.22,a-pcom-i3,2018-19,Natick - J F Kennedy Middle School,1980305,0,1.7,1.1,96.1,1.1,0,0,77.7,22.3,89.7 +1,1,a-pcom-i3,2018-19,Natick - Johnson,1980031,0,1.9,0,98.1,0,0,0,93,7,34.1 +1.21875,1.22,a-pcom-i3,2018-19,Natick - Lilja Elementary,1980035,1.9,1.9,0,96.1,0,0,0,95.3,4.7,51.6 +1,1,a-pcom-i3,2018-19,Natick - Memorial,1980043,0,0,0,100,0,0,0,91.4,8.6,51.3 +1.0625,1.06,a-pcom-i3,2018-19,Natick - Natick High,1980505,0.7,2.7,0,96.6,0,0,0,74.9,25.1,217.7 +1,1,a-pcom-i3,2018-19,Natick - Wilson Middle,1980310,1.2,1.2,0.8,96.9,0,0,0,77.4,22.6,130.3 +1.0625,1.06,a-pcom-i3,2018-19,Nauset - Nauset Regional High,6600505,0.8,0.6,1.9,96.6,0,0,0,65.6,34.4,124 +1.375,1.38,a-pcom-i3,2018-19,Nauset - Nauset Regional Middle,6600305,1,1.3,2.1,95.6,0,0,0,85.3,14.7,95.4 +1,1,a-pcom-i3,2018-19,Needham - Broadmeadow,1990005,1.6,1.6,0,96.8,0,0,0,97.3,2.7,62.9 +1,1,a-pcom-i3,2018-19,Needham - High Rock School,1990410,0.5,0,0,97.9,0,0,1.6,78.8,21.2,61.9 +1.96875,1.97,a-pcom-i3,2018-19,Needham - Hillside Elementary,1990035,2.5,3.3,0,93.7,0,0,0.4,90.7,9.3,66.9 +2.71875,2.72,a-pcom-i3,2018-19,Needham - John Eliot,1990020,0,4.7,2,91.3,0,0,2,90.1,9.9,50.7 +3.84375,3.84,a-pcom-i3,2018-19,Needham - Needham High,1990505,5,2.9,2.9,87.7,0,0,1.5,64.7,35.3,194.4 +2.15625,2.16,a-pcom-i3,2018-19,Needham - Newman Elementary,1990050,2.4,2.4,2.1,93.1,0,0,0,92.7,7.3,124.5 +2.5625,2.56,a-pcom-i3,2018-19,Needham - Pollard Middle,1990405,3.1,0.8,1.7,91.8,0,0,2.5,74.8,25.2,118.4 +2.40625,2.41,a-pcom-i3,2018-19,Needham - William Mitchell,1990040,0.9,1.8,3.7,92.3,0,0,1.3,87.5,12.5,54.3 +10.78125,5,a-pcom-i3,2018-19,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,12.8,6,10.6,65.5,0,0,5.1,76.9,23.1,83.1 +1.40625,1.41,a-pcom-i3,2018-19,New Bedford - Abraham Lincoln,2010095,1.5,0,3,95.5,0,0,0,89.4,10.6,66.3 +3.875,3.88,a-pcom-i3,2018-19,New Bedford - Alfred J Gomes,2010063,6.9,0,4.1,87.6,0,0,1.4,94.5,5.5,72.5 +1,1,a-pcom-i3,2018-19,New Bedford - Betsey B Winslow,2010140,0,0,1.7,98.3,0,0,0,98.3,1.7,30.2 +1.5625,1.56,a-pcom-i3,2018-19,New Bedford - Carlos Pacheco,2010105,5,0,0,95,0,0,0,95,5,39.8 +2.6875,2.69,a-pcom-i3,2018-19,New Bedford - Casimir Pulaski,2010123,3.5,0,5.1,91.4,0,0,0,91.9,8.1,98.7 +1.59375,1.59,a-pcom-i3,2018-19,New Bedford - Charles S Ashley,2010010,3.4,0,1.7,94.9,0,0,0,96.6,3.4,29.5 +1,1,a-pcom-i3,2018-19,New Bedford - Elizabeth Carter Brooks,2010015,0,0,0,100,0,0,0,86.2,13.8,25.3 +6.96875,5,a-pcom-i3,2018-19,New Bedford - Ellen R Hathaway,2010075,2.8,0,16.7,77.7,2.8,0,0,91.6,8.4,35.9 +3.34375,3.34,a-pcom-i3,2018-19,New Bedford - Elwyn G Campbell,2010020,2.1,0,2.1,89.3,4.3,0,2.1,94.7,5.3,46.9 +7.03125,5,a-pcom-i3,2018-19,New Bedford - Hayden/McFadden,2010078,7.2,0,14.4,77.5,0.8,0,0,90.7,9.3,117.7 +1.71875,1.72,a-pcom-i3,2018-19,New Bedford - Irwin M. Jacobs Elementary School,2010070,2.7,0,2.7,94.5,0,0,0,87.4,12.6,36.4 +1,1,a-pcom-i3,2018-19,New Bedford - James B Congdon,2010040,0,0,3.1,96.9,0,0,0,93.7,6.3,32 +1,1,a-pcom-i3,2018-19,New Bedford - Jireh Swift,2010130,0,0,0,97.6,0,0,2.4,92.9,7.1,21.2 +2.8125,2.81,a-pcom-i3,2018-19,New Bedford - John Avery Parker,2010115,3,0,6,91,0,0,0,91,9,33.4 +1,1,a-pcom-i3,2018-19,New Bedford - John B Devalles,2010050,2.8,0,0,97.2,0,0,0,90.2,9.8,35.8 +3.375,3.37,a-pcom-i3,2018-19,New Bedford - Keith Middle School,2010405,8.1,0.9,0,89.2,0,0,1.8,72.1,27.9,111.2 +5.09375,5,a-pcom-i3,2018-19,New Bedford - New Bedford High,2010505,6.6,1.5,6.5,83.7,0.4,0.4,1,64,36,266 +3.21875,3.22,a-pcom-i3,2018-19,New Bedford - Normandin Middle School,2010410,4.1,0,4.1,89.7,0,0,2,66.4,33.6,122 +7.40625,5,a-pcom-i3,2018-19,New Bedford - Renaissance Community Innovation School,2010124,15.8,0,4,76.3,0,0,4,88.1,11.9,25.3 +6.25,5,a-pcom-i3,2018-19,New Bedford - Roosevelt Middle School,2010415,6.4,0.9,9.1,80,0.9,0,2.7,74.5,25.5,110 +6.84375,5,a-pcom-i3,2018-19,New Bedford - Sgt Wm H Carney Academy,2010045,11,0.9,9.1,78.1,0,0,0.9,90.9,9.1,109.5 +1,1,a-pcom-i3,2018-19,New Bedford - Thomas R Rodman,2010125,0,0,0,100,0,0,0,86.1,13.9,19.7 +2.9375,2.94,a-pcom-i3,2018-19,New Bedford - Trinity Day Academy,2010510,6.3,0,3.1,90.6,0,0,0,48,52,31.9 +6.4375,5,a-pcom-i3,2018-19,New Bedford - Whaling City Junior/Senior High School,2010515,12.9,0,2.6,79.4,0,0,5.2,58.8,41.2,38.8 +1,1,a-pcom-i3,2018-19,New Bedford - William H Taylor,2010135,0,0,0,100,0,0,0,98.3,1.7,24.1 +7.6875,5,a-pcom-i3,2018-19,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,22.4,0,0,75.4,0,0,2.1,62.6,37.4,46.8 +2,2,a-pcom-i3,2018-19,New Salem-Wendell - Swift River,7280015,0,0,3.2,93.6,0,0,3.2,94.9,5.1,31.2 +1,1,a-pcom-i3,2018-19,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,100,0,0,0,89.5,10.5,48.6 +1,1,a-pcom-i3,2018-19,Newburyport - Francis T Bresnahan Elementary,2040005,0,0,0,100,0,0,0,95.1,4.9,102.5 +1,1,a-pcom-i3,2018-19,Newburyport - Newburyport High,2040505,0,0,0,100,0,0,0,73.7,26.3,99.3 +1.34375,1.34,a-pcom-i3,2018-19,Newburyport - Rupert A Nock Middle,2040305,1.4,1.4,1.4,95.7,0,0,0,74,26,69 +3.53125,3.53,a-pcom-i3,2018-19,Newton - A E Angier,2070005,6.1,1.4,2.7,88.7,0,0,1.2,83.2,16.8,73.9 +2.75,2.75,a-pcom-i3,2018-19,Newton - Bigelow Middle,2070305,1.2,1.9,4.7,91.2,0,0,1.2,74.1,25.9,86 +6.625,5,a-pcom-i3,2018-19,Newton - Bowen,2070015,3.4,10,4.4,78.8,0,0,3.4,91.8,8.2,58.8 +7.1875,5,a-pcom-i3,2018-19,Newton - C C Burr,2070020,4.1,11.8,5.1,77,0,0,2,90.3,9.7,59.4 +4.84375,4.84,a-pcom-i3,2018-19,Newton - Cabot,2070025,0,5.3,8.4,84.5,0,1.8,0,87.1,12.9,55.5 +2.8125,2.81,a-pcom-i3,2018-19,Newton - Charles E Brown Middle,2070310,2.4,1.6,3.3,91,0,0,1.6,70.6,29.4,122.6 +1.96875,1.97,a-pcom-i3,2018-19,Newton - Countryside,2070040,2.4,1.5,0,93.7,0,0,2.4,88.8,11.2,74.2 +2.59375,2.59,a-pcom-i3,2018-19,Newton - F A Day Middle,2070315,2.1,3.2,1.6,91.7,0,0,1.4,69.9,30.1,139.8 +4.09375,4.09,a-pcom-i3,2018-19,Newton - Franklin,2070055,5.6,4.4,3.1,86.9,0,0,0,90.8,9.2,65 +5.53125,5,a-pcom-i3,2018-19,Newton - Horace Mann,2070075,9.4,8.3,0,82.3,0,0,0,87.3,12.7,62.3 +2.5,2.5,a-pcom-i3,2018-19,Newton - John Ward,2070120,3.2,2.1,2.7,92,0,0,0,92.6,7.4,48.4 +3.3125,3.31,a-pcom-i3,2018-19,Newton - Lincoln-Eliot,2070070,0.8,0,9.7,89.4,0,0,0,91.3,8.7,61.6 +3.5,3.5,a-pcom-i3,2018-19,Newton - Mason-Rice,2070080,1.5,4.5,5.1,88.8,0,0,0,87.6,12.4,65.1 +3.5625,3.56,a-pcom-i3,2018-19,Newton - Memorial Spaulding,2070105,2.9,2.7,4.4,88.6,0,0,1.4,91.4,8.6,71.9 +2.375,2.37,a-pcom-i3,2018-19,Newton - Newton Early Childhood Center,2070108,1.4,4.1,1.4,92.4,0,0,0.7,100,0,70.1 +4.53125,4.53,a-pcom-i3,2018-19,Newton - Newton North High,2070505,4.8,5.7,2.7,85.5,0,0,1.3,65.1,34.9,319.2 +5.15625,5,a-pcom-i3,2018-19,Newton - Newton South High,2070510,3.2,5.9,5.2,83.5,0,0,2.3,64.3,35.7,262.3 +4.25,4.25,a-pcom-i3,2018-19,Newton - Oak Hill Middle,2070320,2.1,5.4,5,86.4,0,0,1.1,72.1,27.9,94 +3.625,3.62,a-pcom-i3,2018-19,Newton - Peirce,2070100,5.6,0,3.3,88.4,0,0,2.7,88.3,11.7,37.7 +3,3,a-pcom-i3,2018-19,Newton - Underwood,2070115,4.9,0,4.7,90.4,0,0,0,84.1,15.9,40.4 +4.71875,4.72,a-pcom-i3,2018-19,Newton - Williams,2070125,2.1,6.9,2.1,84.9,0,0,3.9,80.4,19.6,46.5 +3.40625,3.41,a-pcom-i3,2018-19,Newton - Zervas,2070130,2.4,6,2.5,89.1,0,0,0,86.3,13.7,79.9 +1,1,a-pcom-i3,2018-19,Norfolk - Freeman-Kennedy School,2080005,0,0,0,100,0,0,0,88.1,11.9,67.1 +1,1,a-pcom-i3,2018-19,Norfolk - H Olive Day,2080015,0,0,0,100,0,0,0,95.4,4.6,81 +1,1,a-pcom-i3,2018-19,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,100,0,0,0,62.6,37.4,77.3 +1,1,a-pcom-i3,2018-19,North Adams - Brayton,2090035,0,0,0,100,0,0,0,85.8,14.2,63.3 +1,1,a-pcom-i3,2018-19,North Adams - Colegrove Park Elementary,2090008,0,0,0,100,0,0,0,87.3,12.7,63 +1,1,a-pcom-i3,2018-19,North Adams - Drury High,2090505,0,0,1.3,98.7,0,0,0,68.5,31.5,75.8 +1,1,a-pcom-i3,2018-19,North Adams - Greylock,2090015,1.9,0,0,98.1,0,0,0,88.4,11.6,51.8 +1,1,a-pcom-i3,2018-19,North Andover - Anne Bradstreet Early Childhood Center,2110005,0,0,0,100,0,0,0,98.7,1.3,69.5 +1,1,a-pcom-i3,2018-19,North Andover - Annie L Sargent School,2110018,0,1.8,0,98.2,0,0,0,94.5,5.5,55 +1,1,a-pcom-i3,2018-19,North Andover - Atkinson,2110001,0,0,0,100,0,0,0,90.3,9.7,37.1 +1,1,a-pcom-i3,2018-19,North Andover - Franklin,2110010,0,0,1.8,98.2,0,0,0,94.5,5.5,54.6 +1.875,1.88,a-pcom-i3,2018-19,North Andover - Kittredge,2110015,0,3,3,94,0,0,0,82.4,17.6,33.6 +1,1,a-pcom-i3,2018-19,North Andover - North Andover High,2110505,0.8,1.5,0.8,96.9,0,0,0,64.7,35.3,124.1 +1,1,a-pcom-i3,2018-19,North Andover - North Andover Middle,2110305,0,0,0,100,0,0,0,73.3,26.7,106.4 +1,1,a-pcom-i3,2018-19,North Andover - Thomson,2110020,0,0,0,100,0,0,0,92.6,7.4,40.8 +1,1,a-pcom-i3,2018-19,North Attleborough - Amvet Boulevard,2120007,1.2,0,0.7,98.1,0,0,0,99.3,0.7,41.6 +1,1,a-pcom-i3,2018-19,North Attleborough - Community,2120030,0,1.7,0,98.3,0,0,0,95.7,4.3,58.6 +1,1,a-pcom-i3,2018-19,North Attleborough - Falls,2120010,0,0,0,100,0,0,0,94.9,5.1,29.5 +1,1,a-pcom-i3,2018-19,North Attleborough - Joseph W Martin Jr Elementary,2120013,1.5,0,1.5,97,0,0,0,95.5,4.5,66.8 +1.0625,1.06,a-pcom-i3,2018-19,North Attleborough - North Attleboro High,2120505,0.9,0.9,1.7,96.6,0,0,0,69.5,30.5,116.9 +1,1,a-pcom-i3,2018-19,North Attleborough - North Attleborough Early Learning Center,2120020,2.9,0,0,97.1,0,0,0,100,0,27.6 +1,1,a-pcom-i3,2018-19,North Attleborough - North Attleborough Middle,2120305,0.9,0,1.8,97.3,0,0,0,75.8,24.2,111.6 +1,1,a-pcom-i3,2018-19,North Attleborough - Roosevelt Avenue,2120015,0,0,2.3,97.7,0,0,0,95.5,4.5,22 +1,1,a-pcom-i3,2018-19,North Brookfield - North Brookfield Elementary,2150015,0,2.2,0,97.8,0,0,0,91.1,8.9,45 +1,1,a-pcom-i3,2018-19,North Brookfield - North Brookfield High,2150505,0,0,0,100,0,0,0,72.9,27.1,36.5 +1,1,a-pcom-i3,2018-19,North Middlesex - Ashby Elementary,7350010,0,0,0,97.5,0,2.5,0,97.5,2.5,40.1 +1,1,a-pcom-i3,2018-19,North Middlesex - Hawthorne Brook,7350030,0,0,0,100,0,0,0,77.3,22.7,59.4 +1.40625,1.41,a-pcom-i3,2018-19,North Middlesex - Nissitissit Middle School,7350310,0,0.3,4.2,95.5,0,0,0,79.1,20.9,71.9 +1,1,a-pcom-i3,2018-19,North Middlesex - North Middlesex Regional,7350505,1.1,0,0,98.9,0,0,0,70.8,29.2,94.3 +1,1,a-pcom-i3,2018-19,North Middlesex - Spaulding Memorial,7350005,0,0,0,100,0,0,0,90.9,9.1,55 +1,1,a-pcom-i3,2018-19,North Middlesex - Squannacook Early Childhood Center,7350002,0,0,0,100,0,0,0,100,0,19.6 +1,1,a-pcom-i3,2018-19,North Middlesex - Varnum Brook,7350035,0,2.5,0,97.5,0,0,0,97.2,2.8,71 +1,1,a-pcom-i3,2018-19,North Reading - E Ethel Little School,2170003,0,0,0,100,0,0,0,91.1,8.9,44.9 +1,1,a-pcom-i3,2018-19,North Reading - J Turner Hood,2170010,0,0,0,100,0,0,0,89.5,10.5,45.5 +1,1,a-pcom-i3,2018-19,North Reading - L D Batchelder,2170005,0,0,0.8,99.2,0,0,0,92.5,7.5,53.3 +1,1,a-pcom-i3,2018-19,North Reading - North Reading High,2170505,0,0,2.2,97.8,0,0,0,48.7,51.3,92.8 +1,1,a-pcom-i3,2018-19,North Reading - North Reading Middle,2170305,1.1,0,0,98.9,0,0,0,83.2,16.8,74.3 +2.03125,2.03,a-pcom-i3,2018-19,Northampton - Bridge Street,2100005,1.7,0,4.8,93.5,0,0,0,89.8,10.2,58 +6.34375,5,a-pcom-i3,2018-19,Northampton - Jackson Street,2100020,0,2,16.3,79.7,0,0,2,85.6,14.4,49.2 +2.09375,2.09,a-pcom-i3,2018-19,Northampton - John F Kennedy Middle School,2100410,1.9,0,4.8,93.3,0,0,0,77.6,22.4,103.8 +2.34375,2.34,a-pcom-i3,2018-19,Northampton - Leeds,2100025,2,0,5.5,92.5,0,0,0,92.1,7.9,50.8 +2.15625,2.16,a-pcom-i3,2018-19,Northampton - Northampton High,2100505,3,0,3,93.1,0,0,1,63.1,36.9,101 +1,1,a-pcom-i3,2018-19,Northampton - R. K. Finn Ryan Road,2100029,0,0,2.3,97.7,0,0,0,90.7,9.3,42.9 +1,1,a-pcom-i3,2018-19,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,3.2,96.8,0,0,0,51.6,48.4,95 +1.03125,1.03,a-pcom-i3,2018-19,Northboro-Southboro - Algonquin Regional High,7300505,0,0.5,2.2,96.7,0,0.5,0,73.7,26.3,183.6 +1,1,a-pcom-i3,2018-19,Northborough - Fannie E Proctor,2130015,0,0,1,99,0,0,0,89,11,49.8 +1.09375,1.09,a-pcom-i3,2018-19,Northborough - Lincoln Street,2130003,1.2,0,2.3,96.5,0,0,0,91.9,8.1,43.2 +1,1,a-pcom-i3,2018-19,Northborough - Marguerite E Peaslee,2130014,1.2,0,0,98.8,0,0,0,96.3,3.7,40.2 +1,1,a-pcom-i3,2018-19,Northborough - Marion E Zeh,2130020,0,0,1.2,98.8,0,0,0,93.1,6.9,40.9 +1,1,a-pcom-i3,2018-19,Northborough - Robert E. Melican Middle School,2130305,0,1.3,1.3,96.9,0,0.6,0,84.4,15.6,79.7 +1,1,a-pcom-i3,2018-19,Northbridge - Northbridge Elementary,2140005,0,0,0,97.7,0,0.8,1.5,96.2,3.8,66 +1,1,a-pcom-i3,2018-19,Northbridge - Northbridge High,2140505,1.4,0,0,98.6,0,0,0,61,39,69.2 +1,1,a-pcom-i3,2018-19,Northbridge - Northbridge Middle,2140305,0,0,2.4,97.6,0,0,0,73.3,26.7,83.2 +1,1,a-pcom-i3,2018-19,Northbridge - W Edward Balmer,2140001,0,0,0,99.2,0,0.8,0,95.7,4.3,65.2 +2.125,2.12,a-pcom-i3,2018-19,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,2.5,1.2,3.1,93.2,0,0,0,49.7,50.3,161.9 +1,1,a-pcom-i3,2018-19,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,100,0,0,0,56,44,62.1 +1,1,a-pcom-i3,2018-19,Norton - Henri A. Yelle,2180060,0,0,0,100,0,0,0,89.6,10.4,41.8 +1,1,a-pcom-i3,2018-19,Norton - J C Solmonese,2180015,0,0,0,100,0,0,0,97.7,2.3,64 +1,1,a-pcom-i3,2018-19,Norton - L G Nourse Elementary,2180010,0,0,0,100,0,0,0,98.7,1.3,34.1 +1.03125,1.03,a-pcom-i3,2018-19,Norton - Norton High,2180505,0,0,3.3,96.7,0,0,0,69.1,30.9,79.9 +1,1,a-pcom-i3,2018-19,Norton - Norton Middle,2180305,0,0,1.5,98.5,0,0,0,76.6,23.4,67.1 +1,1,a-pcom-i3,2018-19,Norwell - Grace Farrar Cole,2190005,0,0,0,100,0,0,0,94.2,5.8,57.3 +1,1,a-pcom-i3,2018-19,Norwell - Norwell High,2190505,0,0,0,100,0,0,0,62.1,37.9,70.2 +1,1,a-pcom-i3,2018-19,Norwell - Norwell Middle School,2190405,0,0,0,100,0,0,0,75.8,24.2,66.2 +1,1,a-pcom-i3,2018-19,Norwell - William G Vinal,2190020,0,1.8,0,98.2,0,0,0,90.5,9.5,57.1 +2.4375,2.44,a-pcom-i3,2018-19,Norwood - Balch,2200005,0,2.6,2.6,92.2,2.6,0,0,96.4,3.6,38.7 +1,1,a-pcom-i3,2018-19,Norwood - Charles J Prescott,2200025,0,3.2,0,96.8,0,0,0,91.4,8.6,31.4 +1,1,a-pcom-i3,2018-19,Norwood - Cornelius M Callahan,2200010,0,0,0,100,0,0,0,87,13,34.6 +1,1,a-pcom-i3,2018-19,Norwood - Dr. Philip O. Coakley Middle School,2200305,1.1,0,1.1,97.8,0,0,0,71.6,28.4,92.6 +1,1,a-pcom-i3,2018-19,Norwood - F A Cleveland,2200015,0,0,2.1,97.9,0,0,0,94.1,5.9,47.4 +1,1,a-pcom-i3,2018-19,Norwood - George F. Willett,2200075,1.5,0,1.5,97,0,0,0,99.7,0.3,66.9 +1,1,a-pcom-i3,2018-19,Norwood - John P Oldham,2200020,0,0,0,96.9,0,3.1,0,83.5,16.5,32.7 +1,1,a-pcom-i3,2018-19,Norwood - Norwood High,2200505,0.9,0,1.8,97.3,0,0,0,64.6,35.4,110.6 +1.84375,1.84,a-pcom-i3,2018-19,Oak Bluffs - Oak Bluffs Elementary,2210005,1.6,0,0.6,94.1,0,0,3.7,92,8,81.5 +1,1,a-pcom-i3,2018-19,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,1.2,0,97.6,0,0,1.2,57.1,42.9,84 +1,1,a-pcom-i3,2018-19,Old Rochester - Old Rochester Regional High,7400505,0,0,1.1,98.9,0,0,0,64.5,35.5,90.3 +1,1,a-pcom-i3,2018-19,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,100,0,0,0,70.6,29.4,56.2 +3.5,3.5,a-pcom-i3,2018-19,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,0,11.2,88.8,0,0,0,88.8,11.2,17.9 +1,1,a-pcom-i3,2018-19,Orange - Dexter Park,2230010,0,0,0,100,0,0,0,83.8,16.2,44.2 +1,1,a-pcom-i3,2018-19,Orange - Fisher Hill,2230015,0,0,2.1,97.9,0,0,0,94.2,5.8,47.5 +1,1,a-pcom-i3,2018-19,Orleans - Orleans Elementary,2240005,0,0,1.2,98.8,0,0,0,89.3,10.7,43 +1,1,a-pcom-i3,2018-19,Oxford - Alfred M Chaffee,2260010,0,0,0,100,0,0,0,97,3,33.5 +1,1,a-pcom-i3,2018-19,Oxford - Clara Barton,2260005,0,0,0,100,0,0,0,97.5,2.5,39.4 +2.40625,2.41,a-pcom-i3,2018-19,Oxford - Oxford High,2260505,1.7,1.5,3,92.3,0,0,1.5,63.7,36.3,66.3 +1,1,a-pcom-i3,2018-19,Oxford - Oxford Middle,2260405,0,0,0,100,0,0,0,88.4,11.6,43.3 +1,1,a-pcom-i3,2018-19,Oxford - Project C.O.F.F.E.E.,2260305,0,0,0,100,0,0,0,45.5,54.5,11 +1.09375,1.09,a-pcom-i3,2018-19,Palmer - Old Mill Pond,2270008,0,0,2.5,96.5,0,0,1,91.1,8.9,98.8 +1,1,a-pcom-i3,2018-19,Palmer - Palmer High,2270505,0,1,0.5,97.6,0,0,1,77,23,105.3 +1,1,a-pcom-i3,2018-19,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0,0,0,100,0,0,0,49.5,50.5,107.1 +15.96875,5,a-pcom-i3,2018-19,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,15.6,0,35.6,48.9,0,0,0,68.9,31.1,45 +1,1,a-pcom-i3,2018-19,Peabody - Captain Samuel Brown,2290005,0,0,0,100,0,0,0,96,4,67.6 +1.59375,1.59,a-pcom-i3,2018-19,Peabody - Center,2290015,0,2.6,2.6,94.9,0,0,0,95.3,4.7,39.2 +1,1,a-pcom-i3,2018-19,Peabody - J Henry Higgins Middle,2290305,0,0,0.6,99.4,0,0,0,73.7,26.3,155.5 +1,1,a-pcom-i3,2018-19,Peabody - John E Burke,2290007,0,0,2.5,97.5,0,0,0,97.9,2.1,40 +1,1,a-pcom-i3,2018-19,Peabody - John E. McCarthy,2290016,0,0,0,100,0,0,0,90.5,9.5,57.4 +1,1,a-pcom-i3,2018-19,Peabody - Peabody Veterans Memorial High,2290510,0,0.5,0.5,98.4,0,0,0.5,59.6,40.4,187.1 +1,1,a-pcom-i3,2018-19,Peabody - South Memorial,2290035,0,0,0,100,0,0,0,91.7,8.3,39.7 +1,1,a-pcom-i3,2018-19,Peabody - Thomas Carroll,2290010,0,0,0,100,0,0,0,90.3,9.7,56.7 +1,1,a-pcom-i3,2018-19,Peabody - West Memorial,2290045,0,0,0,100,0,0,0,95.5,4.5,44.7 +1.53125,1.53,a-pcom-i3,2018-19,Peabody - William A Welch Sr,2290027,2.4,0,2.4,95.1,0,0,0,93.4,6.6,40.9 +4.59375,4.59,a-pcom-i3,2018-19,Pelham - Pelham Elementary,2300005,3.7,0,11,85.3,0,0,0,83.8,16.2,27.2 +1,1,a-pcom-i3,2018-19,Pembroke - Bryantville Elementary,2310003,0,0,0,100,0,0,0,94,6,50.1 +1,1,a-pcom-i3,2018-19,Pembroke - Hobomock Elementary,2310010,0,0,0,100,0,0,0,92.2,7.8,51.1 +1,1,a-pcom-i3,2018-19,Pembroke - North Pembroke Elementary,2310015,0,0,0,100,0,0,0,93.1,6.9,58.3 +1,1,a-pcom-i3,2018-19,Pembroke - Pembroke Community Middle School,2310305,0,0,0,100,0,0,0,86.1,13.9,50.2 +1,1,a-pcom-i3,2018-19,Pembroke - Pembroke High School,2310505,0,0,0,100,0,0,0,74.5,25.5,94 +1,1,a-pcom-i3,2018-19,Pentucket - Dr Frederick N Sweetsir,7450020,0,0,0,100,0,0,0,98.9,1.1,45 +1,1,a-pcom-i3,2018-19,Pentucket - Dr John C Page School,7450015,0,0,0,99.4,0,0,0.6,92.7,7.3,49.5 +1,1,a-pcom-i3,2018-19,Pentucket - Elmer S Bagnall,7450005,0,0,0,99.5,0,0,0.5,97.4,2.6,62.5 +1.0625,1.06,a-pcom-i3,2018-19,Pentucket - Helen R Donaghue School,7450010,0,0,2.6,96.6,0,0,0.8,91.9,8.1,38.4 +1,1,a-pcom-i3,2018-19,Pentucket - Pentucket Regional Middle,7450405,0,0,0,97.9,0,0,2.1,74.5,25.5,47.3 +1,1,a-pcom-i3,2018-19,Pentucket - Pentucket Regional Sr High,7450505,0,0,1.1,98.6,0,0,0.3,61.2,38.8,89.9 +1,1,a-pcom-i3,2018-19,Petersham - Petersham Center,2340005,0,0,0,100,0,0,0,88.9,11.1,19.2 +14.03125,5,a-pcom-i3,2018-19,Phoenix Academy Public Charter High School Lawrence (District) - Phoenix Academy Public Charter High School Lawrence,35180505,16.3,4.1,24.5,55.1,0,0,0,75.5,24.5,24.5 +21.59375,5,a-pcom-i3,2018-19,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,43.6,7.3,18.2,30.9,0,0,0,78.2,21.8,27.5 +16.78125,5,a-pcom-i3,2018-19,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,18.5,11.1,24.1,46.3,0,0,0,74.1,25.9,27 +3.21875,3.22,a-pcom-i3,2018-19,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,4.1,3.1,3.1,89.7,0,0,0,73.6,26.4,96.7 +8.875,5,a-pcom-i3,2018-19,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,4.4,15.2,6.6,71.6,0,0,2.2,52.8,47.2,45.5 +1,1,a-pcom-i3,2018-19,Pioneer Valley - Bernardston Elementary,7500006,0,0,0,100,0,0,0,97.1,2.9,31.3 +1,1,a-pcom-i3,2018-19,Pioneer Valley - Northfield Elementary,7500008,0,0,0,100,0,0,0,97,3,33.6 +1,1,a-pcom-i3,2018-19,Pioneer Valley - Pearl E Rhodes Elementary,7500007,0,0,0,100,0,0,0,72.2,27.8,12.4 +1,1,a-pcom-i3,2018-19,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,2.2,97.8,0,0,0,79.7,20.3,44.8 +1,1,a-pcom-i3,2018-19,Pioneer Valley - Warwick Community School,7500009,0,0,0,100,0,0,0,91.4,8.6,12.8 +15.03125,5,a-pcom-i3,2018-19,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,2.3,44.7,0,51.9,0,0,1.2,82.2,17.8,85.9 +5,5,a-pcom-i3,2018-19,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,5.5,1.4,8,84,1.1,0,0,60.1,39.9,72.6 +1,1,a-pcom-i3,2018-19,Pittsfield - Allendale,2360010,0,2.5,0,97.5,0,0,0,98.8,1.2,40.4 +2.5625,2.56,a-pcom-i3,2018-19,Pittsfield - Crosby,2360065,4.4,0,3.3,91.8,0,0,0.5,90.1,9.9,91.3 +1.9375,1.94,a-pcom-i3,2018-19,Pittsfield - Egremont,2360035,0,1.8,3.5,93.8,0,0,0.9,96.5,3.5,56.4 +1.8125,1.81,a-pcom-i3,2018-19,Pittsfield - John T Reid Middle,2360305,0,2.4,2.2,94.2,0,0,1.2,64.8,35.2,82.4 +2.96875,2.97,a-pcom-i3,2018-19,Pittsfield - Morningside Community School,2360055,4.7,1.6,0,90.5,0,0,3.2,95.3,4.7,63.4 +2.875,2.88,a-pcom-i3,2018-19,Pittsfield - Pittsfield High,2360505,7.1,0,2.1,90.8,0,0,0,68.5,31.5,133.9 +1,1,a-pcom-i3,2018-19,Pittsfield - Robert T. Capeless Elementary School,2360045,2.8,0,0,97.2,0,0,0,100,0,28.8 +1.53125,1.53,a-pcom-i3,2018-19,Pittsfield - Silvio O Conte Community,2360105,1.6,0,1.6,95.1,0,0,1.6,93.5,6.5,61.6 +1,1,a-pcom-i3,2018-19,Pittsfield - Stearns,2360090,0,0,0,100,0,0,0,90.7,9.3,36.7 +1.375,1.38,a-pcom-i3,2018-19,Pittsfield - Taconic High,2360510,1.3,0,1.4,95.6,0,0,1.8,59.4,40.6,114.2 +1,1,a-pcom-i3,2018-19,Pittsfield - Theodore Herberg Middle,2360310,0,0,2.1,97.9,0,0,0,72.8,27.2,79.1 +1,1,a-pcom-i3,2018-19,Pittsfield - Williams,2360100,0,0,0,97.7,0,0,2.3,91.9,8.1,44.4 +1,1,a-pcom-i3,2018-19,Plainville - Anna Ware Jackson,2380010,0,0,2.4,97.6,0,0,0,98.5,1.5,67.3 +1.90625,1.91,a-pcom-i3,2018-19,Plainville - Beatrice H Wood Elementary,2380005,0,2.6,1,93.9,0,0,2.6,92.3,7.7,39.2 +1,1,a-pcom-i3,2018-19,Plymouth - Cold Spring,2390005,0,0,0,100,0,0,0,96.3,3.7,33.8 +1,1,a-pcom-i3,2018-19,Plymouth - Federal Furnace School,2390011,0.9,0,1.6,97.5,0,0,0,84.8,15.2,62.8 +1,1,a-pcom-i3,2018-19,Plymouth - Hedge,2390010,0,0,0,100,0,0,0,98.5,1.5,32.1 +1,1,a-pcom-i3,2018-19,Plymouth - Indian Brook,2390012,0,0,1.4,97.8,0,0.8,0,93.9,6.1,69.8 +1,1,a-pcom-i3,2018-19,Plymouth - Manomet Elementary,2390015,0,0,1.6,98.4,0,0,0,97.3,2.7,37.7 +1,1,a-pcom-i3,2018-19,Plymouth - Nathaniel Morton Elementary,2390030,0,0.9,0,99.1,0,0,0,95.1,4.9,70.1 +1.25,1.25,a-pcom-i3,2018-19,Plymouth - Plymouth Commun Intermediate,2390405,1.6,0.8,1.6,96,0,0,0,84.7,15.3,125.5 +1,1,a-pcom-i3,2018-19,Plymouth - Plymouth Early Childhood Center,2390003,0,0,0,100,0,0,0,96.9,3.1,32.6 +1,1,a-pcom-i3,2018-19,Plymouth - Plymouth North High,2390505,0,0.9,0.6,98.5,0,0,0,66.3,33.7,162 +1,1,a-pcom-i3,2018-19,Plymouth - Plymouth South High,2390515,0,2.3,0,97.7,0,0,0,66.6,33.4,153.2 +1,1,a-pcom-i3,2018-19,Plymouth - Plymouth South Middle,2390305,0,1.2,0,98.8,0,0,0,75.2,24.8,86.4 +1,1,a-pcom-i3,2018-19,Plymouth - South Elementary,2390046,1.2,0,1.2,97.6,0,0,0,95.2,4.8,83.7 +1,1,a-pcom-i3,2018-19,Plymouth - West Elementary,2390047,0,0,0,98.3,0,1.7,0,92.7,7.3,59.3 +1,1,a-pcom-i3,2018-19,Plympton - Dennett Elementary,2400010,0,0,0,100,0,0,0,96.8,3.2,31.2 +7.59375,5,a-pcom-i3,2018-19,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,11.9,4.4,6.6,75.7,0,0,1.5,81.8,18.2,137 +1,1,a-pcom-i3,2018-19,Provincetown - Provincetown Schools,2420020,0,0,0,97.2,0,0,2.8,78.8,21.2,35.9 +1,1,a-pcom-i3,2018-19,Quabbin - Hardwick Elementary,7530005,0,0,0,100,0,0,0,98.8,1.2,20.6 +2.65625,2.66,a-pcom-i3,2018-19,Quabbin - Hubbardston Center,7530010,0,2.7,5.8,91.5,0,0,0,87.5,12.5,31 +1,1,a-pcom-i3,2018-19,Quabbin - New Braintree Grade,7530020,0,0,0,100,0,0,0,97.4,2.6,12.5 +2.5625,2.56,a-pcom-i3,2018-19,Quabbin - Oakham Center,7530025,8.2,0,0,91.8,0,0,0,88.2,11.8,12.3 +1.09375,1.09,a-pcom-i3,2018-19,Quabbin - Quabbin Regional High School,7530505,0,1.3,0,96.5,0,1.3,1,75.3,24.7,79.7 +1,1,a-pcom-i3,2018-19,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,99.6,0,0,0.4,81.8,18.2,45.6 +1,1,a-pcom-i3,2018-19,Quabbin - Ruggles Lane,7530030,1.6,0,1.6,96.8,0,0,0,93.6,6.4,62.1 +1,1,a-pcom-i3,2018-19,Quaboag Regional - Quaboag Regional High,7780505,0,0.6,0,99.4,0,0,0,60.4,39.6,53.7 +1,1,a-pcom-i3,2018-19,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,100,0,0,0,68,32,18 +1,1,a-pcom-i3,2018-19,Quaboag Regional - Warren Elementary,7780005,0,0.5,0,99.5,0,0,0,88.5,11.5,68.4 +1,1,a-pcom-i3,2018-19,Quaboag Regional - West Brookfield Elementary,7780010,0,0.8,0,99.2,0,0,0,95,5,40.1 +3.125,3.13,a-pcom-i3,2018-19,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,0,7.7,0,90,0,0,2.3,100,0,43 +1,1,a-pcom-i3,2018-19,Quincy - Atherton Hough,2430040,0,2.2,0,97.8,0,0,0,94,6,44.9 +2.96875,2.97,a-pcom-i3,2018-19,Quincy - Atlantic Middle,2430305,0,7.2,0,90.5,0,0,2.3,76.3,23.7,44.4 +1,1,a-pcom-i3,2018-19,Quincy - Beechwood Knoll Elementary,2430020,0,2.9,0,97.1,0,0,0,97.1,2.9,34 +1,1,a-pcom-i3,2018-19,Quincy - Broad Meadows Middle,2430310,0,0,0,97.9,0,0,2.1,77.9,22.1,48.1 +1.0625,1.06,a-pcom-i3,2018-19,Quincy - Central Middle,2430315,0,3.4,0,96.6,0,0,0,76.4,23.6,59.2 +1,1,a-pcom-i3,2018-19,Quincy - Charles A Bernazzani Elementary,2430025,0,3,0,97,0,0,0,87.4,12.6,33.4 +1,1,a-pcom-i3,2018-19,Quincy - Clifford H Marshall Elementary,2430055,0,1.6,0,98.4,0,0,0,98.4,1.6,63.9 +7.3125,5,a-pcom-i3,2018-19,Quincy - Francis W Parker,2430075,4.7,16.4,0,76.6,0,0,2.3,94.9,5.1,42.7 +1.125,1.12,a-pcom-i3,2018-19,Quincy - Lincoln-Hancock Community School,2430035,1.8,1.8,0,96.4,0,0,0,95.8,4.2,55.6 +1.75,1.75,a-pcom-i3,2018-19,Quincy - Merrymount,2430060,0,2.8,2.8,94.4,0,0,0,93.9,6.1,35.9 +3.34375,3.34,a-pcom-i3,2018-19,Quincy - Montclair,2430065,0,10.7,0,89.3,0,0,0,94.8,5.2,40.2 +2.75,2.75,a-pcom-i3,2018-19,Quincy - North Quincy High,2430510,0.8,3.5,0,91.2,0,0,4.6,58.7,41.3,130 +1,1,a-pcom-i3,2018-19,Quincy - Point Webster Middle,2430325,0,2.6,0,97.4,0,0,0,77.6,22.4,37.7 +2.375,2.37,a-pcom-i3,2018-19,Quincy - Quincy High,2430505,0,4.5,0.6,92.4,0.6,0,1.8,63.7,36.3,165 +1.84375,1.84,a-pcom-i3,2018-19,Quincy - Snug Harbor Community School,2430090,0.7,2.6,0,94.1,0,0,2.6,92.4,7.6,76.7 +1,1,a-pcom-i3,2018-19,Quincy - South West Middle School,2430320,0,0,0,97.7,2.3,0,0,87.4,12.6,43 +1.25,1.25,a-pcom-i3,2018-19,Quincy - Squantum,2430095,0,4,0,96,0,0,0,91.8,8.2,40.4 +2.625,2.63,a-pcom-i3,2018-19,Quincy - Wollaston School,2430110,1.4,6.9,0,91.6,0,0,0,94.2,5.8,34.5 +1,1,a-pcom-i3,2018-19,Ralph C Mahar - Pathways Early College Innovation School,7550515,0,0,0,100,0,0,0,28.6,71.4,0.4 +1.25,1.25,a-pcom-i3,2018-19,Ralph C Mahar - Ralph C Mahar Regional,7550505,0,1.1,2.8,96,0,0,0,67.4,32.6,88.5 +1,1,a-pcom-i3,2018-19,Ralph C Mahar - The Gateway to College,7550525,0,0,0,100,0,0,0,28.6,71.4,0.4 +5.375,5,a-pcom-i3,2018-19,Randolph - Elizabeth G Lyons Elementary,2440020,13.7,1.1,0,82.8,0,0,2.3,80.5,19.5,43.7 +6.125,5,a-pcom-i3,2018-19,Randolph - J F Kennedy Elementary,2440018,10.4,2.3,4.6,80.4,0,0,2.3,87.2,12.8,86.6 +5.15625,5,a-pcom-i3,2018-19,Randolph - Margaret L Donovan,2440015,6.2,4.1,2.1,83.5,0,0,4.1,95.9,4.1,48.5 +5.65625,5,a-pcom-i3,2018-19,Randolph - Martin E Young Elementary,2440040,4.5,1.1,3.4,81.9,0,0,9.1,90,10,44.1 +10.90625,5,a-pcom-i3,2018-19,Randolph - Randolph Community Middle,2440410,26.3,4.8,2.6,65.1,1.2,0,0,71.8,28.2,83.4 +8.75,5,a-pcom-i3,2018-19,Randolph - Randolph High,2440505,13.2,7.6,7.2,72,0,0,0,64.5,35.5,93.8 +1,1,a-pcom-i3,2018-19,Reading - Alice M Barrows,2460002,0,1.5,0,98.5,0,0,0,90.9,9.1,39.8 +1,1,a-pcom-i3,2018-19,Reading - Arthur W Coolidge Middle,2460305,0,0,1.7,98.3,0,0,0,82.6,17.4,68.2 +1,1,a-pcom-i3,2018-19,Reading - Birch Meadow,2460005,0,0,0.3,99.7,0,0,0,96.1,3.9,59.5 +1,1,a-pcom-i3,2018-19,Reading - J Warren Killam,2460017,0,0,0,100,0,0,0,98.2,1.8,47.7 +1,1,a-pcom-i3,2018-19,Reading - Joshua Eaton,2460010,0,0.8,0,97.1,0,0,2.1,95.1,4.9,48.4 +1,1,a-pcom-i3,2018-19,Reading - RISE PreSchool,2460001,0,0,1,99,0,0,0,100,0,24.9 +1.21875,1.22,a-pcom-i3,2018-19,Reading - Reading Memorial High,2460505,0,2.3,0,96.1,1.6,0,0,69.1,30.9,123.6 +1,1,a-pcom-i3,2018-19,Reading - Walter S Parker Middle,2460310,0,0,1.5,98.5,0,0,0,76.9,23.1,65 +1,1,a-pcom-i3,2018-19,Reading - Wood End Elementary School,2460020,0,0,0,100,0,0,0,96,4,46.2 +1,1,a-pcom-i3,2018-19,Revere - A. C. Whelan Elementary School,2480003,0,0,2.6,97.4,0,0,0,93.1,6.9,77.3 +1,1,a-pcom-i3,2018-19,Revere - Abraham Lincoln,2480025,0,0,1.5,98.5,0,0,0,94.9,5.1,64.8 +1.9375,1.94,a-pcom-i3,2018-19,Revere - Beachmont Veterans Memorial School,2480013,1.8,0,4.4,93.8,0,0,0,86.7,13.3,56.2 +3.1875,3.19,a-pcom-i3,2018-19,Revere - Garfield Elementary School,2480056,1.7,4.5,2.8,89.8,0,0,1.1,90.9,9.1,88.2 +3.03125,3.03,a-pcom-i3,2018-19,Revere - Garfield Middle School,2480057,0.9,7.1,1.8,90.3,0,0,0,61.2,38.8,56.7 +1,1,a-pcom-i3,2018-19,Revere - Paul Revere,2480050,0,0,1,99,0,0,0,95.2,4.8,52.3 +3.625,3.62,a-pcom-i3,2018-19,Revere - Revere High,2480505,2.8,1.1,5.8,88.4,0.8,0,1.1,66.5,33.5,180.7 +2.6875,2.69,a-pcom-i3,2018-19,Revere - Rumney Marsh Academy,2480014,2.2,1.4,3.6,91.4,0,0,1.4,74.1,25.9,69.5 +3.21875,3.22,a-pcom-i3,2018-19,Revere - Seacoast School,2480520,5.2,0,5.2,89.7,0,0,0,53.5,46.5,19.4 +1.6875,1.69,a-pcom-i3,2018-19,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,0,2.3,94.6,0,1.5,1.5,93.1,6.9,65.3 +1.4375,1.44,a-pcom-i3,2018-19,Revere - Susan B. Anthony Middle School,2480305,0.8,0,3.9,95.4,0,0,0,72.5,27.5,64.9 +3.15625,3.16,a-pcom-i3,2018-19,Richmond - Richmond Consolidated,2490005,5.8,0,1.4,89.9,0,0,2.9,86.2,13.8,34.8 +2.71875,2.72,a-pcom-i3,2018-19,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,2.5,2.5,3.7,91.3,0,0,0,71.9,28.1,80.1 +1.40625,1.41,a-pcom-i3,2018-19,River Valley Charter (District) - River Valley Charter School,4820050,0,0,0,95.5,0,0,4.5,83,17,44.1 +1,1,a-pcom-i3,2018-19,Rochester - Rochester Memorial,2500005,3.2,0,0,96.8,0,0,0,85.5,14.5,62.1 +1,1,a-pcom-i3,2018-19,Rockland - Jefferson Elementary School,2510060,0,0,0,100,0,0,0,98.8,1.2,41.6 +1,1,a-pcom-i3,2018-19,Rockland - John W Rogers Middle,2510305,0,0,0.1,99.9,0,0,0,85.3,14.7,76.1 +1,1,a-pcom-i3,2018-19,Rockland - Memorial Park,2510020,0,0,2.1,97.9,0,0,0,95.1,4.9,47.7 +1.875,1.88,a-pcom-i3,2018-19,Rockland - R Stewart Esten,2510025,0,0,4,94,0,0,2,95,5,50.3 +1.09375,1.09,a-pcom-i3,2018-19,Rockland - Rockland Senior High,2510505,0,0,2.4,96.5,0,0,1.1,71.3,28.7,80.4 +1,1,a-pcom-i3,2018-19,Rockport - Rockport Elementary,2520005,0,0,0,100,0,0,0,93,7,57.5 +1,1,a-pcom-i3,2018-19,Rockport - Rockport High,2520510,0,0,0,100,0,0,0,66,34,47 +1,1,a-pcom-i3,2018-19,Rockport - Rockport Middle,2520305,0,0,0,100,0,0,0,73.3,26.7,37.5 +4,4,a-pcom-i3,2018-19,Rowe - Rowe Elementary,2530005,0,0,6.4,87.2,0,0,6.4,81.5,18.5,15.7 +12.875,5,a-pcom-i3,2018-19,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,21.5,3.1,13.1,58.8,0,0,3.4,62.5,37.5,175 +7.09375,5,a-pcom-i3,2018-19,Sabis International Charter (District) - Sabis International Charter School,4410505,10.3,1.9,9.9,77.3,0,0,0.5,75.1,24.9,125.5 +1.3125,1.31,a-pcom-i3,2018-19,Salem - Bates,2580003,0.2,0.2,3.8,95.8,0,0,0,78.8,21.2,62.5 +1,1,a-pcom-i3,2018-19,Salem - Carlton,2580015,0.4,0.2,2,97.4,0,0,0,91.4,8.6,50.7 +3.28125,3.28,a-pcom-i3,2018-19,Salem - Collins Middle,2580305,1,2.8,6.6,89.5,0,0,0,76.2,23.8,105.9 +3.25,3.25,a-pcom-i3,2018-19,Salem - Horace Mann Laboratory,2580030,0.2,2.5,7.7,89.6,0,0,0,90.4,9.6,45.5 +4.875,4.87,a-pcom-i3,2018-19,Salem - New Liberty Innovation School,2580510,0,0,15.6,84.4,0,0,0,81.9,18.1,12.2 +1.625,1.63,a-pcom-i3,2018-19,Salem - Salem Early Childhood,2580001,0,0,5.2,94.8,0,0,0,97.4,2.6,34.5 +3.21875,3.22,a-pcom-i3,2018-19,Salem - Salem High,2580505,2.3,0,7.9,89.7,0,0,0,66.7,33.3,170.4 +4.59375,4.59,a-pcom-i3,2018-19,Salem - Salem Prep High School,2580515,0,0,14.7,85.3,0,0,0,64.3,35.7,10.9 +1.6875,1.69,a-pcom-i3,2018-19,Salem - Saltonstall School,2580050,0.3,0.2,4.8,94.6,0,0,0,92.7,7.3,60.5 +2.65625,2.66,a-pcom-i3,2018-19,Salem - Witchcraft Heights,2580070,1.2,1.1,6.2,91.5,0,0,0,92.6,7.4,102.7 +5.0625,5,a-pcom-i3,2018-19,Salem Academy Charter (District) - Salem Academy Charter School,4850485,1.5,0,13.2,83.8,0,1.5,0,62.9,37.1,66.9 +1.1875,1.19,a-pcom-i3,2018-19,Sandwich - Forestdale School,2610002,0,1.9,1.9,96.2,0,0,0,93.8,6.2,104 +1,1,a-pcom-i3,2018-19,Sandwich - Oak Ridge,2610025,0,0,0,100,0,0,0,92.6,7.4,108.5 +1,1,a-pcom-i3,2018-19,Sandwich - Sandwich High,2610505,0,0.8,1.6,97.7,0,0,0,75.5,24.5,87.2 +1,1,a-pcom-i3,2018-19,Sandwich - Sandwich STEM Academy,2610305,0,0.6,0,97.4,0,0,2,76.5,23.5,51.1 +1,1,a-pcom-i3,2018-19,Saugus - Belmonte Saugus Middle,2620305,0,0,2.5,97.5,0,0,0,70.2,29.8,81.6 +1,1,a-pcom-i3,2018-19,Saugus - Douglas Waybright,2620067,0,0,0,100,0,0,0,89.9,10.1,31.7 +1,1,a-pcom-i3,2018-19,Saugus - Lynnhurst,2620040,0,0,0,100,0,0,0,96.1,3.9,28.9 +1.25,1.25,a-pcom-i3,2018-19,Saugus - Oaklandvale,2620050,4,0,0,96,0,0,0,94.5,5.5,25.1 +1.9375,1.94,a-pcom-i3,2018-19,Saugus - Saugus High,2620505,2.5,0,3.7,93.8,0,0,0,62.5,37.5,80.1 +1.21875,1.22,a-pcom-i3,2018-19,Saugus - Veterans Memorial,2620065,0,0,1.9,96.1,0,1,1,95.2,4.8,103.6 +2.09375,2.09,a-pcom-i3,2018-19,Savoy - Emma L Miller Elementary School,2630010,0,0,6.7,93.3,0,0,0,93.3,6.7,15 +1,1,a-pcom-i3,2018-19,Scituate - Cushing Elementary,2640007,0,0,0,100,0,0,0,86.3,13.7,42.2 +1,1,a-pcom-i3,2018-19,Scituate - Gates Middle School,2640305,0,1.3,0,98.7,0,0,0,79.1,20.9,76.5 +1,1,a-pcom-i3,2018-19,Scituate - Hatherly Elementary,2640010,0,0,0,100,0,0,0,93.4,6.6,49.8 +1,1,a-pcom-i3,2018-19,Scituate - Jenkins Elementary School,2640015,0,0,0,100,0,0,0,94.6,5.4,55.5 +1,1,a-pcom-i3,2018-19,Scituate - Scituate High School,2640505,1,1.9,0,97.1,0,0,0,66.4,33.6,103.4 +1,1,a-pcom-i3,2018-19,Scituate - Wampatuck Elementary,2640020,0,0,0,100,0,0,0,95,5,59.7 +1,1,a-pcom-i3,2018-19,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,1.5,1.5,0,97.1,0,0,0,78.1,21.9,68.5 +1,1,a-pcom-i3,2018-19,Seekonk - George R Martin,2650007,0,0,0,96.9,0,0,3.1,89.1,10.9,64.2 +1,1,a-pcom-i3,2018-19,Seekonk - Mildred Aitken School,2650015,0,0,0,98.1,0,0,1.9,92.5,7.5,53.3 +1,1,a-pcom-i3,2018-19,Seekonk - Seekonk High,2650505,0,1.3,0.6,98.1,0,0,0,68,32,78.1 +7.90625,5,a-pcom-i3,2018-19,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,7.2,2.4,14.5,74.7,1.2,0,0,79.5,20.5,83 +1.625,1.63,a-pcom-i3,2018-19,Sharon - Cottage Street,2660005,1.3,3.9,0,94.8,0,0,0,94.1,5.9,63.8 +1,1,a-pcom-i3,2018-19,Sharon - East Elementary,2660010,0,0.8,0,99.2,0,0,0,92.1,7.9,61.9 +1.78125,1.78,a-pcom-i3,2018-19,Sharon - Heights Elementary,2660015,4.6,1.1,0,94.3,0,0,0,90.8,9.2,87.1 +1,1,a-pcom-i3,2018-19,Sharon - Sharon Early Childhood Center,2660001,0,0,0,100,0,0,0,100,0,18.3 +1.46875,1.47,a-pcom-i3,2018-19,Sharon - Sharon High,2660505,0.7,2.7,0.7,95.3,0.7,0,0,70.2,29.8,147.6 +1.4375,1.44,a-pcom-i3,2018-19,Sharon - Sharon Middle,2660305,1.8,1.8,0,95.4,0,0.9,0,78.2,21.8,108.7 +1,1,a-pcom-i3,2018-19,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0.5,1.9,97.1,0,0.5,0,62.7,37.3,187.6 +1.15625,1.16,a-pcom-i3,2018-19,Sherborn - Pine Hill,2690010,1.4,0,1.2,96.3,0,0,1.1,94.1,5.9,73.2 +1.84375,1.84,a-pcom-i3,2018-19,Shrewsbury - Beal School,2710005,0,4,2,94.1,0,0,0,96,4,50.5 +1.0625,1.06,a-pcom-i3,2018-19,Shrewsbury - Calvin Coolidge,2710015,0,1.7,0,96.6,0,0,1.7,98.3,1.7,58 +1.90625,1.91,a-pcom-i3,2018-19,Shrewsbury - Floral Street School,2710020,0,4.1,0,93.9,1,0,1,95.9,4.1,98.5 +1.84375,1.84,a-pcom-i3,2018-19,Shrewsbury - Oak Middle School,2710030,0,3.5,1.6,94.1,0.8,0,0,82.6,17.4,126.7 +2.21875,2.22,a-pcom-i3,2018-19,Shrewsbury - Parker Road Preschool,2710040,2.1,3.4,0,92.9,0,0,1.6,100,0,48.6 +2.375,2.37,a-pcom-i3,2018-19,Shrewsbury - Sherwood Middle School,2710305,0,1.1,4.8,92.4,0,0,1.7,86.7,13.3,119.3 +1.4375,1.44,a-pcom-i3,2018-19,Shrewsbury - Shrewsbury Sr High,2710505,1,1,2.1,95.4,0,0,0.5,71.8,28.2,193.7 +1,1,a-pcom-i3,2018-19,Shrewsbury - Spring Street,2710035,0,0,0,100,0,0,0,96.8,3.2,51.2 +1.8125,1.81,a-pcom-i3,2018-19,Shrewsbury - Walter J Paton,2710025,0,2.9,1.1,94.2,0,0,1.8,96.9,3.1,54.4 +2.78125,2.78,a-pcom-i3,2018-19,Shutesbury - Shutesbury Elementary,2720005,0,3,3,91.1,0,0,3,91.1,8.9,33.8 +1,1,a-pcom-i3,2018-19,Silver Lake - Silver Lake Regional High,7600505,0,0,0,100,0,0,0,71.5,28.5,141.2 +1,1,a-pcom-i3,2018-19,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,100,0,0,0,73.8,26.2,70.5 +2.96875,2.97,a-pcom-i3,2018-19,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,1.7,1,6.8,90.5,0,0,0,77.1,22.9,59 +1,1,a-pcom-i3,2018-19,Somerset - Chace Street,2730005,0,0,0,100,0,0,0,95.9,4.1,58 +1,1,a-pcom-i3,2018-19,Somerset - North Elementary,2730008,0,0,0,100,0,0,0,95.2,4.8,60.5 +1,1,a-pcom-i3,2018-19,Somerset - Somerset Middle School,2730305,0,0,0,100,0,0,0,76.3,23.7,77.9 +1,1,a-pcom-i3,2018-19,Somerset - South,2730015,0,0,0,100,0,0,0,96.3,3.7,33.7 +1,1,a-pcom-i3,2018-19,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0.8,1.7,97.5,0,0,0,63.3,36.7,118.9 +5.8125,5,a-pcom-i3,2018-19,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,4.7,0,12.4,81.4,0,0,1.5,91.9,8.1,64.7 +5.1875,5,a-pcom-i3,2018-19,Somerville - Arthur D Healey,2740075,10.6,1.5,4.5,83.4,0,0,0,80.9,19.1,67 +1,1,a-pcom-i3,2018-19,Somerville - Benjamin G Brown,2740015,0,0,0,100,0,0,0,87,13,22.8 +5.875,5,a-pcom-i3,2018-19,Somerville - Capuano Early Childhood Center,2740005,2.9,1.4,13,81.2,0,0,1.4,94.2,5.8,69.1 +11.125,5,a-pcom-i3,2018-19,Somerville - E Somerville Community,2740111,3.7,2.4,25.9,64.4,2.4,0,1.2,84.3,15.7,84.2 +1,1,a-pcom-i3,2018-19,Somerville - Full Circle High School,2740510,1.4,0,0,98.6,0,0,0,52.6,47.4,14.7 +3.34375,3.34,a-pcom-i3,2018-19,Somerville - John F Kennedy,2740083,1.3,4,4,89.3,0,0,1.3,76.9,23.1,74.5 +1,1,a-pcom-i3,2018-19,Somerville - Next Wave Junior High,2740410,0,0,0,100,0,0,0,85.8,14.2,7.6 +5.03125,5,a-pcom-i3,2018-19,Somerville - Somerville High,2740505,5.3,2.3,7.9,83.9,0,0,0.6,63.5,36.5,171.2 +7.84375,5,a-pcom-i3,2018-19,Somerville - West Somerville Neighborhood,2740115,10.5,2.1,8.2,74.9,0,0,4.2,81.1,18.9,47.4 +4.40625,4.41,a-pcom-i3,2018-19,Somerville - Winter Hill Community,2740120,2.6,2.6,8.9,85.9,0,0,0,86.1,13.9,77.9 +1,1,a-pcom-i3,2018-19,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,100,0,0,0,74.1,25.9,73.4 +1.03125,1.03,a-pcom-i3,2018-19,South Hadley - Mosier,2780020,0,1.6,1.6,96.7,0,0,0,87,13,61.5 +1,1,a-pcom-i3,2018-19,South Hadley - Plains Elementary,2780015,0,0,1.8,98.2,0,0,0,90.9,9.1,55.2 +1,1,a-pcom-i3,2018-19,South Hadley - South Hadley High,2780505,0,1.4,0,98.6,0,0,0,63.5,36.5,69.6 +2.375,2.37,a-pcom-i3,2018-19,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0.8,0.8,5.9,92.4,0,0,0,46.9,53.1,118.8 +2.875,2.88,a-pcom-i3,2018-19,South Shore Charter Public (District) - South Shore Charter Public School,4880550,6.3,1.4,0.7,90.8,0,0,0.7,75.8,24.2,138.8 +1,1,a-pcom-i3,2018-19,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,1.1,98.5,0,0.4,0,48.1,51.9,92.2 +1,1,a-pcom-i3,2018-19,Southampton - William E Norris,2750005,0,0,0,97,0,0,3,88,12,66.5 +1,1,a-pcom-i3,2018-19,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,100,0,0,0,94.8,5.2,38.3 +1,1,a-pcom-i3,2018-19,Southborough - Margaret A Neary,2760020,0,0,0,100,0,0,0,90.7,9.3,42.8 +1.28125,1.28,a-pcom-i3,2018-19,Southborough - Mary E Finn School,2760008,0,0,2.8,95.9,0,1.4,0,92.2,7.8,72.7 +1.21875,1.22,a-pcom-i3,2018-19,Southborough - P Brent Trottier,2760305,0,0,1.4,96.1,2.6,0,0,82.5,17.5,73.7 +7.9375,5,a-pcom-i3,2018-19,Southbridge - Charlton Street,2770005,6.9,0,18.5,74.6,0,0,0,86.1,13.9,43.3 +4.625,4.62,a-pcom-i3,2018-19,Southbridge - Eastford Road,2770010,0,2.1,12.7,85.2,0,0,0,89.4,10.6,47.3 +7.8125,5,a-pcom-i3,2018-19,Southbridge - Southbridge Academy,2770525,6.3,0,18.8,75,0,0,0,68.8,31.3,16 +3.59375,3.59,a-pcom-i3,2018-19,Southbridge - Southbridge High School,2770515,1.5,1.5,8.5,88.5,0,0,0,52.4,46,65 +3.90625,3.91,a-pcom-i3,2018-19,Southbridge - Southbridge Middle School,2770315,1.7,1.7,9.2,87.5,0,0,0,66.7,33.3,60.1 +2.75,2.75,a-pcom-i3,2018-19,Southbridge - West Street,2770020,0,2.2,6.6,91.2,0,0,0,93,7,45.2 +4.53125,4.53,a-pcom-i3,2018-19,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,9.2,2.1,3.2,85.5,0,0,0,57.6,42.4,189.3 +2.53125,2.53,a-pcom-i3,2018-19,Southern Berkshire - Mt Everett Regional,7650505,3.2,1.6,1.6,91.9,0,0,1.6,65.1,34.9,62 +2.9375,2.94,a-pcom-i3,2018-19,Southern Berkshire - New Marlborough Central,7650018,0,0,1.6,90.6,7.9,0,0,80.3,19.7,12.7 +1.9375,1.94,a-pcom-i3,2018-19,Southern Berkshire - South Egremont,7650030,0,0,6.3,93.8,0,0,0,81.3,18.8,1.6 +1.03125,1.03,a-pcom-i3,2018-19,Southern Berkshire - Undermountain,7650035,0,0.8,2.5,96.7,0,0,0,91.5,8.5,60.2 +1,1,a-pcom-i3,2018-19,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,1.2,98.8,0,0,0,57,43,165 +1,1,a-pcom-i3,2018-19,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,1.6,98.4,0,0,0,88.8,11.2,62.7 +1.5,1.5,a-pcom-i3,2018-19,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,2.9,95.2,0,0,1.9,71.2,28.8,104.7 +1,1,a-pcom-i3,2018-19,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,0,1.5,0,98.5,0,0,0,96.9,3.1,65.2 +1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,100,0,0,0,59.4,40.6,41.3 +1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - East Brookfield Elementary,7670008,0,0,0,100,0,0,0,91.8,8.2,43.7 +1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,2,98,0,0,0,75.4,24.6,51.2 +1,1,a-pcom-i3,2018-19,Spencer-E Brookfield - Wire Village School,7670040,0,0,1.5,98.5,0,0,0,92.1,7.9,65.2 +9.5625,5,a-pcom-i3,2018-19,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,8.2,0,22.4,69.4,0,0,0,89.8,10.2,49 +7.8125,5,a-pcom-i3,2018-19,Springfield - Alice B Beal Elementary,2810175,18.8,3.1,3.1,75,0,0,0,87.5,12.5,32 +5.53125,5,a-pcom-i3,2018-19,Springfield - Arthur T Talmadge,2810165,7.6,2.5,7.6,82.3,0,0,0,94.9,5.1,39.5 +4.1875,4.19,a-pcom-i3,2018-19,Springfield - Balliet Middle School,2810360,7.1,0,6.3,86.6,0,0,0,53.8,46.2,15.8 +9.6875,5,a-pcom-i3,2018-19,Springfield - Brightwood,2810025,0,0,31,69,0,0,0,81,19,42 +9.8125,5,a-pcom-i3,2018-19,Springfield - Chestnut Academy,2810365,11.5,0,19.9,68.6,0,0,0,55.8,44.2,45.2 +15.46875,5,a-pcom-i3,2018-19,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,24.2,2.1,23.2,50.5,0,0,0,71.6,28.4,47.5 +13.53125,5,a-pcom-i3,2018-19,Springfield - Conservatory of the Arts,2810475,17.3,0,26,56.7,0,0,0,75,25,52 +3.84375,3.84,a-pcom-i3,2018-19,Springfield - Daniel B Brunton,2810035,5.3,0,7,87.7,0,0,0,94.7,5.3,57 +8.125,5,a-pcom-i3,2018-19,Springfield - Early Childhood Education Center,2810001,13,0,13,74,0,0,0,97.4,2.6,38.5 +11.03125,5,a-pcom-i3,2018-19,Springfield - Edward P. Boland School,2810010,12.8,1,21.6,64.7,0,0,0,90.2,9.8,101.9 +12.03125,5,a-pcom-i3,2018-19,Springfield - Elias Brookings,2810030,23.1,1.9,13.5,61.5,0,0,0,92.3,7.7,52 +4.625,4.62,a-pcom-i3,2018-19,Springfield - Forest Park Middle,2810325,6.2,1.2,7.4,85.2,0,0,0,75.9,24.1,81 +16.40625,5,a-pcom-i3,2018-19,Springfield - Frank H Freedman,2810075,45,0,7.5,47.5,0,0,0,82.5,17.5,40 +7.71875,5,a-pcom-i3,2018-19,Springfield - Frederick Harris,2810080,3.9,1.3,19.5,75.3,0,0,0,92.2,7.8,77 +31.25,5,a-pcom-i3,2018-19,Springfield - Gateway to College at Holyoke Community College,2810575,100,0,0,0,0,0,0,100,0,0.1 +31.25,5,a-pcom-i3,2018-19,Springfield - Gateway to College at Springfield Technical Community College,2810580,100,0,0,0,0,0,0,100,0,0.1 +12.46875,5,a-pcom-i3,2018-19,Springfield - German Gerena Community School,2810195,7.5,0,32.4,60.1,0,0,0,91.5,8.5,106.5 +4.9375,4.94,a-pcom-i3,2018-19,Springfield - Glenwood,2810065,2.6,0,13.2,84.2,0,0,0,97.4,2.6,38 +8.125,5,a-pcom-i3,2018-19,Springfield - Glickman Elementary,2810068,8,0,18,74,0,0,0,94,6,50 +13.375,5,a-pcom-i3,2018-19,Springfield - High School Of Commerce,2810510,16.7,0.7,25.4,57.2,0,0,0,63,37,138 +5.21875,5,a-pcom-i3,2018-19,Springfield - Hiram L Dorman,2810050,11.9,0,4.8,83.3,0,0,0,90.5,9.5,42 +5,5,a-pcom-i3,2018-19,Springfield - Homer Street,2810085,10,0,6,84,0,0,0,92,8,50 +16.59375,5,a-pcom-i3,2018-19,Springfield - Impact Prep at Chestnut,2810366,21,0,29.6,46.9,0,0,2.5,64.2,35.8,40.5 +4.875,4.87,a-pcom-i3,2018-19,Springfield - Indian Orchard Elementary,2810100,7.8,0,7.8,84.4,0,0,0,93.5,6.5,77 +13.59375,5,a-pcom-i3,2018-19,Springfield - John F Kennedy Middle,2810328,28.3,2.2,10.9,56.5,0,0,2.2,60.9,39.1,46 +11.53125,5,a-pcom-i3,2018-19,Springfield - John J Duggan Middle,2810320,27.1,1,8.9,63.1,0,0,0,66,34,101.5 +6.25,5,a-pcom-i3,2018-19,Springfield - Kensington International School,2810110,10,0,10,80,0,0,0,90,10,40 +8.53125,5,a-pcom-i3,2018-19,Springfield - Liberty,2810115,21.2,0,6.1,72.7,0,0,0,100,0,33 +13.40625,5,a-pcom-i3,2018-19,Springfield - Liberty Preparatory Academy,2810560,29.2,0,13.8,57.1,0,0,0,70.4,29.6,7.3 +11,5,a-pcom-i3,2018-19,Springfield - Lincoln,2810120,13.6,0,21.6,64.8,0,0,0,90.9,9.1,44 +12.71875,5,a-pcom-i3,2018-19,Springfield - M Marcus Kiley Middle,2810330,24.6,0,16,59.3,0,0,0,71.6,28.4,87.3 +8.84375,5,a-pcom-i3,2018-19,Springfield - Margaret C Ells,2810060,10.9,0,17.4,71.7,0,0,0,91.3,8.7,46 +5.46875,5,a-pcom-i3,2018-19,Springfield - Mary A. Dryden Veterans Memorial School,2810125,5,0,12.5,82.5,0,0,0,92.5,7.5,40 +9.0625,5,a-pcom-i3,2018-19,Springfield - Mary M Lynch,2810140,16.1,0,12.9,71,0,0,0,93.5,6.5,31 +6.71875,5,a-pcom-i3,2018-19,Springfield - Mary M Walsh,2810155,4.3,2.1,15,78.5,0,0,0,89.3,10.7,46.5 +7,5,a-pcom-i3,2018-19,Springfield - Mary O Pottenger,2810145,8.2,0,14.3,77.6,0,0,0,95.9,4.1,49 +8.3125,5,a-pcom-i3,2018-19,Springfield - Milton Bradley School,2810023,3.8,0,22.8,73.4,0,0,0,89.9,10.1,79 +17.8125,5,a-pcom-i3,2018-19,Springfield - Rebecca M Johnson,2810055,38.6,0,18.4,43,0,0,0,86.5,13.5,103.5 +13.125,5,a-pcom-i3,2018-19,Springfield - Rise Academy at Van Sickle,2810480,22.2,2.5,14.8,58,0,0,2.5,70.4,29.6,40.5 +8.875,5,a-pcom-i3,2018-19,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,11.1,3.7,13.7,71.6,0,0,0,52.5,47.5,190 +10.40625,5,a-pcom-i3,2018-19,Springfield - STEM Middle Academy,2810350,23.3,0,10,66.7,0,0,0,66.7,33.3,30 +8,5,a-pcom-i3,2018-19,Springfield - Samuel Bowles,2810020,7.7,2.6,15.4,74.4,0,0,0,92.3,7.7,39 +11.40625,5,a-pcom-i3,2018-19,Springfield - South End Middle School,2810355,9.9,0,26.5,63.5,0,0,0,81.2,18.8,30.2 +7.59375,5,a-pcom-i3,2018-19,Springfield - Springfield Central High,2810500,10.1,2.3,11,75.7,0,0,0.9,55.4,44.6,218.5 +12.4375,5,a-pcom-i3,2018-19,Springfield - Springfield High School,2810570,32.6,0,7.2,60.2,0,0,0,59.4,40.6,28 +11.375,5,a-pcom-i3,2018-19,Springfield - Springfield High School of Science and Technology,2810530,15,2.3,17.9,63.6,0,0,1.2,62.4,37.6,173.1 +1.1875,1.19,a-pcom-i3,2018-19,Springfield - Springfield International Academy at Johnson,2810215,3.8,0,0,96.2,0,0,0,96.2,3.8,2.6 +6.9375,5,a-pcom-i3,2018-19,Springfield - Springfield International Academy at Sci-Tech,2810700,0,0,22.2,77.8,0,0,0,52.6,47.4,4.4 +14.65625,5,a-pcom-i3,2018-19,Springfield - Springfield Public Day Elementary School,2810005,30.3,0,16.6,53.1,0,0,0,86.7,13.3,30.1 +19.3125,5,a-pcom-i3,2018-19,Springfield - Springfield Public Day High School,2810550,45.2,0,16.6,38.2,0,0,0,67.8,32.2,30.1 +9.1875,5,a-pcom-i3,2018-19,Springfield - Springfield Public Day Middle School,2810345,17,0,12.4,70.6,0,0,0,67,33,24.3 +8.34375,5,a-pcom-i3,2018-19,Springfield - Springfield Vocational Academy,2810675,9.5,0,17.2,73.3,0,0,0,70.9,29.1,11.6 +6.9375,5,a-pcom-i3,2018-19,Springfield - Sumner Avenue,2810160,11.1,1.2,9.9,77.8,0,0,0,91.4,8.6,81 +9.78125,5,a-pcom-i3,2018-19,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,16,1.2,13,68.7,0,0,1.2,83.5,16.5,84.6 +10.6875,5,a-pcom-i3,2018-19,Springfield - Thomas M Balliet,2810015,18.4,0,15.8,65.8,0,0,0,92.1,7.9,38 +10.875,5,a-pcom-i3,2018-19,Springfield - Van Sickle Academy,2810485,12.9,0,21.9,65.2,0,0,0,76,24,38.8 +9.03125,5,a-pcom-i3,2018-19,Springfield - Warner,2810180,21.1,0,7.9,71.1,0,0,0,92.1,7.9,38 +6,5,a-pcom-i3,2018-19,Springfield - Washington,2810185,7.7,0,11.5,80.8,0,0,0,96.2,3.8,52 +4.5625,4.56,a-pcom-i3,2018-19,Springfield - White Street,2810190,6.3,0,8.3,85.4,0,0,0,97.9,2.1,48 +11.625,5,a-pcom-i3,2018-19,Springfield - William N. DeBerry,2810045,16.3,0,20.9,62.8,0,0,0,93,7,43 +6.84375,5,a-pcom-i3,2018-19,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,14,0,7.9,78.1,0,0,0,91.8,8.2,34.3 +1,1,a-pcom-i3,2018-19,Stoneham - Colonial Park,2840005,0,1.8,0,98.2,0,0,0,95.9,4.1,55.4 +1,1,a-pcom-i3,2018-19,Stoneham - Robin Hood,2840025,0,0.6,0,99.4,0,0,0,92.1,7.9,50.5 +1,1,a-pcom-i3,2018-19,Stoneham - South,2840030,0,0.8,0,99.2,0,0,0,94.7,5.3,38 +1.5625,1.56,a-pcom-i3,2018-19,Stoneham - Stoneham Central Middle School,2840405,1,1,1,95,0,0,2,72.6,27.4,100.5 +1,1,a-pcom-i3,2018-19,Stoneham - Stoneham High,2840505,1.1,2.1,0,96.8,0,0,0,74.5,25.5,94 +1.75,1.75,a-pcom-i3,2018-19,Stoughton - Edwin A Jones Early Childhood Center,2850012,3.9,0,1.7,94.4,0,0,0,98.3,1.7,22.3 +1,1,a-pcom-i3,2018-19,Stoughton - Helen Hansen Elementary,2850010,2.5,0,0,97.5,0,0,0,87.4,12.6,35.4 +1,1,a-pcom-i3,2018-19,Stoughton - Joseph H Gibbons,2850025,0,2,0,98,0,0,0,93.2,6.8,45 +1,1,a-pcom-i3,2018-19,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,0,0,97.8,0,0,2.2,89.4,10.6,46.4 +1.59375,1.59,a-pcom-i3,2018-19,Stoughton - O'Donnell Middle School,2850405,2.1,2,0,94.9,1,0,0,80.3,19.7,95.8 +1.6875,1.69,a-pcom-i3,2018-19,Stoughton - Richard L. Wilkins Elementary School,2850020,0,0.9,2.3,94.6,0,0,2.3,91.8,8.2,44.2 +1,1,a-pcom-i3,2018-19,Stoughton - South Elementary,2850015,0,0,0,100,0,0,0,95.1,4.9,28.5 +1.21875,1.22,a-pcom-i3,2018-19,Stoughton - Stoughton High,2850505,1.1,0.2,1,96.1,0.8,0,0.8,68.8,31.2,129.3 +1,1,a-pcom-i3,2018-19,Sturbridge - Burgess Elementary,2870005,0,0,0,100,0,0,0,93.1,6.9,133.2 +1.25,1.25,a-pcom-i3,2018-19,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0.7,1.5,1.8,96,0,0,0,68.2,31.8,136.6 +1.03125,1.03,a-pcom-i3,2018-19,Sudbury - Ephraim Curtis Middle,2880305,0.9,0.5,0,96.7,0,0,1.9,71.8,28.2,107.6 +1,1,a-pcom-i3,2018-19,Sudbury - General John Nixon Elementary,2880025,1.9,0,0,98.1,0,0,0,88.1,11.9,51.5 +2.75,2.75,a-pcom-i3,2018-19,Sudbury - Israel Loring School,2880015,2.6,1.7,1.4,91.2,0,0,3.1,91.5,8.5,58 +1,1,a-pcom-i3,2018-19,Sudbury - Josiah Haynes,2880010,1.5,0,0.8,97.7,0,0,0,93.5,6.5,66.4 +1.1875,1.19,a-pcom-i3,2018-19,Sudbury - Peter Noyes,2880030,0,0,1.3,96.2,0,0,2.6,93.4,6.6,78.2 +1.09375,1.09,a-pcom-i3,2018-19,Sunderland - Sunderland Elementary,2890005,0,1.7,1.7,96.5,0,0,0,91.3,8.7,57.3 +1,1,a-pcom-i3,2018-19,Sutton - Sutton Early Learning,2900003,0,0,0,100,0,0,0,99.3,0.7,55.9 +1,1,a-pcom-i3,2018-19,Sutton - Sutton Elementary,2900005,2,0.8,0,97.3,0,0,0,94.9,5.1,51.3 +1,1,a-pcom-i3,2018-19,Sutton - Sutton High School,2900510,0,0,0,100,0,0,0,57.6,42.4,54.2 +1,1,a-pcom-i3,2018-19,Sutton - Sutton Middle School,2900305,0,0,0,100,0,0,0,74.3,25.7,43.6 +1,1,a-pcom-i3,2018-19,Swampscott - Clarke,2910005,0,0,0,99.4,0,0,0.6,96.8,3.2,38.7 +1.21875,1.22,a-pcom-i3,2018-19,Swampscott - Hadley,2910010,0,0,2.2,96.1,0,0,1.7,89.8,10.2,45 +1,1,a-pcom-i3,2018-19,Swampscott - Stanley,2910020,0,0,0,97.5,0,0,2.5,82.8,17.2,40.8 +1.96875,1.97,a-pcom-i3,2018-19,Swampscott - Swampscott High,2910505,1.7,1.2,3.5,93.7,0,0,0,66.5,33.5,86.8 +1.0625,1.06,a-pcom-i3,2018-19,Swampscott - Swampscott Middle,2910305,1.4,0,1,96.6,0,0,1,87.6,12.4,104.1 +1,1,a-pcom-i3,2018-19,Swansea - Elizabeth S Brown,2920006,0,0,0,100,0,0,0,94.6,5.4,28.1 +1,1,a-pcom-i3,2018-19,Swansea - Gardner,2920015,0,0,0,100,0,0,0,89.8,10.2,24.3 +1,1,a-pcom-i3,2018-19,Swansea - Joseph Case High,2920505,0,1.3,0,98.7,0,0,0,42.4,57.6,62.9 +1.15625,1.16,a-pcom-i3,2018-19,Swansea - Joseph Case Jr High,2920305,1.8,0,1.8,96.3,0,0,0,68.7,31.3,54.4 +1,1,a-pcom-i3,2018-19,Swansea - Joseph G Luther,2920020,0,0,0,100,0,0,0,84.5,15.5,21.6 +1,1,a-pcom-i3,2018-19,Swansea - Mark G Hoyle Elementary,2920017,3,0,0,97,0,0,0,92.3,7.7,32.8 +2.84375,2.84,a-pcom-i3,2018-19,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,2.5,4.9,1.6,90.9,0,0,0,69.9,30.1,121.2 +1,1,a-pcom-i3,2018-19,Tantasqua - Tantasqua Regional Jr High,7700405,2.7,0,0,97.3,0,0,0,77.5,22.5,74.3 +1,1,a-pcom-i3,2018-19,Tantasqua - Tantasqua Regional Sr High,7700505,0.8,0,0.5,97.9,0,0,0.8,63.5,36.5,127.1 +1,1,a-pcom-i3,2018-19,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,100,0,0,0,29.8,70.2,15.5 +1,1,a-pcom-i3,2018-19,Taunton - Benjamin Friedman Middle,2930315,2.6,0,0,97.4,0,0,0,77.3,22.7,76.1 +1,1,a-pcom-i3,2018-19,Taunton - East Taunton Elementary,2930010,0,0,0,100,0,0,0,93.4,6.6,80.6 +1,1,a-pcom-i3,2018-19,Taunton - Edmund Hatch Bennett,2930007,0,0,0,100,0,0,0,96.2,3.8,35.5 +1,1,a-pcom-i3,2018-19,Taunton - Edward F. Leddy Preschool,2930005,0,0,0,100,0,0,0,100,0,34.8 +1,1,a-pcom-i3,2018-19,Taunton - Elizabeth Pole,2930027,0,1.5,1.5,97,0,0,0,93.4,6.6,65.9 +1.6875,1.69,a-pcom-i3,2018-19,Taunton - H H Galligan,2930057,0,0,5.4,94.6,0,0,0,99.1,0.9,37.2 +1,1,a-pcom-i3,2018-19,Taunton - Hopewell,2930035,2.6,0,0,97.4,0,0,0,91.3,8.7,38.5 +1.71875,1.72,a-pcom-i3,2018-19,Taunton - John F Parker Middle,2930305,2.7,0,2.7,94.5,0,0,0,82.2,17.8,54.6 +1,1,a-pcom-i3,2018-19,Taunton - Joseph C Chamberlain,2930008,0,3.2,0,96.8,0,0,0,97.9,2.1,63.2 +1,1,a-pcom-i3,2018-19,Taunton - Joseph H Martin,2930042,3,0,0,97,0,0,0,84,16,67.4 +1.125,1.12,a-pcom-i3,2018-19,Taunton - Mulcahey Elementary School,2930015,0,0,3.6,96.4,0,0,0,96.4,3.6,55 +1,1,a-pcom-i3,2018-19,Taunton - Taunton Alternative High School,2930525,0,0,0,100,0,0,0,62.1,37.9,11.2 +1.5,1.5,a-pcom-i3,2018-19,Taunton - Taunton High,2930505,1.7,0.4,2.3,95.2,0,0,0.4,64.9,35.1,239.3 +1,1,a-pcom-i3,2018-19,Tewksbury - Heath-Brook,2950010,0,0,2.6,97.4,0,0,0,97.4,2.6,39 +1.6875,1.69,a-pcom-i3,2018-19,Tewksbury - John F. Ryan,2950023,2.7,0,1.4,94.6,0,0,1.4,88.4,11.6,73.4 +1.28125,1.28,a-pcom-i3,2018-19,Tewksbury - John W. Wynn Middle,2950305,0,2.8,1.4,95.9,0,0,0,73,27,72.3 +1.4375,1.44,a-pcom-i3,2018-19,Tewksbury - L F Dewing,2950001,1.2,2.3,1.2,95.4,0,0,0,96.5,3.5,86.7 +1,1,a-pcom-i3,2018-19,Tewksbury - Louise Davy Trahan,2950025,0,0,0,100,0,0,0,89.2,10.8,28 +1.46875,1.47,a-pcom-i3,2018-19,Tewksbury - North Street,2950020,0,0,4.7,95.3,0,0,0,97.7,2.3,42.7 +1,1,a-pcom-i3,2018-19,Tewksbury - Tewksbury Memorial High,2950505,0,0,1.8,98.2,0,0,0,63.4,36.6,112.1 +2.8125,2.81,a-pcom-i3,2018-19,Tisbury - Tisbury Elementary,2960005,1.6,0,6,91,0,0,1.4,85.7,14.3,73.5 +1,1,a-pcom-i3,2018-19,Topsfield - Proctor Elementary,2980005,0,0,2.3,97.7,0,0,0,92.7,7.3,42.9 +1,1,a-pcom-i3,2018-19,Topsfield - Steward Elementary,2980010,0,0,1.4,98.6,0,0,0,94.9,5.1,57.8 +1,1,a-pcom-i3,2018-19,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0.8,0.8,0,98.4,0,0,0,61.2,38.8,128.3 +1,1,a-pcom-i3,2018-19,Triton - Newbury Elementary,7730020,1.3,0,0,98.7,0,0,0,88.7,11.3,79.7 +1,1,a-pcom-i3,2018-19,Triton - Pine Grove,7730025,0,0,0,100,0,0,0,90,10,60.3 +1,1,a-pcom-i3,2018-19,Triton - Salisbury Elementary,7730015,0,0,0,100,0,0,0,95.7,4.3,69.4 +1,1,a-pcom-i3,2018-19,Triton - Triton Regional High School,7730505,3.1,0,0,96.9,0,0,0,59.1,40.9,91.2 +1,1,a-pcom-i3,2018-19,Triton - Triton Regional Middle School,7730405,0,0,0,100,0,0,0,74.5,25.5,51.4 +1,1,a-pcom-i3,2018-19,Truro - Truro Central,3000005,0,0,3.2,96.8,0,0,0,83.8,16.2,30.9 +1,1,a-pcom-i3,2018-19,Tyngsborough - Tyngsborough Elementary,3010020,0,0.9,0,99.1,0,0,0,90,10,110.6 +1,1,a-pcom-i3,2018-19,Tyngsborough - Tyngsborough High School,3010505,0,0,0,100,0,0,0,66.1,33.9,53.9 +1,1,a-pcom-i3,2018-19,Tyngsborough - Tyngsborough Middle,3010305,0,0,1.9,98.1,0,0,0,68.4,31.6,51.9 +10.25,5,a-pcom-i3,2018-19,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,16.8,7.6,6.7,67.2,0,0,1.7,63,37,59.5 +11.875,5,a-pcom-i3,2018-19,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,26.9,2.9,7,62,0,0,1.2,76.6,23.4,85.5 +1,1,a-pcom-i3,2018-19,Up-Island Regional - Chilmark Elementary,7740010,0,0,0,100,0,0,0,99.5,0.5,9.3 +1.21875,1.22,a-pcom-i3,2018-19,Up-Island Regional - West Tisbury Elementary,7740020,0.3,0,2.1,96.1,0,0,1.5,89.3,10.7,66.8 +1,1,a-pcom-i3,2018-19,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,99,1,0,0,39.8,60.2,104.7 +31.25,5,a-pcom-i3,2018-19,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0 +1,1,a-pcom-i3,2018-19,Uxbridge - Taft Early Learning Center,3040005,0,0,1.2,98.8,0,0,0,94.3,5.7,83.6 +1,1,a-pcom-i3,2018-19,Uxbridge - Uxbridge High,3040505,0,0,0,100,0,0,0,67.3,32.7,76.5 +1,1,a-pcom-i3,2018-19,Uxbridge - Whitin Intermediate,3040405,0,0,0,100,0,0,0,83.5,16.5,60.5 +8.21875,5,a-pcom-i3,2018-19,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,19.1,0,7.2,73.7,0,0,0,85.7,14.3,41.9 +1,1,a-pcom-i3,2018-19,Wachusett - Central Tree Middle,7750310,0,0,0,100,0,0,0,77.5,22.5,55 +1,1,a-pcom-i3,2018-19,Wachusett - Chocksett Middle School,7750315,0,0,2,98,0,0,0,83.9,16.1,51.3 +1,1,a-pcom-i3,2018-19,Wachusett - Davis Hill Elementary,7750018,0,0,1.8,98.2,0,0,0,85.8,14.2,56.3 +1,1,a-pcom-i3,2018-19,Wachusett - Dawson,7750020,0,0,0,100,0,0,0,93.1,6.9,58.1 +1.71875,1.72,a-pcom-i3,2018-19,Wachusett - Early Childhood Center,7750001,1.8,1.8,1.8,94.5,0,0,0,100,0,54.2 +1,1,a-pcom-i3,2018-19,Wachusett - Glenwood Elementary School,7750060,0,0,0,98,0,2,0,87.9,12.1,49.7 +1,1,a-pcom-i3,2018-19,Wachusett - Houghton Elementary,7750027,1.7,0,0,98.3,0,0,0,96.6,3.4,59.5 +1,1,a-pcom-i3,2018-19,Wachusett - Leroy E.Mayo,7750032,0,0,0,100,0,0,0,94,6,49.8 +1,1,a-pcom-i3,2018-19,Wachusett - Mountview Middle,7750305,0,0,1.3,98.7,0,0,0,80.4,19.6,77.5 +1,1,a-pcom-i3,2018-19,Wachusett - Naquag Elementary School,7750005,0,0,0,100,0,0,0,95.8,4.2,47.7 +1,1,a-pcom-i3,2018-19,Wachusett - Paxton Center,7750040,0,0,0,100,0,0,0,83,17,52.7 +1,1,a-pcom-i3,2018-19,Wachusett - Thomas Prince,7750045,0,0,0,100,0,0,0,88.8,11.2,44.6 +1,1,a-pcom-i3,2018-19,Wachusett - Wachusett Regional High,7750505,0,0.4,0.4,99.2,0,0,0,71.3,28.7,238.7 +1.5,1.5,a-pcom-i3,2018-19,Wakefield - Dolbeare,3050005,0,1.6,1.6,95.2,1.6,0,0,87.6,12.4,62.1 +1.21875,1.22,a-pcom-i3,2018-19,Wakefield - Early Childhood Center at the Doyle School,3050001,0,3.9,0,96.1,0,0,0,100,0,25.5 +1,1,a-pcom-i3,2018-19,Wakefield - Galvin Middle School,3050310,0,0,0.8,99.2,0,0,0,76,24,122.5 +1.0625,1.06,a-pcom-i3,2018-19,Wakefield - Greenwood,3050020,0,3.4,0,96.6,0,0,0,95.6,4.4,29.3 +1,1,a-pcom-i3,2018-19,Wakefield - Wakefield Memorial High,3050505,0,0.9,1,98.1,0,0,0,66.3,33.7,115.6 +1.3125,1.31,a-pcom-i3,2018-19,Wakefield - Walton,3050040,0,4.2,0,95.8,0,0,0,97.1,2.9,24.1 +1.09375,1.09,a-pcom-i3,2018-19,Wakefield - Woodville School,3050015,0,0,1.8,96.5,0,0,1.8,95.9,4.1,56.6 +1,1,a-pcom-i3,2018-19,Wales - Wales Elementary,3060005,0,0,0,100,0,0,0,99.3,0.7,21.3 +1.5625,1.56,a-pcom-i3,2018-19,Walpole - Bird Middle,3070305,0,3.3,1.7,95,0,0,0,80.9,19.1,60.1 +1,1,a-pcom-i3,2018-19,Walpole - Boyden,3070010,0,0,0,100,0,0,0,95.5,4.5,50.7 +1.53125,1.53,a-pcom-i3,2018-19,Walpole - Daniel Feeney Preschool Center,3070002,0,0,4.9,95.1,0,0,0,92.9,7.1,15.6 +1,1,a-pcom-i3,2018-19,Walpole - Eleanor N Johnson Middle,3070310,0,0,0,100,0,0,0,78.8,21.2,59 +1,1,a-pcom-i3,2018-19,Walpole - Elm Street School,3070005,0,1.3,1,97.7,0,0,0,98.1,1.9,51.4 +1,1,a-pcom-i3,2018-19,Walpole - Fisher,3070015,0,0,0,100,0,0,0,98.2,1.8,56.5 +1,1,a-pcom-i3,2018-19,Walpole - Old Post Road,3070018,0,0,0,100,0,0,0,91.5,8.5,46.8 +1.3125,1.31,a-pcom-i3,2018-19,Walpole - Walpole High,3070505,0,2,2.2,95.8,0,0,0,67.3,32.7,138.1 +1,1,a-pcom-i3,2018-19,Waltham - Douglas MacArthur Elementary School,3080032,0,0,0,100,0,0,0,91.9,8.1,58.2 +4.90625,4.91,a-pcom-i3,2018-19,Waltham - Henry Whittemore Elementary School,3080065,3.4,0.2,8.7,84.3,0,1.7,1.7,91.1,8.9,58.7 +1,1,a-pcom-i3,2018-19,Waltham - James Fitzgerald Elementary School,3080060,0,0,1.8,98,0,0,0.2,91.7,8.3,54.4 +2.59375,2.59,a-pcom-i3,2018-19,Waltham - John F Kennedy Middle,3080404,0,4.7,2.4,91.7,0,0,1.2,78,22,84.7 +2.65625,2.66,a-pcom-i3,2018-19,Waltham - John W. McDevitt Middle School,3080415,2.1,0,5.3,91.5,0,0,1.1,69.2,30.8,93.8 +2.34375,2.34,a-pcom-i3,2018-19,Waltham - Northeast Elementary School,3080040,2.4,1.9,2,92.5,0,0,1.2,93.7,6.3,81.7 +1.8125,1.81,a-pcom-i3,2018-19,Waltham - Thomas R Plympton Elementary School,3080050,0,0.4,5.1,94.2,0,0,0.3,91.1,8.9,58.9 +18.21875,5,a-pcom-i3,2018-19,Waltham - Waltham Public Schools Dual Language Program,3080001,0,2.8,55.6,41.7,0,0,0,96.8,3.2,10.8 +4.0625,4.06,a-pcom-i3,2018-19,Waltham - Waltham Sr High,3080505,3.9,1.4,6.3,87,0,0.5,0.9,65.4,34.6,213 +1.71875,1.72,a-pcom-i3,2018-19,Waltham - William F. Stanley Elementary School,3080005,1.9,0.2,2.2,94.5,0,0,1.2,93.6,6.4,92.4 +1,1,a-pcom-i3,2018-19,Ware - Stanley M Koziol Elementary School,3090020,0,0,1.8,98.2,0,0,0,93,7,57.1 +2.28125,2.28,a-pcom-i3,2018-19,Ware - Ware Junior/Senior High School,3090505,0,0,7.3,92.7,0,0,0,75.5,24.5,68.6 +1.5,1.5,a-pcom-i3,2018-19,Ware - Ware Middle School,3090305,2.4,0,2.4,95.2,0,0,0,85.5,14.5,41.3 +1,1,a-pcom-i3,2018-19,Wareham - John William Decas,3100003,0,0,0,100,0,0,0,92.9,7.1,92.3 +1.28125,1.28,a-pcom-i3,2018-19,Wareham - Minot Forest,3100017,0,0,0,95.9,0,0,4.1,94.6,5.4,51.6 +1,1,a-pcom-i3,2018-19,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,100,0,0,0,77.2,22.8,3.5 +1.1875,1.19,a-pcom-i3,2018-19,Wareham - Wareham Middle,3100305,1.6,0,0,96.2,0,0,2.2,86,14,63.6 +3.03125,3.03,a-pcom-i3,2018-19,Wareham - Wareham Senior High,3100505,3.2,1.1,0,90.3,0,0,5.4,66.4,33.6,92.6 +1,1,a-pcom-i3,2018-19,Watertown - Cunniff,3140015,0,1,0,99,0,0,0,92,8,50.2 +1,1,a-pcom-i3,2018-19,Watertown - Hosmer,3140020,0,1.2,0,98.8,0,0,0,87.9,12.1,128.4 +1,1,a-pcom-i3,2018-19,Watertown - James Russell Lowell,3140025,0,1.6,0,98.4,0,0,0,85.9,14.1,63.9 +1,1,a-pcom-i3,2018-19,Watertown - Watertown High,3140505,1.9,0.9,0,97.2,0,0,0,56.8,43.2,106.9 +1,1,a-pcom-i3,2018-19,Watertown - Watertown Middle,3140305,0,0,0,100,0,0,0,77.4,22.6,75.7 +2.625,2.63,a-pcom-i3,2018-19,Wayland - Claypit Hill School,3150005,1.8,1.2,2.8,91.6,0,1.2,1.2,93.6,6.4,80.8 +2.75,2.75,a-pcom-i3,2018-19,Wayland - Happy Hollow School,3150015,0.6,6.4,1.8,91.2,0,0,0,93.6,6.4,55.9 +1,1,a-pcom-i3,2018-19,Wayland - Loker School,3150020,0.7,2.2,0,97.1,0,0,0,88,12,45.5 +1.9375,1.94,a-pcom-i3,2018-19,Wayland - Wayland High School,3150505,2.8,1,0.8,93.8,0.8,0,0.8,68.4,31.6,123.5 +3.09375,3.09,a-pcom-i3,2018-19,Wayland - Wayland Middle School,3150305,0,1.8,6.9,90.1,0,0,1.2,71.1,28.9,86.5 +2.15625,2.16,a-pcom-i3,2018-19,Webster - Bartlett High School,3160505,3.4,0,1.7,93.1,0,0,1.7,69.9,30.1,58.1 +1,1,a-pcom-i3,2018-19,Webster - Park Avenue Elementary,3160015,0.9,0,0.9,98.2,0,0,0,95.5,4.5,110.5 +1,1,a-pcom-i3,2018-19,Webster - Webster Middle School,3160315,1.3,0,1.3,97.3,0,0,0,77.9,22.1,74.7 +1.34375,1.34,a-pcom-i3,2018-19,Wellesley - Ernest F Upham,3170050,0,1.8,2.5,95.7,0,0,0,92.3,7.7,56.1 +4.125,4.13,a-pcom-i3,2018-19,Wellesley - Hunnewell,3170025,1.6,2.3,4.7,86.8,0,0,4.6,94.2,5.8,43.7 +1.84375,1.84,a-pcom-i3,2018-19,Wellesley - John D Hardy,3170020,0,2.5,3.4,94.1,0,0,0,91.3,8.7,40.1 +1,1,a-pcom-i3,2018-19,Wellesley - Joseph E Fiske,3170015,2.1,0,0.4,97.5,0,0,0,96.9,3.1,48.1 +2.03125,2.03,a-pcom-i3,2018-19,Wellesley - Katharine Lee Bates,3170005,0,0,4.2,93.5,0,0,2.3,100,0,43.2 +2.9375,2.94,a-pcom-i3,2018-19,Wellesley - Preschool at Wellesley Schools,3170001,2.4,4.7,2.4,90.6,0,0,0,100,0,42.5 +1.9375,1.94,a-pcom-i3,2018-19,Wellesley - Schofield,3170045,0,1.9,4.3,93.8,0,0,0,90.3,9.7,51.4 +1.59375,1.59,a-pcom-i3,2018-19,Wellesley - Sprague Elementary School,3170048,1.7,0,0,94.9,0,0,3.4,93.2,6.8,58.8 +2.65625,2.66,a-pcom-i3,2018-19,Wellesley - Wellesley Middle,3170305,2.4,2.6,1.9,91.5,0,0,1.5,75.7,24.3,179.4 +3.34375,3.34,a-pcom-i3,2018-19,Wellesley - Wellesley Sr High,3170505,3.3,3.6,0.8,89.3,0.4,0,2.5,65.3,34.7,239.4 +1,1,a-pcom-i3,2018-19,Wellfleet - Wellfleet Elementary,3180005,0,0,0,100,0,0,0,91.4,8.6,29.1 +1,1,a-pcom-i3,2018-19,West Boylston - Major Edwards Elementary,3220005,0,0,0,100,0,0,0,94.3,5.7,58 +2.25,2.25,a-pcom-i3,2018-19,West Boylston - West Boylston Junior/Senior High,3220505,1.4,1.4,2.9,92.8,0,0,1.4,67,33,69.4 +1,1,a-pcom-i3,2018-19,West Bridgewater - Howard School,3230305,0,0,0,100,0,0,0,85.3,14.7,29.5 +1,1,a-pcom-i3,2018-19,West Bridgewater - Rose L Macdonald,3230003,0,0,0,100,0,0,0,94.7,5.3,29.7 +1,1,a-pcom-i3,2018-19,West Bridgewater - Spring Street School,3230005,0,0,0,100,0,0,0,97.1,2.9,26.6 +1,1,a-pcom-i3,2018-19,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,98.4,0,0,1.6,70.9,29.1,64.3 +1,1,a-pcom-i3,2018-19,West Springfield - Cowing Early Childhood,3320001,0,0,0,100,0,0,0,96,4,24.9 +1.5,1.5,a-pcom-i3,2018-19,West Springfield - John Ashley,3320005,4.8,0,0,95.2,0,0,0,94.8,5.2,42 +1.375,1.38,a-pcom-i3,2018-19,West Springfield - John R Fausey,3320010,1.5,0,2.9,95.6,0,0,0,92.6,7.4,68 +1.0625,1.06,a-pcom-i3,2018-19,West Springfield - Memorial,3320025,0,0,0,96.6,0,0,3.4,85.5,14.5,29.5 +1,1,a-pcom-i3,2018-19,West Springfield - Mittineague,3320030,0,0,0,100,0,0,0,93.9,6.1,22.7 +1,1,a-pcom-i3,2018-19,West Springfield - Philip G Coburn,3320007,1.4,1.4,0,97.2,0,0,0,95.5,4.5,71.1 +1,1,a-pcom-i3,2018-19,West Springfield - Tatham,3320040,0,0,0,100,0,0,0,87,13,41.1 +2.40625,2.41,a-pcom-i3,2018-19,West Springfield - West Springfield High,3320505,1.3,0.6,5.8,92.3,0,0,0,66.3,33.7,156.2 +1,1,a-pcom-i3,2018-19,West Springfield - West Springfield Middle,3320305,0,0.8,1.6,97.5,0,0,0,72.1,27.9,121.4 +1,1,a-pcom-i3,2018-19,Westborough - Annie E Fales,3210010,0,1.7,0,97,0,0,1.3,97.2,2.8,59.8 +2.125,2.12,a-pcom-i3,2018-19,Westborough - Elsie A Hastings Elementary,3210025,1.1,5.7,0,93.2,0,0,0,96.4,3.6,91.2 +2.09375,2.09,a-pcom-i3,2018-19,Westborough - J Harding Armstrong,3210005,1.7,5,0,93.3,0,0,0,96.7,3.3,59.9 +1.03125,1.03,a-pcom-i3,2018-19,Westborough - Mill Pond School,3210045,0,1.7,0.8,96.7,0,0,0.8,87.3,12.7,119.7 +1,1,a-pcom-i3,2018-19,Westborough - Sarah W Gibbons Middle,3210305,0,1.6,1.2,97.3,0,0,0,78.7,21.3,85.3 +1.09375,1.09,a-pcom-i3,2018-19,Westborough - Westborough High,3210505,0,1.3,0.8,96.5,0.8,0.8,0,68.8,31.2,133.1 +1.28125,1.28,a-pcom-i3,2018-19,Westfield - Abner Gibbs,3250020,0,0,4.1,95.9,0,0,0,98.6,1.4,24.4 +4.125,4.13,a-pcom-i3,2018-19,Westfield - Fort Meadow Early Childhood Center,3250003,0,7.9,5.3,86.8,0,0,0,100,0,37.9 +1.15625,1.16,a-pcom-i3,2018-19,Westfield - Franklin Ave,3250015,0,0,0,96.3,0,0,3.7,96,4,27.2 +2.6875,2.69,a-pcom-i3,2018-19,Westfield - Highland,3250025,0,3.4,3.4,91.4,1.7,0,0,91.4,8.6,58.3 +2.09375,2.09,a-pcom-i3,2018-19,Westfield - Munger Hill,3250033,3.3,0,3.3,93.3,0,0,0,94.1,5.9,59.9 +1.125,1.12,a-pcom-i3,2018-19,Westfield - Paper Mill,3250036,0,0,1.8,96.4,0,0,1.8,95.6,4.4,55.5 +1,1,a-pcom-i3,2018-19,Westfield - Southampton Road,3250040,0,0,2.5,97.5,0,0,0,98.6,1.4,40 +1,1,a-pcom-i3,2018-19,Westfield - Westfield High,3250505,0,1.2,0.6,97.5,0.6,0,0,75.4,24.6,160.9 +1.3125,1.31,a-pcom-i3,2018-19,Westfield - Westfield Intermediate School,3250075,2.1,1,1,95.8,0,0,0,84.3,15.7,96.2 +1,1,a-pcom-i3,2018-19,Westfield - Westfield Middle School,3250310,0,0,2,98,0,0,0,78,22,100.7 +1,1,a-pcom-i3,2018-19,Westfield - Westfield Technical Academy,3250605,1.1,0,0,98.9,0,0,0,50.8,49.2,91.3 +1,1,a-pcom-i3,2018-19,Westford - Abbot Elementary,3260004,0,0,2.1,97.9,0,0,0,97.4,2.6,47 +2.21875,2.22,a-pcom-i3,2018-19,Westford - Blanchard Middle,3260310,0,5.6,1.4,92.9,0,0,0,88,12,70.8 +1.40625,1.41,a-pcom-i3,2018-19,Westford - Col John Robinson,3260025,0,2.3,2.3,95.5,0,0,0,96.6,3.4,44.4 +1,1,a-pcom-i3,2018-19,Westford - Day Elementary,3260007,0,0,2.1,97.9,0,0,0,91.7,8.3,48.4 +1.1875,1.19,a-pcom-i3,2018-19,Westford - John A. Crisafulli Elementary School,3260045,0,1.9,1.9,96.2,0,0,0,96.8,3.2,52.4 +2.1875,2.19,a-pcom-i3,2018-19,Westford - Millennium Elementary,3260013,0,7,0,93,0,0,0,96.5,3.5,28.4 +1,1,a-pcom-i3,2018-19,Westford - Nabnasset,3260015,0,2.1,0,97.9,0,0,0,97.5,2.5,48 +2.125,2.12,a-pcom-i3,2018-19,Westford - Rita E. Miller Elementary School,3260055,1.7,5.1,0,93.2,0,0,0,98.3,1.7,58.7 +1,1,a-pcom-i3,2018-19,Westford - Stony Brook School,3260330,1.2,0,1.2,97.6,0,0,0,82.9,17.1,84.6 +1.6875,1.69,a-pcom-i3,2018-19,Westford - Westford Academy,3260505,0,3.6,1.2,94.6,0,0,0.6,60.1,39.9,166.1 +1,1,a-pcom-i3,2018-19,Westhampton - Westhampton Elementary School,3270005,0,0,0,100,0,0,0,92,8,27.7 +2,2,a-pcom-i3,2018-19,Weston - Country,3300010,1.5,0,2.9,93.6,0,0,2.1,86.3,13.7,48.5 +2.90625,2.91,a-pcom-i3,2018-19,Weston - Field Elementary School,3300012,2.3,4.7,2.3,90.7,0,0,0,88.7,11.3,42.9 +4.96875,4.97,a-pcom-i3,2018-19,Weston - Weston High,3300505,3,7.8,3.5,84.1,0,0.8,0.9,65.5,34.5,111.3 +3.25,3.25,a-pcom-i3,2018-19,Weston - Weston Middle,3300305,3.7,4.3,1.2,89.6,0,0,1.2,71,29,81.6 +3.1875,3.19,a-pcom-i3,2018-19,Weston - Woodland,3300015,0,1.7,7,89.8,1.6,0,0,95.1,4.9,45.7 +1,1,a-pcom-i3,2018-19,Westport - Alice A Macomber,3310015,0,0,0,100,0,0,0,100,0,54 +1,1,a-pcom-i3,2018-19,Westport - Westport Elementary,3310030,1.3,0,0,98.7,0,0,0,90,10,68.2 +1,1,a-pcom-i3,2018-19,Westport - Westport Junior/Senior High School,3310515,0,0,0,100,0,0,0,63.7,36.3,79.4 +1,1,a-pcom-i3,2018-19,Westwood - Deerfield School,3350010,0,2.4,0,97.3,0,0,0.2,91.4,8.6,41.2 +1.46875,1.47,a-pcom-i3,2018-19,Westwood - Downey,3350012,0,1.7,1.7,95.3,0,0,1.2,96.2,3.8,57.8 +1.84375,1.84,a-pcom-i3,2018-19,Westwood - E W Thurston Middle,3350305,2,1,2,94.1,0,0,1,73.5,26.5,101.8 +1,1,a-pcom-i3,2018-19,Westwood - Martha Jones,3350017,0,1.3,0,98.7,0,0,0,89.6,10.4,38.2 +1,1,a-pcom-i3,2018-19,Westwood - Paul Hanlon,3350015,0,0,0,100,0,0,0,93.2,6.8,28.4 +2.25,2.25,a-pcom-i3,2018-19,Westwood - Westwood High,3350505,1.5,1.5,3.5,92.8,0,0,0.7,67.7,32.3,136.7 +1.90625,1.91,a-pcom-i3,2018-19,Westwood - Westwood Integrated Preschool,3350050,0,0,6.1,93.9,0,0,0,100,0,16.5 +1,1,a-pcom-i3,2018-19,Westwood - William E Sheehan,3350025,0,3.1,0,96.9,0,0,0,92.8,7.2,48.5 +1,1,a-pcom-i3,2018-19,Weymouth - Abigail Adams Middle School,3360310,0,1.9,0,98.1,0,0,0,71.1,28.9,102.7 +1,1,a-pcom-i3,2018-19,Weymouth - Academy Avenue,3360005,0,0,0,100,0,0,0,93.5,6.5,28.3 +1,1,a-pcom-i3,2018-19,Weymouth - Frederick C Murphy,3360050,0,0,2.6,97.4,0,0,0,93,7,38.2 +2.125,2.12,a-pcom-i3,2018-19,Weymouth - Johnson Early Childhood Center,3360003,2.3,2.3,2.3,93.2,0,0,0,98,2,44.1 +1,1,a-pcom-i3,2018-19,Weymouth - Lawrence W Pingree,3360065,0,0,0,100,0,0,0,99.5,0.5,30.7 +1.09375,1.09,a-pcom-i3,2018-19,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,1.7,96.5,0.9,0,0.9,63.4,36.6,114.4 +1,1,a-pcom-i3,2018-19,Weymouth - Ralph Talbot,3360085,0,0,0,100,0,0,0,94.7,5.3,33.1 +1.125,1.12,a-pcom-i3,2018-19,Weymouth - Thomas V Nash,3360060,0,0,3.6,96.4,0,0,0,91.6,8.4,28 +1,1,a-pcom-i3,2018-19,Weymouth - Thomas W. Hamilton Primary School,3360105,0,0,0,100,0,0,0,92,8,35.1 +1,1,a-pcom-i3,2018-19,Weymouth - Wessagusset,3360110,0,0,0,100,0,0,0,93.2,6.8,36.7 +1,1,a-pcom-i3,2018-19,Weymouth - Weymouth High School,3360505,0.9,0.9,0.4,97.3,0,0,0.4,66.6,33.4,223.4 +1,1,a-pcom-i3,2018-19,Weymouth - William Seach,3360080,0,0,0,100,0,0,0,96.5,3.5,42.7 +1,1,a-pcom-i3,2018-19,Whately - Whately Elementary,3370005,0,0,0,100,0,0,0,96.7,3.3,30.4 +1.5625,1.56,a-pcom-i3,2018-19,Whitman-Hanson - Hanson Middle School,7800315,1.7,1.7,1.6,95,0,0,0,80.7,19.3,59.1 +1,1,a-pcom-i3,2018-19,Whitman-Hanson - Indian Head,7800035,0,0,0,100,0,0,0,93.9,6.1,50.6 +1.09375,1.09,a-pcom-i3,2018-19,Whitman-Hanson - John H Duval,7800030,0,0,1.7,96.5,0,0,1.7,93.5,6.5,57.3 +1.0625,1.06,a-pcom-i3,2018-19,Whitman-Hanson - Louise A Conley,7800010,1.7,1.7,0,96.6,0,0,0,91.1,8.9,51.3 +1,1,a-pcom-i3,2018-19,Whitman-Hanson - Whitman Hanson Regional,7800505,0.8,0,0,99.2,0,0,0,70,30,121.9 +1.125,1.12,a-pcom-i3,2018-19,Whitman-Hanson - Whitman Middle,7800310,0,0,3.6,96.4,0,0,0,76.6,23.4,56.1 +1,1,a-pcom-i3,2018-19,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0.7,99.3,0,0,0,51.4,48.6,136.1 +1,1,a-pcom-i3,2018-19,Williamsburg - Anne T. Dunphy School,3400020,0,0,0,100,0,0,0,90,10,28.1 +1,1,a-pcom-i3,2018-19,Wilmington - Boutwell,3420005,0,0,0,100,0,0,0,98.2,1.8,28.4 +1,1,a-pcom-i3,2018-19,Wilmington - North Intermediate,3420060,0,3.1,0,96.9,0,0,0,95.4,4.6,32.4 +1,1,a-pcom-i3,2018-19,Wilmington - Shawsheen Elementary,3420025,0,0,0,100,0,0,0,90.3,9.7,46.6 +1,1,a-pcom-i3,2018-19,Wilmington - West Intermediate,3420080,0,3.2,0,96.8,0,0,0,93.5,6.5,30.8 +1,1,a-pcom-i3,2018-19,Wilmington - Wildwood,3420015,0,0,0,97.3,0,0,2.7,90.4,9.6,36.6 +1.5625,1.56,a-pcom-i3,2018-19,Wilmington - Wilmington High,3420505,0.3,1.9,1.9,95,0.9,0,0,72.9,27.1,106.6 +1,1,a-pcom-i3,2018-19,Wilmington - Wilmington Middle School,3420330,0,0,0,100,0,0,0,79.8,20.2,110.9 +1,1,a-pcom-i3,2018-19,Wilmington - Woburn Street,3420020,0,0,0,100,0,0,0,87.1,12.9,46.4 +1,1,a-pcom-i3,2018-19,Winchendon - Memorial,3430040,2.5,0,0,97.5,0,0,0,96.3,3.7,40.8 +1,1,a-pcom-i3,2018-19,Winchendon - Murdock Academy for Success,3430405,0,0,0,100,0,0,0,35.1,64.9,3.7 +1.71875,1.72,a-pcom-i3,2018-19,Winchendon - Murdock High School,3430515,2.7,0,2.7,94.5,0,0,0,72.4,27.6,36.5 +1,1,a-pcom-i3,2018-19,Winchendon - Murdock Middle School,3430315,0,0,3,97,0,0,0,76,24,33.4 +1,1,a-pcom-i3,2018-19,Winchendon - Toy Town Elementary,3430050,0,0,0,100,0,0,0,88.5,11.5,39 +1,1,a-pcom-i3,2018-19,Winchendon - Winchendon PreSchool Program,3430010,0,0,0,100,0,0,0,100,0,8.2 +1.1875,1.19,a-pcom-i3,2018-19,Winchester - Ambrose Elementary,3440045,3.8,0,0,96.2,0,0,0,95.4,4.6,53.1 +1,1,a-pcom-i3,2018-19,Winchester - Lincoln Elementary,3440005,0,0,0,100,0,0,0,94.6,5.4,46.2 +1,1,a-pcom-i3,2018-19,Winchester - Lynch Elementary,3440020,0,1.1,1.1,97.8,0,0,0,91.9,7,92.8 +1,1,a-pcom-i3,2018-19,Winchester - McCall Middle,3440305,0.8,0.8,1.6,96.8,0,0,0,77.4,22.6,124.9 +1,1,a-pcom-i3,2018-19,Winchester - Muraco Elementary,3440040,0,0,0,100,0,0,0,90.4,9.6,52.3 +1,1,a-pcom-i3,2018-19,Winchester - Vinson-Owen Elementary,3440025,0,0,0,100,0,0,0,92.7,7.3,55 +1,1,a-pcom-i3,2018-19,Winchester - Winchester High School,3440505,0.7,0,0.7,98.6,0,0,0,65.1,34.9,142.2 +1.21875,1.22,a-pcom-i3,2018-19,Winthrop - Arthur T. Cummings Elementary School,3460020,2,2,0,96.1,0,0,0,87.2,12.8,50.7 +1,1,a-pcom-i3,2018-19,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,0,0,0,100,0,0,0,92.5,7.5,79.5 +1,1,a-pcom-i3,2018-19,Winthrop - Winthrop High School,3460505,0,1.5,0,98.5,0,0,0,58,42,67.2 +1.15625,1.16,a-pcom-i3,2018-19,Winthrop - Winthrop Middle School,3460305,0,3.7,0,96.3,0,0,0,72.9,27.1,54.4 +1,1,a-pcom-i3,2018-19,Woburn - Clyde Reeves,3470040,0,0,0,100,0,0,0,95.1,4.9,60.2 +1.65625,1.66,a-pcom-i3,2018-19,Woburn - Daniel L Joyce Middle School,3470410,0,1.2,4.1,94.7,0,0,0,78,22,84.6 +1,1,a-pcom-i3,2018-19,Woburn - Goodyear Elementary School,3470005,0,2.3,0,97.7,0,0,0,91.8,8.2,44.1 +1,1,a-pcom-i3,2018-19,Woburn - Hurld-Wyman Elementary School,3470020,0,0,0,100,0,0,0,98.3,1.7,35.2 +1.1875,1.19,a-pcom-i3,2018-19,Woburn - John F Kennedy Middle School,3470405,0,0,3.8,96.2,0,0,0,74.2,25.8,66 +1,1,a-pcom-i3,2018-19,Woburn - Linscott-Rumford,3470025,0,0,0,100,0,0,0,94.6,5.4,26.6 +1,1,a-pcom-i3,2018-19,Woburn - Malcolm White,3470055,0,0,0,100,0,0,0,96.9,3.1,35.6 +1,1,a-pcom-i3,2018-19,Woburn - Mary D Altavesta,3470065,2.8,0,0,97.2,0,0,0,87.6,12.4,35.9 +1,1,a-pcom-i3,2018-19,Woburn - Shamrock,3470043,0,0,0,100,0,0,0,96.3,3.7,69.9 +1.5625,1.56,a-pcom-i3,2018-19,Woburn - Woburn High,3470505,1.3,0.6,3.1,95,0,0,0,64.7,35.3,159.1 +2.34375,2.34,a-pcom-i3,2018-19,Worcester - Belmont Street Community,3480020,0,0,7.5,92.5,0,0,0,91.2,8.8,56 +5.78125,5,a-pcom-i3,2018-19,Worcester - Burncoat Middle School,3480405,7.1,0,11.4,81.5,0,0,0,71.6,28.4,79 +3.46875,3.47,a-pcom-i3,2018-19,Worcester - Burncoat Senior High,3480503,1.6,0,8.7,88.9,0,0,0.8,59.2,40.8,125.9 +4.4375,4.44,a-pcom-i3,2018-19,Worcester - Burncoat Street,3480035,2.4,0,9.4,85.8,0,2.5,0,91.3,8.7,42.5 +1.28125,1.28,a-pcom-i3,2018-19,Worcester - Canterbury,3480045,0,0,4.1,95.9,0,0,0,93.6,6.4,46.2 +4.9375,4.94,a-pcom-i3,2018-19,Worcester - Chandler Elementary Community,3480050,2.1,1.2,12.5,84.2,0,0,0,93.8,6.2,48.6 +9.6875,5,a-pcom-i3,2018-19,Worcester - Chandler Magnet,3480052,1.2,1.2,26.3,69,1.2,1.2,0,86.2,13.8,85.8 +3.3125,3.31,a-pcom-i3,2018-19,Worcester - City View,3480053,1.8,0,8.8,89.4,0,0,0,91,9,58.9 +7.46875,5,a-pcom-i3,2018-19,Worcester - Claremont Academy,3480350,8.6,2.4,12.9,76.1,0,0,0,68.8,31.2,58.2 +3.96875,3.97,a-pcom-i3,2018-19,Worcester - Clark St Community,3480055,2.4,4.9,5.4,87.3,0,0,0,89.9,10.1,41 +1.875,1.88,a-pcom-i3,2018-19,Worcester - Columbus Park,3480060,1.9,0,4.1,94,0,0,0,88.4,11.6,51.8 +3.09375,3.09,a-pcom-i3,2018-19,Worcester - Doherty Memorial High,3480512,0.7,0,7.4,90.1,0,0,1.8,61,39,135 +6.09375,5,a-pcom-i3,2018-19,Worcester - Elm Park Community,3480095,4,0,12.1,80.5,0,0,3.4,86.6,13.4,58.5 +1,1,a-pcom-i3,2018-19,Worcester - Flagg Street,3480090,0,0,2.8,97.2,0,0,0,92.4,7.6,35.8 +5.375,5,a-pcom-i3,2018-19,Worcester - Forest Grove Middle,3480415,6.6,1,7.7,82.8,0,0,1.9,71.2,28.8,105.3 +3.4375,3.44,a-pcom-i3,2018-19,Worcester - Francis J McGrath Elementary,3480177,0,7.7,3.4,89,0,0,0,84,16,26.8 +2.90625,2.91,a-pcom-i3,2018-19,Worcester - Gates Lane,3480110,3.8,1.2,4.3,90.7,0,0,0,93.1,6.9,104.2 +5.25,5,a-pcom-i3,2018-19,Worcester - Goddard School/Science Technical,3480100,0,1.6,15.1,83.2,0,0,0,93.3,6.7,60.8 +3.96875,3.97,a-pcom-i3,2018-19,Worcester - Grafton Street,3480115,2.1,5.2,5.5,87.3,0,0,0,89.1,10.9,48.5 +9.34375,5,a-pcom-i3,2018-19,Worcester - Head Start,3480002,5.3,3.2,20.3,70.1,0,0,1.1,98.9,1.1,93.7 +5.65625,5,a-pcom-i3,2018-19,Worcester - Heard Street,3480136,7.1,0,3.9,81.9,3.5,0,3.5,94.7,5.3,28.2 +4.59375,4.59,a-pcom-i3,2018-19,Worcester - Jacob Hiatt Magnet,3480140,0,4,5.9,85.3,0,0,4.7,94.6,5.4,43.3 +4.0625,4.06,a-pcom-i3,2018-19,Worcester - Lake View,3480145,4.9,2.9,5.2,87,0,0,0,86.7,13.3,34.3 +5.21875,5,a-pcom-i3,2018-19,Worcester - Lincoln Street,3480160,0,2.8,13.9,83.3,0,0,0,94,6,35.4 +2.96875,2.97,a-pcom-i3,2018-19,Worcester - May Street,3480175,3.2,3,3.2,90.5,0,0,0,90.4,9.6,31 +3.59375,3.59,a-pcom-i3,2018-19,Worcester - Midland Street,3480185,0,3.9,3.7,88.5,0,0,3.9,98.5,1.5,26.9 +2.5625,2.56,a-pcom-i3,2018-19,Worcester - Nelson Place,3480200,3.4,0,4.8,91.8,0,0,0,97.3,2.7,88.3 +5.90625,5,a-pcom-i3,2018-19,Worcester - Norrback Avenue,3480202,5.6,1.1,11.1,81.1,0,0,1.1,94.3,5.7,89.9 +8.78125,5,a-pcom-i3,2018-19,Worcester - North High,3480515,10.9,2.9,12.9,71.9,0,0,1.4,61.6,38.4,138.2 +5.375,5,a-pcom-i3,2018-19,Worcester - Quinsigamond,3480210,1.2,5.9,7.8,82.8,0,0,2.3,89.4,10.6,85.6 +7.5625,5,a-pcom-i3,2018-19,Worcester - Rice Square,3480215,4.6,4.9,12.1,75.8,0,0,2.7,93,7,41.8 +5,5,a-pcom-i3,2018-19,Worcester - Roosevelt,3480220,2.1,0,14,84,0,0,0,91.3,8.7,96.8 +5.53125,5,a-pcom-i3,2018-19,Worcester - South High Community,3480520,6.2,0.7,9.5,82.3,0,0,1.4,72,28,146 +5.6875,5,a-pcom-i3,2018-19,Worcester - Sullivan Middle,3480423,3.5,0.9,12.9,81.8,0,0,0.9,73.7,26.3,114.3 +1.625,1.63,a-pcom-i3,2018-19,Worcester - Tatnuck,3480230,2.6,0,2.6,94.8,0,0,0,93.5,6.5,38.4 +1.3125,1.31,a-pcom-i3,2018-19,Worcester - Thorndyke Road,3480235,0,1.4,2.9,95.8,0,0,0,95.4,4.6,37 +3.15625,3.16,a-pcom-i3,2018-19,Worcester - Union Hill School,3480240,2.3,0,7.9,89.9,0,0,0,81.6,18.4,43.7 +5.21875,5,a-pcom-i3,2018-19,Worcester - University Pk Campus School,3480285,5.3,0,7.6,83.3,0,0,3.8,70.6,29.4,26.3 +4.5625,4.56,a-pcom-i3,2018-19,Worcester - Vernon Hill School,3480280,7.6,1.7,5.3,85.4,0,0,0,89,11,59.9 +1,1,a-pcom-i3,2018-19,Worcester - Wawecus Road School,3480026,0,0,1.9,98.1,0,0,0,99.2,0.8,26.2 +3,3,a-pcom-i3,2018-19,Worcester - West Tatnuck,3480260,2.1,0,5.4,90.4,0,0,2.1,94.6,5.4,47.8 +4.1875,4.19,a-pcom-i3,2018-19,Worcester - Woodland Academy,3480030,0,1.9,9.6,86.6,0,0,1.9,90,10,53 +1,1,a-pcom-i3,2018-19,Worcester - Worcester Arts Magnet School,3480225,2.6,0,0,97.4,0,0,0,94.9,5.1,37.8 +8.375,5,a-pcom-i3,2018-19,Worcester - Worcester East Middle,3480420,11,4.9,11,73.2,0,0,0,62.5,37.5,82 +2.65625,2.66,a-pcom-i3,2018-19,Worcester - Worcester Technical High,3480605,2.3,1.1,4.5,91.5,0,0,0.6,49,51,176.8 +1,1,a-pcom-i3,2018-19,Worthington - R. H. Conwell,3490010,0,0,0,100,0,0,0,83.8,16.3,16 +1,1,a-pcom-i3,2018-19,Wrentham - Charles E Roderick,3500010,0,0.3,0,99.7,0,0,0,94.8,5.2,63 +1.34375,1.34,a-pcom-i3,2018-19,Wrentham - Delaney,3500003,0,3.7,0.6,95.7,0,0,0,95.2,4.8,96.7 +2.4375,2.44,a-pcom-i3,2017-18,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,3.9,0.9,1.8,92.2,0,0,1.2,79.5,20.5,165.1 +1,1,a-pcom-i3,2017-18,Abington - Abington Early Education Program,10001,0,0,0,100,0,0,0,100,0,13 +1.125,1.12,a-pcom-i3,2017-18,Abington - Abington High,10505,0,1.1,2.5,96.4,0,0,0,73.2,26.8,60.3 +2.25,2.25,a-pcom-i3,2017-18,Abington - Abington Middle School,10405,3,0.5,3.7,92.8,0,0,0,80.4,19.6,67.3 +1,1,a-pcom-i3,2017-18,Abington - Beaver Brook Elementary,10020,0,0,0,100,0,0,0,99.4,0.6,52.7 +1,1,a-pcom-i3,2017-18,Abington - Woodsdale Elementary School,10015,0,0,0,100,0,0,0,88.4,11.6,37.4 +11.5625,5,a-pcom-i3,2017-18,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,23,4.9,5.7,63,0,0,3.4,65.4,34.6,69.7 +1.6875,1.69,a-pcom-i3,2017-18,Acton-Boxborough - Acton-Boxborough Regional High,6000505,1.1,2.8,0.5,94.6,0.5,0,0.5,76,24,189.4 +1,1,a-pcom-i3,2017-18,Acton-Boxborough - Blanchard Memorial School,6000005,0,2.3,0,97.7,0,0,0,89.9,10.1,72 +1,1,a-pcom-i3,2017-18,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,1.5,0,98.5,0,0,0,94.4,5.6,53.8 +2.25,2.25,a-pcom-i3,2017-18,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,0,7.2,0,92.8,0,0,0,96.4,3.6,27.6 +1.96875,1.97,a-pcom-i3,2017-18,Acton-Boxborough - Luther Conant School,6000030,0,5.3,1,93.7,0,0,0,96.9,3.1,64.9 +1,1,a-pcom-i3,2017-18,Acton-Boxborough - McCarthy-Towne School,6000015,0,1.6,1,97.4,0,0,0,93.7,6.3,63.5 +1.78125,1.78,a-pcom-i3,2017-18,Acton-Boxborough - Merriam School,6000010,1.3,3.1,1.3,94.3,0,0,0,93.3,6.7,74.7 +1.25,1.25,a-pcom-i3,2017-18,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,4,0,96,0,0,0,94.6,5.4,56.2 +1.1875,1.19,a-pcom-i3,2017-18,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,2.9,1,96.2,0,0,0,78.9,21.1,105.2 +1,1,a-pcom-i3,2017-18,Acushnet - Acushnet Elementary School,30025,3.1,0,0,96.9,0,0,0,95.8,4.2,64 +1,1,a-pcom-i3,2017-18,Acushnet - Albert F Ford Middle School,30305,0,0,2.1,97.9,0,0,0,73.1,26.9,44.2 +1,1,a-pcom-i3,2017-18,Adams-Cheshire - Hoosac Valley Elementary School,6030020,0,0,0,100,0,0,0,95.6,4.4,84 +1,1,a-pcom-i3,2017-18,Adams-Cheshire - Hoosac Valley High School,6030505,0,0,1.8,98.2,0,0,0,73.2,26.8,55.1 +1,1,a-pcom-i3,2017-18,Adams-Cheshire - Hoosac Valley Middle School,6030315,0,0,0,100,0,0,0,78.1,21.9,56.6 +2.75,2.75,a-pcom-i3,2017-18,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,3.3,1.5,91.2,0,0,4,59.8,40.2,120.1 +1,1,a-pcom-i3,2017-18,Agawam - Agawam Early Childhood Center,50003,0,0,2.2,97.8,0,0,0,99.7,0.3,45.8 +1,1,a-pcom-i3,2017-18,Agawam - Agawam High,50505,0.1,0,0.6,99.3,0,0,0,69.8,30.2,158 +1,1,a-pcom-i3,2017-18,Agawam - Agawam Junior High,50405,2.3,0,0,97.7,0,0,0,76.5,23.5,85.7 +1,1,a-pcom-i3,2017-18,Agawam - Benjamin J Phelps,50020,0.2,0,0,99.8,0,0,0,92.3,7.7,59.8 +1,1,a-pcom-i3,2017-18,Agawam - Clifford M Granger,50010,0.3,0,1.9,97.8,0,0,0,96.3,3.7,51.9 +1.09375,1.09,a-pcom-i3,2017-18,Agawam - James Clark School,50030,1.9,0,1.6,96.5,0,0,0,96.5,3.5,61.4 +1.625,1.63,a-pcom-i3,2017-18,Agawam - Roberta G. Doering School,50303,4,0,1.3,94.8,0,0,0,83.9,16.1,79 +1,1,a-pcom-i3,2017-18,Agawam - Robinson Park,50025,0.2,0,0,99.8,0,0,0,94.3,5.7,63.5 +5.625,5,a-pcom-i3,2017-18,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,4,0,12,82,0,2,0,72,28,50 +1,1,a-pcom-i3,2017-18,Amesbury - Amesbury Elementary,70005,0,0,0,100,0,0,0,96.6,3.4,59.5 +1,1,a-pcom-i3,2017-18,Amesbury - Amesbury High,70505,0,0,0.9,99.1,0,0,0,69.8,30.2,45.2 +1,1,a-pcom-i3,2017-18,Amesbury - Amesbury Innovation High School,70515,0,0,0,100,0,0,0,39.3,60.7,8.6 +1,1,a-pcom-i3,2017-18,Amesbury - Amesbury Middle,70013,0,0,1.2,98.8,0,0,0,73.2,26.8,84.6 +1,1,a-pcom-i3,2017-18,Amesbury - Charles C Cashman Elementary,70010,0,0,0,100,0,0,0,96.1,3.9,65.8 +4.8125,4.81,a-pcom-i3,2017-18,Amherst - Crocker Farm Elementary,80009,1.2,1.2,9.5,84.6,0,0,3.6,90.4,9.6,84.4 +5.15625,5,a-pcom-i3,2017-18,Amherst - Fort River Elementary,80020,1.1,2.9,11.4,83.5,0,0,1.1,77,23,91.9 +11.46875,5,a-pcom-i3,2017-18,Amherst - Wildwood Elementary,80050,14.1,5.7,13.6,63.3,0,0,3.3,78,22,92.2 +5.90625,5,a-pcom-i3,2017-18,Amherst-Pelham - Amherst Regional High,6050505,7.8,1.2,7.4,81.1,0,0,2.6,63.5,36.5,154.7 +8.15625,5,a-pcom-i3,2017-18,Amherst-Pelham - Amherst Regional Middle School,6050405,9.8,0.2,12.5,73.9,0,0,3.7,67.1,32.9,81.9 +2.34375,2.34,a-pcom-i3,2017-18,Andover - Andover High,90505,0.5,1.5,4.6,92.5,0,0.5,0.5,70.2,29.8,204.3 +1,1,a-pcom-i3,2017-18,Andover - Andover West Middle,90310,0,0,2.8,97.2,0,0,0,84.3,15.7,72 +1.71875,1.72,a-pcom-i3,2017-18,Andover - Bancroft Elementary,90003,1.1,3.6,0.8,94.5,0,0,0,94.5,5.5,82.4 +1.5625,1.56,a-pcom-i3,2017-18,Andover - Doherty Middle,90305,0,3.7,1.2,95,0,0,0,86.5,13.5,80.8 +1,1,a-pcom-i3,2017-18,Andover - Henry C Sanborn Elementary,90010,0,1.9,0,98.1,0,0,0,88.8,11.2,53.2 +1.53125,1.53,a-pcom-i3,2017-18,Andover - High Plain Elementary,90004,0,3.7,1.2,95.1,0,0,0,96.3,3.7,81.5 +3.40625,3.41,a-pcom-i3,2017-18,Andover - Shawsheen School,90005,0,5.4,5.5,89.1,0,0,0,94.9,5.1,32.5 +1,1,a-pcom-i3,2017-18,Andover - South Elementary,90020,0,1.1,0,98.9,0,0,0,94.5,5.5,70.6 +1,1,a-pcom-i3,2017-18,Andover - West Elementary,90025,0,0,1.9,98.1,0,0,0,88.6,11.4,98.9 +1,1,a-pcom-i3,2017-18,Andover - Wood Hill Middle School,90350,0,0,1.4,98.6,0,0,0,80.4,19.6,69.9 +2.125,2.12,a-pcom-i3,2017-18,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,4.5,0,0,93.2,0,0,2.3,70.7,29.3,44.4 +2.15625,2.16,a-pcom-i3,2017-18,Arlington - Arlington High,100505,2.1,1.3,3.5,93.1,0,0,0,59.5,40.5,142 +2.78125,2.78,a-pcom-i3,2017-18,Arlington - Brackett,100010,0,1.8,3.5,91.1,0,1.8,1.8,92.9,7.1,56.4 +1.53125,1.53,a-pcom-i3,2017-18,Arlington - Cyrus E Dallin,100025,0,3.3,0,95.1,0,0,1.6,88,12,61.3 +1.75,1.75,a-pcom-i3,2017-18,Arlington - Hardy,100030,0,3.7,1.9,94.4,0,0,0,95.1,4.9,54 +1,1,a-pcom-i3,2017-18,Arlington - John A Bishop,100005,2.5,0,0,97.5,0,0,0,89.7,10.3,40 +1,1,a-pcom-i3,2017-18,Arlington - M Norcross Stratton,100055,0,0,1.6,98.4,0,0,0,89.8,10.2,61.8 +2.125,2.12,a-pcom-i3,2017-18,Arlington - Menotomy Preschool,100038,0,0,3.4,93.2,0,0,3.4,96.6,3.4,29.5 +2.4375,2.44,a-pcom-i3,2017-18,Arlington - Ottoson Middle,100410,1.4,3.6,1.4,92.2,0,0,1.4,77.8,22.2,143.5 +1.6875,1.69,a-pcom-i3,2017-18,Arlington - Peirce,100045,2.7,2.7,0,94.6,0,0,0,98.1,1.9,37.1 +1.40625,1.41,a-pcom-i3,2017-18,Arlington - Thompson,100050,1.8,1.8,0,95.5,0,0,0.9,92.9,7.1,56 +1.3125,1.31,a-pcom-i3,2017-18,Ashburnham-Westminster - Briggs Elementary,6100025,1.4,0,0,95.8,0,0,2.8,88.5,11.5,72.2 +1,1,a-pcom-i3,2017-18,Ashburnham-Westminster - Meetinghouse School,6100010,0,0,0,100,0,0,0,98.4,1.6,20.4 +1.53125,1.53,a-pcom-i3,2017-18,Ashburnham-Westminster - Oakmont Regional High School,6100505,2.3,0,2.6,95.1,0,0,0,57.7,42.3,85.6 +1,1,a-pcom-i3,2017-18,Ashburnham-Westminster - Overlook Middle School,6100305,1.7,0,0.3,98,0,0,0,78.2,21.8,59.7 +1.5,1.5,a-pcom-i3,2017-18,Ashburnham-Westminster - Westminster Elementary,6100005,0,0,4.8,95.2,0,0,0,92.4,7.6,42 +1,1,a-pcom-i3,2017-18,Ashland - Ashland High,140505,0,0,0,100,0,0,0,66.4,33.6,80.2 +1,1,a-pcom-i3,2017-18,Ashland - Ashland Middle,140405,0,2.8,0,97.2,0,0,0,70.6,29.4,70.2 +1,1,a-pcom-i3,2017-18,Ashland - David Mindess,140015,0,0,0,100,0,0,0,89.9,10.1,73.3 +1,1,a-pcom-i3,2017-18,Ashland - Henry E Warren Elementary,140010,0,1.2,0.6,98.2,0,0,0,98.8,1.2,84.4 +2.96875,2.97,a-pcom-i3,2017-18,Ashland - William Pittaway Elementary,140005,0,6.4,3.2,90.5,0,0,0,100,0,31.4 +1.84375,1.84,a-pcom-i3,2017-18,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0.7,0.7,4.6,94.1,0,0,0,49.8,50.2,151.5 +1,1,a-pcom-i3,2017-18,Athol-Royalston - Athol Community Elementary School,6150020,0.6,0,0,99.4,0,0,0,93.4,6.6,72.5 +1,1,a-pcom-i3,2017-18,Athol-Royalston - Athol High,6150505,0,0,2,98,0,0,0,67.6,32.4,49.3 +1,1,a-pcom-i3,2017-18,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,100,0,0,0,68.5,31.5,47.6 +1,1,a-pcom-i3,2017-18,Athol-Royalston - Royalston Community School,6150050,3,0,0,97,0,0,0,93.6,6.4,19.8 +1,1,a-pcom-i3,2017-18,Atlantis Charter (District) - Atlantis Charter School,4910550,0.9,0,0.9,96.9,0,0,1.2,83.8,16.2,163.5 +1,1,a-pcom-i3,2017-18,Attleboro - A. Irvin Studley Elementary School,160001,0,0,2.1,97.9,0,0,0,97.7,2.3,48.4 +6,5,a-pcom-i3,2017-18,Attleboro - Attleboro Community Academy,160515,0,0,19.2,80.8,0,0,0,88.5,11.5,5.8 +1.75,1.75,a-pcom-i3,2017-18,Attleboro - Attleboro High,160505,0.6,0,4.4,94.4,0,0,0.6,68.2,31.8,179 +1,1,a-pcom-i3,2017-18,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,99.1,0,0,0.9,83.1,16.9,58 +1.125,1.12,a-pcom-i3,2017-18,Attleboro - Early Learning Center,160008,0,0,0,96.4,0,0,3.6,99.3,0.7,27.6 +1,1,a-pcom-i3,2017-18,Attleboro - Hill-Roberts Elementary School,160045,0.9,0,0,99.1,0,0,0,96.2,3.8,42.1 +2.3125,2.31,a-pcom-i3,2017-18,Attleboro - Hyman Fine Elementary School,160040,0,0,7.4,92.6,0,0,0,93.8,6.2,40.3 +1.375,1.38,a-pcom-i3,2017-18,Attleboro - Peter Thacher Elementary School,160050,0,1.5,0,95.6,0,0,2.9,95.6,4.4,68.5 +1,1,a-pcom-i3,2017-18,Attleboro - Robert J. Coelho Middle School,160305,2.8,0,0,97.2,0,0,0,75.4,24.6,56.2 +1.46875,1.47,a-pcom-i3,2017-18,Attleboro - Thomas Willett Elementary School,160035,0,2.4,2.4,95.3,0,0,0,95,5,42.3 +2.84375,2.84,a-pcom-i3,2017-18,Attleboro - Wamsutta Middle School,160320,2,0,4.1,90.9,2,0,1,70.1,29.9,49.1 +1.375,1.38,a-pcom-i3,2017-18,Auburn - Auburn Middle,170305,0,1.4,1.5,95.6,0,0,1.4,77.9,22.1,69.2 +1.09375,1.09,a-pcom-i3,2017-18,Auburn - Auburn Senior High,170505,2,0.5,1,96.5,0,0,0,69.6,30.4,102.3 +1,1,a-pcom-i3,2017-18,Auburn - Bryn Mawr,170010,2.3,0,0,97.7,0,0,0,99.8,0.2,44.2 +1.5,1.5,a-pcom-i3,2017-18,Auburn - Pakachoag School,170025,2.4,2.4,0,95.2,0,0,0,100,0,41.4 +1,1,a-pcom-i3,2017-18,Auburn - Swanson Road Intermediate School,170030,0,0,1.4,97.3,0,0,1.4,93.2,6.8,72.9 +5.09375,5,a-pcom-i3,2017-18,Avon - Avon Middle High School,180510,6.1,4.1,4.1,83.7,2,0,0,71.1,28.9,49.2 +1,1,a-pcom-i3,2017-18,Avon - Ralph D Butler,180010,2.1,0,0,97.9,0,0,0,95.9,4.1,48.2 +1.15625,1.16,a-pcom-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,1.8,0,1.8,96.3,0,0,0,59.3,40.7,54.8 +3.5625,3.56,a-pcom-i3,2017-18,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,1.9,0,7.6,88.6,0,0,1.9,75.2,24.8,52.5 +1.15625,1.16,a-pcom-i3,2017-18,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,3.7,0,96.3,0,0,0,94.8,5.2,54 +1,1,a-pcom-i3,2017-18,Ayer Shirley School District - Page Hilltop Elementary School,6160002,1.6,1.6,0,96.9,0,0,0,87.6,12.4,64.5 +1.875,1.88,a-pcom-i3,2017-18,Barnstable - Barnstable High,200505,1.8,1.3,2.5,94,0,0,0.4,66.6,33.4,229.1 +1,1,a-pcom-i3,2017-18,Barnstable - Barnstable Intermediate School,200315,1,1,1,97.1,0,0,0,82.3,17.7,101.9 +1,1,a-pcom-i3,2017-18,Barnstable - Barnstable United Elementary School,200050,0.9,0.9,0.7,97.5,0,0,0,91.9,8.1,110.7 +1,1,a-pcom-i3,2017-18,Barnstable - Centerville Elementary,200010,0,0,1.1,98.9,0,0,0,91.3,8.7,46.2 +1.03125,1.03,a-pcom-i3,2017-18,Barnstable - Enoch Cobb Early Learning Center,200001,0,0,3.3,96.7,0,0,0,100,0,30.3 +2.125,2.12,a-pcom-i3,2017-18,Barnstable - Hyannis West Elementary,200025,1.7,3.4,1.7,93.2,0,0,0,98.3,1.7,58.8 +1,1,a-pcom-i3,2017-18,Barnstable - West Barnstable Elementary,200005,0,0,0,100,0,0,0,91.1,8.9,33.8 +1,1,a-pcom-i3,2017-18,Barnstable - West Villages Elementary School,200045,0,0,0,99.1,0.9,0,0,96.8,3.2,63.3 +1,1,a-pcom-i3,2017-18,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,4270010,0,0,0,98.7,1.3,0,0,91,9,39.7 +8.75,5,a-pcom-i3,2017-18,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,17.5,1.8,7,72,1.7,0,0,54.5,45.5,57.2 +2,2,a-pcom-i3,2017-18,Bedford - Bedford High,230505,1.5,1.5,3.3,93.6,0,0,0,69.9,30.1,132 +1,1,a-pcom-i3,2017-18,Bedford - John Glenn Middle,230305,1.2,0,1.5,97.3,0,0,0,75.2,24.8,81.7 +3.03125,3.03,a-pcom-i3,2017-18,Bedford - Lt Elezer Davis,230010,4.1,1.2,3.2,90.3,0,0,1.2,91.2,8.8,84.8 +1.28125,1.28,a-pcom-i3,2017-18,Bedford - Lt Job Lane School,230012,0.6,1.2,1.1,95.9,0,0,1.2,88.4,11.6,82.2 +1,1,a-pcom-i3,2017-18,Belchertown - Belchertown High,240505,0,0,1.2,98.8,0,0,0,72.1,27.9,80.2 +1,1,a-pcom-i3,2017-18,Belchertown - Chestnut Hill Community School,240006,0,0,1.7,98.3,0,0,0,84,16,58.6 +1,1,a-pcom-i3,2017-18,Belchertown - Cold Spring,240005,0,0,2.7,97.3,0,0,0,96.2,3.8,37 +1,1,a-pcom-i3,2017-18,Belchertown - Jabish Middle School,240025,0,0,2.1,97.9,0,0,0,78.4,21.6,48.1 +1,1,a-pcom-i3,2017-18,Belchertown - Swift River Elementary,240018,0,0,0,100,0,0,0,92.2,7.8,56.4 +1,1,a-pcom-i3,2017-18,Bellingham - Bellingham Early Childhood Center,250003,0,0,0,100,0,0,0,100,0,21.5 +1,1,a-pcom-i3,2017-18,Bellingham - Bellingham High School,250505,1.1,2.1,0,96.8,0,0,0,67.6,32.4,94.9 +1,1,a-pcom-i3,2017-18,Bellingham - Bellingham Memorial School,250315,0,0,0,100,0,0,0,80.3,19.7,90.9 +1,1,a-pcom-i3,2017-18,Bellingham - Keough Memorial Academy,250510,0,0,0,100,0,0,0,53,47,14.8 +1,1,a-pcom-i3,2017-18,Bellingham - South Elementary,250020,0,0,1,99,0,0,0,100,0,47.7 +1,1,a-pcom-i3,2017-18,Bellingham - Stall Brook,250025,0,0,0,100,0,0,0,100,0,55.9 +2.09375,2.09,a-pcom-i3,2017-18,Belmont - Belmont High,260505,0.9,2.1,1.9,93.3,0,0,1.9,69.8,30.2,108.1 +3.46875,3.47,a-pcom-i3,2017-18,Belmont - Daniel Butler,260015,0,2.4,0,88.9,0,0,8.6,88.6,11.4,41.2 +1.25,1.25,a-pcom-i3,2017-18,Belmont - Mary Lee Burbank,260010,2.1,0,0,96,0,0,1.9,90.5,9.5,42 +1.40625,1.41,a-pcom-i3,2017-18,Belmont - Roger E Wellington,260035,1.2,3.4,0,95.5,0,0,0,90.9,9.1,77.8 +1,1,a-pcom-i3,2017-18,Belmont - Winn Brook,260005,0,0,0,99.6,0,0,0.4,97.7,2.3,53.2 +4.8125,4.81,a-pcom-i3,2017-18,Belmont - Winthrop L Chenery Middle,260305,4.9,5.7,0.8,84.6,0,0,4,76.4,23.6,122.7 +16.75,5,a-pcom-i3,2017-18,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,42.4,3.7,5.6,46.4,0,0,1.9,86.8,13.2,53.5 +1,1,a-pcom-i3,2017-18,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,0,0,100,0,0,0,89.4,10.6,66.2 +2.09375,2.09,a-pcom-i3,2017-18,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,2.3,2.3,2.1,93.3,0,0,0,86.2,13.8,48.1 +1,1,a-pcom-i3,2017-18,Berkley - Berkley Community School,270010,0,0,1.6,98.4,0,0,0,98.4,1.6,63.3 +1,1,a-pcom-i3,2017-18,Berkley - Berkley Middle School,270305,0,0,0,100,0,0,0,78.7,21.3,42.3 +1.75,1.75,a-pcom-i3,2017-18,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,1.9,1.9,1.9,94.4,0,0,0,69.5,30.5,53.7 +1,1,a-pcom-i3,2017-18,Berkshire Hills - Monument Mt Regional High,6180505,0,0,1.4,97.1,0,0,1.4,65.9,34.1,69.3 +2.21875,2.22,a-pcom-i3,2017-18,Berkshire Hills - Monument Valley Regional Middle School,6180310,1.8,1.8,1.8,92.9,0,0,1.7,68,32,55.8 +1,1,a-pcom-i3,2017-18,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,1.4,1.4,0,97.1,0,0,0.1,90.2,9.8,71.6 +1,1,a-pcom-i3,2017-18,Berlin - Berlin Memorial,280005,0,0,0,100,0,0,0,94,6,33.1 +1,1,a-pcom-i3,2017-18,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,98.6,0,0,1.4,74.3,25.7,70.5 +1,1,a-pcom-i3,2017-18,Beverly - Ayers/Ryal Side School,300055,0,0,0,100,0,0,0,96.7,3.3,60.4 +1,1,a-pcom-i3,2017-18,Beverly - Beverly High,300505,0.7,0,0.7,98.6,0,0,0,70.3,29.7,138.7 +1,1,a-pcom-i3,2017-18,Beverly - Briscoe Middle,300305,0,0.9,1.7,97.4,0,0,0,77.6,22.4,117 +1.25,1.25,a-pcom-i3,2017-18,Beverly - Centerville Elementary,300010,0,2,2,96,0,0,0,87.9,12.1,49.6 +1,1,a-pcom-i3,2017-18,Beverly - Cove Elementary,300015,0,0,0,100,0,0,0,95.9,4.1,63 +1,1,a-pcom-i3,2017-18,Beverly - Hannah Elementary,300033,0,0,0,100,0,0,0,91.4,8.6,46.6 +1,1,a-pcom-i3,2017-18,Beverly - McKeown School,300002,0,3,0,97,0,0,0,100,0,33.7 +1,1,a-pcom-i3,2017-18,Beverly - North Beverly Elementary,300040,0,0,0,100,0,0,0,92.6,7.4,54.4 +1,1,a-pcom-i3,2017-18,Billerica - Billerica Memorial High School,310505,0.6,1,0,98.4,0,0,0,76.1,23.9,171.6 +1,1,a-pcom-i3,2017-18,Billerica - Eugene C Vining,310030,0,0,0,100,0,0,0,97.6,2.4,38.1 +1,1,a-pcom-i3,2017-18,Billerica - Frederick J Dutile,310007,0,0,0,100,0,0,0,96,4,38.6 +1,1,a-pcom-i3,2017-18,Billerica - Hajjar Elementary,310026,0,1.6,0,98.4,0,0,0,92.8,7.2,61.1 +1,1,a-pcom-i3,2017-18,Billerica - John F Kennedy,310012,0,0,2.5,97.5,0,0,0,94.1,5.9,39.6 +1,1,a-pcom-i3,2017-18,Billerica - Locke Middle,310310,0,0,1.5,98.5,0,0,0,76.8,23.2,67.9 +1,1,a-pcom-i3,2017-18,Billerica - Marshall Middle School,310305,0,0,0,100,0,0,0,76.4,23.6,90.1 +1,1,a-pcom-i3,2017-18,Billerica - Parker,310015,1.2,0,0,97.5,0,0,1.2,96,4,81.1 +1,1,a-pcom-i3,2017-18,Billerica - Thomas Ditson,310005,0,0,0,100,0,0,0,95.2,4.8,72.5 +1,1,a-pcom-i3,2017-18,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0.6,1.3,98.1,0,0,0,57.7,42.3,159.2 +1,1,a-pcom-i3,2017-18,Blackstone-Millville - A F Maloney,6220015,0,0,0,100,0,0,0,99.6,0.4,34.4 +2.125,2.12,a-pcom-i3,2017-18,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,6.8,93.2,0,0,0,64.5,35.5,59.1 +1.28125,1.28,a-pcom-i3,2017-18,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,2,95.9,0,0,2,82,18,48.9 +1,1,a-pcom-i3,2017-18,Blackstone-Millville - John F Kennedy Elementary,6220008,0,0,0,100,0,0,0,96.6,3.4,35.2 +1,1,a-pcom-i3,2017-18,Blackstone-Millville - Millville Elementary,6220010,0,0,0,100,0,0,0,95.9,4.1,40.7 +1.53125,1.53,a-pcom-i3,2017-18,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,2.5,0.8,1.6,95.1,0,0,0,54.5,45.5,122 +13.15625,5,a-pcom-i3,2017-18,Boston - Another Course To College,350541,19,11.7,7.7,57.9,0,0,3.7,69.1,30.9,26.1 +20.34375,5,a-pcom-i3,2017-18,Boston - Baldwin Early Learning Center,350003,23.2,11.7,25.6,34.9,0,0,4.7,95.3,4.7,43 +8.625,5,a-pcom-i3,2017-18,Boston - Beethoven,350021,13.8,2.7,11.1,72.4,0,0,0,88.9,11.1,36.4 +15.25,5,a-pcom-i3,2017-18,Boston - Blackstone,350390,22.3,3.8,21.4,51.2,0,0,1.3,78.2,21.8,79.4 +21.96875,5,a-pcom-i3,2017-18,Boston - Boston Adult Academy,350548,49.4,10.5,7,29.7,0,3.5,0,52.9,47.1,28.5 +15.625,5,a-pcom-i3,2017-18,Boston - Boston Arts Academy,350546,26.6,5.3,16.2,50,0,0,1.8,60.7,39.3,56 +23.34375,5,a-pcom-i3,2017-18,Boston - Boston Collaborative High School,350755,41.4,8.7,16.7,25.3,0,0,8,58,42,12 +16.46875,5,a-pcom-i3,2017-18,Boston - Boston Community Leadership Academy,350558,29.8,7,14.1,47.3,0,0,1.7,70.1,29.9,57 +15.96875,5,a-pcom-i3,2017-18,Boston - Boston International High School,350507,23.8,7.3,20,48.9,0,0,0,60.2,39.8,55 +10.0625,5,a-pcom-i3,2017-18,Boston - Boston Latin,350560,17,6.1,7.8,67.8,0,0.7,0.7,58,42,147.7 +13.125,5,a-pcom-i3,2017-18,Boston - Boston Latin Academy,350545,15.9,13.9,10.3,58,0,0,1.9,58.7,41.3,106.7 +17.09375,5,a-pcom-i3,2017-18,Boston - Boston Teachers Union School,350012,23.9,9.2,18.4,45.3,0,0,3.1,84.8,15.2,33.2 +13.75,5,a-pcom-i3,2017-18,Boston - Brighton High,350505,28.4,2.3,10,56,0,0,3.4,67.6,32.4,89.7 +14.71875,5,a-pcom-i3,2017-18,Boston - Carter Developmental Center,350036,41.2,0,0,52.9,0,0,5.9,88.2,11.8,17 +24.28125,5,a-pcom-i3,2017-18,Boston - Charles H Taylor,350054,67.2,3.8,5.1,22.3,0,0,1.7,91,9,58.5 +14.875,5,a-pcom-i3,2017-18,Boston - Charles Sumner,350052,25.4,0,22.3,52.4,0,0,0,92,8,63.4 +13.90625,5,a-pcom-i3,2017-18,Boston - Charlestown High,350515,23.3,10.2,9.2,55.5,0.8,0,0.8,66.6,33.4,117.9 +13.46875,5,a-pcom-i3,2017-18,Boston - Clarence R Edwards Middle,350430,19.4,10.8,10.8,56.9,2.2,0,0,61.3,38.7,46.4 +22.03125,5,a-pcom-i3,2017-18,Boston - Community Academy,350518,41.1,5.9,11.7,29.5,5.9,0,5.9,53,47,17 +19.40625,5,a-pcom-i3,2017-18,Boston - Community Academy of Science and Health,350581,46.1,6,7.9,37.9,0,0,2,62.1,37.9,50.1 +15.625,5,a-pcom-i3,2017-18,Boston - Curley K-8 School,350020,24.1,1.6,21.9,50,1.6,0,0.7,92,8,124 +9.1875,5,a-pcom-i3,2017-18,Boston - Curtis Guild,350062,9.9,0,14.5,70.6,2.5,0,2.5,83.8,16.2,40.3 +8.6875,5,a-pcom-i3,2017-18,Boston - Dante Alighieri Montessori School,350066,3.5,0,17.1,72.2,0,0,7.2,86.7,13.3,13.8 +23.28125,5,a-pcom-i3,2017-18,Boston - David A Ellis,350072,42.8,6.8,20.4,25.5,4.5,0,0,79.1,20.9,44 +19.125,5,a-pcom-i3,2017-18,Boston - Dearborn,350074,42.9,2,10.2,38.8,0,0,6.1,71.4,28.6,49 +8.4375,5,a-pcom-i3,2017-18,Boston - Dennis C Haley,350077,16.2,7.2,1.8,73,0,0,1.8,85.4,14.6,56.3 +8.90625,5,a-pcom-i3,2017-18,Boston - Donald Mckay,350080,7.9,1.6,17.2,71.5,0,0,1.7,74.4,25.6,63.6 +22.8125,5,a-pcom-i3,2017-18,Boston - Dorchester Academy,350651,36.4,0,36.6,27,0,0,0,63.3,36.7,11 +18.9375,5,a-pcom-i3,2017-18,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,50.1,2.6,7.9,39.4,0,0,0,84.2,15.8,38.1 +8.78125,5,a-pcom-i3,2017-18,Boston - Dr. William Henderson Lower,350266,17.8,0,9,71.9,0,0,1.3,82.9,17.1,39.3 +9.9375,5,a-pcom-i3,2017-18,Boston - Dr. William Henderson Upper,350426,20,4.7,5.3,68.2,0,1.2,0.6,76.1,23.9,85 +16.34375,5,a-pcom-i3,2017-18,Boston - ELC - West Zone,350006,27.5,5.5,11,47.7,5.5,0,2.8,85.3,14.7,36.3 +16.21875,5,a-pcom-i3,2017-18,Boston - East Boston Early Childhood Center,350009,9.4,4.7,35.5,48.1,0,2.3,0,94.1,5.9,42.7 +10.53125,5,a-pcom-i3,2017-18,Boston - East Boston High,350530,11,3.1,18,66.3,0,0,1.6,62.8,37.2,126.3 +13.9375,5,a-pcom-i3,2017-18,Boston - Edison K-8,350375,24.2,5.6,10.2,55.4,1.1,0,3.4,79.4,20.6,87.3 +9.75,5,a-pcom-i3,2017-18,Boston - Edward Everett,350088,17.3,6.9,6.9,68.8,0,0,0,89.7,10.3,28.9 +10.59375,5,a-pcom-i3,2017-18,Boston - Eliot Elementary,350096,19.3,3.2,11.3,66.1,0,0,0,90.4,9.6,61.5 +11.40625,5,a-pcom-i3,2017-18,Boston - Ellis Mendell,350100,16.2,0,20.3,63.5,0,0,0,94.6,5.4,24.6 +17.15625,5,a-pcom-i3,2017-18,Boston - Excel High School,350522,31.6,11.6,8.3,45.1,1.7,0,1.7,58.3,41.7,60 +17.4375,5,a-pcom-i3,2017-18,Boston - Fenway High School,350540,29.9,7.8,15.5,44.2,0,0,2.6,58.5,41.5,38.5 +12.0625,5,a-pcom-i3,2017-18,Boston - Franklin D Roosevelt,350116,26.4,4,8.1,61.4,0,0,0,93.9,6.1,49.2 +13.78125,5,a-pcom-i3,2017-18,Boston - Gardner Pilot Academy,350326,22.6,2.1,19.4,55.9,0,0,0,89.8,10.2,48.6 +9.65625,5,a-pcom-i3,2017-18,Boston - George H Conley,350122,21.4,3.2,6.3,69.1,0,0,0,89.9,10.1,32 +25.875,5,a-pcom-i3,2017-18,Boston - Greater Egleston Community High School,350543,49.6,5.4,27.8,17.2,0,0,0,71.9,28.1,18.1 +9.0625,5,a-pcom-i3,2017-18,Boston - Harvard-Kent,350200,9.4,13.4,6.2,71,0,0,0,80.3,19.7,64 +25.53125,5,a-pcom-i3,2017-18,Boston - Haynes Early Education Center,350010,74.5,0,7.2,18.3,0,0,0,81.6,18.4,41.7 +16.09375,5,a-pcom-i3,2017-18,Boston - Henry Grew,350135,42.2,0,9.4,48.5,0,0,0,77,23,21.4 +18.03125,5,a-pcom-i3,2017-18,Boston - Higginson,350015,36,7.3,14.5,42.3,0,0,0,89.2,10.8,27.8 +24.03125,5,a-pcom-i3,2017-18,Boston - Higginson/Lewis K-8,350377,62.2,6.2,8.4,23.1,0,0,0,81.1,18.9,47.6 +9.84375,5,a-pcom-i3,2017-18,Boston - Horace Mann School for the Deaf,350750,13.7,5.5,12.3,68.5,0,0,0,79.3,20.7,73 +8.5,5,a-pcom-i3,2017-18,Boston - Hugh Roe O'Donnell,350141,5.4,3.6,18.2,72.8,0,0,0,83.8,16.2,27.5 +14.375,5,a-pcom-i3,2017-18,Boston - Jackson Mann,350013,27.5,5.4,11.1,54,0,0,2.1,83.8,16.2,98.2 +13.375,5,a-pcom-i3,2017-18,Boston - James Condon Elementary,350146,26.3,5.1,10.3,57.2,0,0,1.1,80.6,19.4,99 +18.5625,5,a-pcom-i3,2017-18,Boston - James J Chittick,350154,40.4,6.4,10.5,40.6,2.1,0,0,85.3,14.7,47.1 +10.03125,5,a-pcom-i3,2017-18,Boston - James Otis,350156,9.8,2.5,19.8,67.9,0,0,0,81.5,18.5,40.5 +20.625,5,a-pcom-i3,2017-18,Boston - James P Timilty Middle,350485,45.8,0.3,17.1,34,0,0,2.8,74.1,25.9,34.8 +17.21875,5,a-pcom-i3,2017-18,Boston - James W Hennigan,350153,25.2,3.3,25.2,44.9,0,0,1.4,81.3,18.7,71.5 +20.53125,5,a-pcom-i3,2017-18,Boston - Jeremiah E Burke High,350525,55.8,0,7.9,34.3,0,0,2,52.2,47.8,49.6 +17.625,5,a-pcom-i3,2017-18,Boston - John D Philbrick,350172,56.4,0,0,43.6,0,0,0,78.3,21.7,12.7 +14.53125,5,a-pcom-i3,2017-18,Boston - John F Kennedy,350166,19.4,2.6,24.5,53.5,0,0,0,80.9,19.1,36.7 +15.09375,5,a-pcom-i3,2017-18,Boston - John W McCormack,350179,34.8,1.9,11.6,51.7,0,0,0,69.1,30.9,51.8 +12.53125,5,a-pcom-i3,2017-18,Boston - John Winthrop,350180,26.7,0,10.1,59.9,0,0,3.3,81.1,18.9,29.9 +21.96875,5,a-pcom-i3,2017-18,Boston - Joseph J Hurley,350182,13.7,0,53.9,29.7,2.7,0,0,86.5,13.5,37 +15.8125,5,a-pcom-i3,2017-18,Boston - Joseph Lee,350183,41.7,1.7,6.3,49.4,0,0,0.9,78.3,21.7,115.1 +11.3125,5,a-pcom-i3,2017-18,Boston - Joseph P Manning,350184,28.3,0,7.9,63.8,0,0,0,68.2,31.8,25.4 +12.90625,5,a-pcom-i3,2017-18,Boston - Joseph P Tynan,350181,31.4,0,7.9,58.7,0,0,2,86.1,13.9,51.1 +19.96875,5,a-pcom-i3,2017-18,Boston - Josiah Quincy,350286,14.9,43.8,5.1,36.1,0,0,0,85.1,14.9,94.1 +5.8125,5,a-pcom-i3,2017-18,Boston - Joyce Kilmer,350190,9.4,0,5.4,81.4,1.8,0,1.9,89,11,55.1 +19.03125,5,a-pcom-i3,2017-18,Boston - King K-8,350376,48.6,3.5,7,39.1,0,0,1.7,81.8,18.2,57.6 +17.03125,5,a-pcom-i3,2017-18,Boston - Lee Academy,350001,32.6,8.2,13.7,45.5,0,0,0,82.3,17.7,36.4 +18.90625,5,a-pcom-i3,2017-18,Boston - Lilla G. Frederick Middle School,350383,30.9,4.2,23.9,39.5,0,0,1.5,67.6,32.4,71 +8.625,5,a-pcom-i3,2017-18,Boston - Lyndon,350262,18.4,0,9.2,72.4,0,0,0,82.5,17.5,54.6 +11.5,5,a-pcom-i3,2017-18,Boston - Lyon K-8,350004,18.4,7.8,7.9,63.2,0,0,2.6,79,21,38.1 +12.5,5,a-pcom-i3,2017-18,Boston - Lyon Upper 9-12,350655,23.7,10.9,5.4,60,0,0,0,40.8,59.2,36.8 +18.15625,5,a-pcom-i3,2017-18,Boston - Madison Park High,350537,37.9,2,14.2,41.9,0,0,4.1,50.7,49.3,148.2 +4.5,4.5,a-pcom-i3,2017-18,Boston - Manassah E Bradley,350215,3.2,4,7.2,85.6,0,0,0,85.1,14.9,30.8 +19.15625,5,a-pcom-i3,2017-18,Boston - Margarita Muniz Academy,350549,0,3.2,58.1,38.7,0,0,0,61.4,38.6,31.1 +13.9375,5,a-pcom-i3,2017-18,Boston - Mario Umana Academy,350656,13.8,2,25.8,55.4,2,0,1,71.3,28.7,101.3 +20.4375,5,a-pcom-i3,2017-18,Boston - Mather,350227,43.5,15.2,5,34.6,0,0,1.7,83.7,16.3,59.8 +21.0625,5,a-pcom-i3,2017-18,Boston - Mattapan Early Elementary School,350016,58.3,1.8,5.4,32.6,0,0,1.8,87.3,12.7,54.9 +14.375,5,a-pcom-i3,2017-18,Boston - Maurice J Tobin,350229,17.7,2.5,25.9,54,0,0,0,80.6,19.4,42.3 +15.6875,5,a-pcom-i3,2017-18,Boston - Michael J Perkins,350231,40.2,0,5,49.8,0,0,5,74.9,25.1,20.1 +20.8125,5,a-pcom-i3,2017-18,Boston - Mildred Avenue K-8,350378,48.2,3.5,14.9,33.4,0,0,0,75.2,24.8,59.9 +18.90625,5,a-pcom-i3,2017-18,Boston - Mission Hill School,350382,47.8,0,9.5,39.5,0,0,3.2,76.4,23.6,31.5 +12.28125,5,a-pcom-i3,2017-18,Boston - Mozart,350237,24.5,0,14.8,60.7,0,0,0,83.6,16.4,27 +22,5,a-pcom-i3,2017-18,Boston - Nathan Hale,350243,56.1,0,14.3,29.6,0,0,0,77.4,22.6,14.3 +18.21875,5,a-pcom-i3,2017-18,Boston - New Mission High School,350542,31.5,12.3,14.6,41.7,0,0,0,55.9,44.1,40.8 +17.65625,5,a-pcom-i3,2017-18,Boston - O W Holmes,350138,46.4,4,6.1,43.5,0,0,0,77.8,22.2,49.5 +18.53125,5,a-pcom-i3,2017-18,Boston - O'Bryant School Math/Science,350575,37.2,4.5,16.8,40.7,0,0,0.9,65.7,34.3,113 +7.5625,5,a-pcom-i3,2017-18,Boston - Oliver Hazard Perry,350255,13.9,0,6.9,75.8,0,0,3.4,86.3,13.7,29.1 +15.34375,5,a-pcom-i3,2017-18,Boston - Orchard Gardens,350257,27,1,18,50.9,0,0,3.1,76.2,23.8,99.7 +12.90625,5,a-pcom-i3,2017-18,Boston - Patrick J Kennedy,350264,8.2,2.8,30.3,58.7,0,0,0,89.1,10.9,36.3 +17.40625,5,a-pcom-i3,2017-18,Boston - Paul A Dever,350268,38.2,3.8,7.7,44.3,0,0,6,69.6,30.4,52.4 +17.5,5,a-pcom-i3,2017-18,Boston - Pauline Agassiz Shaw Elementary School,350014,48,0,8,44,0,0,0,84,16,24.9 +6.4375,5,a-pcom-i3,2017-18,Boston - Phineas Bates,350278,10.5,0,10.1,79.4,0,0,0,84.7,15.3,32.7 +18,5,a-pcom-i3,2017-18,Boston - Quincy Upper School,350565,20.3,27,6.8,42.4,0,0,3.4,59.3,40.7,59.1 +23.03125,5,a-pcom-i3,2017-18,Boston - Rafael Hernandez,350691,2.4,2.3,69.1,26.3,0,0,0,86.2,13.8,43.5 +10.375,5,a-pcom-i3,2017-18,Boston - Richard J Murphy,350240,18.3,7.2,6.6,66.8,0,0,1.1,79.5,20.5,93.1 +15.59375,5,a-pcom-i3,2017-18,Boston - Roger Clap,350298,30,0,10,50.1,0,0,10,80,20,20.1 +14.625,5,a-pcom-i3,2017-18,Boston - Samuel Adams,350302,18.2,2.6,26,53.2,0,0,0,86.9,13.1,38.4 +23.25,5,a-pcom-i3,2017-18,Boston - Samuel W Mason,350304,60.1,2.9,8.6,25.6,2.9,0,0,82.9,17.1,35.1 +23.125,5,a-pcom-i3,2017-18,Boston - Sarah Greenwood,350308,20.5,1.8,47.9,26,1.8,0,1.8,75.8,24.2,54.2 +12.46875,5,a-pcom-i3,2017-18,Boston - Snowden International School at Copley,350690,25.1,4.3,10.5,60.1,0,0,0,58.8,41.2,47.8 +13.375,5,a-pcom-i3,2017-18,Boston - TechBoston Academy,350657,36.3,0.9,3.7,57.2,0,0,1.8,60.8,39.2,108.1 +16.0625,5,a-pcom-i3,2017-18,Boston - The English High,350535,21.4,5.8,22.8,48.6,0,0,1.5,59.9,40.1,70.2 +12.71875,5,a-pcom-i3,2017-18,Boston - Thomas J Kenny,350328,30,8,2.7,59.3,0,0,0,86.4,13.6,37 +14.21875,5,a-pcom-i3,2017-18,Boston - UP Academy Holland,350167,31.8,4.5,8,54.5,0,0,1.1,86.4,13.6,88 +17.375,5,a-pcom-i3,2017-18,Boston - Urban Science Academy,350579,35.5,4,14,44.4,0,0,2,60.1,39.9,49.8 +5.125,5,a-pcom-i3,2017-18,Boston - Warren-Prescott,350346,6.6,0,9.8,83.6,0,0,0,88.5,11.5,60.1 +15.96875,5,a-pcom-i3,2017-18,Boston - Washington Irving Middle,350445,35.5,4.4,11.1,48.9,0,0,0,77.8,22.2,45 +14.5625,5,a-pcom-i3,2017-18,Boston - West Roxbury Academy,350658,35.4,3.7,7.5,53.4,0,0,0,62.9,37.1,53.8 +14.0625,5,a-pcom-i3,2017-18,Boston - William E Russell,350366,17.5,5,20,55,0,0,2.5,92.5,7.5,40 +18.46875,5,a-pcom-i3,2017-18,Boston - William Ellery Channing,350360,36.2,13.7,0,40.9,4.6,0,4.5,81.8,18.2,22 +9.25,5,a-pcom-i3,2017-18,Boston - William H Ohrenberger,350258,19.9,1.6,8.2,70.4,0,0,0,70.7,29.3,64.5 +15.65625,5,a-pcom-i3,2017-18,Boston - William McKinley,350363,35.7,1.3,10.9,49.9,0,0.4,1.7,62,38,229.1 +17.28125,5,a-pcom-i3,2017-18,Boston - William Monroe Trotter,350370,44.2,2.3,6.6,44.7,0,0,2.2,83.8,16.2,45.6 +15.75,5,a-pcom-i3,2017-18,Boston - Winship Elementary,350374,33.5,0,16.9,49.6,0,0,0,89.7,10.3,29.6 +19.875,5,a-pcom-i3,2017-18,Boston - Young Achievers,350380,43.9,3,15.2,36.4,0,0,1.5,81.9,18.1,66.2 +10.96875,5,a-pcom-i3,2017-18,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,13.2,3.3,10.9,64.9,0,0,7.7,70.4,29.6,90.9 +15.65625,5,a-pcom-i3,2017-18,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,31,7.1,9.5,49.9,2.4,0,0,69.1,30.9,42.1 +14.15625,5,a-pcom-i3,2017-18,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,27.7,3.3,14.3,54.7,0,0,0,64.6,35.4,56.1 +13.21875,5,a-pcom-i3,2017-18,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,25.7,0,13.1,57.7,0,0,3.5,54.6,45.4,57.2 +10.125,5,a-pcom-i3,2017-18,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,22.4,5.8,2.9,67.6,0,0,1.3,83.3,16.7,156.1 +1,1,a-pcom-i3,2017-18,Bourne - Bourne High School,360505,0,0,0,100,0,0,0,67.1,32.9,57 +1,1,a-pcom-i3,2017-18,Bourne - Bourne Middle School,360325,0,0,0,100,0,0,0,84,16,74.8 +1,1,a-pcom-i3,2017-18,Bourne - Bournedale Elementary School,360005,0,1.6,0,98.4,0,0,0,97.1,2.9,62.1 +1,1,a-pcom-i3,2017-18,Bourne - Peebles Elementary School,360010,0,0,0,100,0,0,0,92.5,7.5,39.8 +1,1,a-pcom-i3,2017-18,Boxford - Harry Lee Cole,380005,0,0,1.8,98.2,0,0,0,94.4,5.6,56.5 +1,1,a-pcom-i3,2017-18,Boxford - Spofford Pond,380013,0,0,0,100,0,0,0,93.8,6.2,65.4 +1,1,a-pcom-i3,2017-18,Boylston - Boylston Elementary,390005,0,0,0,97,0,0,3,92.5,7.5,33.3 +1,1,a-pcom-i3,2017-18,Braintree - Archie T Morrison,400033,0,0,1.8,98.2,0,0,0,94.4,5.6,56.6 +1,1,a-pcom-i3,2017-18,Braintree - Braintree High,400505,0.5,1.5,0.5,97,0,0,0.5,72.5,27.5,198 +1,1,a-pcom-i3,2017-18,Braintree - Donald Ross,400050,0,0,0,100,0,0,0,91.1,8.9,35.1 +1.125,1.12,a-pcom-i3,2017-18,Braintree - East Middle School,400305,1.2,1.2,1.2,96.4,0,0,0,80.8,19.2,84.2 +1,1,a-pcom-i3,2017-18,Braintree - Highlands,400015,0,2.3,0,97.7,0,0,0,91.7,8.3,44.4 +1,1,a-pcom-i3,2017-18,Braintree - Hollis,400005,0,0,0,100,0,0,0,94.2,5.8,55.5 +1,1,a-pcom-i3,2017-18,Braintree - Liberty,400025,0,0,0,100,0,0,0,94.8,5.2,40.1 +1,1,a-pcom-i3,2017-18,Braintree - Mary E Flaherty School,400020,0,1,0,97.4,0,0,1.6,94.8,5.2,61.5 +1,1,a-pcom-i3,2017-18,Braintree - Monatiquot Kindergarten Center,400009,0,0,0,100,0,0,0,94.6,5.4,33.7 +1,1,a-pcom-i3,2017-18,Braintree - South Middle School,400310,1.3,0,0,98.7,0,0,0,75.2,24.8,80 +1,1,a-pcom-i3,2017-18,Brewster - Eddy Elementary,410010,0,0,0,100,0,0,0,97.5,2.5,41.6 +1,1,a-pcom-i3,2017-18,Brewster - Stony Brook Elementary,410005,0,0,0,100,0,0,0,93.2,6.8,47.2 +9.65625,5,a-pcom-i3,2017-18,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,17.8,5.9,7.1,69.1,0,0,0,77.7,22.3,67.3 +1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,1.8,98.2,0,0,0,84.7,15.3,54.8 +1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,1.7,0.8,0,97.5,0,0,0,66.3,33.7,121.4 +1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,2.3,97.7,0,0,0,87.2,12.8,43.4 +1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Merrill Elementary School,6250020,0,0,0,100,0,0,0,94.1,5.9,27.2 +1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Mitchell Elementary School,6250002,0.9,0,0,99.1,0,0,0,94.6,5.4,111.9 +1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,100,0,0,0,84.5,15.5,64.6 +4.3125,4.31,a-pcom-i3,2017-18,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,13.8,86.2,0,0,0,82,18,7.2 +1,1,a-pcom-i3,2017-18,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,100,0,0,0,83.3,16.7,73.3 +1,1,a-pcom-i3,2017-18,Brimfield - Brimfield Elementary,430005,0,0,0,100,0,0,0,88.6,11.4,46.1 +1,1,a-pcom-i3,2017-18,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,100,0,0,0,61.2,38.8,49 +1,1,a-pcom-i3,2017-18,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,0.7,0.7,0,97.2,1.4,0,0,62,38,144.8 +2.96875,2.97,a-pcom-i3,2017-18,Brockton - Ashfield Middle School,440421,9.5,0,0,90.5,0,0,0,76.8,23.2,55 +1.21875,1.22,a-pcom-i3,2017-18,Brockton - Barrett Russell Early Childhood Center,440008,1.9,1.7,0.3,96.1,0,0,0,100,0,58.4 +6.625,5,a-pcom-i3,2017-18,Brockton - Brockton Champion High School,440515,15.3,0,5.9,78.8,0,0,0,63.1,36.9,34.1 +7,5,a-pcom-i3,2017-18,Brockton - Brockton High,440505,15.8,1.7,2.8,77.6,0,0.3,1.8,62.9,37.1,387.2 +2.46875,2.47,a-pcom-i3,2017-18,Brockton - Brookfield,440010,6.3,0,1.6,92.1,0,0,0,89.8,10.2,63.6 +3.84375,3.84,a-pcom-i3,2017-18,Brockton - Downey,440110,10.1,0,2.2,87.7,0,0,0,88.2,11.8,89.4 +5.5625,5,a-pcom-i3,2017-18,Brockton - Dr W Arnone Community School,440001,14.2,0,3.4,82.2,0,0,0.2,89,11,89.4 +8.09375,5,a-pcom-i3,2017-18,Brockton - East Middle School,440405,15,1.8,5.3,74.1,1.8,0,2.1,63.9,36.1,56.7 +3.71875,3.72,a-pcom-i3,2017-18,Brockton - Edgar B Davis,440023,5,0,2.8,88.1,0.1,0,3.9,77.3,22.7,77.5 +15.125,5,a-pcom-i3,2017-18,Brockton - Edison Academy,440520,35.4,3.4,8.3,51.6,0,0,1.3,67,33,14.9 +2.84375,2.84,a-pcom-i3,2017-18,Brockton - Frederick Douglass Academy,440080,4.1,0,0,90.9,0,0,5,54.7,45.3,16.1 +3.4375,3.44,a-pcom-i3,2017-18,Brockton - Gilmore Elementary School,440055,11,0,0,89,0,0,0,85.6,14.4,45.4 +3.78125,3.78,a-pcom-i3,2017-18,Brockton - Hancock,440045,3.1,0,5.4,87.9,1.6,0,2.1,91.8,8.2,48.6 +5.84375,5,a-pcom-i3,2017-18,Brockton - Huntington Therapeutic Day School,440400,16,0,2.7,81.3,0,0,0,68.8,31.2,37.4 +5.5625,5,a-pcom-i3,2017-18,Brockton - John F Kennedy,440017,11,2.3,3.7,82.2,0,0,0.9,89.8,10.2,54.7 +6.65625,5,a-pcom-i3,2017-18,Brockton - Joseph F. Plouffe Academy,440422,13.8,4.5,3,78.7,0,0,0,77,23,66.2 +5.8125,5,a-pcom-i3,2017-18,Brockton - Louis F Angelo Elementary,440065,9.1,0.3,7.2,81.4,0,0,2.1,95.4,4.6,96.8 +7.3125,5,a-pcom-i3,2017-18,Brockton - Manthala George Jr. School,440003,9,0,10.8,76.6,1.3,0,2.3,92.6,7.4,87.6 +7.03125,5,a-pcom-i3,2017-18,Brockton - Mary E. Baker School,440002,17.6,1.2,3.7,77.5,0,0,0,93.6,6.4,81 +5.25,5,a-pcom-i3,2017-18,Brockton - North Middle School,440410,14.8,0,0,83.2,0,0,2,68.9,31.1,59.5 +6,5,a-pcom-i3,2017-18,Brockton - Oscar F Raymond,440078,14.1,0,1.3,80.8,0,0,3.7,92.7,7.3,74.9 +3.125,3.13,a-pcom-i3,2017-18,Brockton - South Middle School,440415,7.3,0,0,90,0,0,2.7,77.1,22.9,55 +6.59375,5,a-pcom-i3,2017-18,Brockton - West Middle School,440420,17.6,1.6,1.6,78.9,0,0,0.3,75.1,24.9,62.6 +10.53125,5,a-pcom-i3,2017-18,Brooke Charter School (District) - Brooke Charter School,4280305,17.1,2.8,13.3,66.3,0,0,0.5,82.9,17.1,209.9 +1,1,a-pcom-i3,2017-18,Brookfield - Brookfield Elementary,450005,0,0,0,100,0,0,0,96.5,3.5,43.2 +4.03125,4.03,a-pcom-i3,2017-18,Brookline - Brookline Early Education Program at Beacon,460001,6.4,6.4,0,87.1,0,0,0,100,0,9.3 +4.28125,4.28,a-pcom-i3,2017-18,Brookline - Brookline Early Education Program at Putterham,460002,10.5,0,3.2,86.3,0,0,0,94.6,5.4,18.5 +4.90625,4.91,a-pcom-i3,2017-18,Brookline - Brookline High,460505,8.7,4.1,2.7,84.3,0.3,0,0,63.5,36.5,296.1 +4.4375,4.44,a-pcom-i3,2017-18,Brookline - Edith C Baker,460005,2.8,7.1,4.3,85.8,0,0,0,86.2,13.8,106.3 +3.4375,3.44,a-pcom-i3,2017-18,Brookline - Edward Devotion,460015,8.2,1.1,1.8,89,0,0,0,81,19,136.8 +5.375,5,a-pcom-i3,2017-18,Brookline - Heath,460025,7.4,4.2,5.6,82.8,0,0,0,84.5,15.5,71.7 +3.875,3.88,a-pcom-i3,2017-18,Brookline - John D Runkle,460045,2.8,5.5,3,87.6,0,1,0,85.3,14.7,100.1 +4.09375,4.09,a-pcom-i3,2017-18,Brookline - Lawrence,460030,6.1,5.9,0,86.9,0,0,1.1,81,19,93.5 +5.65625,5,a-pcom-i3,2017-18,Brookline - Michael Driscoll,460020,4.7,8.3,4.1,81.9,0,0,1,83.7,16.3,82.8 +6.25,5,a-pcom-i3,2017-18,Brookline - Pierce,460040,9.6,6.8,1.8,80,0,0,1.8,84.7,15.3,111.3 +2.84375,2.84,a-pcom-i3,2017-18,Brookline - The Lynch Center,460060,6.7,2.4,0,90.9,0,0,0,100,0,34.5 +4.125,4.13,a-pcom-i3,2017-18,Brookline - William H Lincoln,460035,5.2,3,4,86.8,0,0,1,80.4,19.6,93.3 +1.75,1.75,a-pcom-i3,2017-18,Burlington - Burlington High,480505,0,2,3.3,94.4,0,0,0.4,73.8,26.2,152.6 +1,1,a-pcom-i3,2017-18,Burlington - Fox Hill,480007,0,0,0,100,0,0,0,88.9,11.1,59.9 +1,1,a-pcom-i3,2017-18,Burlington - Francis Wyman Elementary,480035,0,1.1,0,98.9,0,0,0,89.1,10.9,90.5 +1.59375,1.59,a-pcom-i3,2017-18,Burlington - Marshall Simonds Middle,480303,1,3.1,0,94.9,0,0,1,81.2,18.8,97.7 +1.375,1.38,a-pcom-i3,2017-18,Burlington - Memorial,480015,0,4.4,0,95.6,0,0,0,94.6,5.4,68.3 +1,1,a-pcom-i3,2017-18,Burlington - Pine Glen Elementary,480020,0,0.8,0,97.5,0,0,1.7,90.6,9.4,60.3 +15.78125,5,a-pcom-i3,2017-18,Cambridge - Amigos School,490006,4.2,1.7,44.6,49.5,0,0,0,81.9,18.1,59.1 +7.15625,5,a-pcom-i3,2017-18,Cambridge - Cambridge Rindge and Latin,490506,12.2,4.1,5.6,77.1,0.4,0.4,0.4,64.1,35.9,285.2 +9.375,5,a-pcom-i3,2017-18,Cambridge - Cambridge Street Upper School,490305,20,6,4,70,0,0,0,81.5,18.5,50 +9.40625,5,a-pcom-i3,2017-18,Cambridge - Cambridgeport,490007,20.4,8,0,69.9,0,1.8,0,85.7,14.3,56.4 +10.25,5,a-pcom-i3,2017-18,Cambridge - Fletcher/Maynard Academy,490090,23.9,5.9,0,67.2,0,1.5,1.5,86.2,13.8,67.5 +6.40625,5,a-pcom-i3,2017-18,Cambridge - Graham and Parks,490080,11.5,6.9,2.1,79.5,0,0,0,89.2,10.8,65.1 +3.5625,3.56,a-pcom-i3,2017-18,Cambridge - Haggerty,490020,5.7,3.8,1.9,88.6,0,0,0,91,9,52.5 +5.90625,5,a-pcom-i3,2017-18,Cambridge - John M Tobin,490065,13,5,1,81.1,0,0,0,88.4,11.6,50.2 +5.40625,5,a-pcom-i3,2017-18,Cambridge - Kennedy-Longfellow,490040,6.9,1.7,8.7,82.7,0,0,0,96.5,3.5,57.8 +9.1875,5,a-pcom-i3,2017-18,Cambridge - King Open,490035,14.8,3.5,11.1,70.6,0,0,0,83.1,16.9,71.9 +5.71875,5,a-pcom-i3,2017-18,Cambridge - Maria L. Baldwin,490005,8.3,5,5,81.7,0,0,0,84.8,15.2,60.1 +11.15625,5,a-pcom-i3,2017-18,Cambridge - Martin Luther King Jr.,490030,9.5,20.1,4.1,64.3,2,0,0,89.7,10.3,48.8 +6,5,a-pcom-i3,2017-18,Cambridge - Morse,490045,12.8,1.6,4.8,80.8,0,0,0,84,16,62.5 +4.71875,4.72,a-pcom-i3,2017-18,Cambridge - Peabody,490050,8.9,3.6,0.9,84.9,1.8,0,0,90.1,9.9,56.2 +15.15625,5,a-pcom-i3,2017-18,Cambridge - Putnam Avenue Upper School,490310,33.6,10.7,4.2,51.5,0,0,0,67.4,32.6,47.6 +9.40625,5,a-pcom-i3,2017-18,Cambridge - Rindge Avenue Upper School,490315,13.9,4.6,11.6,69.9,0,0,0,66.5,33.5,43.2 +6.53125,5,a-pcom-i3,2017-18,Cambridge - Vassal Lane Upper School,490320,10.4,4.2,6.3,79.1,0,0,0,77,23,47.9 +2.375,2.37,a-pcom-i3,2017-18,Canton - Canton High,500505,0.9,2.8,2.8,92.4,0,0,0.9,67.2,32.8,105.7 +1,1,a-pcom-i3,2017-18,Canton - Dean S Luce,500020,1.5,0,1.5,96.9,0,0,0,95.6,4.4,64.8 +1.8125,1.81,a-pcom-i3,2017-18,Canton - John F Kennedy,500017,2.9,1.4,1.4,94.2,0,0,0,93,7,69 +3.5,3.5,a-pcom-i3,2017-18,Canton - Lt Peter M Hansen,500012,4.2,1.4,2.8,88.8,0,0,2.8,93.3,6.7,71.7 +5.21875,5,a-pcom-i3,2017-18,Canton - Rodman Early Childhood Center,500010,16.7,0,0,83.3,0,0,0,87.5,12.5,24 +3.46875,3.47,a-pcom-i3,2017-18,Canton - Wm H Galvin Middle,500305,3.3,2.2,3.3,88.9,0,0,2.2,76.3,23.7,89.7 +1,1,a-pcom-i3,2017-18,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,99.4,0,0,0.6,84.4,15.6,34 +1,1,a-pcom-i3,2017-18,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0.9,0,0,99.1,0,0,0,56.3,43.7,108.3 +1.34375,1.34,a-pcom-i3,2017-18,Carlisle - Carlisle School,510025,1,3.3,0,95.7,0,0,0,84.9,15.1,99.7 +1.1875,1.19,a-pcom-i3,2017-18,Carver - Carver Elementary School,520015,0.5,1.1,1.1,96.2,1.1,0,0,96.8,3.2,92.8 +2.3125,2.31,a-pcom-i3,2017-18,Carver - Carver Middle/High School,520405,4.6,0.9,0.9,92.6,0,0.9,0,69.5,30.5,108 +1,1,a-pcom-i3,2017-18,Central Berkshire - Becket Washington School,6350005,0,0,0,100,0,0,0,100,0,18.7 +1,1,a-pcom-i3,2017-18,Central Berkshire - Craneville,6350025,0,0,0,100,0,0,0,93.2,6.8,52.9 +1,1,a-pcom-i3,2017-18,Central Berkshire - Kittredge,6350035,0,0,0,100,0,0,0,99.2,0.8,25.6 +1,1,a-pcom-i3,2017-18,Central Berkshire - Nessacus Regional Middle School,6350305,0,2.1,0,97.9,0,0,0,72.1,27.9,47 +1,1,a-pcom-i3,2017-18,Central Berkshire - Wahconah Regional High,6350505,0,0,0,97.2,0,0,2.8,67.2,32.8,72.2 +1.0625,1.06,a-pcom-i3,2017-18,Chelmsford - Byam School,560030,0,3.4,0,96.6,0,0,0,91,9,88.6 +1,1,a-pcom-i3,2017-18,Chelmsford - Center Elementary School,560005,0,0,0,98.5,0,0,1.5,98.5,1.5,67.5 +1,1,a-pcom-i3,2017-18,Chelmsford - Charles D Harrington,560025,1.5,0,0,98.5,0,0,0,95.4,4.6,65 +1.03125,1.03,a-pcom-i3,2017-18,Chelmsford - Chelmsford High,560505,0,1.7,1.7,96.7,0,0,0,68.1,31.9,179.8 +1,1,a-pcom-i3,2017-18,Chelmsford - Col Moses Parker School,560305,0,0.9,0,99.1,0,0,0,81.5,18.5,108.2 +1.8125,1.81,a-pcom-i3,2017-18,Chelmsford - Community Education Center,560001,2.9,2.9,0,94.2,0,0,0,97.1,2.9,34.2 +1.09375,1.09,a-pcom-i3,2017-18,Chelmsford - McCarthy Middle School,560310,0,3.5,0,96.5,0,0,0,85.3,14.7,113.9 +1,1,a-pcom-i3,2017-18,Chelmsford - South Row,560015,0.8,0.6,1.6,96.9,0,0,0,100,0,61.6 +5.65625,5,a-pcom-i3,2017-18,Chelsea - Chelsea High,570505,0.3,1.9,14.1,81.9,0,1.3,0.6,70.7,29.3,158 +4.875,4.87,a-pcom-i3,2017-18,Chelsea - Clark Avenue School,570050,5.2,0,10.4,84.4,0,0,0,76.8,23.2,57.9 +4.1875,4.19,a-pcom-i3,2017-18,Chelsea - Edgar A Hooks Elementary,570030,1.7,0,11.7,86.6,0,0,0,84.7,15.3,59.7 +5.75,5,a-pcom-i3,2017-18,Chelsea - Eugene Wright Science and Technology Academy,570045,1.7,0,16.6,81.6,0,0,0,77.7,22.3,57.4 +7.125,5,a-pcom-i3,2017-18,Chelsea - Frank M Sokolowski Elementary,570040,1.6,1.6,19.5,77.2,0,0,0,88.3,11.7,61.3 +6,5,a-pcom-i3,2017-18,Chelsea - George F. Kelly Elementary,570035,0,0,19.2,80.8,0,0,0,89.3,10.7,57.3 +5.5625,5,a-pcom-i3,2017-18,Chelsea - Joseph A. Browne School,570055,3.5,3.5,10.7,82.2,0,0,0,83.8,16.2,56.6 +10.0625,5,a-pcom-i3,2017-18,Chelsea - Shurtleff Early Childhood,570003,0,0,32.2,67.8,0,0,0,92.7,7.3,132.2 +6.9375,5,a-pcom-i3,2017-18,Chelsea - William A Berkowitz Elementary,570025,0,1.6,18.9,77.8,0,1.6,0,84.9,15.1,60.8 +1,1,a-pcom-i3,2017-18,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,0,0,0,100,0,0,0,91.9,8.1,29.7 +1.125,1.12,a-pcom-i3,2017-18,Chicopee - Barry,610003,1.8,1.8,0,96.4,0,0,0,94.5,5.5,55 +2.9375,2.94,a-pcom-i3,2017-18,Chicopee - Belcher,610010,2.4,0,7.1,90.6,0,0,0,92,8,42.4 +1.3125,1.31,a-pcom-i3,2017-18,Chicopee - Bellamy Middle,610305,0.8,0,2.5,95.8,0,0.8,0,80.8,19.2,120 +2.6875,2.69,a-pcom-i3,2017-18,Chicopee - Bowe,610015,3.4,1.7,3.4,91.4,0,0,0,94.8,5.2,58.1 +1,1,a-pcom-i3,2017-18,Chicopee - Bowie,610020,2.1,0,0.7,97.2,0,0,0,89.5,10.5,47.6 +5.34375,5,a-pcom-i3,2017-18,Chicopee - Chicopee Academy,610021,13.1,1.3,2.7,82.9,0,0,0,62.6,37.4,37.4 +2,2,a-pcom-i3,2017-18,Chicopee - Chicopee Comprehensive High School,610510,0.6,1.2,4.7,93.6,0,0,0,57.5,42.5,171.8 +2.28125,2.28,a-pcom-i3,2017-18,Chicopee - Chicopee High,610505,1.5,0,5.1,92.7,0.7,0,0,73,27,137.1 +2.5,2.5,a-pcom-i3,2017-18,Chicopee - Dupont Middle,610310,0.9,0.5,5.6,92,0,0,0.9,81.1,18.9,105.4 +3.375,3.37,a-pcom-i3,2017-18,Chicopee - Fairview Elementary,610050,0,0,10.8,89.2,0,0,0,91.8,8.2,84.7 +2.125,2.12,a-pcom-i3,2017-18,Chicopee - Gen John J Stefanik,610090,1.7,0,5.1,93.2,0,0,0,93.2,6.8,60 +1,1,a-pcom-i3,2017-18,Chicopee - Lambert-Lavoie,610040,2.1,0,0,97.9,0,0,0,91.7,8.3,48 +2.1875,2.19,a-pcom-i3,2017-18,Chicopee - Litwin,610022,0,3.5,3.5,93,0,0,0,94.7,5.3,57 +1,1,a-pcom-i3,2017-18,Chicopee - Streiber Memorial School,610065,0,0,0.5,99.5,0,0,0,97,3,44.5 +1.875,1.88,a-pcom-i3,2017-18,Chicopee - Szetela Early Childhood Center,610001,0,0,6,94,0,0,0,94,6,50 +3.15625,3.16,a-pcom-i3,2017-18,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,4.5,0,2.6,89.9,0,0,3,63.4,36.6,67 +9.8125,5,a-pcom-i3,2017-18,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,21.2,2,6.1,68.6,0,0,2,70.9,29.1,49.1 +11.96875,5,a-pcom-i3,2017-18,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,25.5,6.4,6.4,61.7,0,0,0,62.3,37.7,47 +9.9375,5,a-pcom-i3,2017-18,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,19.1,3.2,9.5,68.2,0,0,0,74.6,25.4,31.4 +1,1,a-pcom-i3,2017-18,Clarksburg - Clarksburg Elementary,630010,0,0,0,100,0,0,0,89.4,10.6,31.3 +1.3125,1.31,a-pcom-i3,2017-18,Clinton - Clinton Elementary,640050,0.7,1,2.5,95.8,0,0,0,95.2,4.8,104.2 +1.1875,1.19,a-pcom-i3,2017-18,Clinton - Clinton Middle School,640305,2.5,0,0.1,96.2,1.1,0,0,85.4,14.6,90.2 +1.09375,1.09,a-pcom-i3,2017-18,Clinton - Clinton Senior High,640505,0,0,1.7,96.5,0,1.7,0,61.8,38.2,57.7 +16.21875,5,a-pcom-i3,2017-18,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,41.8,4.3,2.9,48.1,1.4,1.4,0,69.6,30.4,69 +1,1,a-pcom-i3,2017-18,Cohasset - Cohasset Middle/High School,650505,0,0,1,99,0,0,0,65.9,34.1,101.3 +1,1,a-pcom-i3,2017-18,Cohasset - Deer Hill,650005,0,0,0,100,0,0,0,93.5,6.5,46.4 +1,1,a-pcom-i3,2017-18,Cohasset - Joseph Osgood,650010,2,0,0,98,0,0,0,92.9,7.1,51 +6.875,5,a-pcom-i3,2017-18,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,3.1,7.9,11,78,0,0,0,81.9,18.1,63.5 +13.90625,5,a-pcom-i3,2017-18,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,16.3,3,20.8,55.5,0,0,4.4,68.1,31.9,67.5 +6.90625,5,a-pcom-i3,2017-18,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,2.9,2.6,16.5,77.9,0,0,0,90.2,9.8,51.1 +6.46875,5,a-pcom-i3,2017-18,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,1.5,0.2,18.9,79.3,0,0,0,81.9,18.1,64.6 +8.15625,5,a-pcom-i3,2017-18,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,3.1,2.8,20.3,73.9,0,0,0,85.6,14.4,49 +2.4375,2.44,a-pcom-i3,2017-18,Concord - Alcott,670005,2.5,2.9,2.5,92.2,0,0,0,92.1,7.9,80.9 +2.34375,2.34,a-pcom-i3,2017-18,Concord - Concord Middle,670305,2.1,3.3,1.1,92.5,0,1.1,0,76,24,94.8 +1.4375,1.44,a-pcom-i3,2017-18,Concord - Thoreau,670020,1.4,3.2,0,95.4,0,0,0,96.7,3.3,72 +1.28125,1.28,a-pcom-i3,2017-18,Concord - Willard,670030,0,1.6,2.5,95.9,0,0,0,95.8,4.2,80.7 +2.28125,2.28,a-pcom-i3,2017-18,Concord-Carlisle - Concord Carlisle High,6400505,1.7,1.6,4,92.7,0,0,0,62.1,37.9,174.8 +12.09375,5,a-pcom-i3,2017-18,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,23.1,2.7,11.6,61.3,0,0,1.4,71,29,73.6 +1,1,a-pcom-i3,2017-18,Conway - Conway Grammar,680005,0,0,0,100,0,0,0,89,11,36.3 +1,1,a-pcom-i3,2017-18,Danvers - Danvers High,710505,0,0,1.8,98.2,0,0,0,61.1,38.9,111.8 +1,1,a-pcom-i3,2017-18,Danvers - Great Oak,710015,0,0,0,100,0,0,0,97.5,2.5,40.4 +1,1,a-pcom-i3,2017-18,Danvers - Highlands,710010,0,1,0,99,0,0,0,87.5,12.5,47.9 +1.5,1.5,a-pcom-i3,2017-18,Danvers - Holten Richmond Middle School,710305,0,1.9,1.9,95.2,0,0,1,79.7,20.3,103.5 +1,1,a-pcom-i3,2017-18,Danvers - Ivan G Smith,710032,0,1.4,0,98.6,0,0,0,92.8,7.2,35 +1,1,a-pcom-i3,2017-18,Danvers - Riverside,710030,0,0,0,100,0,0,0,88.4,11.6,67.6 +1,1,a-pcom-i3,2017-18,Danvers - Willis E Thorpe,710045,0,0,2.3,97.7,0,0,0,92.4,7.6,44.1 +1,1,a-pcom-i3,2017-18,Dartmouth - Andrew B. Cushman School,720005,0,0,0,100,0,0,0,99,1,23.7 +1,1,a-pcom-i3,2017-18,Dartmouth - Dartmouth High,720505,0,0,0,99.1,0,0,0.9,64.8,35.2,107 +1,1,a-pcom-i3,2017-18,Dartmouth - Dartmouth Middle,720050,0.9,0,0,98.1,0,0,0.9,66.3,33.7,107.1 +1,1,a-pcom-i3,2017-18,Dartmouth - George H Potter,720030,0,0,0,100,0,0,0,94.3,5.7,51.7 +1,1,a-pcom-i3,2017-18,Dartmouth - James M. Quinn School,720040,0,0,0,100,0,0,0,96.3,3.7,93.8 +1,1,a-pcom-i3,2017-18,Dartmouth - Joseph Demello,720015,0,0,0,100,0,0,0,95.5,4.5,45.6 +1.65625,1.66,a-pcom-i3,2017-18,Dedham - Avery,730010,1.8,1.8,1.8,94.7,0,0,0,88.5,11.5,56.5 +2.46875,2.47,a-pcom-i3,2017-18,Dedham - Dedham High,730505,0.6,3.1,4.1,92.1,0,0,0,72.7,27.3,96.4 +1.28125,1.28,a-pcom-i3,2017-18,Dedham - Dedham Middle School,730305,2,0,1,95.9,0,0,1,78.5,21.5,97.8 +1,1,a-pcom-i3,2017-18,Dedham - Early Childhood Center,730005,0,0,0,98.1,0,0,1.9,96.1,3.9,51.8 +1.46875,1.47,a-pcom-i3,2017-18,Dedham - Greenlodge,730025,2.4,2.4,0,95.3,0,0,0,91.8,8.2,42.5 +1,1,a-pcom-i3,2017-18,Dedham - Oakdale,730030,2.8,0,0,97.2,0,0,0,97.2,2.8,35.6 +1,1,a-pcom-i3,2017-18,Dedham - Riverdale,730045,0,0,0,100,0,0,0,94.4,5.6,35.9 +1,1,a-pcom-i3,2017-18,Deerfield - Deerfield Elementary,740015,0,0,0,100,0,0,0,90.2,9.8,80.5 +1.46875,1.47,a-pcom-i3,2017-18,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,1.9,0,2,95.3,0,0,0.8,67.5,32.5,128.8 +1,1,a-pcom-i3,2017-18,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,0,0,2.4,97.6,0,0,0,95,5,75.4 +1,1,a-pcom-i3,2017-18,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,0,0,0,100,0,0,0,94.7,5.3,56.3 +1.3125,1.31,a-pcom-i3,2017-18,Dennis-Yarmouth - Mattacheese Middle School,6450305,1.8,0,1.1,95.8,0,0,1.3,80.2,19.8,75.7 +1.46875,1.47,a-pcom-i3,2017-18,Dennis-Yarmouth - N H Wixon Innovation School,6450050,1.2,0,2.4,95.3,0,0,1.2,93,7,84.8 +1,1,a-pcom-i3,2017-18,Dennis-Yarmouth - Station Avenue Elementary,6450025,0.9,0,1.7,97.4,0,0,0,88.3,11.7,58 +1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dighton Elementary,6500005,0.4,0,0,99.6,0,0,0,95.2,4.8,56 +1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dighton Middle School,6500305,0.4,0,0,97.1,0,0,2.5,73.8,26.2,45.2 +1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,0.9,0,1.5,97.5,0,0,0,69.2,30.8,130.6 +1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0.3,0,1.2,97.1,0,0,1.4,83.6,16.4,71.1 +1,1,a-pcom-i3,2017-18,Dighton-Rehoboth - Palmer River,6500010,0.3,0,0,99.7,0,0,0,95.8,4.2,63.8 +1,1,a-pcom-i3,2017-18,Douglas - Douglas Elementary School,770015,0,0,0,100,0,0,0,88.7,11.3,48.6 +1.03125,1.03,a-pcom-i3,2017-18,Douglas - Douglas High School,770505,0,1.6,1.6,96.7,0,0,0,66,34,60.7 +1,1,a-pcom-i3,2017-18,Douglas - Douglas Middle School,770305,0,0,0,100,0,0,0,89.8,10.2,39.2 +1,1,a-pcom-i3,2017-18,Douglas - Douglas Primary School,770005,0,0,0.6,99.4,0,0,0,97.4,2.6,38.5 +1.1875,1.19,a-pcom-i3,2017-18,Dover - Chickering,780005,1.5,0,2.4,96.2,0,0,0,91.4,8.6,84.6 +1.46875,1.47,a-pcom-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0.3,0.8,3.6,95.3,0,0,0,63.2,36.8,97.4 +2.4375,2.44,a-pcom-i3,2017-18,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,3.1,1.4,3.4,92.2,0,0,0,76.2,23.8,73.5 +1,1,a-pcom-i3,2017-18,Dracut - Brookside Elementary,790035,0,0,1.2,98.8,0,0,0,86.6,13.4,42.5 +1,1,a-pcom-i3,2017-18,Dracut - Dracut Senior High,790505,0,1.6,0,98.4,0,0,0,63.9,36.1,93.9 +1,1,a-pcom-i3,2017-18,Dracut - George H. Englesby Elementary School,790045,0,0,0,100,0,0,0,95.7,4.3,46 +1,1,a-pcom-i3,2017-18,Dracut - Greenmont Avenue,790030,0,0,0,100,0,0,0,94.9,5.1,31.6 +1,1,a-pcom-i3,2017-18,Dracut - Joseph A Campbell Elementary,790020,0,0.8,0,99.2,0,0,0,95.1,4.9,65.2 +1,1,a-pcom-i3,2017-18,Dracut - Justus C. Richardson Middle School,790410,1.2,0,1.7,97.1,0,0,0,86.2,13.8,86.1 +19.125,5,a-pcom-i3,2017-18,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,50.2,0.7,10.4,38.8,0,0,0,93.1,6.9,28.9 +1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Charlton Elementary,6580020,0,0,0,100,0,0,0,98,2,50.8 +1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,1.4,97.3,1.4,0,0,75.5,24.5,73.5 +1.65625,1.66,a-pcom-i3,2017-18,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,2.6,94.7,2.6,0,0,97.4,2.6,38 +1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,1.6,98.4,0,0,0,76.7,23.3,63.3 +1.15625,1.16,a-pcom-i3,2017-18,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,96.3,0,0,3.7,96.3,3.7,53.9 +1.65625,1.66,a-pcom-i3,2017-18,Dudley-Charlton Reg - Mason Road School,6580010,0,0,2.7,94.7,2.7,0,0,94.7,5.3,37.5 +1,1,a-pcom-i3,2017-18,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,1,99,0,0,0,54.6,45.4,97 +1,1,a-pcom-i3,2017-18,Duxbury - Alden School,820004,0,0,0,100,0,0,0,90.4,9.6,80.4 +1,1,a-pcom-i3,2017-18,Duxbury - Chandler Elementary,820006,0,1.1,1.1,97.8,0,0,0,96.8,3.2,91 +1,1,a-pcom-i3,2017-18,Duxbury - Duxbury High,820505,0.8,1.1,0,98.1,0,0,0,64.5,35.5,121.4 +1,1,a-pcom-i3,2017-18,Duxbury - Duxbury Middle,820305,0,0.9,0,99.1,0,0,0,83.4,16.6,75.6 +1,1,a-pcom-i3,2017-18,East Bridgewater - Central,830005,1.3,0,0,98.7,0,0,0,96,4,75.5 +1,1,a-pcom-i3,2017-18,East Bridgewater - East Bridgewater JR./SR. High School,830505,0,0,0,100,0,0,0,64.8,35.2,105 +1,1,a-pcom-i3,2017-18,East Bridgewater - Gordon W Mitchell,830010,0,0,0,100,0,0,0,82,18,83.4 +1.09375,1.09,a-pcom-i3,2017-18,East Longmeadow - Birchland Park,870305,1.2,1.2,1.2,96.5,0,0,0,77,23,84.9 +2.3125,2.31,a-pcom-i3,2017-18,East Longmeadow - East Longmeadow High,870505,1.1,2.1,3.2,92.6,0,0,1.1,64.4,35.6,94 +1,1,a-pcom-i3,2017-18,East Longmeadow - Mapleshade,870010,0,0,0,100,0,0,0,82,18,44.3 +1.84375,1.84,a-pcom-i3,2017-18,East Longmeadow - Meadow Brook,870013,0,0,3.9,94.1,0,0,2,99,1,98 +1.25,1.25,a-pcom-i3,2017-18,East Longmeadow - Mountain View,870015,0,0,4,96,0,0,0,89,11,45.4 +1,1,a-pcom-i3,2017-18,Eastham - Eastham Elementary,850005,0,0,0,100,0,0,0,90.3,9.7,41.4 +1,1,a-pcom-i3,2017-18,Easthampton - Center School,860005,0,0,2,98,0,0,0,91.9,8.1,25.4 +1,1,a-pcom-i3,2017-18,Easthampton - Easthampton High,860505,0,0,2,98,0,0,0,61,39,50 +1,1,a-pcom-i3,2017-18,Easthampton - Maple,860010,0,0,0,100,0,0,0,98.1,1.9,41.7 +1.34375,1.34,a-pcom-i3,2017-18,Easthampton - Neil A Pepin,860020,0,0,4.3,95.7,0,0,0,97.3,2.7,34.9 +1.71875,1.72,a-pcom-i3,2017-18,Easthampton - White Brook Middle School,860305,1.8,0,1.8,94.5,0,0,1.8,72.3,27.7,54.2 +1,1,a-pcom-i3,2017-18,Easton - Center School,880003,0,0,0,97.2,0,0,2.8,97.4,2.6,35.6 +1.3125,1.31,a-pcom-i3,2017-18,Easton - Easton Middle School,880405,1.2,0,1,95.8,0,0,2,80.8,19.2,100.8 +1,1,a-pcom-i3,2017-18,Easton - Moreau Hall,880020,0,0,0,100,0,0,0,93.5,6.5,26.8 +1.90625,1.91,a-pcom-i3,2017-18,Easton - Oliver Ames High,880505,1.6,0.8,2.9,93.9,0,0,0.8,63.9,36.1,124.8 +1,1,a-pcom-i3,2017-18,Easton - Parkview Elementary,880015,0.8,0,0,99.2,0,0,0,93.9,6.1,50.2 +1,1,a-pcom-i3,2017-18,Easton - Richardson Olmsted School,880025,0.6,0,1,97.3,0,0,1,92.2,7.8,96.3 +1,1,a-pcom-i3,2017-18,Edgartown - Edgartown Elementary,890005,1.8,0,0,98.2,0,0,0,83.4,16.6,83 +19.375,5,a-pcom-i3,2017-18,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,39.1,2.2,16.4,38,0,0,4.4,55.2,44.8,45.8 +1.40625,1.41,a-pcom-i3,2017-18,Erving - Erving Elementary,910030,0,0,0,95.5,0,0,4.5,87.7,12.3,44 +1,1,a-pcom-i3,2017-18,Essex North Shore Agricultural and Technical School District - Essex Technical High School,8170505,1.1,0.5,0,98.4,0,0,0,60.2,39.8,183.5 +1.3125,1.31,a-pcom-i3,2017-18,Everett - Adams School,930003,4.2,0,0,95.8,0,0,0,100,0,23.6 +7.96875,5,a-pcom-i3,2017-18,Everett - Devens School,930030,14.1,0,8.5,74.5,0,0,2.8,53.7,46.3,35.4 +4.5625,4.56,a-pcom-i3,2017-18,Everett - Everett High,930505,4.7,3.2,5,85.4,0.4,0.4,0.9,53.1,46.9,233.9 +1.53125,1.53,a-pcom-i3,2017-18,Everett - George Keverian School,930028,1.2,1.2,1.2,95.1,0,1.2,0,84.7,15.3,81.5 +2.1875,2.19,a-pcom-i3,2017-18,Everett - Lafayette School,930038,2.9,2,2.1,93,0,0,0,81.1,18.9,102 +2.03125,2.03,a-pcom-i3,2017-18,Everett - Madeline English School,930018,1.9,1.9,2.7,93.5,0,0,0,90.9,9.1,103.9 +3.9375,3.94,a-pcom-i3,2017-18,Everett - Parlin School,930058,2,1.6,7.7,87.4,0,0,1.3,80.9,19.1,78.1 +3.5625,3.56,a-pcom-i3,2017-18,Everett - Sumner G. Whittier School,930010,4.3,1.4,4.3,88.6,0,0,1.4,90.1,9.9,70.3 +3.0625,3.06,a-pcom-i3,2017-18,Everett - Webster School,930015,0,1.8,7.1,90.2,0.9,0,0,95.5,4.5,112.2 +6.25,5,a-pcom-i3,2017-18,Excel Academy Charter (District) - Excel Academy Charter School,4100205,3.8,1.7,14.6,80,0,0,0,72.5,27.5,172.4 +1,1,a-pcom-i3,2017-18,Fairhaven - East Fairhaven,940010,0.5,0,0,99.5,0,0,0,96.6,3.4,51.8 +2.125,2.12,a-pcom-i3,2017-18,Fairhaven - Fairhaven High,940505,1.7,1.3,1.1,93.2,0,0,2.7,58.2,41.8,74.2 +1,1,a-pcom-i3,2017-18,Fairhaven - Hastings Middle,940305,0.5,0,0,97.7,0,0,1.8,70.2,29.8,54.6 +1,1,a-pcom-i3,2017-18,Fairhaven - Leroy Wood,940030,0.5,0,0,99.5,0,0,0,92.9,7.1,52.5 +2.40625,2.41,a-pcom-i3,2017-18,Fall River - B M C Durfee High,950505,2.6,1.1,2.3,92.3,0,0,1.7,63.1,36.9,269.7 +1.34375,1.34,a-pcom-i3,2017-18,Fall River - Carlton M. Viveiros Elementary School,950009,1.1,1.1,2.1,95.7,0,0,0,92.1,7.9,93.3 +31.25,5,a-pcom-i3,2017-18,Fall River - Fall River Gateway to College @ BCC,950515,0,0,0,0,0,0,0,0,0,0 +1.53125,1.53,a-pcom-i3,2017-18,Fall River - Henry Lord Community School,950017,1,0,2.9,95.1,0,0,1,89.2,10.8,102 +1,1,a-pcom-i3,2017-18,Fall River - James Tansey,950140,0,0,0,97,0,0,3,90.9,9.1,32.9 +1.8125,1.81,a-pcom-i3,2017-18,Fall River - John J Doran,950045,0,0,4.4,94.2,0,0,1.5,84.8,15.2,68.9 +4.46875,4.47,a-pcom-i3,2017-18,Fall River - Letourneau Elementary School,950013,7.2,2.9,4.3,85.7,0,0,0,94.9,5.1,69.9 +2.1875,2.19,a-pcom-i3,2017-18,Fall River - Mary Fonseca Elementary School,950011,1.2,0,3.5,93,0,0,2.3,89.2,10.8,85.2 +1.5625,1.56,a-pcom-i3,2017-18,Fall River - Matthew J Kuss Middle,950320,1,1,0,95,0,0,3,66.2,33.8,98.9 +2.5,2.5,a-pcom-i3,2017-18,Fall River - Morton Middle,950315,0,4.6,3.4,92,0,0,0,78.8,21.2,87.2 +1,1,a-pcom-i3,2017-18,Fall River - North End Elementary,950005,0,1.2,0,98.8,0,0,0,94.9,5.1,84 +6.0625,5,a-pcom-i3,2017-18,Fall River - Resiliency Preparatory Academy,950525,11.4,0,2.7,80.6,0,0,5.3,52.9,47.1,37.7 +1,1,a-pcom-i3,2017-18,Fall River - Samuel Watson,950145,0,0,0,100,0,0,0,97.2,2.8,35.1 +1,1,a-pcom-i3,2017-18,Fall River - Spencer Borden,950130,1,0,1,96.9,0,0,1,89.8,10.2,95.7 +4.96875,4.97,a-pcom-i3,2017-18,Fall River - Stone PK-12 School,950340,11.9,0,0,84.1,0,0,4,73,27,25.2 +1.375,1.38,a-pcom-i3,2017-18,Fall River - Talbot Innovation School,950305,4.4,0,0,95.6,0,0,0,81.8,18.2,67.5 +1.375,1.38,a-pcom-i3,2017-18,Fall River - William S Greene,950065,0,1.1,3.3,95.6,0,0,0,94.5,5.5,91.5 +2.25,2.25,a-pcom-i3,2017-18,Falmouth - East Falmouth Elementary,960005,5.3,0,0,92.8,0,0,1.9,84.2,15.8,54 +1.78125,1.78,a-pcom-i3,2017-18,Falmouth - Falmouth High,960505,1.9,0.9,2.8,94.3,0,0,0,65.5,34.5,105.5 +2.6875,2.69,a-pcom-i3,2017-18,Falmouth - Lawrence,960405,6,2.7,0,91.4,0,0,0,78.6,21.4,75.4 +1.28125,1.28,a-pcom-i3,2017-18,Falmouth - Morse Pond School,960305,2.8,0,0,95.9,0,0,1.4,86.9,13.1,72.5 +1.1875,1.19,a-pcom-i3,2017-18,Falmouth - Mullen-Hall,960020,2.3,0,1.6,96.2,0,0,0,94.4,5.6,62.9 +1.34375,1.34,a-pcom-i3,2017-18,Falmouth - North Falmouth Elementary,960030,2.1,0,2.1,95.7,0,0,0,88.3,11.7,47 +1.96875,1.97,a-pcom-i3,2017-18,Falmouth - Teaticket,960015,4.7,0,0,93.7,0,0,1.6,95.3,4.7,63.9 +1,1,a-pcom-i3,2017-18,Farmington River Reg - Farmington River Elementary,6620020,0,0,0,100,0,0,0,90.8,9.2,27 +4.625,4.62,a-pcom-i3,2017-18,Fitchburg - Arthur M Longsjo Middle School,970315,4,0,9.4,85.2,0,0,1.3,69.8,30.2,74.6 +1.40625,1.41,a-pcom-i3,2017-18,Fitchburg - Crocker Elementary,970016,1.5,0,3,95.5,0,0,0,94.1,5.9,67.2 +4.46875,4.47,a-pcom-i3,2017-18,Fitchburg - Fitchburg High,970505,3.1,0.8,9.7,85.7,0,0,0.8,60,40,130.5 +7.34375,5,a-pcom-i3,2017-18,Fitchburg - Goodrich Academy,970510,5.9,0,11.8,76.5,0,0,5.9,70.6,29.4,17 +4.0625,4.06,a-pcom-i3,2017-18,Fitchburg - McKay Arts Academy,970340,1.1,0,11.9,87,0,0,0,88.1,11.9,92.5 +2.59375,2.59,a-pcom-i3,2017-18,Fitchburg - Memorial Intermediate,970048,4.2,0,4.2,91.7,0,0,0,81.3,18.7,72 +1.65625,1.66,a-pcom-i3,2017-18,Fitchburg - Reingold Elementary,970043,1.3,1.3,1.3,94.7,0,0,1.3,90.8,9.2,75.8 +2,2,a-pcom-i3,2017-18,Fitchburg - South Street Elementary,970060,1.1,0,4.4,93.6,0,0,0.9,91.1,8.9,90.4 +1,1,a-pcom-i3,2017-18,Florida - Abbott Memorial,980005,0,0,0,100,0,0,0,88.2,11.8,23.8 +1,1,a-pcom-i3,2017-18,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,98.3,0,0,1.7,67.5,32.5,31.1 +1,1,a-pcom-i3,2017-18,Foxborough - Charles Taylor Elementary,990050,0,3.1,0,96.9,0,0,0,96.9,3.1,32.6 +1,1,a-pcom-i3,2017-18,Foxborough - Foxborough High,990505,1,1,0,98.1,0,0,0,67.5,32.5,105.2 +1,1,a-pcom-i3,2017-18,Foxborough - John J Ahern,990405,0,1.9,0,98.1,0,0,0,79.6,20.4,105.2 +1,1,a-pcom-i3,2017-18,Foxborough - Mabelle M Burrell,990015,0,2.4,0,97.6,0,0,0,95.2,4.8,41.4 +1,1,a-pcom-i3,2017-18,Foxborough - Vincent M Igo Elementary,990020,0,0,0,100,0,0,0,93.5,6.5,54.3 +3.4375,3.44,a-pcom-i3,2017-18,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,4,0,6.9,89,0,0,0,77.1,22.9,148.5 +11.34375,5,a-pcom-i3,2017-18,Framingham - Barbieri Elementary,1000035,0,0,36.3,63.7,0,0,0,92.2,7.8,92.1 +4.5,4.5,a-pcom-i3,2017-18,Framingham - Brophy,1000006,0,0,14.4,85.6,0,0,0,92,8,69.6 +3.09375,3.09,a-pcom-i3,2017-18,Framingham - Cameron Middle School,1000302,3.6,0.3,6,90.1,0,0,0,79.8,20.2,83.2 +1.3125,1.31,a-pcom-i3,2017-18,Framingham - Charlotte A Dunning,1000007,0,0,4.2,95.8,0,0,0,89.5,10.5,71.1 +4,4,a-pcom-i3,2017-18,Framingham - Framingham High School,1000515,1.6,2.7,8.6,87.2,0,0,0,69,31,217.9 +5.0625,5,a-pcom-i3,2017-18,Framingham - Fuller Middle,1000305,4.2,0,11.9,83.8,0,0,0,76.2,23.8,77 +2.59375,2.59,a-pcom-i3,2017-18,Framingham - Hemenway,1000015,1.3,1.3,5.7,91.7,0,0,0,94.7,5.3,75.9 +7.5625,5,a-pcom-i3,2017-18,Framingham - Juniper Hill School,1000001,2,3.6,18.5,75.8,0,0,0,94.9,5.1,54.9 +3.59375,3.59,a-pcom-i3,2017-18,Framingham - King Elementary School,1000005,2.7,1.8,5.2,88.5,0,0,1.9,94.1,5.9,33.9 +1,1,a-pcom-i3,2017-18,Framingham - Mary E Stapleton Elementary,1000045,0,0,2.9,97.1,0,0,0,89.6,10.4,69.4 +3.84375,3.84,a-pcom-i3,2017-18,Framingham - Miriam F McCarthy School,1000050,2.2,3.4,6.7,87.7,0,0,0,92.5,7.5,89.4 +3.28125,3.28,a-pcom-i3,2017-18,Framingham - Potter Road,1000039,1.8,0.9,7.8,89.5,0,0,0,93.3,6.7,54.6 +4.03125,4.03,a-pcom-i3,2017-18,Framingham - Walsh Middle,1000310,1.8,2.7,8.4,87.1,0,0,0,78.3,21.7,91.3 +3.4375,3.44,a-pcom-i3,2017-18,Framingham - Woodrow Wilson,1000055,0,0,11,89,0,0,0,90.5,9.5,81.7 +3.375,3.37,a-pcom-i3,2017-18,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,2.8,0,4.8,89.2,0,0,3.2,66.4,33.6,62.3 +1,1,a-pcom-i3,2017-18,Franklin - Annie Sullivan Middle School,1010040,0,0,1.8,98.2,0,0,0,82,18,55.5 +1,1,a-pcom-i3,2017-18,Franklin - Davis Thayer,1010035,0,0,2.8,97.2,0,0,0,96.5,3.5,35.8 +1.28125,1.28,a-pcom-i3,2017-18,Franklin - Franklin Early Childhood Development Center,1010003,0,4.1,0,95.9,0,0,0,100,0,24.5 +1,1,a-pcom-i3,2017-18,Franklin - Franklin High,1010505,0,1.7,0,98.3,0,0,0,69.8,30.2,176.9 +1,1,a-pcom-i3,2017-18,Franklin - Helen Keller Elementary,1010012,0,0,0,100,0,0,0,92.4,7.6,50.9 +1,1,a-pcom-i3,2017-18,Franklin - Horace Mann,1010405,0,0,0,100,0,0,0,78.4,21.6,55.7 +3.125,3.13,a-pcom-i3,2017-18,Franklin - J F Kennedy Memorial,1010013,5,5,0,90,0,0,0,95,5,39.8 +1,1,a-pcom-i3,2017-18,Franklin - Jefferson Elementary,1010010,0,2.1,0,97.9,0,0,0,98.5,1.5,47.4 +1,1,a-pcom-i3,2017-18,Franklin - Oak Street Elementary,1010030,1.9,0,0,98.1,0,0,0,97.9,2.1,52.3 +1,1,a-pcom-i3,2017-18,Franklin - Parmenter,1010032,0,0,0,100,0,0,0,90.8,9.2,43.6 +1,1,a-pcom-i3,2017-18,Franklin - Remington Middle,1010310,1.7,0,0,98.3,0,0,0,76.1,23.9,58.7 +1.03125,1.03,a-pcom-i3,2017-18,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,1.3,0,0.7,96.7,0,0,1.3,41,59,75.2 +1,1,a-pcom-i3,2017-18,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,3.2,96.8,0,0,0,66.6,33.4,93.6 +1,1,a-pcom-i3,2017-18,Freetown-Lakeville - Assawompset Elementary School,6650002,2.2,0,0,97.8,0,0,0,95.5,4.5,44.8 +1,1,a-pcom-i3,2017-18,Freetown-Lakeville - Freetown Elementary School,6650001,0,0,0,100,0,0,0,98.2,1.8,55.7 +1,1,a-pcom-i3,2017-18,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,2.5,0,0,97.5,0,0,0,73.9,26.1,80.6 +1,1,a-pcom-i3,2017-18,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,100,0,0,0,91.6,8.4,47.4 +1.28125,1.28,a-pcom-i3,2017-18,Frontier - Frontier Regional,6700505,0,0,1,95.9,2,0,1,68.3,31.7,97.7 +1.34375,1.34,a-pcom-i3,2017-18,Gardner - Elm Street School,1030001,0,0,1.4,95.7,0,0,2.9,92,8,69.2 +1.4375,1.44,a-pcom-i3,2017-18,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,95.4,0,0,4.6,35.3,64.7,10.9 +3.71875,3.72,a-pcom-i3,2017-18,Gardner - Gardner High,1030505,0,5.5,2.6,88.1,0,0,3.8,69.6,30.4,78.4 +1.5625,1.56,a-pcom-i3,2017-18,Gardner - Gardner Middle School,1030405,0,1.4,1.4,95,0,0,2.1,80.2,19.8,70.1 +1.34375,1.34,a-pcom-i3,2017-18,Gardner - Waterford Street,1030020,2.9,0,0,95.7,0,0,1.4,92.8,7.2,69.2 +1,1,a-pcom-i3,2017-18,Gateway - Chester Elementary,6720059,0,0,0,100,0,0,0,93.5,6.5,23 +1.34375,1.34,a-pcom-i3,2017-18,Gateway - Gateway Regional High,6720505,0,0,0,95.7,0,4.3,0,70.2,29.8,46.3 +1,1,a-pcom-i3,2017-18,Gateway - Gateway Regional Middle School,6720405,0,0,0,100,0,0,0,82.9,17.1,30.4 +1,1,a-pcom-i3,2017-18,Gateway - Littleville Elementary School,6720143,0,0,0,100,0,0,0,96,4,37.9 +1,1,a-pcom-i3,2017-18,Georgetown - Georgetown High School,1050505,0,0,1.5,97.1,0,1.5,0,71.8,28.2,68.8 +1,1,a-pcom-i3,2017-18,Georgetown - Georgetown Middle School,1050305,0,0,0,99.8,0,0.2,0,76,24,12.6 +1,1,a-pcom-i3,2017-18,Georgetown - Penn Brook,1050010,0,0,0,100,0,0,0,91.4,8.6,81.5 +1,1,a-pcom-i3,2017-18,Georgetown - Perley Elementary,1050005,0,0,0,100,0,0,0,100,0,8.7 +1,1,a-pcom-i3,2017-18,Gill-Montague - Gill Elementary,6740005,0,0,0,98.8,0,0,1.2,86.5,13.5,16.3 +1,1,a-pcom-i3,2017-18,Gill-Montague - Great Falls Middle,6740310,0,0,0,100,0,0,0,67.8,32.2,36.3 +1.34375,1.34,a-pcom-i3,2017-18,Gill-Montague - Hillcrest Elementary School,6740015,0,0,3,95.7,0,0,1.2,99.4,0.6,32.9 +1,1,a-pcom-i3,2017-18,Gill-Montague - Sheffield Elementary School,6740050,0,0,0,99.1,0,0,0.9,88.3,11.7,42.7 +1.375,1.38,a-pcom-i3,2017-18,Gill-Montague - Turners Fall High,6740505,0,0,2.2,95.6,0,0,2.2,73.8,26.2,45.5 +2.90625,2.91,a-pcom-i3,2017-18,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,6.1,1.4,1.7,90.7,0,0,0,72,28,57.2 +1,1,a-pcom-i3,2017-18,Gloucester - Beeman Memorial,1070010,0,0,0,100,0,0,0,94.4,5.6,53.2 +1,1,a-pcom-i3,2017-18,Gloucester - East Gloucester Elementary,1070020,0,0,0,100,0,0,0,88.3,11.7,39.2 +1,1,a-pcom-i3,2017-18,Gloucester - Gloucester High,1070505,0.8,0,0.8,98.3,0,0,0,60.5,39.5,119.1 +1,1,a-pcom-i3,2017-18,Gloucester - Gloucester PreSchool,1070025,0,0,0,100,0,0,0,100,0,25.1 +1,1,a-pcom-i3,2017-18,Gloucester - Plum Cove School,1070042,0,0,0,100,0,0,0,91.9,8.1,37.1 +1,1,a-pcom-i3,2017-18,Gloucester - Ralph B O'Maley Middle,1070305,0,0,1.2,98.8,0,0,0,77.4,22.6,84.1 +1,1,a-pcom-i3,2017-18,Gloucester - Veterans Memorial,1070045,0,0,0,100,0,0,0,94.6,5.4,44.8 +1,1,a-pcom-i3,2017-18,Gloucester - West Parish,1070050,0,0,0,100,0,0,0,100,0,59 +1,1,a-pcom-i3,2017-18,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,100,0,0,0,92.5,7.5,1.6 +1.21875,1.22,a-pcom-i3,2017-18,Grafton - Grafton High School,1100505,0,1.8,0.9,96.1,0,0,1.1,69.9,30.1,109.4 +1,1,a-pcom-i3,2017-18,Grafton - Grafton Middle,1100305,0,0,0,100,0,0,0,72.4,27.6,58.7 +1,1,a-pcom-i3,2017-18,Grafton - Millbury Street Elementary School,1100200,0,2.1,0,97.9,0,0,0,91.5,8.5,94.7 +1,1,a-pcom-i3,2017-18,Grafton - North Grafton Elementary,1100025,0,0,0,100,0,0,0,100,0,49.3 +1,1,a-pcom-i3,2017-18,Grafton - North Street Elementary School,1100030,0,0,1.3,98.7,0,0,0,93.8,6.2,76.9 +1,1,a-pcom-i3,2017-18,Grafton - South Grafton Elementary,1100005,0,1.4,0,98.6,0,0,0,96.6,3.4,58 +1.75,1.75,a-pcom-i3,2017-18,Granby - East Meadow,1110004,5.6,0,0,94.4,0,0,0,84.8,15.2,18.1 +2.03125,2.03,a-pcom-i3,2017-18,Granby - Granby Jr Sr High School,1110505,0,2.2,2.2,93.5,0,0,2.2,67.2,32.8,46.5 +1,1,a-pcom-i3,2017-18,Granby - West Street,1110010,0,3,0,97,0,0,0,93.6,6.4,33.7 +1.25,1.25,a-pcom-i3,2017-18,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,2.1,0,1.2,96,0.6,0,0,46.6,53.4,164.3 +4.40625,4.41,a-pcom-i3,2017-18,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0.9,0.5,12.2,85.9,0,0,0.5,60,40,203.6 +2.15625,2.16,a-pcom-i3,2017-18,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,1.8,2.2,2.9,93.1,0,0,0,62.3,37.7,275.9 +2.03125,2.03,a-pcom-i3,2017-18,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,2.9,0.4,2.5,93.5,0.7,0,0,51.9,48.1,276.3 +1.21875,1.22,a-pcom-i3,2017-18,Greenfield - Discovery School at Four Corners,1140025,0,0,3.9,96.1,0,0,0,95.4,4.6,50.9 +1,1,a-pcom-i3,2017-18,Greenfield - Federal Street School,1140010,0,0,0,100,0,0,0,90.5,9.5,43.5 +1,1,a-pcom-i3,2017-18,Greenfield - Greenfield High,1140505,0,1.3,1.3,97.4,0,0,0,68.6,31.4,75.7 +1.46875,1.47,a-pcom-i3,2017-18,Greenfield - Greenfield Middle,1140305,1.5,1.8,1.5,95.3,0,0,0,80.6,19.4,68 +1.5,1.5,a-pcom-i3,2017-18,Greenfield - Newton School,1140035,0,2.4,2.4,95.2,0,0,0,87.2,12.8,41.7 +1,1,a-pcom-i3,2017-18,Greenfield - The Academy of Early Learning at North Parish,1140005,0,0,0,100,0,0,0,99.3,0.7,27.7 +1,1,a-pcom-i3,2017-18,Groton-Dunstable - Boutwell School,6730001,0,0,0,100,0,0,0,93.8,6.2,16.1 +1,1,a-pcom-i3,2017-18,Groton-Dunstable - Florence Roche School,6730010,0,0,0,98.3,0,0,1.7,95,5,60.5 +1,1,a-pcom-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional,6730505,0,1.2,1.2,97.7,0,0,0,68.6,31.4,85.2 +1.34375,1.34,a-pcom-i3,2017-18,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,1.1,1.1,95.7,1.1,0,1.1,83,17,92.8 +1,1,a-pcom-i3,2017-18,Groton-Dunstable - Swallow/Union School,6730005,0,0,0,97.9,0,2.1,0,95.8,4.2,48.1 +1.21875,1.22,a-pcom-i3,2017-18,Hadley - Hadley Elementary,1170015,1.9,1.9,0,96.1,0,0,0,86.5,13.5,51.9 +1,1,a-pcom-i3,2017-18,Hadley - Hopkins Academy,1170505,0,0,0,100,0,0,0,65.6,34.4,37.8 +1,1,a-pcom-i3,2017-18,Halifax - Halifax Elementary,1180005,0,0,0,100,0,0,0,86.1,13.9,64.9 +1,1,a-pcom-i3,2017-18,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,2.9,0,97.1,0,0,0,95.1,4.9,34.7 +1,1,a-pcom-i3,2017-18,Hamilton-Wenham - Cutler School,6750010,0,0,2.4,97.6,0,0,0,94.2,5.8,41.2 +2.25,2.25,a-pcom-i3,2017-18,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,1.4,1.4,92.8,0,0,4.3,61.6,38.4,69.5 +1.46875,1.47,a-pcom-i3,2017-18,Hamilton-Wenham - Miles River Middle,6750310,0,2.9,1.8,95.3,0,0,0,88.6,11.4,55.4 +1.15625,1.16,a-pcom-i3,2017-18,Hamilton-Wenham - Winthrop School,6750015,0,1.8,0,96.3,0,0,1.8,94.1,5.9,54.5 +4.65625,4.66,a-pcom-i3,2017-18,Hampden Charter School of Science East (District) - Hampden Charter School of Science East,4990305,4.7,5.5,4.7,85.1,0,0,0,49.7,50.3,63.8 +1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Green Meadows Elementary,6800005,1.9,0,0,98.1,0,0,0,98.1,1.9,52.3 +1.21875,1.22,a-pcom-i3,2017-18,Hampden-Wilbraham - Mile Tree Elementary,6800025,1.9,0,1.9,96.1,0,0,0,96.1,3.9,51.9 +1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Minnechaug Regional High,6800505,0,0.9,0,99.1,0,0,0,66.2,33.8,108.5 +1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Soule Road,6800030,0,0,0,100,0,0,0,97.2,2.8,36.1 +1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,100,0,0,0,93.8,6.2,32.5 +1.1875,1.19,a-pcom-i3,2017-18,Hampden-Wilbraham - Thornton Burgess,6800305,3.8,0,0,96.2,0,0,0,73.7,26.3,26.6 +1,1,a-pcom-i3,2017-18,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,100,0,0,0,76.2,23.8,54.7 +1,1,a-pcom-i3,2017-18,Hampshire - Hampshire Regional High,6830505,0.9,0.9,0,98.2,0,0,0,69.9,30.1,112.5 +2.8125,2.81,a-pcom-i3,2017-18,Hancock - Hancock Elementary,1210005,9,0,0,91,0,0,0,83.8,16.2,11.1 +1,1,a-pcom-i3,2017-18,Hanover - Cedar Elementary,1220004,1.8,0,0,98.2,0,0,0,90.9,9.1,55 +1.21875,1.22,a-pcom-i3,2017-18,Hanover - Center Elementary,1220005,0,1.9,1.9,96.1,0,0,0,97.9,2.1,51.7 +1,1,a-pcom-i3,2017-18,Hanover - Hanover High,1220505,2.2,0,0,97.8,0,0,0,67.9,32.1,91.4 +1,1,a-pcom-i3,2017-18,Hanover - Hanover Middle,1220305,0,0,1,99,0,0,0,76.3,23.7,99 +1.25,1.25,a-pcom-i3,2017-18,Hanover - Sylvester,1220015,0,0,4,96,0,0,0,80.3,19.7,25 +1,1,a-pcom-i3,2017-18,Harvard - Bromfield,1250505,0,0,1.3,97.5,0,1.3,0,72.9,27.1,79.4 +1.8125,1.81,a-pcom-i3,2017-18,Harvard - Hildreth Elementary School,1250005,1.7,2.5,1.7,94.2,0,0,0,90.1,9.9,60.5 +1,1,a-pcom-i3,2017-18,Hatfield - Hatfield Elementary,1270005,0,0,0,100,0,0,0,91.7,8.3,40.8 +1,1,a-pcom-i3,2017-18,Hatfield - Smith Academy,1270505,0,0,0,100,0,0,0,67.2,32.8,32.9 +1,1,a-pcom-i3,2017-18,Haverhill - Bradford Elementary,1280008,0,0,0,100,0,0,0,95.4,4.6,59.2 +1.03125,1.03,a-pcom-i3,2017-18,Haverhill - Caleb Dustin Hunking School,1280030,0,0,3.3,96.7,0,0,0,87.4,12.6,91.5 +2.46875,2.47,a-pcom-i3,2017-18,Haverhill - Consentino Annex at Bartlett School,1280005,0,0,7.9,92.1,0,0,0,89.5,10.5,12.7 +1,1,a-pcom-i3,2017-18,Haverhill - Consentino Middle School,1280100,0,0,2.4,97.6,0,0,0,77,23,84.1 +2.9375,2.94,a-pcom-i3,2017-18,Haverhill - Crowell,1280020,0,0,9.4,90.6,0,0,0,94.4,5.6,16 +1.71875,1.72,a-pcom-i3,2017-18,Haverhill - Dr Paul Nettle,1280050,0,1.4,4.2,94.5,0,0,0,87,13,72.2 +1.71875,1.72,a-pcom-i3,2017-18,Haverhill - Golden Hill,1280026,0,0,5.5,94.5,0,0,0,93,7,72.7 +1,1,a-pcom-i3,2017-18,Haverhill - Greenleaf Kindergarten Center,1280027,0,0,0,100,0,0,0,96.8,3.2,18.2 +3.25,3.25,a-pcom-i3,2017-18,Haverhill - Haverhill Alternative School,1280033,0,0,10.4,89.6,0,0,0,59.6,40.4,19.2 +2.03125,2.03,a-pcom-i3,2017-18,Haverhill - Haverhill High,1280505,1.4,0.9,4.2,93.5,0,0,0,65.2,34.8,216.7 +1.40625,1.41,a-pcom-i3,2017-18,Haverhill - John G Whittier,1280085,2.2,0,2.2,95.5,0,0,0,77.7,22.3,44.8 +1.40625,1.41,a-pcom-i3,2017-18,Haverhill - Moody,1280045,0,2.5,2,95.5,0,0,0,100,0,39.9 +1.3125,1.31,a-pcom-i3,2017-18,Haverhill - Pentucket Lake Elementary,1280054,0,0,4.2,95.8,0,0,0,95.8,4.2,71.8 +2.65625,2.66,a-pcom-i3,2017-18,Haverhill - TEACH,1280073,3.3,5.2,0,91.5,0,0,0,77.9,22.1,30.5 +1.78125,1.78,a-pcom-i3,2017-18,Haverhill - Tilton,1280075,0,0,5.7,94.3,0,0,0,95.7,4.3,70.4 +1,1,a-pcom-i3,2017-18,Haverhill - Walnut Square,1280080,0,0,0,100,0,0,0,92.8,7.2,13.9 +1,1,a-pcom-i3,2017-18,Hawlemont - Hawlemont Regional,6850005,0,0,0,100,0,0,0,92.8,7.2,18.7 +28.84375,5,a-pcom-i3,2017-18,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,55.8,3.8,26.9,7.7,0,0,5.8,46.2,53.8,26 +1.9375,1.94,a-pcom-i3,2017-18,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,0,2.1,2.1,93.8,0,0,2.1,87.5,12.5,48 +1,1,a-pcom-i3,2017-18,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,0,3,97,0,0,0,86.5,13.5,38.6 +1.21875,1.22,a-pcom-i3,2017-18,Hingham - East Elementary School,1310005,1.3,0,1.3,96.1,0,0,1.3,91.6,8.4,77.8 +1,1,a-pcom-i3,2017-18,Hingham - Hingham High,1310505,0,0.6,0,98.7,0,0,0.7,66.3,33.7,134.6 +1,1,a-pcom-i3,2017-18,Hingham - Hingham Middle School,1310410,0,0,1.7,97.4,0,0,0.9,79.5,20.5,115 +1,1,a-pcom-i3,2017-18,Hingham - Plymouth River,1310019,0.9,1,0,98.1,0,0,0,92.6,7.4,58.7 +1.34375,1.34,a-pcom-i3,2017-18,Hingham - South Elementary,1310020,1.4,2.9,0,95.7,0,0,0,96.2,3.8,69.4 +1,1,a-pcom-i3,2017-18,Hingham - Wm L Foster Elementary,1310010,0,0,1.7,98.3,0,0,0,93.9,6.1,59.5 +1,1,a-pcom-i3,2017-18,Holbrook - Holbrook Middle High School,1330505,0,1.8,0,98.2,0,0,0,67.3,32.7,56.8 +1,1,a-pcom-i3,2017-18,Holbrook - John F Kennedy,1330018,2.2,0,0,97.8,0,0,0,98.2,1.8,67 +1,1,a-pcom-i3,2017-18,Holland - Holland Elementary,1350005,0,0,0,100,0,0,0,95.3,4.7,32.1 +1,1,a-pcom-i3,2017-18,Holliston - Holliston High,1360505,0,0,1,99,0,0,0,72.8,27.2,101.3 +1.0625,1.06,a-pcom-i3,2017-18,Holliston - Miller School,1360007,0,1.1,0.1,96.6,1.1,0,1.1,93.6,6.4,91.7 +1,1,a-pcom-i3,2017-18,Holliston - Placentino Elementary,1360010,0,1.9,0.4,97.7,0,0,0,94.6,5.4,103.7 +1,1,a-pcom-i3,2017-18,Holliston - Robert H. Adams Middle School,1360305,0,1,1,98,0,0,0,85.1,14.9,98 +9.40625,5,a-pcom-i3,2017-18,Holyoke - E N White Elementary,1370045,1.3,0,27.5,69.9,0,0,1.3,92.1,7.9,75.5 +9.5,5,a-pcom-i3,2017-18,Holyoke - H.B. Lawrence School,1370070,2.4,0,28,69.6,0,0,0,87.8,12.2,41.1 +7.53125,5,a-pcom-i3,2017-18,Holyoke - Holyoke High,1370505,1.3,1.3,20.9,75.9,0,0.7,0,66,34,153.1 +10.53125,5,a-pcom-i3,2017-18,Holyoke - Joseph Metcalf School,1370003,0,0,33.7,66.3,0,0,0,100,0,47.4 +11.6875,5,a-pcom-i3,2017-18,Holyoke - Kelly Elementary,1370040,3.1,0,32.7,62.6,0,0,1.6,84.6,15.4,64.2 +7.90625,5,a-pcom-i3,2017-18,Holyoke - Lt Clayre Sullivan Elementary,1370055,2.4,0,22.9,74.7,0,0,0,88,12,83.1 +8,5,a-pcom-i3,2017-18,Holyoke - Lt Elmer J McMahon Elementary,1370015,1.5,1.5,22.6,74.4,0,0,0,93.2,6.8,66.5 +10.46875,5,a-pcom-i3,2017-18,Holyoke - Maurice A Donahue Elementary,1370060,3.4,0,29,66.5,1.1,0,0,79.5,20.5,88 +8.96875,5,a-pcom-i3,2017-18,Holyoke - Morgan Full Service Community School,1370025,10.4,0,16.5,71.3,0,0,1.7,91.3,8.7,57.5 +12.875,5,a-pcom-i3,2017-18,Holyoke - William R. Peck School,1370030,5.9,0,35.3,58.8,0,0,0,67.6,32.4,68 +7.84375,5,a-pcom-i3,2017-18,Holyoke - Wm J Dean Vocational Technical High,1370605,2.5,0,22.6,74.9,0,0,0,52.4,47.6,39.9 +12.4375,5,a-pcom-i3,2017-18,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,5.3,1.1,33.5,60.2,0,0,0,70.3,29.7,94.1 +1,1,a-pcom-i3,2017-18,Hopedale - Hopedale Jr Sr High,1380505,0,0,1.4,98.6,0,0,0,73.7,26.3,70 +1,1,a-pcom-i3,2017-18,Hopedale - Memorial,1380010,0,1.2,1.2,97.6,0,0,0,95.1,4.9,83 +1,1,a-pcom-i3,2017-18,Hopedale - Park Street School,1380003,0,0,0,100,0,0,0,100,0,19.8 +1,1,a-pcom-i3,2017-18,Hopkinton - Center,1390005,0,0,1.5,98.5,0,0,0,94.2,5.8,68.7 +1,1,a-pcom-i3,2017-18,Hopkinton - Elmwood,1390010,0,1.7,0,98.3,0,0,0,90.1,9.9,58.9 +1,1,a-pcom-i3,2017-18,Hopkinton - Hopkins Elementary School,1390015,0,0,1.7,98.3,0,0,0,92.1,7.9,57.2 +1,1,a-pcom-i3,2017-18,Hopkinton - Hopkinton High,1390505,0,1.2,1.7,97.2,0,0,0,62.2,37.8,121.1 +1.09375,1.09,a-pcom-i3,2017-18,Hopkinton - Hopkinton Middle School,1390305,0,1.6,2,96.5,0,0,0,79.7,20.3,90.2 +1.6875,1.69,a-pcom-i3,2017-18,Hopkinton - Hopkinton Pre-School,1390003,5.4,0,0,94.6,0,0,0,100,0,16.7 +1,1,a-pcom-i3,2017-18,Hudson - C A Farley,1410030,0,0,0,100,0,0,0,97,3,67.1 +1,1,a-pcom-i3,2017-18,Hudson - David J. Quinn Middle School,1410410,0,0,0,100,0,0,0,83.5,16.5,96.9 +1,1,a-pcom-i3,2017-18,Hudson - Forest Avenue Elementary,1410015,0,0,0,100,0,0,0,93.4,6.6,45.8 +1,1,a-pcom-i3,2017-18,Hudson - Hudson High,1410505,0.8,0,0.8,98.5,0,0,0,75.4,24.6,132 +1,1,a-pcom-i3,2017-18,Hudson - Mulready Elementary,1410007,0,0,0,100,0,0,0,96.3,3.7,54 +1,1,a-pcom-i3,2017-18,Hull - Hull High,1420505,0,0,0,100,0,0,0,64,36,48.2 +1,1,a-pcom-i3,2017-18,Hull - Lillian M Jacobs,1420015,0,0,0,100,0,0,0,94.8,5.2,57.9 +1,1,a-pcom-i3,2017-18,Hull - Memorial Middle,1420305,0,0,0,100,0,0,0,81.2,18.8,32 +2.5,2.5,a-pcom-i3,2017-18,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,1,2.9,4.1,92,0,0,0,71.1,28.9,104 +1,1,a-pcom-i3,2017-18,Ipswich - Ipswich High,1440505,0,0,1.4,98.6,0,0,0,67.2,32.8,69.6 +1,1,a-pcom-i3,2017-18,Ipswich - Ipswich Middle School,1440305,0,0,0,100,0,0,0,76,24,61.2 +1,1,a-pcom-i3,2017-18,Ipswich - Paul F Doyon Memorial,1440007,0,0,0,100,0,0,0,95.6,4.4,67.1 +1,1,a-pcom-i3,2017-18,Ipswich - Winthrop,1440015,1.5,0,1.5,97,0,0,0,91.1,8.9,66 +16.59375,5,a-pcom-i3,2017-18,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,32.6,0,16.9,46.9,1.2,0,2.4,69.2,30.8,82.8 +12.40625,5,a-pcom-i3,2017-18,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,14.1,7,16,60.3,0,0,2.6,73.9,26.1,156 +1,1,a-pcom-i3,2017-18,King Philip - King Philip Middle School,6900510,0,0,0,100,0,0,0,79.8,20.2,84.1 +1,1,a-pcom-i3,2017-18,King Philip - King Philip Regional High,6900505,0,0,0,100,0,0,0,68.5,31.5,135.1 +1,1,a-pcom-i3,2017-18,Kingston - Kingston Elementary,1450005,0,0,0,100,0,0,0,88.8,11.2,57.2 +1,1,a-pcom-i3,2017-18,Kingston - Kingston Intermediate,1450020,0,0,0,100,0,0,0,87.2,12.8,67.1 +1,1,a-pcom-i3,2017-18,Lanesborough - Lanesborough Elementary,1480005,0,0,0,100,0,0,0,87.5,12.5,36.8 +4.8125,4.81,a-pcom-i3,2017-18,Lawrence - Alexander B Bruce,1490015,0,0,13.7,84.6,1.7,0,0,79.6,20.4,59.3 +6.59375,5,a-pcom-i3,2017-18,Lawrence - Arlington Middle School,1490017,0,0,21.1,78.9,0,0,0,63.1,36.9,57.3 +5.125,5,a-pcom-i3,2017-18,Lawrence - Community Day Arlington,1490009,0,1.3,15.2,83.6,0,0,0,81.7,18.3,79.7 +6.34375,5,a-pcom-i3,2017-18,Lawrence - Edward F. Parthum,1490053,0,0,20.3,79.7,0,0,0,93.6,6.4,69.7 +4.03125,4.03,a-pcom-i3,2017-18,Lawrence - Emily G Wetherbee,1490080,0,1.2,11.7,87.1,0,0,0,93,7,86.2 +4.9375,4.94,a-pcom-i3,2017-18,Lawrence - Francis M Leahy,1490040,0,0,15.8,84.2,0,0,0,92,8,51.3 +6.15625,5,a-pcom-i3,2017-18,Lawrence - Frost Middle School,1490525,2,1.9,15.8,80.3,0,0,0,66.7,33.3,51.4 +4.875,4.87,a-pcom-i3,2017-18,Lawrence - Gerard A. Guilmette,1490022,1.4,1.4,12.8,84.4,0,0,0,92.9,7.1,71.3 +5.71875,5,a-pcom-i3,2017-18,Lawrence - Guilmette Middle School,1490025,1.5,0,16.8,81.7,0,0,0,77.3,22.7,66.3 +5.65625,5,a-pcom-i3,2017-18,Lawrence - High School Learning Center,1490536,0,0,14.3,81.9,3.8,0,0,56.7,43.3,26 +9.8125,5,a-pcom-i3,2017-18,Lawrence - James F Hennessey,1490020,0,1.9,29.5,68.6,0,0,0,92.1,7.9,51.3 +11.3125,5,a-pcom-i3,2017-18,Lawrence - John Breen School,1490003,0,0,34.1,63.8,2.1,0,0,99.8,0.2,47.3 +8.125,5,a-pcom-i3,2017-18,Lawrence - John K Tarbox,1490075,0,0,26,74,0,0,0,91.2,8.8,35 +12.0625,5,a-pcom-i3,2017-18,Lawrence - Lawlor Early Childhood Center,1490002,0,0,38.6,61.4,0,0,0,88.3,11.7,26.2 +5.40625,5,a-pcom-i3,2017-18,Lawrence - Lawrence Family Public Academy,1490011,2.8,0,14.5,82.7,0,0,0,97,3,35.3 +9.1875,5,a-pcom-i3,2017-18,Lawrence - Lawrence High School,1490515,3,0.8,25.1,70.6,0.3,0,0.3,65.5,34.5,371.5 +5.8125,5,a-pcom-i3,2017-18,Lawrence - Oliver Partnership School,1490048,0,0,18.6,81.4,0,0,0,86.1,13.9,65.2 +4.71875,4.72,a-pcom-i3,2017-18,Lawrence - Parthum Middle School,1490027,0,0,15.1,84.9,0,0,0,73.3,26.7,60.3 +10.71875,5,a-pcom-i3,2017-18,Lawrence - Phoenix Academy Lawrence,1490540,0,0,34.3,65.7,0,0,0,79.7,20.3,13.2 +5,5,a-pcom-i3,2017-18,Lawrence - Robert Frost,1490018,3.2,1.6,11.3,84,0,0,0,90.4,9.6,63.2 +7.53125,5,a-pcom-i3,2017-18,Lawrence - Rollins Early Childhood Center,1490001,2,0,22.1,75.9,0,0,0,95.9,4.1,50.3 +12.3125,5,a-pcom-i3,2017-18,Lawrence - School for Exceptional Studies,1490537,2.3,1.5,35.5,60.6,0,0,0,66.4,33.6,129.9 +6.375,5,a-pcom-i3,2017-18,Lawrence - South Lawrence East Elementary School,1490004,0,0,17.5,79.6,1.4,0,1.4,86.9,13.1,69.2 +8.25,5,a-pcom-i3,2017-18,Lawrence - Spark Academy,1490085,3.5,1.7,21.1,73.6,0,0,0,73.7,26.3,57.3 +13.1875,5,a-pcom-i3,2017-18,Lawrence - UP Academy Leonard Middle School,1490090,2.6,2.6,34.3,57.8,2.6,0,0,60.6,39.4,38.2 +9.0625,5,a-pcom-i3,2017-18,Lawrence - UP Academy Oliver Middle School,1490049,2.2,0,26.8,71,0,0,0,75.5,24.5,45.2 +8.125,5,a-pcom-i3,2017-18,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,1.2,1.2,23.5,74,0,0,0,89.6,10.4,81.9 +1,1,a-pcom-i3,2017-18,Lee - Lee Elementary,1500025,0,0,3.1,96.9,0,0,0,95.7,4.3,65.4 +1.09375,1.09,a-pcom-i3,2017-18,Lee - Lee Middle/High School,1500505,0,1.8,1.8,96.5,0,0,0,76.6,23.4,56.4 +2.1875,2.19,a-pcom-i3,2017-18,Leicester - Leicester High,1510505,0,3.5,3.6,93,0,0,0,72.8,27.2,57.5 +1.53125,1.53,a-pcom-i3,2017-18,Leicester - Leicester Memorial Elementary,1510005,0,0,4.9,95.1,0,0,0,92.7,7.3,41 +1,1,a-pcom-i3,2017-18,Leicester - Leicester Middle,1510015,0,0,0,100,0,0,0,80.5,19.5,51.3 +1,1,a-pcom-i3,2017-18,Leicester - Leicester Primary School,1510010,0,0,1.6,98.4,0,0,0,96.9,3.1,64.2 +1,1,a-pcom-i3,2017-18,Lenox - Lenox Memorial High,1520505,0,0,0,100,0,0,0,65.3,34.7,73.6 +1,1,a-pcom-i3,2017-18,Lenox - Morris,1520015,0,0,0,100,0,0,0,93.4,6.6,61 +3.5,3.5,a-pcom-i3,2017-18,Leominster - Bennett,1530003,5.6,0,5.6,88.8,0,0,0,98.9,1.1,17.8 +1,1,a-pcom-i3,2017-18,Leominster - Center For Technical Education Innovation,1530605,0,0,0.3,99.7,0,0,0,31.1,68.9,37 +1.1875,1.19,a-pcom-i3,2017-18,Leominster - Fall Brook,1530007,0,1.3,2.6,96.2,0,0,0,96.2,3.8,78.1 +2.71875,2.72,a-pcom-i3,2017-18,Leominster - Frances Drake School,1530010,2.2,1.1,5.4,91.3,0,0,0,90.1,9.9,92.2 +1.53125,1.53,a-pcom-i3,2017-18,Leominster - Johnny Appleseed,1530025,3.5,0,1.4,95.1,0,0,0,97.2,2.8,71.5 +3.1875,3.19,a-pcom-i3,2017-18,Leominster - Leominster Center for Excellence,1530515,0,0,10.2,89.8,0,0,0,69.4,30.6,9.8 +1.96875,1.97,a-pcom-i3,2017-18,Leominster - Leominster High School,1530505,0.6,1.9,3.8,93.7,0,0,0,66.8,33.2,157.9 +1.21875,1.22,a-pcom-i3,2017-18,Leominster - Lincoln School,1530005,0,0,3.9,96.1,0,0,0,95.4,4.6,25.9 +1.3125,1.31,a-pcom-i3,2017-18,Leominster - Northwest,1530030,2.8,0,1.4,95.8,0,0,0,90.1,9.9,70.8 +2.1875,2.19,a-pcom-i3,2017-18,Leominster - Priest Street,1530040,0,3.5,3.5,93,0,0,0,90.9,9.1,28.6 +1,1,a-pcom-i3,2017-18,Leominster - Samoset School,1530045,0,0,1.8,98.2,0,0,0,77.1,22.9,54.6 +1.40625,1.41,a-pcom-i3,2017-18,Leominster - Sky View Middle School,1530320,0,0,4.5,95.5,0,0,0,86.5,13.5,88.9 +1,1,a-pcom-i3,2017-18,Leverett - Leverett Elementary,1540005,0,0,0,100,0,0,0,83.7,16.3,30.2 +5.59375,5,a-pcom-i3,2017-18,Lexington - Bowman,1550008,7,7.8,2.6,82.1,0,0.6,0,89.2,10.8,76.4 +2.375,2.37,a-pcom-i3,2017-18,Lexington - Bridge,1550006,1.7,3.3,0,92.4,0,0,2.6,90,10,77.2 +1.4375,1.44,a-pcom-i3,2017-18,Lexington - Fiske,1550015,1.5,1.9,1.2,95.4,0,0,0,83.5,16.5,86.2 +4.46875,4.47,a-pcom-i3,2017-18,Lexington - Harrington,1550030,3.3,4.2,5.6,85.7,0,0,1.2,95.5,4.5,65 +3.4375,3.44,a-pcom-i3,2017-18,Lexington - Jonas Clarke Middle,1550305,1.7,5.2,2.8,89,0,0,1.3,74.9,25.1,139.1 +2.5625,2.56,a-pcom-i3,2017-18,Lexington - Joseph Estabrook,1550010,4.1,0.9,1.7,91.8,0,0,1.5,87.4,12.6,65.9 +1.25,1.25,a-pcom-i3,2017-18,Lexington - Lexington Children's Place,1550001,0,0,1.2,96,0,0,2.8,100,0,24 +2.34375,2.34,a-pcom-i3,2017-18,Lexington - Lexington High,1550505,1.1,3.6,2.1,92.5,0,0,0.7,72.9,27.1,281.1 +5.25,5,a-pcom-i3,2017-18,Lexington - Maria Hastings,1550035,3.1,8.6,3.7,83.2,0,0,1.3,92.9,7.1,74.8 +2.78125,2.78,a-pcom-i3,2017-18,Lexington - Wm Diamond Middle,1550310,1.9,4.5,2.5,91.1,0,0,0,73.9,26.1,125 +19.34375,5,a-pcom-i3,2017-18,Libertas Academy Charter School (District) - Libertas Academy Charter School,35140305,0,10.2,51.8,38.1,0,0,0,55.3,44.7,9.9 +2.0625,2.06,a-pcom-i3,2017-18,Lincoln - Hanscom Middle,1570305,2.2,0.1,4.4,93.4,0,0,0,77.6,22.4,46 +2.09375,2.09,a-pcom-i3,2017-18,Lincoln - Hanscom Primary,1570006,3,0,3.7,93.3,0,0,0,95.2,4.8,58.8 +2.4375,2.44,a-pcom-i3,2017-18,Lincoln - Lincoln School,1570025,3.4,2.5,0.9,92.2,0.9,0,0,90.8,9.2,116.1 +1.84375,1.84,a-pcom-i3,2017-18,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,2.1,2.3,0,94.1,0.5,0.5,0.5,61.6,38.4,206.6 +1,1,a-pcom-i3,2017-18,Littleton - Littleton High School,1580505,0.4,0,0,99.6,0,0,0,66.6,33.4,54.4 +1.21875,1.22,a-pcom-i3,2017-18,Littleton - Littleton Middle School,1580305,1.7,0,0,96.1,0,2.3,0,88.4,11.6,44.4 +1,1,a-pcom-i3,2017-18,Littleton - Russell St Elementary,1580015,0,0,0,100,0,0,0,92.9,7.1,46.1 +2.3125,2.31,a-pcom-i3,2017-18,Littleton - Shaker Lane Elementary,1580005,3.3,1.2,1.2,92.6,0,0,1.7,97.9,2.1,60.4 +1,1,a-pcom-i3,2017-18,Longmeadow - Blueberry Hill,1590005,0,0,0,100,0,0,0,95,5,57.7 +1,1,a-pcom-i3,2017-18,Longmeadow - Center,1590010,0,0,0,100,0,0,0,99.5,0.5,57.2 +1,1,a-pcom-i3,2017-18,Longmeadow - Glenbrook Middle,1590017,0,0,2.3,97.7,0,0,0,84.3,15.7,44.1 +1.0625,1.06,a-pcom-i3,2017-18,Longmeadow - Longmeadow High,1590505,0.8,0,2.5,96.6,0,0,0,67.8,32.2,118.6 +1,1,a-pcom-i3,2017-18,Longmeadow - Williams Middle,1590305,2.4,0,0,97.6,0,0,0,77.5,22.5,41.7 +1,1,a-pcom-i3,2017-18,Longmeadow - Wolf Swamp Road,1590025,0,0,1.2,98.8,0,0,0,93.5,6.5,82.2 +5.25,5,a-pcom-i3,2017-18,Lowell - Abraham Lincoln,1600020,3.7,5.8,7.3,83.2,0,0,0,94.2,5.8,68.5 +3.78125,3.78,a-pcom-i3,2017-18,Lowell - B.F. Butler Middle School,1600310,2.6,8,1.5,87.9,0,0,0,65.6,34.4,65 +3.15625,3.16,a-pcom-i3,2017-18,Lowell - Bartlett Community Partnership,1600090,2.5,3.8,2.5,89.9,0,1.3,0,85.4,14.6,79.1 +1.875,1.88,a-pcom-i3,2017-18,Lowell - Charles W Morey,1600030,0,3,3,94,0,0,0,94.8,5.2,66.9 +2.15625,2.16,a-pcom-i3,2017-18,Lowell - Charlotte M Murkland Elementary,1600080,0,3.9,3.1,93.1,0,0,0,90.7,9.3,64.8 +2.59375,2.59,a-pcom-i3,2017-18,Lowell - Dr An Wang School,1600345,1.3,0,7.1,91.7,0,0,0,75.7,24.3,70.9 +1.4375,1.44,a-pcom-i3,2017-18,Lowell - Dr Gertrude Bailey,1600002,0,1.5,3.1,95.4,0,0,0,92.3,7.7,65 +3.09375,3.09,a-pcom-i3,2017-18,Lowell - Greenhalge,1600015,2.8,1.4,1.4,90.1,1.4,1.4,1.4,95.8,4.2,70.6 +4.15625,4.16,a-pcom-i3,2017-18,Lowell - Henry J Robinson Middle,1600330,1.3,5.3,5.3,86.7,0,0,1.3,74.9,25.1,75.2 +2.09375,2.09,a-pcom-i3,2017-18,Lowell - James S Daley Middle School,1600315,0.6,3.6,1.2,93.3,1.2,0,0,81.7,18.3,82.3 +3.6875,3.69,a-pcom-i3,2017-18,Lowell - James Sullivan Middle School,1600340,1.3,1.3,9.2,88.2,0,0,0,73.2,26.8,76.5 +1,1,a-pcom-i3,2017-18,Lowell - John J Shaughnessy,1600050,1.5,0.8,0,97.7,0,0,0,94.6,5.4,65.1 +5.3125,5,a-pcom-i3,2017-18,Lowell - Joseph McAvinnue,1600010,0,4.3,12.8,83,0,0,0,90.1,9.9,70.6 +4.09375,4.09,a-pcom-i3,2017-18,Lowell - Kathryn P. Stoklosa Middle School,1600360,1.4,9.7,0.7,86.9,0,1.4,0,65.3,34.7,72.6 +7.6875,5,a-pcom-i3,2017-18,Lowell - Laura Lee Therapeutic Day School,1600085,5.9,3.8,14.9,75.4,0,0,0,73,27,16.8 +1.78125,1.78,a-pcom-i3,2017-18,Lowell - Leblanc Therapeutic Day School,1600320,0,0,5.7,94.3,0,0,0,64.4,35.6,17.4 +5.21875,5,a-pcom-i3,2017-18,Lowell - Lowell Day School on Broadway,1600605,0,11.1,5.6,83.3,0,0,0,88.9,11.1,36 +3.9375,3.94,a-pcom-i3,2017-18,Lowell - Lowell High,1600505,3,3.8,4.9,87.4,0,0,0.9,62.6,37.4,317.7 +1.75,1.75,a-pcom-i3,2017-18,Lowell - Moody Elementary,1600027,0,0,5.6,94.4,0,0,0,97.2,2.8,35.7 +1.90625,1.91,a-pcom-i3,2017-18,Lowell - Pawtucketville Memorial,1600036,1.5,1.5,3,93.9,0,0,0,86.7,13.3,66.1 +3.53125,3.53,a-pcom-i3,2017-18,Lowell - Peter W Reilly,1600040,2.3,0,9,88.7,0,0,0,92.5,7.5,66.6 +4.5625,4.56,a-pcom-i3,2017-18,Lowell - Pyne Arts,1600018,2.8,1.4,10.4,85.4,0,0,0,85,15,72.1 +4.4375,4.44,a-pcom-i3,2017-18,Lowell - Rogers STEM Academy,1600005,2.8,3.4,8,85.8,0,0,0,86.3,13.7,87.7 +3.90625,3.91,a-pcom-i3,2017-18,Lowell - S Christa McAuliffe Elementary,1600075,0,1.6,11,87.5,0,0,0,88.2,11.8,63.7 +6.875,5,a-pcom-i3,2017-18,Lowell - The Career Academy,1600515,6.1,15.9,0,78,0,0,0,68.2,31.8,16.5 +3.4375,3.44,a-pcom-i3,2017-18,Lowell - Washington,1600055,2.2,0,6.6,89,2.2,0,0,90.1,9.9,45.3 +8.5625,5,a-pcom-i3,2017-18,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,3.6,10.7,11.3,72.6,0,0,1.8,76.7,23.3,111.7 +6.0625,5,a-pcom-i3,2017-18,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,12.9,6.5,80.6,0,0,0,74.2,25.8,15.5 +1,1,a-pcom-i3,2017-18,Ludlow - Chapin Street Elementary School,1610020,0,0,0,100,0,0,0,96.3,3.7,45.4 +1,1,a-pcom-i3,2017-18,Ludlow - East Street Elementary School,1610010,1.2,0,0,98.8,0,0,0,95.7,4.3,85.3 +1.03125,1.03,a-pcom-i3,2017-18,Ludlow - Ludlow Senior High,1610505,0.8,0,1.6,96.7,0,0,0.8,70.5,29.5,122.7 +1,1,a-pcom-i3,2017-18,Ludlow - Paul R Baird Middle,1610305,1.1,0,2.1,96.8,0,0,0,74.5,25.5,94 +1,1,a-pcom-i3,2017-18,Ludlow - Veterans Park Elementary,1610023,0,0,0,100,0,0,0,93.5,6.5,56.4 +1,1,a-pcom-i3,2017-18,Lunenburg - Advanced Community Experience Program,1620605,0,0,0,100,0,0,0,64.2,35.8,6.2 +1.59375,1.59,a-pcom-i3,2017-18,Lunenburg - Lunenburg High,1620505,0,0,1.5,94.9,1.8,1.8,0,60.4,39.6,55 +1,1,a-pcom-i3,2017-18,Lunenburg - Lunenburg Middle School,1620305,0,0,0.4,99.6,0,0,0,86,14,46.5 +1,1,a-pcom-i3,2017-18,Lunenburg - Lunenburg Primary School,1620010,0,0,0,100,0,0,0,95.1,4.9,50.8 +1,1,a-pcom-i3,2017-18,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,100,0,0,0,89.9,10.1,44.5 +5.15625,5,a-pcom-i3,2017-18,Lynn - A Drewicz Elementary,1630016,0,2.1,12.4,83.5,2.1,0,0,93.7,6.3,48.5 +1,1,a-pcom-i3,2017-18,Lynn - Aborn,1630011,0,0,1,98.5,0,0,0.5,94,6,25.2 +3.09375,3.09,a-pcom-i3,2017-18,Lynn - Breed Middle School,1630405,1.7,1.7,4.1,90.1,0,0,2.5,71.6,28.4,120.8 +1,1,a-pcom-i3,2017-18,Lynn - Brickett Elementary,1630020,0,0,2.6,97,0,0,0.4,97.7,2.3,28.7 +3.625,3.62,a-pcom-i3,2017-18,Lynn - Capt William G Shoemaker,1630090,1.5,2.9,5.8,88.4,0,0,1.5,93.4,6.6,68.8 +3.9375,3.94,a-pcom-i3,2017-18,Lynn - Classical High,1630505,2.1,0,8.4,87.4,0,0,2.1,63.6,36.4,142.6 +2.46875,2.47,a-pcom-i3,2017-18,Lynn - Cobbet Elementary,1630035,1.5,1.5,4.9,92.1,0,0,0,95.3,4.7,66.4 +4.4375,4.44,a-pcom-i3,2017-18,Lynn - E J Harrington,1630045,1.3,2.7,7.4,85.8,0,0,2.8,98.5,1.5,74.6 +4.96875,4.97,a-pcom-i3,2017-18,Lynn - Early Childhood Center,1630004,3.4,1.7,10.3,84.1,0,0,0.4,96,4,58.1 +1.40625,1.41,a-pcom-i3,2017-18,Lynn - Edward A Sisson,1630095,2.2,0,2.2,95.5,0,0,0,95.5,4.5,44.9 +7.28125,5,a-pcom-i3,2017-18,Lynn - Fecteau-Leary Junior/Senior High School,1630525,4.2,2.1,16.9,76.7,0,0,0,44.2,55.8,47.2 +5.84375,5,a-pcom-i3,2017-18,Lynn - Hood,1630055,6.1,4.1,6.1,81.3,0,0,2.3,94.8,5.2,48.9 +3.5,3.5,a-pcom-i3,2017-18,Lynn - Ingalls,1630060,6.3,0,4.7,88.8,0,0,0.2,93.6,6.4,63.9 +5.0625,5,a-pcom-i3,2017-18,Lynn - Julia F Callahan,1630030,5.4,1.8,7.2,83.8,1.8,0,0,87.4,12.6,55.7 +2.21875,2.22,a-pcom-i3,2017-18,Lynn - Lincoln-Thomson,1630070,0,0,7.1,92.9,0,0,0,90.1,9.9,28.1 +5.1875,5,a-pcom-i3,2017-18,Lynn - Lynn English High,1630510,3.2,0.7,11.3,83.4,0,0,1.4,54.5,45.5,144.2 +6.75,5,a-pcom-i3,2017-18,Lynn - Lynn Vocational Technical Institute,1630605,3.5,0,14.9,78.4,0,0,3.1,51.6,48.4,127.5 +1.8125,1.81,a-pcom-i3,2017-18,Lynn - Lynn Woods,1630075,0,0,5.8,94.2,0,0,0,88.1,11.9,17.2 +4.34375,4.34,a-pcom-i3,2017-18,Lynn - Pickering Middle,1630420,2.8,0,9.7,86.1,0,0,1.4,75.8,24.2,71.9 +3.40625,3.41,a-pcom-i3,2017-18,Lynn - Robert L Ford,1630050,4.3,0,6.4,89.1,0,0,0.3,94.8,5.2,46.9 +2.46875,2.47,a-pcom-i3,2017-18,Lynn - Sewell-Anderson,1630085,2.6,0,5.2,92.1,0,0,0,94.5,5.5,38.1 +4.78125,4.78,a-pcom-i3,2017-18,Lynn - Thurgood Marshall Mid,1630305,4.3,0.9,9,84.7,0,0,1.1,62.4,37.6,115.1 +2.03125,2.03,a-pcom-i3,2017-18,Lynn - Tracy,1630100,0,0,4.7,93.5,0,0,1.8,97.6,2.4,42.5 +4.90625,4.91,a-pcom-i3,2017-18,Lynn - Washington Elementary School,1630005,4.3,2.2,7,84.3,0,0,2.2,88.7,11.3,46.1 +3.375,3.37,a-pcom-i3,2017-18,Lynn - William R Fallon,1630080,7.2,0,3.6,89.2,0,0,0,79.4,20.6,27.7 +2.6875,2.69,a-pcom-i3,2017-18,Lynn - Wm P Connery,1630040,3.2,0,5.4,91.4,0,0,0,87.3,12.7,61.8 +1.5625,1.56,a-pcom-i3,2017-18,Lynnfield - Huckleberry Hill,1640010,0,1.7,3.3,95,0,0,0,98.3,1.7,59.8 +1,1,a-pcom-i3,2017-18,Lynnfield - Lynnfield High,1640505,0,1.2,0,97.5,0,0,1.2,70.3,29.7,80.2 +1,1,a-pcom-i3,2017-18,Lynnfield - Lynnfield Middle School,1640405,0,0,1.2,98.8,0,0,0,84.8,15.2,81.3 +1,1,a-pcom-i3,2017-18,Lynnfield - Lynnfield Preschool,1640005,0,0,0,100,0,0,0,98.7,1.3,7.4 +1,1,a-pcom-i3,2017-18,Lynnfield - Summer Street,1640020,0,0,0,100,0,0,0,94.8,5.2,50.4 +14.09375,5,a-pcom-i3,2017-18,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,22.5,4.4,14.9,54.9,0.4,0,2.9,76.9,23.1,242 +3.65625,3.66,a-pcom-i3,2017-18,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,0,0,88.3,0,0,11.7,70.7,29.3,8.5 +3.21875,3.22,a-pcom-i3,2017-18,Malden - Beebe,1650003,4.6,3.4,1.1,89.7,0,0,1.1,88,12,87.5 +1.0625,1.06,a-pcom-i3,2017-18,Malden - Ferryway,1650013,1.1,2.3,0,96.6,0,0,0,86.1,13.9,87.2 +2.4375,2.44,a-pcom-i3,2017-18,Malden - Forestdale,1650027,2.1,2.1,3.1,92.2,0,0,0.5,92.7,7.3,95.5 +2.9375,2.94,a-pcom-i3,2017-18,Malden - Linden,1650047,2.7,2.7,0.9,90.6,0,0.9,2.2,81.2,18.8,111.5 +4.1875,4.19,a-pcom-i3,2017-18,Malden - Malden Early Learning Center,1650049,11,2.4,0,86.6,0,0,0,98.8,1.2,82 +3.5625,3.56,a-pcom-i3,2017-18,Malden - Malden High,1650505,3,3.6,4.2,88.6,0,0,0.6,68.2,31.8,166.8 +4.78125,4.78,a-pcom-i3,2017-18,Malden - Salemwood,1650057,5.6,3.2,4,84.7,0,0,2.4,85.5,14.5,124.5 +1,1,a-pcom-i3,2017-18,Manchester Essex Regional - Essex Elementary,6980020,0,0,0,100,0,0,0,84,16,42.6 +1.15625,1.16,a-pcom-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,1.9,1.8,96.3,0,0,0,68.3,31.7,55.6 +1.28125,1.28,a-pcom-i3,2017-18,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,4.1,0,95.9,0,0,0,80,20,46.9 +1,1,a-pcom-i3,2017-18,Manchester Essex Regional - Manchester Memorial Elementary,6980010,0,0,0,100,0,0,0,92.8,7.2,55.5 +1.09375,1.09,a-pcom-i3,2017-18,Mansfield - Everett W Robinson,1670007,1.1,1.8,0.6,96.5,0,0,0,94.4,5.6,90 +1,1,a-pcom-i3,2017-18,Mansfield - Harold L Qualters Middle,1670035,0,0,0.8,98.3,0,0,0.8,80.5,19.5,119.7 +1.25,1.25,a-pcom-i3,2017-18,Mansfield - Jordan/Jackson Elementary,1670014,0.7,1.1,1.1,96,0,0,1.1,91,9,88.8 +1.375,1.38,a-pcom-i3,2017-18,Mansfield - Mansfield High,1670505,0.7,0,3.8,95.6,0,0,0,67.3,32.7,150.1 +1,1,a-pcom-i3,2017-18,Mansfield - Roland Green School,1670003,0,0,0,100,0,0,0,100,0,24.2 +1,1,a-pcom-i3,2017-18,Marblehead - Elbridge Gerry,1680015,0,0,0,98,0,0,2,97.3,2.7,18.6 +1.75,1.75,a-pcom-i3,2017-18,Marblehead - Glover,1680020,0,1.4,1.4,94.4,0,1.4,1.4,94.4,5.6,71.9 +1,1,a-pcom-i3,2017-18,Marblehead - L H Coffin,1680010,0,0,0,98.6,0,0,1.4,98.4,1.6,30.9 +1,1,a-pcom-i3,2017-18,Marblehead - Malcolm L Bell,1680005,0,0,0,100,0,0,0,95.2,4.8,41.9 +1,1,a-pcom-i3,2017-18,Marblehead - Marblehead High,1680505,0,0,2.1,97.2,0,0,0.7,63.1,36.9,144.4 +1,1,a-pcom-i3,2017-18,Marblehead - Marblehead Veterans Middle School,1680300,1.1,1.5,0,97.4,0,0,0,73.5,26.5,67.3 +1,1,a-pcom-i3,2017-18,Marblehead - Village School,1680016,0,0,0,99,0,0,1,89.2,10.8,96.1 +1,1,a-pcom-i3,2017-18,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,100,0,0,0,62.5,37.5,30.9 +1.53125,1.53,a-pcom-i3,2017-18,Marion - Sippican,1690005,3.3,1.6,0,95.1,0,0,0,93.8,6.3,60.8 +2.4375,2.44,a-pcom-i3,2017-18,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,1.8,6.1,92.2,0,0,0,78.8,21.2,197.8 +1.59375,1.59,a-pcom-i3,2017-18,Marlborough - Charles Jaworek School,1700030,0,1.7,3.4,94.9,0,0,0,93.9,6.1,116.5 +1.875,1.88,a-pcom-i3,2017-18,Marlborough - Early Childhood Center,1700006,2,0,4,94,0,0,0,92,8,49.7 +1.15625,1.16,a-pcom-i3,2017-18,Marlborough - Francis J Kane,1700008,1.2,0,2.4,96.3,0,0,0,92.8,7.2,81.8 +2.03125,2.03,a-pcom-i3,2017-18,Marlborough - Marlborough High,1700505,1.9,2,1.9,93.5,0.6,0,0,62.6,37.4,156.1 +1.53125,1.53,a-pcom-i3,2017-18,Marlborough - Richer,1700025,0,0,4.9,95.1,0,0,0,93.9,6.1,82.1 +1,1,a-pcom-i3,2017-18,Marshfield - Daniel Webster,1710015,0,0,0,99.2,0.8,0,0,94.9,5.1,56.8 +1,1,a-pcom-i3,2017-18,Marshfield - Eames Way School,1710005,0,0,0,100,0,0,0,92,8,42.4 +1,1,a-pcom-i3,2017-18,Marshfield - Furnace Brook Middle,1710310,0,0,0,99.2,0.8,0,0,84.2,15.8,119.3 +1,1,a-pcom-i3,2017-18,Marshfield - Gov Edward Winslow,1710020,0,1.6,1.6,96.9,0,0,0,89.1,10.9,64.3 +1,1,a-pcom-i3,2017-18,Marshfield - Marshfield High,1710505,0.6,0.6,1.2,97.6,0,0,0,68.5,31.5,166.6 +1,1,a-pcom-i3,2017-18,Marshfield - Martinson Elementary,1710025,0,1.2,0,97.5,1.2,0,0,94.6,5.4,81 +1,1,a-pcom-i3,2017-18,Marshfield - South River,1710010,0,0,0,100,0,0,0,95.3,4.7,49.1 +2.9375,2.94,a-pcom-i3,2017-18,Martha's Vineyard - Martha's Vineyard Regional High,7000505,3.3,0.4,3.3,90.6,0,0,2.5,65.1,34.9,122.2 +1,1,a-pcom-i3,2017-18,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,2,0,0,98,0,0,0,85.5,14.5,38.2 +12,5,a-pcom-i3,2017-18,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,21.4,0,13.2,61.6,0,0,3.8,86.3,13.7,53 +1,1,a-pcom-i3,2017-18,Masconomet - Masconomet Regional High School,7050505,0,0.8,0,99.2,0,0,0,66.6,33.4,131.6 +1,1,a-pcom-i3,2017-18,Masconomet - Masconomet Regional Middle School,7050405,1.2,1.7,0,97.1,0,0,0,63.8,36.2,83.4 +1,1,a-pcom-i3,2017-18,Mashpee - Kenneth Coombs School,1720005,0,0,0,98.4,1.6,0,0,91.3,8.7,63.4 +1,1,a-pcom-i3,2017-18,Mashpee - Mashpee High,1720505,1.7,0.9,0,97.4,0,0,0,62.8,37.2,58.5 +1,1,a-pcom-i3,2017-18,Mashpee - Mashpee Middle School,1720020,0,1.5,0,98.5,0,0,0,77.9,22.1,33.1 +1,1,a-pcom-i3,2017-18,Mashpee - Quashnet School,1720035,0,0,1.5,98.5,0,0,0,88,12,66.8 +1.46875,1.47,a-pcom-i3,2017-18,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,0,4.7,0,95.3,0,0,0,67.8,32.2,41.6 +1,1,a-pcom-i3,2017-18,Mattapoisett - Center,1730005,0,2.6,0,97.4,0,0,0,94.7,5.3,38.3 +1,1,a-pcom-i3,2017-18,Mattapoisett - Old Hammondtown,1730010,0,0,0,100,0,0,0,91.4,8.6,34.6 +1,1,a-pcom-i3,2017-18,Maynard - Fowler School,1740305,0,0,2.8,97.2,0,0,0,79,21,71.4 +1.9375,1.94,a-pcom-i3,2017-18,Maynard - Green Meadow,1740010,0,1.2,4.9,93.8,0,0,0,96.3,3.7,81.1 +1,1,a-pcom-i3,2017-18,Maynard - Maynard High,1740505,0,0,0,100,0,0,0,73.4,26.6,46.7 +1,1,a-pcom-i3,2017-18,Medfield - Dale Street,1750005,0,1.3,0,98.7,0,0,0,89.2,10.8,50.1 +1,1,a-pcom-i3,2017-18,Medfield - Medfield Senior High,1750505,0,0.9,0.9,97.2,0,0,0.9,69.6,30.4,106.8 +1,1,a-pcom-i3,2017-18,Medfield - Memorial School,1750003,0,1.5,0,97.3,0,0,1.2,95.2,4.8,66.5 +1,1,a-pcom-i3,2017-18,Medfield - Ralph Wheelock School,1750007,0,0.9,0.7,98.4,0,0,0,93.6,6.4,49.1 +1.875,1.88,a-pcom-i3,2017-18,Medfield - Thomas Blake Middle,1750305,1.2,2.4,2.4,94,0,0,0,74.9,25.1,82.9 +1,1,a-pcom-i3,2017-18,Medford - Brooks School,1760130,0,0,1.6,98.4,0,0,0,93.7,6.3,63.6 +1.15625,1.16,a-pcom-i3,2017-18,Medford - Christopher Columbus,1760140,0,1.8,1.8,96.3,0,0,0,93.2,6.8,54.5 +1,1,a-pcom-i3,2017-18,Medford - Curtis-Tufts,1760510,0,0,0,100,0,0,0,50,50,8 +1,1,a-pcom-i3,2017-18,Medford - John J McGlynn Elementary School,1760068,0,0,0,100,0,0,0,94.6,5.4,54.2 +1.5625,1.56,a-pcom-i3,2017-18,Medford - John J. McGlynn Middle School,1760320,1.4,3.6,0,95,0,0,0,78.4,21.6,71.9 +1.125,1.12,a-pcom-i3,2017-18,Medford - Madeleine Dugger Andrews,1760315,0,3.6,0,96.4,0,0,0,73.4,26.6,66.2 +1.125,1.12,a-pcom-i3,2017-18,Medford - Medford High,1760505,0.5,1.4,1.8,96.4,0,0,0,66.8,33.2,220.9 +1.84375,1.84,a-pcom-i3,2017-18,Medford - Milton Fuller Roberts,1760150,2.9,2.9,0,94.1,0,0,0,87.9,12.1,68.3 +1,1,a-pcom-i3,2017-18,Medway - Burke/Memorial Elementary School,1770015,0,1.6,0,98.4,0,0,0,96.9,3.1,63.8 +1,1,a-pcom-i3,2017-18,Medway - John D Mc Govern Elementary,1770013,0,0,0,100,0,0,0,97.8,2.2,44.7 +1.25,1.25,a-pcom-i3,2017-18,Medway - Medway High,1770505,0,2.6,1.3,96,0,0,0,69.2,30.8,75.9 +1,1,a-pcom-i3,2017-18,Medway - Medway Middle,1770305,0,0,1,99,0,0,0,76.4,23.6,97.4 +1,1,a-pcom-i3,2017-18,Melrose - Early Childhood Center,1780003,0,1.9,0,98.1,0,0,0,99.2,0.8,49.5 +1,1,a-pcom-i3,2017-18,Melrose - Herbert Clark Hoover,1780017,0,0.6,0,99.4,0,0,0,91.3,8.7,34.2 +1.21875,1.22,a-pcom-i3,2017-18,Melrose - Horace Mann,1780025,0,3.9,0,96.1,0,0,0,92.3,7.7,25.5 +1.125,1.12,a-pcom-i3,2017-18,Melrose - Lincoln,1780020,1.8,1.8,0,96.4,0,0,0,89.3,10.7,55.5 +1.4375,1.44,a-pcom-i3,2017-18,Melrose - Melrose High,1780505,1.8,1.1,1.7,95.4,0,0,0,61.5,38.5,108.3 +1,1,a-pcom-i3,2017-18,Melrose - Melrose Middle,1780305,0,0,1.1,97.7,0,0,1.1,76.1,23.9,88.7 +1.3125,1.31,a-pcom-i3,2017-18,Melrose - Roosevelt,1780035,0,4.2,0,95.8,0,0,0,95.8,4.2,52.2 +1.09375,1.09,a-pcom-i3,2017-18,Melrose - Winthrop,1780050,0,0.6,0,96.5,0,0,2.9,85.5,14.5,34 +1.5,1.5,a-pcom-i3,2017-18,Mendon-Upton - Henry P Clough,7100179,0,0,4.8,95.2,0,0,0,98.1,1.9,51.8 +1,1,a-pcom-i3,2017-18,Mendon-Upton - Memorial School,7100001,0,0,2.8,97.2,0,0,0,98.6,1.4,71.2 +1,1,a-pcom-i3,2017-18,Mendon-Upton - Miscoe Hill School,7100015,0,0.6,0.3,99,0,0,0,81,19,93.2 +1,1,a-pcom-i3,2017-18,Mendon-Upton - Nipmuc Regional High,7100510,0,0,1.3,98.7,0,0,0,70.2,29.8,79.2 +1,1,a-pcom-i3,2017-18,Methuen - Comprehensive Grammar School,1810050,0,0,2.4,97.6,0,0,0,88.2,11.8,127 +1.46875,1.47,a-pcom-i3,2017-18,Methuen - Donald P Timony Grammar,1810060,0,0,4.7,95.3,0,0,0,87.7,12.3,154 +1,1,a-pcom-i3,2017-18,Methuen - Marsh Grammar School,1810030,0,0,0.7,99.3,0,0,0,91.2,8.8,134.5 +1,1,a-pcom-i3,2017-18,Methuen - Methuen High,1810505,0,0.5,1.4,98.1,0,0,0,61.9,38.1,207.2 +1,1,a-pcom-i3,2017-18,Methuen - Tenney Grammar School,1810055,0.7,0,0.9,98.4,0,0,0,88.3,11.7,139.4 +1,1,a-pcom-i3,2017-18,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,0,100,0,0,0,92,8,64.8 +1,1,a-pcom-i3,2017-18,Middleborough - John T. Nichols Middle,1820305,0,0,0,100,0,0,0,81,19,77.2 +1.25,1.25,a-pcom-i3,2017-18,Middleborough - Mary K. Goode Elementary School,1820010,1.3,0,0,96,1.3,0,1.3,93,7,74.6 +1,1,a-pcom-i3,2017-18,Middleborough - Memorial Early Childhood Center,1820011,0,0,0,100,0,0,0,99.5,0.5,41.8 +1,1,a-pcom-i3,2017-18,Middleborough - Middleborough High,1820505,1.1,1.1,0,97.9,0,0,0,60.6,39.4,94.4 +1,1,a-pcom-i3,2017-18,Middleton - Fuller Meadow,1840003,0,0,0,100,0,0,0,99.7,0.3,46.5 +1,1,a-pcom-i3,2017-18,Middleton - Howe-Manning,1840005,0,0,0,100,0,0,0,90.4,9.6,79 +1.3125,1.31,a-pcom-i3,2017-18,Milford - Brookside,1850065,1.2,0,3,95.8,0,0,0,96.7,3.3,84.1 +1.125,1.12,a-pcom-i3,2017-18,Milford - Memorial,1850010,0,0,3.6,96.4,0,0,0,93.9,6.1,69.1 +2.0625,2.06,a-pcom-i3,2017-18,Milford - Milford High,1850505,0,0.8,5.9,93.4,0,0,0,63.7,36.3,133.3 +1,1,a-pcom-i3,2017-18,Milford - Shining Star Early Childhood Center,1850075,0,0,0,100,0,0,0,97.1,2.9,34.3 +1,1,a-pcom-i3,2017-18,Milford - Stacy Middle,1850305,0,0,1.6,97.5,0,0,0.8,75.6,24.4,121.5 +1.59375,1.59,a-pcom-i3,2017-18,Milford - Woodland,1850090,0,1.7,3.4,94.9,0,0,0,86.5,13.5,118.5 +1,1,a-pcom-i3,2017-18,Millbury - Elmwood Street,1860017,0,1.1,0,98.9,0,0,0,96,4,74.8 +1,1,a-pcom-i3,2017-18,Millbury - Millbury Junior/Senior High,1860505,0,1,0,98.1,0,0,1,61.2,38.8,103.2 +2.28125,2.28,a-pcom-i3,2017-18,Millbury - Raymond E. Shaw Elementary,1860025,1.8,1.8,0,92.7,0,0,3.7,81.7,18.3,54.5 +1,1,a-pcom-i3,2017-18,Millis - Clyde F Brown,1870005,0,0,1.5,98.5,0,0,0,93.3,6.7,64.9 +1,1,a-pcom-i3,2017-18,Millis - Millis High School,1870505,0,0,2.5,97.5,0,0,0,56.8,43.2,40.4 +1,1,a-pcom-i3,2017-18,Millis - Millis Middle,1870020,0,0.9,2.1,97,0,0,0,83.6,16.4,47 +3.3125,3.31,a-pcom-i3,2017-18,Milton - Charles S Pierce Middle,1890410,7.7,0,2.9,89.4,0,0,0,73.9,26.1,103.4 +2.78125,2.78,a-pcom-i3,2017-18,Milton - Collicot,1890005,4.8,2.4,1.7,91.1,0,0,0,98.7,1.3,83.2 +2,2,a-pcom-i3,2017-18,Milton - Cunningham School,1890007,4.8,0,1.6,93.6,0,0,0,91.5,8.5,62.3 +2.09375,2.09,a-pcom-i3,2017-18,Milton - Glover,1890010,5,0,0,93.3,1.7,0,0,94.1,5.9,59.7 +3.59375,3.59,a-pcom-i3,2017-18,Milton - Milton High,1890505,6.6,1.6,1.6,88.5,0,0.8,0.8,64.3,35.7,122 +7.0625,5,a-pcom-i3,2017-18,Milton - Tucker,1890020,15.8,6.8,0,77.4,0,0,0,92.1,7.9,44.2 +1,1,a-pcom-i3,2017-18,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,1.7,0.9,97,0,0.4,0,56.3,43.7,117.4 +1,1,a-pcom-i3,2017-18,Mohawk Trail - Buckland-Shelburne Regional,7170005,0,0,1.8,98.2,0,0,0,96.8,3.2,56.7 +1,1,a-pcom-i3,2017-18,Mohawk Trail - Colrain Central,7170010,0,0,0,100,0,0,0,94.4,5.6,28.7 +1,1,a-pcom-i3,2017-18,Mohawk Trail - Mohawk Trail Regional High,7170505,0,0,0,97.4,1.3,0,1.3,67.2,32.8,76.9 +1,1,a-pcom-i3,2017-18,Mohawk Trail - Sanderson Academy,7170020,0,0,0,100,0,0,0,100,0,28.4 +1,1,a-pcom-i3,2017-18,Monomoy Regional School District - Chatham Elementary School,7120001,0,0,0,100,0,0,0,97.7,2.3,44.1 +1.0625,1.06,a-pcom-i3,2017-18,Monomoy Regional School District - Harwich Elementary School,7120002,0,1.1,0,96.6,0,0,2.3,94.3,5.7,87.7 +1.375,1.38,a-pcom-i3,2017-18,Monomoy Regional School District - Monomoy Regional High School,7120515,0,2.2,1.1,95.6,0,0,1.1,68.3,31.7,91.4 +1,1,a-pcom-i3,2017-18,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,1.5,98.5,0,0,0,80.3,19.7,67.3 +1,1,a-pcom-i3,2017-18,Monson - Granite Valley Middle,1910310,0,0,2.1,97.9,0,0,0,76.3,23.7,47.5 +1,1,a-pcom-i3,2017-18,Monson - Monson High School,1910505,0,0,0,100,0,0,0,71.9,28.1,44.5 +1,1,a-pcom-i3,2017-18,Monson - Quarry Hill Community School,1910025,0,0,0,98.4,0,1.6,0,92.6,7.4,64 +1.71875,1.72,a-pcom-i3,2017-18,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,1.1,0,3.3,94.5,1.1,0,0,57.7,42.3,181.3 +1.9375,1.94,a-pcom-i3,2017-18,Mount Greylock - Mt Greylock Regional High,7150505,0,1.2,5,93.8,0,0,0,57.7,42.3,80.4 +2.34375,2.34,a-pcom-i3,2017-18,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0.7,2.7,2.7,92.5,0,0,1.4,74,26,146 +1,1,a-pcom-i3,2017-18,Nahant - Johnson,1960010,0,0,0,100,0,0,0,88.6,11.4,21 +1,1,a-pcom-i3,2017-18,Nantucket - Cyrus Peirce,1970010,0,0.7,0,97.2,0,0,2.1,81.6,18.4,47.7 +1,1,a-pcom-i3,2017-18,Nantucket - Nantucket Elementary,1970005,0,0,1.1,98.9,0,0,0,97.3,2.7,55.2 +2.53125,2.53,a-pcom-i3,2017-18,Nantucket - Nantucket High,1970505,0,2.4,5.7,91.9,0,0,0,69.5,30.5,70.1 +1,1,a-pcom-i3,2017-18,Nantucket - Nantucket Intermediate School,1970020,0,0,0,100,0,0,0,88.6,11.4,48.4 +1,1,a-pcom-i3,2017-18,Narragansett - Baldwinville Elementary,7200005,0,0,0,100,0,0,0,95.1,4.9,25.7 +1,1,a-pcom-i3,2017-18,Narragansett - Narragansett Middle,7200305,0,0,0,100,0,0,0,73.7,26.3,45.4 +1.4375,1.44,a-pcom-i3,2017-18,Narragansett - Narragansett Regional High,7200505,0,2.3,2.3,95.4,0,0,0,74,26,43.8 +1,1,a-pcom-i3,2017-18,Narragansett - Phillipston Memorial,7200003,0,0,0,100,0,0,0,100,0,24.7 +1,1,a-pcom-i3,2017-18,Narragansett - Templeton Center,7200020,0,0,0,100,0,0,0,96.7,3.3,22.6 +1,1,a-pcom-i3,2017-18,Nashoba - Center School,7250020,0,0,0,100,0,0,0,95.6,4.4,63 +1,1,a-pcom-i3,2017-18,Nashoba - Florence Sawyer School,7250025,0,0,1,99,0,0,0,86.4,13.6,97.3 +1,1,a-pcom-i3,2017-18,Nashoba - Hale,7250310,0,2.9,0,97.1,0,0,0,85.3,14.7,34 +1,1,a-pcom-i3,2017-18,Nashoba - Luther Burbank Middle School,7250305,2.3,0,0,97.7,0,0,0,82.4,17.6,42.7 +1,1,a-pcom-i3,2017-18,Nashoba - Mary Rowlandson Elementary,7250010,0,0,1.5,97,0,0,1.5,90.2,9.8,66.2 +1,1,a-pcom-i3,2017-18,Nashoba - Nashoba Regional,7250505,0,1.7,0,98.3,0,0,0,63.6,36.4,120.4 +1,1,a-pcom-i3,2017-18,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,1.1,0,1.1,97.7,0,0,0,47.7,52.3,88 +1,1,a-pcom-i3,2017-18,Natick - Bennett-Hemenway,1980005,0,2.5,0,97.5,0,0,0,87.5,12.5,80.8 +1,1,a-pcom-i3,2017-18,Natick - Brown,1980010,0,0.9,0,99.1,0,0,0,91.4,8.6,66 +1.71875,1.72,a-pcom-i3,2017-18,Natick - J F Kennedy Middle School,1980305,1.2,1.8,1.2,94.5,1.2,0,0,79.7,20.3,81.3 +1,1,a-pcom-i3,2017-18,Natick - Johnson,1980031,0,2,0,98,0,0,0,92.8,7.2,33.4 +1.28125,1.28,a-pcom-i3,2017-18,Natick - Lilja Elementary,1980035,2.1,2.1,0,95.9,0,0,0,95.7,4.3,48.4 +1,1,a-pcom-i3,2017-18,Natick - Memorial,1980043,0,0,0,100,0,0,0,93.1,6.9,49.1 +1.21875,1.22,a-pcom-i3,2017-18,Natick - Natick High,1980505,0.7,3.2,0,96.1,0,0,0,72.8,27.2,206.7 +1,1,a-pcom-i3,2017-18,Natick - Wilson Middle,1980310,1.2,1.2,0.8,96.9,0,0,0,79.5,20.5,127.3 +1.03125,1.03,a-pcom-i3,2017-18,Nauset - Nauset Regional High,6600505,0.8,0.6,0.3,96.7,0.8,0.8,0,67.8,32.2,123 +1.09375,1.09,a-pcom-i3,2017-18,Nauset - Nauset Regional Middle,6600305,0,0.3,2.1,96.5,0,0,1.1,84.2,15.8,95 +1.09375,1.09,a-pcom-i3,2017-18,Needham - Broadmeadow,1990005,1.9,1.6,0,96.5,0,0,0,95.6,4.4,62.7 +1,1,a-pcom-i3,2017-18,Needham - High Rock School,1990410,0.5,0,0,97.9,0,0,1.6,77.7,22.3,64.3 +2.40625,2.41,a-pcom-i3,2017-18,Needham - Hillside Elementary,1990035,2.6,4.6,0,92.3,0,0,0.5,87.5,12.5,64.9 +2.78125,2.78,a-pcom-i3,2017-18,Needham - John Eliot,1990020,0.4,4.6,1.9,91.1,0,0,1.9,88.1,11.9,51.7 +2.96875,2.97,a-pcom-i3,2017-18,Needham - Needham High,1990505,3.3,2.5,1.5,90.5,0,0,2.2,64.2,35.8,183.3 +2.40625,2.41,a-pcom-i3,2017-18,Needham - Newman Elementary,1990050,3,2.5,2.2,92.3,0,0,0,92.5,7.5,119.3 +1.6875,1.69,a-pcom-i3,2017-18,Needham - Pollard Middle,1990405,2.3,0.5,1.7,94.6,0,0,0.9,75.5,24.5,116.5 +2.03125,2.03,a-pcom-i3,2017-18,Needham - William Mitchell,1990040,1.3,0,3.8,93.5,0,0,1.3,86.5,13.5,52 +11.34375,5,a-pcom-i3,2017-18,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,18.9,4.4,9.4,63.7,0,0,3.6,75.6,24.4,68.9 +1.84375,1.84,a-pcom-i3,2017-18,New Bedford - Abraham Lincoln,2010095,3,0,3,94.1,0,0,0,89.6,10.4,67.3 +4.5,4.5,a-pcom-i3,2017-18,New Bedford - Alfred J Gomes,2010063,9.2,0,3.9,85.6,0,0,1.3,93.1,6.9,76.3 +1,1,a-pcom-i3,2017-18,New Bedford - Betsey B Winslow,2010140,0.9,0,1.8,97.2,0,0,0,98.1,1.9,28 +1.4375,1.44,a-pcom-i3,2017-18,New Bedford - Carlos Pacheco,2010105,4.6,0,0,95.4,0,0,0,93.1,6.9,43.5 +2.5,2.5,a-pcom-i3,2017-18,New Bedford - Casimir Pulaski,2010123,2.7,0,4.3,92,0,0,1.1,91.5,8.5,94.3 +1,1,a-pcom-i3,2017-18,New Bedford - Charles S Ashley,2010010,0,0,1.7,98.3,0,0,0,91.4,8.6,28.7 +1,1,a-pcom-i3,2017-18,New Bedford - Elizabeth Carter Brooks,2010015,0,0,0,100,0,0,0,83,17,21.9 +6.15625,5,a-pcom-i3,2017-18,New Bedford - Ellen R Hathaway,2010075,3.3,0,13.2,80.3,3.3,0,0,88.4,11.6,30.4 +2.28125,2.28,a-pcom-i3,2017-18,New Bedford - Elwyn G Campbell,2010020,0,0,0,92.7,4.9,0,2.4,96.3,3.7,41.1 +7.3125,5,a-pcom-i3,2017-18,New Bedford - Hayden/McFadden,2010078,6.9,0,13.8,76.6,0.9,0,1.8,92.6,7.4,108.8 +2.0625,2.06,a-pcom-i3,2017-18,New Bedford - Irwin M. Jacobs Elementary School,2010070,3.3,0,3.3,93.4,0,0,0,85.1,14.9,30.2 +1,1,a-pcom-i3,2017-18,New Bedford - James B Congdon,2010040,0,0,0,100,0,0,0,93.5,6.5,34.5 +1.40625,1.41,a-pcom-i3,2017-18,New Bedford - Jireh Swift,2010130,0,0,0,95.5,4.5,0,0,93.4,6.6,22 +4.21875,4.22,a-pcom-i3,2017-18,New Bedford - John Avery Parker,2010115,2.7,0,10.8,86.5,0,0,0,86.5,13.5,36.9 +2.1875,2.19,a-pcom-i3,2017-18,New Bedford - John B Devalles,2010050,4.4,0,2.5,93,0,0,0,83.5,16.5,39.2 +5.59375,5,a-pcom-i3,2017-18,New Bedford - Keith Middle School,2010405,12.2,0.9,2.8,82.1,0,0,1.9,67.5,32.5,106.4 +5.65625,5,a-pcom-i3,2017-18,New Bedford - New Bedford High,2010505,6.6,1.8,7.7,81.9,0.4,0.4,1.1,65.6,34.4,271.2 +2.625,2.63,a-pcom-i3,2017-18,New Bedford - Normandin Middle School,2010410,1.7,0,5,91.6,0,0,1.7,68.6,31.4,119.6 +6,5,a-pcom-i3,2017-18,New Bedford - Renaissance Community School for the Arts,2010124,16,0,0,80.8,0,0,3.2,93.6,6.4,31.3 +6.0625,5,a-pcom-i3,2017-18,New Bedford - Roosevelt Middle School,2010415,5.8,1,8.7,80.6,1,0,2.9,73.8,26.2,103 +4.78125,4.78,a-pcom-i3,2017-18,New Bedford - Sgt Wm H Carney Academy,2010045,10.2,0,4.1,84.7,0,0,1,90.8,9.2,98.1 +1,1,a-pcom-i3,2017-18,New Bedford - Thomas R Rodman,2010125,0,0,0,100,0,0,0,82.9,17.1,19.3 +4.84375,4.84,a-pcom-i3,2017-18,New Bedford - Trinity Day Academy,2010510,7.7,0,7.7,84.5,0,0,0,48.5,51.5,25.8 +8.5625,5,a-pcom-i3,2017-18,New Bedford - Whaling City Junior/Senior High School,2010515,16.4,0,5.5,72.6,0,0,5.5,57.8,42.2,36.5 +1,1,a-pcom-i3,2017-18,New Bedford - William H Taylor,2010135,0,0,0,100,0,0,0,97.9,2.1,22.4 +9,5,a-pcom-i3,2017-18,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,26,0,2.7,71.2,0,0,0,61.6,38.4,36.5 +2.125,2.12,a-pcom-i3,2017-18,New Salem-Wendell - Swift River,7280015,0,0,2.9,93.2,0,0,3.9,94.3,5.7,34.7 +1,1,a-pcom-i3,2017-18,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,100,0,0,0,91.2,8.8,47.2 +1,1,a-pcom-i3,2017-18,Newburyport - Francis T Bresnahan Elementary,2040005,0,0,0,100,0,0,0,95.8,4.2,101 +1,1,a-pcom-i3,2017-18,Newburyport - Newburyport High,2040505,1,1,0,97.9,0,0,0,74.5,25.5,95.8 +1.40625,1.41,a-pcom-i3,2017-18,Newburyport - Rupert A Nock Middle,2040305,1.5,1.5,1.5,95.5,0,0,0,72.3,27.7,66.7 +2.84375,2.84,a-pcom-i3,2017-18,Newton - A E Angier,2070005,5,1.1,1.3,90.9,0,0,1.8,89,11,77.9 +4.15625,4.16,a-pcom-i3,2017-18,Newton - Bigelow Middle,2070305,2.3,2.7,5.7,86.7,0,0,2.7,71.3,28.7,88.3 +8.375,5,a-pcom-i3,2017-18,Newton - Bowen,2070015,8.1,9.6,5.8,73.2,0,0,3.2,93.5,6.5,61.7 +5.40625,5,a-pcom-i3,2017-18,Newton - C C Burr,2070020,4.1,8.2,4.9,82.7,0,0,0,90.8,9.2,60.8 +4,4,a-pcom-i3,2017-18,Newton - Cabot,2070025,1,6.8,3.2,87.2,0,1.7,0,86.3,13.7,58 +2.96875,2.97,a-pcom-i3,2017-18,Newton - Charles E Brown Middle,2070310,1.6,2.3,3.2,90.5,0,0.8,1.6,73.2,26.8,125.5 +1.15625,1.16,a-pcom-i3,2017-18,Newton - Countryside,2070040,2.3,0.1,0,96.3,0,0,1.3,87,13,79.6 +3.0625,3.06,a-pcom-i3,2017-18,Newton - F A Day Middle,2070315,1.4,4.7,2.3,90.2,0,0,1.4,68.7,31.3,141.6 +4,4,a-pcom-i3,2017-18,Newton - Franklin,2070055,6.3,5,1.5,87.2,0,0,0,88,12,67.4 +5.5,5,a-pcom-i3,2017-18,Newton - Horace Mann,2070075,8.8,6.6,0,82.4,0,0,2.3,87.1,12.9,64.5 +1.96875,1.97,a-pcom-i3,2017-18,Newton - John Ward,2070120,1.9,1.9,2.5,93.7,0,0,0,90.2,9.8,52.3 +3.75,3.75,a-pcom-i3,2017-18,Newton - Lincoln-Eliot,2070070,0,1.5,9,88,0,0,1.5,92.5,7.5,66.9 +2.4375,2.44,a-pcom-i3,2017-18,Newton - Mason-Rice,2070080,0,5.7,2.1,92.2,0,0,0,83.3,16.7,64 +4.21875,4.22,a-pcom-i3,2017-18,Newton - Memorial Spaulding,2070105,4.2,5,4.3,86.5,0,0,0,89.3,10.7,73.3 +2.8125,2.81,a-pcom-i3,2017-18,Newton - Newton Early Childhood Center,2070108,2.7,4,2.4,91,0,0,0,100,0,72.9 +3.9375,3.94,a-pcom-i3,2017-18,Newton - Newton North High,2070505,4.1,4.5,2.3,87.4,0,0,1.7,62.1,37.9,330 +5,5,a-pcom-i3,2017-18,Newton - Newton South High,2070510,2.7,5.9,4.8,84,0,0,2.6,64.1,35.9,269.4 +3.6875,3.69,a-pcom-i3,2017-18,Newton - Oak Hill Middle,2070320,2.1,4.4,4.2,88.2,0,0,1.1,71.3,28.7,95.1 +3,3,a-pcom-i3,2017-18,Newton - Peirce,2070100,4,0,3.1,90.4,0,0,2.5,93,7,40.4 +3.28125,3.28,a-pcom-i3,2017-18,Newton - Underwood,2070115,4.1,2.3,4.2,89.5,0,0,0,84.5,15.5,44.3 +3.5,3.5,a-pcom-i3,2017-18,Newton - Williams,2070125,0.2,6.8,0,88.8,0,0,4.2,87.6,12.4,47.8 +3.53125,3.53,a-pcom-i3,2017-18,Newton - Zervas,2070130,2.4,5.2,3.7,88.7,0,0,0,85.6,14.4,81.1 +1,1,a-pcom-i3,2017-18,Norfolk - Freeman-Kennedy School,2080005,0,0,0,100,0,0,0,90.4,9.6,62.2 +1,1,a-pcom-i3,2017-18,Norfolk - H Olive Day,2080015,0,0,0,98.7,0,1.3,0,96.6,3.4,78.6 +1,1,a-pcom-i3,2017-18,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,100,0,0,0,63.8,36.2,77.4 +1,1,a-pcom-i3,2017-18,North Adams - Brayton,2090035,0,0,0,100,0,0,0,77.5,22.5,62.2 +1,1,a-pcom-i3,2017-18,North Adams - Colegrove Park Elementary,2090008,0,0,0,100,0,0,0,89.8,10.2,59 +1,1,a-pcom-i3,2017-18,North Adams - Drury High,2090505,0,0,1.2,98.8,0,0,0,69.6,30.4,80.5 +1,1,a-pcom-i3,2017-18,North Adams - Greylock,2090015,2.1,0,0,97.9,0,0,0,91.7,8.3,48.1 +1,1,a-pcom-i3,2017-18,North Andover - Annie L Sargent School,2110018,0,1.6,0,98.4,0,0,0,95.6,4.4,62.6 +1,1,a-pcom-i3,2017-18,North Andover - Atkinson,2110001,0,0,0,100,0,0,0,93.5,6.5,76.4 +1,1,a-pcom-i3,2017-18,North Andover - Franklin,2110010,0,0,0,100,0,0,0,97,3,65.7 +3.25,3.25,a-pcom-i3,2017-18,North Andover - Kittredge,2110015,0,5.2,5.2,89.6,0,0,0,84.6,15.4,38.6 +1,1,a-pcom-i3,2017-18,North Andover - North Andover High,2110505,0.8,1.5,0.8,96.9,0,0,0,62.8,37.2,124.1 +1,1,a-pcom-i3,2017-18,North Andover - North Andover Middle,2110305,0,0,0,100,0,0,0,75.7,24.3,108.9 +1,1,a-pcom-i3,2017-18,North Andover - Thomson,2110020,0,0,0,100,0,0,0,91.1,8.9,45.2 +1,1,a-pcom-i3,2017-18,North Attleborough - Amvet Boulevard,2120007,2.3,0,0,97.7,0,0,0,100,0,42.7 +1.5625,1.56,a-pcom-i3,2017-18,North Attleborough - Community,2120030,1.7,1.7,1.7,95,0,0,0,92.3,7.7,60 +1,1,a-pcom-i3,2017-18,North Attleborough - Falls,2120010,0,0,0,100,0,0,0,95.6,4.4,32.1 +1,1,a-pcom-i3,2017-18,North Attleborough - Joseph W Martin Jr Elementary,2120013,1.5,0,1.5,96.9,0,0,0,98.5,1.5,65 +1,1,a-pcom-i3,2017-18,North Attleborough - North Attleboro High,2120505,0.9,0.9,0.9,97.3,0,0,0,67.8,32.2,111.6 +1.4375,1.44,a-pcom-i3,2017-18,North Attleborough - North Attleborough Early Learning Center,2120020,2.8,0,1.8,95.4,0,0,0,100,0,28.2 +1,1,a-pcom-i3,2017-18,North Attleborough - North Attleborough Middle,2120305,0.9,0,1.8,97.3,0,0,0,74.1,25.9,112.1 +1,1,a-pcom-i3,2017-18,North Attleborough - Roosevelt Avenue,2120015,0,0,3,97,0,0,0,91.3,8.7,26.1 +1,1,a-pcom-i3,2017-18,North Brookfield - North Brookfield Elementary,2150015,0,2.3,0,97.7,0,0,0,86.4,13.6,44 +1,1,a-pcom-i3,2017-18,North Brookfield - North Brookfield High,2150505,0,0,0,100,0,0,0,70.1,29.9,33.5 +1.53125,1.53,a-pcom-i3,2017-18,North Middlesex - Ashby Elementary,7350010,0,0,2.5,95.1,0,2.5,0,98.5,1.5,40.6 +1,1,a-pcom-i3,2017-18,North Middlesex - Hawthorne Brook,7350030,0,0,0,100,0,0,0,75.2,24.8,58.6 +1.5,1.5,a-pcom-i3,2017-18,North Middlesex - Nissitissit Middle School,7350310,0,0.3,4.5,95.2,0,0,0,79.2,20.8,67.4 +1,1,a-pcom-i3,2017-18,North Middlesex - North Middlesex Regional,7350505,1.1,0,0,98.9,0,0,0,66.8,33.2,91.5 +1,1,a-pcom-i3,2017-18,North Middlesex - Peter Fitzpatrick School,7350515,0,0,0,100,0,0,0,64.4,35.6,5.9 +1,1,a-pcom-i3,2017-18,North Middlesex - Spaulding Memorial,7350005,0,0,0,100,0,0,0,91.2,8.8,57.1 +1,1,a-pcom-i3,2017-18,North Middlesex - Squannacook Early Childhood Center,7350002,0,0,0,100,0,0,0,98.9,1.1,18.6 +1,1,a-pcom-i3,2017-18,North Middlesex - Varnum Brook,7350035,0,1,0,97.7,0,0,1.3,94.6,5.4,78.2 +1,1,a-pcom-i3,2017-18,North Reading - E Ethel Little School,2170003,0,0,0,100,0,0,0,91.6,8.4,45.7 +1,1,a-pcom-i3,2017-18,North Reading - J Turner Hood,2170010,0,0,0,100,0,0,0,87.4,12.6,46 +1,1,a-pcom-i3,2017-18,North Reading - L D Batchelder,2170005,0,0,0.8,99.2,0,0,0,96.2,3.8,52.3 +1,1,a-pcom-i3,2017-18,North Reading - North Reading High,2170505,0,0,2.2,97.8,0,0,0,52.1,47.9,91.1 +1,1,a-pcom-i3,2017-18,North Reading - North Reading Middle,2170305,0,0,0,100,0,0,0,83.4,16.6,75.2 +2.6875,2.69,a-pcom-i3,2017-18,Northampton - Bridge Street,2100005,1.8,0,6.8,91.4,0,0,0,92.8,7.2,55.9 +6.84375,5,a-pcom-i3,2017-18,Northampton - Jackson Street,2100020,0,2,17.9,78.1,0,0,2,86.1,13.9,50.3 +2.46875,2.47,a-pcom-i3,2017-18,Northampton - John F Kennedy Middle School,2100410,2,1,3.9,92.1,1,0,0,76,24,101.4 +3.15625,3.16,a-pcom-i3,2017-18,Northampton - Leeds,2100025,2.1,2.1,5.9,89.9,0,0,0,93.7,6.3,47.6 +1.875,1.88,a-pcom-i3,2017-18,Northampton - Northampton High,2100505,3,0,3,94,0,0,0,62,38,99.5 +1.53125,1.53,a-pcom-i3,2017-18,Northampton - R. K. Finn Ryan Road,2100029,0,0,4.9,95.1,0,0,0,87.8,12.2,41 +1.4375,1.44,a-pcom-i3,2017-18,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,4.6,95.4,0,0,0,52.3,47.7,109 +1,1,a-pcom-i3,2017-18,Northboro-Southboro - Algonquin Regional High,7300505,0,0,2.1,97.3,0,0.6,0,72.7,27.3,177 +1,1,a-pcom-i3,2017-18,Northborough - Fannie E Proctor,2130015,0,0,0,100,0,0,0,88.6,11.4,48.3 +1,1,a-pcom-i3,2017-18,Northborough - Lincoln Street,2130003,0,0,2.2,97.8,0,0,0,92.7,7.3,45.3 +1,1,a-pcom-i3,2017-18,Northborough - Marguerite E Peaslee,2130014,0,0,0,100,0,0,0,97.4,2.6,38.2 +1,1,a-pcom-i3,2017-18,Northborough - Marion E Zeh,2130020,2.5,0,0,97.5,0,0,0,90.8,9.2,39.8 +1.34375,1.34,a-pcom-i3,2017-18,Northborough - Robert E. Melican Middle School,2130305,0,1.2,2.4,95.7,0,0.6,0,86.3,13.7,81.7 +1,1,a-pcom-i3,2017-18,Northbridge - Northbridge Elementary,2140005,0,0,0,97.8,0,0.7,1.4,95.8,4.2,69.1 +1,1,a-pcom-i3,2017-18,Northbridge - Northbridge High,2140505,0,0,0,100,0,0,0,62.4,37.6,75.2 +1,1,a-pcom-i3,2017-18,Northbridge - Northbridge Middle,2140305,0,0,2.3,97.7,0,0,0,77.2,22.8,86.2 +1,1,a-pcom-i3,2017-18,Northbridge - W Edward Balmer,2140001,0,0,1.5,97.8,0,0.7,0,95.9,4.1,68.9 +2.3125,2.31,a-pcom-i3,2017-18,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,2.5,1.2,3.7,92.6,0,0,0,49.7,50.3,159.7 +1,1,a-pcom-i3,2017-18,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,100,0,0,0,57.9,42.1,64.4 +1,1,a-pcom-i3,2017-18,Norton - Henri A. Yelle,2180060,0,0,0,100,0,0,0,92.3,7.7,43.2 +1,1,a-pcom-i3,2017-18,Norton - J C Solmonese,2180015,0,0,0,100,0,0,0,95.9,4.1,63.1 +1,1,a-pcom-i3,2017-18,Norton - L G Nourse Elementary,2180010,0,0,0,100,0,0,0,98.8,1.2,34.6 +1.15625,1.16,a-pcom-i3,2017-18,Norton - Norton High,2180505,0,0,3.7,96.3,0,0,0,72.6,27.4,82 +1,1,a-pcom-i3,2017-18,Norton - Norton Middle,2180305,0,0,1.4,98.6,0,0,0,75.7,24.3,70.6 +1,1,a-pcom-i3,2017-18,Norwell - Grace Farrar Cole,2190005,0,0,0,100,0,0,0,94.1,5.9,55.9 +1,1,a-pcom-i3,2017-18,Norwell - Norwell High,2190505,0,0,1.4,98.6,0,0,0,64,36,73.8 +1,1,a-pcom-i3,2017-18,Norwell - Norwell Middle School,2190405,0,0,0,100,0,0,0,77.7,22.3,67.4 +1,1,a-pcom-i3,2017-18,Norwell - William G Vinal,2190020,0,1.8,0,98.2,0,0,0,90.4,9.6,56.8 +3.28125,3.28,a-pcom-i3,2017-18,Norwood - Balch,2200005,0,2.6,5.3,89.5,2.6,0,0,95.5,4.5,37.9 +1,1,a-pcom-i3,2017-18,Norwood - Charles J Prescott,2200025,0,0,0,100,0,0,0,92.7,7.3,30 +1,1,a-pcom-i3,2017-18,Norwood - Cornelius M Callahan,2200010,0,0,0,100,0,0,0,86.8,13.2,32.5 +1,1,a-pcom-i3,2017-18,Norwood - Dr. Philip O. Coakley Middle School,2200305,1.1,0,2.2,96.8,0,0,0,70.6,29.4,93 +1,1,a-pcom-i3,2017-18,Norwood - F A Cleveland,2200015,0,0,2.2,97.8,0,0,0,96.1,3.9,46 +1,1,a-pcom-i3,2017-18,Norwood - George F. Willett,2200075,0,0,1.6,98.4,0,0,0,99.8,0.2,62.3 +1,1,a-pcom-i3,2017-18,Norwood - John P Oldham,2200020,0,0,0,97.2,0,2.8,0,83.9,16.1,35.3 +1,1,a-pcom-i3,2017-18,Norwood - Norwood High,2200505,0.9,0.9,0.9,97.3,0,0,0,66.2,33.8,109.4 +1.84375,1.84,a-pcom-i3,2017-18,Oak Bluffs - Oak Bluffs Elementary,2210005,1.9,0,1.6,94.1,0,0,2.4,92.2,7.8,81.9 +1,1,a-pcom-i3,2017-18,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,1.2,0,97.5,0,0,1.2,58,42,81 +1,1,a-pcom-i3,2017-18,Old Rochester - Old Rochester Regional High,7400505,0,0,1.2,98.8,0,0,0,61.9,38.1,86.5 +1,1,a-pcom-i3,2017-18,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,100,0,0,0,71.5,28.5,59.7 +3.71875,3.72,a-pcom-i3,2017-18,Old Sturbridge Academy Charter Public School (District) - Old Sturbridge Academy Charter Public School,35150205,0,0,11.9,88.1,0,0,0,94.1,5.9,16.8 +1,1,a-pcom-i3,2017-18,Orange - Dexter Park,2230010,0,0,0,100,0,0,0,86.5,13.5,37.1 +1,1,a-pcom-i3,2017-18,Orange - Fisher Hill,2230015,0,0,2.1,97.9,0,0,0,95.9,4.1,48.7 +1,1,a-pcom-i3,2017-18,Orleans - Orleans Elementary,2240005,0,0,0,100,0,0,0,88.3,11.7,42.2 +1,1,a-pcom-i3,2017-18,Oxford - Alfred M Chaffee,2260010,0,0,0,100,0,0,0,97.6,2.4,41 +1,1,a-pcom-i3,2017-18,Oxford - Clara Barton,2260005,0,0,0,100,0,0,0,99.4,0.6,33.7 +1,1,a-pcom-i3,2017-18,Oxford - Oxford High,2260505,1.5,0,1.5,96.9,0,0,0,63,37,64.7 +1,1,a-pcom-i3,2017-18,Oxford - Oxford Middle,2260405,0,2.3,0,97.7,0,0,0,89.1,10.9,44 +1,1,a-pcom-i3,2017-18,Oxford - Project C.O.F.F.E.E.,2260305,0,0,0,100,0,0,0,45.5,54.5,11 +1,1,a-pcom-i3,2017-18,Palmer - Old Mill Pond,2270008,0,0,0,97.9,0,0,2.1,92.1,7.9,95.3 +1,1,a-pcom-i3,2017-18,Palmer - Palmer High,2270505,0,0,0,100,0,0,0,71.2,28.8,98.9 +1,1,a-pcom-i3,2017-18,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0.9,0,0,99.1,0,0,0,49.2,50.8,108.5 +18.1875,5,a-pcom-i3,2017-18,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,18.2,5.5,34.5,41.8,0,0,0,70.9,29.1,55 +1,1,a-pcom-i3,2017-18,Peabody - Captain Samuel Brown,2290005,0,0,0,100,0,0,0,95.8,4.2,68.6 +1.1875,1.19,a-pcom-i3,2017-18,Peabody - Center,2290015,0,2.5,1.3,96.2,0,0,0,96.4,3.6,40 +1,1,a-pcom-i3,2017-18,Peabody - J Henry Higgins Middle,2290305,0,0,0.7,99.3,0,0,0,73.7,26.3,144.5 +1,1,a-pcom-i3,2017-18,Peabody - John E Burke,2290007,0,0,2.6,97.4,0,0,0,97.8,2.2,39 +1,1,a-pcom-i3,2017-18,Peabody - John E. McCarthy,2290016,0,0,0,100,0,0,0,92.4,7.6,58.6 +1,1,a-pcom-i3,2017-18,Peabody - Peabody Veterans Memorial High,2290510,0,0.5,0.5,98.4,0,0,0.5,59.8,40.2,189.2 +1,1,a-pcom-i3,2017-18,Peabody - South Memorial,2290035,0,0,0,100,0,0,0,91.7,8.3,40.1 +1,1,a-pcom-i3,2017-18,Peabody - Thomas Carroll,2290010,0,0,0,100,0,0,0,91.3,8.7,58.2 +1,1,a-pcom-i3,2017-18,Peabody - West Memorial,2290045,0,0,0,100,0,0,0,95,5,38.6 +1,1,a-pcom-i3,2017-18,Peabody - William A Welch Sr,2290027,0,0,2.6,97.4,0,0,0,91.1,8.9,39 +4.84375,4.84,a-pcom-i3,2017-18,Pelham - Pelham Elementary,2300005,7.8,0,7.8,84.5,0,0,0,86.2,13.8,25.7 +1,1,a-pcom-i3,2017-18,Pembroke - Bryantville Elementary,2310003,0,0,0,100,0,0,0,94.1,5.9,51.3 +1,1,a-pcom-i3,2017-18,Pembroke - Hobomock Elementary,2310010,0,0,0,100,0,0,0,90.3,9.7,51.4 +1,1,a-pcom-i3,2017-18,Pembroke - North Pembroke Elementary,2310015,0,0,0,100,0,0,0,92.3,7.7,65 +1,1,a-pcom-i3,2017-18,Pembroke - Pembroke Community Middle School,2310305,0,0,0,100,0,0,0,83.7,16.3,49.1 +1,1,a-pcom-i3,2017-18,Pembroke - Pembroke High School,2310505,0,0,0,100,0,0,0,73.9,26.1,96.6 +1,1,a-pcom-i3,2017-18,Pentucket - Dr Frederick N Sweetsir,7450020,0,0,0,100,0,0,0,97.8,2.2,40.7 +1,1,a-pcom-i3,2017-18,Pentucket - Dr John C Page School,7450015,0,0,0,99.4,0,0,0.6,92.7,7.3,49.2 +1,1,a-pcom-i3,2017-18,Pentucket - Elmer S Bagnall,7450005,0,0,0,99.5,0,0,0.5,95.8,4.2,62.5 +1.03125,1.03,a-pcom-i3,2017-18,Pentucket - Helen R Donaghue School,7450010,0,0,2.5,96.7,0,0,0.8,88.2,11.8,39.9 +1,1,a-pcom-i3,2017-18,Pentucket - Pentucket Regional Middle,7450405,0,0,0,97.9,0,0,2.1,71,29,48.4 +1,1,a-pcom-i3,2017-18,Pentucket - Pentucket Regional Sr High,7450505,0,0,1.2,98.5,0,0,0.3,61.6,38.4,86.2 +1,1,a-pcom-i3,2017-18,Petersham - Petersham Center,2340005,0,0,0,100,0,0,0,93.3,6.7,20.1 +21.84375,5,a-pcom-i3,2017-18,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,52.4,8.7,8.7,30.1,0,0,0,61.1,38.9,22.9 +14,5,a-pcom-i3,2017-18,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,11.2,11.2,22.4,55.2,0,0,0,74.3,25.7,26.8 +3.34375,3.34,a-pcom-i3,2017-18,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,2.9,3.2,3.5,89.3,0,0,1.2,79.7,20.3,86.4 +11.21875,5,a-pcom-i3,2017-18,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,11.4,22.1,2.4,64.1,0,0,0,61.2,38.8,41.5 +1,1,a-pcom-i3,2017-18,Pioneer Valley - Bernardston Elementary,7500006,0,0,0,100,0,0,0,97.2,2.8,32.3 +1,1,a-pcom-i3,2017-18,Pioneer Valley - Northfield Elementary,7500008,0,0,0,100,0,0,0,96.3,3.7,38.1 +1,1,a-pcom-i3,2017-18,Pioneer Valley - Pearl E Rhodes Elementary,7500007,0,0,0,100,0,0,0,86.8,13.2,14.7 +1,1,a-pcom-i3,2017-18,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,1.2,98.8,0,0,0,76.2,23.8,51.7 +1,1,a-pcom-i3,2017-18,Pioneer Valley - Warwick Community School,7500009,0,0,0,100,0,0,0,90.3,9.7,15 +13.375,5,a-pcom-i3,2017-18,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,2.3,39.3,0,57.2,0,0,1.1,80.3,19.7,87.5 +5.21875,5,a-pcom-i3,2017-18,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,4.6,1.5,7.7,83.3,0.6,0,2.3,60.1,39.9,65.1 +1,1,a-pcom-i3,2017-18,Pittsfield - Allendale,2360010,0,2.8,0,97.2,0,0,0,100,0,35.5 +1.625,1.63,a-pcom-i3,2017-18,Pittsfield - Crosby,2360065,2.2,0,2.4,94.8,0,0,0.6,91,9,89 +1,1,a-pcom-i3,2017-18,Pittsfield - Egremont,2360035,0,1.9,0.2,96.9,0,0,0.9,96.2,3.8,53.3 +1.71875,1.72,a-pcom-i3,2017-18,Pittsfield - John T Reid Middle,2360305,0,1.3,1.8,94.5,0,0,2.5,68.6,31.4,79.6 +2.34375,2.34,a-pcom-i3,2017-18,Pittsfield - Morningside Community School,2360055,1.5,1.5,1.5,92.5,0,0,3,89.5,10.5,66.6 +2.5625,2.56,a-pcom-i3,2017-18,Pittsfield - Pittsfield High,2360505,5.2,0,3,91.8,0,0,0,66.3,33.7,134.8 +2,2,a-pcom-i3,2017-18,Pittsfield - Robert T. Capeless Elementary School,2360045,2.8,3.5,0,93.6,0,0,0,98.5,1.5,28.3 +1.625,1.63,a-pcom-i3,2017-18,Pittsfield - Silvio O Conte Community,2360105,1.7,0,1.7,94.8,0,0,1.7,92.1,7.9,57.2 +1,1,a-pcom-i3,2017-18,Pittsfield - Stearns,2360090,0,0,0.4,99.6,0,0,0,89.1,10.9,32.2 +1.0625,1.06,a-pcom-i3,2017-18,Pittsfield - Taconic High,2360510,1,0,1.4,96.6,0,0,1,61.9,38.1,103.5 +1,1,a-pcom-i3,2017-18,Pittsfield - Theodore Herberg Middle,2360310,1.2,0,0.5,98.3,0,0,0,72.5,27.5,82.5 +1,1,a-pcom-i3,2017-18,Pittsfield - Williams,2360100,0,0,0,97.6,0,0,2.4,94.1,5.9,42.3 +1,1,a-pcom-i3,2017-18,Plainville - Anna Ware Jackson,2380010,0,0,2.5,97.5,0,0,0,98.5,1.5,65.4 +1.9375,1.94,a-pcom-i3,2017-18,Plainville - Beatrice H Wood Elementary,2380005,0,2.6,1,93.8,0,0,2.6,95.4,4.6,39 +1,1,a-pcom-i3,2017-18,Plymouth - Cold Spring,2390005,0,0,0,100,0,0,0,94.1,5.9,34.1 +1,1,a-pcom-i3,2017-18,Plymouth - Federal Furnace School,2390011,0.9,0,1.6,97.6,0,0,0,88.2,11.8,64.1 +1,1,a-pcom-i3,2017-18,Plymouth - Hedge,2390010,0,0,1.7,98.3,0,0,0,93.2,6.8,32.3 +1,1,a-pcom-i3,2017-18,Plymouth - Indian Brook,2390012,0,0,1.6,97.6,0,0.9,0,90.1,9.9,64.5 +1,1,a-pcom-i3,2017-18,Plymouth - Manomet Elementary,2390015,0,1.3,1.6,97.1,0,0,0,97.3,2.7,37.4 +1,1,a-pcom-i3,2017-18,Plymouth - Nathaniel Morton Elementary,2390030,0,1.4,0,98.6,0,0,0,95.9,4.1,72.4 +1.28125,1.28,a-pcom-i3,2017-18,Plymouth - Plymouth Commun Intermediate,2390405,1.6,0.8,1.6,95.9,0,0,0,81.9,18.1,122.8 +1,1,a-pcom-i3,2017-18,Plymouth - Plymouth Early Childhood Center,2390003,0,0,0,100,0,0,0,96.7,3.3,30.4 +1,1,a-pcom-i3,2017-18,Plymouth - Plymouth North High,2390505,0,0.9,0.6,98.4,0,0,0,68.6,31.4,158.9 +1,1,a-pcom-i3,2017-18,Plymouth - Plymouth South High,2390515,0,2.2,0,97.8,0,0,0,66.3,33.7,157.4 +1,1,a-pcom-i3,2017-18,Plymouth - Plymouth South Middle,2390305,0,1.1,0,98.9,0,0,0,75.6,24.4,87.8 +1,1,a-pcom-i3,2017-18,Plymouth - South Elementary,2390046,1.2,0,1.2,97.6,0,0,0,93.9,6.1,82.2 +1,1,a-pcom-i3,2017-18,Plymouth - West Elementary,2390047,0,0,0,100,0,0,0,90.2,9.8,64.6 +1,1,a-pcom-i3,2017-18,Plympton - Dennett Elementary,2400010,0,0,0,100,0,0,0,96.8,3.2,31.2 +8.78125,5,a-pcom-i3,2017-18,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,14.3,4.5,8.1,71.9,0,0,1.2,78.2,21.8,156 +1,1,a-pcom-i3,2017-18,Provincetown - Provincetown Schools,2420020,0,0,0,97.4,0,0,2.6,80.2,19.8,39.1 +1.46875,1.47,a-pcom-i3,2017-18,Quabbin - Hardwick Elementary,7530005,4.7,0,0,95.3,0,0,0,96.7,3.3,21.2 +1.71875,1.72,a-pcom-i3,2017-18,Quabbin - Hubbardston Center,7530010,0,2.8,2.8,94.5,0,0,0,89,11,30.9 +4.78125,4.78,a-pcom-i3,2017-18,Quabbin - IB School of Quabbin,7530515,0,0,0,84.7,0,0,15.3,66.3,33.7,1.6 +1,1,a-pcom-i3,2017-18,Quabbin - New Braintree Grade,7530020,0,0,0,100,0,0,0,94.6,5.4,12.9 +1,1,a-pcom-i3,2017-18,Quabbin - Oakham Center,7530025,0,0,0,100,0,0,0,84.2,15.8,12 +1.5625,1.56,a-pcom-i3,2017-18,Quabbin - Quabbin Regional High School,7530505,0,1.3,1.3,95,0,1.3,1,72.5,27.5,75.2 +1,1,a-pcom-i3,2017-18,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,100,0,0,0,82.4,17.6,44.3 +1,1,a-pcom-i3,2017-18,Quabbin - Ruggles Lane,7530030,1.6,0,1.6,96.8,0,0,0,94.5,5.5,61.8 +1,1,a-pcom-i3,2017-18,Quaboag Regional - Quaboag Regional High,7780505,0,0.6,0,99.4,0,0,0,68.1,31.9,53.9 +1,1,a-pcom-i3,2017-18,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,100,0,0,0,75.8,24.2,19.3 +1,1,a-pcom-i3,2017-18,Quaboag Regional - Warren Elementary,7780005,0,0.5,0,99.5,0,0,0,92.4,7.6,65.4 +1,1,a-pcom-i3,2017-18,Quaboag Regional - West Brookfield Elementary,7780010,0,0.8,0,99.2,0,0,0,95.3,4.7,42.1 +3.40625,3.41,a-pcom-i3,2017-18,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,0,8.3,0,89.1,0,0,2.5,100,0,39.5 +1,1,a-pcom-i3,2017-18,Quincy - Atherton Hough,2430040,0,2.3,0,97.7,0,0,0,94.3,5.7,43.8 +3.0625,3.06,a-pcom-i3,2017-18,Quincy - Atlantic Middle,2430305,0,7.4,0,90.2,0,0,2.3,75.6,24.4,43 +2.6875,2.69,a-pcom-i3,2017-18,Quincy - Beechwood Knoll Elementary,2430020,2.9,5.7,0,91.4,0,0,0,96.3,3.7,35 +1,1,a-pcom-i3,2017-18,Quincy - Broad Meadows Middle,2430310,0,0,0,97.8,0,0,2.2,78.9,21.1,45.6 +1,1,a-pcom-i3,2017-18,Quincy - Central Middle,2430315,0,1.7,0,98.3,0,0,0,75.8,24.2,57.7 +1,1,a-pcom-i3,2017-18,Quincy - Charles A Bernazzani Elementary,2430025,0,2.3,0,97.7,0,0,0,88.7,11.3,35.6 +1,1,a-pcom-i3,2017-18,Quincy - Clifford H Marshall Elementary,2430055,0,1.6,0,98.4,0,0,0,98.4,1.6,61.8 +5.90625,5,a-pcom-i3,2017-18,Quincy - Francis W Parker,2430075,0,16.6,0,81.1,0,0,2.4,94.6,5.4,42.2 +1,1,a-pcom-i3,2017-18,Quincy - Lincoln-Hancock Community School,2430035,0,0,0,100,0,0,0,94.4,5.6,57.2 +2.9375,2.94,a-pcom-i3,2017-18,Quincy - Merrymount,2430060,0,6.2,3.1,90.6,0,0,0,92.5,7.5,32 +3.4375,3.44,a-pcom-i3,2017-18,Quincy - Montclair,2430065,0,11,0,89,0,0,0,94.6,5.4,39.1 +2.53125,2.53,a-pcom-i3,2017-18,Quincy - North Quincy High,2430510,0,3.5,0,91.9,0,0,4.7,59.5,40.5,129 +1,1,a-pcom-i3,2017-18,Quincy - Point Webster Middle,2430325,0,2.5,0,97.5,0,0,0,71.7,28.3,40.5 +2.40625,2.41,a-pcom-i3,2017-18,Quincy - Quincy High,2430505,0,4.6,0.6,92.3,0.6,0,1.8,62.6,37.4,162.9 +1,1,a-pcom-i3,2017-18,Quincy - Reay E Sterling Middle,2430320,0,0,0,97.8,2.2,0,0,79.2,20.8,45.5 +1.8125,1.81,a-pcom-i3,2017-18,Quincy - Snug Harbor Community School,2430090,0.6,2.6,0,94.2,0,0,2.6,93.5,6.5,77.4 +1.15625,1.16,a-pcom-i3,2017-18,Quincy - Squantum,2430095,0,3.7,0,96.3,0,0,0,90.1,9.9,43.5 +2.6875,2.69,a-pcom-i3,2017-18,Quincy - Wollaston School,2430110,1.5,7.1,0,91.4,0,0,0,92.6,7.4,33.8 +1,1,a-pcom-i3,2017-18,Ralph C Mahar - Pathways Early College Innovation School,7550515,0,0,0,100,0,0,0,7.4,92.6,0.3 +1.65625,1.66,a-pcom-i3,2017-18,Ralph C Mahar - Ralph C Mahar Regional,7550505,1.1,1.1,3.2,94.7,0,0,0,70.4,29.6,94.6 +1,1,a-pcom-i3,2017-18,Ralph C Mahar - The Gateway to College,7550525,0,0,0,100,0,0,0,7.4,92.6,0.3 +4.5,4.5,a-pcom-i3,2017-18,Randolph - Elizabeth G Lyons Elementary,2440020,13.3,1.1,0,85.6,0,0,0,81.2,18.8,45.3 +6.28125,5,a-pcom-i3,2017-18,Randolph - J F Kennedy Elementary,2440018,11.2,2.2,4.5,79.9,0,0,2.2,87.7,12.3,89.4 +4.71875,4.72,a-pcom-i3,2017-18,Randolph - Margaret L Donovan,2440015,6.5,4.3,0,84.9,0,0,4.3,95.7,4.3,46.4 +5.40625,5,a-pcom-i3,2017-18,Randolph - Martin E Young Elementary,2440040,4.1,1,4.1,82.7,0,0,8.1,90.9,9.1,49.3 +11.03125,5,a-pcom-i3,2017-18,Randolph - Randolph Community Middle,2440410,25.8,4.6,3.7,64.7,1.2,0,0,76.4,23.6,86.5 +10.03125,5,a-pcom-i3,2017-18,Randolph - Randolph High,2440505,14.5,8.9,7.6,67.9,0,0,1.1,68.3,31.7,89 +1,1,a-pcom-i3,2017-18,Reading - Alice M Barrows,2460002,0,1.6,0.1,98.3,0,0,0,90.5,9.5,38.1 +1,1,a-pcom-i3,2017-18,Reading - Arthur W Coolidge Middle,2460305,0,1.5,0.1,98.4,0,0,0,84.8,15.2,64.9 +1,1,a-pcom-i3,2017-18,Reading - Birch Meadow,2460005,0,0,0,100,0,0,0,97.8,2.2,58.9 +1,1,a-pcom-i3,2017-18,Reading - J Warren Killam,2460017,0,0,0,100,0,0,0,98.2,1.8,47.7 +1,1,a-pcom-i3,2017-18,Reading - Joshua Eaton,2460010,0,0.8,0,97.1,0,0,2.1,95,5,47.4 +1,1,a-pcom-i3,2017-18,Reading - RISE PreSchool,2460001,0,0,0.9,99.1,0,0,0,100,0,22.7 +1,1,a-pcom-i3,2017-18,Reading - Reading Memorial High,2460505,0,0.8,0,98.4,0.9,0,0,68.7,31.3,117.3 +1,1,a-pcom-i3,2017-18,Reading - Walter S Parker Middle,2460310,0,0,1.5,98.5,0,0,0,79.1,20.9,66.3 +1,1,a-pcom-i3,2017-18,Reading - Wood End Elementary School,2460020,0,0,0,100,0,0,0,97.7,2.3,43.2 +1,1,a-pcom-i3,2017-18,Revere - A. C. Whelan Elementary School,2480003,0,0,1.4,98.6,0,0,0,94.8,5.2,73.4 +1,1,a-pcom-i3,2017-18,Revere - Abraham Lincoln,2480025,0,0,0,100,0,0,0,95.4,4.6,61.6 +1.78125,1.78,a-pcom-i3,2017-18,Revere - Beachmont Veterans Memorial School,2480013,1.9,0,3.8,94.3,0,0,0,88,12,52.8 +3.25,3.25,a-pcom-i3,2017-18,Revere - Garfield Elementary School,2480056,1.2,4.9,3.1,89.6,0,0,1.2,88.9,11.1,81.4 +1.9375,1.94,a-pcom-i3,2017-18,Revere - Garfield Middle School,2480057,0,4.4,1.8,93.8,0,0,0,57.5,42.5,56.5 +1,1,a-pcom-i3,2017-18,Revere - Paul Revere,2480050,0,0,1,99,0,0,0,95,5,50.5 +3.5,3.5,a-pcom-i3,2017-18,Revere - Revere High,2480505,2.3,1.7,4.6,88.8,0.9,0,1.7,70.5,29.5,174.7 +1.59375,1.59,a-pcom-i3,2017-18,Revere - Rumney Marsh Academy,2480014,1.5,0,3.6,94.9,0,0,0,75.3,24.7,68.8 +3.09375,3.09,a-pcom-i3,2017-18,Revere - Seacoast School,2480520,5,0,5,90.1,0,0,0,54.6,45.4,20.2 +1.78125,1.78,a-pcom-i3,2017-18,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,0,2.4,94.3,0,1.6,1.6,89.4,10.6,61.5 +1.25,1.25,a-pcom-i3,2017-18,Revere - Susan B. Anthony Middle School,2480305,0,0,4,96,0,0,0,68.6,31.4,63.1 +1.40625,1.41,a-pcom-i3,2017-18,Richmond - Richmond Consolidated,2490005,4.5,0,0,95.5,0,0,0,89.7,10.3,33.2 +2.4375,2.44,a-pcom-i3,2017-18,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,2.6,1.3,3.9,92.2,0,0,0,71.5,28.5,77.2 +1.4375,1.44,a-pcom-i3,2017-18,River Valley Charter (District) - River Valley Charter School,4820050,0,0,0,95.4,0,0,4.6,82.9,17.1,43.9 +1.0625,1.06,a-pcom-i3,2017-18,Rochester - Rochester Memorial,2500005,3.4,0,0,96.6,0,0,0,84.9,15.1,59.7 +1,1,a-pcom-i3,2017-18,Rockland - Jefferson Elementary School,2510060,0,0,0,100,0,0,0,99,1,48.3 +1,1,a-pcom-i3,2017-18,Rockland - John W Rogers Middle,2510305,1.3,0,0.1,98.6,0,0,0,87.1,12.9,77.3 +1,1,a-pcom-i3,2017-18,Rockland - Memorial Park,2510020,2,0,0,98,0,0,0,98,2,49.7 +1.3125,1.31,a-pcom-i3,2017-18,Rockland - R Stewart Esten,2510025,0,0,2.1,95.8,0,0,2.1,94.8,5.2,47.8 +1,1,a-pcom-i3,2017-18,Rockland - Rockland Senior High,2510505,0,0,2.3,97.7,0,0,0,71.9,28.1,81 +1,1,a-pcom-i3,2017-18,Rockport - Rockport Elementary,2520005,0,0,0,100,0,0,0,90.1,9.9,60.1 +1,1,a-pcom-i3,2017-18,Rockport - Rockport High,2520510,0,0,2.3,97.7,0,0,0,70.6,29.4,43.4 +1,1,a-pcom-i3,2017-18,Rockport - Rockport Middle,2520305,0,0,0,100,0,0,0,74.1,25.9,45.2 +2.03125,2.03,a-pcom-i3,2017-18,Rowe - Rowe Elementary,2530005,0,0,6.5,93.5,0,0,0,82.4,17.6,15.3 +13.6875,5,a-pcom-i3,2017-18,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,24.6,6.8,10.2,56.2,0,0,2.2,63.5,36.5,175.9 +7.40625,5,a-pcom-i3,2017-18,Sabis International Charter (District) - Sabis International Charter School,4410505,11.3,1.3,11,76.3,0,0,0,73.8,26.2,127.2 +1.15625,1.16,a-pcom-i3,2017-18,Salem - Bates,2580003,0.2,0.2,3.3,96.3,0,0,0,81.5,18.5,60.8 +1.4375,1.44,a-pcom-i3,2017-18,Salem - Carlton,2580015,0.2,0.2,4.2,95.4,0,0,0,91.3,8.7,47.9 +2.5625,2.56,a-pcom-i3,2017-18,Salem - Collins Middle,2580305,2,1,5.1,91.8,0,0,0,75.1,24.9,98.1 +2.5625,2.56,a-pcom-i3,2017-18,Salem - Horace Mann Laboratory,2580030,0.2,0.3,7.7,91.8,0,0,0,92.8,7.2,45.6 +5.34375,5,a-pcom-i3,2017-18,Salem - Nathaniel Bowditch,2580025,1.8,1.5,13.9,82.9,0,0,0,90.4,9.6,68.5 +6.1875,5,a-pcom-i3,2017-18,Salem - New Liberty Innovation School,2580510,0,0,19.8,80.2,0,0,0,74.2,25.8,12.6 +1,1,a-pcom-i3,2017-18,Salem - Salem Early Childhood,2580001,0,0,2.8,97.2,0,0,0,97.2,2.8,28.9 +2.71875,2.72,a-pcom-i3,2017-18,Salem - Salem High,2580505,1.2,0,7.5,91.3,0,0,0,63.4,36.6,173.3 +4.34375,4.34,a-pcom-i3,2017-18,Salem - Salem Prep High School,2580515,0,0,13.9,86.1,0,0,0,56.6,43.4,14.4 +1,1,a-pcom-i3,2017-18,Salem - Saltonstall School,2580050,0.3,0.2,2.5,97,0,0,0,88,12,60.9 +1,1,a-pcom-i3,2017-18,Salem - Witchcraft Heights,2580070,0.2,0.2,2.9,96.8,0,0,0,91.6,8.4,86.4 +6.25,5,a-pcom-i3,2017-18,Salem Academy Charter (District) - Salem Academy Charter School,4850485,4.6,0,13.8,80,0,1.5,0,64.2,35.8,65 +1,1,a-pcom-i3,2017-18,Sandwich - Forestdale School,2610002,0,1.8,1.2,97,0,0,0,95.8,4.2,106.2 +1,1,a-pcom-i3,2017-18,Sandwich - Oak Ridge,2610025,0,0,0.2,99.8,0,0,0,91.8,8.2,109.7 +1,1,a-pcom-i3,2017-18,Sandwich - Sandwich High,2610505,0,1.1,1.3,97.6,0,0,0,74.7,25.3,90.2 +1,1,a-pcom-i3,2017-18,Sandwich - Sandwich STEM Academy,2610305,0,0,1.4,96.8,0,0,1.8,76.4,23.6,54.6 +1,1,a-pcom-i3,2017-18,Saugus - Belmonte Saugus Middle,2620305,0,0,2.5,97.5,0,0,0,61.9,38.1,78.8 +1,1,a-pcom-i3,2017-18,Saugus - Douglas Waybright,2620067,0,0,0,100,0,0,0,89.9,10.1,31.6 +1,1,a-pcom-i3,2017-18,Saugus - Lynnhurst,2620040,0,0,0,100,0,0,0,96.3,3.7,30.2 +1,1,a-pcom-i3,2017-18,Saugus - Oaklandvale,2620050,0,0,0,100,0,0,0,94.5,5.5,25.1 +1.21875,1.22,a-pcom-i3,2017-18,Saugus - Saugus High,2620505,1.5,0,2.4,96.1,0,0,0,62.5,37.5,81.9 +1.34375,1.34,a-pcom-i3,2017-18,Saugus - Veterans Memorial,2620065,0,0,2.1,95.7,0,1.1,1.1,96.8,3.2,93.4 +2.625,2.63,a-pcom-i3,2017-18,Savoy - Emma L Miller Elementary School,2630010,0,0,8.4,91.6,0,0,0,99.2,0.8,12 +1,1,a-pcom-i3,2017-18,Scituate - Cushing Elementary,2640007,0,0,0,100,0,0,0,86.8,13.2,44 +1,1,a-pcom-i3,2017-18,Scituate - Gates Middle School,2640305,0,1.3,0,98.7,0,0,0,78.1,21.9,75.2 +1,1,a-pcom-i3,2017-18,Scituate - Hatherly Elementary,2640010,0,0,0,100,0,0,0,92.9,7.1,53.3 +1,1,a-pcom-i3,2017-18,Scituate - Jenkins Elementary School,2640015,0,0,0,100,0,0,0,93.6,6.4,54.9 +1,1,a-pcom-i3,2017-18,Scituate - Scituate High School,2640505,0,1.9,0,98.1,0,0,0,68.9,31.1,103.8 +1,1,a-pcom-i3,2017-18,Scituate - Wampatuck Elementary,2640020,0,0,0,100,0,0,0,96.6,3.4,58.5 +1,1,a-pcom-i3,2017-18,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,1.5,1.5,0,97.1,0,0,0,81,19,68.5 +1,1,a-pcom-i3,2017-18,Seekonk - George R Martin,2650007,0,0,0,98.3,0,0,1.7,92.8,7.2,58.4 +1,1,a-pcom-i3,2017-18,Seekonk - Mildred Aitken School,2650015,0,0,0,100,0,0,0,95.7,4.3,51 +1,1,a-pcom-i3,2017-18,Seekonk - Seekonk High,2650505,0,0,0,100,0,0,0,68.4,31.6,75.2 +8.375,5,a-pcom-i3,2017-18,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,11.2,1.1,13.4,73.2,1.1,0,0,79.9,20.1,89.4 +1.15625,1.16,a-pcom-i3,2017-18,Sharon - Cottage Street,2660005,1.7,2.1,0,96.3,0,0,0,90.3,9.7,48.1 +1,1,a-pcom-i3,2017-18,Sharon - East Elementary,2660010,0,0,0,100,0,0,0,93.1,6.9,43.9 +1.71875,1.72,a-pcom-i3,2017-18,Sharon - Heights Elementary,2660015,4.1,1.4,0,94.5,0,0,0,91.3,8.7,72.3 +1,1,a-pcom-i3,2017-18,Sharon - Sharon Early Childhood Center,2660001,0,0,0,100,0,0,0,100,0,18.8 +1.21875,1.22,a-pcom-i3,2017-18,Sharon - Sharon High,2660505,0,2.3,0.8,96.1,0.8,0,0,68.2,31.8,128.2 +1.3125,1.31,a-pcom-i3,2017-18,Sharon - Sharon Middle,2660305,0,3.2,1.1,95.8,0,0,0,78.8,21.2,94.4 +1,1,a-pcom-i3,2017-18,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,1.4,98.1,0,0.5,0,60.7,39.3,183.4 +1,1,a-pcom-i3,2017-18,Sherborn - Pine Hill,2690010,1.5,0,0,97.3,0,0,1.2,93.7,6.3,68.5 +1,1,a-pcom-i3,2017-18,Shrewsbury - Beal School,2710005,0,1.2,0,98.8,0,0,0,96,4,50.3 +1.59375,1.59,a-pcom-i3,2017-18,Shrewsbury - Calvin Coolidge,2710015,0,3.3,0,94.9,1.8,0,0,98.2,1.8,56.4 +1.6875,1.69,a-pcom-i3,2017-18,Shrewsbury - Floral Street School,2710020,0,3.3,0,94.6,1.1,0,1.1,96.1,3.9,91.8 +1.34375,1.34,a-pcom-i3,2017-18,Shrewsbury - Oak Middle School,2710030,0,2.4,1.8,95.7,0,0,0,80,20,109.4 +1,1,a-pcom-i3,2017-18,Shrewsbury - Parker Road Preschool,2710040,0,0,0,97.8,0,0,2.2,100,0,44.5 +2.65625,2.66,a-pcom-i3,2017-18,Shrewsbury - Sherwood Middle School,2710305,0.8,1.1,4.9,91.5,0,0,1.6,87.9,12.1,121.4 +1.96875,1.97,a-pcom-i3,2017-18,Shrewsbury - Shrewsbury Sr High,2710505,1.6,1.6,2.6,93.7,0,0,0.5,70.9,29.1,190.1 +1,1,a-pcom-i3,2017-18,Shrewsbury - Spring Street,2710035,0,0,0,100,0,0,0,96.8,3.2,51 +1.1875,1.19,a-pcom-i3,2017-18,Shrewsbury - Walter J Paton,2710025,0,1.9,1.9,96.2,0,0,0,96.2,3.8,52.9 +3.0625,3.06,a-pcom-i3,2017-18,Shutesbury - Shutesbury Elementary,2720005,0,3.1,3.1,90.2,0,0,3.7,90.8,9.2,32.7 +1,1,a-pcom-i3,2017-18,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,4770010,0,0,1.8,98.2,0,0,0,89.5,10.5,57 +1,1,a-pcom-i3,2017-18,Silver Lake - Silver Lake Regional High,7600505,0,0,0,100,0,0,0,69.6,30.4,138.8 +1,1,a-pcom-i3,2017-18,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,100,0,0,0,75.3,24.7,68.9 +2.25,2.25,a-pcom-i3,2017-18,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,1.8,5.3,92.8,0,0,0,71.3,28.7,54.2 +1,1,a-pcom-i3,2017-18,Somerset - Chace Street,2730005,1.8,0,0,98.2,0,0,0,95.5,4.5,54.6 +1,1,a-pcom-i3,2017-18,Somerset - North Elementary,2730008,0,0,0,100,0,0,0,95.5,4.5,58.9 +1,1,a-pcom-i3,2017-18,Somerset - Somerset Middle School,2730305,0,0,0,100,0,0,0,75.2,24.8,73.2 +1,1,a-pcom-i3,2017-18,Somerset - South,2730015,0,0,0,100,0,0,0,94,6,31.6 +1.03125,1.03,a-pcom-i3,2017-18,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,3.3,96.7,0,0,0,64.8,35.2,120.5 +4.84375,4.84,a-pcom-i3,2017-18,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,4.5,0,9.4,84.5,0,0,1.5,89.8,10.2,66.3 +5.8125,5,a-pcom-i3,2017-18,Somerville - Arthur D Healey,2740075,9.6,1.5,7.5,81.4,0,0,0,80.4,19.6,71 +1,1,a-pcom-i3,2017-18,Somerville - Benjamin G Brown,2740015,0,0,0,100,0,0,0,89.3,10.7,23.5 +4.75,4.75,a-pcom-i3,2017-18,Somerville - Capuano Early Childhood Center,2740005,2.9,1.6,9.2,84.8,0,0,1.6,95.2,4.8,63 +10.59375,5,a-pcom-i3,2017-18,Somerville - E Somerville Community,2740111,5,1.2,24,66.1,2.5,0,1.2,80.8,19.2,80.7 +2.09375,2.09,a-pcom-i3,2017-18,Somerville - Full Circle High School,2740510,0,0,6.7,93.3,0,0,0,60.1,39.9,14.9 +3.65625,3.66,a-pcom-i3,2017-18,Somerville - John F Kennedy,2740083,1.4,4.1,4.8,88.3,0,0,1.4,74.8,25.2,72.6 +3.4375,3.44,a-pcom-i3,2017-18,Somerville - Next Wave Junior High,2740410,0,11,0,89,0,0,0,76.7,23.3,9.1 +5.09375,5,a-pcom-i3,2017-18,Somerville - Somerville High,2740505,5.3,1.8,8.6,83.7,0,0,0.6,60.4,39.6,169.6 +6.125,5,a-pcom-i3,2017-18,Somerville - West Somerville Neighborhood,2740115,7.5,2.5,7.1,80.4,0,0,2.5,82.9,17.1,40 +3.53125,3.53,a-pcom-i3,2017-18,Somerville - Winter Hill Community,2740120,2.7,4,4.7,88.7,0,0,0,82.3,17.7,75.4 +1,1,a-pcom-i3,2017-18,South Hadley - Michael E. Smith Middle School,2780305,0,0,0,100,0,0,0,79.3,20.7,72.4 +1,1,a-pcom-i3,2017-18,South Hadley - Mosier,2780020,0,0,0,100,0,0,0,88.9,11.1,54 +1.1875,1.19,a-pcom-i3,2017-18,South Hadley - Plains Elementary,2780015,1.9,0,1.9,96.2,0,0,0,90.5,9.5,52.4 +1,1,a-pcom-i3,2017-18,South Hadley - South Hadley High,2780505,0,1.4,0,98.6,0,0,0,59.9,40.1,70.7 +2.09375,2.09,a-pcom-i3,2017-18,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0.8,0.8,5,93.3,0,0,0,48.2,51.8,119.9 +2.5,2.5,a-pcom-i3,2017-18,South Shore Charter Public (District) - South Shore Charter Public School,4880550,5.6,1.6,0.8,92,0,0,0,71.3,28.7,121.2 +1,1,a-pcom-i3,2017-18,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,1.1,98.9,0,0,0,48.7,51.3,87.2 +1.28125,1.28,a-pcom-i3,2017-18,Southampton - William E Norris,2750005,0,0,1.2,95.9,0,0,2.9,88.5,11.5,69.6 +1,1,a-pcom-i3,2017-18,Southborough - Albert S. Woodward Memorial School,2760050,0,0,0,97.8,0,2.2,0,95.5,4.5,44.8 +1,1,a-pcom-i3,2017-18,Southborough - Margaret A Neary,2760020,0,0,0,100,0,0,0,90.4,9.6,41.8 +1,1,a-pcom-i3,2017-18,Southborough - Mary E Finn School,2760008,0,0,2.7,97.3,0,0,0,91.1,8.9,75 +1,1,a-pcom-i3,2017-18,Southborough - P Brent Trottier,2760305,0,0,0,97.4,2.6,0,0,82.9,17.1,76.1 +4.5,4.5,a-pcom-i3,2017-18,Southbridge - Charlton Street,2770005,3.6,0,10.8,85.6,0,0,0,91,9,55.4 +2.3125,2.31,a-pcom-i3,2017-18,Southbridge - Eastford Road,2770010,0,0,7.4,92.6,0,0,0,93.5,6.5,53.9 +4.96875,4.97,a-pcom-i3,2017-18,Southbridge - Southbridge High School,2770515,2.5,0,13.4,84.1,0,0,0,51,49,79.7 +2.1875,2.19,a-pcom-i3,2017-18,Southbridge - Southbridge Middle School,2770315,1.3,0,5.7,93,0,0,0,70.6,29.4,76.6 +1,1,a-pcom-i3,2017-18,Southbridge - West Street,2770020,0,0,1.8,98.2,0,0,0,91.9,8.1,55.8 +3.84375,3.84,a-pcom-i3,2017-18,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,7.5,2.1,2.7,87.7,0,0,0,59,41,186.5 +2.4375,2.44,a-pcom-i3,2017-18,Southern Berkshire - Mt Everett Regional,7650505,3.1,1.6,1.6,92.2,0,0,1.6,61.5,38.5,64.4 +3.09375,3.09,a-pcom-i3,2017-18,Southern Berkshire - New Marlborough Central,7650018,0,0,3.7,90.1,6.2,0,0,79.6,20.4,16.2 +1,1,a-pcom-i3,2017-18,Southern Berkshire - Undermountain,7650035,0,0,1.9,98.1,0,0,0,92.6,7.4,63.2 +1,1,a-pcom-i3,2017-18,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,1.2,98.8,0,0,0,55.9,44.1,161 +1,1,a-pcom-i3,2017-18,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,0,0,100,0,0,0,89.2,10.8,65.1 +1.4375,1.44,a-pcom-i3,2017-18,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,2.8,95.4,0,0,1.9,73.1,26.9,107.7 +1,1,a-pcom-i3,2017-18,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,0,1.6,1.6,96.9,0,0,0,98.4,1.6,63.6 +1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,100,0,0,0,60.1,39.9,43.7 +1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - East Brookfield Elementary,7670008,0,0,0,100,0,0,0,93.5,6.5,39.8 +1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,98,0,0,2,78.5,21.5,49.1 +1,1,a-pcom-i3,2017-18,Spencer-E Brookfield - Wire Village School,7670040,0,0,0,100,0,0,0,93.7,6.3,65.1 +8.375,5,a-pcom-i3,2017-18,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,6.7,0,20.1,73.2,0,0,0,93.3,6.7,44.8 +4.78125,4.78,a-pcom-i3,2017-18,Springfield - Alice B Beal Elementary,2810175,9.2,3.1,3.1,84.7,0,0,0,93.9,6.1,32.7 +5.4375,5,a-pcom-i3,2017-18,Springfield - Arthur T Talmadge,2810165,5,2.5,9.9,82.6,0,0,0,95,5,40.2 +8.1875,5,a-pcom-i3,2017-18,Springfield - Balliet Middle School,2810360,16,0,10.3,73.8,0,0,0,58.8,41.2,19.5 +10.53125,5,a-pcom-i3,2017-18,Springfield - Brightwood,2810025,10.4,0,23.3,66.3,0,0,0,89.6,10.4,38.6 +8.59375,5,a-pcom-i3,2017-18,Springfield - Chestnut Academy,2810365,13.4,0,14.1,72.5,0,0,0,57.2,42.8,50.8 +15.90625,5,a-pcom-i3,2017-18,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,29.7,2.1,19.1,49.1,0,0,0,72.4,27.6,47.1 +11.53125,5,a-pcom-i3,2017-18,Springfield - Conservatory of the Arts,2810475,19.6,0,17.3,63.1,0,0,0,69.6,30.4,51.1 +3.9375,3.94,a-pcom-i3,2017-18,Springfield - Daniel B Brunton,2810035,5.4,0,7.2,87.4,0,0,0,94.6,5.4,55.6 +8.8125,5,a-pcom-i3,2017-18,Springfield - Early Childhood Education Center,2810001,15.4,0,12.8,71.8,0,0,0,100,0,39 +9.84375,5,a-pcom-i3,2017-18,Springfield - Edward P. Boland School,2810010,9.6,0,22,68.5,0,0,0,87.6,12.4,104.5 +12.09375,5,a-pcom-i3,2017-18,Springfield - Elias Brookings,2810030,23.2,1.9,13.6,61.3,0,0,0,92.2,7.8,51.5 +4.25,4.25,a-pcom-i3,2017-18,Springfield - Forest Park Middle,2810325,6.2,1.2,6.2,86.4,0,0,0,77.8,22.2,80.9 +16.28125,5,a-pcom-i3,2017-18,Springfield - Frank H Freedman,2810075,41.5,0,10.6,47.9,0,0,0,84.6,15.4,37.6 +5.375,5,a-pcom-i3,2017-18,Springfield - Frederick Harris,2810080,1.4,1.4,14.4,82.8,0,0,0,94.3,5.7,69.6 +31.25,5,a-pcom-i3,2017-18,Springfield - Gateway to College at Holyoke Community College,2810575,100,0,0,0,0,0,0,100,0,0.1 +31.25,5,a-pcom-i3,2017-18,Springfield - Gateway to College at Springfield Technical Community College,2810580,100,0,0,0,0,0,0,100,0,0.1 +10.78125,5,a-pcom-i3,2017-18,Springfield - German Gerena Community School,2810195,1.9,0,32.6,65.5,0,0,0,91.5,8.5,105.9 +5.78125,5,a-pcom-i3,2017-18,Springfield - Glenwood,2810065,4.9,0,13.6,81.5,0,0,0,97.3,2.7,36.8 +8.96875,5,a-pcom-i3,2017-18,Springfield - Glickman Elementary,2810068,9.3,0,19.4,71.3,0,0,0,94.6,5.4,51.6 +14.0625,5,a-pcom-i3,2017-18,Springfield - High School Of Commerce,2810510,20,1.3,23,55,0,0,0.7,65.7,34.3,152.1 +4.625,4.62,a-pcom-i3,2017-18,Springfield - Hiram L Dorman,2810050,9.9,0,4.9,85.2,0,0,0,92.6,7.4,40.6 +6.3125,5,a-pcom-i3,2017-18,Springfield - Homer Street,2810085,11.2,0,9,79.8,0,0,0,93.3,6.7,44.6 +15.90625,5,a-pcom-i3,2017-18,Springfield - Impact Prep at Chestnut,2810366,27.3,0,23.6,49.1,0,0,0,78.3,21.7,25.5 +5.375,5,a-pcom-i3,2017-18,Springfield - Indian Orchard Elementary,2810100,11.8,0,5.4,82.8,0,0,0,86.6,13.4,74.4 +13.625,5,a-pcom-i3,2017-18,Springfield - John F Kennedy Middle,2810328,25.4,5.4,9.1,56.4,0,1.8,1.9,70.9,29.1,55.1 +10.09375,5,a-pcom-i3,2017-18,Springfield - John J Duggan Middle,2810320,23.3,0.9,8.1,67.7,0,0,0,62.8,37.2,111.4 +5.40625,5,a-pcom-i3,2017-18,Springfield - Kensington International School,2810110,5.8,0,11.6,82.7,0,0,0,85.5,14.5,34.6 +8.78125,5,a-pcom-i3,2017-18,Springfield - Liberty,2810115,19.7,0,8.4,71.9,0,0,0,97.2,2.8,35.6 +13.40625,5,a-pcom-i3,2017-18,Springfield - Liberty Preparatory Academy,2810560,29.2,0,13.7,57.1,0,0,0,56.6,43.4,7.3 +9.90625,5,a-pcom-i3,2017-18,Springfield - Lincoln,2810120,11.5,0,20.2,68.3,0,0,0,88.5,11.5,43.6 +12.0625,5,a-pcom-i3,2017-18,Springfield - M Marcus Kiley Middle,2810330,21.3,0,17.3,61.4,0,0,0,66.6,33.4,75 +6.5625,5,a-pcom-i3,2017-18,Springfield - Margaret C Ells,2810060,11.7,0,9.3,79,0,0,0,95.3,4.7,42.8 +3.09375,3.09,a-pcom-i3,2017-18,Springfield - Mary A. Dryden Veterans Memorial School,2810125,4.9,0,4.9,90.1,0,0,0,92.6,7.4,40.6 +9.875,5,a-pcom-i3,2017-18,Springfield - Mary M Lynch,2810140,19,0,12.7,68.4,0,0,0,93.7,6.3,31.6 +5.9375,5,a-pcom-i3,2017-18,Springfield - Mary M Walsh,2810155,4.8,0,14.3,81,0,0,0,92.9,7.1,42.1 +8.71875,5,a-pcom-i3,2017-18,Springfield - Mary O Pottenger,2810145,8.6,0,19.3,72.1,0,0,0,93.6,6.4,46.6 +9.28125,5,a-pcom-i3,2017-18,Springfield - Milton Bradley School,2810023,4.3,0,25.4,70.3,0,0,0,92.9,7.1,70.1 +17.5,5,a-pcom-i3,2017-18,Springfield - Rebecca M Johnson,2810055,36,0,20,44,0,0,0,88.7,11.3,95.3 +11.46875,5,a-pcom-i3,2017-18,Springfield - Rise Academy at Van Sickle,2810480,13.3,3.3,20,63.3,0,0,0,73.3,26.7,30 +9.6875,5,a-pcom-i3,2017-18,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,11.4,3.7,15.9,69,0,0,0,53.6,46.4,188.5 +13.21875,5,a-pcom-i3,2017-18,Springfield - STEM Middle Academy,2810350,30.8,0,11.5,57.7,0,0,0,57.7,42.3,26 +8.53125,5,a-pcom-i3,2017-18,Springfield - Samuel Bowles,2810020,8.2,0,19.1,72.7,0,0,0,89.1,10.9,36.6 +13.9375,5,a-pcom-i3,2017-18,Springfield - South End Middle School,2810355,16.6,0,28.1,55.4,0,0,0,77.9,22.1,36.2 +7.9375,5,a-pcom-i3,2017-18,Springfield - Springfield Central High,2810500,11.1,2.8,11.6,74.6,0,0,0,55.4,44.6,216.1 +9.84375,5,a-pcom-i3,2017-18,Springfield - Springfield High School,2810570,27.6,0,3.9,68.5,0,0,0,60,40,25.9 +10.6875,5,a-pcom-i3,2017-18,Springfield - Springfield High School of Science and Technology,2810530,14.3,2.4,16.9,65.8,0,0.6,0,58.9,41.1,163.2 +13.90625,5,a-pcom-i3,2017-18,Springfield - Springfield Public Day Elementary School,2810005,29.8,0,14.7,55.5,0,0,0,92.6,7.4,27.1 +20.21875,5,a-pcom-i3,2017-18,Springfield - Springfield Public Day High School,2810550,43.7,0,21,35.3,0,0,0,76.1,23.9,33.4 +9.28125,5,a-pcom-i3,2017-18,Springfield - Springfield Public Day Middle School,2810345,22.3,0,7.4,70.3,0,0,0,70.5,29.5,27.1 +4.53125,4.53,a-pcom-i3,2017-18,Springfield - Springfield Vocational Academy,2810675,14.5,0,0,85.5,0,0,0,43.8,56.2,3.5 +7.28125,5,a-pcom-i3,2017-18,Springfield - Sumner Avenue,2810160,12.3,2.4,8.6,76.7,0,0,0,86.5,13.5,81.6 +8.8125,5,a-pcom-i3,2017-18,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,19.9,0,8.3,71.8,0,0,0,82,18,78 +8.53125,5,a-pcom-i3,2017-18,Springfield - Thomas M Balliet,2810015,10.9,0,16.4,72.7,0,0,0,94.5,5.5,36.6 +11.03125,5,a-pcom-i3,2017-18,Springfield - Van Sickle Academy,2810485,17.6,0,17.6,64.7,0,0,0,74.5,25.5,51 +6.875,5,a-pcom-i3,2017-18,Springfield - Warner,2810180,16.4,0,5.6,78,0,0,0,91.9,8.1,36.6 +6.40625,5,a-pcom-i3,2017-18,Springfield - Washington,2810185,9.1,0,11.4,79.5,0,0,0,95.4,4.6,43.8 +3.375,3.37,a-pcom-i3,2017-18,Springfield - White Street,2810190,6.5,0,4.3,89.2,0,0,0,97.8,2.2,46.1 +11.53125,5,a-pcom-i3,2017-18,Springfield - William N. DeBerry,2810045,12.3,0,24.6,63.1,0,0,0,90.1,9.9,40.6 +10.15625,5,a-pcom-i3,2017-18,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,24.8,0,7.6,67.5,0,0,0,87.9,12.1,31.4 +1.21875,1.22,a-pcom-i3,2017-18,Stoneham - Colonial Park,2840005,0,3.9,0,96.1,0,0,0,96.6,3.4,51.6 +1,1,a-pcom-i3,2017-18,Stoneham - Robin Hood,2840025,2.1,0,0,97.9,0,0,0,93.9,6.1,48.1 +1,1,a-pcom-i3,2017-18,Stoneham - South,2840030,0,2.7,0,97.3,0,0,0,97,3,37.3 +1,1,a-pcom-i3,2017-18,Stoneham - Stoneham Central Middle School,2840405,1,0,0,97.9,0,0,1,74.2,25.8,96.2 +1,1,a-pcom-i3,2017-18,Stoneham - Stoneham High,2840505,0,1.2,0,98.8,0,0,0,72.1,27.9,85.6 +1.71875,1.72,a-pcom-i3,2017-18,Stoughton - Edwin A Jones Early Childhood Center,2850012,3.8,0,1.7,94.5,0,0,0,98.3,1.7,23 +1,1,a-pcom-i3,2017-18,Stoughton - Helen Hansen Elementary,2850010,2.4,0,0,97.6,0,0,0,91.1,8.9,36 +1,1,a-pcom-i3,2017-18,Stoughton - Joseph H Gibbons,2850025,0,0,0,100,0,0,0,94.9,5.1,42.9 +1,1,a-pcom-i3,2017-18,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,0.9,0,98.2,0,0,0.9,88,12,42.4 +1,1,a-pcom-i3,2017-18,Stoughton - O'Donnell Middle School,2850405,0,2.1,0,97.9,0,0,0,82.8,17.2,95.7 +1,1,a-pcom-i3,2017-18,Stoughton - South Elementary,2850015,0,0,0,100,0,0,0,95.8,4.2,29.1 +1.28125,1.28,a-pcom-i3,2017-18,Stoughton - Stoughton High,2850505,0.8,0,0.8,95.9,0.8,0.8,0.8,68.8,31.2,122.2 +1.75,1.75,a-pcom-i3,2017-18,Stoughton - West Elementary,2850020,0,0.9,2.4,94.4,0,0,2.4,92.9,7.1,42.3 +1,1,a-pcom-i3,2017-18,Sturbridge - Burgess Elementary,2870005,0,0,0,100,0,0,0,92.2,7.8,129.9 +1.3125,1.31,a-pcom-i3,2017-18,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,2.3,1.9,95.8,0,0,0,66.4,33.6,131.2 +1,1,a-pcom-i3,2017-18,Sudbury - Ephraim Curtis Middle,2880305,0.9,0,0.9,97.2,0,0,0.9,73.3,26.7,105.9 +1,1,a-pcom-i3,2017-18,Sudbury - General John Nixon Elementary,2880025,2.4,0,0,97.6,0,0,0,89.5,10.5,50.5 +2.78125,2.78,a-pcom-i3,2017-18,Sudbury - Israel Loring School,2880015,4.1,1.7,0,91.1,0,0,3.1,88.8,11.2,58.4 +1,1,a-pcom-i3,2017-18,Sudbury - Josiah Haynes,2880010,2.3,0,0.5,97.2,0,0,0,94.7,5.3,60.9 +1.4375,1.44,a-pcom-i3,2017-18,Sudbury - Peter Noyes,2880030,0.7,0,1.3,95.4,0,0,2.6,93.3,6.7,76.7 +1.96875,1.97,a-pcom-i3,2017-18,Sunderland - Sunderland Elementary,2890005,1.6,1.6,3.2,93.7,0,0,0,87.3,12.7,63.1 +1,1,a-pcom-i3,2017-18,Sutton - Sutton Early Learning,2900003,0,0,0,100,0,0,0,99.2,0.8,54.9 +1,1,a-pcom-i3,2017-18,Sutton - Sutton Elementary,2900005,0,2.1,0,97.9,0,0,0,94.6,5.4,47.7 +1.8125,1.81,a-pcom-i3,2017-18,Sutton - Sutton High School,2900510,5.8,0,0,94.2,0,0,0,62.9,37.1,52.1 +1,1,a-pcom-i3,2017-18,Sutton - Sutton Middle School,2900305,0,0,0,100,0,0,0,70.8,29.2,42.4 +1,1,a-pcom-i3,2017-18,Swampscott - Clarke,2910005,0,0,0,100,0,0,0,97.9,2.1,39.8 +1,1,a-pcom-i3,2017-18,Swampscott - Hadley,2910010,0,0,0,100,0,0,0,88,12,41.8 +1,1,a-pcom-i3,2017-18,Swampscott - Stanley,2910020,0,0,0,100,0,0,0,85.1,14.9,41.4 +1.5625,1.56,a-pcom-i3,2017-18,Swampscott - Swampscott High,2910505,0.6,1.1,3.3,95,0,0,0,64.6,35.4,90.7 +1,1,a-pcom-i3,2017-18,Swampscott - Swampscott Middle,2910305,0.5,0,0.9,98.6,0,0,0,88.3,11.7,106.7 +1,1,a-pcom-i3,2017-18,Swansea - Elizabeth S Brown,2920006,0,0,0,100,0,0,0,94.4,5.6,26.9 +1,1,a-pcom-i3,2017-18,Swansea - Gardner,2920015,0,0,0,100,0,0,0,92.2,7.8,25.7 +1,1,a-pcom-i3,2017-18,Swansea - Joseph Case High,2920505,0,1.5,0,98.5,0,0,0,44.7,55.3,68.3 +1.125,1.12,a-pcom-i3,2017-18,Swansea - Joseph Case Jr High,2920305,1.8,0,1.8,96.4,0,0,0,70.8,29.2,54.9 +1,1,a-pcom-i3,2017-18,Swansea - Joseph G Luther,2920020,0,0,0,100,0,0,0,84.3,15.7,22.3 +1,1,a-pcom-i3,2017-18,Swansea - Mark G Hoyle Elementary,2920017,3.2,0,0,96.8,0,0,0,90.5,9.5,31.5 +2.875,2.88,a-pcom-i3,2017-18,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,2.6,5.3,1.3,90.8,0,0,0,70.3,29.7,75.9 +1,1,a-pcom-i3,2017-18,Tantasqua - Tantasqua Regional Jr High,7700405,2.7,0,0,97.3,0,0,0,78.6,21.4,74.7 +1,1,a-pcom-i3,2017-18,Tantasqua - Tantasqua Regional Sr High,7700505,0.8,0,1.6,96.8,0,0,0.8,61.8,38.2,123.6 +1,1,a-pcom-i3,2017-18,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,100,0,0,0,26.5,73.5,17.2 +1,1,a-pcom-i3,2017-18,Taunton - Benjamin Friedman Middle,2930315,2.1,0,0,97.9,0,0,0,81.5,18.5,82.7 +1,1,a-pcom-i3,2017-18,Taunton - East Taunton Elementary,2930010,0,0,0,100,0,0,0,92.8,7.2,77.9 +1,1,a-pcom-i3,2017-18,Taunton - Edmund Hatch Bennett,2930007,0,0,0,100,0,0,0,96.4,3.6,37.6 +1,1,a-pcom-i3,2017-18,Taunton - Edward F. Leddy Preschool,2930005,0,0,0,100,0,0,0,99.7,0.3,39.2 +1,1,a-pcom-i3,2017-18,Taunton - Elizabeth Pole,2930027,0,0,0.7,99.3,0,0,0,95.6,4.4,67 +1.9375,1.94,a-pcom-i3,2017-18,Taunton - H H Galligan,2930057,0.7,0,5.5,93.8,0,0,0,98.1,1.9,36.4 +1,1,a-pcom-i3,2017-18,Taunton - Hopewell,2930035,2.7,0,0,97.3,0,0,0,90.9,9.1,37 +1.8125,1.81,a-pcom-i3,2017-18,Taunton - John F Parker Middle,2930305,3.8,0,1.9,94.2,0,0,0,83.1,16.9,52.1 +1.53125,1.53,a-pcom-i3,2017-18,Taunton - Joseph C Chamberlain,2930008,1.6,3.2,0,95.1,0,0,0,96.4,3.6,61.7 +1,1,a-pcom-i3,2017-18,Taunton - Joseph H Martin,2930042,1.6,0,0,98.4,0,0,0,80.4,19.6,63.8 +1.5,1.5,a-pcom-i3,2017-18,Taunton - Mulcahey Elementary School,2930015,0,0,4.8,95.2,0,0,0,97,3,51.6 +1,1,a-pcom-i3,2017-18,Taunton - Taunton Alternative High School,2930525,0,0,0,100,0,0,0,62.1,37.9,11.2 +1.5625,1.56,a-pcom-i3,2017-18,Taunton - Taunton High,2930505,2.1,0.4,2.1,95,0,0,0.4,64.8,35.2,240.3 +1.125,1.12,a-pcom-i3,2017-18,Tewksbury - Heath-Brook,2950010,0,0,2.4,96.4,1.2,0,0,97.7,2.3,41.2 +1,1,a-pcom-i3,2017-18,Tewksbury - John F. Ryan,2950023,1.4,0,0,98.6,0,0,0,90.8,9.2,70.9 +1.21875,1.22,a-pcom-i3,2017-18,Tewksbury - John W. Wynn Middle,2950305,0,2.6,1.3,96.1,0,0,0,74.8,25.2,76 +1.9375,1.94,a-pcom-i3,2017-18,Tewksbury - L F Dewing,2950001,1.2,3.7,1.2,93.8,0,0,0,97.5,2.5,80.6 +1,1,a-pcom-i3,2017-18,Tewksbury - Louise Davy Trahan,2950025,0,0,0,98.3,1.7,0,0,86,14,28.8 +1,1,a-pcom-i3,2017-18,Tewksbury - North Street,2950020,0,0,0,100,0,0,0,95.4,4.6,43.5 +1,1,a-pcom-i3,2017-18,Tewksbury - Tewksbury Memorial High,2950505,0,0,0.8,99.2,0,0,0,65.2,34.8,108.8 +2.71875,2.72,a-pcom-i3,2017-18,Tisbury - Tisbury Elementary,2960005,1.9,0,5.4,91.3,0,0,1.4,86.3,13.7,74 +1,1,a-pcom-i3,2017-18,Topsfield - Proctor Elementary,2980005,0,0,0,100,0,0,0,91.9,8.1,39.6 +1,1,a-pcom-i3,2017-18,Topsfield - Steward Elementary,2980010,0,0,1.4,98.6,0,0,0,94.9,5.1,58.2 +1,1,a-pcom-i3,2017-18,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0.8,0,99.2,0,0,0,62,38,131.1 +1,1,a-pcom-i3,2017-18,Triton - Newbury Elementary,7730020,1.2,0,0,98.8,0,0,0,87.6,12.4,80.9 +1,1,a-pcom-i3,2017-18,Triton - Pine Grove,7730025,0,0,0,100,0,0,0,88.7,11.3,61.9 +1,1,a-pcom-i3,2017-18,Triton - Salisbury Elementary,7730015,0,0,0,100,0,0,0,95.9,4.1,72.9 +1,1,a-pcom-i3,2017-18,Triton - Triton Regional High School,7730505,2.2,0,0.8,96.9,0,0,0,54.1,45.9,97.8 +1,1,a-pcom-i3,2017-18,Triton - Triton Regional Middle School,7730405,0,0,0,100,0,0,0,65.2,34.8,52 +1,1,a-pcom-i3,2017-18,Truro - Truro Central,3000005,0,0,3.1,96.9,0,0,0,84.5,15.5,32.3 +1,1,a-pcom-i3,2017-18,Tyngsborough - Tyngsborough Elementary,3010020,0,0.9,0,99.1,0,0,0,91.7,8.3,108 +1,1,a-pcom-i3,2017-18,Tyngsborough - Tyngsborough High School,3010505,0,0,0,100,0,0,0,60.2,39.8,51.9 +1,1,a-pcom-i3,2017-18,Tyngsborough - Tyngsborough Middle,3010305,0,0,1.2,98.8,0,0,0,64.5,35.5,51 +9.875,5,a-pcom-i3,2017-18,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,17.1,6.8,7.7,68.4,0,0,0,62.4,37.6,58.5 +9.90625,5,a-pcom-i3,2017-18,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,22.3,2.4,7.1,68.3,0,0,0,80.1,19.9,84.9 +1,1,a-pcom-i3,2017-18,Up-Island Regional - Chilmark Elementary,7740010,0,0,0.3,99.7,0,0,0,95.1,4.9,10.2 +1.1875,1.19,a-pcom-i3,2017-18,Up-Island Regional - West Tisbury Elementary,7740020,0.6,0,1.7,96.2,0,0,1.4,86.3,13.7,71.7 +1,1,a-pcom-i3,2017-18,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,0,0,0,99,1,0,0,41.1,58.9,98.4 +31.25,5,a-pcom-i3,2017-18,Uxbridge - Gateway to College,3040515,0,0,0,0,0,0,0,0,0,0 +1,1,a-pcom-i3,2017-18,Uxbridge - McCloskey Middle School,3040015,0,0,0,100,0,0,0,72.3,27.7,47 +1,1,a-pcom-i3,2017-18,Uxbridge - Taft Early Learning Center,3040005,0,0,1.9,98.1,0,0,0,94.4,5.6,53.6 +1,1,a-pcom-i3,2017-18,Uxbridge - Uxbridge High,3040505,0,0,0,100,0,0,0,63.9,36.1,61.2 +1,1,a-pcom-i3,2017-18,Uxbridge - Whitin Elementary School,3040020,0,0,0,100,0,0,0,98.6,1.4,44.1 +8.15625,5,a-pcom-i3,2017-18,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,8.7,0,15.2,73.9,0,0,2.2,84.8,15.2,46 +1,1,a-pcom-i3,2017-18,Wachusett - Central Tree Middle,7750310,0,0,0,100,0,0,0,75.2,24.8,53.2 +1,1,a-pcom-i3,2017-18,Wachusett - Chocksett Middle School,7750315,0,0,2.2,97.8,0,0,0,82.9,17.1,45.6 +1,1,a-pcom-i3,2017-18,Wachusett - Davis Hill Elementary,7750018,0,0,2,98,0,0,0,86.3,13.7,50.8 +1,1,a-pcom-i3,2017-18,Wachusett - Dawson,7750020,0,0,0,100,0,0,0,89.5,10.5,57 +1.28125,1.28,a-pcom-i3,2017-18,Wachusett - Early Childhood Center,7750001,2.1,0,2.1,95.9,0,0,0,100,0,48.8 +1,1,a-pcom-i3,2017-18,Wachusett - Glenwood Elementary School,7750060,0,0,0,100,0,0,0,87.8,12.2,49 +1,1,a-pcom-i3,2017-18,Wachusett - Houghton Elementary,7750027,1.7,0,0,98.3,0,0,0,96.6,3.4,59.1 +1,1,a-pcom-i3,2017-18,Wachusett - Leroy E.Mayo,7750032,0,0,0,100,0,0,0,94,6,49.8 +1,1,a-pcom-i3,2017-18,Wachusett - Mountview Middle,7750305,0,0,1.3,98.7,0,0,0,80.5,19.5,75.3 +1,1,a-pcom-i3,2017-18,Wachusett - Naquag Elementary School,7750005,0,0,0,100,0,0,0,95.8,4.2,47.9 +1,1,a-pcom-i3,2017-18,Wachusett - Paxton Center,7750040,0,0,0,100,0,0,0,84.8,15.2,52.2 +1,1,a-pcom-i3,2017-18,Wachusett - Thomas Prince,7750045,0,0,1.7,98.3,0,0,0,88.1,11.9,44.2 +1,1,a-pcom-i3,2017-18,Wachusett - Wachusett Regional High,7750505,0,0.4,0.4,99.1,0,0,0,69.4,30.6,224.3 +1.0625,1.06,a-pcom-i3,2017-18,Wakefield - Dolbeare,3050005,0,1.7,0,96.6,1.7,0,0,87.6,12.4,58.8 +1.34375,1.34,a-pcom-i3,2017-18,Wakefield - Early Childhood Center at the Doyle School,3050001,0,4.3,0,95.7,0,0,0,100,0,23.4 +1,1,a-pcom-i3,2017-18,Wakefield - Galvin Middle School,3050310,0,0,0.8,99.2,0,0,0,74.4,25.6,119.7 +1.09375,1.09,a-pcom-i3,2017-18,Wakefield - Greenwood,3050020,0,3.5,0,96.5,0,0,0,95.5,4.5,28.9 +1,1,a-pcom-i3,2017-18,Wakefield - Wakefield Memorial High,3050505,0,0.9,1.9,97.2,0,0,0,61.4,38.6,115.2 +1,1,a-pcom-i3,2017-18,Wakefield - Walton,3050040,0,0,0,100,0,0,0,98,2,19.9 +1,1,a-pcom-i3,2017-18,Wakefield - Woodville School,3050015,0,0,1.7,98.1,0,0,0.2,95.6,4.4,59.2 +1,1,a-pcom-i3,2017-18,Wales - Wales Elementary,3060005,0,0,0,100,0,0,0,95.1,4.9,20.2 +1,1,a-pcom-i3,2017-18,Walpole - Bird Middle,3070305,0,1.7,0.2,98.1,0,0,0,85.5,14.5,58.7 +1,1,a-pcom-i3,2017-18,Walpole - Boyden,3070010,0,0,0,100,0,0,0,93.1,6.9,48.1 +1.46875,1.47,a-pcom-i3,2017-18,Walpole - Daniel Feeney Preschool Center,3070002,0,0,4.7,95.3,0,0,0,93.3,6.7,16.4 +1,1,a-pcom-i3,2017-18,Walpole - Eleanor N Johnson Middle,3070310,0,0,0.2,99.8,0,0,0,79.5,20.5,56.2 +1,1,a-pcom-i3,2017-18,Walpole - Elm Street School,3070005,0,1,1.2,97.8,0,0,0,95.9,4.1,49.3 +1,1,a-pcom-i3,2017-18,Walpole - Fisher,3070015,0,0,0,100,0,0,0,98.2,1.8,54.6 +1,1,a-pcom-i3,2017-18,Walpole - Old Post Road,3070018,0,0,0.2,99.8,0,0,0,91,9,44.7 +1,1,a-pcom-i3,2017-18,Walpole - Walpole High,3070505,0,1.2,1.6,97.3,0,0,0,66.5,33.5,135.1 +1,1,a-pcom-i3,2017-18,Waltham - Douglas MacArthur Elementary School,3080032,0,0,0,100,0,0,0,93.7,6.3,56.6 +3.78125,3.78,a-pcom-i3,2017-18,Waltham - Henry Whittemore Elementary School,3080065,3.4,0,6.9,87.9,0,1.7,0,89.4,10.6,58 +1.125,1.12,a-pcom-i3,2017-18,Waltham - James Fitzgerald Elementary School,3080060,0,0,1.8,96.4,0,0,1.8,91,9,55.5 +2.5,2.5,a-pcom-i3,2017-18,Waltham - John F Kennedy Middle,3080404,0,4.6,3.4,92,0,0,0,77.9,22.1,87.6 +3.59375,3.59,a-pcom-i3,2017-18,Waltham - John W. McDevitt Middle School,3080415,4.2,1,6.3,88.5,0,0,0,67.2,32.8,95.5 +2.78125,2.78,a-pcom-i3,2017-18,Waltham - Northeast Elementary School,3080040,4.7,1.2,1.9,91.1,0,0,1.2,93.8,6.2,85.8 +1.875,1.88,a-pcom-i3,2017-18,Waltham - Thomas R Plympton Elementary School,3080050,0,0,6,94,0,0,0,92.3,7.7,60.9 +13.15625,5,a-pcom-i3,2017-18,Waltham - Waltham Public Schools Dual Language Program,3080001,0,0,42.1,57.9,0,0,0,98.1,1.9,10.5 +3.75,3.75,a-pcom-i3,2017-18,Waltham - Waltham Sr High,3080505,2.7,1.4,6.4,88,0,0.5,1,63,37,208.9 +1.78125,1.78,a-pcom-i3,2017-18,Waltham - William F. Stanley Elementary School,3080005,1.1,0,3.4,94.3,0,0,1.1,92.6,7.4,90.2 +1,1,a-pcom-i3,2017-18,Ware - Stanley M Koziol Elementary School,3090020,0,0,1.8,98.2,0,0,0,93.3,6.7,56.5 +1.4375,1.44,a-pcom-i3,2017-18,Ware - Ware Junior/Senior High School,3090505,0,0,4.6,95.4,0,0,0,75.9,24.1,65.4 +1.375,1.38,a-pcom-i3,2017-18,Ware - Ware Middle School,3090305,2.2,0,2.2,95.6,0,0,0,81.6,18.4,45.6 +1,1,a-pcom-i3,2017-18,Wareham - John William Decas,3100003,0,0,0,98.7,0,0,1.3,91.5,8.5,78.2 +1.65625,1.66,a-pcom-i3,2017-18,Wareham - Minot Forest,3100017,0,0,0,94.7,0,0,5.3,94.2,5.8,75.9 +1,1,a-pcom-i3,2017-18,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,100,0,0,0,73.1,26.9,3.8 +1.125,1.12,a-pcom-i3,2017-18,Wareham - Wareham Middle,3100305,1.2,0,0,96.4,0,0,2.4,83.3,16.7,84.1 +2.71875,2.72,a-pcom-i3,2017-18,Wareham - Wareham Senior High,3100505,3.3,1.1,0,91.3,0,0,4.3,66.2,33.8,89.7 +1,1,a-pcom-i3,2017-18,Watertown - Cunniff,3140015,0,0,0,100,0,0,0,92,8,53.4 +1,1,a-pcom-i3,2017-18,Watertown - Hosmer,3140020,0,1.5,0,98.5,0,0,0,87.5,12.5,130.9 +1,1,a-pcom-i3,2017-18,Watertown - James Russell Lowell,3140025,0,1.5,0,98.5,0,0,0,84.8,15.2,68.7 +1,1,a-pcom-i3,2017-18,Watertown - Watertown High,3140505,1.7,0.8,0,97.5,0,0,0,55.6,44.4,120.1 +1,1,a-pcom-i3,2017-18,Watertown - Watertown Middle,3140305,1.3,0,0,98.7,0,0,0,79.3,20.7,78.5 +1.15625,1.16,a-pcom-i3,2017-18,Wayland - Claypit Hill School,3150005,1.2,0,0,96.3,0,1.2,1.2,94,6,81.9 +2.4375,2.44,a-pcom-i3,2017-18,Wayland - Happy Hollow School,3150015,0,6,1.7,92.2,0,0,0,95.5,4.5,57.4 +1,1,a-pcom-i3,2017-18,Wayland - Loker School,3150020,0,2.2,0,97.8,0,0,0,86.3,13.7,46.3 +1.4375,1.44,a-pcom-i3,2017-18,Wayland - Wayland High School,3150505,3.3,1.3,0,95.4,0,0,0,65.3,34.7,120.9 +2.625,2.63,a-pcom-i3,2017-18,Wayland - Wayland Middle School,3150305,0,1.8,5.4,91.6,0,0,1.1,71.4,28.6,87.5 +1.4375,1.44,a-pcom-i3,2017-18,Webster - Bartlett High School,3160505,1.5,0,1.5,95.4,0,0,1.5,68.4,31.6,64.8 +1,1,a-pcom-i3,2017-18,Webster - Park Avenue Elementary,3160015,1.8,0,0.9,97.3,0,0,0,98.2,1.8,111.1 +1,1,a-pcom-i3,2017-18,Webster - Webster Middle School,3160315,0,0,1.4,98.6,0,0,0,75.9,24.1,72.7 +1.34375,1.34,a-pcom-i3,2017-18,Wellesley - Ernest F Upham,3170050,0,1.8,2.5,95.7,0,0,0,90.3,9.7,55.7 +3.8125,3.81,a-pcom-i3,2017-18,Wellesley - Hunnewell,3170025,1.5,2.1,4.3,87.8,0,0,4.3,87.9,12.1,46.5 +1,1,a-pcom-i3,2017-18,Wellesley - John D Hardy,3170020,0,0,2.8,97.2,0,0,0,90.7,9.3,43.1 +2.53125,2.53,a-pcom-i3,2017-18,Wellesley - Joseph E Fiske,3170015,2.2,3.4,1.3,91.9,0,0,1.1,97.8,2.2,89.4 +1.3125,1.31,a-pcom-i3,2017-18,Wellesley - Katharine Lee Bates,3170005,0,0,1.9,95.8,0,0,2.4,100,0,42.5 +1.25,1.25,a-pcom-i3,2017-18,Wellesley - Schofield,3170045,0,2,2,96,0,0,0,92.1,7.9,50.6 +1.0625,1.06,a-pcom-i3,2017-18,Wellesley - Sprague Elementary School,3170048,0,1.7,0,96.6,0,0,1.7,93.2,6.8,58.9 +2.78125,2.78,a-pcom-i3,2017-18,Wellesley - Wellesley Middle,3170305,2.5,2.7,2.8,91.1,0,0,0.9,75.4,24.6,178.6 +2.8125,2.81,a-pcom-i3,2017-18,Wellesley - Wellesley Sr High,3170505,2.6,3,0.9,91,0.4,0,2.2,65.8,34.2,234.6 +1,1,a-pcom-i3,2017-18,Wellfleet - Wellfleet Elementary,3180005,0,0,0,100,0,0,0,92.9,7.1,30.8 +1,1,a-pcom-i3,2017-18,West Boylston - Major Edwards Elementary,3220005,0,0,0,100,0,0,0,92.5,7.5,57.5 +2.6875,2.69,a-pcom-i3,2017-18,West Boylston - West Boylston Junior/Senior High,3220505,1.4,1.4,2.9,91.4,0,0,2.9,67.8,32.2,70.1 +1,1,a-pcom-i3,2017-18,West Bridgewater - Howard School,3230305,0,0,0,100,0,0,0,89.6,10.4,29.8 +1,1,a-pcom-i3,2017-18,West Bridgewater - Rose L Macdonald,3230003,0,0,0,100,0,0,0,91.4,8.6,30.2 +1,1,a-pcom-i3,2017-18,West Bridgewater - Spring Street School,3230005,0,0,0,100,0,0,0,97.6,2.4,24.3 +1,1,a-pcom-i3,2017-18,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,98.5,0,0,1.5,70.6,29.4,65.5 +1,1,a-pcom-i3,2017-18,West Springfield - 21st Century Skills Academy,3320515,0,0,0,100,0,0,0,58.2,41.8,7.2 +1.1875,1.19,a-pcom-i3,2017-18,West Springfield - Cowing Early Childhood,3320001,0,0,0,96.2,3.8,0,0,93.6,6.4,26.1 +1,1,a-pcom-i3,2017-18,West Springfield - John Ashley,3320005,0,0,0,100,0,0,0,94.5,5.5,39.8 +1,1,a-pcom-i3,2017-18,West Springfield - John R Fausey,3320010,0,0,1.6,98.4,0,0,0,89.4,10.6,64.5 +1,1,a-pcom-i3,2017-18,West Springfield - Memorial,3320025,0,0,0,96.8,0,0,3.2,88,12,31.4 +1.40625,1.41,a-pcom-i3,2017-18,West Springfield - Mittineague,3320030,0,0,4.5,95.5,0,0,0,90.6,9.4,22.2 +1,1,a-pcom-i3,2017-18,West Springfield - Philip G Coburn,3320007,2.8,0,0,97.2,0,0,0,91.8,8.2,70.2 +1,1,a-pcom-i3,2017-18,West Springfield - Tatham,3320040,0,0,0,100,0,0,0,90.6,9.4,35.6 +2,2,a-pcom-i3,2017-18,West Springfield - West Springfield High,3320505,0.6,1.3,4.5,93.6,0,0,0,66.3,33.7,155.8 +1.0625,1.06,a-pcom-i3,2017-18,West Springfield - West Springfield Middle,3320305,0,0,2.5,96.6,0,0,0.8,72.5,27.5,119 +1,1,a-pcom-i3,2017-18,Westborough - Annie E Fales,3210010,0,1.8,0,96.8,0,0,1.4,98.2,1.8,56.4 +1.34375,1.34,a-pcom-i3,2017-18,Westborough - Elsie A Hastings Elementary,3210025,1.1,3.2,0,95.7,0,0,0,96.1,3.9,88.9 +1.59375,1.59,a-pcom-i3,2017-18,Westborough - J Harding Armstrong,3210005,1.7,3.4,0,94.9,0,0,0,96.6,3.4,58.7 +1.3125,1.31,a-pcom-i3,2017-18,Westborough - Mill Pond School,3210045,0,1.7,1.7,95.8,0,0,0.8,88.7,11.3,117.8 +1,1,a-pcom-i3,2017-18,Westborough - Sarah W Gibbons Middle,3210305,0,1.4,1.2,97.4,0,0,0,77.1,22.9,83 +1.1875,1.19,a-pcom-i3,2017-18,Westborough - Westborough High,3210505,0,2.2,0,96.2,0.8,0.8,0,71.5,28.5,128.1 +1.3125,1.31,a-pcom-i3,2017-18,Westfield - Abner Gibbs,3250020,0,0.6,3.6,95.8,0,0,0,94.3,5.7,27.6 +3.6875,3.69,a-pcom-i3,2017-18,Westfield - Fort Meadow Early Childhood Center,3250003,0,7.1,4.7,88.2,0,0,0,100,0,42.4 +1.3125,1.31,a-pcom-i3,2017-18,Westfield - Franklin Ave,3250015,0,0.6,0,95.8,0,0,3.6,95.8,4.2,28 +3.28125,3.28,a-pcom-i3,2017-18,Westfield - Highland,3250025,0,4.5,4.5,89.5,1.5,0,0,90.2,9.8,66.4 +1.6875,1.69,a-pcom-i3,2017-18,Westfield - Munger Hill,3250033,1.7,0.3,3.4,94.6,0,0,0,94.3,5.7,58.9 +1,1,a-pcom-i3,2017-18,Westfield - North Middle School,3250305,0,0,0,100,0,0,0,81.5,18.5,84.4 +1.125,1.12,a-pcom-i3,2017-18,Westfield - Paper Mill,3250036,0,0.3,1.7,96.4,0,0,1.7,97.2,2.8,59.9 +1.5,1.5,a-pcom-i3,2017-18,Westfield - Russell Elementary School,3250055,0,0.7,0,95.2,0,0,4.1,97.8,2.2,24.4 +1,1,a-pcom-i3,2017-18,Westfield - South Middle School,3250310,0,0,1.2,98.8,0,0,0,76.9,23.1,83 +1.21875,1.22,a-pcom-i3,2017-18,Westfield - Southampton Road,3250040,0,0.3,3.6,96.1,0,0,0,96.4,3.6,55.7 +1.21875,1.22,a-pcom-i3,2017-18,Westfield - Westfield High,3250505,0.6,1.9,0.6,96.1,0.6,0,0,76,24,155.4 +1,1,a-pcom-i3,2017-18,Westfield - Westfield Technical Academy,3250605,1.2,0,0,98.8,0,0,0,55.2,44.8,85.8 +1,1,a-pcom-i3,2017-18,Westford - Abbot Elementary,3260004,0,0,2.1,97.9,0,0,0,97.1,2.9,47.6 +2.125,2.12,a-pcom-i3,2017-18,Westford - Blanchard Middle,3260310,0,5.4,1.4,93.2,0,0,0,89.1,10.9,73.5 +1,1,a-pcom-i3,2017-18,Westford - Col John Robinson,3260025,0,0,2.4,97.6,0,0,0,95.9,4.1,41.5 +1.25,1.25,a-pcom-i3,2017-18,Westford - Day Elementary,3260007,0,2,2,96,0,0,0,90,10,50.1 +1.25,1.25,a-pcom-i3,2017-18,Westford - John A. Crisafulli Elementary School,3260045,0,2,2,96,0,0,0,96.6,3.4,50.4 +2.09375,2.09,a-pcom-i3,2017-18,Westford - Millennium Elementary,3260013,0,6.7,0,93.3,0,0,0,96.7,3.3,30 +1,1,a-pcom-i3,2017-18,Westford - Nabnasset,3260015,0,0,0,100,0,0,0,97.8,2.2,45.9 +2.5,2.5,a-pcom-i3,2017-18,Westford - Rita E. Miller Elementary School,3260055,1.6,5.4,0,92,0,0,1,97.4,2.6,62.7 +1,1,a-pcom-i3,2017-18,Westford - Stony Brook School,3260330,0,0,1.2,98.8,0,0,0,80.3,19.7,81.6 +1.4375,1.44,a-pcom-i3,2017-18,Westford - Westford Academy,3260505,0,2.8,1.2,95.4,0,0,0.6,61,39,164.8 +1,1,a-pcom-i3,2017-18,Westhampton - Westhampton Elementary School,3270005,0,0,0,100,0,0,0,90.6,9.4,29.7 +2,2,a-pcom-i3,2017-18,Weston - Country,3300010,1.5,0,4.9,93.6,0,0,0,84.9,15.1,49.3 +2.875,2.88,a-pcom-i3,2017-18,Weston - Field Elementary School,3300012,2.2,6.2,0.8,90.8,0,0,0,86,14,45 +4.96875,4.97,a-pcom-i3,2017-18,Weston - Weston High,3300505,4.4,5.8,4.2,84.1,0,0.8,0.7,63.2,36.8,106 +4.25,4.25,a-pcom-i3,2017-18,Weston - Weston Middle,3300305,5.1,3.1,4,86.4,0,0,1.4,73.7,26.3,75.3 +2.59375,2.59,a-pcom-i3,2017-18,Weston - Woodland,3300015,1.8,0,4.9,91.7,1.6,0,0,93.3,6.7,44.9 +1,1,a-pcom-i3,2017-18,Westport - Alice A Macomber,3310015,0,0,0,100,0,0,0,100,0,51 +1,1,a-pcom-i3,2017-18,Westport - Westport Elementary,3310030,0,0,0,100,0,0,0,87.6,12.4,70.9 +1,1,a-pcom-i3,2017-18,Westport - Westport Junior/Senior High School,3310515,0,0,0,100,0,0,0,60.6,39.4,84.9 +1,1,a-pcom-i3,2017-18,Westwood - Deerfield School,3350010,0,2.8,0,97.2,0,0,0,92,8,45.2 +1.53125,1.53,a-pcom-i3,2017-18,Westwood - Downey,3350012,0,0.6,4.3,95.1,0,0,0,97.6,2.4,46.4 +2.5,2.5,a-pcom-i3,2017-18,Westwood - E W Thurston Middle,3350305,3,2,2,92,0,0,1,70.9,29.1,99.6 +1,1,a-pcom-i3,2017-18,Westwood - Martha Jones,3350017,0,0,0,100,0,0,0,90,10,39.7 +1,1,a-pcom-i3,2017-18,Westwood - Paul Hanlon,3350015,0,0.8,0,99.2,0,0,0,90.9,9.1,29.9 +1.65625,1.66,a-pcom-i3,2017-18,Westwood - Westwood High,3350505,1.5,0.8,2.3,94.7,0,0,0.8,65.4,34.6,131.6 +1,1,a-pcom-i3,2017-18,Westwood - Westwood Integrated Preschool,3350050,0,0,0,100,0,0,0,100,0,15.8 +1,1,a-pcom-i3,2017-18,Westwood - William E Sheehan,3350025,0,1.7,0,98.3,0,0,0,92,8,43.4 +1,1,a-pcom-i3,2017-18,Weymouth - Abigail Adams Middle School,3360310,0,1.8,0,98.2,0,0,0,77.5,22.5,108.5 +1,1,a-pcom-i3,2017-18,Weymouth - Academy Avenue,3360005,0,0,0,100,0,0,0,91.9,8.1,29.6 +1,1,a-pcom-i3,2017-18,Weymouth - Frederick C Murphy,3360050,0,0,0,100,0,0,0,95.3,4.7,35.6 +2.28125,2.28,a-pcom-i3,2017-18,Weymouth - Johnson Early Childhood Center,3360003,2.4,2.4,2.4,92.7,0,0,0,97.8,2.2,41.3 +1,1,a-pcom-i3,2017-18,Weymouth - Lawrence W Pingree,3360065,0,0,0,100,0,0,0,98.2,1.8,31.4 +1,1,a-pcom-i3,2017-18,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,0.8,97.6,0.8,0,0.8,65.6,34.4,126.3 +1,1,a-pcom-i3,2017-18,Weymouth - Ralph Talbot,3360085,0,0,0,100,0,0,0,95.6,4.4,30.2 +1.09375,1.09,a-pcom-i3,2017-18,Weymouth - Thomas V Nash,3360060,0,0,3.5,96.5,0,0,0,90.6,9.4,28.3 +1,1,a-pcom-i3,2017-18,Weymouth - Thomas W. Hamilton Primary School,3360105,0,0,0,100,0,0,0,91.8,8.2,34.4 +1,1,a-pcom-i3,2017-18,Weymouth - Wessagusset,3360110,0,0,0,100,0,0,0,94.3,5.7,35.3 +1,1,a-pcom-i3,2017-18,Weymouth - Weymouth High School,3360505,0.5,0.5,0.6,98.1,0,0,0.5,67.5,32.5,215.7 +1,1,a-pcom-i3,2017-18,Weymouth - William Seach,3360080,2.8,0,0,97.2,0,0,0,94.2,5.8,36.2 +1,1,a-pcom-i3,2017-18,Whately - Whately Elementary,3370005,0,0,0,100,0,0,0,93,7,28.4 +1.28125,1.28,a-pcom-i3,2017-18,Whitman-Hanson - Hanson Middle School,7800315,2.1,2.1,0,95.9,0,0,0,81.1,18.9,48.6 +1,1,a-pcom-i3,2017-18,Whitman-Hanson - Indian Head,7800035,0,0,0,100,0,0,0,93.9,6.1,41 +1.6875,1.69,a-pcom-i3,2017-18,Whitman-Hanson - John H Duval,7800030,0,0,5.4,94.6,0,0,0,93.3,6.7,43.4 +1,1,a-pcom-i3,2017-18,Whitman-Hanson - Louise A Conley,7800010,1.7,0,0.7,97.6,0,0,0,90.1,9.9,50.4 +1,1,a-pcom-i3,2017-18,Whitman-Hanson - Maquan Elementary,7800025,0,0,0,98.3,0,0,1.7,96.9,3.1,51.3 +1,1,a-pcom-i3,2017-18,Whitman-Hanson - Whitman Hanson Regional,7800505,0.9,0,0.3,98.8,0,0,0,67.7,32.3,109.4 +1,1,a-pcom-i3,2017-18,Whitman-Hanson - Whitman Middle,7800310,0,0,1.8,98.2,0,0,0,72.3,27.7,54.2 +1,1,a-pcom-i3,2017-18,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0.7,99.3,0,0,0,51.1,48.9,137.9 +1,1,a-pcom-i3,2017-18,Williamsburg - Anne T. Dunphy School,3400020,0,0,0,100,0,0,0,92.6,7.4,29.7 +1.15625,1.16,a-pcom-i3,2017-18,Williamstown - Williamstown Elementary,3410010,0,2.3,0,96.3,0,0,1.4,97.2,2.8,70.5 +1,1,a-pcom-i3,2017-18,Wilmington - Boutwell,3420005,0,0,0,100,0,0,0,98.3,1.7,29.7 +1,1,a-pcom-i3,2017-18,Wilmington - North Intermediate,3420060,2.8,0,0,97.2,0,0,0,92.5,7.5,31.9 +1,1,a-pcom-i3,2017-18,Wilmington - Shawsheen Elementary,3420025,0,0,2.2,97.8,0,0,0,92.5,7.5,46.4 +1,1,a-pcom-i3,2017-18,Wilmington - West Intermediate,3420080,0,0,0,100,0,0,0,93.3,6.7,29.8 +1.09375,1.09,a-pcom-i3,2017-18,Wilmington - Wildwood,3420015,0.3,0,0,96.5,0,0,3.1,95,5,32.2 +1.6875,1.69,a-pcom-i3,2017-18,Wilmington - Wilmington High,3420505,0.6,1.9,1.9,94.6,1,0,0,74.5,25.5,104.5 +1,1,a-pcom-i3,2017-18,Wilmington - Wilmington Middle School,3420330,0,0.9,0,99.1,0,0,0,80.3,19.7,113.4 +1,1,a-pcom-i3,2017-18,Wilmington - Woburn Street,3420020,0,2.4,0,97.6,0,0,0,85.2,14.8,42.1 +1,1,a-pcom-i3,2017-18,Winchendon - Memorial,3430040,0,0,0,100,0,0,0,94,6,41.8 +1,1,a-pcom-i3,2017-18,Winchendon - Murdock Academy for Success,3430405,0,0,0,100,0,0,0,40.6,59.4,4.1 +1.65625,1.66,a-pcom-i3,2017-18,Winchendon - Murdock High School,3430515,2.6,0,2.6,94.7,0,0,0,73.4,26.6,37.8 +1,1,a-pcom-i3,2017-18,Winchendon - Murdock Middle School,3430315,0,0,0,100,0,0,0,70.6,29.4,27.3 +1,1,a-pcom-i3,2017-18,Winchendon - Toy Town Elementary,3430050,0,0,0,100,0,0,0,92.9,7.1,35.5 +2.78125,2.78,a-pcom-i3,2017-18,Winchendon - Winchendon PreSchool Program,3430010,8.9,0,0,91.1,0,0,0,100,0,11.2 +1.09375,1.09,a-pcom-i3,2017-18,Winchester - Ambrose Elementary,3440045,1.8,0,1.8,96.5,0,0,0,97.3,2.7,56.8 +1,1,a-pcom-i3,2017-18,Winchester - Lincoln Elementary,3440005,0,0,0,100,0,0,0,94.5,5.5,45.8 +1,1,a-pcom-i3,2017-18,Winchester - Lynch Elementary,3440020,0,1.2,1.2,97.7,0,0,0,93.6,6.4,85.4 +1.5,1.5,a-pcom-i3,2017-18,Winchester - McCall Middle,3440305,2.4,0,2.4,95.2,0,0,0,78.4,21.6,124 +1,1,a-pcom-i3,2017-18,Winchester - Muraco Elementary,3440040,0,0,0,100,0,0,0,91,9,55.4 +1.125,1.12,a-pcom-i3,2017-18,Winchester - Vinson-Owen Elementary,3440025,0,0,0,96.4,0,0,3.6,94.5,5.5,54.5 +1,1,a-pcom-i3,2017-18,Winchester - Winchester High School,3440505,0.4,0,0.7,98.8,0,0,0,67.3,32.7,136.5 +1.15625,1.16,a-pcom-i3,2017-18,Winthrop - Arthur T. Cummings Elementary School,3460020,1.9,1.9,0,96.3,0,0,0,87.8,12.2,53.5 +1,1,a-pcom-i3,2017-18,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,0,1.4,0,98.6,0,0,0,94.5,5.5,72.5 +1,1,a-pcom-i3,2017-18,Winthrop - Winthrop High School,3460505,0,0,0,100,0,0,0,59.2,40.8,64.2 +1,1,a-pcom-i3,2017-18,Winthrop - Winthrop Middle School,3460305,0,0,0,100,0,0,0,74.6,25.4,50.5 +1,1,a-pcom-i3,2017-18,Woburn - Clyde Reeves,3470040,0,0,0,100,0,0,0,94.2,5.8,55.2 +1.28125,1.28,a-pcom-i3,2017-18,Woburn - Daniel L Joyce Middle School,3470410,0,1.2,2.9,95.9,0,0,0,76.6,23.4,85.4 +1,1,a-pcom-i3,2017-18,Woburn - Daniel P Hurld,3470020,0,0,0,100,0,0,0,99.1,0.9,23.6 +1,1,a-pcom-i3,2017-18,Woburn - Goodyear Elementary School,3470005,0,2.2,0,97.8,0,0,0,93,7,45.8 +1,1,a-pcom-i3,2017-18,Woburn - John F Kennedy Middle School,3470405,0,0,2.3,97.7,0,0,0,71.9,28.1,64 +1,1,a-pcom-i3,2017-18,Woburn - Linscott-Rumford,3470025,0,0,0,100,0,0,0,94.1,5.9,24 +1,1,a-pcom-i3,2017-18,Woburn - Malcolm White,3470055,0,0,0,100,0,0,0,96.8,3.2,37.4 +1,1,a-pcom-i3,2017-18,Woburn - Mary D Altavesta,3470065,2.8,0,0,97.2,0,0,0,91.7,8.3,35.1 +1,1,a-pcom-i3,2017-18,Woburn - Shamrock,3470043,0,0,0,100,0,0,0,96.9,3.1,71.6 +1.1875,1.19,a-pcom-i3,2017-18,Woburn - Woburn High,3470505,0.6,0.6,2.6,96.2,0,0,0,63.6,36.4,156.1 +1,1,a-pcom-i3,2017-18,Woburn - Wyman,3470060,0,0,0,100,0,0,0,99.1,0.9,23.2 +2.375,2.37,a-pcom-i3,2017-18,Worcester - Belmont Street Community,3480020,0,1.8,5.8,92.4,0,0,0,91.7,8.3,56 +4.375,4.38,a-pcom-i3,2017-18,Worcester - Burncoat Middle School,3480405,4.7,0,9.4,86,0,0,0,70.3,29.7,74.7 +3.53125,3.53,a-pcom-i3,2017-18,Worcester - Burncoat Senior High,3480503,3.2,0,8.1,88.7,0,0,0,62,38,124.2 +4.96875,4.97,a-pcom-i3,2017-18,Worcester - Burncoat Street,3480035,0,0,13.2,84.1,0,2.6,0,93.6,6.4,37.8 +3.65625,3.66,a-pcom-i3,2017-18,Worcester - Canterbury,3480045,2.2,2.6,6.8,88.3,0,0,0,94.1,5.9,45.3 +3.875,3.88,a-pcom-i3,2017-18,Worcester - Chandler Elementary Community,3480050,0,1.2,11.2,87.6,0,0,0,96.7,3.3,48.8 +11.6875,5,a-pcom-i3,2017-18,Worcester - Chandler Magnet,3480052,0,1.4,34.8,62.6,0,1.2,0,88.2,11.8,86.6 +3.5625,3.56,a-pcom-i3,2017-18,Worcester - City View,3480053,1.8,2.1,7.5,88.6,0,0,0,88.8,11.2,55.9 +6.96875,5,a-pcom-i3,2017-18,Worcester - Claremont Academy,3480350,7.4,1.9,13,77.7,0,0,0,65.6,34.4,53.7 +2.75,2.75,a-pcom-i3,2017-18,Worcester - Clark St Community,3480055,2.7,2.7,3.4,91.2,0,0,0,88.4,11.6,37 +1.875,1.88,a-pcom-i3,2017-18,Worcester - Columbus Park,3480060,3.8,0,2.1,94,0,0,0,88.5,11.5,51.7 +3.125,3.13,a-pcom-i3,2017-18,Worcester - Doherty Memorial High,3480512,1.5,0,8.4,90,0,0,0,62,38,130.4 +6.25,5,a-pcom-i3,2017-18,Worcester - Elm Park Community,3480095,7,0,11.3,80,0,1.7,0,86.9,13.1,57.4 +1,1,a-pcom-i3,2017-18,Worcester - Flagg Street,3480090,0,0,0,100,0,0,0,93.1,6.9,35.8 +4.375,4.38,a-pcom-i3,2017-18,Worcester - Forest Grove Middle,3480415,6,1,7.1,86,0,0,0,70.7,29.3,100.4 +3.28125,3.28,a-pcom-i3,2017-18,Worcester - Francis J McGrath Elementary,3480177,0,4.9,5.6,89.5,0,0,0,82.5,17.5,28.7 +3.6875,3.69,a-pcom-i3,2017-18,Worcester - Gates Lane,3480110,4.4,0.9,6.5,88.2,0,0,0,91.1,8.9,113 +6.25,5,a-pcom-i3,2017-18,Worcester - Goddard School/Science Technical,3480100,1.7,1.6,16.7,80,0,0,0,93.2,6.8,60.6 +4,4,a-pcom-i3,2017-18,Worcester - Grafton Street,3480115,0,4.6,8.2,87.2,0,0,0,92.7,7.3,43.8 +3.84375,3.84,a-pcom-i3,2017-18,Worcester - Head Start,3480002,3.1,6.1,3.1,87.7,0,0,0,96.9,3.1,32.6 +4.40625,4.41,a-pcom-i3,2017-18,Worcester - Heard Street,3480136,6.9,0,3.8,85.9,0,3.4,0,91,9,29.1 +2.65625,2.66,a-pcom-i3,2017-18,Worcester - Jacob Hiatt Magnet,3480140,0,4.1,4.3,91.5,0,0,0,92.9,7.1,43.1 +2.9375,2.94,a-pcom-i3,2017-18,Worcester - Lake View,3480145,3.1,3.1,3.1,90.6,0,0,0,88.8,11.2,31.8 +6.75,5,a-pcom-i3,2017-18,Worcester - Lincoln Street,3480160,2.9,2.9,15.8,78.4,0,0,0,94.3,5.7,34.7 +3.90625,3.91,a-pcom-i3,2017-18,Worcester - May Street,3480175,3.1,6.3,3.1,87.5,0,0,0,85.4,14.6,32 +2.3125,2.31,a-pcom-i3,2017-18,Worcester - Midland Street,3480185,0,3.7,3.7,92.6,0,0,0,98.6,1.4,27 +2.5625,2.56,a-pcom-i3,2017-18,Worcester - Nelson Place,3480200,4.5,0,3.7,91.8,0,0,0,96.1,3.9,88.5 +5.46875,5,a-pcom-i3,2017-18,Worcester - Norrback Avenue,3480202,3.5,0,12.8,82.5,0,1.2,0,96.3,3.7,85.9 +8.6875,5,a-pcom-i3,2017-18,Worcester - North High,3480515,10.7,2.1,15,72.2,0,0,0,59.1,40.9,140.3 +5.65625,5,a-pcom-i3,2017-18,Worcester - Quinsigamond,3480210,2.5,6.1,9.5,81.9,0,0,0,87.3,12.7,78.7 +3.1875,3.19,a-pcom-i3,2017-18,Worcester - Rice Square,3480215,1.1,4.5,4.5,89.8,0,0,0,93.3,6.7,44.1 +4.40625,4.41,a-pcom-i3,2017-18,Worcester - Roosevelt,3480220,1.2,0,13,85.9,0,0,0,92.3,7.7,84.9 +5.34375,5,a-pcom-i3,2017-18,Worcester - South High Community,3480520,6.7,0.7,9.7,82.9,0,0,0,75.7,24.3,147.2 +6.96875,5,a-pcom-i3,2017-18,Worcester - Sullivan Middle,3480423,7.1,0,15.3,77.7,0,0,0,73.4,26.6,113.3 +2.3125,2.31,a-pcom-i3,2017-18,Worcester - Tatnuck,3480230,2.5,0,4.9,92.6,0,0,0,95.1,4.9,40.6 +1.34375,1.34,a-pcom-i3,2017-18,Worcester - Thorndyke Road,3480235,0,0,4.3,95.7,0,0,0,93.3,6.7,33.6 +5.40625,5,a-pcom-i3,2017-18,Worcester - Union Hill School,3480240,6.6,0,10.7,82.7,0,0,0,81.4,18.6,45.7 +2.625,2.63,a-pcom-i3,2017-18,Worcester - University Pk Campus School,3480285,4.2,0,4.2,91.6,0,0,0,73.1,26.9,23.9 +3.34375,3.34,a-pcom-i3,2017-18,Worcester - Vernon Hill School,3480280,3.5,1.7,5.5,89.3,0,0,0,88.4,11.6,57.8 +1,1,a-pcom-i3,2017-18,Worcester - Wawecus Road School,3480026,0,0,1.8,98.2,0,0,0,96.8,3.2,27.8 +1.625,1.63,a-pcom-i3,2017-18,Worcester - West Tatnuck,3480260,2.4,0,2.9,94.8,0,0,0,94.5,5.5,42.1 +4.03125,4.03,a-pcom-i3,2017-18,Worcester - Woodland Academy,3480030,1.9,0,11,87.1,0,0,0,92.1,7.9,51.9 +1.59375,1.59,a-pcom-i3,2017-18,Worcester - Worcester Arts Magnet School,3480225,2.6,0,2.6,94.9,0,0,0,95.2,4.8,38.9 +8.21875,5,a-pcom-i3,2017-18,Worcester - Worcester East Middle,3480420,11.7,4.7,9.9,73.7,0,0,0,64.1,35.9,85.6 +1.65625,1.66,a-pcom-i3,2017-18,Worcester - Worcester Technical High,3480605,1.7,1.1,2.5,94.7,0,0,0,48.9,51.1,176.8 +1,1,a-pcom-i3,2017-18,Worthington - R. H. Conwell,3490010,0,0,0,100,0,0,0,91.5,8.5,14.1 +1,1,a-pcom-i3,2017-18,Wrentham - Charles E Roderick,3500010,0,0,0,100,0,0,0,96.7,3.3,56.6 +1.53125,1.53,a-pcom-i3,2017-18,Wrentham - Delaney,3500003,0,3.9,1,95.1,0,0,0,94.9,5.1,97.4 +2.21875,2.22,a-pcom-i3,2016-17,Abby Kelley Foster Charter Public (District) - Abby Kelley Foster Charter Public School,4450105,3,0.6,3,92.9,0,0,0.6,80.7,19.3,168.5 +1.3125,1.31,a-pcom-i3,2016-17,Abington - Abington High,10505,0,0.8,3.3,95.8,0,0,0,74.4,25.6,60 +1,1,a-pcom-i3,2016-17,Abington - Beaver Brook Elementary School,10003,0,0,1.6,98.4,0,0,0,96,4,64.2 +1,1,a-pcom-i3,2016-17,Abington - Center Elementary School,10002,0,0,0,100,0,0,0,100,0,26.3 +1.96875,1.97,a-pcom-i3,2016-17,Abington - Frolio Middle School,10405,2.5,1.3,2.5,93.7,0,0,0,75.1,24.9,39.7 +1,1,a-pcom-i3,2016-17,Abington - Woodsdale Elementary School,10015,2.8,0,0,97.2,0,0,0,88,12,35.9 +8.0625,5,a-pcom-i3,2016-17,Academy Of the Pacific Rim Charter Public (District) - Academy Of the Pacific Rim Charter Public School,4120530,16.3,2,4.2,74.2,0,0,3.3,66.8,33.2,61.2 +1.6875,1.69,a-pcom-i3,2016-17,Acton-Boxborough - Acton-Boxborough Regional High,6000505,1.1,3.8,0,94.6,0.5,0,0,73.2,26.8,189.6 +1.6875,1.69,a-pcom-i3,2016-17,Acton-Boxborough - Blanchard Memorial School,6000005,0,3.9,1.5,94.6,0,0,0,88.5,11.5,67.6 +1,1,a-pcom-i3,2016-17,Acton-Boxborough - C.T. Douglas Elementary School,6000020,0,0,0,100,0,0,0,94.8,5.2,57.2 +1.59375,1.59,a-pcom-i3,2016-17,Acton-Boxborough - Carol Huebner Early Childhood Program,6000001,0,5.1,0,94.9,0,0,0,96.2,3.8,26.3 +1.28125,1.28,a-pcom-i3,2016-17,Acton-Boxborough - Luther Conant School,6000030,0,4.1,0,95.9,0,0,0,94.1,5.9,64.2 +1,1,a-pcom-i3,2016-17,Acton-Boxborough - McCarthy-Towne School,6000015,0,0,1,99,0,0,0,93.6,6.4,63.1 +1.3125,1.31,a-pcom-i3,2016-17,Acton-Boxborough - Merriam School,6000010,1.3,2.9,0,95.8,0,0,0,94.9,5.1,78.9 +1.84375,1.84,a-pcom-i3,2016-17,Acton-Boxborough - Paul P Gates Elementary School,6000025,0,5.9,0,94.1,0,0,0,93.1,6.9,54.8 +1,1,a-pcom-i3,2016-17,Acton-Boxborough - Raymond J Grey Junior High,6000405,0,2,0,98,0,0,0,80.8,19.2,100.4 +1,1,a-pcom-i3,2016-17,Acushnet - Acushnet Elementary School,30025,2.8,0,0,97.2,0,0,0,95.4,4.6,65.4 +1,1,a-pcom-i3,2016-17,Acushnet - Albert F Ford Middle School,30305,0,0,1.9,98.1,0,0,0,78.2,21.8,49.2 +1,1,a-pcom-i3,2016-17,Adams-Cheshire - Cheshire Elementary,6030004,0,0,0,100,0,0,0,86.9,13.1,39.1 +1,1,a-pcom-i3,2016-17,Adams-Cheshire - Hoosac Valley Middle & High School,6030505,0,0,0,98.7,0,1.3,0,68.5,31.5,78.6 +1,1,a-pcom-i3,2016-17,Adams-Cheshire - Plunkett Elementary,6030020,0,0,1.4,98.6,0,0,0,88.4,11.6,70.6 +3.5,3.5,a-pcom-i3,2016-17,Advanced Math and Science Academy Charter (District) - Advanced Math and Science Academy Charter School,4300305,0,4.7,2.8,88.8,0,0,3.7,58.7,41.3,108.1 +1,1,a-pcom-i3,2016-17,Agawam - Agawam Early Childhood Center,50003,0.5,0,0,99.5,0,0,0,99.7,0.3,44.3 +1,1,a-pcom-i3,2016-17,Agawam - Agawam High,50505,0.1,0,1.4,98.5,0,0,0,67.7,32.3,144.6 +1,1,a-pcom-i3,2016-17,Agawam - Agawam Junior High,50405,2.3,0,0,97.7,0,0,0,75.3,24.7,85.4 +1,1,a-pcom-i3,2016-17,Agawam - Benjamin J Phelps,50020,2.1,0,0,97.9,0,0,0,97,3,53.6 +1,1,a-pcom-i3,2016-17,Agawam - Clifford M Granger,50010,0.2,0,1.8,97.9,0,0,0,90.7,9.3,54.8 +1,1,a-pcom-i3,2016-17,Agawam - James Clark School,50030,0.2,0,0,99.8,0,0,0,96.4,3.6,59.4 +2.71875,2.72,a-pcom-i3,2016-17,Agawam - Roberta G. Doering School,50303,7.5,0,1.2,91.3,0,0,0,82.8,17.2,82.1 +1,1,a-pcom-i3,2016-17,Agawam - Robinson Park,50025,0.2,0,0,99.8,0,0,0,94.5,5.5,65.8 +7.96875,5,a-pcom-i3,2016-17,Alma del Mar Charter School (District) - Alma del Mar Charter School,4090205,7.7,0,12.8,74.5,0,2.6,2.6,76.9,23.1,39.2 +1,1,a-pcom-i3,2016-17,Amesbury - Amesbury Elementary,70005,0,0,0,100,0,0,0,95.2,4.8,59.8 +1,1,a-pcom-i3,2016-17,Amesbury - Amesbury High,70505,0,0,1.4,98.6,0,0,0,68.4,31.6,69.7 +1,1,a-pcom-i3,2016-17,Amesbury - Amesbury Innovation High School,70515,0,0,0,100,0,0,0,41.2,58.8,8.5 +1,1,a-pcom-i3,2016-17,Amesbury - Amesbury Middle,70013,0,0,1.2,98.8,0,0,0,72.1,27.9,80.6 +1,1,a-pcom-i3,2016-17,Amesbury - Charles C Cashman Elementary,70010,0,0,0,100,0,0,0,96,4,62 +4.03125,4.03,a-pcom-i3,2016-17,Amherst - Crocker Farm Elementary,80009,2.2,0,7.3,87.1,0,0,3.4,89.8,10.2,89.1 +4.375,4.38,a-pcom-i3,2016-17,Amherst - Fort River Elementary,80020,1.2,3.6,9.1,86,0,0,0,79.3,20.7,82.4 +9.96875,5,a-pcom-i3,2016-17,Amherst - Wildwood Elementary,80050,14.2,4.7,9.4,68.1,0,0,3.5,79.8,20.2,84.8 +4.71875,4.72,a-pcom-i3,2016-17,Amherst-Pelham - Amherst Regional High,6050505,5.5,1.2,6.4,84.9,0,0,1.9,65,35,161.4 +7.34375,5,a-pcom-i3,2016-17,Amherst-Pelham - Amherst Regional Middle School,6050405,9,0,10.6,76.5,0,0,3.9,69.5,30.5,77.4 +2.15625,2.16,a-pcom-i3,2016-17,Andover - Andover High,90505,0.5,1.5,4,93.1,0,0.4,0.5,70,30,199.6 +1.375,1.38,a-pcom-i3,2016-17,Andover - Andover West Middle,90310,0,1.5,2.9,95.6,0,0,0,82.1,17.9,68.2 +1.71875,1.72,a-pcom-i3,2016-17,Andover - Bancroft Elementary,90003,1.2,3.5,0.8,94.5,0,0,0,93.3,6.7,83.6 +1.625,1.63,a-pcom-i3,2016-17,Andover - Doherty Middle,90305,0,3.9,1.3,94.8,0,0,0,84.3,15.7,75.8 +1,1,a-pcom-i3,2016-17,Andover - Henry C Sanborn Elementary,90010,0,2,0,98,0,0,0,91.9,8.1,48.8 +1.5,1.5,a-pcom-i3,2016-17,Andover - High Plain Elementary,90004,0,3.6,1.2,95.2,0,0,0,95.6,4.4,84.3 +2.6875,2.69,a-pcom-i3,2016-17,Andover - Shawsheen School,90005,0,2.7,5.9,91.4,0,0,0,91.8,8.2,30.8 +1,1,a-pcom-i3,2016-17,Andover - South Elementary,90020,0,1.1,0,98.9,0,0,0,94.6,5.4,71.7 +1,1,a-pcom-i3,2016-17,Andover - West Elementary,90025,0,0,1.9,98.1,0,0,0,89.7,10.3,101.1 +1,1,a-pcom-i3,2016-17,Andover - Wood Hill Middle School,90350,0,0,1.5,98.5,0,0,0,80.6,19.4,65.5 +3.90625,3.91,a-pcom-i3,2016-17,Argosy Collegiate Charter School (District) - Argosy Collegiate Charter School,35090305,9.3,3.1,0,87.5,0,0,0,68.8,31.2,32.1 +2.59375,2.59,a-pcom-i3,2016-17,Arlington - Arlington High,100505,0.7,2.1,5.5,91.7,0,0,0,60,40,145.2 +5.78125,5,a-pcom-i3,2016-17,Arlington - Brackett,100010,0,1.8,12.9,81.5,0,1.8,1.8,95.4,4.6,54.1 +1.125,1.12,a-pcom-i3,2016-17,Arlington - Cyrus E Dallin,100025,0,3.6,0,96.4,0,0,0,86.7,13.3,55.3 +2.3125,2.31,a-pcom-i3,2016-17,Arlington - Hardy,100030,0,4.3,3,92.6,0,0,0,96.8,3.2,49.3 +3.59375,3.59,a-pcom-i3,2016-17,Arlington - John A Bishop,100005,4.6,0,6.9,88.5,0,0,0,90.4,9.6,43.3 +2.03125,2.03,a-pcom-i3,2016-17,Arlington - M Norcross Stratton,100055,0,0,6.5,93.5,0,0,0,89.2,10.8,61.1 +3.28125,3.28,a-pcom-i3,2016-17,Arlington - Menotomy Preschool,100038,0,3.5,3.5,89.5,0,0,3.5,100,0,28.5 +3.78125,3.78,a-pcom-i3,2016-17,Arlington - Ottoson Middle,100410,0.7,2.9,6.4,87.9,0,0,2.2,76.3,23.7,138.6 +1.75,1.75,a-pcom-i3,2016-17,Arlington - Peirce,100045,2.8,2.8,0,94.4,0,0,0,97.2,2.8,35.8 +3.6875,3.69,a-pcom-i3,2016-17,Arlington - Thompson,100050,2,2.8,6,88.2,0,0,1,97.5,2.5,50 +1.1875,1.19,a-pcom-i3,2016-17,Ashburnham-Westminster - Briggs Elementary,6100025,1.4,0,0.3,96.2,0,0,2.1,88,12,71.8 +1.5,1.5,a-pcom-i3,2016-17,Ashburnham-Westminster - Meetinghouse School,6100010,0,0,4.8,95.2,0,0,0,96.3,3.7,24.8 +1,1,a-pcom-i3,2016-17,Ashburnham-Westminster - Oakmont Regional High School,6100505,0,0,2.3,97.7,0,0,0,58.2,41.8,72.8 +1.1875,1.19,a-pcom-i3,2016-17,Ashburnham-Westminster - Overlook Middle School,6100305,1.7,0,0.3,96.2,0,0,1.7,79.1,20.9,58.5 +2.6875,2.69,a-pcom-i3,2016-17,Ashburnham-Westminster - Westminster Elementary,6100005,2.7,0,5.9,91.4,0,0,0,90.6,9.4,37.3 +1,1,a-pcom-i3,2016-17,Ashland - Ashland High,140505,0,0,0,100,0,0,0,66.1,33.9,79.7 +1,1,a-pcom-i3,2016-17,Ashland - Ashland Middle,140405,0,1.4,0,98.6,0,0,0,69.1,30.9,69.2 +1,1,a-pcom-i3,2016-17,Ashland - David Mindess,140015,1.4,0,0,97.2,0,1.4,0,88.6,11.4,71.1 +1,1,a-pcom-i3,2016-17,Ashland - Henry E Warren Elementary,140010,0.3,0,0,98.4,0,1.3,0,98.7,1.3,76 +1.125,1.12,a-pcom-i3,2016-17,Ashland - William Pittaway Elementary,140005,0,3.6,0,96.4,0,0,0,100,0,28 +1,1,a-pcom-i3,2016-17,Assabet Valley Regional Vocational Technical - Assabet Valley Vocational High School,8010605,0.7,0,0,99.3,0,0,0,49.8,50.2,150.5 +1,1,a-pcom-i3,2016-17,Athol-Royalston - Athol Community Elementary School,6150020,0.7,0,0,99.3,0,0,0,90.3,9.7,69.1 +1,1,a-pcom-i3,2016-17,Athol-Royalston - Athol High,6150505,0,0,2,98,0,0,0,71.7,28.3,49.5 +1,1,a-pcom-i3,2016-17,Athol-Royalston - Athol-Royalston Middle School,6150305,0,0,0,97.8,2.2,0,0,75.7,24.3,45.2 +1.5625,1.56,a-pcom-i3,2016-17,Athol-Royalston - Royalston Community School,6150050,5,0,0,95,0,0,0,93.5,6.5,19.9 +1.1875,1.19,a-pcom-i3,2016-17,Atlantis Charter (District) - Atlantis Charter School,4910550,1.2,1.2,1.4,96.2,0,0,0,85.6,14.4,162.8 +1,1,a-pcom-i3,2016-17,Attleboro - A. Irvin Studley Elementary School,160001,0,0,0,100,0,0,0,96.8,3.2,50.1 +7.71875,5,a-pcom-i3,2016-17,Attleboro - Attleboro Community Academy,160515,0,0,24.7,75.3,0,0,0,76,24,5 +1,1,a-pcom-i3,2016-17,Attleboro - Attleboro High,160505,0,0,2.8,97.2,0,0,0,68.4,31.6,177.8 +1,1,a-pcom-i3,2016-17,Attleboro - Cyril K. Brennan Middle School,160315,0,0,0,99.1,0,0,0.9,84.5,15.5,53.3 +1.0625,1.06,a-pcom-i3,2016-17,Attleboro - Early Learning Center,160008,0,0,0,96.6,0,0,3.4,99.7,0.3,29.3 +1,1,a-pcom-i3,2016-17,Attleboro - Hill-Roberts Elementary School,160045,0,0,0,100,0,0,0,96.4,3.6,38.7 +1,1,a-pcom-i3,2016-17,Attleboro - Hyman Fine Elementary School,160040,2.6,0,0,97.4,0,0,0,93,7,38.7 +1.5,1.5,a-pcom-i3,2016-17,Attleboro - Peter Thacher Elementary School,160050,0,1.6,0,95.2,0,0,3.2,97.3,2.7,62.7 +1.59375,1.59,a-pcom-i3,2016-17,Attleboro - Robert J. Coelho Middle School,160305,3.3,0,1.8,94.9,0,0,0,76.4,23.6,55.2 +1,1,a-pcom-i3,2016-17,Attleboro - Thomas Willett Elementary School,160035,0,0,2.5,97.5,0,0,0,94.9,5.1,39.7 +1.59375,1.59,a-pcom-i3,2016-17,Attleboro - Wamsutta Middle School,160320,0,0,2,94.9,2,0,1,74,26,48.9 +1,1,a-pcom-i3,2016-17,Auburn - Auburn Middle,170305,0,1.5,1.5,97.1,0,0,0,77.4,22.6,68.7 +1,1,a-pcom-i3,2016-17,Auburn - Auburn Senior High,170505,1.1,0.5,1,97.4,0,0,0,72.8,27.2,101.9 +1,1,a-pcom-i3,2016-17,Auburn - Bryn Mawr,170010,0,0,0,100,0,0,0,99.6,0.4,42.1 +1,1,a-pcom-i3,2016-17,Auburn - Pakachoag School,170025,0,0,2.8,97.2,0,0,0,100,0,35.5 +1,1,a-pcom-i3,2016-17,Auburn - Swanson Road Intermediate School,170030,0,0,0,100,0,0,0,94.6,5.4,70.5 +3.1875,3.19,a-pcom-i3,2016-17,Avon - Avon Middle High School,180510,4.1,4.1,2,89.8,0,0,0,71.3,28.7,48.9 +1.3125,1.31,a-pcom-i3,2016-17,Avon - Ralph D Butler,180010,2.1,0,0,95.8,0,0,2.1,93.7,6.3,47.9 +2.15625,2.16,a-pcom-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional High School,6160505,3.3,0,3.6,93.1,0,0,0,59.4,40.6,61.1 +3.25,3.25,a-pcom-i3,2016-17,Ayer Shirley School District - Ayer Shirley Regional Middle School,6160305,1.8,0,6.8,89.6,0,0,1.8,76.7,23.3,55.8 +1,1,a-pcom-i3,2016-17,Ayer Shirley School District - Lura A. White Elementary School,6160001,0,0,0,100,0,0,0,96.3,3.7,53.5 +1,1,a-pcom-i3,2016-17,Ayer Shirley School District - Page Hilltop Elementary School,6160002,0,0,0,98.6,0,0,1.4,90.1,9.9,70.7 +1.71875,1.72,a-pcom-i3,2016-17,Barnstable - Barnstable High,200505,1.8,0.9,2.3,94.5,0,0,0.5,66.5,33.5,219.9 +1,1,a-pcom-i3,2016-17,Barnstable - Barnstable Intermediate School,200315,0,1,1.6,97.4,0,0,0,83.4,16.6,102.3 +1,1,a-pcom-i3,2016-17,Barnstable - Barnstable United Elementary School,200050,0.7,0,0,99.3,0,0,0,90.3,9.7,102.6 +1,1,a-pcom-i3,2016-17,Barnstable - Centerville Elementary,200010,0,1.1,0,98.9,0,0,0,91,9,44.1 +1,1,a-pcom-i3,2016-17,Barnstable - Enoch Cobb Early Learning Center,200001,0,0,3.2,96.8,0,0,0,100,0,30.8 +2.125,2.12,a-pcom-i3,2016-17,Barnstable - Hyannis West Elementary,200025,1.7,3.4,1.7,93.2,0,0,0,96.6,3.4,58.6 +1,1,a-pcom-i3,2016-17,Barnstable - West Barnstable Elementary,200005,0,0,0,100,0,0,0,100,0,36 +1,1,a-pcom-i3,2016-17,Barnstable - West Villages Elementary School,200045,0,0,0,99.1,0.9,0,0,98.5,1.5,65.9 +1,1,a-pcom-i3,2016-17,Barnstable Community Horace Mann Charter Public (District) - Barnstable Community Horace Mann Charter Public School,4270010,0,0,0,98.6,1.4,0,0,97.1,2.9,36.2 +9.0625,5,a-pcom-i3,2016-17,Baystate Academy Charter Public School (District) - Baystate Academy Charter Public School,35020405,19.5,0,7.1,71,2.4,0,0,53.3,46.7,42.2 +2.25,2.25,a-pcom-i3,2016-17,Bedford - Bedford High,230505,1.6,1.6,3.1,92.8,0,0,0.8,69.7,30.3,122.3 +1.21875,1.22,a-pcom-i3,2016-17,Bedford - John Glenn Middle,230305,1.2,0,2.7,96.1,0,0,0,73.3,26.7,81.8 +2.78125,2.78,a-pcom-i3,2016-17,Bedford - Lt Elezer Davis,230010,4.4,1.2,2.1,91.1,0,0,1.2,89.9,10.1,84.5 +2.09375,2.09,a-pcom-i3,2016-17,Bedford - Lt Job Lane School,230012,0.4,1.5,1.9,93.3,0,0,2.9,87.5,12.5,68.9 +1,1,a-pcom-i3,2016-17,Belchertown - Belchertown High,240505,0,0,1.3,98.7,0,0,0,69.9,30.1,77.8 +1,1,a-pcom-i3,2016-17,Belchertown - Chestnut Hill Community School,240006,0,0,1.6,98.4,0,0,0,81.8,18.2,62.5 +1,1,a-pcom-i3,2016-17,Belchertown - Cold Spring,240005,0,0,0,100,0,0,0,95.9,4.1,34.3 +1,1,a-pcom-i3,2016-17,Belchertown - Jabish Middle School,240025,0,0,2,98,0,0,0,79.2,20.8,50 +1,1,a-pcom-i3,2016-17,Belchertown - Swift River Elementary,240018,0,0,0,100,0,0,0,92.2,7.8,56.3 +1,1,a-pcom-i3,2016-17,Bellingham - Bellingham Early Childhood Center,250003,0,0,0,100,0,0,0,100,0,21.5 +1.0625,1.06,a-pcom-i3,2016-17,Bellingham - Bellingham High School,250505,1.1,2.3,0,96.6,0,0,0,70.6,29.4,87.6 +1,1,a-pcom-i3,2016-17,Bellingham - Bellingham Memorial School,250315,1.2,0,0,98.8,0,0,0,77.6,22.4,84.7 +1,1,a-pcom-i3,2016-17,Bellingham - Keough Memorial Academy,250510,0,0,0,100,0,0,0,54.1,45.9,15 +1,1,a-pcom-i3,2016-17,Bellingham - South Elementary,250020,0,0,0,100,0,0,0,100,0,53.5 +1,1,a-pcom-i3,2016-17,Bellingham - Stall Brook,250025,0,0,0,100,0,0,0,96.5,3.5,56.7 +2.125,2.12,a-pcom-i3,2016-17,Belmont - Belmont High,260505,0.9,3,1.9,93.2,0,0,0.9,69.9,30.1,106.4 +3.65625,3.66,a-pcom-i3,2016-17,Belmont - Daniel Butler,260015,0,2.5,0,88.3,0,0,9.2,90.6,9.4,39.4 +2.71875,2.72,a-pcom-i3,2016-17,Belmont - Mary Lee Burbank,260010,2.2,0,2.5,91.3,0,0,4,89.6,10.4,40.4 +1,1,a-pcom-i3,2016-17,Belmont - Roger E Wellington,260035,0,1.3,0,98.7,0,0,0,89.7,10.3,75.7 +1.09375,1.09,a-pcom-i3,2016-17,Belmont - Winn Brook,260005,0,1.7,1.7,96.5,0,0,0,98.1,1.9,52.2 +4.15625,4.16,a-pcom-i3,2016-17,Belmont - Winthrop L Chenery Middle,260305,4.1,4.1,0.8,86.7,0,0,4.4,74.7,25.3,123.1 +15.71875,5,a-pcom-i3,2016-17,Benjamin Banneker Charter Public (District) - Benjamin Banneker Charter Public School,4200205,39.6,3.6,5.4,49.7,0,0,1.8,86.1,13.9,56 +1,1,a-pcom-i3,2016-17,Benjamin Franklin Classical Charter Public (District) - Benjamin Franklin Classical Charter Public School,4470205,0,0,1.6,98.4,0,0,0,88.6,11.4,61.5 +3.28125,3.28,a-pcom-i3,2016-17,Bentley Academy Charter School (District) - Bentley Academy Charter School,35110205,3.5,3.5,3.5,89.5,0,0,0,84.3,15.7,57.3 +1,1,a-pcom-i3,2016-17,Berkley - Berkley Community School,270010,0,0,1.5,98.5,0,0,0,97.7,2.3,65 +1,1,a-pcom-i3,2016-17,Berkley - Berkley Middle School,270305,0,0,2.3,97.7,0,0,0,80.6,19.4,43.8 +1.125,1.12,a-pcom-i3,2016-17,Berkshire Arts and Technology Charter Public (District) - Berkshire Arts and Technology Charter Public School,4140305,1.8,0,1.8,96.4,0,0,0,74.1,25.9,56 +1,1,a-pcom-i3,2016-17,Berkshire Hills - Monument Mt Regional High,6180505,0,0,0,100,0,0,0,64.6,35.4,69.7 +1.5625,1.56,a-pcom-i3,2016-17,Berkshire Hills - Monument Valley Regional Middle School,6180310,1.9,1.9,0,95,0,0,1.3,71.1,28.9,53.8 +1,1,a-pcom-i3,2016-17,Berkshire Hills - Muddy Brook Regional Elementary School,6180035,0,1.5,0,98.5,0,0,0.1,94.2,5.8,68.9 +1,1,a-pcom-i3,2016-17,Berlin - Berlin Memorial,280005,0,0,0,100,0,0,0,95.2,4.8,31.2 +1,1,a-pcom-i3,2016-17,Berlin-Boylston - Tahanto Regional High,6200505,0,0,0,98.5,0,0,1.5,69.7,30.3,66.6 +1,1,a-pcom-i3,2016-17,Beverly - Ayers/Ryal Side School,300055,0,0,0,100,0,0,0,94.9,5.1,63.3 +1,1,a-pcom-i3,2016-17,Beverly - Beverly High,300505,1.4,0,1.4,97.2,0,0,0,70.2,29.8,142.2 +1.0625,1.06,a-pcom-i3,2016-17,Beverly - Briscoe Middle,300305,0,0.8,2.5,96.6,0,0,0,77.6,22.4,119 +1,1,a-pcom-i3,2016-17,Beverly - Centerville Elementary,300010,0,2.1,0,97.9,0,0,0,90.2,9.8,48 +1,1,a-pcom-i3,2016-17,Beverly - Cove Elementary,300015,0,0,0,100,0,0,0,95.8,4.2,67 +1,1,a-pcom-i3,2016-17,Beverly - Hannah Elementary,300033,0,0,0,100,0,0,0,93,7,45.7 +1.0625,1.06,a-pcom-i3,2016-17,Beverly - McKeown School,300002,0,3.4,0,96.6,0,0,0,100,0,29.7 +1,1,a-pcom-i3,2016-17,Beverly - North Beverly Elementary,300040,0,0,0,100,0,0,0,92.1,7.9,52.9 +1,1,a-pcom-i3,2016-17,Billerica - Billerica Memorial High School,310505,1.8,0.6,0,97.6,0,0,0,75,25,169.5 +1,1,a-pcom-i3,2016-17,Billerica - Eugene C Vining,310030,0,0,0,100,0,0,0,97.4,2.6,31.5 +1.1875,1.19,a-pcom-i3,2016-17,Billerica - Frederick J Dutile,310007,0,2.6,1.3,96.2,0,0,0,96,4,39 +1,1,a-pcom-i3,2016-17,Billerica - Hajjar Elementary,310026,0,1.7,0,98.3,0,0,0,95.3,4.7,59.7 +1,1,a-pcom-i3,2016-17,Billerica - John F Kennedy,310012,0,0,1.2,98.8,0,0,0,91.1,8.9,40.2 +1,1,a-pcom-i3,2016-17,Billerica - Locke Middle,310310,0,0,2.9,97.1,0,0,0,79.6,20.4,67.8 +1,1,a-pcom-i3,2016-17,Billerica - Marshall Middle School,310305,0,0,0,100,0,0,0,74.5,25.5,85.2 +1.21875,1.22,a-pcom-i3,2016-17,Billerica - Parker,310015,2.6,0,0,96.1,0,0,1.3,94.5,5.5,76 +1,1,a-pcom-i3,2016-17,Billerica - Thomas Ditson,310005,0,0,1.4,98.6,0,0,0,98.6,1.4,70.6 +1,1,a-pcom-i3,2016-17,Blackstone Valley Regional Vocational Technical - Blackstone Valley,8050605,0,0.6,0.9,98.5,0,0,0,57.8,42.2,154.4 +1,1,a-pcom-i3,2016-17,Blackstone-Millville - A F Maloney,6220015,0,0,0,100,0,0,0,99.5,0.5,33.6 +1.09375,1.09,a-pcom-i3,2016-17,Blackstone-Millville - Blackstone Millville RHS,6220505,0,0,3.5,96.5,0,0,0,67,33,57.6 +1,1,a-pcom-i3,2016-17,Blackstone-Millville - Frederick W. Hartnett Middle School,6220405,0,0,2.1,97.9,0,0,0,77.8,22.2,48.6 +1,1,a-pcom-i3,2016-17,Blackstone-Millville - John F Kennedy Elementary,6220008,0,2.5,0,97.5,0,0,0,96.9,3.1,39.7 +1,1,a-pcom-i3,2016-17,Blackstone-Millville - Millville Elementary,6220010,0,0,0,100,0,0,0,93.7,6.3,40.5 +1.3125,1.31,a-pcom-i3,2016-17,Blue Hills Regional Vocational Technical - Blue Hills Regional Vocational Technical,8060605,1.7,0.8,1.7,95.8,0,0,0,50.8,49.2,119 +12.1875,5,a-pcom-i3,2016-17,Boston - Another Course To College,350541,19.4,7.9,7.9,61,0,0,3.9,64.7,35.3,25.4 +20.84375,5,a-pcom-i3,2016-17,Boston - Baldwin Early Learning Center,350003,24,10.7,26.7,33.3,0,0,5.3,94.7,5.3,37.5 +8.875,5,a-pcom-i3,2016-17,Boston - Beethoven,350021,11.4,2.8,14.2,71.6,0,0,0,85.6,14.4,35.2 +14.5625,5,a-pcom-i3,2016-17,Boston - Blackstone,350390,20.8,3.9,19.2,53.4,0,0,2.6,82.1,17.9,76.4 +22.8125,5,a-pcom-i3,2016-17,Boston - Boston Adult Academy,350548,45.9,11.6,7.7,27,0,3.8,3.9,57.7,42.3,26.1 +17.53125,5,a-pcom-i3,2016-17,Boston - Boston Arts Academy,350546,26.4,10.5,17.5,43.9,0,0,1.8,61.5,38.5,56.8 +21.8125,5,a-pcom-i3,2016-17,Boston - Boston Collaborative High School,350755,49.7,10.1,10.1,30.2,0,0,0,39.6,60.4,9.9 +15.40625,5,a-pcom-i3,2016-17,Boston - Boston Community Leadership Academy,350558,21.1,7,21.1,50.7,0,0,0,68.3,31.7,56.8 +14.1875,5,a-pcom-i3,2016-17,Boston - Boston International High School,350507,22.2,6.3,16.9,54.6,0,0,0,64.3,35.7,47.4 +9.84375,5,a-pcom-i3,2016-17,Boston - Boston Latin,350560,16.4,7.5,6.2,68.5,0,0.7,0.7,58.8,41.2,145.8 +13.65625,5,a-pcom-i3,2016-17,Boston - Boston Latin Academy,350545,19.5,9.8,10.5,56.3,0,0,3.9,61.3,38.7,102.8 +16.0625,5,a-pcom-i3,2016-17,Boston - Boston Teachers Union School,350012,24.3,9.1,15,48.6,0,0,3.1,81.8,18.2,33 +13.65625,5,a-pcom-i3,2016-17,Boston - Brighton High,350505,27.9,2.3,11.3,56.3,0,0,2.3,63.6,36.4,88.7 +18.375,5,a-pcom-i3,2016-17,Boston - Carter Developmental Center,350036,47.1,0,5.9,41.2,0,0,5.9,82.4,17.6,17 +22.5625,5,a-pcom-i3,2016-17,Boston - Charles H Taylor,350054,65.9,2.4,3.9,27.8,0,0,0,91.8,8.2,50.7 +14.625,5,a-pcom-i3,2016-17,Boston - Charles Sumner,350052,23.3,1.6,21.9,53.2,0,0,0,92.1,7.9,64.4 +14.28125,5,a-pcom-i3,2016-17,Boston - Charlestown High,350515,23,12.9,8.9,54.3,0.9,0,0,64.8,35.2,112.5 +14.75,5,a-pcom-i3,2016-17,Boston - Clarence R Edwards Middle,350430,20.2,11.3,11.2,52.8,2.2,0,2.2,59.6,40.4,44.6 +21.53125,5,a-pcom-i3,2016-17,Boston - Community Academy,350518,50.1,0,12.5,31.1,6.3,0,0,49.8,50.2,15.9 +18.21875,5,a-pcom-i3,2016-17,Boston - Community Academy of Science and Health,350581,43.7,4.1,10.4,41.7,0,0,0,68.7,31.3,48 +15.375,5,a-pcom-i3,2016-17,Boston - Curley K-8 School,350020,20.8,2.7,23,50.8,1.8,0,0.9,91.9,8.1,110.5 +6.53125,5,a-pcom-i3,2016-17,Boston - Curtis Guild,350062,9,3,5.9,79.1,0,0,3,81.6,18.4,33.6 +8.46875,5,a-pcom-i3,2016-17,Boston - Dante Alighieri Montessori School,350066,3.5,0,15.8,72.9,0,0,7.9,88.7,11.3,12.7 +26.09375,5,a-pcom-i3,2016-17,Boston - David A Ellis,350072,50.3,2.3,26.3,16.5,4.6,0,0,78.9,21.1,43.7 +19.90625,5,a-pcom-i3,2016-17,Boston - Dearborn,350074,46.6,5.2,7.8,36.3,0,0,4.1,71.4,28.6,38.6 +8.8125,5,a-pcom-i3,2016-17,Boston - Dennis C Haley,350077,18.7,4.7,2.3,71.8,0,0,2.4,81.4,18.6,42.4 +8.75,5,a-pcom-i3,2016-17,Boston - Donald Mckay,350080,7.4,1.9,14.9,72,0,0,3.9,73.9,26.1,54.2 +15.78125,5,a-pcom-i3,2016-17,Boston - Dorchester Academy,350651,30.3,0,15.2,49.5,0,0,5.1,49.5,50.5,19.8 +19.28125,5,a-pcom-i3,2016-17,Boston - Dr. Catherine Ellison-Rosa Parks Early Ed School,350008,44,3,14.8,38.3,0,0,0,85.4,14.6,33.9 +10.75,5,a-pcom-i3,2016-17,Boston - Dr. William Henderson Lower,350266,26.1,0,2.8,65.6,0,0,5.5,82.9,17.1,36.4 +11.25,5,a-pcom-i3,2016-17,Boston - Dr. William Henderson Upper,350426,19.5,6.2,4.2,64,0,2.1,4.1,67,33,48.1 +15.28125,5,a-pcom-i3,2016-17,Boston - ELC - West Zone,350006,27.7,0,8.5,51.1,8.5,0,4.3,97.9,2.1,23.5 +15.375,5,a-pcom-i3,2016-17,Boston - East Boston Early Childhood Center,350009,13.9,5.2,27.4,50.8,0,2.6,0,86.9,13.1,38.1 +9,5,a-pcom-i3,2016-17,Boston - East Boston High,350530,9.8,3.8,13.7,71.2,0,0,1.5,65.6,34.4,131.3 +12.625,5,a-pcom-i3,2016-17,Boston - Edison K-8,350375,21.3,7.5,8.9,59.6,0,0,2.7,77.4,22.6,74.8 +9.53125,5,a-pcom-i3,2016-17,Boston - Edward Everett,350088,17.9,7.2,5.4,69.5,0,0,0,89.2,10.8,27.8 +10.84375,5,a-pcom-i3,2016-17,Boston - Eliot Elementary,350096,13.9,5.2,13.9,65.3,0,0,1.7,92.7,7.3,57.4 +9.90625,5,a-pcom-i3,2016-17,Boston - Ellis Mendell,350100,7.9,0,19.8,68.3,0,0,4,94.4,5.6,25.2 +16.90625,5,a-pcom-i3,2016-17,Boston - Excel High School,350522,32,10.2,10.2,45.9,1.7,0,0,66,34,58.8 +17.4375,5,a-pcom-i3,2016-17,Boston - Fenway High School,350540,34.5,5.3,13.3,44.2,0,0,2.7,57.5,42.5,37.3 +10.625,5,a-pcom-i3,2016-17,Boston - Franklin D Roosevelt,350116,22.2,2.3,7.1,66,0,0,2.4,90.6,9.4,42.4 +15.3125,5,a-pcom-i3,2016-17,Boston - Gardner Pilot Academy,350326,24.6,4.9,19.6,51,0,0,0,87.6,12.4,41 +10.46875,5,a-pcom-i3,2016-17,Boston - George H Conley,350122,23,3.6,7,66.5,0,0,0,89.4,10.6,28.1 +29.15625,5,a-pcom-i3,2016-17,Boston - Greater Egleston Community High School,350543,60,6.7,26.7,6.7,0,0,0,66.6,33.4,15 +7.9375,5,a-pcom-i3,2016-17,Boston - Harvard-Kent,350200,5.1,13.7,6.6,74.6,0,0,0,81.4,18.6,58.7 +23.6875,5,a-pcom-i3,2016-17,Boston - Haynes Early Education Center,350010,66,0,9.8,24.2,0,0,0,83,17,40.8 +15.875,5,a-pcom-i3,2016-17,Boston - Henry Grew,350135,46.3,0,0,49.2,0,0,4.4,77.5,22.5,22.6 +17.125,5,a-pcom-i3,2016-17,Boston - Higginson,350015,43.5,0,11.3,45.2,0,0,0,88.7,11.3,26.4 +25.90625,5,a-pcom-i3,2016-17,Boston - Higginson/Lewis K-8,350377,64.6,7.5,8.6,17.1,0,0,2.2,76.4,23.6,46.5 +9.21875,5,a-pcom-i3,2016-17,Boston - Horace Mann School for the Deaf,350750,10.8,4.3,14.4,70.5,0,0,0,79.9,20.1,69.4 +9.96875,5,a-pcom-i3,2016-17,Boston - Hugh Roe O'Donnell,350141,6.3,0,21.3,68.1,0,0,4.3,81,19,23.4 +13.78125,5,a-pcom-i3,2016-17,Boston - Jackson Mann,350013,26.9,7.2,7.1,55.9,0,1,2,82,18,100.6 +13.125,5,a-pcom-i3,2016-17,Boston - James Condon Elementary,350146,26,4.6,9.1,58,0,0,2.3,86.3,13.7,88.3 +19.0625,5,a-pcom-i3,2016-17,Boston - James J Chittick,350154,45.4,5.2,7.8,39,2.6,0,0,92.1,7.9,38.5 +9.875,5,a-pcom-i3,2016-17,Boston - James Otis,350156,10.5,2.6,18.4,68.4,0,0,0,82.7,17.3,38.1 +20.28125,5,a-pcom-i3,2016-17,Boston - James P Timilty Middle,350485,45.9,3,16.1,35.1,0,0,0,67.6,32.4,37 +15.46875,5,a-pcom-i3,2016-17,Boston - James W Hennigan,350153,25.3,1.9,22.3,50.5,0,0,0,79,21,67.3 +18.125,5,a-pcom-i3,2016-17,Boston - Jeremiah E Burke High,350525,44.1,4,8,42,0,0,2,56,44,49.9 +15.84375,5,a-pcom-i3,2016-17,Boston - John D Philbrick,350172,38.3,0,12.4,49.3,0,0,0,87.7,12.3,16.1 +15,5,a-pcom-i3,2016-17,Boston - John F Kennedy,350166,10,0,38,52,0,0,0,72,28,30 +16.375,5,a-pcom-i3,2016-17,Boston - John W McCormack,350179,41.9,1.7,8.7,47.6,0,0,0,68.2,31.8,57.2 +13.8125,5,a-pcom-i3,2016-17,Boston - John Winthrop,350180,31.1,0,13,55.8,0,0,0,85.1,14.9,26.9 +22.96875,5,a-pcom-i3,2016-17,Boston - Joseph J Hurley,350182,11.5,0,58.7,26.5,3.3,0,0,88.3,11.7,30 +15.5,5,a-pcom-i3,2016-17,Boston - Joseph Lee,350183,39.2,0.9,7.7,50.4,0,0,1.9,78.6,21.4,107.2 +10.65625,5,a-pcom-i3,2016-17,Boston - Joseph P Manning,350184,30.1,0,4,65.9,0,0,0,68.3,31.7,25.1 +11.78125,5,a-pcom-i3,2016-17,Boston - Joseph P Tynan,350181,26.5,0,8.9,62.3,0,0,2.3,88.8,11.2,45.2 +20.25,5,a-pcom-i3,2016-17,Boston - Josiah Quincy,350286,14.9,45.7,4.2,35.2,0,0,0,82.1,17.9,94.4 +7.125,5,a-pcom-i3,2016-17,Boston - Joyce Kilmer,350190,15.3,0,6.1,77.2,0,0,1.4,90.9,9.1,49.1 +18.625,5,a-pcom-i3,2016-17,Boston - King K-8,350376,48.4,2.1,7.3,40.4,0,0,1.8,81.6,18.4,54.9 +14.84375,5,a-pcom-i3,2016-17,Boston - Lee Academy,350001,35.8,2.7,9,52.5,0,0,0,85.2,14.8,33.4 +18.03125,5,a-pcom-i3,2016-17,Boston - Lilla G. Frederick Middle School,350383,33.4,1.8,20.8,42.3,0,0,1.7,64.8,35.2,56.6 +8.75,5,a-pcom-i3,2016-17,Boston - Lyndon,350262,16,2,10,72,0,0,0,82,18,50 +10.84375,5,a-pcom-i3,2016-17,Boston - Lyon K-8,350004,17.3,6.9,3.5,65.3,0,0,6.9,76,24,28.8 +13.65625,5,a-pcom-i3,2016-17,Boston - Lyon Upper 9-12,350655,25,12.5,6.3,56.3,0,0,0,40.4,59.6,32 +18,5,a-pcom-i3,2016-17,Boston - Madison Park High,350537,32.7,2.9,13.9,42.4,0,0,8.1,51.8,48.2,136.8 +4.8125,4.81,a-pcom-i3,2016-17,Boston - Manassah E Bradley,350215,0,5,10.5,84.6,0,0,0,86.6,13.4,28.2 +21.59375,5,a-pcom-i3,2016-17,Boston - Margarita Muniz Academy,350549,0,0,69.1,30.9,0,0,0,63.7,36.3,27.5 +13.40625,5,a-pcom-i3,2016-17,Boston - Mario Umana Academy,350656,9.2,3.5,26.7,57.1,0,0,3.5,71.1,28.9,86.2 +20.25,5,a-pcom-i3,2016-17,Boston - Mather,350227,44.5,14.8,5.5,35.2,0,0,0,88.7,11.3,54.1 +19,5,a-pcom-i3,2016-17,Boston - Mattahunt,350226,53,0,3.8,39.2,1.3,0,2.6,87.1,12.9,76.6 +18.71875,5,a-pcom-i3,2016-17,Boston - Maurice J Tobin,350229,18.5,2.3,34.5,40.1,0,0,4.6,71.9,28.1,43.1 +16.125,5,a-pcom-i3,2016-17,Boston - Michael J Perkins,350231,40.1,0,5.7,48.4,0,0,5.7,77,23,17.4 +19.8125,5,a-pcom-i3,2016-17,Boston - Mildred Avenue K-8,350378,48,4,11.5,36.6,0,0,0,80.8,19.2,52 +18.3125,5,a-pcom-i3,2016-17,Boston - Mission Hill School,350382,51.7,0,6.9,41.4,0,0,0,79.5,20.5,29 +13.59375,5,a-pcom-i3,2016-17,Boston - Mozart,350237,25.3,4.5,13.6,56.5,0,0,0,86.9,13.1,22.1 +19.34375,5,a-pcom-i3,2016-17,Boston - Nathan Hale,350243,54.8,0,7.1,38.1,0,0,0,76.5,23.5,13.8 +20.75,5,a-pcom-i3,2016-17,Boston - New Mission High School,350542,43.1,10,13.3,33.6,0,0,0,50.3,49.7,30.1 +19.15625,5,a-pcom-i3,2016-17,Boston - O W Holmes,350138,47.1,4.7,9.5,38.7,0,0,0,78.8,21.2,42.5 +18.09375,5,a-pcom-i3,2016-17,Boston - O'Bryant School Math/Science,350575,39.3,4.9,12.7,42.1,0,0,1,61.9,38.1,101.5 +7.28125,5,a-pcom-i3,2016-17,Boston - Oliver Hazard Perry,350255,15.5,0,3.9,76.7,0,0,3.9,84.4,15.6,25.5 +14.75,5,a-pcom-i3,2016-17,Boston - Orchard Gardens,350257,26.3,1.1,16.5,52.8,0,0,3.3,78.1,21.9,90.8 +12.78125,5,a-pcom-i3,2016-17,Boston - Patrick J Kennedy,350264,11.7,0,29.2,59.1,0,0,0,88.4,11.6,34.2 +15.6875,5,a-pcom-i3,2016-17,Boston - Paul A Dever,350268,36.3,0,9.9,49.8,0,0,4,76.1,23.9,50 +17.21875,5,a-pcom-i3,2016-17,Boston - Pauline Agassiz Shaw Elementary School,350014,45.9,0,9.2,44.9,0,0,0,86.2,13.8,21.7 +7.96875,5,a-pcom-i3,2016-17,Boston - Phineas Bates,350278,12.8,0,9.9,74.5,0,0,2.9,85.5,14.5,34.4 +17.40625,5,a-pcom-i3,2016-17,Boston - Quincy Upper School,350565,20.8,23.6,7.6,44.3,0,0,3.8,56.5,43.5,52.9 +23.03125,5,a-pcom-i3,2016-17,Boston - Rafael Hernandez,350691,2.4,1.4,69.9,26.3,0,0,0,83.2,16.8,41.4 +10.46875,5,a-pcom-i3,2016-17,Boston - Richard J Murphy,350240,14.7,9.7,7.9,66.5,0,0,1.1,75.2,24.8,88.5 +13.90625,5,a-pcom-i3,2016-17,Boston - Roger Clap,350298,16.7,0,11.1,55.5,0,0,16.6,89,11,17.9 +15.1875,5,a-pcom-i3,2016-17,Boston - Samuel Adams,350302,20,0,28.6,51.4,0,0,0,88.6,11.4,35 +22.84375,5,a-pcom-i3,2016-17,Boston - Samuel W Mason,350304,54,0,15.9,26.9,3.2,0,0,79.4,20.6,31.4 +16.90625,5,a-pcom-i3,2016-17,Boston - Sarah Greenwood,350308,16,2,36.1,45.9,0,0,0,80.5,19.5,49.7 +15.59375,5,a-pcom-i3,2016-17,Boston - Snowden International School at Copley,350690,29.8,7.5,12.5,50.1,0,0,0,62.4,37.6,40 +12.09375,5,a-pcom-i3,2016-17,Boston - TechBoston Academy,350657,33.6,1,3,61.3,0,0,1,61.1,38.9,100.4 +15.71875,5,a-pcom-i3,2016-17,Boston - The English High,350535,16,7.2,25.7,49.7,0,0,1.4,62.5,37.5,69.9 +8,5,a-pcom-i3,2016-17,Boston - Thomas J Kenny,350328,18.7,3.5,3.4,74.4,0,0,0,82.9,17.1,29.5 +13.78125,5,a-pcom-i3,2016-17,Boston - UP Academy Holland,350167,26.2,4.8,13.1,55.9,0,0,0,83.3,16.7,83.7 +17.96875,5,a-pcom-i3,2016-17,Boston - Urban Science Academy,350579,38,5.5,14,42.5,0,0,0,56.9,43.1,55.2 +4.90625,4.91,a-pcom-i3,2016-17,Boston - Warren-Prescott,350346,5.2,0,10.5,84.3,0,0,0,91.2,8.8,57 +15.625,5,a-pcom-i3,2016-17,Boston - Washington Irving Middle,350445,37,2.2,10.8,50,0,0,0,78.3,21.7,45.8 +14.03125,5,a-pcom-i3,2016-17,Boston - West Roxbury Academy,350658,31.6,5,8.3,55.1,0,0,0,64.9,35.1,60.1 +13.28125,5,a-pcom-i3,2016-17,Boston - William E Russell,350366,18.3,3,21.3,57.5,0,0,0,90.9,9.1,32.9 +23.1875,5,a-pcom-i3,2016-17,Boston - William Ellery Channing,350360,53.1,5.3,5.3,25.8,5.3,0,5.3,84.1,15.9,18.8 +9.09375,5,a-pcom-i3,2016-17,Boston - William H Ohrenberger,350258,20.3,1.7,5.4,70.9,0,0,1.7,64.3,35.7,58.6 +15.90625,5,a-pcom-i3,2016-17,Boston - William McKinley,350363,36.4,1.8,10.8,49.1,0,0.5,1.4,63.3,36.7,221.7 +17,5,a-pcom-i3,2016-17,Boston - William Monroe Trotter,350370,44.6,0,7.4,45.6,0,0,2.5,79,21,40.6 +14.5625,5,a-pcom-i3,2016-17,Boston - Winship Elementary,350374,31.1,0,15.5,53.4,0,0,0,84.6,15.4,25.7 +21.03125,5,a-pcom-i3,2016-17,Boston - Young Achievers,350380,46,1.8,16,32.7,0,0,3.5,84.1,15.9,56.4 +11.125,5,a-pcom-i3,2016-17,Boston Collegiate Charter (District) - Boston Collegiate Charter School,4490305,14.1,1.2,14.3,64.4,0,0,6,73.2,26.8,82.7 +13.28125,5,a-pcom-i3,2016-17,Boston Day and Evening Academy Charter (District) - Boston Day and Evening Academy Charter School,4240505,27.5,5.4,9.6,57.5,0,0,0,66.5,33.5,41.8 +13.625,5,a-pcom-i3,2016-17,Boston Green Academy Horace Mann Charter School (District) - Boston Green Academy Horace Mann Charter School,4110305,27.4,0,12,56.4,0,0,4.2,64.7,35.3,71.1 +10.375,5,a-pcom-i3,2016-17,Boston Preparatory Charter Public (District) - Boston Preparatory Charter Public School,4160305,23.1,0,5.9,66.8,0,0,4.2,62.2,37.8,47.6 +9.8125,5,a-pcom-i3,2016-17,Boston Renaissance Charter Public (District) - Boston Renaissance Charter Public School,4810550,21.5,6.1,3.2,68.6,0,0,0.6,87.7,12.3,157.5 +1,1,a-pcom-i3,2016-17,Bourne - Bourne High School,360505,0,0,0,100,0,0,0,68.5,31.5,55.1 +1,1,a-pcom-i3,2016-17,Bourne - Bourne Middle School,360325,0,0,0,100,0,0,0,84.6,15.4,78.3 +1,1,a-pcom-i3,2016-17,Bourne - Bournedale Elementary School,360005,0,0,0,100,0,0,0,96.6,3.4,58 +1,1,a-pcom-i3,2016-17,Bourne - Peebles Elementary School,360010,0,0,0,100,0,0,0,91.9,8.1,48.3 +1,1,a-pcom-i3,2016-17,Boxford - Harry Lee Cole,380005,0,0,0,100,0,0,0,92.3,7.7,56.7 +1,1,a-pcom-i3,2016-17,Boxford - Spofford Pond,380013,0,0,0,100,0,0,0,92.3,7.7,69.6 +1,1,a-pcom-i3,2016-17,Boylston - Boylston Elementary,390005,0,0,0,97.3,0,0,2.7,93.2,6.8,36.9 +1,1,a-pcom-i3,2016-17,Braintree - Archie T Morrison,400033,0,0,1.9,98.1,0,0,0,96,4,51.6 +1,1,a-pcom-i3,2016-17,Braintree - Braintree High,400505,0.5,1.1,0.5,97.4,0,0,0.5,70.3,29.7,196.2 +1,1,a-pcom-i3,2016-17,Braintree - Donald Ross,400050,0,0,0,100,0,0,0,90.5,9.5,31.8 +1.125,1.12,a-pcom-i3,2016-17,Braintree - East Middle School,400305,2.4,0,1.2,96.4,0,0,0,82.7,17.3,82.1 +1,1,a-pcom-i3,2016-17,Braintree - Highlands,400015,0,0,0,100,0,0,0,91.6,8.4,40.5 +1,1,a-pcom-i3,2016-17,Braintree - Hollis,400005,0,0,0,98.2,0,0,1.8,94.5,5.5,55.7 +1,1,a-pcom-i3,2016-17,Braintree - Liberty,400025,0,0,0,100,0,0,0,96.7,3.3,35.6 +1,1,a-pcom-i3,2016-17,Braintree - Mary E Flaherty School,400020,0,1.1,0,98.9,0,0,0,96.4,3.6,56.1 +1,1,a-pcom-i3,2016-17,Braintree - Monatiquot Kindergarten Center,400009,0,0,0,100,0,0,0,92.7,7.3,34.3 +1,1,a-pcom-i3,2016-17,Braintree - South Middle School,400310,1.3,0,0,98.7,0,0,0,74.1,25.9,78 +1,1,a-pcom-i3,2016-17,Brewster - Eddy Elementary,410010,0,0,0,100,0,0,0,98.3,1.7,41.3 +1,1,a-pcom-i3,2016-17,Brewster - Stony Brook Elementary,410005,0,0,0,100,0,0,0,93.7,6.3,47.8 +7.71875,5,a-pcom-i3,2016-17,Bridge Boston Charter School (District) - Bridge Boston Charter School,4170205,10.5,10.5,0,75.3,1.6,0,2.1,83.9,16.1,47.5 +1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Bridgewater Middle School,6250320,0,0,0,100,0,0,0,80.2,19.8,49.4 +1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Bridgewater-Raynham Regional,6250505,1.5,0.8,0.8,96.9,0,0,0,69.2,30.8,130 +1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Laliberte Elementary School,6250050,0,0,2.5,97.5,0,0,0,87.5,12.5,39.5 +1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Merrill Elementary School,6250020,0,0,0,100,0,0,0,95.7,4.3,30.1 +1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Mitchell Elementary School,6250002,0,0,0,100,0,0,0,95.1,4.9,108.8 +1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Raynham Middle School,6250315,0,0,0,100,0,0,0,82.8,17.2,64 +4.4375,4.44,a-pcom-i3,2016-17,Bridgewater-Raynham - Therapeutic Day School,6250415,0,0,14.2,85.8,0,0,0,72.7,27.3,7 +1,1,a-pcom-i3,2016-17,Bridgewater-Raynham - Williams Intermediate School,6250300,0,0,0,100,0,0,0,84.8,15.2,73.5 +1,1,a-pcom-i3,2016-17,Brimfield - Brimfield Elementary,430005,0,0,0,100,0,0,0,85.6,14.4,48.4 +1,1,a-pcom-i3,2016-17,Bristol County Agricultural - Bristol County Agricultural High,9100705,0,0,0,100,0,0,0,59.8,40.2,47.3 +1.09375,1.09,a-pcom-i3,2016-17,Bristol-Plymouth Regional Vocational Technical - Bristol-Plymouth Vocational Technical,8100605,1.4,1.4,0,96.5,0.7,0,0,61.3,38.7,144.9 +2.21875,2.22,a-pcom-i3,2016-17,Brockton - Ashfield Middle School,440421,7.1,0,0,92.9,0,0,0,78.6,21.4,65.5 +4.53125,4.53,a-pcom-i3,2016-17,Brockton - Barrett Russell School,440007,5.8,0,5.8,85.5,0,0,2.9,98.1,1.9,34.4 +8.90625,5,a-pcom-i3,2016-17,Brockton - Brockton Champion High School,440515,22.7,0,5.8,71.5,0,0,0,52.8,47.2,34.5 +6.40625,5,a-pcom-i3,2016-17,Brockton - Brockton High,440505,14.4,1.8,3,79.5,0,0.3,1,64.1,35.9,392.8 +4.34375,4.34,a-pcom-i3,2016-17,Brockton - Brookfield,440010,13.2,0,0.7,86.1,0,0,0,92.3,7.7,68.3 +4.1875,4.19,a-pcom-i3,2016-17,Brockton - Downey,440110,9.3,0,3.1,86.6,0,0,1,89.3,10.7,96.9 +5.4375,5,a-pcom-i3,2016-17,Brockton - Dr W Arnone Community School,440001,14,0,3.2,82.6,0,0,0.2,86.3,13.7,94.3 +9.25,5,a-pcom-i3,2016-17,Brockton - East Middle School,440405,21.6,1.5,4.6,70.4,0,0,1.9,70.4,29.6,64.9 +4,4,a-pcom-i3,2016-17,Brockton - Edgar B Davis,440023,6.8,0,2.5,87.2,0,0,3.5,76.8,23.2,86.8 +11.40625,5,a-pcom-i3,2016-17,Brockton - Edison Academy,440520,22.2,0.9,10.8,63.5,0,0,2.7,71.4,28.6,11.3 +2.15625,2.16,a-pcom-i3,2016-17,Brockton - Frederick Douglass Academy,440080,2.2,0,0,93.1,0,0,4.7,50.7,49.3,14.8 +1.75,1.75,a-pcom-i3,2016-17,Brockton - Gilmore School Early Childhood Center,440050,2.6,1.4,1.6,94.4,0,0,0,97.6,2.4,73.4 +5.5,5,a-pcom-i3,2016-17,Brockton - Goddard Alternative School,440400,15.5,0,2.1,82.4,0,0,0,63.4,36.6,35.6 +4.21875,4.22,a-pcom-i3,2016-17,Brockton - Hancock,440045,2.3,0,7.2,86.5,1.5,0,2.5,91.8,8.2,52.9 +3.90625,3.91,a-pcom-i3,2016-17,Brockton - Huntington,440055,12.5,0,0,87.5,0,0,0,89.7,10.3,47.9 +4.3125,4.31,a-pcom-i3,2016-17,Brockton - John F Kennedy,440017,9.7,2,1.6,86.2,0,0,0.5,89.8,10.2,62.1 +7.03125,5,a-pcom-i3,2016-17,Brockton - Joseph F. Plouffe Academy,440422,13.6,6,3,77.5,0,0,0,76.9,23.1,67.1 +4.46875,4.47,a-pcom-i3,2016-17,Brockton - Louis F Angelo Elementary,440065,9.1,0.2,2.9,85.7,0,0,2,95.6,4.4,102.1 +7.5,5,a-pcom-i3,2016-17,Brockton - Manthala George Jr. School,440003,6.7,0,13.9,76,1.3,0,2.1,92.5,7.5,95.4 +7.34375,5,a-pcom-i3,2016-17,Brockton - Mary E. Baker School,440002,18.6,1.2,3.7,76.5,0,0,0,93.9,6.1,81.7 +6.09375,5,a-pcom-i3,2016-17,Brockton - North Middle School,440410,15,0,1.3,80.5,1.4,0,1.7,71.7,28.3,69 +6.1875,5,a-pcom-i3,2016-17,Brockton - Oscar F Raymond,440078,14.8,0,1.3,80.2,0,0,3.7,91.4,8.6,75.2 +2.75,2.75,a-pcom-i3,2016-17,Brockton - South Middle School,440415,8.3,0,0,91.2,0,0,0.6,71.5,28.5,59.3 +5.375,5,a-pcom-i3,2016-17,Brockton - West Middle School,440420,12.7,1.4,1.4,82.8,0,0,1.7,76.9,23.1,70.2 +1,1,a-pcom-i3,2016-17,Brooke Charter School (District) - Brooke Charter School,4280305,0,0,0,100,0,0,0,0,100,0.5 +1,1,a-pcom-i3,2016-17,Brookfield - Brookfield Elementary,450005,0,0,0,100,0,0,0,95,5,43.6 +4.5625,4.56,a-pcom-i3,2016-17,Brookline - Brookline Early Education Program at Beacon,460001,7.3,0,7.3,85.4,0,0,0,100,0,13.7 +2.8125,2.81,a-pcom-i3,2016-17,Brookline - Brookline Early Education Program at Putterham,460002,9,0,0,91,0,0,0,90,10,20 +4.71875,4.72,a-pcom-i3,2016-17,Brookline - Brookline High,460505,9.2,3.1,2.5,84.9,0.3,0,0,64.9,35.1,292.7 +4.125,4.13,a-pcom-i3,2016-17,Brookline - Edith C Baker,460005,1.7,7.8,3.6,86.8,0,0,0,85.9,14.1,105.9 +3.59375,3.59,a-pcom-i3,2016-17,Brookline - Edward Devotion,460015,8.6,1.2,1.7,88.5,0,0,0,79.8,20.2,143.1 +5.75,5,a-pcom-i3,2016-17,Brookline - Heath,460025,10,2.8,5.6,81.6,0,0,0,86.5,13.5,71.3 +2.875,2.88,a-pcom-i3,2016-17,Brookline - John D Runkle,460045,3.6,3.3,1.3,90.8,0,0.9,0,84.4,15.6,110.2 +4.0625,4.06,a-pcom-i3,2016-17,Brookline - Lawrence,460030,5.7,5.4,0.8,87,0,0,1,81.7,18.3,96.3 +4.40625,4.41,a-pcom-i3,2016-17,Brookline - Michael Driscoll,460020,2.2,7.5,3.3,85.9,0,0,1.1,82.6,17.4,89.2 +4.90625,4.91,a-pcom-i3,2016-17,Brookline - Pierce,460040,7.7,4.3,1.8,84.3,0,0,2,84.5,15.5,101.7 +2.46875,2.47,a-pcom-i3,2016-17,Brookline - The Lynch Center,460060,7.9,0,0,92.1,0,0,0,100,0,31 +4.34375,4.34,a-pcom-i3,2016-17,Brookline - William H Lincoln,460035,6.2,3,4.8,86.1,0,0,0,80.4,19.6,95.7 +1.46875,1.47,a-pcom-i3,2016-17,Burlington - Burlington High,480505,0,1.9,2.1,95.3,0,0,0.6,75.4,24.6,154 +1,1,a-pcom-i3,2016-17,Burlington - Fox Hill,480007,0,0,0,100,0,0,0,89.3,10.7,56.7 +1,1,a-pcom-i3,2016-17,Burlington - Francis Wyman Elementary,480035,0,1.2,1.2,97.6,0,0,0,92.2,7.8,83 +1.28125,1.28,a-pcom-i3,2016-17,Burlington - Marshall Simonds Middle,480303,1,3.1,0,95.9,0,0,0,82.7,17.3,97 +1.5,1.5,a-pcom-i3,2016-17,Burlington - Memorial,480015,0,4.8,0,95.2,0,0,0,95,5,62.7 +1,1,a-pcom-i3,2016-17,Burlington - Pine Glen Elementary,480020,0,0,0,98.3,0,0,1.7,91.2,8.8,58 +14.375,5,a-pcom-i3,2016-17,Cambridge - Amigos School,490006,2.7,1.8,41.5,54,0,0,0,84.4,15.6,56.3 +7.4375,5,a-pcom-i3,2016-17,Cambridge - Cambridge Rindge and Latin,490506,14.4,2.8,5.9,76.2,0.4,0,0.4,67.2,32.8,267.9 +7.53125,5,a-pcom-i3,2016-17,Cambridge - Cambridge Street Upper School,490305,19.7,0,4.4,75.9,0,0,0,79,21,45.6 +9.71875,5,a-pcom-i3,2016-17,Cambridge - Cambridgeport,490007,20.7,4.7,3.8,68.9,0,1.9,0,86.8,13.2,53.1 +9.96875,5,a-pcom-i3,2016-17,Cambridge - Fletcher/Maynard Academy,490090,24,6.3,0,68.1,0,0,1.6,82.9,17.1,63.3 +5.78125,5,a-pcom-i3,2016-17,Cambridge - Graham and Parks,490080,10.3,6.7,1.5,81.5,0,0,0,88.8,11.2,66.9 +4.09375,4.09,a-pcom-i3,2016-17,Cambridge - Haggerty,490020,6.6,4.4,2.2,86.9,0,0,0,91.2,8.8,45.8 +6.1875,5,a-pcom-i3,2016-17,Cambridge - John M Tobin,490065,11.5,7,1.4,80.2,0,0,0,84.4,15.6,48 +2.90625,2.91,a-pcom-i3,2016-17,Cambridge - Kennedy-Longfellow,490040,5.6,1.9,1.9,90.7,0,0,0,95.6,4.4,53.5 +8.84375,5,a-pcom-i3,2016-17,Cambridge - King Open,490035,8.7,7.2,12.3,71.7,0,0,0,85.1,14.9,76 +5.6875,5,a-pcom-i3,2016-17,Cambridge - Maria L. Baldwin,490005,8.4,3.2,6.6,81.8,0,0,0,84.1,15.9,59.7 +12.6875,5,a-pcom-i3,2016-17,Cambridge - Martin Luther King Jr.,490030,14.2,20,4.3,59.4,2.1,0,0,89.5,10.5,46.8 +6.21875,5,a-pcom-i3,2016-17,Cambridge - Morse,490045,12.5,1.5,5.9,80.1,0,0,0,85.4,14.6,68 +4.3125,4.31,a-pcom-i3,2016-17,Cambridge - Peabody,490050,8.8,3.2,0,86.2,1.8,0,0,90.2,9.8,56.6 +12.8125,5,a-pcom-i3,2016-17,Cambridge - Putnam Avenue Upper School,490310,28.3,10.3,2.4,59,0,0,0,60.9,39.1,41.8 +7.65625,5,a-pcom-i3,2016-17,Cambridge - Rindge Avenue Upper School,490315,9.8,4.9,9.8,75.5,0,0,0,66.1,33.9,40.8 +4.4375,4.44,a-pcom-i3,2016-17,Cambridge - Vassal Lane Upper School,490320,6.1,2,6.1,85.8,0,0,0,76.9,23.1,49.4 +1.71875,1.72,a-pcom-i3,2016-17,Canton - Canton High,500505,0,3,1,94.5,0,0,1.4,69.8,30.2,98.9 +1,1,a-pcom-i3,2016-17,Canton - Dean S Luce,500020,0,0,1.6,98.4,0,0,0,97.1,2.9,63.2 +1.40625,1.41,a-pcom-i3,2016-17,Canton - John F Kennedy,500017,3,1.5,0,95.5,0,0,0,92.8,7.2,67.1 +3.34375,3.34,a-pcom-i3,2016-17,Canton - Lt Peter M Hansen,500012,3.8,1.5,3.8,89.3,0,0,1.5,92.6,7.4,65.4 +5,5,a-pcom-i3,2016-17,Canton - Rodman Early Childhood Center,500010,12,0,0,84,0,0,4,96,4,25 +3.90625,3.91,a-pcom-i3,2016-17,Canton - Wm H Galvin Middle,500305,2.3,2.3,4.5,87.5,0,0,3.4,75.8,24.2,88.2 +1,1,a-pcom-i3,2016-17,Cape Cod Lighthouse Charter (District) - Cape Cod Lighthouse Charter School,4320530,0,0,0,100,0,0,0,81.1,18.9,33.3 +1,1,a-pcom-i3,2016-17,Cape Cod Regional Vocational Technical - Cape Cod Region Vocational Technical,8150605,0.9,0,0,99.1,0,0,0,55.5,44.5,105.3 +1.03125,1.03,a-pcom-i3,2016-17,Carlisle - Carlisle School,510025,0,3.3,0,96.7,0,0,0,84.1,15.9,94.1 +1.03125,1.03,a-pcom-i3,2016-17,Carver - Carver Elementary School,520015,0.5,0.9,0.9,96.7,0.9,0,0,97.2,2.8,106.1 +1.96875,1.97,a-pcom-i3,2016-17,Carver - Carver Middle/High School,520405,3.6,0.9,0.9,93.7,0,0.9,0,72.9,27.1,110.6 +1,1,a-pcom-i3,2016-17,Central Berkshire - Becket Washington School,6350005,0,0,0,100,0,0,0,100,0,18.1 +1,1,a-pcom-i3,2016-17,Central Berkshire - Craneville,6350025,1.7,0,0,98.3,0,0,0,92.3,7.7,59.6 +1,1,a-pcom-i3,2016-17,Central Berkshire - Kittredge,6350035,0,0,0,100,0,0,0,99.3,0.7,22.9 +1,1,a-pcom-i3,2016-17,Central Berkshire - Nessacus Regional Middle School,6350305,0,1.8,0,98.2,0,0,0,74.9,25.1,56 +1,1,a-pcom-i3,2016-17,Central Berkshire - Wahconah Regional High,6350505,0,0,0,97.1,0,0,2.9,66.5,33.5,68.4 +1.21875,1.22,a-pcom-i3,2016-17,Chelmsford - Byam School,560030,0,3.9,0,96.1,0,0,0,90.5,9.5,76 +1,1,a-pcom-i3,2016-17,Chelmsford - Center Elementary School,560005,0,0,0,98.5,0,0,1.5,95.7,4.3,64.9 +1,1,a-pcom-i3,2016-17,Chelmsford - Charles D Harrington,560025,1.6,0,0,98.4,0,0,0,93.6,6.4,62.6 +1.03125,1.03,a-pcom-i3,2016-17,Chelmsford - Chelmsford High,560505,0,1.1,1.7,96.7,0,0.6,0,67.3,32.7,180 +1,1,a-pcom-i3,2016-17,Chelmsford - Col Moses Parker School,560305,0,1,0,99,0,0,0,80.6,19.4,99.9 +1,1,a-pcom-i3,2016-17,Chelmsford - Community Education Center,560001,0,1.8,0,98.2,0,0,0,100,0,56.1 +1,1,a-pcom-i3,2016-17,Chelmsford - McCarthy Middle School,560310,0,2.6,0,97.4,0,0,0,82.2,17.8,115.6 +1.6875,1.69,a-pcom-i3,2016-17,Chelmsford - South Row,560015,1.8,1.8,1.8,94.6,0,0,0,98.2,1.8,55.7 +5.625,5,a-pcom-i3,2016-17,Chelsea - Chelsea High,570505,1.9,1.9,12.2,82,0,1.3,0.6,68.7,31.3,156.3 +4.8125,4.81,a-pcom-i3,2016-17,Chelsea - Clark Avenue School,570050,3.2,0.8,11.4,84.6,0,0,0,77.3,22.7,62.7 +5.1875,5,a-pcom-i3,2016-17,Chelsea - Edgar A Hooks Elementary,570030,1.7,0,14.9,83.4,0,0,0,87.5,12.5,59.4 +5.53125,5,a-pcom-i3,2016-17,Chelsea - Eugene Wright Science and Technology Academy,570045,1.7,0,16,82.3,0,0,0,82.1,17.9,59 +8.15625,5,a-pcom-i3,2016-17,Chelsea - Frank M Sokolowski Elementary,570040,3.4,3.4,19.3,73.9,0,0,0,85.6,14.4,58.8 +5.75,5,a-pcom-i3,2016-17,Chelsea - George F. Kelly Elementary,570035,0,0,18.4,81.6,0,0,0,92.1,7.9,56.4 +7.46875,5,a-pcom-i3,2016-17,Chelsea - Joseph A. Browne School,570055,1.7,8.5,13.7,76.1,0,0,0,81.5,18.5,59.1 +9.15625,5,a-pcom-i3,2016-17,Chelsea - Shurtleff Early Childhood,570003,0.8,0,28.6,70.7,0,0,0,93.4,6.6,132 +6.71875,5,a-pcom-i3,2016-17,Chelsea - William A Berkowitz Elementary,570025,0,2,17.9,78.5,0,1.6,0,83.2,16.8,62.1 +1,1,a-pcom-i3,2016-17,Chesterfield-Goshen - New Hingham Regional Elementary,6320025,0,0,0,100,0,0,0,94.7,5.3,26.2 +1.0625,1.06,a-pcom-i3,2016-17,Chicopee - Barry,610003,1.7,1.7,0,96.6,0,0,0,95,5,59.5 +2,2,a-pcom-i3,2016-17,Chicopee - Belcher,610010,0,0,5,93.6,0,1.3,0,96.5,3.5,41.6 +1,1,a-pcom-i3,2016-17,Chicopee - Bellamy Middle,610305,0,0,2.2,96.9,0,1,0,79.2,20.8,104.4 +2.09375,2.09,a-pcom-i3,2016-17,Chicopee - Bowe,610015,3.4,0,3.4,93.3,0,0,0,95,5,59.7 +1,1,a-pcom-i3,2016-17,Chicopee - Bowie,610020,2.1,0,1.1,96.8,0,0,0,87.2,12.8,47 +4.09375,4.09,a-pcom-i3,2016-17,Chicopee - Chicopee Academy,610021,7.8,2.6,2.6,86.9,0,0,0,65.4,34.6,38.2 +1.84375,1.84,a-pcom-i3,2016-17,Chicopee - Chicopee Comprehensive High School,610510,1.1,0.7,4.1,94.1,0,0,0,61.2,38.8,143.2 +1.78125,1.78,a-pcom-i3,2016-17,Chicopee - Chicopee High,610505,0.8,0,4.1,94.3,0.8,0,0,73.6,26.4,122.2 +1.5,1.5,a-pcom-i3,2016-17,Chicopee - Dupont Middle,610310,2.9,1,1,95.2,0,0,0,78.7,21.3,104.5 +4.625,4.62,a-pcom-i3,2016-17,Chicopee - Fairview Elementary,610050,0,0,14.8,85.2,0,0,0,88.2,11.8,81 +1.875,1.88,a-pcom-i3,2016-17,Chicopee - Gen John J Stefanik,610090,1.4,0,4.6,94,0,0,0,92.5,7.5,69 +1,1,a-pcom-i3,2016-17,Chicopee - Lambert-Lavoie,610040,2.4,0,0,97.6,0,0,0,90.5,9.5,42 +2.03125,2.03,a-pcom-i3,2016-17,Chicopee - Litwin,610022,0,3.3,3.3,93.5,0,0,0,96.7,3.3,61.3 +1,1,a-pcom-i3,2016-17,Chicopee - Streiber Memorial School,610065,0,0,0.7,98.4,0,0.9,0,90.1,9.9,48.5 +1.8125,1.81,a-pcom-i3,2016-17,Chicopee - Szetela Early Childhood Center,610001,0,0,5.8,94.2,0,0,0,94.2,5.8,52 +3.3125,3.31,a-pcom-i3,2016-17,Christa McAuliffe Charter Public (District) - Christa McAuliffe Charter Public School,4180305,2.2,0,3.9,89.4,0,0,4.5,62.1,37.9,44.8 +10.1875,5,a-pcom-i3,2016-17,City on a Hill Charter Public School Circuit Street (District) - City on a Hill Charter Public School Circuit Street,4370505,21.1,3.8,7.7,67.4,0,0,0,71.2,28.8,52.1 +10.9375,5,a-pcom-i3,2016-17,City on a Hill Charter Public School Dudley Square (District) - City on a Hill Charter Public School Dudley Square,35040505,13.6,5.8,15.6,65,0,0,0,63,37,51.4 +7.6875,5,a-pcom-i3,2016-17,City on a Hill Charter Public School New Bedford (District) - City on a Hill Charter Public School New Bedford,35070505,13.9,2.8,7.9,75.4,0,0,0,64.3,35.7,35.9 +1,1,a-pcom-i3,2016-17,Clarksburg - Clarksburg Elementary,630010,0,0,0,100,0,0,0,88.6,11.4,31.6 +1,1,a-pcom-i3,2016-17,Clinton - Clinton Elementary,640050,1,1,1.3,96.8,0,0,0,95.2,4.8,104.9 +1.0625,1.06,a-pcom-i3,2016-17,Clinton - Clinton Middle School,640305,2.4,0,0,96.6,1,0,0,84.3,15.7,83.7 +1.625,1.63,a-pcom-i3,2016-17,Clinton - Clinton Senior High,640505,1.7,0,1.7,94.8,0,1.7,0,62.1,37.9,57.7 +14.875,5,a-pcom-i3,2016-17,Codman Academy Charter Public (District) - Codman Academy Charter Public School,4380505,34.6,5.1,4.7,52.4,0,0,3.1,60.5,39.5,63.4 +1,1,a-pcom-i3,2016-17,Cohasset - Cohasset Middle/High School,650505,0,0,1,99,0,0,0,64.1,35.9,104.9 +1,1,a-pcom-i3,2016-17,Cohasset - Deer Hill,650005,0,0,0,100,0,0,0,91.7,8.3,47.9 +1,1,a-pcom-i3,2016-17,Cohasset - Joseph Osgood,650010,1.9,0,0,98.1,0,0,0,91,9,51.4 +6.25,5,a-pcom-i3,2016-17,Collegiate Charter School of Lowell (District) - Collegiate Charter School of Lowell,35030205,1.8,7.3,9.1,80,0,0,1.8,80.9,19.1,55 +13.15625,5,a-pcom-i3,2016-17,Community Charter School of Cambridge (District) - Community Charter School of Cambridge,4360305,16.2,4.8,17.9,57.9,0,0,3.3,67.6,32.4,61.5 +7.5,5,a-pcom-i3,2016-17,Community Day Charter Public School - Gateway (District) - Community Day Charter Public School - Gateway,4260205,3.8,3.2,17,76,0,0,0,94.1,5.9,39.6 +4.65625,4.66,a-pcom-i3,2016-17,Community Day Charter Public School - Prospect (District) - Community Day Charter Public School - Prospect,4400205,1.6,0,13.2,85.1,0,0,0,80.7,19.3,61.5 +6.4375,5,a-pcom-i3,2016-17,Community Day Charter Public School - R. Kingman Webster (District) - Community Day Charter Public School - R. Kingman Webster,4310205,1.1,3.4,16,79.4,0,0,0,90,10,43.5 +2.21875,2.22,a-pcom-i3,2016-17,Concord - Alcott,670005,2.7,3.3,1.1,92.9,0,0,0,94.2,5.8,75.1 +2.78125,2.78,a-pcom-i3,2016-17,Concord - Concord Middle,670305,2.1,3.7,2.1,91.1,0,1,0,72.8,27.2,95.4 +1.65625,1.66,a-pcom-i3,2016-17,Concord - Thoreau,670020,1.5,3.8,0,94.7,0,0,0,95.7,4.3,66.2 +1.1875,1.19,a-pcom-i3,2016-17,Concord - Willard,670030,0,2.5,1.3,96.2,0,0,0,96.4,3.6,79 +2.46875,2.47,a-pcom-i3,2016-17,Concord-Carlisle - Concord Carlisle High,6400505,1.5,2.2,4.2,92.1,0,0,0,64.2,35.8,167.4 +14.15625,5,a-pcom-i3,2016-17,Conservatory Lab Charter (District) - Conservatory Lab Charter School,4390050,28.8,4.1,11,54.7,0,0,1.4,71.4,28.6,72.8 +1,1,a-pcom-i3,2016-17,Conway - Conway Grammar,680005,0,0,0,100,0,0,0,88.8,11.2,35.8 +1,1,a-pcom-i3,2016-17,Danvers - Danvers High,710505,0.9,0,0.9,98.2,0,0,0,57.5,42.5,113.3 +1,1,a-pcom-i3,2016-17,Danvers - Great Oak,710015,0,0,0,100,0,0,0,95.4,4.6,42.4 +1,1,a-pcom-i3,2016-17,Danvers - Highlands,710010,0,0,0,100,0,0,0,87.2,12.8,47.1 +1,1,a-pcom-i3,2016-17,Danvers - Holten Richmond Middle School,710305,0,1,1,97,0,0,1,80.2,19.8,100.9 +1,1,a-pcom-i3,2016-17,Danvers - Ivan G Smith,710032,0,0,0,100,0,0,0,92.8,7.2,36.6 +1,1,a-pcom-i3,2016-17,Danvers - Riverside,710030,0,1.5,0,98.5,0,0,0,90.7,9.3,66.1 +1,1,a-pcom-i3,2016-17,Danvers - Willis E Thorpe,710045,0,0,2.1,97.9,0,0,0,89,11,47.2 +1,1,a-pcom-i3,2016-17,Dartmouth - Andrew B. Cushman School,720005,0,0,0,100,0,0,0,99.3,0.7,25.7 +1,1,a-pcom-i3,2016-17,Dartmouth - Dartmouth High,720505,0,0,0,99.1,0,0,0.9,68.2,31.8,108.3 +1.125,1.12,a-pcom-i3,2016-17,Dartmouth - Dartmouth Middle,720050,2.7,0,0,96.4,0,0,0.9,63.6,36.4,111.6 +1,1,a-pcom-i3,2016-17,Dartmouth - George H Potter,720030,0,0,0,100,0,0,0,94.3,5.7,52.3 +1,1,a-pcom-i3,2016-17,Dartmouth - James M. Quinn School,720040,0,0,0,100,0,0,0,95.2,4.8,100.2 +1,1,a-pcom-i3,2016-17,Dartmouth - Joseph Demello,720015,0,0,0,100,0,0,0,95.7,4.3,46.4 +1,1,a-pcom-i3,2016-17,Dedham - Avery,730010,0,1.9,0,98.1,0,0,0,94,6,52.7 +2.8125,2.81,a-pcom-i3,2016-17,Dedham - Dedham High,730505,1.7,3.1,4.2,91,0,0,0,74.2,25.8,96.1 +1.03125,1.03,a-pcom-i3,2016-17,Dedham - Dedham Middle School,730305,1.1,0,1.1,96.7,0,0,1.1,77.8,22.2,92.3 +1,1,a-pcom-i3,2016-17,Dedham - Early Childhood Center,730005,0,0,0,98,0,0,2,95.9,4.1,50.8 +1,1,a-pcom-i3,2016-17,Dedham - Greenlodge,730025,0,0,0,100,0,0,0,94.3,5.7,43.6 +1,1,a-pcom-i3,2016-17,Dedham - Oakdale,730030,0,0,0,100,0,0,0,99.4,0.6,36 +1,1,a-pcom-i3,2016-17,Dedham - Riverdale,730045,0,0,0,100,0,0,0,94.3,5.7,35.1 +1,1,a-pcom-i3,2016-17,Deerfield - Deerfield Elementary,740015,0,0,0,100,0,0,0,91.3,8.7,79.2 +1.25,1.25,a-pcom-i3,2016-17,Dennis-Yarmouth - Dennis-Yarmouth Regional High,6450505,1.9,0,1.4,96,0,0,0.6,66.3,33.7,126.6 +1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Ezra H Baker Innovation School,6450005,0,0,2.1,97.9,0,0,0,95.5,4.5,76.1 +1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Marguerite E Small Elementary,6450015,0,0,0,100,0,0,0,92,8,47.5 +1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Mattacheese Middle School,6450305,0.7,0,0,98,0,0,1.3,75.9,24.1,79.4 +1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - N H Wixon Innovation School,6450050,1.1,0,0,97.5,0,0,1.4,92,8,72.3 +1,1,a-pcom-i3,2016-17,Dennis-Yarmouth - Station Avenue Elementary,6450025,0.8,0,1.7,97.5,0,0,0,89.8,10.2,59.1 +1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dighton Elementary,6500005,0,0,0,100,0,0,0,93.7,6.3,61.3 +1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dighton Middle School,6500305,0,0,0,100,0,0,0,75.2,24.8,43.2 +1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dighton-Rehoboth Regional High School,6500505,1,0,0,99,0,0,0,69.5,30.5,129.2 +1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Dorothy L Beckwith,6500310,0,0,1.5,98.5,0,0,0,85.6,14.4,67.1 +1,1,a-pcom-i3,2016-17,Dighton-Rehoboth - Palmer River,6500010,0,0,0,100,0,0,0,97,3,72.1 +1,1,a-pcom-i3,2016-17,Douglas - Douglas Elementary School,770015,0,0,0,100,0,0,0,87.9,12.1,43.1 +1,1,a-pcom-i3,2016-17,Douglas - Douglas High School,770505,0,1.7,0,98.3,0,0,0,69.2,30.8,58.5 +1,1,a-pcom-i3,2016-17,Douglas - Douglas Middle School,770305,0,0,0,100,0,0,0,90.8,9.2,37.9 +1,1,a-pcom-i3,2016-17,Douglas - Douglas Primary School,770005,0,0,0,100,0,0,0,97.3,2.7,33.9 +1.1875,1.19,a-pcom-i3,2016-17,Dover - Chickering,780005,1.8,0,2,96.2,0,0,0,92.1,7.9,84.6 +1.375,1.38,a-pcom-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional High,6550505,0.7,0.9,2.8,95.6,0,0,0,61.7,38.3,88.7 +2.5625,2.56,a-pcom-i3,2016-17,Dover-Sherborn - Dover-Sherborn Regional Middle School,6550405,3.5,1.3,3.4,91.8,0,0,0,76,24,74.5 +1,1,a-pcom-i3,2016-17,Dracut - Brookside Elementary,790035,0,0,0,100,0,0,0,87.8,12.2,40.8 +1,1,a-pcom-i3,2016-17,Dracut - Dracut Senior High,790505,0,1.1,0,98.9,0,0,0,65.7,34.3,91.4 +1,1,a-pcom-i3,2016-17,Dracut - George H. Englesby Elementary School,790045,0,0,2.2,97.8,0,0,0,90.6,9.4,46.5 +1,1,a-pcom-i3,2016-17,Dracut - Greenmont Avenue,790030,0,0,0,100,0,0,0,93.8,6.2,29.9 +1,1,a-pcom-i3,2016-17,Dracut - Joseph A Campbell Elementary,790020,0,1.6,0,98.4,0,0,0,94.2,5.8,62.6 +1,1,a-pcom-i3,2016-17,Dracut - Justus C. Richardson Middle School,790410,1.2,0,0,98.8,0,0,0,82.4,17.6,81.8 +22.96875,5,a-pcom-i3,2016-17,Dudley Street Neighborhood Charter School (District) - Dudley Street Neighborhood Charter School,4070405,53.4,3.9,9.7,26.5,3.2,0,3.2,87,13,30.9 +1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Charlton Elementary,6580020,0,0,1.9,98.1,0,0,0,97,3,54 +1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Charlton Middle School,6580310,0,0,1.4,97.3,1.4,0,0,75.4,24.6,73.5 +1.625,1.63,a-pcom-i3,2016-17,Dudley-Charlton Reg - Dudley Elementary,6580005,0,0,2.5,94.8,2.7,0,0,97,3,37 +1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Dudley Middle School,6580305,0,0,1.7,98.3,0,0,0,76.6,23.4,54.3 +1.09375,1.09,a-pcom-i3,2016-17,Dudley-Charlton Reg - Heritage School,6580030,0,0,0,96.5,0,0,3.5,94.6,5.4,57.9 +1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Mason Road School,6580010,0,0,0,96.9,3.1,0,0,99.7,0.3,32.6 +1,1,a-pcom-i3,2016-17,Dudley-Charlton Reg - Shepherd Hill Regional High,6580505,0,0,1.1,98.9,0,0,0,54.7,45.3,91 +1,1,a-pcom-i3,2016-17,Duxbury - Alden School,820004,0,0,0,100,0,0,0,90.5,9.5,86.2 +1,1,a-pcom-i3,2016-17,Duxbury - Chandler Elementary,820006,0,1.2,1.2,97.6,0,0,0,96.7,3.3,84.8 +1,1,a-pcom-i3,2016-17,Duxbury - Duxbury High,820505,0.9,0.2,0,99,0,0,0,66.4,33.6,116.6 +1,1,a-pcom-i3,2016-17,Duxbury - Duxbury Middle,820305,1.3,1,0,97.7,0,0,0,82.1,17.9,78.9 +1,1,a-pcom-i3,2016-17,East Bridgewater - Central,830005,1.5,0,0,98.5,0,0,0,95.4,4.6,65.9 +1.15625,1.16,a-pcom-i3,2016-17,East Bridgewater - East Bridgewater JR./SR. High School,830505,1.2,0,2.5,96.3,0,0,0,65.4,34.6,81.4 +1,1,a-pcom-i3,2016-17,East Bridgewater - Gordon W Mitchell,830010,0,0,0,100,0,0,0,82.7,17.3,81 +1,1,a-pcom-i3,2016-17,East Longmeadow - Birchland Park,870305,0,1.2,0,98.8,0,0,0,77.1,22.9,85.1 +1.65625,1.66,a-pcom-i3,2016-17,East Longmeadow - East Longmeadow High,870505,0,1.1,3.2,94.7,0,0,1.1,67.2,32.8,94.9 +1,1,a-pcom-i3,2016-17,East Longmeadow - Mapleshade,870010,0,0,2.2,97.8,0,0,0,82.2,17.8,45 +1.3125,1.31,a-pcom-i3,2016-17,East Longmeadow - Meadow Brook,870013,0,0,2,95.8,0,0,2.2,97.8,2.2,90.4 +1.25,1.25,a-pcom-i3,2016-17,East Longmeadow - Mountain View,870015,0,1.8,2.2,96,0,0,0,89,11,45.4 +1,1,a-pcom-i3,2016-17,Eastham - Eastham Elementary,850005,0,0,0,100,0,0,0,92.4,7.6,42.1 +1,1,a-pcom-i3,2016-17,Easthampton - Center School,860005,0,0,0,98.4,0,0,1.6,96.2,3.8,26.2 +1.25,1.25,a-pcom-i3,2016-17,Easthampton - Easthampton High,860505,0,2,2,96,0,0,0,64.4,35.6,50.6 +1,1,a-pcom-i3,2016-17,Easthampton - Maple,860010,0,0,0,100,0,0,0,98,2,39.5 +1,1,a-pcom-i3,2016-17,Easthampton - Neil A Pepin,860020,0,0,0,98.5,0,0,1.5,96.3,3.7,27.2 +1,1,a-pcom-i3,2016-17,Easthampton - White Brook Middle School,860305,1.8,0,0,98.2,0,0,0,71.3,28.7,55.8 +1,1,a-pcom-i3,2016-17,Easton - Center School,880003,0,0,0,100,0,0,0,97.1,2.9,34.6 +1,1,a-pcom-i3,2016-17,Easton - Easton Middle School,880405,1,0,1,96.9,0,0,1,79.3,20.7,97.8 +1.0625,1.06,a-pcom-i3,2016-17,Easton - Moreau Hall,880020,0,0,3.4,96.6,0,0,0,90.8,9.2,28.9 +1.53125,1.53,a-pcom-i3,2016-17,Easton - Oliver Ames High,880505,1.7,0.9,2.3,95.1,0,0,0,62.8,37.2,115 +1,1,a-pcom-i3,2016-17,Easton - Parkview Elementary,880015,0.8,0,0,99.2,0,0,0,95.7,4.3,47.9 +1,1,a-pcom-i3,2016-17,Easton - Richardson Olmsted School,880025,0.6,0,1.1,97.2,0,0,1.1,91,9,93.9 +1,1,a-pcom-i3,2016-17,Edgartown - Edgartown Elementary,890005,1.7,0,0,98.3,0,0,0,85.6,14.4,84.7 +17.59375,5,a-pcom-i3,2016-17,Edward M. Kennedy Academy for Health Careers (Horace Mann Charter) (District) - Edward M. Kennedy Academy for Health Careers (Horace Mann Charter School),4520505,33.5,2.7,14.7,43.7,0,0,5.4,59.8,40.2,37.3 +1.375,1.38,a-pcom-i3,2016-17,Erving - Erving Elementary,910030,0,0,0,95.6,0,0,4.4,88,12,45 +1.21875,1.22,a-pcom-i3,2016-17,Essex North Shore Agricultural and Technical School District - Essex Technical High School,8170505,2.8,0.6,0.6,96.1,0,0,0,57.7,42.3,178.6 +1,1,a-pcom-i3,2016-17,Everett - Adams School,930003,0,0,0,100,0,0,0,100,0,23.6 +7.125,5,a-pcom-i3,2016-17,Everett - Devens School,930030,12.5,0,5,77.2,0,0,5.3,59.5,40.5,40.1 +5.1875,5,a-pcom-i3,2016-17,Everett - Everett High,930505,6,3.7,5.2,83.4,0.9,0.4,0.4,52,48,231.5 +1.3125,1.31,a-pcom-i3,2016-17,Everett - George Keverian School,930028,1.3,0.3,1.3,95.8,0,1.3,0,84.8,15.2,77.5 +2.1875,2.19,a-pcom-i3,2016-17,Everett - Lafayette School,930038,1,4,2,93,0,0,0,82.9,17.1,99.6 +2,2,a-pcom-i3,2016-17,Everett - Madeline English School,930018,2.1,2.1,2.1,93.6,0,0,0,87.3,12.7,93.2 +2.0625,2.06,a-pcom-i3,2016-17,Everett - Parlin School,930058,0,1.5,5.1,93.4,0,0,0,85.1,14.9,66.8 +3.84375,3.84,a-pcom-i3,2016-17,Everett - Sumner G. Whittier School,930010,6.5,0,4.2,87.7,0,0,1.6,87.9,12.1,61.9 +2.5625,2.56,a-pcom-i3,2016-17,Everett - Webster School,930015,1.1,2.3,4.8,91.8,0,0,0,95.9,4.1,88.6 +5.78125,5,a-pcom-i3,2016-17,Excel Academy Charter (District) - Excel Academy Charter School,4100205,4.9,0.8,12.9,81.5,0,0,0,75.7,24.3,132.1 +1,1,a-pcom-i3,2016-17,Fairhaven - East Fairhaven,940010,0,0,0,100,0,0,0,97.2,2.8,53 +1.65625,1.66,a-pcom-i3,2016-17,Fairhaven - Fairhaven High,940505,1.3,0,1.3,94.7,0,0,2.7,59.5,40.5,74.9 +1,1,a-pcom-i3,2016-17,Fairhaven - Hastings Middle,940305,0,0,0,98.2,0,0,1.8,80.1,19.9,55.2 +1,1,a-pcom-i3,2016-17,Fairhaven - Leroy Wood,940030,0,0,0,100,0,0,0,92.8,7.2,55.5 +1.78125,1.78,a-pcom-i3,2016-17,Fall River - B M C Durfee High,950505,1.9,0.8,1.9,94.3,0,0,1.1,61.9,38.1,262.7 +1,1,a-pcom-i3,2016-17,Fall River - Carlton M. Viveiros Elementary School,950009,2.5,0,0,97.5,0,0,0,93.4,6.6,79 +1,1,a-pcom-i3,2016-17,Fall River - Fall River Gateway to College @ BCC,950515,0,0,0,100,0,0,0,100,0,0.5 +1.5625,1.56,a-pcom-i3,2016-17,Fall River - Henry Lord Community School,950017,0,0,3.7,95,0,0,1.2,95,5,80.5 +2.15625,2.16,a-pcom-i3,2016-17,Fall River - James Tansey,950140,0,0,3.5,93.1,0,0,3.5,82.7,17.3,28.9 +1.5,1.5,a-pcom-i3,2016-17,Fall River - John J Doran,950045,0,0,3.2,95.2,0,0,1.6,81.9,18.1,62.5 +3.59375,3.59,a-pcom-i3,2016-17,Fall River - Letourneau Elementary School,950013,5.7,1.4,4.3,88.5,0,0,0,93.3,6.7,69.8 +1.59375,1.59,a-pcom-i3,2016-17,Fall River - Mary Fonseca Elementary School,950011,1.3,0,2.5,94.9,0,0,1.3,86.7,13.3,79 +1.375,1.38,a-pcom-i3,2016-17,Fall River - Matthew J Kuss Middle,950320,1.1,1.1,0,95.6,0,0,2.2,64,36,91.2 +1.9375,1.94,a-pcom-i3,2016-17,Fall River - Morton Middle,950315,0,5,1.2,93.8,0,0,0,74.6,25.4,80.6 +1,1,a-pcom-i3,2016-17,Fall River - North End Elementary,950005,0,2.5,0,97.5,0,0,0,95.3,4.7,80.9 +7.875,5,a-pcom-i3,2016-17,Fall River - Resiliency Middle School,950335,10.8,0,7.2,74.8,0,0,7.2,71.2,28.8,13.9 +5.65625,5,a-pcom-i3,2016-17,Fall River - Resiliency Preparatory School,950325,14.3,0,3.9,81.9,0,0,0,52.9,47.1,25.9 +1,1,a-pcom-i3,2016-17,Fall River - Samuel Watson,950145,2.9,0,0,97.1,0,0,0,97.1,2.9,34.1 +1.125,1.12,a-pcom-i3,2016-17,Fall River - Spencer Borden,950130,1.2,0,1.2,96.4,0,0,1.2,90.6,9.4,82.6 +3.5625,3.56,a-pcom-i3,2016-17,Fall River - Stone Day School,950340,7.6,0,0,88.6,0,0,3.8,70,30,26.4 +1,1,a-pcom-i3,2016-17,Fall River - Talbot Innovation School,950305,3,0,0,97,0,0,0,76.8,23.2,66.5 +1.53125,1.53,a-pcom-i3,2016-17,Fall River - William S Greene,950065,0,1.2,3.7,95.1,0,0,0,95,5,81.2 +2.25,2.25,a-pcom-i3,2016-17,Falmouth - East Falmouth Elementary,960005,5.7,0,0,92.8,0,0,1.5,88.2,11.8,67.7 +1.15625,1.16,a-pcom-i3,2016-17,Falmouth - Falmouth High,960505,0.9,0,2.8,96.3,0,0,0,68.1,31.9,108.5 +2.59375,2.59,a-pcom-i3,2016-17,Falmouth - Lawrence,960405,4.1,2.8,1.4,91.7,0,0,0,80.7,19.3,72.5 +2.5,2.5,a-pcom-i3,2016-17,Falmouth - Morse Pond School,960305,4,1.3,1.3,92,0,0,1.3,85.9,14.1,74.8 +1,1,a-pcom-i3,2016-17,Falmouth - Mullen-Hall,960020,0,0,1.6,98.4,0,0,0,91.9,8.1,61.9 +1.40625,1.41,a-pcom-i3,2016-17,Falmouth - North Falmouth Elementary,960030,2.3,0,2.3,95.5,0,0,0,88.7,11.3,44.1 +2.9375,2.94,a-pcom-i3,2016-17,Falmouth - Teaticket,960015,5.6,0,1.9,90.6,0,0,1.9,97.2,2.8,53.3 +1,1,a-pcom-i3,2016-17,Farmington River Reg - Farmington River Elementary,6620020,0,0,0,100,0,0,0,92.3,7.7,26 +4.0625,4.06,a-pcom-i3,2016-17,Fitchburg - Arthur M Longsjo Middle School,970315,6.5,0,6.5,87,0,0,0,72.7,27.3,77 +1,1,a-pcom-i3,2016-17,Fitchburg - Crocker Elementary,970016,1.5,0,1.5,97,0,0,0,93.9,6.1,65.9 +4.53125,4.53,a-pcom-i3,2016-17,Fitchburg - Fitchburg High,970505,3.1,0.8,9.8,85.5,0,0,0.8,60.5,39.5,128.5 +7.5,5,a-pcom-i3,2016-17,Fitchburg - Goodrich Academy,970510,7.1,0,11.3,76,0,0,5.6,66.2,33.8,17.8 +3.59375,3.59,a-pcom-i3,2016-17,Fitchburg - McKay Arts Academy,970340,1,0,10.5,88.5,0,0,0,89.5,10.5,95.5 +2.9375,2.94,a-pcom-i3,2016-17,Fitchburg - Memorial Intermediate,970048,4,0,5.4,90.6,0,0,0,82.5,17.5,74.4 +1.75,1.75,a-pcom-i3,2016-17,Fitchburg - Reingold Elementary,970043,1.4,1.4,2.8,94.4,0,0,0,88.9,11.1,71.9 +2.3125,2.31,a-pcom-i3,2016-17,Fitchburg - South Street Elementary,970060,1.1,0,6.3,92.6,0,0,0,91.6,8.4,94.8 +1,1,a-pcom-i3,2016-17,Florida - Abbott Memorial,980005,0,0,0,100,0,0,0,91.4,8.6,22.1 +1,1,a-pcom-i3,2016-17,Four Rivers Charter Public (District) - Four Rivers Charter Public School,4130505,0,0,0,100,0,0,0,63.9,36.1,31.2 +1,1,a-pcom-i3,2016-17,Foxborough - Charles Taylor Elementary,990050,0,2.9,0,97.1,0,0,0,89.7,10.3,34.2 +1,1,a-pcom-i3,2016-17,Foxborough - Foxborough High,990505,0.9,0,0,99.1,0,0,0,69,31,108.2 +1,1,a-pcom-i3,2016-17,Foxborough - John J Ahern,990405,0,2,0,97,0,1,0,80.7,19.3,101.1 +1,1,a-pcom-i3,2016-17,Foxborough - Mabelle M Burrell,990015,0,2.4,0,97.6,0,0,0,92.6,7.4,41.7 +1,1,a-pcom-i3,2016-17,Foxborough - Vincent M Igo Elementary,990020,0,0,0,100,0,0,0,92.9,7.1,54.2 +3.3125,3.31,a-pcom-i3,2016-17,Foxborough Regional Charter (District) - Foxborough Regional Charter School,4460550,3.1,0,7.5,89.4,0,0,0,79,21,123.1 +11.75,5,a-pcom-i3,2016-17,Framingham - Barbieri Elementary,1000035,1.1,0,36.5,62.4,0,0,0,90.9,9.1,92.7 +4.9375,4.94,a-pcom-i3,2016-17,Framingham - Brophy,1000006,0,1.5,14.3,84.2,0,0,0,90.7,9.3,66.5 +2.3125,2.31,a-pcom-i3,2016-17,Framingham - Cameron Middle School,1000302,2.5,1.2,3.7,92.6,0,0,0,79.9,20.1,81.4 +1.40625,1.41,a-pcom-i3,2016-17,Framingham - Charlotte A Dunning,1000007,0.3,0,4.2,95.5,0,0,0,90.7,9.3,71 +3.34375,3.34,a-pcom-i3,2016-17,Framingham - Framingham High School,1000515,2,2.2,6,89.3,0,0,0.4,66,34,248.4 +4.1875,4.19,a-pcom-i3,2016-17,Framingham - Fuller Middle,1000305,4.9,0,8.5,86.6,0,0,0,77.3,22.7,82 +1.875,1.88,a-pcom-i3,2016-17,Framingham - Hemenway,1000015,0,1.3,4.7,94,0,0,0,94.8,5.2,77.2 +6.09375,5,a-pcom-i3,2016-17,Framingham - Juniper Hill School,1000001,1.9,1.7,15.8,80.5,0,0,0,94.8,5.2,57.6 +1.5,1.5,a-pcom-i3,2016-17,Framingham - King Elementary School,1000005,0,2.6,0,95.2,0,0,2.2,97.7,2.3,30 +1.28125,1.28,a-pcom-i3,2016-17,Framingham - Mary E Stapleton Elementary,1000045,1.4,0,2.7,95.9,0,0,0,90.2,9.8,73.8 +3.625,3.62,a-pcom-i3,2016-17,Framingham - Miriam F McCarthy School,1000050,2.1,3.2,6.3,88.4,0,0,0,92.4,7.6,94.9 +3.09375,3.09,a-pcom-i3,2016-17,Framingham - Potter Road,1000039,1.8,0.9,7.2,90.1,0,0,0,92.1,7.9,55.4 +4.03125,4.03,a-pcom-i3,2016-17,Framingham - Walsh Middle,1000310,2.4,1.2,9.2,87.1,0,0,0,78.2,21.8,98.1 +3.71875,3.72,a-pcom-i3,2016-17,Framingham - Woodrow Wilson,1000055,1,0,11,88.1,0,0,0,90.6,9.4,82 +3,3,a-pcom-i3,2016-17,Francis W. Parker Charter Essential (District) - Francis W. Parker Charter Essential School,4780505,2.9,0,6.7,90.4,0,0,0,66.1,33.9,60.1 +1,1,a-pcom-i3,2016-17,Franklin - Annie Sullivan Middle School,1010040,0,0,0,100,0,0,0,85.3,14.7,54.3 +1,1,a-pcom-i3,2016-17,Franklin - Davis Thayer,1010035,0,0,2.9,97.1,0,0,0,96.3,3.7,34.6 +1.34375,1.34,a-pcom-i3,2016-17,Franklin - Franklin Early Childhood Development Center,1010003,0,4.3,0,95.7,0,0,0,100,0,23.5 +1,1,a-pcom-i3,2016-17,Franklin - Franklin High,1010505,0,1.8,0,97.2,1.1,0,0,70.6,29.4,171.1 +1,1,a-pcom-i3,2016-17,Franklin - Helen Keller Elementary,1010012,0,0,0,100,0,0,0,90.4,9.6,50.7 +1,1,a-pcom-i3,2016-17,Franklin - Horace Mann,1010405,0,0,0,100,0,0,0,75.5,24.5,57.2 +2.78125,2.78,a-pcom-i3,2016-17,Franklin - J F Kennedy Memorial,1010013,4.4,4.4,0,91.1,0,0,0,93.3,6.7,45.1 +1,1,a-pcom-i3,2016-17,Franklin - Jefferson Elementary,1010010,0,2.2,0,97.8,0,0,0,98.4,1.6,45.7 +1,1,a-pcom-i3,2016-17,Franklin - Oak Street Elementary,1010030,0,1.8,0,98.2,0,0,0,97.9,2.1,54.4 +1,1,a-pcom-i3,2016-17,Franklin - Parmenter,1010032,0,0,0,100,0,0,0,90.3,9.7,51.4 +1,1,a-pcom-i3,2016-17,Franklin - Remington Middle,1010310,1.6,0,0,98.4,0,0,0,76.1,23.9,62.7 +1,1,a-pcom-i3,2016-17,Franklin County Regional Vocational Technical - Franklin County Technical,8180605,1.3,0,0,97.5,0,0,1.3,44.5,55.4,80 +1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Apponequet Regional High,6650505,0,0,1.1,98.9,0,0,0,69,31,94.1 +1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Assawompset Elementary School,6650002,0,0,0,100,0,0,0,95.6,4.4,45.7 +1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Freetown Elementary School,6650001,0,0,0,100,0,0,0,98.2,1.8,55 +1,1,a-pcom-i3,2016-17,Freetown-Lakeville - Freetown-Lakeville Middle School,6650305,2.6,0,0,97.4,0,0,0,73.5,26.5,75.6 +1,1,a-pcom-i3,2016-17,Freetown-Lakeville - George R Austin Intermediate School,6650015,0,0,0,100,0,0,0,90.4,9.6,51.9 +1,1,a-pcom-i3,2016-17,Frontier - Frontier Regional,6700505,0,0,0,97,2,0,1,68.6,31.4,101.4 +1.375,1.38,a-pcom-i3,2016-17,Gardner - Elm Street School,1030001,0,0,1.5,95.6,0,0,3,94.1,5.9,67.6 +1,1,a-pcom-i3,2016-17,Gardner - Gardner Academy for Learning and Technology,1030515,0,0,0,100,0,0,0,32,68,11.6 +3.625,3.62,a-pcom-i3,2016-17,Gardner - Gardner High,1030505,2.6,3.9,1.3,88.4,0,0,3.9,64,36,77.6 +1.21875,1.22,a-pcom-i3,2016-17,Gardner - Gardner Middle School,1030405,1.6,0,0,96.1,0,0,2.4,84.2,15.8,63.8 +1.40625,1.41,a-pcom-i3,2016-17,Gardner - Waterford Street,1030020,1.5,0,0,95.5,0,0,3,93.2,6.8,66.2 +1,1,a-pcom-i3,2016-17,Gateway - Chester Elementary,6720059,0,0,0,100,0,0,0,93.4,6.6,22.4 +1.40625,1.41,a-pcom-i3,2016-17,Gateway - Gateway Regional High,6720505,0,0,0,95.5,0,4.5,0,70.3,29.7,44.8 +1,1,a-pcom-i3,2016-17,Gateway - Gateway Regional Middle School,6720405,0,0,0,100,0,0,0,78.4,21.6,30.1 +1,1,a-pcom-i3,2016-17,Gateway - Littleville Elementary School,6720143,0,0,0,100,0,0,0,96.1,3.9,38.3 +1,1,a-pcom-i3,2016-17,Georgetown - Georgetown High School,1050505,0,0,1.8,96.9,0,1.3,0,64,36,55.2 +1,1,a-pcom-i3,2016-17,Georgetown - Georgetown Middle School,1050305,0,0,0,97.9,0,2.1,0,78.6,21.4,26.5 +1,1,a-pcom-i3,2016-17,Georgetown - Penn Brook,1050010,0,0,0,100,0,0,0,90.9,9.1,73 +1,1,a-pcom-i3,2016-17,Georgetown - Perley Elementary,1050005,0,0,0,100,0,0,0,100,0,12.6 +1,1,a-pcom-i3,2016-17,Gill-Montague - Gill Elementary,6740005,0,0,0,100,0,0,0,85.8,14.2,15.5 +1,1,a-pcom-i3,2016-17,Gill-Montague - Great Falls Middle,6740310,1.1,0,1.2,97.6,0,0,0,72.8,27.2,40.1 +1.46875,1.47,a-pcom-i3,2016-17,Gill-Montague - Hillcrest Elementary School,6740015,0,0,3.1,95.3,0,0,1.6,99.4,0.6,32.3 +1.125,1.12,a-pcom-i3,2016-17,Gill-Montague - Sheffield Elementary School,6740050,0,0,2.4,96.4,0,0,1.2,89.1,10.9,41.7 +1.375,1.38,a-pcom-i3,2016-17,Gill-Montague - Turners Fall High,6740505,1,0,3.4,95.6,0,0,0,70.3,29.7,44.1 +2.78125,2.78,a-pcom-i3,2016-17,Global Learning Charter Public (District) - Global Learning Charter Public School,4960305,5.5,1.7,1.7,91.1,0,0,0,72.6,27.4,58.8 +1,1,a-pcom-i3,2016-17,Gloucester - Beeman Memorial,1070010,0,0,0,100,0,0,0,94.1,5.9,50.6 +1,1,a-pcom-i3,2016-17,Gloucester - East Gloucester Elementary,1070020,0,0,0,100,0,0,0,90.5,9.5,37.8 +1,1,a-pcom-i3,2016-17,Gloucester - Gloucester High,1070505,0.9,0,0.9,98.3,0,0,0,60,40,114.8 +1,1,a-pcom-i3,2016-17,Gloucester - Gloucester PreSchool,1070025,0,0,0,100,0,0,0,100,0,28.1 +1,1,a-pcom-i3,2016-17,Gloucester - Plum Cove School,1070042,0,0,0,100,0,0,0,94.7,5.3,37.9 +1,1,a-pcom-i3,2016-17,Gloucester - Ralph B O'Maley Middle,1070305,0,0,1.1,98.9,0,0,0,77.5,22.5,88.9 +1,1,a-pcom-i3,2016-17,Gloucester - Veterans Memorial,1070045,0,0,0,100,0,0,0,94.3,5.7,41.8 +1,1,a-pcom-i3,2016-17,Gloucester - West Parish,1070050,0,0,0,100,0,0,0,98.2,1.8,55.6 +1,1,a-pcom-i3,2016-17,Gosnold - Cuttyhunk Elementary,1090005,0,0,0,100,0,0,0,95.9,4.1,1.5 +1.21875,1.22,a-pcom-i3,2016-17,Grafton - Grafton High School,1100505,0,1,1.9,96.1,0,0,1,67.3,32.7,104.7 +1,1,a-pcom-i3,2016-17,Grafton - Grafton Middle,1100305,0,2,0,98,0,0,0,72.7,27.3,51.3 +1,1,a-pcom-i3,2016-17,Grafton - Millbury Street Elementary School,1100200,0,1.6,0,98.4,0,0,0,93.3,6.7,95.8 +1,1,a-pcom-i3,2016-17,Grafton - North Grafton Elementary,1100025,0,0,0,100,0,0,0,98.9,1.1,45.1 +1,1,a-pcom-i3,2016-17,Grafton - North Street Elementary School,1100030,0,0,0,100,0,0,0,94.1,5.9,67.9 +1,1,a-pcom-i3,2016-17,Grafton - South Grafton Elementary,1100005,0,3.1,0,96.9,0,0,0,95.8,4.2,59 +2.84375,2.84,a-pcom-i3,2016-17,Granby - East Meadow,1110004,4.5,4.5,0,90.9,0,0,0,75.2,24.8,22 +1.90625,1.91,a-pcom-i3,2016-17,Granby - Granby Jr Sr High School,1110505,2,2,2,93.9,0,0,0,68.4,31.6,49.4 +1,1,a-pcom-i3,2016-17,Granby - West Street,1110010,0,0,0,100,0,0,0,96.8,3.2,32.5 +1.15625,1.16,a-pcom-i3,2016-17,Greater Fall River Regional Vocational Technical - Diman Regional Vocational Technical High,8210605,1.9,0,1.3,96.3,0.5,0,0,42.6,57.4,158.3 +3.9375,3.94,a-pcom-i3,2016-17,Greater Lawrence Regional Vocational Technical - Gr Lawrence Regional Vocational Technical,8230605,0.5,1,10.6,87.4,0,0,0.5,60.3,39.7,196.8 +1.84375,1.84,a-pcom-i3,2016-17,Greater Lowell Regional Vocational Technical - Gr Lowell Regional Vocational Technical,8280605,1.8,1.8,2.2,94.1,0,0,0,61.3,38.7,271.1 +2.21875,2.22,a-pcom-i3,2016-17,Greater New Bedford Regional Vocational Technical - Gr New Bedford Vocational Technical,8250605,2.4,0.5,3.5,92.9,0.7,0,0,50.5,49.5,287.8 +1.28125,1.28,a-pcom-i3,2016-17,Greenfield - Discovery School at Four Corners,1140025,0,2.1,2.1,95.9,0,0,0,91,9,48.4 +1,1,a-pcom-i3,2016-17,Greenfield - Federal Street School,1140010,0,0,2.4,97.6,0,0,0,92.1,7.9,42.3 +1,1,a-pcom-i3,2016-17,Greenfield - Green River,1140030,0,0,1.1,98.9,0,0,0,92.7,7.3,5.6 +1,1,a-pcom-i3,2016-17,Greenfield - Greenfield High,1140505,1.4,0,1.4,97.3,0,0,0,73.4,26.6,74 +1.5,1.5,a-pcom-i3,2016-17,Greenfield - Greenfield Middle,1140305,1.5,1.7,1.7,95.2,0,0,0,82,18,68.9 +1.46875,1.47,a-pcom-i3,2016-17,Greenfield - Newton School,1140035,0,2.1,2.6,95.3,0,0,0,93.9,6.1,38.5 +1,1,a-pcom-i3,2016-17,Greenfield - The Academy of Early Learning at North Parish,1140005,0,0,0,100,0,0,0,96.7,3.3,30.5 +1,1,a-pcom-i3,2016-17,Groton-Dunstable - Boutwell School,6730001,0,0,0,100,0,0,0,95,5,20 +1,1,a-pcom-i3,2016-17,Groton-Dunstable - Florence Roche School,6730010,0,0,0,100,0,0,0,93.6,6.4,62.5 +1,1,a-pcom-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional,6730505,0,1.1,1.1,97.7,0,0,0,63.6,36.4,87.8 +1.25,1.25,a-pcom-i3,2016-17,Groton-Dunstable - Groton Dunstable Regional Middle,6730305,0,1,1,96,1,0,1,79.7,20.3,99.7 +1,1,a-pcom-i3,2016-17,Groton-Dunstable - Swallow/Union School,6730005,0,0,0,100,0,0,0,93.8,6.2,48.2 +1.75,1.75,a-pcom-i3,2016-17,Hadley - Hadley Elementary,1170015,1.9,3.7,0,94.4,0,0,0,87,13,53.7 +1,1,a-pcom-i3,2016-17,Hadley - Hopkins Academy,1170505,2.6,0,0,97.4,0,0,0,66.7,33.3,38.6 +1,1,a-pcom-i3,2016-17,Halifax - Halifax Elementary,1180005,0,0,0,100,0,0,0,86,14,63.5 +1,1,a-pcom-i3,2016-17,Hamilton-Wenham - Bessie Buker Elementary,6750007,0,0,0,100,0,0,0,92.1,7.9,34.3 +1.3125,1.31,a-pcom-i3,2016-17,Hamilton-Wenham - Cutler School,6750010,0,0,4.2,95.8,0,0,0,93.9,6.1,39.5 +1.6875,1.69,a-pcom-i3,2016-17,Hamilton-Wenham - Hamilton-Wenham Regional High,6750505,0,0,1.4,94.6,0,0,4.1,62.4,37.6,73.6 +1.625,1.63,a-pcom-i3,2016-17,Hamilton-Wenham - Miles River Middle,6750310,0,3.4,1.7,94.8,0,0,0,90,10,58 +1.09375,1.09,a-pcom-i3,2016-17,Hamilton-Wenham - Winthrop School,6750015,0,1.8,0,96.5,0,0,1.8,94.3,5.7,56.4 +6.21875,5,a-pcom-i3,2016-17,Hampden Charter School of Science (District) - Hampden Charter School of Science,4990305,7,4.2,7,80.1,0,0,1.8,52.9,47.1,57 +1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Green Meadows Elementary,6800005,2,0,0,98,0,0,0,100,0,49.2 +1.34375,1.34,a-pcom-i3,2016-17,Hampden-Wilbraham - Mile Tree Elementary,6800025,2.2,0,2.2,95.7,0,0,0,97.9,2.1,46.5 +1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Minnechaug Regional High,6800505,0.9,0.9,0,98.2,0,0,0,66.7,33.3,111.1 +1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Soule Road,6800030,2.8,0,0,97.2,0,0,0,97.2,2.8,35.4 +1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Stony Hill School,6800050,0,0,0,100,0,0,0,97.1,2.9,35 +1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Thornton Burgess,6800305,0,0,0,100,0,0,0,84,16,31.2 +1,1,a-pcom-i3,2016-17,Hampden-Wilbraham - Wilbraham Middle,6800310,0,0,0,100,0,0,0,77,23,52.1 +1,1,a-pcom-i3,2016-17,Hampshire - Hampshire Regional High,6830505,0.9,0.9,0,98.1,0,0,0,70.2,29.8,106.9 +1,1,a-pcom-i3,2016-17,Hancock - Hancock Elementary,1210005,0,0,0,100,0,0,0,93.7,6.3,10.1 +1,1,a-pcom-i3,2016-17,Hanover - Cedar Elementary,1220004,0,0,0,100,0,0,0,89.2,10.8,54.6 +1,1,a-pcom-i3,2016-17,Hanover - Center Elementary,1220005,0,0,0,100,0,0,0,97.7,2.3,49.8 +1,1,a-pcom-i3,2016-17,Hanover - Hanover High,1220505,1.1,0,0,98.9,0,0,0,67.5,32.5,88.3 +1,1,a-pcom-i3,2016-17,Hanover - Hanover Middle,1220305,0,0,1,99,0,0,0,76.9,23.1,96.7 +1.21875,1.22,a-pcom-i3,2016-17,Hanover - Sylvester,1220015,0,0,3.9,96.1,0,0,0,81.1,18.9,25.9 +1,1,a-pcom-i3,2016-17,Harvard - Bromfield,1250505,0,0,1.3,97.4,0,1.3,0,75.3,24.7,76.9 +1.53125,1.53,a-pcom-i3,2016-17,Harvard - Hildreth Elementary School,1250005,1.7,1.6,1.6,95.1,0,0,0,91.8,8.2,60.9 +1,1,a-pcom-i3,2016-17,Hatfield - Hatfield Elementary,1270005,0,0,0,100,0,0,0,90.1,9.9,39.3 +1,1,a-pcom-i3,2016-17,Hatfield - Smith Academy,1270505,0,0,0,100,0,0,0,63.7,36.3,33.1 +1,1,a-pcom-i3,2016-17,Haverhill - Bartlett Kindergarten Center,1280005,0,0,0,100,0,0,0,92.8,7.2,17.9 +1,1,a-pcom-i3,2016-17,Haverhill - Bradford Elementary,1280008,1.4,0,0,98.6,0,0,0,92.8,7.2,69.9 +1,1,a-pcom-i3,2016-17,Haverhill - Caleb Dustin Hunking,1280035,0,0,2.3,97.7,0,0,0,82.9,17.1,43.3 +1,1,a-pcom-i3,2016-17,Haverhill - Consentino Middle School,1280100,1.2,0,1.2,97.7,0,0,0,79.3,20.7,85.4 +1,1,a-pcom-i3,2016-17,Haverhill - Crowell,1280020,0,0,0,100,0,0,0,96.1,3.9,20.7 +1.96875,1.97,a-pcom-i3,2016-17,Haverhill - Dr Paul Nettle,1280050,0,1.3,5,93.7,0,0,0,85.3,14.7,79.7 +2.6875,2.69,a-pcom-i3,2016-17,Haverhill - Golden Hill,1280026,0,1.4,7.2,91.4,0,0,0,88.7,11.3,69.6 +1.25,1.25,a-pcom-i3,2016-17,Haverhill - Greenleaf,1280027,0,0,4,96,0,0,0,98,2,25 +4.71875,4.72,a-pcom-i3,2016-17,Haverhill - Haverhill Alternative School,1280033,0,5,10,84.9,0,0,0,52.3,47.7,19.9 +1.75,1.75,a-pcom-i3,2016-17,Haverhill - Haverhill High,1280505,1.5,0,4.1,94.4,0,0,0,62.1,37.9,197.6 +1,1,a-pcom-i3,2016-17,Haverhill - John G Whittier,1280085,2.1,0,0,97.9,0,0,0,83.7,16.3,46.7 +1.46875,1.47,a-pcom-i3,2016-17,Haverhill - Moody,1280045,0,2.6,2.1,95.3,0,0,0,100,0,38.2 +1.1875,1.19,a-pcom-i3,2016-17,Haverhill - Pentucket Lake Elementary,1280054,0,0,3.8,96.2,0,0,0,92.8,7.2,78.3 +1.3125,1.31,a-pcom-i3,2016-17,Haverhill - TEACH,1280073,0,0,4.2,95.8,0,0,0,76.9,23.1,23.7 +1.4375,1.44,a-pcom-i3,2016-17,Haverhill - Tilton,1280075,0,0,4.6,95.4,0,0,0,95.5,4.5,65.7 +1,1,a-pcom-i3,2016-17,Haverhill - Walnut Square,1280080,0,0,0,100,0,0,0,96.1,3.9,13.7 +1,1,a-pcom-i3,2016-17,Hawlemont - Hawlemont Regional,6850005,0,0,0,100,0,0,0,89.1,10.9,18.9 +26.96875,5,a-pcom-i3,2016-17,Helen Y. Davis Leadership Academy Charter Public (District) - Helen Y. Davis Leadership Academy Charter Public School,4190305,58.8,3,18.3,13.7,0,0,6.1,66.5,33.5,32.8 +1,1,a-pcom-i3,2016-17,Hill View Montessori Charter Public (District) - Hill View Montessori Charter Public School,4550050,2.7,0,0,97.3,0,0,0,85.7,14.3,36.4 +1,1,a-pcom-i3,2016-17,Hilltown Cooperative Charter Public (District) - Hilltown Cooperative Charter Public School,4500105,0,0,0,100,0,0,0,79.9,20.1,33.7 +1.25,1.25,a-pcom-i3,2016-17,Hingham - East Elementary School,1310005,1.3,0,1.3,96,0,0,1.3,93.2,6.8,75.6 +1,1,a-pcom-i3,2016-17,Hingham - Hingham High,1310505,0,0,0,99.2,0,0,0.8,64.6,35.4,129 +1.09375,1.09,a-pcom-i3,2016-17,Hingham - Hingham Middle School,1310410,0.9,0,1.8,96.5,0,0,0.9,81.3,18.7,113.2 +1,1,a-pcom-i3,2016-17,Hingham - Plymouth River,1310019,0.8,0.8,0,98.4,0,0,0,92,8,61.6 +1.3125,1.31,a-pcom-i3,2016-17,Hingham - South Elementary,1310020,1.4,2.8,0,95.8,0,0,0,96.8,3.2,71 +1,1,a-pcom-i3,2016-17,Hingham - Wm L Foster Elementary,1310010,0,0,1.7,98.3,0,0,0,94.2,5.8,58.6 +1.15625,1.16,a-pcom-i3,2016-17,Holbrook - Holbrook Jr Sr High,1330505,1.9,1.9,0,96.3,0,0,0,65.1,34.9,53.7 +1.03125,1.03,a-pcom-i3,2016-17,Holbrook - John F Kennedy,1330018,1.1,0,0,96.7,0,0,2.2,100,0,45.4 +1.625,1.63,a-pcom-i3,2016-17,Holbrook - South,1330025,5.2,0,0,94.8,0,0,0,96.5,3.5,28.6 +1,1,a-pcom-i3,2016-17,Holland - Holland Elementary,1350005,0,0,0,100,0,0,0,92.8,7.2,34.9 +1,1,a-pcom-i3,2016-17,Holliston - Holliston High,1360505,0,0,1,99,0,0,0,68.6,31.4,101.8 +1,1,a-pcom-i3,2016-17,Holliston - Miller School,1360007,0,1.1,0.2,96.8,0.7,0,1.1,92.1,7.9,87.5 +1,1,a-pcom-i3,2016-17,Holliston - Placentino Elementary,1360010,0,1,0.4,97.7,0,0,1,94.7,5.3,104.7 +1,1,a-pcom-i3,2016-17,Holliston - Robert H. Adams Middle School,1360305,0,1.1,1.1,97.8,0,0,0,84.2,15.8,92.4 +7.5625,5,a-pcom-i3,2016-17,Holyoke - E N White Elementary,1370045,0,0,24.2,75.8,0,0,0,84.4,15.6,71 +9.53125,5,a-pcom-i3,2016-17,Holyoke - H.B. Lawrence School,1370070,4.4,0,26.1,69.5,0,0,0,89.1,10.9,46 +7.78125,5,a-pcom-i3,2016-17,Holyoke - Holyoke High,1370505,1.5,0,23.5,75.1,0,0,0,64.3,35.7,135.2 +10.4375,5,a-pcom-i3,2016-17,Holyoke - Joseph Metcalf School,1370003,0,0,33.4,66.6,0,0,0,100,0,53.8 +9.625,5,a-pcom-i3,2016-17,Holyoke - Kelly Elementary,1370040,3.1,0,26.2,69.2,0,0,1.5,81.2,18.8,64.5 +7.96875,5,a-pcom-i3,2016-17,Holyoke - Lt Clayre Sullivan Elementary,1370055,1.3,0,23,74.5,0,0,1.3,91.7,8.3,78.8 +7.4375,5,a-pcom-i3,2016-17,Holyoke - Lt Elmer J McMahon Elementary,1370015,0,1.6,22.2,76.2,0,0,0,97,3,63.1 +8.8125,5,a-pcom-i3,2016-17,Holyoke - Maurice A Donahue Elementary,1370060,0,0,26.9,71.8,0,0,1.3,78.8,21.2,77.9 +8.6875,5,a-pcom-i3,2016-17,Holyoke - Morgan Full Service Community School,1370025,10.7,0,15.2,72.2,0,0,1.8,86.6,13.4,55.8 +12.4375,5,a-pcom-i3,2016-17,Holyoke - William R. Peck School,1370030,4.7,1.6,33.6,60.2,0,0,0,70.6,29.4,64.3 +9.15625,5,a-pcom-i3,2016-17,Holyoke - Wm J Dean Vocational Technical High,1370605,7.7,0,21.6,70.7,0,0,0,51.8,48.2,58.4 +12.1875,5,a-pcom-i3,2016-17,Holyoke Community Charter (District) - Holyoke Community Charter School,4530005,5.3,1.1,31.5,61,0,0,1.1,74.9,25.1,93.5 +1,1,a-pcom-i3,2016-17,Hopedale - Hopedale Jr Sr High,1380505,0,0,1.2,97.4,1.5,0,0,74.5,25.5,68.1 +1,1,a-pcom-i3,2016-17,Hopedale - Memorial,1380010,0,1.2,1.2,97.7,0,0,0,95.4,4.6,85.6 +1,1,a-pcom-i3,2016-17,Hopedale - Park Street School,1380003,0,0,0,100,0,0,0,94.5,5.5,18.2 +1,1,a-pcom-i3,2016-17,Hopkinton - Center,1390005,0,0,1.5,98.5,0,0,0,92.5,7.5,66.7 +1,1,a-pcom-i3,2016-17,Hopkinton - Elmwood,1390010,0,1.7,0.9,97.4,0,0,0,94.8,5.2,57.5 +1,1,a-pcom-i3,2016-17,Hopkinton - Hopkins Elementary School,1390015,0,0,0.9,99.1,0,0,0,92.1,7.9,56.9 +1,1,a-pcom-i3,2016-17,Hopkinton - Hopkinton High,1390505,0,1,1.7,97.3,0,0,0,62.9,37.1,120.7 +1,1,a-pcom-i3,2016-17,Hopkinton - Hopkinton Middle School,1390305,0,1.1,1.5,97.4,0,0,0,77.1,22.9,93.1 +1.6875,1.69,a-pcom-i3,2016-17,Hopkinton - Hopkinton Pre-School,1390003,5.4,0,0,94.6,0,0,0,100,0,16.8 +1,1,a-pcom-i3,2016-17,Hudson - C A Farley,1410030,0,0,0,100,0,0,0,96.6,3.4,65.5 +1,1,a-pcom-i3,2016-17,Hudson - David J. Quinn Middle School,1410410,0,0,0,100,0,0,0,84.7,15.3,91.3 +1,1,a-pcom-i3,2016-17,Hudson - Forest Avenue Elementary,1410015,0,0,0,100,0,0,0,94.1,5.9,49.3 +1,1,a-pcom-i3,2016-17,Hudson - Hudson High,1410505,0.7,0.7,0,98.6,0,0,0,74.9,25.1,141.3 +1,1,a-pcom-i3,2016-17,Hudson - Mulready Elementary,1410007,0,0,0,100,0,0,0,97.1,2.9,58.5 +1,1,a-pcom-i3,2016-17,Hull - Hull High,1420505,0,0,0,100,0,0,0,59.9,40.1,47.1 +1,1,a-pcom-i3,2016-17,Hull - Lillian M Jacobs,1420015,0,0,0,100,0,0,0,92.8,7.2,55.5 +1,1,a-pcom-i3,2016-17,Hull - Memorial Middle,1420305,0,0,0,100,0,0,0,73.7,26.3,31.2 +2.09375,2.09,a-pcom-i3,2016-17,Innovation Academy Charter (District) - Innovation Academy Charter School,4350305,1,1.8,3.9,93.3,0,0,0,71.3,28.7,101.5 +1,1,a-pcom-i3,2016-17,Ipswich - Ipswich High,1440505,0,0,0.7,99.3,0,0,0,64.7,35.3,75.7 +1,1,a-pcom-i3,2016-17,Ipswich - Ipswich Middle School,1440305,0,0,0,100,0,0,0,79.1,20.9,65.2 +1,1,a-pcom-i3,2016-17,Ipswich - Paul F Doyon Memorial,1440007,0,0,0,100,0,0,0,97.5,2.5,65 +1,1,a-pcom-i3,2016-17,Ipswich - Winthrop,1440015,0,0,1.4,98.6,0,0,0,92.7,7.3,71.5 +16.5625,5,a-pcom-i3,2016-17,KIPP Academy Boston Charter School (District) - KIPP Academy Boston Charter School,4630205,27.2,2.6,16.8,47,1.3,0,5.2,76.7,23.3,77.3 +11.28125,5,a-pcom-i3,2016-17,KIPP Academy Lynn Charter (District) - KIPP Academy Lynn Charter School,4290010,12.1,7.2,13.3,63.9,0,0,3.6,74.1,25.9,139.2 +1,1,a-pcom-i3,2016-17,King Philip - King Philip Middle School,6900510,0,0,0,100,0,0,0,78.9,21.1,85.1 +1,1,a-pcom-i3,2016-17,King Philip - King Philip Regional High,6900505,0,0,0.8,99.2,0,0,0,74.3,25.7,127.8 +1,1,a-pcom-i3,2016-17,Kingston - Kingston Elementary,1450005,0,0,0,100,0,0,0,90.8,9.2,59.8 +1,1,a-pcom-i3,2016-17,Kingston - Kingston Intermediate,1450020,0,0,0,100,0,0,0,86.6,13.4,69.1 +1,1,a-pcom-i3,2016-17,Lanesborough - Lanesborough Elementary,1480005,0,0,0,100,0,0,0,88.9,11.1,36.1 +5.09375,5,a-pcom-i3,2016-17,Lawrence - Alexander B Bruce,1490015,0,0,14.7,83.7,1.6,0,0,83.9,16.1,62.4 +5.53125,5,a-pcom-i3,2016-17,Lawrence - Arlington Middle School,1490017,0,0,17.7,82.3,0,0,0,59.9,40.1,57.4 +5.3125,5,a-pcom-i3,2016-17,Lawrence - Community Day Arlington,1490009,0,0,17,83,0,0,0,80.6,19.4,77.4 +6.5625,5,a-pcom-i3,2016-17,Lawrence - Edward F. Parthum,1490053,0,0,21,79,0,0,0,95.8,4.2,72.4 +4.78125,4.78,a-pcom-i3,2016-17,Lawrence - Emily G Wetherbee,1490080,0,1.3,14.1,84.7,0,0,0,92.8,7.2,79 +5.15625,5,a-pcom-i3,2016-17,Lawrence - Francis M Leahy,1490040,0,0,16.5,83.5,0,0,0,95,5,55.7 +7.09375,5,a-pcom-i3,2016-17,Lawrence - Frost Middle School,1490525,4.1,0,16.6,77.3,0,2,0,73.6,26.4,49.4 +5.59375,5,a-pcom-i3,2016-17,Lawrence - Gerard A. Guilmette,1490022,0,1.4,16.5,82.1,0,0,0,91.8,8.2,73.8 +5.78125,5,a-pcom-i3,2016-17,Lawrence - Guilmette Middle School,1490025,1.5,0,17,81.5,0,0,0,71.1,28.9,65.8 +7.625,5,a-pcom-i3,2016-17,Lawrence - High School Learning Center,1490536,0,0,20.4,75.6,3.9,0,0,56.5,43.5,25.4 +11.4375,5,a-pcom-i3,2016-17,Lawrence - James F Hennessey,1490020,0,2.8,33.8,63.4,0,0,0,88.8,11.2,53.9 +11.15625,5,a-pcom-i3,2016-17,Lawrence - John Breen School,1490003,0,0,35.7,64.3,0,0,0,99.9,0.1,45.4 +10.75,5,a-pcom-i3,2016-17,Lawrence - John K Tarbox,1490075,2.8,0,31.6,65.6,0,0,0,94.2,5.8,35.4 +11.4375,5,a-pcom-i3,2016-17,Lawrence - Lawlor Early Childhood Center,1490002,0,0,36.6,63.4,0,0,0,90.9,9.1,22.4 +7.4375,5,a-pcom-i3,2016-17,Lawrence - Lawrence Family Public Academy,1490011,2.9,0,20.9,76.2,0,0,0,99.9,0.1,34.4 +11.59375,5,a-pcom-i3,2016-17,Lawrence - Lawrence High School,1490515,3.1,2.5,30.9,62.9,0.6,0,0,63.3,36.7,355.9 +6.03125,5,a-pcom-i3,2016-17,Lawrence - Oliver Partnership School,1490048,0,0,19.3,80.7,0,0,0,89.3,10.7,65.9 +4.0625,4.06,a-pcom-i3,2016-17,Lawrence - Parthum Middle School,1490027,0,1.8,11.2,87,0,0,0,74.6,25.4,55.4 +12.625,5,a-pcom-i3,2016-17,Lawrence - Phoenix Academy Lawrence,1490540,4.9,0,35.5,59.6,0,0,0,75.2,24.8,20.3 +6.5,5,a-pcom-i3,2016-17,Lawrence - Robert Frost,1490018,3.2,0,17.7,79.2,0,0,0,95.2,4.8,63.4 +8.78125,5,a-pcom-i3,2016-17,Lawrence - Rollins Early Childhood Center,1490001,2.1,0,26,71.9,0,0,0,95.7,4.3,46.9 +14.9375,5,a-pcom-i3,2016-17,Lawrence - School for Exceptional Studies,1490537,2.3,1.6,43.9,52.2,0,0,0,65.8,34.2,128.8 +5.75,5,a-pcom-i3,2016-17,Lawrence - South Lawrence East Elementary School,1490004,0,2,16.4,81.6,0,0,0,86.9,13.1,74.3 +9.125,5,a-pcom-i3,2016-17,Lawrence - Spark Academy,1490085,6.4,1.6,21.1,70.8,0,0,0,74.3,25.7,62.4 +12.375,5,a-pcom-i3,2016-17,Lawrence - UP Academy Leonard Middle School,1490090,2.6,2.6,31.8,60.4,2.6,0,0,63.4,36.6,38.4 +11.15625,5,a-pcom-i3,2016-17,Lawrence - UP Academy Oliver Middle School,1490049,4.4,0,31.3,64.3,0,0,0,84.5,15.5,45.4 +8.78125,5,a-pcom-i3,2016-17,Lawrence Family Development Charter (District) - Lawrence Family Development Charter School,4540205,1.1,4.5,22.5,71.9,0,0,0,92.7,7.3,89 +1.46875,1.47,a-pcom-i3,2016-17,Lee - Lee Elementary,1500025,0,0,4.7,95.3,0,0,0,95.7,4.3,63.6 +1,1,a-pcom-i3,2016-17,Lee - Lee Middle/High School,1500505,0,1.8,0,98.2,0,0,0,73.1,26.9,55.4 +1.15625,1.16,a-pcom-i3,2016-17,Leicester - Leicester High,1510505,0,1.9,1.9,96.3,0,0,0,72.3,27.7,53.9 +1.09375,1.09,a-pcom-i3,2016-17,Leicester - Leicester Memorial Elementary,1510005,0,0,3.5,96.5,0,0,0,93.8,6.2,48.4 +1,1,a-pcom-i3,2016-17,Leicester - Leicester Middle,1510015,0,0,0,100,0,0,0,75.8,24.2,49.5 +1,1,a-pcom-i3,2016-17,Leicester - Leicester Primary School,1510010,0,0,0,100,0,0,0,98.3,1.7,57.8 +1,1,a-pcom-i3,2016-17,Lenox - Lenox Memorial High,1520505,0,0,0,100,0,0,0,64.4,35.6,70.2 +1,1,a-pcom-i3,2016-17,Lenox - Morris,1520015,0,0,0,100,0,0,0,93.4,6.6,55 +3.21875,3.22,a-pcom-i3,2016-17,Leominster - Bennett,1530003,5.2,0,5.2,89.7,0,0,0,99,1,19.4 +1,1,a-pcom-i3,2016-17,Leominster - Center For Technical Education Innovation,1530605,0,0,2.2,97.8,0,0,0,32.7,67.3,44.6 +1.1875,1.19,a-pcom-i3,2016-17,Leominster - Fall Brook,1530007,0,1.3,2.5,96.2,0,0,0,96.1,3.9,79 +2.6875,2.69,a-pcom-i3,2016-17,Leominster - Frances Drake School,1530010,1.1,1.1,6.4,91.4,0,0,0,91.5,8.5,93.1 +1,1,a-pcom-i3,2016-17,Leominster - Johnny Appleseed,1530025,1.9,0,0,98.1,0,0,0,96.2,3.8,78.5 +3.75,3.75,a-pcom-i3,2016-17,Leominster - Leominster Center for Excellence,1530515,0,0,12,88,0,0,0,63.9,36.1,8.3 +1.875,1.88,a-pcom-i3,2016-17,Leominster - Leominster High School,1530505,1.2,1.7,3.1,94,0,0,0,67.2,32.8,162.5 +2.625,2.63,a-pcom-i3,2016-17,Leominster - Lincoln School,1530005,0,4.2,4.2,91.6,0,0,0,95,5,23.9 +1.21875,1.22,a-pcom-i3,2016-17,Leominster - Northwest,1530030,1.3,0,2.6,96.1,0,0,0,90.9,9.1,77.9 +1,1,a-pcom-i3,2016-17,Leominster - Priest Street,1530040,0,0,2.6,97.4,0,0,0,91.6,8.4,31.1 +1,1,a-pcom-i3,2016-17,Leominster - Samoset School,1530045,0,0,1.5,98.5,0,0,0,75.7,24.3,67.1 +1.65625,1.66,a-pcom-i3,2016-17,Leominster - Sky View Middle School,1530320,0,0,5.3,94.7,0,0,0,79.8,20.2,94.4 +1,1,a-pcom-i3,2016-17,Leverett - Leverett Elementary,1540005,0,0,0,100,0,0,0,83.3,16.7,26.6 +6,5,a-pcom-i3,2016-17,Lexington - Bowman,1550008,6.4,7.5,3.6,80.8,0,0.4,1.3,87.2,12.8,78.6 +2.15625,2.16,a-pcom-i3,2016-17,Lexington - Bridge,1550006,1.9,3.5,0,93.1,0,0,1.4,89.4,10.6,71.1 +1.65625,1.66,a-pcom-i3,2016-17,Lexington - Fiske,1550015,1.6,1.3,1.2,94.7,0,0,1.2,84.9,15.1,83.6 +2.71875,2.72,a-pcom-i3,2016-17,Lexington - Harrington,1550030,2.8,1.7,4.2,91.3,0,0,0,94.3,5.7,63.3 +3.375,3.37,a-pcom-i3,2016-17,Lexington - Jonas Clarke Middle,1550305,1.8,4.6,3,89.2,0,0,1.4,73.7,26.3,131.1 +2.625,2.63,a-pcom-i3,2016-17,Lexington - Joseph Estabrook,1550010,3.8,0.2,2.9,91.6,0,0,1.6,87.5,12.5,63.2 +1.59375,1.59,a-pcom-i3,2016-17,Lexington - Lexington Children's Place,1550001,0,0,0,94.9,0,0,5.1,100,0,26.8 +2.6875,2.69,a-pcom-i3,2016-17,Lexington - Lexington High,1550505,1.7,3.8,2.2,91.4,0,0,0.7,72.2,27.8,278.8 +4.15625,4.16,a-pcom-i3,2016-17,Lexington - Maria Hastings,1550035,3.2,4.6,5.5,86.7,0,0,0,94.1,5.9,72.7 +2.4375,2.44,a-pcom-i3,2016-17,Lexington - Wm Diamond Middle,1550310,2,4.1,1.8,92.2,0,0,0,73.2,26.8,120.1 +3.34375,3.34,a-pcom-i3,2016-17,Lincoln - Hanscom Middle,1570305,6.3,0.1,4.3,89.3,0,0,0,73.7,26.3,46.3 +1.71875,1.72,a-pcom-i3,2016-17,Lincoln - Hanscom Primary,1570006,1.7,0,3.8,94.5,0,0,0,95.2,4.8,58.1 +2.78125,2.78,a-pcom-i3,2016-17,Lincoln - Lincoln School,1570025,4.3,3.5,0.3,91.1,0.8,0,0,88.3,11.7,113.3 +2.40625,2.41,a-pcom-i3,2016-17,Lincoln-Sudbury - Lincoln-Sudbury Regional High,6950505,1.9,2.4,1,92.3,0.5,0.5,1.4,63.5,36.5,206.9 +1,1,a-pcom-i3,2016-17,Littleton - Littleton High School,1580505,0.4,0,0,99.6,0,0,0,61.3,38.7,49.6 +1,1,a-pcom-i3,2016-17,Littleton - Littleton Middle School,1580305,0,0,0,97.6,0,2.4,0,88.7,11.3,42.4 +1,1,a-pcom-i3,2016-17,Littleton - Russell St Elementary,1580015,0,0,0,100,0,0,0,91.3,8.7,46.1 +2.1875,2.19,a-pcom-i3,2016-17,Littleton - Shaker Lane Elementary,1580005,2.6,1.3,1.3,93,0,0,1.7,96.5,3.5,57.2 +1,1,a-pcom-i3,2016-17,Longmeadow - Blueberry Hill,1590005,0,0,0,100,0,0,0,93.4,6.6,58.7 +1,1,a-pcom-i3,2016-17,Longmeadow - Center,1590010,0,0,0,100,0,0,0,99.4,0.6,51.7 +1.09375,1.09,a-pcom-i3,2016-17,Longmeadow - Glenbrook Middle,1590017,0,1.2,2.3,96.5,0,0,0,81.2,18.8,42.9 +1,1,a-pcom-i3,2016-17,Longmeadow - Longmeadow High,1590505,0.8,0,1.7,97.5,0,0,0,68.3,31.7,119.1 +1.65625,1.66,a-pcom-i3,2016-17,Longmeadow - Williams Middle,1590305,2.1,1.1,2.1,94.7,0,0,0,76,24,46.8 +1,1,a-pcom-i3,2016-17,Longmeadow - Wolf Swamp Road,1590025,0,0,0,100,0,0,0,95.7,4.3,76.7 +4.3125,4.31,a-pcom-i3,2016-17,Lowell - Abraham Lincoln,1600020,2.2,5.9,5.7,86.2,0,0,0,97.1,2.9,68.1 +3.0625,3.06,a-pcom-i3,2016-17,Lowell - B.F. Butler Middle School,1600310,1.5,5.3,3,90.2,0,0,0,70.8,29.2,66.4 +4.1875,4.19,a-pcom-i3,2016-17,Lowell - Bartlett Community Partnership,1600090,3.5,4.2,4.2,86.6,0,1.4,0,88.4,11.6,70.8 +1.75,1.75,a-pcom-i3,2016-17,Lowell - Charles W Morey,1600030,0,2.8,2.8,94.4,0,0,0,93.7,6.3,71.2 +2.8125,2.81,a-pcom-i3,2016-17,Lowell - Charlotte M Murkland Elementary,1600080,0,4.4,4.6,91,0,0,0,89.3,10.7,65.2 +2.875,2.88,a-pcom-i3,2016-17,Lowell - Dr An Wang School,1600345,1.4,1.4,6.4,90.8,0,0,0,75.1,24.9,70.3 +2,2,a-pcom-i3,2016-17,Lowell - Dr Gertrude Bailey,1600002,1.6,1.6,3.2,93.6,0,0,0,86.6,13.4,62.9 +2.1875,2.19,a-pcom-i3,2016-17,Lowell - Greenhalge,1600015,1.5,0.8,0,93,1.5,1.5,1.5,97.7,2.3,64.7 +3.28125,3.28,a-pcom-i3,2016-17,Lowell - Henry J Robinson Middle,1600330,1.3,3.9,5.3,89.5,0,0,0,79.1,20.9,75.9 +3.09375,3.09,a-pcom-i3,2016-17,Lowell - James S Daley Middle School,1600315,0,4.9,2.5,90.1,1.2,1.2,0,78.3,21.7,81.1 +3.375,3.37,a-pcom-i3,2016-17,Lowell - James Sullivan Middle School,1600340,1.3,1.3,8.3,89.2,0,0,0,75.8,24.2,78.6 +1.625,1.63,a-pcom-i3,2016-17,Lowell - John J Shaughnessy,1600050,3,0.7,1.5,94.8,0,0,0,94.8,5.2,66.9 +4.65625,4.66,a-pcom-i3,2016-17,Lowell - Joseph McAvinnue,1600010,0,2.8,12,85.1,0,0,0,87.3,12.7,70.7 +3.8125,3.81,a-pcom-i3,2016-17,Lowell - Kathryn P. Stoklosa Middle School,1600360,1.3,7.6,1.3,87.8,0.7,1.3,0,69.3,30.7,75.5 +3.0625,3.06,a-pcom-i3,2016-17,Lowell - Laura Lee Therapeutic Day School,1600085,6.1,3.2,0.6,90.2,0,0,0,74.2,25.8,16.4 +1.6875,1.69,a-pcom-i3,2016-17,Lowell - Leblanc Therapeutic Day School,1600320,0,0,5.4,94.6,0,0,0,65.5,34.5,18.6 +3.40625,3.41,a-pcom-i3,2016-17,Lowell - Lowell High,1600505,1.8,4.2,4.3,89.1,0,0,0.6,62.8,37.2,324.6 +1.6875,1.69,a-pcom-i3,2016-17,Lowell - Moody Elementary,1600027,0,0,5.4,94.6,0,0,0,97.3,2.7,37.2 +2.9375,2.94,a-pcom-i3,2016-17,Lowell - Pawtucketville Memorial,1600036,4.7,1.6,3.1,90.6,0,0,0,90.1,9.9,63.5 +4.15625,4.16,a-pcom-i3,2016-17,Lowell - Peter W Reilly,1600040,2.2,0,11.1,86.7,0,0,0,91.9,8.1,67.6 +2.8125,2.81,a-pcom-i3,2016-17,Lowell - Pyne Arts,1600018,1.4,2,5.6,91,0,0,0,86.4,13.6,71 +4.40625,4.41,a-pcom-i3,2016-17,Lowell - Rogers STEM Academy,1600005,4,3.4,6.7,85.9,0,0,0,85.9,14.1,74.5 +3.59375,3.59,a-pcom-i3,2016-17,Lowell - S Christa McAuliffe Elementary,1600075,0,1.6,9.9,88.5,0,0,0,89.3,10.7,60.7 +3.03125,3.03,a-pcom-i3,2016-17,Lowell - The Career Academy,1600515,0,9.7,0,90.3,0,0,0,67.8,32.2,17.1 +2.125,2.12,a-pcom-i3,2016-17,Lowell - Washington,1600055,2.3,0,4.6,93.2,0,0,0,87.4,12.6,43.8 +9.3125,5,a-pcom-i3,2016-17,Lowell Community Charter Public (District) - Lowell Community Charter Public School,4560050,4.5,10.8,12.7,70.2,0,0,1.8,83,17,111 +6.25,5,a-pcom-i3,2016-17,Lowell Middlesex Academy Charter (District) - Lowell Middlesex Academy Charter School,4580505,0,13.4,6.7,80,0,0,0,73.4,26.6,15 +1,1,a-pcom-i3,2016-17,Ludlow - Chapin Street Elementary School,1610020,1,0,0,99,0,0,0,96.1,3.9,50.2 +1,1,a-pcom-i3,2016-17,Ludlow - East Street Elementary School,1610010,0,0,0,100,0,0,0,95,5,80.4 +1.28125,1.28,a-pcom-i3,2016-17,Ludlow - Ludlow Senior High,1610505,0.8,0,2.5,95.9,0,0,0.8,70.2,29.8,120.7 +1,1,a-pcom-i3,2016-17,Ludlow - Paul R Baird Middle,1610305,1.1,0,0.9,98,0,0,0,74.9,25.1,95.1 +1,1,a-pcom-i3,2016-17,Ludlow - Veterans Park Elementary,1610023,0,0,2,98,0,0,0,93.9,6.1,48.9 +1.40625,1.41,a-pcom-i3,2016-17,Lunenburg - Lunenburg High,1620505,0,0,1.1,95.5,1.7,1.7,0,63.4,36.6,59.2 +1,1,a-pcom-i3,2016-17,Lunenburg - Lunenburg Middle School,1620305,2.2,0,0.7,97.1,0,0,0,84.6,15.4,46.3 +1,1,a-pcom-i3,2016-17,Lunenburg - Lunenburg Primary School,1620010,0,0,0,100,0,0,0,95.3,4.7,53 +1,1,a-pcom-i3,2016-17,Lunenburg - Turkey Hill Elementary School,1620025,0,0,0,100,0,0,0,87.9,12.1,45.3 +4.84375,4.84,a-pcom-i3,2016-17,Lynn - A Drewicz Elementary,1630016,0,2.1,11.3,84.5,2.1,0,0,89.2,10.8,47.4 +1.46875,1.47,a-pcom-i3,2016-17,Lynn - Aborn,1630011,0,0,4.2,95.3,0,0,0.5,92.4,7.6,23.8 +3.84375,3.84,a-pcom-i3,2016-17,Lynn - Breed Middle School,1630405,1.8,1.8,6.1,87.7,0,0,2.6,72,28,114.3 +1.625,1.63,a-pcom-i3,2016-17,Lynn - Brickett Elementary,1630020,0,3.6,1.2,94.8,0,0,0.4,97.7,2.3,27.6 +4.5625,4.56,a-pcom-i3,2016-17,Lynn - Capt William G Shoemaker,1630090,2.9,2.9,5.8,85.4,0,0,2.9,93.5,6.5,68.5 +4.46875,4.47,a-pcom-i3,2016-17,Lynn - Classical High,1630505,2.2,0.7,8.6,85.7,0,0,2.9,63.7,36.3,139.4 +2,2,a-pcom-i3,2016-17,Lynn - Cobbet Elementary,1630035,0,1.6,4.8,93.6,0,0,0,91.2,8.8,62.9 +2.125,2.12,a-pcom-i3,2016-17,Lynn - E J Harrington,1630045,0,1.3,5.3,93.2,0,0,0.1,95.4,4.6,75 +4,4,a-pcom-i3,2016-17,Lynn - Early Childhood Center,1630004,2,0,10.8,87.2,0,0,0,96,4,49.4 +1.375,1.38,a-pcom-i3,2016-17,Lynn - Edward A Sisson,1630095,2.2,0,2.2,95.6,0,0,0,95.5,4.5,45.8 +8.375,5,a-pcom-i3,2016-17,Lynn - Fecteau-Leary Junior/Senior High School,1630525,5,0,21.8,73.2,0,0,0,45.1,54.9,59.6 +3.8125,3.81,a-pcom-i3,2016-17,Lynn - Hood,1630055,4,4,4,87.8,0,0,0.2,96.9,3.1,50 +4.40625,4.41,a-pcom-i3,2016-17,Lynn - Ingalls,1630060,7.4,1.5,3.5,85.9,0,0,1.7,93.4,6.6,67.1 +3.59375,3.59,a-pcom-i3,2016-17,Lynn - Julia F Callahan,1630030,3.7,0,7.8,88.5,0,0,0,90.5,9.5,54.2 +1.15625,1.16,a-pcom-i3,2016-17,Lynn - Lincoln-Thomson,1630070,0,0,3.7,96.3,0,0,0,93.7,6.3,26.9 +4.78125,4.78,a-pcom-i3,2016-17,Lynn - Lynn English High,1630510,2.5,0.7,10.6,84.7,0,0,1.5,53.1,46.9,136.1 +6.46875,5,a-pcom-i3,2016-17,Lynn - Lynn Vocational Technical Institute,1630605,2.4,0,15.2,79.3,0,0,3.2,54.4,45.6,126.7 +1,1,a-pcom-i3,2016-17,Lynn - Lynn Woods,1630075,0,0,0,100,0,0,0,89.8,10.2,19 +3.84375,3.84,a-pcom-i3,2016-17,Lynn - Pickering Middle,1630420,2.7,0,8.2,87.7,0,0,1.4,72.2,27.8,73.1 +4.65625,4.66,a-pcom-i3,2016-17,Lynn - Robert L Ford,1630050,2.2,0,9.3,85.1,1.1,0,2.4,91.7,8.3,45.9 +3.21875,3.22,a-pcom-i3,2016-17,Lynn - Sewell-Anderson,1630085,0,2.6,7.7,89.7,0,0,0,95.4,4.6,38.7 +4.34375,4.34,a-pcom-i3,2016-17,Lynn - Thurgood Marshall Mid,1630305,4.8,1,7,86.1,0,0,1.2,60.2,39.8,104.5 +1.5,1.5,a-pcom-i3,2016-17,Lynn - Tracy,1630100,0,0,4.8,95.2,0,0,0,96.9,3.1,41.9 +2.78125,2.78,a-pcom-i3,2016-17,Lynn - Washington Elementary School,1630005,2.2,0,6.7,91.1,0,0,0,89.8,10.2,45 +3.9375,3.94,a-pcom-i3,2016-17,Lynn - William R Fallon,1630080,4,0,8.1,87.4,0,0,0.5,89,11,24.8 +2.8125,2.81,a-pcom-i3,2016-17,Lynn - Wm P Connery,1630040,3.4,0,5.6,91,0,0,0,87,13,59.2 +1,1,a-pcom-i3,2016-17,Lynnfield - Huckleberry Hill,1640010,0,0,1.8,98.2,0,0,0,98.2,1.8,55.6 +1,1,a-pcom-i3,2016-17,Lynnfield - Lynnfield High,1640505,0,0,0,98.7,0,0,1.3,68.9,31.1,77.1 +1,1,a-pcom-i3,2016-17,Lynnfield - Lynnfield Middle School,1640405,0,1.3,0,98.7,0,0,0,85.4,14.6,78.1 +1,1,a-pcom-i3,2016-17,Lynnfield - Lynnfield Preschool,1640005,0,0,0,100,0,0,0,100,0,9.5 +1,1,a-pcom-i3,2016-17,Lynnfield - Summer Street,1640020,0,1.6,0,98.4,0,0,0,94.7,5.3,50.5 +12.875,5,a-pcom-i3,2016-17,MATCH Charter Public School (District) - MATCH Charter Public School,4690505,17.6,7.8,11.4,58.8,0.4,0,4,74.6,25.4,252 +3.6875,3.69,a-pcom-i3,2016-17,Ma Academy for Math and Science - Ma Academy for Math and Science School,4680505,0,11.8,0,88.2,0,0,0,59.1,40.9,8.5 +3.0625,3.06,a-pcom-i3,2016-17,Malden - Beebe,1650003,4.9,2.4,1.2,90.2,0,0,1.2,85.4,14.6,82 +2.59375,2.59,a-pcom-i3,2016-17,Malden - Ferryway,1650013,5.9,2.4,0,91.7,0,0,0,85.1,14.9,84.5 +1.96875,1.97,a-pcom-i3,2016-17,Malden - Forestdale,1650027,1.1,1.1,3.4,93.7,0,0,0.6,92.6,7.4,88 +3.15625,3.16,a-pcom-i3,2016-17,Malden - Linden,1650047,4.4,1.8,0,89.9,0,0.9,3.1,81.6,18.4,113.8 +3.21875,3.22,a-pcom-i3,2016-17,Malden - Malden Early Learning Center,1650049,7.7,2.6,0,89.7,0,0,0,98.7,1.3,78 +3.78125,3.78,a-pcom-i3,2016-17,Malden - Malden High,1650505,3.6,3,4.8,87.9,0,0,0.6,69.8,30.2,165 +3.53125,3.53,a-pcom-i3,2016-17,Malden - Salemwood,1650057,3.2,2.4,4.1,88.7,0,0,1.6,84.6,15.4,123.5 +1,1,a-pcom-i3,2016-17,Manchester Essex Regional - Essex Elementary,6980020,0,0,0,100,0,0,0,84.8,15.2,44.3 +1.09375,1.09,a-pcom-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional High School,6980510,0,1.5,1.9,96.5,0,0,0,72.1,27.9,52.1 +1.9375,1.94,a-pcom-i3,2016-17,Manchester Essex Regional - Manchester Essex Regional Middle School,6980030,0,4.3,1.9,93.8,0,0,0,75.7,24.3,51.4 +1,1,a-pcom-i3,2016-17,Manchester Essex Regional - Manchester Memorial Elementary,6980010,0,0,0,100,0,0,0,93.1,6.9,58.2 +1.09375,1.09,a-pcom-i3,2016-17,Mansfield - Everett W Robinson,1670007,1.7,1.1,0.7,96.5,0,0,0,94.3,5.7,87.5 +1,1,a-pcom-i3,2016-17,Mansfield - Harold L Qualters Middle,1670035,0,0,0.8,98.4,0,0,0.8,80.6,19.4,125.3 +1.25,1.25,a-pcom-i3,2016-17,Mansfield - Jordan/Jackson Elementary,1670014,0.6,1.1,1.1,96,0,0,1.1,92.3,7.7,91 +1.5625,1.56,a-pcom-i3,2016-17,Mansfield - Mansfield High,1670505,1.1,0,4,95,0,0,0,67.6,32.4,151.4 +1,1,a-pcom-i3,2016-17,Mansfield - Roland Green School,1670003,2,0,0,98,0,0,0,100,0,24.6 +1.375,1.38,a-pcom-i3,2016-17,Marblehead - Elbridge Gerry,1680015,2.5,0,0,95.6,0,0,2,97.5,2.5,20.3 +1.90625,1.91,a-pcom-i3,2016-17,Marblehead - Glover,1680020,0.5,1.4,1.4,93.9,0,1.4,1.4,92.9,7.1,70.7 +2.09375,2.09,a-pcom-i3,2016-17,Marblehead - L H Coffin,1680010,2,0,3.2,93.3,0,0,1.6,98,2,25.3 +1,1,a-pcom-i3,2016-17,Marblehead - Malcolm L Bell,1680005,2.2,0,0,97.8,0,0,0,95.7,4.3,46.4 +1.3125,1.31,a-pcom-i3,2016-17,Marblehead - Marblehead High,1680505,0.7,0.8,2.1,95.8,0,0,0.6,63.7,36.3,142.2 +1,1,a-pcom-i3,2016-17,Marblehead - Marblehead Veterans Middle School,1680300,1,1.3,0,97.6,0,0,0,79.7,20.3,74.2 +1,1,a-pcom-i3,2016-17,Marblehead - Village School,1680016,1,0,0,98,0,0,1,86,14,98.9 +1,1,a-pcom-i3,2016-17,Marblehead Community Charter Public (District) - Marblehead Community Charter Public School,4640305,0,0,0,100,0,0,0,75.2,24.8,30.6 +1.59375,1.59,a-pcom-i3,2016-17,Marion - Sippican,1690005,3.4,1.7,0,94.9,0,0,0,96.6,3.4,58.3 +1.5,1.5,a-pcom-i3,2016-17,Marlborough - 1 LT Charles W. Whitcomb School,1700045,0,3.2,1.6,95.2,0,0,0,76.2,23.8,189.3 +1.375,1.38,a-pcom-i3,2016-17,Marlborough - Charles Jaworek School,1700030,0,0.9,3.6,95.6,0,0,0,92.8,7.2,112.6 +3.21875,3.22,a-pcom-i3,2016-17,Marlborough - Early Childhood Center,1700006,4.2,2.1,4,89.7,0,0,0,89.5,10.5,47.4 +1.5,1.5,a-pcom-i3,2016-17,Marlborough - Francis J Kane,1700008,2.4,0,2.4,95.2,0,0,0,92.8,7.2,83.1 +1.5625,1.56,a-pcom-i3,2016-17,Marlborough - Marlborough High,1700505,1.3,1.9,1.3,95,0.6,0,0,63.4,36.6,158.8 +1.1875,1.19,a-pcom-i3,2016-17,Marlborough - Richer,1700025,0,0,3.8,96.2,0,0,0,96.1,3.9,77.1 +1,1,a-pcom-i3,2016-17,Marshfield - Daniel Webster,1710015,0,0,0,100,0,0,0,95.2,4.8,56.4 +1,1,a-pcom-i3,2016-17,Marshfield - Eames Way School,1710005,0,0,0,100,0,0,0,92,8,40.2 +1,1,a-pcom-i3,2016-17,Marshfield - Furnace Brook Middle,1710310,0,0,0,99.1,0.9,0,0,83.2,16.8,112.1 +1,1,a-pcom-i3,2016-17,Marshfield - Gov Edward Winslow,1710020,0,1.6,0,98.4,0,0,0,90.3,9.7,63.5 +1,1,a-pcom-i3,2016-17,Marshfield - Marshfield High,1710505,0.6,0,0.6,98.8,0,0,0,67.7,32.3,168.6 +1,1,a-pcom-i3,2016-17,Marshfield - Martinson Elementary,1710025,0,1.2,0,97.6,1.2,0,0,95.6,4.4,83 +1,1,a-pcom-i3,2016-17,Marshfield - South River,1710010,0,0,0,100,0,0,0,95.2,4.8,48.6 +1.84375,1.84,a-pcom-i3,2016-17,Martha's Vineyard - Martha's Vineyard Regional High,7000505,0.8,0.8,2.5,94.1,0,0,1.7,63.4,36.6,118.5 +1,1,a-pcom-i3,2016-17,Martha's Vineyard Charter (District) - Martha's Vineyard Charter School,4660550,2.7,0,0,97.3,0,0,0,79.9,20.1,37.3 +12.71875,5,a-pcom-i3,2016-17,Martin Luther King Jr. Charter School of Excellence (District) - Martin Luther King Jr. Charter School of Excellence,4920005,21.1,0,16.8,59.3,0,0,2.7,86.5,13.5,57.4 +1,1,a-pcom-i3,2016-17,Masconomet - Masconomet Regional High School,7050505,0,0.7,0,99.3,0,0,0,63.5,36.5,134.2 +1,1,a-pcom-i3,2016-17,Masconomet - Masconomet Regional Middle School,7050405,1.2,1.2,0,97.7,0,0,0,65.5,34.5,85.2 +1,1,a-pcom-i3,2016-17,Mashpee - Kenneth Coombs School,1720005,0,0,0,98.7,1.3,0,0,97.3,2.7,75.3 +1.28125,1.28,a-pcom-i3,2016-17,Mashpee - Mashpee High,1720505,0,0,2.5,95.9,1.6,0,0,68.5,31.5,63.6 +1,1,a-pcom-i3,2016-17,Mashpee - Mashpee Middle School,1720020,0,0,1.4,98.6,0,0,0,69.8,30.2,27.7 +1,1,a-pcom-i3,2016-17,Mashpee - Quashnet School,1720035,0,0,0,100,0,0,0,88.6,11.4,77.8 +3,3,a-pcom-i3,2016-17,Massachusetts Virtual Academy at Greenfield Commonwealth Virtual District - Massachusetts Virtual Academy at Greenfield Commonwealth Virtual School,39010900,2.4,4.8,2.4,90.4,0,0,0,77.1,22.9,41.5 +1,1,a-pcom-i3,2016-17,Mattapoisett - Center,1730005,0,2.4,0,97.6,0,0,0,95.2,4.8,41.5 +1,1,a-pcom-i3,2016-17,Mattapoisett - Old Hammondtown,1730010,0,0,0,100,0,0,0,91.4,8.6,34.9 +1.15625,1.16,a-pcom-i3,2016-17,Maynard - Fowler School,1740305,0,0,2.2,96.3,0,0,1.5,77.1,22.9,64.9 +2.9375,2.94,a-pcom-i3,2016-17,Maynard - Green Meadow,1740010,0,1.2,8.3,90.6,0,0,0,95.2,4.8,84.7 +1,1,a-pcom-i3,2016-17,Maynard - Maynard High,1740505,0,0,0,100,0,0,0,73.1,26.9,55.4 +1.125,1.12,a-pcom-i3,2016-17,Medfield - Dale Street,1750005,0,1.3,0.4,96.4,0,0,2,89.4,10.6,51 +1.1875,1.19,a-pcom-i3,2016-17,Medfield - Medfield Senior High,1750505,0,1.7,1.1,96.2,0,0,0.9,71,29,105.6 +1,1,a-pcom-i3,2016-17,Medfield - Memorial School,1750003,0,1.5,0.3,97,0,0,1.2,96.7,3.3,65 +1,1,a-pcom-i3,2016-17,Medfield - Ralph Wheelock School,1750007,1.8,1,0.4,96.8,0,0,0,95.3,4.7,44.6 +1.5625,1.56,a-pcom-i3,2016-17,Medfield - Thomas Blake Middle,1750305,1.2,1.2,2.6,95,0,0,0,75.9,24.1,83.2 +31.25,5,a-pcom-i3,2016-17,Medford - Brooks School,1760130,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - Christopher Columbus,1760140,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - Curtis-Tufts,1760510,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - John J McGlynn Elementary School,1760068,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - John J. McGlynn Middle School,1760320,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - Madeleine Dugger Andrews,1760315,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - Medford High,1760505,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - Medford Vocational Technical High,1760605,0,0,0,0,0,0,0,0,0,0 +31.25,5,a-pcom-i3,2016-17,Medford - Milton Fuller Roberts,1760150,0,0,0,0,0,0,0,0,0,0 +1,1,a-pcom-i3,2016-17,Medway - Burke/Memorial Elementary School,1770015,0,1.6,0,98.4,0,0,0,92.1,7.9,63.1 +1,1,a-pcom-i3,2016-17,Medway - John D Mc Govern Elementary,1770013,0,0,0,100,0,0,0,95.7,4.3,46.1 +1.03125,1.03,a-pcom-i3,2016-17,Medway - Medway High,1770505,0,2.1,1.3,96.7,0,0,0,64.9,35.1,78 +1,1,a-pcom-i3,2016-17,Medway - Medway Middle,1770305,0,0,1.1,97.7,0,0,1.1,79.6,20.4,88.4 +1,1,a-pcom-i3,2016-17,Melrose - Early Childhood Center,1780003,0,1.9,0,98.1,0,0,0,99.2,0.8,48.8 +1.25,1.25,a-pcom-i3,2016-17,Melrose - Herbert Clark Hoover,1780017,0,0.7,3.3,96,0,0,0,85.6,14.4,30.2 +1,1,a-pcom-i3,2016-17,Melrose - Horace Mann,1780025,0,3,0,97,0,0,0,97.8,2.2,26.2 +1,1,a-pcom-i3,2016-17,Melrose - Lincoln,1780020,0,1.8,0,98.2,0,0,0,89.3,10.7,54.5 +1,1,a-pcom-i3,2016-17,Melrose - Melrose High,1780505,0,0.2,1.7,98.1,0,0,0,57,43,103.5 +1,1,a-pcom-i3,2016-17,Melrose - Melrose Middle,1780305,0,0,0,98.9,0,0,1.1,73.1,26.9,88.8 +1,1,a-pcom-i3,2016-17,Melrose - Roosevelt,1780035,0,0.4,0,99.6,0,0,0,92.1,7.9,51.7 +1.125,1.12,a-pcom-i3,2016-17,Melrose - Winthrop,1780050,0,0.6,0,96.4,0,0,3,87.1,12.9,33.9 +2.625,2.63,a-pcom-i3,2016-17,Mendon-Upton - Henry P Clough,7100179,0,0,8.4,91.6,0,0,0,96.2,3.8,52.6 +1,1,a-pcom-i3,2016-17,Mendon-Upton - Memorial School,7100001,0,0,2.4,97.6,0,0,0,98.5,1.5,65.7 +1,1,a-pcom-i3,2016-17,Mendon-Upton - Miscoe Hill School,7100015,0,0.6,0,99.4,0,0,0,79.4,20.6,93.4 +1,1,a-pcom-i3,2016-17,Mendon-Upton - Nipmuc Regional High,7100510,0,0,1.8,98.2,0,0,0,70.7,29.3,78.7 +1,1,a-pcom-i3,2016-17,Methuen - Comprehensive Grammar School,1810050,0,0,1.6,98.4,0,0,0,88.7,11.3,123.8 +1,1,a-pcom-i3,2016-17,Methuen - Donald P Timony Grammar,1810060,0,0,2.1,97.9,0,0,0,86.3,13.7,146 +1,1,a-pcom-i3,2016-17,Methuen - Marsh Grammar School,1810030,0,0,0,100,0,0,0,92.1,7.9,126.8 +1,1,a-pcom-i3,2016-17,Methuen - Methuen High,1810505,0,0,1.5,98.5,0,0,0,63.1,36.9,204.5 +1,1,a-pcom-i3,2016-17,Methuen - Tenney Grammar School,1810055,0,0,0,100,0,0,0,86.9,13.1,133.5 +1,1,a-pcom-i3,2016-17,Middleborough - Henry B. Burkland Elementary School,1820008,0,0,0,100,0,0,0,92.4,7.6,68.5 +1,1,a-pcom-i3,2016-17,Middleborough - John T. Nichols Middle,1820305,1.2,0,0,98.8,0,0,0,78.8,21.2,81.2 +1.1875,1.19,a-pcom-i3,2016-17,Middleborough - Mary K. Goode Elementary School,1820010,1.3,0,0,96.2,1.3,0,1.3,93.4,6.6,78.5 +1,1,a-pcom-i3,2016-17,Middleborough - Memorial Early Childhood Center,1820011,0,0,0,100,0,0,0,99.6,0.4,48.1 +1,1,a-pcom-i3,2016-17,Middleborough - Middleborough High,1820505,1.1,0.7,0,98.2,0,0,0,61.4,38.6,93.4 +1,1,a-pcom-i3,2016-17,Middleton - Fuller Meadow,1840003,0,0,1.2,98.8,0,0,0,99.6,0.4,43.4 +1,1,a-pcom-i3,2016-17,Middleton - Howe-Manning,1840005,0,0,2,98,0,0,0,93.4,6.6,76.7 +1.4375,1.44,a-pcom-i3,2016-17,Milford - Brookside,1850065,2.3,0,2.3,95.4,0,0,0,96.6,3.4,87.9 +1,1,a-pcom-i3,2016-17,Milford - Memorial,1850010,0,0,2.4,97.6,0,0,0,96.8,3.2,63.1 +1.65625,1.66,a-pcom-i3,2016-17,Milford - Milford High,1850505,0.8,0.8,3.8,94.7,0,0,0,61.7,38.3,132 +2.65625,2.66,a-pcom-i3,2016-17,Milford - Shining Star Early Childhood Center,1850075,0,0,8.5,91.5,0,0,0,100,0,35.3 +1.09375,1.09,a-pcom-i3,2016-17,Milford - Stacy Middle,1850305,0,0,2.6,96.5,0,0,0.8,77.1,22.9,121.1 +1.25,1.25,a-pcom-i3,2016-17,Milford - Woodland,1850090,0,1.6,2.4,96,0,0,0,88,12,124.9 +1,1,a-pcom-i3,2016-17,Millbury - Elmwood Street,1860017,0,1.1,0,98.9,0,0,0,95.8,4.2,71.2 +1,1,a-pcom-i3,2016-17,Millbury - Millbury Junior/Senior High,1860505,0,0,0,99,0,0,1,64.3,35.7,102.1 +1.96875,1.97,a-pcom-i3,2016-17,Millbury - Raymond E. Shaw Elementary,1860025,1.6,1.6,0,93.7,0,0,3.2,81,19,63.1 +1,1,a-pcom-i3,2016-17,Millis - Clyde F Brown,1870005,0,0,1.6,98.4,0,0,0,91.2,8.8,62.8 +1,1,a-pcom-i3,2016-17,Millis - Millis High School,1870505,0,0,2.6,97.4,0,0,0,57.6,42.4,39 +1.3125,1.31,a-pcom-i3,2016-17,Millis - Millis Middle,1870020,0,2.1,2.1,95.8,0,0,0,87.4,12.6,47.2 +2.875,2.88,a-pcom-i3,2016-17,Milton - Charles S Pierce Middle,1890410,4,2.7,2.5,90.8,0,0,0,73.9,26.1,93.8 +2.03125,2.03,a-pcom-i3,2016-17,Milton - Collicot,1890005,3.9,1.9,0.6,93.5,0,0,0,98.6,1.4,77.4 +2,2,a-pcom-i3,2016-17,Milton - Cunningham School,1890007,4.4,0,2,93.6,0,0,0,93.8,6.2,45.2 +1.90625,1.91,a-pcom-i3,2016-17,Milton - Glover,1890010,3.5,0.3,0,93.9,2.3,0,0,90.5,9.5,43.2 +3.03125,3.03,a-pcom-i3,2016-17,Milton - Milton High,1890505,5.9,0.9,1.9,90.3,0,0,1.1,64.4,35.6,93.5 +5.6875,5,a-pcom-i3,2016-17,Milton - Tucker,1890020,15.6,2.6,0,81.8,0,0,0,89.3,10.7,38.4 +1,1,a-pcom-i3,2016-17,Minuteman Regional Vocational Technical - Minuteman Regional High,8300605,0,1.3,0.9,97.4,0,0.4,0,54.9,45.1,115.4 +1,1,a-pcom-i3,2016-17,Mohawk Trail - Buckland-Shelburne Regional,7170005,0,0,1.7,98.3,0,0,0,97,3,49.5 +1,1,a-pcom-i3,2016-17,Mohawk Trail - Colrain Central,7170010,0,0,0,100,0,0,0,95,5,23.9 +1,1,a-pcom-i3,2016-17,Mohawk Trail - Heath Elementary,7170015,0,0,0,100,0,0,0,90.2,9.8,14 +1.21875,1.22,a-pcom-i3,2016-17,Mohawk Trail - Mohawk Trail Regional High,7170505,0,0,0,96.1,1.5,0,2.4,72.2,27.8,64.4 +1,1,a-pcom-i3,2016-17,Mohawk Trail - Sanderson Academy,7170020,0,0,0,100,0,0,0,100,0,23.5 +1,1,a-pcom-i3,2016-17,Monomoy Regional School District - Chatham Elementary School,7120001,0,0,0,100,0,0,0,98.9,1.1,43.7 +1,1,a-pcom-i3,2016-17,Monomoy Regional School District - Harwich Elementary School,7120002,0,1.3,0,98.7,0,0,0,95,5,79.9 +2.1875,2.19,a-pcom-i3,2016-17,Monomoy Regional School District - Monomoy Regional High School,7120515,1.2,3.5,0,93,0,0,2.3,67,33,85.7 +1,1,a-pcom-i3,2016-17,Monomoy Regional School District - Monomoy Regional Middle School,7120315,0,0,0,100,0,0,0,80.8,19.2,67.9 +1,1,a-pcom-i3,2016-17,Monson - Granite Valley Middle,1910310,0,0,0,100,0,0,0,81.1,18.9,53 +1,1,a-pcom-i3,2016-17,Monson - Monson High School,1910505,0,0,2.3,97.7,0,0,0,70.5,29.5,44 +1,1,a-pcom-i3,2016-17,Monson - Quarry Hill Community School,1910025,0,0,0,98.5,0,1.5,0,93.9,6.1,66 +2.0625,2.06,a-pcom-i3,2016-17,Montachusett Regional Vocational Technical - Montachusett Regional Vocational Technical,8320605,1.7,0,3.9,93.4,1.1,0,0,56.5,43.5,180.8 +1.5625,1.56,a-pcom-i3,2016-17,Mount Greylock - Mt Greylock Regional High,7150505,0,1.3,3.8,95,0,0,0,61,39,79.4 +1.96875,1.97,a-pcom-i3,2016-17,Mystic Valley Regional Charter (District) - Mystic Valley Regional Charter School,4700105,0.6,1.3,3.7,93.7,0,0,0.6,77.6,22.4,155.8 +1,1,a-pcom-i3,2016-17,Nahant - Johnson,1960010,0,0,0,100,0,0,0,95.6,4.4,22.9 +2.25,2.25,a-pcom-i3,2016-17,Nantucket - Cyrus Peirce,1970010,4.3,0.7,0,92.8,2.2,0,0,82.8,17.2,46.1 +1,1,a-pcom-i3,2016-17,Nantucket - Nantucket Elementary,1970005,0,0,1,99,0,0,0,92.8,7.2,97.7 +3.28125,3.28,a-pcom-i3,2016-17,Nantucket - Nantucket High,1970505,0,2.6,6.3,89.5,0,0,1.6,67.7,32.3,63.4 +1,1,a-pcom-i3,2016-17,Narragansett - Baldwinville Elementary,7200005,0,0,0,100,0,0,0,93.1,6.9,25.1 +1,1,a-pcom-i3,2016-17,Narragansett - Narragansett Middle,7200305,0,0,0,100,0,0,0,74.8,25.2,41.8 +1,1,a-pcom-i3,2016-17,Narragansett - Narragansett Regional High,7200505,0,2.2,0,97.8,0,0,0,73.4,26.6,45.4 +1,1,a-pcom-i3,2016-17,Narragansett - Phillipston Memorial,7200003,0,0,0,100,0,0,0,100,0,22.8 +1,1,a-pcom-i3,2016-17,Narragansett - Templeton Center,7200020,0,0,0,100,0,0,0,96.2,3.8,20.4 +1,1,a-pcom-i3,2016-17,Nashoba - Center School,7250020,0,0,0,100,0,0,0,94.8,5.2,62.7 +1,1,a-pcom-i3,2016-17,Nashoba - Florence Sawyer School,7250025,0,0,1,99,0,0,0,87.2,12.8,95.3 +1,1,a-pcom-i3,2016-17,Nashoba - Hale,7250310,0,2.9,0,97.1,0,0,0,76.7,23.3,34.2 +1,1,a-pcom-i3,2016-17,Nashoba - Luther Burbank Middle School,7250305,2.3,0,0,97.7,0,0,0,87.6,12.4,44.2 +1,1,a-pcom-i3,2016-17,Nashoba - Mary Rowlandson Elementary,7250010,0,0,1.3,97.3,0,0,1.3,89.7,10.3,75.3 +1,1,a-pcom-i3,2016-17,Nashoba - Nashoba Regional,7250505,0,0.8,0,99.2,0,0,0,62.1,37.9,121.2 +1,1,a-pcom-i3,2016-17,Nashoba Valley Regional Vocational Technical - Nashoba Valley Technical High School,8520605,1.2,0,1.2,97.6,0,0,0,46.2,53.8,82.3 +1.09375,1.09,a-pcom-i3,2016-17,Natick - Bennett-Hemenway,1980005,1.2,2.3,0,96.5,0,0,0,90.1,9.9,86.2 +1,1,a-pcom-i3,2016-17,Natick - Brown,1980010,0,0,0,100,0,0,0,88.3,11.7,58.3 +1.875,1.88,a-pcom-i3,2016-17,Natick - J F Kennedy Middle School,1980305,1.3,2,1.3,94,1.3,0,0,76.6,23.4,74.7 +1,1,a-pcom-i3,2016-17,Natick - Johnson,1980031,0,1.9,0,98.1,0,0,0,92.8,7.2,35.3 +1.75,1.75,a-pcom-i3,2016-17,Natick - Lilja Elementary,1980035,3.8,1.9,0,94.4,0,0,0,92.6,7.4,53.2 +1,1,a-pcom-i3,2016-17,Natick - Memorial,1980043,0,0,0,100,0,0,0,95.5,4.5,48.5 +1.6875,1.69,a-pcom-i3,2016-17,Natick - Natick High,1980505,1.3,3.6,0.5,94.6,0,0,0,67.9,32.1,199.1 +1.34375,1.34,a-pcom-i3,2016-17,Natick - Wilson Middle,1980310,2.1,1.3,0.9,95.7,0,0,0,73.8,26.2,117.6 +1.15625,1.16,a-pcom-i3,2016-17,Nauset - Nauset Regional High,6600505,0.8,1.3,0,96.3,0.8,0.8,0,65.9,34.1,124.8 +1,1,a-pcom-i3,2016-17,Nauset - Nauset Regional Middle,6600305,0,0.3,2.1,97.6,0,0,0,83.7,16.3,97.5 +1.59375,1.59,a-pcom-i3,2016-17,Needham - Broadmeadow,1990005,2.2,1.6,1.3,94.9,0,0,0,97.1,2.9,61.7 +1.3125,1.31,a-pcom-i3,2016-17,Needham - High Rock School,1990410,2.1,0,0.5,95.8,0,0,1.6,78.6,21.4,63.4 +2.46875,2.47,a-pcom-i3,2016-17,Needham - Hillside Elementary,1990035,2.5,4.9,0,92.1,0,0,0.5,89.5,10.5,60.7 +2.90625,2.91,a-pcom-i3,2016-17,Needham - John Eliot,1990020,2.6,4.7,0,90.7,0,0,2,88,12,51.1 +3,3,a-pcom-i3,2016-17,Needham - Needham High,1990505,3.2,3.4,1.4,90.4,0,0,1.6,63.9,36.1,187.2 +2.25,2.25,a-pcom-i3,2016-17,Needham - Newman Elementary,1990050,2,2.6,2.6,92.8,0,0,0,95.5,4.5,115.1 +1.84375,1.84,a-pcom-i3,2016-17,Needham - Pollard Middle,1990405,2.2,0.5,1.4,94.1,0,0.9,0.9,74.8,25.2,116.4 +2,2,a-pcom-i3,2016-17,Needham - William Mitchell,1990040,1,0,4.1,93.6,0,0,1.4,86.7,13.3,51.5 +14,5,a-pcom-i3,2016-17,Neighborhood House Charter (District) - Neighborhood House Charter School,4440205,18.7,6.1,12.3,55.2,0,0,7.7,86.5,13.5,65.2 +1,1,a-pcom-i3,2016-17,New Bedford - Abraham Lincoln,2010095,3.2,0,0,96.8,0,0,0,90.3,9.7,62.5 +4.65625,4.66,a-pcom-i3,2016-17,New Bedford - Alfred J Gomes,2010063,9.5,0,4.1,85.1,0,0,1.4,93.8,6.2,73.8 +1,1,a-pcom-i3,2016-17,New Bedford - Betsey B Winslow,2010140,0,0,2.2,97.8,0,0,0,98.2,1.8,28 +1,1,a-pcom-i3,2016-17,New Bedford - Carlos Pacheco,2010105,0,0,0,97.9,2.1,0,0,93.6,6.4,46.8 +4.15625,4.16,a-pcom-i3,2016-17,New Bedford - Casimir Pulaski,2010123,7.5,0,3.5,86.7,0,1.2,1.2,91.9,8.1,86.7 +1,1,a-pcom-i3,2016-17,New Bedford - Charles S Ashley,2010010,0,0,1.4,98.6,0,0,0,92.2,7.8,30.9 +1,1,a-pcom-i3,2016-17,New Bedford - Elizabeth Carter Brooks,2010015,0,0,0,100,0,0,0,88.7,11.3,27 +5.21875,5,a-pcom-i3,2016-17,New Bedford - Ellen R Hathaway,2010075,3.3,0,13.3,83.3,0,0,0,91.2,8.8,30 +1.5625,1.56,a-pcom-i3,2016-17,New Bedford - Elwyn G Campbell,2010020,0,0,0,95,2.5,0,2.5,93.7,6.3,40.1 +5.71875,5,a-pcom-i3,2016-17,New Bedford - Hayden/McFadden,2010078,5.4,0,10.9,81.7,1,0,1,92,8,101.1 +1,1,a-pcom-i3,2016-17,New Bedford - James B Congdon,2010040,0,0,0,100,0,0,0,87.9,12.1,34.7 +2.84375,2.84,a-pcom-i3,2016-17,New Bedford - Jireh Swift,2010130,4.5,0,0,90.9,4.5,0,0,91.6,8.4,22 +3.6875,3.69,a-pcom-i3,2016-17,New Bedford - John Avery Parker,2010115,5.9,0,5.9,88.2,0,0,0,85.2,14.8,33.9 +3.1875,3.19,a-pcom-i3,2016-17,New Bedford - John B Devalles,2010050,7.6,0,2.5,89.8,0,0,0,85.3,14.7,39.4 +2.59375,2.59,a-pcom-i3,2016-17,New Bedford - John Hannigan,2010070,5,0,3.3,91.7,0,0,0,86.9,13.1,30.5 +4.375,4.38,a-pcom-i3,2016-17,New Bedford - Keith Middle School,2010405,9.8,1,1.2,86,0,0,2,69.6,30.4,102.2 +5.5625,5,a-pcom-i3,2016-17,New Bedford - New Bedford High,2010505,6.1,2.3,7.6,82.2,0.4,0.4,1.1,65.5,34.5,264.3 +2.46875,2.47,a-pcom-i3,2016-17,New Bedford - Normandin Middle School,2010410,2.4,0,4.8,92.1,0,0,0.8,70.6,29.4,126.2 +1.875,1.88,a-pcom-i3,2016-17,New Bedford - Renaissance Community School for the Arts,2010124,3.5,0,2.6,94,0,0,0,82.6,17.4,28.8 +4.9375,4.94,a-pcom-i3,2016-17,New Bedford - Roosevelt Middle School,2010415,4.2,1.1,6.3,84.2,1.1,1.1,2.1,74.7,25.3,95.1 +3.71875,3.72,a-pcom-i3,2016-17,New Bedford - Sgt Wm H Carney Academy,2010045,8.7,0,3.3,88.1,0,0,0,92.2,7.8,92.2 +1,1,a-pcom-i3,2016-17,New Bedford - Thomas R Rodman,2010125,0,0,0,100,0,0,0,90.7,9.3,21.2 +5.375,5,a-pcom-i3,2016-17,New Bedford - Trinity Day Academy,2010510,8.6,0,8.6,82.8,0,0,0,40,60,23.4 +7.0625,5,a-pcom-i3,2016-17,New Bedford - Whaling City Junior/Senior High School,2010515,17,0,5.7,77.4,0,0,0,49.1,50.9,35.4 +1,1,a-pcom-i3,2016-17,New Bedford - William H Taylor,2010135,2.2,0,0,97.8,0,0,0,97.8,2.2,21.8 +11.53125,5,a-pcom-i3,2016-17,New Heights Charter School of Brockton (District) - New Heights Charter School of Brockton,35130305,36.9,0,0,63.1,0,0,0,59.8,40.2,30.1 +1.5,1.5,a-pcom-i3,2016-17,New Salem-Wendell - Swift River,7280015,0,0,3,95.2,0,0,1.8,97.9,2.1,33.6 +1,1,a-pcom-i3,2016-17,Newburyport - Edward G. Molin Elementary School,2040030,0,0,0,100,0,0,0,91.1,8.9,46.6 +1,1,a-pcom-i3,2016-17,Newburyport - Francis T Bresnahan Elementary,2040005,0,0,0,100,0,0,0,96.7,3.3,104.6 +1,1,a-pcom-i3,2016-17,Newburyport - Newburyport High,2040505,2.1,0,0,97.9,0,0,0,71.9,28.1,94.1 +1,1,a-pcom-i3,2016-17,Newburyport - Rupert A Nock Middle,2040305,1.5,1.5,0,97,0,0,0,69.7,30.3,65.7 +3.40625,3.41,a-pcom-i3,2016-17,Newton - A E Angier,2070005,3.3,3.7,2.7,89.1,0,0,1.2,88.3,11.7,74.8 +2.84375,2.84,a-pcom-i3,2016-17,Newton - Bigelow Middle,2070305,1.1,2.5,4.5,90.9,0,0,1,72.7,27.3,89.5 +6.65625,5,a-pcom-i3,2016-17,Newton - Bowen,2070015,8.1,7.5,5.8,78.7,0,0,0,91.9,8.1,62.1 +6.4375,5,a-pcom-i3,2016-17,Newton - C C Burr,2070020,3.4,8.6,5.2,79.4,0,0,3.4,86.9,13.1,58.2 +3.625,3.62,a-pcom-i3,2016-17,Newton - Cabot,2070025,1.9,6.6,3.2,88.4,0,0,0,89.4,10.6,59.4 +3.03125,3.03,a-pcom-i3,2016-17,Newton - Charles E Brown Middle,2070310,2.2,2.3,2.2,90.3,0,0.7,2.2,73.3,26.7,136.2 +3.15625,3.16,a-pcom-i3,2016-17,Newton - Countryside,2070040,4.3,2.7,0.8,89.9,0,0,2.3,84.6,15.4,87.5 +3,3,a-pcom-i3,2016-17,Newton - F A Day Middle,2070315,0.7,4.6,2.1,90.4,0,0,2.2,67.6,32.4,136.5 +3.9375,3.94,a-pcom-i3,2016-17,Newton - Franklin,2070055,8,4.6,0,87.4,0,0,0,88.8,11.2,77.6 +4.03125,4.03,a-pcom-i3,2016-17,Newton - Horace Mann,2070075,6.9,3.2,0,87.1,0,0,2.8,87.3,12.7,70.8 +1,1,a-pcom-i3,2016-17,Newton - John Ward,2070120,0,0,1.1,98.9,0,0,0,87.5,12.5,49.3 +2.9375,2.94,a-pcom-i3,2016-17,Newton - Lincoln-Eliot,2070070,0,2.8,6.5,90.6,0,0,0,95.8,4.2,70.6 +2.03125,2.03,a-pcom-i3,2016-17,Newton - Mason-Rice,2070080,1.2,5.3,0,93.5,0,0,0,87.8,12.2,61.9 +3.96875,3.97,a-pcom-i3,2016-17,Newton - Memorial Spaulding,2070105,1.5,4.4,6.8,87.3,0,0,0,90.1,9.9,68.4 +3.375,3.37,a-pcom-i3,2016-17,Newton - Newton Early Childhood Center,2070108,2.9,4,3.2,89.2,0,0,0.7,96.2,3.8,71.8 +3.75,3.75,a-pcom-i3,2016-17,Newton - Newton North High,2070505,3.9,4.5,2.2,88,0,0,1.4,63.4,36.6,337.8 +4.59375,4.59,a-pcom-i3,2016-17,Newton - Newton South High,2070510,2.4,6.6,3.7,85.3,0,0,2,67.6,32.4,256.3 +4.71875,4.72,a-pcom-i3,2016-17,Newton - Oak Hill Middle,2070320,5.1,4.2,4.8,84.9,0,0,1,69.1,30.9,97.9 +4.4375,4.44,a-pcom-i3,2016-17,Newton - Peirce,2070100,5.7,0,6.4,85.8,0,0,2.2,89.5,10.5,46 +3.375,3.37,a-pcom-i3,2016-17,Newton - Underwood,2070115,3.5,3.6,3.6,89.2,0,0,0,84.2,15.8,54.9 +1.75,1.75,a-pcom-i3,2016-17,Newton - Williams,2070125,0,1.4,4.2,94.4,0,0,0,88.4,11.6,43.1 +2.9375,2.94,a-pcom-i3,2016-17,Newton - Zervas,2070130,1.6,4.5,3.3,90.6,0,0,0,86.8,13.2,60.1 +1,1,a-pcom-i3,2016-17,Norfolk - Freeman-Kennedy School,2080005,0,0.4,2,97.6,0,0,0,90,10,56.5 +1,1,a-pcom-i3,2016-17,Norfolk - H Olive Day,2080015,0,0,0,98.5,0,1.5,0,97.4,2.6,67.7 +1,1,a-pcom-i3,2016-17,Norfolk County Agricultural - Norfolk County Agricultural,9150705,0,0,0,100,0,0,0,62.8,37.2,73.1 +1,1,a-pcom-i3,2016-17,North Adams - Brayton,2090035,0,0,0,100,0,0,0,83.8,16.2,79.7 +1,1,a-pcom-i3,2016-17,North Adams - Colegrove Park Elementary,2090008,0,0,0,100,0,0,0,88,12,58.3 +1,1,a-pcom-i3,2016-17,North Adams - Drury High,2090505,0,0,1.4,98.6,0,0,0,66.9,33.1,72.8 +1,1,a-pcom-i3,2016-17,North Adams - Greylock,2090015,0,0,0,100,0,0,0,87.8,12.2,49.3 +1,1,a-pcom-i3,2016-17,North Andover - Annie L Sargent School,2110018,0,1.6,0,98.4,0,0,0,91.9,8.1,64.2 +1,1,a-pcom-i3,2016-17,North Andover - Atkinson,2110001,0,0,0,100,0,0,0,95.3,4.7,76.9 +1,1,a-pcom-i3,2016-17,North Andover - Franklin,2110010,0,0,0,100,0,0,0,95.2,4.8,62.2 +1,1,a-pcom-i3,2016-17,North Andover - Kittredge,2110015,0,3,0,97,0,0,0,86.9,13.1,33.7 +1,1,a-pcom-i3,2016-17,North Andover - North Andover High,2110505,0.8,1.6,0,97.6,0,0,0,65.4,34.6,123.7 +1,1,a-pcom-i3,2016-17,North Andover - North Andover Middle,2110305,0,0,0,100,0,0,0,72.2,27.8,108.7 +1,1,a-pcom-i3,2016-17,North Andover - Thomson,2110020,0,0,0,100,0,0,0,93.7,6.3,37 +1,1,a-pcom-i3,2016-17,North Attleborough - Amvet Boulevard,2120007,2.3,0,0,97.7,0,0,0,100,0,44.4 +1.09375,1.09,a-pcom-i3,2016-17,North Attleborough - Community,2120030,0,1.8,1.8,96.5,0,0,0,93.6,6.4,56.5 +1,1,a-pcom-i3,2016-17,North Attleborough - Falls,2120010,0,0,0,100,0,0,0,92.4,7.6,31.7 +1,1,a-pcom-i3,2016-17,North Attleborough - Joseph W Martin Jr Elementary,2120013,1.5,0,1.5,97,0,0,0,98.5,1.5,65.9 +1.03125,1.03,a-pcom-i3,2016-17,North Attleborough - North Attleboro High,2120505,0.9,0.6,1.8,96.7,0,0,0,67.6,32.4,112.4 +1,1,a-pcom-i3,2016-17,North Attleborough - North Attleborough Early Learning Center,2120020,2.9,0,0,97.1,0,0,0,100,0,27.6 +1.09375,1.09,a-pcom-i3,2016-17,North Attleborough - North Attleborough Middle,2120305,0.9,0,2.6,96.5,0,0,0,76.8,23.2,112.2 +1,1,a-pcom-i3,2016-17,North Attleborough - Roosevelt Avenue,2120015,0,0,0,100,0,0,0,94.2,5.8,25.8 +1,1,a-pcom-i3,2016-17,North Brookfield - North Brookfield Elementary,2150015,0,2.7,0,97.3,0,0,0,86.3,13.7,36.5 +1,1,a-pcom-i3,2016-17,North Brookfield - North Brookfield High,2150505,0,0,0,100,0,0,0,60.9,39.1,28 +1.46875,1.47,a-pcom-i3,2016-17,North Middlesex - Ashby Elementary,7350010,0,0,2.4,95.3,0,2.4,0,98.9,1.1,42.2 +1,1,a-pcom-i3,2016-17,North Middlesex - Hawthorne Brook,7350030,0,0,0,100,0,0,0,75.5,24.5,58.4 +1.34375,1.34,a-pcom-i3,2016-17,North Middlesex - Nissitissit Middle School,7350310,0,0,4.3,95.7,0,0,0,80,20,70.2 +1,1,a-pcom-i3,2016-17,North Middlesex - North Middlesex Regional,7350505,1.1,0,0,98.9,0,0,0,68.6,31.4,87.8 +1,1,a-pcom-i3,2016-17,North Middlesex - Peter Fitzpatrick School,7350515,0,0,0,100,0,0,0,92.1,7.9,2.5 +1,1,a-pcom-i3,2016-17,North Middlesex - Spaulding Memorial,7350005,0,0,0,100,0,0,0,91.6,8.4,59.7 +1,1,a-pcom-i3,2016-17,North Middlesex - Squannacook Early Childhood Center,7350002,0,0,0,100,0,0,0,98.5,1.5,19.8 +1,1,a-pcom-i3,2016-17,North Middlesex - Varnum Brook,7350035,0,0,0,98.8,0,0,1.2,93.5,6.5,80.7 +1,1,a-pcom-i3,2016-17,North Reading - E Ethel Little School,2170003,0,0,0,100,0,0,0,91.7,8.3,46.4 +1,1,a-pcom-i3,2016-17,North Reading - J Turner Hood,2170010,0,0,0,100,0,0,0,87.3,12.7,45.8 +1,1,a-pcom-i3,2016-17,North Reading - L D Batchelder,2170005,0,0,0.4,99.6,0,0,0,95.8,4.2,47.4 +1,1,a-pcom-i3,2016-17,North Reading - North Reading High,2170505,0,0,2.2,97.8,0,0,0,55.2,44.8,89 +1,1,a-pcom-i3,2016-17,North Reading - North Reading Middle,2170305,0,0,0,100,0,0,0,84,16,71.7 +2.40625,2.41,a-pcom-i3,2016-17,Northampton - Bridge Street,2100005,1.6,0,6.1,92.3,0,0,0,89.3,10.7,60.9 +6.125,5,a-pcom-i3,2016-17,Northampton - Jackson Street,2100020,0,0,17.8,80.4,0,0,1.9,90.5,9.5,53.9 +2.4375,2.44,a-pcom-i3,2016-17,Northampton - John F Kennedy Middle School,2100410,0,1,5.9,92.2,1,0,0,72.7,27.3,102.1 +3.28125,3.28,a-pcom-i3,2016-17,Northampton - Leeds,2100025,2.2,2.2,6.1,89.5,0,0,0,90.2,9.8,45.8 +1.3125,1.31,a-pcom-i3,2016-17,Northampton - Northampton High,2100505,2.1,0,2.1,95.8,0,0,0,65.6,34.4,94.4 +1.40625,1.41,a-pcom-i3,2016-17,Northampton - R. K. Finn Ryan Road,2100029,2.2,0,2.2,95.5,0,0,0,85.5,14.5,44.8 +1.6875,1.69,a-pcom-i3,2016-17,Northampton-Smith Vocational Agricultural - Smith Vocational and Agricultural High,4060705,0,0,5.4,94.6,0,0,0,52.2,47.8,92 +1,1,a-pcom-i3,2016-17,Northboro-Southboro - Algonquin Regional High,7300505,0,0,2,97.4,0,0.6,0,74.1,25.9,176.1 +1,1,a-pcom-i3,2016-17,Northborough - Fannie E Proctor,2130015,0,0,0,100,0,0,0,89.3,10.7,46.9 +1,1,a-pcom-i3,2016-17,Northborough - Lincoln Street,2130003,0,0,0,100,0,0,0,95.2,4.8,42 +1,1,a-pcom-i3,2016-17,Northborough - Marguerite E Peaslee,2130014,0,0,2.2,97.8,0,0,0,93.3,6.7,44.8 +1,1,a-pcom-i3,2016-17,Northborough - Marion E Zeh,2130020,0,0,0,100,0,0,0,89.7,10.3,46.3 +1.0625,1.06,a-pcom-i3,2016-17,Northborough - Robert E. Melican Middle School,2130305,0,0,2.2,96.6,0,1.2,0,82.9,17.1,83.6 +1,1,a-pcom-i3,2016-17,Northbridge - Northbridge Elementary,2140005,0,0,0,97.9,0,0.7,1.4,95.9,4.1,71.3 +1,1,a-pcom-i3,2016-17,Northbridge - Northbridge High,2140505,0,0,0.7,99.3,0,0,0,60.1,39.9,74.9 +1,1,a-pcom-i3,2016-17,Northbridge - Northbridge Middle,2140305,0,0,1.8,97.9,0,0,0.4,77.9,22.1,85.7 +1,1,a-pcom-i3,2016-17,Northbridge - W Edward Balmer,2140001,0,0,1.4,98,0,0.7,0,94.8,5.2,73.8 +1.84375,1.84,a-pcom-i3,2016-17,Northeast Metropolitan Regional Vocational Technical - Northeast Metro Regional Vocational,8530605,1.3,0,4.6,94.1,0,0,0,46.9,53.1,151.8 +1,1,a-pcom-i3,2016-17,Northern Berkshire Regional Vocational Technical - Charles McCann Vocational Technical,8510605,0,0,0,100,0,0,0,56.9,43.1,65.7 +1,1,a-pcom-i3,2016-17,Norton - Henri A. Yelle,2180060,0,0,0,100,0,0,0,92.7,7.3,43.5 +1,1,a-pcom-i3,2016-17,Norton - J C Solmonese,2180015,0,0,0,100,0,0,0,94.7,5.3,49.2 +1,1,a-pcom-i3,2016-17,Norton - L G Nourse Elementary,2180010,0,0,0,100,0,0,0,98.9,1.1,35.2 +1.1875,1.19,a-pcom-i3,2016-17,Norton - Norton High,2180505,0,0,3.8,96.2,0,0,0,72.6,27.4,70.4 +1,1,a-pcom-i3,2016-17,Norton - Norton Middle,2180305,0,0,1.6,98.4,0,0,0,79.8,20.2,63.7 +1,1,a-pcom-i3,2016-17,Norwell - Grace Farrar Cole,2190005,0,0,0,100,0,0,0,90.6,9.4,54.4 +1,1,a-pcom-i3,2016-17,Norwell - Norwell High,2190505,0,0,1.3,98.7,0,0,0,62.6,37.4,74.3 +1,1,a-pcom-i3,2016-17,Norwell - Norwell Middle School,2190405,0,0,0,100,0,0,0,74.8,25.2,63.4 +1,1,a-pcom-i3,2016-17,Norwell - William G Vinal,2190020,0,0,0,100,0,0,0,90.4,9.6,55.4 +1.71875,1.72,a-pcom-i3,2016-17,Norwood - Balch,2200005,0,2.8,2.8,94.5,0,0,0,94.9,5.1,36.3 +1,1,a-pcom-i3,2016-17,Norwood - Charles J Prescott,2200025,0,0,2.7,97.3,0,0,0,94.6,5.4,36.8 +1,1,a-pcom-i3,2016-17,Norwood - Cornelius M Callahan,2200010,0,0,0,100,0,0,0,77.3,22.7,30.7 +1,1,a-pcom-i3,2016-17,Norwood - Dr. Philip O. Coakley Middle School,2200305,0,0,1.1,98.9,0,0,0,70.7,29.3,92.6 +1,1,a-pcom-i3,2016-17,Norwood - F A Cleveland,2200015,0,0,2.2,97.8,0,0,0,93.3,6.7,45.1 +1.03125,1.03,a-pcom-i3,2016-17,Norwood - George F. Willett,2200075,0,0,1.7,96.7,1.7,0,0,98.3,1.7,60 +1,1,a-pcom-i3,2016-17,Norwood - John P Oldham,2200020,0,0,0,96.8,0,3.2,0,86.5,13.5,31.5 +1,1,a-pcom-i3,2016-17,Norwood - Norwood High,2200505,0.9,0.9,0.9,97.3,0,0,0,67.2,32.8,112.8 +1.5625,1.56,a-pcom-i3,2016-17,Oak Bluffs - Oak Bluffs Elementary,2210005,1.9,0,0.7,95,0,0,2.4,91.5,8.5,82.6 +1,1,a-pcom-i3,2016-17,Old Colony Regional Vocational Technical - Old Colony Regional Vocational Technical,8550605,0,1.3,0,98.7,0,0,0,59.5,40.5,79.6 +1,1,a-pcom-i3,2016-17,Old Rochester - Old Rochester Regional High,7400505,0,0,1.1,98.9,0,0,0,64,36,87.9 +1,1,a-pcom-i3,2016-17,Old Rochester - Old Rochester Regional Jr High,7400405,0,0,0,100,0,0,0,71.2,28.8,57.2 +1,1,a-pcom-i3,2016-17,Orange - Dexter Park,2230010,0,0,0,100,0,0,0,87.1,12.9,38.2 +1,1,a-pcom-i3,2016-17,Orange - Fisher Hill,2230015,0,0,2.1,97.9,0,0,0,94.9,5.1,47 +1,1,a-pcom-i3,2016-17,Orleans - Orleans Elementary,2240005,0,0,0,100,0,0,0,87.2,12.8,39.6 +1,1,a-pcom-i3,2016-17,Oxford - Alfred M Chaffee,2260010,0,0,0,100,0,0,0,96.7,3.3,43.6 +1,1,a-pcom-i3,2016-17,Oxford - Clara Barton,2260005,0,0,0,100,0,0,0,98.5,1.5,34.9 +1,1,a-pcom-i3,2016-17,Oxford - Oxford High,2260505,0,0,1.4,98.6,0,0,0,61.7,38.3,70.3 +1,1,a-pcom-i3,2016-17,Oxford - Oxford Middle,2260405,0,2.1,0,97.9,0,0,0,85.4,14.6,48.1 +1,1,a-pcom-i3,2016-17,Oxford - Project C.O.F.F.E.E.,2260305,0,0,0,100,0,0,0,45.2,54.8,11.1 +1,1,a-pcom-i3,2016-17,Palmer - Converse Middle,2270305,0,0,0,98.6,0,0,1.4,88.3,11.7,34.4 +1,1,a-pcom-i3,2016-17,Palmer - Old Mill Pond,2270008,0,0,0,98.4,0,0,1.6,91.3,8.7,91.6 +1,1,a-pcom-i3,2016-17,Palmer - Palmer High,2270505,0,0,1.5,98.5,0,0,0,69.9,30.1,66.4 +1,1,a-pcom-i3,2016-17,Pathfinder Regional Vocational Technical - Pathfinder Vocational Technical,8600605,0.9,0,0,99.1,0,0,0,48.4,51.6,111.3 +17.25,5,a-pcom-i3,2016-17,Paulo Freire Social Justice Charter School (District) - Paulo Freire Social Justice Charter School,35010505,17.1,0,38,44.8,0,0,0,71.9,28.1,52.6 +1,1,a-pcom-i3,2016-17,Peabody - Captain Samuel Brown,2290005,0,0,0,100,0,0,0,97.7,2.3,78.8 +1.125,1.12,a-pcom-i3,2016-17,Peabody - Center,2290015,0,2.4,1.2,96.4,0,0,0,97.6,2.4,41.7 +1,1,a-pcom-i3,2016-17,Peabody - J Henry Higgins Middle,2290305,0,0,0.7,99.3,0,0,0,69.9,30.1,145.9 +1,1,a-pcom-i3,2016-17,Peabody - John E Burke,2290007,0,0,1.5,98.5,0,0,0,95.8,4.2,33.5 +1,1,a-pcom-i3,2016-17,Peabody - John E. McCarthy,2290016,0,0,0,100,0,0,0,92.7,7.3,57.3 +1,1,a-pcom-i3,2016-17,Peabody - Peabody Veterans Memorial High,2290510,0,0.5,0.5,98.4,0,0,0.5,59.2,40.8,189.5 +1,1,a-pcom-i3,2016-17,Peabody - South Memorial,2290035,0,0,0,100,0,0,0,93.9,6.1,40.5 +1,1,a-pcom-i3,2016-17,Peabody - Thomas Carroll,2290010,0,0,0,100,0,0,0,93,7,60.5 +1,1,a-pcom-i3,2016-17,Peabody - West Memorial,2290045,0,0,0,100,0,0,0,94.9,5.1,36.5 +1.59375,1.59,a-pcom-i3,2016-17,Peabody - William A Welch Sr,2290027,0,0,5.1,94.9,0,0,0,91.1,8.9,39.3 +1.125,1.12,a-pcom-i3,2016-17,Pelham - Pelham Elementary,2300005,0,0,3.6,96.4,0,0,0,93.1,6.9,27.5 +1,1,a-pcom-i3,2016-17,Pembroke - Bryantville Elementary,2310003,0,0,0,100,0,0,0,94.2,5.8,51.9 +1,1,a-pcom-i3,2016-17,Pembroke - Hobomock Elementary,2310010,0,0,0,100,0,0,0,90,10,50.1 +1,1,a-pcom-i3,2016-17,Pembroke - North Pembroke Elementary,2310015,0,0,0,100,0,0,0,93.6,6.4,62.6 +1,1,a-pcom-i3,2016-17,Pembroke - Pembroke Community Middle School,2310305,0,0,0,100,0,0,0,82.4,17.6,51.1 +1,1,a-pcom-i3,2016-17,Pembroke - Pembroke High School,2310505,0,0,0,100,0,0,0,72.2,27.8,104.2 +1,1,a-pcom-i3,2016-17,Pentucket - Dr Frederick N Sweetsir,7450020,0,0,0,100,0,0,0,97.5,2.5,36.5 +1,1,a-pcom-i3,2016-17,Pentucket - Dr John C Page School,7450015,0,0,0,99.4,0,0,0.6,88.1,11.9,48.2 +1,1,a-pcom-i3,2016-17,Pentucket - Elmer S Bagnall,7450005,0,0,0,99.5,0,0,0.5,90.9,9.1,63.5 +1,1,a-pcom-i3,2016-17,Pentucket - Helen R Donaghue School,7450010,0,0,2.5,96.8,0,0,0.7,93,7,40.8 +1,1,a-pcom-i3,2016-17,Pentucket - Pentucket Regional Middle,7450405,0,0,0,98.2,0,1.8,0,77.7,22.3,55.5 +1,1,a-pcom-i3,2016-17,Pentucket - Pentucket Regional Sr High,7450505,0,0,1.2,97.7,0,0,1.2,60.4,39.6,86.3 +1,1,a-pcom-i3,2016-17,Petersham - Petersham Center,2340005,0,0,0,100,0,0,0,95.2,4.8,21 +14.4375,5,a-pcom-i3,2016-17,Phoenix Academy Public Charter High School Springfield (District) - Phoenix Academy Public Charter High School Springfield,35080505,30.6,6.9,8.7,53.8,0,0,0,49.5,50.5,22.9 +10.09375,5,a-pcom-i3,2016-17,Phoenix Charter Academy (District) - Phoenix Charter Academy,4930505,17.8,3.6,10.9,67.7,0,0,0,64.4,35.6,28.1 +3.25,3.25,a-pcom-i3,2016-17,Pioneer Charter School of Science (District) - Pioneer Charter School of Science,4940205,0.7,5.3,4.4,89.6,0,0,0,73.7,26.3,67.9 +8.78125,5,a-pcom-i3,2016-17,Pioneer Charter School of Science II (PCSS-II) (District) - Pioneer Charter School of Science II (PCSS-II),35060505,8.4,17.3,2.4,71.9,0,0,0,51.4,48.6,41.9 +1,1,a-pcom-i3,2016-17,Pioneer Valley - Bernardston Elementary,7500006,0,0,0,100,0,0,0,96.1,3.9,35.6 +1,1,a-pcom-i3,2016-17,Pioneer Valley - Northfield Elementary,7500008,0,0,0,100,0,0,0,96.2,3.8,36.9 +1,1,a-pcom-i3,2016-17,Pioneer Valley - Pearl E Rhodes Elementary,7500007,0,0,0,100,0,0,0,86.3,13.7,13.2 +1,1,a-pcom-i3,2016-17,Pioneer Valley - Pioneer Valley Regional,7500505,0,0,0,100,0,0,0,77,23,71.3 +1,1,a-pcom-i3,2016-17,Pioneer Valley - Warwick Community School,7500009,0,0,0,100,0,0,0,91.9,8.1,13.5 +13.34375,5,a-pcom-i3,2016-17,Pioneer Valley Chinese Immersion Charter (District) - Pioneer Valley Chinese Immersion Charter School,4970205,0,42.7,0,57.3,0,0,0,80.9,19.1,83.1 +4.78125,4.78,a-pcom-i3,2016-17,Pioneer Valley Performing Arts Charter Public (District) - Pioneer Valley Performing Arts Charter Public School,4790505,4.5,1.6,6.7,84.7,0,0,2.5,59.3,40.7,63.2 +1,1,a-pcom-i3,2016-17,Pittsfield - Allendale,2360010,0,2.8,0,97.2,0,0,0,97.2,2.8,36.2 +1,1,a-pcom-i3,2016-17,Pittsfield - Crosby,2360065,1,0,2.1,96.9,0,0,0,90.6,9.4,96 +1.59375,1.59,a-pcom-i3,2016-17,Pittsfield - Egremont,2360035,0,1.7,3.4,94.9,0,0,0,93.3,6.7,59.4 +1,1,a-pcom-i3,2016-17,Pittsfield - John T Reid Middle,2360305,0,0,2.3,97.7,0,0,0,70.5,29.5,86 +1,1,a-pcom-i3,2016-17,Pittsfield - Morningside Community School,2360055,1.4,0,0,97.2,0,0,1.4,90.3,9.7,72.4 +2.25,2.25,a-pcom-i3,2016-17,Pittsfield - Pittsfield High,2360505,4.6,0.7,1.8,92.8,0,0,0,69,31,141.1 +1,1,a-pcom-i3,2016-17,Pittsfield - Robert T. Capeless Elementary School,2360045,0,0,0,100,0,0,0,100,0,29.1 +2.125,2.12,a-pcom-i3,2016-17,Pittsfield - Silvio O Conte Community,2360105,2.8,1.4,2.6,93.2,0,0,0,93.5,6.5,70.7 +1,1,a-pcom-i3,2016-17,Pittsfield - Stearns,2360090,0,0,0,100,0,0,0,86.8,13.2,34.2 +1,1,a-pcom-i3,2016-17,Pittsfield - Taconic High,2360510,2.3,0,0,97.7,0,0,0,62,38,109.1 +1.59375,1.59,a-pcom-i3,2016-17,Pittsfield - Theodore Herberg Middle,2360310,0,0,2.8,94.9,0,0,2.3,78.7,21.3,87.1 +1,1,a-pcom-i3,2016-17,Pittsfield - Williams,2360100,0,0,0,97.8,0,0,2.2,94.5,5.5,45.2 +1,1,a-pcom-i3,2016-17,Plainville - Anna Ware Jackson,2380010,0,0,2,98,0,0,0,98.5,1.5,65 +1,1,a-pcom-i3,2016-17,Plainville - Beatrice H Wood Elementary,2380005,0,0,0.5,96.8,0,0,2.6,95.8,4.2,38.3 +1,1,a-pcom-i3,2016-17,Plymouth - Cold Spring,2390005,2.9,0,0,97.1,0,0,0,90.6,9.4,34 +1,1,a-pcom-i3,2016-17,Plymouth - Federal Furnace School,2390011,0.9,0,1.5,97.6,0,0,0,91.5,8.5,65.5 +1,1,a-pcom-i3,2016-17,Plymouth - Hedge,2390010,0,0,1.7,98.3,0,0,0,94.5,5.5,32.1 +1,1,a-pcom-i3,2016-17,Plymouth - Indian Brook,2390012,0,0,1.5,97.6,0,0.9,0,91.1,8.9,64.7 +1,1,a-pcom-i3,2016-17,Plymouth - Manomet Elementary,2390015,0,1.3,1.5,97.2,0,0,0,95.2,4.8,39.3 +1,1,a-pcom-i3,2016-17,Plymouth - Nathaniel Morton Elementary,2390030,0,1.3,0,98.7,0,0,0,95.9,4.1,74.3 +1.25,1.25,a-pcom-i3,2016-17,Plymouth - Plymouth Commun Intermediate,2390405,1.5,0.8,1.6,96,0,0,0,81.7,18.3,122.8 +1,1,a-pcom-i3,2016-17,Plymouth - Plymouth Early Childhood Center,2390003,0,0,0,100,0,0,0,96.8,3.2,31.4 +1,1,a-pcom-i3,2016-17,Plymouth - Plymouth North High,2390505,0,0.9,0.6,98.4,0,0,0,68,32,158.5 +1,1,a-pcom-i3,2016-17,Plymouth - Plymouth South High,2390515,0,2.2,0,97.8,0,0,0,65.3,34.7,157.5 +1,1,a-pcom-i3,2016-17,Plymouth - Plymouth South Middle,2390305,0,1,0,99,0,0,0,76.3,23.7,103.1 +1,1,a-pcom-i3,2016-17,Plymouth - South Elementary,2390046,1.3,0,1.3,97.3,0,0,0,95.6,4.4,75.3 +1,1,a-pcom-i3,2016-17,Plymouth - West Elementary,2390047,0,0,0,100,0,0,0,89.6,10.4,60.8 +1,1,a-pcom-i3,2016-17,Plympton - Dennett Elementary,2400010,0,0,0,100,0,0,0,96.7,3.3,30.3 +8.125,5,a-pcom-i3,2016-17,Prospect Hill Academy Charter (District) - Prospect Hill Academy Charter School,4870550,12.6,6,6.3,74,0,0,1.1,74.6,25.4,163.2 +1.46875,1.47,a-pcom-i3,2016-17,Provincetown - Provincetown Schools,2420020,0,0,2,95.3,0,0,2.7,78,22,37 +1.375,1.38,a-pcom-i3,2016-17,Quabbin - Hardwick Elementary,7530005,4.4,0,0,95.6,0,0,0,97.1,2.9,22.7 +1.75,1.75,a-pcom-i3,2016-17,Quabbin - Hubbardston Center,7530010,0,2.8,2.8,94.4,0,0,0,94.7,5.3,30.2 +6.25,5,a-pcom-i3,2016-17,Quabbin - IB School of Quabbin,7530515,0,0,0,80,0,0,20,40,60,1.3 +1,1,a-pcom-i3,2016-17,Quabbin - New Braintree Grade,7530020,0,0,0,100,0,0,0,100,0,22 +1.375,1.38,a-pcom-i3,2016-17,Quabbin - Oakham Center,7530025,4.4,0,0,95.6,0,0,0,94.5,5.5,22.6 +1.40625,1.41,a-pcom-i3,2016-17,Quabbin - Quabbin Regional High School,7530505,0,1.3,0,95.5,0,1.3,1.8,73.8,26.2,74.6 +1,1,a-pcom-i3,2016-17,Quabbin - Quabbin Regional Middle School,7530405,0,0,0,100,0,0,0,76.2,23.8,35.9 +1,1,a-pcom-i3,2016-17,Quabbin - Ruggles Lane,7530030,0,0,0,100,0,0,0,88.4,11.6,35.5 +1,1,a-pcom-i3,2016-17,Quaboag Regional - Quaboag Regional High,7780505,0,0.6,0,99.4,0,0,0,71.5,28.5,54.6 +1,1,a-pcom-i3,2016-17,Quaboag Regional - Quaboag Regional Middle Innovation School,7780305,0,0,0,100,0,0,0,73.6,26.4,17.9 +1,1,a-pcom-i3,2016-17,Quaboag Regional - Warren Elementary,7780005,0,0.5,0,99.5,0,0,0,92.3,7.7,65.2 +1,1,a-pcom-i3,2016-17,Quaboag Regional - West Brookfield Elementary,7780010,0,0.9,0,99.1,0,0,0,91.6,8.4,35.6 +3.9375,3.94,a-pcom-i3,2016-17,Quincy - Amelio Della Chiesa Early Childhood Center,2430005,0,10.2,0,87.4,0,0,2.4,99.6,0.4,42 +1,1,a-pcom-i3,2016-17,Quincy - Atherton Hough,2430040,0,2.2,0,97.8,0,0,0,91.5,8.5,45.2 +3.09375,3.09,a-pcom-i3,2016-17,Quincy - Atlantic Middle,2430305,0,7.5,0,90.1,0,0,2.3,75.7,24.3,42.4 +2.6875,2.69,a-pcom-i3,2016-17,Quincy - Beechwood Knoll Elementary,2430020,2.9,5.8,0,91.4,0,0,0,98.9,1.1,34.7 +1,1,a-pcom-i3,2016-17,Quincy - Broad Meadows Middle,2430310,0,0,0,97.8,0,0,2.2,79.1,20.9,44.8 +1,1,a-pcom-i3,2016-17,Quincy - Central Middle,2430315,0,0,0,100,0,0,0,78.3,21.7,55.2 +1,1,a-pcom-i3,2016-17,Quincy - Charles A Bernazzani Elementary,2430025,0,2.9,0,97.1,0,0,0,87.8,12.2,34 +1,1,a-pcom-i3,2016-17,Quincy - Clifford H Marshall Elementary,2430055,0,1.5,0,98.5,0,0,0,98.2,1.8,67.9 +6.09375,5,a-pcom-i3,2016-17,Quincy - Francis W Parker,2430075,0,16.7,0,80.5,0,0,2.8,92.1,7.9,35.8 +1,1,a-pcom-i3,2016-17,Quincy - Lincoln-Hancock Community School,2430035,0,0,0,100,0,0,0,93.9,6.1,54.5 +2.65625,2.66,a-pcom-i3,2016-17,Quincy - Merrymount,2430060,0,5.7,2.8,91.5,0,0,0,92.7,7.3,35.1 +4.5625,4.56,a-pcom-i3,2016-17,Quincy - Montclair,2430065,0,14.6,0,85.4,0,0,0,95.6,4.4,43.2 +2.5,2.5,a-pcom-i3,2016-17,Quincy - North Quincy High,2430510,0,3.4,0,92,0,0,4.6,60.5,39.5,131.1 +1.46875,1.47,a-pcom-i3,2016-17,Quincy - Point Webster Middle,2430325,0,4.7,0,95.3,0,0,0,76.7,23.3,42.4 +2.5,2.5,a-pcom-i3,2016-17,Quincy - Quincy High,2430505,0.3,4.6,0,92,1.2,0,1.8,65,35,162.5 +1.03125,1.03,a-pcom-i3,2016-17,Quincy - Reay E Sterling Middle,2430320,1.1,0,0,96.7,2.2,0,0,77.9,22.1,45.5 +1.5,1.5,a-pcom-i3,2016-17,Quincy - Snug Harbor Community School,2430090,0.7,1.4,0,95.2,0,0,2.7,95.3,4.7,73 +1.0625,1.06,a-pcom-i3,2016-17,Quincy - Squantum,2430095,0,3.4,0,96.6,0,0,0,90.5,9.5,47.4 +2.625,2.63,a-pcom-i3,2016-17,Quincy - Wollaston School,2430110,1.4,7,0,91.6,0,0,0,92,8,34.6 +1,1,a-pcom-i3,2016-17,Ralph C Mahar - Pathways Early College Innovation School,7550515,0,0,0,100,0,0,0,0,100,0.3 +1.46875,1.47,a-pcom-i3,2016-17,Ralph C Mahar - Ralph C Mahar Regional,7550505,1,0.9,2.8,95.3,0,0,0,66.9,33.1,105.2 +1,1,a-pcom-i3,2016-17,Ralph C Mahar - The Gateway to College,7550525,0,0,0,100,0,0,0,0,100,0.3 +4.65625,4.66,a-pcom-i3,2016-17,Randolph - Elizabeth G Lyons Elementary,2440020,12.4,0,0,85.1,0,0,2.5,77.7,22.3,40.3 +5.0625,5,a-pcom-i3,2016-17,Randolph - J F Kennedy Elementary,2440018,8.4,1.2,3.6,83.8,0,0,3,86.8,13.2,83.4 +5.09375,5,a-pcom-i3,2016-17,Randolph - Margaret L Donovan,2440015,8.1,4,0,83.7,0,0,4.2,93.8,6.2,49.6 +5.34375,5,a-pcom-i3,2016-17,Randolph - Martin E Young Elementary,2440040,2.1,6.4,4.3,82.9,0,0,4.3,87.2,12.8,46.9 +9.96875,5,a-pcom-i3,2016-17,Randolph - Randolph Community Middle,2440410,25.7,2.3,2.8,68.1,1.2,0,0,77.5,22.5,85.7 +9.25,5,a-pcom-i3,2016-17,Randolph - Randolph High,2440505,16.5,6.8,5.2,70.4,0,0,1.1,64.9,35.1,89 +1,1,a-pcom-i3,2016-17,Reading - Alice M Barrows,2460002,0,1.5,0.5,98,0,0,0,93.3,6.7,38.5 +1,1,a-pcom-i3,2016-17,Reading - Arthur W Coolidge Middle,2460305,0,0,0.1,99.9,0,0,0,83.5,16.5,64.5 +1,1,a-pcom-i3,2016-17,Reading - Birch Meadow,2460005,0,0,0.3,99.7,0,0,0,98.5,1.5,58.4 +1,1,a-pcom-i3,2016-17,Reading - J Warren Killam,2460017,0,0,0,100,0,0,0,98.3,1.7,48 +1,1,a-pcom-i3,2016-17,Reading - Joshua Eaton,2460010,0,0.9,0,96.9,0,0,2.2,94.7,5.3,45.8 +1,1,a-pcom-i3,2016-17,Reading - RISE PreSchool,2460001,0,0,0.8,99.2,0,0,0,100,0,22.9 +1,1,a-pcom-i3,2016-17,Reading - Reading Memorial High,2460505,0.7,0.7,0,97.8,0.8,0,0,72.6,27.4,119.2 +1,1,a-pcom-i3,2016-17,Reading - Walter S Parker Middle,2460310,0,0,1.5,98.5,0,0,0,76,24,66 +1,1,a-pcom-i3,2016-17,Reading - Wood End Elementary School,2460020,0,0,0,100,0,0,0,97.8,2.2,45 +1,1,a-pcom-i3,2016-17,Revere - A. C. Whelan Elementary School,2480003,0,0.7,0.7,98.6,0,0,0,95.9,4.1,73.5 +1,1,a-pcom-i3,2016-17,Revere - Abraham Lincoln,2480025,0,0.6,0.8,98.6,0,0,0,94.5,5.5,63.4 +2,2,a-pcom-i3,2016-17,Revere - Beachmont Veterans Memorial School,2480013,2.1,1.1,3.2,93.6,0,0,0,86.5,13.5,47 +2.34375,2.34,a-pcom-i3,2016-17,Revere - Garfield Elementary School,2480056,0,4,2.3,92.5,0,0,1.1,91.2,8.8,87.1 +2.03125,2.03,a-pcom-i3,2016-17,Revere - Garfield Middle School,2480057,0,4.7,1.8,93.5,0,0,0,56.9,43.1,55.6 +1,1,a-pcom-i3,2016-17,Revere - Paul Revere,2480050,0,0,1,99,0,0,0,94.7,5.3,50 +2.78125,2.78,a-pcom-i3,2016-17,Revere - Revere High,2480505,3.1,1.9,1.9,91.1,0.3,0,1.9,67.6,32.4,162 +1.125,1.12,a-pcom-i3,2016-17,Revere - Rumney Marsh Academy,2480014,1.5,0,2.2,96.4,0,0,0,74.6,25.4,68.8 +3.125,3.13,a-pcom-i3,2016-17,Revere - Seacoast School,2480520,5,0,5,90,0,0,0,51.6,48.4,20 +2.375,2.37,a-pcom-i3,2016-17,Revere - Staff Sargent James J. Hill Elementary School,2480035,0,0,4.2,92.4,0,1.7,1.7,88.7,11.3,59.3 +1.53125,1.53,a-pcom-i3,2016-17,Revere - Susan B. Anthony Middle School,2480305,1.6,0,3.3,95.1,0,0,0,67.6,32.4,61.2 +1,1,a-pcom-i3,2016-17,Richmond - Richmond Consolidated,2490005,0,0,0,100,0,0,0,90.2,9.8,28.4 +1.40625,1.41,a-pcom-i3,2016-17,Rising Tide Charter Public (District) - Rising Tide Charter Public School,4830305,0,0.6,3.8,95.5,0,0,0,71.4,28.6,78.3 +1,1,a-pcom-i3,2016-17,River Valley Charter (District) - River Valley Charter School,4820050,0,0,0,97.7,0,0,2.3,82.7,17.3,43.8 +1.03125,1.03,a-pcom-i3,2016-17,Rochester - Rochester Memorial,2500005,3.3,0,0,96.7,0,0,0,85.2,14.8,61 +1,1,a-pcom-i3,2016-17,Rockland - Jefferson Elementary School,2510060,0,0,0,100,0,0,0,98.9,1.1,47.1 +1,1,a-pcom-i3,2016-17,Rockland - John W Rogers Middle,2510305,1.3,0,0.1,97.3,0,0,1.3,85,15,76.6 +1,1,a-pcom-i3,2016-17,Rockland - Memorial Park,2510020,2.5,0,0,97.5,0,0,0,99.1,0.9,40 +1,1,a-pcom-i3,2016-17,Rockland - R Stewart Esten,2510025,0,0,2.4,97.6,0,0,0,93.8,6.2,42.2 +1,1,a-pcom-i3,2016-17,Rockland - Rockland Senior High,2510505,0,0,1.7,98.3,0,0,0,69.8,30.2,83.9 +1,1,a-pcom-i3,2016-17,Rockport - Rockport Elementary,2520005,0,0,0,100,0,0,0,88.3,11.7,58.2 +1,1,a-pcom-i3,2016-17,Rockport - Rockport High,2520510,0,0,2.4,97.6,0,0,0,66.2,33.8,42.2 +1,1,a-pcom-i3,2016-17,Rockport - Rockport Middle,2520305,0,0,0,100,0,0,0,74.2,25.8,40.7 +2.21875,2.22,a-pcom-i3,2016-17,Rowe - Rowe Elementary,2530005,0,0,7.1,92.9,0,0,0,83.8,16.2,14 +13.6875,5,a-pcom-i3,2016-17,Roxbury Preparatory Charter (District) - Roxbury Preparatory Charter School,4840505,26.4,6.6,9,56.2,0,0,1.8,59.2,40.8,166.7 +7.1875,5,a-pcom-i3,2016-17,Sabis International Charter (District) - Sabis International Charter School,4410505,9.3,1.3,12.4,77,0,0,0,73.6,26.4,130.6 +2.28125,2.28,a-pcom-i3,2016-17,Salem - Bates,2580003,4.8,0.2,2.2,92.7,0,0,0,83.7,16.3,62.3 +1.59375,1.59,a-pcom-i3,2016-17,Salem - Carlton,2580015,0,0.3,4.8,94.9,0,0,0,89.5,10.5,42 +2.5625,2.56,a-pcom-i3,2016-17,Salem - Collins Middle,2580305,2.1,2.1,4.1,91.8,0,0,0,72.4,27.6,97.2 +2.125,2.12,a-pcom-i3,2016-17,Salem - Horace Mann Laboratory,2580030,0,0.3,6.5,93.2,0,0,0,94.3,5.7,44.7 +4.8125,4.81,a-pcom-i3,2016-17,Salem - Nathaniel Bowditch,2580025,1.3,1.3,12.8,84.6,0,0,0,87,13,78 +5.90625,5,a-pcom-i3,2016-17,Salem - New Liberty Innovation School,2580510,0,0,18.9,81.1,0,0,0,76.3,23.7,10.5 +1,1,a-pcom-i3,2016-17,Salem - Salem Early Childhood,2580001,0,0,2.5,97.5,0,0,0,94.3,5.7,31.4 +3.03125,3.03,a-pcom-i3,2016-17,Salem - Salem High,2580505,1.6,0,8.1,90.3,0,0,0,64.4,35.6,183.4 +4.625,4.62,a-pcom-i3,2016-17,Salem - Salem Prep High School,2580515,0,0,14.8,85.2,0,0,0,59.4,40.6,13.5 +1.375,1.38,a-pcom-i3,2016-17,Salem - Saltonstall School,2580050,0,0.4,3.9,95.6,0,0,0,87.2,12.8,63.7 +1.21875,1.22,a-pcom-i3,2016-17,Salem - Witchcraft Heights,2580070,0,0.3,3.5,96.1,0,0,0,89.2,10.8,84.9 +6.125,5,a-pcom-i3,2016-17,Salem Academy Charter (District) - Salem Academy Charter School,4850485,4.8,0,13.2,80.4,0,1.6,0,64.9,35.1,62.4 +1.65625,1.66,a-pcom-i3,2016-17,Sandwich - Forestdale School,2610002,1,3,1.3,94.7,0,0,0,95.4,4.6,98.2 +1,1,a-pcom-i3,2016-17,Sandwich - Oak Ridge,2610025,0,0,0.2,99.8,0,0,0,90.7,9.3,105.8 +1,1,a-pcom-i3,2016-17,Sandwich - Sandwich High,2610505,0,1.6,1.2,97.3,0,0,0,76.3,23.7,96.1 +1.375,1.38,a-pcom-i3,2016-17,Sandwich - Sandwich STEM Academy,2610305,0,1,1.5,95.6,0,0,2,77.7,22.3,51.1 +1,1,a-pcom-i3,2016-17,Saugus - Ballard School,2620001,0,0,0,100,0,0,0,100,0,25.5 +1.03125,1.03,a-pcom-i3,2016-17,Saugus - Belmonte Saugus Middle,2620305,0,0,3.3,96.7,0,0,0,61.5,38.5,82.9 +1,1,a-pcom-i3,2016-17,Saugus - Douglas Waybright,2620067,0,0,0,100,0,0,0,91.6,8.4,24.3 +1,1,a-pcom-i3,2016-17,Saugus - Lynnhurst,2620040,0,0,0,100,0,0,0,95.7,4.3,27.6 +1,1,a-pcom-i3,2016-17,Saugus - Oaklandvale,2620050,0,0,0,100,0,0,0,95.7,4.3,26.2 +1,1,a-pcom-i3,2016-17,Saugus - Saugus High,2620505,1.2,0,1.2,97.5,0,0,0,61.6,38.4,80.7 +1.125,1.12,a-pcom-i3,2016-17,Saugus - Veterans Memorial,2620065,0,0,1.2,96.4,0,1.2,1.2,95.2,4.8,83.2 +2.71875,2.72,a-pcom-i3,2016-17,Savoy - Emma L Miller Elementary School,2630010,0,0,8.7,91.3,0,0,0,99.1,0.9,11.5 +1,1,a-pcom-i3,2016-17,Scituate - Cushing Elementary,2640007,0,0,0,100,0,0,0,87.7,12.3,48.7 +1,1,a-pcom-i3,2016-17,Scituate - Gates Intermediate School,2640305,0,0,0,100,0,0,0,76.3,23.7,66.6 +1,1,a-pcom-i3,2016-17,Scituate - Hatherly Elementary,2640010,0,0,0,100,0,0,0,92.5,7.5,53.4 +1,1,a-pcom-i3,2016-17,Scituate - Jenkins Elementary School,2640015,0,0,0,100,0,0,0,91.2,8.8,55.4 +1,1,a-pcom-i3,2016-17,Scituate - Scituate High School,2640505,0,1.8,0,98.2,0,0,0,66,34,99.9 +1,1,a-pcom-i3,2016-17,Scituate - Wampatuck Elementary,2640020,0,0,0,100,0,0,0,96,4,56.1 +1,1,a-pcom-i3,2016-17,Seekonk - Dr. Kevin M. Hurley Middle School,2650405,1.5,1.5,0,97.1,0,0,0,81,19,68.5 +1,1,a-pcom-i3,2016-17,Seekonk - George R Martin,2650007,0,0,0,98.1,0,0,1.9,94,6,53.5 +1,1,a-pcom-i3,2016-17,Seekonk - Mildred Aitken School,2650015,0,0,0,100,0,0,0,95.4,4.6,48.4 +1,1,a-pcom-i3,2016-17,Seekonk - Seekonk High,2650505,0,0,0,100,0,0,0,66.1,33.9,74.7 +9.6875,5,a-pcom-i3,2016-17,Seven Hills Charter Public (District) - Seven Hills Charter School,4860105,11.3,3.2,16.4,69,0,0,0,77.5,22.5,92.9 +1,1,a-pcom-i3,2016-17,Sharon - Cottage Street,2660005,1.9,0.5,0,97.7,0,0,0,93,7,71.6 +1,1,a-pcom-i3,2016-17,Sharon - East Elementary,2660010,0,0,1.3,98.7,0,0,0,93.5,6.5,76.3 +1.03125,1.03,a-pcom-i3,2016-17,Sharon - Heights Elementary,2660015,2.2,1.1,0,96.7,0,0,0,94.1,5.9,91.3 +1.34375,1.34,a-pcom-i3,2016-17,Sharon - Sharon High,2660505,0.7,2.1,1.4,95.7,0,0,0,69.8,30.2,140.5 +1,1,a-pcom-i3,2016-17,Sharon - Sharon Middle,2660305,0,1.1,0,98.9,0,0,0,76.7,23.3,94.4 +1,1,a-pcom-i3,2016-17,Shawsheen Valley Regional Vocational Technical - Shawsheen Valley Vocational Technical High School,8710605,0,0,0.5,99.5,0,0,0,56.4,43.6,183.4 +1.375,1.38,a-pcom-i3,2016-17,Sherborn - Pine Hill,2690010,1.6,0,0.1,95.6,0,0,2.7,93.6,6.4,67 +1,1,a-pcom-i3,2016-17,Shrewsbury - Beal School,2710005,0,0.9,0,99.1,0,0,0,96.4,3.6,55.3 +1,1,a-pcom-i3,2016-17,Shrewsbury - Calvin Coolidge,2710015,0,1.8,0,98.2,0,0,0,96.5,3.5,57 +1.375,1.38,a-pcom-i3,2016-17,Shrewsbury - Floral Street School,2710020,0,3.3,0,95.6,0,0,1.1,93.4,6.6,89.9 +1.125,1.12,a-pcom-i3,2016-17,Shrewsbury - Oak Middle School,2710030,0,2,1,96.4,0,0,0.7,81.1,18.9,101.8 +1,1,a-pcom-i3,2016-17,Shrewsbury - Parker Road Preschool,2710040,0,0,0,98.2,0,0,1.8,100,0,37.7 +2.21875,2.22,a-pcom-i3,2016-17,Shrewsbury - Sherwood Middle School,2710305,1.6,0,3.5,92.9,0,0,2,87.2,12.8,115.1 +1.59375,1.59,a-pcom-i3,2016-17,Shrewsbury - Shrewsbury Sr High,2710505,0.5,1.5,2.4,94.9,0,0,0.7,72.4,27.6,204.8 +1,1,a-pcom-i3,2016-17,Shrewsbury - Spring Street,2710035,0,0,2.4,97.6,0,0,0,96.1,3.9,42.3 +1.34375,1.34,a-pcom-i3,2016-17,Shrewsbury - Walter J Paton,2710025,0,2.2,2.2,95.7,0,0,0,95.7,4.3,46.1 +1.96875,1.97,a-pcom-i3,2016-17,Shutesbury - Shutesbury Elementary,2720005,0,3.2,3.2,93.7,0,0,0,95.6,4.4,31.6 +1,1,a-pcom-i3,2016-17,Silver Hill Horace Mann Charter (District) - Silver Hill Horace Mann Charter School,4770010,0,0,0,100,0,0,0,89.5,10.5,57.3 +1,1,a-pcom-i3,2016-17,Silver Lake - Silver Lake Regional High,7600505,0,0,0,100,0,0,0,71.2,28.8,142.4 +1,1,a-pcom-i3,2016-17,Silver Lake - Silver Lake Regional Middle School,7600405,0,0,0,100,0,0,0,78.9,21.1,69.3 +2.28125,2.28,a-pcom-i3,2016-17,Sizer School: A North Central Charter Essential (District) - Sizer School: A North Central Charter Essential School,4740505,0,1.9,5.3,92.7,0,0,0,74.8,25.2,51.8 +1,1,a-pcom-i3,2016-17,Somerset - Chace Street,2730005,1.9,0,0,98.1,0,0,0,96.1,3.9,51.5 +1,1,a-pcom-i3,2016-17,Somerset - North Elementary,2730008,0,0,0,100,0,0,0,95.1,4.9,61.3 +1,1,a-pcom-i3,2016-17,Somerset - Somerset Middle School,2730305,0,0,0,100,0,0,0,76.2,23.8,71.2 +1,1,a-pcom-i3,2016-17,Somerset - South,2730015,0,0,0,100,0,0,0,100,0,31.7 +1,1,a-pcom-i3,2016-17,Somerset Berkley Regional School District - Somerset Berkley Regional High School,7630505,0,0,2.5,97.5,0,0,0,65.9,34.1,117.4 +5.71875,5,a-pcom-i3,2016-17,Somerville - Albert F. Argenziano School at Lincoln Park,2740087,4.6,1.5,10.7,81.7,0,0,1.5,87.6,12.4,65.5 +5.53125,5,a-pcom-i3,2016-17,Somerville - Arthur D Healey,2740075,6.9,2.9,8,82.3,0,0,0,81.3,18.7,70.2 +1,1,a-pcom-i3,2016-17,Somerville - Benjamin G Brown,2740015,0,0,0,100,0,0,0,91.5,8.5,23.6 +6.34375,5,a-pcom-i3,2016-17,Somerville - Capuano Early Childhood Center,2740005,4.2,0,14.6,79.7,0,0,1.5,97,3,67 +9.71875,5,a-pcom-i3,2016-17,Somerville - E Somerville Community,2740111,5,2.5,22.4,68.9,0,0,1.2,81.4,18.6,80.5 +1.875,1.88,a-pcom-i3,2016-17,Somerville - Full Circle High School,2740510,0,0,6,94,0,0,0,51.5,48.5,16.7 +3.59375,3.59,a-pcom-i3,2016-17,Somerville - John F Kennedy,2740083,1.4,2.7,6.1,88.5,0,0,1.4,77.4,22.6,73.7 +3,3,a-pcom-i3,2016-17,Somerville - Next Wave Junior High,2740410,9.6,0,0,90.4,0,0,0,76,24,10.4 +5.8125,5,a-pcom-i3,2016-17,Somerville - Somerville High,2740505,6.1,2.3,9.2,81.4,0,0,1.1,62.2,37.8,174.9 +6.90625,5,a-pcom-i3,2016-17,Somerville - West Somerville Neighborhood,2740115,7.8,0,11.7,77.9,0,0,2.6,82.4,17.6,38.4 +5,5,a-pcom-i3,2016-17,Somerville - Winter Hill Community,2740120,4.4,4.4,5.8,84,0,0,1.5,82.5,17.5,68.6 +1,1,a-pcom-i3,2016-17,South Hadley - Michael E. Smith Middle School,2780305,1.4,0,0,98.6,0,0,0,81,19,70.6 +1,1,a-pcom-i3,2016-17,South Hadley - Mosier,2780020,0,0,1.8,98.2,0,0,0,90.1,9.9,54.8 +1.125,1.12,a-pcom-i3,2016-17,South Hadley - Plains Elementary,2780015,1.8,0,1.8,96.4,0,0,0,94.6,5.4,56 +1,1,a-pcom-i3,2016-17,South Hadley - South Hadley High,2780505,0,1.3,0,98.7,0,0,0,59.8,40.2,75 +1.9375,1.94,a-pcom-i3,2016-17,South Middlesex Regional Vocational Technical - Joseph P Keefe Technical High School,8290605,0.9,0.9,4.4,93.8,0,0,0,48.5,51.5,113.1 +2.375,2.37,a-pcom-i3,2016-17,South Shore Charter Public (District) - South Shore Charter Public School,4880550,4.9,2.7,0,92.4,0,0,0,73.3,26.7,97.3 +1,1,a-pcom-i3,2016-17,South Shore Regional Vocational Technical - So Shore Vocational Technical High,8730605,0,0,1.1,98.9,0,0,0,51.4,48.6,87.3 +1,1,a-pcom-i3,2016-17,Southampton - William E Norris,2750005,0,0,0,97,0,0,3,91,9,66.4 +1,1,a-pcom-i3,2016-17,Southborough - Albert S. Woodward Memorial School,2760050,0,1.5,0,98.5,0,0,0,96.3,3.7,40.6 +1,1,a-pcom-i3,2016-17,Southborough - Margaret A Neary,2760020,0,0,2.1,97.9,0,0,0,91.8,8.2,48.7 +1,1,a-pcom-i3,2016-17,Southborough - Mary E Finn School,2760008,1.4,0,0,97.2,0,1.4,0,92.4,7.6,72.4 +1,1,a-pcom-i3,2016-17,Southborough - P Brent Trottier,2760305,0,0,0,97.1,2.9,0,0,78.4,21.6,69.6 +1.96875,1.97,a-pcom-i3,2016-17,Southbridge - Charlton Street,2770005,0,0,6.3,93.7,0,0,0,93.3,6.7,63.1 +1.46875,1.47,a-pcom-i3,2016-17,Southbridge - Eastford Road,2770010,0,0,4.7,95.3,0,0,0,97.2,2.8,42.3 +4.46875,4.47,a-pcom-i3,2016-17,Southbridge - Southbridge High School,2770515,2.4,0,11.9,85.7,0,0,0,57,43,84.2 +1.34375,1.34,a-pcom-i3,2016-17,Southbridge - Southbridge Middle School,2770315,2.9,0,1.4,95.7,0,0,0,72.3,27.7,69.2 +1.0625,1.06,a-pcom-i3,2016-17,Southbridge - West Street,2770020,0,0,3.4,96.6,0,0,0,93,7,59.7 +3.03125,3.03,a-pcom-i3,2016-17,Southeastern Regional Vocational Technical - Southeastern Regional Vocational Technical,8720605,5.4,1.6,2.2,90.3,0,0.5,0,59.5,40.5,185 +2.53125,2.53,a-pcom-i3,2016-17,Southern Berkshire - Mt Everett Regional,7650505,5.1,1.4,1.7,91.9,0,0,0,62.6,37.4,59 +4.125,4.13,a-pcom-i3,2016-17,Southern Berkshire - New Marlborough Central,7650018,0,0,4.6,86.8,8.6,0,0,72,28,7.2 +3.875,3.88,a-pcom-i3,2016-17,Southern Berkshire - South Egremont,7650030,0,0,12.4,87.6,0,0,0,100,0,2.7 +1,1,a-pcom-i3,2016-17,Southern Berkshire - Undermountain,7650035,0,0,1.8,98.2,0,0,0,93.9,6.1,72.1 +1,1,a-pcom-i3,2016-17,Southern Worcester County Regional Vocational Technical - Bay Path Regional Vocational Technical High School,8760605,0,0,1.3,98.7,0,0,0,56.9,43.1,159.9 +1,1,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Granville Village School,7660215,0,0,0,100,0,0,0,97.8,2.2,15.2 +1.6875,1.69,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Powder Mill School,7660315,0,2.7,2.7,94.6,0,0,0,90.5,9.5,73.9 +1.375,1.38,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Southwick Regional School,7660505,0,0,2.5,95.6,0,0,1.9,71.6,28.4,104.9 +1,1,a-pcom-i3,2016-17,Southwick-Tolland-Granville Regional School District - Woodland School,7660010,0,2.2,0,97.8,0,0,0,98.2,1.8,46.3 +1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - David Prouty High,7670505,0,0,0,100,0,0,0,66.9,33.1,50.5 +1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - East Brookfield Elementary,7670008,0,0,0,100,0,0,0,92.6,7.4,33.8 +1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - Knox Trail Middle School,7670415,0,0,0,98.2,0,0,1.8,77.3,22.7,54.4 +1,1,a-pcom-i3,2016-17,Spencer-E Brookfield - Wire Village School,7670040,0,0,0,100,0,0,0,91.8,8.2,63.2 +8.84375,5,a-pcom-i3,2016-17,Springfield - Alfred G. Zanetti Montessori Magnet School,2810095,8.1,0,20.2,71.7,0,0,0,93.9,6.1,49.2 +5.625,5,a-pcom-i3,2016-17,Springfield - Alice B Beal Elementary,2810175,12,3,3,82,0,0,0,94,6,33.2 +5.03125,5,a-pcom-i3,2016-17,Springfield - Arthur T Talmadge,2810165,6.9,2.3,6.9,83.9,0,0,0,93.1,6.9,43.3 +5.875,5,a-pcom-i3,2016-17,Springfield - Balliet Middle School,2810360,9.4,0,9.4,81.2,0,0,0,52.8,47.2,21.2 +10.09375,5,a-pcom-i3,2016-17,Springfield - Brightwood,2810025,4.1,0,28.3,67.7,0,0,0,89.7,10.3,49.3 +12.09375,5,a-pcom-i3,2016-17,Springfield - Chestnut Accelerated Middle School (North),2810365,24.9,0,13.8,61.3,0,0,0,62.7,37.3,40.1 +12.09375,5,a-pcom-i3,2016-17,Springfield - Chestnut Accelerated Middle School (South),2810366,15.4,3.1,20.2,61.3,0,0,0,71.3,28.7,32.6 +17.71875,5,a-pcom-i3,2016-17,Springfield - Chestnut Accelerated Middle School (Talented and Gifted),2810367,31.8,2.2,22.7,43.3,0,0,0,82,18,44.5 +8.59375,5,a-pcom-i3,2016-17,Springfield - Conservatory of the Arts,2810475,14,0,13.5,72.5,0,0,0,74,26,50.1 +5.5,5,a-pcom-i3,2016-17,Springfield - Daniel B Brunton,2810035,8.8,0,8.8,82.4,0,0,0,94.9,5.1,56.8 +8.8125,5,a-pcom-i3,2016-17,Springfield - Early Childhood Education Center,2810001,12.8,0,15.4,71.8,0,0,0,97.4,2.6,39 +7.71875,5,a-pcom-i3,2016-17,Springfield - Edward P. Boland School,2810010,7.9,0,16.8,75.3,0,0,0,89.4,10.6,113.6 +10.84375,5,a-pcom-i3,2016-17,Springfield - Elias Brookings,2810030,18.3,1.8,14.5,65.3,0,0,0,94.6,5.4,55.1 +5.03125,5,a-pcom-i3,2016-17,Springfield - Forest Park Middle,2810325,7.5,1.1,7.5,83.9,0,0,0,81.7,18.3,93.6 +15.71875,5,a-pcom-i3,2016-17,Springfield - Frank H Freedman,2810075,41.9,0,8.4,49.7,0,0,0,86,14,35.7 +4.1875,4.19,a-pcom-i3,2016-17,Springfield - Frederick Harris,2810080,2.4,1.2,9.7,86.6,0,0,0,92.8,7.2,81.7 +2.59375,2.59,a-pcom-i3,2016-17,Springfield - Gateway to College at Holyoke Community College,2810575,8.3,0,0,91.7,0,0,0,8.3,91.7,0.4 +2.59375,2.59,a-pcom-i3,2016-17,Springfield - Gateway to College at Springfield Technical Community College,2810580,8.3,0,0,91.7,0,0,0,8.3,91.7,0.4 +10.375,5,a-pcom-i3,2016-17,Springfield - German Gerena Community School,2810195,3.8,0,29.4,66.8,0,0,0,91.4,8.6,105.5 +5.5,5,a-pcom-i3,2016-17,Springfield - Glenwood,2810065,5,0,12.6,82.4,0,0,0,97.5,2.5,39.7 +7.59375,5,a-pcom-i3,2016-17,Springfield - Glickman Elementary,2810068,6.5,0,17.8,75.7,0,0,0,95.2,4.8,61.7 +14.75,5,a-pcom-i3,2016-17,Springfield - High School Of Commerce,2810510,21.2,4.2,21.8,52.8,0,0,0,62.5,37.5,165.8 +2.84375,2.84,a-pcom-i3,2016-17,Springfield - Hiram L Dorman,2810050,9.1,0,0,90.9,0,0,0,91,9,44 +6.625,5,a-pcom-i3,2016-17,Springfield - Homer Street,2810085,9.6,1.9,9.6,78.8,0,0,0,90.4,9.6,51.8 +5.75,5,a-pcom-i3,2016-17,Springfield - Indian Orchard Elementary,2810100,12.6,0,5.8,81.6,0,0,0,90.8,9.2,87 +11.96875,5,a-pcom-i3,2016-17,Springfield - John F Kennedy Middle,2810328,21.8,5,6.4,61.7,0,1.7,3.5,69.8,30.2,59.6 +9.53125,5,a-pcom-i3,2016-17,Springfield - John J Duggan Middle,2810320,23.8,0,6.7,69.5,0,0,0,68.7,31.3,105.3 +4.875,4.87,a-pcom-i3,2016-17,Springfield - Kensington International School,2810110,6.6,0,9,84.4,0,0,0,88.8,11.2,45.1 +8.0625,5,a-pcom-i3,2016-17,Springfield - Liberty,2810115,15.4,0,10.4,74.2,0,0,0,94.9,5.1,38.8 +9.28125,5,a-pcom-i3,2016-17,Springfield - Liberty Preparatory Academy,2810560,14.8,0,14.8,70.3,0,0,0,44.5,55.5,6.7 +9.5,5,a-pcom-i3,2016-17,Springfield - Lincoln,2810120,13.3,0,17.1,69.6,0,0,0,90.3,9.7,52.6 +10.34375,5,a-pcom-i3,2016-17,Springfield - M Marcus Kiley Middle,2810330,19.2,0,13.9,66.9,0,0,0,67,33,93.6 +6,5,a-pcom-i3,2016-17,Springfield - Margaret C Ells,2810060,9.6,0,9.6,80.8,0,0,0,94.2,5.8,52 +1.53125,1.53,a-pcom-i3,2016-17,Springfield - Mary A. Dryden Veterans Memorial School,2810125,2.4,0,2.4,95.1,0,0,0,95.1,4.9,41.2 +9.5,5,a-pcom-i3,2016-17,Springfield - Mary M Lynch,2810140,24.3,0,6.1,69.6,0,0,0,96.9,3.1,32.8 +4.125,4.13,a-pcom-i3,2016-17,Springfield - Mary M Walsh,2810155,6.6,0,6.6,86.8,0,0,0,93.4,6.6,45.5 +8.09375,5,a-pcom-i3,2016-17,Springfield - Mary O Pottenger,2810145,9.2,0,16.7,74.1,0,0,0,94.5,5.5,53.8 +8.875,5,a-pcom-i3,2016-17,Springfield - Milton Bradley School,2810023,4.9,0,23.4,71.6,0,0,0,91.4,8.6,81.2 +16.5,5,a-pcom-i3,2016-17,Springfield - Rebecca M Johnson,2810055,34.6,0,18.2,47.2,0,0,0,90,10,109.4 +8.5625,5,a-pcom-i3,2016-17,Springfield - Roger L. Putnam Vocational Technical Academy,2810620,9.9,2.5,14.9,72.6,0,0,0,55,45,200.7 +14.6875,5,a-pcom-i3,2016-17,Springfield - STEM Middle Academy,2810350,36.9,0,10.1,53,0,0,0,59.8,40.2,30.2 +7.84375,5,a-pcom-i3,2016-17,Springfield - Samuel Bowles,2810020,10.4,0,14.6,74.9,0,0,0,93.8,6.2,47.7 +14.90625,5,a-pcom-i3,2016-17,Springfield - South End Middle School,2810355,20.7,0,27,52.3,0,0,0,71.5,28.5,38.6 +7.34375,5,a-pcom-i3,2016-17,Springfield - Springfield Central High,2810500,11,2.8,9.2,76.5,0,0,0.5,54.9,45.1,218.2 +13.625,5,a-pcom-i3,2016-17,Springfield - Springfield High School,2810570,23.8,7.9,11.9,56.4,0,0,0,65.7,34.3,25.3 +10.53125,5,a-pcom-i3,2016-17,Springfield - Springfield High School of Science and Technology,2810530,15.1,2.2,16.3,66.3,0,0,0,60.1,39.9,178.1 +12.53125,5,a-pcom-i3,2016-17,Springfield - Springfield Public Day Elementary School,2810005,23.4,0,16.7,59.9,0,0,0,90,10,30.1 +16.28125,5,a-pcom-i3,2016-17,Springfield - Springfield Public Day High School,2810550,35.4,0,16.7,47.9,0,0,0,72.9,27.1,48.1 +9.65625,5,a-pcom-i3,2016-17,Springfield - Springfield Public Day Middle School,2810345,21.6,0,9.3,69.1,0,0,0,59.6,40.4,32.4 +7.25,5,a-pcom-i3,2016-17,Springfield - Sumner Avenue,2810160,9.2,2.3,11.7,76.8,0,0,0,91.8,8.2,87 +9.4375,5,a-pcom-i3,2016-17,Springfield - The Springfield Renaissance School an Expeditionary Learning School,2810205,19.5,0,10.7,69.8,0,0,0,80.6,19.4,93.6 +9.15625,5,a-pcom-i3,2016-17,Springfield - Thomas M Balliet,2810015,12.2,0,17.1,70.7,0,0,0,95.1,4.9,40.8 +10.84375,5,a-pcom-i3,2016-17,Springfield - Van Sickle Academy,2810480,11.6,0,23.1,65.3,0,0,0,72.1,27.9,43.2 +11.21875,5,a-pcom-i3,2016-17,Springfield - Van Sickle International Baccalaureate,2810485,15.2,0,20.7,64.1,0,0,0,82,18,39.2 +7.1875,5,a-pcom-i3,2016-17,Springfield - Warner,2810180,15.4,0,7.6,77,0,0,0,92.3,7.7,38.8 +4.53125,4.53,a-pcom-i3,2016-17,Springfield - Washington,2810185,8,0,6.4,85.5,0,0,0,98.2,1.8,62 +4.125,4.13,a-pcom-i3,2016-17,Springfield - White Street,2810190,6.6,0,6.7,86.8,0,0,0,97.8,2.2,45.5 +10.65625,5,a-pcom-i3,2016-17,Springfield - William N. DeBerry,2810045,12.1,0,22,65.9,0,0,0,90.3,9.7,40.9 +11.625,5,a-pcom-i3,2016-17,Springfield Preparatory Charter School (District) - Springfield Preparatory Charter School,35100205,31.9,0,5.3,62.8,0,0,0,84,16,18.8 +1.3125,1.31,a-pcom-i3,2016-17,Stoneham - Colonial Park,2840005,0,2.1,2.1,95.8,0,0,0,97.9,2.1,47.4 +1,1,a-pcom-i3,2016-17,Stoneham - Robin Hood,2840025,2.1,0,0,97.9,0,0,0,95.9,4.1,48.4 +1,1,a-pcom-i3,2016-17,Stoneham - South,2840030,0,0,0,100,0,0,0,97.9,2.1,37.8 +1,1,a-pcom-i3,2016-17,Stoneham - Stoneham Central Middle School,2840405,1,0,1,96.9,0,0,1,74,26,98 +1,1,a-pcom-i3,2016-17,Stoneham - Stoneham High,2840505,0,1.2,0,98.8,0,0,0,72.9,27.1,82 +1.90625,1.91,a-pcom-i3,2016-17,Stoughton - Edwin A Jones Early Childhood Center,2850012,4.3,0,1.8,93.9,0,0,0,100,0,20.4 +1,1,a-pcom-i3,2016-17,Stoughton - Helen Hansen Elementary,2850010,2.4,0,0,97.6,0,0,0,90.7,9.3,36.1 +1,1,a-pcom-i3,2016-17,Stoughton - Joseph H Gibbons,2850025,0,0,0,100,0,0,0,90.9,9.1,43.7 +1,1,a-pcom-i3,2016-17,Stoughton - Joseph R Dawe Jr Elementary,2850014,0,0.8,1,98.2,0,0,0,84,16,44.5 +1,1,a-pcom-i3,2016-17,Stoughton - O'Donnell Middle School,2850405,0,0,0,100,0,0,0,80.3,19.7,93.3 +1,1,a-pcom-i3,2016-17,Stoughton - South Elementary,2850015,0,0,0,100,0,0,0,97.8,2.2,30.2 +1,1,a-pcom-i3,2016-17,Stoughton - Stoughton High,2850505,0,0,0,98.4,0.8,0.8,0,67.4,32.6,125 +1.65625,1.66,a-pcom-i3,2016-17,Stoughton - West Elementary,2850020,0,0.8,2.2,94.7,2.2,0,0,93.2,6.8,44.8 +1,1,a-pcom-i3,2016-17,Sturbridge - Burgess Elementary,2870005,0,0,0,100,0,0,0,93,7,124.3 +1.75,1.75,a-pcom-i3,2016-17,Sturgis Charter Public (District) - Sturgis Charter Public School,4890505,0,3.4,2.2,94.4,0,0,0,64.5,35.5,115.7 +2,2,a-pcom-i3,2016-17,Sudbury - Ephraim Curtis Middle,2880305,2.7,0,0.9,93.6,0,0,2.7,72.6,27.4,110.2 +1,1,a-pcom-i3,2016-17,Sudbury - General John Nixon Elementary,2880025,3,0,0,97,0,0,0,87.6,12.4,49.8 +1.75,1.75,a-pcom-i3,2016-17,Sudbury - Israel Loring School,2880015,2.4,0,0,94.4,0,0,3.2,90.2,9.8,62.7 +1,1,a-pcom-i3,2016-17,Sudbury - Josiah Haynes,2880010,2.1,0,0.5,97.4,0,0,0,92,8,65.5 +1.3125,1.31,a-pcom-i3,2016-17,Sudbury - Peter Noyes,2880030,1.5,0,1.4,95.8,0,0,1.4,90.8,9.2,73.8 +2.3125,2.31,a-pcom-i3,2016-17,Sunderland - Sunderland Elementary,2890005,0,3.7,3.7,92.6,0,0,0,88.9,11.1,54.2 +1,1,a-pcom-i3,2016-17,Sutton - Sutton Early Learning,2900003,0,0,0,100,0,0,0,99.1,0.9,52.2 +1,1,a-pcom-i3,2016-17,Sutton - Sutton Elementary,2900005,0,2.3,0,97.7,0,0,0,96.5,3.5,44 +1,1,a-pcom-i3,2016-17,Sutton - Sutton High School,2900510,2,0,0,98,0,0,0,66.7,33.3,50.5 +1,1,a-pcom-i3,2016-17,Sutton - Sutton Middle School,2900305,0,0,0,100,0,0,0,73.2,26.8,42.2 +1,1,a-pcom-i3,2016-17,Swampscott - Clarke,2910005,0,0,0,100,0,0,0,97.4,2.6,37.9 +1,1,a-pcom-i3,2016-17,Swampscott - Hadley,2910010,0,0,2.3,97.7,0,0,0,86.4,13.6,44 +1,1,a-pcom-i3,2016-17,Swampscott - Stanley,2910020,0,0,0,100,0,0,0,85.5,14.5,41.4 +2.4375,2.44,a-pcom-i3,2016-17,Swampscott - Swampscott High,2910505,2.1,1.6,4.1,92.2,0,0,0,68.1,31.9,97.2 +1,1,a-pcom-i3,2016-17,Swampscott - Swampscott Middle,2910305,0,0,0,100,0,0,0,85.5,14.5,103.8 +1,1,a-pcom-i3,2016-17,Swansea - Elizabeth S Brown,2920006,0,0,0,100,0,0,0,93.3,6.7,29.7 +1,1,a-pcom-i3,2016-17,Swansea - Gardner,2920015,0,0,0,100,0,0,0,95.5,4.5,26.3 +1,1,a-pcom-i3,2016-17,Swansea - Joseph Case High,2920505,0,1.5,0,98.5,0,0,0,45,55,67.5 +1.15625,1.16,a-pcom-i3,2016-17,Swansea - Joseph Case Jr High,2920305,1.9,0,1.9,96.3,0,0,0,68.9,31.1,53.4 +1,1,a-pcom-i3,2016-17,Swansea - Joseph G Luther,2920020,0,0,0,100,0,0,0,83.4,16.6,21 +1,1,a-pcom-i3,2016-17,Swansea - Mark G Hoyle Elementary,2920017,3.1,0,0,96.9,0,0,0,92,8,32 +2.71875,2.72,a-pcom-i3,2016-17,TEC Connections Academy Commonwealth Virtual School District - TEC Connections Academy Commonwealth Virtual School,39020900,2.3,4.3,2.1,91.3,0,0,0,79.3,20.7,46 +1,1,a-pcom-i3,2016-17,Tantasqua - Tantasqua Regional Jr High,7700405,1.4,0,0,98.6,0,0,0,77.9,22.1,71.5 +1,1,a-pcom-i3,2016-17,Tantasqua - Tantasqua Regional Sr High,7700505,0.8,0,1.3,97.1,0,0,0.8,63.5,36.5,118.7 +1,1,a-pcom-i3,2016-17,Tantasqua - Tantasqua Regional Vocational,7700605,0,0,0,100,0,0,0,20.9,79.1,14.8 +1,1,a-pcom-i3,2016-17,Taunton - Benjamin Friedman Middle,2930315,1.2,0,0.4,98.4,0,0,0,82.1,17.9,82.1 +1,1,a-pcom-i3,2016-17,Taunton - East Taunton Elementary,2930010,1.2,0,0,98.8,0,0,0,89.6,10.4,81 +1,1,a-pcom-i3,2016-17,Taunton - Edmund Hatch Bennett,2930007,0,0,0,100,0,0,0,94.1,5.9,35.1 +1,1,a-pcom-i3,2016-17,Taunton - Edward F. Leddy Preschool,2930005,0,0,2.6,97.4,0,0,0,99.3,0.7,38.3 +1,1,a-pcom-i3,2016-17,Taunton - Elizabeth Pole,2930027,1.5,0,0,98.5,0,0,0,96.9,3.1,66.2 +2.53125,2.53,a-pcom-i3,2016-17,Taunton - H H Galligan,2930057,0,0,8.1,91.9,0,0,0,98.4,1.6,37 +1,1,a-pcom-i3,2016-17,Taunton - Hopewell,2930035,0,0,0,100,0,0,0,93.1,6.9,35.1 +1,1,a-pcom-i3,2016-17,Taunton - John F Parker Middle,2930305,1.8,0,0.5,97.6,0,0,0,85.7,14.3,54.8 +1.625,1.63,a-pcom-i3,2016-17,Taunton - Joseph C Chamberlain,2930008,1.7,3.4,0,94.8,0,0,0,96.1,3.9,58.2 +1,1,a-pcom-i3,2016-17,Taunton - Joseph H Martin,2930042,1.6,0,0.5,97.9,0,0,0,81.7,18.3,64 +1.21875,1.22,a-pcom-i3,2016-17,Taunton - Mulcahey Elementary School,2930015,0,0,3.9,96.1,0,0,0,98.1,1.9,51.3 +1,1,a-pcom-i3,2016-17,Taunton - Taunton Alternative High School,2930525,0,0,0,100,0,0,0,61.2,38.8,11.4 +1.375,1.38,a-pcom-i3,2016-17,Taunton - Taunton High,2930505,1.3,0.3,2.5,95.6,0,0,0.3,69.6,30.4,157 +1,1,a-pcom-i3,2016-17,Tewksbury - Heath-Brook,2950010,0,0,0,100,0,0,0,97.8,2.2,40.5 +1,1,a-pcom-i3,2016-17,Tewksbury - John F. Ryan,2950023,1.3,0,0,98.7,0,0,0,90.2,9.8,76.3 +1.28125,1.28,a-pcom-i3,2016-17,Tewksbury - John W. Wynn Middle,2950305,0,2.7,1.4,95.9,0,0,0,77.7,22.3,73.9 +1,1,a-pcom-i3,2016-17,Tewksbury - L F Dewing,2950001,1.3,1.3,0,97.4,0,0,0,98.7,1.3,77.4 +1,1,a-pcom-i3,2016-17,Tewksbury - Louise Davy Trahan,2950025,0,0,0,100,0,0,0,92.7,7.3,28.5 +1,1,a-pcom-i3,2016-17,Tewksbury - North Street,2950020,0,0,0,100,0,0,0,95.4,4.6,43 +1,1,a-pcom-i3,2016-17,Tewksbury - Tewksbury Memorial High,2950505,0,0,0.9,99.1,0,0,0,65.4,34.6,108.4 +2.53125,2.53,a-pcom-i3,2016-17,Tisbury - Tisbury Elementary,2960005,1.9,0,6.2,91.9,0,0,0,86.3,13.7,77.6 +1,1,a-pcom-i3,2016-17,Topsfield - Proctor Elementary,2980005,0,0,0,100,0,0,0,94.7,5.3,41.4 +1,1,a-pcom-i3,2016-17,Topsfield - Steward Elementary,2980010,0,0,1.3,98.7,0,0,0,98.4,1.6,59.3 +1,1,a-pcom-i3,2016-17,Tri-County Regional Vocational Technical - Tri-County Regional Vocational Technical,8780605,0,0.8,0,98.4,0.8,0,0,61.7,38.3,128.6 +1,1,a-pcom-i3,2016-17,Triton - Newbury Elementary,7730020,1.4,1.8,0,96.8,0,0,0,91.6,8.4,71.4 +1,1,a-pcom-i3,2016-17,Triton - Pine Grove,7730025,1.6,0.5,0,97.9,0,0,0,90.3,9.7,61.5 +1,1,a-pcom-i3,2016-17,Triton - Salisbury Elementary,7730015,0,0,0,100,0,0,0,95.9,4.1,72.7 +1,1,a-pcom-i3,2016-17,Triton - Triton Regional High School,7730505,2,0,0.8,97.2,0,0,0,58.3,41.7,99.7 +1,1,a-pcom-i3,2016-17,Triton - Triton Regional Middle School,7730405,0,0,0,100,0,0,0,65.8,34.2,53 +1,1,a-pcom-i3,2016-17,Truro - Truro Central,3000005,0,0,2.9,97.1,0,0,0,88.2,11.8,34 +1,1,a-pcom-i3,2016-17,Tyngsborough - Tyngsborough Elementary,3010020,0,0,0,100,0,0,0,90.7,9.3,109.5 +1,1,a-pcom-i3,2016-17,Tyngsborough - Tyngsborough High School,3010505,0,0,0,100,0,0,0,64.4,35.6,54.9 +1,1,a-pcom-i3,2016-17,Tyngsborough - Tyngsborough Middle,3010305,0,0,0.5,99.5,0,0,0,64,36,50.3 +9.71875,5,a-pcom-i3,2016-17,UP Academy Charter School of Boston (District) - UP Academy Charter School of Boston,4800405,19.5,3.9,7.7,68.9,0,0,0,65.2,34.8,51.6 +7.96875,5,a-pcom-i3,2016-17,UP Academy Charter School of Dorchester (District) - UP Academy Charter School of Dorchester,35050405,13.6,5.9,5.9,74.5,0,0,0,80.4,19.6,84.3 +1,1,a-pcom-i3,2016-17,Up-Island Regional - Chilmark Elementary,7740010,0.5,0,0.5,99,0,0,0,92.6,7.4,12.6 +1,1,a-pcom-i3,2016-17,Up-Island Regional - West Tisbury Elementary,7740020,0.6,0,0.6,97.7,0,0,1.2,85.3,14.7,76.2 +1,1,a-pcom-i3,2016-17,Upper Cape Cod Regional Vocational Technical - Upper Cape Cod Vocational Technical,8790605,1,0,0,99,0,0,0,42.6,57.4,98.9 +1,1,a-pcom-i3,2016-17,Uxbridge - Gateway to College,3040515,0,0,0,100,0,0,0,0,100,0 +1,1,a-pcom-i3,2016-17,Uxbridge - McCloskey Middle School,3040015,0,0,0,100,0,0,0,77.6,22.4,55.8 +1,1,a-pcom-i3,2016-17,Uxbridge - Taft Early Learning Center,3040005,0,0,0,100,0,0,0,95.6,4.4,68.5 +1,1,a-pcom-i3,2016-17,Uxbridge - Uxbridge High,3040505,0,0,0,100,0,0,0,63.7,36.3,57.7 +1,1,a-pcom-i3,2016-17,Uxbridge - Whitin Elementary School,3040020,0,0,0,100,0,0,0,97.6,2.4,41.3 +7.40625,5,a-pcom-i3,2016-17,Veritas Preparatory Charter School (District) - Veritas Preparatory Charter School,4980405,2.2,2.2,17.2,76.3,0,0,2.2,82.8,17.2,46.5 +1,1,a-pcom-i3,2016-17,Wachusett - Central Tree Middle,7750310,0,0,0,100,0,0,0,78.5,21.5,55.9 +1,1,a-pcom-i3,2016-17,Wachusett - Chocksett Middle School,7750315,0,0,2.8,97.2,0,0,0,81.1,18.9,42.1 +1,1,a-pcom-i3,2016-17,Wachusett - Davis Hill Elementary,7750018,0,0,1.9,98.1,0,0,0,86.9,13.1,52.9 +1,1,a-pcom-i3,2016-17,Wachusett - Dawson,7750020,0,0,0,100,0,0,0,92.1,7.9,62.9 +1.28125,1.28,a-pcom-i3,2016-17,Wachusett - Early Childhood Center,7750001,2.1,0,2.1,95.9,0,0,0,100,0,48.6 +1,1,a-pcom-i3,2016-17,Wachusett - Glenwood Elementary School,7750060,0,0,0,100,0,0,0,87.8,12.2,54.2 +1,1,a-pcom-i3,2016-17,Wachusett - Houghton Elementary,7750027,1.6,0,0,98.4,0,0,0,97.1,2.9,61.1 +1,1,a-pcom-i3,2016-17,Wachusett - Leroy E.Mayo,7750032,0,0,0,100,0,0,0,93.8,6.2,48 +1,1,a-pcom-i3,2016-17,Wachusett - Mountview Middle,7750305,0,0,1.4,98.6,0,0,0,81.4,18.6,73.7 +1,1,a-pcom-i3,2016-17,Wachusett - Naquag Elementary School,7750005,0,0,0,100,0,0,0,97.8,2.2,44.9 +1,1,a-pcom-i3,2016-17,Wachusett - Paxton Center,7750040,0,0,0,100,0,0,0,88.7,11.3,53 +1,1,a-pcom-i3,2016-17,Wachusett - Thomas Prince,7750045,0,0,2.1,97.9,0,0,0,91.5,8.5,47.1 +1,1,a-pcom-i3,2016-17,Wachusett - Wachusett Regional High,7750505,0,0.5,0.5,99.1,0,0,0,68.3,31.7,220 +1.0625,1.06,a-pcom-i3,2016-17,Wakefield - Dolbeare,3050005,0,1.7,0,96.6,1.7,0,0,88,12,58.8 +1.25,1.25,a-pcom-i3,2016-17,Wakefield - Early Childhood Center at the Doyle School,3050001,0,4,0,96,0,0,0,100,0,25.2 +1,1,a-pcom-i3,2016-17,Wakefield - Galvin Middle School,3050310,0.8,0,1.7,97.5,0,0,0,74.4,25.6,121.1 +1.09375,1.09,a-pcom-i3,2016-17,Wakefield - Greenwood,3050020,0,3.5,0,96.5,0,0,0,94.6,5.4,28.5 +1,1,a-pcom-i3,2016-17,Wakefield - Wakefield Memorial High,3050505,0,0.9,2,97.1,0,0,0,62.4,37.6,110.1 +1,1,a-pcom-i3,2016-17,Wakefield - Walton,3050040,0,0,0,100,0,0,0,95.2,4.8,21.6 +1.125,1.12,a-pcom-i3,2016-17,Wakefield - Woodville School,3050015,0,0,1.8,96.4,0,0,1.8,95.7,4.3,55 +1,1,a-pcom-i3,2016-17,Wales - Wales Elementary,3060005,0,0,0,100,0,0,0,93.5,6.5,18.6 +1.0625,1.06,a-pcom-i3,2016-17,Walpole - Bird Middle,3070305,0.2,1.6,1.6,96.6,0,0,0,80.4,19.6,61.8 +1,1,a-pcom-i3,2016-17,Walpole - Boyden,3070010,0,0,0,100,0,0,0,92.3,7.7,43 +1.40625,1.41,a-pcom-i3,2016-17,Walpole - Daniel Feeney Preschool Center,3070002,0,0,4.5,95.5,0,0,0,93.6,6.4,17.1 +1,1,a-pcom-i3,2016-17,Walpole - Eleanor N Johnson Middle,3070310,0.2,0,0,99.8,0,0,0,81.1,18.9,53.5 +1,1,a-pcom-i3,2016-17,Walpole - Elm Street School,3070005,0.2,1,1,97.9,0,0,0,96,4,52.4 +1,1,a-pcom-i3,2016-17,Walpole - Fisher,3070015,0,0,0,100,0,0,0,98.3,1.7,56.8 +1,1,a-pcom-i3,2016-17,Walpole - Old Post Road,3070018,2,0,0,98,0,0,0,92.6,7.4,55.2 +1,1,a-pcom-i3,2016-17,Walpole - Walpole High,3070505,0.1,0.8,0.8,98.4,0,0,0,64.1,35.9,132.2 +1,1,a-pcom-i3,2016-17,Waltham - Douglas MacArthur Elementary School,3080032,0,0,0,100,0,0,0,91,9,54.1 +3.53125,3.53,a-pcom-i3,2016-17,Waltham - Henry Whittemore Elementary School,3080065,3.5,0,7.8,88.7,0,0,0,90.6,9.4,57.7 +1,1,a-pcom-i3,2016-17,Waltham - James Fitzgerald Elementary School,3080060,0,0,1.7,98.3,0,0,0,92.1,7.9,59.3 +1.40625,1.41,a-pcom-i3,2016-17,Waltham - John F Kennedy Middle,3080404,0,2.2,2.2,95.5,0,0,0,74.3,25.7,89.4 +2.21875,2.22,a-pcom-i3,2016-17,Waltham - John W. McDevitt Middle School,3080415,0,1.2,6,92.9,0,0,0,72.6,27.4,83.9 +2.125,2.12,a-pcom-i3,2016-17,Waltham - Northeast Elementary School,3080040,3.3,1.2,2.4,93.2,0,0,0,92.2,7.8,85.1 +2.0625,2.06,a-pcom-i3,2016-17,Waltham - Thomas R Plympton Elementary School,3080050,0,0,6.6,93.4,0,0,0,92.7,7.3,60.9 +12.28125,5,a-pcom-i3,2016-17,Waltham - Waltham Public Schools Dual Language Program,3080001,0,0,39.3,60.7,0,0,0,98,2,5.1 +2.125,2.12,a-pcom-i3,2016-17,Waltham - Waltham Sr High,3080505,1.6,1,3.6,93.2,0,0,0.5,62.2,37.8,192 +1.9375,1.94,a-pcom-i3,2016-17,Waltham - William F. Stanley Elementary School,3080005,2.1,0,3,93.8,0,0,1.1,95.1,4.9,93.5 +1,1,a-pcom-i3,2016-17,Ware - Stanley M Koziol Elementary School,3090020,0,0,1.7,98.3,0,0,0,93.8,6.3,57.6 +1.46875,1.47,a-pcom-i3,2016-17,Ware - Ware Junior/Senior High School,3090505,0,0,4.7,95.3,0,0,0,74.3,25.7,64 +1.53125,1.53,a-pcom-i3,2016-17,Ware - Ware Middle School,3090305,2.4,0,2.4,95.1,0,0,0,80.5,19.5,41.1 +1,1,a-pcom-i3,2016-17,Wareham - John William Decas,3100003,0,0,0,98.6,0,1.4,0,94.4,5.6,73.5 +1.5625,1.56,a-pcom-i3,2016-17,Wareham - Minot Forest,3100017,0,0,0.7,95,0,0,4.2,94.2,5.8,70.6 +1,1,a-pcom-i3,2016-17,Wareham - Wareham Cooperative Alternative School,3100315,0,0,0,100,0,0,0,75.1,24.9,3 +1.4375,1.44,a-pcom-i3,2016-17,Wareham - Wareham Middle,3100305,1.2,0,0,95.4,0,0,3.5,83.6,16.4,86.9 +2.5,2.5,a-pcom-i3,2016-17,Wareham - Wareham Senior High,3100505,3.4,1.1,0,92,0,0,3.4,62.6,37.4,88 +1,1,a-pcom-i3,2016-17,Watertown - Cunniff,3140015,0,0,0,100,0,0,0,91.2,8.8,56.9 +1,1,a-pcom-i3,2016-17,Watertown - Hosmer,3140020,0.7,1.5,0,97.8,0,0,0,88.3,11.7,137 +1,1,a-pcom-i3,2016-17,Watertown - James Russell Lowell,3140025,0,1.4,0,98.6,0,0,0,81.8,18.2,71.4 +1,1,a-pcom-i3,2016-17,Watertown - Watertown High,3140505,0.8,0.8,0,98.3,0,0,0,56.7,43.3,119.2 +1,1,a-pcom-i3,2016-17,Watertown - Watertown Middle,3140305,1.2,0,0,98.8,0,0,0,73.1,26.9,84.6 +1.65625,1.66,a-pcom-i3,2016-17,Wayland - Claypit Hill School,3150005,1.7,0,0,94.7,0,1.2,2.4,91.6,8.4,82.4 +2.59375,2.59,a-pcom-i3,2016-17,Wayland - Happy Hollow School,3150015,0.5,6,1.8,91.7,0,0,0,95.4,4.6,57.1 +1,1,a-pcom-i3,2016-17,Wayland - Loker School,3150020,0.7,2.4,0,96.9,0,0,0,86.1,13.9,42.1 +1.375,1.38,a-pcom-i3,2016-17,Wayland - Wayland High School,3150505,3.4,1,0,95.6,0,0,0,63.7,36.3,119.1 +3.0625,3.06,a-pcom-i3,2016-17,Wayland - Wayland Middle School,3150305,0,1.9,6.7,90.2,0,0,1.2,69.6,30.4,85.6 +1,1,a-pcom-i3,2016-17,Webster - Bartlett High School,3160505,0,0,1.5,96.9,0,0,1.5,66.3,33.7,65.2 +1,1,a-pcom-i3,2016-17,Webster - Park Avenue Elementary,3160015,0,0,0,100,0,0,0,99.1,0.9,105.7 +1,1,a-pcom-i3,2016-17,Webster - Webster Middle School,3160315,0,0,0,100,0,0,0,77,23,74 +1.125,1.12,a-pcom-i3,2016-17,Wellesley - Ernest F Upham,3170050,0,2,1.6,96.4,0,0,0,93.9,6.1,49.6 +4.3125,4.31,a-pcom-i3,2016-17,Wellesley - Hunnewell,3170025,1.6,2.3,5.4,86.2,0,0,4.5,86.8,13.2,44.2 +1,1,a-pcom-i3,2016-17,Wellesley - John D Hardy,3170020,0,0,1.1,98.9,0,0,0,93,7,43.2 +2.75,2.75,a-pcom-i3,2016-17,Wellesley - Joseph E Fiske,3170015,2.1,4.3,1.3,91.2,0,0,1.1,97.9,2.1,93.5 +2.1875,2.19,a-pcom-i3,2016-17,Wellesley - Katharine Lee Bates,3170005,0,0,4.8,93,0,0,2.3,100,0,44.7 +1.40625,1.41,a-pcom-i3,2016-17,Wellesley - Schofield,3170045,0,2,2.4,95.5,0,0,0,91.9,8.1,49.3 +1,1,a-pcom-i3,2016-17,Wellesley - Sprague Elementary School,3170048,0,1.9,0.6,97.5,0,0,0,92.5,7.5,53 +2.96875,2.97,a-pcom-i3,2016-17,Wellesley - Wellesley Middle,3170305,3.3,2.7,2.5,90.5,0,0,1.1,76.1,23.9,176.8 +2.5625,2.56,a-pcom-i3,2016-17,Wellesley - Wellesley Sr High,3170505,3.3,1.9,1,91.8,0,0,2,63.8,36.2,210.2 +1,1,a-pcom-i3,2016-17,Wellfleet - Wellfleet Elementary,3180005,3,0,0,97,0,0,0,91.1,8.9,33.8 +1,1,a-pcom-i3,2016-17,West Boylston - Major Edwards Elementary,3220005,0,0,0,100,0,0,0,95,5,57.6 +1.8125,1.81,a-pcom-i3,2016-17,West Boylston - West Boylston Junior/Senior High,3220505,0.4,1.1,2.5,94.2,0,0,1.8,68.6,31.4,53 +1,1,a-pcom-i3,2016-17,West Bridgewater - Howard School,3230305,0,0,0,100,0,0,0,91.6,8.4,29.5 +1,1,a-pcom-i3,2016-17,West Bridgewater - Rose L Macdonald,3230003,0,0,0,100,0,0,0,90.4,9.6,30.7 +1,1,a-pcom-i3,2016-17,West Bridgewater - Spring Street School,3230005,2.3,0,0,97.7,0,0,0,98.6,1.4,22.1 +1,1,a-pcom-i3,2016-17,West Bridgewater - West Bridgewater Junior/Senior,3230505,0,0,0,98.4,0,0,1.6,70.8,29.2,64.3 +1,1,a-pcom-i3,2016-17,West Springfield - 21st Century Skills Academy,3320515,0,0,0,100,0,0,0,58.8,41.2,4.9 +1.78125,1.78,a-pcom-i3,2016-17,West Springfield - Cowing Early Childhood,3320001,0,1.9,0,94.3,3.8,0,0,93.7,6.3,26.3 +1,1,a-pcom-i3,2016-17,West Springfield - John Ashley,3320005,0,0,0,100,0,0,0,96.9,3.1,38 +1.5,1.5,a-pcom-i3,2016-17,West Springfield - John R Fausey,3320010,0,0,3.2,95.2,0,0,1.6,90.5,9.5,62.7 +1.0625,1.06,a-pcom-i3,2016-17,West Springfield - Memorial,3320025,0,0,0,96.6,0,0,3.4,93.2,6.8,29.7 +1.28125,1.28,a-pcom-i3,2016-17,West Springfield - Mittineague,3320030,0,0,4.1,95.9,0,0,0,89.5,10.5,24.2 +1,1,a-pcom-i3,2016-17,West Springfield - Philip G Coburn,3320007,1.3,0,0,98.7,0,0,0,89.2,10.8,80 +1,1,a-pcom-i3,2016-17,West Springfield - Tatham,3320040,0,0,0,100,0,0,0,92.6,7.4,25.6 +2.3125,2.31,a-pcom-i3,2016-17,West Springfield - West Springfield High,3320505,2,0.7,4.7,92.6,0,0,0,67.9,32.1,149.4 +1.71875,1.72,a-pcom-i3,2016-17,West Springfield - West Springfield Middle,3320305,1.6,0,2.3,94.5,0,0,1.6,75.4,24.6,128.2 +1,1,a-pcom-i3,2016-17,Westborough - Annie E Fales,3210010,0,0,0,100,0,0,0,98.2,1.8,56 +1,1,a-pcom-i3,2016-17,Westborough - Elsie A Hastings Elementary,3210025,1.3,1.2,0,97.5,0,0,0,98,2,76.6 +1,1,a-pcom-i3,2016-17,Westborough - J Harding Armstrong,3210005,0,1.8,0,98.2,0,0,0,96.4,3.6,55.8 +1,1,a-pcom-i3,2016-17,Westborough - Mill Pond School,3210045,0,1,1,97.3,0,0,0.8,88.6,11.4,105.2 +1,1,a-pcom-i3,2016-17,Westborough - Sarah W Gibbons Middle,3210305,0,1.4,0,98.6,0,0,0,77.4,22.6,82.3 +1.25,1.25,a-pcom-i3,2016-17,Westborough - Westborough High,3210505,0,2.4,0,96,0.8,0.8,0,71.3,28.7,120.6 +1.0625,1.06,a-pcom-i3,2016-17,Westfield - Abner Gibbs,3250020,0,0,3.4,96.6,0,0,0,94.4,5.6,29.8 +3.96875,3.97,a-pcom-i3,2016-17,Westfield - Fort Meadow Early Childhood Center,3250003,0,7.6,5.1,87.3,0,0,0,100,0,39.3 +1,1,a-pcom-i3,2016-17,Westfield - Franklin Ave,3250015,0,0,0,97,0,0,3,96.5,3.5,33.2 +3.375,3.37,a-pcom-i3,2016-17,Westfield - Highland,3250025,0,4.6,4.6,89.2,1.5,0,0,89.3,10.7,64.9 +1.9375,1.94,a-pcom-i3,2016-17,Westfield - Munger Hill,3250033,1.5,0,3.1,93.8,0,0,1.5,95.1,4.9,64.8 +1,1,a-pcom-i3,2016-17,Westfield - North Middle School,3250305,0,0,0,100,0,0,0,83.5,16.5,90.9 +1,1,a-pcom-i3,2016-17,Westfield - Paper Mill,3250036,0,0,3.2,96.8,0,0,0,97.3,2.7,62.4 +1.0625,1.06,a-pcom-i3,2016-17,Westfield - Russell Elementary School,3250055,0,0,0,96.6,0,0,3.4,94.4,5.6,29.8 +1,1,a-pcom-i3,2016-17,Westfield - South Middle School,3250310,0,0,1.2,97.5,1.2,0,0,77.8,22.2,81.4 +1,1,a-pcom-i3,2016-17,Westfield - Southampton Road,3250040,0,0,3.2,96.8,0,0,0,94.9,5.1,62.2 +1.15625,1.16,a-pcom-i3,2016-17,Westfield - Westfield High,3250505,0.7,2,0.7,96.3,0.3,0,0,75.2,24.8,148.9 +1,1,a-pcom-i3,2016-17,Westfield - Westfield Technical Academy,3250605,1.2,0,0,98.3,0.5,0,0,54.1,45.9,82.9 +1,1,a-pcom-i3,2016-17,Westford - Abbot Elementary,3260004,0,0,0,100,0,0,0,94.9,5.1,46.7 +1,1,a-pcom-i3,2016-17,Westford - Blanchard Middle,3260310,0,1.4,0,98.6,0,0,0,88.7,11.3,69.5 +1,1,a-pcom-i3,2016-17,Westford - Col John Robinson,3260025,0,0,0,100,0,0,0,97.4,2.6,38.1 +1,1,a-pcom-i3,2016-17,Westford - Day Elementary,3260007,0,0,0,100,0,0,0,88.9,11.1,49 +1,1,a-pcom-i3,2016-17,Westford - John A. Crisafulli Elementary School,3260045,0,0,2.1,97.9,0,0,0,96.5,3.5,47.9 +1,1,a-pcom-i3,2016-17,Westford - Millennium Elementary,3260013,0,3.1,0,96.9,0,0,0,96.1,3.9,25.6 +1,1,a-pcom-i3,2016-17,Westford - Nabnasset,3260015,0,1.1,0,98.9,0,0,0,97,3,49.3 +1.75,1.75,a-pcom-i3,2016-17,Westford - Rita E. Miller Elementary School,3260055,0,5.6,0,94.4,0,0,0,97.3,2.7,54.6 +1,1,a-pcom-i3,2016-17,Westford - Stony Brook School,3260330,0,0,1.3,98.7,0,0,0,83.6,16.4,75.6 +1,1,a-pcom-i3,2016-17,Westford - Westford Academy,3260505,0,1.9,0,98.1,0,0,0,61.2,38.8,159.2 +1,1,a-pcom-i3,2016-17,Westhampton - Westhampton Elementary School,3270005,0,0,0,100,0,0,0,90.4,9.6,24.9 +3.0625,3.06,a-pcom-i3,2016-17,Weston - Country,3300010,3.3,0,6.4,90.2,0,0,0,85.7,14.3,53.3 +2.53125,2.53,a-pcom-i3,2016-17,Weston - Field Elementary School,3300012,2.2,6,0,91.9,0,0,0,87.5,12.5,46.4 +4.9375,4.94,a-pcom-i3,2016-17,Weston - Weston High,3300505,3.9,6.5,3.5,84.2,0,0.8,1.1,64.6,35.4,112.8 +3.78125,3.78,a-pcom-i3,2016-17,Weston - Weston Middle,3300305,7.1,2.7,1.1,87.9,0,0,1.2,73.9,26.1,81.8 +3.03125,3.03,a-pcom-i3,2016-17,Weston - Woodland,3300015,1.6,0,6.8,90.3,1.3,0,0,94.4,5.6,48.4 +1,1,a-pcom-i3,2016-17,Westport - Alice A Macomber,3310015,0,0,0,100,0,0,0,100,0,45.9 +1,1,a-pcom-i3,2016-17,Westport - Westport Elementary,3310030,0,0,0,100,0,0,0,89.3,10.7,69.4 +1,1,a-pcom-i3,2016-17,Westport - Westport Junior/Senior High School,3310515,0,0,0,100,0,0,0,67.6,32.4,65.6 +1,1,a-pcom-i3,2016-17,Westwood - Deerfield School,3350010,0,3,0,97,0,0,0,92.4,7.6,41.4 +1,1,a-pcom-i3,2016-17,Westwood - Downey,3350012,0,0.6,0,99.4,0,0,0,95.4,4.6,46 +1.625,1.63,a-pcom-i3,2016-17,Westwood - E W Thurston Middle,3350305,2.1,1,2.1,94.8,0,0,0,71.5,28.5,96.4 +1,1,a-pcom-i3,2016-17,Westwood - Martha Jones,3350017,0,0,0,100,0,0,0,87.6,12.4,32 +1,1,a-pcom-i3,2016-17,Westwood - Paul Hanlon,3350015,0,0.8,0,99.2,0,0,0,93.6,6.4,29.5 +1.46875,1.47,a-pcom-i3,2016-17,Westwood - Westwood High,3350505,0.8,1.6,1.5,95.3,0,0,0.8,66,34,126 +1,1,a-pcom-i3,2016-17,Westwood - Westwood Integrated Preschool,3350050,0,0,0,100,0,0,0,97.3,2.7,18.7 +1,1,a-pcom-i3,2016-17,Westwood - William E Sheehan,3350025,0,1.7,0,98.3,0,0,0,91.9,8.1,43.2 +1,1,a-pcom-i3,2016-17,Weymouth - Abigail Adams Middle School,3360310,0,1.9,0,98.1,0,0,0,76.9,23.1,104.5 +1,1,a-pcom-i3,2016-17,Weymouth - Academy Avenue,3360005,0,0,0,100,0,0,0,93,7,34.3 +1,1,a-pcom-i3,2016-17,Weymouth - Frederick C Murphy,3360050,0,0,0,100,0,0,0,95.5,4.5,33.3 +1,1,a-pcom-i3,2016-17,Weymouth - Johnson Early Childhood Center,3360003,0,2.4,0,97.6,0,0,0,97.8,2.2,41.3 +1,1,a-pcom-i3,2016-17,Weymouth - Lawrence W Pingree,3360065,0,0,0,100,0,0,0,95.8,4.2,34.4 +1,1,a-pcom-i3,2016-17,Weymouth - Maria Weston Chapman Middle School,3360020,0,0,0,98.4,0.8,0,0.8,66.7,33.3,121.2 +1,1,a-pcom-i3,2016-17,Weymouth - Ralph Talbot,3360085,0,0,0,100,0,0,0,95.2,4.8,27.3 +1,1,a-pcom-i3,2016-17,Weymouth - Thomas V Nash,3360060,0,0,0,100,0,0,0,90.9,9.1,24.9 +1,1,a-pcom-i3,2016-17,Weymouth - Thomas W. Hamilton Primary School,3360105,0,0,0,100,0,0,0,93.6,6.4,38.6 +1,1,a-pcom-i3,2016-17,Weymouth - Wessagusset,3360110,0,0,0,100,0,0,0,97.3,2.7,37.6 +1,1,a-pcom-i3,2016-17,Weymouth - Weymouth High School,3360505,0,0.5,0,99,0,0,0.5,64.7,35.3,208.7 +1,1,a-pcom-i3,2016-17,Weymouth - William Seach,3360080,0,0,0,100,0,0,0,99.5,0.5,39.6 +1,1,a-pcom-i3,2016-17,Whately - Whately Elementary,3370005,0,0,0,100,0,0,0,95.4,4.6,30.2 +1.3125,1.31,a-pcom-i3,2016-17,Whitman-Hanson - Hanson Middle School,7800315,2.1,2.1,0,95.8,0,0,0,79,21,47.8 +1,1,a-pcom-i3,2016-17,Whitman-Hanson - Indian Head,7800035,0,0,0,100,0,0,0,92.1,7.9,44.8 +1,1,a-pcom-i3,2016-17,Whitman-Hanson - John H Duval,7800030,0,0,2.2,97.8,0,0,0,90.2,9.8,45.1 +1,1,a-pcom-i3,2016-17,Whitman-Hanson - Louise A Conley,7800010,1.7,0,0,98.3,0,0,0,83.9,16.1,52 +1,1,a-pcom-i3,2016-17,Whitman-Hanson - Maquan Elementary,7800025,0,0,0,98.4,0,0,1.6,97,3,53.3 +1,1,a-pcom-i3,2016-17,Whitman-Hanson - Whitman Hanson Regional,7800505,1.9,0,0,98.1,0,0,0,67.1,32.9,107.7 +1,1,a-pcom-i3,2016-17,Whitman-Hanson - Whitman Middle,7800310,0,0,0,100,0,0,0,73.9,26.1,53.2 +1,1,a-pcom-i3,2016-17,Whittier Regional Vocational Technical - Whittier Regional Vocational,8850605,0,0,0.7,98.7,0,0,0.6,48.7,51.3,142.4 +1,1,a-pcom-i3,2016-17,Williamsburg - Anne T. Dunphy School,3400020,0,0,0,100,0,0,0,90.9,9.1,26.3 +1.09375,1.09,a-pcom-i3,2016-17,Williamstown - Williamstown Elementary,3410010,0,2.1,0,96.5,0,0,1.5,95.6,4.4,67.7 +1,1,a-pcom-i3,2016-17,Wilmington - Boutwell,3420005,0,0,1.3,98.7,0,0,0,96.4,3.6,31.1 +1,1,a-pcom-i3,2016-17,Wilmington - North Intermediate,3420060,2.3,0,0,97.7,0,0,0,97.3,2.7,27.4 +1,1,a-pcom-i3,2016-17,Wilmington - Shawsheen Elementary,3420025,0,0,2.2,97.8,0,0,0,93.2,6.8,45.9 +1,1,a-pcom-i3,2016-17,Wilmington - West Intermediate,3420080,0,0,0,100,0,0,0,93.9,6.1,34.9 +1.6875,1.69,a-pcom-i3,2016-17,Wilmington - Wildwood,3420015,1.2,0,1.2,94.6,0,0,3,95.5,4.5,33.1 +1.75,1.75,a-pcom-i3,2016-17,Wilmington - Wilmington High,3420505,0,1.9,1.9,94.4,0.9,0,0.9,72.2,27.8,106.3 +1,1,a-pcom-i3,2016-17,Wilmington - Wilmington Middle School,3420330,0,0.9,0,99.1,0,0,0,81.4,18.6,108.3 +1,1,a-pcom-i3,2016-17,Wilmington - Woburn Street,3420020,0,0,0,100,0,0,0,86.8,13.2,46.5 +1,1,a-pcom-i3,2016-17,Winchendon - Memorial,3430040,0,0,0,100,0,0,0,94.1,5.9,42.3 +1,1,a-pcom-i3,2016-17,Winchendon - Murdock Academy for Success,3430405,0,0,0,100,0,0,0,40.4,59.6,3.3 +2.25,2.25,a-pcom-i3,2016-17,Winchendon - Murdock High School,3430515,4.8,0,2.4,92.8,0,0,0,73.7,26.3,41.7 +1,1,a-pcom-i3,2016-17,Winchendon - Murdock Middle School,3430315,0,0,0,100,0,0,0,78.2,21.8,34 +1,1,a-pcom-i3,2016-17,Winchendon - Toy Town Elementary,3430050,0,0,0,100,0,0,0,88.5,11.5,30.5 +2.5625,2.56,a-pcom-i3,2016-17,Winchendon - Winchendon PreSchool Program,3430010,8.2,0,0,91.8,0,0,0,100,0,12.2 +1.75,1.75,a-pcom-i3,2016-17,Winchester - Ambrose Elementary,3440045,1.9,0,1.9,94.4,0,0,1.8,99.6,0.4,53.1 +1,1,a-pcom-i3,2016-17,Winchester - Lincoln Elementary,3440005,0,0,0,100,0,0,0,95,5,47.9 +1,1,a-pcom-i3,2016-17,Winchester - Lynch Elementary,3440020,0,1.2,0,98.8,0,0,0,92,8,81.7 +1.5,1.5,a-pcom-i3,2016-17,Winchester - McCall Middle,3440305,1.6,0.8,2.4,95.2,0,0,0,78.7,21.3,125.1 +1,1,a-pcom-i3,2016-17,Winchester - Muraco Elementary,3440040,0,0,0,100,0,0,0,90.1,9.9,50.4 +1,1,a-pcom-i3,2016-17,Winchester - Vinson-Owen Elementary,3440025,0,0,0,98,0,0,2,96,4,50 +1,1,a-pcom-i3,2016-17,Winchester - Winchester High School,3440505,0,0,0.7,99.3,0,0,0,67,33,133.8 +1,1,a-pcom-i3,2016-17,Winthrop - Arthur T. Cummings Elementary School,3460020,0,1.8,0,98.2,0,0,0,89.2,10.8,55.2 +1,1,a-pcom-i3,2016-17,Winthrop - William P. Gorman/Fort Banks Elementary,3460015,0,1.2,0,98.8,0,0,0,92.7,7.3,82.4 +1,1,a-pcom-i3,2016-17,Winthrop - Winthrop High School,3460505,0,0,0,100,0,0,0,61.5,38.5,65.1 +1,1,a-pcom-i3,2016-17,Winthrop - Winthrop Middle School,3460305,0,0,0,100,0,0,0,68.1,31.9,37.8 +1,1,a-pcom-i3,2016-17,Woburn - Clyde Reeves,3470040,0,0,1.6,98.4,0,0,0,95.4,4.6,62.2 +1,1,a-pcom-i3,2016-17,Woburn - Daniel L Joyce Middle School,3470410,0,1.2,1.2,97.5,0,0,0,78.9,21.1,80.5 +1,1,a-pcom-i3,2016-17,Woburn - Daniel P Hurld,3470020,0,0,0,100,0,0,0,99.2,0.8,25.4 +1,1,a-pcom-i3,2016-17,Woburn - Goodyear Elementary School,3470005,0,0,0,100,0,0,0,91,9,46.4 +1,1,a-pcom-i3,2016-17,Woburn - John F Kennedy Middle School,3470405,0,0,1.5,98.5,0,0,0,74.9,25.1,67.7 +1,1,a-pcom-i3,2016-17,Woburn - Linscott-Rumford,3470025,0,0,0,100,0,0,0,92.1,7.9,23.8 +1,1,a-pcom-i3,2016-17,Woburn - Malcolm White,3470055,0,0,0,100,0,0,0,99.4,0.6,33.2 +1,1,a-pcom-i3,2016-17,Woburn - Mary D Altavesta,3470065,2.8,0,0,97.2,0,0,0,94.7,5.3,35.1 +1,1,a-pcom-i3,2016-17,Woburn - Shamrock,3470043,0,0,1.4,98.6,0,0,0,96.7,3.3,69.9 +1,1,a-pcom-i3,2016-17,Woburn - Woburn High,3470505,0.7,0.1,1.4,97.8,0,0,0,62.3,37.7,146.2 +1,1,a-pcom-i3,2016-17,Woburn - Wyman,3470060,0,0,0,100,0,0,0,99.2,0.8,23.6 +2.53125,2.53,a-pcom-i3,2016-17,Worcester - Belmont Street Community,3480020,0.9,1.8,5.4,91.9,0,0,0,93.2,6.8,55.2 +3.09375,3.09,a-pcom-i3,2016-17,Worcester - Burncoat Middle School,3480405,2.8,1.4,5.7,90.1,0,0,0,69.8,30.2,71.9 +3.1875,3.19,a-pcom-i3,2016-17,Worcester - Burncoat Senior High,3480503,2.5,0,7.6,89.8,0,0,0,61.5,38.5,118 +3.34375,3.34,a-pcom-i3,2016-17,Worcester - Burncoat Street,3480035,0,0,8,89.3,0,2.7,0,95.9,4.1,37.4 +3.9375,3.94,a-pcom-i3,2016-17,Worcester - Canterbury,3480045,2.3,2.3,8,87.4,0,0,0,94.3,5.7,43.7 +5.21875,5,a-pcom-i3,2016-17,Worcester - Chandler Elementary Community,3480050,2.4,1,13.2,83.3,0,0,0,91.4,8.6,49.1 +11.09375,5,a-pcom-i3,2016-17,Worcester - Chandler Magnet,3480052,0,1.2,33.1,64.5,0,1.2,0,88,12,81.6 +3.3125,3.31,a-pcom-i3,2016-17,Worcester - City View,3480053,1.8,1.8,7,89.4,0,0,0,88.7,11.3,56.8 +5.84375,5,a-pcom-i3,2016-17,Worcester - Claremont Academy,3480350,5.6,1.9,11.2,81.3,0,0,0,56.4,43.6,53.3 +2.71875,2.72,a-pcom-i3,2016-17,Worcester - Clark St Community,3480055,2.7,0,6,91.3,0,0,0,88.5,11.5,36.6 +2.4375,2.44,a-pcom-i3,2016-17,Worcester - Columbus Park,3480060,3.9,0,3.9,92.2,0,0,0,89.2,10.8,51.6 +3.34375,3.34,a-pcom-i3,2016-17,Worcester - Doherty Memorial High,3480512,3.2,0.4,7.1,89.3,0,0,0,58.6,41.4,126.5 +9.59375,5,a-pcom-i3,2016-17,Worcester - Elm Park Community,3480095,14.6,0,14.6,69.3,0,1.6,0,87.6,12.4,61.8 +1,1,a-pcom-i3,2016-17,Worcester - Flagg Street,3480090,0,0,0.6,99.4,0,0,0,91.7,8.3,35.7 +4.125,4.13,a-pcom-i3,2016-17,Worcester - Forest Grove Middle,3480415,5.8,1,6.4,86.8,0,0,0,69.5,30.5,98.6 +3.65625,3.66,a-pcom-i3,2016-17,Worcester - Francis J McGrath Elementary,3480177,0,5,6.7,88.3,0,0,0,81.9,18.1,29.9 +3.84375,3.84,a-pcom-i3,2016-17,Worcester - Gates Lane,3480110,4.4,2.6,5.3,87.7,0,0,0,91.5,8.5,114.2 +6.875,5,a-pcom-i3,2016-17,Worcester - Goddard School/Science Technical,3480100,4.7,1.6,15.7,78,0,0,0,90.6,9.4,63.5 +2.71875,2.72,a-pcom-i3,2016-17,Worcester - Grafton Street,3480115,2.5,2.5,3.7,91.3,0,0,0,91.4,8.6,40.1 +29.3125,5,a-pcom-i3,2016-17,Worcester - Head Start,3480002,0,0,3.1,6.2,0,0,90.6,96.9,3.1,44.8 +3.5,3.5,a-pcom-i3,2016-17,Worcester - Heard Street,3480136,3.7,0,3.7,88.8,0,3.7,0,90.6,9.4,26.7 +2.96875,2.97,a-pcom-i3,2016-17,Worcester - Jacob Hiatt Magnet,3480140,2.4,4.7,2.4,90.5,0,0,0,90.7,9.3,42.2 +2.125,2.12,a-pcom-i3,2016-17,Worcester - Lake View,3480145,3.4,0,3.4,93.2,0,0,0,87.6,12.4,29.5 +5,5,a-pcom-i3,2016-17,Worcester - Lincoln Street,3480160,3.1,3.1,9.9,84,0,0,0,91.6,8.4,32.4 +2.96875,2.97,a-pcom-i3,2016-17,Worcester - May Street,3480175,3.2,3.2,3.2,90.5,0,0,0,89.4,10.6,31.7 +3.3125,3.31,a-pcom-i3,2016-17,Worcester - Midland Street,3480185,0,3.5,7.1,89.4,0,0,0,98.5,1.5,28.3 +1.625,1.63,a-pcom-i3,2016-17,Worcester - Nelson Place,3480200,2.6,0,2.6,94.8,0,0,0,96,4,76.6 +5.5,5,a-pcom-i3,2016-17,Worcester - Norrback Avenue,3480202,5.8,0,10.6,82.4,0,1.2,0,95.8,4.2,86.5 +8.34375,5,a-pcom-i3,2016-17,Worcester - North High,3480515,11.9,1.7,13.1,73.3,0,0,0,56.6,43.4,138.2 +5.90625,5,a-pcom-i3,2016-17,Worcester - Quinsigamond,3480210,2.5,6.3,10.1,81.1,0,0,0,90,10,79.3 +4.125,4.13,a-pcom-i3,2016-17,Worcester - Rice Square,3480215,1.2,2.4,9.6,86.8,0,0,0,92.8,7.2,41.6 +4.21875,4.22,a-pcom-i3,2016-17,Worcester - Roosevelt,3480220,3.7,0,9.8,86.5,0,0,0,96.8,3.2,80.3 +5.65625,5,a-pcom-i3,2016-17,Worcester - South High Community,3480520,7.8,0.7,9,81.9,0,0.7,0,77.9,22.1,143.1 +8.375,5,a-pcom-i3,2016-17,Worcester - Sullivan Middle,3480423,7,0.5,19.3,73.2,0,0,0,73.4,26.6,106.7 +2.4375,2.44,a-pcom-i3,2016-17,Worcester - Tatnuck,3480230,2.6,0,5.2,92.2,0,0,0,90.4,9.6,38.4 +1,1,a-pcom-i3,2016-17,Worcester - Thorndyke Road,3480235,0,0,3.1,96.9,0,0,0,92.8,7.2,32.4 +4.40625,4.41,a-pcom-i3,2016-17,Worcester - Union Hill School,3480240,5.7,0,8.5,85.9,0,0,0,80.2,19.8,53.1 +2.5625,2.56,a-pcom-i3,2016-17,Worcester - University Pk Campus School,3480285,4.3,0,3.9,91.8,0,0,0,68,32,25.5 +2.34375,2.34,a-pcom-i3,2016-17,Worcester - Vernon Hill School,3480280,1.8,1.8,3.9,92.5,0,0,0,90.7,9.3,56.2 +1,1,a-pcom-i3,2016-17,Worcester - Wawecus Road School,3480026,0,0,0,100,0,0,0,94.4,5.6,27.4 +2.6875,2.69,a-pcom-i3,2016-17,Worcester - West Tatnuck,3480260,2.5,0,6.2,91.4,0,0,0,91.1,8.9,40.5 +4.59375,4.59,a-pcom-i3,2016-17,Worcester - Woodland Academy,3480030,1.7,0,13,85.3,0,0,0,93.1,6.9,57.7 +1.625,1.63,a-pcom-i3,2016-17,Worcester - Worcester Arts Magnet School,3480225,2.6,0,2.6,94.8,0,0,0,94.6,5.4,38.8 +9.125,5,a-pcom-i3,2016-17,Worcester - Worcester East Middle,3480420,13.7,3.9,11.6,70.8,0,0,0,60.8,39.2,76.4 +1.6875,1.69,a-pcom-i3,2016-17,Worcester - Worcester Technical High,3480605,0.8,1.2,3.4,94.6,0,0,0,47.9,52.1,172.9 +1,1,a-pcom-i3,2016-17,Worthington - R. H. Conwell,3490010,0,0,0,100,0,0,0,89.5,10.5,11.4 +1,1,a-pcom-i3,2016-17,Wrentham - Charles E Roderick,3500010,0,0,0,98.2,1.8,0,0,96.6,3.4,55.3 +1.03125,1.03,a-pcom-i3,2016-17,Wrentham - Delaney,3500003,0,3.3,0,96.7,0,0,0,96.3,3.7,82.8 diff --git a/spec/models/academic_year_spec.rb b/spec/models/academic_year_spec.rb new file mode 100644 index 00000000..73696aa2 --- /dev/null +++ b/spec/models/academic_year_spec.rb @@ -0,0 +1,116 @@ +require "rails_helper" + +RSpec.describe AcademicYear, type: :model do + describe ".find_by_date" do + context "when an academic year is not split into seasons" do + before do + create(:academic_year, range: "2022-23") + create(:academic_year, range: "2023-24") + create(:academic_year, range: "2024-25") + end + + it "parses 2022-23 as the range" do + ranges = AcademicYear.by_range.keys + date = Date.parse("2022-12-12") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2022-23" + end + end + + context "when an academic year is split into seasons" do + before do + create(:academic_year, range: "2021-22 Fall") + create(:academic_year, range: "2021-22 Spring") + create(:academic_year, range: "2022-23") + create(:academic_year, range: "2023-24 Fall") + create(:academic_year, range: "2023-24 Spring") + create(:academic_year, range: "2024-25") + end + + context "and the range falls on an academic year without seasons" do + it "returns a range without the season added" do + ranges = AcademicYear.by_range.keys + + # Start of 2022-23 + date = Date.parse("2022-7-1") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2022-23" + + # End of 2022-23 + date = Date.parse("2023-6-30") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2022-23" + + # Start of 2024-25 + date = Date.parse("2024-7-1") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2024-25" + + # End of 2024-25 + date = Date.parse("2025-6-30") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2024-25" + end + end + context "and the range falls within an academic year with seasons" do + it "returns a range with the season added using the cutoff date of the last Sunday in February" do + ranges = AcademicYear.by_range.keys + + # Start of Fall 2023-24 + date = Date.parse("2023-7-1") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Fall" + + # End of Fall 2023-24 + date = Date.parse("2024-2-24") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Fall" + + # Start of Spring 2023-24 + date = Date.parse("2024-2-25") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Spring" + + # End of Spring 2023-24 + date = Date.parse("2024-6-30") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2023-24 Spring" + + # Start of Fall 2021-22 + date = Date.parse("2021-7-1") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Fall" + + # End of Fall 2021-22 + date = Date.parse("2022-2-26") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Fall" + + # Start of Spring 2021-22 + date = Date.parse("2022-2-27") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Spring" + + # End of Spring 2021-22 + date = Date.parse("2022-6-30") + expect(AcademicYear.range_from_date(date, ranges)).to eq "2021-22 Spring" + end + end + end + end + + describe ".range_without_season" do + context "when the range doesn't have a season " do + before do + create(:academic_year, range: "2022-23") + create(:academic_year, range: "2023-24") + create(:academic_year, range: "2024-25") + end + + it "parses 2022-23 as the range" do + ay = AcademicYear.find_by_range "2022-23" + expect(ay.range_without_season).to eq "2022-23" + end + end + + context "when an academic year is split into seasons" do + before do + create(:academic_year, range: "2023-24 Fall") + create(:academic_year, range: "2023-24 Spring") + end + + it "removes the season from the range" do + ay = AcademicYear.find_by_range "2023-24 Fall" + expect(ay.range_without_season).to eq "2023-24" + end + end + end +end diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index bbe56400..95b0f8fd 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -73,7 +73,6 @@ RSpec.configure do |config| end config.after(:each) do |example| - AcademicYear.reset_academic_years DatabaseCleaner.clean unless example.metadata[:skip_db_cleaner] end end diff --git a/spec/services/cleaner_spec.rb b/spec/services/cleaner_spec.rb index 144d22b7..4c427c3b 100644 --- a/spec/services/cleaner_spec.rb +++ b/spec/services/cleaner_spec.rb @@ -153,7 +153,7 @@ RSpec.describe Cleaner do survey_items = SurveyItem.where(survey_item_id: standard_survey_items) data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: standard_survey_items, survey_items:, - schools: School.school_by_dese_id)] + schools: School.by_dese_id)] filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename( headers: standard_survey_items, data:, filepath: nil ) @@ -165,7 +165,7 @@ RSpec.describe Cleaner do survey_items = SurveyItem.where(survey_item_id: short_form_survey_items) data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: short_form_survey_items, survey_items:, - schools: School.school_by_dese_id)] + schools: School.by_dese_id)] filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename( headers: short_form_survey_items, data:, filepath: nil ) @@ -178,7 +178,7 @@ RSpec.describe Cleaner do survey_items = SurveyItem.where(survey_item_id: early_education_survey_items) data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: early_education_survey_items, survey_items:, - schools: School.school_by_dese_id)] + schools: School.by_dese_id)] filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename( headers: early_education_survey_items, data:, filepath: nil ) @@ -190,7 +190,7 @@ RSpec.describe Cleaner do survey_items = SurveyItem.where(survey_item_id: teacher_survey_items) data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: teacher_survey_items, survey_items:, - schools: School.school_by_dese_id)] + schools: School.by_dese_id)] filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename( headers: teacher_survey_items, data:, filepath: nil ) @@ -202,9 +202,9 @@ RSpec.describe Cleaner do it "adds all districts to the filename" do survey_items = SurveyItem.where(survey_item_id: teacher_survey_items) - data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: teacher_survey_items, survey_items:, schools: School.school_by_dese_id), + data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: teacher_survey_items, survey_items:, schools: School.by_dese_id), SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "222_222" }, - headers: teacher_survey_items, survey_items:, schools: School.school_by_dese_id)] + headers: teacher_survey_items, survey_items:, schools: School.by_dese_id)] filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename( headers: teacher_survey_items, data:, filepath: nil ) @@ -217,7 +217,7 @@ RSpec.describe Cleaner do survey_items = SurveyItem.where(survey_item_id: early_education_survey_items) data = [SurveyItemValues.new(row: { "Recorded Date" => recorded_date, "Dese ID" => "1_740_505" }, headers: early_education_survey_items, survey_items:, - schools: School.school_by_dese_id)] + schools: School.by_dese_id)] filename = Cleaner.new(input_filepath:, output_filepath:, log_filepath:).filename( headers: early_education_survey_items, data:, filepath: "/data/survey_responses/maynard early ed_ part a.2022-23.csv" ) diff --git a/spec/services/dese/loader_spec.rb b/spec/services/dese/loader_spec.rb index 08ff44f6..d20adb52 100644 --- a/spec/services/dese/loader_spec.rb +++ b/spec/services/dese/loader_spec.rb @@ -2,6 +2,8 @@ require "rails_helper" RSpec.describe Dese::Loader do let(:path_to_admin_data) { Rails.root.join("spec", "fixtures", "sample_four_d_data.csv") } + let(:ay_2023_24_fall) { create(:academic_year, range: "2023-24 Fall") } + let(:ay_2023_24_spring) { create(:academic_year, range: "2023-24 Spring") } let(:ay_2022_23) { create(:academic_year, range: "2022-23") } let(:ay_2021_22) { create(:academic_year, range: "2021-22") } let(:ay_2020_21) { create(:academic_year, range: "2020-21") } @@ -17,6 +19,8 @@ RSpec.describe Dese::Loader do let(:next_wave) { create(:school, dese_id: 2_740_510) } before :each do + ay_2023_24_fall + ay_2023_24_spring ay_2022_23 ay_2021_22 ay_2020_21 @@ -32,9 +36,6 @@ RSpec.describe Dese::Loader do next_wave end - after :each do - # DatabaseCleaner.clean - end context "when running the loader" do before :each do Dese::Loader.load_data filepath: path_to_admin_data @@ -53,8 +54,30 @@ RSpec.describe Dese::Loader do academic_year: ay_2020_21).likert_score).to eq 4.8 end + it "loads admin data for years that are split into seasons" do + academic_year = ay_2023_24_fall + expect(AdminDataValue.find_by(school: winchester, admin_data_item: four_d, + academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: attleboro, admin_data_item: four_d, + academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: milford, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: seacoast, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: next_wave, admin_data_item: four_d, + academic_year:).likert_score).to eq 4.44 + + academic_year = ay_2023_24_spring + expect(AdminDataValue.find_by(school: winchester, admin_data_item: four_d, + academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: attleboro, admin_data_item: four_d, + academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: milford, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: seacoast, admin_data_item: four_d, academic_year:).likert_score).to eq 4.44 + expect(AdminDataValue.find_by(school: next_wave, admin_data_item: four_d, + academic_year:).likert_score).to eq 4.44 + end + it "loads the correct number of items" do - expect(AdminDataValue.count).to eq 23 + expect(AdminDataValue.count).to eq 33 end it "cap maximum likert score to 5" do @@ -77,7 +100,7 @@ RSpec.describe Dese::Loader do it "is idempotent" do Dese::Loader.load_data filepath: path_to_admin_data - expect(AdminDataValue.count).to eq 23 + expect(AdminDataValue.count).to eq 33 end end end diff --git a/spec/services/enrollment_loader_spec.rb b/spec/services/enrollment_loader_spec.rb index b14aa23a..ad13484f 100644 --- a/spec/services/enrollment_loader_spec.rb +++ b/spec/services/enrollment_loader_spec.rb @@ -2,23 +2,27 @@ require "rails_helper" describe EnrollmentLoader do let(:path_to_enrollment_data) { Rails.root.join("spec", "fixtures", "sample_enrollment_data.csv") } + let(:ay_2021_22) { create(:academic_year, range: "2021-22") } let(:ay_2022_23) { create(:academic_year, range: "2022-23") } + let(:ay_2023_24) { create(:academic_year, range: "2023-24") } + let(:ay_2024_25_fall) { create(:academic_year, range: "2024-25 Fall") } + let(:ay_2024_25_spring) { create(:academic_year, range: "2024-25 Spring") } let(:attleboro) { create(:school, name: "Attleboro", dese_id: 160_505) } let(:beachmont) { create(:school, name: "Beachmont", dese_id: 2_480_013) } let(:winchester) { create(:school, name: "Winchester", dese_id: 3_440_505) } before :each do + ay_2021_22 ay_2022_23 + ay_2023_24 + ay_2024_25_fall + ay_2024_25_spring attleboro beachmont winchester EnrollmentLoader.load_data filepath: path_to_enrollment_data end - after :each do - DatabaseCleaner.clean - end - context "self.load_data" do it "loads the correct enrollment numbers" do academic_year = ay_2022_23 @@ -35,6 +39,109 @@ describe EnrollmentLoader do expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339 expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352 expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383 + + academic_year = ay_2021_22 + expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 10 + expect(Respondent.find_by(school: attleboro, academic_year:).total_students).to eq 150 + # expect(Respondent.find_by(school: attleboro, academic_year:).total_students).to eq 1844 + + expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 10 + expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 10 + expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 10 + expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 150 + + expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 150 + end + + it "does not load numbers for years outside the file given" do + academic_year = ay_2023_24 + expect(Respondent.find_by(school: attleboro, academic_year:)).to eq nil + + expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil + expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil + expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil + expect(Respondent.find_by(school: beachmont, academic_year:)).to eq nil + + expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil + expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil + expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil + expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil + expect(Respondent.find_by(school: winchester, academic_year:)).to eq nil + end + end + + context "self.clone_previous_year_data" do + before do + EnrollmentLoader.clone_previous_year_data + end + + it "populates empty data with last known enrollment numbers" do + # "2023-24" + academic_year = ay_2023_24 + expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 506 + + expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 34 + expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 64 + expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 58 + expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 336 + + expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 361 + expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 331 + expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339 + expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352 + expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383 + + # "2024-25 Fall" + academic_year = ay_2024_25_fall + + expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 506 + + expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 34 + expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 64 + expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 58 + expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 336 + + expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 361 + expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 331 + expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339 + expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352 + expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383 + + # "2024-25 Spring" + academic_year = ay_2024_25_spring + + expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 506 + + expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 34 + expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 64 + expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 58 + expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 336 + + expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 361 + expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 331 + expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 339 + expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 352 + expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 1383 + + # Anything that already has numbers from the csv files stays the same + academic_year = ay_2021_22 + expect(Respondent.find_by(school: attleboro, academic_year:).nine).to eq 10 + expect(Respondent.find_by(school: attleboro, academic_year:).total_students).to eq 150 + + expect(Respondent.find_by(school: beachmont, academic_year:).pk).to eq 10 + expect(Respondent.find_by(school: beachmont, academic_year:).k).to eq 10 + expect(Respondent.find_by(school: beachmont, academic_year:).one).to eq 10 + expect(Respondent.find_by(school: beachmont, academic_year:).total_students).to eq 150 + + expect(Respondent.find_by(school: winchester, academic_year:).nine).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).ten).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).eleven).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).twelve).to eq 10 + expect(Respondent.find_by(school: winchester, academic_year:).total_students).to eq 150 end end end diff --git a/spec/services/staffing_loader_spec.rb b/spec/services/staffing_loader_spec.rb index 0e2f9b10..4eff0556 100644 --- a/spec/services/staffing_loader_spec.rb +++ b/spec/services/staffing_loader_spec.rb @@ -2,27 +2,30 @@ require "rails_helper" describe StaffingLoader do let(:path_to_staffing_data) { Rails.root.join("spec", "fixtures", "sample_staffing_data.csv") } - let(:ay_2022_23) { create(:academic_year, range: "2022-23") } + let(:ay_2020_21) { create(:academic_year, range: "2020-21") } let(:ay_2021_22) { create(:academic_year, range: "2021-22") } + let(:ay_2022_23) { create(:academic_year, range: "2022-23") } + let(:ay_2023_24_fall) { create(:academic_year, range: "2023-24 Fall") } + let(:ay_2023_24_spring) { create(:academic_year, range: "2023-24 Spring") } let(:attleboro) { create(:school, name: "Attleboro", dese_id: 160_505) } let(:beachmont) { create(:school, name: "Beachmont", dese_id: 2_480_013) } let(:winchester) { create(:school, name: "Winchester", dese_id: 3_440_505) } before :each do - ay_2022_23 + ay_2020_21 ay_2021_22 + ay_2022_23 + ay_2023_24_fall + ay_2023_24_spring attleboro beachmont winchester - StaffingLoader.load_data filepath: path_to_staffing_data - StaffingLoader.clone_previous_year_data - end - - after :each do - DatabaseCleaner.clean end context "self.load_data" do + before do + StaffingLoader.load_data filepath: path_to_staffing_data + end it "loads the correct staffing numbers" do academic_year = ay_2021_22 expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5 @@ -31,19 +34,44 @@ describe StaffingLoader do expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8 end + end + + context "self.clone_previous_year_data" do + before do + StaffingLoader.load_data filepath: path_to_staffing_data + StaffingLoader.clone_previous_year_data + end + + it "fills in empty staffing numbers with the previous years data" do + academic_year = ay_2022_23 + expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5 + + expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4 + + expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8 + + academic_year = ay_2023_24_fall + expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5 + + expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4 + + expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8 + + academic_year = ay_2023_24_spring + expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5 + + expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4 + + expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8 + + # Does not touch existing numbers - context "when the staffing data is missing a school" do - after :each do - DatabaseCleaner.clean - end - it "fills in empty staffing numbers with the previous years data" do - academic_year = ay_2022_23 - expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 197.5 + academic_year = ay_2020_21 + expect(Respondent.find_by(school: attleboro, academic_year:).total_teachers).to eq 100 - expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 56.4 + expect(Respondent.find_by(school: beachmont, academic_year:).total_teachers).to eq 100 - expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 149.8 - end + expect(Respondent.find_by(school: winchester, academic_year:).total_teachers).to eq 100 end end end diff --git a/spec/services/survey_item_values_spec.rb b/spec/services/survey_item_values_spec.rb index e5cf625f..1ddbd785 100644 --- a/spec/services/survey_item_values_spec.rb +++ b/spec/services/survey_item_values_spec.rb @@ -35,11 +35,12 @@ RSpec.describe SurveyItemValues, type: :model do let(:attleboro_respondents) do create(:respondent, school: attleboro, academic_year: ay_2022_23, nine: 40, ten: 40, eleven: 40, twelve: 40) end - let(:schools) { School.school_by_dese_id } + let(:schools) { School.by_dese_id } let(:recorded_date) { "2023-04-01T12:12:12" } let(:ay_2022_23) do create(:academic_year, range: "2022-23") end + let(:academic_years) { AcademicYear.all } let(:common_headers) do ["Recorded Date", "DeseID", "ResponseID", "Duration (in seconds)", "Gender", "Grade"] @@ -105,12 +106,12 @@ RSpec.describe SurveyItemValues, type: :model do context ".recorded_date" do it "returns the recorded date" do row = { "RecordedDate" => "2017-01-01T12:12:121" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.recorded_date).to eq Date.parse("2017-01-01T12:12:12") headers = ["Recorded Date"] row = { "Recorded Date" => "2017-01-02T12:12:122" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.recorded_date).to eq Date.parse("2017-01-02T12:12:12") end end @@ -120,11 +121,11 @@ RSpec.describe SurveyItemValues, type: :model do attleboro headers = ["DeseID"] row = { "DeseID" => "1234" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.school).to eq attleboro row = { "DeseID" => "1234" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.school).to eq attleboro end end @@ -132,7 +133,7 @@ RSpec.describe SurveyItemValues, type: :model do context ".grade" do it "returns the grade that maps to the grade provided" do row = { "Grade" => "1" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.grade).to eq 1 end end @@ -141,15 +142,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the gender is female" do it "returns the gender that maps to the gender provided" do row = { "Gender" => "1" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 1 row = { "Gender" => "Female" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 1 row = { "Gender" => "F" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 1 end end @@ -157,15 +158,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the gender is male" do it "returns the gender that maps to the gender provided" do row = { "Gender" => "2" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 2 row = { "Gender" => "Male" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 2 row = { "Gender" => "M" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 2 end end @@ -173,15 +174,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the gender is non-binary" do it "returns the gender that maps to the gender provided" do row = { "Gender" => "4" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 4 row = { "Gender" => "N - Non-Binary" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 4 row = { "Gender" => "N" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 4 end end @@ -189,27 +190,27 @@ RSpec.describe SurveyItemValues, type: :model do context "when the gender is not known" do it "returns the gender that maps to the gender provided" do row = { "Gender" => "N/A" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 99 row = { "Gender" => "NA" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 99 row = { "Gender" => "#N/A" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 99 row = { "Gender" => "#NA" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 99 row = { "Gender" => "Prefer not to disclose" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 99 row = { "Gender" => "" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.gender).to eq 99 end end @@ -223,15 +224,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is Native American" do it "returns the gender that maps to the gender provided" do row = { "Race" => "1" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1] row = { "Race" => "Native American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1] row = { "Race" => "American Indian or Alaskan Native" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1] end end @@ -239,19 +240,19 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is Asian" do it "returns the gender that maps to the gender provided" do row = { "Race" => "2" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [2] row = { "Race" => "Asian" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [2] row = { "Race" => "Pacific Islander" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [2] row = { "Race" => "Pacific Island or Hawaiian Native" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [2] end end @@ -259,15 +260,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is Black" do it "returns the gender that maps to the gender provided" do row = { "Race" => "3" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [3] row = { "Race" => "Black" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [3] row = { "Race" => "African American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [3] end end @@ -275,15 +276,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is Hispanic" do it "returns the gender that maps to the gender provided" do row = { "Race" => "4" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [4] row = { "Race" => "Hispanic" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [4] row = { "Race" => "Latinx" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [4] end end @@ -291,15 +292,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is White" do it "returns the gender that maps to the gender provided" do row = { "Race" => "5" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [5] row = { "Race" => "White" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [5] row = { "Race" => "Caucasian" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [5] end end @@ -307,11 +308,11 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is not disclosed" do it "returns the gender that maps to the gender provided" do row = { "Race" => "6" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] row = { "Race" => "Prefer not to disclose" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] end end @@ -319,11 +320,11 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is not disclosed" do it "returns the gender that maps to the gender provided" do row = { "Race" => "6" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] row = { "Race" => "Prefer not to disclose" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] end end @@ -331,11 +332,11 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is self described" do it "returns the gender that maps to the gender provided" do row = { "Race" => "7" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] row = { "Race" => "Prefer to self-describe" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] end end @@ -343,15 +344,15 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is Middle Eastern" do it "returns the gender that maps to the gender provided" do row = { "Race" => "8" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [8] row = { "Race" => "Middle Eastern" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [8] row = { "Race" => "North African" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [8] end end @@ -359,23 +360,23 @@ RSpec.describe SurveyItemValues, type: :model do context "when the race is unknown" do it "returns the gender that maps to the gender provided" do row = { "Race" => "NA" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] row = { "Race" => "#N/A" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] row = { "Race" => "n/a" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] row = { "Race" => "#na" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] row = { "Race" => "" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [99] end end @@ -383,42 +384,42 @@ RSpec.describe SurveyItemValues, type: :model do context "when there are multiple races" do it "returns the gender that maps to the gender provided" do row = { "Race" => "1,2,3" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1, 2, 3, 100] row = { "Race" => "Alaskan Native, Pacific Islander, Black" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1, 2, 3, 100] row = { "Race" => "American Indian or Alaskan Native, Asian, African American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1, 2, 3, 100] row = { "Race" => "n/a" } row = { "Race" => "American Indian or Alaskan Native, Asian and African American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1, 2, 3, 100] row = { "Race" => "American Indian or Alaskan Native and Asian and African American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1, 2, 3, 100] row = { "Race" => "American Indian or Alaskan Native and Asian, and African American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [1, 2, 3, 100] row = { "Race" => "Asian, Caucasian and African American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [2, 5, 3, 100] row = { "Race" => "Caucasian and Asian and African American" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [5, 2, 3, 100] row = { "Race- SIS" => "Caucasian and Asian and African American", "HispanicLatino" => "true" } headers.push("HispanicLatino") headers.push("Race- SIS") - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.races).to eq [5, 2, 3, 4, 100] end end @@ -427,11 +428,11 @@ RSpec.describe SurveyItemValues, type: :model do context ".respondent_type" do it "reads header to find the survey type" do headers = %w[s-sbel-q5 s-phys-q2 RecordedDate] - values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:) expect(values.respondent_type).to eq :student headers = %w[t-sbel-q5 t-phys-q2] - values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:) expect(values.respondent_type).to eq :teacher end end @@ -440,14 +441,14 @@ RSpec.describe SurveyItemValues, type: :model do context "when survey type is standard form" do it "returns the survey type" do headers = standard_survey_items - values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:) expect(values.survey_type).to eq :standard end end context "when survey type is teacher form" do it "returns the survey type" do headers = teacher_survey_items - values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:) expect(values.survey_type).to eq :teacher end end @@ -455,7 +456,7 @@ RSpec.describe SurveyItemValues, type: :model do context "when survey type is short form" do it "returns the survey type" do headers = short_form_survey_items - values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:) expect(values.survey_type).to eq :short_form end end @@ -463,7 +464,7 @@ RSpec.describe SurveyItemValues, type: :model do context "when survey type is early education" do it "returns the survey type" do headers = early_education_survey_items - values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row: {}, headers:, survey_items:, schools:, academic_years:) expect(values.survey_type).to eq :early_education end end @@ -478,14 +479,14 @@ RSpec.describe SurveyItemValues, type: :model do it "translates Free Lunch to Economically Disadvantaged - Y" do headers = ["LowIncome"] row = { "LowIncome" => "Free Lunch" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.income).to eq "Economically Disadvantaged - Y" end it "translates Reduced Lunch to Economically Disadvantaged - Y" do headers = ["LowIncome"] row = { "LowIncome" => "Reduced Lunch" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.income).to eq "Economically Disadvantaged - Y" end @@ -493,14 +494,14 @@ RSpec.describe SurveyItemValues, type: :model do headers = ["LowIncome"] row = { "LowIncome" => "LowIncome" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.income).to eq "Economically Disadvantaged - Y" end it "translates Not Eligible to Economically Disadvantaged - N" do headers = ["LowIncome"] row = { "LowIncome" => "Not Eligible" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.income).to eq "Economically Disadvantaged - N" end @@ -508,7 +509,7 @@ RSpec.describe SurveyItemValues, type: :model do headers = ["LowIncome"] row = { "LowIncome" => "" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.income).to eq "Unknown" end end @@ -522,37 +523,37 @@ RSpec.describe SurveyItemValues, type: :model do it 'translates "LEP Student 1st Year" or "LEP Student Not 1st Year" into ELL' do headers = ["Raw ELL"] row = { "Raw ELL" => "LEP Student 1st Year" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.ell).to eq "ELL" row = { "Raw ELL" => "LEP Student Not 1st Year" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.ell).to eq "ELL" row = { "Raw ELL" => "LEP Student Not 1st Year" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.ell).to eq "ELL" end it 'translates "Does not Apply" into "Not ELL"' do headers = ["Raw ELL"] row = { "Raw ELL" => "Does not apply" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.ell).to eq "Not ELL" row = { "Raw ELL" => "Does Not APPLY" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.ell).to eq "Not ELL" end it 'tranlsates blanks into "Not Ell"' do headers = ["Raw ELL"] row = { "Raw ELL" => "" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.ell).to eq "Not ELL" row = { "Raw ELL" => "Anything else" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.ell).to eq "Not ELL" end end @@ -566,32 +567,32 @@ RSpec.describe SurveyItemValues, type: :model do it 'translates "active" into "Special Education"' do headers = ["Raw SpEd"] row = { "Raw SpEd" => "active" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.sped).to eq "Special Education" end it 'translates "exited" into "Not Special Education"' do headers = ["Raw SpEd"] row = { "Raw SpEd" => "exited" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.sped).to eq "Not Special Education" end it 'translates blanks into "Not Special Education' do headers = ["Raw SpEd"] row = { "Raw SpEd" => "" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.sped).to eq "Not Special Education" end it 'tranlsates NA into "Not Special Education"' do headers = ["Raw SpEd"] row = { "Raw SpEd" => "NA" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.sped).to eq "Not Special Education" row = { "Raw SpEd" => "#NA" } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.sped).to eq "Not Special Education" end end @@ -601,33 +602,33 @@ RSpec.describe SurveyItemValues, type: :model do it "returns true" do headers = standard_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "240", "Gender" => "Male" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq true headers = teacher_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "300" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq true headers = short_form_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "100" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq true # When duration is blank or N/A or NA, we don't have enough information to kick out the row as invalid so we keep it in headers = short_form_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq true headers = short_form_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "N/A" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq true headers = short_form_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "NA" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq true end end @@ -636,16 +637,16 @@ RSpec.describe SurveyItemValues, type: :model do it "returns false" do headers = standard_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "239" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq false headers = teacher_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "299" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq false headers = short_form_survey_items values = SurveyItemValues.new(row: { "Duration (in seconds)" => "99" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_duration?).to eq false end end @@ -657,7 +658,7 @@ RSpec.describe SurveyItemValues, type: :model do row = { "s-peff-q1" => 1, "s-peff-q2" => 1, "s-peff-q3" => 1, "s-peff-q4" => 1, "s-peff-q5" => 1, "s-peff-q6" => 1, "s-phys-q1" => 1, "s-phys-q2" => 1, "s-phys-q3" => 1, "s-phys-q4" => 1 } - values = SurveyItemValues.new(row:, headers:, survey_items:, schools:) + values = SurveyItemValues.new(row:, headers:, survey_items:, schools:, academic_years:) expect(values.progress).to eq 10 end end @@ -672,7 +673,7 @@ RSpec.describe SurveyItemValues, type: :model do "s-emsa-q3" => 1, "s-sbel-q1" => 1, "s-sbel-q2" => 1, "s-sbel-q3" => 1, "s-sbel-q4" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 17 expect(values.valid_progress?).to eq true end @@ -687,7 +688,7 @@ RSpec.describe SurveyItemValues, type: :model do "t-psup-q3" => 1, "t-psup-q4" => 1, "t-acch-q1" => 1, "t-acch-q2" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 12 expect(values.valid_progress?).to eq true end @@ -697,7 +698,7 @@ RSpec.describe SurveyItemValues, type: :model do row = { "s-peff-q1" => 1, "s-peff-q2" => 1, "s-peff-q3" => 1, "s-peff-q4" => 1, "s-sbel-q4" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 5 expect(values.valid_progress?).to eq true end @@ -707,7 +708,7 @@ RSpec.describe SurveyItemValues, type: :model do row = { "s-peff-es1" => 1, "s-peff-es2" => 1, "s-peff-es3" => 1, "s-peff-es4" => 1, "s-peff-es5" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 5 expect(values.valid_progress?).to eq true end @@ -720,7 +721,7 @@ RSpec.describe SurveyItemValues, type: :model do "s-peff-q5" => 1, "s-peff-q6" => 1, "s-phys-q1" => 1, "s-phys-q2" => 1, "s-emsa-q3" => 1, "s-sbel-q1" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 10 expect(values.valid_progress?).to eq false end @@ -735,7 +736,7 @@ RSpec.describe SurveyItemValues, type: :model do "t-psup-q3" => 1, "t-psup-q4" => 1, "t-acch-q1" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 11 expect(values.valid_progress?).to eq false end @@ -744,7 +745,7 @@ RSpec.describe SurveyItemValues, type: :model do headers = short_form_survey_items row = { "s-peff-q1" => 1, "s-peff-q2" => 1, "s-peff-q3" => 1, "s-peff-q4" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 4 expect(values.valid_progress?).to eq false end @@ -753,7 +754,7 @@ RSpec.describe SurveyItemValues, type: :model do headers = early_education_survey_items row = { "s-peff-es1" => 1, "s-peff-es2" => 1, "s-peff-es3" => 1, "s-peff-es4" => 1 } values = SurveyItemValues.new(row:, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.progress).to eq 4 expect(values.valid_progress?).to eq false end @@ -769,14 +770,14 @@ RSpec.describe SurveyItemValues, type: :model do it "returns true for students" do headers = %w[s-sbel-q5 s-phys-q2 grade RecordedDate DeseID] values = SurveyItemValues.new(row: { "grade" => "9", "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_grade?).to eq true end it "returns true for teachers" do headers = %w[t-sbel-q5 t-phys-q2 grade RecordedDate DeseID] values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:, - schools:) + schools:, academic_years:) expect(values.valid_grade?).to eq true end end @@ -789,7 +790,7 @@ RSpec.describe SurveyItemValues, type: :model do it "returns false" do headers = %w[s-sbel-q5 s-phys-q2 grade RecordedDate DeseID] values = SurveyItemValues.new(row: { "grade" => "2", "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:, - schools: School.school_by_dese_id) + schools: School.by_dese_id) expect(values.valid_grade?).to eq false end end @@ -800,13 +801,13 @@ RSpec.describe SurveyItemValues, type: :model do it "returns true for student questions" do headers = %w[s-sbel-q5 s-phys-q1 s-phys-q2 RecordedDate] values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "s-sbel-q5" => "1", "s-phys-q1" => "", "s-phys-q2" => "5" }, headers:, survey_items:, - schools: School.school_by_dese_id) + schools: School.by_dese_id) expect(values.valid_sd?).to eq true end it "returns true for teacher questions" do headers = %w[t-sbel-q5 t-phys-q2] values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "t-sbel-q5" => "1", "t-phys-q2" => "5" }, headers:, survey_items:, - schools: School.school_by_dese_id) + schools: School.by_dese_id) expect(values.valid_sd?).to eq true end end @@ -815,13 +816,13 @@ RSpec.describe SurveyItemValues, type: :model do it "returns false for student questions" do headers = %w[s-sbel-q5 s-phys-q1 s-phys-q2 RecordedDate] values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "s-sbel-q5" => "1", "s-phys-q2" => "1" }, headers:, survey_items:, - schools: School.school_by_dese_id) + schools: School.by_dese_id) expect(values.valid_sd?).to eq false end it "returns false for teacher questions" do headers = %w[t-sbel-q5 t-phys-q1 t-phys-q2 RecordedDate] values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "Dese ID" => "1234", "t-sbel-q5" => "1", "t-phys-q2" => "1" }, headers:, survey_items:, - schools: School.school_by_dese_id) + schools: School.by_dese_id) expect(values.valid_sd?).to eq false end end @@ -836,7 +837,7 @@ RSpec.describe SurveyItemValues, type: :model do it "parses the date correctly when the date is in standard date format for google sheets: 'MM/DD/YYYY HH:MM:SS'" do recorded_date = "1/10/2022 14:21:45" values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:, - schools:) + schools:, academic_years:) ay_21_22 = AcademicYear.find_by_range "2021-22" expect(values.academic_year).to eq ay_21_22 end @@ -844,7 +845,7 @@ RSpec.describe SurveyItemValues, type: :model do it "parses the date correctly when the date is in iso standard 8601 'YYYY-MM-DDTHH:MM:SS'" do recorded_date = "2022-1-10T14:21:45" values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:, - schools:) + schools:, academic_years:) ay_21_22 = AcademicYear.find_by_range "2021-22" expect(values.academic_year).to eq ay_21_22 end @@ -852,7 +853,7 @@ RSpec.describe SurveyItemValues, type: :model do it "parses the date correctly when the date is in the format of: 'YYYY-MM-DD HH:MM:SS'" do recorded_date = "2022-01-10 14:21:45" values = SurveyItemValues.new(row: { "RecordedDate" => recorded_date, "DeseID" => "1234" }, headers:, survey_items:, - schools:) + schools:, academic_years:) ay_21_22 = AcademicYear.find_by_range "2021-22" expect(values.academic_year).to eq ay_21_22 end